﻿* {
	box-sizing: border-box;
}

/**********************************************************************/

/**************************** BREADCRUMBS ****************************/

/********************************************************************/
/* Style the list */
ul.breadcrumb {
	padding: 10px 16px;
	list-style: none;
	background-color: #EEE;
}
/* Display list items side by side */
ul.breadcrumb li {
	display: inline;
	font-size: 12px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
	padding: 8px;
	color: black;
	content: "/\00a0";
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
	color: #0000CC;
	text-decoration: none;
}
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
	color: #0000FF;
	text-decoration: underline;
}
/**********************************************************************/
ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.card-image img {
	width: 100%;
	border: solid 1px #888;
	border-radius: 2px;
}
.card-title {
	background-color: #F5F5F5;
	text-align: center;
	padding: 5px;
	margin-top: 0;
	margin-bottom: 0.4em;
	border: solid 1px #CCC;
	border-radius: 2px;
}
/*Flex items*/
.list {
	display: flex;
	flex-wrap: wrap;
}
.list-item {
	display: flex;
	padding: 0.5em;
	width: 100%;
}
@media all and (min-width: 40em) {
	.list-item {
	width: 50%;
	}
}
@media all and (min-width: 60em) {
	.list-item {
	width: 33.33%;
	}
}
.list-content {
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	padding: 1em;
	width: 100%;
	border: solid 1px #CCC;
	border-radius: 2px;
	box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .3);
}
.list-content p {
	flex: 1 0 auto;
}
p {
	font-size: 16px;
	font-weight: 500;
}
.summary {
	padding: 10px 0 10px 0;
	font-size: 16px;
	font-weight: 600;
}
/* Code for 'Pure CSS Button' */
.pure-button-primary {
	display: block;
	background-color: #0066BB;
	color: #FFF;
	width: 100%;
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	padding: 10px;
	border: 0;
	border-radius: 2px;
}
.pure-button-primary:hover {
	background-color: #0055AA; /* slightly darker blue */
	color: #FFF;
}
.pure-button-primary a:link, a:visited, a:active {
	color: #FFF;
}
/**********************************************************************/

/******************** AUTHOR PROFILE SUMMARY *************************/

/********************************************************************/
.avatar img {
	width: 135px;
	border-radius: 50%;
	border: solid 3px #999999; /* was #0066BB */
	padding: 0px;
	margin: 5px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.left { float: left; }

.quote-box {
	padding-top: 20px;
	padding-left: 13%;
	padding-right: 13%;
	padding-bottom: 5px;
}

.quote-box p {
	font-family: "roboto_condensedregular", sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 300;
	color: #444444;
}
