@charset "utf-8";

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1 {
	font-weight: 100;
	font-size: 32px;
	padding: 40px;
	color: #fff;
}
  
#breadcrumb {
	list-style: none;
	display: inline-block;
	font-size: 12.5px;
}
#breadcrumb .icon {
	font-size: 14px;
}
#breadcrumb li {
	float: left;
	padding: 0 0 5px 0;
}
#breadcrumb li a {
	color: #fff;
	display: block;
	background: #59a5d4;
	text-decoration: none;
	position: relative;
	height: 40px;
	line-height: 40px;
	padding: 0 10px 0 0;
	text-align: center;
	margin-right: 23px;
	transition: none !important;
}
#breadcrumb li:nth-child(even) a {
	background-color: #3f8ec0;
}
#breadcrumb li:nth-child(even) a:before {
	border-color: #3f8ec0;
	border-left-color: transparent;
}
#breadcrumb li:nth-child(even) a:after {
	border-left-color: #3f8ec0;
}
#breadcrumb li:first-child a {
	padding-left: 15px;
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px 0 0 4px;
}
#breadcrumb li:first-child a:before {
	border: none;
}
#breadcrumb li:last-child a {
	padding-right: 15px;
	-moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0;
	border-radius: 0 4px 4px 0;
	cursor: auto;
	background-color: #28c596;
}
#breadcrumb li:last-child a:before {
	border-color: #28c596;
	border-left-color: transparent;
}
#breadcrumb li:last-child a:after {
	border: none;
}
#breadcrumb li a:before, #breadcrumb li a:after {
	content: "";
	position: absolute;
	top: 0;
	border: 0 solid #59a5d4;
	border-width: 20px 10px;
	width: 0;
	height: 0;
}
#breadcrumb li a:before {
	left: -20px;
	border-left-color: transparent;
}
#breadcrumb li a:after {
	left: 100%;
	border-color: transparent;
	border-left-color: #59a5d4;
}
#breadcrumb li:not(:last-child) a:hover {
	background-color: #1b6c9e;
}
#breadcrumb li:not(:last-child) a:hover:before {
	border-color: #1b6c9e;
	border-left-color: transparent;
}
#breadcrumb li:not(:last-child) a:hover:after {
	border-left-color: #1b6c9e;
}
#breadcrumb li:not(:last-child) a:active {
	background-color: #1f638d;
}
#breadcrumb li:not(:last-child) a:active:before {
	border-color: #1f638d;
	border-left-color: transparent;
}
#breadcrumb li:not(:last-child) a:active:after {
	border-left-color: #1f638d;
}

@media (max-width: 1039px) {
	#breadcrumb li a {
		height: 32px;
		line-height: 32px;
		padding: 0 10px 0 0;
	}
	#breadcrumb li a:before, #breadcrumb li a:after {
		border-width: 16px 10px;
	}
}

@media (max-width: 767px) {
	#breadcrumb {
		font-size: 12px;
	}
	#breadcrumb li a {
		height: 28px;
		line-height: 28px;
		padding: 0 10px 0 0;
	}
	#breadcrumb li a:before, #breadcrumb li a:after {
		border-width: 14px 10px;
	}
}