/* layout for rounded images */
.rounded-images .image-wrapper
{
    border-radius: 50%;
    overflow: hidden;
    /*width: 205px;*/
    padding: 3px;
    border: 2px solid #D6D5BF;
}
.rounded-images .image-wrapper img
{
    border-radius: 50%;
}


/* layout for accordion boxes */
.accordion + .accordion
{
	margin-top: -1px;
}
.accordion
{
	clear: both;
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid #666666; /* was #D6D5BF; */
	padding: 0 1rem 0 1rem;
	box-sizing: border-box;
}
.accordion .csc-header
{
	margin: 0 -1rem;
	padding: 0 3rem 0 1rem;
	background: #f0f0f0;
}
.accordion .csc-header:after
{
	content: '';
	position: absolute;
	display: block;
	height: 0;
	width: 100%;
	left: 0;
	border-bottom: 1px solid #666666; /* was #D6D5BF; */	
}

.accordion .csc-header > h1,
.accordion .csc-header > h2,
.accordion .csc-header > h3,
.accordion .csc-header > h4,
.accordion .csc-header > h5,
.accordion .csc-header > h6
{
	margin: 0;
	padding-top: .75rem !important;
	padding-bottom: .75rem !important;
	font-size: 1.12rem;
}
.accordion.inited .csc-header
{
	cursor: pointer;
}
.accordion.inited .csc-header:before
{
	content: '\f0d7';
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	position: absolute;
	display: block;
	top: 0.75rem;
	right: 1rem;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 1rem;
	text-align: center;
	border-radius: 50%;
	background: #E8E6D9;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}
.accordion.inited.open .csc-header:before
{
	content: '\f0d7';
	transform: rotate(180deg);
}
.accordion-content
{
	position: relative;
	display: block;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
	max-height: 0;
}
.accordion-content.no-animation
{
	transition: none;
}
.accordion-content-wrapper > :first-child
{
	padding-top: 1rem;
}
.accordion-content-wrapper > :last-child
{
	padding-bottom: 1rem;
}


/* layout for navigation block */
.navigation-block .image .image-wrapper,
.navigation-block .image .image-wrapper a,
.navigation-block .image .image-wrapper img
{
	width: 100%;
}
.navigation-block .image > *
{
	display: block;
	box-sizing: border-box;
	background: #FFFFFF;
	border-left: .125rem solid #C7C2B1;
	border-right: .125rem solid #C7C2B1;
}
.navigation-block .image > :first-child
{
	border-top: .125rem solid #C7C2B1;
}
.navigation-block .image > :last-child
{
	border-bottom: .125rem solid #C7C2B1;
}
.navigation-block .images .image .caption
{
	background: none;
	padding: .5rem 1rem;
	font-size: 1.25rem;
}
.navigation-block .image-layout .images
{
	text-align: left !important;
}