.checkbox {
    padding-left: 20px; }
.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555; }
.checkbox input[type="checkbox"] {
    opacity: 0; }
.checkbox input[type="checkbox"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
.checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; }
.checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65; }
.checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; }
.checkbox.checkbox-circle label::before {
    border-radius: 50%; }
.checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca; }
.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff; }

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f; }
.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff; }

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de; }
.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff; }

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff; }

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c; }
.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff; }

.radio {
    padding-left: 20px; }
.radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out; }
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
.radio input[type="radio"] {
    opacity: 0; }
.radio input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1); }
.radio input[type="radio"]:disabled + label {
    opacity: 0.65; }
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed; }
.radio.radio-inline {
    margin-top: 0; }

.radio-primary input[type="radio"] + label::after {
    background-color: #428bca; }
.radio-primary input[type="radio"]:checked + label::before {
    border-color: #428bca; }
.radio-primary input[type="radio"]:checked + label::after {
    background-color: #428bca; }

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f; }
.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f; }
.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f; }

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de; }
.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de; }
.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de; }

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e; }
.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e; }
.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e; }

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c; }
.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c; }
.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c; }


.check .checkbox, .validate .checkbox, .list .checkbox{
margin-bottom:0px !important;
margin-top:0px !important;
}




/** Barra de navegación top*/
nav.navbar ul.navbar-nav a:hover,nav.navbar ul.navbar-nav a:visited,nav.navbar ul.navbar-nav a:focus,nav.navbar ul.navbar-nav a:hover { border-color: #E7BA61 !important; color:#9d9d9d}

section {
    padding: 0px!important 0;
}

.has-primary .help-block,
.has-primary .control-label,
.has-primary .radio,
.has-primary .checkbox,
.has-primary .radio-inline,
.has-primary .checkbox-inline,
.has-primary.radio label,
.has-primary.checkbox label,
.has-primary.radio-inline label,
.has-primary.checkbox-inline label {
  color: #286090;
}
.has-primary .form-control {
  border-color: #286090;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-primary .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-primary .input-group-addon {
  color: #286090;
  border-color: #204d74;
  background-color: #dff0d8;
}
.has-primary .form-control-feedback {
  color: #286090;
}

.primary, .blue{color:#337ab7} 
.success, .green{color:#5cb85c}    
.info, .celeste{color:#5bc0de}  
.warning,.orange{color:#f0ad4e}
.danger,.red{color:#d9534f}    



.color-gray-darker{color:#222}
.color-gray-dark{color:#333}
.color-gray{color:#555}
.color-gray-light{color:#999}
.color-gray-lighter{color:#eee}
.color-primary{color:#337ab7}
.color-success{color:#5cb85c} 
.color-info{color:#5bc0de}    
.color-warning{color:#f0ad4e} 
.color-danger{color:#d9534f}  


.width_70{ width: 70px}
.width_80{ width: 80px}
.width_90{ width: 90px}
.width_110{ width: 110px}
.width_120{ width: 120px}
.width_130{ width: 130px}
.width_140{ width: 140px}
.width_150{ width: 150px}
.width_160{ width: 160px}
.width_170{ width: 170px}
.width_180{ width: 180px}
.width_190{ width: 190px}
.width_200{ width: 200px}
.width_210{ width: 210px}
.width_220{ width: 220px}
.width_230{ width: 230px}
.width_240{ width: 240px}
.width_250{ width: 250px}
.width_260{ width: 260px}
.width_270{ width: 270px}
.width_280{ width: 280px}
.width_290{ width: 290px}
.width_300{ width: 300px}
.width_310{ width: 310px}
.width_320{ width: 320px}
.width_350{ width: 350px}
.width_370{ width: 370px}
.width_400{ width: 400px}
.width_420{ width: 420px}
.width_450{ width: 450px}
.width_500{ width: 500px}
.width_550{ width: 550px}
.width_650{ width: 650px}

/*http://bootsnipp.com/snippets/featured/simple-card-alerts
http://bootsnipp.com/fullscreen/qAdNQ
*/
.notice {
    padding: 10px;
    margin:5px -15px; 
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
       -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
            box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}
.notice-sm {
    padding: 10px 5px;
    font-size: 80%;
}
.notice-lg {
    padding: 35px 10px;
    font-size: large;
}
.notice-success {
    border-color: #80D651;
}
.notice-success>strong {
    color: #80D651;
}
.notice-info {
    border-color: #45ABCD;
}
.notice-info>strong {
    color: #45ABCD;
}
.notice-warning {
    border-color: #FEAF20;
}
.notice-warning>strong {
    color: #FEAF20;
}
.notice-danger {
    border-color: #d73814;
}
.notice-danger>diff,.notice-danger>strong {
    color: #d73814;
}

/* fin  noticias */


/*Custom template*/

.programaTabla th.btn-th{
    width: 170px;
  }
  @media (max-width: 992px){
   
    .programaTabla.table {
      border: 0;
	
    }

    .programaTabla.table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .programaTabla.table tr {

      display: block;
      margin-bottom: .625em;
    }
    
    .programaTabla.table td {
      border-bottom: 1px solid #ddd;
      display: block;
      text-align: left;
    }
    
    .programaTabla.table td::before {
      content: attr(data-label);
      word-break: break-all;
      float: left;
      font-weight: bold;
      display: block;
      padding-bottom: 10px;
      width: 100%;
      text-transform: uppercase;
    }
    
    .programaTabla.table td:last-child {
     
      border-bottom-color: #0072bb;
      border-bottom-width: 3px;
      border-top: 0px!important;
    }

    .programaTabla.table td:first-child {
      border-top: 0!important;
    }
}


.logoFooter{
max-width: 90%
}

.navbar-header h1{
color:#1f7a4a!important;
margin: 10px 0px 0px 0px!important;
font-size: 28px
}

.nav-multilevel{
padding-left: 15px;
}

.nav-multilevel li a:before{
content:"- ";
display: inline
}

.pesos:before {  content: "$ "; }
.pesos{ 
           number-format: "#.##0,00", "pesos";
           grouping-separator: "." !important;
           decimal-separator : "," !important;
    }

.porcentaje:after {  content: "%"; }
.porcentaje{ 
           grouping-separator: ".";
           decimal-separator : ","
    }

.mx-auto {
  text-align: center !important;
}
.mx-r {
  text-align: right !important;
}
.mx-l {
  text-align: left !important;
}
.mx-j {
  text-align: justify !important;
}


.boldy {
  font-weight:bold !important;
}

.pointer {cursor: pointer;}
.f-8 { font-size:1.45em !important;}
.f-7 { font-size:1.32em !important;}
.f-6 { font-size:1.11em !important;}
.f-5 { font-size:1em 	!important;}
.f-4 { font-size:0.91em !important;}
.f-3 { font-size:0.81em !important;}
.f-2 { font-size:0.75em !important;}
.f-1 { font-size:0.50em !important;}
.f-0 { font-size:0.40em !important;}


.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) !important;
    color: #fff !important;
}

.navbar-header  {
	font-family:'Lora',serif  !important; 
}


.navbar-header h1 a {
	  border-bottom-color: #e7ba61 !important;
    text-decoration: none  !important;
}
.breadcrumb a:hover {
    color: #242c4f  !important;
    text-decoration: underline  !important;
}

.main-footer {
    padding: 50px 0 0 0  !important;
    margin-top: 10px  !important;
    background: #f2f2f2 !important;
}
.sub-footer{
	  height: 120px  !important;
}
footer {
	 margin-bottom: 0px  !important;
	 padding: 50px 0 0 0  !important;
}