﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/***** END RESET ******/

body
{
	width : 925px;
	margin : auto;
	font-family: arial,verdana,tahoma;
}
.banniere
{
	height : 75px;
	background-image : url('images/logo.png');
	background-repeat: no-repeat;
	padding-bottom : 3px;
	padding-top : 2px;
	margin-left : 2px;
}
	.banniere a
	{
		float : right;
		padding-left : 25px;
		padding-top : 10px;
		text-decoration : none;
		color : grey;
		font-weight : bold;
	}
		.banniere a:hover
		{
			color : red;
		}
	
.menu_top
{
	font-weight : bold;
	height : 25px;
	background-color : #9eb0bc;
}
	#menu_top, #menu_top ul /* Liste */     
		{
			padding : 0px; /* pas de marge intÃ©rieure */
			margin : 0; /* ni extÃ©rieure */
			list-style : none; /* on supprime le style par dÃ©faut de la liste */
			line-height : 25px; /* on dÃ©finit une hauteur pour chaque Ã©lÃ©ment */
			text-align : center; /* on centre le texte qui se trouve dans la liste */
		}

		#menu_top /* Ensemble du menu */
		{
			font-size : 12px; /* hauteur du texte : 12 pixels */
		}

		#menu_top a /* Contenu des listes */
		{
			display : block; /* on change le type d'Ã©lÃ©ment, les liens deviennent des balises de type block */
			padding : 0; /* aucune marge intÃ©rieure */       
			color : black; /* D40003 couleur du texte */
			text-decoration : none; /* on supprime le style par dÃ©faut des liens (la plupart du temps = soulignÃ©) */
			width : 180px; /* largeur */
			background-color : #9eb0bc;
		}
			#menu_top a:hover /* Lorsque la souris passe sur un des liens */    
			{
				
				color : red;
				
			}
			
			#menu_top li:hover ul ul, #menu_top li.sfhover ul ul /* Sous-sous-listes lorsque la souris passe sur un Ã©lÃ©ment de liste */
			{
				left: -999em; /* On expÃ©die les sous-sous-listes hors du champ de vision */
			}

			#menu_top li:hover ul, #menu_top li li:hover ul, #menu_top li.sfhover ul, #menu_top li li.sfhover ul  /* Sous-listes lorsque la souris passe sur un Ã©lÃ©ment de liste ET sous-sous-lites lorsque la souris passe sur un Ã©lÃ©ment de sous-liste */
			{
				left: auto; /* Repositionnement normal */
				min-height: 0; /* Corrige un bug sous IE */
			}

		#menu_top li /* Elements des listes */      
		{ 
			float : left; 
			
			/* pour IE qui ne reconnaÃ®t pas "transparent" */
			border-right : 1px solid #fff; /* on met une bordure blanche Ã  droite de chaque Ã©lÃ©ment */
		}

		/* IE ne reconnaissant pas le sÃ©lecteur ">" */
		html>body #menu_top li
		{
			border-right: 1px solid transparent ; /* on met une bordure transparente Ã  droite de chaque Ã©lÃ©ment */
		}

		#menu_top li ul /* Sous-listes */
		{ 
			position: absolute; /* Position absolue */
			z-index: 9999; /* les z-index permette de fixer la position des Ã©lÃ©ment positionnÃ© en absolute, plus la valeur est Ã©levÃ© plus il est positionnÃ© en avant */
			width: 180px; /* Largeur des sous-listes */
			left: -999em; /* Hop, on envoie loin du champ de vision */
		}


		#menu_top li ul li /* ÃlÃ©ments de sous-listes */
		{
			/* pour IE qui ne reconnaÃ®t pas "transparent" (comme prÃ©cÃ©demment) */
			border-top : 1px solid #fff; /* on met une bordure blanche en haut de chaque Ã©lÃ©ment d'une sous liste */
		}

		/* IE ne reconnaissant pas le sÃ©lecteur ">" */
		html>body #menu_top li ul li                
		{
			border-top : 1px solid transparent; /* on met une bordure transparente en haut de chaque Ã©lÃ©ment */
		}

		#menu_top li ul ul 
		{
			margin    : -50px 0 0 180px ; /* On dÃ©cale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes */ 
			/* pour IE qui ne reconnaÃ®t pas "transparent" (comme prÃ©cÃ©demment) */
			border-left     : 1px solid #fff ; /* Petite bordure Ã  gauche pour ne pas coller ... */      
		}

		/* IE ne reconnaissant pas le sÃ©lecteur ">" ... je me rÃ©pÃ¨te ;-) */
		html>body #menu_top li ul ul                
		{
			border-left     : 1px solid transparent ; /* on met une bordure transparente sur la gauche de chaque Ã©lÃ©ment */
		}

