/* --- STYLES DE BASE --- */ 
#myGallery {
	width: 100%;
	height: 300px;
}
#myGallery img {
	border: 2px solid #52697E;
}
a.loading {
	background: #fff url(../images/ajax_small.gif) no-repeat center;
}
/* Reset (pas conseill�) */ 
* {
	margin: 0px;
	padding: 0px;
	border: 0; 
	font-family: "Trebuchet MS", Georgia1, Georgia, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	line-height: 20px;
	outline: none;
}

/* Page */ 
html { 
	margin: 0; 
	padding: 0;
	font-size: 100%; /* �vite un bug d'IE 6-7. (1) */
}

body { 
	height: 100%; /* debug selection de texte */
	background-color: #000000; 
	font-size: 14px;
	text-align: left; /* pour corriger le bug de centrage IE */
	color: #ffde8c; 
} 

div {
	/*position: relative;*/
}

/* Titres */ 
h1, h2, h3, h4, h5, h6 { 
  margin: 1em 0 .5em 0; /* Rapproche le titre du texte. (5) */ 
  margin-top: auto;
  padding-top: 2em;
  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;
	color: #ffe375;
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 5px 0px;
	line-height: 0.9em;
} 
h3 { 
  font-size: 1.1em;
	color: #fff3c5;
	margin: 0px 0px 0px 0px;
	padding: 5px 0px 0px 0px;
	line-height: 0.9em;
} 
h4 { 
  font-size: 1em; 
} 


/* Listes */ 
ul, ol { 
	margin: .75em 0 .75em 32px; 
	padding: 0; 
} 
ul{
	list-style-type: square;
}
ul ul{
	list-style-type: disc;
}
ul ul ul{
	list-style-type: none;
}

/* Paragraphes */ 
p, blockquote { 
	padding: 10px 0px 10px 0px;
/*	text-align: left;*/
	text-align: inherit;
	font-size: 12px;
	line-height: 20px;
} 
address { 
	margin: .75em 0; 
	font-style: normal; 
} 
blockquote {
	margin-left: 30px;
	font-size:1em;
}

/* Liens */ 
a { 
	cursor:pointer;
	text-decoration: none; 
} 
a:link { 
	color: #ffde8c; 
} 
a:visited { 
	color: #ffde8c; 
}

a:hover, a:focus, a:active { 
	color: #ffde8c; 
	text-decoration: underline;
	outline:none;
} 
/* Pas de bordure pointill�e ou halo lors du clic sur un lien */ 
a:active { 
	outline: none; 
} 
/* Pas de bordure autour des images dans les liens */ 
a img { 
  border: none; 
} 


/* Divers �l�ments de type en-ligne (8) */ 
em, i { 
	font-style: italic; 
} 
strong, b { 
	font-weight: bold; 
} 
 
 
/* Formulaires */ 
form, fieldset { 
	margin: 0; 
	padding: 0; 
	border: none; 
} 

input, button, select { 
	vertical-align: middle; /* Solution pb. d'alignement. (9) */ 
}

/* Images */
img {
	/*display: block;*/
	vertical-align: middle;
}

/* Classes g�n�riques */
.ajusteur	{ /* pour ajuster la hauteur de la ligne */
	clear:both;
	line-height:0px;
	font-size:1px;
	height:0px;
	color:#FFFFFF;
}

.tCenter { text-align: center; }
.tLeft { text-align: left; }
.tRight { text-align: right; }
.tJustify { text-align: justify; }

.clear {
	clear: both;
}

.altContent {
/*	display:none;*/
	position: absolute;
	bottom: 200%;
	text-align: left;
}

.hide {
	display: none;
}


