/*
系统通用的样式表定义
*/
@CHARSET "UTF-8";

/* ------------------------ 字符部分 ------------------------------------ */
/*段落样式*/
p
{
	color: purple;
	font-size: 12px;
}

/* 错误提示字体 */
.error
{
	color: red;
	font-size: 12px;
}

/* 标题样式 */
.title1
{
	color: red;
	font-size: 24px;
	font-weight: bold;
	font-family: "楷体_GB2312";
}
.title2
{
	color: red;
	font-size: 20px;
	font-weight: bold;
	font-family: "楷体_GB2312";
}
.title3
{
	color: red;
	font-size: 16px;
	font-weight: bold;
	font-family: "楷体_GB2312";
}

/* 常规文字 */
.normal
{
	color: black;
	font-family: "宋体";
	font-size: 12px;
}
/* ------------------------ 字符部分 ------------------------------------ */

/* 链接样式：菜单 */
a.home_menu:link
{
	color: #555555;
	font-family: "宋体";
	font-size: 16px;
	text-decoration:none;
}
a.home_menu:visited
{ 
	color: #555555;
	font-family: "宋体";
	font-size: 16px;
	text-decoration:none;
}
a.home_menu:hover 
{ 
	color: #555555;
	font-family: "宋体";
	font-size: 16px;
	text-decoration:underline;
}
a.home_menu:active 
{ 
	color: #555555;
	background: transparent;
	font-family: "宋体";
	font-size: 16px;
	text-decoration:none;
}

/* 链接样式：黄色无下划线 */
a.yellow_no_line:link
{
	color: yellow;
	font-family: "宋体";
	font-size: 12px;
}
a.yellow_no_line:visited
{ 
	color: yellow;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}
a.yellow_no_line:hover 
{ 
	color: yellow;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:underline;
}
a.yellow_no_line:active 
{ 
	color: yellow;
	background: transparent;
	font-family: "宋体";
	font-size: 12px;
}

/* 链接样式：黑色无下划线 */
a.black_no_line:link
{
	color: black;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}
a.black_no_line:visited
{ 
	color: black;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}
a.black_no_line:hover 
{ 
	color: black;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:underline;
}
a.black_no_line:active 
{ 
	color: black;
	background: transparent;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}

/* 链接样式：黑色无下划线(浅色下划线) */
a.black_no_line2:link
{
	color: black;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}
a.black_no_line2:visited
{ 
	color: black;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}
a.black_no_line2:hover 
{ 
	color: #ddddff;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:underline;
}
a.black_no_line2:active 
{ 
	color: #ddddff;
	background: transparent;
	font-family: "宋体";
	font-size: 12px;
	text-decoration:none;
}

/* 普通文本框 */
.textbox_normal
{
	height: 18px;
	font-family: "宋体";
	font-size: 12px;
}

/* 输入项：标题 */
.item_title
{
	font-size:12px;
	font-weight:bold;
}

/* 输入项：描述 */
.item_desc
{
	margin-top:1px;
	color:#666;
	font-size:12px;
}

/* ID文本框 */
.id
{
	width:120px;
	height:18px;
	font-family: "宋体";
	font-size: 12px;
}

/* 密码文本框 */
.pwd
{
	width:120px;
	height:18px;
	font-size:12px;
}

/* td设成字体12px固定大小 */
td.tdfnt12px
{
	font-size:12px;
}

/* 常规按钮 */
.button_normal
{
	color: black;
	border-color: skyblue;
	border-style: solid;
	border-width: 1px;
	vertical-align: middle;
	font-family: "宋体";
	height: 18px;
	background: url(/rms/images/ui/ButtonBg01.gif);
}
/* ------------------------ 控件部分 ------------------------------------ */
