* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #333;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
}

a{
	color: #FFF;
	text-decoration: none;
}

a:hover{
	color: #66CC00;
}

/* Draws the container */

#container {
	position: relative;
	width: 930px;
	margin: 0 auto;
	padding: 0 20px 0 20px;
}

/* Sets the site logo */

#logo {
	position: absolute;
	top: 65px;
}

#logo h1 {
	font-size: 28px;
	color: #66CC00;
	padding-bottom: 5px;
}

#logo h1 span {
	color: #FFF;
}

/* Positions the navbar on the right side opposite site logo */

#navbar {
	position: absolute;
	top: 80px;
	left: 800px;
	width: 150px;
	text-align: right;
	color: #FFF;
}

#navbar a{
	color: #FFF;
	text-decoration: none;
}

#navbar a:hover{
	color: #66CC00;
}

/* Draws the main box. Only part which shows is the white border as the carea runs over the
top of the rest of the box */

#box {
	position: absolute;
	top: 100px;
	width: 930px;
	height: 530px;
	background: #fff;
}

#main {
	position: absolute;
	background-color: #333;
	margin: 15px;
	width: 900px;
	height: 500px;
}

#content {
	position: absolute;
	left: 0;
	width: 350px;
	height: 500px;
}

#content h2 {
	font-size: 20px;
	color: #FFF;
	padding: 5px 15px 5px 15px;
}

#content p {
	padding: 0 15px 10px 15px;
	font-size: 12px;
	color: #FFF;
}

#bgcolor {
	position: absolute;
	background-color: #66CC00;
	left: 350px;
	width: 400px;
	height: 500px;
}

#bgimage {
	position: absolute;
	background-color: #333;
	left: 15px;
	width: 370px;
	height: 500px;
}

#gallery {
	position: absolute;
	left: 750px;
	width: 150px;
	height: 420px;
	margin: 15px 0 15px 0;
}

.thumbnail {
	width: 120px;
	height: 120px;
	padding: 55px 15px 0 15px;
}

.thumbnailtop {
	width: 120px;
	height: 120px;
	padding: 0 15px 0 15px;
}

#footer {
	position: absolute;
	top: 640px;
	width: 930px;
}

#footer p {
	text-align: right;
	color: #FFF;
}




