/* CORE CSS */

/* CORE CSS 20040217 */

/* BODY */
@page {
	size:portrait; 
	margin:2cm;
}

body
{
    font-family: Verdana,Arial,sans-serif; /* Base font family for most elements */
    font-size: 10px; /* Base size for all elements; other size definitions relates to this */
    background-color: #fafafd;
    margin: 0;
    padding: 0;
    text-align:left;
}

/* HEADERS */

h1, h2, h3, h4, h5, h6
{
    font-weight: bold;
    margin: 1em 0 0.5em 0;
    padding: 0;
}

i {
    font-size:9px;
	display:inline;	
}

h1
{
    font-size: 1.8em;
}

h2
{
    font-size: 1.4em;
}

h3
{
   /* font-size: 1.1em; */
}

h4, h5, h6
{ 
    font-size: 1em;
}

/* PARAGRAPHS */

p
{
    margin: 0.5em 0 0.5em 0;
    line-height: 1.25em; /* This is aprox. default line height in most popular browsers; set explicitly to ensure consitency. */
}

/* LINKS */

a
{
    color: #0033CC;
    font-weight: bold;
    text-decoration: none;
}

a:hover
{
    color: #FFFFFF;
    font-weight: bold;
    background-color: #0033CC;
    
    cursor: pointer;
}

a img
{
    border: none; /* Some browsers may display a border around a linked image without this attribute set to _none_. */
}

/* PRE TEXT */

pre, code
{
    font-family: "Courier New", Courier, monospace; /* Usually defaulted to monospaced font anyway, but browwsers may vary which one is used, so giving exact alternatives helps visual consistenct */
    font-size: 1em; /* Setting this exact size may also help visual consistency */
}

pre
{
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    margin: 1em 0 1em 0;
    padding: 0.2em;
}

/* TABLES */

table
{ 
    font-size: 1em; /* Fix for size "loss" in tables in IE; redundant for most others, but does no harm */
    margin: 0;
    padding: 0;
}

th, td
{
    padding: 0;
}

table.list
{
    width: 100%;
    margin: 1em 0 1em 0;
}

table.list th, table.list td
{
    padding: 0.25em 0.5em 0.25em 0.5em;
    text-align: left;
    vertical-align: top;
}

table.list th
{
    font-weight: bold;
    background-color: #f0f0f0;
}

table.list td
{
    font-weight: normal;
}

tr.bglight
{
    background-color: #fcfcfc;
}

tr.bgdark
{
    background-color: #f8f8f8;
}

/* ORDERED AND UNORDERED LISTS */

ul, ol
{
    padding: 0;
    margin: 0.75em 0 1em 1.5em;
    
}

div#maincontent ul{
	list-style-position:inside;
}

ul ul, ol ul
{
    margin: 0.3em 0 0.5em 1.3em;
}

ul ol, ol ol
{
    margin: 0.3em 0 0.5em 1.9em;
}

ul, ul ul
{
    list-style-type: disc;
}

li
{
    margin: 0 0 0.3em 0;
    padding: 0;
    line-height: 1.25em;
}

/* DEFINITION LISTS */

dl
{
    padding: 0em;
    margin: 0.25em 0 0.25em 0;
}

dt, dd
{
    font-style: normal;
    margin: 0 0 0.25em 0;
}

dt
{
    font-weight: bold;
}

dd
{
    margin: 0 1em 0.5em 2.5em;
}

/* FORM ELEMENTS */

form
{
    padding: 0em;
    margin: 0em;
}

label
{
    font-weight: bold;
    padding-right: 0.5em;
    display: block;
    white-space: nowrap;
}

textarea
{
    font-family: Arial, Helvetica, sans-serif; /* Usually defaulted to monospaced font; so it needs to be set if to change */
    font-size: 1em; /* Needs to be specified for IE */
}

input.box, textarea.box
{
    width: 98%;
}

input.halfbox, textarea.halfbox
{
    width: 47%;
}

optgroup
{
    font-weight: bold;
    font-style: normal;
}

input.button
{
    font-weight: normal;
    margin: 1em 1em 0 0;
}

input.button-default
{
    font-weight: bold;
}

/* PAGE DIVIDERS */

div.block /* Use this style around groups of objects which are connected in some way */
{
    margin: 0.5em 0 0.5em 0;
    padding: 0;
    clear: both;
}

div.block div.element, div.buttonblock div.element /* Use this style if several objects are to be stacked horizontally within the same block */
{
    padding-right: 1em;
    float: left;
}

