/******************************************** 
HTML ELEMENTS 
********************************************/  
/* top elements */  
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of our document*/  
  
body {
	background-color: #000000; /*website background color (off-black)*/
	background-image: url(images/bg.gif); /*sets the background image, in our case the stripey background*/
	background-repeat: repeat; /*repeats our background over and over*/
	color: #000000; /*sets no padding and a 15px margin around the body of our document*/
	font-family: "Arial Black", Gadget, sans-serif; /*sets the font family for our website*/
	font-size: 70%; /*sets the font size in %, you can also use 12px or 14px etc... px stands for pixels*/
	line-height: 1.5em;
	margin-top: 15px;
	margin-bottom: 15px;
}  
/******************************************** 
WEBSITE LAYOUT 
********************************************/  
#wrap {
	width: 900px; /*center our margin to auto will center our website*/
	text-align: left; /*aligns our text to the left*/
	background-color: #000000;
	background-image: url(images/content.jpg);
	width: 900px;
	background-repeat: repeat-y;
	background-position: center top;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}  
#content-wrap {  
clear: both; /*The clear property sets the sides of an element where other floating elements are not allowed.*/  
width: 880px; /*width of our wrap*/  
margin: 5px auto; /*sets our top margin at 5 pixels and the rest to auto*/  
padding: 0; /*sets 0 padding*/  
}  
#header {
	position: relative; /*An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position*/
	height: 139px; /*sets a background behind our header and sets our header image onto the page*/
	padding: 0; /*no padding is needed*/
	background-color: #00000;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 900px;
}  
#header h2 {  
padding: 0;  
margin-bottom: 0;
marigin-top: 10;
color: #333333;  
font-family: Arial Rounded MT Bold, Verdana, Arial, Helvetica, sans-serif;  
font-size: 110%;  
font-style: normal;    
}  
/******************************************** 
WEBSITE NAVIAGTION 
********************************************/  
#menu {
	clear: both; /*Our menu background*/
	height: 40px; /*The height of the menu */
	width: 889px; /*The width of the menu */
	font-family: Verdana, Arial, Helvetica, sans-serif; /*The font family*/
	font-size: 14px; /*The font size*/
	line-height: 40px; /*The line-height property sets the distance between lines.*/
	background-color: #0b0b0b;
	background-image: url(images/navigation.jpg);
	background-repeat: no-repeat;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0;
}  
#menu ul {  
float: left; /*Floats our menu to the left*/  
list-style: none;  
margin:0; padding: 0 0 0 20px;  
}  
#menu ul li {  
display: inline; /*The element will be displayed as an inline element, with no line break before or after the element*/  
}  
#menu ul li a {  
display: block;  
float: left;  
padding: 0 12px;  
color: #c3c3c3; /*Font color*/  
text-decoration: none;  
}  
#menu ul li a:hover {  
color: #f8de06; /*Mouseover hover color*/  
}  
/******************************************** 
MAIN COLUMN 
********************************************/  
#main {
	float: right; /*floats our main content area to the right*/
	width: 555px;
	display: inline;
	color: #CCC;
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 0;
	margin: 0;
	background-color: #000;
}  
  
#main h2 {  
padding: 0;  
margin-bottom: 0;  
color: #999999;  
font-family: Arial Rounded MT Bold, Verdana, Arial, Helvetica, sans-serif;  
font-size: 180%;  
font-style: normal;    
}  
#main h2 a {  
color: #2666c3;  
text-decoration: none;  
}  
  
#main p, #main h1, #main h2, #main h3, #main ol, #main ul,  
#main blockquote, #main table, #main form {
	margin-left: 10px;
	margin-right: 10px;
}  
  
/******************************************** 
SIDEBAR 
********************************************/  
#sidebar {
	float: left;
	width: 195px;
	padding: 0;
	color: #FF0;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
}  
#sidebar h2 {
	margin: 15px 5px 10px 5px;
	color: #FF0;
	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
	font-size: 1.4em;
	font-weight: bold;
}  
#sidebar p {  
margin-left: 5px;  
}  
  
#sidebar ul.sidemenu {  
list-style: none;  
text-align: left;  
margin: 7px 10px 8px 0; padding: 0;  
text-decoration: none;  
border-top: 1px solid #111010;  
}  
#sidebar ul.sidemenu li {
	list-style: none;
	padding: 4px 0 4px 5px;
	margin: 0 2px;
	color: f8de06;
	border-bottom: 1px solid #111010;
}  
* html body #sidebar ul.sidemenu li {  
height: 1%;  
}  
#sidebar ul.sidemenu li a {  
text-decoration: none;  
color: #f8de06;  
}  
#sidebar ul.sidemenu li a:hover {
	color: #F60;
}  
#sidebar ul.sidemenu ul { margin: 0 0 0 5px; padding: 0; }  
#sidebar ul.sidemenu ul li { border: none; }  

#sidebar img {
background: #191818
}
  
/******************************************** 
FOOTER 
********************************************/  
#footer {
	color: #666;
	clear: both;
	width: 900px;
	height: 57px;
	text-align: center;
	font-size: 90%;
	background-color: #caced1;
	background-image: url(images/footer.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}  
#footer p {  
padding: 10px 0;  
margin: 0;  
}  
#footer a {  
color: #f8de06;  
text-decoration: none;  
}  
  
/* alignment classes */  
.float-left { float: left; }  
.float-right { float: right; }  
.align-left { text-align: left; }  
.align-right { text-align: right; }  
  
/* display and additional classes */  
.clear { clear: both; }  
/******************************************** 
WEBSITE LINKS 
********************************************/  
a, a:visited {
	text-decoration: none;
	background: inherit;
	color: #FF0;
}  
a:hover {
	text-decoration: none;
	background: inherit;
	color: #FF0000;
}  
  
/******************************************** 
WEBSITE TEXT HEADERS 
********************************************/  
h1, h2, h3 { font-family: 'Trebuchet MS', Tahoma, Sans-serif; }  
h1 {
	font-size: 180%;
	font-weight: normal;
	color: #FFF;
}  
h2 {  
font-size: 100%;  
color: #f8de06;  
font-weight: normal;  
}  
h3 {  
font-size: 135%;  
color: #666666;  
}  
  
/******************************************** 
WEBSITE IMAGES 
********************************************/  
img {
	background: #000000;
	border: 0px none #000000;
	padding: 5px;
	margin-top: 5px;
	margin-right: 5px;
	float: none;
}  
  
img.float-right {
	background-color: #000000;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	white-space: nowrap;
	position: relative;
}  
img.float-left { margin: 5px 10px 10px 0px; }  
  
h1, h2, h3, p {  
margin: 10px 15px;  
padding: 0;  
}  
ul, ol {  
margin: 5px 15px;  
padding: 0 25px;  
} 


/* Fix up IE6 PNG support */
img, div { 
behavior: url("iepngfix.htc");
}
#wrap #content-wrap #main p em {
	font-family: Arial, Helvetica, sans-serif;
}
#wrap #content-wrap #main p em {
	font-family: Courier New, Courier, monospace;
}
#wrap #content-wrap #main p em {
	font-family: Verdana, Geneva, sans-serif;
}
#wrap #content-wrap #sidebar h2 {
	font-family: Arial Black, Gadget, sans-serif;
}

