body {
  padding:0px;
  margin:0px;
font-family: Verdana;
background-color: #f4f4f4;
}


.Bouton {
  display: inline-block;
  margin-bottom: 2px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;

}

.Bouton span {
position:relative;
vertical-align: middle;
width:16px;
height:16px;  
display: inline-block;  
margin-right:10px;
background: url(/images/sprite-bouton.png);

}



.Bouton.SansTexte span{
margin-right: 0px;
}
.Bouton.SansTexte {
padding: 7px;
}
.Bouton.SansFond {
  background: none;
}
.Bouton.Noir {
    color:#333!important;
}
.Bouton.Noir span {
  filter:invert(1)
}
.Bouton.Orange {
  background: #fc8e1e;
}
.Bouton.Vert {
  background: #00aa00;
}
.Bouton.Rouge {
  background: #dd0000;
  color:#fff;

}
.Bouton.Bleu {
  background: #386dff;
  Color:#FFF;
}
.Bouton.Orange:hover {
  background-color: #df770f;
}
.Bouton.Vert:hover {
  background-color: #008800;
}
.Bouton.Rouge:hover {
  background-color: #bb0000;
}

.Bouton.SansFond:hover,
.Bouton.SansFond.Active  {
  background-color: #ddd;
}

.Bouton.Disabled {
  background: #cecece;
  cursor:default;
}
.Bouton.Mini {
  padding:2px;
  padding-right:10px;
  font-size: 12px;
}
.Bouton.Mini span {
  margin-top:-2px;
  margin-right:2px;
}
.Bouton.Mini.SansTexte {
  padding:2px;
}
.Bouton span.Editer {
  background-position: 0px -16px;
}
.Bouton span.Rechercher {
  background-position: 0px -32px;
}

.Bouton span.Valider {
  background-position: 0px -48px;
}

.Bouton span.Imprimer {
  background-position: 0px -64px;
}

.Bouton span.Email {
  background-position: 0px -80px;
}

.Bouton span.Voir {
  background-position: 0px -96px;
}

.Bouton span.Supprimer {
  background-position: 0px -112px;
}

.Bouton span.Recharger {
  background-position: 0px -128px;
}

.Bouton span.Sauvegarder {
  background-position: 0px -144px;
}

.Bouton span.Telecharger {
  background-position: 0px -160px;
}

.Bouton span.Upload {
  background-position: 0px -160px;
  transform: rotate(180deg);
}
.Bouton span.Historique {
  background-position: -16px -112px;
}

.Bouton span.Deplier {
  background-position: 0px -176px;
}
.Bouton span.Retirer {
  background-position: 16px 0px;
}
.Bouton span.Interdit {
  background-position: 16px -16px;
}
.Bouton span.Copier {
  background-position: 16px -96px;
}
.Bouton span.Envoyer {
  background-position: 16px -176px;
}
.Bouton span.Verouiller {
  background-position: 16px -48px;
}
.Bouton span.Deverouiller {
  background-position: 16px -32px;
}

.Bouton span.Retour {
  background-position: 0px -176px;
  transform: rotate(90deg);
}
.Bouton span.RotRight {
background-position: -32px -160px;
}
.Bouton span.RotLeft {
background-position: -32px -176px;
}
.Bouton span.Rot180 {
transform: rotate(180deg);
}
.Bouton span.Fermer {
transform: rotate(45deg);
}
.Bouton.DropDown {
display: inline-block;
cursor:pointer;
}
.Bouton.Droite {
float:right;
margin-right:10px;
}
.Bouton div.DropDown {
  display: none;
  position:absolute;
  background: #fff;
    box-shadow: 2px 2px 5px #333;
    color:#333;
    font-size: 12px;
    min-width:150px;
    z-index:999;
}
.Bouton:hover div.DropDown {
  display: block;
}

