/*
 Styles for div popups
*/
 
/* set width and height, and margin-left to -widht/2 and margin-right to -height/2 at usage via style attribute to center popup */
.popupWindow {		
	position: fixed;
	z-index: 10;
	top: 100px;
	left: 150px;		
	margin:auto;
	cursor: default;	
	
	
	max-height:550px;
	max-width:1050px;
	overflow:auto;
	padding: 2em;	
	border: 2px solid #00a513;
	background-color: #fff;
	background: #FFFFFF;
	-moz-border-radius: 5px; /* Firefox */
	-webkit-border-radius: 5px; /* Safari, Chrome */
	-khtml-border-radius: 5px; /* Konqueror */
	border-radius: 5px; /* CSS3 */
}


.popupModalBackground  {	
	z-index: 9;
	opacity: 0.3;
	filter: alpha(opacity = 30);
	position: absolute;
	cursor: default;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
	
	margin:0;padding:0;
	background-color: #fff;
	background: #E0E0E0;
}

#ggapPopup {
  box-shadow: 9px -8px 31px #5d6558; 
}

.moveTag {
	position: absolute;
	left: 0px;
	top: 0px;
	background-image: url("../../img/globalgap/dragButton.gif"); background-repeat: repeat;
	height: 20px;
	margin-left: 10px;
	margin-top: 5px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
.notSelectable {
  -moz-user-select: -moz-none;
  -webkit-user-select: none
  -khtml-user-select: none;
}
.selectable {
  -moz-user-select: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
}

.popupDialogMessageCss {
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	overflow:auto;
	text-align: center;
}

.popupDialogPreLine {
	white-space: pre-line;
}

.colorGreen {
	color: #00a513;
}

