@charset "UTF-8";

/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}


img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}






body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	/*background: #706b64;*/
	background-image:url(../Images/fondecran.jpg);
	background-repeat:repeat;
	margin: 0;
	padding: 0;
	color: #333;
	
}



@font-face {
    font-family: 'GeometrySoftProBoldN';
    src: url('../Geometry_Soft_Pro-Bold_N-webfont.eot');
    src: url('../Geometry_Soft_Pro-Bold_N-webfont.eot?#iefix') format('embedded-opentype'),
url('../Geometry_Soft_Pro-Bold_N-webfont.woff') format('woff'),
url('../Geometry_Soft_Pro-Bold_N-webfont.ttf') format('truetype'),
url('../Geometry_Soft_Pro-Bold_N-webfont.svg#GeometrySoftProBoldN') format('svg');
    font-weight: normal;
    font-style: normal;

}




/* ~~ 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 block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
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;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#666;
	/*color:#39F;*/
	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: #6E6C64;*/
	text-decoration:none;
}

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;
}

a:hover {
text-decoration:underline;	
	
}
/* ~~ This fixed width container surrounds all other blocks ~~ */

.container {
	
	
	width: 970px;
	background: #F9F9F9;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}



/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background: #FFF;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/

#titre_principal
{
    display: inline-block;
	text-align:left;
}

/*header h1
{
    font-family:Verdana, Geneva, sans-serif
    font-size: 2.1em;
    font-weight: normal;
	margin-top:30px;
	margin-left:50px;
	
	
}*/

#titre_principal p
{ font-family:'GeometrySoftProBoldN',"Arial Black",arial,verdana,Gadget, sans-serif;
font-size:1.3em;
color:#333333;



}


#logo {
	
	width:45%;
}

/*#logo, header h1
{
    display: inline-block;
    
}*/

section h1, footer h1
{
    font-family: Verdana, Geneva, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
	font-size:1.9 em;
}

/*.sidebar1 {
	float: right;	
	width: 180px;
	/*background: #EADCAE;
	padding-bottom: 10px;
}*/
/*.content {
	padding: 10px 0;
	width: 780px;
	float: right;
}*/

/* ~~ 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 {

	display:inline-block;
	background:#484848;
	color:#FFFFFF;
	text-align:center;
	width:100%;
	/*margin-top:10px;*/
	box-shadow: 0px 4px 4px #706b64;
	-webkit-box-shadow: 0px 4px 4px #706b64;
	-moz-box-shadow: 0px 4px 4px #706b64;
	
    margin-bottom:10px;
	border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	
	
	}
	
	
nav ul {
	list-style: none; /* this removes the list marker */
	/*border-top: 1px solid #666; *//* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 3px; /* this creates the space between the navigation on the content below */
}
nav ul li {
	display:inline-block;
	/*border-bottom: 1px solid #666;*/ /* this creates the button separation */
	margin-right:70px;
	margin-top:-10px;
}

/*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: inline-block;*/ /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. 
	width: 160px;  /*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: #C6D580;
	background:#666666;
	color:#CCCCCC;
}
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: #ADB96E;
	color: #FFF;
}*/

nav ul a, nav ul a:link
{
    font-size: 1.0em;
    color: #CCC;
    padding-bottom: 3px;
    text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
	line-height:60px;
}

nav ul a:hover, nav ul a:active, nav ul a:focus
{
    color: #FFF;
    
}



#ssmenu {
	
	margin-top:70px;
	/*background-color:#5B5B5B;
	width:9em;
	border-radius: 25px;*/
	position: relative;
    width: 150px;
    background-color: #5A5A5A;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
   /* box-shadow: 0px 2px 5px #1c1a19;*/
    border-radius: 5px;
	/* border radius */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 1.0em;
	float:left;
	
	
	
}

#ssmenu img {
	border-radius:3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;



	
}


ul.sousmenu {
	list-style-type:none;
	padding:0;
	margin:0;
	
	/*color:#CCCCCC;*/
	
	
	
}

.sousmenu a {
	display:block;
	
	color:#CCCCCC;
	font-size:1.0em;
	font-family:Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	
}

