/* Set to 0 for all values*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}

body, html{
	color: #BBB;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	font-size: 12px;
	background-color: #313131; 
	text-align: center; /*** Centers the design in old IE versions ***/
}

body{

}
h1{
	font-size: 18px;
	color: #FFF;
	text-shadow:2px 2px #555;
}
h2{
	font-size: 16px;
	color: #FFF;
	text-shadow:2px 2px #555;
}
h3{
	font-size: 14px;
	color: #FFF;
	text-shadow:2px 2px #555;
}
p{
	margin-bottom: 5px;
}
a{
	color: #999;
}
input{
	padding: 2px;
}


.clear{
	clear: both;
}

#mainContainer{
	width: 1000px;
	margin: 0 auto; /* Center the whole thing */
	padding: 0px 12px 0px 12px;
	text-align: left;
	background: #222 url(../images/background.jpg) top left repeat-y;
}
* html #mainContainer{
	height: 300px; /* IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height */
}

#header{
	background: #2C8BCD url(../images/header.png) top left no-repeat;
	width: 1000px;
	height: 150px;
}
#header ul{
	position: relative;
	top: 0px;
	left: 10px;
	height: 20px;
	list-style: none;
}
#header li{
	font-size: 14px;
	display: inline; /* Making the links horisontal aligned */
	padding-right: 15px;
}
#header li a{
	color: #FFF;
	text-decoration: none;
}

.outer{
	padding-left: 165px;  
}
.inner{
	width: 595px; /* This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large */
}
* html .inner{
	width: 100%;
}
.floatWrap{
	float: left;
	width: 1000px;
	margin-left: -165px; /* Same length as .outer padding-left but with negative value */
}

#content{
	color: #FFF;
}
* html #content{
	position: relative;
}
.contentWrap{
	padding: 5px;
}

#left{
	float: left;
	width: 350px;
}
* html #left{
	position: relative; /* IE needs this or the contents won't show outside the parent container. */
	height: 250px;
}


#footer{
	background-color: #000;
	height: 20px;
	width: 1000px;
	margin: 0 auto; /* Since the footer is outside the #mainContainer we also need to center the footer */
	text-align: center;
}
#footer p{
	color: #FFF;
	font-size: 10px;
	padding: 5px;
}
#footer a{
	color: #999;
}
