/* CSS responsive fixed full width header, footer, content sections by Lindsey Di Napoli of CSSgirl Dev & Design */

* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
  	box-sizing: border-box; 
}

body {
	background: #FFFFFF;
	color: #52514E;
	font: 100% Helvetica,  Arial,  sans-serif;
	line-height: 1.25em;
}

h1 {
	font-size: 1.2em;
	margin: 1em 0;
	line-height: 1.15em;
}

p {
	margin: 1.5em 0;
	font-size: 1em;
	line-height: 1.5em;
}

.container {
	margin: 0 auto;
	max-width: 75em;
}

.header, .footer{
	padding: 2em 0em 0em 0em;
}

.post_index {
	width: 960px;
	padding-left: 12em;
	padding-right: 12em;
}

.post {
	width: 960px;
	padding-left: 10em;
	padding-right: 10em;
}

.header, .footer, .header a, .footer a {
	color: #000000;
}

.header {
	background: #FFFFFF;
}

/* For this demo I have the logo and tagline at 50% of the screen on all screen sizes. Most likely you may need to adjust these widths and the breakpoints for various viewport sizes. */
.menu {
	float: left;
	width: 100%;
	height: 185px;
}

.menu_sub {
	float: left;
	width: 100%;
	height: 185px;
}

.tagline {
	text-align: right;
}

.content {
	padding: 0em 0;
}

.content-second {
	background: #D0EDF3;
}

.content-third {
	background: #F9F2E0;
}

.post-sidebar {
	float: left;
	width: 70%;
}

.sidebar-right {
	float: right;
	width: 30%;
	padding: 1em;
}

/* Media query to make the sidebar drop and stack below the content when the screen is smaller than 800px, and giving both the sidebar and content to the left 100% width. */
@media (max-width: 800px) {
	.sidebar-right, .post-sidebar {
		width: 100%;
		float: none;
	}
	.sidebar-right {
		padding-top: 0;
	}
}

.box-area {
	padding: 1em;
	background: #7E9FA7;
	color: #F3FDFF;
	margin-top: 1.2em;
}

.footer {
	float: left;
	width: 100%;
	height: 60;
}

img[usemap] {
		border: none;
		height: auto;
		max-width: 100%;
		width: auto;
}
