/**
 * 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: 9000
}

/* Pour définir la couleur de fond et de bordure c'est ici ! */
#dialog-container {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	z-index: 9001;
	text-align: left;
	/* changer la bordure */
	border: 3px solid #E1011B;
	/*ne pas changer, sauf cas spécial*/
	background: #FFF url(../img/dialog/bckg_dialog.jpg) top left !important;
}

/* DIALOG TOP */
#dialog-top {
	background: #FFF;
}

#dialog-title {
	
}

#dialog-close {
	
}

/* DIALOG BOTTOM */
#dialog-bottom {
	background: #eee;
	border-top: 1px solid #ccc;
	color: #666;
	padding: 5px;
	text-align: center;
	font-size: 12px
}

#dialog-bottom .next,#dialog-bottom .prev {
	color: #ccc;
	font-weight: bold;
	color: #333
}

#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: #ccc;
	font-weight: bold;
	text-align: center;
	padding: 20px
}

/* DIALOG PREDEFINED */
#dialog-container .alert,#dialog-container .confirm {
	text-align: center;
	color: #999
}

#dialog-container .alert input,#dialog-container .confirm input {
	font-weight: bold;
	width: 75px
}

/* DIALOG PERSONAL */
#dialog-close {
	background: url(../img/dialog/close_dialog.png) no-repeat;
	width: 25px;
	height: 29px;
	display: inline;
	z-index: 32000;
	position: absolute;
	top: -15px;
	right: -16px;
	cursor: pointer;
}

#dialog-container .myFirstDialog {
	background: #BDE5F1;
}

/*
* personnalisation errorDiv
*
/

/* personalisation Dialog.simple() */
#dialog-container .simpleDiv {
	color: #E1011B;
	font-weight: bold;
	text-align: left;
}

#dialog-container .simpleDiv li {
	list-style: disc;
	margin: 2px;
}

;
#errorDiv {
	display: none;
}
;
