@font-face{
  font-family: "Myriad";
  src:url('fonts/Myriad.ttf');
}
@font-face{
  font-family: "Circular";
  src:url('fonts/Circular_Std.ttf');
}
/* général */
*{
    font-size:16px;
    font-family:Circular;
    font-weight:normal;
    cursor:default;
}
.boutmenu {
   text-decoration: none;
   cursor:pointer;
   background-color: lightyellow;
}
.boutmenu:hover {
   color: white;
   background-color: blue;
}
a:visited {
   text-decoration: none;
   color: #FF00FF;
   font-style: italic;
}
a:hover {
   text-decoration: underline;
   color: #FF00FF;
   font-style: italic;
   cursor:pointer;
}
.txtRougeBold{
    font-weight:bold;
    cursor:default;
    color:#f00;
}
.txtBleuBold{
    font-weight:bold;
    cursor:default;
    color:blue;
}
a {
   text-decoration: none;
   color: #FF00FF;
   font-style: italic;
   margin-left: 0.5em;
   margin-right: 0.5em;
}
.ptitxt{
    font-size:14px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
}
.ptitxtBold{
    font-size:14px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:bold;
    cursor:default;
}
.ptitxtBleu{
    font-size:14px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
    color:blue;
}
.ptitxtBlanc{
    font-size:12px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
    color:white;
}
.ptitxtRouge{
    font-size:16px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
    color:red;
}
.ptitxtBleuBold{
    font-size:14px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
    color:blue;
    font-weight:bold;
}
.ptitxtRougeBold{
    font-size:14px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:bold;
    cursor:default;
    color:#f00;
}
.grdtxt{
    font-size:18px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:normal;
    cursor:default;
}
.grdtxtBold{
    font-size:18px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:bold;
    cursor:default;
}
.grdtxtRougeBold{
    font-size:18px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:bold;
    cursor:default;
    color:#f00;
}
.grdtxtBleuBold{
    font-size:18px;
    font-family:Myriad;
    margin:0;
    padding:0;
    font-weight:bold;
    cursor:default;
    color:blue;
}
.shad-BlancBleu {
  text-shadow:
    1px 2px 2px black,
    0 0 1em blue,
    0 0 0.2em blue;
  color: white;
}
.shad-NoirBleu {
  text-shadow:
    1px 2px 2px white,
    0 0 1em blue,
    0 0 0.2em blue;
  color: black;
}
hr{
    border: 0;
    height: 2px;
    margin:10px;
    background-image: linear-gradient(90deg, lightblue, blue, blue, lightblue);
    opacity:0.5;
}
body{
    width:100%;
    height:100%;
}
.menu {
    width: 90%;margin-left: 5%;
    background-color: lightgrey;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 600px) {
    .menu{width: 100%;margin-left: 0%;}
}
.menu .categorie {
        background: lightgrey;
        position: relative;  /* pour être la «racine» du sous-menu en absolute */
}
.menu .categorie ul {
        max-height: 0;
        overflow: hidden;
        position: absolute;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;  /* pour avoir la même largeur que la «racine» */
}
.menu h2{
        font-size: 1em;
        display: block;
        margin: 0;
        padding: .25em 0.5em;
        color: blue;
        background-color: lightgrey;
        text-decoration: none;
        box-sizing: border-box;
}
.menu a {
        font-size: 1em;
        display: block;
        margin: 0;
        padding: .25em .5em;
        color: blue;
        background-color: lightgrey;
        text-decoration: none;
        box-sizing: border-box;
}
.menu .categorie:hover ul {
        max-height: 30em;
        transition: 1s;
}
.menu .categorie:hover h2 {
        font-size: 1em;
        color: white;
        background-color: blue;
}
.menu a:hover {
        font-size: 1em;
        color: white;
        background-color: blue;
}
.menu-dropdown {
  min-width: 100%;
  padding: .25em 0.5em;
  position: absolute;
  background: #ebebeb;
  z-index: 100;
  transition:
    0.5s padding,
    0.5s background;
}
.menu:not(:hover) > .menu-dropdown {
  padding: 0.5em;
  background: #dddddd;
  z-index: 99;
}
.menu-dropdown > * {
  overflow: hidden;
  height: 28px;
  padding: .25em 0.5em;
  background: rgba(0,0,0,0);
  white-space: nowrap;
  transition: 
    0.5s height cubic-bezier(.73,.32,.34,1.5),
    0.5s padding cubic-bezier(.73,.32,.34,1.5),
    0.5s margin cubic-bezier(.73,.32,.34,1.5),
    0.5s 0.2s color,
    0.2s background-color;
}
.menu:not(:hover) > .menu-dropdown > * {
  visibility: hidden;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  color: rgba(25,25,25,0);
  transition: 
    0.5s 0.1s height,
    0.5s 0.1s padding,
    0.5s 0.1s margin,
    0.3s color,
    0.6s visibility;
  z-index: 99;
}
.clignotant{
    cursor:default;
}
.clignotant{
   animation:clignotant-blink 2s ease-in-out infinite;
   animation-fill-mode: forwards; 
}
@keyframes clignotant-blink {
  0%, 15%, 40%, 60%, 80%, 100% { 
    text-shadow:
      0 0 7px hotpink,
      0 0 10px hotpink,
      0 0 20px hotpink,
      0 0 50px hotpink,
      0 0 70px hotpink,
      0 0 100px hotpink;
  }
  30%, 65%, 95% { text-shadow: unset; } /* coupures */
}
#bandeau{
    width:90%;
    margin-left:5%;
    padding-bottom: 2px;
    height:120px;
    background:linear-gradient(gray, lightgray, white);
}
#bandeau .entete{
    width:90%;
    margin-left:5%;
}
#corps{
    position:relative;
    width:90%;
    margin-left:5%;
    background-color:white;
    padding-top: 5px;
    padding-bottom: 15px;
}
#bandeau_juge{
    width:100%;
    height:45px;
    background:linear-gradient(gray,lightgray, white);
}
#bandeau_juge .entete{
    width:100%;
}
#corps_juge{
    position:relative;
    width:100%;
    background-color:white;
    padding-top: 5px;
}
#bandeau_visu{
    width:100%;
    margin-top:-0.8%;
    height:60px;
    background:linear-gradient(gray,lightgray, white);
}
#bandeau_visu .entete{
    width:100%;
    padding-top:50px;
}
#corps_visu{
    position:relative;
    width:90%;
    margin-left:5%;
    background-color:white;
    padding-top: 5px;
    padding-bottom: 15px;
}
#corps_visit{
    position:relative; 
    width:100%;
    margin-left:0;
    background-image:url(img/fond_scene.png);
    background-repeat: no-repeat;
    background-size:100%;
  }