div.block div.left
{
    width: 48%;
    text-align: left;
    float: left;
    clear: left;
}

div.block div.right
{
    width: 48%;
    text-align: right;
    float: right;
    clear: right;
}

div.break /* Used this style to terminate floating elements, to clear all floating attributes */
{
    clear: both;
    height:0;
    margin:0;
    padding:0;
}

/* MESSAGES TO THE USER */

div.message-feedback, div.message-warning, div.message-error
{
    padding: 0.1em 0.5em 0.5em 0.5em;
}

div.message-feedback
{
    background-color: #f0fff0;
}

div.message-warning
{
    background-color: #ffffe0;
}

div.message-error
{
    background-color: #fff0f0;
}

/* PAGE NAVIGATION */

div.pagenavigator
{
    text-align: center;    
}

div.pagenavigator span.previous
{
    float: left;
}

div.pagenavigator span.next
{
    float: right;
}

/* MISC STYLES */

.small
{
    font-size: 85%;
}

.hide
{
    display: none;
}


div.imageleft, div.imageright, div.faxtboxleft, div.faxtboxright, div.leftobject, div.rightobject
{
    margin-top: 0.3em;
    margin-bottom: 0.1em;
    display: inline;
}

div.attribute-image .imageright{
    margin-left:10px;
}

div.imagecenter, div.factboxcenter, div.centerobject
{
    width: 100%;
    margin-top: 0.3em;
    margin-bottom: 0.1em;
    display: block;
}

div.imagecenter
{
    text-align: center;
}

div.factboxcenter
{
    text-align: left;
}

div.imageleft, div.factboxleft, div.leftobject
{
    float: left;
    padding-right: 0.5em;
}

div.imageright, div.factboxright, div.rightobject
{
    float: right;
    padding-right: 0.5em;
}

div.faxtboxleft, div.faxtboxright
{
    background-color: #f0f0f0;
}

div.imageleft p.picturetext, div.imageright p.picturetext, div.imagecenter p.picturetext, p.factbox
{
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

div.imageleft p.picturetext, div.imageright p.picturetext, span.picturetext, p.factbox
{
    background-color: #f0f0f0;
}

/* Misc */

span.spamfilter
{
     display: none;
}



/* SITE CSS 20040415 */



div#allcontent
{
    width:100%;
    text-align:left;
    
}

/*\*/
* html .iecontent {
	height: 1px;
}
/*/

/**/

div#topcontent
{
	display:none;
      
}


/* PAGE HEADER */

div#header
{
    display:none;
    
}


/* navsoussites */
div#navsoussites{
	display:none;
}




/* toolbars */
div#toolbar-top{
	display:none;
}



div#toolbar-bottom{
	display:none;
}



/* TOP MENU */



/* droite menu */


/* path */
#path{
		display:none;
}




/* columns */
div#columns{
   
}


div#leftmenu{
  display:none;
}



div#rightmenu{
	display:none;
}




/* voirauus */

div#voiraussi ,div.content-view-embed
{
   float:left;
   margin: 4px;
   vertical-align:top;
}

/* blocs */
div#flash_index{
	
	text-align:center;
	border:1px solid #03C;
	padding:5px 0 5px 0;
}

div#blocs_index:after{
	content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}



* html div#blocs_index{
	height:1%;
}

/* ACTUS */

div#actus
{
	border:1px solid #03C;
	width:268px;
	margin-top:10px;
	float:left;
	height:150px;
	padding:5px;
}

div#actus:after{
	content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

div#actus h4
{
	position:relative;
	background-color:#FFFFFF;
	top:-24px;
	left:10px;
	width:100px;
}

div#actus div.index_bloc{
	position:relative;
	top:-28px;
}

#actus .soustitre, #recherche_cir .soustitre {
	font:bold 14px Verdana,Arial,sans-serif;
	color:#CC3300;
}

#recherche_cir select{
        margin-top:10px;	
}


/* RECHERCHE CIR */


div#recherche_cir
{
	float:left;
	border:1px solid #03C;
	width:271px;
	margin-top:10px;
	margin-left:10px;
	padding:5px;
	background-image:url(../images/franceregions.gif);
	background-repeat:no-repeat;
	background-position:50px 5px;
	height:150px;

}


div#profil {
      display:block;	
}

div#recherche_cir h4{
	position:relative;
	background-color:#FFFFFF;
	font-size:14px;
	top:-24px;
	left:10px;
	width:120px;
}