.menu-g
{
	background-image : url('images/menu-g.png');
	width : 230px;
	min-height : 340px;
	margin-top : 3px;
	float : left;
}
	.menu-g ul
	{
		margin-top : 5px;
	}
	.menu-g li
	{
		background-color : white;
		opacity : 0.7;
		height : 20px;
		font-size : 12px;
		font-weight : bold;
		padding-left : 5px;
		padding-top : 5px;
		margin-left : 5px;
		margin-bottom : 3px;
		width : 210px;
	}
		.menu-g a
		{
			text-decoration : none;
			color : black;
			
		}
		.menu-g a:hover
		{
			color : red;
		}

	.corps table img
	{
		max-width : 130px;
		border : 1px solid black;
		margin-bottom : 5px;
	}
		.corps table td
		{
			vertical-align : middle;
			padding-right : 15px;
		}
	#logos img
	{
		max-width : 50px;
		border : none;
		padding-right : 15px;
	}
	
	#logos_netw
	{
		width : 100%;
		text-align : center;
	}
		#logos_netw img
		{
			max-height : 100px;
			max-width : 100%;
			border : none;
		}
		
.accueil
{
	width : 490px;
	float : left;
	padding-left : 20px;
	padding-top : 5px;
}
	.accueil h1
	{
		width : 230px;
		height : 46px;
		background-image : url('images/titre.png');
		background-repeat: no-repeat;
		color : red;
		font-weight : bold;
		padding-left : 50px;
		padding-top : 15px;
	}
	.accueil p
	{
		font-size : 14px;
		padding-bottom : 10px;
		line-height : 16px;
		text-align : justify;
	}
	.accueil p a
	{
		text-decoration : none;
		color : grey;
		font-weight : bold;
	}
		.accueil p a:hover
		{
			color : red;
		}
	.accueil img
	{
		max-width : 500px;
	}

.corps
{
	width : 660px;
	float : left;
	padding-left : 20px;
	padding-top : 5px;
}
	.corps h1
	{
		width : 400px;
		height : 46px;
		background-image : url('images/titre.png');
		background-repeat: no-repeat;
		color : red;
		font-weight : bold;
		padding-left : 50px;
		padding-top : 15px;
	}
	.corps h2
	{
		color : red;
		font-weight : bold;
		padding-bottom : 15px;
		font-size : 15px;
	}
	.corps h3
	{
		color : red;
		padding-bottom : 15px;
		font-size : 15px;
	}
	.corps p
	{
		font-size : 14px;
		padding-bottom : 10px;
		line-height : 16px;
		text-align : justify;
	}
	.corps img
	{
		max-width : 500px;
	}
	
	.corps li
	{
		font-size : 14px;
		list-style : disc; 
		margin-left : 15px;
		padding-bottom : 5px;
	}
	
	.corps a
	{
		text-decoration : none;
		color : grey;
		font-weight : bold;
	}
		.corps a:hover
		{
			color : red;
		}
		
	.corps b
	{
		font-weight : bold;
	}
	
	.corps #contact td
	{
		vertical-align : top;
	}
	.corps .italique
	{
		font-style: italic;
		font-size : 14px;
	}
	.corps hr
	{
		width : 50%;
		margin : auto;
		margin-bottom : 15px;
	}
	
.menu-d
{
	width : 175px;
	float : right;
}
	.menu-d h1
	{
		color : red;
		font-size : 15px;
		padding-bottom : 15px;
		padding-top : 15px;
		text-decoration : underline;
	}
	.menu-d h3
	{
		font-size : 14px;
		color : red;
	}
	.menu-d p
	{
		font-size : 12px;
		color : black;
	}
	.menu-d .italique
	{
		font-style : italic;
	}
	.menu-d a
	{
		text-decoration : none;
	}

.pied-page
{
	width : 925px;
	float : left;
	height : 40px;
	padding-bottom : 15px;
}
	.pied-page table
	{
		width : 100%;
		text-align : center;
		font-size : 12px;
	}
	.pied-page img
	{
		max-height : 40px;
	}
