﻿@charset "utf-8";
/* CSS Document */
/*基本信息*/
body {font-size:12px;font-style:normal; margin:0px;text-align:center;background:#FFFFFF;}
a:link,a:visited {font-size:12px;text-decoration: none;}
a:hover{}
.linkImportant{color:#FF0000; }

* {
margin: 0px;
padding: 0px;
}

.hidden{
display:none;
}

/*页面层容器*/
#Container {width:800px;margin:10px auto; height:auto;}

/*页面头部*/
#Header{background:url("../images/logo/logo07.gif") top left  no-repeat;width:800px;height:125px;margin:4px auto;}
#Nav{padding:0px 20px 0 0;}
#Nav ul {float:right;list-style:none;margin:0px;}
#Nav ul li {float:left;display:block;line-height:30px;margin:0 10px}
#Nav ul li a:link, #Nav ul li a:visited{}{font-weight:bold;color:#666;text-decoration:none;}
#Nav ul li a:hover{}
.MenuDiv {width:1px;height:28px;background:#999}
#Banner {background:url("../images/banner/banner14.gif")  no-repeat;background-position:left;width:800px;height:90px;margin:auto;border-bottom:5px solid #EFEFEF;clear:both;}


/*页面主体*/
/*
1、关于height的问题：
在IE 6.0中，min-height属性无效，而在ff中可以正常使用；
在IE6.0和ff中，若同时给height属性auto值和一个固定值，则自动将选择auto；
2、在IE6.0中，若浮动的层Sidebar层的高度超过了Content的高度，则整个MainBody层的高度会自动增加，
   而在ff中，整个MainBody层的高度不会自动增加，这个问题该怎么处理？ [id]#MainBody{height:auto;}  
*/

#MainBody{width:800px;height:410px;min-height:390px;margin:0px auto;} /*之前颜色用#FFFFFF，2010年1月2日修改过*/

[id]#MainBody{height:auto;}  /*只有firefox浏览器认识这一节*/

#Sidebar {
 width:160px; 
 float:left;
 text-align:left;
 line-height:1.5em; 
}

#Content {
 margin-left:160px;
 padding-left:15px;
 text-align:justify;
 line-height:1.5em;
}

#Content p{ text-indent: 2em; text-align:justify; margin-bottom:13px;} /*首行缩进两个字符 */


#Content h1{ font-size:14px; font-weight:bold; font-family:sans-serif; text-align:center;} /*旖旎文集文章标题格式*/

#Content table{ margin:0px; padding:0px; border:0px; border-collapse:collapse; border-spacing:0px; } /*表格的控制*/
#Content table tr{ margin:0px; padding:0px;}
#Content table tr td{ padding:0px; margin:0px; border: #6F9 solid 0px;}


/*页面底部*/
#Footer {width:800px;height:70px;margin:0 auto;background:#FFFFFF;clear:both;} /*如果加了clear:both; 此部分就不会浮动了 */
#Footer p{text-align:center;line-height:2.0em;width:auto;} /*之前，版权说明部分为灰色背景，2010年改为无色*/

/*高级样式表*/ 
	a:link {
	font-family: "宋体";
	color:#333333 ;
	text-decoration: none;
}
	a:visited {
	font-family: "宋体";
	color: #333333;
	text-decoration: none;
}
	a:hover {
	font-family: "宋体";
	color: #FF0000;
	text-decoration: underline blink;
}
	a:active {
	font-family: "宋体";
	color: #333333;
	text-decoration: none;
}


