/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	padding:0;
	margin: 0;
	height:100%; /* needed for container min-height */
	background:#3366CC;
  height:100%; /* this is the key! */ 
	font-family:arial,sans-serif;
	font-size:12.5px;
	color:#666;
}

a:link, a:visited, a:active {
	color: #0000EE;	text-decoration: none;
}
a:hover {
	color: #0000EE;	text-decoration: underline;
}

#wrapper {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	min-width: 770px;
	max-width: 1000px;
	background:#FFFFFF url('images/ball_mark.jpg') bottom right no-repeat;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}

div#header {
	/* border-bottom: 2px solid #000; */
	padding: 1em;
	margin-left: 10px;
	width: 95%;
	height: 74px;
	background: #FFF;
}

div#content {
	padding:1em 1em 65px; /* bottom padding for footer */
}

div#footer {
	position:absolute;
	width:95%;
	margin: 0px 25px 0px 0px;
	bottom:0; /* stick to bottom */
	font-size: small;
}
	div#footer a {
	color: #666;
	}
	
div#submenu {
	width: 100%;
	background: #C11115;
	height: 21px;
	color: #FFFFFF;
	font-weight: bold;
	padding-top: 5px;
}
	div#submenu a {
	color: #FFFFFF;
	font-family:arial,sans-serif;
	font-size:small;
	font-weight: bold;
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
	}

hr {
	color: #666;
	width: 85%;
}

h2 {
	font-size: x-large;
	color: #666;
	margin: 0;
} 

h4 {
	font-size: large;
	color: #333;
	margin: 0;
}

/*MENU CSS Credit to Dynamic Drive CSS Library */
/*http://www.dynamicdrive.com/style/*/ 

.solidblockmenu{
margin: 0;
padding: 0;
float: left;
font: bold 12px Arial;
width: 100%;
border: 1px solid #625e00;
border-width: 1px 0;
background: black url(images/blockdefault.gif) center center repeat-x;
}

.solidblockmenu li{
display: inline;
}

.solidblockmenu li a{
float: left;
color: white;
padding: 9px 11px;
text-decoration: none;
border-right: 1px solid white;
}

.solidblockmenu li a:visited{
color: white;
}

.solidblockmenu li a:hover, .solidblockmenu li .current{
color: white;
background: transparent url(images/blockactive.gif) center center repeat-x;
}

/*END MENU CSS*/
