/*
 * Kameleo XXXXXXXXX Template Graphical configuration
 */
 
 
/* default values */
body {

	/* 
		define the font of the page here:
		(linehgiht, color, size etc... You can specify the font for the titles later)
	*/
	
    font-family: "Lucida Grande", Helvetica, Arial, FreeSans, sans-serif, "open-serif", open-serif; 
    font-size: .8em; /* you can use PX, PT, % or EM */
    line-height: 1.4; /* you can use PX, PT, % or EM */ 
    
    /* font color */
    color: #411918; 
    
    /* background of the page, can contain a image. would be like this background: #000 url(yourimage.jpg) center top no-repeat; */
    background: #fff url(../img/bg_bottom.png) center bottom repeat-x fixed; 
}

/* specify additional backgrounds here */

div#w0 {
	background: transparent;
}

div#w1 {
	background: transparent;
}

div#w2 {
	background: transparent;
}

div#w3 {
	background: transparent;
}

/* Titles */
h1, h2, h3 {
    line-height: 1.2;
    /* font-family: Georgia; */ /* uncomment this if you want to specify a other font for the titles */
    letter-spacing: 0.1em; 
    font-weight: bold;
    font-style: normal;
    color: #411918;
}

h1 { /* page title */
	color: #f62e91;
    font-size: 1.75em;
	text-shadow: 0 1px 3px #888; /* left top blurradius color */
}
h2 { /* paragraph title */
    font-size: 1.2em;
	margin: 0 0 20px 0; /* margin: top right bottom left; */
}
h3 { /* module title */
    font-size: 1.25em;
}

/* global link color & style */

a {
	/* replace underline by none if you want no line under the links */
    text-decoration: underline; 
}

a:link {
	/* color of the links */
    color: #f62e91;
}
a:visited {
	/* color of the links once you have clicked on */
    color: #B869A9;
    text-decoration: none;
}
a:hover, a:focus, a:active {
    /* color of the mouse hover, and active state (when you actually press the mouse bouton) */
    color: #f62e91;
    text-decoration: none;
}

/* paragraphs (block de contenu) */

div.paragraph {
	margin: 0 0 10px 0; /* margin: top right bottom left; */
}

/* modules */

div.module {
	margin: 0 0 10px 0; /* margin: top right bottom left; */
}


/* structure */

/* header */
div#hd {
	height: 342px; /* height of your header image */
	background: url(../img/hd.png) center top no-repeat; 
}

/* content */
div#bd {
	background: url(../img/cn_bg.png) center top repeat-y; /* this images must be repeatable */
}

div#bd div.cn {
	margin-top: -200px;	/* pushes the content over the header */
}

/* content zones */

div#bd div.r1 div.wrap { /* left row styling */
	padding: 70px 15px 0 30px; /* spaceing: top right bottom left */
}

div#bd div.r2 div.wrap { /* center row styling */
	padding: 0 15px;  /* spaceing: top&bottom right&left */
}

div#bd div.r3 div.wrap { /* right row styling */
	padding: 0 30px 0 15px;  /* spaceing: top right bottom left */
}

/* footer */
div#ft {
	height: 111px; /* height of your header image */
	background: url(../img/ft.png) center top no-repeat; 
}

/* logo */
strong#logo a {
	position: absolute;
	
	top: 20px; /* position in the header from the top (can use bottom to)*/
	left: 0px; /* position in the header from the left (can use right to)*/
	
	padding: 250px 0 0 250px; /* height 0 0 width */
	background: url(../img/logo.png) no-repeat; /* url to your logo */
}

/* navigation */

ul#mainNav li a { /* style of the main navigation links */
	font-weight: bold;
	text-decoration: none;
	color: #f62e91;
	padding: 0 0 0 35px;
	line-height: 1.6;
}

ul#mainNav li a:hover {
	color: #411918;
	text-decoration: underline;
}

ul#mainNav li.on a { /* styling of the active menu*/
	color: #411918;
}

/* subnavigation */
ul#mainNav li ul {
	padding: 0 0 0 10px;
}

ul#mainNav li.on ul a { /* style of the subnavigation links */
	font-size: 11px;
	color: #f62e91;
}

ul#mainNav li.on ul a:hover {
	color: #000;
}


