@charset "utf-8";
/*************************************
*
* 文件名称：common.css
* 创建日期：2009-06-04
* 制 造 者：叶军
* 概 要：(电子邮件营销系统-初始样式)
*
*************************************/

/*=============reset css=============*/
html,body,div,p,ul,ol,dl,dt,dd,form,h1,h2,h3,h4,h5,h6,input,fieldset,legend,optgroup{
	margin:0;
	padding:0;
}
h1,h2,h3,h4,h5,h6,em,strong, input,textarea{
	font-family:arail,宋体;
	font-size:12px;
	font-style:normal;
	font-weight:normal;
}
a img{
	border:0;
}
a{
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}

/*===============color==============*/
/*表单中必填项文字*/
.required{
	color:#;
}
/*注释文字*/
.note{
	color:#;
}

/*============layout style=========*/
/*------表格-----*/
table{
	border-collapse:collapse;
}
table th,table td{
	text-align:left;
}
/*列表-操作列*/
table .operate{
	text-align:center;
}
/*列表-数字列*/
table .num{
	text-align:conter;
}
/*左右表格中，文字右对齐列*/
table .col01{
	text-align:right;
}

/*---除表格外的文字对齐---*/
.txtLeft{
	text-align:left;
}
.txtCenter{
	text-align:center;	
}
.txtRight{
	text-align:right;
}

/*----清楚浮动1----*/
.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;
	display:block;
} 
/* End hide from IE-mac */

/*----清楚浮动2----*/
.overflow{
	overflow:auto;
	zoom:1;
}