/* _______________________________	*/
/*			STYLES FOR SCREENS		*/


/* _______________________________	*/
/*			TABLE OF CONTENTS		*/
/*			                 		*/
/*          1. DEFAULTS             */
/*          2. PAGE STRUCTURE       */
/*          3. COLUMNS              */
/*          4. LINKS                */
/*          5. HEADINGS             */
/*          6. LISTS                */
/*          7. FORMS                */
/*          8. IMAGES               */
/*          9. MISCELLANEOUS        */



/* _______________________________	*/
/*          1. DEFAULTS             */

body {
	color: #000000;
	margin: 10px;
	padding: 0px;
	font-size: 12px;
	font-family: arial, verdana, sans-serif;
	background:  url();
	background-color: #000000;
}

 b, strong, i, em, cite, var, tt, code, kbd, samp, 
 img, span { display: inline }
 
 dt { margin-bottom: 0 }
 dd { margin-top: 0; margin-left: 3em }

 hr { border-top: solid }

 b, strong { font-weight: bolder } /* relative to the parent */
 
 i, cite, em, var, address, blockquote { font-style: italic }
 
 pre, tt, code, kbd, samp { font-family: monospace }

p {padding: 5px;}
 
#oldbrowsers {display: none !important;}
 
 
 
/* _______________________________	*/
/*          2. PAGE STRUCTURE       */


#window {
	text-align:center;
} 

#outerpage {}

#page{
	width:780px;
	padding:0px;
	color:#444444;
	background-color: #ffffff;
	text-align: left;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../images/page_div_bg.gif);
	background-repeat: repeat-y;
}

#header {
    clear: both;
    background-color: #666666;
}

#banner {}

#footer {      
	text-align: left;
	color: #999999;    
	font-size: 11px;       
	margin-left: auto; 
	margin-right: auto;
	margin-top: 30px;
	width: 780px;
	background: #000000;
	padding-top: 15px;
	clear:both;
} 



/* _______________________________	*/
/*          3. COLUMNS              */


/* width+margin-left should not exceed #page:width */
#maincontentFull {
	margin-top: 0px;
	padding-top: 25px;
	padding-bottom: 45px;
	margin-left: 10px;
	width: 780px;
}

/* margin-left should equal #sidebar 1: width + margin-left */
/* width+margin-left + sidebar2:width+left-margin+left-padding(padding) should not exceed #page:width */
#maincontent3col {
	margin-top: 0px;
	padding-top: 15px;
	padding-bottom: 45px;
	margin-left: 152px;
	width: 425px;

}

/* margin-left should equal #sidebar 1: width + margin-left */
/* width+margin-left should not exceed #page:width */
#maincontent2col {
	margin-top: 0px;
	padding-top: 25px;
	padding-bottom: 45px;
	margin-left: 120px;
	width: 600px;
}

/* width+margin-left + sidebar2:width should not exceed #page:width */
#maincontent2colR {
	margin-top: 0px;
	padding-top: 25px;
	padding-bottom: 45px;
	margin-left: 10px;
	width: 500px;
}

#sidebar1 {
    float: left;
    width: 128px;
	margin-left: 7px;
	margin-top: 15px;
	font-size:12px;
	padding-bottom:10px;
	display: inline;
}

#sidebar2 {
	margin-bottom: 10px;
	float: right;
	width: 169px;
	height: 450px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	padding-top: 15px;
	padding-left: 20px;
	padding-right: 5px;
	text-align:center;
}

* html #sidebar2   /* this selector recognized by IE only */
{

  height: 500px;   /*  (only for IE5.x/Win) */
  h\eight: 450px;  /*  (for other IE) */
  width: 193px;
  w\idth: 169px;
}

/* specific to each project nav */
#nav {
}

/* specific to each project subnav */
#subnav {
}


/* _______________________________	*/
/*          4. LINKS                */

a:link {color: #D14C00;}
a:visited{color: #D14C00;}
a:hover {color: #000000;}
a:active {color: #999999;}

#nav a {color: #FFFFFF;}
#nav a:visited {color: #FFFFFF;}
#nav a:hover {color: #999999;}

#subnav a {}
#subnav a:visited {}
#subnav a:hover {}

#subnav li.on a {
color: #000000;
text-decoration:none;
}

#footer a {color: #999999; text-decoration:none;}
#footer a:visited {color: #999999;}
#footer a:hover {color: #FFFFFF;}

/* _______________________________	*/
/*          5. HEADINGS             */

h1, h2, h3, h4, h5 {
	color: #D14C00;
	margin-bottom: 0px;
	margin-top: 0px;
	font-weight: bold;
	}

h1 {           
	font-size: 160%;      
}   

h2 {           
	font-size: 140%;    
}  

h3 {  
	margin-top: 15px;
	margin-bottom: 15px;         
	font-size: 120%;      
}  

h4 {
	font-size: 14px;
	color: #FFFFFF;
	line-height:1.2em;
	padding-right: 5px;
}

h5 {
	font-size: 80%;       
}


/* _______________________________	*/
/*          6. LISTS                */

ul {
	margin-top:7px;
	margin-bottom:10px;
	margin-left:0px;
	padding-left:0px;
	list-style-type: none;
}

li {
	line-height:1.1;
	padding-left:0px;
	margin-bottom:15px;
	clear: both;
}

	#subnav ul {
		margin-left:2px;
		padding-left:0px;
	}

	#subnav li {
		margin-bottom:10px;
		margin-left:0px;
		padding-left:0px;
		list-style-type: none;
		color: #888888;
		font-weight: bold;
	}

	#subnav li.on {
		margin-bottom: 10px;
		margin-left: 0px;
		padding-left: 0px;
		list-style: url();
		font-weight:bold;
	}

 	/* This is assigned to the <ul> for a horizontal list  */
	#horiznav1 li {
		display: inline;
 		list-style-type: none;
 		padding-right: 20px;
		padding-bottom: 0px;
		margin-bottom: 0px;
 	}



