/*------------------------------------*\
	HTML 5 Specific features
\*------------------------------------*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

/*------------------------------------*\
	FONT FACES
\*------------------------------------*/
@font-face {
	font-family: 'Molengo';
	src: url('typo/Molengo-Regular-webfont.eot');
	src: local('☺'), url('typo/Molengo-Regular-webfont.woff') format('woff'), url('typo/Molengo-Regular-webfont.ttf') format('truetype'), url('typo/Molengo-Regular-webfont.svg#webfontI1mXyLY2') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*------------------------------------*\
	BASIC STYLES
\*------------------------------------*/
body{
	margin : 0;
	padding : 0;
	font : 1em/1.35em 'Molengo', Helvetica, Arial, sans-serif;
	
	background : #FFF url(img/bg1.png) no-repeat left bottom fixed;
	
	/* CSS 3 Stuffs for capable browser */
	background : url(img/bg1.png) no-repeat left bottom fixed, #FFF url(img/bg2.png) no-repeat right bottom fixed;
}

/*------------------------------------*\
	BASIC STYLES : NATURAL INLINE TAGS
\*------------------------------------*/
a{
	color : #700;
}

a:hover{
	color : #D00;
}

h1 a{
	text-decoration : none;
}

a img{
	border : none;
}

sup{
	font: bold 0.5em Helvetica, Arial, sans-serif;
	vertical-align: top;
}

sup a{
	display : inline-block;
	padding : 0 .2em;
	border: 1px solid #CCC;
	background: #EFEFEF;
	text-decoration: none;
}

sup a:hover{
	border: 1px solid #900;
	background: #FFEFEF;
}
q{
	font-style: italic;
}

code{
	font: 1em/1.35em Courier New, Courier, monospace;
}

/*------------------------------------*\
	BASIC STYLES : NATURAL BLOCK TAGS
\*------------------------------------*/
p,ul,ol,blockquote{
	margin : 1em 0 1.35em 0;
}

li{
	margin-bottom : .67em;
}

fieldset p{
	margin-bottom : 0;
}

pre{
	font: .9em/1.2em Courier New, Courier, monospace;
	
	border : 1px solid #CCC;
	border-left : 5px solid #583;
	
	padding : .5em .7em;
	
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

blockquote{
	display : table-cell;
	
	text-align : justify;
	vertical-align : middle;
	
	height : 66px;
	padding : 0 40px;
	
	background: url(img/bq-open.png) no-repeat left top;
	
	/* CSS 3 Stuffs for capable browser */
	background: url(img/bq-open.png) no-repeat left top, url(img/bq-close.png) no-repeat right bottom;
}

/*------------------------------------*\
	BASIC STYLES : TITLES
\*------------------------------------*/
h1,h2,h3,h4,h5,h6{
	font-family : Georgia, 'Times New Roman', Times, sans-serif;
	font-weight : normal;
	
	margin : 0;
}

h1{
	font-size: 1.7em;
	line-height : 1.2em;
	font-weight : bold;
}

article h1{
	/* CSS 3 Stuffs for capable browser */
	text-shadow : rgba(0,0,0,.3) 0 1px 2px;
}

h2{
	font-size: 1.5em;
	
	margin-top : 2em;
}

h3{
	font-size: 1.2em;
	
	margin-top : 1.5em;
}

h4{
	font-size: 1em;
	
	margin-top : 1.5em;
}

h5{
	font-size: 1em;
	font-style : italic;
	
	margin : 1.3em 0 0 1em;
}

h6{
	font-size: 1em;
	font-style : italic;
	
	margin : 1.3em 0 0 2em;
}

/*------------------------------------*\
	BASIC STYLES : TABLE TAGS
\*------------------------------------*/
table{
	border : 1px solid #999;
	border-collapse : collapse;
	border-spacing : 0;
}

th, td{
	padding : .5em;
	border : 1px solid #999;
	
	background-color : #FFF;
}

th{
	background-color : #EFEFEF;
}

tbody th{
	text-align : left;
}

tbody tr:hover{
	/* CSS 3 Stuffs for capable browser */
	   -moz-box-shadow : rgba(0, 0, 0, .6) 0 0 .8em;
	-webkit-box-shadow : rgba(0, 0, 0, .6) 0 0 .8em;
	        box-shadow : rgba(0, 0, 0, .6) 0 0 .8em;
}

caption{
	font-size : .8em;
	font-style: italic;
	text-align : left;
}

/*------------------------------------*\
	BASIC STYLES : FORM TAGS
\*------------------------------------*/
form{
	margin : 0;
	padding : 0;
}

fieldset{
	margin : 0;
	padding : 0;
	border : none;
}

legend{
	position:absolute !important;   
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

textarea{
	display : block;
}

select, textarea, input, button{
	font: .9em Helvetica, Arial, sans-serif;
	border : 1px solid #CCC;
	width : 100%;
	padding : 0.4em;
	
	/* CSS 3 Stuffs for capable browser */
	   -moz-box-sizing : border-box;
	-webkit-box-sizing : border-box;
	        box-sizing : border-box;
}

input:focus, select:focus, textarea:focus{
	border-color : #546F00;
	
	/* CSS 3 Stuffs for capable browsers */
	   -moz-box-shadow : rgba(159,41,0,.5) 0 0 8px;
	-webkit-box-shadow : rgba(159,41,0,.5) 0 0 8px;
		    box-shadow : rgba(159,41,0,.5) 0 0 8px;
}

input[type="submit"],
input[type="button"],
button {
	cursor : pointer;
	
	color : #FFF;
	text-transform : capitalize;
	font-weight : bold;
	
	width : auto;
	padding: .3em .7em .3em;
	margin : 2px;

	background-color : #A9CF40;
	border-color : #89AF20;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.75) 1px 1px 1px;
	
	border-color : rgba(0,0,0,.1);
	
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.15), rgba(255,255,255,.1) 45%, rgba(0,0,0,.1) 55%, rgba(255,255,255,.2) 95%, rgba(0,0,0,.05));
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.15)), to(rgba(0,0,0,.05)), color-stop(.45, rgba(255,255,255,.1)), color-stop(.55, rgba(0,0,0,.1)), color-stop(.95, rgba(255,255,255,.2)));
	
	   -moz-border-radius: 4px;
	-webkit-border-radius: 3px;
	        border-radius: 3px;

	   -moz-box-shadow : rgba(0,0,0,.2) 0px 1px 2px, #ffffee 0 0 2px inset;
	-webkit-box-shadow : rgba(0,0,0,.2) 0px 1px 2px, #ffffee 0 0 2px inset;
	        box-shadow : rgba(0,0,0,.2) 0px 1px 2px, #ffffee 0 0 2px inset;
	
	     -o-transition : all 300ms linear;
	   -moz-transition : all 300ms linear;
	-webkit-transition : all 300ms linear;
	        transition : all 300ms linear;
}

