@charset "utf-8";

body  {

	font: 100% Arial, Helvetica, sans-serif;

	background: #e8f5fb;

	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;

}

.thrColFixHdr #container { 

	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	background: #FFFFFF url(images/contbg.png) top left repeat-y;

	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. */
	
} 

.thrColFixHdr #innercontainer { 

	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	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. */
	
} 


a, a:visited { 

color: #03b9fd;

text-decoration: none;

} 



a:hover { 

color: 03b9fd;

text-decoration: underline;

} 



.thrColFixHdr #header { 

	background: #03b9fd; 

	color: #f8f8f8;

	font-weight: bold;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

height: 50px;

} 



.thrColFixHdr #topNav { 

	background: #000000; 

    height: 20px;

	font-size: 16px;

	font-weigh: bold;

	color: white;

	padding-top: 1px;

	padding-bottom: 1px;
	
	padding-right: 10px;

margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

}

.thrColFixHdr #topNav a {
	font-size: 16px;

	font-weigh: bold;

	color: white;
text-decoration: none;
}

.thrColFixHdr #topNav a:hover {

	font-size: 16px;

	font-weigh: bold;

	color: white;
	
	text-decoration: underline;
}

.thrColFixHdr #topNav a:visited {

	font-size: 16px;

	font-weigh: bold;

	color: white;
	text-decoration: none;
}




.thrColFixHdr #header h1 {

	margin: 0; 

	margin-left: 10px;
	
	padding-top: 5px;
	
}

.thrColFixHdr #sidebar1 {

	float: left; /* since this element is floated, a width must be given */

	width: 200px; /* 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: #f8f8f8;  /* the background color will be displayed for the length of the content in the column, but no further */

	padding: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
	
	margin: 1px;

	border: 1px dashed #03b9fd;


}

.thrColFixHdr #sidebar1noback {

	float: left; /* since this element is floated, a width must be given */

	width: 200px; /* 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 */

	border: 1px dashed #03b9fd;


}

.thrColFixHdr #sidebar1 ul {

width: 200px;
margin-left: -40px;
}

.thrColFixHdr #sidebar1 li {
list-style:none;
padding-top: 4px;
padding-bottom: 4px;
border-top: 1px dashed #03b9fd;

}

.thrColFixHdr #last {
list-style:none;
padding-top: 4px;
padding-bottom: 4px;
border-top: 1px dashed #03b9fd;
border-bottom: 1px dashed #03b9fd;
}

.thrColFixHdr #sidebar1 li a {

color: #333333;
font-weight: bold;
font-size: 14px;
list-style:none;
}

.thrColFixHdr #sidebar1 li a:hover {

color: #333333;
font-weight: bold;
font-size: 14px;
list-style:none;


}

.thrColFixHdr #sidebar1 li a:visited {

color: #333333;
font-weight: bold;
font-size: 14px;
list-style:none;

}

.thrColFixHdr #sidebar2 {

	float: right; /* since this element is floated, a width must be given */

	width: 160px; /* 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 */



	padding: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
	
	margin: 1px;



text-align: center;

}

.thrColFixHdr #mainContent { 

	margin: 0 230px; 

	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

	

} 

.thrColFixHdr #mainContentcart { 

	margin: 0 10px; 
	
	margin-left: 250px;

	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

	

} 


.thrColFixHdr #footer { 

	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

	background: #f8f8f8; 

} 

.thrColFixHdr #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;

}

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

}