@charset "UTF-8";
/*
 * CSS based on
 * www.KNACSS.com V2.3 @author: Raphael Goetter, Alsacreations
 * Licence CC-BY http://creativecommons.org/licenses/by/3.0/fr/
 */


/* ----------------------------- */
/* summary */
/* ----------------------------- */
/*
1- fonts
2- reset
3- layout and modules
4- header
5- sidebar
6- footer
7- forms
8- main
9- iefix
10- print
*/

/* ----------------------------- */
/* ==fonts */
/* ----------------------------- */

@font-face {
	font-family: 'Gudea';
	src: url('index.php?tf=fonts/Gudea-Regular-webfont.eot');
	src: local('☺'), url('index.php?tf=fonts/Gudea-Regular-webfont.eot?#iefix') format('embedded-opentype'),
	     url('index.php?tf=fonts/Gudea-Regular-webfont.woff') format('woff'),
	     url('index.php?tf=fonts/Gudea-Regular-webfont.ttf') format('truetype'),
	     url('index.php?tf=fonts/Gudea-Regular-webfont.svg#GudeaRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Gudea';
	src: url('index.php?tf=fonts/Gudea-Italic-webfont.eot');
	src: local('☺'), url('index.php?tf=fonts/Gudea-Italic-webfont.eot?#iefix') format('embedded-opentype'),
	     url('index.php?tf=fonts/Gudea-Italic-webfont.woff') format('woff'),
	     url('index.php?tf=fonts/Gudea-Italic-webfont.ttf') format('truetype'),
	     url('index.php?tf=fonts/Gudea-Italic-webfont.svg#GudeaRegular') format('svg');
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: 'Gudea';
	src: url('index.php?tf=fonts/Gudea-Bold-webfont.eot');
	src: local('☺'), url('index.php?tf=fonts/Gudea-Bold-webfont.eot?#iefix') format('embedded-opentype'),
	     url('index.php?tf=fonts/Gudea-Bold-webfont.woff') format('woff'),
	     url('index.php?tf=fonts/Gudea-Bold-webfont.ttf') format('truetype'),
	     url('index.php?tf=fonts/Gudea-Bold-webfont.svg#GudeaRegular') format('svg');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Scifly';
	src: local('☺'), url('index.php?tf=fonts/SciFly-Sans.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


/* ----------------------------- */
/* ==reset */
/* ----------------------------- */

/* base font-size corresponds to 10px and is adapted to rem unit */
html {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	color: #000;
	font-family: Gudea, helvetica, verdana, sans-serif;
	font-size: 1.4em; /* equiv 14px */
	line-height: 1.5; /* adapt to your design */
}

/* font-sizing for content */
p,
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea {
	font-size: 1em; /* equiv 14px */
	line-height: 1.3;
	margin: 5px 0;
}
h3, h4, h5, h6 {
	color: #555;
}
h1, .h1-like {
	font-size: 3.429em; /* equiv 48px */
	margin: 0;
}
h2, .h2-like {
	font-size: 3.429em; /* equiv 48px */
	margin: 0;
}
h3, .h3-like {
	font-size: 1.857em; /* equiv 26px */
	margin: .8em 0 .3em;
}
h4, .h4-like {
	font-size: 1.4286em; /* equiv 20px */
	margin: .8em 0 .3em;
}
h5, .h5-like {
	font-size: 1.2857em; /* equiv 18px */
	margin: .8em 0 .3em;
}
h6, .h6-like {
	font-size: 1.1429em; /* equiv 16px */
	margin: .8em 0 .3em;
}

/* soft reset */
html,
body,
label {
	margin: 0;
	padding: 0;
}
ul,
ol {
	padding-left: 2em;
}
code,
pre,
samp {
	white-space: pre-wrap;
	font-family: consolas, 'DejaVu Sans Mono', courier, monospace;
}
code { line-height: 1em; }
table { margin-bottom: 1.5em; }
.m-reset { margin: 0 !important; }
.p-reset { padding: 0 !important; }

/* avoid collapsing margins on headings */
h1:first-child,
h2:first-child {
	margin-top: 0;
}

/* avoid margins on nested elements */
li p,
li ul,
li ol {
	margin-top: 0;
	margin-bottom: 0;
}

/* HTML5 tags */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

/* max values */
img, table, td, blockquote, code, pre, textarea, input, video {
	max-width: 100%;
	height: auto;
}

/* you shall not pass */
textarea, table, td, th, code, pre, samp, p {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
}

/* pictures */
img {
	width: auto;
	vertical-align: middle;
}
a img { border: 0; }

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

a:hover, a:focus, a:active {
	text-decoration: underline;
}


/* ----------------------------- */
/* ==layout and modules */
/* ----------------------------- */

/* switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* table layout */
/* ------------------ */
.row {
	display: table;
	table-layout: fixed;
}
.col, #custom div {
	display: table-cell;
	vertical-align: top;
}

/* blocks that needs to be placed under floats */
.clear,
.line,
.row {
	clear: both;
}

/* blocks that must contain floats */
.clearfix:before, .clearfix:after,
.line:before, .line:after,
.mod:before, .mod:after {
	content: "";
	display: table;
}
.clearfix:after,
.line:after,
.mod:after {
	clear: both;
}

/* alignments (blocks and inline) */
/* ------------------------------ */

/* left elements */
.left {
	float: left;
	margin-right: 1em;
}
.mod.left,
.col.left {
	margin-right: 0;
}

/* right elements */
.right {
	float: right;
	margin-left: 1em;
}
.mod.right,
.col.right {
	margin-left: 0;
}

img.left, img.right {
	margin-bottom: 5px;
}

.center    { margin: auto; }
.txtleft   { text-align: left; }
.txtright  { text-align: right; }
.txtcenter { text-align: center; }

/* gutters (for row and lines)    */
/* ------------------------------ */

/* 1em gutter between elements if parent is .gut */
.row.gut > * + * {
	border-left: 1em solid #fff; /* must be color of parent background */
}

/* just inline-block */
.inbl {
	display: inline-block;
	vertical-align: top;
	margin-right: -.25em;
}

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small(10px),medium(20px),large(30px),none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
.mt0, .mtn { margin-top: 0; }
.mt1, .mts { margin-top: 10px; }
.mt2, .mtm { margin-top: 20px; }
.mt3, .mtl { margin-top: 30px; }
.mr0, .mrn { margin-right: 0; }
.mr1, .mrs { margin-right: 10px; }
.mr2, .mrm { margin-right: 20px; }
.mr3, .mrl { margin-right: 30px; }
.mb0, .mbn { margin-bottom: 0; }
.mb1, .mbs { margin-bottom: 10px; }
.mb2, .mbm { margin-bottom: 20px; }
.mb3, .mbl { margin-bottom: 30px; }
.ml0, .mln { margin-left: 0; }
.ml1, .mls { margin-left: 10px; }
.ml2, .mlm { margin-left: 20px; }
.ml3, .mll { margin-left: 30px; }

.pt0, .ptn { padding-top: 0; }
.pt1, .pts { padding-top: 10px; }
.pt2, .ptm { padding-top: 20px; }
.pt3, .ptl { padding-top: 30px; }
.pr0, .prn { padding-right: 0; }
.pr1, .prs { padding-right: 10px; }
.pr2, .prm { padding-right: 20px; }
.pr3, .prl { padding-right: 30px; }
.pb0, .pbn { padding-bottom: 0; }
.pb1, .pbs { padding-bottom: 10px; }
.pb2, .pbm { padding-bottom: 20px; }
.pb3, .pbl { padding-bottom: 30px; }
.pl0, .pln { padding-left: 0; }
.pl1, .pls { padding-left: 10px; }
.pl2, .plm { padding-left: 20px; }
.pl3, .pll { padding-left: 30px; }

/* ----------------------------- */
/* ==global layout */
/* ----------------------------- */

#page {
	width: 960px;
	margin: 0 auto;
}

/* ----------------------------- */
/* ==header */
/* ----------------------------- */

.prelude {
	float: right;
	color: #666;
	margin: 0 5px;
}
.prelude a {
	color: #666;
}
#top {
	clear: right;
}
#top .row {
	height: 90px;
	border-bottom: 1px solid #ccc;
}
.title {
	width: 247px;
}
.title h1 {
	margin: 0;
	font: 0/0 a;
}
.title h1 span {
	font: 0/0 a;
	color: transparent;
}
.baseline {
	margin: 0;
	text-align: right;
	padding-right: .5em;
	color: #666;
	font-weight: normal;
}
#top .simple-menu {
	margin: 0;
	padding: 0;
	display: inline;
}
#top .simple-menu li {
	display: inline-block;
	width: 140px;
	height: 90px;
}
#top .simple-menu a {
	display: inline-block;
	width: 140px;
	height: 90px;
	padding: 1em;
	color: #fff;
	background: transparent url('index.php?tf=img/ombre.png') no-repeat bottom right;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
}
#top .simple-menu a:after {
    border-right: 12px solid #fff;
    border-bottom: 17px solid transparent;
    top: 0;
    right: 0;
    content: "";
    height: 0;
    position: absolute;
    width: 0;
}
#top .li1 a {
	background-color: #900;
}
#top .li2 a {
	background-color: #995400;
}
#top .li3 a {
	background-color: #996d00;
}
#top .li4 a {
	background-color: #998900;
}
#top li a:hover, #top li a:focus {
	background-color: #656565;
}
.header-right {
	width: 153px;
}
.header-links a {
	display: block;
	background: #999 url('index.php?tf=img/fleche.png') no-repeat 2px center;
	width: 142px;
	height: 24px;
	padding: 1px 0 0 20px;
	margin: 5px 5px 4px;
	color: #fff;
}

