body {
	margin: 0;
	padding: 1px;
	color: #9B9B9B;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #FFF;
	height: 35px;
	border: thin none #036;
}

/* ~~ 元素/标签选择器 ~~ */
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: 1px;
	padding-left: 1px; /* 向 div 内的元素侧边（而不是 div 自身）添加填充可避免使用任何方框模型数学。此外，也可将具有侧边填充的嵌套 div 用作替代方法。 */
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	color: #003197;
}

}
a img { /* 此选择器将删除某些浏览器中显示在图像周围的默认蓝色边框（当该图像包含在链接中时） */
	border: none;
}

/* ~~ 站点链接的样式必须保持此顺序，包括用于创建悬停效果的选择器组在内。 ~~ */
a:link {
	color: #3E5A82;
	text-decoration: none; /* 除非将链接设置成极为独特的外观样式，否则最好提供下划线，以便可从视觉上快速识别 */
}
a:visited {
	color: #3E5A82;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* 此组选择器将为键盘导航者提供与鼠标使用者相同的悬停体验。 */
	text-decoration: underline;
	color: #33ffdd;
	font-weight: normal;
	
	/*font-family: "Times New Roman", Times, serif;*/
}
a2:link {
	color: #525F6B;
	text-decoration: none; /* 除非将链接设置成极为独特的外观样式，否则最好提供下划线，以便可从视觉上快速识别 */
}
a2:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a2:hover, a2:active, a2:focus { /* 此组选择器将为键盘导航者提供与鼠标使用者相同的悬停体验。 */
	text-decoration: none;
	color: #636;
}
/* ~~ 此固定宽度容器包含所有其它 div ~~ */
.container {
	width: 920px;
	margin: 0 auto; /* 侧边的自动值与宽度结合使用，可以将布局居中对齐 */
	overflow: hidden;
	background-color: #FFF;
	color: #FFF;
}

/* ~~ 以下是此布局的列。 ~~ 

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: 180px;
	background-color: #FFF;
	color: #FFF;
}
.content {
	padding: 10px 0;
	width: auto;
	float: left;
	font-weight: normal;
	color: #006595;
	font-family: Tahoma, Geneva, sans-serif;
	background-color: #FFF;
	/*border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;*/
}
.sidebar2 {
	float: right;
	width: 265px;
	padding: 10px 0;
}

/* ~~ 此分组的选择器为 .content 区域中的列表提供了空间 ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* 此填充反映上述标题和段落规则中的右填充。填充放置于下方可用于间隔列表中其它元素，置于左侧可用于创建缩进。您可以根据需要进行调整。 */
}

/* ~~ 导航列表样式（如果选择使用预先创建的 Spry 等弹出菜单，则可以删除此样式） ~~ */
ul.nav {
	list-style: none; /* 这将在下面内容的导航之间创建间距 */
	font-size: 18px;
	color: #FFF;
	margin: auto;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #0080C0;
	font-weight: normal;
	border-bottom-style: solid;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-color: #936;
}
ul.nav li {
	background-color: #FFF;
	color: #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #8D2E60;
	border-right-color: #8D2E60;
	border-bottom-color: #8D2E60;
	border-left-color: #8D2E60;
}
ul.nav a, ul.nav a:visited { /* 对这些选择器进行分组可确保链接即使在访问之后也能保持其按钮外观 */
	padding: 5px 5px 5px 15px;
	display: block; /* 这将为链接赋予块属性，使其填满包含它的整个 LI。这样，整个区域都可以响应鼠标单击操作。 */
	width: 160px;  /*此宽度使整个按钮在 IE6 中可单击。如果您不需要支持 IE6，可以删除它。请用侧栏容器的宽度减去此链接的填充来计算正确的宽度。 */
	text-decoration: none;
	background-color: #AACCF2;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* 这将更改鼠标和键盘导航的背景和文本颜色 */
	color: #930;
	background-color: #39F;
	font-weight: normal;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: none;
	border-top-color: #936;
	border-right-color: #936;
	border-bottom-color: #936;
	border-left-color: #936;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	font-size: 18px;
	font-family: Verdana, Geneva, sans-serif;
}

li {
	list-style-type: disc;
	color: #707070;
	font-size: 16px;
	font-weight: normal;
	/*font-family: "Times New Roman", Times, serif;*/
	font-family: arial, sans-serif;
}

lia {
	list-style-type: square;
	color: #003;
}

