/* 
	Create Time : 2014-07-22
    Update Time : 2015-03-26
    Author      : Trueland Development Department 
*/

	@charset "utf-8";


	/*CSS Include...*/
	
	@import "./public.css";  			/* 自定义样式 */


/* ∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞ 华丽的分割线 ∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞*/


/* 初始化样式 ↓ */

/*
	--------------------------
	间距清除 
	--------------------------
*/
	
	body,div,
	span,
	h1,h2,h3,h4,h5,h6,
	p,em,img,strong,b,
	small,u,i,center,dl,dt,dd,ol,ul,li,
	sub,sup,tt,var,del,dfn,ins,kbd,q,s,samp,
	strike,applet,object,iframe,fieldset,form,label,legend,table,
	caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
	embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,
	summary,time,blockquote,pre,a,abbr,acronym,address,big,cite,code,mark,audio,
	video,input,textarea,select 
	
									{ 	margin:0; padding:0;	}	
	
	ol,ul 							{ 	list-style:none; 		}


/*
	--------------------------
	A标签 配置 
	--------------------------
*/
	
	a  								{
										text-decoration:none;
										outline:none;
										color: #666;
									}
	
	a:hover 						{	color: #000;			}
	
	img  							{	border: 0; 				}
	
	*:focus 						{	outline: none;			}

/*
	--------------------------
	Body 配置 
	--------------------------
*/

	body 							{
										background: #fff;
										font-size: 12px;
										font-family: "微软雅黑";
										color: #666;
									}
	

/*
	--------------------------
	选中文本的背景颜色 
	--------------------------
*/
	
	body::selection 				{
										color: #ffffff;
										background-color: #666;
										text-shadow:none;
									}

/*
	--------------------------
	表单控件设置 
	--------------------------
*/
	
	table 							{	border-collapse: collapse; width: 100%;	 }
	
	input[type='reset'],
	input[type='button'],
	input[type='submit'],
	input[type='radio'] 			{	cursor: pointer;	}
	
	input[type='checkbox'],
	input[type='radio'] 	 		{ 
										position: relative;
										vertical-align: middle;
										margin-top: -2px;
										margin-bottom:1px;
										margin-left: 5px;
										margin-right: 5px;
									}
	
	
	input[type='email'],
	input[type='date'],
	input[type='password'],
	input[type='text'] 				{	text-indent: 5px; color: #666;	}
	
	textarea 						{	padding: 5px; color: #666; 		}


	
	
	/*浮动*/
	.f-l 							{	float: left;					}
	.f-r 							{	float: right;					}
	.cleatfix 						{	clear: both;					}
		

/*
	--------------------------
	prompt 升级提示(IE6\7\8\) 
	--------------------------
*/

	.prompt 						{
										position: fixed;
										left: 0;
										top: 0;
										width: 100%;
										padding: 10px 0;
										text-indent: 45px;
										font-size: 16px;
										font-family: "宋体";
										background: url(../images/t.png) no-repeat 10px center #fff3ce;
										color: #d48e00;
										border: 1px solid #ffe69b;
										z-index: 900;
									}
	
	.prompt-close      			 	{
					
										width: 10px;
										height: 10px;
										position: absolute;
										right: 10px;
										top: 50%;
										margin-top: -5px;
										background: url(../images/closed.png) no-repeat center center;
										cursor: pointer;
									}