@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 */
	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: #555;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 70%;
	line-height: 1.4em;
	text-decoration: none;
	background-color: #FFF;
}
.twoColFixRtHdr #container {
	width: 1010px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #F5F5F5;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	padding: 5px;  /* 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: #CC0000;
	color: #FFFFFF;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
.twoColFixRtHdr #masthead {
	background-color: #FFFFFF;
	height: 120px;
	background-image: url('../images/bg_mast_drop.png');
	background-repeat: repeat-x;
	background-position: left bottom;
	color: #666666;
	position: relative
}
.twoColFixRtHdr ul.mastNav  {
	list-style-type: none;
	padding: 0px;
	background-image: url('../images/bg_fade.png');
	background-repeat: no-repeat;
	background-position: right top;
	text-align: right;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px
}
.twoColFixRtHdr ul.mastNav li {
	display: inline;
}
.twoColFixRtHdr ul.mastNav li a{
	display: inline;
	line-height: 27px;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 10px;
	padding-right: 20px;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixRtHdr #masthead h1 a{
	background-image: url('../images/img_logo.jpg');
	background-repeat: no-repeat;
	height: 110px;
	background-position: 40px 5px;
	width: 440px;
	display: block;
	float: left
}
.twoColFixRtHdr #masthead h1 span{
	display: none;		
}
.twoColFixRtHdr #masthead h2{
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	font-size: 2em;
	font-weight: normal;
	padding-top: 25px;
	margin-left: 440px;
}
.twoColFixRtHdr #masthead p{
	font-family: Tahoma, Verdana, sans-serif;
	color: #666666;
	font-size: 1.2em;
	font-weight: normal;
	margin-left: 440px;
}
.twoColFixRtHdr #container .masthead_column_2 {
	width: 670px;
	float: right;
	text-align: right;
}
 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 330px;
}
.twoColFixRtHdr #mainContent {
	margin: 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 660px;
} 
.twoColFixRtHdr #mainContent #mainColumn1 {
	width: 180px;
	float: left;
}
.twoColFixRtHdr #mainContent #mainColumn2 {
	float: right;
	width: 450px;
}
.twoColFixRtHdr #mainContent #mainColumn3 {
	float: right;
	width: 630px;
}
.twoColFixRtHdr #footer {
	padding: 0;
	background-color: #000000;
	margin: 0px;
	color: #FFFFFF;
} 
.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;
}
.gutter {
	padding: 10px;
}