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

	MultiBox
	v1.2

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

.MultiBoxContainer { /* рамката на прозореца */
	position: absolute;
	border: 0px solid #000;
	background-color: transparent;
	display: none;
	z-index: 9999;
}

.MultiBoxLoading { /* изображението на loader-a */
	background: url(../images/icons/loader.gif) no-repeat center;
}

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

.MultiBoxClose { /* изображението на "close" */
	position: absolute;
	top: 30px;
	right: 35px;
	background: url(../images/icons/close.png) no-repeat;
	width: 20px;
	height: 20px;
	cursor: pointer;
}


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

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


.MultiBoxPrevious { /* изображението на "previous */
	position: absolute;
	background: url(../images/icons/left.png) no-repeat;
	width: 24px;
	height: 24px;
	left: 0px;
	margin-top: 5px;
	cursor: pointer;
}

.MultiBoxNext { /* изображението на "next" */
	position: absolute;
	background: url(../images/icons/right.png) no-repeat;
	width: 24px;
	height: 24px;
	right: 0px;
	margin-top: 5px;
	cursor: pointer;
}

.MultiBoxNextDisabled { /* изображението на "nextDisabled" */
	cursor: default;
	background: url(../images/icons/rightDisabled.png) no-repeat;
}

.MultiBoxPreviousDisabled { /* изображението на "previousDisabled" */
	cursor: default;
	background: url(../images/icons/leftDisabled.png) no-repeat;
}

.MultiBoxTitle { /* заглавие на текущия елемент */
	position: relative;
	margin: 10px 35px 0 35px;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	font-weight: bold;
	text-align: left;
}

.MultiBoxNumber { /* броят на елементите, коите се показжат и съотвено номера на текущия елемент */
	position: absolute;
	bottom: 1px;
	right: 1px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFF;
	padding-top: 5px;
	text-align: right;
}

.MultiBoxDescription { /* описание на текущия елемент */
	clear: left;
	position: relative;
	margin: 0 35px 0 35px;
	padding-top: 5px;
	padding-bottom: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: left;
}



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