.header-links a:hover, .header-links a:focus {
	background-color: #666;
	text-decoration: none;
} 
.domains {
	font: normal 2.5em/.8em SciFly, Helvetica, Geneva, sans-serif;
	text-transform: uppercase;
	margin: .5em 0;
}
.domains {
	margin-left: 247px;
}
.border {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid #ccc;
	margin: 0 12px 0 0;
}

.breadcrumb {
	padding: 0;
	color: #888;
}
.breadcrumb a {
	color: #bbb;
}

/* ----------------------------- */
/* ==sidebar */
/* ----------------------------- */

#blognav h3, #blogextra h3 {
	margin: 0;
}
#blognav ul, #blogextra ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
/* left */

#blognav {
	width: 247px;
	border-right: 7px solid #fff;
	text-align: right;
}

.eventhandler-events {
	background-color: #eee;
	color: #900;
	padding: 0 10px;
	height: 221px;
	margin-bottom: 7px;
	position: relative;
}
#blognav .eventhandler-events ul {
	margin-left: 50px;
}
#blognav .eventhandler-events li {
	line-height: 1.2em;
	padding-bottom: .4em;
}
.eventhandler-events a {
	color: #900;
}
.eventhandler-events p {
	width: 50px;
	position: absolute;
	bottom: 0;
	left: 10px;
	margin: 0;
	padding: 5px;
	background: #666;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1;
}
.eventhandler-events p a {
	color: #fff;
}
.lastcomments {
	background-color: #998900;
	padding: 0 10px;
	color: #fff;
	height: 223px;
}
.lastcomments a, #blognav .lastposts a {
	color: #fff;
}

