@charset "utf-8";

/******************* RESET *******************/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	margin: 0;
	padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

html {
	min-height: 100%;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 100%;
	overflow-y: scroll; /* Forces scroll bars to always appear */
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
	line-height: 1.5;
	background: #f0edae;
	color: #2b331a;
}

a {
	color: #005b3c;
	text-decoration: none;
}

a:visited {
	color: #005b3c;
}

a:active,
a:hover {
	color: #333;
}

a:hover {
	border-bottom: 1px dotted #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.3;
}

blockquote {
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

ul {
	list-style-type: square;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

hr {
	display: block;
	margin: -10px 10px 20px 10px;
	border: 0;
	height: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);	
}

sub,
sup {
	font-size: 65%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.75em;
}

sub {
	bottom: -0.25em;
}

/******************* END RESET *******************/
/******************* NAVIGATION *******************/

header {
	background-color: #a1b751;
}

nav ul {
	margin: 0;
	list-style: none;
	list-style-image: none;
	
	padding: 10px 0;
}
.site-title h1 {
	display: none;
}
.site-title img {
	margin: 0 25px 0 0;
}
.site-title a,
.site-title a:visited,
.site-title a:active,
.site-title a:hover {

}

nav li {
	display: inline;
}
nav li a {

	padding: 10px 0 10px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	text-shadow: 0 0 5px #3C4F14;
}

nav li a,
nav li a:visited,
nav li a:active,
nav li a:hover {
	color: #fff;
}

nav li a:hover {
	color: #f0edae;
	border: none;
}

/******************* END NAVIGATION *******************/
/******************* CONTENT *******************/

body {
	min-height: 100%;
    background: #3c4f14;
    background: -moz-linear-gradient(top,  #3c4f14 0%, #537507 50%, #576831 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3c4f14), color-stop(50%,#537507), color-stop(100%,#576831));
    background: -webkit-linear-gradient(top,  #3c4f14 0%,#537507 50%,#576831 100%);
    background: -o-linear-gradient(top,  #3c4f14 0%,#537507 50%,#576831 100%);
    background: -ms-linear-gradient(top,  #3c4f14 0%,#537507 50%,#576831 100%);
    background: linear-gradient(to bottom,  #3c4f14 0%,#537507 50%,#576831 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c4f14', endColorstr='#576831',GradientType=0 );
}

#site {
	position: relative; /* required for IE 10 to display aside - disappears otherwise - just like the old days! */
	width: 840px;
	margin: 50px auto 0;
	text-align: left;
	background-color: #a1b751;
	box-shadow: 0 0 40px 1px #3c4f14;
}

article {
	position: relative;
	background: #f0edae;
	height: 500px;
	width: 500px;
	margin: 0 0 0 20px;
	padding: 5px 20px 200px 20px;
	overflow: auto;
	font-size: .875em;
}

article h1 {
	margin: .5em 0 .25em 0;
	font-size: 1.5em;
	font-weight: normal;
}

h1 a,
h1 a:visited,
h1 a:active,
h1 a:hover,
h2 a,
h2 a:visited,
h2 a:active,
h2 a:hover {
	color: #2b331a;
	border: none;
}

article h2 {
	margin: .5em 0 .25em 0;
	font-size: 1.25em;
	font-weight: normal;
}

article h3 {
	margin: .5em 0 .25em 0;
	font-size: 1.15;
	font-weight: normal;
}

article ul,
article ol {
	margin: 0 0 0 2em;
}

article p {
	margin: 0 0 2em;
}

.rates-break {
	display: none;
}

/******************* END CONTENT *******************/
/******************* ARTICLE PAGES *******************/

#articlePage article {
	width: 800px;
}

#articlePage article p,
#articlePage article h2,
#articlePage article h3,
#articlePage article h4 {
	padding-right: 40px;
	padding-left: 40px;
}

#articlePage article h4 {
	margin: 0 0 5px 0;
}

#articlePage article h3 {
	margin: 0 0 20px 0;
}

#articlePage article ul,
#articlePage article ol {
	margin: -1em 0 1em 4em;
}

