/*Styles relatifs à la shadow box*/
/*Style du masque recouvrant la page au chargement de la shadow box*/
#page 
{
   position:absolute;
   left:0;top:0;
   z-index:100000;
   background-color:#000;
   display:none;
}

/*Positionnement et dimensions de la shadow box*/
#boxes .window 
{
   position:absolute;
   left:0;top:0;
   /*width:440px;
   height:200px;*/
   width:100%;
   height:100%;
   display:none;
   z-index:9999999;
   padding:20px;
   
}

#boxes #dialog 
{
   width:675px;
   height:50px;
   padding:10px;
   color:#00008B;
   border:3px solid #fff;
   background-color:#ffffff;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:22px;
   font-weight:bold;
   color:#990066;
   opacity:0.8;
   margin-top:-30px;
}

#return 
{
position:absolute;
margin-top:-140px;
margin-left:180px;
width:292px;
height:79px;
}

#return a {
	background-image:url(../../images/return.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-origin: border-box;
	
	display: inline-block; width: 330px; height: 330px;
	border-width: 15px;
	border-color: rgba(0,0,0,0);
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-transition: 0.15s ease;
	-moz-transition: 0.15s ease;
	-ms-transition: 0.15s ease;
	-o-transition: 0.2s ease;
	transition: 0.15s ease;
}

#return a:active {
	border-width: 0;
	border-color: rgba(217, 224, 237, 0.9);
	background-image:url(../../images/returnB.png);
}

/*Style du bouton*/
.shadowbox
{
   position:absolute;
   left:50%;
   top:50%;
   width:100px;
}

