@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #4E5869;
	margin: 0;
	padding: 0;
	color: #000;
	font-family:"宋休";font-family:"微软雅黑";
	line-height: 30px;
}

/* ~~ 元素/标签选择器 ~~ */
ul, ol, dl { /* 由于浏览器之间的差异，最佳做法是在列表中将填充和边距都设置为零。为了保持一致，您可以在此处指定需要的数值，也可以在列表所包含的列表项（LI、DT 和 DD）中指定需要的数值。请注意，除非编写一个更为具体的选择器，否则您在此处进行的设置将会层叠到 .nav 列表。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 删除上边距可以解决边距会超出其包含的 div 的问题。剩余的下边距可以使 div 与后面的任何元素保持一定距离。 */
	padding-right: 15px;
	padding-left: 15px; /* 向 div 内的元素侧边（而不是 div 自身）添加填充可避免使用任何方框模型数学。此外，也可将具有侧边填充的嵌套 div 用作替代方法。 */
	text-align: left;
}
a img { /* 此选择器将删除某些浏览器中显示在图像周围的默认蓝色边框（当该图像包含在链接中时） */
	border: none;
}

/* ~~ 站点链接的样式必须保持此顺序，包括用于创建悬停效果的选择器组在内。 ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* 除非将链接设置成极为独特的外观样式，否则最好提供下划线，以便可从视觉上快速识别 */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* 此组选择器将为键盘导航者提供与鼠标使用者相同的悬停体验。 */
	text-decoration: none;
}

/* ~~ 此容器包含所有其它 div，并依百分比设定其宽度 ~~ */
.container {
	width: 80%;
	/*max-width: 1260px;*/
	min-width: 1024px;
	background-color: #93A5C4;
	margin: 0 auto; 
	
}

.wm_h1 {
	text-align: center;
}

.imgdiv_h {
	text-align:center;
	clear: both;
}

.imgdiv{
	text-align:center;
	clear: both;
}


.imgdiv img{
	text-align:center;
	max-width:90%;	
}

.header {
	background: #DCDCDC; /* #DCDCDC; #93A5C4; */
	height: 120px;
	line-height: 120px;
	clear: both;
	color: #999;
}

.header h2 {
	font-size:2.2em;
	text-align: center;
}

	
.header2 {
	background-color: #004f99;
	width: 100%;
	height: 90px;
}

.header3 {
	width: 80%;
	max-width: 1260px;
	min-width: 780px;
	margin: 0 auto;
	height: 60px;
	padding-top: 20px;	
	clear: both;

}

.logo{
	float:left;
}


.menu15{
	float:right;
	margin-top: 20px;
}
.menu15 li{
	display:inline-block;
	margin-left:1px;
}
 .menu15 li:first-child{
   	margin-left:0;
}
.menu15 li a{
	display: block;
	font-size: 1.2em;
	color: #CCC;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-transform: none;
	font-weight: bold;
}



.menu{
	float:right;
	/*margin-top: 20px;*/
}
.menu li{
	display:inline-block;
	margin-left:1px;
}
 .menu li:first-child{
   	margin-left:0;
}
.menu li a{
	display: block;
	font-size: 1.2em;
	color: #CCC;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-transform: none;
	font-weight: bold;
}

.header2footer {
	background-color: #333;
	width: 100%;
	height: 90px;
	clear: both;
}

.header3footer {
	width: 80%;
	max-width: 1260px;
	min-width: 780px;
	margin: 0 auto;
	height: 60px;
	padding-top: 10px ;	
}


/* ~~ 以下是此布局的列。 ~~ 

1) 填充只会放置于 div 的顶部和/或底部。此 div 中的元素侧边会有填充。这样，您可以避免使用任何“方框模型数学”。请注意，如果向 div 自身添加任何侧边填充或边框，这些侧边填充或边框将与您定义的宽度相加，得出 *总计* 宽度。您也可以选择删除 div 中的元素的填充，并在该元素中另外放置一个没有任何宽度但具有设计所需填充的 div。

2) 由于这些列均为浮动列，因此未对其指定边距。如果必须添加边距，请避免在浮动方向一侧放置边距（例如：div 中的右边距设置为向右浮动）。在很多情况下，都可以改用填充。对于必须打破此规则的 div，应向该 div 的规则中添加“display:inline”声明，以控制某些版本的 Internet Explorer 会使边距翻倍的错误。

3) 由于可以在一个文档中多次使用类（并且一个元素可以应用多个类），因此已向这些列分配类名，而不是 ID。例如，必要时可堆叠两个侧栏 div。您可以根据个人偏好将这些名称轻松地改为 ID，前提是仅对每个文档使用一次。

4) 如果您更喜欢在右侧（而不是左侧）进行导航，只需使这些列向相反方向浮动（全部向右，而非全部向左），它们将按相反顺序显示。您无需在 HTML 源文件中移动 div。

*/
.sidebar1 {
	float: left;
	width: 20%;
	background-color: #93A5C4;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 80%;
	float: left;
	background-color: #FFF;
}

/* ~~ 此分组的选择器为 .content 区域中的列表提供了空间 ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* 此填充反映上述标题和段落规则中的右填充。填充放置于下方可用于间隔列表中其它元素，置于左侧可用于创建缩进。您可以根据需要进行调整。 */
}


ul.nav {
	list-style: none; 
	border-top: 1px solid #666;  
	margin-bottom: 15px; 
}
ul.nav li {
	border-bottom: 1px solid #666; 
}
ul.nav a, ul.nav a:visited {
	padding: 5px 5px 5px 15px;
	display: block; 
	text-decoration: none;
	background-color: #8090AB;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background-color: #6F7D94;
	color: #FFF;
}



ul.nav15 {
	list-style: none; 
	/*border-top: 1px solid #666;  */
	margin-bottom: 15px; 
}
ul.nav15 li {
	/* border-bottom: 1px solid #666; */
}
ul.nav15 a, ul.nav15 a:visited {
	padding: 5px 5px 5px 15px;
	display: block;
	text-decoration: none;
	color: #999;
}
ul.nav15 a:hover, ul.nav15 a:active, ul.nav15 a:focus {
	color: #FFF;
}



/* ~~ 脚注 ~~ */
.footer {
	text-align:center;
	padding: 10px 0;
	background: #6F7D94;
	position: relative;
	height:60px;
	line-height:60px;
	clear: both; 
}

/*.footer {
	padding: 10px 0;
	background: #6F7D94;
	position: relative;
	clear: both; 
}*/

.footer p,.footer h1,.footer h2,.footer h3{
	text-align:center;	
}


/* ~~ 其它浮动/清除类 ~~ */
/*
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
 */
