﻿@charset "utf-8";
/*设置个项默认值*/
body
{margin:0px; padding:0px; background-color:#fff;
 font-family:'Microsoft YaHei'; font-size:12px; color:#666;}

table
{margin:0px;}
th,td
{line-height:180%; }
img
{border:0px;}
dl,dt,dd,p,ul,form
{margin:0px; padding:0px;}

/*通用链接默认值*/
a:link{color:#0033FF;text-decoration: none;}
a:visited{color:#0033FF;text-decoration: none;}
a:hover,a:active{color:#0033FF;text-decoration:underline;}

/*
//CSS Hack
property:value; 所有浏览器
_property:value; IE6
+property:value; IE7
*property:value; IE6/IE7
property:value \0; IE8/IE9
property:value \9; IE6/IE7/IE8
property:value \9\0; IE9

//最小高度HACK
min-height:500px;
height:auto !important;
height:500px;
overflow:visible;

//溢出文字用省略号点代替(慎用)
white-space:nowrap; text-overflow:ellipsis; overflow:hidden;

//文字两端对齐
text-align:Justify;(火狐)
text-justify:inter-ideograph;(IE)
*/