/* BASICS */

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	
}

body {
	font-family: Arial;
	font-size: 90%;
	margin: 0;
	padding: 0;
	width: 100%;
	height:100%;
	background-color: white;
}

#banner {
width: 100%;
height: 250px;
background-repeat: no-repeat;
background-position: center;
background-size:cover;
background-color: black;

}

#logo
{position: relative;
bottom:50px; }

#content {
	width: 1000px;
	height: 100%;
	margin : 0px auto;
	padding: 20px;
	border-style: solid;
	border-color: #30322c;
    border-width: 5px;
	border-radius: 10px 10px 0px 0px;
	border-bottom: none;
	margin-top: 30px;
	padding-bottom: 30px;

	font-family: 'Raleway', sans-serif;
	font-size: 125%;
}

#content a {
color: #C7D92C;
}

/* HEADER */

header {
	display: block;
}

	header h1 {
		margin: 0;
		padding: 0;
		color: #7a8a39;
		text-align: center;
	}

/* ------------------------------ Menu ------------------------- */

#sse1
{
    /*You can decorate the menu's container, such as adding background images through this block*/
    background-color: #30322c;
    height: 38px;
    padding: 15px;
    border-radius: 3px;
    box-sizing: content-box;
}
#sses1
{
    margin:0 auto;/*This will make the menu center-aligned. Removing this line will make the menu align left.*/
}
#sses1 ul 
{ 
    position: relative;
    list-style-type: none;
    float:left;
    padding:0;margin:0;
}
#sses1 li
{
    float:left;
    list-style-type: none;
    padding:0;margin:0;background-image:none;
}
/*CSS for background bubble*/
#sses1 li.highlight
{
    background-color:#C7D92C;
    top:0px;
    height:2px;
    z-index: 1;
    position: absolute;
    overflow:hidden;
}
#sses1 li a
{
    box-sizing: content-box;
    height:30px;
    padding-top: 8px;
    margin: 0 25px;/*used to adjust the distance between each menu item. Now the distance is 20+20=40px.*/
    color: #fff;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
    float:left;
    position: relative;
    z-index: 2;
}



/* FOOTER */
	
	footer {
	margin: 0 auto;
	width: 1050px;
	height: 68px;
	font-size: 15px;
	font-family: 'Raleway', sans-serif;
	padding: 5px 0px 5px 0px;
	background-color:	#30322c;
	margin-bottom: 30px ;
	color: white;

}
	
	footer a {
	color: white;
	text-decoration: none;
	}

