/* --------------------------------------------
	Conditional Browser Rules
----------------------------------------------- */

/*
	Usage: Apply each of these "hacks" after the initial incorrect value has been set.

	Child Selector for FF, IE7, Opera, Safari:
		html > body element {rule}
	
	Child Selector + Comment Hack, which IE7 ignores:
		html >/^^/ body element {rule}
	
	Comment Hack to hide from IE5x:
		element {selector/^^/:/^^/ value;}
	
	Replace ^ with *
*/


/* --------------------------------------------
	Top-level Elements
----------------------------------------------- */

/* Top-level Elements

    * HTML - HTML document
          o BODY - Document body
*/

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100.1%;	/* Creates scrollbar in FF */
	overflow: hidden;
}

body {
	background: #D9391E url(../images/bg_body.png) repeat-x fixed 0 bottom;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	text-align: center;
}

body * {
	font-family: inherit;
	font-size: 100%;
}




/* --------------------------------------------
	Generic Classes
----------------------------------------------- */

.align_centre {
	text-align: center !important;
}

.align_justify {
	text-align: justify !important;
}

.align_left {
	text-align: left !important;
}

.align_right {
	text-align: right !important;
}

.centre_object {
	display: block;
	margin: 0 auto 1.4em auto;
}

.clear {
	clear: both;
	font-size: 0;
	line-height: 0px;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

img.float_left {
	margin: 0.5em 1em 0.5em 0;
}

img.float_left_border {
	border: 1px solid #a1a8ce;
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

img.float_right {
	margin: 0.5em 0 0.5em 1em;
}

img.float_right_border {
	border: 1px solid #a1a8ce;
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

.glossary {
	display: none;	/* For use in conjunction with AddGlossary script */
}

.hidden {
	left: -999px;
	position: absolute;
	width: 1px;
}

.normal {
	color: #444;
	font-weight: normal;
}

.important {
	font-size: 120%;
}

.invisible {
	visibility: hidden;
}





/* --------------------------------------------
	Specific Miscellaneous Classes
----------------------------------------------- */

p.note {
	color: #ECB862;
	font-size: 80%;
}

p.copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
}

.content p.copyright a, .content p.copyright a:visited, .content p.copyright a:hover  {
	color: #fff;
}


/* --------------------------------------------
	Generic Special Inline Elements
----------------------------------------------- */

/* Special Inline Elements

    * A - Anchor
    * BR - Line break
    * IFRAME - Inline frame
    * IMG - Inline image
    * MAP - Image map
          o AREA - Image map region
    * Q - Short quotation
    * SPAN - Generic inline container
    * SUB - Subscript
    * SUP - Superscript
*/

a img {
	border: none;
}

a.anchor {
	background-color: inherit;
	border: inherit;
	color: inherit;
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-align: inherit;
	text-decoration: inherit;
	text-indent: inherit;
	text-transform: inherit;
	white-space: inherit;
	word-spacing: inherit;
}

a {
	color: #fff;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a.download {
	background: url(../images/bg_download_link.gif) no-repeat 0 5px;
	padding-left: 15px;
}

a:hover.download {
	background-position: 0 -76px;
}

span.download {
	background: url(../images/bg_download_link.gif) no-repeat 0 -76px;
	padding-left: 8px;
}

.content img.border {
	border: 1px solid #af241a;
}

q:before, q:after { 
    content: ""; /* With IE's lack of support, remove quotes on all good browsers. Add them manually in the markup */
}




/* --------------------------------------------
	Generic Block-level Elements
----------------------------------------------- */

/* Generic Block-level Elements

    * ADDRESS - Address
    * BLOCKQUOTE - Block quotation
    * DEL - Deleted text
    * DIV - Generic block-level container
    * H1 - Level-one heading
    * H2 - Level-two heading
    * H3 - Level-three heading
    * H4 - Level-four heading
    * H5 - Level-five heading
    * H6 - Level-six heading
    * HR - Horizontal rule
    * INS - Inserted text
    * P - Paragraph
    * PRE - Preformatted text
*/

address {
	font-style: normal;
}

/* Main Structural Divs ------------------------------ */

#wrapper_site {
	height: 100%;
	overflow: auto;
	position: relative;
	z-index: 2;
}

/* Headings ----------------------------------- */



/* Horizontal Rules ---------------------------- */

#wrapper_content hr {
	display: none;
}

