﻿#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: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 20px;
	border: 20px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
img.btn_close {
	float: right;
	margin: -55px -55px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}

/*---------------------------Message Box Start------------------------------*/
.Popmessage
{
    padding: 0px;
    background: #ffffff;
    border: 6px solid #ddd;
    position: fixed;
    top: 40%;
    left: 32%;
    z-index: 99999;
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 50%;
    height: auto;
}
.Popmessage h1
{
    background-image: url('../images/information.png');
    background-repeat: no-repeat;
    background-color: #5392BA;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    font-size: 15px;
    font-weight: bold;
    padding-left: 18px;
    background-position: left center;
    height: 15px;
    text-indent: 5px;
    text-shadow: 1px 1px 1px #366684;
    line-height: 10px;
}

.message-text
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #4d4d4d;
    padding: 6px 5px;
    line-height: 25px;
}


 .holder
        {
            position: fixed;
            top: 0px;
            bottom: 0px;
            left: 0px;
            right: 0px;
            overflow: hidden;
            padding: 0;
            margin: 0;
            background-color: #000;
            filter: alpha(opacity=50);
            opacity: 0.5;
        }
        
        .popup
        {
            position: absolute;
            background-color: #737373;
            padding: 6px;
            margin: 15px auto 0;
            top: 100px;
            left: 15%;
            z-index: 2001;
            padding: 10px;
            min-width: 400px;
            max-width: 90%;
            -moz-box-shadow: 3.5px 4px 5px #000000;
            -webkit-box-shadow: 3.5px 4px 5px #000000;
            box-shadow: 3.5px 4px 5px #000000;
            border-radius: 5px;
            -moz-border-radiux: 5px;
            -webkit-border-radiux: 5px;
            border: 1px solid #CCCCCC;
        }
/*---------------------------Message Box End------------------------------*/