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

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

/* some styling for triggers */



/* Add business button */
#triggers
  {
  	cursor:pointer;
    /*display: inline;
    width: 126px;
    height: 73px;
	clear:both;*/
    /*background: url("../images/addbusiness.gif") no-repeat 0 0;*/
	/*float:left;
	position:absolute;
	padding-right:6px;
	text-align:right;
	right:360px;top:6px;
	*/
  }


  #triggers:hover
  { 
    background-position: 0 -32px;
	cursor:pointer;
  }

/*instruction button inside of overlay */
#instruction
  {
    display: block;
    width: 148px;
    height: 32px;
	clear:both;
    background: url("/images/viewinstruction.png") no-repeat 0 0;
	float:left;
  }

  #instruction:hover
  { 
    background-position: 0 -32px;
	cursor:pointer;
  }


/* styling for elements inside overlay */
.details {
	position:absolute;
	top:15px;
	right:15px;
	font-size:11px;
	color:#fff;
	width:150px;
}

.details h3 {
	color:#3F3F3F;
	font-size:15px;
	margin:0 0 -10px 0;
}
