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

	MultiBox
	v1.1

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

.MultiBoxContainer {
	position: absolute;
	border: 5px solid #c3c2b0;
	background-color: white;
	display: none;
	z-index: 2;
}

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

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

.MultiBoxClose { /* изображението на "close" */
	position: absolute;
	top: 13px;
	right: 15px;
	background: url(../images/icons/close_inactive.gif) no-repeat;
	width: 11px;
	height: 11px;
	cursor: pointer;
}
.MultiBoxClose:hover {
	background: url(../images/icons/close_active.gif) no-repeat;
}


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

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


.MultiBoxPrevious {
	position: absolute;
	background: url(../images/icons/left.png) no-repeat;
	width: 24px;
	height: 24px;
	left: 0px;
	margin-bottom: 5px;
	cursor: pointer;
	display: block;
}

.MultiBoxNext {
	position: absolute;
	background: url(../images/icons/right.png) no-repeat;
	width: 24px;
	height: 24px;
	right: 0px;
	margin-bottom: 10px;
	display: block;
	cursor: pointer;
}

.MultiBoxNextDisabled {
	display: block;
	cursor: default;
	background: url(../images/icons/rightDisabled.png) no-repeat;
}

.MultiBoxPreviousDisabled {
	display: block;
	cursor: default;
	background: url(../images/icons/leftDisabled.png) no-repeat;	
}

.MultiBoxTitle {
	position: relative;
	margin: 10px 30px 0 30px;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	font-weight: bold;
	text-align: left;
}

.MultiBoxNumber {
	position: relative;
	width: 50px;
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: black;
	text-align: right;
	margin: 40px 10px 10px 10px;
	
}

.MultiBoxDescription {
	clear: left;
	position: relative;
	margin: 0 30px 0 25px;
	padding: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: left;
}



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

