/* ***** BEGIN LICENSE BLOCK *****
 * This file is part of DotClear.
 * Copyright (c) 2004 Maurice Svay and contributors. All rights
 * reserved.
 *
 * DotClear is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * DotClear is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with DotClear; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * ***** END LICENSE BLOCK *****
 *
 * Contributor(s):
 *  Maurice Svay
 */

/* Ce fichier définit le style visuel pour les différents éléments du blog.
 * Dans l'ordre, vous trouverez les règles qui définissent l'apparence pour:
 * - les éléments HTML en général
 * - la page
 * - l'entête
 * - le prélude
 * - le contenu
 * - la barre de navigation
 * - le pied de page
 *
 * L'agengement des blocs est défini dans le fichier layout.css
 * Pour mettre la barre de navigation à gauche, décommentez l'appel à 
 * layout-gauche.css
 */

@import "layout.css";
/* @import "layout-gauche.css"; */
 
/* Les éléments HTML en général
-------------------------------------------------------- */
body{
	background-color: #111;
	color: #ddd;
	font-size: 71%;
	line-height: 1.6em;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	border-top: 10px solid #DDD;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Trebuchet MS", sans-serif;
}

h1{font-size: 1.2em;}
h2{font-size: 1.4em;}
h3{font-size: 1.3em;}
h4{font-size: 1.2em;}
h5{font-size: 1.1em;}
h6{font-size: 1em;}

pre, code{
	font-size: 1.2em;
}

pre{
	width: 100%;
	overflow: auto;
	border: 1px solid #CCC;
}

fieldset{
	border: none;
}

label{
	cursor: pointer;
	cursor: hand;
}

.fieldone label{
	color:#ffdd33;
}

.field label{
	display: block;
}


/* champs des commentaires sous les articles 
-------------------------------------------------------------*/

input,textarea{
	background:#383838;
	color: #ccc;
	border: 1px solid #555;
}

/* champs du corps du commentaire sous les articles 
-------------------------------------------------------------*/

textarea{
	width: 100%;
	margin-top: 1em;
	font-size: 1em;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color:#333;
	color: #ccc;
	border:1px inset #D4D0C8;
}

input{

	border:1px inset #666;
}

a{
	color: #eee;
	text-decoration: none;
}

a:visited{
	color: #eee;
}

a:hover{
	color: #80D6FF;
}

.left{
	float: left;
	margin-right: 1em;
}

.right{
	float: right;
	margin-left: 1em;
}

/* La page
-------------------------------------------------------- */
#page{
	background: #222;
	color: inherit;
}
 
/* L'entête
-------------------------------------------------------- */
#top{
	height: 93px;
	/*padding-top: 20px;*/
	background: #333 url(img/banniere03.jpg) no-repeat left top;
}

top img
{
	border:0;
}

#top h1{
	height: 30px;
	line-height: 40px;
	margin: 0 0 0 10px;
	padding-top: 5px;
	color: #eee;
}

#top h1 a{
	text-decoration: none;
	color: #FFFFFF;
}

/* Le prélude contient le menu du haut
-------------------------------------------------------- */ 

#prelude{
	padding:0.2em 0 0.2em 0;
	/* border-bottom: 1px solid #606060; */
	/* border-top: 1px solid #606060; */
	border-right:1px solid #606060;
	border-left:1px solid #606060;
	margin-top: 2px;
	margin-bottom: 2px;
	background:#222;
	font-size: 1.1em;
	text-align:center;
	}

#prelude a{
	text-decoration: none;
	color: #22dd22;
	background: transparent;
}

#prelude a:hover{
	color: #80D6FF;
	background: transparent;
}


/* le content contient l ensemble des billets */
#content{
	margin: 0 0 0 0.4em;
	padding: 0 0 0 0.6em;
	border-left: 1px solid #606060;
	background:#222;
	color:inherit;
	padding-bottom: 0.8em;
	}



/* recherche -------------------------*/



#search {
	color: inherit;
	position: absolute;
	top:80px;
	padding-left:40px;
	/* right:-780px; */
	}


#search fieldset, #search p{
	margin: 0;
	padding: 0;
}


#search input[type=submit] {
	background-color:#606060;
	color:#D4D0C8;
	border: 1px solid #2A2A2A;
	font-size: 9px;
	padding:3px;
	}

#search input[type=submit]:hover {
	background-color:inherit;
	padding:3px;
	}


