
/* Created by Arian Stolwijk <http://www.aryweb.nl> */

.MooDialog {
/*	position: fixed;*/
	width: 300px;
	height: 100px;
	position: fixed;
	margin: -150px 0 0 -150px;
	top: 50%;
	left: 50%;
	z-index: 50000;

	background: #eef5f8;
	color: black;
	padding: 10px;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.MooDialogTitle {
	padding-top: 30px;
}

.MooDialog .content {
	height: 100px;
	background : none;
}

.MooDialog .title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 3px 20px;
	background: #b7c4dc;
	border-bottom: 1px solid #a1aec5;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
	color: black;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

.MooDialog .close {
	background: url(http://www.ultimahora.com//libs/mootoolsDialog/Source/css/dialog-close.png) no-repeat;
	width: 16px;
	height: 16px;
	display: block;
	cursor: pointer;
	top: 5px;
	right: 5px;
	position: absolute;
}

.MooDialog .buttons {
	text-align: right;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}

.MooDialog .iframe {
	width: 100%;
	height: 100%;
}

.MooDialog .textInput {
	width: 200px;
	float: left;
}

.MooDialog .MooDialogAlert,
.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPrompt,
.MooDialog .MooDialogError {
	background: url(http://www.ultimahora.com//libs/mootoolsDialog/Source/css/dialog-warning.png) no-repeat;
	padding-left: 40px;
	min-height: 40px;
	width     : 240px;
}

.MooDialog .MooDialogConfirm,
.MooDialog .MooDialogPromt {
	background: url(http://www.ultimahora.com//libs/mootoolsDialog/Source/css/dialog-question.png) no-repeat;
}

.MooDialog .MooDialogError {
	background: url(http://www.ultimahora.com//libs/mootoolsDialog/Source/css/dialog-error.png) no-repeat;
}


/* MILKBOX 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:5px;/* set the main box padding */
}

/* 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;*/
	float:right;
	width:27px;
	padding-top:3px;
	border-left:1px solid #9c9c9c;/* set nav border */
}

#mbox-count{ 
	overflow:hidden;
	padding-top:1px;
	float:right;
	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(http://www.ultimahora.com//libs/milkbox-3/css/milkbox/prev.gif) no-repeat; }/* IMAGE: prev */
#mbox-next{ background: url(http://www.ultimahora.com//libs/milkbox-3/css/milkbox/next.gif) no-repeat; }/* IMAGE: next */

#mbox-playpause{ width:13px; }
#mbox-playpause{ background: url(http://www.ultimahora.com//libs/milkbox-3/css/milkbox/play-pause.gif) no-repeat; }/* IMAGE: prev */

#mbox-close{
	width:17px;
	background:url(http://www.ultimahora.com//libs/milkbox-3/css/milkbox/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(http://www.ultimahora.com//libs/milkbox-3/css/milkbox/loading.gif) no-repeat center; }/* IMAGE: loading gif */
.mbox-reset{ clear:both; height:0; margin:0; padding:0; font-size:0; overflow:hidden; }

