
/* general styling */
* {
	margin: 0;
	padding: 0;
}
html,body {
	height: auto;
	background: #000;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}


/* the hyperlinks */
a {
	font-family: Tahoma, Verdana, sans-serif;
    font-size: 15px;
    color: #FFFF80;
    font-weight: bold;
}
a:hover {
	color: #666363;
}


/* site specific styling */


/* the container centers the page */
#container {
	width: 728px;
	height: auto;
	margin: 0 auto 0 auto;
}	


/* the core contains all the site contents */
#core {
	width: 728px;
	height: auto;
	margin-top: 5px;
	background: #000000;
}

/* the coreleft contains the left part of the core */
#coreleft {
	width: 140px;
	height: auto;
	background: #000000;
	float: left;
}
/* the corecenter contains the center part of the core */
#corecenter {
	width: 578px;
	height: auto;
	float: left;
}

	#corecenter h2 {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 20px;
		color: #FFF;
		padding: 10px 0 0 10px;
	}
	#corecenter p {
		line-height: 20px;
		padding: 0 5px 5px 5px;
		color: #FFF;
	}
	
	
/* the footer contains all copyright info etcetera */
#footer {
	clear: both;
	width: 728px;
	height: 30px;
	background: #000;
	line-height: 30px;
	vertical-align: middle;
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
	#footer p {
		color: #FFF;
		padding-right: 20px;
	}
	#footer a {
	font-family: Tahoma, Verdana, sans-serif;
    font-size: 10px;
    color: #FFFF80;
	}
a:hover {
	color: #666363;
}





