/*
 * 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 $
 */
 

.content{
	margin-left:3px;
	margin-top: 10%;
	float:left;
}

a.back{
	width:256px;
    height:73px;
    position:fixed;
    bottom:15px;
    right:15px;
    background:#fff url(codrops_back.png) no-repeat top left;
    z-index:1;
    cursor:pointer;
}
        
a.activator{
	color:#FFF;
	font-family:Monaco, Verdana, Geneva, sans-serif;
	font-size:x-small;
	text-decoration:none;
    background:#000;
    z-index:1;
}

h1 {
	font-family:Monaco, Verdana, Geneva, sans-serif;
	font-size:x-small;
    color:#FFF;
}
	
        
		
		
		
		/* Style for overlay and box */
.overlay{
	background: rgba(0,0,0,0.8);           /* rgba(30,183,235,0.8); */
    position:fixed;
	height:100%;
	margin-left:0px;
	margin-right:60%;
	font-family:Monaco, Verdana, Geneva, sans-serif;
	font-size:x-small;
    color:#FFF;
	padding-right:40px;
	padding-left:20px;
	padding-bottom:20px;
	overflow:scroll;
    z-index:100;
}

::-webkit-scrollbar {  
    height: 1px;  
     -webkit-border-radius: 1px;  
	width: 8px;
	margin-right: 3px;
    }  
  
::-webkit-scrollbar-thumb {  
    border-top: rgba(0,0,0,0.8); 
    background: #ccc -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,0.8)));  
    -webkit-border-radius: 1px;  
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .8);  
}  

.box{
	position:fixed;
    top:-1500px;
    left:0%;
    right:50%;
    background-color: rgba(30,183,235,1);
	font-family:Monaco, Verdana, Geneva, sans-serif;
	font-size:x-small;
    color:#FFF;
    padding:20px;
    z-index:101;
}
        
.box h1{
	font-family:Monaco, Verdana, Geneva, sans-serif;
	font-size:x-small;
    color:#FFF;
}
		
a.boxclose{
	float:left;
    margin-top:8px;
    margin-right:0px;
    cursor:pointer;
	color:#FFF;
	
}