.sousmenu li {
	
	height:1.9em;
	background-color:#5B5B5B;
	padding:0;
	margin:0;
	vertical-align:middle;
		
}

.sousmenu li a:hover {
	
color:#FFFFFF;
background-color:#A7A7A7;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
line-height:14px;
	
}






#banniere_image
{
    margin-top: 0px;
    /*height: 350px;*/
	height:577px;
    /*background:url(../Images/responsivedesign.jpg) no-repeat;*/
	background:url(../Images/device.jpg) no-repeat;
    position: relative;
	background-color:#FFFFFF;
	
    box-shadow: 0px 4px 4px #706b64;
	-webkit-box-shadow: 0px 4px 4px #706b64;
	-moz-box-shadow: 0px 4px 4px #706b64;
	
    margin-bottom: 10px;
	border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
}

#banniere_description
{
    position: absolute;
    bottom: -5px;;
    border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
    width: 99.5%;
    height: 35px;
    padding-top: 5px;
    padding-left: 5px;
	padding-bottom:10px;
    background-color: rgb(24,24,24); /* Pour les anciens navigateurs */
    background-color: rgba(24,24,24,0.65);
    color: white;
    font-size: 0.7em;
	
}

#news {
	
	background-color:#666666;
	color:#FFFFFF;
	box-shadow: 0px 4px 4px #706b64;
	-webkit-box-shadow: 0px 4px 4px #706b64;
	-moz-box-shadow: 0px 4px 4px #706b64;
	
    margin-bottom: 30px;
	border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	
}

#news a {
color:#FFFFFF;	
}


aside, article

{
    display: inline-block;
    vertical-align: top;
    text-align: justify;
}

article
{
    /*width: 630px;*/
    margin-right: 25px;
	margin-top:10px;
	margin-left:15px;
	
}

article h1
{
    margin-bottom:25px;
	font-size:1.4em;
	margin-top:5px;
	
}


article p
{
    font-size: 0.9em;
	margin-top:20px;
	text-align: justify;
	
}

article ul li {
	
font-size:0.9em;
margin-left:20px;
line-height:30px;
list-style-type:square;	
	
}

aside
{
    position: relative;
    width: 240px;
    background-color: #5A5A5A;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 0.7em;
}


aside h1
{
	font-size:1.4em;
}
	
#super {
text-align: center;	
}

#super img{
border: 1px solid #181818;
border-radius: 6px;
-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
opacity:0.9;

}

aside img
{
    margin-right: 5px;
}

#odsc {

margin-top:20px;
margin-bottom:25px;
border-radius:10px;
-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
margin-left:100px;

	
}
#odsc a {
	color:#000;
	
	
}

#odsc h1 {
	color#333;
	font-size:1em;


}

#o, #d, #s, #c {

	
display:inline-block;	
border:1px solid #FFFFFF;
width:365px;
height:200px;
}

#o {

background:url(../Images/operation_test2_html5.png) no-repeat;
border-radius: 10px;
-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
opacity:0.7;	
background-color:#99FFFF;

	
}

#d {
	background:url(../Images/design_test2_html5.png) no-repeat;
	background-color:#CF6;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	
	border-radius: 10px;
opacity:0.7;	
margin-left:10px;
	
}

#s {
	
	background:url(../Images/securite_test2_html5.png) no-repeat;
	background-color:#FFCCFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
opacity:0.7;
margin-top:15px;	
}

#c {
	
	background:url(../Images/creation_test2_html5.png) no-repeat;
	background-color:#FFCC66;
	margin:0px;
	padding:0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
opacity:0.7;	
margin-top:15px;
margin-left:10px;	
}

#o a:hover, #d a:hover, #s a:hover, #c a:hover {
	

	color: #222;
		
	
	
}





#operation, #design, #securite, #creation  {

text-align:justify;
margin-left:200px;
line-height:30px;	
font-size:0.8em;
}


.reference {
	
	float:left;
	margin-right:10px;
	margin-left:10px;
}

.reference	a {
	color:#666666;
	text-decoration:underline;
	
}

.job a {
	color:#666666;
	text-decoration:underline;
	
}

#infos {
margin:0 auto;
	padding:0;
	width: 100%;
	height:auto;
}

