body {
	background-repeat: repeat;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #999;
	background:#F5F4F0 url(img/bg-total.jpg) repeat-x;
}

ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	
}
a img { 
	border: none;
}
h1{
	font-weight: normal;
	font-size:22px;
	margin:0px;
	padding:0px;
	
	
	}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
    background:transparent url(img/bg.jpg) no-repeat;
	width: 988px;
	height: 756px;
	
	
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding: 55px 0 10px;
	text-align:center;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* tooltip styling. by default the element to be styled is .tooltip  */
.tooltip {
	display:none;
	background:transparent url(tools/img/tooltip/black_arrow.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:35px 25px 15px;
	color:#fff;
	text-align:center;
}

#footer{position:absolute;
bottom:10px;
width:80%;
text-align:right;
}

	/* Super powered logo !  */
a.powered span
{
	position       :  absolute;
	top            :  -2000em;
	left           :  -2000em;
	width          :  1px;
	height         :  1px;
	overflow       :  hidden;
}   
      
/* Rend visible tout notre bloc span et lui attribue une taille */
a.powered:hover span, a.powered:focus span, a.powered:active span 
{
	-webkit-transition: width 2s; /* For Safari 3.1 to 6.0 */
transition: width 2s;
	top        :-90px;
	left       : 91%;
	width      :  80px;
	height     :  80px;
	overflow   :  visible;
	background-image: url(img/6clicks.gif);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	
}      