div#recherche_cir div.index_bloc{
        position:relative;
        top:-20px;	
}

div#recherche_cir label{
	font-size: 12px;
	
}


div#cir h4
{
	position:relative;
	background-color:#fa0421;
	font-size:14px;
	margin-top:50px;
	left:10px;
	width:150px;
	}

div#login {
	float:right;
	width:150px;
	
}
div#login .toolbox-design{
	background-color:#F5F5F5;
	border:1px solid #03C;
        
}

div#login h4 {
	position:relative;
	background-color:#F5F5F5;
	font-size:14px;
	top:-15px;
	left:10px;
	width:80px;
	}
	
	
/* NAVIGATORS */

div.content-navigator
{
    display: block;
    clear: both;
}

div.content-navigator div
{
    display: inline;
    text-align: center;
}

div.content-navigator div.content-navigator-separator, div.content-navigator div.content-navigator-separator-disabled
{
    padding-left: 4px;
    padding-right: 4px;
}

div.content-navigator div.content-navigator-arrow
{
    font-size: 150%;
}


/* TOOLBOXES */

div.toolbox
{ 
    width: 100%;
    margin-bottom: 8px;
    margin-top: 8px;
}

div.toolbox-design
{ 
    padding: 0px;
}

div.toolbox-design h2
{ 
    font-size: 1em;
    margin-top: 0px;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}

div.toolbox-design div.toolbox-content
{ 
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 10px;
}

div.toolbox-design input.searchtext, div.toolbox-design input.textinput
{
    height: 18px;
    width: 120px;
    border: 1px solid;
}

div.toolbox-design label
{
    font-weight: normal;
    margin-bottom: 0;
    padding: 6px 0 0 0;
}

div.toolbox-design form
{
    vertical-align: bottom;
}

div.toolbox-design div.info-text p
{ 
    font-weight: normal;
}

div.toolbox-design div.attribute-link p
{ 
    font-weight: normal;
    padding: 0 0 0 6px;
    vertical-align: middle;
}

div.toolbox-design div.attribute-link-disabled p
{ 
    font-weight: normal;
    padding: 0 0 0 6px;
    vertical-align: middle;
}


/* TOOL LISTS */

div.toollist
{ 
    width: 100%;
    margin: 8px 0 8px 0;
}

div.toollist-design
{ 
    padding: 0px;
    border: 1px solid;
}

div.toollist-design h2
{ 
    font-size: 1em;
    margin-top: 0px;
    padding: 2px 0 3px 10px;
}

div.toollist-design div.content-view-children
{ 
    padding: 3px 10px 10px 10px;
}

div.toollist-design h3
{ 
    margin: 0;
    text-decoration: underline;
}

div.toollist-design div.class-article div.attribute-short p
{ 
    margin: 0;
}

div.toollist-design div.class-article div.attribute-link p
{ 
    margin: 0 0 10px 0;
}

div.toollist-design div.class-article div.attribute-link-disabled p
{ 
    font-weight: normal;
    padding: 0 0 0 6px;
    vertical-align: middle;
}


/* FOOTER */

div#footer{ 
 display:none;
}



/* GENERAL ELEMENTS */

div#maincontent h1
{ 
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 0.2em;
}

div#maincontent h2
{ 
    font-size: 1.4em;
    font-weight: bold;
}

div#maincontent h3
{ 
    font-size: 1.1em;
    font-weight: bold;
}

div#maincontent h4
{ 
    font-size: 1em;
    font-weight: bold;
}

div#maincontent-design h5
{ 
    font-size: 1em;
    font-weight: bold;
}


/* GENERAL TABLE */

table th
{ 
    background-color: #d9e5f2;
}

/* SUBMIT BUTTONS */

input.defaultbutton
{
    font-weight: bold;
    border: 1px solid;
    margin: 0.5em 0.5em 0 0;
}

input.button
{
    border: 1px solid;
    margin: 0.5em 0.5em 0 0;
}

input.searchbutton
{
    border: 1px solid;
}

input.shopbutton
{
    border: 1px solid;
}

input.searchimage
{
    width: 18px;
    height: 18px;
    background-image: url(../images/button.gif);
    background-repeat: no-repeat;
}

/* Diff styles */

div#diffview ul
{
    margin: 0 0 0.5em 0;
    padding: 0.25em 0.5em 0.25em 0.5em;
    border-bottom: 1px solid #808080;
    display: block;
}

