/* SUB PAGES STYLE SHEET */

@charset "UTF-8";


body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	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;
	background-color: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

.twoColElsLtHdr  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	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;
	background-color: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

.twoColElsLtHdr #container { 
	width: 1024px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background-color: #CFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/faux_columns.gif);
	background-position: left;
	background-repeat: repeat-y;
} 


/* HEADER */

.twoColElsLtHdr #headerRed { 
	background-color: #900;
	width: 1024px;
	height: 21px; 
	margin: 0;
	padding: 0;
	zoom: 1;
} 

.twoColElsLtHdr #headerBlack {
	background-color: #000;
	width: 1024px;
	height: 7px; 
	margin: 0;
	padding: 0;
	zoom: 1;
}

.twoColElsLtHdr #headerMain {
	background-color: #000;
	width: 1024px;
	height: 272px; 
	padding: 0;
	margin: 0;
	border: none;
	zoom: 1;
}


/* MAIN NAV */

.twoColElsLtHdr #mainNav {
	background-color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #FFC;
	width: 1024px;
	height: 28px; 
	padding: 0;
	margin: 0;
	border-bottom: 2px solid #000;
	zoom: 1;
}

.twoColElsLtHdr #mainNav img {
	padding: 0;
	margin: 0;
	border: none;
	zoom: 1;
}

.twoColElsLtHdr #mainNav a {
	padding: 0;
	margin: 0;
	border: none;
	zoom: 1;
}



/* SIDEBAR - SUB NAV */

.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 185px; /* since this element is floated, a width must be given */
	background-color: #339999;  /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 25px 30px 0; /* top and bottom padding create visual space within this div */
	text-align: right;
	margin: 0;
}

.twoColElsLtHdr #container #sidebar1 p a img {
	border: none;
}

.twoColElsLtHdr #container #sidebar1 p {
	font-size: 75%;
	color: #FFC;
}


/* MAIN CONTENT */

.twoColElsLtHdr #container #mainContent {
	margin: 0 125px 0 275px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 30px 0 10px 0; /* top and bottom padding create visual space within this div */
	font-size: 75%;
} 

.twoColElsLtHdr #container #mainContent img {
	border: none;
}

.twoColElsLtHdr #container #mainContent p a {
	color: #399;
	text-decoration: none;
	font-weight: bold;
}

.twoColElsLtHdr #container #mainContent ul li a {
	color: #399;
	text-decoration: none;
	font-weight: bold;
}

.twoColElsLtHdr #container #mainContent .fltlft img {
	background-color: #CFF;
	border: none;
}

.twoColElsLtHdr #container #mainContent .fltrt h3 p {
	text-align: left;
}

.twoColElsLtHdr #container #mainContent .subHead {
	font-size: 90%;
	font-weight: bold;
}

.twoColElsLtHdr #container #mainContent p.photoCaption {
	font-size: 90%;
	font-style: italic;
}

.twoColElsLtHdr #container #mainContent p.leading {
	font-size: 25%;
}



/* FOOTER */

.twoColElsLtHdr #footer { 
	background-color: #900;
	border-top: 2px solid #000;
} 

.twoColElsLtHdr #footer p {
	font-size: 70%;
	color: #FFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 40px 7px 40px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
}

.twoColElsLtHdr #footer p a {
	color: #FFC;
	font-weight: bold;
	text-decoration: none;
}


/* Miscellaneous classes for reuse */

.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: 15px;
	margin-bottom: 15px;
	margin-top: 10px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-top: 10px;
}

.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;
}