h1 {
  font-size: 20px;
  text-align: center;
  color:#666;
}
header {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  border-bottom:1px solid #cecece;
}
header a#Logo {
  display: inline-block;  
  height:40px;
  margin:auto;
  margin-top:5px;
  width:80%;  
  background: url(/images/logo-akisiweb-fond-clair.png) no-repeat 50%;
  background-size:auto 80%;
}
header a#MenuBtn {
  width:40px;
  height:40px;
  background: #b6b6b6;
  display: block;
  float:right;
  margin:5px;
  border-radius: 5px;;
  
}
header a#MenuBtn img {
  width:25px;
}
header ul#MenuPan {
  list-style: none;
  padding:0px;
  margin:0px;
  position:absolute;
  width:50%;
  max-width:400px;
  right:0px;
  background: #b6b6b6;
  top:50px;
  display: none;
  z-index: 999;
}
#MenuPan a {
  text-decoration: none;
  color:#fff;
}
.Logged header a#Logo {
  float:left;
  margin-left:5px;
  width:280px;
}

.Mobile header a#Logo {
  background-size:auto 60%;

}

.Mobile.Logged header a#Logo {
  float:left;
  margin-left:10px;
  background-position:0px; 
}
@keyframes Loading {
  from {    
    margin-left:0%;
    width: 0%;
  }
  50% {
    margin-left:0%;
    width: 100%;
  }
  to {
    margin-left:100%;
    width: 0%;    
  }
}

div#LoadingBar {
  width:100%;
  height:10px;
  position: absolute;
  overflow: hidden;
  display: none;
  top:0px;
}

div#LoadingBar div {
  height:0px;
  border:1px solid #ff0000;
  box-shadow: 0px 0px 5px #f00;
  animation-duration:5s;
  animation-iteration-count: infinite;
  animation-name: Loading;
}

#LoginPan {
  width: 25%;
  max-width: 300px;
  border: 1px solid #999;
  box-shadow: 3px 3px 1px #999;
  margin:auto;
  margin-top: 150px;
  border-radius: 5px;
}
.Mobile div#LoginPan {
  width:95%;
  border:0px;
  box-shadow: none;
  margin-top:50px;
}


#LoginPan form {
  padding:10px;
}
#LoginPan b {
  display: block;
  background: #87b619;
  padding:5px 15px;
  border-radius: 5px 5px 0px 0px;
  color:#fff;
font-size:14px;
  height:25px;
  line-height:25px;
  text-shadow:1px 1px 1px #333;
}
.Mobile div#LoginPan b {
  display: none;
}


#LoginPan label {
  display: block;
  font-size:12px;
margin-left:5%;
margin-bottom:5px;
}
#LoginPan input[type=submit],
#LoginPan input[type=text],
#LoginPan input[type=password] {
  display: block;
  width: 80%;
  margin-left:5%;
  margin-bottom:5%;
  padding: 5%;
  border-radius: 5px;
  border-width:1px;
  border-color:#cecece;
  border-style: solid;
}

#LoginPan input[type=submit] {
  width:90%;
  background-color: #222a35;
  color:#FFFFFF;
}

p#LoginInfos {
  width:50%;
  margin:auto;
margin-top:50px;
text-align: center;
}
.Mobile p#LoginInfos {
  width:100%;
}
p#LoginInfos span {
  display: block;
  font-size: 25px;
  margin-bottom: 15px;
}

div#LoginInfoPan {
  display: none;
  margin:30px;
  color:#cc0000;
  line-height: 1.5em;
}
p.Infos {
  width:90%;
  max-width:600px;
  margin:auto;
  margin-top:20px;
  margin-bottom:30px;
  line-height: 30px;
  
}
.Pan,
.Tuile {
  width:90%;
   background: #fff; 
   margin:auto;
   padding:15px;
   border: 1px solid #cecece;
   margin-bottom: 10px;
   border-radius: 10px;
   max-width: 600px;
   font-size:12px;
   overflow: hidden;
 }
 .Tuile.Derniere {
  line-height: 25px;
  background: #006eff;
  Color:#eeeeee;
font-size:16px;
}
 .Pan b.Titre {
   display: block;
   text-align: center;
   border-bottom: 1px solid #cecece;
   margin-bottom: 15px;
   height:25px;  
 }
 .ReponseTuile {
  width:80%;
  padding:10px;
  display: block;
  margin:auto;
  margin-bottom:10px;
  border: 1px solid #cecece;
  border-radius: 5px;
}
 #InitDemandeRappelPan a,
 .Tuile a {
   display: block;
   width:80%;
   padding:10px;
   text-align: center;
   background: #eee;
   margin:auto;
   margin-bottom:5px;
   border: 1px solid #cecece;
   border-radius: 5px;
   text-decoration: none;
   color:#666;
 }

 #InitDemandeRappelPan a.Selected,
 .Tuile a.Selected {
  background: #87b619;
  color:#333b30;
}

