.thrColAbsHdr #container { 
	position: relative; 
	width: 960px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* Header
----------------------------------------------- */
.thrColAbsHdr #header { 
	height: 170px;
	background: #000 url("images/header_community.png") repeat-x; 
	margin-top: 0px;
	/*padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.header{
	width: 960px;
	display:inline;
}


/* Contenu
----------------------------------------------- */
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 200px;
	left: 0;
	width: 185px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background:none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 200px;
	right: 0;
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background:none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#sidebar1 h3{
background:  url("images/category_bg.gif") no-repeat 0 0;
height:31px;
margin: -4px 0 0 -7px;
font-family:Arial, Helvetica, sans-serif;
color: #FFFFFF;
letter-spacing: 0.1em;
font-weight:normal;
font-size:13px;
padding: 8px 6px 4px 12px;
text-shadow: #666 1px 1px;
}	
#sidebar2 h3{
background:  url("images/category_bg.gif") no-repeat 0 0;
width:184px;
height:31px;
margin: -4px 0 0 -7px;
font-family:Arial, Helvetica, sans-serif;
color: #FFFFFF;
letter-spacing: 0.1em;
font-weight:normal;
font-size:13px;
padding: 8px 6px 4px 12px;
text-shadow: #666 1px 1px;
}
.thrColAbsHdr #mainContent { 
	margin: 60px 200px 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColAbsHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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 */
	float: left;
	margin-right: 8px;
}
.thrColAbsHdr #menu_nav {
	position: absolute;
	top: 137px;
	left: 0px;
	width: 960px;
	height: 33px;
} 

/* Navigation
----------------------------------------------- */
/*
*	Setup
*/
ul.cssmenu {
	list-style: none;
	padding: 0px;
	}

.displace {
	position: absolute;
	left: -5000px;
	}

ul.cssmenu li {
	float: left;
	}

ul.cssmenu li a {
	display: block;
	width: 117px;
	height: 33px;
	background: url('images/menu_navbg.png');
	z-index:auto;
	outline:none; /*Firefox Hack to avoid outline on links */
	}

/*
*	Normal Links
*/
ul.cssmenu li.accueil a {
	background-position: -0px 0;
	}
ul.cssmenu li.magasin a {
	background-position: -117px 0;
	}
ul.cssmenu li.secteur a {
	background-position: -234px 0; 
	}	
ul.cssmenu li.ecole a {
	background-position: -351px 0; 
	}	
ul.cssmenu li.skypress a {
	background-position: -468px 0;
	}	
ul.cssmenu li.whois a {
	background-position: -585px 0;
	}	

/*
*	Hover Links
*/

ul.cssmenu li.accueil a:hover {
	background-position: -0px -33px;
	}
ul.cssmenu li.magasin a:hover {
	background-position: -117px -33px;
	}
ul.cssmenu li.secteur a:hover {
	background-position: -234px -33px;
	}	
ul.cssmenu li.ecole a:hover {
	background-position: -351px -33px; 
	}	
ul.cssmenu li.skypress a:hover {
	background-position: -468px -33px;
	}	
ul.cssmenu li.whois a:hover {
	background-position: -585px -33px;
	}
/*
*	Clicked Links
*/

ul.cssmenu li.accueil  a:active {
	background-position: -0px -66px;
	}
ul.cssmenu li.magasin a:active {
	background-position: -117px -66px;
	}
ul.cssmenu li.secteur a:active {
	background-position: -234px -66px;
	}	
ul.cssmenu li.ecole a:active {
	background-position: -351px -66px;
	}	
ul.cssmenu li.skypress a:active {
	background-position: -468px -66px;
	}	
ul.cssmenu li.whois a:active {
	background-position: -585px -66px;
	}	
/*
*	Selected/Active Links
*/

ul.cssmenu li.accueil a.selected {
	background-position: -0px -99px;
	}
ul.cssmenu li.magasin a.selected {
	background-position: -117px -99px;
	}
ul.cssmenu li.secteur a.selected {
	background-position: -234px -99px;
	}	
ul.cssmenu li.ecole a.selected {
	background-position: -351px -99px;
	}	
