/**
 * POPUP CONTAINER STYLES
 */
#popupMask 
{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #222;
    filter:alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
    text-shadow: 0 0 0 #000;  
    z-index: 1200;  
}


#popupContainer {
	position: absolute;
	z-index: 1201;
	top: 0px;
	left: 0px;
	display: none;
	padding: 0px;
}

#popupInner {
	border: 2px solid #222;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1202;
}

#popupTitleBar {
	background-color: #5d5d5d;
	color: #ffffff;
	font-weight: bold;
	height: 32px;
	padding: 5px;
	border-bottom: 2px solid #222;
	border-top: 1px solid #aaaaaa;
	border-left: 1px solid #aaaaaa;
	border-right: 1px solid #333333;
	background: url('/grafik/submodal/title_big.png') repeat-x;
	position: relative;
	z-index: 1203;
}

#popupTitle 
{
    display: table-cell;
    height: 32px;
    vertical-align: middle;
    padding-right: 37px;
	font-size: 14px;
	font-family: Verdana, Arial, Sans-Serif;
}

#popupControls {
	/*float: right;*/
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
	cursor: hand;
}