/*--------------------------------------------------
	HTML Elements
--------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	background: #101010;
}

/*--------------------------------------------------
	Layouts
--------------------------------------------------*/

/* ---------- wrap ---------- */
div#wrap {
	width: 900px;
	margin: 40px auto;
}

/* ---------- header ---------- */
div#header {
	width: 900px;
	height: 50px;
}

/* ---------- menu ---------- */
div#menu {
	width: 900px;
	height: 40px;
	background: #181818;
	border-top: solid 1px #333;
	border-bottom: solid 1px #333;
}
div#menu ul {
	list-style: none;
}
div#menu ul li {}
div#menu ul li a {
	display: block;
	float: left;
	padding: 0 10px;	
	font: normal 12px/40px Tahoma, Verdana, Arial;
	color: #999;
}
div#menu ul li a:hover {
	color: #FFF;
}

/* ---------- content-wrap ---------- */
div#content-wrap {
	width: 900px;
	margin: 10px 0;
	overflow: hidden;
}

/* main */
div#main {
	width: 650px;
	float: left;
}

/* sidebar */
div#sidebar {
	width: 250px;
	float: right;
}
div#sidebar .side-box {
	margin-bottom: 10px;
}

/* ---------- footer ---------- */
div#footer {
	width: 900px;
	height: 40px;
	clear: both;
}