input[type="submit"]:hover, input[type="submit"]:focus,
input[type="button"]:hover, input[type="button"]:focus,
button:hover, button:focus {
	background-color : #8CAF2B;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.5) 1px 1px 2px;
	
	border-color : rgba(0,0,0,.4);
	
	   -moz-box-shadow : rgba(0,0,0,.2) 1px 2px 4px, #ffffee 0 0 2px inset;
	-webkit-box-shadow : rgba(0,0,0,.2) 1px 2px 4px, #ffffee 0 0 2px inset;
	        box-shadow : rgba(0,0,0,.2) 1px 2px 4px, #ffffee 0 0 2px inset;
}

input[type="checkbox"],
input[type="radio"]{
	width : auto;
	border : none;
}

label{
	display : block;
}

input[type="checkbox"]+label,
input[type="radio"]+label{
	display : inline;
	cursor : pointer;
}

aside{margin : 1.35em 0;}

/*------------------------------------*\
	GLOBAL BEHAVIORS
\*------------------------------------*/
article .info{
	color : #666;
	font-size : .8em;
	
	margin-bottom : 0;
}

img.smiley{
	vertical-align : middle;
	
	height : 1em;
}

.top .excerpt{
	font: .9em Georgia, "Times New Roman", Time, serif;
}

.info a{
	text-decoration : none;
}

.info a:hover{
	text-decoration : underline;
}

a.feed{
	display : inline-block;
	
	padding-left : 20px;
	min-height : 18px;
	
	background : url(icons/feed.png) no-repeat center left;
}

.form-help{
	font: italic .7em Verdana, Helvetica, Arial, sans-serif; 
	
	margin: 0;
}

.tagCloud{
	display : block;
	
	list-style : none;
	
	margin : 0;
}