#blognav .lastposts {
	background: #1a5086 url('index.php?tf=img/fond-actu.jpg') no-repeat center top;
	color: #fff;
	padding: 0 10px;
	min-height: 222px;
}
#blognav .lastposts li {
	line-height: 1.2em;
	padding-bottom: .4em;
}

/* right */

#blogextra p {
	margin: 0;
}

.formation {
	background: #900;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	height: 113px;
	margin-bottom: 6px;
}
.formation h3+p {
	font-size: 1.929em;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: .9em;
}
.formation h3 {
	font-size: 1.714em;
	text-transform: none;
}
.formation p a {
	color: #fff;
}
.formation a span {
	padding-left: 23px;
	color: rgba(255, 255, 255, 0.7);
}
.agir {
	background: #995400 url('index.php?tf=img/mulot.png') no-repeat right 35px;
	position: relative;
	height: 102px;
	margin-bottom: 7px;
}
.agir h3, .agir a {
	color: #fff;
}
.agir h3 {
    font-size: 3.429em;
}
.agir a span {
	padding-left: 50px;
	color: rgba(255, 255, 255, 0.7);
}
.formation:after, .agir:after {
	border-right: 12px solid #fff;
	border-bottom: 17px solid transparent;
	top: 0;
	right: 0;
	content: "";
	height: 0;
	position: absolute;
	width: 0;
}
#blogextra .categories {
	background: #ccc;
	width: 145px;
	height: 222px;
}
#blogextra .categories h3 {
	color: #900;
	font-size: 2.071em;
	padding: 5px 10px 0;
}
#blogextra .categories li {
	border-top: 1px solid #e2e2e2;
	font-size: 1.714em;
	line-height: 1.4;
}
#blogextra .categories a {
	display: block;
	padding: 0 10px;
}
#blogextra .categories a:hover, #blogextra .categories a:focus {
	background-color: #999;
	color: #fff;
	text-decoration: none;
}
.pub {
    padding: .5em;
    border: 1px solid #333;
}
.widget h3 {
  color: #fff;
}