#wrapper_content .content hr {
	background-color: #f5c9c3;
	border: none;
	color: #f5c9c3;
	display: block;
	height: 1px;
	margin-bottom: 1.1em;
}

html >/**/ body hr {
	margin-bottom: 1.4em;
}

/* Paragraphs ---------------------------- */

p {
}

/* --------------------------------------------
	Generic Forms
----------------------------------------------- */

/* Forms

    * FORM - Interactive form
          o BUTTON - Button
          o FIELDSET - Form control group
                + LEGEND - Fieldset caption
          o INPUT - Form input
          o LABEL - Form field label
          o SELECT - Option selector
                + OPTGROUP - Option group
                      # OPTION - Menu option
          o TEXTAREA - Multi-line text input
*/

fieldset {
	border: none;
	clear: both;
}

legend {
	display: none;
}

label {
	font-weight: bold;
}

input.submit {			/* Ensure buttons behave the same across all browsers */	
	padding: 0 .25em;
    width: 0;  			/* IE width fix */
   	overflow: visible;
}

input.submit[class] {	/* IE ignores [class] (attribute selectors) */
   	width: auto;  		/* Cancel IE width fix for other browsers */
}


input.text:focus, select:focus, textarea:focus {
	background-color: #ffc;	/* Set accessibility :focus. Give text boxes a class of "text" in markup or dynamically */
}

option {
	padding: 0 4px;
}

textarea {
	font-family: Arial, Helvetica, sans-serif;
}



/* --------------------------------------------
	Generic Phrase Elements
----------------------------------------------- */

/* Phrase Elements

    * ABBR - Abbreviation
    * ACRONYM - Acronym
    * CITE - Citation
    * CODE - Computer code
    * DFN - Defined term
    * EM - Emphasis
    * INS - Inserted text
    * KBD - Text to be input
    * SAMP - Sample output
    * STRONG - Strong emphasis
    * VAR - Variable
*/

acronym {
	border-bottom: 1px dotted;
	cursor: help;
}

code, kbd {
	font-family: "Courier New", Courier, monospace;
}


/* --------------------------------------------
	Generic Font Style Elements
----------------------------------------------- */

/* Font Style Elements

    * SMALL - Small text
    * TT - Teletype text
*/


/* --------------------------------------------
	Specific Lists
----------------------------------------------- */

/* Lists

    * DIR - Directory list
    * DL - Definition list
          o DT - Definition term
          o DD - Definition description
    * LI - List item
    * OL - Ordered list
    * UL - Unordered list
*/

/*  Content Lists --------------------------- */

.content ul {
	list-style-type: none;
	margin-bottom: 1.4em;
	padding-left: 15px;
}

.content ul li {
	background: url(../images/bg_content_list_arrow.gif) no-repeat 0 4px;
	height: 1%;
	margin-bottom: 0.52em;
	padding-left: 20px;
}

html >/**/ body .content ul {
	padding-left: 20px;
}

html >/**/ body .content ul li {
	padding-left: 18px;
}

.content ol {
	list-style-type: decimal;
	margin-bottom: 1.4em;
	margin-left: 5px;
	padding-left: 3em;
}

.content ol.lower_aplha {list-style-type: lower-alpha;}
.content ol.upper_alpha {list-style-type: upper-alpha;}
.content ol.lower_roman {list-style-type: lower-roman;}
.content ol.upper_roman {list-style-type: upper-roman;}

html body .content ul ol li {
	background: none;
	padding-left: 0;
}

.content li ul, .content li ol {margin-top: 9px;}

.content ol li {
	display: list-item;
	margin-bottom: 9px;
}	

/*  Main Navigation --------------------------- */

/* Sub Navigation ----------------------------- */

/* Footer Lists ------------------------------- */



/* --------------------------------------------
	Specific Tables Styles
----------------------------------------------- */

