/*一、不需要单独指定class属性的的css样式*/ /* 未访问的链接 */
a:link {
	font-size: 12px;
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}

/* 已访问的链接 */
a:visited {
	text-decoration: none;
	color: #333333;
	font-size: 12px;
}

/* 鼠标在链接上 */
a:hover {
	text-decoration: none;
	color: #0099ff;
	font-size: 12px;
	cursor: pointer;
}

/* 点击激活链接 */
a:active {
	color: #0000ff;
}

/* Body的CSS定义:对应Html标签中的“BODY”，可定义内容为网页字体颜色、背景、浏览器边框、滚动条等 */
body {
	overflow: auto;
	font-size: 12px;
	color: #000000;
	font-family: "Arial", "宋体";
}

/* ==默认表格单元格样式 == */
td {
	font-size: 12px;
	line-height: 1.5;
	font-family: "Arial", "宋体";
}

th {
	font-weight: bold;
	font-size: 12px;
	line-height: 1.5;
	font-family: "Arial", "宋体";
}

/* ==默认多行文本框样式 == */
textarea {
	font-weight: normal;
	font-size: 12px;
	vertical-align: middle;
}

/* ==默认单行文本输入框、单选按钮、复选按钮样式 == */
input {
	font-weight: normal;
	font-size: 12px;
	color: #000000;
	vertical-align: middle;
}

/* == 默认按钮样式 == */
input.button {
	border-right: #4a95c9 1px solid;
	border-top: #4a95c9 1px solid;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
	background: url(imagesbutton-bg.gif) #cfe8f5 repeat-x left center;
	padding-bottom: 3px;
	border-left: #4a95c9 1px solid;
	cursor: pointer;
	padding-top: 3px;
	border-bottom: #4a95c9 1px solid;
	text-align: center;
	margin: 0;
	height: 21px;
}

.button {
	border-right: #4a95c9 1px solid;
	border-top: #4a95c9 1px solid;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
	background: url(imagesbutton-bg.gif) #cfe8f5 repeat-x left center;
	padding-bottom: 3px;
	border-left: #4a95c9 1px solid;
	cursor: pointer;
	padding-top: 3px;
	border-bottom: #4a95c9 1px solid;
	text-align: center;
	margin: 0;
	height: 21px;
}

.button[disabled] {
	border-right: #4a95c9 1px solid;
	border-top: #4a95c9 1px solid;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
	color: gray;
	padding-bottom: 3px;
	border-left: #4a95c9 1px solid;
	cursor: auto;
	padding-top: 3px;
	border-bottom: #4a95c9 1px solid;
	text-align: center;
	margin: 0;
	height: 21px;
}

input.file {
	border-right: #4a95c9 1px solid;
	border-top: #4a95c9 1px solid;
	padding-left: 1px;
	font-size: 12px;
	padding-bottom: 2px;
	margin: 2px;
	border-left: #4a95c9 1px solid;
	cursor: pointer;
	padding-top: 2px;
	border-bottom: #4a95c9 1px solid;
}

/* == 默认下拉框样式 == */
select {
	padding-right: 1px;
	margin-top: 1px;
	padding-left: 1px;
	font-size: 12px;
	margin-bottom: 1px;
	cursor: pointer;
	vertical-align: middle;
}

fieldset {
	padding: 6px;
	border: 1px solid #d6d6dd;
}

legend {
	font-size: 12px;
	color: #3b5999;
	margin-top: 3px;
	margin-bottom: 8px;
}

img {
	vertical-align: middle;
}

form {
	margin-bottom: 0px;
}