/* ----------------------------- */
/* ==footer */
/* ----------------------------- */

#footer {
	color: #666;
	border-top: 1px solid #ccc;
	margin-bottom: 1em;
}
#footer a {
	color: #666;
	text-decoration: none;
}
#footer a:hover, #footer a:focus {
	text-decoration: underline;
}
#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer .widget h3 {
    color: #666;
	font-size: 1em;
	font-weight: bold;
	margin: 1em 0 .2em;
}
#footer div div {
	display: inline-block;
	margin-right: 1.5em;
}
#footer div div:first-child {
	margin-right: 100px;
}

/* ----------------------------- */
/* ==main */
/* ----------------------------- */

#wrapper h2, #wrapper .h2-like {
	letter-spacing: -1px;
	
}
#content {
	padding: 0 22px;
}

#main {
	width: 567px;
	border-right: 7px solid #fff;
}
.dc-category #content-info, .dc-post #content-info {
	background-color: #ccc;
	padding: 0 10px;
	min-height: 221px;
}
.dc-category #content-info h1, .dc-post #content-info h1 {
	color: #900;
}
.dc-category #content-info a, .dc-post #content-info a {
	color: #333;
}
#content-info p {
	margin-top: -10px;
}
#content-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
} 
#content-info li {
	display: inline-block;
	width: 49%;
	vertical-align: top;
}
#content-info li:before {
	content: '› ';
}

.cat #content-info h1 {
	text-shadow: 0px 0px 2px #222;
}
.cat #content-info p, .cat #content-info ul {
	background-color: rgba(255, 255, 255, .50);
}
.cat #content-info p {
	margin: 0;
	padding: 2px 2px 5px;
}
.cat #content-info ul {
	padding: 2px;
}

.cat-soins #content-info {
	background: transparent url(index.php?tf=img/soins.jpg) no-repeat left top;
}
.cat-maison #content-info {
	background: transparent url(index.php?tf=img/maison.jpg) no-repeat left top;
}
.cat-energies #content-info {
	background: transparent url(index.php?tf=img/energies.jpg) no-repeat left top;
}
.cat-pollution #content-info {
	background: transparent url(index.php?tf=img/pollution.jpg) no-repeat left top;
}

/* Post content
-------------------------------------------------------- */
.post-title {
	color: #777;
	line-height: 1em;
}

.post-content a {
	text-decoration: underline;
}
.post-content a:hover, .post-content a:focus { 
        text-decoration: none;
}
.post-content, .post-excerpt, #comments dd, #pings dd, dd.comment-preview {
	line-height:1.4em;
}
.post-content acronym, .post-excerpt acronym {
	cursor: help;
	border-bottom: 1px dotted #666;
}

