/* ***** 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{
	padding: 0 ;
	text-align: center ;
	font: 0.9em "Trebuchet MS", helvetica, sans-serif ;
	background: #FFFFCC ;
	color: #669999; 
}

h1{
	height: 200px ;
	text-indent: 150px ;
}

h2{
	background: url(img/logoh2.png) no-repeat left bottom ;
}


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

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

hr{
	color: #00FFFF;
	background-color: #dea;
	height: 1px;
	border: 0;
}

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

pre{
	overflow: auto ;
	background: #dea ;
	border: 2px solid #9b2 ;
	padding: 5px 0 0 5px ;
	font-size: 1.2em ;
}

fieldset{
	border: none;
}


form
{
	border-top: 1px dashed gray;
	border-bottom: 1px dashed gray;
	border-left: 1px dashed gray;
	border-right: 1px dashed gray;
	font-weight: bold;
	background-color: #F5F5F5;
	padding: 10px;
	width: 90%;
}

input[type="checkbox"], input[type="radio"]
{
	visibility: hidden;
	width: 0px;
	height: 0px;
	padding: 0px;
	margin: 0px;
}

input[type="checkbox"] + label
{
	background: url("img/boutons.png") 0 0 no-repeat;
}

input[type="checkbox"]:focus + label
{
	background-position: 0 -16px;
}

input[type="checkbox"]:checked + label
{
	background-position: 0 -32px;
}

input[type="checkbox"]:checked:focus + label
{
	background-position: 0 -48px;
}

input[type="radio"] + label
{
	background: url("img/boutons.png") 0 -64px no-repeat;
}

input[type="radio"]:focus + label
{
	background-position: 0 -80px;
}

input[type="radio"]:checked + label
{
	background-position: 0 -96px;
}

input[type="radio"]:checked:focus + label
{
	background-position: 0 -112px;
}

input[type="text"], input[type="textfield"], textarea, input[type="password"], input[type="file"]
{
	border: 1px dashed blue;
	color: blue;
}

textarea
{
	width: 95%;
	height: 300px;
}

input[type="textfield"]:hover, input[type="text"]:hover, textarea:hover, input[type="password"]:hover, input[type="file"]:hover
{
	border: 1px solid blue;	
}

input[type="textfield"]:focus, input[type="text"]:focus, textarea:focus, input[type="password"]:focus, input[type="file"]:focus
{
	background: #DDDDDD;
	color: red;	
}

input[type="submit"], input[type="reset"]
{
	background: white;
	border: 1px solid #80a0e0;
	color: #80a0e0;
	cursor: pointer;
}

input[type="submit"]:hover, input[type="reset"]:hover
{
	background: lightgrey;
	color: red;
}

input[type="submit"]:active, input[type="reset"]:active
{
	background: black;
	color: #80a0e0;
}

select
{
	background: white;
	border: 1px dotted blue;
	color: #80a0e0;
}

select:hover
{
	border: 1px solid;
}

select:active, select:focus
{
	color: red;
	background: #DDDDDD;
	border: 1px dashed blue;
}

label 
{
	padding-left: 20px;
	height: 16px;
}

label:hover
{
	color: black;
}

.field label{
	display: block;
}

.attention{
	font-size: 0.9em;
	font-weight: 100;
	color: #FF0000;
}


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

a:hover{
	color: #0000ff;
}

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

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

/* La page
-------------------------------------------------------- */
#page{
	width: 792px ;
	margin: 0 auto;
	text-align: left ;
	border: 2px solid #669999 ;
	background: #fff ;
}
 
/* L'entête
-------------------------------------------------------- */
#top{
	height: 200px;
	padding-top: 38px;
	background: #FFF url(img/banniere.jpg) no-repeat left ;
}

#top h1{
	height: 80px;
	line-height: 80px;
	margin: 0 0 0 40px;
	padding-top: 20px;
	color: #FFFFFF;
}

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

#top h1 a:hover{
	color: #0000ff;
}

/* Le prélude
-------------------------------------------------------- */ 
#prelude{
	background: transparent;
	color: #669999;
	text-align: center;
	padding-top: 5px;
}

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

#prelude a:hover{
	color: #0000ff;
	background: transparent;
}

/* Le contenu
-------------------------------------------------------- */
.day-date{
	padding-left: 20px;
	margin-left: -32px;
	color: #888;
	background: transparent url(img/day-date.png) no-repeat left center;
	font-style: italic;
	font-size: 1em;
}

.post-title{
	font-size: 1.2em;
	background: transparent;
	margin-bottom: 0;
}

.post-title a{
	color: #FF0000;
	background: transparent;
	text-decoration: none;
}

.post-title a:hover{
	color: #0000ff;
}

.post-info{
	font-size: 0.8em;
	margin-top: 0;
	color: #669999;
	background: transparent;
	border-bottom: 1px solid #6699FF;
	padding-bottom: 1ex;
}

#right{
	text-align: right;
	
}

.post-info a{
	color: #FF0000;
	background: transparent;
	text-decoration: none;
}

.post-info a:hover{
	color: #0000ff;
}

.post-content{
	text-align: justify;
}

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

.post-info-co{
	text-align: right;
}

#trackbacks blockquote, #comments blockquote{
	border: 1px solid #EEE;
	margin: 1em 0;
	padding: 1ex 1em;
}

#comments blockquote.author-comment {
	font-weight: bold;
	background: #FFFFCC;
}

/* La barre de navigation
-------------------------------------------------------- */
#sidebar div{
	color: inherit;
}

#sidebar div#commentaire{
	font-size: 0.7em;
}

#sidebar div ul{
	margin: 0;
	padding: 0;
	list-style: none;
}


#sidebar h2{
	padding-left: 25px ;
	line-height: 25px ;
	font-size: 1.4em ;
	color: #669999 ;
	border-bottom: 1px solid #6699FF ; 
}

#sidebar h3{
	color: #9ED200;
	margin: 0 0 1ex 0;
}

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

#sidebar div#search{
	background: transparent;
	color: inherit;
	line-height: 2.3em;
}

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

#q{
	padding-left: 18px;
	background: #fff url(img/q.png) no-repeat 4px center;
}

#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;
}

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

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

#sidebar div#calendar table td a{
	display: block;
	background: #EFA;
	color: #493;
	font-weight: bold;
	text-decoration: none;
}

#sidebar div#calendar table td a:hover{
	background: #DBB8DC;
	color: #636;
}

/* Le pied de page
-------------------------------------------------------- */
#footer{
	margin: 0 ;
	padding-right: 10px ;
	line-height: 30px ;
	text-align: right ;
	color: #669999 ;
}

#footer a{
	color: #FF0000 ;
	text-decoration: none;
}

p#footer a:hover
{
	cursor: help;
	color: #0000ff;
}

/* Pour les cartes Google Map dans les billets
-------------------------------------------------------- */
#map{
	width: 100%; 
	height: 400px; 
	padding : 0 px; 
	border : 1px solid #669999; 
	margin : 0 auto;
}

/* Pour les petites cartes Google Map
-------------------------------------------------------- */
#mapPetite{
	width: 200px; 
	height: 100px; 
	padding : 0 px; 
	border : 1px solid #669999; 
	margin : 0 auto;
}

/* Pour la pagination
-------------------------------------------------------- */
.pagenav {
	font: 0.7em;
	text-align: center;
}

p.pagenav a {
	color: #FF0000 ;
	text-decoration: none;
}

p.pagenav a:hover {
	color: #0000ff;
}
