﻿.breadcrumb {
	border-radius: 5px;
    max-width:960px;
    margin:auto;
    font-size:1.4em;
    padding:0;padding-top:50px;padding-bottom:50px;
    background-color:#fff; 
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 1.2em;text-transform:uppercase;font-family: RobotoRegular;
	line-height: 36px;
	color: white;
	padding: 0 10px 0 40px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}

.breadcrumb span span:first-child a {
	padding-left: 20px;
}

.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -16px;
	width: 36px; 
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	background: #fff;
	background: linear-gradient(135deg, #fff, #fff);
	box-shadow: 
		3px -3px 0 2px rgba(255, 255, 255, 1);
	border-radius: 0 5px 0 50px;
}

/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
}


.flat a, .flat a:after {
	background: #97bf0d;
	color:#fff;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #00774c;
}

.MapPathCurrentNode {
    background-color:#00774c !important;
}

.MapPathCurrentNode:after {
    display:none;
}