﻿@charset "utf-8";   

body {
	font-family: Arial;
	font-size: 1.0vw;
}

.main {
	position: relative;
	top: +5px;
}

.banner {
	z-index: 10;
	width: 100%;
	border: none;
	border-collapse: collapse;
	color: white;
	background-color: darkblue;
	font-size: 10px;
	font-weight: bold;
/*	border-left: 4px solid white; */
/*	border-right: 4px solid white;*/
}

.banner tr {
	height: 30px;
}

.banner td {
	vertical-align: middle;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: lightgrey;
  z-index: -10;
  color: black;
  font-size: 70%;
  padding-left: 10px;
  border-left: 4px solid white;
  border-right: 4px solid white;
}

/* styles liés aux RWP */
* {
	box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding-left: 4px;
  padding-right: 4px;
  width: 100%;		/* For mobile phones */
}

@media only screen and (min-width: 800px) and (max-width: 999px) {
  /* For tablets: */
  .col-s-1 {width: 10%;}
  .col-s-2 {width: 20%;}
  .col-s-3 {width: 30%;}
  .col-s-4 {width: 40%;}
  .col-s-5 {width: 50%;}
  .col-s-6 {width: 60%;}
  .col-s-7 {width: 70%;}
  .col-s-8 {width: 80%;}
  .col-s-9 {width: 90%;}
  .col-s-10 {width: 100%;}
}
@media only screen and (min-width: 1000px) {
  /* For desktop: */
	.col-1 {width: 10%;}
	.col-2 {width: 20%;}
	.col-3 {width: 30%;}
	.col-4 {width: 40%;}
	.col-5 {width: 50%;}
	.col-6 {width: 60%;}
	.col-7 {width: 70%;}
	.col-8 {width: 80%;}
	.col-9 {width: 90%;}
	.col-10 {width: 100%;}
}


.stacked {
	text-align: center;
	white-space: nowrap;
}

@media only screen and (max-width: 999px) {
	.stacked {
		text-align: center;
		white-space: pre;
	}
}

form {
	display: inline;

}

select {
	color: black;
}

select:hover {
	box-shadow:  0 0 4px 2px cyan;
}

input:hover {
	box-shadow:  0 0 4px 2px cyan;
}

button {
	cursor: pointer;
	min-height: 16px;
	border-radius: 8px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}

button#calendar, button#calendar:hover {
	border: 3px solid yellow;
}

button[type=submit]:not(.sortable) {
	cursor: pointer;
	border-radius: 8px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}


button[type=submit]:not(.sortable):disabled {
	cursor: pointer;
	border-radius: 8px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid lightgrey;
	background-color: white;
	 color: lightgrey;
}

ul.menuUtilisateur button, button.inactifs {
	background-color: darkblue;
		color: white;
		font-weight: bold;
		border: none;
} 

td.membre button, td.membre button:hover {
	background-color: inherit;
	color: inherit;
	border: none;
}

button:not(.sortable):not(disabled):hover {
	background-color: darkblue;
	color: white
}

button#calendar {
	 background-image: url("../Images/calendar.gif");
	 width: 20px;
	 height: 20px;	 
	}
	
button.print {
	 font-size: 0.8vw;
	 border: 2px outset darkgrey;
	}		

button.sortable {
	height: 100%;
	width: 100%; 
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent; 
	border: none; 
	outline: none;
	font-size: inherit;
	font-weight: inherit;
}	
	
#MenuMembre input, #ShowInactifs button {
	background-color: inherit;
	color: inherit;
	border: none;
	font-weight: bold;
}

.detail_vol .plus { 
    padding: 0px 2px 0px 2px;
    font-size: 0.9vw;
    vertical-align: middle;
    text-align: center;
    background-color: lightgrey;
    border: 2px outset darkgrey;
	}
	
.formulaire input{
	 font-size: 0.9vw;
	}	

input[type="submit"]:not(.sortable), input[type="button"]:not(.sortable) {
	cursor: pointer;
	border-radius: 8px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}

input[type="submit"]:not(.sortable):hover, input[type="button"]:not(.sortable):hover {
	background-color: darkblue;
	color: white
}

