/* Base styles to explicitly set typical styles */


/* BLOCK ELEMENTS */

h1,h2,h3,h4,h5,h6 {
	line-height: 1.25;
}

h1 {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 1em;
}

h2 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0.5em 0 0.25em 0;
}

h3 {
	font-size: 1em;
	font-weight: bold;
	margin: 0.25em 0 0.25em 0;
}

h4 {
	font-weight: bold;
}

p {
	margin: 0 0 1.5em 0;
}

blockquote {
	margin: 1em 8em;
}

address {
	margin: 1em 0;
}


/* LISTS */

ul,
ol {
	margin: 1em 0 1em 1em;
	padding-left: 1em;
}

ul {
	list-style-type: disc;
}

ul ul {
	list-style-type: circle;
	margin-top: 0;
}

ol {
	list-style-type: decimal;
}

ol ol {
	list-style-type: lower-alpha;
	margin-top: 0;
}

ol.upper-roman {
	list-style-type: upper-roman;
}

ol.lower-roman {
	list-style-type: lower-roman;
}

ol.upper-alpha {
	list-style-type: upper-alpha;
}

ol.lower-alpha {
	list-style-type: lower-alpha;
}

dl {
	margin: 1em 0;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 2em;
}



/* TABLES */

table {
	margin: 2em 0;
}

caption {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 0.5em;
}

th {
	font-weight: bold;
	vertical-align: bottom;
}

thead th {
	background-color: black;
	color: white;
}

/* for alternate rows */
tr.shaded {
	background-color: #ddd;
}

th,
td {
	padding: 0.3em;
}
td {
	vertical-align: top;
}



/* FORMS */

fieldset {
	border: dotted 1px #999;
	padding: 1em;
	margin: 1em auto;
}

legend {
	font-size: 1.3em;
	font-weight: bold;
	background-color: white;
	padding: 0 0.25em;
}

label {
	font-weight: bold;
}

/* For inline labels and inputs, enclose both in <div class="row"> */
.row {
	margin: 0.5em 0;
}

.row label {
	display: block;
	float: left;
	width: 10em;
	margin-right: 0.75em;
}

.required {
	color: red;
}

textarea {
	border: solid 1px #999;
}



/* INLINE ELEMENTS */

strong {
	font-weight: bold;
}

em, cite {
	font-style: italic;
}

acronym, abbr {
	border-bottom: dotted 1px #666;
	cursor: help;
}

sup,
sub {
	font-size: 75%;
	line-height: 0;
}

q:lang(en) {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before {
	content: open-quote;
}

q:after {
	content: close-quote;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

kbd {
	font-family: Courier, monospaced;
}


/* LINKS */

a:link {
	color: blue;
}

a:visited {
	color: purple;
}

a:focus,
a:hover,
a:active {
	color: red;
}



/* ACCESSIBILITY */

a#skipnav:link,
a#skipnav:visited {
	position: absolute;
	width: 100%;
	left: -999em !important;
	margin; 1em auto;
	text-align: center;
	background-color: white;
}

a#skipnav:focus,
a#skipnav:active {
	left: 0 !important;
}


