html, body { margin: 0; padding: 0; background-color: #797a7a; }
td         { background: #fff; }
body, td   { font-family: verdana, geneva, arial, helvetica, sans-serif; color: #000; font-size: 12px; }
p          { font-size: 12px; padding: 0 5px; }

/* 3px padding on specific elements compensates for IE bug
	that effects floats if you try to pad the floated wrapper element itself
*/
h1
{
	border-bottom: 1px solid #355925;
	font: bold small-caps 22px Georgia;
	color: #133;
	background: transparent;
	margin: 5px 5px 2px 5px;
}
h2 { font: bold 20px verdana, sans-serif;         color: black; }
h3 { font: bold 18px tahoma, verdana, sans-serif; color: black; }
h4 { font: bold 16px tahoma, verdana, sans-serif; color: black; }

img { border: 0; }


ul { margin: 0; padding: 0 }
li { margin-left: 15px; }
/*
In IE - the bullets inside a <ul> are affected by padding
In FF - the bullets inside a <ul> are affected by margin
So instead, set both to 0, and set the <li> margin to whatever you want it to be
*/



/* ********* BASIC TEXT STYLINGS ********* */

pre       { font-size: 12px; line-height: 16px; margin-top: 20px; margin-bottom: 10px; }
strong, b { font-weight: bold; }

a         { font-weight: bold; color: #137; text-decoration: underline; }
a:hover   { font-weight: bold; color: #e93; text-decoration: underline; }
/* a:active  { color: #ffcc80; background: #933; text-decoration: none; } */
a.image       { background: #fff; border: 0; }
a.image:hover { background: #fff; border: 0; }

li a { background: #fff; }

.tiny
{
	font-size: 9px;
	line-height: 12px;
	margin-top: 15px;
	margin-bottom: 5px; 
}
.aside { font: italic 9px arial, sans-serif; }



/* ***********   M A I N   D I V s   ************** */

#header
{
 	width: 980px;
	height: 215px;
	margin: 0 auto;
	padding: 0;
 	background: #4F470F;
 	overflow: hidden;
 	position: relative;
 	/* set this so that other elements inside it can be positioned "absolute" relative to "top"
 	   otherwise, "absolute" will be relative to the browser window. */
}
#header #bad { margin: 5px 0 2px 0; }
#header a, #header a:hover { background: transparent; text-decoration: none; }
#header a { color: #a00; }
#header a:hover { color: white; }
#header #bigtopad { position: absolute; top: 0px; right: 0px; }
#header #bigtopad img { width: 250px; height: 185px; }

#header #masthead { background: url(/images/design/masthead.gif); height: 90px; }

#header #logonav { background: url(/images/design/navbar.gif); height: 25px; }
#header #logonav p { padding-top: 5px; font-weight: bold; margin: 0 0 0 10px; font-size: 11px; }
/* #header #logonav form, #header #logonav form div { display: inline; } */

#header #subnav { position: absolute; top: 10px; left: 625px; font: 10px arial; text-align: right; }
#header #subnav li { list-style-type: none; }
#header #subnav a { color: white; }
#header #subnav a:hover { color: #e93; }


#wrap
{
	width: 980px;
	margin: 0 auto;
	position: relative;
	background: url(/images/design/wrapbg2.gif);
}

#content
{
	float: left;
	width: 720px;
	background: transparent;
	padding: 2px 0;
	margin: 0;
	overflow: hidden;
	color: black;
}

#right
{
	float: left;
	width: 260px;
	background: transparent;
	padding: 2px 0;
	margin: 0;
	overflow: hidden;
}
#right table {	margin: 4px; }
#right td { font-size: 10px; padding: 1px; }
#right li, #right li a { background: transparent }
#right img.ad { margin-left: 5px; }


#footer
{
	background: #fff;
	color: #555;
	text-align: center;
	border: 1px solid black;
	margin: 0 auto 10px auto;
	padding: 8px;
	width: 962px;
	height: 180px;
}
#footer p { font: 9px Verdana; margin: 4px; }
#footer a { color: #5c7082; background: #fff; text-decoration: underline }
#footer a:hover { color: #933 }



/* ************** NAVIGATION ***************** */

#homenav
{
	position: absolute;
	top: 20px;
	left: 12px;
	height: 60px;
	width: 320px;
	cursor: pointer;
}


#sitemenu
{
	font: bold 11px arial;
	position: absolute;
	/*
	"absolute" can be used because the container -- "top" -- has a position of "relative" ... 
	Therefore, this element can be absolutely positioned relative to top, instead of relative to the whole browser window.
	Using "position: relative" here is ineffective, because relative positioning is offset relative to the "normal flow"
	  and not relative to the containing box.
	In this case, the "containing box" is "top" - but only if we set "position: relative" on "top"
	*/
	top: 80px;
	left: 190px;
	color: black;
	background: transparent;
	margin: 0;
	width: 680px;
	height: 11px;
}
#sitemenu a { color: #007; text-decoration: none; }
#sitemenu a:hover { color: #007; text-decoration: underline; }
#sitemenu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#sitemenu li {
	display: inline; 
	padding: 0;
	margin: 0 0 0 10px;
}


#chnmeta
{
	font: 9px arial;
	text-align: right;
	position: absolute;
	top: 0;
	right: 5px;
	color: white;
}
#chnmeta a { color: #ffc; text-decoration: none; }
#chnmeta a:hover { color: #ff5; text-decoration: underline; }
#chnmeta ul { list-style-type: none; margin-top: 0; }
#chnmeta li { display: block; margin: 2px; }
#chnmeta #chnmetacomm { background: black; width: 175px; height: 12px; padding: 2px 4px; font-family: verdana; }


#teamselect
{
	background: transparent;
	margin: 0;
	position: absolute;
	top: 191px;
	left: 830px;
	width: 140px;
	height: 20px;
}
#teamselect form { display: inline; }
#teamselect .stdDrop { font-size: 1em; width: 140px; }


#search
{
	margin: 0;
	position: absolute;
	top: 191px;
	right: 55px;
	background: transparent;
	height: 18px;
	overflow: hidden;
}
/*
#search input.ss
{
	height: 18px;
	font: 11px arial;
	padding: 0 5px;
}
#search input.google {
	background: url(/images/googlesearch.gif) no-repeat;
	width: 130px;
	height: 12px;
	padding: 0;
}
*/



/* ******************** MISC *********************** */

#xmlheadlines
{
	background: #eee;
	border: 1px solid black;
	padding: 2px;
}
#xmlheadlines h3 { background: #00a; text-align: center; margin: 2px; }
#xmlheadlines a {  background: #eee; }


img.avatar { height: 50px; width: 50px; border: 0; }