/* _______________________________	*/
/*          7. FORMS                */


textarea,input,select {
color:#024285;
background-color: #ffffff;
font-size: 11px;
font-family: arial, verdana, sans-serif;
margin: 0px;
margin-bottom: 0px;
padding: 0px;
}


/* stle for form buttons */
.button {
color:#ffffff;
background-color: #668ABF;
font-size: 10px;
font-family: arial, verdana, sans-serif;
margin-top: 6px;
margin-bottom: 0px;
padding: 0px;
border-color: #ffffff;
}

input.submit {
font-size: n;
font-weight: bold;
font-family: arial, verdana, sans-serif;
margin-top: 6px;
margin-bottom: 0px;
padding: 6px;
}


/* Web Forms -- Table style*/

.form {
border:1px solid #5980B9;
border-right:2px solid #5980B9;
white-space:normal;
}

.form td {
padding-top: 4px;
padding-left:15px;
padding-right:8px;
font-size:12px;
vertical-align:top;
background-color: #ECECF5;
}

.form th {
color: #ffffff;      
font-size: 18px;
font-weight: bold;     
padding: 3px;
padding-left: 5px;
text-align:left;
border-right: 1px solid #5980B9;
background-color:#ffffff;
border-bottom:1px solid #5980B9;
background-image: url(/images/th_bg.gif);
vertical-align:bottom;
}

/* _______________________________	*/
/*          8. IMAGES               */


.photo { border: solid 1px #777777; }

.photobox { 
margin-right: 10px;
margin-bottom: 8px;
float:left;
border-bottom: solid 3px #024285;
padding-bottom: 5px;
}

.caption {
width: 219px;
font-size:11px;
font-weight:bold;
color:#000000;
text-align: left;
}

.photocredit{
font-size:10px;
font-weight:normal;
color:#666666;
}

.photo1 {
margin-right: 10px;
margin-bottom: 5px;
float:left;
border: solid 1px #777777;
}

.photo2 {
margin-left: 20px;
margin-bottom: 10px;
float:right;
border: solid 1px #777777;
}

.photo2nb {
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
float:right;
}

/* Image nested to left side of surrounding text */
.nested {
margin-right:20px;
margin-bottom: 10px;
float: left;
width: 155px;
border-bottom: 5px solid #5980B9;
padding: 10px;
background-color: #023A77;
color: #ffffff;
font-size: 11px;
font-weight: bold;
}



/* _______________________________	*/
/*          9. MISCELLANEOUS        */

#registersoon {
	background-color: #FFCCCC;
	padding: 8px;
	border: 2px solid #990000;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;
}
#registersoon h2 {
	color: #990000;
	margin: 0px;
	padding: 0px;
}
#registersoon p {
	font-size: 14px;
	color: #000000;
	margin: 5px;
	padding: 5px;
	font-weight: bold;
}

#registersoon a {
	color: #990000;
}

#registersoon span {
	color: #990000;
}

.white {
color:#FFFFFF;
}

.error 	{
color: #CC0000;
}

.red 	{
color: #CC0000;
}

.emphasis 	{
font-weight: bold;
}

.Emphasis 	{
font-weight: bold;
}

.Note { font-weight: bold; color: #CC0000; }

.rowoffset {
background-color: #F9F5F0;
}

td {padding: 5px;}

td.frontcontent{
padding-left:25px;
font-size:11px;
color: #024285;
}

.title {
color: #D14C00;      
font-size: 14px;
font-weight: bold;       
font-family: arial, verdana, sans-serif;
}

.teasertitle {    
font-size: 11px;
font-weight: bold;       
font-family: arial, verdana, sans-serif;
}

div.article {
margin-top:0px;
margin-bottom: 20px;
}

.q {
font-size:18px;
font-weight:bold;
color:#00227A;
}

.a {
font-size:18px;
font-weight:bold;
color:#52B62B;
}

/* "Tabular" information. Sets style for table */

.tabular {
border:1px solid #5980B9;
border-right:2px solid #5980B9;

}

.tabular td {
padding: 4px;
padding-left:8px;
padding-right:8px;
border-bottom:1px solid #B5C7E0;
font-size:10px;
vertical-align:top;
background-color: #ECECF5;
}

.tabular th {
color: #ffffff;
font-weight: bold;
font-size: 12px;
padding: 3px;
padding-left: 5px;
text-align:left;
border-right: 2px solid #5980B9;
background-color:#ffffff;
border-bottom:1px solid #5980B9;
background-image: url(/images/th_bg.gif);
vertical-align:bottom;
}

.tabular h3 {
font-size: 17px;
color: #ffffff;
display: inline;
}
