/*-------------------------------------------------------
* 功能：全局css
* 作者：Gavin
* 创建时间：2008-10-27
* 最后一次修改时间：2008-12-25 
-------------------------------------------------------*/

/*--- 全局默认样式 ---*/
html{}
body{
font-family:tahoma, Verdana, Arial;
font-size:12px;
color:#fff;
background:#C5470E url(bg.jpg) repeat-x left top;
}
body, p, span, ul, ol, dl, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, select, button{
margin:0;
padding:0;
}

/*--- 图片链接 ---*/
a img{
border:none;
}

/*--- 伪类 ---*/
a:link, a:visited{
color:#fff;
text-decoration:none;
}
a:hover, a:active{
color:#FFCC33;
}

/*--- h1～h6 ---*/
h1{}
h2{}
h3{}
h4{}

/*--- 列表 ---*/
ul, ol, dl{
list-style:none;
text-align:left;
}
ul{}
ol{}
dl{}
dt{}
dd{}

/*--- 段落 ---*/
p{
margin:1em;
line-height:1.6em;
}

/*--- 表单：左标签等宽右对齐 ---*/
fieldset {
margin: 1.5em 0 0 0;
border:none;
}
legend {
margin-left: 1em;
padding:0 5px;
color: #000000;
font-weight: bold;
}
fieldset ol {
list-style: none;
}
fieldset li{ 
float: left; 
clear: left; 
width: 100%;
padding-bottom: 1em;
}
fieldset li label{ 
float: left; 
width: 10em; 
margin-right: 1em; 
text-align: right;
}
div.submit {
margin-left:11em;
}
fieldset input.txt {
background: #FFFFCC;
color:#333;
border:1px solid #B63E12;
padding:2px;
font-family:tahoma, verdana;
font-size:12px;
}
fieldset input.radio {
}
fieldset input.button {
}
fieldset select {
}
fieldset textarea {
width:300px;
height:100px;
background: #FFFFCC;
color:#333;
border:1px solid #B63E12;
padding:2px;
font-family:tahoma, verdana;
font-size:12px;
}


/*--- 浮动清除 ---*/
.clear{
clear:both;
}