﻿
/**************************************************************

	MultiBox
	v1.2

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

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