#q{
	color:#D4D0C8;
	border: 1px solid #2A2A2A;
	padding-left: 18px;
	/* background: #ddd url(img/q.png) no-repeat 4px center; */
}


#q:focus {
	border: 1px solid #2A2A2A;
	background-color:#404040;
	padding:4px;
	}







/* Le contenu
-------------------------------------------------------- */
.day-date{
	padding-left: 20px;
	margin: 0;
	text-align:center;
	color: #aaa;
	background: transparent;
	font-style: italic;
	display:none;
}

.post-title
{
	color: #ffdd33;
	background: #484848;
	margin:0;
	padding:5px;
	padding-bottom:6px;
	text-align:center;
	font-size:1.4em;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
}


.post-title a
{
	color: #ffdd33;
	background: #484848;
	text-decoration: none;
}


.post-title a:visited
{
	color: #ffdd33;
}



.post-info{
	margin-top: 0;
	color: #ccc;
	background: #383838;
	padding:3px 25px 3px 0;
	border-bottom: 1px solid #424242;
	font-size:90%;
	text-align:right;
}

.post-info a{
	color: #ffdd33;
	font-weight:bold;
	background: transparent;
	text-decoration: none;
}


.post-chapo {
	text-align: justify;
	margin: 0.5em 20px 0 20px;
	line-height: 200%;
}



/* on regle les marges du contenu du texte de l article */
.post-chapo, .post-content{
	text-align: justify;
	margin: 15px 50px 0 40px;
	line-height:200%;
}

.post-content blockquote{
	font-family: Georgia, serif;
	font-style: italic;
}


/* change la couleur des 4 petits points */
.post-info-co{
	text-align: right;
	padding-right:4em;
	padding-bottom:20px;
	color: #22dd22;
	font-size:90%;
}

.post img { 
	border: 1px solid #424242; 
	}

.lire {
	color: #FFDD33;
	background-color: transparent;
	text-align: right;
	padding: 1ex 1em;
	font-style: italic;
	font-weight: bold;
	}	
	

#trackbacks blockquote, #comments blockquote{
	border: 1px dotted #555;
	background-color:#333;
	margin: 0.5em 0;
	padding: 0.5ex 1em;
	margin: 0 0 0 0.6em;
	line-height: 200%;
	}


input[type=submit], input[type=reset] {
	background-color:#606060;
	color:#dddddd;
	border: 1px solid #D4D0C8;
	font-size: 12px;
	}
input[type=submit]:hover {
	background:#dddddd;
	color:#606060;
	border:1px solid #D4D0C8;
	}




/* La barre de navigation
-------------------------------------------------------- */
#sidebar div{
	color: #inherit;
	line-height:190%;
	background-color: #333;
}

#sidebar A:hover
{
	color:#ffdd33;
}

#sidebar div ul{
	margin: 0;
	padding-left: 5em;
	list-style: disc;
}


/* couleur de titre des menus */
#sidebar h2, #sidebar h3{
	color: #999;
	background-color:#484848;
	margin: 0 0 1ex 0;
	padding: 2px 10px 2px 10px;
	text-align:center;
}

#sidebar h3{
	color: #d4d0c8;
	font-size: 1em;
	margin: 0;
}








/* calendrier --------------------- */

#sidebar div#calendar{
	/*border-top: 1px solid #F0F0F0;*/
}

#sidebar div#calendar table{
	font-size: 0.8em;
	text-align: center;
	margin: 0 auto;
	border-collapse: collapse;
}

#sidebar div#calendar table caption{
	margin: 0 auto;
	border:1px solid #4F4F4F;
	font-weight:bold;
	color:#22dd22;
}

#sidebar div#calendar table th{
	color: #eee;
	background: transparent;
}

#sidebar div#calendar table td{
	width: 14%;
	line-height: 2em;
	border: 1px solid #4F4F4F;
	color:#ccc;
}

#sidebar div#calendar table td a{
	display: block;
	background: #4F4F4F;
	color: #22dd22;
	font-weight: bold;
	text-decoration: none;
}

#sidebar div#calendar table td a:hover{
	background: #606060;
	color: #ccc;
}


/* La liste des articles le titre des categories
-------------------------------------------------------- */
#toc h3 {
	border-bottom:1px solid #666;
	font-size: 1.27em;
	}


	
	
	
/* Le pied de page
-------------------------------------------------------- */
#footer{
	margin: 0;
	padding: 1em;
	border-top: 1px solid #555;
	background: #222;
	color: #666;
}

#footer a{
	color: #555;
}