.post-content pre, .post-excerpt pre {
	padding: 10px ;
	font: 1.1em 'courier new', courier, monospace;
}

.post-content ul, .post-excerpt ul, .post-content ol, .post-excerpt ol {
	margin: 0 0 0.5em 0;
	padding: 0 0 0 15px;
}

.post-content li, .post-excerpt li {
	margin: 0;
	padding: 0;
}

.post-content blockquote, .post-excerpt blockquote {
	margin: 4px 0 4px 0;
	padding: 0 5px;
	border-left: 4px solid #bfbfbf;
}
.post-info {
	color: #666;
}

.post-tags {
	list-style: none;
	margin: .5em 0;
	padding: 3px 0;
}
.post-tags li {
	display: inline;
	margin-right: 8px;
	padding: 5px 0 5px 22px;
	background: transparent url(index.php?tf=img/tag.png) no-repeat 0 70%;
}
.post-tags li a {
	color: #6b6b6b;
}

.post-info-co {
	clear: left;
	padding: 3px 0 3px 0.5em;
	border-top: #bfbfbf 1px dotted;
}
.post-info-co a {
	color: #2b2b2b;
	padding: 2px 10px 2px 18px;
}

.comment_count {
	background: transparent url(index.php?tf=img/comment.png) no-repeat 0 50%;
}
.ping_count {
	background: transparent url(index.php?tf=img/trackback.png) no-repeat 0 50%;
}
.attach_count {
	background: transparent url(index.php?tf=img/attach.png) no-repeat 0 50%;
}

.read-it {
	font-weight: bold;
	clear: left;
}
a.feed {
	background: transparent url(index.php?tf=img/feed.png) no-repeat 0 .4em;
	padding: 5px 0 5px 22px;
}

#attachments h3 {
	font-size: 1.2em;
}

#attachments ul {
	list-style: none;
	margin: 0;
	padding: 4px 0;
}

#attachments li {
	margin: 0 0 0.6em;
	padding: 2px 10px 2px 18px;
	background: transparent url(index.php?tf=img/attach.png) no-repeat 0 50%;
}

#attachments li object {
	display: inline;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

/* Comments and trackbacks
-------------------------------------------------------- */
#comments {
	clear: both;
}
#comments h3, #comment-form h3, #pings h3 {
	border-top: 1px dotted #333;
	padding: 5px;
	margin: 20px 0 8px 0;
	font-size: 1.2em;
}

#comments dt {
	margin: 1.5em 0 0 0;
}
#comments dt.me {
}
#comments a.comment-number {
	width: 20px;
	font-size: 1.2em;
}
#comments dd {
	margin: 0;
	padding: 0;
	color:#6b6b6b;
}
#comments dd.me {
	background-color: #eee;
	color:#6b6b6b;
}
#comments dd p {
	margin: 0.5em 0;
	line-height: 1.5em;
}

.error {
	margin: 20px 0 0;
	padding: 10px 5px;
	background: #ffcccc;
	border: 2px solid red;
	font-weight: bold;
}
/* ----------------------------- */
/* ==forms */
/* ----------------------------- */

form,
fieldset {
	border: none;
}
input,
button,
select,
label {
	vertical-align: middle; /* @bugfix alignment */
}

#search p {
	margin: 0;
	padding: 5px 0 0 5px;
}
#search fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
#q {
	border: 1px solid #999;
	width: 114px;
	background: #fff url(index.php?tf=img/loupe.png) no-repeat 2px center;
	padding: 2px 1px 2px 18px;
}
#search .submit {
	padding: 1px;
	border: 1px solid #999;
	background: #fff;
	font-weight: bold;
	color: #999;
	text-transform: uppercase;
}
#search .submit:hover {
	background: #999;
	color: #fff;
}
#comment-form {
	padding-top: 10px;
}