input#calendar {
	 background-image: url("../Images/calendar.gif");
	 width: 20px;
	 height: 20px;	 
	}
 
textarea.comment { 
	padding: 0px 2px 0px 2px;
	vertical-align: top;
	text-align: left;
	font-family: arial;
	font-size: 0.9vw;
	}	
	
/* ****************** Infobulles ******************* */
	
a.info{
position:relative;
z-index:24;
color:#000;
text-decoration:none;
}
 
a.info:hover{
z-index:25;
background-color:#FFF
}
 
a.info span{
display: none
}
 
a.info:hover span{
display:block;
position:absolute;
top:2em; left:2em; min-width:10em;
border:1px solid grey;
border-radius: 5px;
background-color:ivory;
color:#000;
text-align: left;
font-weight:none;
padding:5px;	
}	
	
/* *********************** FIN des d�finitions pour infobulles *********** */	
	
	
div#bandeau {
	width: 100%; 
	height: 8%; 
	font-family: "Arial Black"; 
	font-size: 2.0vw; 
	text-align: left ;
	background-color: none;
	}

.bandeau {
    width: 100%;
    height: 8%;
    font-family: "Arial";
    font-size: 2.0vw;
	text-align: left ;
	background-color: none;
    }	

.bandeau_choix {
	background-color: #ceebfd;
	color: darkblue;
	font-size: 0.8vw;
	text-align: center;
	vertical-align: middle;
	height: 30px;
}

div#contenu {
	width: 100%; 
	background-color: silver; 
	height: auto ; 
	font-family: Arial;
	font_size: small; 	
	}

.date {
	 font-size: 0.9vw;
	 white-space: nowrap;
	}
.date.selected {
	background-color: deepskyblue;
}
	
div.piedpage {
	position: sticky;
	left: 0;
	bottom: 0;
	width: 100%; 
	margin-top: 5px; 
	font-size: 0.7vw; 
	text-align: center ;
	background-color: darkgray ;
	padding-top: 2px;
	padding-bottom: 2px;
	} 
	
table#info_display { 
	bgcolor: gold;
   	width: 50%;
	align: center;
	frame: box;	
	border: 5 ;
}

select.selector { 
	 font-size: 0.9vw;
	}	


body#basic {width: 100%; font-size: small; font-family: arial; font-style: normal; font-weight: normal}

body.basic {width: 100%; font-size: small; font-family: arial; font-style: normal; font-weight: normal}

table#sel_dates { 
	 width: auto; 
	 font-size: 0.9vw;	 
	}
table.sel_dates { 
	 width: auto; 
	 font-size: 0.9vw;	 
	}	

table.no_print {
	 font-size: 0.9vw;
	}

table.basic {
	background-color: none;
	border-collapse: collapse;
	border: none;
}
	
table.formulaire {
	width: 90%;
	font-size: 1.0vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	margin-left: 1em; 
	margin-right: 1em; 
	white-space: nowrap; 
	border-collapse: collapse;
	border: none;
	background-color: lightcyan;
	}

.formulaire tr .titre {
	color: white;
	background-color: darkblue;
	font-size: 1.2vw;
	font-weight: bold;
}

.formulaire th {
	font-size: 1.0vw;
	font-weight: bold;
	padding: 0 5px 0 5px;
	text-align: center;
	vertical-align: middle;
	whitespace: nowrap;
	border: 1px solid grey;	
}

.formulaire .trailer {
	 background-color: skyblue;
}

.formulaire .noprint  {
	background-color: white;
	border: none;
	border-bottom: 1px solid white;
}

.formulaire .titre .noprint {
	border-top: 1px solid white;
}

.formulaire td input {
	font-size: 0.9vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	border: none;
	background: none;
	
}
.formulaire td {
	font-size: 0.9vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	padding: 0 5px 0 5px;
	border: 1px solid grey;
	width: auto;
	}

th.membre button {
	font-size: 1.0vw;
	font-weight: bold;
}

td.membre button {
	border: none;
	background-color: inherit;
	color: inherit;
	cursor : hand;
}

