﻿/**

== Table of Contents ==

-- html, body, links
-- Headings
-- Tables
-- Spans
-- Notes

**/


html {
	padding: 14px 20px 50px 20px;
}
BODY {
	max-width: 1080px;
	font: 100 14px/22px Arial;
	margin: 0 auto;
	color: #333;
	background-color: rgba(249, 249, 249, .3);
}

A {
	padding: 0 2px;
	color: #326891;
	text-decoration: none;
	border-bottom: 1px solid #326891;
}

/** Headings **/

h1 {
	font-family: "Segoe UI Semilight", Arial, Helvetica, sans-serif;
	font-size: 32px;
 	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 16px;
	padding: 2px 0 2px;
	color: #000080;
}

h2 {
	font-weight: normal;
	font-size: 20px;
	color: #000080;
	margin: 4px 0 4px;
	padding: 4px 0 4px;
	border-bottom: 1px solid #000080;
	letter-spacing: .1px;
}

h2.use-case, h2.use-case > a {
	cursor: pointer;
	font-size: 1em;
	margin: 0;
	color: inherit;
}

h2.use-case:after {
	content: "\02C5"; /* Unicode for (+) */
	float: right;
	font-size: 12px;
	padding-right: 6px;
	font-weight: 700;
 }
h2.use-case.active:after {
	content: "\1449";
	font-weight: 700;
}

/** Tables **/

table {
	width: 100%;
	letter-spacing: .1px;
	border-collapse: collapse;
	margin-top: 15px;
	border-top: 1px solid #DEE4F0;
}


table:nth-of-type(3) tr td:first-child {text-align: center;}

thead {
	font-weight: 200;
	background-color: #fff;
}
th {
	text-align: left;
	text-transform: uppercase;
	font-weight: normal;
	padding: 3px;
}

tr td:first-child {
	color: #0b45b9;
	text-align: right;
	padding-right: 3px;
}

td {
	padding: 4px 2px 4px 3px;
	color: #666;
}
table.syntax tr td:first-child {color: #666;}

table:nth-of-type(2) tr th:first-child,
table.syntax tr th:first-child {text-align: right;}

table:nth-of-type(2) tr td:first-child {color: #666;}

	table.syntax tr td:nth-child(2),
	table.syntax tr td:nth-child(4),
	div.content table tr td:last-child,
	table:nth-of-type(2) tr td:last-child {color: #0b45b9;}

tr, h2.use-case {
	border-bottom: 1px solid #DEE4F0;
	padding-left: 1px;
}
tr:nth-child(even) {background-color: rgba(206, 214, 230, 0.2);}

div.content table tr td:first-child {
	text-align: initial;
	color: #333;
}


/** Spans **/

span {color: red;}

div.content span {
	color: blue;
	letter-spacing: .2px;
}

/** Notes **/

.important {background-color: #fff3cd;}
p.note, p.important {
	border-color: #ffeeba;
	color: #333;
	line-height: 1.4;
	padding: 7px;
	border: 1px solid #ddd;
	letter-spacing: .2px;
}

.note {background-color: #d1ecf1;}
h2.use-case.active {color: blue;}

.content {
	margin-bottom: 10px;
  	max-height: 0;
  	overflow: hidden;
  	transition: max-height 0.2s ease-out;
}