ul.cssmenu li.skypress a.selected {
	background-position: -468px -99px;
	}	
ul.cssmenu li.whois a.selected {
	background-position: -585px -99px;
	}	
	
/* Search Form
----------------------------------------------- */
#searchform {
	background: url("images/menuA_ong8.png") no-repeat;
	width: 204px;
	height: 33px;
	float: right;
	font-size:11px;
	padding:0;
	margin:0;
}
#searchform #s{
	background: url("images/form-field-bg.png") no-repeat ;
	width: 160px;
	height: 24px;
	padding: 0px 2px 2px 5px;
	border: none;
	margin:4px 0 0 5px;
}
#searchform #searchsubmit { 
	background: url("images/search_icone.png") no-repeat 0 0;
	height: 26px;
	width: 24px;
	border: none;
	cursor: pointer;
	text-indent: -999%;
	line-height: 1px;
	margin: -5px 0 0 -5px;
}	

/* Colonne Cat�gories
----------------------------------------------- */
.leftmenu{
margin: -12px 0 0 -7px;
padding: 0;
width: 182px; /*width of menu*/
border: 1px solid #CCCCCC;
background: url(images/bg_gradient_left.gif) repeat-x;
}

.leftmenu div.silverheader a{
font: normal 12px Tahoma, "Lucida Grande", "Trebuchet MS", Helvetica, sans-serif;
color: #666666;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 5px 0;
padding-left: 8px;
text-decoration: none;
}

.leftmenu div.silverheader a:visited, .leftmenu div.silverheader a:active{
color: #999999;
}

.leftmenu div.selected a, .leftmenu div.silverheader a:hover{
background-image: url(images/silvergradientover.gif);
color:#C00;
}

/* Colonne Livraison
----------------------------------------------- */
.left_livraison{
margin: 12px 0 10px -7px;
padding: 0;
width: 184px; /*width of menu*/
height:51px;
background: url(images/bg_livraison.gif);
}
.txt_livraison {
margin: 1px;
padding: 32px 0 0 0;	
}
.left_livraison div.txt_livraison a{
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
color: #666;
}

/* Colonne Meilleures Ventes
----------------------------------------------- */
.left_meilleures{
margin: -12px 0 0 -7px;
padding: 0;
width: 182px; /*width of menu*/
border: 1px solid #CCCCCC;
background: url(images/bg_gradient_left.gif) repeat-x;
}

.txt_meilleures {
margin: 30px 0 30px;
padding: 0;
}

.img_meilleures {
float: left;	
padding: 0 5px 0;
}

.txt_meilleures a {
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
color: #666;
}

/* Colonne Paiements
----------------------------------------------- */
.right_paiements{
margin: -3px 0 10px 3px;
padding: 0;
width: 164px; /*width of menu*/
height:61px;
background: url(images/bg_paiements_right.gif);
}

/* Colonne nos Atouts
----------------------------------------------- */
.right_atouts{
margin: -12px 0 12px -7px;
padding: 0;
width: 182px; /*width of menu*/
border: 1px solid #CCCCCC;
background: url(images/bg_gradient_left.gif) repeat-x;
}

.right_atouts div.atouts {
font: bold 13px Arial, Helvetica, sans-serif;
color: #666666;
letter-spacing: 2px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 10px 0;
padding-left: 8px;
text-decoration: none;
}

.right_atouts div.sub_atouts {
font: italic 9px Arial, Helvetica, sans-serif;
color: #ff9999;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 10px;
padding-left: 8px;
text-decoration: none;
}

/* Colonne notre Magasin
----------------------------------------------- */
.right_magasin{
margin: -12px 0 12px -7px;
padding: 0;
width: 182px; /*width of menu*/
border: 1px solid #CCCCCC;
background: url(images/bg_gradient_left.gif) repeat-x;
}

.right_magasin div.img_magasin {
text-align: center;
font: bold 13px Arial, Helvetica, sans-serif;
color: #666666;
letter-spacing: 2px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 10px 0 0 0;
text-decoration: none;
}

