body {background-image: url(images/5008.png); background-size: 64px auto;}
h1 {font-family: 'Comic Sans MS'; text-align : center; font-size: 32px; text-shadow: 0.1em 0.1em 0.05em gray;}
h2 {font-family: 'Comic Sans MS'; text-align : center; font-size: 24px; text-shadow: 0.1em 0.1em 0.05em gray;}
h3 {font-family: 'Comic Sans MS'; text-align : center; font-size: 18px;}
h4 {font-family: Verdana, Arial, Helvetica, sans-serif; text-align : center; font-size: 12px;}
h5 {font-family: 'Comic Sans MS'; text-align : center; font-size: 24px;  color: blue;}
fieldset
{
    border:2px solid DarkSlateBlue;
    padding:10px;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
}
legend {font-size: 18px; font-weight: bold; color: Blue;}
button {cursor:pointer; font-family:verdana; font-weight:500;}
.menu
{
	background-color: green;
	position: absolute;
	bottom: 0;
}

.ok {font-size: large; color: green; font-weight: bold;}
.erreur {font-size: large; color: #A5260A; font-weight: bold;}
.salutation {color: #0000FF; font-weight: bold;}
.version {
	font-size: 30px;
	color: black;
	text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
	}

.doublon {font-family: 'Comic Sans MS'; text-align : center; color: #FF0000; font-size: 14px; font-weight: bold;}
.absent {color: #FF0000}
.present {color: #0000FF}
.dispo {color: #008000}
.date_ok {font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 14px; font-weight: bold;}
.date_perim {font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 14px; font-weight: bold; color: #999999}
.login {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; text-align : center;}
.logon {font-size: 14px; font-weight: bold;}
.infos {font-family: 'Comic Sans MS'; text-align : center; font-size: 14px; font-weight: bold;}
.annulee {font-style: italic; text-decoration: line-through;}
.decalee {color: #FF0000;}
.passee {color: #D3D3D3;}
.important {font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 18px; font-weight: bold;}


/* Code CSS pour gestion infobulle*/
a.info{
    position:relative;
    z-index:24;
    color:#000;
    text-decoration:none;
    }

    background-color:Wheat;

a.info:hover{z-index:25;}

a.info span{display: none; border-radius:3px;}

a.info:hover span{
/*le contenu de la balise span ne
sera visible que pour l'etat a:hover */
display:block;
position:absolute;
top:2em; left:2em; width:15em;
border:1px solid #8B2323;
background-color:#F5F5DC; color:#8B2323;
text-align: justify;
font-weight:none;
padding:1px;
}


button {
  text-decoration: none;
    font-size: 16.1px;
    color: #FFFFFF;
    font-family: font-family: "Josefin Sans", sans-serif;;
    background: linear-gradient(to bottom, #5A86FF, #335AD0);
    border: solid #7CAFFF 1px;
    border-radius: 10px;
    padding:5px;
    text-shadow: 0px 1px 2px #000000;
    box-shadow: 0px 1px 5px #0D2444;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
   }

button:hover {
  opacity: 0.9;
    background: linear-gradient(to bottom, #5A86FF, #335AD0);
    border-radius: 5px;
    box-shadow: 0px 1px 2px #000000;
   }

button:active {
   top: 1px;
   position: relative;
   }


select {
    padding:3px;
    margin: 0;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border-radius:6px;
    -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    -moz-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    /*background: #f8f8f8;*/
    background: #F0FFFF;
    color:#424242;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    font-size: 18px;
}

option {

  background: #F0FFFF;
}

hr {
    border: 0;
    height: 6px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
    margin: 25px;
}


input[type="date"]{
    padding:3px;
    margin: 0;
    border-radius:4px;
    box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
    background: #73C2FB;
    color:#424242;
    border:none;
    outline:none;
    display: inline-block;
    cursor:pointer;
}

details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 0.5em 0.5em 0;
}

summary {
    font-weight: bold;
    margin: -0.5em -0.5em 0;
    padding: 0.5em;
}

details[open] {
    padding: 0.5em;
}

@keyframes clignotement{
  0% {
    opacity:1;
  }
  50%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}
span.clignote{
  animation: clignotement 3s;
  animation-iteration-count:infinite;
  }
.ribbon {
  background-color: #a00;
  overflow: hidden;
  white-space: nowrap;
  /* top left corner */
  position: absolute;
  left: -50px;
  top: 40px;
  /* for 45 deg rotation */
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /* for creating shadow */
  -webkit-box-shadow: 0 0 10px #888;
     -moz-box-shadow: 0 0 10px #888;
          box-shadow: 0 0 10px #888;
}
.ribbon a {
  border: 1px solid #faa;
  color: #fff;
  display: block;
  font: bold 100% 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 1px 0;
  padding: 10px 50px;
  text-align: center;
  text-decoration: none;
  /* for creating shadow */
  text-shadow: 0 0 5px #444;
}


details {
  border-bottom: solid #ADADAD 2px;
  width: 50%; 
}

details:first-of-type {
  border-top: solid #ADADAD 2px;
}

details[open] {
  background-color: #eee;
  border-left: 3px solid #0000CD;
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

summary::after {
  content: '';
  border: solid #0000CD;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transition: 0.3s;
  transform: rotate(45deg);
}

details[open] > summary::after {
  transform: rotate(-135deg);
}

summary::-webkit-details-marker {
  display: none;
}

p {
  padding: 5px 20px;
  font-family: 'Comic Sans MS';
  font-size: 20px;
  width: 50%;
}


