.jbox {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	overflow: hidden;
	z-index: 99999;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 6px;
	box-shadow: 0 5px 15px rgba(0,0,0,.5)
}

.jbox-title {
	position: relative;
	color: #000;
	height: 40px;
	line-height: 40px;
	background-color: #fff;
	border-bottom: 1px solid #e5e5e5
}

.jbox-title-txt {
	font-size: 14px;
	padding-left: 10px
}

.jbox-close {
	position: absolute;
	right: 10px;
	top: 9px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(Images/remove-black.png) no-repeat;
	z-index: 999999
}

.jbox-container {
	padding: 15px;
	overflow-y: auto;
	overflow-x: auto
}

.jbox-buttons {
	padding: 10px;
	border-top: 1px solid #e5e5e5;
	text-align: right
}

.jbox-buttons a {
	margin-left: 5px
}

#jbox-loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.15);
	z-index: 999999
}

#jbox-loading i {
	display: block;
	position: fixed;
	height: 80px;
	width: 80px;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
	background: url(Images/loading-blue.png) no-repeat;
	-webkit-animation: rotateLoading .8s linear infinite;
	-moz-animation: rotateLoading .8s linear infinite;
	animation: rotateLoading .8s linear infinite
}

@keyframes rotateLoading {
	0% {
		-webkit-transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(360deg)
	}
}

@-webkit-keyframes rotateLoading {
	0% {
		-webkit-transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(360deg)
	}
}

@-moz-keyframes rotateLoading {
	0% {
		-moz-transform: rotate(0deg)
	}

	100% {
		-moz-transform: rotate(360deg)
	}
}