@charset "utf-8";
/* Stylesheet for MichielBijl.nl, made by Michiel Bijl */

/* Table of Contents

1. Base Elements
x. Root
x. Header
x. Page
x.x. Sidebar
x.x. Content
x. Footer
x. Misc

*/

/* 1. Base Elements */
* {
	margin: 0;
	padding: 0;
}

body {
	padding: 20px;
	background: #9ad455;
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-size: 11px;
}

a {
	text-decoration: none;
}

a img {
	border: 0;
}

h1{
	position:absolute;
	top:22px;
	left:33px;
	color:#fff;
	font-size: 24px;
	font-family: "Myriad Pro", sans-serif;
	font-weight:normal;
}

	h1 span{
		color:#616161;
	}
	
	h1 a {
		color:#fff;
	}

h3{
	color:#8cbf4c;
	font-size:13px;
	text-shadow: 0px 1px 1px #eee;
}

p {
	margin-bottom:2em;
	text-shadow: 0px 1px 1px #eee;
	line-height: 1.6em;
}

ul {
	list-style: none;
}

/* x. Root */
#root {
	position:relative;
	margin: 0 auto;
	width: 754px;
	/*background: #d6dde5;*/
}

	/* x. Header */
	#header {
		position: relative;
		width: 754px;
		height: 101px;
		background: #fff url(../images/header.png) 2px 2px no-repeat;
		-webkit-border-radius: 6px;
		-webkit-border-bottom-right-radius: 0;
		-moz-border-radius: 6px;
		-moz-border-radius-bottomright: 0;
	}
	
		#header ul {
			position: absolute;
			top: 74px;
			left: 2px;
			padding:5px 0 0 10px;
			width: 740px;
			height: 20px;
			color:#fff;
			background: url(../images/menu-bar.png);
		}
		
			#header li {
				float:left;
				margin:0 5px 0 0;
				text-shadow: 0 1px 0 #333;
			}
			
			#header li::after {
				padding:0 0 0 5px;
				content:'»';
			}
			
			#header li:last-of-type::after {
				padding:0;
				content:'';
			}
			
				#header li a {
					color:#fff;
				}
				
				#header li a:hover {
					color:#aaa;
				}
	
	/* x. Page */
	#page {
		overflow: hidden;
		background: url(../images/inside.png) 197px 0 no-repeat;
	}
	
		/* x.x. Sidebar */
		#sidebar {
			float: left;
			margin: 4px 0 0;
			padding: 2px;
			width: 196px;
			background: #fff;
			-webkit-border-radius: 6px;
			-moz-border-radius: 6px;
			border-radius:6px;
			text-shadow: 0 1px 0px #fff;
		}
		
			#sidebar h5 {
				margin:0 10px 0;
				font-size:11px;
				font-weight:400;
				line-height:1.6em;
			}
			
				#sidebar h5 a {
					color:#000;
				}
				
				#sidebar h5 a:hover {
					color:#3e7ab4;
					text-shadow: 0px 1px 1px #ddd;
				}
	
			#sidebar h6 {
				margin:0 0 5px;
				padding:3px 10px 0;
				width:176px;
				height:18px;
				color:#fff;
				font-size:11px;
				font-weight: 400;
				text-shadow: 0 1px 0 #333;
				background:url(../images/sidebar-middle.png) no-repeat;
			}
			
			#sidebar h6:first-of-type {
				background:url(../images/sidebar-top.png) no-repeat;
			}
			
			#sidebar ul {
				margin:0 10px 7px;
				padding:0;
				list-style:none;
				line-height:1.6em;
			}
			
			#sidebar ul.cat {
				padding: 0 0 0 15px;
				list-style: circle;
			}
			
				#sidebar ul a {
					font-size: 11px;
					text-decoration: none;
					color: #333;
				}
				
				#sidebar ul a:hover {
					color: #8cbf4c;
					text-shadow: 0 1px 0 #eee;
				}
			
			/* x.x. Content */
			#content {
				float: right;
				padding: 10px;
				width: 530px;
				background: #fff;
				-webkit-border-bottom-left-radius: 6px;
				-webkit-border-bottom-right-radius: 6px;
				-moz-border-radius-bottomleft: 6px;
				-moz-border-radius-bottomright: 6px;
			}
			
				#content a {
					color:#82b347;
					text-decoration:none;
				}
				
				#content a:hover {
					text-decoration:underline;
				}
			
				#content h2 {
					color:#3e7ab4;
					font-size:18px;
					text-shadow: 0px 1px 1px #ddd;
				}
				
					#content h2 a { /* Should mark all unread items red */
						color:#b43e3e;
					}
					
					#content h2 a:visited { /* Should mark all the read items the default blue */
						color:#3e7ab4;
					}
			
				#content img {
					max-width: 530px;
					-webkit-border-radius: 2px;
					-moz-border-radius: 2px;
					border-radius:2px;
				}
				
				#content p {
					line-height:1.8em;
				}
	
	/* x. Footer */
	#root > footer {
		display:block;
		clear: both;
		padding:5px 0;
		width: 754px;
		color:#456320;
	}
	
		#root > footer a {
			color:#456320;
		}
		
		#root > footer a:hover {
			text-decoration:underline;
		}
	
		#root > footer ul {
			overflow:hidden;
		}
		
		#root > footer li {
			float:right;
			margin-left:5px;
		}
		
		#root > footer li:before { /* looks nicer then a border */
			margin-right:5px;
			content:"|";
		}
		
		#root > footer li:last-of-type::before {
			content:"";
		}
	
	/* x. Misc */
