/*DIALOGBOX*/
.drag {
	display: none;
	position: fixed;
	/*
		border-bottom-right-radius : 6px;
		border-bottom-left-radius:6px;*/
	cursor: move;
	top: 50%;
	left: 50%;
	margin: 0;
	z-index: 200002;
	/*padding:2px 6px 6px 6px;*/
	padding: 0;
	margin-right: -50%;
	transform: translate(-50%, -50%) !important;
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	/*box-shadow: 0 5px 15px rgba(0, 0, 0, .5);*/
	/*border: 1px solid rgba(0, 0, 0, .2);*/
	border-radius: 6px;
	/*height: 70%;*/
}

.drag .head {
	cursor: move;
	min-height: 24px;
	font-weight: bold;
	padding: 10px 4px 10px 10px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b2e1ff+0,66b6fc+100;Blue+3D+%236 */
	background: rgb(178, 225, 255); /* Old browsers */
	background: -moz-linear-gradient(top, #008FE2 0, #00B29C 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #008FE2 0, #00B29C 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(154deg, #008FE2 0, #00B29C 100%);
	color: #FFF;
	border-radius: 6px 6px 0 0;
}

.drag .head .close:before {
	float: right;
	position: absolute;
	top: 8px;
	right: 8px;
	/*background-image:url(../images/Close_Circle_Blue.png);*/
	content: "\f00d";
	font-family: FontAwesome;
	color: red;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.drag .konten {
	background: #FFF;
	cursor: default;
	padding: 2px 10px 6px 10px;
	border-radius: 0 0 6px 6px;
}

.dialogboxcenter {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 200004;
	padding-top: 200px;
}

.dialogboxoverlay {
	display: none;
	opacity: .8;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #000;
	height: 100%;
	width: 100%;
	z-index: 200001;
}

.dialogbox {
	background: #006687;
	border-radius: 7px;
	z-index: 200005;
	width: 90%;
	max-width: 500px;
	max-height: 580px;
	padding: 1px;
}

.dialogbox > div {
	margin: 0px;
	border-radius: 5px;
}

.dialogbox > div > .dialogboxhead {
	background: -moz-linear-gradient(#00CCCC, #009999);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: 14px;
	font-weight: bold;
	padding: 4px;
	color: #FFF;
}

.dialogbox > div > .dialogboxheadsalah {
	background: -moz-linear-gradient(top, rgba(255, 231, 227, 1) 0%, rgba(196, 47, 13, 1) 86%);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: 14px;
	font-weight: bold;
	padding: 4px;
	color: #FFF;
}

.dialogbox > div > .dialogboxbody {
	background: #00CCC0;
	padding: 10px;
	color: #000;
	overflow: auto;
	max-height: 500px;
}

.dialogbox > div > .dialogboxfoot {
	background: #00CCC0;
	padding: 2px;
	padding-right: 4px;
	text-align: right;
}

.close {
	color: red !important;
	opacity: 0.7 !important;
}

.close:hover {
	opacity: 0.8 !important;
}

/*DIALOGBOX*/