/* MOOBOX CSS */



#mbox-overlay{

	background-color: #000; /* set the Milkbox overlay color // opacity: see the js options */

	z-index:50000;

	cursor: pointer;

}



/* Main box */

#mbox-mainbox{

	/* For default width and height, see the js options */

	top:10%;/* overwritten in the js options to properly position the main box when activated in a scrolled window */

	background-color: #fff;/* set the main box background color */

	border: 5px solid #fff;/* set the main box border */ 

	padding:10px;/* set the main box padding */
		
	-moz-border-radius:5px;

	-webkit-border-radius:5px;

	border-radius:5px;


	position:relative;
z-index:1;
behavior: url(templates/paradigm_shift/css/PIE.htc);

}



/* Where the files actually are injected */

#mbox-filebox{ margin:0; padding:0; border:none; overflow:hidden; }



#mbox-filebox img,

#mbox-filebox iframe,

#mbox-filebox swf{

	border:none;	

}



/*this class is for styling the inner file box*/

/*these styles will be visible after the first is loaded */

.mbox-filebox-decorations{

	border:none;

	padding:0;

}



/* *** BOTTOM *** */



/* container for controls and caption */

#mbox-bottom { 

	/* set text options */

	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;

	font-size: 12px;

	color: #656565;

	line-height: 1.4em;

	text-align: left;

	padding-top:8px;

	margin:0;

}



/* controls/navigation */

/* be careful if you change buttons dimensions */



#mbox-controls{

	/*background-color:#0f0;*/

	width:100%;

	padding-top:3px;

	float: right;

}



#mbox-count{ 

	overflow:hidden;

	padding-top:3px;

	line-height:22px;

	float:left;

	text-align:right;

	font-size:9px; /* count font size */

}



#mbox-close,

#mbox-prev,

#mbox-next,

#mbox-playpause{

	float:right;

	height:19px;

}



#mbox-prev,#mbox-next{ width:15px; }

#mbox-prev{ background: url(../assets/prev.gif) no-repeat; }/* IMAGE: prev */

#mbox-next{ background: url(../assets/next.gif) no-repeat; }/* IMAGE: next */



#mbox-playpause{ width:13px; }

#mbox-playpause{ background: url(../assets/play-pause.gif) no-repeat; }/* IMAGE: prev */



#mbox-close{

	width:17px;

	background:url(../assets/close.gif) no-repeat;/* IMAGE: close */

}



#mbox-prev:hover,

#mbox-next:hover,

#mbox-close:hover,

#mbox-playpause:hover{

	background-position:0 -22px;

}



/* description */

#mbox-caption{

	/*background-color:#f00;*/

	margin-right:27px;

	padding:0px 10px 0 0;

	font-weight: normal;

	text-align:justify;

	overflow-x: hidden;  /* make sure the controls at the right remain accessible, even for small images with very large filenames: those would otherwise overlap those controls at right */

}



.mbox-loading{ background:url(../assets/loading.gif) no-repeat center; }/* IMAGE: loading gif */

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



