/* Imports */
@import url("reset.css");

/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
	display: block;
}

/*
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * @vendor:     Google Android
 * @vendorurl:  http://code.google.com/android/
 * @licenseurl: http://www.fontsquirrel.com/license/Droid-Sans
 *
 *
 */

@font-face {
	font-family: 'DroidSansRegular';
	src: url('DroidSans.eot');
	src: local('Droid Sans Regular'), local('DroidSans'), url('DroidSans.ttf') format('truetype');
}

@font-face {
	font-family: 'DroidSansBold';
	src: url('DroidSans-Bold.eot');
	src: local('Droid Sans Bold'), local('DroidSans-Bold'), url('DroidSans-Bold.ttf') format('truetype');
}

/* Body */
body {
	background: #F2FFF4;
	border-style: solid;
	border-top: 20px solid #47353B;
}

body, p, h1, h2, h3, h4, ol, ul, li, form, input, table, td, th, fieldset, pre {
	color: #000000;
	font-family: 'DroidSansRegular', "Bitstream Vera Sans", Verdana, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	letter-spacing: 0;
	text-align: left;
}

/* Headings */
h2 {font-size: 1.571em}	/* 22px */
h3 {font-size: 1.429em}	/* 20px */
h4 {font-size: 1.286em}	/* 18px */
h5 {font-size: 1.143em}	/* 16px */
h6 {font-size: 1em}		/* 14px */

h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: .8em;
	color: #47353B;
}

/* Anchors */
a {outline: 0;}
a img {border: 0px; text-decoration: none;}
a:link {
	color: #47353B;
}

a:visited {
	color: #47353B;
}
a:hover, a:active {
	color: #65FF6A;
}

/* Banner */
#banner { 
	width: 100%;
	max-width: 1024px;
}

#banner h1 {font-size: 3em; line-height: 1em;}
#banner h1 a:link, #banner h1 a:visited {
	color: #47353B;
	display: block;
	font-weight: bold;
	margin: 1.2em 0 1.2em 15px;
	text-decoration: none;
	min-width: 600px;

}

#banner nav {
	text-align: right;
	float: right;
	width: 400px;
	position: absolute;
	top: 20px;
	right: 0px;

}

#banner nav a {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	text-decoration: none;
}

#banner nav a:hover {
	color: #fff;
}
#banner nav ul {
	margin-right: 10px;
}
#banner nav li {
	background: #B2FFB4;
	display: inline;
	float: right;
	margin-right: 5px;
	padding: 5px 5px 5px 5px;

	/* border-radius: 5px; */

	border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	
	border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}

#content {
	background: #fff;
	margin: 2em 1.5em 2em 15px;

	overflow: hidden;
	padding: 20px 20px;
	width: 640px;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#content h2 {
	margin-bottom: 1em;
}
#content pre {
	background-color: #F8F8FF !important;
	border: 1px solid #DEDEDE !important;
	color: #444444 !important;
	font-size: 90% !important;
	margin-bottom: 1em;
}

#content p {
	margin-bottom: 1em;
}

#content blockquote {
    margin: 1em 3em;
    color: #999;
    border-left: 2px solid #999;
    padding-left: 1em; 
}

#content .post {
	margin-bottom: 2em;
}

#content img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#content ul {
	list-style-type: square;
	list-style-position: inside;
	padding-left: 1em;
	margin-bottom: 1em;
}

#contentinfo {
	padding: 1em 0 2em 0; 

	background: #fff;
	width: 640px;
	overflow: hidden;
	font-size: 90% !important;
	font-style: normal;
	color: #47353B;
	margin-left: 15px;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#contentinfo li {
	display: inline;
	float: left;
	margin-right: 4px;
}

/* reset address tag */
address {
	font-style: none;
}