/* basics */

/* reset */
* {
	margin: 0;
	padding: 0;
	}

/* render html5 elements as block */
header, footer, section, aside, nav, article {
	display: block;
	}

/* standard body */
body {
	margin: 0 auto;
	width: 960px;
	color: #335522;
	font: 14px/20px "Futura", Verdana, Helvetica, Arial, sans-serif;
	background: #ffffff url("images/bg1.jpg") fixed center no-repeat;
	background-size: 100%;
	}
	
/* standard alignments */
.alignleft {
	float: left;
	}
	
img {
	border: none;
	}

img.alignleft {
	margin: 5px 10px 0 0; 
	}

.alignright {
	float: right;
	}

img.alignright {
	margin: 5px 0 0 10px; 
	}
	
.center {
	text-align: center;
	}

/* Hx tags */

h1 {
	-webkit-background-clip: text;
	background: white url(images/bg1.jpg) no-repeat center fixed;
	color: transparent;
	font: 14px/20px 'Futura', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
	font-size: 50px;
	padding: 15px 0px 20px 15px;
	}

h2 {
	font-size: 28px;
	padding: 20px 0;
	}

h3 {
	font-size: 18px;
	padding: 7px 0;
	}

p {
	padding-bottom: 20px;
	}
	
body>header {
	margin-left: 80px;
	margin-top: 20px;
	}

/* nav */

nav {
	position: absolute;
	margin-left: 80px;
	width: 800px;
	}

nav ul {
	margin: 0 auto;
	width: 960px;
	list-style: none;
	}

nav ul li {
	float: left;
	}
		
nav ul li a {
	display: block;
	margin-right: 20px;
	width: 100px;
	font-size: 20px;
	font-weight: bold;
	line-height: 44px;
	text-align: center;
	text-decoration: none;
	color: #6666FF;
	}
			
nav ul li a:hover {
	color: #6666FF;
	text-decoration: underline;
	}
			
nav ul li.selected a {
	color: #6666FF;
	}
			
/* content and sidebar layout */

#headerwrapper {
	float: left;
	background-color: #fff;
	width: 800px;
	height: 60px;
    margin-left: 80px;
	margin-top: 40px;
	opacity:0.85;
	filter: alpha(opacity=85);
	border-top-left-radius: 10px 10px;
	border-top-right-radius: 10px 10px;
	border-bottom-left-radius: 10px 10px;
	border-bottom-right-radius: 10px 10px;
	}

#wrapper {
	height: 600px;
	overflow: auto;
	float: left;
	background-color: #fff;
	width: 800px;
    margin-left: 80px;
	margin-top: 40px;
	opacity:0.75;
	filter: alpha(opacity=75);
	border-top-left-radius: 10px 10px;
	border-top-right-radius: 10px 10px;
	}
	
#footerwrapper {
	height: 50px;
	float: left;
	background-color: #fff;
	width: 800px;
    margin-left: 80px;
	opacity:0.75;
	filter: alpha(opacity=75);
	border-bottom-left-radius: 10px 10px;
	border-bottom-right-radius: 10px 10px;
	}

#content {
	float: right; 
	width:470px; 
	margin-left: 10px;
	margin-right: 50px; 
	padding:5px 20px 5px 20px;
	background-color: #fff;
}

aside {
	float: left;
	text-align: left; 
	width: 200px; 
	margin:0; 
	padding:0;
	}

/* article */
.articlecontent header p a {
	font-size: 14px;
	font-style: italic;
	color: #777;
	}

.articlecontent p a {
	color: #4F7E12;
	}
	
.articlecontent p a:hover {
	color: #335522;
	}
	
.articlecontent header p a:hover {
	text-decoration: none;
	color: #335522;
	}
	
/* box shadow on pics */
.articlecontent img {
	-webkit-box-shadow: 3px 3px 7px #777;
	}
	
/* sidebar */
aside section {
	padding: 10px 10px;
	/*margin-left: 50px;*/
	background: #fff;
	}

aside section ul {
	margin: 0 0 0 20px;
	list-style: square;
	color: #6666FF;
	}
	
aside section ul li a {
	display: block;
	text-decoration: none;
	color: #6666FF;
	}
		
aside section ul li a:hover {
	text-decoration: underline;
	}


/* footer */
footer {
	clear: both;
	width: 780px;
	margin-left: 5px;
	margin-right: 5px;
	color: #335522;
	}

footer p {
  text-align: right;
  font-size: 11px;
	padding-right: 20px;
	}

footer a {
	color: #6666FF;
	}
	
footer a:hover {
	text-decoration: none;
	}

