/* ***** 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 url(layout.css);
/* @import "layout-gauche.css"; */
 
/* Les !"l!"ments HTML en g!"n!"ral
-------------------------------------------------------- */
body {
	background-image: url(img/backgr.gif);
	color: #000;
	font-size: 70%;
	line-height: 1.5em;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Verdana, Arial, Geneva, Helvetica, 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;}

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

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

fieldset {
	border: none;
}

label {
	cursor: pointer;
}

.field label {
	display: block;
}

input,textarea {
	border: 1px solid #999;
}

textarea {
	width: 100%;
	font-size: 1em;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

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

a:visited {
	color: #369;
	text-decoration: none;
}

a:hover {
	color: #006;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a img {
	border: 0;
} 

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

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

/* La page
-------------------------------------------------------- */
#page {
	background: #FFF;
	color: inherit;
	border: 2px solid #F1F1F1;
}
 
/* L'ent te
-------------------------------------------------------- */
#top {
	background-color: #FFF;
	/*padding-top: 20px;*/
	background-image: url(img/top.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 222px;
	font-size: 80%;
}

#top h4 {
	height: 10px;
	margin: 0 0 0 25px;
}

#top h4 a {
	color: #FFF;
	text-decoration: none;
}

#top h4 a:hover {
	background: #FAFAFA;
	color: #FFF;
	text-decoration: none;
}

/* Le pr!"lude
-------------------------------------------------------- */ 
#prelude {
	background: transparent;
	font-size : 0.5em;
	margin: 0 25px;
}

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

#prelude a:hover {
	background: #FAFAFA;
	text-decoration: none;
	color: #FFF;
}

/* Navigation horizontale
-------------------------------------------------------- */
ul#nav-box {
		margin: 0 25px;
        padding : 0;
		list-style-type : none;
		background-color: #f5f5f5;
		color: #000;
		font-size : 1em;
		text-align: left;
		border-top: 1px solid #369;
		border-bottom: 1px solid #369;
}

ul#nav-box li {
		display: inline;
}

ul#nav-box li a {
		color: #369;
		padding-right: 5px;
		padding-left: 5px;
		text-decoration: none;
}

ul#nav-box li a:hover {
		background-color: #f5f5f5;
		padding-right: 5px;
		padding-left: 5px;
		color: #006;
} 

/* Navigation horizontale Admin
-------------------------------------------------------- */

ul#nav-box-admin {
		position: absolute;
		width: 730px;
		top: 242px;
		color: #000;
		font-size: 1em;
		background-color: transparent;
		text-align: right;
		list-style-type: none;
		margin: 0 25px;
		padding: 0;
}

ul#nav-box-admin li {
		display: inline;
}

ul#nav-box-admin li a {
		color: #FFF;
		text-decoration: none;
}

ul#nav-box-admin li a:hover {
		color: #FFF;
}

/* Le contenu
-------------------------------------------------------- */
.day-date {
	padding-left: 20px;
	margin-left: -25px;
	color: #444;
	font-size: 85%;
}

.post-title {
	color: #006;
	background: transparent;
	margin-bottom: 0;
	font-size: 1.1em;
}

.post-title a {
	color: #006;
	background: transparent;
	text-decoration: none;
	font-size: 1.1em;
}

.post-info {
	color: #999;
	background: transparent;
	margin-top: 0;
	padding-bottom: 1ex;
	font-size: 85%;
	/*border-bottom: 1px solid #FC0;*/
}

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

.post-content {
	background: transparent;
	text-align: left;
	color: #444;
}

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

.post-info-co {
	background-color: #F5F5F5;
	font-size: 85%;
	text-align: right;
	border-top: 1px solid #369;
	border-bottom: 1px solid #369;
}

#co {
	background-color: #F5F5F5;
	font-size: 85%;
	text-align: right;
	border-top: 1px solid #369;
	border-bottom: 1px solid #369;
}

#tb {
	background-color: #F5F5F5;
	font-size: 85%;
	text-align: right;
	border-top: 1px solid #369;
	border-bottom: 1px solid #369;
}

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

/* La barre de navigation
-------------------------------------------------------- */
#sidebar div {
	border-bottom: 1px solid #DEF;
	color: inherit;
}

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

#sidebar h2, #sidebar h3 {
	color: #006;
	margin: 0 0 1ex 0;
	font-size: 1em;
}

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

#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.gif) 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 {
	color: #006;
	margin: 0 auto;
}

#sidebar div#calendar table th {
	color: #006;
	text-decoration: none;
	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: #DEF;
	color: #006;
	font-weight: bold;
	text-decoration: none;
}

#sidebar div#calendar table td a:hover {
	background: #006;
	color: #FFF;
}

/* Archiveshistory dans la barre de navigation
-------------------------------------------------------- */
#archives ul.archives_year  { 
	list-style-type : none; 
	list-style-position: inside; 
	font-weight: bold; 
}

#archives a {
	text-decoration: none;
}

#archives a:hover {
	text-decoration: none;
}

#archives li .archives_month {
	display: list-item;
	list-style-type: disc;
	list-style-position: inside;
	color: inherit;
}

#archives .archives_month {
	font-style: italic;
	margin-left: 8px;
}

/* Recherche Google
-------------------------------------------------------- */

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

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

/* Fin de la Recherche Google
-------------------------------------------------------- */

/* Cinecturlink dans la barre de navigation
-------------------------------------------------------- */
#cinecturlink {
	color: inherit;
}

#cinecturlink h2 {
	text-align: left;
	color: #006;
	margin: 0 0 6px 0;
	font-size: 1em;
}

#cinecturlink h3 {
	color: #369;
	font-size: 1em;
	text-align: left;
	margin: 0;
	padding: 0 0 10px;
	width: 210px;
}

#cinecturlink-box {
	border-bottom: 1px solid #006;
	text-align: left;
	list-style-type: none;
	margin: 0px;
	padding: 0 0 12px;
	width: 210px;
	height: 133px;
}

ul#cinecturlink-box li {
	color: #006;
	text-align: left;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	width: 105px;
	height: 120px;
	float: left;
	overflow: hidden;
}

#cinecturlink-box li.image {
	list-style-type: none;
	float: left;
}

#cinecturlink .titre {
    color: #006;
	list-style-type: none;
	height: 120px;
}

#cinecturlink .artiste {
	color: #369;
	font-size: 9px;
	line-height: 13px;
	display: block;
}

/* Des logos dans la barre de navigation
-------------------------------------------------------- */
.logo {
	text-align: left;
	margin: 0 auto;
	padding: 1ex 0 0;
	border-bottom: 1px solid #DEF;
}

.logo-img {
	margin: 0;
	padding: 4px 0 0;
	border-width: 0;
}

.logo-img a{
	text-decoration: none;
}

/* Du texte dans la barre de navigation
-------------------------------------------------------- */
#intro div#intro {
	text-align: left;
	font-size: 1em;
	margin: 0 auto;
}

#intro-title { 
	color: #444;
	font-weight: bold;
	background-image: url(img/ballon.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#intro-text {
	font-size: 0.9em;
	color: #444;
	margin: 0;
}

/* Le pied de page
-------------------------------------------------------- */
#footer {
	color: #369;
	line-height: 18px;
	text-align: center;
	background: #F6F6F6;
	margin: 0 25px 15px;
	border-top: 1px solid #369;
	border-bottom: 1px solid #369;
}

#footer img {
	width: 80px;
	height: 15px;
	margin: 0px;
	padding: 0px;
}

#footer a {
	color: #369;
}

#footer a:hover {
	color: #006;
}