﻿/* 模式窗口 */
.ModalMask
{
	opacity: 0.5;
	filter: alpha(opacity=50);
	background-color: #333333;
}

.Modal
{
	border-style: solid;
	border-width: 1px;
	border-color: #888888;
	border-right-width: 3px;
	border-right-color: #888888;
	border-bottom-width: 3px;
	border-bottom-color: #888888;
	background-color: #eeeeee;
	font-size: 75%;
}

.ModalTitle
{
	font-size: 16px;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 1px;
	border-color: #cccccc;
	background-color: #e2eecd;
	color: #698d73;
	font-weight: bold;
	overflow:hidden;
	height:27px;
	line-height:27px;
	padding-left:5px;
	cursor: move;
	overflow: hidden;
	white-space: nowrap;
}

.ModalClose
{
	width: 15px;
	height: 15px;
	margin-top:5px; margin-right:3px;
	background-image: url(../images/close.gif);
	background-repeat: no-repeat;
	overflow: hidden;
	cursor: pointer;
	float: right;
}

.ModalContent
{
	background-color: #ffffff;
}

.ModalFooter
{
	border-style: solid;
	border-width: 0px;
	border-top-width: 1px;
	border-color: #cccccc;
	background-color: #eeeeee;
	padding: 2px;
}

.ModalResize
{
	width: 14px;
	height: 14px;
	background-image: url(../images/resize.gif);
	background-repeat: no-repeat;
	overflow: hidden;
	float: right;
	cursor: se-resize;
}