@charset "utf-8";
/* CSS Document */
			* {
				padding: 0;
				margin: 0;
			}

			body {
				font-family: 微软雅黑, Tahoma, sans-serif;
			}

			/* 以下banner和导航 */
			#top {
				width: 100%;
				height: 48px;
				background-color: #005E45;
				position: fixed;
				z-index: 7;
			}

			#top_center {
				width: 1200px;
				margin: 0 auto;
			}

			#logo {
				float: left;
				margin-right: 539px;
				padding-top: 5px;
			}

			#nav {
				width: 1200px;
				margin: 0 auto;
			}

			#nav li {
				list-style: none;
				float: left;
			}

			#nav li:nth-child(5) {
				margin-right: 0;
			}

			#nav a {
				text-decoration: none;
				color: #fff;
				float: left;
				width: 120px;
				line-height: 48px;
				display: inline-block;
				text-align: center;
				background-color: #005E45;
			}

			#nav a:hover {
				background: #00c18e;
			}

			#nav ul li {
				float: none;
			}

			#nav ul a {
				display: block;
			}

			#nav ul {
				display: none;
			}

			#nav li:hover ul {
				display: block;
			}


			/* 以下是版权 */
			#footer {
				width: 100%;
				height: 100px;
				padding-top: 20px;
				margin-top: 40px;
				text-align: center;
				background: #134232;
			}

			#footer p {
				font-size: 16px;
				list-style: none;
				line-height: 40px;
				color: #fff;
				text-align: center;
			}

			#footer a {
				text-decoration: none;
				color: #fff;
				background: url("../images/record.png") no-repeat left center;
				padding-left: 25px;
			}

			#footer a:hover {
				color: #999;
			}
			
			.clear {
				clear: both;
			}
