/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#fff;
	
	/* width:675px;	*/
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/img/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* use a semi-transparent image for the overlay */ 
.overlay { 
   /* background-image:url(/img/overlay/transparent.png); */
    color:#000; 
    height:450px; 
    z-index:10000;
    /* initially overlay is hidden */
    display:none;
    
    /* growing background image 
    background-image:url(/img/overlay/white.png); */
    background-color:#fff;
    
    /* 
       width after the growing animation finishes
       height is automatically calculated
       */
    width:640px;		
    
    /* some padding to layout nested elements nicely  */
    padding:35px;

    /* a little styling 
    font-size:11px; */

    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;	

} 

.soft {
  height: 100%;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;	
}

.overlay .close {
	background-image:url(/img/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
 
/* container for external content. uses vertical scrollbar, if needed */ 
.contentWrap { 
    height:441px; 
    overflow-y:auto; 
}

/* EXTRA OSBORNE BROOK STYLES */

.overlay #content, .overlay #pseudocontent { 
  background: #fff;
  margin: 0;
  padding: 0 5px 0 0;
  width: 620px;
}


/* forms within an overlay */

.overlay form { margin: 0; padding: 15px 0 5px;}
.overlay form p { clear: both; padding: 5px 0;}
.overlay form label { float: left; width: 200px;}
/*.overlay form label.block { float: none; display: block; margin: 7px 0 3px; width: auto;}*/
.overlay form input[type="text"] {width: 400px;}
.overlay form input[type="text"].short {width: 200px;}
.overlay h1, #homeintro .overlay h1 { background: #efefef; color: #333; font-size: 1.4em; font-weight: normal; margin: 0 0 0.5em; padding: 5px;}
.overlay dt { border-top: 1px dotted #ccc; clear: both; padding: 5px 0; float: left; width: 200px;}
.overlay dd { border-top: 1px dotted #ccc; padding: 5px 0;}
.overlay form label { float: left; width: 200px;}
.overlay h2 { border-bottom: 1px dotted #f90; color: #f90; font-size: 1.2em; margin: 0 0 0.5em; padding: 5px;}
.soft h2 { border-bottom: 1px dotted #f90; color: #f90; font-size: 1.2em; padding: 5px;}
.soft .errors {padding: 0px}
.errors h2{color: #fff;}
.overlay p.buttons { padding: 10px 0 10px 200px;}
#homeintro .overlay a { color: #3a98cd; font-size: 0.9em;}
#homeintro .overlay a:hover { color: #f90; font-size: 0.9em;}


form.bigfriendly {
  width: 620px }