td.membre:hover{
	background-color: yellow;
}

table.vols_en_cours {
	font-size: 1.0vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	margin-left: 1em; 
	margin-right: 1em; 
	white-space: nowrap; 
	border-collapse: collapse;
	border: none;
	background-color: gold;
	}

.vols_en_cours tr .titre {
	background-color: goldenrod;
	font-size: 1.2vw;
	font-weight: bold;
}

.vols_en_cours th {
	font-size: 1.0vw;
	font-weight: bold;
	padding: 0 5px 0 5px;
	text-align: center;
	vertical-align: middle;
	whitespace: nowrap;
	border: 1px solid grey;	
}

.vols_en_cours .noprint  {
	background-color: white;
	border: none;
	border-bottom: 1px solid white;
}

.vols_en_cours th.noprint {
	border-top: 1px solid white;
}

.vols_en_cours td {
	font-size: 0.9vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	padding: 0 5px 0 5px;
	border: 1px solid grey;
	width: auto;
	}
	
table.vols_anomalie {
	font-size: 1.0vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	margin-left: 1em; 
	margin-right: 1em; 
	white-space: nowrap; 
	border-collapse: collapse;
	border: none;
	background-color: yellow;
	}

.vols_anomalie tr .titre {
	background-color: orange;
	font-size: 1.2vw;
	font-weight: bold;
}

.vols_anomalie th {
	font-size: 1.0vw;
	font-weight: bold;
	padding: 0 5px 0 5px;
	text-align: center;
	vertical-align: middle;
	whitespace: nowrap;
	border: 1px solid grey;	
}

.vols_anomalie .noprint  {
	background-color: white;
	border: none;
	border-bottom: 1px solid white;
}

.vols_anomalie .titre .noprint {
	border-top: 1px solid white;
}

.vols_anomalie td {
	font-size: 0.9vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	padding: 0 5px 0 5px;
	border: 1px solid grey;
	width: auto;
	}

th.detail_vol .hide_top {
	border-top: 1px solid white;
}

td.detail_vol, th.detail_vol {
	font-size: .9vw; 
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	padding: 2px 0 2px 0;
	text-align: right; 
	background-color: white;
	border: none;
	border-bottom: 1px solid white;
	border-top: 1px solid white;
}

.detail_vol input {
	background: grey;
	border-radius: 2px;
	border: 2px outset darkgrey;
	cursor: hand;
}
span.popupinfo {
    visibility: hidden;
    width: auto;
    background-color: ivory;
    color: darkblue;
    text-align: center;
    font-size: 0.8vw;
    padding: 3px 3px;
    border: 1px solid darkblue;
    border-radius: 3px;
    position: absolute;
    top: 20px;
    left: 5px;
     z-index: 5;
}

a:hover span.popupinfo {
    visibility: visible;
}

.infobulle {
  position: relative;  /* les .infobulle deviennent référents */
}

.infobulle:hover::after,
.infobulle:focus::after {
  content: attr(aria-label);  /* on affiche aria-label */
  background-color: lightgrey;
  border-radius: 2px;
  border: 1px solid grey;
  position: absolute;
  left: 50%;
  z-index: 1; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne */
}

table.resume_vol {
	width: auto;
	border: none;
	border-collapse: collapse;
	background-color: none;
}

.resume_vol tr:nth-child(odd) {
	 background-color: DeepSkyBlue;
}

.resume_vol .detail_vol.trailer {
	 background-color: white;
}

.resume_vol .trailer {
	 background-color: skyblue;
}

.resume_vol th {
	color: white;
	background-color: darkblue;
	font-size: 1.2vw;
	font-weight: bold;
	border: 1px solid darkgrey;
}
.resume_vol td{
	background-color: lightcyan;
	font-size: 0.9vw;
	font-weight: bold;
	text-align: center;
	border: 1px solid darkgrey;
}

table.ato {
	background-color: ghostwhite;
	color: black;
	font-size: 0.9vw;
	border: none;
	border-collapse: collapse;
}

.ato td.header {
	background-color: orange;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2vw;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
	
}

