@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 */
}


#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{
	float: left;
	width: 170px;
	height: 510px;
	margin: 0;
}

#leftnav ul {
	display: none;
}

span.advert_pre
{
    display: none;
}

img#smartsave_ad
{
	margin-top: 0;
	padding-right: 15px !important;
	border: none;
}

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


