/*--- 功能：全局css ---*/
/*--- 作者：Gavin ---*/
/*--- 时间：2008-12-12 ---*/

/*--- 全局默认样式 ---*/
*{
margin:0;
padding:0;
font-family:tahoma, Verdana, Arial, "宋体";
font-size:12px;
list-style:none;
}
html{}
body{
text-align:center;
background:#fff url(bg.gif) repeat-x;
}

/*--- 图片链接 ---*/
a img{
border:none;
}

/*--- 伪类 ---*/
a{
color:#9D0028;
text-decoration:none;
}
a:hover{
text-decoration:underline;
}

/*--- h1～h6 ---*/
h1{}
h2{}
h3{
font-size:12px;
font-family:Arial, "宋体";
text-align:left;
}
h4{}

/*--- 列表 ---*/
ul{}
ol{}
dl{
text-align:left;
line-height:20px;
text-indent:2em;
}
dt{
font-weight:bold;
}
dd{}

/*--- 段落 ---*/
p{
color:#CB042A;
line-height:20px;
text-align:left;
}

/*--- 表单 ---*/
form{
margin:0 auto;
}
fieldset{
border:1px solid #f8f8f8;
border-bottom:0;
margin-bottom:16px;
}
fieldset legend{
margin:0 10px;
padding:0 10px;
font-weight:bold;
}
form p{
text-align:left;
padding:3px 0;
}
form p span{
color:red;
}
label{
background:red;
font-weight:bold;
width:24%;
padding-right:1%;
display:block;
float:left;
text-align:right;
}
input.txt, input.pwd{
height:16px;
line-height:16px;
width:80%;
padding-left:2px;
}
select{}
textarea{
width:60%;
height:120px;
}
button{
cursor:pointer;
border-right:#A29C89 solid 1px;
border-bottom:#A29C89 solid 1px;
border-top:#F3EEDD solid 1px;
border-left:#F3EEDD solid 1px;
background:#ECE4C8 url(btnBg.jpg);
height:22px;
padding:0 8px;
}

/*--- 细线表格 ---*/
table.thinLineTable{
color:#9D0028;
text-align:left;
width:100%;
border:1px solid #9D0028;
border-width:1px 0 0 1px;
border-collapse:collapse;
}
table.thinLineTable td,
table.thinLineTable th {
border:1px solid #9D0028;
border-width:0 1px 1px 0;
padding:4px;
line-height:20px;
}
table.thinLineTable th {
text-align:center;
}

/*--- 浮动清除 ---*/
.clear{
clear:both;
}