/*-------------------------------------------------------
* 功能：全局css
* 作者：Gavin
* 创建时间：2008-10-27
* 最后一次修改时间：2008-12-25 
-------------------------------------------------------*/

/*--- 全局默认样式 ---*/
html{}
body{
font-family:tahoma, Verdana, Arial;
font-size:12px;
color:#333;
text-align:center;
background:#fff;
}
body, p, ul , ol, dl, li, dt, dd, h1, h2, h3, h4, h5, fieldset, legend, button, iframe{
margin:0;
padding:0;
}

/*--- 图片链接 ---*/
a img{
border:none;
}

/*--- 伪类 ---*/
a{
text-decoration:none;
color:#333;
}
a:hover{
color:#006600;
}

/*--- 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.9em;
}

/*--- 表单：左标签等宽右对齐 ---*/
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 {
padding-left:11em;
border:none;
}
fieldset input.text {
}
fieldset input.radio {
}
fieldset input.button {
}
fieldset select {
}
fieldset textarea {
width:300px;
height:100px;
}


/*--- 浮动清除 ---*/
.clear{
clear:both;
}