/* base styles */

/* typography */
p, li, h1, h2, h3, h4, h5, h6 {
	font: normal 13px/20px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
p {
	margin:2px 0 20px 0;
	color: #222;
}
h1 {
	margin:0;
	font: bold normal 20px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
h2, h3 {
	margin:0;
	font: bold normal 18px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
h4, h5, h6 {
	margin:0;
	font: bold normal 16px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	color: #654;
}

/* page layout */
body {
	text-align: center;
	margin: 0px;
	padding: 0px;
	background: #fb5 url(/images/bg4.gif) repeat-y center top;
}
#outercontainer {
	position: relative;
	text-align: left;
	margin: 0px auto;
	padding: 0px;
	width: 780px;
	background: #FFF;
}
#masthead {
	display: block;
	clear:both;
	width: 100%;
	position:relative;
	margin:0;
}
#contentbox {
	border-bottom: 1px solid #654;
}
#maincontent {
	margin: 70px 230px 50px 30px;
}
#footer {
	display:block;
	clear:both;
	width:100%;
	background: #Fc6;
	padding: 20px 0 20px;
}
#footer * {
	padding: 0 30px 0;
}
#footer a, #footer em, #footer strong, #footer img { /* override the padding you just set, for inline elements */
	padding:0;
}
#widgetbox { /* style sheet switcher */
	width: 22px;
	height: 22px;
	background-color: #aaa;
	position:absolute;
	right:25px;
	top:38px;
}
#widgetbox2 { /* style sheet switcher */
	width: 22px;
	height: 22px;
	background-color: #aaa;
	position:absolute;
	right:55px;
	top:38px;
}

/* main navigation styles */
#navcontainer {
	display:block;
	clear:both;
	position:absolute;
	top:100px;
	margin:0;
	width: 100%;
	height: 20px;
	background: #f93;
}
#navcontainer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#navcontainer ul li {
	float: left;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
}
#navcontainer ul li a {
	background: #fc6;
	width: 110px;
	height: 20px;
	padding: 0;
	margin: 0;
	color: #222;
	text-decoration: none;
	display: block;
	text-align: center;
	border-right: 1px solid #630;
}
#navcontainer ul li a:hover {
	color: #222;
	background: #fd8;
}
#navcontainer li#currentcategory a {
	background: #fff;
	color: #222;
}

/* secondary navigation styles */
#secondarynavcontainer {
	position: absolute; /* Be careful that the content in this absolutely-positioned box does not overflow the footer. The easiest way to do this is to make sure you have plenty of content in the maincontent div */
	right: 20px;
	top: 190px;
	width: 180px;
}
#secondarynavcontainer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#secondarynavcontainer ul li a:link {
	color: blue;
	text-decoration: none;
}
#secondarynavcontainer ul li a:visited {
	color: #336;
	text-decoration: none;
}
#secondarynavcontainer ul li a:hover {
	color:#b20;
	text-decoration: underline;
}
#secondarynavcontainer li#currentpage a {
	color: #654;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}

/* etcetera */
a img {
	border:none; /* remove the default blue border from linked images. */
}
#maincontent a:link {
	color:blue;
}
#maincontent a:visited { /* makes links more subtle once they have been visited */
	color: #336;
	text-decoration: none;
}
#maincontent a:hover {
	color:#b20;
}

/* classes for assigning to inline images */
.floatleft { /* allows inages to float to the left, so text can wrap around */
	float:left;
	margin:5px 10px 10px 0; /* top right bottom left (TRouBLe) */
}
.floatright { /* allows inages to float to the right */
	float:right;
	margin:5px 0 10px 10px;
}
