@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF url(images/background.jpg) repeat top center;
	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 */
}
.twoColFixRtHdr #container { 
	width: 780px;  /* 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 #06266F;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	height: 156px;
	background: transparent url(images/header.gif) no-repeat top left;
	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. */
} 
.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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 20px 20px 10px;
	margin: 0px 0px 0px 0px;
	font-size: 12px;
}

.twoColFixRtHdr #rightImage {
	margin: 0 0 20px 0;
	padding: 0 0 0 0;
}

.twoColFixRtHdr #mainContent { 
	margin: 0 230px 0 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: 20px 10px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixRtHdr #mainContent h1 { 
	margin: 0px 0 10px 0;
	padding: 0 0 0 0;
	font-size: 14px;
	font-weight: bold;
	color: #cf5415;
	line-height: 22px;
} 

.twoColFixRtHdr #mainContent h1 a { 
	margin: 0px 0 10px 0;
	padding: 0 0 0 0;
	font-size: 14px;
	font-weight: bold;
	color: #cf5415;
	line-height: 22px;
} 

.twoColFixRtHdr #mainContent h2 { 
	margin: 15px 0 10px 0;
	padding: 5px 0 0 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	color: #06266F;
	text-transform: capitalize;
} 

.twoColFixRtHdr #mainContent h3 { 
	margin: 10px 0 10px 0;
	padding: 0 0 0 0;
	font-size: 13px;
	font-weight: normal;
	color: #06266F;
	text-transform: capitalize;
} 

.twoColFixRtHdr #mainContent h4 { 
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 12px;
	font-weight: normal;
	color: #06266F;
	text-transform: capitalize;
} 

.twoColFixRtHdr #mainContent p {
	margin: 0px 0 10px 0;
	padding: 0 0 0 0;
	font-size: 11px;
	line-height: 16px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.twoColFixRtHdr #mainContent a {
	text-decoration: none;
	border: none;
} 

.twoColFixRtHdr #mainContent a img {
	border: none;
} 

.twoColFixRtHdr #mainContent table {
	margin: 0 0 15px 0;
	padding: 0 0 0 0;
}

.twoColFixRtHdr #mainContent table tr td {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 11px;
	vertical-align: top;
}

.twoColFixRtHdr #mainContent table tr td h3 a{ 
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-decoration: none;
	font-size: 11px;
	color: #2A4480;
	text-transform: uppercase;
}

.twoColFixRtHdr #mainContent ul { 
	margin: 0 0 10px 5px;
	padding: 0 0 0 0;
	list-style: none;
	padding-left: 0;
}

.twoColFixRtHdr #mainContent ul li { 
	margin: 0 0 0 0;
	padding: 0 0 0 20px;
	font-size: 11px;
	line-height: 22px;
	background: url(images/tick.gif) no-repeat 0 50%;
	color: #000000;
}

.twoColFixRtHdr #mainContent ol li { 
	font-size: 11px;
	line-height: 22px;
	color: #06266F;
}

.twoColFixRtHdr #footer { 
	padding: 10px 10px 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #06266F; 
	background: transparent url(images/footer.gif) no-repeat top left;
	text-align: center;
} 
.twoColFixRtHdr #footer p {
	margin: 0 0 0 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#topnav {
	margin: 0 0 0 0;
	padding: 123px 0 0 0;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}

#topnav ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#topnav li {
	display: inline;
	list-style: none;
	padding: 0 5px 0 5px;
}

#topnav a {
	text-decoration: none;
	text-transform: uppercase;
	color: #FFFFFF;
}

#topnav a:hover {
	color: #6C8CD5;
}

#rightnav {
	background-color: #F0F0F0;
	margin: 0 0 20px 0;
}

#rightnav h4 {
	display: block;
	color: #ffffff;
	background-color: #06266F;
	font-size: 11px;
	font-weight: bold;
	margin: 20px 0 12px 0;
	padding: 7px 7px 7px 7px;
}

#rightnav a {
	color: #000000;
	text-decoration: none;
	text-transform: capitalize;
}

#rightnav a:hover {
	color: #06266F;
}

#currentpage {
	font-weight: bold;
	text-transform: capitalize;
}

#rightnav ul {
	list-style: none;
	padding: 0 0 7px 0;
	margin: 0px 7px 0px 7px;
}

#rightnav li {
	margin: 7px 0 7px 0;
	padding: 0 0 0 0;
	line-height: 17px;
	font-size: 11px;
}

#emailsignup {
	margin: 0px 0px 20px 0px;
}

#emailsignup a {

}

#emailsignup a img {

}

#rightContent {
	background-color: #FFECD9;
	margin: 0px 0px 20px 0px;
}

#rightContent h4 {
	display: block;
	color: #ffffff;
	background-color: #cf5415;
	font-size: 11px;
	font-weight: bold;
	margin: 20px 0 12px 0;
	padding: 7px 7px 7px 7px;
}

#rightContent p {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#rightContent ul {
	list-style: none;
	padding: 0 0 7px 0;
	margin: 0px 7px 0px 7px;
}

#rightContent li {
	margin: 7px 0 7px 0;
	padding: 0 0 0 0;
	line-height: 17px;
	font-size: 11px;
}

#rightContent a {
	color: #000000;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: normal;
	font-size: 11px;
}

#rightContent a:hover {
	color: #cf5415;
}

#rightForm {
	visibility: hidden;
	margin: 0 0 0 0;
	padding: 15px 10px 15px 10px;
	border: 1px solid #6C8CD5;
}

#contactform label {
	display: block;
}

#contactform textarea {
	width: 400px;
	height: 100px;
	border: 1px solid #6C8CD5;
}

#contactform .textInput {
	width: 400px;
	border: 1px solid #6C8CD5;
}

.warning {
	color: #FF0000;
	font-weight: normal;
}

.video {
	width: 400px;
	height: 225px;
	border: 1px solid #6C8CD5;
	margin: 0px 0px 15px 0px;
}

.freequote {
	border-style: none;
}

#sitemap {
	margin: 10px 0 0 0;
}

#sitemap p a {
	color: #6C8CD5;
}

#sitemap p a:hover {
	color: #FFFFFF;
}

.boldlist li {
	color: #06266F;
	font-weight: bold;
}

.co {
	background: #06266F;
	margin: 20px 0px 20px 0px;
	padding: 10px;
	text-align: left;
}

.co a {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}

.testimonial {
	background: #F0F0F0;
	margin: 20px 0 20px 0;
	padding: 10px 10px 10px 10px;
}

.testimonial p {
	color: #06266F;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	line-height: 18px;
}

#emailSubscribe {
	margin: 20px 0 20px 0;
	padding: 10px 10px 10px 10px;
	border: 1px solid #CCCCCC;
}

.mainImage {
	margin: 0px 0px 20px 0px;	
}

.comments {
	margin: 10px 0px 20px 0px;
}

.addthis-here {
	margin: 10px 0px 20px 0px;
}

#fanbox {
	padding: none;
	margin: none;
	border-bottom: #94A3C4 1px solid;
}

#logos {
	padding: 0 10px 0 10px;
	margin: 20px 0 20px 0;
	border: #CCC 0px solid;
}

#logos a img {
	border: none;
	padding: none;
	margin: 10px 0 10px 0;
}