#Tuiles {
  margin-bottom:50px;
} 

div.Demande {
  font-size: 12px;
}
div.Demande span.Etat {
  background: #eee;
  padding:3px 7px;
  width:85px;
  display: inline-block;
  text-align: center;
  
  border-radius:5px;
  
}

div.Detail {
  margin: 10px;
}
div.Questions {
  margin-top:10px;
  margin-left:20px;
}

div.Detail {
  margin: 10px;
}
div.Questions {
  margin-top:10px;
  margin-left:20px;
}
div.Reponse {
  margin-top:10px;
  margin-left:20px;
  background: #eee;
  font-size: 12px;
  padding: 5px;
}

.Tuile.encours {
  background: #8bbeff33;
}

.Tuile.encours span.Etat {
  background: #8bbeff;
  color:#333;
}

.Tuile.traitee {
  background: #60d63533;
}

.Tuile.traitee span.Etat {
  background: #60d635;
  color:#333;
}


.Tuile.messagerie {
  background: #ffa70033;
}

.Tuile.messagerie span.Etat {
  background: #ffa700;
  color:#333;
}

.Tuile.probleme {
  background: #ff7a7a33;
}

.Tuile.probleme span.Etat {
  background: #ff7a7a;
  color:#333;
}

div.Big {
  height:48px;
  line-height:24px;
  font-size: 12px;
  font-weight: bold;
}
div.Big span {
  font-size:12px;
  font-weight: normal;
}

a.GrosBouton {
  min-height: 48px;
  line-height: 48px;
  width:90%;
  background: #eee;
  display: block;
  margin:auto;
  text-decoration: none;
  color:#555;
  font-size:14px;
  border-radius:5px;
}
#HomePan a.GrosBouton {
  margin-bottom:2%;
}

a.GrosBouton span {
  display: inline-block;
  width:48px;
  height:48px;  
  vertical-align: middle;
  margin-right:10px;
  background-image: url(../images/sprites.png?V=2.3);
}
a.GrosBouton.SansTexte {
  width:48px;
}

.GrosBouton.SansFond {
  background: transparent;
}

a.GrosBouton.Droite {
  float:right;
}
a.GrosBouton.LeftRound {
  border-radius: 24px 5px 5px 24px;;
}
span.Bulle {
  background-position: -96px 0px;
}
span.Historique {
  background-position: 0px -48px;
}

span.Photos {
  background-position: -48px 0px;
}

span.Documents {
  background-position: -144px 0px;
}

span.Site {
  background-position: -48px -48px;
}
span.Annuler {
  background-position: -96px -48px;
}

span.QrCodes {
  background-position: -144px -48px;
}
span.Flyers {
  background-position: -48px -96px;
}
span.BatVal {
  background-position: -96px -96px;
}
span.Valider {
  background-position: 0px -96px;
}

