@charset "utf-8";
/* CSS Document */


#navBar ul {
	margin: 0.3em 0 0 2em;
	padding: 0;
	padding-top: 0.4em;
	list-style: none;
}

#crumbs li {
	float: left;
	margin: 0 .5em 0 .3em;
}


#crumbs a {
  background: #92C2E2;
  background: #C7E6FC;	
  padding: .2em 1em;
  float: left;
  font-size: .75em;
  text-decoration: none;
  color: #657580;
  color: #000;   /*-- changed to black for clarity  */
  text-shadow: 0 1px 0 rgba(255,255,255,.5); 
  position: relative;
}

#crumbs a:hover {
  background: #92C2E2;
	color: #fff;
}

#crumbs a::before{
  content: "";
  position: absolute;
  top: 50%; 
  margin-top: -0.95em;   /* position of tail */
  border-width: .9em 0 1.1em 1em;
  border-style: solid;
  border-color: #C7E6FC #C7E6FC #C7E6FC transparent;
  left: -0.8em;
}

#crumbs a:hover::before{
  border-color: #92C2E2 #92C2E2 #92C2E2 transparent;
}

#crumbs a::after{
  content: "";
  position: absolute;
  top: 60%; 
  margin-top: -1.3em;   
  border-top: 1.1em solid transparent;
  border-bottom: 1.1em solid transparent;
  border-left: 1em solid #C7E6FC;
  right: -1em;
}

#crumbs a:hover::after{
  border-left-color: #92C2E2;
}

#crumbs .current,
#crumbs .current:hover{
  font-weight: bold;
  background: none;
}

#crumbs .current::after,
#crumbs .current::before{
  content: normal;
}
/*#crumbs a::before,
#crumbs a::after {
  content:'';
  position:absolute;
  top: 0;
  bottom: 0;
  width: 1em;
  background: #C7E6FC;
  transform: skew(-10deg);
	-webkit-transform: skew(-10deg);
	-ms-transform: skew(-10deg);
}

#crumbs a::before {
  left: -.5em;
  border-radius: 5px 0 0 5px;
}

#crumbs a:hover::before{
  background: #92C2E2;
	color: #fff;	
}

#crumbs a::after{
  right: -.5em;   
  border-radius: 0 5px 5px 0;
}

#crumbs a:hover::after{
  background: #92C2E2;
}

#crumbs .current,
#crumbs .current:hover{
  font-weight: bold;
  background: none;
}

#crumbs .current::after,
#crumbs .current::before{
  content: normal;
}*/