/* MILKBOX */

#mbOverlayMB {
	position: absolute;
	left: 0;
	width:100%;
	background-color: #000; /* set the Milkbox overlay color // opacity: see the js options */
	z-index:100;
	cursor: pointer;
}

#mbCenterMB {
	/* for default width and height, see the js options */
	position: absolute;
	z-index:101;
	overflow:hidden;
	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: 5px solid #fff;/* set the Milkbox border */
	margin:0; padding:5px;/* set the Milkbox padding */
}

.mbLoadingMB{ background: #fff url(milkbox/loading.gif) no-repeat center; }/* IMAGE: loading gif */

#mbImageMB{ margin:0; padding:0;  border:none; /*height:0; font-size:0; overflow:hidden;*/ }

.clearMB{ clear:both; height:0; margin:0; padding:0; font-size:0; overflow:hidden; }


/* *** BOTTOM *** */

#mbBottomMB { 
	/* 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:8px;
	margin:0;
}

/* navigation */
/* be careful if you change buttons dimensions */

#mbNavigationMB{
	float:right;
	width:27px;
	padding-top:3px;
	border-left:1px solid #9c9c9c;/* set nav border */
}


#mbCountMB{ 
	width:55px; 
	overflow:hidden;
	padding-top:1px;
	float:right;
	text-align:right;
	font-size:9px; /* count font size */
}

#mbCloseLinkMB, #mbPrevLinkMB, #mbNextLinkMB{
	outline:none;
	display:block;
	float:right;
	height:20px;
	cursor: pointer;
}


#mbPrevLinkMB, #mbNextLinkMB{ width:17px; }
#mbPrevLinkMB{ background: transparent url(milkbox/prev.gif) no-repeat; }/* IMAGE: prev */
#mbNextLinkMB{ background: transparent url(milkbox/next.gif) no-repeat; }/* IMAGE: next */

/* NOTE: doesn't work in ie6, so, just see the js options :) */
a#mbPrevLinkMB:hover,a#mbNextLinkMB:hover,a#mbCloseLinkMB:hover { background-position: 0 -23px; }

#mbCloseLinkMB {
	width:20px;
	background: transparent url(milkbox/close.gif) no-repeat;/* IMAGE: close */
}

/* description */

#mbDescriptionMB{
	margin-right:27px;
	padding:0px 10px 0 10px;
	font-weight: normal;
	text-align:justify;
}