article .tagCloud{
	padding : 0 0 0 20px;
	
	background : url(icons/tag_green.png) no-repeat 0 .4em;
}

article .tagCloud a {
	text-decoration : none;
}

article .tagCloud a:hover {
	text-decoration : underline;
}

.tags li{
	display : inline;
}

.tagCloud > *{
	display : inline;
}

.tagCloud > *:after,
.tags a:after{
	content: ", ";
}

/* CSS 3 Stuffs for capable browsers */
.tagCloud > :last-child:after,
.tags :last-child a:after{
	content: "";
}

#mainContent .tag0{font-size : .8em;}
#mainContent .tag10{font-size : .9em;}
#mainContent .tag20{font-size : 1em;}
#mainContent .tag30{font-size : 1.1em;}
#mainContent .tag40{font-size : 1.2em;}
#mainContent .tag50{font-size : 1.3em;}
#mainContent .tag60{font-size : 1.4em;}
#mainContent .tag70{font-size : 1.5em;}
#mainContent .tag80{font-size : 1.6em;}
#mainContent .tag90{font-size : 1.7em;}
#mainContent .tag100{font-size : 1.8em;}

/*------------------------------------*\
	SPECIFIC : #wrapper
\*------------------------------------*/
#wrapper{
	margin : 0 2.5em;
	overflow : auto;
}

/*------------------------------------*\
	SPECIFIC : header
\*------------------------------------*/
header{
	color : #FFF;
	white-space : no-wrap;
	
	width : 100%;
	border-bottom : 7px solid #EFEFEF;
	padding : 2px 0 1px;
	
	position : fixed;
	z-index : 1;
	top : 0;
	
	background : #222;
}

header #quickAccess{
	color : #AAA;
	white-space : no-wrap;
	
	margin-top : -1px;
	padding : 0 .6em .1em;
	
	position : absolute;
	right : 1em;
	bottom: -1.45em;
	
	background : #EFEFEF;
	
	/* CSS 3 Stuffs for capable browsers */
	   -moz-border-radius : 0 0 .4em .4em;
	-webkit-border-radius : 0 0 .4em .4em;
	        border-radius : 0 0 .4em .4em;
}

header #quickAccess a:hover,
header #quickAccess a:active,
header #quickAccess a:focus{
	color : #C00;
	text-decoration : underline;
}

header #quickAccess:before{
	content : "Accès rapide : ";
}

header h1{
	font : 1em/1.35em 'Molengo', Helvetica, Arial, sans-serif;
	
	display : inline-block;
	
	margin : 0 0 0 3.5em;
	
	position : relative;
}

header h1:before{
	content:url(img/home.png);
	
	position : absolute;
	left : -20px;
	bottom : .35em;
	
	/* CSS 3 Stuffs for capable browsers */
	opacity : 0;

	     -o-transition : opacity 700ms ease-out;
	   -moz-transition : opacity 700ms ease-out;
	-webkit-transition : opacity 700ms ease-out;
	        transition : opacity 700ms ease-out;
}

header h1:hover:before{
	/* CSS 3 Stuffs for capable browsers */
	opacity : 1;
}

header h1 a{
	display : inline-block;
	
	padding : .5em .7em .5em .1em;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.7) 1px 1px 2px;
}

header h2{
	display : none;
}

header a,
header a:hover{
	color : inherit;
	text-decoration : none;
}

header ul{
	display : inline;
	list-style : none;
	
	margin : 0;
	padding : 0;
}

header li{
	display : inline-block;
	
	margin : 0;
	
	position : relative;
}

header li a{
	display : inline-block;
	
	text-transform : uppercase;
	
	padding : .5em .8em .5em .7em;
	
	/* CSS 3 Stuffs for capable browsers */
	background: url(img/menu.png) no-repeat left top, url(img/menu.png) no-repeat bottom right;
	background-color : #222;
	
	     -o-transition: background-color 500ms ease-out;
	   -moz-transition: background-color 500ms ease-out;
	-webkit-transition: background-color 500ms ease-out;
	        transition: background-color 500ms ease-out;
}

header li:before{
	content: " // ";
}

header li:hover a,
header li a:active,
header li a:focus{
	background-color : #900;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.7) 1px 1px 2px;
}

header .context{
	display : none; /* FIXME : need JS to improve UX and A11y */
	
	font-size : .8em;
	
	width : 20em;
	padding : 4px 0 0;
	
	position : absolute;
	left : -1em;	
}