.ato td.titre {
	background-color: lightgray;
	text-align: left;
	padding-left: 5px;
	font-size: 1.0vw;
	padding-top: 3px;
	padding-bottom: 3px;
	
}

.ato td {
	text-align: left;
	font-size: 0.9vw;
	padding-top: 3px;
	padding-bottom: 3px;
	
}

.ato button, .ato button:hover {
	border: none;
	background-color: inherit;
	color: inherit;
	cursor : hand;
}

.ato tr:not(.nohover) td:not(.nohover):hover{
	background-color: yellow;
}


#display_item td{ 
	width: 75%;
 	font-family: arial;
	font-size: 2;
	text-align: left;
}

/* styles correspondant aux formulaires de mise à jour des infos */

table.modif {
	padding: 3px 0 3px 0;
	font-family: Arial;
	font-size: 10pt;
	border: none;
}

.modif table.modif {	/* table à l'intérieur d'une autre table */
	border-collapse: collapse;
}

.modif td.texte, .modif span.texte {
	border: none;
	font-size: 10pt;
	font-weight: bold;
	color: DarkOrange;
	text-align: right; 
}

.modif td.header {
	text-align: center;
	font-size: 12pt;
	color: blue;
	font-weight: 700;
	background-color: orange;
	border: none;
}

.modif tr, .modif td {
	border: none;
	text-align: left;
	font-size: 10pt;
}

.modif.texte {
	font-size: 10pt;
	font-weight: bold;
	color: darkorange;
}

/* styles correspondant à l'affichage d'informations */

table.affich {
	padding: 3px 0 3px 0;
	font-family: Arial;
	font-size: 1.0vw;
	border: none;
	border-collapse: collapse;
}

.affich th {
	text-align: center;
	font-size: 12pt;
	color: DeepSkyBlue;
	font-weight: bold;
	border-bottom: 2px solid DeepSkyBlue;
}

.affich td.texte, .affich span.texte {
	border: none;
	font-size: 10pt;
	font-weight: bold;
	color: DarkSlateGrey;
	text-align: right;
	vertical-align: middle;
}

.affich td.header {
	text-align: center;
	font-size: 10pt;
	color: white	;
	font-weight: 700;
	background-color: DarkBlue;
	border: none;
}

.affich tr, .affich td {
	border: none;
	text-align: left;
	font-size: 10pt;
}

.affich.header {
	font-size: 12pt;
	font-weight: bold;
	color: white;
	background-color: DarkBlue;
}

.affich button {
	font-size: 8pt;
}

.photo {
	text-align: center;
	width: 200px;
	max-width: 300px;
	height: auto;
}

/* Styles correspondant aux tableaux de statistiques */
table.stats {
	font-size: 0.8vw;
	width: auto;
	font-family: Arial; 
	font-style: normal; 
	font-weight: normal; 
	margin-left: 1em; 
	margin-right: 1em; 
	white-space: nowrap; 
	border-collapse: collapse;
	border: 1px solid grey;;
}

.stats td.header {
	text-align: center;
	background: skyblue;
	font-size: 1.0vw;
	font-weight: bold;
}

.stats td.texte {
	text-align: left;
}

.stats tr.subtotal {
	background: lightcyan;
}

.stats td.subtotal {
	background: lightcyan;
	font-weight: bold;
	text-align: right;
}

.stats td {
	text-align: right;
	border: 1px solid grey;
}

@media only screen and  (max-width: 799px) {
	td.affich.texte {font-size: 10px;}
	td.affich.header, th.affich.header {font-size: 12px;}
	.affich {font-size: 10px;}
}

.annuaire td {
    background-color: none;
    border: 1px solid black;
    text-align: left;
    padding-left: 3px;
    padding-right: 3px;
}

.annuaire tr:nth-child(odd) {
    background-color: #e6f7ff;
}

.annuaire tr:not(:first-child):hover {
	background-color: yellow;
	cursor : hand;
}

.annuaire_popup {
	display: none;
	position: absolute;
	background-color: white;
	width: 50%;
	border: 1px solid lightskyblue;
	top: 20px;
	z-index: 10;
}