#contact {
	float: left;
	padding-left: 10px;
	margin-left: 10px;
	width:350px;
	height:400px;
	position:relative;
	margin-right:10px;
	top:13px;
	font-size:1em;
	text-align:justify;
}


#contact a {
	color:#626262;
	text-decoration:underline;
}


#mapCanvas {
	margin:0;
	padding:0;
	float: left;
	border: thin solid #999;
	width:405px;
	height:405px;
	margin-right:10px;
	margin-left:10px;
	margin-top:10px;
}


#op img{

border-radius:10px;
-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
float:left;

	
}

#etic {
width:100%;
float:right;
margin-top:10px;

	
}

#etic p {
	font-size:0.7em;
	
}

#etic a:hover {
	color:#999999;
	
}

#etic a {
	color:#666666;
	text-decoration:underline;
}


/* ~~ The footer ~~ */
footer {
	text-align:center;
	margin-top:10px;
	font-size:0.6em;
	padding: 25px 0;
	color: #FFF;
	/*background: #CCC49F;*/
	background:#484848;
	/*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 */
}
footer a {
	
color:inherit;

	
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer,  figure {
	display: block;
}






/* Correctifs pour les vieilles versions d'Internet Explorer */

/* Pour activer un positionnement type inline-block sur les vieilles versions d'IE */

.old_ie #titre_principal, .old_ie #logo, .old_ie header h1, .old_ie nav, .old_ie nav li, .old_ie article, .old_ie aside, .old_ie #o, .old_ie #d, .old_ie #s, .old_ie #c, .old_ie #services
{
    display: inline;
    zoom: 1;
}

.old_ie #services section article {
clear:both;	
}

/* Quelques ajustements pour les vieilles versions d'IE */

.old_ie section h1, .ie8 section h1
{
    font-size: 1em;
}

.old_ie #ssmenu, .old_ie body, .old_ie #ssmenu ul, .old_ie #infos #contact {
overflow:hidden;
word-wrap: break-word;	
margin:0;
padding:0;
	
}

.old_ie #ssmenu ul {
position:relative;	
	
}



/*Media queries*/

@media all and (max-width: 1024px)
{
	.container {
		width:auto;
		margin:0 auto;
		padding:0;
	
}

section h1 {
font-size:140%;	
}

#titre_principal p {
	
font-size:150%;	
}

nav ul {
margin:0;
padding:0;	
}

nav li a {
font-size:95%;
margin:0;
padding:0;
	
}
 /* passer tous les éléments de largeur fixe en largeur automatique */
 body, article {
   width: auto;
   margin: 0;
   padding: 0;
 }
}


@media all and (max-width: 1024px)
{
    nav
    {
        width: 100%;
        text-align: center;
    }
    
    nav li
    {
        display: block;
        padding-left: 4px;
    }
    
    nav a
    {
        font-size: 1em;
    }
    
    nav a:hover
    {
        border-bottom: 0;
    }
}

@media all and (max-width: 1024px)
{
    #banniere_image
    {
        display: none;
    }
	
	section {
	margin-top:10px;;	
		
	}
	
	#odsc ul {
	display:none;	
		
	}
	
	#o, #d, #s, #c {
		float:none;
		margin:0 auto;
		padding:0;
	
	width:140px;
		
	}
	
	#o h1, #d h1, #s h1, #c h1 {
	
	text-align:center;	
	}
	
	aside {
		display:none;
	}
	
	#ssmenu { float:left;
	margin:0;
	margin-top:30px;
	padding:0;
	position:absolute;
	
		
	}
	
	.services {
	width:60%;
	margin:0;
	padding:0;	
	text-align:justify;
	left:160px;
	position:relative;
	

	
	}
}

/*Pour Mobiles*/

