@charset "utf-8";

/* CSS Document */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: url(../img/background.jpg) repeat;
	margin: 0;
	padding: 0;
	color: #000;
}
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0px 0px 0px 20px;
	margin: 0;
	font-size:12px;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0px;
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-size:12px;
}
a img {
	border: none;
}
a:link {
	color:#000;
	text-decoration: underline;
}
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #06F;
	text-decoration: underline;
}
.highlight {
	color: #F00 !important;
}
/* ~~ Navigation Link Styles ~~ */

a.nav:link {
	color: #fff;
	text-decoration: 
	none;
	font-weight: bold;
	}
a.nav:visited {
	color: #fff;
	text-decoration: 
	none;
	font-weight: bold;
	}
a.nav:hover {
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}
a.nav:active {
	color: #fff;
	text-decoration: 
	none;
	font-weight: bold;
	}

/* ~~ Layout Divs ~~ */

.container {
	width: 800px;
	margin-top: 15px;
	margin-right: auto;
	margin-left: auto;
	background-color:#fff
}
.header {
	padding: 0px 0px;
	background-color:#fff;
	margin: 0px 0px 0px 0px;
	text-align:center;
	position: relative;
	top:0;
	right:0;
	z-index:1;
}
.head-text {
	width: 250px;
	max-height:60px;
	position: absolute;
	top: 25px;
	right: 25px;
	text-align:right;
	z-index:2;
	font-size:13px;
	line-height: 22px;
}
.content {
	padding: 0px 0px;
	background-color:#fff
}
.leftcolum {
	padding: 10px 10px 0px 50px;
	margin-top: 20px;
	width: 319px;
	float:left;
}
.rightcolum {
	padding: 10px 50px 0px 10px;
	margin-top: 20px;
	width: 319px;
	float:right;
}
.footer {
	padding: 0px 0px;
	height: 31px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	text-align:center;
}

/* ~~ miscellaneous float/clear classes ~~ */

.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
highlight {
	color: #F00;
}
