/*
 * Much, and I mean *much* of the CSS was adapted from K2 for Wordpress.
 * I just didn't want to use Wordpress, at this point in time, so I tried
 * to re-construct the look and feel without the bells and whistles.
 *
 * http://getk2.com/
 *
 * Also, http://www.barelyfitz.com/screencast/html-training/css/positioning/
 */

body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	text-align: center;
	color: #333333;
	font-family: verdana;
	background: #e0e0e0;
	position: static;
}

#container {
	background: white;
	width: 847px;
	height: 100%;
	text-align: left;
	margin: 0 auto;
	position: relative;
	padding: 0 0 10px 0;
	border: 1px solid #ddd;
}

#content {
	padding-left: 30px;
	padding-top: 10px;
	position: relative;
	float: left;
	width: 550px;
	padding-right: 15px;
	font-size: 1.3em;
	/*border-right: 2px solid #C0C0C0;*/
}


#header {
	background: url('img/bg.png');
	color: #FFFFFF;
	height: 200px;
	position: relative;
}

#header p {
	font-size: 1em;
	margin-left: 40px;
	color: white;
	position: relative;
}

#header h1 {
	margin-left: 40px;
	margin-bottom: 0;
	padding-top: 75px;
	padding-bottom: 0;
}

#header h1 a {
	text-decoration: none;
	color: #FFFFFF;
}

#header h1 a:hover {
	text-decoration: underline;
	background: none;
}

#header p a {
	text-decoration: none;
	color: #000000;
}

#header p a:hover {
	text-decoration: none;
	color: #C0C0C0;
}

div.navbar {
	padding-top: 20px;
}

div.navbar ul {
	position: absolute;
	padding: 0;
	margin: 0;
	bottom: 0;
	left: 20px;
	width: 90%;
}

div.navbar ul li {
	display: inline;
	margin: 0;
}

div.navbar ul {
	padding: 5px 15px 6px;
}

div.navbar ul li a {
	padding: 5px 15px 6px;
	/*padding-top: 5px;
	padding-bottom: 6px;
	padding-right: 15px;*/
	text-decoration: none;
	font-size: 1em;
	color: black;
	margin: 0;
}

div.navbar a:hover{
	background-color: black;
	text-decoration: none;
	color: white;
}

a {
	text-decoration: none;
	color: blue;
}

a:hover {
	color: #C0C0C0;
}

#sidebar {
	/*
	padding: 0;
	margin: 0;
	position: absolute;
	left: 600px;
	*/
	position: relative;
	padding-left: 15px;
	float: left;
	width: 200px;
	padding-top: 10px;
	/*border-left: 2px solid #C0C0C0;*/
}

#footer {
	position: relative;
	font-size: 0.75em;
	clear: both;
	padding-top: 10px;
}

h1 {
	font-size: 3em;
	width: 100%;
}

h2 {
	font-size: 2.2em;
}

h3 {
	font-size: 1.7em;
}

h3 a {
	text-decoration: none;
	color: black;
}

h3 a:hover {
	text-decoration: underline;
	color: black;
	background: none;
}


img {
	border: none;
}

div.ads {
	text-align: center;
}

/* Many thanks to http://forums.digitalpoint.com/showthread.php?t=82168 for the following float fix! */
/* Also http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */