/* 
    Document   : popup
    Created on : Sep 24, 2009, 7:31:42 PM
    Author     : jamesng
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}
.popup_block {
	border: 10px solid #fff;
        float: left;
	width: 510px;
	position: fixed;
	top: 20%;
	left: 50%;
	margin: 0 0 0 -250px;
	z-index: 100;
}
.popup_block .popup {
	float: left;
	width: 100%;
	background: #fff;
}
.popup h3 {
	margin: 0 0 20px;
	padding: 5px 10px;
	border-bottom: 2px solid #bbb;
	font-size: 1.5em;
	font-weight: normal;
        color: #999999;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
.popup img.cntrl {
	position: absolute;
	right: -20px;
	top: -20px;
}
.popup table {
	font-size: 0.9em;
        color: #999999;
        width: 100%;
}
.popup tr {
}
.popup td.pad_left {
        padding-left: 10px;
        padding-bottom: 10px;
        text-align: left;
}
.popup td.pad_both {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        text-align: center;
}
.popup td.pad_right {
        padding-right: 10px;
        padding-bottom: 10px;
        text-align: right;
}
.err_msg {
        color: red;
        display: block;
}
.suc_msg {
        color: blue;
        display: block;
}
.submit {
        font-size: 1.1em;
        font-weight: bold;
}
#fade {
	background: #000;
	position: fixed;
	width: 100%;
	height: 100%;
	filter:alpha(opacity=80);
	opacity: .80;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
	left: 0;
	top: 0;
	z-index: 10;
}
#hideshow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