#articlePage article ul ul {
	margin: .5em 0 .5em 3em;
	list-style-type: circle;
}


/******************* EMD ARTICLE PAGES *******************/
/******************* ASIDE *******************/

aside {
	display: visible;
	position: absolute;
	top: 52px;
	right: 20px;
}

/******************* END ASIDE *******************/
/******************* FOOTER *******************/

footer {
	padding: 10px 100px;
	background: #a1b751;
	color: #fff;
	font-size: .75em;
	text-align: center;
}

/******************* END FOOTER *******************/

/***************************** MEDIA QUERIES *****************************/
/***************************** MEDIA QUERY   __860PX__   *****************************/

@media (max-width: 860px) /* (max-device-width: 860px) */ { 
	
	/******************* NAVIGATION *******************/

	.site-title img {
		margin: 0 0 0 10px;
	}

	nav li a {

		padding: 20px 10px 20px 10px;
		text-decoration: none;
		font-weight: 800;
		font-size: 18px;
		text-shadow: 0 0 5px #3C4F14;
	}


	/******************* END NAVIGATION *******************/
	/******************* CONTENT *******************/
	
	#site {
		position: relative;
		width: 100%;
		margin: 0 auto;
		text-align: left;
		
		background-color: #a1b751;
		box-shadow: 0 0 40px 1px #3c4f14;
	}

	
	#articlePage article,
	article {
		background: #f0edae;
		height: auto;
		width: 95%;
		margin: 0 0 0 18px;
		padding: 20px 20px 200px 20px;
	}
	
	/******************* END CONTENT *******************/
	/******************* ASIDE *******************/

	aside {
		display: none;
	}

	/******************* END ASIDE *******************/
}

/***************************** END MEDIA QUERY 860PX *****************************/
/***************************** MEDIA QUERY Media   __480PX__   *****************************/

/*@media screen and (max-width: 480px) { */
@media (max-width: 480px) {
	
	/******************* NAVIGATION *******************/

	nav ul {
		margin: 0;
		padding: 0;
		list-style: none;
		list-style-image: none;
	}

	.site-title h1 {
		font-weight: 400;
		font-style: italic;
		font-size: 28px;
		display: block;
	}

	.site-title img {
		display: none;
	}

	.site-title a,
	.site-title a:visited,
	.site-title a:active,
	.site-title a:hover {
		background-image: none;
		color: #fff;
		background-image: linear-gradient(to bottom, #537507 0%, #3C4F14 100%);
	}

	nav li a {
		display: block;
		padding: 5px 0 5px 20px;
		background-color: #859843;
		border-bottom: 1px dotted #3C4F14;
		text-decoration: none;
		font-weight: 900;
		font-size: 20px;
		text-shadow: 0 0 5px #3C4F14;
	}

	nav li a,
	nav li a:visited,
	nav li a:active,
	nav li a:hover {
		color: #fff;
	}

	nav li a:hover {
		color: #f0edae;
		border-bottom: 1px dotted #3C4F14;
	}

	/******************* END NAVIGATION *******************/
	/******************* CONTENT *******************/
	
	#site {
		width: 100%;
		margin: 0;
		text-align: left;
		height: auto;
		overflow: visible;
		position: relative;
		text-align: left;
		overflow: hidden;
		padding: 0;
		background-color: none;
	}
	#articlePage article,
	article {
		background: #f0edae;
		height: auto;
		width: auto;
		overflow: auto;
		margin: 0;
		padding: 10px 5px;
	}
	#articlePage article p,
	#articlePage article h2,
	#articlePage article h3,
	#articlePage article h4 {
		padding-right: 0;
		padding-left: 0;
	}
	
	.rates-break {
		display: inline;
	}
	
	/******************* END CONTENT *******************/
	/******************* ASIDE *******************/

	aside {
		display: none;
	}

	/******************* END ASIDE *******************/
	/******************* FOOTER *******************/

	footer {
		padding: 10px;
		background: #a1b751;
		color: #fff;
		font-size: .75em;
		text-align: center;
	}

	/******************* END FOOTER *******************/
}
/***************************** END MEDIA QUERY 480PX *****************************/
