@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666 url(../images/topbackgroundblack.jpg) repeat-x;
	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;
}
.twoColHybLt #container { 
	width: 840px;  /* this will create a container 80% of the browser width */
	background: url(../images/vertical-bg.jpg) repeat-y;
	margin: 0 auto;
	text-align: left;
	padding-top: 0;
	border-style: none;
} 

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLt #sidebar1 p" rule.
*/
.twoColHybLt #sidebar1 {
	float: left; 
	width: 328px;
	padding-right: 0;
	padding-left: 0;
	background: url(../images/leftback.jpg) repeat-y;
}
.twoColHybLt #sidebar1 h3, .twoColHybLt #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLt #mainContent { 
	margin: 0 0 0 330px;
	padding:10px 35px;
	background-repeat: repeat-y;
} 

/* Miscellaneous classes for reuse */
.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;
}

.copy {
	color: black;
	font: 12px/22px "Trebuchet MS", Tahoma, arial, Sans-serif;
	margin-top: 0;
	margin-right: 0;
	padding-left: 0px;
	margin-bottom: 5px;
}

.copy p {
	color: black;
	font: 12px/22px "Trebuchet MS", Tahoma, arial, Sans-serif;
	margin-bottom: 0;
	margin-top: 5px;
	margin-right: 0;
	padding-left: 11px;
}

.copy-quotes {
	color: black;
	font: 12px/22px "Trebuchet MS", Tahoma, arial, Sans-serif;
	margin: 0 10px 15px;
}

.copy-quotenames {
	color: black;
	font: bold 12px/16px "Trebuchet MS", Tahoma, arial, Sans-serif;
	margin-right: 0;
	margin: 0;
}

#logo {
	position: static;
	left: 0;
	top: 0;
	width: 328px;
	height: 438px;
	z-index:1;
	float: left;
	clear: left;
	background: url(../images/vertical-bg.jpg) repeat-y;
	padding-bottom: 30px;
}

#topmenu {
	padding-top: 0;
	padding-bottom: 0;
	width: 840px;
	height: 70px;
	bottom: 0;
	margin-bottom: 0;
	margin-top: 0;
}

#bottommenu {
	padding-top: 0;
	padding-bottom: 0;
	font: 10px/12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #fff;
	padding: 5px;
	background: black repeat-x;
	text-align: center;
}

.creditcardimg {
	width: 455px;
	height: 242px;
	clear: left;
	margin-bottom: 10px;
	margin-top: 0;
	margin-right: 0;
	background-position: -37px;
	top: 0;
	float: left;
	display: inline;
	position: fixed;
}

#apDiv1 {
	position: absolute;
	left:466px;
	width:461px;
	height:248px;
	top: 72px;
	display: none;
}

.header1 {
	color: navy;
	margin-right: 0;
	font: bold 18px/20px Georgia, "Times New Roman", Times, serif;
	margin-bottom: 10px;
	margin-top: 15px;
	padding-left: 11px;
	text-align: left;
	direction: ltr;
	text-decoration: none;
	letter-spacing: -1px;
}

/* @group navigation top */

div#navcontainer
{
background: white url(../images/topbackgroundblack.jpg) repeat-x;
position: static;
right: 0px;
margin: 0 0 0 330px;
padding: 10px;
border: 0;
	height: 70px;
	width: 490px;
	text-transform: uppercase;
	font: 12px/15px arial;
}

div#navcontainer ul
{
display: inline;
padding: 0;
list-style: none;
	margin-bottom: 0;
	margin-top: 0;
	margin-right: 0;
	border-style: none;
}

div#navcontainer h2
{
border: solid 1px #642;
padding: 4px;
text-align: center;
}

div#navcontainer ul li
{
display: inline;
margin: 0;
}

div#navcontainer ul li a
{
color: white;
background: gray;
margin: 0 10px 0 0;
padding: 0 10px 2px 4px;
text-decoration: none;
	top: 50px;
	position: static;
	font-weight: bold;
}

div#navcontainer ul li a:hover
{
background: silver;
border-bottom: solid 9px #ffc;
}
/* @end */

.blockquote {
  margin: 10px 10px 10px 15px;
  padding: 4px 0 4px 42px; 
  color: #0f3395;
  border: 1px solid #E5F0FB;   
  background: #f6f4f5 url(../images/quote.jpg) no-repeat 8px 0;
	font: 15px/1.5em "Trebuchet MS", Tahoma, arial, Sans-serif;
	text-align: left;
}



.hdr{
	width: 99%;
	margin-bottom: 2em;
	height: 65px;
	float: left;
	display: block;
}

*{
    margin:0;
    padding:0;
	text-align:left;
}

ul.hdrul{
	padding-left: 0;
	list-style-position: inside;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

ul{
	list-style-type:disc;
	padding:0px 0px 15px 40px;
	list-style-position: inside;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

ol li, ul li{
	padding:0px 0px 5px 0px;
}

.hdrlst{
	float: left;
	color: #000;
	font: 12px/16px "Lucida Grande", Lucida, Verdana, sans-serif;
	padding: 0px 25px 0px 10px;
	text-align: left;
	direction: ltr;
}


#sidebar { width: 260px;
	color: #000;
	font: bold 16px/25px Georgia, "Times New Roman", Times, serif;
	padding-left: 0;
	margin-left: 10px;
	text-decoration: none;
}

#sidebar a
{
padding: 3px;
width: 160px;
background-color: transparent;
border-bottom: 1px solid #eee;
	color: #000;
	text-align: left;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#sidenavcontainer a:link, #navlist a:visited
{
color: #000;
	text-decoration: none;
}

#sidebar a:hover
{
color: red;
	text-decoration: none;
	border-bottom: 5px solid gray;
}

/* @group forms */

.formboxes {
	border: 1px solid silver;
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #000;
	text-align: left;
	background-color: #ebebeb;
	padding: 5px;
}

.formboxes_button {
	border: 1px solid #aed0ce;
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #000;
	text-align: left;
	background-color: #F4F8FD;
	padding: 5px;
}

.formboxes_button a:hover {
	border: 1px solid #aed0ce;
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: white;
	text-align: left;
	background-color: #1700b5;
	padding: 5px;
}

form {
	margin: 0;
	padding: 0;
}

.form_name_rght {
	color: #000;
	font: 13px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: right;
}

.form_header {
	font: bold 13px/22px Georgia, "Times New Roman", Times, serif;
	color: #000;
	text-align: left;
	background-color: #dfdfdf;
	text-transform: uppercase;
	padding-left: 6px;
	padding: 6px;
}

form {
	margin: 0;
	padding: 0;
}

/* @end */