.club {
	background-color: lightcyan;
	border-collapse: collapse;
	border: none;
}

/* les classes small_screen et large_screen permettent d'afficher des éléments uniquement dans certains cas */
@media only screen and (min-width: 1px) and (max-width: 799px) {
	.small_screen {
		display: block;
	}
	
	.large_screen {
		display: none;
	}
}

@media only screen and (min-width: 800px) {
	.small_screen {
		display: none;
	}
	
	.large_screen {
		display: block;
	}
}

/* Principal */
.menu_icon {
	display: none;
}

.menu {
        width: auto;
        margin: 0;
        padding: 5px 0 0 0;
        list-style: none;
        background: darkblue;
        color: white;
        vertical-align: middle;
/*        border-left: 2px solid white; */
/*        border-right: 4px solid white; */
/*        min-height: 30px; */
}

.menuUtilisateur {
        width: auto;
        margin: 0;
        padding: 2px 0 0 0;
        list-style: none;
        background: darkblue;
        color: white;
        vertical-align: middle;
}

.menuUtilisateur select {
	font-size: 0.9vw;
}

.menu ul {
   list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    background: darkblue;
    min-width: 200px;
    min-height: 20px;
}

.menuUtilisateur button, .menuUtilisateur input, .menu input {
	background: none;
	border: none;
	color: white;
	font-weight: bold;
	font-size: 1.0vw;
}

.menu ul ul {
	min-width: 0;
}

.menu li, .menuUtilisateur li {
/*        float: left;	*/
	padding: 0 0 10px 5px;
	position: relative;
	white-space: nowrap;
	text-align: left;
    display: inline-block;
    flex-wrap: nowrap;
	text-transform: small-caps;
	font-weight: bold;
	font-size: 10px;
	min-width: 100px;
}

.rightarrow {
	display: none;
}
 
.menu a, .menu_vertical a {
       color: white;
       text-decoration: none;
}

.menu li:hover {
        box-shadow:  0 0 5px 3px cyan;
        z-index: 1000;
}

.menu li input:hover,  .menu li select:hover{
	box-shadow: none;
}
/*
*html .menu li a:hover{ /* IE6
        color: white;
}
*/

.menu li:hover > ul{
        display: block;
}

/* Sous-menu */
/*
.menu ul {
	position: relative;
	left: 0;
	top: 10px;
}
*/

.menu ul li button {
    padding: 0;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

.menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 25px;
}

/* Sous-menus 2�me niveau */
.menu ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}

.menu li:last-child ul ul {
	width: 170px;
	position: absolute;
	top: 0;
	left: -170px;
}

/*

.menu ul li:last-child {
	padding-bottom: 5px; 
}
*/

.menuUtilisateur  li input[type="submit"]{
	color: white;
}

.menu ul li:not(last-child) {
	border-bottom: 1px solid white;
}
.menu ul a{
    padding: 10px;
    height: auto;
/*    line-height: 1; */
/*    display: block; */
    white-space: nowrap;
    float: none;
    text-transform: none;    
}

/*
*html .menu ul a{ /* IE6 
        height: 10px;
        width: 150px;
}

*:first-child+html .menu ul a{ /* IE7
        height: 10px;
        width: 150px;
}
*/

/*
.menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid white;
}
*/

/*
.menu ul li:first-child a:hover:after{
    border-bottom-color: white;
}
*/


/*
.menu ul ul li:first-child a:after{
    content: '';
    position: absolute;
    left: -10px; 
	right: 0px;
    top: 0px;
	bottom: 0px;
    width: 0px;
    height: 0px;  
    border-top: 0px solid transparent;	
    border-left: -10px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 0px solid red;
	}
*/

/* R�tablissement du flottement */
.menu:after{
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
}

/*
* html .menu             { zoom: 1; } /* IE6
*:first-child+html .menu { zoom: 1; } /* IE7
*/

.menu_icon input {
	display: none;
}

/*
.menu_vertical {
	display: none;
	position: absolute;
	top: 40px;
	left: 12px;
	background-color: darkblue;
	color: white;
	width: auto;
	min-width: 100px;
	margin: 0;
	z-index: 100;
}
*/

