/* MILKBOX */

#mbOverlay {
	position: absolute;
	left: 0;
	width:100%;
	background-color: #000; /* set the Milkbox overlay color // opacity: see the js options */
	z-index:5000;
	/*cursor: pointer;*/
}

#mbCenter {
	/* for default width and height, see the js options */
	position: absolute;
	z-index:6000;
	overflow:visible;
	left: 50%;
	top:10%;/* overwritten in the js options to properly position the milkbox when activated in a scrolled window */
	background-color: #fff;/* set the Milkbox background color */
	border: nonw;/* set the Milkbox border */
	margin:0; padding: 0;/* set the Milkbox padding */
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
}

#mbNavigation{
	position: absolute;
	top: 0;
	left: 50%;
	top: 50%;
	width: 100% !important;
	margin-left: -50%;
	padding: 0;
	z-index: 7000;
	/*float:right;*/
	/*padding-top:3px;
	padding-right: 6px;*/
	/*border-left:1px solid #9c9c9c;/* set nav border */
}

	#mbCloseLink, #mbPrevLink, #mbNextLink, #mbPlayPause{
		outline:none;
		display:block;
		position: absolute;
		cursor: pointer;
	}
	#mbPlayPause {
		display: none !important;
	}

	a#mbPrevLink, a#mbNextLink {
		top: 20%;
		height: 80%;
		width: 120px;
		z-index: 7500;
		background-color: transparent;
		background-repeat: no-repeat;
		
	}
	a#mbPrevLink { left: 0; background-position: 15% 40% !important; }
	a#mbNextLink { right: 0; background-position: 85% 40% !important; }
	a#mbPrevLink/*:hover*/ { background-image: url('../../layout/btn-prev-anim.gif'); }
	a#mbNextLink/*:hover*/ { background-image: url('../../layout/btn-next-anim.gif'); }
	a#mbPrevLink:hover { cursor: pointer !important; }
	a#mbNextLink:hover { cursor: pointer !important; }
	
	
	a#mbCloseLink {
		top: 0;
		right: -35px;
		width: 27px;
		height: 25px;
		background: transparent url('../../layout/btn-close.gif') no-repeat;
	}
	a#mbCloseLink:hover { background-position: 0 0 !important; }



.mbLoading{ background: #fff url('../../loading.gif') no-repeat center; }/* IMAGE: loading gif */

#mbCanvas{ 
	position: relative;
	margin:0; padding:0; height:0; border:none; font-size:0; overflow:hidden; 
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
	z-index: 200;
}
	#mbCanvas div.image {
		-moz-border-radius: 22px;
		-webkit-border-radius: 22px;
		border-radius: 22px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

.clear{ clear:both; height:0; margin:0; padding:0; font-size:0; overflow:hidden; }


/* *** BOTTOM *** */

#mbBottom { 
	/* set text options */
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	padding-top: 3px;
	margin:0;
	border:none;
	-moz-border-radius: 0 0 12px 12px;
	-webkit-border-radius: 0 0 12px 12px;
	border-radius: 0 0 12px 12px;
}

/* navigation */
/* be careful if you change buttons dimensions */

	#mbCount{ 
		display: block;
		float: right;
		overflow:hidden;
		padding: 7px 13px 15px 10px;
		text-align:right;
		font-size: 22px; 
		color: #808080;
	}


	



#mbPlayPause{ width:13px; }
#mbPlayPause{ background: transparent url(play-pause.gif) no-repeat; }/* IMAGE: prev */


/* NOTE: doesn't work in ie6, so, just see the js options :) */
a#mbPlayPause:hover { background-position: 0 -22px; }


/* description */

#mbDescription{
	margin-right:27px;
	padding:0px 10px 0 0;
	font-weight: normal;
	text-align:justify;
}

