/* CSS Document */
* {
				padding: 0;
				margin: 0;
			}

			body {
				color: #000000;
				font-family: 微软雅黑, tahoma;
			}

			#top {
				width: 100%;
				height: 50px;
				background-color: #a9edfc;
			}

			#top_center {
				width: 1000px;
				margin: 0 auto;
			}

			#logo {
				float: left;
			}

			#nav {
				float: right;
			}

			#nav li {
				list-style: none;
				float: left;
				position: relative;
			}

			#nav a {
				text-decoration: none;
				padding: 0 20px;
				line-height: 50px;
				display: inline-block;
				text-align: center;
				font-weight: bolder;
				color: #ffffff;
			}

			#nav a:hover {
				background: #6ed8ff;
				text-decoration: underline;
			}

			#nav ul li {
				border: 1px solid #397ba7;
				background: #a9edfc;
				float: none;
			}

			#nav ul a {
				color: #000;
				display: block;
			}

			#nav ul {
				position: absolute;
				z-index: 2;
				display: none;
			}

			#nav li:hover ul {
				width: 130px;
				display: block;
			}

			#footer {
				width: 100%;
				height: 70px;
				background: #a9edfc;
				margin-top: 20px;
				padding-top: 30px;
			}

			#footer p {
				text-align: center;
				font-size: 14px;
				line-height: 24px;
				color: #666;
			}

			#footer a {
				text-decoration: none;
				color: #666;
				background: url("../images/record.png") no-repeat left center;
				padding-left: 30px;
			}

			#footer a:hover {
				color: #999;
			}

