/*
 * SimpleModal Confirm 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: jquery.modal.css,v 1.3 2009/10/09 01:03:29 toforl1 Exp $
 *
 */
body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}

/* Overlay */
#confirmModalOverlay {
	background-color: #eee;
	cursor: wait;
}

/* Container */
#confirmModalContainer {
	/*height: 140px; TOFORL1 Make this variable size not fixed*/
	/*width: 420px; TOFORL1 changed */
	width: 620px;
	font-family: 'Trebuchet MS', Verdana, Arial;
	font-size: 16px;
	text-align: left;
	background: #fff;
	border: 2px solid #336699;
}

#confirmModalContainer .header {
	height: 30px;
	width: 100%;
	background: url(modalheader.gif) repeat-x;
	color: #fff;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 30px;
}

#confirmModalContainer .header span {
	padding-left: 8px;
}

#confirmModalContainer .message {
	color: #333;
	text-align: center;
	margin: 0;
	padding: 12px 4px;
	font-size: 1em;
	height: 200px; /* TOFORL1 forced size */
	overflow: auto; /* TOFORL1 forced scrollable */
}

#confirmModalContainer .buttons {
	width: 160px;
	float: right;
	padding: 10px 8px 0;
}

#confirmModalContainer .buttons div {
	float: right;
	margin-left: 8px;
	width: 70px;
	height: 26px;
	color: #666;
	font-weight: bold;
	text-align: center;
	background: url(modalbutton.gif) repeat-x;
	border: 1px solid #bbb;
	cursor: pointer;
}

#confirmModalContainer a.modalCloseX,#confirmModalContainer a.modalCloseX:link,#confirmModalContainer a.modalCloseX:active,#confirmModalContainer a.modalCloseX:visited
	{
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
	position: absolute;
	top: -1px;
	/*left: 400px; TOFORL1*/
	left: 600px;
	color: #ddd;
}

#confirmModalContainer a.modalCloseX:hover {
	color: #9bb3b3;
}


/* ------------------------------- */
/* Info Style message box contents */
/* ------------------------------- */

.info {
	padding: 50px 140px;
	background: transparent url(info_circle.png) no-repeat scroll 0 0;
}

.info ul {
	margin: 0px;
	padding: 0px;
}

.info li {
	display: block;
	padding: 0px 0px 8px 16px;
	list-style: none;
}

/* -------------------------------- */
/* Error Style message box contents */
/* -------------------------------- */

.errors {
	padding: 50px 140px;
	background: transparent url(error_circle.png) no-repeat scroll 0 0;
}

.errors ul {
	margin: 0px;
	padding: 0px;
}

.errors li {
	display: block;
	padding: 0px 0px 8px 16px;
	list-style: none;
}
