/* CSS Document */

#top{
	background:#fff;
}
#redLineTop{
	background:#be2a2a;
}
.titlehomepage{
	    margin-top: 50px;
    margin-bottom: 30px;
}
.titlehomepage:after{
	content: ' ';
  display: block;
  border: 1px solid #be2a2a;
  width: 80px;
  margin-top: 10px;
}


.boxPatho{
	background: #be2a2a;
	color: #fff;
	text-align: center;
	font-size: 1.4em;
	font-weight: 700;
	line-height: normal;
	padding-top: 10px;
	padding-bottom: 10px;
	min-height:80px;
}

#technology{
	background:#fdf9f9;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.btn-outline-success{
    border-color: #fff;
}
.btn-outline-success:hover {
    color: #fff;
    background-color: #be2a2a;
    border-color: #fff;
}






.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #be2a2a !important;
		text-transform:uppercase !important;
		font-size:0.8em !important;
}

div.pressbook ul{
	/*list-style: none;*/
}
div.pressbook ul li{
	margin-bottom:10px;
}
div.pressbook h2{
	margin-bottom:30px;
}






/* Texte défilant */
@media(min-width:350px){
	.messagedefilant {
		display: block;
		/*margin: 0 auto;*/
		padding: 0;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 255px;
		height: 40px;
	}
}
@media(min-width:577px){
	.messagedefilant {
		display: block;
		/*margin: 0 auto;*/
		padding: 0;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 350px;
		height: 40px;
	}
}
@media(min-width:768px){
	.messagedefilant {
		display: block;
		/*margin: 0 auto;*/
		padding: 0;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 540px;
		height: 40px;
	}
}
@media(min-width:992px){
	.messagedefilant {
		display: block;
		/*margin: 0 auto;*/
		padding: 0;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 740px;
		height: 40px;
	}
}
@media(min-width:1200px){
	.messagedefilant {
		display: block;
		/*margin: 0 auto;*/
		padding: 0;
		overflow: hidden;
		position: relative;
		width: 100%;
		max-width: 940px;
		height: 40px;
	}
}
   
  .messagedefilant div {
	position: absolute;
	min-width: 100%; /* au minimum la largeur du conteneur */
  }
   
  .messagedefilant div span {
	position: relative;
	top:0; left:0;
	display: inline-block;
	white-space: nowrap;
	font-size: 1.5em;
	color:#ffffff;
  }
   
  .messagedefilant div span:first-child {
	animation: defilement 10s infinite linear;
  }
   
  .messagedefilant div span:last-child {
	position: absolute;
	animation: defilement2 10s infinite linear;
  }
   
  @keyframes defilement {
	0% { margin-left: 0; }
	100% { margin-left: -100%; }
  }
   
  @keyframes defilement2 {
	0% { margin-left: 100%; }
	100% { margin-left: 0%; }
  }