@charset "utf-8";
/*--------------------------------------------------------------
 *(C) 太原领悟科技开发有限公司 版权所有
 *(C) TAIYUAN LINGWU S&T DEVELOPMENT LTD.
 *--------------------------------------------------------------
 * Author		:	mady
 *--------------------------------------------------------------
 * Filename		:	/css/msgbox.css
 *--------------------------------------------------------------
 * CSS for MsgBox
 */
@media screen{
	/* 整体 */
	div.msgbox{
		width:340px;
		margin:10px auto;
		background-color:#9999CC;
	}
	/* 标题 */
	div.msgbox .caption{
		background-color:#9999CC;
		background-position:top right;
		background-repeat:no-repeat;
		background-image:url("images/ne_corner.gif");
	}
	div.msgbox .caption div{
		background-position:top left;
		background-repeat:no-repeat;
		background-image:url("images/nw_corner.gif");
		text-align:left;
	}
	div.msgbox .caption div h2{
		margin:0px!important;
		padding-top:2px;
		padding-left:1em;
		color:#ffffff;
		font-weight:bold;
		line-height:150%;
		vertical-align:middle;
	}
	/* 除标题外的元素的容器 */
	div.msgbox .content{
		background-color:#ffffff;
		border:1px solid #9999CC;	/* 颜色与标题的背景颜色相同 */
		padding:4px;
	}
	
	/* 消息 */
	div.msgbox .message{
		text-align:left;
		padding:4px 4px 4px 40px;
		background-position:left center;
		background-repeat:no-repeat;
		margin: 0px 1em;
	}
	div.msgbox .information{
		background-image:url("images/information.gif");
	}
	div.msgbox .exclamation{
		background-image:url("images/exclamation.gif");
	}
	div.msgbox .question{
		background-image:url("images/question.gif");
	}
	div.msgbox .critical{
		background-image:url("images/critical.gif");
	}

	/* 导航栏 */
	div.msgbox ul.navigator{
		text-align:center;
		border-top:1px solid #9999CC;
		margin:0px;
		padding:4px 0px 0px 0px;
		list-style:none;
	}
	div.msgbox ul.navigator li{
		margin:0px 0.5em;
		display:inline;
	}
}
@media print{
	div.msgbox{
		display:none;
	}
}
