/**************************************************************

	MultiBox
	v1.3

**************************************************************/

.MultiBoxContainer {
	position: absolute;
	border: 7px solid #2c2c2c;
	background-color:#FFF;
	display: none;
	z-index: 2;
	text-align: left;	/*overflow: hidden;*/
	height: 400px;
	width: 600px;
}

.MultiBoxLoading {
	background-image: url(images/loader.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.MultiBoxContent {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.MultiBoxClose {
	position: absolute;
	top: 130px;
	right: -27px;
	width: 30px;
	height: 26px;
	cursor: pointer;
	behavior: expression(IEPNGFIX.fix(this));
	background-image: url(images/close.png);
	background-repeat: no-repeat;
}


.MultiBoxControlsContainer {
	overflow: hidden;
	height: 0px;
	position: relative;
}

.MultiBoxControls {
	width: 600px;
	height: 30px;
	position: relative;
	background-color: #2c2c2c;
}


.MultiBoxPrevious {
	position: absolute;
	width: 35px;
	height: 35px;
	left: 0px;
	margin-top: 5px;
	cursor: pointer;
	background-image: url(images/left.png);
	background-repeat: no-repeat;
}

.MultiBoxNext {
	position: absolute;
	width: 24px;
	height: 35px;
	right: 0px;
	margin-top: 5px;
	cursor: pointer;
	background-image: url(images/right.png);
	background-repeat: no-repeat;
}

.MultiBoxNextDisabled {
	cursor: default;
	background-image: url(images/rightDisabled.png);
	background-repeat: no-repeat;
}

.MultiBoxPreviousDisabled {
	cursor: default;
	background-image: url(images/leftDisabled.png);
	background-repeat: no-repeat;
}

.MultiBoxTitle {
	position: relative;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	font-weight: bold;
	text-align: left;
	height: auto;
	width: 480px;
	margin-top: 10px;
	margin-bottom: 10;
	margin-left: 35px;
}
*html .MultiBoxTitle {
	width: 480px;
	margin-left: 35px;
	height: auto;
}
.MultiBoxNumber {
	position: relative;
	width: 50px;
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: right;
	display:none;
	margin-top: 10px;
	margin-right: 35px;
	margin-bottom: 0;
	margin-left: 35;
}

.MultiBoxDescription {
	clear: left;
	position: relative;
	padding-top: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: left;
	display:none;
	margin-top: 0;
	margin-right: 35px;
	margin-bottom: 0;
	margin-left: 35px;
	height: auto;
}



/*************************************************************/
