@charset "UTF-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #939770;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	
}

#container {
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

	text-align: left; /* this overrides the text-align: center on the body element. */
	
}
#header { 
	height: 128px;
	width: 100%;
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/awd_logo2010_2.gif);
	background-position:left top;
	background-repeat:no-repeat;
	background-color: #000000;
	padding: 1px;
	border-bottom: solid thick #939770;
}

	
#navigation {
	margin-top: 20px;
	margin-left: 450px;
	color:#999;
	text-align: center;
	width: 500;
	
	}

#mainContent {
	padding: 0px 20px 5px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000000;
}

#mainContentWhite {
	padding: 0px 20px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #ffffff;
	font-size: 12px;
	color: #333;
}
#mainContentWhite p {
	font-size: 12px;
	color: #333;
	line-height: normal;
}

#mainContentWhite a:link {
	color:#399;
}
#mainContentWhite a:visited {
	color:#666;}
.borderBottom {border-bottom: solid thin silver; }

#footer { 
	
	
	background: #663;
	text-align: center;
} 
#footer p {
	font-size: 11px;
	color: #CC9; 
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	 }
	 
#footer a:link {
	color:#000;
}
#footer a:visited {
	color:#000;
}

p {
	font-size: .85em;
	color: #939770;
}
h3 {color:#939;}
h1 {
	font-size: 1.5em;
	font-style: normal;
	color: #969;
}
h2  {
	color:#C63;
	font-size: 1.2em;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	letter-spacing: normal;
}
a:link {
	color: #99C;
}
a:visited {
	color: #999;
}
.tabBordersThin 
