﻿body
{
    margin: 0px;
    overflow: hidden;
    font-size: 12px;
    font-family: "微软雅黑";
    background: #FAFAFA;
}

/* 表单样式 宽度高度需自己指定 */
.tableFrom {
	border-collapse: collapse;
	font-weight: normal;
}
.tableFrom tr {
	height:32px;
}
.trbg{
	/*隔行背景 手工隔行指定
      或使用jquery设置$(".tableFrom tr:odd").addClass("trbg");
    */
	background-color: #F7F6F3;
}
.trhover
{
    background-color:#D0E5F5;
}
.tableFrom th {
	text-align:right;
	font-weight: normal;
}
.tableFrom td {
}
.tableFrom input[type=text] {
	border: 1px solid #ACACAC;
}
.tableFrom select {
	border: 1px solid #ACACAC;
}
.tableFrom textarea {
	border: 1px solid #ACACAC;
    height: 202px;
    width: 219px;
    margin-bottom: 0px;
}
.tableFrom input[type=password] {
	border: 1px solid #ACACAC;
}