@charset "utf-8";
/* CSS reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}

html,body {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
/* Fin CSS reset */



/* Main content */
.main {
    margin-top: 30; /* Add a top margin to avoid content overlay - zone de texte */
	padding-left: 10px;
	padding-right: 7px;
	font-family:"Times New Roman", Times, serif;
	font-size: 3vw;
}
.block {
    margin-top: 30; /* Add a top margin to avoid content overlay - zone de texte */
	padding-left: 0px;
	padding-right: 0px;
	font-family:"Times New Roman", Times, serif;
	font-size: 3vw;
	width: 100%;
}

h1 { font-size: 5vw; font-weight: bold; padding:10px; padding-bottom:20px;}
h2 { font-size: 4vw; font-weight: bold; padding:10px; padding-bottom:20px;}
h3 { font-size: 3vw; font-weight: bold;}
h4 { font-size: inherit; color:#F00; font-weight: bold; display:inline}
h5 { font-size: inherit; color: #03F; font-weight: bold; display:inline}
h6 { font-size: inherit; color: inherit; font-style:italic;  display:inline}
h7 { font-size: 2vw; font-style:italic; }

em {font-size:inherit; color:#03F;}
p.ex4 {font-size:inherit; color:#F00; display: inline-block;}
p { font-size: 3vw; font-family:inherit;}
li {font-size:inherit; padding-left: 20px;}

/* #Links
================================================== */
a, a:visited {
	color: #7C01E0;
	text-decoration: underline;
	outline: 0;
	font-size:inherit;
}
a:hover, a:focus {
	color: #F00;
	font-size:inherit;
}

table, th, td {
    border: 1px none;
    border-collapse: collapse;
}
th, td {
    padding: 15px;
    text-align: center;
}
table#t01 {
    width: 100%;    
    background-color: #000000;
	vertical-align:top;
}

/* #page layout
================================================== */
.header-main {
  top: 0;
  left: 0;
  position:fixed;
  overflow:hidden;
  background-color: #080808;
  padding: 0px 0px;
  
}
   
.header {
  overflow:hidden;
  background-color: #080808;
  padding: 0px 0px;
  
   }

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #080808;
	color: white;
	text-align: center;
}

.responsive {
    max-width: 100%;
    height: auto;
	max-height: 200px;
}

.responsive-main {
    max-width: 100%;
    height: auto;
	max-height: 300px;
}
.responsive-vertical {
    max-width: 100%;
    height: auto;
	max-height: 320px;
}

.titre{
	font-size:inherit;
	font-weight:bold;
	background-color: #D9FCFF;
	border-left: 3px solid  #06F;
	padding-left: 3px;
}




/* Add a black background color to the top navigation */
.topnav {
  overflow: hidden;
  background-color: #080808;
  width: 100%;
}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 3vw;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #000000; /* fond couleur home button */
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    font-size: 15px;    
    border: none;
    outline: none;
    color: white;
    padding: 10px 12px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #CCC; /* couleur du fond dans le dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #555;
	color: #0CF; /* couleur texte dans le menu over */
	border-radius: 0 0 6px 6px;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: #903;  /* couleur texte dans le dropdown */
	border-radius: 0 0 6px 6px;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
	border-radius: 0 0 6px 6px;
}

/* When the screen is less than 300 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 300px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: left;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 300px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}



