/**
 * @file
 * Styles for Bartik's breadcrumbs.
 */
/**********BREADCRUMB************/

.breadcrumb {
  text-align: left;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  margin: 0;
}
.breadcrumb ol{
  padding: 0;
  margin: 0;
}
.breadcrumb li{
  list-style-type: none;
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #3c4181;
}



.breadcrumb li:before {
    color: #3c4181;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\f054";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 2px;
  position: relative;
  padding: 0 5px;
}

.breadcrumb li:first-child:before {
    content: "\e900";
    top: 0px;
}


.breadcrumb li a {
    color: #3c4181;
    font-weight: bold;
}
.breadcrumb li a:hover {
    text-decoration: underline;
}


@media (min-width: 768px) {
  .breadcrumb li {
      font-size: 15px;
  }
}

@media (min-width: 992px) {

  
}




