
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display: none;
	
	/* place overlay on top of other elements */
	z-index: 10000;
	
	/* styling */
	background-color: #333;
	
	width: 580px;	
	min-height: 200px;
	border: 1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 30px 5px #000;
	-webkit-box-shadow: 0 0 30px #000;	
}

.simple_overlay div#preview_content{
    margin: 8px;
    background-color: #fff;
    min-height: 200px;
    max-height: 400px;
    overflow: auto;
    padding: 5px;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image: url(../designer/icons/close.png);
	position: absolute;
	right: -14px;
	top: -14px;
	cursor: pointer;
	height: 33px;
	width: 33px;
}

/* Client Overview */

#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 99998;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background-color: #333;
	float: left;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;

	width: 750px;	
	min-height: 200px;
	border: 1px solid #666;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 30px 5px #000;
	-webkit-box-shadow: 0 0 30px #000;	
}
a.btn_close {
	background-image: url(../designer/icons/close.png);
	position: absolute;
	right: -14px;
	top: -14px;
	cursor: pointer;
	height: 33px;
	width: 33px;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}

a.preview_client
{
    display: inline-block;
    width: 175px;
    height: 83px;
    text-align: center;
    background-color: #fff;
    float: left;
}

.popup_block div.client_overview, .popup_block div.career_view
{
    min-height: 150px;
    max-height: 500px;
    overflow: auto;
    padding: 20px;
    margin: 8px;
    color: #fff;
}

div.client_overview span.client_logo
{
    float: left;
    display: block;
    width: 180px;
    height: 180px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 15px;
}

div.client_overview p.client_info
{
    overflow: hidden;
    margin: 0px;
}

div.client_overview p.client_info span, div.career_view span
{
    display: block;
    color: #ffcc00;
    font-size: 0.8em;
    padding-top: 5px;
}

div.career_view ul, div.career_view ol
{
    padding-left: 10px;
    margin: 0 10px 0 10px;
}

div.career_view ul
{
    list-style-type: disc;
}
