/***
    Template-CSS for "fhs-sections"
    version 1.0 - 2021/6
    © 2021 fhs - www.fhseidel.de
***/

/***
    THE TEMPLATE-COLORS ***
    The color specifications determine the appearance of the entire website.
    The specifications must be given as RGB values
    separated by commas with a semicolon at the end.
    So for example for black: "0,0,0;" or for white: "255,255,255;".
***/

:root {
/*  The main color of the template.
    This is used to color most of the graphic elements. */
	--mainColor: 25,8,0;

/*  Deviating from the main color of the template,
    a color for the normal text can be specified here. */
	--textColor: 25,8,0;

/*  The color for highlighted elements (e.g. active page in the menu) is set here. */
	--accentColor: 221,34,0;
 
/*  The default background color (usually white: 255, 255, 255) is determined here. */
	--mainBackgroundColor: 255,255,255;

/*  A second alternative background color. */
	--secondBackgroundColor: 128,64,149;
}

/* system-font.css v2.0.2 | CC0-1.0 License | github.com/jonathantneal/system-font-css */
@font-face{font-family:system-ui;font-style:normal;font-weight:300;src:local(".SFNSText-Light"),local(".HelveticaNeueDeskInterface-Light"),local(".LucidaGrandeUI"),local("Segoe UI Light"),local("Ubuntu Light"),local("Roboto-Light"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:italic;font-weight:300;src:local(".SFNSText-LightItalic"),local(".HelveticaNeueDeskInterface-Italic"),local(".LucidaGrandeUI"),local("Segoe UI Light Italic"),local("Ubuntu Light Italic"),local("Roboto-LightItalic"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:normal;font-weight:400;src:local(".SFNSText-Regular"),local(".HelveticaNeueDeskInterface-Regular"),local(".LucidaGrandeUI"),local("Segoe UI"),local("Ubuntu"),local("Roboto-Regular"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:italic;font-weight:400;src:local(".SFNSText-Italic"),local(".HelveticaNeueDeskInterface-Italic"),local(".LucidaGrandeUI"),local("Segoe UI Italic"),local("Ubuntu Italic"),local("Roboto-Italic"),local("DroidSans"),local("Tahoma")}@font-face{font-family:system-ui;font-style:normal;font-weight:500;src:local(".SFNSText-Medium"),local(".HelveticaNeueDeskInterface-MediumP4"),local(".LucidaGrandeUI"),local("Segoe UI Semibold"),local("Ubuntu Medium"),local("Roboto-Medium"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:italic;font-weight:500;src:local(".SFNSText-MediumItalic"),local(".HelveticaNeueDeskInterface-MediumItalicP4"),local(".LucidaGrandeUI"),local("Segoe UI Semibold Italic"),local("Ubuntu Medium Italic"),local("Roboto-MediumItalic"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:normal;font-weight:700;src:local(".SFNSText-Bold"),local(".HelveticaNeueDeskInterface-Bold"),local(".LucidaGrandeUI"),local("Segoe UI Bold"),local("Ubuntu Bold"),local("Roboto-Bold"),local("DroidSans-Bold"),local("Tahoma Bold")}@font-face{font-family:system-ui;font-style:italic;font-weight:700;src:local(".SFNSText-BoldItalic"),local(".HelveticaNeueDeskInterface-BoldItalic"),local(".LucidaGrandeUI"),local("Segoe UI Bold Italic"),local("Ubuntu Bold Italic"),local("Roboto-BoldItalic"),local("DroidSans-Bold"),local("Tahoma Bold")}

:root {
	scroll-behavior: smooth;
}
* {
	margin:0;
	padding:0;
	box-sizing: border-box;
}
strong,
b {
	color: rgba(var(--textColor), .75);
	font-weight: 600;
}
span.highlightedText,
p.highlightedText,
div.highlightedText {
	color: rgba(var(--accentColor), .9);
	font-weight: 500;
}
span.sticker {
	font-size: .8em;
	background: rgba(var(--accentColor), 1);
	padding: .1em .5em;
	color: rgba(var(--mainBackgroundColor), 1);
	border-radius: 3px;
}
a.linkButton {
	font-size: 1.1em;
	border: 0;
	padding: .25em 1.5em;
	background: rgba(var(--secondBackgroundColor), 1);
	margin: 1em 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
}
a.linkButton:hover,
a.linkButton:focus {
	color: rgba(var(--textColor), 1);
	/*background: rgba(var(--mainColor), .1);*/
        background:#B8860B!important;
	box-shadow: none;
	border: 0 !important;
}
p.subheading {
	font-size: 1.25em;
	margin: 0;
	font-weight: 500;
}
body {
	background: rgba(var(--mainBackgroundColor), 1);
	color: rgba(var(--textColor), 1);
	-webkit-hyphens: auto;
	hyphens: auto;
	-webkit-font-smoothing: antialiased;
	font: 400 18px/1.5em system-ui, sans-serif;
	overflow-Y: scroll;
	max-width: 2340px;
	margin: 0 auto;
}
#header {
	background: rgba(var(--mainBackgroundColor), 1);
	position: fixed;
	height: auto;
	z-index: 1;
	top: 0;
	border-bottom: 1px solid rgba(var(--textColor), .1);
	left: 0;
	right: 0;
}
#header .headerInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 1em;
}
#header a {
	text-decoration: none;
	margin: 0 15px 0 0;
	border: 0;
}
#header h1 {
	display: inline-block;
	margin: 0;
	font-size: 2em;
	font-weight: 500;
	color: rgba(var(--textColor), .75);
	padding: 0;
	border: 0;
	text-align: left;
}
#header img {
	width: auto;
	height: 100px;
	max-height: 100px;
}
#header .slogan {
	margin: 0;
	font-family: system-ui, sans-serif;
	font-weight: 400;
}
.langMenu {
	text-align: right;
	margin: .5em 0;
}
.langMenu img {
	padding: 0;
}
.langMenu a {
	display: inline-block;
	padding: 0 0 .1em .1em;
	border: 0;
}
.wrapper {
}
.mainContent {
	margin: 0px 0 0 0;
        /*margin: -180px 0 0 0;*/
}
.mainContent article {
	overflow: visible;
	min-height: 100vh;
}
section.normalSection, div.submenDiv {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2em 0;
}
section {
	padding: 5em;
}
section:after {
	clear: both;
}
section p:last-child {
	margin-bottom: 0;
}
section div.snippetContent {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
p.imgNormal {
	width: 100% !important;
	margin: 2em 0 !important;
}
p.imgNormal + p.imgCaption {
	margin: -2em 0 2em 0 !important;
}
p.imgCaption {
	color: rgba(var(--textColor), .75);
	font-size: .75em;
	line-height: 1.25;
	margin: .5em auto !important;
	padding: .25em;
	text-align: center;
}
p.imgCaption a {
	color: rgba(var(--textColor), .75);
}
p.imgCaption a:hover,
p.imgCaption a:focus {
	color: rgba(var(--textColor), 1) !important;
}
p.footNote {
	color: rgba(var(--textColor), .75);
	font-size: .75em;
	display: inline-block;
	border-top: 1px dotted rgba(var(--textColor), .5);
	line-height: 1.25;
	padding-top: .25em;
}

/*** SNIPPETS ***/
/*01*/
section.snippet01 {
	background: #e4d2c0;
	background: linear-gradient(90deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
        border-top: 5px solid #B8860B;
        border-bottom: 5px solid #B8860B;
}
section.snippet01 .snippetImgLeft {
	width: 38.2%;
}
section.snippet01 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	/*width: auto;*/
	border-radius: 3px;
    border-top: 10px solid #FAEEFF;
    border-right: 10px solid #F1CAFF;
    border-left: 10px solid #F1CAFF;
    border-bottom: 10px solid #FAEEFF;
}
section.snippet01 .snippetText {
	width: 61.8%;
	padding: 0 0 0 2em;
	display: flex;
	flex-flow: column;
	justify-content: center;
        margin-top:-65px;
}
/*02*/
section.snippet02 {
}
section.snippet02 .snippetTextLeft {
	width: 61.8%;
	padding: 0 5em 0 0;
}
section.snippet02 .snippetTextRight {
	width: 38.2%;
	padding: 2em;
	background: rgba(var(--secondBackgroundColor), .5);
	border-radius: 3px;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
/*03*/
section.snippet03 {
	background: #e4d2c0;
	background: linear-gradient(-90deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
        border-top: 5px solid #B8860B;
        border-bottom: 5px solid #B8860B;
}
section.snippet03 .snippetImg {
	width: 61.8%;
}
section.snippet03 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
    border-top: 10px solid #FAEEFF;
    border-right: 10px solid #F1CAFF;
    border-left: 10px solid #F1CAFF;
    border-bottom: 10px solid #FAEEFF;
/*height:75%!important;*/
}
section.snippet03 .snippetText {
	width: 38.2%;
	padding: 0 2em 0 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
	text-align: right;
}
/*04*/
section.snippet04 {
	background: rgba(var(--secondBackgroundColor), .25);
}
div.text3cols {
	clear: both;
	column-count: 3;
	column-width: 300px;
	column-gap: 2em;
	column-rule: 0;
	column-fill: balance;
	orphans: 2;
	widows: 2;
	margin: 0 0 1.5em 0;
}
section.snippet04 .snippetText {
	width: 100%;
}
p.leadText {
	font-weight: 500;
	color: rgba(var(--textColor), .75);
	max-width: calc(50% - 1em);
}
/*05*/
section.snippet05 {
	background: #e4d2c0;
	background: linear-gradient(90deg, rgba(var(--secondBackgroundColor), 1) 67%, rgba(var(--mainBackgroundColor), 1) 67%);
}
section.snippet05 div.snippetContent {
	position: relative;
	flex-flow: column;
	justify-content: center;
}
section.snippet05 .snippetImg {
	width: 61.8%;
}
section.snippet05 .snippetImg img {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 100%;
	border-radius: 3px;
    border-top: 10px solid #FAEEFF;
    border-right: 10px solid #F1CAFF;
    border-left: 10px solid #F1CAFF;
    border-bottom: 10px solid #FAEEFF;
}
section.snippet05 .snippetText {
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	width: 40%;
	padding: 2em;
	background: rgba(var(--mainBackgroundColor), 1);
	margin: -2em 0 0 -4em;
	border-radius: 3px;
	position: absolute;
	right: 0;
}
/***/

p {
	margin: 0 0 0.8em 0;
	text-align: justify;
        text-shadow: 0 0 black;
}
a,
ul a,
#tinymce a,
#newsboxes a,
div.xh_login a,
#footer a {
	text-decoration: none;
	color: rgba(var(--textColor), .75);
	border-bottom: 1px dotted rgba(var(--mainColor), .5);
}
a:hover,
ul a:hover,
#tinymce a:hover,
#newsboxes a:hover,
#footer a:hover {
	border-color: rgba(var(--accentColor), 1);
	color: rgba(var(--accentColor), 1);
}
a[target="_blank"]::after {
	content: "↑";
	padding: 0 0 0 .25em;
	transform: rotate(45deg);
	display: inline-block;
	font-size: .75em;
	font-weight: bold;
	vertical-align: text-bottom;
}
#topLinkDiv {
	display: flex;
	justify-content: flex-end;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	z-index: 100;
	border-radius: 3px;
}
a#topLink {
	background: rgba(var(--mainBackgroundColor), .5);
	transition: all .5s ease;
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	border: 0;
}
#topLink .line {
	position: absolute;
	left: 10px;
	height: 4px;
	width: 20px;
	border-radius: 2px;
	display: block;
	transition: 0.5s;
	transform-origin: center;
	background: rgba(var(--mainColor), .75);
}
#topLink .line:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
#topLink .line:nth-child(2) {
	transform: translateY(0px) translateX(12px) rotate(45deg);
}
p.clear,
div.clear {
	clear: both;
}
hr {
	border: 0;
	border-bottom: 1px solid rgba(var(--accentColor), 1);
	height: 0;
	clear: both;
	margin: 1.5em 0;
}
hr.hrdot {
	border: 0;
	border-bottom: 1px dotted rgba(var(--accentColor), 1);
	height: 0px;
	clear: both;
	margin: 1em 0;
}
hr.hrBold {
	border: 0;
	border-bottom: 6px solid rgba(var(--accentColor), .5);
	height: 0;
	clear: both;
	margin: .5em 0;
	border-radius: 3px;
}
img {
	border: 0 none;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
p.noBr,
span.noBr,
td.noBr {
	white-space: nowrap;
}
p.subHeading {
	font-size: 1.25em;
	margin: .5em 0 .25em 0;
}
.mainMenu {
	position: fixed;
	top: 100px;
	bottom: 0px;
	right: -300px;
	width: 300px;
	max-width: 100vw;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0 1em;
    --scrollbarBG: rgba(var(--mainBackgroundColor), .5);
    --thumbBG: rgba(var(--mainColor), .5);
	scrollbar-width: thin;
	/*scrollbar-color: var(--scrollbarBG) var(--thumbBG);*/
	transition: all .5s ease;
	background: rgba(var(--mainBackgroundColor), .9);
	z-index: 101;
}
.mainMenu::-webkit-scrollbar {
	width: 10px;
}
.mainMenu::-webkit-scrollbar-track {
	background: var(--scrollbarBG);
}
.mainMenu::-webkit-scrollbar-thumb {
	background-color: var(--thumbBG);
	border-radius: 5px;
	border: 1px solid var(--scrollbarBG);
}
#menuButton {
	display: none;
}
label.menuButton {
	background-color: rgba(var(--mainBackgroundColor), .9);
	background-size: cover;
	position: fixed;
	right: 25px;
	top: 25px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	z-index: 1;
}
.line {
	position: absolute;
	left: 10px;
	height: 4px;
	width: 30px;
	background: rgba(var(--mainBackgroundColor), 1);
	border-radius: 2px;
	display: block;
	transition: 0.5s;
	transform-origin: center;
	background: rgba(var(--mainColor), .75);
}
.line:nth-child(1) {
	top: 17px;
}
.line:nth-child(2) {
	top: 25px;
}
.line:nth-child(3) {
	top: 33px;
}
#menuButton:checked + label .line:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
#menuButton:checked + label .line:nth-child(2) {
	opacity: 0;
}
#menuButton:checked + label .line:nth-child(3) {
	transform: translateY(-8px) rotate(45deg);
}
 #menuButton:checked ~ .mainMenu {
 right: 0px;
}
#mainNav {
	clear: both;
	font-family: system-ui, sans-serif;
	font-weight: 400;
}
#mainNav ul {
}
#mainNav ul li {
	font-size: 16px;
	line-height: 20px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0 0 .5em 0;
	border: 1px solid rgba(var(--mainColor), .1);
	background: rgba(var(--mainBackgroundColor), .95);
	border-radius: 3px;
	box-shadow: 0 0 5px 1px rgba(0,0,0,.05);
}
#mainNav ul ul li {
	background: rgba(var(--mainBackgroundColor), 1);
	margin: 0;
	border: 0;
	border-top: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0;
	box-shadow: none;
}
#mainNav ul ul li:last-child {
	border-radius: 0 0 5px 5px;
}
#mainNav ul span {
	padding: 10px;
	display: block;
	color: rgba(var(--accentColor), 1);
}
#mainNav ul li a {
	text-decoration: none;
	padding: 10px;
	display: block;
	color: rgba(var(--mainColor), 1);
	border: none;
}
#mainNav li a:hover {
	background: rgba(var(--mainColor), .05);
}
#mainNav ul span,
#mainNav ul li a {
	/* [disabled]text-transform: uppercase; */
}
#mainNav ul ul span,
#mainNav ul ul li a {
	/* [disabled]text-transform: none; */
}
#mainNav ul ul li a,
#mainNav ul ul li span {
	padding-left: 1em;
}
#mainNav ul ul ul li a,
#mainNav ul ul ul li span {
	padding-left: 1.5em
}
#mainNav ul ul ul ul li a,
#mainNav ul ul ul ul li span {
	padding-left: 2em
}
#mainNav ul ul ul ul ul li a,
#mainNav ul ul ul ul ul li span {
	padding-left: 2.5em
}
#mainNav ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul li span {
	padding-left: 3em
}
#mainNav ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul li span {
	padding-left: 3.5em
}
#mainNav ul ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul ul li span {
	padding-left: 4em
}
#mainNav ul ul ul ul ul ul ul ul ul li a,
#mainNav ul ul ul ul ul ul ul ul ul li span {
	padding-left: 4.5em
}
#searchForm {
	padding: 1em 0;
	overflow: auto;
}
#searchbox {
}
#searchbox input {
	color: rgba(var(--mainColor), 1);
	font: 400 15px system-ui, sans-serif;
	line-height: normal;
	padding: .25em .5em !important;
	margin: 0;
}
#searchbox input[name="search"] {
	float: left;
	color: rgba(var(--mainColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px 0 0 3px;
	background: rgba(var(--mainColor), .05);
}
#searchbox input[name="search"]:focus {
	background: rgba(var(--mainBackgroundColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px 0 0 3px;
}
#searchbox input[type="hidden"] {
	display: none;
}
#searchbox input[type="submit"] {
	background: rgba(var(--mainColor), .5);
	float: left;
	color: rgba(var(--mainBackgroundColor), 1);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0 3px 3px 0;
}
#searchbox input[type="submit"]:hover,
#searchbox input[type="submit"]:focus {
	background: rgba(var(--mainColor), .1);
	color: rgba(var(--mainColor), 1);
	text-shadow: none;
	cursor: pointer;
}
ul.sitemaplevel1 {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.sitemaplevel1 li {
	list-style: none;
}
ul.sitemaplevel1 li a {
	text-transform: uppercase;
	color: rgba(var(--mainColor), 1);
	display: block;
	padding: .25em;
	font-weight: 400;
}
ul.sitemaplevel1 li a:hover {
	background: rgba(var(--mainColor), .05);
	border-color: transparent;
}
ul.sitemaplevel2 li a {
	font-weight: 400;
	text-transform: none;
	padding-left: 1.75em;
	color: rgba(var(--mainColor), 1);
}
ul.sitemaplevel3 li a {
	padding-left: 3.25em;
}
ul.sitemaplevel4 li a {
	padding-left: 4.5em;
}
ul.sitemaplevel5 li a {
	padding-left: 5.75em;
}
ul.sitemaplevel6 li a {
	padding-left: 7em;
}
ul.sitemaplevel7 li a {
	padding-left: 8.25em;
}
ul.sitemaplevel8 li a {
	padding-left: 9.75em;
}
ul.sitemaplevel9 li a {
	padding-left: 11em;
}
code,
span.code {
	background-color: rgba(var(--mainColor), .05);
	padding: .1em .25em;
	border-radius: 3px;
	font: 500 .9em/1.25 monospace;
	color: rgba(var(--textColor), .8);
}
p.code,
div.code {
	background-color: rgba(var(--mainColor), .05);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px;
	padding: 1em 2em;
	clear: both;
	word-wrap: break-word;
	margin: 1em 0 !important;
	display: inline-block;
	text-align: left;
	width: 100% !important;
	font: 500 .9em/1.25 monospace;
	color: rgba(var(--textColor), .8);
}
p.code + p.imgCaption,
div.code + p.imgCaption {
	margin-top: -.5em !important;
}
blockquote {
	margin: 2em 0;
	background: rgba(var(--mainColor), .05);
	border-left: 15px solid rgba(var(--accentColor), .5);
	border-right: 15px solid rgba(var(--accentColor), .5);
	border-radius: 3px;
	padding: 1em 2em 1em calc(25% - 1em);
	position: relative;
	-webkit-hyphens: none;
	hyphens: none;
}
blockquote p {
	width: 100%;
	margin: 0 !important;
}
p.source {
	color: rgba(var(--accentColor), .9);
	font-style: italic;
	margin-bottom: 0 !important;
	text-align: right;
}
p.source:before {
	content: "— ";
	vertical-align: -20%;
}
blockquote a:link,
blockquote a:visited {
}
.submenDiv {
	clear: both;
	font-size: .9em;
	color: rgba(var(--mainColor), .75);
	margin: 3em 0 0 0;
	padding: .5em 0;
	border-top: 1px dotted rgba(var(--mainColor), 5);
}
.submenDiv:empty {
	display: none !important;
}
.submenDiv span {
	float: left;
	font-weight: 700;
}
.submenDiv ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}
.submenDiv ul li {
	margin-left: 1em;
	padding: 0 0 .25em 0;
}
.submenDiv ul li a {
	border: 0;
}
.prevNextP {
	clear: both;
	overflow: auto;
	margin: .5em 0;
}
.prevP {
	float: left;
	border-radius: 3px;
}
.nextP {
	float: right;
	border-radius: 3px;
}
.prevP a,
.nextP a {
	border: 0 !important;
	font-size: .75em;
	text-decoration: none;
	padding: .5em;
	color: rgba(var(--mainColor), 1);
	display: inline-block;
	line-height: 1;
}
.prevNextP a:hover,
.prevNextP a:focus {
	color: rgba(var(--accentColor), 1);
}
#newsboxes2 {
	clear: both;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 2em auto;
}
.news {
	margin: 1em 0;
	background: rgba(var(--mainBackgroundColor), .95);
	overflow: hidden;
	box-shadow: 0 0 15px 5px rgba(var(--mainColor), .05);
	border-radius: 3px;
}
.news p {
	margin: 1em 0 0 0 !important;
    width: 100% !important;
    text-align: left;
}
.news p:first-of-type {
	margin: 1em 0 0 0;
}
#newsboxes2 .news {
	width: 48%;
	font-size: 0.9em;
	padding: 1em 2em;
	line-height: 1.5;
}
.newsin {
	background: rgba(var(--mainBackgroundColor), .95);
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px;
	font-size: 0.9em;
	margin: 1em 0;
	padding: 1em;
}
.newsin:empty {
	display: none !important;
}
.news h1,
.news h2,
.news h3,
.news h4,
.news h5,
.news h6 {
	margin: .5em 0 0 0;
	font-weight: 500;
}
.news > h2:first-of-type {
	font-size: 1.25em;
	font-weight: 400;
	color: rgba(var(--mainBackgroundColor), 1);
	background: #804095;
	margin: -1em -2em 5px -2em;
	padding: 1em 2em;
	text-shadow: 1px 1px 1px rgba(var(--mainColor), 1);
	border-radius: 5px 5px 0 0;
	line-height: 1;
}
.news h2 {
	font-size: 1.4em;
	color: rgba(var(--mainColor), 1);
}
.news h3 {
	font-size: 1.3em;
}
.news h4 {
	font-size: 1.2em;
}
.news h5 {
	font-size: 1.1em;
}
.news h6 {
	font-size: 1.0em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: /*rgba(var(--textColor), .75)*/#804095;
	font-weight: 400;
	line-height: 1.25em;
	margin: 0 0 .25em 0;
        /*text-decoration: underline;*/
}
/*h2:hover{text-decoration: underline;}*/
.mhd{
    font-size:26px;
    background: linear-gradient(to right, #6e0d6e 0%, #d9bff2 100%);
    color: white;
    padding: 0px 3px 3px 3px;
    box-shadow: /*0px 10px 15px #c5c5c5*/ 1px 6px 2px #b8860b;
}
h1 {
	color: rgba(var(--accentColor), 1);
	font-size: 4.0em;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 .25em 0;
}
h2 {
	font-size: 2.0em;
}
h3 {
	font-size: 1.7em
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1.0em;
}
ol {
	text-align: left;
	padding: 0 0 0 2em;
	list-style: decimal;
	margin-bottom: 1em;
	orphans: 2;
	widows: 2;
}
ol ol {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: upper-alpha;
}
ol ol ol {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: lower-alpha;
}
ol li {
	margin: 0;
	padding: 0;
	orphans: 2;
	widows: 2;
}
ul.listUnordered,
ul.xh_search_results {
	text-align: left;
	list-style: none;
	margin: 1em 0;
}
ul.listUnordered:last-of-type {
	/* [disabled]margin: 1em 0 0 0; */
}
ul.listUnordered ul,
ul.xh_search_results ul {
	margin: 0;
	list-style: none;
	orphans: 2;
	widows: 2;
}
ul.listUnordered li,
ul.xh_search_results li {
	margin-left: 1em;
	orphans: 2;
	widows: 2;
}
ul.listUnordered li::before,
ul.xh_search_results li::before {
	content: '»';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
ul.listUnordered ul li:before {
	content: '›';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
ul.listUnordered ul ul li:before {
	content: '·';
	margin-left: -1em;
	width: 1em;
	display: inline-block;
}
#footer {
	background: /*rgba(var(--mainBackgroundColor), .9)*/#B8860B;
	padding: 1em;
	color: /*rgba(var(--textColor), 1)*/#ffffff;
	text-align: center;
	border-top: 1px solid rgba(var(--mainColor), .1);
	hyphens: none;
}
#footer p {
	margin: 0 auto !important;
	width: 100% !important;
	text-align: center;
}
#footer .moreLinks {
	text-transform: uppercase;
	font-size: 0.9em;
}
#footer .copyright {
	font-size: 0.8em;
}
#footer a {
	border: 0;
}
#footer a:hover,
#footer a:focus {
	background: rgba(var(--textColor), .05);
}
table.respTable {
	font-family: inherit !important;
	line-height: 1em;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 1em 0;
	-webkit-overflow-scrolling: touch;
	padding: 0 0 .5em 0;
	line-height: 1.25;
}
table.respTable caption {
	text-align: left;
	padding: 0 0 1em 0;
	font-family: system-ui, sans-serif;
	font-size: .9em;
	font-weight: 500;
}
.respTable thead th {
	font-family: system-ui, sans-serif;
	font-weight: 500;
	font-size: .9em;
	padding: .5em;
	text-align: left;
	background: rgba(var(--mainColor), .75);
	color: rgba(var(--mainBackgroundColor), 1);
	vertical-align: bottom;
	border: 1px solid rgba(var(--mainBackgroundColor), .75);
	border-top: 0;
	border-bottom: 0;
}
.respTable tbody th {
	padding: .5em;
	text-align: left;
	background: rgba(var(--mainColor), .5);
	color: rgba(var(--mainBackgroundColor), 1);
	font-weight: 500;
	font-size: 1em;
	vertical-align: bottom;
	border: 1px solid rgba(var(--mainBackgroundColor), .75);
	border-top: 0;
	border-bottom: 0;
}
.respTable td {
	padding: .5em;
	border: 1px solid rgba(var(--mainColor), .1);
	vertical-align: top;
}
.respTable td p {
	margin: 0;
}
.respTable tr:nth-child(even) {
	background: rgba(var(--mainColor), .1);
}
.respTable td:last-child {
	text-align: center;
}
@media only screen and (max-width: 1240px) {
#newsboxes2 {
	padding: 0 2em;
}
section.normalSection, div.submenDiv {
	padding: 2em;
}
}
@media only screen and (max-width: 980px) {
body {
	font-size: 17px;
}
section {
	padding: 4em 2em;
}
}
@media only screen and (max-width: 768px) {
body {
	font-size: 16px;
}
/*01*/
section.snippet01 {
	padding: 2em;
	background: #e4d2c0;
	background: linear-gradient(180deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
}
section.snippet01 .snippetContent {
	display: block;
}
section.snippet01 .snippetImg {
	width: 100%;
}
section.snippet01 .snippetText {
	width: 100%;
	padding: 0;
}
/*02*/
section.snippet02 {
	padding: 2em;
}
section.snippet02 .snippetContent {
	display: block;
}
section.snippet02 .snippetTextLeft {
	width: 100%;
	padding: 0;
}
section.snippet02 .snippetTextRight {
	width: 100%;
	padding: 2em;
	margin: 1em 0;
}
/*03*/
section.snippet03 {
	padding: 2em;
	background: #e4d2c0;
	background: linear-gradient(180deg, rgba(var(--secondBackgroundColor), 1) 67%, rgba(var(--mainBackgroundColor), 1) 67%);
}
section.snippet03 .snippetContent {
	display: block;
}
section.snippet03 .snippetImg {
	width: 100%;
}
section.snippet03 .snippetText {
	width: 100%;
	padding: 2em 0;
	text-align: left;
}
/*04*/
section.snippet04 {
	padding: 2em;
}
p.leadText {
	max-width: 100%;
}
/*05*/
section.snippet05 {
	padding: 2em;
	background: #e4d2c0;
	background: rgba(var(--secondBackgroundColor), 1);
}
section.snippet05 .snippetImg {
	width: 100%;
}
section.snippet05 .snippetText {
	box-shadow: 0;
	width: 100%;
	padding: 2em;
	margin: 0;
	position: relative;
	border-radius: 3px;
}
#newsboxes2 {
	display: block;
}
#newsboxes2 .news {
	width: 100%;
	margin: 1em 0 0;
}
}
@media only screen and (max-width : 640px) {
body {
	font-size: 15px;
}
.slogan {
	display: none !important;
}
}
@media only screen and (max-width : 480px) {
body {
	font-size: 14px;
}
p {
	text-align: left;
}
.headerTxt {
	display: none;
}
blockquote {
	padding: 1em;
}
}
#tinymce {
	background-color: rgba(var(--mainBackgroundColor), 1);
	background-image: none;
	-webkit-hyphens:auto;
	hyphens:auto;
	-webkit-font-smoothing: antialiased;
}
#xh_mailform div {
	width: 100%;
	margin: 0 0 .75em 0;
}
form.xh_mailform {
	padding: 1em 2em;
	background: rgba(var(--mainColor), .05);
	border-radius: 3px;
	border: 1px solid rgba(var(--mainColor), .1);
}
form.xh_mailform input,
form.xh_mailform textarea {
	font: 1em/1em system-ui, sans-serif;
	padding: .25em .5em;
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 3px;
}
form.xh_mailform input:focus,
form.xh_mailform textarea:focus {
	box-shadow: 0 0 0 2px rgba(var(--accentColor), 1);
	outline: none;
}
form.xh_mailform .xh_captcha_input {
	border: 1px solid rgba(var(--mainColor), .1);
	border-radius: 0 5px 5px 0;
	padding: .25em .5em !important;
	line-height: normal !important;
	text-align: center;
	width: 5em;
	margin: 1em 0 0 0;
}
form.xh_mailform .xh_captcha_code {
	background-color: rgba(var(--mainColor), .5);
	border: 1px solid rgba(var(--mainColor), .1);
	border-right: 0;
	border-radius: 5px 0 0 5px;
	color: rgba(var(--mainBackgroundColor), 1);
	float: left;
	padding: .25em .5em;
	line-height: normal !important;
	width: 5em;
	text-align: center;
	margin: 1em 0 0 0;
}
form.xh_mailform p {
	margin: 0 1em 0 0 !important;
	padding: 1em 0 0 0;
}
form.xh_mailform input[type="submit"] {
	font-family: system-ui, sans-serif;
	background-color: rgba(var(--mainColor), .75);
	padding: .25em .5em;
	border: 1px solid rgba(var(--mainColor), .25);
	margin: 1em 0 0 0;
	color: rgba(var(--mainBackgroundColor), 1);
	cursor: pointer;
	font-size: 1.1em;
	line-height: 1;
}
form.xh_mailform input[type=submit]:hover,
form.xh_mailform input[type=submit]:focus {
	background-color: rgba(var(--accentColor), 1);
	border: 1px solid rgba(var(--mainColor), .25);
}
body.xh_login {
	background: rgba(var(--mainColor), .1) url(images/XH-Logo_bg.png) no-repeat fixed center center;
	background-size: contain;
	margin: 0 !important;
	padding: 0 !important;
}
body.xh_login div.xh_login {
	border: 1px solid rgba(var(--mainColor), .1);
	box-shadow: inset 2px 2px 1px rgba(var(--mainBackgroundColor), .75), inset -2px -2px 1px rgba(var(--mainColor), .1);
	background: rgba(var(--mainBackgroundColor), .25);
	border-radius: 0;
	margin: 0;
	padding: 1em;
	position: absolute;
	left: 50%;
	top: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
}
body.xh_login h1 {
	margin: 0 0 .25em 0 !important;
	text-align: center !important;
	text-transform: none;
	color: rgba(var(--mainColor), 1);
	font-size: 2em;
	font-style: normal;
	line-height: 1.25;
	font-weight: normal;
	font-variant: normal;
}
div.xh_login p {
	text-align: center !important;
	margin: 1em 0 !important;
	color: rgba(var(--textColor), 1);
}
a.noArrow::after {
	content: '';
}
/***/
button.yp-video_play_button {
    width: 100%;
    height: 100%;
    background: url(../../plugins/youtube_privacy/css/../images/yt_play_buttom_grey.svg) no-repeat center center;
    background-size: 68px 48px;
    padding: 0;
    margin: 0;
    border: 0;
}
section.snippet07 {
    background: #e4d2c0;
    background: linear-gradient(
-90deg, rgba(var(--secondBackgroundColor), 1) 33%, rgba(var(--mainBackgroundColor), 1) 33%);
}
section.snippet07 .snippetText {
    width: 61.8%;
    padding: 0 0 0 0em;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
p img{border-radius:0%!important;    /*box-shadow: -2px -1px 4px #f0effb;*/
}


.fix{position:sticky;top:180px;display: inline-block;    z-index: 9999;}    
.fix li a {
    display: inline-block;
    width: 212px;
    background-color: #804095;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    border: 1px solid #FFF1A9;
    border-radius: 2px;
}
.divi{
border-right:3px solid #652B7C; 
margin:0px 10px 0px 10px;
}
#flex {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
}
.item1 {
    width: 29%;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.item {
  width: 29%;
/*text-align: center;*/
padding:10px;
/*float:left;*/
display: flex;
justify-content: flex-start;

}
.item1 {
  width: 29%;
padding:10px;
display: flex;
justify-content: center;
}
.item2 {
  width: 29.00%;
padding:10px;
display: flex;
justify-content: flex-end;
}
.menutop{background-color: #652b7c!important;    display: block;    position: relative;    /*z-index: 555555;*/    width: 100%;    margin-top: 120px;}

@media only screen and (max-width: 1249px) and (min-width: 983px) {
.menutop{margin-top:220px;}
}
@media only screen and (max-width: 1099px) and (min-width: 950px) {

}
@media only screen and (max-width: 949px) and (min-width: 880px) {

}
@media only screen and (max-width: 899px) and (min-width: 740px) {

}
@media screen and (max-width: 982px) {
.menutop{margin-top:220px;}
}


@media screen and (max-width: 759px) {
.item{width:100%; justify-content: center;}
.item1{width:100%; justify-content: center;}
.item2{width:0%; justify-content: center; padding:0px;}
.menutop{margin-top:240px;}
}
@media screen and (max-width: 379px) {
.menutop{margin-top:340px;}
}

tbody, td, tfoot, th, thead, tr{
border: 1px solid black;
padding:1px 10px 1px 10px;
}
.navbar-dark .navbar-nav .nav-link {
    color: white;
    font-size:16px;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: /*#B8860B*/gold;
}
.ps{padding: 1em 5em 1em 5em;}
.shd{
    font-size:16px;
    background: linear-gradient(to right, #6e0d6e 0%, #d9bff2 100%);
    color: white;
    padding: 3px 3px 3px 3px;
    box-shadow: 0px 10px 15px #c5c5c5;
    margin-left:27px;
    width:250px;
}
tr:nth-child(odd) {
            background-color: #FFFFFF;
            /*color: white!important;*/
        }
tr:nth-child(even) {
            background-color: #E7E9EB;
           
        }

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0rem;
    padding-bottom: 0rem;
    border-top:3px solid #B8860B;
    border-bottom:3px solid #B8860B;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: /*#212529;*/#ffffff;
    text-align: left;
    list-style: none;
    background-color: #B8860B;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: white;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.100year {
  animation: color-change 1s infinite;
}

@keyframes color-change {
  0% { color: #ffffff; }
  50% { color: #B8860B; }
  100% { color: yellow; }
}
.bdr{
    border-top: 10px solid #FAEEFF;
    border-right: 10px solid #F1CAFF;
    border-left: 10px solid #F1CAFF;
    border-bottom: 10px solid #FAEEFF;
}
/**news css**/
/* Entry div. */
.news-entry {
	margin: 1em auto 2em;
  display: table;
  width: 100%;
}
/* Entry's title div. */
.news-entry-title {
	font-weight: bold;
	font-size: 12pt;
	padding: 5px 0;
	margin-bottom: .5em;
	border-bottom: 1px solid #777;
}
.newsXH-link {
  color: blue;
  cursor: pointer;
}
/* Entry's date span (in title). */
.news-entry-title-date {
	float: right;
	font-style: italic;
	font-weight: normal;
	font-size: 10pt;
}
/* Entry's short description div. */
.news-entry-short {
	
}
/* Entry's description div. */
.news-entry-description {
	
}
/* Entry's link div. */
.news-entry-link {
	display: block;
}

/* News archive div. */
.news-archive {
	width: 100%;
	padding: 15px 0;
}
/* News archive header. */
.news-archive-header {
	font-size: 16pt;
	margin-bottom: 1em;
	font-weight: bold;
}

.news-archive-navi {
  background: #652B7C;
  font-size: 11pt;
  margin-bottom: 1em;
  text-align: center;
  padding: 4px 0;
}

.news-archive-navi > span {
    background: #ffffff;
    border: 1px solid #999;
}

/* News archive footer. */
table.news-archive-footer {
	width: 100%;
}

/**
 * 	Newsticker.
 */
.newsticker {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.newsticker > figure {
  box-sizing: border-box;
  background: #eee;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 5px 10px;
  position: absolute;
  width:100%;
  height:auto;
  z-index:-1;
}
.newsticker-entry-date {
  display: block;
  padding: 0px 0px 5px 0;
}

/* Newsslider driver. */
/* Main window containing the ul (not the controls and pager). */
.bx-window {
	
}

/* Main li with entry content. */
.newsslider li::before {content: inherit !important;}
.newsslider-entry, .bx-window li {
	padding: 10px;
}

.newsslider-entry-title {
	font-weight: bold;
	font-size: 12pt;
}

.newsslider-entry-title-date {
	font-size: 10pt;
	font-style: italic;
	font-weight: normal;
	margin-left: 2em;
}

.newsslider-entry-description {
	
}

.newsslider-entry-date {
	
}

/**
 * 	Blockquotes.
 */
.newsblock-entry {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
	background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  margin: 0 0 1.2em;
  overflow: hidden;
  text-align: left;
}
.newsblock-flexin {
  padding: 5px 20px;
}
.newsblock-flexin:nth-child(1) {
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.newsblock-flexin:nth-child(2) {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.newsblock-flexin .newsblockbtn {
  background-color: #0094de;
  cursor: pointer;
  border: medium none;
  border-radius: 5px;
  padding: 10px 20px;
  color: white;
  display: block;
  font-size: 1.2em;
  margin: 0 auto;
  max-width: 280px;
  text-align: center;
  text-transform: uppercase;
}
.newsblock-flexin .newsblockbtn:hover {
    background-color: red;
    color: white;
}
.newsblock-entry-short {
	margin: 0;
}
.newsblock-entry-title {
  color: #0094de;
  font-size: 14pt;
}
.newsblock-entry-short p {
	font-size: 12px;
}
.newsblock-entry-date {
  float: right;
	font-style: italic;
	font-weight: normal;
	font-size: 10pt;
  padding: 0 0 0 10px;
}

/**
 * Newsscroller.
 */
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.newsscroller {
  overflow: hidden;
  width: 100%;
}
.newsscroller-wrap {
  box-sizing: content-box;
  margin: 0; 
  padding: 0;
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
}
.newsscroller-wrapin {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}
.newsscroller_item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.2rem;
}
.newsscroller-wrapin:hover { animation-play-state: paused }

/*
 * Backend style.
 * No changes needed.
 */

.news-head {
	margin-bottom: .5em;
}
.news-submit {
  font: normal 14px/normal system-ui, sans-serif;
  margin: 5px 2px;
  padding: 5px 20px;
  text-transform: none;
  color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  height: auto;
  cursor: pointer;
  height: auto;
  box-sizing: border-box;
  background : #7B7D82;
  background : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7B7D82), color-stop(100%,#00060a));
  background : -moz-linear-gradient(top, #7B7D82 0%, #00060a 100%);
  background : -webkit-linear-gradient(top, #7B7D82 0%, #00060a 100%);
  background : -o-linear-gradient(top, #7B7D82 0%, #00060a 100%);
  background : -ms-linear-gradient(top, #7B7D82 0%, #00060a 100%);
  background : linear-gradient(top, #7B7D82 0%, #00060a 100%);
}
.news-submit:hover {
  background: #999;
  background : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00060a), color-stop(100%,#7B7D82));
  background : -moz-linear-gradient(top, #00060a 0%, #7B7D82 100%);
  background : -webkit-linear-gradient(top, #00060a 0%, #7B7D82 100%);
  background : -o-linear-gradient(top, #00060a 0%, #7B7D82 100%);
  background : -ms-linear-gradient(top, #00060a 0%, #7B7D82 100%);
  background : linear-gradient(top, #00060a 0%, #7B7D82 100%);
}
.news-submit:active {
	position:relative;
	top:1px;
}
.news-small {
	font-size: 80%;
}
.news-error, .news-success, .news-help, .news-notice {
	padding: .8em .8em .8em 2.6em;
	margin-top: .5em;
	margin-bottom: .5em;
	border: 2px solid #ddd;
}
.news-error {
	color:#8a1f11;
	border-color:#FBC2C4;
	background: #FBE3E4 url('../images/error.png') scroll no-repeat .8em .8em;
}
.news-success {
	color:#264409;
	border-color:#C6D880;
	background: #E6EFC2 url('../images/success.png') scroll no-repeat .8em .8em;
}
.news-help {
	color: #3E6DB1;
	border-color: #3E6DB1;
	background: #BDCDE3 url('../images/help.png') scroll no-repeat .8em .8em;
}
.news-notice {
	background:#FFF6BF;
	color:#514721;
	border-color:#FFD324;
}
table.news-help {
	color: #3E6DB1;
	border-color: #3E6DB1;
	background-image: none;
}
.news-select {
	width: 30%;
	min-width: 80px;
}
.news-editor-short {
	max-height: 120px;
}
.news-collapsed {
	background-image: url(../images/collapsed.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	padding-left: 20px;
}
.news-shown {
	background-image: url(../images/shown.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	padding-left: 20px;
}
.news-input-title {
	max-width: 90%;
	width: 90%;
}
.newscase-entry {
	/*line-height: 10px;*/
	margin: 8px 0 0;
	padding: 5px 10px;
}
.newscase-entry-title {
	
}
.newscase-entry-title-date {
	float: right;
}
.newscase-entry-short {
	font-size: 10px;
}
.newscase-entry-short p {
	margin: 3px 0;
}
table.news-table {
  font-family: arial, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  border: 1px solid;
  margin: 2px 0;
  border-spacing: 0;
}
table.news-table td {
  padding: 4px 6px;
}
table.news-table textarea, table.news-table input, table.news-table select {
  padding: 0.2em 0.3em;
}
table.news-table textarea {
  min-width: 90%;
  height: auto;
}

/*ul li::before {
  content: "\2022";
  color: gold;
  margin-left: -1em;
  width: 1em;
  display: inline-block; 
}*/
li::marker{color: #B8860B;}
.shd1{
    font-size:16px;
    background: linear-gradient(to right, #6e0d6e 0%, #d9bff2 100%);
    color: white;
    padding: 3px 3px 3px 3px;
    box-shadow: 0px 10px 15px #c5c5c5;
    margin-left:0px;
    width:250px;
}
.flex-direction-nav .flex-prev { left: 0px;}
.flex-direction-nav .flex-next { right: 0px;}


