/* 网站链接总的css定义:可定义内容为链接字体颜色、样式等 */

a {
	text-decoration: none
}
a:link {
	color: #000000
}
a:visited {
	color: #000000
}
a:hover {
	color: #ff0000
}
a:active {
	color: #0000ff
}

/* body的css定义:对应css中“body”，可定义内容为网页字体颜色、背景、浏览器边框等 */
body
{
	margin-left: 0px;
	margin-top: -20px;
	margin-right: 0px;
	margin-bottom: 0px;
	display:inline;
	text-decoration: none;
/*	background:#400080;*/
	background:url(/image/body_background.gif);
	font-family:"宋体";
	font-size:9pt;
	font-weight:normal;
	line-height:25px;
}

/* 单元格的css定义:对应css中的“td”，这里为总的表格定义，为一般表格的的单元格风格设置，可定义内容为背景、字体颜色、样式等 */
td
{
	font-family:"宋体";
	font-size:9pt;
	font-weight:normal;
	line-height:25px;
}