
/*################################################################
SOMMAIRE style v5

1. STUCTURE
	1.1 -------  Le reset des styles selon Meyer
	1.2 -------  Le style général de base
    1.3 -------  Accessibilité

2. MODIFICATIONS DU MENU peut être supprimé ou réadapté
    2.0 -------  Le header
	2.1 -------  Adaptation au responsive
	2.2 -------  Le multiniveau

*/


/*################################################################
1. STUCTURE, style de base petit ajustements de bootstrap
################################################################# */

/*  #############################################
    1.1 -------  Le reset des styles selon Meyer
############################################## */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;

}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/*  #####################################
    1.2 -------  Le style générale de base
###################################### */

body {
	background: #ffffff;
	margin: 0;
	height: 100%;
	color: #384452;
	font-family: Helvetica,Arial, sans-serif;
	font-weight: 400;
	}

h1, h2, h3, h4, h5, h6 {

	font-weight: normal;
    line-height: 1.4em;
}

p {
	padding: 0;
	margin-bottom: 10px;
	font-family: Helvetica,Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.4em;
	color: #384452;
	margin-top: 10px;
}

img {
	height: auto;
	max-width: 100%;
}

/*Ajout Effet css3 sur les boutons*/
a {
	padding: 0;
	margin: 0;
	text-decoration: none;
	-webkit-transition: background-color .3s linear, color .3s linear;
	-moz-transition: background-color .3s linear, color .3s linear;
	-o-transition: background-color .3s linear, color .3s linear;
	-ms-transition: background-color .3s linear, color .3s linear;
	transition: background-color .3s linear, color .3s linear;
}
a:hover,
a:focus {
  text-decoration: none;
  color:#01b2fe;
}

.centered {text-align: center}
.y-marge{margin-top: 50px; margin-bottom:50px;}
.align-right{float: right;}
.align-left{float: left;}



/*  #############################################
    1.2b -------  Correctifs bootstrap
############################################## */
/*Suppressions des gouttieres*/
.no-gutter div[class^="col-"]{padding: 0;}

/*gouttieres 1px*/
.gutter-1 div[class^="col-"]{padding-right: 1px; padding-left: 0;}
/*Création d'une gouttière plus reduite*/
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{padding-left: 5px;padding-right: 5px;}


/*  #############################################
    1.3 -------  Accessibilité
############################################## */

/*Pour corriger les boutons avec href vide en y ajoutant un texte*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    left: 5px;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*	################################################################
2. 	MODIFICATIONS DU MENU peut être supprimé ou réadapté
################################################################# */

/*  #####################################
    2.1 -------  Adaptation au responsive
###################################### */

@media screen and (max-width: 769px){
    .dropdown-menu{float: none; width:auto;display: block;position: static;}
}
@media screen and (min-width: 768px) {
	.dropdown:hover > .dropdown-menu {
	display: block;
	}
}

/*  ###########################
    2.2 -------  Le multiniveau
############################ */

.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:hover>.dropdown-menu{display:block;}
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}


/*  ###########################
    2.3 -------  Le style
############################ */

.navbar {
	min-height: 70px;
	padding-top: 0px;
	/*margin-bottom: 0px;*/
}

.navbar-brand {
	font-weight: 900;
}

.navbar-header .navbar-brand {
	color: white;
}

.navbar-default .navbar-nav > li > a {
	color: white;
	font-weight: 700;
	font-size: 12px;
}

.navbar-default .navbar-nav > li > a:hover {
	color: #00b3fe;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #00b3fe;
	background-color: transparent;
}

.navbar-default {
	background-color: #384452;
	border-color: transparent;
}

.dropdown-menu {
	background: #384452;
}

.dropdown-menu > li > a {
	color: white;
	font-weight: 700;
	font-size: 12px;
}

/*	################################################################
	MODIFICATIONS Bouton
################################################################# */
.btn-tircis {
  color: #fff;
  background-color: #384452;
  border-color: #384452;
  margin: 4px;
}
.btn-tircis:hover,
.btn-tircis:focus,
.btn-tircis:active,
.btn-tircis.active,
.open .dropdown-toggle.btn-tircis {
  color: #fff;
  background-color: #00b3fe;
  border-color: #00b3fe;
}

/*  ################################################################
    BANDE HEADER INTER
################################################################# */


.header-inter {
	background: #00b3fe;
	margin-bottom: 60px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.header-inter h3 {
	color: white;
	margin-left: 15px;
}

/*Pour la demo*/
.bl-encadre{background-color: #ccc; padding: 20px;}




/*	################################################################
	LE FOOTER
################################################################# */

footer{background-color: #384452; padding: 20px 0;}
footer h4, footer p{color: #fff;}
