/**
 * Dialog
 *
 * @author      Roland Franssen <franssen.roland@gmail.com>
 * @license     MIT
 * @version     2.1
 *
 **/
 
/* DONT CHANGE */
* html .fixed {
	position: absolute;
}
.fixed {
	position: fixed;
}

/* DIALOG CORE */
#dialog-overlay { top:0;left:0;width:100%;height:100%;z-index:1001 }
#dialog-container {
	overflow: hidden;
	z-index: 1002;
	text-align: left;
	border-radius: 11px;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
}

/* DIALOG TOP */
#dialog-top {
	background: #686868;
	border: 1px solid #ffffff;
	padding: 5px 5px 5px 15px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	border-top-left-radius: 11px;
	-moz-border-radius-topleft: 11px;
	-webkit-border-top-left-radius: 11px;
	border-top-right-radius: 11px;
	-moz-border-radius-topright: 11px;
	-webkit-border-top-right-radius: 11px;
}
#dialog-title{
	color: #333333;
}
#dialog-close {
	color: #ffffff;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
	font-size: 17px;
}
#dialog-close:hover {
	color: #cccccc;
}

/* DIALOG BOTTOM */
#dialog-bottom{
	background: #eeeeee;
	border-top: 1px solid #ccc;
	color: #666666;
	padding: 5px;
	text-align: center;
	font-size: 12px;
	border-radius: 11px;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
}
#dialog-bottom .next,
#dialog-bottom .prev {
	color: #cccccc;
	font-weight: bold;
	color: #333333;
}
#dialog-bottom .next:hover,
#dialog-bottom .prev:hover {
	color: #f90;
}
#dialog-bottom .next {
	padding-left: 10px;
}
#dialog-bottom .prev {
	padding-right: 10px;
}
#dialog-bottom .curr{
}

/* DIALOG MISC */
#dialog-loading {
	color: #cccccc;
	font-weight: bold;
	text-align: center;
	padding: 20px;
}

/* DIALOG PREDEFINED */
#dialog-container .alert,
#dialog-container .confirm {
	text-align: center;
	color: #999999;
}
#dialog-container .alert input,
#dialog-container .confirm input {
	font-weight: bold;
	width: 75px;
}

/* DIALOG PERSONAL */
#dialog-container .myFirstDialog {
	color: black;
	font-size: 20px;
}
#dialog-title {
	color: #ffffff;
	font-weight: bold;
}