/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 132 2008-05-23 16:05:17Z emartin24 $
 *
 */

/* Simple Popup */

/* Overlay */

#modalOverlay {
	background-color: #000;
	cursor: wait;
}

/* Container */

#modalContainer {
	background-color: #fff;
	border: 3px solid #ccc;
	height: 200px;
	left: 50%;
	margin-left: -170px;
	top: 15%;
	width: 300px;
}

#modalContainer a.modalCloseImg {
	background: url(../../Images/MenuItems/x.png) no-repeat;
	cursor: pointer;
	display: inline;
	height: 29px;
	position: absolute;
	right: -18px;
	top: -15px;
	width: 25px;
	z-index: 3200;
}

#modalContainer .modalheader {
	background: url(../../Images/MenuItems/sprite.png) repeat-x 0px 0px;
	color: #0192BF;
	font-size: 1.1em;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	width: 100%;
}

#modalContainer .modalheader span { padding-left: 8px; }

#modalContainer .modalbody { padding: 15px 5px 15px 5px; }

#modalContainer .modalbody th { text-align: right; }

#modalContainer .modalbodysubmitbuttons { text-align: center; }

/* Confirm Popup
/* Overlay */

#confirmModalOverlay {
	background-color: Gray;
	cursor: wait;
}

/* Container */

#confirmModalContainer {
	background: #fff;
	border: 4px solid #989898;
	font-family: Calibri, Verdana, Arial;
	font-size: 16px;
	height: 140px;
	left: 50%;
	margin-left: -210px;
	text-align: left;
	top: 15%;
	width: 420px;
}

#confirmModalContainer .confirmheader {
	background: url(../../Images/MenuItems/sprite.png) repeat-x 0px 0px;
	color: #0192BF;
	font-size: 1.1em;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	width: 100%;
}

#confirmModalContainer .confirmheader span { padding-left: 8px; }

#confirmModalContainer a.modalCloseImg {
	background: url(../../Images/MenuItems/x.png) no-repeat;
	cursor: pointer;
	display: inline;
	height: 29px;
	position: absolute;
	right: -18px;
	top: -15px;
	width: 25px;
	z-index: 3200;
}

#confirmModalContainer .confirmmessage {
	color: #333;
	font-size: 1em;
	margin: 0;
	padding: 12px 4px;
	text-align: center;
}

#confirmModalContainer .confirmbuttons { text-align: center; }