/*
.menu_vertical li {
    padding: 0;
	white-space: nowrap;
	text-align: left;
    flex-wrap: nowrap;
    text-transform: small-caps;
    font-weight: bold;
    font-size: 12px;
}

.menu_vertical ul li {
	line-height: 25px;
    list-style: none;
	border-bottom: 1px solid white;
}


.menu_vertical ul {
	padding: 0 5px 0 5px;
	border: 1px solid yellow;
}

.menu_vertical ul ul {
	display: none;
	padding: 0 5px 0 5px;
	background-color: darkblue;
	color: white;
	border: 1px solid yellow;
	position: absolute;
	top: 0;
	left: 100%;
}

.menu_vertical li:hover {
        box-shadow:  0 0 5px 3px cyan;
}
*/


@media only screen and (min-width: 800px) {
	.menu {
		display: block;
	}
		
	.menu ul {
		position: absolute;
		top: 100%;
		left: 0;
	}
	
	.menu li, .menuUtilisateur li {
		font-size: 0.9vw;
		
	}
	
	.menu ul li {
		font-size: 0.9vw;
	}
	
	.menu ul ul li {
		font-size: 0.9vw;
	}
	
	table.banner td, table.banner td button {
		font-size: 0.9vw;
	}
	
}

@media only screen and (min-width: 1px) and (max-width: 799px) {
	body {
		font-size: 10px;
	}

button {
	cursor: pointer;
	min-height: 16px;
	border-radius: 8px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}

button[type=submit] {
	cursor: pointer;
	border-radius: 6px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}

button:hover {
	background-color: darkblue;
	color: white
}

button.print {
	 font-size: smaller;
}		

button.no_print {
	 font-size: smaller;
}
	

input[type="submit"], input[type="button"] {
	cursor: pointer;
	border-radius: 6px;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 font-size: 0.8vw;
	 border: 1px solid darkblue;
	background-color: white;
	 color: darkblue;
}

input[type="submit"]:hover, input[type="button"]:hover {
	background-color: darkblue;
	color: white
}

button.sortable {
		height: 100%;
		width: 100%; 
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background-color: transparent; 
		border: none; 
		outline: none;
		font-size: inherit;
		font-weight: inherit;
	}	
			
	.detail_vol .plus { 
    	font-size: smaller;
	}
	
	.formulaire input{
	 	font-size: smaller;
	}	
 
	textarea.comment { 
		font-size: smaller;
	}	
	
	table.banner td {
		font-size: 10px;
	}
	
	table.banner td button {
		font-size: 10px;
	}
	    
	.date {
		 font-size: smaller;
	}
		
	div.piedpage {
		font-size: xx-small; 
	}
		
	select.selector { 
		 font-size: smaller;
	}	

	table#sel_dates { 
		 font-size: smaller;	 
	}
	table.sel_dates { 
		 font-size: smaller;	 
	}	

	table.no_print {
		 font-size: smaller;
	}

	table.formulaire {
		font-size: normal; 
	}

	.formulaire tr .titre {
		font-size: larger;
	}

	.formulaire th {
		font-size: normal;
	}

	.formulaire td input {
		font-size: smaller; 
	}
	
	.formulaire td {
		font-size: smaller; 
	}
	
	table.vols_en_cours {
		font-size: normal; 
	}

	.vols_en_cours tr .titre {
		font-size: larger;
	}

	.vols_en_cours th {
		font-size: normal;
	}

	.vols_en_cours td {
		font-size: smaller; 
	}
	
	table.vols_anomalie {
		font-size: normal; 
	}

	.vols_anomalie tr .titre {
		font-size: larger;
	}

	.vols_anomalie th {
		font-size: normal;
	}

	.vols_anomalie td {
		font-size: smaller; 
	}

	td.detail_vol, th.detail_vol {
		font-size: smaller; 
	}
	
	.affich {
		font-size: larger;
	}
	
	.photo {
		width: 170px;
		max-width: 200px;
		height: auto;
	}

	.menu {
		display: none;
		border-left: none;
		border-right: none;
		position: absolute;
		top: 35px;
		left: 12px;
		min-width: 100px;
		z-index: 100;
	}
	
	.menuUtilisateur {
		display: none;
		border-left: none;
		border-right: none;
		position: absolute;
		top: 37px;
		left: 28px;
		min-width: 100px;
		z-index: 100;
}

	.menu li{
		float: none;
        padding: 0 0 0 10px;
        position: relative;
	    display: block;
	    line-height: 25px;
	    vertical-align: middle;
	    font-size: 10px;
	}

	.menu input {
		background-color: none;
		color: white;
		font-weight: bold;
		vertical-align: middle;
		line-height: 10px;
		width: 100px;
	}

	#MenuMembre input, .menuUtilisateur button.no_print {
		background-color: inherit;
		color: white;
		font-weight: bold;
		vertical-align: middle;
		line-height: 10px;
	    font-size: 9px;
	}
