A:link {text-decoration: none; color: #C00000 }

A:visited {text-decoration: none; color: #C00000}

A:hover {text-decoration: none; color: #FF0000}

A:active {text-decoration: none;}

BODY {
font-family: Arial, Verdana, Georgia, "Times New Roman", Sans-Serif;
background: #FFFFFF url("kc28wg-watermark.png") no-repeat center fixed;
}

BODY.splash {
background: url("");
}

TABLE
{
border-collapse:collapse;
}

TD
{
border:1px solid #880000;
text-align:center;
width:30px;
padding:3px;
}

TD.name
{
width:auto;
text-align:right;
}

TD.nothin
{
width:auto;
border:none;
}

#top
{
width:100%;
height:210px;
}

#topleft
{
float:left;
}

#topmiddle
{
line-height:210px;
font-size:24px;
font-weight:bold;
text-align:center;
}

#topright
{
float:right;
}

#sidebar
{
clear:both;
float:left;
width:150px;
font-face:Arial;
text-align:center;
text-valign:top;
}

#subsidebar
{
font-size:8pt;
}

#mainbody
{
margin-left:150px;
}

a img {border:none;}

.newsitem
{
border:1px solid #880000;
margin:8px;
padding:8px;
background-image: url(bgpixelFF000044.png) !important;
}

.newsdate
{
float:right;
font-size:12px;
}

.newssubject
{
font-size:20px;
font-color:#880000;
margin: 8px;
}

.newsbody
{
font-size:14px;
}

.newsuser
{
font-size:8px;
font-weight:bold;
}

#bottom
{
clear:both;
text-align:center;
}

#bottomleft
{
clear:both;
text-align:center;
float:left;
}

#bottomright
{
text-align:center;
float:right;
}

.boxy
{
border:1px solid #880000;
margin:8px;
padding:8px;
background-image: url(bgpixelFF000044.png) !important;
}

.menu, .menu ul {
	margin: 0;
	list-style-type: none;
	float:right;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the bottom left corner, */
	bottom: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	bottom: 100%;	/* 1st level go above their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	bottom: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */