@charset "utf-8";
body  {

	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

	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 */

}
.prodPages #container { 
	width: 912px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px solid #00539b;
	border-right: 1px solid #00539b;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.prodPages #breadcrumb {
	padding:8px 0 8px 4px;
	text-align:left;
}
.prodPages #leftNavLinks a {
	padding-top: 0px;
	padding-right: 5px;
	/*padding-bottom: 10px;*/
	padding-left: 10px;
	display:block;
}
.prodPages #leftNavLinks a:hover {
	background-color: #CCCCCC;
	color:#333333;
}
.prodPages #leftNavLinks {
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.prodPages #description {
	color: #333333;
	background: #fff;
/*	border:1px solid #ccc;*/
	/*font-weight:bold;*/
	text-align:justify;
	/*padding:10px;*/
}


.prodPages #header { 
	/*padding: 0 10px 0 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. */
	background-color: #fff;
} 

/*--   SIDEBAR CSS   --*/
.prodPages #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 242px; /* 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: #00539b;
	 /* background: #ced6ef;*/
	/*border-left:#d1d1d1 10px solid;*/
/*	padding-top: 5px;*/
	padding-right: 0px;
	/*padding-left: 10px;*/
}

.prodPages #sideBarHeader {
	background:url(../images/sidebar/blue/Sidebar1_Header.gif) no-repeat;
	padding: 10px 0 10px 25px;
	font-size: 13px;
	color: #00539b;
	font-weight: bold;
	text-align: left;
	
}	
.prodPages #sideBarFill {
	background: url(../images/sidebar/blue/Sidebar1_fill.gif) repeat-y;
	padding: 10px 20px 10px 20px;
	
}
.prodPages #sideBarFooter {
	background:url(../images/sidebar/blue/Sidebar1_footer.gif) no-repeat;
	height:29px;	
}
.prodPages #sideBarBottom {
	background: url(../images/sidebar/blue/SideBar_Bottom.gif) no-repeat;
	height:20px;	
}
/*--    MAIN CONTENT CSS    --*/
.prodPages #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
} 
.prodPages #footer {
	text-align:right; 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff; 
} 
.prodPages #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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

