/* reset crap */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* fixes */
strong{ font-weight:bolder; }
em{ font-style:italic; }
small{ font-size:0.83em; }
big{ font-size:1.17em }
p{ margin: 0.5em 0; line-height: 1.25em; }

h1{ font-weight: bolder; font-size:2em; padding-bottom:1em; }
h2{ font-weight: bolder; font-size:1.5em; padding-bottom:0.5em; }
h3{ font-weight: bolder; font-size:1.17em; }
h4{ font-weight: bolder; }
h5{ font-weight: bolder; font-size:0.83em; }
h6{ font-weight: bolder; font-size:0.75em; }

/* actual CSS */
body{
	margin:0px;
	background-color:#00404D;
	color:#fff;
}

a{ color:#fc0; font-weight:bold; text-decoration:none; border-bottom:1px dotted; }
a:visited{ color:#fc8; font-weight:bold; text-decoration:none; border-bottom:1px dotted; }
a:hover{ color:#fcc; font-weight:bold; text-decoration:none; border-bottom:1px dotted; }

#header{
	text-align:center;
	width:100%;
	background-color:#222;
	border-bottom:2px solid #666;
	padding-bottom: 0.25em;
}

#content{
	padding: 0.5em;
}

#footer{
	text-align:center;
	width:100%;
	background-color:#222;
	border-top:2px solid #666;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	font-size: 90%;
}

h2{
	text-align:center;
}

h2:before{
	padding-right: 0.5em;
	content: url("./bullet.png");
}

h2:after{
	padding-left: 0.5em;
	content: url("./bullet.png");
}

.contentbox{
	background-color:#00809a;
	width:90%;
	margin-left:auto;
	margin-right:auto;
	padding:0.5em;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

hr{ width:92.5%; margin-top:1em; margin-bottom:1em; border: 1px solid #00809a; }

span.notes{ border-bottom: 1px dashed #fff; }