/* ------------------------------------------------------------ 
                           Reset        
   ------------------------------------------------------------ */
*, html, body {
	border: none;
	margin: 0;
	padding :0;
}
a {
	text-decoration: none;
}
img {
	border: none;
}



/* ------------------------------------------------------------ 
                           Convenience        
   ------------------------------------------------------------ */
.imgborder {
	border: 3px solid #000;
}
.center {
	margin-right: auto;
	margin-left: auto;
}
.floatright {
	position: relative;
	float: right;
}
.floatleft {
	position: relative;
	float: left;
}
.clearer {
	clear: both;
}



/* ------------------------------------------------------------ 
                           Layout        
   ------------------------------------------------------------ */
body {
	font-family: "Trebuchet", "Trebuchet MS", sans-serif;
	background-color: #eee;
}

a {
	color: #ddc;
	letter-spacing: 1px;
}

a:hover {
	color: #aaa;	
}

#container {
	position: relative;

	width: 1000px;
	
	background-color: #fff;
	
	padding: 10px;
	margin: 10px;
	
	border: 0 solid #888;
	border-radius: 3px;
	
	box-shadow: 0px 1px 10px #8A8A8A;
}

#header {
	width: 95%;
	clear: both;
}

#header h1 {
	text-shadow: #999 2px 2px 4px;
}

#header h2 {
	margin-left: 30px;
	font-size: 12pt;
	text-shadow: #aaa 2px 2px 4px;

}

#nav {
	position: relative;
	padding: 10px 0;
	margin: 20px 0;
	margin-left: -10px;
	margin-right: -10px;
	background-color: #070707;
	background-color: #370707;
}

#nav a {
	padding: 10px;
	margin-left: 40px;
	color: white;
}

#nav a:hover {
	color: #ccc;
}

#content {
	position: relative;
	background-color: #eee;
	padding: 10px;
	margin-bottom: 20px;
	clear: both;
}

#content h3 {
	margin: 10px;
}

#content p {
	font-size: 11pt;
	margin-bottom: 10px;
}

#content strong {
	font-style: italic;
}

#content ul li {
	font-size: 10pt;
	margin-left: 30px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#content a {
	color: #333;
}

#content a:hover {
	color: #888;
}

#content .smallcolumn {
	position: relative;
	width: 33%;
}

#content .bigcolumn {
	position: relative;
	background-color: #cceecc;
	border: 3px solid #aaccaa;
	min-height: 420px;
	padding: 15px;
	border-radius: 20px;
	width: 59%;
}

#content .bigcolumn h3 {
	border-bottom: 1px dashed black;
	margin-bottom: 10px;
}

#footer {
	clear: both;
	position: relative;
	background-color: #070707;
	height: 250px;
	color: #eee;
}

#footer h1 {
	letter-spacing: 1px;
	font-size: 13pt;
	font-family: helvetica;
	color: #eee;
}

#footer p {
	margin: 10px;
	font-size: 10pt;
	line-height: 19px;
	font-family: Helvetica Neue Light, Helvetica, sans-serif;
	color: #eba;
}

#footer .column {
	position: relative;
	float: left;
	width: 29%;
	height: 87%;
	margin: 20px 0;
	padding-left: 30px;
	border-left: 1px solid white;
}

#footer .noborder {
	border: none;
}

#copy {
	position: relative;
	margin: 20px;
	letter-spacing: 3px;
	font-size: 9pt;
}

