/******* Act-on Modal *********/
div#acton_overlay {
	background-color: #333333;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	-moz-opacity: 0.50;
	opacity: .50;
	filter: alpha(opacity = 50);
	z-index: 100;
}

div#acton_modalWrapper {
	overflow: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 101;
}

div#acton_modal {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 0px solid transparent;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	background: #fff;
	min-height: 20px;
	min-width: 200px;
	background: rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 0px 4px 4px #6b6b6b;*/
	padding: 14px;
	display: none;
	z-index: 102;
	max-width: 95%;
	max-height: 100%;
	overflow: hidden;
}

#acton_modal_title_container {
	background: #dedede url(img/aoGradient.png) repeat-x top left;
	border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	-webkit-border-radius: 6px 6px 0 0;
	border-bottom: 1px solid #ccc;
}

#acton_modal_title {
	display: block;
	padding: 0 50px 0 10px;
	margin: 0;
	font-size: 13px !important;
	font-weight: bold;
	text-shadow: 0 1px 0 #FFFFFF;
	color: #666666;
	width: auto;
	line-height: 35px;
	position: relative;
}

a#acton_modal_close {
	position: absolute;
	right: 10px;
}

a#acton_modal_close:hover {
	background: transparent;
}

#acton_modal_body {
	padding: 10px;
	background: #fff;
	border: 0px solid transparent;
	overflow: hidden;
	max-width: 100%;
}

#acton_modal_body.acton_modal_borderless {
	padding: 0px;
	background: #fff;
	border: 0px solid transparent;
}

div#acton_modal_no_title {
	position: relative;
	border: 0px solid transparent;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	line-height: 16px;
	background: #fff;
	padding-top: 5px;
}

div#acton_modal_no_title:has(#betaLaunchModal){
	padding-top: 0px;
}


#acton_modal .closeIcon {
	vertical-align: middle;
	display: inline-block;
	width: 16px;
	height: 17px;
	background: url('img/btn_close.gif');
	cursor: pointer;
}