﻿#fade { /*--Transparent background layer--*/
	background: #000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: 9999;
    filter:alpha(opacity=30); /* For IE8 and earlier */	
}

.popup_block
{
    width: 600px;
    height: 400px;
	background-color: #fff;
	padding: 10px;
    padding-bottom:20px;
	border: 5px solid #ddd;
	float: left;
/*	font-size: 1.2em; --*/
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 10000;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size:12px;
}

img.btn_close {
	float: right;
	border:0px;
}

#popup_header{
display: block;
height: 20px;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}

.popup_Catalog
{
    height: 90%;
    width: 50%;
    float:left;
    display: none;
    margin-left: auto;
    margin-right: auto;
    
}

.popup_Catalog img
{
    background-position: center;
	background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.popup_Catalog img:hover
{
    box-shadow: 2px 2px 10px rgba(0,0,0,.6);
    border-radius: 5px;
}

.popup_Catalog h2{
    background: none repeat scroll 0 0 rgba(235, 235, 235, 0.7);
    border-radius: 0 0 5px 5px;
    color: #58A9D0;
    line-height: 30px;
    margin: 0 auto;
    text-align: center;
    width: 83%;
    font-size: 12px;
}