header li:hover .context{
	display : block;
}

header .context ul{
	display : inline-block;
	
	padding : .3em .5em;
	
	position : relative;
	
	background-color : #222;
	
	/* CSS 3 Stuffs for capable browsers */
	   -moz-border-radius : 3px;
	-webkit-border-radius : 3px;
	        border-radius : 3px;
}

header .context ul:before{
	content:"";
	
	border : 10px solid #222;
	border-color : transparent transparent #222;
	
	position : absolute;
	z-index : 1;
	top : -20px;
	left : 3em;
}

header .context li:before{
	content: "";
}

header li:hover .context a{
	text-transform: none;
	text-shadow : none;
	
	padding : 0;
	
	background : none;
}

header .context a:hover{
	color : #FAA;
	text-decoration : underline;
}

header #mainNav{
	display : inline-block;
}

header hgroup{
	display : inline;
}

/*------------------------------------*\
	SPECIFIC : #mainContent
\*------------------------------------*/
#mainContent{
	width : 100%;
	padding: 4.9em 0 4.9em 0;
	
	float:left;
}

#mainContent > *{
	max-width: 40em;
	min-width: 18em;
	margin: 0 0 0 13.5em;
}

#mainContent nav{
	text-align : center;
	
	border : 1px solid #DEDEDE;
	margin : 1.35em 0;
	padding : .5em 1em .6em;
	
	background : #EFEFEF;
	
	/* CSS 3 Stuffs for capable browsers */
	background : rgba(240,240,240,.85);
	
	   -moz-border-radius : 5px;
	-webkit-border-radius : 5px;
	        border-radius : 5px;
}

#mainContent > nav{
	margin-left : 13.5em;
}

#post #mainContent > nav{
	max-width : 38em;
	margin-left : 14.5em;
}

#mainContent article h1{
	border-top : 1px solid #CCC;
	padding-top : 1em;
}

#mainContent article:first-child h1{
	border : none;
	padding-top : 0;
}

#mainContent article{
	background : rgba(255,255,255,.75);
	padding : .5em 1em;
}

#mainContent article h1 a, 
#mainContent article h2 a{ 
	color : #000;
	text-decoration : none;
}

#mainContent article h1 a:hover, 
#mainContent article h2 a:hover{ 
	color : #900;
}

#mainContent aside fieldset{
	width : 50%;
	float : left;
}

#mainContent aside fieldset.identite{
	width : 37%;
	margin-right : 2%;
}

#mainContent aside fieldset.texte{
	width : 60%;
}

#mainContent .texte textarea{
	height : 13em;
}

#mainContent .buttons{
	clear:both;
	padding : 1em 0 0 39%;
}

#mainContent aside{
	border-top : 1px solid #000;
	margin-top : 2.6em;
	padding-top : 2.6em;
}

#mainContent aside h2{
	margin : 0 0 1em 0;
}

#comments dd,
#pr .preview{
	overflow : hidden;

	margin : 0 0 1.3em 0;
	padding : 0 1.3em;
	
	background : #EFEFEF;
	
	/* CSS 3 Stuffs for capable browsers */
	background : rgba(0,0,0,.05);
	
	   -moz-border-radius : 0 5px 5px 5px;
	-webkit-border-radius : 0 5px 5px 5px;
	        border-radius : 0 5px 5px 5px;
}

#pr .preview{
	margin-top : 1.3em;
	
	/* CSS 3 Stuffs for capable browsers */
	   -moz-border-radius : 5px;
	-webkit-border-radius : 5px;
	        border-radius : 5px;
}

#comments dd.me{
	background : #F1F9EF;
	
	/* CSS 3 Stuffs for capable browsers */
	background : rgba(100,180,0,.05);
}

#comments dt.me a.comment-number{
	background : #F1F9EF;
	
	/* CSS 3 Stuffs for capable browsers */
	background : rgba(100,180,0,.05);
}

#comments dt {
	font-size : .8em;

	margin: 1.3em 0 0;
}

#comments dt time{
	color : #999;
}

#comments dt a.comment-number{
	display : inline-block;
	
	font-family : Georgia, "Times New Roman", Time, serif;
	font-weight : bold;
	text-decoration : none;
	
	padding : 0 .7em .1em;
	margin-right : .5em;

	background : #EFEFEF;

	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.3) 1px 1px 2px;
	
	background : rgba(0,0,0,.05);
	
	   -moz-border-radius : 5px 5px 0 0;
	-webkit-border-radius : 5px 5px 0 0;
	        border-radius : 5px 5px 0 0;
}

