@charset "utf-8";
/****** CSS Document ******/

/****** =Reset
----------------------------------- ******/
html,body,
div,p,hr,pre,
h1,h2,h3,h4,h5,h6,
table,tr,td,th,tfoot,tbody,thead,
form,fieldset,input,textarea,select,label,
ul,ol,dl,li,dt,dd,blockquote { margin:0; padding:0; border:0; outline:none; list-style:none;}

li{list-style-type:none;}

/******
 body { line-height: 1; font-size: 88%;} 
 一般浏览器默认文字大小是1em，大约是16px，那body文字大小88%后，大约14px，所以h系列的大小也在14px左右。如果想给文字设置为12px，那么p{font-size:90%} 
******/

h1 { font-size:200%;}
h2 { font-size:180%;}
h3 { font-size:160%;}
h4 { font-size:140%;}
h5 { font-size:120%;}
h6 { font-size:100%;}

a { text-decoration:none; outline:none;}
a:hover { text-decoration:underline;}

table { width:100%;	border-collapse:collapse; border-spacing:0;	margin:0 auto; clear:both;}
fieldset,img { border:0;}
em { font-style:normal;}
hr { height:0; clear:both;}
.none { display:none;}
label{ vertical-align:middle}
.inputcheckbox{ vertical-align:middle;}

.clear { clear:both;} 
.clear:after { content:"."; display:block; height:0; clear:both; visibility:hidden;}
* html .clear             { zoom: 1; } /* IE6 */ 
*:first-child+html .clear { zoom: 1; } /* IE7 */ 

.ovA { overflow:auto;}
.ovH { overflow:hidden;}
.ovS { overflow:scroll;}