/* --- STYLES DE BASE --- */

/* Page */
html {
    font-size: 100%; /* Évite un bug d'IE 6-7. (1) */
}
body {
    margin: 0;
    padding: 0; /* Remettre à zéro si nécessaire. */
    font-family: Arial, Helvetica, FreeSans, sans-serif;
    font-size: 1em; /* À adapter pour la police choisie. (3) */
    line-height: 1.4; /* À adapter au design. (4) */
    color: black;
    background: #f7f7f7;
	background-image: url('images/background.jpg');
	background-position: center;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    margin: 1em 0 .5em 0; /* Rapproche le titre du texte. (5) */
    line-height: 1.2;
    font-weight: bold; /* Valeur par défaut. (6) */
    font-style: normal;
}
h1 {
    font-size: 1.75em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1em;
}



/* Listes */
ul, ol {
    margin: .75em 0 .75em 32px;
    padding: 0;
}

/* Paragraphes */
p {
    margin: .75em 0; /* Marges plus faibles que par défaut. (7) */
}
address {
    margin: .75em 0;
    font-style: normal;
}

/* Liens */
a {
    text-decoration: underline;
	outline-style:none;
}
a:link {
    color: mediumblue;
}
a:visited {
    color: indigo;
}
a:hover, a:focus, a:active {
    color: crimson;
}
a img {
    border: none;
}

/* Divers éléments de type en-ligne (8) */
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}

/* Formulaires */
form, fieldset {
    margin: 0;
    padding: 0;
    border: none;
}
input, button, select {
    vertical-align: middle; /* Solution pb. d'alignement. (9) */
}


/* --- STYLES DE BASE SUPPLÉMENTAIRES --- */

/* Met en évidence les abréviations */
abbr, acronym {
    border-bottom: 1px dotted;
    cursor: help;
}

/* Met en évidence les citations */
blockquote {
    margin: .75em 0 .75em 20px;
    padding: 0 0 0 10px;
    border-left: solid 2px #ddd;
}
q {
    font-style: italic;
    quotes: none; /* Supprime les guillemets automatiques */
}
q:before, q:after {
    content: ""; /* Supprime les guillemets dans Safari/Chrome */
}
cite {
    font-style: italic;
}
q cite, q q {
    font-style: normal
}

/* Rapproche les paragraphes dans les listes et citations */
blockquote p, li p {
    margin: .5em 0;
}

/* Styles de base pour les listes de définition */
dl {
    margin: .75em 0;
}
dt {
    margin: .75em 0 0 0;
    font-weight: bold;
}
dd {
    margin: .25em 0 .25em 32px;
}

/* Mise en forme simple pour les tableaux */
table {
    margin: 0;
    border: 1px solid gray; /* Pas de bordure = "none". */
    border-collapse: collapse; /* Valeur par défaut: "separate". */
    border-spacing: 0;
}
table td, table th {
    padding: 4px; /* Pas de retrait autour du texte = "0". */
    border: 1px solid #ccc; /* Pas de bordure = "none". */
    vertical-align: top; /* Valeur par défaut: "middle" */
    text-align: left;
}

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}


/* Styles pour AMVA */


h1, h2, h3, h4 {
	color: #f93;
}

h3 {
	border-bottom: 1px solid #f93;
}

#body {
	background-image: url('images/trais.jpg');
	background-position: top center;
	background-repeat: no-repeat;
}

#container {
	width: 960px;
	margin: 0 auto;
	position: relative;
}

#head {
	padding-top: 50px;
}

#content {
	/*background-color: #ff9;*/
	padding: 0 320px 0 30px;
}

h1 {
	margin: 0;
	height: 120px;
	width: 574px;
	overflow: hidden;
	background-image: url('images/logo.jpg');
	background-repeat: no-repeat;
}

h1 a {
	display: block;
	padding-top: 130px;
}

#content p, 
#content ul {
	text-align: justify;
}

p em,
li em {
	font-weight: bold;
}

#topNav {
	text-align: right;
	position: absolute;
	right: 0;
	top: 3px;
}

#topNav ul {
	margin: 0;
	padding: 0;
}

#topNav ul li {
	display: inline;
}

#topNav ul li a {
	text-decoration: none;
	color: #009;
	padding: 0 0 0 20px; 
	font-size: 0.75em;
}

#topNav ul li a:hover {
	color: #f93;
}

* html #nav1 {
	height: 1%;
}

#nav2 {
	float: right;
	width: 260px;
	margin-right: 30px;
}

* html #nav2 {
	margin-right: 15px;
}

#nav2 ul li {
	list-style-type: none;
}

#nav2 ul .active {
	list-style-type: disc;
	color: #009;
}

#nav2 ul li a {
	color: #f93;
	text-decoration: none;
}

#nav2 ul li a:hover,
#nav2 ul .active a {
	color: #009;

}

#nav1 ul {
	margin: 0;
	padding: 3px 20px 3px 20px;
	background-color: #f93;
	background-image: url('images/deg.jpg');
}

#nav1 ul li {
	display: inline;
	list-style-type: none;
	padding: 0 15px;
}

#nav1 li a {
	text-decoration: none;	
	padding: 0;
	color: white;
	font-weight: bold;

}

#nav1 li a:hover,
#nav1 .active a
{
	color: #009;
}

.pageTitle {
	margin-top: 0;
	padding-top: 1em;
}

.l, .r, .c {
	border: 30px solid white;
}

.r {
	float: right;	
}

#content .center {
	text-align: center;
}

.noBorder {
	border: 0;
}

#gal {
	background-color: red;
	position: absolute;
	top: 48px;
	left: 818px;
}

#gal li {
	list-style-type: none;
	position:absolute;
	top:0;
	left: -5000px;

}

#gal .active {
	left: 0;
}

#gal li img {
	display: block;
}

/* Formulaire de contact */
#ContactForm label {
	display: block;
}

#ContactForm input,
#ContactForm textarea {
	width: 610px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}	