@charset "utf-8";
body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 10px 0 0 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;
}


a.main:link {color: #000; text-decoration: underline; }
a.main:visited {color: #000; text-decoration: underline; }
a.main:hover {color: #000; text-decoration: none; }
a.main:active {color: #000; text-decoration: none; }

a.red:link {color: #ff0000; text-decoration: none; }
a.red:visited {color: #ff0000; text-decoration: none; }
a.red:hover {color: #ff0000; text-decoration: underline; }
a.red:active {color: #ff0000; text-decoration: none; }

a.judgenames:link {color: #000; text-decoration: none; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-weight:bold; }
a.judgenames:visited {color: #000; text-decoration: none; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;}
a.judgenames:hover {color: #000; text-decoration: none; background-color:#f57e20; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;
	padding-bottom:3px;
	padding-left:4px;
	padding-right:4px;
	padding-top:3px;
	border-bottom:2px solid #000;
	}
a.judgenames:active {color: #000; text-decoration: none; background-color:#f57e20; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;
	padding-left:4px;
	padding-right:4px;
	padding-bottom:3px;
	padding-top:3px;
	border-bottom:2px solid #000;
	}
	
	
a.theTop:link {color: #000; text-decoration: none; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-weight:bold; }
a.theTop:visited {color: #000; text-decoration: none; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;}
a.theTop:hover {color: #000; text-decoration: none; background-color:#f57e20; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;
	padding-bottom:1px;
	padding-top:1px;
	}
a.theTop:active {color: #000; text-decoration: none; background-color:#f57e20; font: 12px; "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	font-weight:bold;
	padding-bottom:1px;
	padding-top:1px;
	}	


a.footer:link {color: #000; text-decoration: none; }
a.footer:visited {color: #000; text-decoration: none; }
a.footer:hover {color: #f57e20; text-decoration: none; }
a.footer:active {color: #f57e20; text-decoration: none;}



#container {
	width: 750px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #000000;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
}
#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 */
}
#navmenu {
	width:750px;
	padding:0px;
	border:none;
	height:25px;
	background-color:#c4b10e;
}
#mainContent {
	padding: 10px 17px 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent h1 {
	color:#FF0000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	letter-spacing:1px;
	font-weight:bold;
	width:100%;
	padding-bottom:3px;
	background-color:#ffffff;
	border-bottom:1px solid #000;
}

#judgesBox {
	border:none;
	width:715px;
	padding:5px;
	height:auto;
	background-color:#F0EBC3;
}

.judgesInfoGreen {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	letter-spacing:1px;
	font-weight:bold;
	color:#c4b10e;
	vertical-align:top;
}

.judgesInfoBlack {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	letter-spacing:1px;
	font-weight:bold;
	color:#000000;
}


#footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top:solid #000 5px;
	height:20px;
}

/*CONTACT FORM STYLES*/

#contact {
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:2px;
	}

#contact a {
	font-weight:bold;
	}
/* == Contact Table ==*/
#l-contact {
	width:350px;
	float:left;
	}

span.newcat {
	background:url(img/new.gif) no-repeat top right;
}

/*  ### Simplified box model hack for width adjustment */
/* http://css-discuss.incutio.com/?page=BoxModelHack */
* html #l-contact {
	margin-left:0px;
	}
/* end hack */

#r-contact {
	width:350px;
	float:right;
	margin-left:319px;
	margin-top:-230px;
	}
#b-contact label,
#l-contact label,
#r-contact label{
	font-size:1.1em;
	line-height:1.1em;
	}
#b-contact
{width:700px;}
#b-contact p {
	padding:0;

	}
	
.input {
	border:#000 solid 1px;
	background-color:#fff;
}	
