/* CSS Document */

	* {
		margin: 0;
	  	padding: 0;
	}
	
	body  {
		font: 14px Verdana, Arial, Helvetica, sans-serif;
		background: #252845 url(../images/aec-bgnd.jpg) repeat left top;
		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: #000;
		min-width: 983px;
	}

	#siteWrapper { 
		width: 983px;  /* allow for browser chrome and avoid a horizontal scroll bar */
		background: #fff;
		margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		border: #fff solid 2px;
		text-align: left; /* this overrides the text-align: center on the body element. */
	} 
	
	#siteWrapper img {
		border: 0;
	}
		
	#header { 
		width: 983px;
		height: 96px;
	} 
	
/* BEGIN site top menu styling */
	#siteMenu {
	  	width: 983px;
	  	height: 27px;
		font-family: arial, sans-serif;
	  	background-color: #252845;
		color: #fff;
	}
	
	#siteMenu ul {
	  	list-style-type: none;
	  	width: 973px;
	  	float: left;
	  	padding-top: 2px;
		font-weight: bold;
		background-color: #252845;
	}
	
	#siteMenu ul li {
	  	float: left;
	  	margin-left: 10px;
	  	display: inline;
		border-left: #fff solid 1px;
		padding-left: 10px;
		margin-top: 3px;
	}
	
	#siteMenu ul li a:link, #siteMenu ul li a:visited {
	  	color: #fff;
	  	text-decoration: none;
	}
	
	#siteMenu ul li a:hover, #siteMenu ul li a:active { 
	  	color: #fba426;
		text-decoration: underline;
	}
	
	#siteMenu li.first {
		border-left: none;
	}
	
	#siteMenu li.fRight {
		float: right;
		border-left: none;
		margin-top: 0;
	}
	
	#siteMenu a.current {
		color: #fba426;
		font-weight: bold;
	}

	/* for all browsers but IE  */
	#siteMenu ul li a.selected { 
	  	color: #fba426;
		text-decoration: none;
	}
	
	/* special for IE  */
	#siteMenu a.selected:link, #siteMenu a.selected:visited, #siteMenu a.selected:hover, #siteMenu a.selected:active {
		color: #fba426;
		text-decoration: none;
	}
/* END site top menu styling */
	
/* BEGIN left side column styling */
	#sidebar {
		float: left; /* since this element is floated, a width must be given */
		width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
		background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
		margin: 0;
		padding: 0;
		text-align: center;
	}
	
	#sidebar .aecLoc {
		border: #000 solid 1px;
		margin-top: 2px;
		margin-bottom: 2px;
	}
/* END left side column styling */
	
/* BEGIN main content column styling */
	#mainContent { 
		margin: 0 0 0 230px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends. */
		padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	} 
	
	#mainContent img {
		border: #000 solid 1px;
	}
	
	#mainContent .sideImg {
		 margin-left: 12px;
	}
	
	#mainContent .mainUl {
		padding-top: 10px;
	}
	
	#mainContent .mainUl li {
		list-style: none;
		background-image: url(../images/check-bullet.gif);
		background-repeat: no-repeat;
		background-position: 0 .4em;
		padding-left: 1em;
		line-height: 1.5;
	}
	
	#mainContent h1 {
		padding-top: 10px;
		padding-bottom: 4px;
		font-size: 14px;
		font-weight: bold;
		color: #db8f22;
	}
		
	#mainContent h2 {
		font-size: 14px;
		font-weight: bold;
		color: #db8f22;
		padding-top: 1em;
	}
		
	#mainContent h3 {
		font-size: 14px;
		font-weight: bold;
		color: #000;
		padding-top: 1em;
	}
	
	#mainContent .blkSm {
		font-size: 90%;
	}
	
	#mainContent .list1 li {
		font-size: 90%;
		list-style: none;
		padding: 4px 4px 4px 16px;
	}
	
	#mainContent .last {
		margin-bottom: 25px;
	}
	
	#mainContent a:link, #mainContent a:visited {
	  	color: #000;
	  	text-decoration: none;
	}
	
	#mainContent a:hover, #mainContent a:active {
		color: #f00;
	}
	
	.topOfPage {
		text-align: right;
		margin-top: 25px;
		margin-bottom: 10px;
		clear: both;
	}
	
	#mainContent .topOfPage a:link, #mainContent .topOfPage a:visited {
		font-size: 90%;
		text-decoration: underline;
	  	color: #000;
	}
	
	#mainContent .topOfPage a:hover, #mainContent .topOfPage a:active {
		font-size: 90%;
		text-decoration: underline;
		color: #f00;
	}
/* END main content column styling */

/* BEGIN footer styling */
	#footer {
		clear: both;
	  	width: 983px;
	  	height: 22px;
		font-family: arial, sans-serif;
	  	background-color: #252845;
		color: #fff;
		font-size: 12px;
		text-align: center;
	}
	
	#footer ul {
	  	list-style-type: none;
	  	width: 983px;
	  	float: left;
		margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	  	padding-top: 4px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
		background-color: #252845;
	}
	
	#footer ul li {
	  	float: left;
	  	margin-left: 10px;
	  	display: inline;
		border-left: #fff solid 1px;
		padding-left: 10px;
	}
	
	#footer ul li a:link, #footer ul li a:visited {
	  	color: #fff;
	  	text-decoration: none;
	}
	
	#footer ul li a:hover, #footer ul li a:active { 
	  	color: #fba426;
	}
	
	#footer li.first {
		border-left: none;
	}
/* END footer styling */

/* BEGIN misc styling */
	#emptyDiv {
		margin-top: 8px;
		font-size: 0;
	}

	#siteLine {
		clear: both;
		background-color: #252845;
		height: 1px;
		font-size: 0;
		margin: 2px 0 2px 0;
		padding: 0;
	}
	
	#siteLine2 {
		clear: both;
		background-color: #252845;
		height: 1px;
		font-size: 0;
		margin: 2px 0 0 0;
		padding: 0;
	}

	.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
		float: right;
		margin-left: 8px;
	}

	.fltlft { /* this class can be used to float an element left in your page */
		float: left;
		margin-right: 8px;
	}

	.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
		clear:both;
		height:0;
		font-size: 0;
		line-height: 0px;
	}

	.prodLine {
		border-bottom: #544580 solid 1px;
	}
	
	.aecList {
		margin-left: 40px;
	}
/* END misc styling */

/* BEGIN home page only styling */
	#mainContent .homeT {
		padding: 4px 0;
	}
	
	#mainContent .homeBox {
		width: 208px;
		border: #db8f22 solid 1px;
		padding: 4px;
		margin: 10px 6px 10px 6px;
		font-size: 14px;
		float: left;
		background-color: #ffffcc;
		min-height: 225px;
	}
	
	#mainContent .homeBox a:link, #mainContent .homeBox a:visited {
		color: #db8f22;
	  	text-decoration: none;
		font-weight: bold;
		font-variant: small-caps;
		font-size: 14px;
	}
	
	#mainContent .homeBox a:hover, #mainContent .homeBox a:active { 
	  	color: #f00;
	}

	.homeBoxHead {
		color: #db8f22;
		font-weight: bold;
		font-variant: small-caps;
		font-size: 14px;
	}
	
	#mainContent .homeBox ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	#mainContent .homeBox li {
		background-image: url(../images/dot-bullet.gif);
		background-repeat: no-repeat;
		background-position: 0 .4em;
		padding-left: 1em;
		line-height: 1.5;
	}
/* END home page only styling */
