@charset "utf-8";
/* ============================================
GENERAL CLEANUP STYLES
according to eric meyer
http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ 
 ============================================ */
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}
html { 
  height: 100%;
}
body {
  line-height: 1;
  color: black;
  background: white;
  min-height: 101%;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
ol, ul {
  list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}
blockquote, q {
  quotes: "" "";
}

/* ============================================
 SET UP THE LAYOUT 
 ============================================ */

body {
  padding-bottom: 2em;
  background-color: #DEFEFF;
  width: 100%;
}

#page {
  width: 95%;
  margin: 5px auto;
  max-width: 48em;
  min-width: 25em;
}

#content {
  width: auto;
  padding: 2em;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #000;
  background-color: #FFF;
}

#menu {
	margin-top: 1em;
}

#menu li {
	float: left;
	margin: 0.3em;
  	font-size: 0.8em;
	border: 1px solid black;
	background-color: #003399;
	color: white;
}

#menu li a {
	display: block;
  	font-weight: bold;
	padding: 0.6em;
}

#menu li a:link, 
#menu li a:visited {
	background-color: #003399;
	color: #FFF;
}

#menu li a:current, 
#menu li a:hover, 
#menu li a:focus, 
#menu li a:active {
	background-color: #FFF;
	padding: 0.6em;
	color: #000;
}

#footer {
	clear: both;
	border-top: 1px solid #003399;
	padding-top: 0.2em;
 	font-size: 0.7em;
}


/* ==============================================
  GENERAL CONTENT (ALL OVER A PAGE)
============================================== */

abbr, acronym {
  border-bottom: 1px dotted black;
}

a {
  color: #305886;
}

a:visited {
  color: #551A8B;
}

a:focus, 
a:hover, 
a:active {
  color: #BC101D;
  background-color: #DEFEFF;
}

strong {
	font-weight: bold;
}

em {
	font-weight: italic;
}

/* ==============================================
   GENERAL CLASSES
============================================== */

/* visible hidden, but available for search engines, screenreaders etc. */
.hidden, dfn {
  position: absolute;
  top: -1000em;
  left: -1000em;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* clear those floating columns */
 
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* for safari */
.clearfix { display: block }


/* ==============================================
  CONTENT STYLES
============================================== */

#page h1 {
	font-size: 1.3em;
	color: #003399;
	padding-top: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #003399;
}

#content h2 {
	font-size: 1.2em;
	color: #003399;
	margin-bottom: 1em;
	border: 1px solid #003399;
	padding: 0.3em;
}

#content h3 {
	font-size: 1em;
	color: #003399;
	margin-bottom: 1em;
	border-bottom: 1px solid #003399;
	padding: 0.3em;
}

#page h1, 
#content h2, 
#content h3 {
	font-weight: bold;
}


address {
	font-size: 0.8em;
	font-weight: normal;
	margin-top: 1em;
}

#content p, ul, ol, dl, div, blockquote, code {
	margin-bottom: 1em;
}

#content li {
	list-style-type: square;
}

#content li li {
	list-style-type: disc;
}

#content ul li,
#content ol li, {
	margin-left: 1em;
	padding-left: 0.6em;
}

#content ul li ul li, 
#content ul li ol li, 
#content ol li ul li, 
#content ol li ol li {
	margin-left: 2em;
	padding-left: 1.2em;
}

#content dl dd {
	margin-left: 0.6em;
	padding-left: 0.6em;
}

#content code, 
#content samp {
	border: 1px solid #666;
	padding: 0.5em;
	font-family: Courier, monospace;
	font-size: 0.9em;
	display: block;
}

#content p.small, 
#content ul.small {
	font-size: 0.9em; 
	padding-top: 1em;
}

#content dl dt {
	font-weight: bold;
}

