@charset "utf-8";
/* CSS Document */

/* 初始化页面主要元素 */
* {
	margin:0;
	padding:0;
}
body {
	background:#8f8e8e;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
ul, ol {
	list-style:none;
}
img {
	border:0 none;
}
h1, h2, h3, h4, h5, h6 {
	font-size:14px;
}
/* Links */
a:link {
	color:#07519A;
	;
	text-decoration:none;
}
a:visited {
	color:#07519A;
	text-decoration:none;
}
a:hover {
	color:#C00;
	text-decoration:underline;
}
a {
	outline:none;
}
/* 清除浮动*/
.clear {
	clear:both;
}
/* 隐藏元素*/
.hidden {
	display:none;
}
/* 常用字体颜色*/
.gray {
	color:gray;
}
.red {
	color:red;
}
/* 字体加粗*/
.bold {
	font-weight:bold;
}
/* 页头*/
.header {
	margin:0 auto;
	background:#0c0c0e;
	width:950px;
	height:400px;
	position:relative;
}
.header h1 {
	background:transparent url(../images/logo.png) no-repeat 0 0;
	position:absolute;
	left:290px;
	top:80px;
	width:380px;
	height:244px;
	text-indent:-9999px;
}
.header h2 {
	color:#fff;
	font-size:20px;
	position:absolute;
	left:290px;
	top:348px;
}
/* 主导航*/
.nav {
	margin:0 auto;
	width:950px;
	height:52px;
	background:transparent url(../images/nav.png) repeat-x 0 0;
}
.nav ul {
	margin-left:282px;
}
.nav ul li {
	float:left;
	padding:18px 0;
	width:74px;
	text-align:center;
}
.nav ul li a {
	color:#962e2f;
	font-size:14px;
	display:block;
	line-height:16px;
	border-left:1px solid #ededef;
}
.nav ul li.current a {
	color:#ededef;
	font-weight:bold;
}
.nav ul li.special a {
	border-right:1px solid #fff;
}
.footer {
	clear:both;
	margin:0 auto;
	padding-top:18px;
	width:950px;
	background:#fff;
	text-align:center;
}
.footer p {
	padding:20px 0 10px;
}
.footer p span {
	color:#e67817;
}
