@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	border: none;
}

body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #222;
}
#container { 
	width: 650px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #880b2d;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

html>body>DIV#container {
	width: 774px;
}

#header { 
	padding: 3px 2px 2px;
	background: #fff;
	height: 145px;
} 
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* 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 */
	clear: left;
	margin: 1px 2px 0;
}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 175px; /* 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 */
	padding: 0; /* padding keeps the content of the div away from the edges */
	background: url(../images/sidebar_middle.png) repeat-y;
	margin: 17px 6px 20px 0;
	z-index: 2;	
}

#mainContent { 
	margin: 17px 185px 0 15px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; 
	line-height: 1.5em;
} 

#container>#mainContent {
	margin-top: 35px;
}

#mainContent h1 {
	font-size: 1.7em;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	color: #CC3300;
	margin: 5px 0 10px;
}

#mainContent p {
	margin-bottom: 25px;
}

#footer {
	display: none;
}

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

#logo {
	width: 145px;
	height: 130px;
	float: left;
	display: block;
	margin: 1px 1px 0;
}

#topnav_left {
	display: none;
}

#topnav {
	display: none;
}

#leftnav  {
	display: none;
}

/***********************/

#sidebar2 a {
	text-decoration: none;
}


#sidebar_top {
	background: url(../images/sidebar_top.png) no-repeat center top;
	z-index: 1000;
}

.instructions {
	font-size: 1.2em;
	color: #006699;
}
	
.instructions p {
	margin: 0;
	color: #000;
	padding: 25px 20px 20px 24px;
}


.instructions a {
	font-family: Arial, Helvetica, sans-serif;
	color: #D90508;
}

#action a {
	color: #555;
}

p.smallprint {
	display: none;
}

.smallprint a {
	color: #999 !important;
}

.instructions a:hover, #action a:hover {
	text-decoration: underline;
}

#smartsave {
	margin: 0 9px;
}

#action img, #smartsave img, .instructions img {
	display: block;
	width: auto;
	margin: 5px auto;
}

#idcode img {
	display: block;
	margin: 10px auto 0;
	text-align: center;
}

#abs_code {
	position: absolute;
	top: -15px;
}

#sidebar2>#idcode {
	width: 164px;
}

#idcode p {
	padding-top: 35px;
}

#action p {
	text-align: center;
	padding-bottom: 20px;
}

h3 {
	color: #FF0000;
	margin: 0;
	font-weight: normal;
	font-size: 1.2em;
}


#mainContent img {
	float: left;
	margin: 0 10px 10px 0;
	border: 1px solid #333;
}
