/*
 * 功能：全局css
 * 作者：Gavin
 * 创建时间：2008-10-27
 * 最后一次修改时间：2009-1-14 
---------------------------------*/

/*全局默认样式
---------------------------------*/
body, p, ul, ol, dl, dt, dd, li, h1, h2, h3, h4, h5, h6, fieldset, legend, input, button {
margin:0;
padding:0;
}
body {
font-family:tahoma, Verdana, Arial;
font-size:12px;
color:#333;
text-align:center;
background-color:#D5F361;
}

/*图片链接
---------------------------------*/
a img {
border:none;
}

/*伪类
---------------------------------*/
a{
color:#696969;
text-decoration:none;
}
a:hover{
color:#0B7E3A;
text-decoration:underline;
}

/*h1～h6
---------------------------------*/
h1 {
}
h2 {
}
h3 {
}
h4 {
}

/*无序列表、有序列表、自定义列表
---------------------------------*/
ul, ol, dl {
list-style:none;
text-align:left;
}

/*段落
---------------------------------*/
p {
margin:1em;
line-height:1.6em;
text-align:left;
}

/*表单：左标签等宽右对齐
---------------------------------*/
fieldset {
border: none;
margin: 1.5em 0;
}
fieldset ol {
margin-top: 1em;
list-style: none;
}
fieldset li {
float: left;
clear: left;
width: 100%;
display:inline;
padding-bottom: 1em;
}
fieldset li label {
float: left;
width: 10em;
margin-right: 1em;
text-align: right;
}
fieldset input.txt, fieldset textarea{
font-size:12px;
padding:1px;
}
fieldset textarea {
width:30em;
height:8em;
}
div.submit {
border:none;
}

/*浮动清除
---------------------------------*/
.clear {
clear: both;
}