@media (max-width: 1500px){
  #corps_visit{
    background-image:url(img/fond_scene_43.png);
  }
}
.att_juge{
    color:gray;
    font-size:30px;
}
#bas{
    border:0;
    position:relative;
    width:90%;
    margin-left:5%;
    background:linear-gradient(white,lightgray,lightgray,gray);
    padding-bottom: 5px; 
}
#bas .adresse{
    border:0;
    display:inline;
    width:15%;
    vertical-align: middle;
    text-align:center;
}
#bas .connectes{
    border:0;
    width:15%;
    display:inline;
    vertical-align: middle;
}
#bas .ministeres{
    border:0;
    width:50%;
    display:inline;
    vertical-align: middle;
    text-align:center;
}
input {
    border-radius: 3px;
    padding:2px 4px 2px;
    margin:2px;
    color:#0066FF;
    background-color:lightcyan;
    font-size:12px;
} 
select {
    border-radius: 3px;
    color:#0066FF;
    background-color:lightcyan;
    font-size:12px;
    padding:2px 4px 2px;
}
.btvalcat {
    font-size:14px;
}
.btvalcat:hover {
    font-size:14px;
    background-color:lightcyan;
}
#tableauPage{
    width:95%;
    border-radius: 5px;
    border-width:1px; 
    border-style:solid;
    margin:10px;  
    background:rgba(176,224,230,0.4);
}
#tableauPage tr td{
    background:rgba(255,255,255,0.5);
    border-radius: 5px;
    border-width:1px; 
    border-style:solid;
    padding:2px 5px 2px;
}
#tableauSerie{
    width:95%;
    border-radius: 5px;
    border-width:1px; 
    border-style:solid;
    margin:10px;  
    background-color:PowderBlue;
}
#tableauSerie tr td{
    background-color: white;
    border-radius: 5px;
    border-width:1px; 
    border-style:solid;
    padding:2px 5px 2px;
}
#tableauControle{
    width:95%;
    background-color:blue;
}
.tableau {
	color: #FFFF00;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.tableau1 {
	color: #FFFF00;
	font-size: 14px;
	text-align: right;		
}
.tableau4 {
	color: #FFFF00;
	font-size: 16px;
	text-align: center;		
}
.tableau2 {
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.imgAff{
    cursor:pointer;
    height:20px;
    vertical-align:bottom;
}
.imgAff:hover{
   background-color: gold;
}
A.menulink {
padding-left: 2px;
padding-right: 2px;
width: 80px;
height: 15px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#006699;/* Bleu foncé*/
text-align: center;
border-radius:4px;
}
A.menulink:hover {
border: solid 1px #006699;
background-color:#FFFFFF;
color: #000000;
}
A.menulink1 {
padding-left: 2px;
padding-right: 2px;
width: 80px;
height: 16px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#FE9A2E; /* orange */
text-align: center;
border-radius:4px;
}
A.menulink1:hover {
border: solid 1px #006699;
background-color:#FFFFFF;
color: #000000;
}
A.menulink2 {
padding-left: 2px;
padding-right: 2px;    
width: 80px;
height: 16px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#33CC00;/* vert */
text-align: center;
border-radius:4px;
}
A.menulink2:hover {
border: solid 1px #006699;
background-color:#FFFFFF;
color: #000000;
}
A.menulink3 {
padding-left: 2px;
padding-right: 2px;
width: 80px;
height: 16px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#00BFFF;/* Bleu azur */
text-align: center;
border-radius:4px;
}
A.menulink3:hover {
border: solid 1px #006699;
background-color:#FFFFFF;
color: #000000;
}
A.menulink4 {
padding-left: 2px;
padding-right: 2px;
width: 80px;
height: 16px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#FF4500;/* rouge */
text-align: center;
border-radius:4px;
}
A.menulink4:hover {
border: solid 1px #006699;
background-color:#FFFFFF;
color: #000000;
}
A.menulink5 {
padding-left: 2px;
padding-right: 2px;
width: 80px;
height: 16px;
font-family:Verdana;
font-size:12px;
color: #FFFFFF;
border: solid 1px #006699;
background-color:#008080;/* bleuvert */
text-align: center;
border-radius:4px;
}

#cadreplacedoss{
    position:relative;
    margin-top:10px;
    padding-bottom:10px;
    border-radius:40px;
    background-color:rgba(0,120,255,0.25);
}
.Dossards{
    Display:inline-block;
    vertical-align: top;
    border-radius:10px;
    width:25%;height:165px;
    text-align:center;
    margin-top:5px;
    border:2mm ridge rgba(255,255,255,0.8);
    background-image:linear-gradient(90deg, lightblue, white,white, white,lightcoral);
}
.Aff_doss{
    text-align:center;
    font-size:70px;
    margin:5px 2px;
    color:red;
}
.Aff_noms{
    text-align:center;
    font-size:20px;
    margin:5px 2px;
    color:grey;
}