/*
 * 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;
}

/* Overlay */
#simplemodal-overlay 
{
	background-color:#000; 
	z-index: 90000;
	cursor:wait;
}

/* Container */
#simplemodal-container 
{
	height:500px; 
	width:800px; 
			
	background-color:#fff; 
	border:4px solid #444; 
	padding:12px;
	
	/* rounded corners */
	-moz-border-radius: 15px;
	border-radius: 15px;	

	z-index: 91000;
}

#simplemodal-container .simplemodal-data 
{
	padding:8px;
}

#simplemodal-container code {background:#141414; border-left:3px solid #65B43D; color:#bbb; display:block; font-size:12px; margin-bottom:12px; padding:4px 6px 6px;}

#simplemodal-container a {color:#ddd;}

#simplemodal-container a.modalCloseImg 
{
	background:url('../img/x.png') no-repeat;
	width:32px; 
	height:32px; 
	z-index:3200; 
	position:absolute; 
	top:-10px; 
	right:-15px; 
	/*padding-right: -15px;*/
	
	cursor:pointer;
	z-index: 110000;
}

/*
@media screen and (max-width:841px) 
{
	#simplemodal-container 
	{
		height:500px; 
		width:800px; 
				
		background-color:#fff; 
		border:4px solid #444; 
		padding:12px;
		
		-moz-border-radius: 15px;
		border-radius: 15px;	

		z-index: 91000;
	}
}

@media screen and (max-width:840px) 
{
	#simplemodal-container 
	{
		width: 400px; 
		height: 800px;
		
		margin: 60px 30px 0 30px;		
	}
}
*/