@media (max-width: 640px) {

 /* passer tous les éléments de largeur fixe en largeur automatique */
 body, nav, section, article, .container {
   width: auto;
   margin: 0 ;
   padding: 0;
 }

 /* fixer une largeur maximale  de 100 % aux éléments potentiellement problématiques */
 img, table, td, blockquote, code, pre, textarea, input, iframe, object, embed, video {
   max-width: 100%;
 }
/* conserver le ratio des images et empêcher les débordements de boîtes dûs aux border ou padding */
 img {
   height: auto; width: auto;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
 }

 /* gestion des mots longs */
 textarea, table, td, th, code, pre, samp, p, section p {
   word-wrap: break-word; /* passage à la ligne forcé */
   -webkit-hyphens: auto; /* césure propre */
   -moz-hyphens: auto;
   hyphens: auto;
 }
 code, pre, samp, p, section p {
   white-space: pre-wrap; /* passage à la ligne spécifique pour les éléments à châsse fixe */
 }

 /* Passer à une seule colonne (à appliquer aux éléments multi-colonnes) */
 element1, element2 {
   float: none;
   width: auto;
 }

 /* masquer les éléments superflus */
 .hide_mobile {
   display: none !important;
 }

 /* Un message personnalisé */
 body:before {
   content: "Version mobile/tablette du site";
   display: block;
   color: #777;
   text-align: center;
   font-style: italic;
 }
 
  nav
    {
        width: 100%;
        text-align: center;
		
	}
	
	
		
 aside {
		display:none;
	}
	
	.container {
		width:auto;
		margin:0 auto;
		padding:0;
	
}

#o, #d, #s, #c {
		float:none;
		margin:0 ;
		padding:0;
	
	
}

section h1 {
font-size:110%;	
}

#titre_principal p {
	
font-size:130%;	
}

nav ul {
margin:0;
padding:0;	
}
nav ul li {
		margin-right:20px;
		padding:0;
	}

nav ul li a {
font-size:75%;
margin:0;
padding:0;
	
}

#odsc {
margin:0 auto;
padding:0;	
	
}

#ssmenu {
width:120px;

}

#ssmenu li {
	font-size:0.8em;	
	
}
.services {
	left:130px;
	
}

#infos {
height:auto;	
}

#contact {
float:none;
clear:both;	
}

#etic {
float:none;
clear:both;	
}

}



/*pour empêcher l'iPhone d'agrandir la police en mode landscape*/

@media (max-width:640px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio:2) {
  body {
   -webkit-text-size-adjust: 70%;
  }
}


@media screen and (max-width: 480px) {

	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	
	 aside {
		display:none;
	}
	
	/* passer tous les éléments de largeur fixe en largeur automatique */
 body, nav, section, article {
   width: auto;
   margin: 0 ;
   padding: 0;
 }

section article {
width:100%;
margin:0;
padding:0;	
}

nav
    {
        width: 100%;
        text-align: center;
		
	}

nav ul li {
		margin-right:10px;
		padding:0;
		
	}
	



 /* gestion des mots longs */
 textarea, table, td, th, code, pre, samp, p, section p {
   word-wrap: break-word; /* passage à la ligne forcé */
   -webkit-hyphens: auto; /* césure propre */
   -moz-hyphens: auto;
   hyphens: auto;
 }
 code, pre, samp, p, section p {
   white-space: pre-wrap; /* passage à la ligne spécifique pour les éléments à châsse fixe */
 }
 
 #o, #d, #s, #c {
	 margin-left:20px;
	 
 }
 
 section h1 {
font-size:100%;	
}

#ssmenu {
width:100px;	
}

.services {
	left:110px;
	margin:0;
	padding:0;
	
}

.servces ul li {
	 font-size:0.7em;
	 margin:0;
	 padding:0;
	
}

#infos {
margin:0;
padding:0;	
}

#mapCanvas {

margin:0;
padding:0;	
margin-top:10px;
margin-left:10px;
}
}

@media screen and (max-width: 319px) {
	
	#infos {
	width:20%;
	margin:0;
	padding:0;	
	}
	
	#mapCanvas {
	display:none;
	margin:0;
	padding:0;	
	
	}
	
	#contact {
	font-size:70%;
	margin:0;
	padding:0;
	width:auto;	
	}
	
	#etic {
	font-size:85%;
	margin:0;
	padding:0;	
	}
	
	#etic img {
	height: auto; width: auto;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
		
	}
	
	 body, nav, section, article {
   width: auto;
   margin: 0 ;
   padding: 0;
 }
	
}

