@charset "utf-8";
/* ---------------------------------------------------清除浏览器的默认样式和全站统一样式---- */
/**
 * Reset
 * 清除浏览器的默认样式
 */
html, body, div, span, dl, dt, dd, ol, ul, li,
h1, h2, h3, h4, h5, h6, 
form, label, input, button, textarea,
object, iframe, fieldset, legend, img,
table, caption, tbody, tfoot, thead, tr, th, td
a, abbr, acronym, address,
big, blockquote, cite, code,
del, dfn, em, ins, kbd, p, pre, q,
strong, small, samp, sub, sup, tt, var {margin: 0;padding: 0;font-size: 100%;vertical-align: baseline;}
body {font:normal 14px/20px 宋体;/* 缩放因子 */}
ol, ul {list-style: none;}
h1, h2, h3, h4, h5, h6 {font-weight: normal;}
fieldset, img {border: 0;}
input, button, textarea, select, optgroup, option {font-family: inherit;font-size: inherit;}
address, caption, cite, code, dfn, em, strong, th, var, optgroup {font-style: normal;font-weight: normal;}
abbr, acronym {border: 0;font-variant: normal;}
/* 表格仍然需要设置'cellspacing="0"' */
table {border-collapse: collapse;border-spacing: 0;}
caption, th {text-align: left;}
ins {text-decoration: none;}
:focus {outline: 0;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
#staff input{ border:1px solid #CCCCCC; background:#EEEEEE; padding:2px; width:90%;}
/**
 * Layout
 * 布局相关的样式
 */
body {
	margin: 0 auto;
	width: 1000px;
	text-align: center;		/* IE 5.5 */
	font-size: 14px;
	background: #FFF;
}
body * {
	text-align: left;		/* IE 5.5 */
}
/**
 * Style
 * 设定全站统一样式
 */
html {
	color: #000;
	background: #F0F0F0;
}

a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: blue;
	text-decoration: underline;
}
a:active {
	color: #000;
}

pre, code, kbd, samp, tt {
	font-family: 'Courier New', Courier, monospace;
}

label {
	cursor: pointer;
	cursor: hand;/* IE */
}
/**
 * Other
 * 一些常用的样式
 */
.disPlayN{ display:none}
.L{float:left;}
.R{float:right;}
.clearFix:after {
	content: ".";
	display: block;
	font-size: 0;
	line-height: 0;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearFix {
	zoom:1; /* IE hasLayout */
}