#comments dt a.comment-number:hover{
	background : #900;
	color : #FFF;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.8) 1px 1px 2px;
}

/*------------------------------------*\
	SPECIFIC : #sidebar
\*------------------------------------*/
#sidebar{
	width : 12em;
	margin : 0 0 0 -100%;
	padding : 5.4em 0 0 0;

	float:left;
}

#sidebar.lock{
	margin : 0 2.5em 5.4em;
	
	float : none;
	
	position : fixed;
	top : 0;
	left : 0;
}

#sidebar a{
	color : #600;
	text-decoration : none;
}

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

#blognav, #blogextra{
	border : 1px solid #DEDEDE;
	margin : 0 0 1.3em 0;
	padding : .2em 0 .5em 0;
	
	background : #EFEFEF;
	
	/* CSS 3 Stuffs for capable browsers */
	background : rgba(240,240,240,.85);
	
	   -moz-border-radius : 5px;
	-webkit-border-radius : 5px;
	        border-radius : 5px;
}

#sidebar h2{
	font : 1em/1.35em 'Molengo', Helvetica, Arial, sans-serif;
	text-transform : uppercase;
	
	margin-top : 0;
	margin-bottom : .2em;
	padding : .4em 0 0;
}

#sidebar h3{
	font : .9em 'Molengo', Helvetica, Arial, sans-serif;
	font-weight : bold;
	
	margin-top : .3em;
}

#sidebar ul{
	line-height : 1.1em;

	list-style : none;
	
	margin : 0 0 .5em;
	padding : 0;
}

#sidebar p{
	margin : .2em 0 .5em;
	padding : 0;
}

#sidebar li{
	font-size : .8em;
	margin : 0;
	padding : 0;
}

#sidebar #blognav>div,
#sidebar #blogextra>div{
	border-top : 1px solid #DEDEDE;
	padding : 0 1em;
}

#sidebar #blognav>div:first-child,
#sidebar #blogextra>div:first-child{
	border-top : none;
}

#sidebar #search h2{
	border : none;
}

#sidebar #search p{
	overflow : hidden;
	white-space : nowrap;
	text-align : right;
	width : 100%;
	
	border : 1px solid #CCC;
	margin : 0 0 .5em;
	padding : 0 ;
	
	position : relative;
	
	background : #FFF;
	
	/* CSS 3 Stuffs for capable browsers */
	display : -moz-box;
	/*display : -webkit-box; /* Chrome does not handle it well with input text */
	display : -ms-box;
	display : box;
	
	   -moz-box-orient : horizontal;
	/*-webkit-box-orient : horizontal;*/
	    -ms-box-orient : horizontal;
	        box-orient : horizontal;

	   -moz-box-sizing : border-box;
	-webkit-box-sizing : border-box;
	        box-sizing : border-box;

	   -moz-border-radius : 5px;
	-webkit-border-radius : 5px;
	        border-radius : 5px;
}

#search input[type="text"]{
	width : 7.8em;
	
	border : none;
	margin : 0;
	padding : .2em .4em;
	
	float : left;
	
	background : none;
	
	/* CSS 3 Stuffs for capable browsers */
	   -moz-box-flex : 1;
	/*-webkit-box-flex : 1;*/
	    -ms-box-flex : 1;
	        box-flex : 1;
	
	   -moz-box-shadow : none;
	-webkit-box-shadow : none;
		    box-shadow : none;
}

#search input[type="submit"]{
	vertical-align : top;
	text-transform : none;
	
	width : 2.5em;
	margin : 0;
	padding : .2em .4em;
	border : none;
	
	background-color : #D9D9D9;
	
	background-image : none;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.2) 0 0 2px;
	
	   -moz-border-radius : 0 4px 4px 0;
	-webkit-border-radius : 0 4px 4px 0;
	        border-radius : 0 4px 4px 0;
	
	   -moz-box-shadow : none;
	-webkit-box-shadow : none;
	        box-shadow : none;
}

