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

body  {
	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: #FFF;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #333;
}
.thrColFixHdr #container {
	width: 800px; /* the auto margins (in conjunction with a width) center the page */
	border: 8px ridge #CCC;
	text-align: left;
	margin: 10px auto 0;
	background: url(../-images/bg.jpg) repeat scroll center top;
} 
.thrColFixHdr #container960 {
	width: 960px; /* the auto margins (in conjunction with a width) center the page */
	border: 8px ridge #CCC;
	text-align: left;
	margin: 10px auto 0;
	background: url(../-images/bg.jpg) repeat scroll center top;
} 
.thrColFixHdr #top {
	border-bottom: 2px solid #999;
	padding: 0px 0px 0;
	height: 18px;
	background: #B2B2B2;
}
#top2 {
	border-bottom: 2px solid #999;
	padding: 0px 20px 0 0px;
	height: 22px;
	background: #616161;
}
a {
	text-decoration: none;
	color: #FFF;
}
a:hover {
	text-decoration: underline;
	color: #CCC;
	font-weight: bold;
	border-bottom: 2px solid #999;
	padding: 0px 10px 0 20px;
}
.thrColFixHdr #headerStart h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}
#headerStart h1 a   {
	color: #FFF;
	text-decoration: underline;
	font-size: 0.75em;
	display: inline;
	padding-right: 30px;
	padding-left: 30px;
}
#headerStart h1 a:hover {
	color: #CCC;
	text-decoration: none;
	font-size: 0.75em;
}.thrColFixHdr #header {
	background-attachment: scroll;
	background-image: url(../-images/header.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 40px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-bottom: 2px solid #999;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}
.thrColFixHdr #columnL {
	float: left; /* since this element is floated, a width must be given */
	width: 520px;
	padding: 0px 20px 15px;
	border-right: 2px solid #999;
	border-top: 0px none #999;
	border-bottom: 2px none #999;
	border-left: 2px none #999;
}
.videoLink {
	background: #888;
	padding: 5px;
	width: 340px;
	border: 3px outset #CCC;
	height: 54px;
	margin-bottom: 10px;
}
.thrColFixHdr #columnR {
	float: right;
	padding: 0px 20px 15px;
	width: 340px;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 120px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 160px;
	margin-bottom: 0;
	margin-left: 160px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #footer {
	padding: 0 0px;
	height: 28px;
	background: #616161 no-repeat scroll center bottom;
} 
.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;
}
.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;
}
.video {
	text-align: center;
}
.red {
	color: #F00;
	font-weight: bold;
}
.redCenter {
	font-weight: bold;
	color: #F00;
	text-align: center;
}