#comment-form fieldset {
	border: none;
}
#comment-form fieldset p {
	padding: 5px 0;
}
#comment-form fieldset p.field {
	padding: 5px 0;
	width: auto;
	margin: 0;
	clear: left;
}
#comment-form p.form-help {
	width: 60%;
	margin: 0 0 0 30%;
	font-style: italic;
}

#comment-form p label {
	width: auto;
}
#comment-form p.field label {
	font-weight: bold;
	display: block;
	padding: 0 1% 0 0;
	width: 29%;
	float: left;
	text-align: right;
}
#comment-form input, #comment-form textarea {
	font: 1em "Lucida Grande",Arial,sans-serif;
	color: #666;
	border: 1px solid #cdcdcd;
	padding: 1px 2px;	
	width: 68%;
}
#comment-form input:hover, #comment-form textarea:hover, #comment-form input:focus, #comment-form textarea:focus {
	border: 1px solid #666;
}

#comment-form p.remember {
	margin: 0;
}
#comment-form input#c_remember {
	width: auto;
	border: 0;
	margin: 0 5px 0 30%;
}
#comment-form input.preview {
	margin-left: 30%;
}

#comment-form input.preview, #comment-form input.submit {
	width: auto;
	font-weight: bold;
	color: #900;
	font-size: 1em;
	text-transform: uppercase;
	border: 1px solid #ccc;
	background-color: #eee;
}
#comment-form input.preview:hover, #comment-form input.submit:hover {
	background: #900;
	color: #eee;
	border: 1px solid #ccc;
}

#pr {
	background: #eee;
}
/* ----------------------------- */
/* ==home */
/* ----------------------------- */
.dc-home p, .dc-home #main h2 {
	margin: 0;
}
.home-actu {
	height: 221px;
	padding: 0 10px;
	background: #1a5086 url('index.php?tf=img/fond-actu.jpg') no-repeat center top;
	color: #fff;
	position: relative;
}
.home-actu a {
	color: #fff;
}
.home-actu .post-content {
	margin-right: 150px;
}
.home-actu h1 {
	font-weight: bold;
	margin: 0;
	line-height: 1em;
	padding: 10px 0;
	width: 220px;
}

.home-actu .day-date {
	font-size: .857em;
}

/* container for slides */
#newsslide {
    background:transparent;
    position:relative;
    height:150px;
    width:540px;
}

/* single slide */
#newsslide article {
    display:none;
    position:absolute;
    top:0;
    left:0;
    margin:0;
    padding:0;
    height:150px;
}

/* tabs */
.slidetabs {
	padding-top: 37px;
}

/* single tab */
.slidetabs a {
    width:10px;
    height:10px;
    float:right;
    margin:3px;
    background-color: #fff;
    display:block;
    font-size:1px;
}

/* mouseover state */
.slidetabs a:hover {
    background-color: #ddd;
}

/* active state (current page state) */
.slidetabs a.current {
    background-color: #ccc;
}
.tout {
	width: 50px;
	position: absolute;
	bottom: 0;
	right: 40px;
	margin: 0;
	padding: 5px;
	background: #666;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	line-height: 1.1;
}

.themes {
	background-color: #eee;
	height: 223px;
	border: 1px solid #ccc;
	margin: 7px 0 26px;
	width: 560px;
}
.themes .col {
	border-left: 1px solid #ccc;
	padding: 0 10px;
}
.themes .col:first-child {
	border: none;
}

.themes .col h2 {
	padding: 50px 0 10px;
	font-weight: bold;
	font-size: 2.071em;
        line-height: 1em;
}
.habitat {
	background: transparent url('index.php?tf=img/themes.png') no-repeat 45px 10px;
}
.pollution {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -75px 10px;
}
.energies {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -200px 10px;
}
.soins {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -305px 10px;
}

.habitat:hover {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -412px 10px;
}
.pollution:hover {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -532px 10px;
}
.energies:hover {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -657px 10px;
}
.soins:hover {
	background: transparent url('index.php?tf=img/themes.png') no-repeat -762px 10px;
}

