/*
	Fichier : design.css
	Programmeur : Alexandre Belleau-Gingras
	Date : 28 août 2009
	But : Feuille de style CSS pour la page index.html
*/

/* Propriétés de toutes les images */
img
{
	border: 0;
}
/*Propriétés des liens */
a
{
	text-decoration: none;
	color: #8B4513;
	background-color: inherit;
}
a:hover
{
	text-decoration: underline;
}

/* Propriétés pour la page */
#page
{
	width: 900px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	line-height:15px;
    	margin-right: auto;
    	margin-left: auto;
	/*background-color: #FF9933*/
    
}
	/* Propriétés du menu du choix de langue */
	#langue
	{
		float: right;
	}
	#langue ul
	{
		margin:0;
		padding:0;
	}
	#langue li
	{
		list-style-type:none;
		display:inline;
		font-size:0.6em;
	}
	#langue a
	{
		text-decoration: none;
		color: #000000;
		background-color: inherit;
	}
	#langue a:hover
	{
		color: #A0522D;
		background-color: inherit;
	}
	
	/* Propriétés du menu principal */
	#menu
	{
		border-right: 1px solid #CCCCCC;
		float: left;
	}
	#menu ul
	{
		margin: 0;
		padding: 0;
	}
	#menu li
	{
		list-style-type:none;
		background-color: #F0F0F0;
		border-bottom: 1px #8B4513 solid;
	}
	#menu a
	{
		display: block;
	}
	
	#menu .lienPrimaire
	{
		padding-left: 5px;
		font-weight: bold;
		font-size: 0.8em;
	}
	#menu .lienSecondaire
	{
		font-weight: bold;
		font-size: 0.7em;
		padding-left: 20px;
	}
	
	/* Propriétés du menu de connexion */
	#login
	{
		float: right;
	}
	#login ul
	{
		margin: 0;
		padding: 0;
	}
	#login li
	{
		list-style-type:none;
		display:inline;
		font-size:0.8em;
	}
	
	/* Propriétés du contenu */
	#contenu
	{
		width: 720px;
		float: right;
	}
	#contenu h1
	{
		font-size: 0.9em;
		color: #8B4513;
		background-color: inherit;
	}
	#contenu p
	{
		font-size: 0.7em;
	}
	
	/* Propriétés du pied de page */
	#footer
	{
		clear: both;
		background: url('../Images/bg_footer.gif') no-repeat;
		height: 24px;
		font-size: 0.7em;
		padding-right: 5px;
		padding-left: 5px;
		padding-top: 5px;
	}
		/* Propriétés de la section contact dans le pied de page */
		#contact
		{
			float: left;
		}
		
		/* Propriétés de la section FAQ dans le pied de page */
		#faq
		{
			float: right;
		}

