@charset "UTF-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 10px 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;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* 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: 2px solid #b0a681;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding: 0 20px 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. */
	height: 125px;
	background: url(images/header_image.jpg) no-repeat;	
}
.oneColFixCtrHdr #logo {
	margin: 20px 0 0 0;
	width:210px;
	float:left;
}
.oneColFixCtrHdr #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: 20px 0 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	float: left;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #blurp {
	width:760px;
	height:300px;
	margin-top:20px;
}
.oneColFixCtrHdr #blurpflash {
	width:450px;
	height:300px;
	float:left;
}
.oneColFixCtrHdr #blurpcopy {
	width:285px;
	height:290px;
	background:url(images/blurp_copy_bg.gif) no-repeat;
	float:right;
	padding: 0 10px 10px 15px;
}
#blurpcopy ul {
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.90em;
	font-style:italic;
	line-height:1.5;
}
.oneColFixCtrHdr #landingboxes {
	width:760px;
	height:150px;
	margin-top:20px;
}
p {
	font-size:0.75em;
}


.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #F7E8D3;
}
.oneColFixCtrHdr #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:.70em;
}

/*- Menu Tabs I--------------------------- */

#menubar {
	font-size: 0.85em;
	float: right;
	line-height:normal;
	margin-top:8px;
	display: block;
	clear: right;
}

/* This is the containing element for the menu. We set a font size and background color (black). We set width to 100% and we float it left. Floating this box left allows the container to stretch the full height of the likewise floated menu items. If you remove the float property from this rule you will need to use a clearing element before the #p7menubar DIV's ending tag. */

#menubar ul {
	margin:0;
	padding:10px 0 0 10px;
	list-style-type:none;
}

/* The menu UL is given a zero margin and 10 pixels of padding on the top, right, and left sides. Setting list-style-type to none eliminates bullets. */

#menubar li {
float:left;
margin:0 1px 0 0;
padding:0 0 0 5px;
background-image: url("images/tableftI.gif");
background-repeat: no-repeat;
}

/* The menu list items are floated left, which causes them to display horizontally. The right margin is set to 1px so that each menu item (soon to become a tab) has a bit of separation from its neighbors. Left padding is set to 10px, providing space for the 10-pixel-wide background image to display without being covered up by the background image we will be assigning the the link inside the list. The background image is set to not repeat (tile). By the way, the actual image will be along later in the tutorial once you export it from the Fireworks PNG you downloaded. */

#menubar a {
float:left;
display:block;
padding:5px 15px 5px 5px;
text-decoration:none;
color:#fff;
background-image: url("images/tabrightI.gif");
background-repeat: no-repeat;
background-position: right top;
}

/* The menu links are set to float left to enable us to set them to display block, which allows the entire width and height of the link box to be hot or clickable. Padding is set to 5px top, 15px right, 5px bottom, and 5px left.

Hmm... 15px on the right and only 5px on the left will make the link off-center, won't it? Yes it will. But we need to compensate for the 10px of left padding on the parent LI that is needed to allow the parent element's background image to show.

We set text decoration to none (turns off underlining) and color to medium gray (#999999).

We set a background image (the wide right side of the tab), set it to not repeat, and position it at the top right edge of the link box. */

#menubar a:hover {
color:#60AADC;
}

/* We set the hovered link color to black. */

#menubar li:hover, #menubar li.p7hvr {
color:#60AADC;
background-image: url("images/tableftI_on.gif");
}

/* This rule is one of two rules that make the Q.Tab menu possible. It's a grouped selector, combining two selector names in one, separated by a comma. The first selector leverages modern browsers' ability to execute a hover behavior on elements other than links. In this case, we are assigning a hover behavior to the LI to change its background image from type1_left.jpg to type1_left_on.jpg. The second selector name #p7menubar li.p7hvr references a class name (p7hvr) that is used in a small JavaScript to allow IE6 (and under) to perform the LI hover just like modern browsers do. */

#menubar li:hover a, #menubar li.p7hvr a {
background-position:right top;
background-image: url("images/tabrightI_on.gif");
color: #60AADC;
}
	  
#menubar .current {
background-image: url("images/tableftI_on.gif") !important;
color: #60AADC !important;
}
#menubar .current a {
background-image: url("images/tabrightI_on.gif") !important;
color: #60AADC !important;
cursor: default;
}
.oneColFixCtrHdr #myaccount {
	margin: 40px 0 0 0;
	width:110px;
	float:right;
	height: 30px;
}
label {
	float: left;
	width: 18em;
	margin-right: 1em;
}
fieldset li {
	float: left;
	clear: left;
	padding-bottom: 1em;
	font-size: 0.75em;
	width: 100%;
}
fieldset {
	float: left;
	width: 98%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.5em;
	padding: 0 0 0 5px;
}
legend {
	margin-left: 5px;
	color: #60AADC;
	font-weight: bold;
}
fieldset ul {  
padding: 1em 1em 0 1em;  
list-style: none;
}
fieldset.submit {  
border-style: none;
}
.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;
}
	.warning {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FF0000;
	}.required {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FF0000;
}
