/*
	文件名：	admin.css
	说明：		网站默认样式表
	作者：		Choy Lv
	版本：		V1.0
	日期：		2006.03.23
*/

/*************************自定义****************************/
.table_main
{
	border:1px solid #999999;
}

.column_title {
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
	background-color: #f4f4f4;
	padding: 5px;
	border: 1px solid #cccccc;
}

.input_solid{
	border:1px solid #999999;
}

.input_hui{
	border:1px solid #999999;
	background-color:#efefec;
	color:#333333;
}
/*************************伪类******************************/
#margin_2px
{
	height:2px;line-height:1px;
}

/*************************全局*******************************/
body
{
	margin-top:5;
	margin-left:0;
	margin-right:0;
	margin-bottom:0;
	font-size:12px;
	font-family:Tahoma;
	color:#666666;
	background:#ffffff;
}

td
{
	font-size:12px;
	color:#666666;
	line-height:140%;
}

a
{
	color:#666666;
	text-decoration:none;
}

a:hover
{
	color:#ff6600;
	text-decoration:underline;
}

form
{
	margin:0px;
}

optgroup
{
	font-style: normal;
	font-weight: normal;
	color:blue;
}

/*
	删除链接
*/
.del
{
	isdel:expression(
		onclick=function()
		{
			if(typeof(this.warning)!="undefined")
			{
				warn=this.warning;
			}
			else
			{
				warn="您真的要删除吗？";
			}
			isdel	= confirm(warn);
			return isdel;
		}
	)
}

