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

	MultiBox
	v1.3

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

.MultiBoxContainer {
	position: absolute;
	border: 3px solid #FFF;
	background-color: #FFF;
	display: none;
	z-index: 2;
	text-align: left;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #646464;
	/*overflow: hidden;*/
}

.MultiBoxLoading {
	background: url(loader.gif) no-repeat center;
}

.MultiBoxContent {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.MultiBoxControlsContainer {
	overflow: hidden;
	height: 0px;
	position: relative;
}

.MultiBoxControls {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #FFF;
}

.MultiBoxClose {
    position: absolute;
    background: url(close.png) no-repeat;
    top: -2px;
    right: -2px;
    width: 24px;
    height: 24px; 
    cursor: pointer;
}

.MultiBoxPrevious {
	position: absolute;
	background: url(left.png) no-repeat;
    margin-top: 3px;
    right: 25px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.MultiBoxNext {
	position: absolute;
	background: url(right.png) no-repeat;
    margin-top: 3px;
	right: 0px;
    width: 24px;
    height: 24px;
	cursor: pointer;
}

.MultiBoxNextDisabled {
	cursor: default;
	background: url(rightDisabled.png) no-repeat;
}

.MultiBoxPreviousDisabled {
	cursor: default;
	background: url(leftDisabled.png) no-repeat;
}

.MultiBoxTitle {
	position: relative;
	margin: 3px 0 0 5px;
	float: left;
	font-weight: bold;
	text-align: left;
}

.MultiBoxNumber {
	position: relative;
    line-height: 1.2em;
	width: 50px;
	margin: 28px 5px 0 0;
    padding-bottom: 2px;
	float: right;
	text-align: right;
}

.MultiBoxDescription {
	clear: left;
	line-height: 1.2em;
	position: relative;
    margin: 0 50px 2px 5px;
    padding-top: 4px;
    padding-bottom: 2px;
}

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

