/* ============== 前台用户界面的共享CSS文件 ============== */
/*														   */
/*               (ECSS开发组.北京.2000年6月）              */
/* ------------------------------------------------------- */
/* 重要注意事项: *!!XXXX!!* 是系统标志,请不要修改或删除    */
/* ------------------------------------------------------- */

body
{
	font-family: "宋体,Arial"; font-size: 10.2pt;
	background-color:'#FFFFFF';	/*!!页面背景颜色!!*/
	margin-left: 0;
	margin-top: 0;
}

font.title		/* 标题 */
{
    color: "#E80000";
 	font-family: "宋体,Arial"; 
	font-size: 14pt; 
	font-weight: bold 
}

font.comment	/* 注释 */
{
    color: gray;
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
}

table			/* 表格:通用 */
{
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
}

table.list		/* 表格:资料列表 */
{
	background-color:"#FFFFFF";
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
}

table.content	/* 表格:资料详细内容 */
{
	background-color:'#72b0dd';	/*!!表格内容背景颜色!!*/
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
}

tr.header		/* 表格的横向标题行 */
{
	background-color:'#72b0dd';	/*!!表格标题背景颜色!!*/
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
}	

td.header		/* 表格的纵向标题列 */
{
	background-color:'#72b0dd';	/*!!表格标题背景颜色!!*/
 	font-family: "宋体,Arial"; 
	font-size: 10.2pt; 
	text-align: center 
}	

/* ---------------- 表格的标准语法使用举例：第一行和第一列都为标题的表格举例 ------------------ 
<table width=500 border=1 cellpadding=2 cellspacing=0 bordercolorlight="#A0A0A0" bordercolordark="#FFFFFF">
	<tr class=header>
		<td class=header> ...... </td>
		<td> ...... </td>
		<td> ...... </td>
	</tr>
	<tr>
		<td class=header> ...... </td>
		<td> ...... &nbsp;</td>
		<td> ...... </td>
	</tr>
	<tr>
		<td class=header> ...... </td>
		<td> ...... &nbsp;</td>
		<td> ...... </td>
	</tr>
  ---------------------------------------------------------------------------------------- */

a:hover			/* 超级链接的风格 */
{
    COLOR: red;
    text-decoration: underline
}

a:link
{
    COLOR: blue;
    text-decoration: none
}

a:visited
{
    COLOR: purple;
    text-decoration: none
}