div#diffview li
{
    font-size: 0.85em;
    margin: 0 0.5em 0 0;
    padding: 0;
    display: inline;
    list-style-type: none;
}

div.attribute-view-diff
{
    padding: 0.25em;
    border: 1px solid #d7d7d2;
}

div.attribute-view-diff label
{
   color: #75756c;
}

div.attribute-view-diff-old
{
    padding-bottom: 0.25em;
    border-bottom: 1px dashed #bfbfb7;
}

div.attribute-view-diff-new
{
    padding-top: 0.25em;
}

ins
{
    color: #008000;
    text-decoration: none;
    border-bottom: 1px solid #00b000;
}

del
{
    color: #d98078;
    text-decoration: line-through;
}

ins:hover, del:hover
{
    background-color: #ffffff;
}

ins:hover
{
    color: #006000;
    border-bottom: none;
}

del:hover
{
    color: #852c25;
    text-decoration: none;
}

div.blockchanges ins, div.blockchanges del
{
    color: #000000;
    padding-left: 0.5em;
    text-decoration: none;
    border-bottom: none;
    display: block;
}

div.blockchanges ins
{
    border-left: 0.5em solid #008000;
}

div.blockchanges del
{
    border-left: 0.5em solid #d98078;
}

div.previous ins
{
    display: none;
}

div.previous del
{
    color: #000000;
    background-color: #ffff00;
    border-bottom: none;
    text-decoration: none   
}

div.latest del
{
    display: none;
}

div.latest ins
{
    color: #000000;
    background-color: #ffff00;
    border-bottom: none;
    text-decoration: none;
}

.attribute-pdf
{
    float:right;
}
input.ok{
	width:22px;
}

/* mes titres */

div#titre {
	float:left;
    display:block;
    background-color:#dfe5f9;
    width:100%;
    margin:0 0 10px 0;
   height:21px;
    padding:0;
    border: 0;
    
}

div#titre #text{
	float:left;
	background:url("../images/t_end.gif") no-repeat 100% 100%;
	padding-right:40px;
	height:21px;
}

div#titre h3{
    float:left;
    margin:0;
    padding:3px 0 1px 0;
    background: url("../images/t_bg.gif") no-repeat 0% 100%;
    font:bold 20px Verdana,Arial,sans-serif;
    color:#FFFFFF;
    height:17px;
    padding-left:20px;
}

div#titre #links{
	float:right;
	background-color:#7F99E5;
	height:21px;
	
}

#links img{
    display:none;
}

#titre:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

div#maincontent-design .titre {
	font:bold 16px Verdana,Arial,sans-serif;
	font-size:16px;
	color:#CC3300;
}

div#maincontent-design p{
	text-align:justify;
}

* html #titre {
	height:1%;
}

#actus .soustitre {
	font:bold 14px Verdana,Arial,sans-serif;
	color:#CC3300;
}

div#maincontent-design #accroche {
	font:bold 20px Verdana,Arial,sans-serif;
	color:#CC3300;
	
}

div#flash_index .soustitre {
	font:bold 14px Verdana,Arial,sans-serif;
	text-align:left;
}

div#flash_index .soussoustitre {
	font:bold 12px Verdana,Arial,sans-serif;
	text-align:left;
}

div#maincontent-design .soustitre, div#maincontent-design .soustitre a{
	font:bold 12px Verdana,Arial,sans-serif;
	text-align:left;
	color:#CC3300;
	
	
}

div#maincontent-design .soussoustitre, div#maincontent-design .soussoustitre a, div#maincontent-design .soussoustitre a:hover{
	font:italic 12px Verdana,Arial,sans-serif;
	text-align:left;
	color:#CC3300;
	background-color:#FFFFFF;
	
}


i {
	overflow:auto;
}

div#maincontent-design .soustitre a:hover{
	text-decoration:none;
	background:none;
	color:#CC3300;
}

div#flash_index ul {
        text-align:left;
}

div.content-view-line .class-article:after, div.content-view-line .class-folder:after{
	 content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

div.content-view-line .class-article .attribute-link{
	float:right;
	
}



 html hr {
       clear:both;
       visibility:hidden;
}

* html div.content-view-line .class-article {
	height:1%;
}

* html div.content-view-line .class-folder {
	height:1%;
}

div#credits {
     margin-top:20px;
     padding-right:60px;
     text-align:center;
     font-size:8px;
}
p a {
display:none;	
}

div#credits {
display:none;	
}
