﻿/*	====================================================
	TABS that show/hide layers with UL or DIV elements
	In Public-Sphere are only used in Books and Films
=======================================================*/

.tabsBG {
	clear: both;
	line-height: 100%;
	float: left;
	width: 100%;
	margin: 15px 0;
	padding: 0;
	border-bottom: 1px solid #2ea3f2;
}

.tabsBG:after {
	content: "";
	clear: both;
}

.tabsBG li {
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
	border-radius: 5px 5px 0 0;
	background: #2ea3f2;
	background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 1));
	padding: 12px 12px 10px 12px;
	margin: 0 1px 1px 0;
	cursor: pointer;
	color: #0b6daf;

}

.tabsBG li:hover {
	background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
	color: #fff;
}

.tabsBG li span {
	display: inline-block;
	padding: 0 4px 0 0;
}

.tabsBG li.selected {
	background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
	padding: 12px 12px 11px 12px;
	margin: 0 1px 0 0;
	cursor: pointer;
	color: rgba(255,255,255,0.9);
}

.tabLayers {
	clear: both;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tabLayers li {
	clear: both;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
}

.tabLayers li article {
	clear: both;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px dotted #ccc;
}

.tabLayers li article::after {
	content: "";
	width: 100%;
	display: table;
}

.sxAccordion h5 {
	background-color: #2ea3f2;
	background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
	color: rgba(255, 255, 255, 0.8);
	border-radius: 3px;
	margin: 1px 0;
	padding: 8px;
	font-size: 1.2em;
	cursor: pointer;
}

.sxAccordion h5 span::before {
	content: "\25BC";
	margin-right: 0.6em;
	font-size: 1em
}

.sxAccordion h5.selected span::before {
	content: "\25B2";
	margin-right: 0.6em;
	font-size: 1em
}

.sxAccordion>div {
	padding-top: 2em;
}

.sxAccordion * {
	overflow: hidden;
}