
/**************************************************************

	MultiBox
	v1.3

**************************************************************/

.MultiBoxContainer {
	position: fixed;
	display: none;
	z-index: 95;
	text-align: left;
	background: #fff;
	padding: 10px;
}
* html .MultiBoxContainer { position: absolute; }
.MultiBoxContent, .MultiBoxLoading {
	position: relative;
	width: 100%; height: 100%;
	background: #fff;
	overflow: hidden;
	z-index: 97;
}
.MultiBoxPrevious, .MultiBoxNext, .MultiBoxClose {
	position: absolute;
	width: 64px; height: 64px;
	left: -64px; top: 50%; margin-top: -32px;
	background: url(./images/sprites.png) no-repeat 0 0;
	cursor: pointer;
	z-index: 98;
}
* html .MultiBoxPrevious { background-image: url(./images/sprites.gif) }
* html .MultiBoxNext { background-image: url(./images/sprites.gif) }
* html .MultiBoxClose { background-image: url(./images/sprites.gif) }

.MultiBoxNext {
	background-position: -128px 0;
	left: auto; right: -64px;
}
.MultiBoxClose {
  width: 32px; height: 32px;
  background-position: -64px 0;
  left: auto; top: -16px; margin-top: 0; right: -16px;
}
.MultiBoxLoading {
	background: url(./images/loader.gif) no-repeat center #fff;
}
.MultiBoxControlsContainer {
	overflow: hidden;
	height: 0;
	position: relative;
}

.MultiBoxTitle {
  padding: 5px 0 0 0;
	font-size: 1.3em;
	text-align:center;
	color: #555;
}

.MultiBoxNumber {
	position: relative;
	width: 50px;
	margin: 5px 30px 0 0;
	float: right;
	font-size: 1.3em;
	color: #000000;
	text-align: right;
}

.MultiBoxDescription {
	clear: left;
	position: relative;
	margin: 5px 0 0 0;
	padding: 0 30px 0 30px;
	font-size: 1.3em;
	color: #000000;
	text-align: left;
}


.MultiBoxNextDisabled {
	cursor: default;
  opacity: .2;       /* modern browser */
  -moz-opacity: .2;  /* older Mozilla browser */
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; /* IE8 in Standard Compliant Mode */
  filter:alpha(opacity=20); /* IE5.x -7.0 */
}

.MultiBoxPreviousDisabled {
	cursor: default;
  opacity: .2;       /* modern browser */
  -moz-opacity: .2;  /* older Mozilla browser */
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; /* IE8 in Standard Compliant Mode */
  filter:alpha(opacity=20); /* IE5.x -7.0 */
}