/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN*/
body { 
	font-size: 1.05em;
	line-height: 1.25em;
	font-family: Helvetica Neue, Helvetica, Arial;
	background: #FFFFFF;
	color: #555;
}

a {

	color: #7C0305;
	text-decoration: none;
	font-weight: bold;

}

a:hover {

	color: #444;

}

img {

	width: 100%;
	margin:auto;

}

img.sm {

	width: 20%;
	margin-bottom: 15px;
}

header {
	margin: auto;;
	max-width: 1000px;
	background: #FFFFFF;
	width: 100%;
	height: 280px;
	position:relative;
	top: 0;
	left: 0;
	z-index: 100;

}

#logo{
	float: left;
	width: 425px;
	height: 280px;
	background: url(../images/struc_logo.png) no-repeat center;
	display: block;
}

nav {
	margin-top:75px;
	float: right;
	font-size:x-large;
}

#menu-icon {

	display: hidden;
	width: 50px;
	height: 50px;
	background: #7C0305 url(../images/menu-icon.png) center;

}

a:hover#menu-icon {

	background-color: #444;
	border-radius: 4px 4px 0 0;

}

ul {

	list-style: none;

}

li {

	display: inline-block;
	float: left;
	padding: 10px

}

.current {

	color: #2262AD;

}

section {

	margin: auto;;
	max-width: 1000px;
	position: relative;
	padding: 20px

}

h2 {

	font-size:x-large;
	color: #7C0305;
	line-heighxt: 1.15em;
	margin: 20px 0 ;
	padding: 8px

}

p {

	line-height: 1.45em;
	margin-bottom: 20px;
	margin-left:15px;

}

/*MEDIA QUERY*/
@media only screen and (max-width : 640px) {

	img.sm {
		width: 40%;
	}	
	
	#logo{
		float: left;
		width: 200px;
		height: 132px;
		padding: 10px;
		background: url(../images/struc_logo_sm.png) no-repeat center;
		display: block;
	}

	header {
		position: absolute;
		height: 175px;

	}

	#menu-icon {
		display:inline-block;
		margin-right: 10px;
	}

	nav ul, nav:active ul { 

		display: none;
		position: absolute;
		padding: 0px;
		background: #fff;
		border: 5px solid #444;
		right: 20px;
		top: 60px;
		width: 50%;
		border-radius: 4px 0 4px 4px;

	}

	nav li {
		text-align: center;
		width: 100%;
		padding: 5px 0;
		margin: 0;
		font-size:medium;
	}

	nav:hover ul {
		display: block;

	}