/** this stylesheet goes on every page.
	It contains styles for elements that appear on all pages:
	Header, Searchbar, Menu bar, and Footer **/

/** basic styling **/
html *{
	margin: 0px;
	padding: 0px;
}

body{
	font-family: Arial, Helvetica, sans-serif;
	color: #666565;
	font-size: 14px;
	line-height: 19px;
	background: #FFF;
}

a img{
	border: 0;
}

a{
	color: #28579f;
}

a:hover{
	color: #7f7f7e;
}

#container{
	width: 921px;
	margin: 0px auto;
}

/** header styles **/

#logo{
	display: block;
	float: left;
	width: 151px;
	height: 117px;
	/* image containing the paa logo */
}

#header h1{
	display: block;
	font-size: 17px;
	font-weight: normal;
	font-style:italic;
	height: 40px;
	padding-top: 78px;
	line-height: 40px;
	background: url(../../images/shared/top_header.jpg) no-repeat top left;
	width: 478px;
	float: left;
	color: #86888b;
	text-indent: -9999px;
	/* moves text over to display background image, but google can still read it */
}

/* area for FAQ link */
#header #topLinks{
	height: 18px;
	text-align: right;
	padding-right: 10px;
	color: #FFF;
	font-size: 12px;
	margin-top: 5px;
	/* in theory this can hold more links if necessary */
}
#header #topLinks a{
	color: #FFF;
	text-decoration: none;
	padding-left: 10px;
}

#header #topLinks a:hover{
	text-decoration: underline;
}


/** search form styles **/

#header #search{
	width: 291px;
	height: 117px;
	background: url(../../images/shared/top_search.jpg) no-repeat top left;
	float: left;
}

#search form{
	display: block;
	text-align: right;
	margin-top: 45px;
	font-size: 12px;
	color: #FFF;
	margin-right: 10px;
	padding: 0px;
	
}

#searchbutton{
	background: none;
	border: none;
	color: #FFF;
	cursor: pointer;
	height: 16px;
	line-height: 16px;
	margin-left: 5px;
}

#searchlabel{
	padding-right: 5px;
}

#searchbox{
	border: 0;
	width: 121px;
	font-size: 10px;
}

/** main top menu styles  **/

#menu{
	clear:both;
	height: 35px;
	width: 821px;
	background: url(../../images/shared/nav_bar.jpg);
	list-style:none;
	padding-left: 50px;
	padding-right: 50px;
}
#menu li{
	line-height: 35px;
	background: url(../../images/shared/nav_divider.jpg) no-repeat top right;
	padding-right: 30px;
	display: inline-block;
	height: 35px;
	float: left;
	white-space:nowrap;
}

#menu li.nopad{
	padding-right: 0px;
	background: none;
	/** removes the padding on the right-most menu item. ***/
}

#menu li a{
	display: block;
	text-decoration: none;
	height: 35px;
	line-height: 35px;
	color: #0046ae;
	font-size: 12px;
	padding-left: 18px;
	background: url(../../images/shared/nav_arrow.gif) no-repeat top left;
	float: left;
	
}

#menu li a:hover, #menu li.on a{
	background: url(../../images/shared/nav_arrow_on.gif) no-repeat top left;
	color: #c88b4a;
}

/** bottom copyright styles **/

#copyright{
	width: 921px;
	height: 61px;
	clear: both;
	background: url(../../images/shared/copyright_box.jpg) no-repeat top left;
	padding-top: 20px;
	margin-top: 5px;
}

#copyright p{
	padding-left: 35px;
	color: #FFF;
	font-size: 11px;
	line-height: 21px;
}

#copyright a{
	color: #FFF;
	padding-right: 10px;
}

.clear{
	line-height: 0;
	clear: both;
	/* used  to force elements beneath floated objects */
}

label.error {
	color:#EA5200;
}
input.error {
	border:2px solid red;
}


