/* CSS Document */
/*重置(reset)元素-----------------start*/
body {
	color:#333333;
	font-size: 12px;
	font-family:Arial, "宋体";
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /*structural elements 结构元素 */ dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ pre, /* text formatting elements 文本格式元素 */ form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ th, td, /* table elements 表格元素 */ img/* img elements 图片元素 */ {
	border:medium none;
	margin: 0;
	padding: 0;
}
button, input, select, textarea {
	outline:none;/*-------屏弊WEBKIT高亮显示框----------*/
}
textarea{
	resize:none;
	}
/*-------------------去掉A标签的虚线框----------------------*/
a{ 
blr:expression(this.onFocus=this.blur()); /* IE Opera */ 
outline:none; /* FF Opera */ 
} 
a:focus{ -moz-outline-style: none; /* FF */ }

a:link {
	color:#333333;
	text-decoration:none;
}
a:visited {
	color:#333333;
	text-decoration:none;
}
a:hover {
	color:#047cd7;
	text-decoration:none;
}
a:active {
	color:#333333;
	text-decoration:none;
}
ul, ol {
	list-style: none;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
/*reset元素------------------end*/
/*global全局通用样式------------start*/
.upf {                        /*字母全部大写*/
	text-transform:uppercase;
}
.lowf {                      /*字母全部小写*/
	text-transform:lowercase;
}
.capf {                      /*首字母大写*/
	text-transform:capitalize;
}
.fl {
	float:left;
}
.fr {
	float:right;
}
.cl {
	clear:both;
}
.height_auto {
	overflow:hidden;
	zoom:1;
}
.overflowtxt{           /*隐藏超出宽度的文字，IE下可加"..." 要把相应的标签设为区块元素*/
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	}
.graystyle { /*素装效果*/
	filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}
/*global全局通用样式------------end*/