@charset "utf-8";
/* ********************************************* */
/* Transfer OL,LI -> Flat Design Breadcrumb List */
/* ********************************************* */
.ol2bl {
	background-color: transparent;
	height: 1.5em;
	line-height: 1.5;
	margin: 5px 0;
}
.ol2bl li,.ol2bl li a,.ol2bl li span {
	display:inline-block;
}
.ol2bl li a,.ol2bl li span {
	padding: 0 3px 0 1.2em;
	height: 1.5em;
	line-height: 1.5;
    margin-left: -2px;
}
.ol2bl li:first-child a,.ol2bl li:first-child span {
	border-radius: 2px 0 0 2px;
    padding-left: 0.5em;
    margin-left: 0;
}
.ol2bl li:last-child a,.ol2bl li:last-child span {
	border-radius: 0 2px 2px 0;
    padding-right: 0.5em;
}
.ol2bl li a {
	position: relative;
	background-color: whitesmoke;
	color: silver;
	text-decoration: none;
	transition: .6s;
}
.ol2bl li a:before,.ol2bl li a:after {
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 0em solid transparent;
	border-bottom: 1.5em solid transparent;
	transition: .6s;
}
.ol2bl li:not(:last-child) a:before {
	right: -1em;
	z-index: 3;
	border-left: 1em solid whitesmoke;
}
.ol2bl li:not(:last-child) a:after {
	right: -1.2em;
	z-index: 2;
    border-left: 1em solid white;
}
.ol2bl li a:focus,.ol2bl li a:hover {
	color: white;
	background-color: lightgray;
}
.ol2bl li:not(:last-child) a:focus:before,.ol2bl li:not(:last-child) a:hover:before {
	border-left: 1em solid lightgray;
}
.ol2bl li a:active {
	color: white;
	background-color: gold;
}
.ol2bl li:not(:last-child) a:active:before {
	border-left: 1em solid gold;
}
.ol2bl li span {
	position: relative;
	background-color: gold;
	color: white;
    font-weight: bold;
	text-decoration: none;
}
.ol2bl li span:before,.ol2bl li span:after {
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 0em solid transparent;
	border-bottom: 1.5em solid transparent;
}
.ol2bl li:not(:last-child) span:before {
	right: -1em;
	z-index: 3;
	border-left: 1em solid gold;
}
.ol2bl li:not(:last-child) span:after {
	right: -1.2em;
	z-index: 2;
    border-left: 1em solid white;
}
/* ****************************************** */
/* Transfer OL,LI -> Flat Design Progress Bar */
/* ****************************************** */
.ol2pb {
    display: -webkit-flex;
    -webkit-flex-flow: row wrap;
    display: flex;
    flex-flow: row wrap;
}
.ol2pb li {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
	position: relative;
    margin-right: 1.4em;
    margin-bottom: 0.5em;
	padding: 2px 1em 0;
    border-bottom: 2px solid skyblue;
    border-radius: 2px;
    text-align: center;
    font-size: 14px;
    line-height: 2.4;

    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.ol2pb li span {
	display:inline-block;
	color: black;
    font-size: 1em;
    line-height: 2.4;
}
.ol2pb li:last-child span {
}
.ol2pb li:before,.ol2pb li:after {
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	content: '';
}
.ol2pb li:not(:last-child):before {
    top: 0.7em;
    right: -1.1em;
	z-index: 2;
	border-top: 0.6em solid transparent;
	border-bottom: 0.6em solid transparent;
	border-left: 0.6em solid skyblue;
}
/*
.ol2pb li:not(:last-child):after {
    top: 0.95em;
	right: -0.88em;
	z-index: 3;
	border-top: 0.4em solid transparent;
	border-bottom: 0.4em solid transparent;
	border-left: 0.4em solid transparent;
}
*/
.ol2pb li.things {
	background-color: deepskyblue;
    border-bottom: 2px solid blue;
}
.ol2pb li.things span {
    font-weight: bold;
}
.ol2pb li:not(:last-child).things:before {
	border-left-color: blue;
}
.ol2pb li.complete {
    background-color: whitesmoke;
    border-bottom: 2px solid darkgray;
}
.ol2pb li.complete span {
	color: dimgray;
}
.ol2pb li:not(:last-child).complete:before {
	border-left-color: darkgray;
}