#sidebar #search input[type="submit"]:hover,
#search input[type="submit"]:focus,
#search input:focus  + input[type="submit"]{
	background-color : #A9CF40;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.4) 1px 1px 2px;
	
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.15), rgba(255,255,255,.1) 45%, rgba(0,0,0,.1) 55%, rgba(255,255,255,.2) 95%, rgba(0,0,0,.05));
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.15)), to(rgba(0,0,0,.05)), color-stop(.45, rgba(255,255,255,.1)), color-stop(.55, rgba(0,0,0,.1)), color-stop(.95, rgba(255,255,255,.2)));
	
	   -moz-box-shadow : #ffffee 0 0 3px inset;
	/* -webkit-box-shadow : #ffffee 0 0 3px inset; /* Chrome does not handle it well with border-radius */ 
	        box-shadow : #ffffee 0 0 3px inset;
}

#sidebar #search input[type="submit"]:hover,
#search input[type="submit"]:focus{
	background-color : #8CAF2B;
	
	/* CSS 3 Stuffs for capable browsers */
	text-shadow : rgba(0,0,0,.6) 1px 2px 3px;
}

/*------------------------------------*\
	SPECIFIC : footer
\*------------------------------------*/
footer{
	color : #FFF;
	font-size : .8em;
	
	width:100%;
	padding : 2px 0 1px;
	border-top : 6px solid #EFEFEF;
	
	background : #222;

	position:fixed; 
	bottom:0; 
}

footer a{
	color : #FAA;
}

footer p{
	margin : .65em 3.5em
}

/*------------------------------------*\
	BIG SCREEN
\*------------------------------------*
@media screen and (min-device-width: 1280px){
	html{
		font-size : 120%;
	}
}

/*------------------------------------*\
	VERY BIG SCREEN
\*------------------------------------*/
@media screen and (min-device-width: 1600px){
	html{
		font-size : 130%;
	}
}

/*------------------------------------*\
	MEDIUM SCREEN
\*------------------------------------*/
@media screen and (max-device-width: 1024px){
	html{
		font-size : 90%;
	}
}

/*------------------------------------*\
	IPHONE & SMALL SCREEN
\*------------------------------------*/
@media screen and (max-width: 640px), screen and (max-device-width: 480px) {
	html{
		font-size : 100%;
	}

	body{
		background : #FFF url(img/bg1.png) no-repeat left bottom fixed;
	}
	
	pre{
		overflow : auto;
	}
	
	h1{
		font-size: 1.3em;
	}

	h2{
		font-size: 1.1em;
		font-weight : bold;
	}

	h3{
		font-size: 1.1em;
	}

	h4{
		font-size: 1em;
		font-weight : bold;
	}
	
	header{
		white-space : normal;
		
		width : auto;
		
		position : static;
	}
	
	header hgroup {
		display : block;
		text-align : center;
		padding : .3em 1em;
	}
	
	header h1{
		margin : 0;
	}
	
	header h1:before{
		content: "";
	}
	
	header li:before{
		content: "";
	}
	
	header :li a{
		padding : 0.5em 0.7em 0.5em 0.6em;
		font-size : 0.9em; 
	}
	
	header #quickAccess{
		position : static;
		background : #222;
		color : #FFF;
		border-top : 1px solid #CCC;
		border-bottom : 1px solid #CCC;
		padding : .5em 1em;
		text-align : center;
	
		-moz-border-radius : 0;
		-webkit-border-radius : 0;
		border-radius : 0;
	}
	
	header #quickAccess:before{
		content:"";
	}
	
	header #mainNav{
		display : block;
		padding : 2px 1em 0;
		text-align : center;
	}
	
	footer{
		position : static;
		width:auto;
		text-align : center;
		padding : .65em 1em;
	}
	
	footer p {
		margin : 0
	}
	
	#wrapper{
		margin : 0 1em;
	}
	
	#mainContent{
		float:none;
		margin : 0;
		width : auto;
		padding : 1em 0;
	}
	
	#mainContent > *{
		margin:0;
		max-width : 100%;
		min-width : 0;
	}
	
	#mainContent > nav,
	#post #mainContent > nav{
		margin-left : 0;
		max-width : 100%;
	}
	
	#mainContent aside fieldset,
	#mainContent aside fieldset.identite,
	#mainContent aside fieldset.texte{
		float : none;
		margin : 0;
		width : auto;
	}
	
	.buttons{
		padding : 0;
	}

	#sidebar{
		float:none; 
		width:100%; 
		margin:0 0 1.3em 0; 
		padding:0;
	}
	
	#sidebar.lock{
		position:static;margin:0 0 1.3em;
	}
}