/**************************************************************

	MultiBox
	v1.2

**************************************************************/

.MultiBoxContainer {
	position: absolute;
	border: 8px solid #000;
	background-color: #FFF;
	display: none;
	z-index: 50;
}

.MultiBoxLoading {
	background-image: url(../images/loader.gif);
	background-repeat: no-repeat;
	background-position: center;
	z-index: 50;
}

.MultiBoxContent {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 50;
}

.MultiBoxClose {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 41px;
	height: 40px;
	cursor: pointer;
	background-image: url(../images/close.gif);
	background-repeat: no-repeat;
	z-index: 50;
}


.MultiBoxControlsContainer {
	overflow:hidden;
	height:0px;
	position: relative;
	z-index: 50;
}

.MultiBoxControls {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #000000;
	z-index: 50;
}


.MultiBoxPrevious {
	position: absolute;
	width: 24px;
	height: 24px;
	left: 0px;
	margin-top: 10px;
	cursor: pointer;
	background-image: url(../images/left.jpg);
	background-repeat: no-repeat;
	z-index: 50;
}

.MultiBoxNext {
	position: absolute;
	width: 24px;
	height: 24px;
	right: 0px;
	margin-top: 10px;
	cursor: pointer;
	background-image: url(../images/right.jpg);
	background-repeat: no-repeat;
	z-index: 50;
}

.MultiBoxNextDisabled {
	cursor: default;
	background-image: url(../images/rightDisabled.jpg);
	background-repeat: no-repeat;
	z-index: 50;
}

.MultiBoxPreviousDisabled {
	cursor: default;
	background-image: url(../images/leftDisabled.jpg);
	background-repeat: no-repeat;
	z-index: 50;
}

.MultiBoxTitle {
	position: relative;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	font-weight: bold;
	text-align: left;
	z-index: 50;
	padding-top: 5px;
	padding-left: 35px;
}

.MultiBoxNumber {
	position: relative;
	width: 50px;
	margin: 10px 35px 0 0;
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 2px;
	color: #000;
	text-align: right;
}

.MultiBoxDescription {
	clear: left;
	position: relative;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-align: left;
	z-index: 50;
	margin-right: 35px;
	margin-left: 35px;
}

/*************************************************************/
