/*
	custom.css — custom styles for Cutline that YOU define
	------------------------------------------------------
	
	This stylesheet will allow you to futureproof your
	changes against future releases and upgrades. I know
	you work hard on your modified styles, and I don't
	want you to feel like every upgrade is a total drag!
	
	Instructions:
	
	Modifying existing Cutline styles to your liking is a
	breeze with this handy stylesheet. The <body> tag
	within the header.php file has been appended with a
	CSS class called "custom," and thanks to this, you now
	have the ability to override ANY style that's declared
	in the original Cutline stylesheet.
	
	In practice, you simply need to copy the CSS for the
	element that you want to change (from style.css) and
	then paste it here. Prefix the new CSS declaration
	with .custom, and then make your tweaks as necessary.
	
	Here's an example:
	
	To change the default color of unvisited links from 
	blue to red (#c00) and remove the default underline, 
	this is what you would do:
	
	.custom a { color: #c00; text-decoration: none; }
	
	Cool? Now get to hackin!
*/

/*couleur de fond du blog*/
body
{
	background: #F5F0E5;
}

/*liens par défaut*/
a { color: #E7E0D2; text-decoration: underline; } /*#D4CAB2 */

a:visited { color: #E7E0D2; text-decoration: underline; } /*#413A33*/

a:hover { color: #CC7C61; text-decoration: underline; }

/*image du header*/
#masthead { background: url('../images/header_up.jpg') no-repeat; }

/*liens ds le menu*/
ul#nav li a, ul#nav li a:visited {
	color: #E7E0D2;
	text-decoration: none;
}
ul#nav li a:hover {
	color: #CC7C61;
	text-decoration: underline;
}
/* liens selectionnés dans le menu*/
ul#nav li a.current, ul#nav li a.current:visited, ul#nav li a.current:hover {
	color: #CC7C61;
	text-decoration: underline;
}	

/*image du menu*/
ul#nav { 
background: url('../images/header_nav.jpg') repeat-x;
border-bottom: 0px solid #000; }

/*2ieme image sous le menu*/
#header_img { position: relative; border-bottom: 0px solid #000;margin: 0 0 2.0em 0; }

/*le site en lui meme*/
#container { width: 970px; margin: 10px auto 0 auto; }

/*le contenu des posts au mileux
la couleur de fond, la couleur du texte
attention les liens sont définis juste en dessous
*/
#content {
border: 1px solid #564D44;
	background-color: #87A29F;
	color: White;
	display: block;
}
/*les liens dans la boite du mileu*/
#content a {
	color: #D4CAB2; /*#564D44;/*#D4CAB2*/
	font-family: Papyrus;
	font-size: 1.2em;
}
#content a:visited {
	color: #D4CAB2; /* #564D44;*/
	font-family: Papyrus;
}
#content a:hover {text-decoration: underline; color:#CC7C61;}

/*bordure, couleur de fond et couleur du texte
des widget*/
ul.sidebar_list li.widget, ul.sidebar_list li.linkcat {
	border: 1px solid #564D44;
	background: #87A082;
	color: #E7E0D2;/*#D4CAB2;*/
	margin: 0 0 1.0em 0;
}
/*header des widget
image de fond du header, couleur du texte, style du texte
*/
li.widget h2, li.linkcat h2 {
	font-weight: bolder;
	font-size: 0.995em;
	text-transform: uppercase;
	background: url('../images/header_widget.jpg') 0 100% repeat-x; /*background: url('images/hr_dot_black.gif') 0 100% repeat-x;*/
	color: #413A33; /*#564D44;*/
	margin-top: 9px;
	text-align: center; /*font-family: Papyrus;*/
	
}

/*la partie des tags*/
.tagged {
	color: White; /*#888;*/
	}

/*gestion des catégories
image de la bullet
niveau 0
*/ 
#folding_category_list .lwfcl_level-0 {
	background-image: url(../images/bullet_1.gif);
	background-repeat: no-repeat;
	padding-left: 25px;
	background-position:top left;
	background-attachment: scroll;
}

/*gestion des catégories
image de la bullet
niveau 1
*/ 
#folding_category_list .lwfcl_level-1
{
	background-image: url(../images/bullet_2.gif);
	background-repeat: no-repeat;
	padding-left: 25px;
	background-position:top left;
	background-attachment: scroll;
}