.go {
	float: right;
}
.go a:hover, .go a:focus {
	text-decoration: none;
	color: #998900;
}

/* ----------------------------- */
/* ==contact */
/* ----------------------------- */

.dc-contactme #content h1 {
	color: #995400;
}
.dc-contactme .inbl {
	border-right: 1px solid #ccc;
}
.dc-contactme .inbl strong {
	color: #900;
}

.dc-contactme .content-inner p+p+p+p {
	border: none;
} 
.events #content-info h1 {
	line-height: 1em;
	padding: 10px 0;
}
.events #content-info p {
	margin-top: 0;
}
.postsofevent, .eventsofpost {	clear: both;	margin-top: 2em;	margin-bottom: 2em;}
ul.event-info {	margin: 10px 10px 10px 0; list-style: none; padding: 0;}
ul.event-info li {	line-height: 2em;	padding-left: 22px;}
li.event-date {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-date.png') no-repeat center left;}
li.event-duration {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-duration.png') no-repeat center left;}
li.event-period {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-period.png') no-repeat center left;}
li.event-address {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-address.png') no-repeat center left;}
li.event-geo {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-geo.png') no-repeat center left;}
.eventsofpost ul li {	background: url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-date.png') no-repeat center left;	padding-left: 22px;}
#eventhandler-menu-period ul, #eventhandler-menu-sortorder ul { 	list-style: none;	margin: 0;	padding: 0;}
#eventhandler-menu-period ul li, #eventhandler-menu-sortorder ul li {	display: inline-block;	margin-right: 5px; width: auto;
}
#eventhandler-menu-period ul li.nav-active, #eventhandler-menu-sortorder ul li.nav-active {	font-weight: bold;	text-decoration: none;}
#eventsfeed {	margin-top: 20px;	line-height: 1.4em;}
a.event-ical {	background: transparent url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-ical.png') no-repeat 0 0.25em;	padding: 5px 0 5px 42px;}
a.event-hcal {	background: transparent url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-hcal.png') no-repeat 0 0.25em;	padding: 5px 0 5px 42px;}
a.event-atom {	background: transparent url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-atom.png') no-repeat 0 0.25em;	padding: 5px 0 5px 42px;}
a.event-map {	background: transparent url('index.php?tf=/../../index.php?pf=eventHandler/css/imgs/event-gmap.png') no-repeat 0 0.25em;	padding: 5px 0 5px 42px;}
.event-gmap-place {	font-style: italic;	margin-top: 10px;}
#content .event-gmap-place {	height: 300px;	width: 100%;}
.calendar-array table {	text-align: center;}
.eventsday a {	font-size: 1.1em;	font-weight: bold;}

/* pub modal accueil */

#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#cccccc;
  display:none;
}  
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:450px;
  height:200px;
  display:none;
  z-index:9999;
  padding:20px;
  text-align:right;
}
#boxes #dialog {
  width:650px; 
  height:280px;
  padding:0px;
 
}
a.close{
font-family:Arial, Helvetica, sans-serif;
text-decoration:none;
color:#FFFFFF;}

/* ----------------------------- */
/* ==iefix */
/* ----------------------------- */

/* haslayout for IE6/IE7 */
.ie67 .clearfix,
.ie67 .line,
.ie67 .mod,
.ie67 .row,
.ie67 .col {
	zoom: 1;
}

/* inline-block and table-cell for IE6/IE7 */
/* warning: .col needs width on IE6/IE7 */
.ie67 .btn,
.ie67 .col,
.ie67 .inbl {
	display: inline;
	zoom: 1;
}
.ie8 img {
	width: auto; /* @bugfix for IE8 */
}

/* ----------------------------- */
/* ==print */
/* ----------------------------- */

/* quick print reset */
@media print {
	p,
	blockquote {
		orphans: 2;
		widows: 2;
	}
	blockquote,
	ul,
	ol {
		page-break-inside: avoid;
	}
	h1,
	h2,
	h3,
	caption {
		page-break-after: avoid;
	}
}