/* ~~ 其它浮动/清除类 ~~ */
.fltrt {  /* 此类可用于在页面中使元素向右浮动。浮动元素必须位于其在页面上的相邻元素之前。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* 此类可用于在页面中使元素向左浮动。浮动元素必须位于其在页面上的相邻元素之前。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* 如果从 .container 中删除了 overflow:hidden，则可以将此类放置在 <br /> 或空 div 中，作为 #container 内最后一个浮动 div 之后的最终元素 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.subsection {
	border-bottom-style: none;
	border-top-color: #036;
	border-right-color: #036;
	border-bottom-color: #036;
	border-left-color: #036;
	height: 36px;
	vertical-align: bottom;
	border-bottom-width: 2px;
	width: 350px;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.subsection2 {
	border-bottom-style: none;
	border-top-color: #036;
	border-right-color: #036;
	border-bottom-color: #036;
	border-left-color: #036;
	height: 36px;
	vertical-align: bottom;
	border-bottom-width: 2px;
	width: 680px;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.container .sidebar1 div .nav li div a strong {
	color: #C30;
}
.title-table {
	top: 50px;
}
.container div div div table tr td div zhongwen {
	font-weight: bold;
}
.container div div div table tr td div zhongwen {
	font-weight: bold;
}
zhongwen {
	font-weight: bold;
}
.zhongwen1 {
	font-weight: bold;
	color: #B4C6F1;
}
.zhongwen2 {
	background-color: #167E77 ;
	height: 50px;
	font-size: 22px;
	width: 920px;
	font-family: Tahoma, Geneva, sans-serif;
}

.zhongwen3 {
	background-color: #084436;
	height: 200px;
	font-size: 22px;
	width: 920px;
	font-family: Tahoma, Geneva, sans-serif;
}
.container div div .zhongwen2 table tr td .zhongwen1 a2 {
	color: #636;
}
.footnote {
	width: 920px;
	margin: 0 auto; /* 侧边的自动值与宽度结合使用，可以将布局居中对齐 */
	overflow: hidden; /* 此声明可使 .container 了解其内部浮动列的结束位置以及包含列的位置 */
	background-color: #B1C0CB;
}
.footnote div table {
	font-size: 12%;
}
.footnote div table {
	font-size: 12px;
}
.footspace {
	height: 10px;
}
.highl {
	color: #771E5F;
	font-weight: bold;
	font-size: large;
}
highs {
	color: #636;
}
highs {
	font-size: small;
}
.highs {
	color: #369;
	font-size: small;
}
.highss {
	font-size: medium;
	font-family: "Times New Roman", Times, serif;
	color: #036;
}
.highr {
	color: #4778D1;
	font-weight: normal;
	font-size: medium;
	font-family: "Times New Roman", Times, serif;
}
.texts {
	font-size: medium;
}
.h2title {
}
.h3text {
	font-size: 16px;
	color: #404040;
	font-weight: normal;
	font-family: "Times New Roman", Times, serif;
}
.h4text {
	color: #000;
	background-color: #FFF;
	font-size: 16px;
	font-weight: normal;
	font-family: "Times New Roman", Times, serif;
}
.h2workshop {
	color: #3E73B5;
	font-size: large;
}
.table-s {
	font-size: smaller;
}
.ita{
	font-style: italic;
}
/*鼠标悬浮下拉水平菜单*/
.menu {font-family: Tahoma, Geneva, sans-serif; width:920px; height:50px; position:relative; font-size:28px; margin:0px 0px; background:#25835E; position:relative;}
.menu ul {padding:0; margin:0; list-style-type: none;}
.menu ul li {float:left; border-left:1px solid #eee; width:130px;font-size:22px;}
.menu ul li a, .menu ul li a:visited {display:block; float:left; width:125px; text-decoration:none; padding:0 0 0 5px; height:50px; line-height:50px; color:#fff;  url(../../graphics/drop.gif) bottom right no-repeat;}
.menu ul li ul {display: none;}
/* specific to non IE browsers */
.menu ul li:hover a {color:#000; background:#207352;}
.menu ul li:hover ul {display:block; position:absolute; width:271px; top:50px;  background:#207352; color:#000; left:0px; }
.menu ul li:hover ul.right_side li {float:right; border:0; border-left:1px solid #eee;}
.menu ul li:hover ul.left_side li {float:left; border:0; border-left:1px solid #eee;}
.menu ul li:hover ul li a.hide {background:#207352 url(../../graphics/drop2.gif) bottom right no-repeat; color:#fff;}
.menu ul li:hover ul li:hover a.hide {background:#207352; color:#fff;}
.menu ul li:hover ul li ul {display: none;}
.menu ul li:hover ul li a {margin: 1px 0px 0px 0px; display:block; background:#25835E; color:#fff;}/*professor&students*/
.menu ul li:hover ul li a:hover {background:#207352; color:#000;}/*professor&students*/
.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:0; top:30px; color:#000; background:#207352;}
.menu ul li:hover ul.right li {float:right;}
.menu ul li:hover ul li:hover a.hide {background:#207352; color:#000;}
.menu ul li:hover ul li:hover ul li a {background:#207352; color:#000;}
.menu ul li:hover ul li:hover ul li a:hover {background:#207352; color:#fff;}
