/*
 * SimpleModal Basic 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
 */

#basic-modal-content {display:none;}

/* Overlay */
#simplemodal-overlay {
	background-color: #000;
}
#basic-modal .basic  {
	color: #FFF;
	text-decoration: none;
	margin-top: 8px;
	font-size: 14px;
	font-family: Calibri;
	background-color: #002479;
	height: 35px;
	width: 135px;
	-moz-transform: rotate(90.0deg);  /* FF3.5+ */
	-o-transform: rotate(90.0deg);  /* Opera 10.5 */
	-webkit-transform: rotate(90.0deg);  /* Saf3.1+, Chrome */
	position: fixed;
	top: 40%;
	margin-left: 93.5%;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
-webkit-border-radius: 0px 0px 10px 10px;-moz-border-radius: 0px 0px 10px 10px;border-radius: 0px 0px 10px 10px;
}


/* Container */
#simplemodal-container {
	height: 375px;
	width: 440px;
	color: #bbb;
	background-color: #333;
	border: 4px solid #444;
	padding: 12px;
}
#simplemodal-container .simplemodal-data {padding:8px;}
#simplemodal-container code {
	background: #141414;
	border-left: 3px solid #65B43D;
	color: #bbb;
	display: block;
	font-size: 11px;
	margin-bottom: 12px;
	padding: 4px 6px 6px;
}
#simplemodal-container a {color:#ddd;}
#simplemodal-container a.modalCloseImg {background:url(../img/basic/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer;}
#simplemodal-container h3 {color:#84b8d9;}
#basic-modal-content p {
	font-size: 13px;
}
