/* 
*******************
CSS Reset
*******************
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*  
*******************
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*******************
*/

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {
	background: #fefefe url(images/header.png) no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
}

html, body, #wrap {
	height: 100%;
}

body > #wrap {
	height: auto; 
	min-height: 100%;
}

#main {
	padding-bottom: 50px; /* must be same height as the footer */
}  

#footer {
	position: relative;
	margin-top: -50px; /* negative value of footer height */
	height: 50px;
	clear:both;
} 

.footer_container{
	padding-top:8px;
	width:550px;
	margin-left:250px;
	color:#333;
	text-align:center;
	border-top:solid 1px #666;
}

/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/* 
*******************
Start Custom Styles 
*******************
*/

html {
	background:#fefefe;
}

#wrap{
	width:960px;
}

/* Header */


/* Menu */

#menu {
	width:auto;
	position:absolute;
	top:45px;
	left:-45px;
}

#menu ul {
	margin-left: 97px;
	padding-top: 65px;
	list-style: none;
	line-height: normal;
}

#menu li {
	display:list-item;
	width:auto;
}

#menu a {
	display:list-item;
	padding: 0px 30px;
	text-decoration: none;
	font: 24px Times New Roman, serif;
	color: #000000;
	width:auto;
	padding-top:20px;
	text-align:center;
}

#menu a:hover { text-decoration: underline; }

#menu .current_page_item {
	display:list-item;
	margin: 0px;
	color: #000000;
	text-decoration:underline;
}

/* Logo */

.logo{
	position:absolute;
	top:100px;
	left:250px;
}

/* Content */

#content{
	margin-left:250px;
	padding-top:210px;
	width:550px;
}

p{
	padding-top:5px;
	line-height:1.5;
	font-size:14px;
}

a:link{
	color:#0000ff;
}

a:visited{
	color:#0000ff;
}

a:hover{
	text-decoration:none;
}

li{
	padding:5px 0px;
}

.column2{
	margin-left:300px;
	margin-top:-744px;
}

/* Legal */

.copy {

}

.validation {
	padding-top:5px;
}

/* Headers */

h1 {
	text-transform:uppercase;
	color:#0000ff;
	border-bottom:solid 2px #0000ff;
	font-size:25px;
	font-family:Times New Roman, serif;
}

h2{
	font-size:18px;
	padding-bottom:6px;
	font-weight:bold;
	color:#000000;
	margin-top:10px;
}

h3{
	font-size:16px;
	color:#000000;
	margin-top:5px;
	font-weight:normal;
}