@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #333;
	background-image: url(../images/background_slice.gif);
	background-repeat: repeat-x;
}


/* 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 #contentWrapper 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.
*/
#container {
	width: 774px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/banner.gif);
	background-repeat: no-repeat;
	background-position: top;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#header {
	padding: 0px 0px 0px 20px;  /* 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. */
	height: 270px;
} 
#contentWrapper {
	padding: 0 10px;
	font-size: 0.8em;
	background-repeat: no-repeat;
	margin-top: -15px;
}
#contentWrapper h1 {
	font-size: 1.2em;
	color: #BE0000;
}
#contentWrapper h2 {
	font-size: 1em;
	color: #BE0000;
}

#contentWrapper #leftColumn {
	float: left;
	padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #BF0103;
}

#contentWrapper #leftColumn a:hover {
	text-decoration: underline;
}




/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#contentWrapper #content {
	margin: 0 0 0 14em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 10px 10px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */

#container #contentWrapper #content a:hover {
	text-decoration: underline;
}

#contentWrapper .clearFloat {
  clear: left;
  display: block;
}

#footer {
	padding: 20px 10px 10px 10px;
	color: #FFFFFF;
	background-color: #BE0000;
	font-size: 0.7em;
	height: 30px;
} 
#footer a     {
	color: #ffffff;
	text-decoration: none;	
	}


#footer a:hover    {
	color: #ffffff;
	text-decoration:underline;
	}
	
#footer a:active   {
	color: #ffffff;
	}	
#footer a:focus    {
	color: #ffffff;
	}	
#footer a:visited    {
	color: #ffffff;
	}	
#footer #footerContent {
	width: 740px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: left;
	padding: 0 10px;
}

#footerLeft {
	float: left;
	width: 50%;
}

a {
	color: #BE0000;
	text-decoration: none;
}

#AAlogo {
	float: right;
	width: 120px;
	margin-top: 14px;
	margin-left: 590px;
	margin-right: 20px;
}
#footerRight {
	float: right;
	width: 35%;
}



{
     margin: 0;
 }
 html, body {
     height: 100%;
 }
 .wrapper {
     min-height: 100%;
     height: auto !important;
     height: 100%;
     margin: 0 auto -60px;
 }
 .footer, .push {
     height: 60px;
 }
#highlightBox {
	background-color: #FF6;
	float: right;
	width: 250px;
	border: 3px double #BE0000;
	padding: 6px;
	margin: 6px;
	font-weight: bold;
	font-size: .9em;
}
