/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 257 2010-07-27 23:06:56Z emartin24 $
 */

#basic-modal-content {display:none;}

#basic-modal-content-1 {display:none;}

/* Overlay */
#simplemodal-overlay {  cursor:wait;}

/* Container */
#simplemodal-container {
	height: 70%;
	width: 70%;
	color: #C4C4C4;
	background-color: #000;
	border: 4px solid #252525;
	padding: 2% 3% ;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height:16px;
	    margin: 4% 0 0 0;
}
#simplemodal-container code {
	background:#333333;
	border-left:3px solid #65B43D;
	color:#FFFFFF;
	display:block;
	font-size:12px;
	font-family: "Century Gothic";
}
#simplemodal-container a.modalCloseImg {
	background: url(../images/basic/x.png) no-repeat;
	width: 24px;
	height: 23px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

@media only screen and (max-width:760px) and (min-width:300px){
#simplemodal-container {
	height: 80%;
	width: 80%;
	color: #C4C4C4;
	background-color: #000;
	border: 4px solid #252525;
	padding: 5% ;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height:16px;
	margin: 4% 0 0 0;
}	
}