body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #333333;
}
.twoColFixRtHdr #container { 
	width: 1024px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background: #fff; 
	padding: 0 10px 0 0px;  /* 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. */
} 
.twoColFixRtHdr #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 */
}

a:link, a:visited{
	COLOR:inherit;
	text-decoration:inherit;
}

/*************************************GLOBAL FONT STYLES****************************************/

h1 {
	font-size:2em;
}

h2 {
	font-size:1.5em;
}


h3 {
	font-style:oblique;
	font-size:1em;
}

p{
	font-size:0.875em;
	line-height: 140%;
}

p a {
	color:#5c8aa3;
	font-weight:bold;
}

p a:hover {
	color:#7fb8d7;
	font-weight:bold;
}

/*************************************GLOVAL FONT STYLES END****************************************/



/*************************************DROP DOWN MENU START****************************************/

#nav-left {
	float: left;

}
#nav-right {
	float:right;

}

#navigation{
	background-color: #292020;
	width:1024px;
	height:44px;

}

#cssdropdown, #cssdropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
}

#cssdropdown li {
	float: left;
	position: relative;
	z-index: 500;
}

.mainitems{
	padding: 12px 0px 0px 60px;
}

.mainitems a{
	margin-left: 6px;
	margin-right: 8px;
	text-decoration: none;
}

.subuls{
	display: none;
	width: 10em;
	position: absolute;
	top: 1.2em;
	left: 0;
	background-color: #292020;
}

.subuls li{
	width: 100%;
	padding: 5px 0px 5px 5px;
}

.subuls li a{
	font-size:16px;
}

.subuls li a:hover {
	color:#7fb8d7;
}

#cssdropdown li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

 #cssdropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
     display: block;
}

#restofcontent { /*wrap rest of content of the page inside this div*/
	clear: left;
}




/*************************************DROP DOWN MENU END****************************************/


/*************************************BREAD CRUMB START****************************************/
.Bread_Crumb {
	font-size: 0.775em;
	color: #949494;
	padding: 5px 0px 5px 40px;

}

.Bread_Crumb a:hover{
	color: #7fb8d7;
}

/*************************************BREAD CRUMB END****************************************/




/*************************************MAINT CONTENT****************************************/

.twoColFixRtHdr #mainContent { 
	margin: 0px 350px 0px 0px; /* 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: 0px 0px 0px 50px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

} 

#mainContent a {
	color:#5c8aa3;
	font-weight:bold;
}

#mainContent a:hover {
	color:#7fb8d7;
	font-weight:bold;
}

#mainContent li {
	font-size:0.875em;
	line-height: 140%;
	
}

#mainContent li a {
	color:#5c8aa3;
	font-weight:bold;
}

#mainContent li a:hover {
	color:#7fb8d7;
	font-weight:bold;
}

/*************************************MAINT CONTENT END****************************************/

/*************************************FORM START****************************************/

label {
	width: 10em;
	float: left;
	text-align: right;
	margin-right: 0.5em;
	display: block;
}


fieldset {
	border: 1px solid #7fb8d7;
	width: 20em;
}


textarea, select, input {
	color: #000;
	background: #fff;
	border: 1px solid #7fb8d7;
}


.submit input {
	margin-left: 11em;
	color: #000;
	background: #7fb8d7;
	border: 2px outset #d7b9c9;
	width: 10em;
} 

/*************************************FORM END****************************************/

/*************************************PROMO BOX****************************************/


.twoColFixRtHdr #promobox  {	
	float: right; /* since this element is floated, a width must be given */
	margin: 20px 33px 20px 0px;
	width: 300px; /* 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: #7fb8d7;

}

b.btop, b.btop b, b.bbot, b.bbot b{
    display: block;
	height: 10px;
	font-size: 1px;
    background-image:url(../images/rc.png);
    background-repeat: no-repeat;
}

b.btop b {
	background-position: 100% -10px;
}

b.bbot {
	background-position: 0 -20px;
}
b.bbot b {
	background-position: 100% -30px;
} 

.twoColFixRtHdr #promobox h3, h4, p {	
	padding: 0px 5px 0px 10px;
}

.twoColFixRtHdr #promobox a {	
	color: #fff;
	font-weight: bold;
}

.twoColFixRtHdr #promobox a:hover {	
	text-decoration: underline; 
	color: white;

}
/*************************************PROMO BOX END****************************************/


/*************************************START FAT FOOTER****************************************/
.twoColFixRtHdr #footer { 
	padding: 0 40px 15px 40px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
	margin: 20px 33px 0 33px;
} 

.twoColFixRtHdr #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 */
	font-size:0.775em;
	line-height: 140%;
}


.twoColFixRtHdr #footer a {
	color: #333333;
	font-weight:normal;

}

.twoColFixRtHdr #footer a:hover {
	color:#7fb8d7;
	font-weight:normal;

}

.left {
	text-align:left;
	float: left;

}

.right {
	float:right;
	text-align:right;

}

.centered {
	text-align:center;

}



/*************************************END FAT FOOTER****************************************/


/*************************************START COPYRIGHT****************************************/

#copyright {
	background:#fff; 
	font-size: 0.775em;
	color: #949494;
	text-align: left;
	margin: 20px 33px 20px 33px;

}

/*************************************END COPYRIGHT****************************************/

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