/*	.menuUtilisateur li button, .menuUtilisateur li input {
		background: none;
		color: white;
		font-weight: bold;
		vertical-align: middle;
		line-height: 12px;
		width: 100px;
	}
*/

	.menuUtilisateur li {
		float: none;
        padding: 0 0 0 10px;
        position: relative;
	    display: block;
		color: white;
		vertical-align: middle;
		line-height: 12px;
	    font-size: 10px;
	}
	
	.menu li:not(last-child), .menuUtilisateur li:not(last-child) {
		border-bottom: 1px solid white;
	}
	
	.menuUtilisateur li:first-child {
		border-top: 1px solid white;
	}

	.menu ul li {
		display: none;
	}

	.menu ul {
		position: absolute;
		top: 0;
		left: 100%;
	}
	
	.menu li:hover > ul li {
		display: block;
	}
		
	.menu_icon input {
		display: block;
		border: none;
		background-color: none;
	}

	.downarrow {
		display: none;
	}
	
	.rightarrow {
		display: flex;
	}
	
	.rightarrow#menuMembreIcon {
		color: white;
		background-color: darkblue;
		width: 128px;
		font-size: 15px;
		position: absolute;
		border-left: 13px solid white;
		border-right: 100px solid white;
		left: 0px;
/*		top: 38px; */
	}
	
	.menu_icon {
		width: 100%;
		height: 100%;
		background-color: darkblue;
		background-image: repeating-linear-gradient(0, darkblue, darkblue 2px, white 2px, white 4px);
		display: block;
	}
	
	.menu_bar {
		text-align: center;
		width: 14px;
		height: 2px;
	  	background-color: white;
	  	margin:  3px 3px 0 3px;
	}

}

/*
@media only screen and (min-width: 800px) and (max-width: 999px) {
	.main {
		position: absolute;
		top: 43px;
		left: 120px;
		width: 85%;
	}
	
	.menu {
		display: block;
		border-left: none;
		border-right: none;
		position: absolute;
		top: 35px;
		left: 12px;
		min-width: 100px;
		z-index: 100;
	}

	.menu li{
		float: none;
        padding: 0 0 0 10px;
        position: relative;
	    display: block;
	    line-height: 25px;
	    vertical-align: middle;
	}

	.menu li:not(last-child) {
		border-bottom: 1px solid white;
	}
	
	.menu ul {
		position: absolute;
		left: 100%;
		top: 0;
	}
	
	.menu ul li {
		display: none;
	}
	
	.menu ul li:first-child {
		position: absolute;
		top: 0;
		left: 100%;
	}
	
	.menu li:hover > ul li {
		display: block;
	}
		
	.menu_icon input {
		display: block;
		border: none;
		background-color: none;
	}
	
	.downarrow {
		display: none;
	}
	
	.rightarrow {
		display: flex;
	}

}
*/

/*
@media only screen and (orientation: portrait) and (min-width: 600px) and (max-width: 799px) {
	.menu ul {
		display: block;
	}	
}
*/

/*
@media only screen and (min-width: 800px) {
	.menu {
		display: flex;
		height: 25px;
		vertical-align: middle;
	}

	.menu ul{
		display: none;
	    top: 20px;
	    left: 0;
	}
	
}
*/



