/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
body  {
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	margin-top:1em;
}

.style1 {font-family: Arial, Helvetica, sans-serif}
.style2 {font-family: Arial, Helvetica, sans-serif; font-size: larger; }
.style3 {font-size: larger}
a:link {color: #00CC00;}
a:visited {color: #0033CC;}
a:hover {color: #00FF00;}
a:active {color: #00FF00;}
.error { color:red; background-color:#CCCCCC; border:double red; padding:.25em}

/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#pagewidth {width:860px; margin:0 auto}
#rightbar{
	margin: 0 0 0 731px;
	padding: 0px;
}

#content{
	float:left;
	width: 730px;
	margin: 0;
	padding: 0 0 0 0;
	text-align:left;
}

#navigation {
	width: 220px;
	margin: 0;
	padding: 0;
	font-size:110%;
	font-weight:bold;
	text-align:right;
	float: left;
}
#pagewidth #content #navigation #adLink {
	text-align: right;
	float: right;
}


#maincontent {
	margin: 0 0 0 250px;
	padding: 0px;
	background-attachment: scroll;
	background-image: url(skullbub2.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;

}

#footer{
	padding:10px;
	background-position: right;
	float: right;
}
#leftLink {
	padding: 5px;
	clear: left;
	float: left;
}



.clear {clear:both}