.right_magasin div.txt_lieu_magasin {
font: 11px Arial, Helvetica, sans-serif;
font-weight:bold;
color: #100;
width: auto;
padding: 10px 0 0 15px;
text-decoration: none;
}
.right_magasin div.txt_horaires_magasin {
font: 10px Arial, Helvetica, sans-serif;
color: #100;
width: auto;
padding: 5px 0 10px 15px;
text-decoration: none;
}
/* Colonne Guide d'achat Skyppy
----------------------------------------------- */
.right_guide_achat {
margin: 12px 0 0 0;
padding: 0;
}
.img_guide_achat {
width: 169px; /*width of menu*/
height:75px;
background: url(images/bg_guide_achat.gif) no-repeat;
}
.txt_guide_achat a{
font: 11px Arial, Helvetica, sans-serif;
color: #cc3300;
letter-spacing: 0.2em;
width: auto;
padding: 0 0 0 0;
text-decoration: none;	
}
	
/* Footer
----------------------------------------------- */
#pagecontainer {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 0 -144px;
  width: 100%;
}
#push {
  height: 144px;
}
#footer {
  position: relative;
  background: #f6f6f6 url("images/footer-bg.png") repeat-x;
  height: 144px;
  line-height: 32px;
  padding-left: 150px;
  min-width: 778px;
}
#footer a {
  color: #acacac;
}
#footer a:hover {
  color: #666;
}
/*#footer div.copyright {
  color: #888888;
  left: 0px;
  bottom: 5px;
  position: absolute;
  width: 933px;
  text-align: right;
  font-family: "lucida grande", tahoma, arial, sans-serif;
  font-size: 11px;
}*/
#footer div.copyright {
  color: #888888;
  left: 0px;
  bottom: -20px;
  position: absolute;
  /*width: 933px;*/
  text-align: right;
  font-family: "lucida grande", tahoma, arial, sans-serif;
  font-size: 11px;
   width : 300px;
  left:600px;
	
}
#footer div.icones_pay {
  color: #888888;
  left: 660px;
  top: 15px;
  position: absolute;
  width: 274px;
  text-align: right;
  z-index: 0;
}
#footer div.language img.flag {
  margin-right: 2px;
}

/* Footer menu
----------------------------------------------- */
#footermenu {
  float: left;
  width: 960px;
  height: 144px;
}

#footermenu div.section {
  float: left;
  margin: 16px 40px 0px 0px;
}
#footermenu h3 {
  font-size: 13px;
  line-height: 18px;
  color: #555555;
  text-shadow:#FFF 1px 1px;
}
#footermenu h3 a {
  font-family: "lucida grande", tahoma, arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #555555;
  text-decoration:none;
  background: transparent !important;
  text-shadow:#FFF 1px 1px;
}
#footermenu h3 a:hover {
  color: #333;
}
#footermenu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#footermenu ul li {
  clear: left;
  float: left;
  margin: 0px;
  padding: 0px;
}
#footermenu ul li a {
  font-family: "lucida grande", tahoma, arial, sans-serif;
  background: transparent;
  float: left;
  position: relative;
  left: -8px;
  font-size: 11px;
  line-height: 18px;
  margin: 0 0 0 0px;
  padding: 0 0 0 8px;
  text-decoration:none;
}
#footermenu ul li a span {
  float: left;
  cursor: pointer;
  color: #888;
  margin: 0px;
  padding: 0 8px 0 0;
}

#footermenu ul li span {
  float: left;
  color: #888;
  margin: 0px;
  padding: 0 8px 0 0;
}
#footermenu ul li a:hover span {
  color: #555;
}

#footermenu ul li a.act {
  display: block;
  width: auto;
  height: 18px;
}
#footermenu ul li a.act span {
  display: block;
  width: auto;
  height: 18px;
  color: #fff !important;
}
#footer div.icones_pay {
  float: right; 
  width: 279px;
  margin: 0px;
  padding: 0px
}
#footer div.copyright {
  float:right;
  color: #888888;
  font-weight:bold;
  text-align: right;
  font-family: "lucida grande", tahoma, arial, sans-serif;
  font-size: 11px;
}