/* Tables

    * TABLE - Table
          o CAPTION - Table caption
          o COLGROUP - Table column group
                + COL - Table column
          o THEAD - Table head
          o TFOOT - Table foot
          o TBODY - Table body
          o TR - Table row
                + TD - Table data cell
                + TH - Table header cell
*/

table.data th, table.data td.th {	/* Due to Rad's not supporting THs, users should apply a TH class to TDs */
}

table.data {
	border: none;
	border-collapse: collapse;
	margin-bottom: 1.3em;
}

table.data {
	margin-left: auto;
	margin-right: auto;
}


table.data caption {
	font-weight: bold;
	line-height: 200%;
	margin: auto;
	text-align: center;
}

table.data td, table.data tr th, table.data tr td.th {
	border: 1px solid #e8e8f5;
	padding: 3px 5px;
	text-align: left;
	vertical-align: middle;
}

table#extras tr td {
	border: none;
	padding: 0;
}

table.data tr th, table.data tr td.th {
	background-color: #e8e8f5;
	border-color: #d6d9ea;
	color: #394798;
	font-weight: bold;
	padding: 5px;
}

table#extras tr th {
	white-space: nowrap;
}

table.data tr.even td {
	background-color: #f7f7fc;
}




/* --------------------------------------------
	Specific Sections
----------------------------------------------- */

h1#logo a {
	background: url(../images/bg_logo_fw.gif) no-repeat 0 0;
	display: block;
	height: 119px;
	left: 0;
	position: absolute;
	text-indent: -999em;
	top: 0;
	width: 168px;
	z-index: 100;
}

/* Content ------------------------------------- */

#wrapper_content {
	margin: auto;
	position: relative;
	text-align: left;
	width: 511px;
}

/*#top_overlay {
	background: url(../images/bg_top_overlay.png) no-repeat 0 0;
	behavior: url(css/iepngfix.htc);
	height: 45px;
	left: 50%;
	margin-left: -264px;
	position: absolute;
	top: 0;
	width: 511px;
	z-index: 100;
}*/

#bottom_overlay {
	background: url(../images/bg_bottom_overlay.png) no-repeat 0px 0;
	behavior: url(css/iepngfix.htc);
	height: 186px;
	left: 0;
	position: absolute;
	bottom: 0px;
	width: 97%;
	z-index: 100;
}

html > body #bottom_overlay {
	bottom: 1px;
}

#bottom_spacer {
	height: 165px;
}

.content_top {
	background: url(../images/bg_content_top.png) no-repeat 0 0;
	behavior: url(css/iepngfix.htc);
	line-height: 0px;
	font-size: 0;
	height: 10px;
	margin-top: 20px;
}

.content_bottom {
	background: url(../images/bg_content_bottom.png) no-repeat 0 0;
	behavior: url(css/iepngfix.htc);
	line-height: 0px;
	font-size: 0;
	height: 15px;
}

.content {
	background: url(../images/bg_content_middle.png) repeat-y 0 0;
	behavior: url(css/iepngfix.htc);
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 130%;
	padding: 9px 20px 1px 20px;
	width: 511px;
	width/**/:/**/ 471px;
}

.content h2 {
	font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size: 185%;
	font-weight: normal;
	line-height: 120%;
	margin: 0 -2px 0.6em -2px;
}

.content p {
	margin-bottom: 1.4em;
}

.content a {
	color: #fef8c0;
	text-decoration: underline;
}

.content a:visited {
	color: #ECC46D;
}

.content a:hover {
	color: #fbe301;
	text-decoration: none;
}

.content h2 a, .content h2 a:visited {
	color: #fff;
	text-decoration: none;
}

.content h2 a:hover {
	color: #fbe301;
	text-decoration: none;
}


.content p.date_posted {
	color: #F5C9C3;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
	margin-top: -1em;
}


.content h3 {
	border-bottom: 1px solid #f5c9c3;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	margin-bottom: 1.4em;
	padding: 2px 0;
}

/* --------------------------------------------
	Miscellaneous Styles
----------------------------------------------- */