﻿/**

== Table of Contents ==

-- html, body, links
-- Headings
-- Tables
-- 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;
	letter-spacing: .1px;
	border-bottom-color: #DEE4F0;
}

/** 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;
	color: #000080;
	margin: 15px 0 1px 0;
	padding: 2px 0 2px 3px;
	letter-spacing: .55px;
	font-size: 1em;
	text-transform: uppercase;
	font-weight: bold;
}

h2.use-case {
	cursor: pointer;
	margin: 0;
	color: #326891;
	padding: 4px 0 4px;
	text-transform: normal;
	font-weight: normal;
	letter-spacing: .2px;
}

h2.use-case.active {color: red;}

h2.use-case:after {
	content: "\02C5";
	float: right;
	font-size: 12px;
	padding-right: 6px;
	font-weight: 700;
 }
h2.use-case.active:after {
	content: "\02C5";
	transform: rotate(90deg);
	padding-right: 13px;
	color: inherit;
}


img {
	display: block;
	margin-bottom: 35px;
}

/** Tables **/

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 4px;
	margin-bottom: 4px;
	border-top: 1px solid #DEE4F0;
	letter-spacing: .25px;
	color: #333;
}

table.border {border-top: none;}

th {
	text-transform: uppercase;
	padding: 3px;
	margin: 15px 0 25px 0;
	border-top: 1px solid #DEE4F0;
	font-size: .75rem;
	font-weight: 600;
	text-align: left;
}

td {
	color: #666;
	padding: 4px;
}

td:first-child {
	padding-right: 3px;
	width: 40%;
}

td:last-child {color: #0b45b9;}
tr:nth-child(even) {background-color: rgba(206, 214, 230, 0.2);}

tr, h2.use-case {
	border-bottom: 1px solid #DEE4F0;
	padding-left: 1px;
}

/** Notes **/

span {
	color: rgba(175, 16, 38, 0.8);
	letter-spacing: .2px;
}

span.bold {font-weight: bold;}

.note {
	line-height: 1.5;
	padding: 7px;
	border: 1px solid #ddd;
	letter-spacing: .2px;
	color: #333;
	background-color: rgba(183, 215, 221, 0.2);
}

.content {
	margin: 0;
	padding-right: 7px;
	margin-bottom: 10px;
  	max-height: 0;
  	overflow: hidden;
  	transition: max-height 0.2s ease-out;
}

ul {
	list-style: none;
	padding-left: 12px;
	margin: 3px 0;
}

ul li {margin-bottom: 5px;}

