@charset "utf-8";
/* CSS Document */

/* Sets background color, the site's font family and body text color */
body {
	background-color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #767676;
	margin: 0px;
	padding: 0px;
	line-height: 18px;
}
p {
	margin: 0px;
	padding: 0px 0px 15px 0px;
}
a {
	color: #FFF;
	text-decoration: underline;
}
a:hover {
	color: #999;
	text-decoration: underline;
}
/* fonts */
.Normal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-left: 5px;
}
.disclaimer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 6px;
}

/* Creates a centered logo container */
#logo_wrapper {
	width: 1000px;
	height: auto;
	margin: 45px auto;
}

/* No matter of logo size you choose, this will float it to the left of the centered container
   we used the font called "Code Bold" for the sample logo */
#logo {
	width: auto;
	height: auto;
}

/* Sets menu container to stretch across screen */
#menu_container {
	width: 1000px;
	height: 30px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin-left: auto ;
    margin-right: auto ;
}

/* Menu layout within menu conainer */
#menu {
	width: 1000px;
	height: auto;
	margin: 0px auto;
	text-align: left;
	font-size: 16px;
}
#menu ul {
	margin: 0px;
	padding: 6px 0px;
}
#menu li {
	display: inline;
	padding: 0px;
	margin: 0px 80px 0px 0px;
	padding-bottom: 10px;
}
#menu a {
	color: #959595;
	text-decoration: none;
}
#menu a:hover {
	color: #FFF;
	padding-bottom: 10px;
	border-bottom: 5px solid #FFF;
}

/* Creates a centered content wrapper */
#content_wrapper {
	width: 1000px;
	height: auto;
	margin: 50px auto;
	overflow: hidden;
}

/* Creates the content area floated to the left of the wrapper */
#content {
	width: 500px;
	height: auto;
	float: left;
}

/* Creates a full width content area floated to the centre of the wrapper */
#content-full {
	width: 1000px;
	height: auto;
	float: left;
}

/* Creates the picture container, which can fit images up to 490px in width */
#picture_container {
	width: 500px;
	height: auto;
	float: right;
}

/* Creates a picture class, floats it right within container and can be stacked vertically */
.picture {
	float: leftt;
	padding: 0px 0px 0px 10px;
	padding-left: 50px;
}

/* Creates the footer container */
#footer_container {
	width: 1000px;
	height: auto;
	border-top: 1px solid #FFF;
	overflow: hidden;
	margin-left: auto ;
    margin-right: auto ;
}

/* Creates copyright content layout */
#copyrights {
	width: 1000px;
	margin: 5px auto;
}

/* Creates the template container */
#template_container {
	width: 1000px;
	height: auto;
	border-top: 0px solid #FFF;
	overflow: hidden;
	margin-left: auto ;
    margin-right: auto ;
}

/* Controls Slideshow */
.fadein { position:relative; width:500px; height:332px; }
.fadein img { position:absolute; left:0; top:0; }
