@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
/* Structure */
body {
	font-family: 'Open Sans', sans-serif;
	font-size:12px;
	
	width:100%;
	height:100%;
	
	margin:0;
	padding:0;
	
	overflow:auto;
	
	box-sizing: border-box;
}

#header-container {
	background-color:rgba(0,0,0,0.8);
	color:rgb(255,255,255);
}

/* Header Top */

#header-container #header-top-container {
	border-bottom: thin solid rgb(255,255,255);
}

#header-container #header-top-container span {
	vertical-align:middle;
}

#header-container #header-top-container a {
	color:rgb(255,255,255);
}

#header-container #header-top-container a:hover {
	color:rgb(255,255,255);
	text-decoration:none;
}

#header-container #header-top-container #plus-logo {
	width:auto;
	height:2em;
}

#header-container #header-top-container img {
	width:auto;
	height:2em;
}

/* Header Bottom */
#header-container #header-bottom-container {
	height:auto;
}

#header-container #header-bottom-container #site-logo {
	width:auto;
	height:5em;
	
	margin-top:0.8em;
	margin-bottom:0.8em;
	
	cursor:pointer;
}

#header-container #header-bottom-container #main-navigation-toggler {
	margin-top:2em;
}

#header-container #header-bottom-container #main-navigation-toggler span {
	background-color:rgb(255,255,255);
}

/* Main Navigation */

#header-container #main-navigation {
	margin-top:1em;
	margin-bottom:1em;
	font-size:1.5em;
}

#header-container #main-navigation ul li a {
	text-decoration:none;
	color:inherit;
	padding-bottom:0.5em;
}

#header-container #main-navigation ul li a:hover {
	background-color:transparent;
	background-image:url(../images/navigation-active.png);
	background-position:bottom;
	background-repeat:repeat-x;
	background-origin:border-box;
}

#header-container #main-navigation ul li .active {
	background-color:transparent;
	background-image:url(../images/navigation-active.png);
	background-position:bottom;
	background-repeat:repeat-x;
	background-origin:border-box;
}

/* Content */

#content-container {
	position:absolute;
	display:block;
		
	width:100%;
	height:600%;
}

.section-container {
	display:inline-block;
	width:100%;
	height:16.667%;
	
	overflow:auto;
}