#nav_breadcrumb
{
	margin-top:20px;
	font-size: 1.5rem;
}
.breadCrumbs {
	position: relative;
	list-style-type: none;
	margin-left: 0px;
	border-radius: 5px;
	overflow: hidden;
}

.breadCrumbs li {
	position: relative;
	float: left;
}

.breadCrumbs li a, .breadCrumbs li p {
	display: block;
	padding: 0 10px 0 30px;
	line-height: 35px;
	color: #222;
	background: #3fabba;
	text-shadow: 2px 2px 4px #fff;
}

.breadCrumbs li:first-child a {
	padding: 0 10px 0 20px;
}

.breadCrumbs li a[href]:hover {
text-decoration: underline;	
}

.breadCrumbs li.activePage p, .breadCrumbs li.activePage a {
	background: #333;
}

.breadCrumbs li:after {
	content: '';
	position: absolute;
	top: 0;
	right: -19px;
	display: block;
	width: 0;
	height: 0;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 20px solid #3fabba;
	z-index: 10;
}

.breadCrumbs li.activePage:after {
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent; 
	border-left: 20px solid #333;
}

/* GIVE EVERY CHILD A DIFFERENT COLOR */
.breadCrumbs li:nth-child(1) a {
	background: #bbb;
}

.breadCrumbs li:nth-child(1):after {
	border-left: 20px solid #bbb;//#3fabba;
}


.breadCrumbs li:nth-child(2) a {
	background: #ccc;
}

.breadCrumbs li:nth-child(2):after {
	border-left: 20px solid #ccc;
}


.breadCrumbs li:nth-child(3) a {
	background: #ddd;
}

.breadCrumbs li:nth-child(3):after {
	border-left: 20px solid #ddd;
}

