* {
	margin: 0;
	padding: 0;
}

body {
	background: #090909 url(/static/images/bg.jpg) repeat-x 50% 0;
	color: #333;
	font: 13px/18px Helvetica, Arial, sans-serif;
	text-align: center;
}

/*=global
--------------------*/
a {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #000;
}

p {
	margin: 15px;
}

img {
	border-style: none;
}

/*=structure
--------------------*/
#wrapper {
	position: relative;
	margin: 40px auto 40px auto;
	width: 900px;
	/*border: solid 1px #555;*/
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
}

/*=head
--------------------*/
#head {
	width: 900px;
	height: 150px;
	/*background-color: #efefef;*/
}

#logo {
	float: left;
	margin: 15px 15px 15px 30px;
}

#new {
	position: absolute;
	right: 15px;
	top: 15px;
	/*background-color: #ccc;*/
	width: 310px;
	height: 105px; 
}

#nav {
	position: relative;
	float: right;
	margin-top: 120px; /*bodge*/ 
	width: 330px;
}

#nav ul {
	float: right;
	list-style: none;
}

#nav ul li {
	display: block;
	float: left;
	font-size: 14px;
	line-height: 30px;
}

#nav ul li a {
	display: block;
	padding: 0px 10px;
	margin-left:2px;
	background-color: #ddd;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
}

#nav ul li a:hover {
	background-color: #ccc;
}

#nav ul li a.current {
	background-color: #333;
	color: #fff;
}

/*=Content
------------------*/
#content {
	border-top: solid 5px #333;
	padding: 15px 0 15px 0;
	width: 900px;
	background-color: #fff;
	text-align: left;
	-moz-border-radius-topleft: 8px;
}

#content h2 {
	padding: 10px;
	margin: 0 10px 0 10px;
	border-bottom: solid 2px #640E06;
	font-weight: normal;
}

#content span {
	font-size: 11px;
	float: right;
}

.left {
	float: left;
	width: 600px;
}

.right {
	float: left;
	width: 300px;
}

/*=Footer
---------------*/
#footer {
	clear: both;
	background: #eee;
	color: #333;
	position: relative; 
	padding: 0 20px;
	height: 50px;
	border-top: solid 1px #ddd;
	text-align: center;
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-bottomright: 8px;
}

#footer p {
	margin-top: 15px;
}

#footer .copyright {
	float: left;
	text-align: left;
}

#footer .links {
	float: right;
	text-align: right;
}

