/* --css定义开始-- */

a{text-decoration: none;} /* 链接无下划线,有为underline */ 
a:link {color: #414141;font-size:10px;font-family:"Arial";} /* 未访问的链接 */
a:visited {color: #414141;font-size:10px;font-family:"Arial";} /* 已访问的链接 */
a:hover{color: #ae0927;font-size:10px;font-family:"Arial";} /* 鼠标在链接上 */ 
a:active {color: #0000ff;font-size:10px;font-family:"Arial";} /* 点击激活链接 */

/* body的css定义:对应css中“body”，可定义内容为网页字体颜色、背景、浏览器边框等 */
body
{
margin:0px;
color: #414141; 
font-size:12px;
background-position:center;
text-decoration: none;
scrollbar-face-color: #f6f6f6;
scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #cccccc; scrollbar-3dlight-color: #cccccc; scrollbar-arrow-color: #330000; scrollbar-track-color: #f6f6f6; scrollbar-darkshadow-color: #ffffff;
}

/* 单元格的css定义:对应css中的“td”，这里为总的表格定义，为一般表格的的单元格风格设置，可定义内容为背景、字体颜色、样式等 */
td
{
	font-family:"verdana";
	font-size:12px;
	line-height: 150%;
	font-weight: normal;
}
/* 文本框的css定义:对应css中的“input”，这里为文本框的风格设置，可定义内容为背景、字体、颜色、边框等 */
/*input
{
background-color: #ffffff; 
border-bottom: #666666 1px solid;
border-left: #666666 1px solid;
border-right: #666666 1px solid;
border-top: #666666 1px solid;
color: #666666;
height: 20px;
border-color: #666666 #666666 #666666 #666666; font-size: 9pt
}
.STYLE1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
.STYLE2 {color: #FE6E20}
.STYLE3 {color: #2F7FBE}
body,td,th {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}
.STYLE4 {color: #333333}
.STYLE5 {color: #6690A3}
/* 按钮的css定义:对应css中的“button”，这里为按钮的风格设置，可定义内容为背景、字体、颜色、边框等 */
button
{
font-size: 9pt;height: 20px;
}
/* 下拉列表框的css定义:对应css中的“select”，这里为下拉列表框的风格设置，可定义内容为背景、字体、颜色、边框等 */
select
{
font-size: 9pt;height: 20px;
}

/* --css定义结束-- */
