
/*	
	Css Reset File - Powered By SnailZcj
	Created By Yahoo! UI
	Modified By Xsnet.cn
	Update Date:12-17-2009
*/

/*------------------浏览器识别---------------------*/
/*
区别IE6与FF：
       background:orange;*background:blue;
区别IE6与IE7：
       background:green !important;background:blue;
区别IE7与FF：
       background:orange; *background:green;
*/
/*区别FF，IE7，IE6：*/
#test_iex_ff{
	position:absolute;
	bottom:0px;
	right:0px;
	width:5px;
	height:5px;
    background:orange;*background:green !important;*background:blue;
}

/*
注：IE都能识别*;标准浏览器(如FF)不能识别*；
IE6能识别*，但不能识别 !important,
IE7能识别*，也能识别!important;
FF不能识别*，但能识别!important;
 
            IE6  IE7 FF 
*            √   √  × 
!important   ×    √ √ 

--------------------------------------------------------------------------------
另外再补充一个，下划线”_”,
IE6支持下划线，IE7和firefox均不支持下划线。

于是大家还可以这样来区分IE6，IE7，firefox
: background:orange;*background:green;_background:blue;

注：不管是什么方法，书写的顺序都是firefox的写在前面，IE7的写在中间，IE6的写在最后面。


*/



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, var {
font-style:normal;
font-weight:normal;
}
li {
list-style:none;
}
h1,h2,h3,h4,h5,h6{ font-size:12px;}

/*添加空字符清除融合*/
q:before, q:after {
content:'';
}
abbr, acronym {
border:0;
font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
vertical-align:text-top;
}
sub {
vertical-align:text-bottom;
}
input,button,textarea,select {
font-family: Tahoma,Helvetica,Arial,sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 100%;
line-height: normal;
font-size-adjust: none;
font-stretch: normal;
-x-system-font: none;
}
input, textarea, select {
font-family:inherit;
font-size:inherit;
font-weight:inherit;
}
/*to enable resizing for IE*/
/*在ie下重定义*/
input, textarea, select {
*font-size:100%;
}
/*because legend doesn't inherit in IE */
/*IE下legend不继承 */
legend {
color:#000;
}

/** 清浮动 **/
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

.clearfix{
    display:inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix{
    height:1%;
}

.clearfix{
	clear:both;
}