/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body{
	background-color:#213338;
	text-align: center;
}

#main {
	margin-left: auto;
	margin-right: auto;
	background-color: #395B50;
	width: 750px;
	height: 850px;
	border: 1px solid #231B17;
	text-align: left;
	border-radius: 15px;
}

#header {
	background-color: #395B50;
	width: 750px;
	height: 300px;
	background-image: url(header.png); 
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
}

#content{
	text-align: left;
	float: left;
	width: 740px;
	height: 480px;
	margin-top: 10px;
	margin-left: 5px;
	margin-right: 5px;
}

#footer {
	width: 750px;
	height: 20px;
	margin-top: 15px;
	text-align: center;
	font-size: .6em;
}


ul.menu{
	list-style-type:none;
	width:750px;
	position:relative;
	display:block;
	height:35px;
	font-size:.8em;
	background-color:#B6C197;
	background-image:url(menu.png);
	background-position:bottom;
	background-repeat:x; 
	font-family:Verdana,Helvetica,Arial,sans-serif;
	margin:0;
	padding:0;
	font-weight: bolder;
}

ul.menu li{
	display:block;
	float:left;
	margin:0;
	padding:0;
}

ul.menu li a {
	float:left;
	color:#213338;
	text-decoration:none;
	height:24px;
	padding:9px 15px 0;
}

ul.menu li a:hover {
	color:#E8871E;
}

ul.menu li a:active{
	color:#E8871E;
	font-weight:700;
}

h1 { 
	font-family: calibri;
	color:#D5DDBC; 
	text-align: center;
	margin-top: 10px;
}

.gallery li {
    display: inline;
    list-style: none;
    width: 200px;
    min-height: 200px;
    float: left;
    margin: 0 30px 30px 0;
	text-align: center;
}

img {
   border:2px solid #614A3F;
}

ul.gallery img:hover {
	filter:alpha(opacity=50);
	opacity:0.8
}