@charset "utf-8";
/* CSS Document */

body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image:url(../images/background02.jpg); 
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

#gradient{
	background-image:url(../images/background01.jpg); background-repeat:repeat-x;
}

#container { 
	background: #FFFFFF;
	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. */
	width:1056px;

} 

#header { 
	height: 186px;
	width: 1056px;
	position:relative;
} 

#hflash
{
position:absolute;
top:0px;
left:0px;
}





/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ". #sidebar1 p" rule.
*/
#sidebar {
	float: left; 
	width: 180px; /* since this element is floated, a width must be given */
	margin: 0px 0px 0px 50px;
	position:absolute;
	z-index:30;
}

#sidebar ul{
list-style:none;
text-align:right;
padding:12px;
margin:0px;
border-bottom:1px solid #aaaaaa;
}


#mainContent {
	padding: 20px 100px 0px 350px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	
}


#mainContent h1 {
	padding: 0px;
	text-align:justify;
	font-family:Arial, Helvetica, sans-serif; 
	font-size:24px;
	font-weight:normal;
	color:#f26a22;
} 

#mainContent h2 {
	padding: 20px 0px 5px 0px;
	text-align:justify;
	font-family:Arial, Helvetica, sans-serif; 
	font-size:12px;
	font-weight:bold;
	color:#f26a22;
	border-bottom: 1px solid #f26a22;
} 


#mainContent{
	text-align:justify;
	font-family:Arial, Helvetica, sans-serif; font-size:12px;
	color:#ffffff;
}

#mainContent ul {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 18px;
	text-align:left;
	font-family:Arial, Helvetica, sans-serif; font-size:12px;
	color:#ffffff;
	list-style-image:url(../images/bullet.gif);
}


#mainContentBG {
	background-image:url(../images/background03.jpg); background-repeat:repeat-y;
	width:1056px;
}

#footer { 
	border-top:1px solid #aaaaaa;
	margin-top:50px;
} 

#footer a, a:link { 
	font-family:Arial, Helvetica, sans-serif; font-size:10px;
} 
#footer p {
	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 40px 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family:Arial, Helvetica, sans-serif; font-size:10px;
	text-align:right;
	color:#9f9f9e;
}

.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: 1px;
    line-height: 0px;
}

a, a:link {
	font-size: 12px;
	color:#bbbbbb;
	text-decoration: none;
}

a:hover {
	color:#f26a22;
	text-decoration: none;
}

#mainContent .ardenTitles p{
	padding: 0px;
	margin: 0px;
}

#mainContent .ardenTitles2 {
	margin: 0px 0px 20px 10px;
	text-align:center;
	display:inline;
}

#mainContent .ardenTitles2 p{
	padding: 0px;
	margin: 0px;
	text-align:center;
}

#contactTable {
	margin: 0px 0px 0px 20px;
	color:#FFFFFF;
	width: 575px;
}

#arden {
	float:right;
	margin: 10px;
}
