@CHARSET "UTF-8";

/*公共样式：*/
* {
	margin:0;
	padding:0;
	border:0;
	list-style: none;
	font-size:14px;
	font-style: normal;
}
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体。解决ie7的下边滚动条效果 */
html {
 color: #000;
 background: #fff;
 -webkit-text-size-adjust: 100%;
 -ms-text-size-adjust: 100%;
 overflow-x:hidden; 
 /* *overflow-y:hidden; */
}

body{
 margin:0px; 
 padding:0px; 
 font-family:"微软雅黑";
}
input{
 color: #000000;
 font-family: 微软雅黑,Arial,Helvetica,sans-serif;
 outline:none;
 vertical-align: middle;
}
input[type='text']{
 padding:0px 10px;
}
input[type='radio'],input[type='checkbox']{
 blur:expression(this.onFocus=this.blur());  /*去除ie选中的虚边框*/
}
input[type='button'],input[type='submit']{
 background-color:#fff;
 outline:none;
 cursor:pointer;
 blr:expression(this.onFocus=this.blur());
}
textarea{
border:1px solid #dfdfdf;
line-height:18px;
padding:0px 4px;
vertical-align: top; 
resize: none;
overflow: auto; 
}
table,tr,td,th {
border:0;
border-collapse: separate; 
border-spacing: 0; 
vertical-align: middle;
}
/* 制作表格时需要
table{
border-bottom:1px solid #c1c0c5;
border-right:1px solid #c1c0c5; 
 table页面标签中添加 border="0" cellspacing="0" cellpadding="0" 
}
td{
border-left:1px solid #c1c0c5;
border-top:1px solid #c1c0c5;  
}*/

img{
line-height: 1em;
vertical-align: middle;
-ms-interpolation-mode: bicubic;
border:0px;
}

/*链接根据页面要求全局自定义*/
a{
color:#000;
outline:none;
cursor:pointer;
blr:expression(this.onFocus=this.blur());
text-decoration:none;
}
/*链接*/
a:link {
text-decoration: none; /*下划线*/
}
/*被访问过链接*/
a:visited {
text-decoration: none; /*下划线*/
}
/*鼠标经过*/
a:hover {
text-decoration: none; /*下划线*/
}
/*链接被按下*/
a:active {
text-decoration: none; /*下划线*/
}
a:hover
 ,a:focus{
color:#E28720;
outline: none;
-moz-outline-sytle:none;
-ms-interpolation-mode: bicubic;
border:0px; 
}

/* 统一上标和下标 */
sub,sup{font-size: 75%;line-height: 0; vertical-align: baseline;}
small {font-size: 75%;}

/* 标题都自定义, 适应多个系统应用 */
h1, h2, h3, h4, h5, h6 {font-size: 100%;font-weight: 500;}
q:before, q:after {content: '';}
.bd, .hd {width: 100%;clear: both;}
select {vertical-align: middle;}

/*左右浮动*/
.FLStyle{float:left;}
.FRStyle{float:right;}

/* 清理浮动 */
.clear {
 clear: both;
 height: 0;
 overflow: hidden;
 display: block;
 line-height: 0;
}
.clearfix:after {
 clear: both;
 font-size: 0;
 height: 0;
 display: block;
 visibility: hidden;
 content: " ";
 line-height: 0;
}
.clearfix {zoom: 1;}

/* 外间距值设置 */
.marginR10Style{margin-right:10px;}
.marginL10Style{margin-left:10px;}
.marginT10Style{margin-top:10px;}
.marginB10Style{margin-bottom:10px;}