/*
 * SimpleModal OSX Style Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#osx-modal-content, #osx-modal-data, #confirm-modal-content {
	display: none;
}

/* Overlay */
/*#osx-overlay {
	background-color: #444;
}*/

/* Container */
#osx-container {
	/*background-color: #eee;
	color: #444;*/
	font: 16px/24px "Lucida Grande",Arial,sans-serif;
	padding-bottom: 4px;
	width: 600px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-webkit-border-bottom-right-radius: 6px;
	border-radius: 0 0 6px 6px;
	-moz-box-shadow: 0 0 64px #444;
	-webkit-box-shadow: 0 0 64px #444;
	box-shadow: 0 0 64px #444;
}

/*#osx-container a {
	color: #ddd;
}*/

#osx-container #osx-modal-title {
/*	color: #000;
	background-color: #ddd;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	padding: 6px 8px;
	text-shadow: 0 1px 0 #f4f4f4;*/
}
#osx-container .close {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
}
#osx-container .close a {
	display: block;
	color: #fff;
	font-weight: bold;
	padding: 6px 12px 0;
	text-decoration: none;
	text-shadow: 0 1px 0 #f4f4f4;
}
#osx-container .close a:hover {
	color: #000;
}
#osx-container #osx-modal-data {
	font-size: 12px;
	padding: 6px 12px;
}
#osx-container h2 {
	margin: 10px 0 6px;
}
#osx-container p {
	margin-bottom: 10px;
}
#osx-container span {
	color: #777;
}





#basic-modal-content {display:none;}

/* Overlay */
#simplemodal-overlay,#confirm-overlay, #customHint-overlay, #helpText-overlay  {background-color:#444;}

/* Container */
#simplemodal-container {
	height: 570px;
	width: 800px;
	color: #444;
	/*background-color: white;*/
/*	border: 3px solid #00467f;*/
	border-style: solid;
	border-width: 3px;
	padding: 12px;
	border-radius: 10px;
	-moz-box-shadow: 0 0 64px #444;
	-webkit-box-shadow: 0 0 64px #444;
	box-shadow: 0 0 64px #444;
}

#simplemodal-container a.modalCloseImg {
	/*background: url(../close.gif) no-repeat;*/
	background-image: url(../../Images/sprite-iconset2-16x16.png); height: 20px; width: 20px; background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: -5px;
	right: -5px;
	cursor: pointer;
	background-position: -2000px;
	border-radius: 10px;
	background-color: #444;
}

.simplemodal-wrap {
    overflow:auto !important;
}




/*
 * SimpleModal Confirm Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#confirm {display:none;}
#customHint {display:none;}
#helpTextDialog {display:none;}

/* Container */
#confirm-container {
	height: 140px;
	width: 420px;
	text-align: left;
	background: #fff;
	border: 2px solid #00467f;
	border-radius: 10px;
}



#confirm-container .message {margin:0; padding:12px 4px 12px 8px;}
#confirm-container .buttons {line-height:26px; width:160px; float:right; padding:10px 8px 0;} 
/*#confirm-container .buttons div {float:right; margin-left:4px; width:70px; height:26px; color:#666; font-weight:bold; text-align:center; background:url(../img/confirm/button.gif) repeat-x; border:1px solid #bbb; cursor:pointer;} */
#confirm-container a.modal-close,
#confirm-container a.modal-close:link,
#confirm-container a.modal-close:active,
#confirm-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#fff;}
/*#confirm-container a.modal-close:hover {color:#ccc;}*/


#customHint-container {
	height: 250px;
	width: 300px;
	text-align: left;
	background: #fff;
	border: 2px solid #00467f;
	border-radius: 10px;
}

#customHint-container .buttons {line-height:26px; width:160px; float:left; padding:10px 8px 0;} 
#customHint-container .message {margin:0; padding:12px 4px 12px 8px;}
#customHint-container a.modal-close,
#customHint-container a.modal-close:link,
#customHint-container a.modal-close:active,
#customHint-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#fff;}


#helpText-container {
	height: 250px;
	width: 300px;
	text-align: left;
	background: #fff;
	border: 2px solid #00467f;
	border-radius: 10px;
}

#helpText-container .buttons {line-height:26px; width:160px; float:left; padding:10px 8px 0;} 
#helpText-container .message {margin:0; padding:12px 4px 12px 8px;}
#helpText-container a.modal-close,
#helpText-container a.modal-close:link,
#helpText-container a.modal-close:active,
#helpText-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:20px; top:2px; color:#fff;}