@CHARSET "ISO-8859-1";
/* Estilo general */
* {
	font-family: Roboto,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
}
.error {
	border: 1px solid red !important;
}

.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 3px 5px;
	cursor: default;
	display: block;
	font: menu;
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
}

.ac_loading {
	background: white url('../imagenes/indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #3a3480;
	color: white;
}
.ui-pg-input {
	width: 20px;
	text-align : center;
}
.ui-pg-selbox {
	width: 50px;
}
  /* Tooltip */
.test + .tooltip > .tooltip-inner {
      background-color: #F7E1B5; 
      color: black; 
      border: 1px solid black; 
      padding: 3px;
      font-size: 10px;
      text-align: left;
}
  /* Tooltip on top */
.test + .tooltip.top > .tooltip-arrow {
      border-top: 5px solid green;
}
  /* Tooltip on bottom */
.test + .tooltip.bottom > .tooltip-arrow {
      border-bottom: 5px solid blue;
}
  /* Tooltip on left */
.test + .tooltip.left > .tooltip-arrow {
      border-left: 5px solid red;
}
  /* Tooltip on right */
.test + .tooltip.right > .tooltip-arrow {
      border-right: 5px solid black;
}
/* Animaciones */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fast {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}
.background-theme {
	background-color:#333;
	background: url(../imagenes/background.jpg) fixed top;
}

.background-box {
	background-color:#FFF;
}
.border-radius(@radius: 5px) {
  -webkit-border-radius: @radius;
     -moz-border-radius: @radius;
          border-radius: @radius;
}