/*

Cette feuille de style sert à l'affichage :
	- des fenêtres
	- du masque

Attention, certaines modifications peuvent entraîner
de gros problèmes.

Auteur: L. VERGNAUD

*/

/* Container for all javascript graphicalWindow objects */
.graphicalWindowContainer {
	position: absolute;
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowLeft {
	width: 11px;
	background-image: url(../images/window/left.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowRight {
	width: 21px;
	background-image: url(../images/window/right.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowTop {
	height: 11px;
	background-image: url(../images/window/top.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowTopLeft {
	width: 11px;
	height: 11px;
	background-image: url(../images/window/top-left.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowTopRight {
	width: 21px;
	height: 11px;
	background-image: url(../images/window/top-right.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowBottom {
	height: 21px;
	background-image: url(../images/window/bottom.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowBottomLeft {
	width: 11px;
	background-image: url(../images/window/bottom-left.png);
	behavior: url(../images/window/iepngfix.htc);
}

/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowBottomRight {
	width: 21px;
	background-image: url(../images/window/bottom-right.png);
	behavior: url(../images/window/iepngfix.htc);
}


/* Banner close button for all javascript graphicalWindow objects */
.graphicalWindowBannerButtonClose {
	width: 20px;
	text-align: right;
	vertical-align: middle;
	background-color: #fff;
}

/* Banner title for all javascript graphicalWindow objects */
.graphicalWindowBannerTitle {
	font-size: 14px;
	letter-spacing: -1px;
	background: url(../images/puce.png) no-repeat left center;
	padding: 8px 0px 5px 20px;
	margin: 0px;
	padding-left: 40px;
	background-color: #fff;
	color: #0e76ab;
	text-transform: uppercase;
	font-weight: bold;
}

/* Sub container of the content for all javascript graphicalWindow objects */
.graphicalWindowSubContainer {
	position: relative;
	background-color: #fff;
	color: #626065;
	padding: 0px;
	margin: 0px;
}

.submit, .frameSubmit {
	text-align: right;
}

/* Mask for modal windows */
.mask {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 500px;
	background-color: #626065;
	display: none;
	opacity: 0.65;
	-moz-opacity: 0.65;
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=65);
}