/** RESET **/
/** http://meyerweb.com/eric/tools/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;
}

/** ------------------------------------------------- **/

/** BACKGROUND ELEMENTS **/

html {
	height: 100%;
	
	background: #16273B;
	color: #fff;
}

#page {
	position: absolute;
	width: 100%;
	z-index: 3;
}

#background-image {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: url('../images/background.png') bottom left no-repeat;
}

#background-gradient {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(#8F7D57),
		to(#16273B),
		color-stop(0.3, #283943)
	);
	background: -moz-linear-gradient(
		bottom,
		#8F7D57,
		#283943 30%,
		#16273B
	);
}

/** POSITIONING **/

#page .page-position {
	positon: relative;
	width: 800px;
	margin: auto;
	clear: both;
		
	background: url('../images/white-20.png');
	background: rgba(255, 255, 255, 0.2);
}

#page .content-column {
	width: 560px;
	float: left;
}

#page .sidebar-column {
	margin-left: 560px;
	
	background: url('../images/black-20.png');
	background: rgba(0, 0, 0, 0.2);
}

/** HEADER BLOCK **/

#header div {
	height: 110px;
}

	#header h1 {
		margin: 0;
		padding: 0;
		
		font-family: "IM Fell English", monospace;
		font-weight: normal;
		font-size: 58px;
		line-height: 70px;
	}

	#header h1 a {
		display: block;
		padding: 20px;
		
		color: #fff;
		text-shadow: #000 2px 2px 1px;
		text-decoration: none;
	}
	
	#header p {
		padding-top: 40px;
		
		font-family: serif;
		font-style: italic;
		font-size: 18px;
		text-align: center;
		text-shadow: #000 1px 1px 1px;
	}


/** NAVIGATION BLOCK **/

#navigation {
	background: url('../images/white-25.png');
	background: rgba(255, 255, 255, 0.25);
}

#navigation div {
	height: 40px;
}

	/** NAVIGATOIN MENU **/
	
	#navigation ul li {
		float: left;
	}

	#navigation ul li a {
		padding: 11px 20px 7px 20px;
		display: block;
		
		color: #fff;
		font-family: "Eras ITC", Tahoma, Helvetica, sans-serif;
		font-size: 18px;
		text-shadow: #333 1px 1px;
		text-decoration: none;
	}

	#navigation ul li a.current, #navigation ul li a.section {
		border-bottom: 4px solid #C4BA84;
	}

	#navigation ul li a:hover {
		border-bottom: 4px solid #CC7355;
	}

/** SUB NAV **/
#sidebar ul.SubNavigation {
	margin: 0px -10px 0px -10px;
	list-style: none;
}

	#sidebar ul.SubNavigation li {
		margin: 0px 0px 5px 0px;
	}

	#sidebar ul.SubNavigation li a {
		padding: 0 5px 0 5px;
		border-left: 15px solid #404040;
		border-left: 15px solid rgba(255, 255, 255, 0.1);
	}

	#sidebar ul.SubNavigation li a.current, #sidebar ul.SubNavigation li a.section {
		border-left: 15px solid #666;
		border-left: 15px solid rgba(255, 255, 255, 0.3);
	}

	#sidebar ul.SubNavigation li a:hover {
		border-left: 15px solid #777;
		border-left: 15px solid rgba(255, 255, 255, 0.4);
		text-decoration: none;
		border-bottom: none;

	}

/** LAYOUT **/

#layout {
	padding: 15px;
}

	#layout .meta {
		margin-top: 2px;
		float: right;
	}

	#layout .tags {
		margin-bottom: 10px;
		
		border-top: 1px solid rgb(150, 150, 150);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgb(150, 150, 150);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		background: url('../images/white-20.png');
		background: rgba(255, 255, 255, 0.2);
	}

	#layout .tags p {
		margin: 5px 0 5px 0;
		padding: 5px 10px 5px 10px;
	}

	ul#PageComments {
		margin: 0;
		padding: 5px 0 0 0;
		list-style: none;
	}

	ul#PageComments li {
		margin: 0;
		padding: 4px 10px 4px 10px;
	}

	ul#PageComments li.odd {
		background: url('../images/white-10.png');
		background: rgba(255, 255, 255, 0.1);

	}

	ul#PageComments li.even {
		background: url('../images/white-20.png');
		background: rgba(255, 255, 255, 0.2);
	}

	ul#PageComments p.comment {

	}	

	ul#PageComments p.info {
		font-size: 0.9em;
	}


#sidebar {
	padding: 15px;
	
	font-family: "Eras ITC", Helvetica, sans-serif;
	font-size: 14px;
	color: #EEE;
	text-shadow: #333 1px 1px;
}

	#sidebar h3 {
		margin: 10px 0 10px 0;
		
		color: #EEE;
		text-shadow: #000 1px 1px;
		text-decoration: none;
	}

	#sidebar a {
		display: inline;
		
		color: #DDD;
		text-shadow: #000 1px 1px;
		text-decoration: none;
		border-bottom: 1px none;
	}

	#sidebar a:hover {
		border-bottom: 1px dotted #999;
	}

	#sidebar ul {
		margin: 0 0 0 20px;
		list-style: circle;
	}

	#sidebar ul li {
		margin-bottom: 3px;
	}

/** FOOTER BLOCK **/

#footer {
	background: url('../images/white-30.png');
	background: rgba(255,255,255,0.2);
	font-family: "Eras ITC", Helvetica, sans-serif;
	font-size: 12px;
}

	#footer div {
		height: 58px;
	}

	#footer p {
		text-align: center;
		margin: 10px;
	}

	#footer a {
		color: #DDD;
		text-shadow: #000 1px 1px;
		text-decoration: none;
		font-weight: bold;
	}

	#footer a:hover {
		border-bottom: 1px dotted #999;
	}

/** FORMS **/

form {
	margin: 0 0 6px 0;
}

	form .middleColumn {
		width: 324px;
		padding: 4px;
		
		background: url('../images/white-30.png');
		background: rgba(255, 255, 255, 0.3);
	}


	form .middleColumn input, form .middleColumn select,  form .middleColumn textarea {
		margin: 0;
		width: 316px;
		padding: 4px;
		
		background: #DDD;
		border: none;	
	}

	form .middleColumn input:focus, form .middleColumn select:focus,  form .middleColumn textarea:focus {
		background: #FFF;
		
	}


	form .Actions {
		width: 324px;
		padding: 4px;
		margin-top: 10px;
		background: url('../images/white-30.png');
		background: rgba(255, 255, 255, 0.3);
		text-align: right;
	}


	form .Actions p {
		float: left;
		clear: left;
	}

/** UTILITY **/
.highlight-content {
	padding: 15px 15px 0 15px;
	border: 1px dotted #CCCCCC;
	backgorund: url('../images/white-20.png');
	background: rgba(255, 255, 255, 0.2);
	margin-bottom: 10px;
}


/** WIDGETS **/
.tagcloud .not-popular { font-size: 1em; }
.tagcloud .not-very-popular { font-size: 1.3em; }
.tagcloud .somewhat-popular { font-size: 1.6em; }
.tagcloud .popular { font-size: 1.9em; }
.tagcloud .very-popular { font-size: 2.2em; }
.tagcloud .ultra-popular { font-size: 2.5em; }
.subscribeLink {
 background: url(../images/feed-icon-14x14.png) no-repeat left center;
	padding-left: 20px;
}
