/*=== Setup ===*/
*{
	border: 0;
	margin: 0;
	padding: 0;
}
body{
	background: #cdedfb;
	color: #005690;
	font: 12px Verdana,Arial,Geneva,Helvetica,Sans-Serif;
}
a{
	color: #005690;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}
input,select,textarea{
	border: #999999 1px solid;
	font-size: 11px;
	padding: 2px;
}

/*=== Centered Layout ===*/
#centerwrap{
	background: url(../images/bgr.gif) no-repeat top;
	height: 600px;
	margin: 0 auto;
	position: relative;
	width: 990px;
}
#content{
	background: #ffffff;
	height: 424px;
	margin: 88px 0 0 109px;
	position: absolute;
	width: 772px;
}
/* \*/
#centerwrap{
	left: 50%;
	margin: -310px 0 0 -500px;
	position: absolute;
	top: 50%;
}
/*=== Header ===*/
#header{
	background: url(../images/header-bgr.jpg) repeat-x top;
	height: 136px;
}
/*- Logos -*/
#header h1{
	background: url(../images/logo.gif) no-repeat;
	float: left;
	text-indent: -9999px;
}
#header h1 a{
	display: block;
	height: 112px;
	text-decoration: none;
	width: 334px;
}
#header h1 a:hover{
	text-decoration: none;
}
#header .logos{
	float: right;
	padding: 7px 10px 0;
}
#header .logos img{
	margin: 0 0 0 10px;
}
/*=== Navigation ===*/
/*- Nav1 -*/
#nav1{
	clear: both;
	height: 24px;
}
#nav1 li{
	float: left;
	line-height: 24px;
}
#nav1 li a{
	color: #ffffff;
	display: block;
	float: left;
	padding: 0 15px;
	text-decoration: none;
}
#nav1 li a:hover,
#nav1 li.active a{
	background: #cdedfb;
	color: #025791;
	text-decoration: none;
}
/*=== All Columns ===*/
#columns{
	height: 288px;
}
#columns h2{
	font-size: 14px;
	margin: 0 0 10px;
}
#columns p{
	line-height: 16px;
	padding: 0 0 20px;
}
#columns li{
	list-style: square;
}
#columns ul{
	padding: 0 0 20px;
}
/*=== Center Column ===*/
#centercol{
	float: left;
	height: 288px;
	overflow: auto;
	width: 490px;
}
#centercol .spacer{
	padding: 25px;
}
/*=== Right Column ===*/
#rightcol{
	float: right;
	width: 282px;
}
#rightcol img{
	display: block;
	height: 288px;
	width: 282px;
}
/*=== Footer ===*/
#footer{
	float: right;
	font-size: 10px;
	height: 14px;
	line-height: 14px;
	margin: 0 0 -14px;
	position: relative;
	width: 282px;
}
#footer a{
	color: #66a1c5;
	text-decoration: none;
}
#footer a:hover{
	text-decoration: underline;
}



form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  width: 420px; 
}




form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 100px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
