/**
* 描述：全局 CSS
* 作者：Gavin
* 电子邮箱: shengzhizhang@gmail.com
* 创建时间：2008-10-27
* 最近修改：11:00 2010-8-4
**/
/* 样式重置 */
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,
dl, dt, dd, ul, ol, li,pre,form, fieldset, lengend, button, input, textarea{
margin: 0;
padding: 0;
}
/* 设置默认字体 */
body,
button, input, select, textarea {
/*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
font: 12px/1 Arial, Tahoma, Helvetica, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
background:#f6f1e4;
}
h1 {
font-size: 18px; /* 18px / 12px = 1.5 */
}
h2 {
font-size: 16px;
}
h3 {
font-size: 14px;
}
h4, h5, h6 {
font-size: 100%;
}
address, cite, dfn, em, var {
font-style: normal;
}
code, kbd, pre, samp, tt {
font-family: "Courier New", Courier, monospace;
}
small {
font-size: 12px;
}
/* 重置列表元素 */

/* 重置文本格式元素 */
a {
text-decoration: none;
}
/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
abbr[title], acronym[title] {
border-bottom: 1px dotted;
cursor: help;
}
q:before, q:after {
content: '';
}
/* 重置表单元素 */
legend {
color: #000;
}
fieldset, img {
border: none;
}
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}
/* 重置表格元素 */
tablef {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #ddd;
border-width: 1px 0 0 1px;
}
table1 th, table1 td{
border: 1px solid #ddd;
border-width: 0 1px 1px 0;
padding: 2px 6px;
background-color: #fff;
}
table1 th{
background-color: #f8f8f8;
}
/* 重置 hr */
hr {
border: none;
height: 1px;
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
overflow-y: scroll;
}
/***** 以上内容是样式重置，请尽量不要修改 *****/

/***** 个性设置 *****/
img,input,select{vertical-align:middle;}
.clear{clear:both;}
/***** 锚 *****/
a { text-decoration:none; color:#9b7733;}
a:hover{ text-decoration:none; color:#595757;}
/***** 浮动清除1 *****/
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}