body {
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 10px;
	min-height: 100%;
	padding: 0px;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 10px;
}

h7,dl {
	margin-top: 0;
	bottom margin: 10px;	 	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	border-bottom: 1px dotted #000;/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	margin-bottom: 10px;
	text-align: justify;
	line-height: 18px;
	color: #000;
}

h10, {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 14px;
}
dx {
	margin-top: 0;
	bottom margin: 10px;	 	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 0px;
	border-bottom: 1px dotted #000;margin-left: 10px;/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	margin-bottom: 10px;
	text-align: justify;
	line-height: 18px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	text-align: center;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #000;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	background-color: #000;
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

ul{
    margin: 0px;
	padding: 0px 5px 5px 0px;
}

dt {
    display: block;
    margin-right: 20px;
    text-indent: 0px;
    list-style-type: none;
    list-style:none;
	list-style-position: outside;
    padding-top: 10px;
}
dl{
	border-bottom: 1px dotted #000;/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	margin-bottom: 10px;
	text-align: justify;
	line-height: 18px;
	color: #000;
	}
dt {
    font-size: 1em;
    font-weight: 900;	
}
dd {
    padding-bottom: 8px;	
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #000; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
nav ul li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 200px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #FFF;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #000;
	color: #FFF;
}
bloc { 
border-bottom: 1px dotted #ccc;
	
}
/* ~~ The footer styles ~~ */
footer {
	padding: 10px 0;
	background: #FFF;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 900px;
	width: auto;
	font-size: 10px;
	text-align: center;
}
/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

#main {
    position: relative;
    margin: 2px auto auto auto;
    width: 1200px; /* 251+25+223+25+381 +1*/
}

#header {
    text-align: left;
    height: 96px;
    width: 800px;
}


.lightBorderedContainer {
	overflow: hidden;
}

.lightBorderedContainer h2 {
  margin: 0px 5px 2px 2px;
}

.clear {
	display: block;
	clear: both;
}

.bigDot {
	font-size: 10px;
	display: inline;
	float: left;
}

.condensed {
	letter-spacing: -1px;
}

/* columns layout */

#f1 {
    float: left;
    height: 510px;
    width: 2px;
}

#f2 {
   padding: 0px 40px 0px 30px;
	width: 710px;
	float: left;
	height: 730px;
	vertical-align: middle;
	overflow: hidden;
}

#f3 {
    float: left;
    height: 600px;
    margin-left: 24px;
    width: 320px;
     overflow: hidden;
}


/* f1 content */


#specifications
{
  height: 384px;
  padding: 20px;
  border-bottom: 0px;
}

#contact h2 {
	margin: 0px 0px 3px 0px;
}

#contact {

	color: #000;
}

#contact ul {
	padding: 0px;
	margin: 0px;	
} 

#contact li {
	list-style-image: none;
	list-style-type: none;
	padding: 0px;
	margin: 0px 0px 0px 0px;
	clear: both;
}

#contact li strong {
	margin-right: 2px;
	margin-left:0px;
}

img.styledDot {
	margin: 2px 1px 2px 5px;
}

/* f2 content */

#f2 p, #f2 ul, #f2 dl
{
  margin: 0px;
  }


#news {
   width: 780px;
	float: left;
	height: 630px;
}

#f2 dd {
	border-bottom: solid 1px #ffffff;
}
dt:after {
	clear: both;
}


/* f3 content */

#f3 p, #f3 ul, #f3 dl {
	margin: 0px;
}

#clients {
	width: 340px;
	background: #FFF;
	clear: none;
	height: 780px;
	position: relative;
	overflow: hidden;
}

#conseil2 {
	height: 340px;
	margin: 0px 10px 0px 0px;
	width: 670px;
	overflow: auto;
	padding: 0px 20px 0px 20px;
	border-bottom: 0px;
	font-size: 11px;
	line-height: 16px;
	text-align: justify;  /* overflow-y: scroll; */
  }
#details {
    margin-bottom: 0px;
}
/* ~~ The footer styles ~~ */
footer {
	padding: 10px 0;
	background: #FFF;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 900px;
	width: auto;
	font-size: 10px;
	text-align: center;
}
header, f2, footer, f3, f1, nav, article, figure {
	display: block;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: justify;
}
/*HTML 5 support - Sets new HTML 5 tags to display:block so DW and browser know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}
/* obsolete */

