﻿@charset "utf-8";
/* CSS Document */
/*	
	版本信息:
		创建人:王欣
		创建日期:2000-1-1
		最后修改人:王欣
		最后修改日期:2010-4-12
		
	结构模块:
		1.reset		html标签的默认样式
		2.routine	常用预置样式
		3.layout	页面结构样式
		4.detail	网页详细样式
	
	模块说明：
		1.reset模块关系全局，修改需非常慎重！
		2.routine模块为常用预置样式，不可修改，但可按需要扩充完善
		2.layout模块用于网页大区块布局，默认的样式结构仅供参考，可按实际需求调整扩充
		3.detail模块用于配置网页详细样式
		
	参考借鉴：
		
		
	命名约定：
		1.不使用大写形式的类名和id名
		2.尽可能使用描述性的英文单词的组合作为类名和id名
		3.类名或id名的多个英文单词之间使用"_"下划线分隔
		4.不要求多个英文单词之间一定要使用间隔符
		
	常用hack手段:
		注意：其实良好的结构比任何hack都好，当然了万不得已的时候该用还得用-_-b
			width:1px;*width:1px;_width:1px;	ff,ie7,ie6
			
	让IE8兼容IE7:
	<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
	
	透明层:
	IE支持:                         FF支持:
	filter:alpha(opacity=0~100);    -moz-opacity:0~1; opacity:0~1;
	
	
	新页基本设置:
		html	backgroung	页面背景
		html	color		文字颜色
*/

/*reset start*/
	*{ font-family:"宋体";}
	html{background:#fff;color:#000;font-family:"宋体";font-size:12px; margin:0 auto;}
	a{text-decoration:none;}
	a:hover{text-decoration:underline;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,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,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}
	del,ins{text-decoration:none;}
	li {list-style:none;}
	caption,th{text-align:left;}
	h1,h2,h3,h4,h5,h6{font-size: 100%;font-weight: normal;}
	abbr,acronym{border:0;font-variant:normal;}
	input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}
	input,button,textarea,select{*font-size:100%;}
/*reset end*/

/*routine start*/
	/*居中*/
	.m_a{margin:0 auto;}
	.m_lra{ margin-left:auto; margin-right:auto;}
	/*排列*/
	.t_l{text-align:left;}
	.t_c{text-align:center;}
	.t_r{text-align:right;}
	.v_t{ vertical-align:top;}
	.f_l{float:left;}
	.f_r{float:right;}
	/*益处*/
	.o_h {overflow:hidden;}
	.o_h_x{overflow-x:hidden;}
	.o_h_y{overflow-y:hidden;}
	/*背景图*/
	.bgr_n{background-repeat:no-repeat;}
	.bgr_x{background-repeat:repeat-x;}
	.bgr_y{background-repeat:repeat-y;}
	/*字体*/
	.f_b{ font-weight:bold;}
	/*定位*/
	.p_r{ position:relative;}
	.p_a{ position:absolute;}
	/*元素显示隐藏*/
	.d_b{ display:block; }
	.d_n{ display:none; }
	/*清除浮动*/
	.c_b{ clear:both; }
	/*常用文本样式*/
	.t_i_24{ text-indent:24px !important; }
	.l_h_18{line-height:18px !important;}
	.p_r_0{ padding-right:0px !important;}
	.m_r_0{ margin-right:0px !important;}
	.f_s_14{ font-size:14px !importan;}
/*routine end*/

/*layout start*/
	#title{}
	#main{}
	#footer{}
/*layout end*/

/*detail start*/

/*detail end*/
	


