/* CSS Document */


#header_tramipac{
	background-color: #fff;
	height: 90px;
	background-image: url(../img/logos.png);
	background-repeat: no-repeat;
	background-position: right center;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #3D3C3C;
}

.am-wrapper{ padding-top: 0px;}

a {color: #0b9444; }

.fuelux .wizard > .steps li.active { color: #0b9444; }

.chat .chat-window .chat-messages ul > li.admin .msg {
  background-color: lightgrey;
  color: #424141;
  margin-left: 0;
  margin-right: 40px;
}
.chat .chat-window .chat-messages ul > li.admin .msg:after {
  right: auto;
  left: -5px;
  border-left-width: 0;
  border-right: 5px solid lightgrey;/**/
}
.chat .chat-window .chat-messages ul > li.admin {
  text-align: left;
}


.chat .chat-window .chat-messages ul > li.self .msg {
  background-color: palegreen;
  color: #424141;
}

.chat .chat-window .chat-messages ul > li.self .msg:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 7px;
  border-bottom: 6px solid transparent;
  border-left: 6px solid palegreen;
  border-top: 6px solid transparent;
}

.mensajeTXT{
	border: 1px dashed grey ;
	text-align: left;
}

.form-horizontal .form-group {
  padding: 6px 0;
}

.btn-primary {
  color: #3d3c3c;
}
.linea_blanca{ 
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: grey;
	margin-bottom: 5px;
}

.avisomensaje {
  color: #0b9444;
  	
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  
	
} 

.avisomensaje2 {
  background: #0b9444;
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
} 





@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

