/* CSS Document */
/*
Copyright (c) 2012, 800hr. All rights reserved.
version: 2.0.0
*/

/* RESET */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}
ul,ol,li{list-style:none;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
sup {vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}

/*base*/
body{color:#333; font-size:12px; line-height:20px; font-family:Arial,Verdana,"宋体";}
body{background:#fff;}
h1, h2, h3, h4, h5, h6 {font-weight:bold; font-size:12px;line-height:24px;}
.clear{visibility: hidden; clear:both;}

/*a链接*/
a:visited,a:active,a:link,a:hover{text-decoration:none; }
a:link,a:visited{color:#333;}a:hover{color:#f60;}a:active{color:#333;}


/*左右常用项*/
.float_left{float:left;}
.float_right{float:right;}
.left,.text_left{ text-align:left;}
.right,.text_right{ text-align:right;}
.center,.text_center{ text-align:center;}

/*色彩常用项 定义红绿蓝橙四种样式，名称为text_red text_green text_blue text_orange，也支持a标签 建议紧急情况使用*/
.text_red{color:#f00}
.text_green{color:#6c0}
.text_blue{color:#06c}
.text_orange{color:#f60}

a.text_red,a.text_red:link,a.text_red:visited{color:#f00}a.text_red:hover{text-decoration:underline;}
a.text_green,a.text_green:link,a.text_green:visited{color:#6c0}a.text_green:hover{text-decoration:underline;}
a.text_blue,a.text_blue:link,a.text_blue:visited{color:#06c}a.text_blue:hover{text-decoration:underline;}
a.text_orange,a.text_orange:link,a.text_orange:visited{color:#f60}a.text_orange:hover{text-decoration:underline;}


/*960宽页面分栏布局*/
.doc960{width:950px; padding-left:5px; padding-right:5px; margin-left:auto;margin-right:auto;}


/*多浏览器区别写法1*/
/*
.temp{...}ff
*html .temp{...}ie6
*+html .temp{...}ie7
*/

/*多浏览器区别写法2*/

/*.temp{
	color:#000; <ff ie678>
	color:#000; <ie678>
	color:#000; <ie8>
	*color:#000; <ie7>
	_color:#000; <ie6>
}
body:nth-of-type(1) .temp{color:#000;} chrome safari
*/