#PhotothequePhotos b {
	display: block;
	font-size: 16px;
	padding:10px 10px;
  border-bottom:1px solid #333;
  }
   

  div.PhotothequePhoto {
    width:30%;
    height:100px;
    border:1px solid #cecece;
    margin:1% 1% 0% 0%;
    overflow:hidden;
    padding:2px;
    text-align: center;
    float: left;
  }
    
    div.PhotothequePhoto img {
      height:100%!important;
    }

    .PhotothequePhotosPan {
      text-align: center;
      margin-top: 5px;
    }
    
    .PhotothequePhoto a.Control {
      width:30px;
      height:30px;
      line-height:30px;
      color:#fff;
      text-decoration: none;
      font-size: 20px;
      display: block;  
      background:#00000055;  
      position:absolute;
    }

    div.Control {
      background: #000000dd;
      position:absolute;
      width:auto;
      height: 30px;
    }

    .dz-message {
      display: inline-block!important;
      /* background-image: url("/js/dropzone/images/spritemap.png")!important; */
      /* background-size: 94%!important; */
      width: 90%!important;
    height: 100px!important;
    margin-left: 10%!important;
    left: 0%!important;
    }

    .Mobile .dropzone {
      min-height:150px!important;
    }

    .QrCodesPans {      
      display: none;
    }

.QrCodesPans.Active {
  display: block;
}

    div#FlyerCarousel {
      margin:20px auto;
      width:80%;      
      overflow: hidden;
      background: #ddd;
      border:1px solid #fff;
      box-shadow: 0px 0px 5px #999;
    }
    
    
    
    div#FlyerCarousel div img {
      width: 100%;
    }
    #Diapos {      
      position:relative;
    }
    .Diapo {      
      position:relative;
      float: left;
    }
    div.BatImg {
      width:100%;
      /* height: 250px; */
      overflow:auto;
      margin-bottom:10px;     
      background-size: 100%;
      background-repeat: no-repeat;
      background-attachment: local;
      aspect-ratio: 1.5;
    }

    div.BatImg img {
      width:100%;
      height:100%;
    }

div.BatImg.Double img {
      width:200%;
  height:200%;
}


#InitFlyersPan div.Infos div {
  margin-bottom:25px;
}
#InitFlyersPan span.Prix,
#InitFlyersPan span.Quantite {
  font-size: 3em;
  border:2px solid #cecece;
  padding:10px;
  border-radius: 10px;
  display: inline-block;
  transform: rotate(-10deg);
  margin-top:10px;
}
#InitFlyersPan span.Quantite {
  transform: rotate(10deg);
  text-align: center;
  float:right;
}
#InitFlyersPan span.Quantite sup {
  font-size: .6em;
}
#InitFlyersPan span.Quantite em {
  display: block;
  font-size: .4em;
}
#InitFlyersPan span.Prix sup {
  font-size: .6em;
}

#InitFlyersPan b {
  
  font-size: 1.5em;
}

div.AutresInfos {
  text-align: center;
  font-size: 1.3em;
}
div#InfoSite {
  background: #fff;
  font-size: .8em;
  border-bottom: 1px solid #dedede;
  padding:3px;
  padding-left:15px;
  margin-bottom:5px;
}


div.BatImg p {
  width:90%;
  text-align: center;
  background: #ffffffcc;
  padding:5%;
  color:#000;
}

.Pan.Invisible {
  border:0px;
  padding:0px;  
  border-radius:0px;
  margin-bottom:5px;
  background:transparent;
  
}

.Pan.Invisible a.BoutonsCtrl {
  display: inline-block;
  background: #ccc;
  height:45px;
  line-height:45px;
  text-align:center;
  color:#666;
  text-decoration:none;
  font-size: 1.0em;
  border: 1px solid #ccc;
}
.Pan.Invisible a.BoutonsCtrl.Active {
  background: #fefefe;
  border-color: #cecece;
  color:#333
}

.Pan.Invisible a.BoutonsCtrl:nth-of-type(1) {
  border-radius:5px 0px 0px 5px;
}
.Pan.Invisible a.BoutonsCtrl:last-child {
  border-radius:0px 5px 5px 0px;
}

.Pan.Invisible.NBB2 a {
  width:48%;
}

.Pan.Invisible.NBB3 a {
  width:31%;
}
.Pan.Invisible.NBB4 a {
  width:23%;
}


.Mobile div#ChoixAlbum {
  display: block;
  margin-top:100px;
  position:absolute
}