/**
 * 文件说明：样式初始化
 */

/* START, 样式预处理 ------------------------------------------------------ */

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin:0;padding:0;border:none;/*vertical-align:baseline;*/}

/* 去掉列表前的标识, li 会继承 */
menu, ol, ul { list-style: none; }

/* 要注意表单元素并不继承父级 font 的问题 */
body, button, input, select, textarea, option, optgroup { font:12px/1.5 tahoma,arial/*,SimSun*/,Microsoft YaHei,sans-serif;}

/* 让标题都自定义, 适应多个系统应用 */
h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:500; }

/* 去除默认边框 */
fieldset , img { border:0 }

/* 去掉各Table  cell 的边距并让其边重合 */
table { border-collapse: collapse; border-spacing: 0; }

/* 统一上标和下标 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* 去掉 firefox 下此元素的边框 */
abbr,acronym{ border:0;font-variant:normal; }

/* 清除输入框边框 */
input{ border:0 none; }

code, kbd, pre, samp { font-family:'courier new',courier,monospace;}
abbr[title]{ border-bottom: 1px dotted; cursor: help; }

/* 一致的 del 样式 */
del { text-decoration:line-through; }
address,caption,cite,code,dfn,em,th,var { font-style:normal;font-weight:500; }

/* IE bug fixed: th 不继承 text-align*/
th{ text-align:inherit;}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article, aside, dialog, footer, header, section, footer, nav, figure, menu { display:block; }

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video { display: inline-block;*display: inline;*zoom: 1; }

/*清除chrome Safari浏览器中的外边框*/
input,button,select,textarea { outline:none }

/* ie8(q) bug 显示为块级表现 */
iframe{ display:block; }

a{
    color: #000000;
    text-decoration: none;
    outline:none;
    _blr:expression(this.onFocus=this.blur());
}

i,em{ font-style: normal;}
/* END, 样式预处理 ------------------------------------------------------ */


/* START, 通用class设定 ------------------------------------------------------ */

/* START, 浮动，清除浮动------- */
.fl { float:left; }
.fr { float:right; }

.clearLeft { clear:left; }
.clearRight { clear:right; }

.clearfix {display: block;*zoom:1}
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
* html .clearfix { height: 1%; }
/* END, 浮动，清除浮动 ------- */

.text_center {text-align: center;}

.hide {display: none;}
.ihide {display: none !important;}


/* START, 内外边距 ------- */
.mT5 {margin-top: 5px;}
.mT10 {margin-top: 10px;}
.mT15 {margin-top: 15px;}
.mT20 {margin-top: 20px;}
.mT25{margin-top: 25px;}
.mT30 {margin-top: 30px;}

.mB5 {margin-bottom: 5px;}
.mB10 {margin-bottom: 10px;}
.mB15 {margin-bottom: 15px;}
.mB20 {margin-bottom: 20px;}
.mB25{margin-bottom: 25px;}
.mB30 {margin-bottom: 30px;}

.mL5 {margin-left: 5px;}
.mL10 {margin-left: 10px;}
.mL15 {margin-left: 15px;}
.mL20 {margin-left: 20px;}

.mR5 {margin-right: 5px;}
.mR10 {margin-right: 10px;}
.mR15 {margin-right: 15px;}
.mR20 {margin-right: 20px;}

.p20{padding: 20px;}
.pL10{
    padding-left: 10px;
}
/* END, 内外边距 ------- */

.br5{
    border-radius: 5px;
}
/* END, 通用class设定 ------------------------------------------------------ */
.center {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
}


body{
    color: #555;
}