/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

#splash{
	top:10px;
	margin-left: -490px;
	padding: 0px;
	width: 897px;
	height: 700px;
	background:none;
	border:0px;
}

#splash img.bg{
	position: absolute;
	margin: 0px;
	padding: 0px;
}

#splash img.logos{
	position: absolute;
	bottom:0px;
}

#splash a.lang{
	position:absolute;
	right: 0px;
	padding: 5px;
	margin: 15px;
	background-color: #000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}

#splash a.lang:hover{
	background-color: #444;
}

#splash .boutons{
	position: absolute;
	width: 100%;
	bottom: 0px;
	margin: 0px 0px 155px 0px;
	padding-left: 20px;
	text-align: center;
}

#splash .boutons a{
	display: inline-block;
	width: 332px;
	height: 59px;
}


#splash .boutons a.en.left{
	background: url('/img/splash_fleche_left_en.gif') no-repeat;
}
#splash .boutons a.en.left:hover{
	background: url('/img/splash_fleche_left_en-over.gif') no-repeat;
}
#splash .boutons a.en.right{
	background: url('/img/splash_fleche_right_en.gif') no-repeat;
}
#splash .boutons a.en.right:hover{
	background: url('/img/splash_fleche_right_en-over.gif') no-repeat;
}
#splash .boutons a.fr.left{
	background: url('/img/splash_fleche_left_fr.gif') no-repeat;
}
#splash .boutons a.fr.left:hover{
	background: url('/img/splash_fleche_left_fr-over.gif') no-repeat;
}
#splash .boutons a.fr.right{
	background: url('/img/splash_fleche_right_fr.gif') no-repeat;
}
#splash .boutons a.fr.right:hover{
	background: url('/img/splash_fleche_right_fr-over.gif') no-repeat;
}


.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}