/*
CODE        : Frank Siebenhaar for MusicTrace 
LAST CHANGE : 23.09.05 sbn at musictrace.de

Basis Screen Style Sheet for Members Area
*/

/* <![CDATA[ */

/* font */

/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-sans-v3-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Regular'), local('NunitoSans-Regular'),
       url('../fonts/nunito-sans-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v3-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-italic - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/nunito-sans-v3-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Italic'), local('NunitoSans-Italic'),
       url('../fonts/nunito-sans-v3-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v3-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v3-latin-italic.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-700 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nunito-sans-v3-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Bold'), local('NunitoSans-Bold'),
       url('../fonts/nunito-sans-v3-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v3-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v3-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-700italic - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/nunito-sans-v3-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Bold Italic'), local('NunitoSans-BoldItalic'),
       url('../fonts/nunito-sans-v3-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v3-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v3-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v3-latin-700italic.svg#NunitoSans') format('svg'); /* Legacy iOS */
}


/* Nunito  */
* {
  font-family: "Nunito Sans", Arial, Verdana, sans-serif;
}


body {
 background: #0C5C92 url(/images/background_top.gif) repeat-x fixed top left;
 /* font-family:  Arial, Verdana, sans-serif; */
 font-size: 80%; 
 /* font-size: 75%; */
 margin: 0;
 padding: 10px;
}

body a {
 color: #0c5C92;
 text-decoration: none;
}

body a:hover {
 color: #87B5D5;
}

.pagewrapper {
  box-sizing: border-box;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 100%;
  /* width: max-content; */
}

.header, .footer, .main-container {
  box-sizing: border-box;
  /* width: auto;
  min-width: 100%; */
  max-width: 100%;
}

.header {
 padding: 1em 1em 0.5em 1em;
 border: 2px solid #000;
 border-bottom: 0;
 border-radius: 10px 10px 0 0;
 background: #E0E0E0;
 background-image: url(/images/border_top_center.gif); 
 background-position: top;
 background-repeat: repeat-x;
}

#headerCompanyName { 
 margin-top: 10px;
 vertical-align: middle;
 float: left;
}

#headerCompanyLogo { 
 margin-top: 10px;
 vertical-align: middle;
 float: right;
}

.footer {
 clear: both;
 padding: 0.5em 1em 1em 1em;
 border: 2px solid #000;
 border-top: 0;
 border-radius: 0 0 10px 10px;
 background: #E0E0E0;
 background-image: url(/images/border_bottom_center.gif);
 background-position: bottom;
 background-repeat: repeat-x;
 font-size: 120%;
 font-weight: bold5
 color: #6F6F6F;
 text-align: center;
}

.main-container {
 clear: both;
 display: flex;
 flex-wrap: nowrap;
 flex-direction: row;
 background: #DDE6EE;
 border-left: 2px solid #000;
 border-right: 2px solid #000;
}

/* Hauptinhalt */
.content {
 flex: 1;
 background: #DDE6EE;
 order: 1;
 width: calc(100% - 14em);
}

/* Sidebar */
.sidebar {
 background: #87B5D5;
 color: #fff;
 width: 14em;
 min-height: 60vh;
 flex-shrink: 0;
 order: 0;
}


/* for Screenreader */
@media speech {
 .main-container {
   flex-direction: column;
 }
 .sidebar {
   order: 3;
 }
}

#loginContainer {
 margin: 5px;
 padding: 5px;
 background-color: #86877D; /*#A5A6A6;*/
 border-top: 3px double #000000;
 border-right: 3px solid #000000;
 border-bottom: 3px solid #000000;
 border-left: 3px double #000000;
 color: #FFF;
}

#loginContainer label { 
 text-align: left;
}

#loginContainer .submit  {
 padding: 1px;
 background-color: #0C5C92;
 border-top: 4px double #000000;
 border-right: 4px solid #000000;
 border-bottom: 4px solid #000000;
 border-left: 4px double #000000;
 color: #FFF;
}

#note {
 margin: 15px 5px;
 padding: 5px;
 background-color: #F3C600;
 border-top: 3px double #000000;
 border-right: 3px solid #000000;
 border-bottom: 3px solid #000000;
 border-left: 3px double #000000;
 color: #000;
 font-size: 120%;
 font-weight: bold;
}

#importantNote { 
 margin: 15px 5px;
 border-top: 3px double #0C5C92;
 border-right: 3px solid #0C5C92;
 border-bottom: 3px solid #0C5C92;
 border-left: 3px double #0C5C92;
 padding: 5px;
 background-color: #F0F0F0;
 color: #0C5C92;
}

*html #importantNote {
 width: 100%;
}

#xmasNote { 
 margin: 15px 0px;
 border-top: 3px double #a01700;
 border-right: 3px solid #a01700;
 border-bottom: 3px solid #a01700;
 border-left: 3px double #a01700;
 padding: 5px;
 background-color: #430702;
 color: #fff955;
}

*html #xmasNote {
 width: 100%;
}

#breadCrumbs {
 margin: 5px 5px;
 padding: 5px;
 background-color: #E0E0E0;
 border-top: 3px solid #000000;
 border-right: 3px double #000000;
 border-bottom: 3px double #000000;
 border-left: 3px solid #000000;
 color: #6F6F6F;
 font-size: 80%;
 font-weight: bold;
}

#breadCrumbs a {
 color: #0C5C92;
}

#content {
 margin: 10px 5px;
}

#content h1, #content h2, #content h3, #content h4 {
 padding: 5px 0px;
 color: #79A1BE; /*#87B5D5;*/ /* #0C5C92; */
}

#fastNavigationContainer { 
 clear: both;
 margin: 20px 5px 10px 5px;
 padding: 5px 0px 0px 0px;
 border-top: 3px double #000000;
}


.fastNavigation { 
}

.fastNavigation a {
 font-weight: bold;
 color: #000;
 text-decoration: none;
}

.fastNavigation a:hover {
 color: #0c5C92;
}


#leftContainer {
 float: left;
 text-align: center;
 margin: 0px 1px 0px -14em;
 width: 14em;
 height: auto;
 z-index: 4;
}

#menuContainer {
 background-color: #0C5C92;
 text-align: left;
 margin: 0.35em;
 padding: 2px;
 border: 2px solid #000;
 width: auto;
 color: #FFF;
}

#menuTitle {
 width: auto;
 margin: 2px;
 padding-bottom: 5px;
 font-size: 135%;
 font-weight: bold;
}

.menuSeperator { 
 margin:  -2px 0px 0px 0px;
 padding: 1px;
 border: 2px solid #000;
 width: auto;
 background-color: #87B5D5;
 color: #FFF;
} 

.menuActiveLink {  
 width: auto;
 margin: -2px 0px 0 0px;
 border: 2px solid #000;
 padding: 0 3px;
 background: #F3C600;  /* #87B5D5; */
}

.menuMainEntryNormal, .menuMainEntryNewNormal, .menuMainEntryHintNormal, .menuSub1EntryNormal, .menuSub2EntryNormal, .menuMainEntryAktiv, .menuSub1EntryAktiv, .menuSub2EntryAktiv {  
 width: auto;
 margin: -2px 0px -2px 0px;
 border: 2px solid #000;
 font-weight: bold;
}

.menuMainEntryNormal a, .menuSub1EntryNormal a, .menuSub2EntryNormal a { 
 display: block;
 background: #86877D; /*#A5A6A6;*/
 color: #FFF;
}

.menuMainEntryNewNormal a  { 
 display: block;
 background:  #86877D; /*#A5A6A6;*/
 color: #FCF800;
}

.menuMainEntryHintNormal a  { 
 display: block;
 background: #CDCDCD; /*#A5A6A6;*/
 color: #FF3300;
}

.menuMainEntryNormal a, .menuMainEntryNewNormal a, .menuMainEntryHintNormal a {
 font-size: 110%;
 padding: 3px 3px 3px 3px;
}

.menuSub1EntryNormal a {
 font-size: 100%;
 padding: 3px 3px 3px 3px;
}

.menuSub2EntryNormal a {
 font-size: 100%;
 padding: 3px 3px 3px 13px;
}

* html .menuMainEntryNormal a, * html .menuMainEntryNewNormal a, * html .menuMainEntryHintNormal a {
 width: 100%;
}

* html .menuSub1EntryNormal a {
 width: 100%;
}

* html .menuSub2EntryNormal a {
 width: 100%;
}

.menuMainEntryNormal a:hover, .menuSub1EntryNormal a:hover, .menuSub2EntryNormal a:hover { 
 background: #F5F7FB; /*#E0E0E0;*/
 color: #0C5C92;
}

.menuMainEntryNewNormal a:hover { 
 background: #f3f7ab; /*#E0E0E0;*/
 color: #0C5C92;
}

.menuMainEntryHintNormal a:hover { 
 background: #f3f7ab; /*#E0E0E0;*/
 color: #0C5C92;
}

.menuMainEntryAktiv a, .menuSub1EntryAktiv a, .menuSub2EntryAktiv a {
 display: block;
 background: #DDE6EE;
 color: #0C5C92;
}

.menuMainEntryAktiv a {
 font-size: 110%;
 padding: 3px 3px 3px 3px;
}

.menuMainNewEntryAktiv a, .menuMainHintEntryAktiv a {
 font-size: 110%;
 padding: 3px 3px 3px 3px;
}

.menuSub1EntryAktiv a {
 font-size: 100%;
 padding: 3px 3px 3px 3px;
}

.menuSub2EntryAktiv a {
 font-size: 100%;
 padding: 3px 3px 3px 13px;
}

* html .menuMainEntryAktiv a {
 width: 100%;
}

* html .menuSub1EntryAktiv a {
 width: 100%;
}

* html .menuSub2EntryAktiv a {
 width: 100%;
}

#menuMainEnd {
 margin: -2px 0px 0 0px;
 border-top: 2px solid #000;

}

.languageSelection { 
 margin: 5px;
}

.languageSelection .submit {  
 border: 1px solid #000;
 color: #ff3300;
 margin: 1px 2px;
 padding: 1px;
 font-size: 90%;
 background: #e0e0e0 url(/images/languageChangeButton_normal.gif) repeat-x top left;
}

.languageSelection .submit:hover {
 background: #dde6ee url(/images/languageChangeButton_hover.gif) repeat-x top left;
} 

.menu2NewsSpacerContainer {
 margin: 0.35em;
 padding: 1px;
 border: 2px solid #000;
 width: auto;
 background-color: #F3C600;
 color: #FFF;
}

#rightContainer {
 float: right;
 width: 14em;
 margin: 0px -14em 0px 1px;
 z-index: 2;
}

.newsContainer {
 background-color: #0C5C92;
 text-align: left;
 margin: 0.35em;
 padding: 2px;
 border: 2px solid #000;
 width: auto;
 color: #FFF;
}

#newsTitle {
 width: auto;
 margin: 2px;
 padding-bottom: 5px;
 font-size: 135%;
 font-weight: bold;
}

.newsEntry {
 width: auto;
 margin: 5px 0px 0 0px;
 border: 2px solid #000;
 padding: 3px 3px 3px 3px;
 background: #86877D; /*#A5A6A6;*/
}

.newsEntry a {
 color: #DDE6EE;
 text-decoration: none;
}

.newsEntry a:hover {
 color: #F3C600;
}

.newsEntryTitle {  
 font-weight: bold;
}

.newsEntryText {  

}

#didYouKnowTitle {
 width: auto;
 margin: 2px;
 padding-bottom: 5px;
 font-size: 135%;
 font-weight: bold;
 color: #F3C600;
}

.selectionForm fieldset {
 color: #0C5C92;
 font-weight: bold;
 border: solid 1px  #0C5C92;
 background-color: #E0E0E0;
 margin: 10px 0px;
 padding: 5px;
}

.selectionForm fieldset fieldset {
 background-color: #F0F0F0;
 margin: 0 0 5px 0;
}

.selectionForm select { 
 font-size: 100%;
}

.selectionForm .submit  {
 padding: 1px;
 background-color: #F0F0F0;
 border-top: 4px double #0C5C92;
 border-right: 4px solid #0C5C92;
 border-bottom: 4px solid #0C5C92;
 border-left: 4px double #0C5C92;
 color: #0C5C92; 
 font-size: 100%;
 font-weight: bold;
}

.submit  {
 padding: 1px;
 background-color: #F0F0F0;
 border-top: 4px double #0C5C92;
 border-right: 4px solid #0C5C92;
 border-bottom: 4px solid #0C5C92;
 border-left: 4px double #0C5C92;
 color: #0C5C92; 
 font-size: 100%;
 font-weight: bold;
}

.selectionForm .submitSelectorActive {
 margin: 1px 0; 
 padding: 1px;
 background-color: #E0E0E0;
 border-top: 3px solid #0C5C92;
 border-right: 3px double #0C5C92;
 border-bottom: 3px double #0C5C92;
 border-left: 3px solid #0C5C92;
 color: #0C5C92;
 font-weight: bold;
 font-size: 100%;
 width: 100%;
}

.selectionForm .submitSelectorInactive {
 margin: 1px 0; 
 padding: 1px;
 background-color: #F0F0F0;
 border-top: 3px double #0C5C92;
 border-right: 3px solid #0C5C92;
 border-bottom: 3px solid #0C5C92;
 border-left: 3px double #0C5C92;
 color: #0C5C92;
 font-weight: bold;
 font-size: 100%;
 width: 100%;
}

.selectionForm .submitSmall {
 padding: 1px;
 background-color: #F0F0F0;
 border-top: 3px double #0C5C92;
 border-right: 3px solid #0C5C92;
 border-bottom: 3px solid #0C5C92;
 border-left: 3px double #0C5C92;
 color: #0C5C92;
 font-weight: bold;
 font-size: 100%;
}

.submitSmall {
 padding: 1px;
 background-color: #F0F0F0;
 border-top: 3px double #0C5C92;
 border-right: 3px solid #0C5C92;
 border-bottom: 3px solid #0C5C92;
 border-left: 3px double #0C5C92;
 color: #0C5C92;
 font-weight: bold;
 font-size: 100%;
}

/* for microsoft IE 10 and up */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  details {
    display: block;
  }

  summary {
    display: block;
  }
}

/* for microsoft edge */
@supports (-ms-ime-align:auto) {
  details {
    display: block;
  }

  summary {
    display: block;
  }
}

details
{ 
 margin: 10px 0;
}

details summary {
 background: #FFF;
 border-radius: 5px;
 margin: 5px 0;
 padding: 5px 5px;
 outline: none;
}

.summaryH3 { 
 color: #79A1BE;
 font-weight: bold;
 font-size: 125%; 
}

.resultCaption {
 margin: 15px 0px 15px 0px;
 caption-side: top;
 color: #0C5C92;
 font-size: 100%;
 font-weight: bold;
} 

.results {  
 clear: both; 
 width: auto;
}

#resultsTableContainer { 
 float: left;
 margin-right: 75px;
 margin-bottom: 10px;
}

#resultsPieChartContainer { 
 float: left;
}

.resultTable { 
 display: table;
 table-layout: fixed;
 width: auto; 
 border-spacing: 0px 0px;
}

/* new */
/*
#resultTable tbody{ 
 height: 100px;
 overflow-y: auto;
}
*/
/* new */

.resultTable table{
 border-collapse: collapse;
 font-size: 100%;
}

.resultTable caption {
 margin: 0px 0px 5px 0px;
 caption-side: top;
 color: #0C5C92;
 font-weight: bold;
} 

.resultTable th { 
 background-color: #0C5C92;
 color: #FFF;
 font-weight: bold;
}

.resultTable .tableFooter { 
 background-color: #87B5D5;
 color: #000;
 font-weight: normal;
 font-size: 85%;
}

.resultTable tbody tr:hover {
 background: #BFD9FF; 
}

.resultTable th, .resultTable td {
 padding: 1px 5px;
 border: 1px solid black;
}

.resultTable .tableEvenRow {
 background-color: #E0E0E0;
 color: #000;
}

.resultTable .tableOddRow {
 background-color: #F0F0F0;
 color: #000;
}

.resultTable .highestClimber {
 background-color: #99FF99;
 color: #000;
}

.resultTable .highestClimberCompanyCharts {
 background-color: #FFEC8B;
 color: #000;
}

.resultTable .tableSummaryRow {
 background-color: #87B5D5;
 color: #000;
 font-weight: bold; 
}

.resultTable .tableSummaryColumn {
 background-color: #0C5C92;
 color: #FFF;
}

.resultTable .noTrendWeek { 
 text-align: right;
}

.resultTable .trendWeek { 
 text-align: right;
 color: #0C5C92;
 font-weight: bold; 
}

.resultTable .noData {  
 background-color: #86877D;
}

.resultTable .tableChartPos {
 text-align: right;
 font-weight: bold;
 color: #000;
}

.resultTable .submit  {
 margin: 1px;
 padding: 1px;
 background-color: #FFF;
 /* background: transparent; */
 border-top: 3px double #333333;
 border-right: 3px solid #666666;
 border-bottom: 3px solid #666666;
 border-left: 3px double #333333;
 color: #000;
 font-size: 75%;
}

.resultTable .submit_big  {
 margin: 1px;
 padding: 1px;
/* width: 100%;*/
/* height: 100%;*/
 background-color: #FFF;
 /* background: transparent; */
 border-top: 3px double #333333;
 border-right: 3px solid #666666;
 border-bottom: 3px solid #666666;
 border-left: 3px double #333333;
 color: #000;
 font-size: 100%;
}

#legend { 
 float: left;
 margin: 5px 0px;
 border: 3px double black;
 width: auto; 
 background-color: #F0F0F0;
}

#legendTitle { 
 margin: 5px;
 width: auto; 
 color: #0C5C92;
 font-weight: bold; 
}

.legendEntry { 
 clear: both;
 margin: 5px;
 width: auto; 
}

#legendEntryBox { 
 float: left;
 border: .1em solid #000;
 width: 5em;
 height: 1.0em;
}

.legendEntryLabel { 
 float: left;
 width: 5.1em;
 height: 1.5em;
 color: #000;
 font-weight: bold; 
}

.legendEntryText { 
 float: left;
 width: auto;
 height: 1.5em;
 margin-left: 10px;
 color: #000;
}

.top100OverviewLC {
 clear: both;
 width: 15.5em;
}

.top100OverviewLCLeft {
 float: left;
 width: 3.6em;
 text-align: left;
}

.top100OverviewLCRight {
 margin-left: 3.7em;
 width: 11.65em;
 text-align: left;
}

.top100OverviewRC {
 clear: both;
}

.top100OverviewRCEntry {
 float: left;
 text-align: right;
 width: 5em;
}

/* *********** */
/*    Boxes    */
/* *********** */

.boxContainer {  
  margin-top: 1.3em;
  padding: 0;
  width: 100%;
}

.boxContainerTopLeft {
  float: left;
  background: url(/images/box_corners_top_left.gif); 
  width: 6px;
  height: 6px;
  overflow: hidden;
}

.boxContainerTopMiddle {
  margin-right: 6px;
  padding: 0;
  background: url(/images/box_corners_top_center.gif); 
  background-repeat: repeat-x;
  width: auto;
  height: 6px;
  overflow: hidden;
} 

.boxContainerTopRight {
  margin-top: -6px;
  float: right;
  background: url(/images/box_corners_top_right.gif); 
  width: 6px;
  height: 6px;
  overflow: hidden;
}

.boxContainerBottomLeft {
  float: left;
  background: url(/images/box_corners_bottom_left.gif); 
  width: 6px;
  height: 6px;
  overflow: hidden;
}

.boxContainerBottomMiddle {
  margin-right: 6px;
  background: url(/images/box_corners_bottom_center.gif); 
  background-repeat: repeat-x;
  width: auto;
  height: 6px;
  overflow: hidden;
} 

.boxContainerBottomRight {
  margin-top: -6px; 
  float: right;
  background: url(/images/box_corners_bottom_right.gif); 
  width: 6px;
  height: 6px;
  overflow: hidden;
}

* html .boxContainerTopLeft, * html .boxContainerBottomLeft {
  margin-right: -3px;
}

* html .boxContainerTopRight, * html .boxContainerBottomRight {
 margin-left: -3px;
}


.boxContainerCaption { 
  margin: 0;
  border-right: 2px solid #0C5C92;
  border-bottom: 1px solid #0C5C92;
  border-left: 2px solid #0C5C92;
  padding: 1px 6px 6px 6px;
  background: #87B5D5;
}

.boxContainerCaption h3 {
  margin: 0;
  padding: 0;
  color: #FFF !important;  
}

.boxContainerContent {
  margin: 0; 
  border-right: 2px solid #0C5C92;
  border-left: 2px solid #0C5C92;
  padding: 6px 6px 1px 6px;
  background: #F8FFFF;
}

.boxContainerContent h3, .boxContainerContent h4{
  margin-bottom: 0;
} 

.boxContainer ul { 
  margin-top: 0;
}


.itemlist dt { 
  float: left;
  width: 13em;
  font-weight: bold;   
}

.itemlist dd { 
  float: left;
  margin-left: 1em;
  margin-right: 6em;
  width: 7.75em; 
  text-align: right;
}

.itemlist br {  
  clear: left;
}


form { 
  margin: 0;
  padding: 0;
}

.formClickButton {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.formClickButton li {  
  margin: 1px 2em 1px 0;
}

.formClickButtonInactive {  
  padding: 1px 1px 1px 16px;
  background-image: url(/images/entry_selector_inactive.gif);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-color: #F0F0F0;
  border-top: 3px double #0C5C92;
  border-right: 3px solid #0C5C92;
  border-bottom: 3px solid #0C5C92;
  border-left: 3px double #0C5C92;
  color: #0C5C92;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  width: 100%;
}

.formClickButtonActive { 
  padding: 1px 1px 1px 16px;
  background-image: url(/images/entry_selector_active.gif);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-color: #E0E0E0;
  border-top: 3px solid #0C5C92;
  border-right: 3px double #0C5C92;
  border-bottom: 3px double #0C5C92;
  border-left: 3px solid #0C5C92;
  color: #0C5C92;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  width: 100%;
}


.chartList {
 counter-reset: item;
 list-style-type: none;
/* list-style-position: outside; */
 margin: 0;
 padding: 0;
}

.chartList li {
 display: block;
 font-size: 175%;
 font-weight: bold;
 padding: 2px 5px;
}

.chartList li:before {
 content: counter(item) "  ";
 counter-increment: item;
}

.chartList li div {
 display: inline-block;
 vertical-align: middle;
 padding-left: 5px;
 font-size: 60%;
 font-weight: normal;
 width: 18em;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;  /* IE 6+, FF 7+, Op 11+, Saf 1.3+, Chr 1+ */
 -o-text-overflow: ellipsis;  /* for Opera 9 & 10 */
}

.chartList li:nth-child(even) {
 background-color: #E0E0E0;
}

.chartList li:nth-child(odd) {
 background-color: #F0F0F0;
}

.chartList li:hover {
 background: #BFD9FF;
}


.dataTableCaption {
 margin: 0px 0px 5px 0px;
 color: #0C5C92;
 font-weight: bold;
} 

.dataTableSubCaption {
 margin: 0px 0px 5px 0px;
 color: #000;
} 

.dataTable { 
 display: table;
 /* table-layout: fixed; */
 margin: 0;
 border-spacing: 0px 0px;
 border-collapse: collapse;
 padding: 0;
 width: auto;
 font-size: 100%;
}

.dataTable .multipleTableCaption{ 
 padding: 15px 0 5px 0;
 color: #0C5C92;
 font-weight: bold
}

.dataTable .multipleTableSubCaption{ 
 padding: 0 0 5px 0;
 color: #000;
}

.dataTable .tableFooter { 
 border: 1px solid black;
 background-color: #87B5D5;
 color: #000;
 font-weight: normal;
 font-size: 85%;
}

.dataTable tbody tr:hover {
 background: #BFD9FF; 
}

.dataTable th, .dataTable td {
 padding: 2px 5px;
}

.dataTable th { 
 background-color: #0C5C92;
 color: #FFF;
 font-weight: bold;
}

.dataTable .tableEvenRow {
 background-color: #E0E0E0;
 color: #000;
}

.dataTable .tableOddRow {
 background-color: #F0F0F0;
 color: #000;
}

.dataTable .tableSummaryRow {
 background-color: #87B5D5;
 color: #000;
 font-weight: bold; 
}


/* circle for station hitlist statistics */
#quartercircleTopLeft {
    width: 10px;
    height: 10px;
    border-radius: 10px 0 0 0;
} 

#quartercircleTopLeft-border {
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 9px 0 0 0;
}

#quartercircleTopLeft-border:before {
    content: "";
    background: #FFF;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 11px 0 0 0;
}

#quartercircleTopRight {
    width: 10px;
    height: 10px;
    border-radius: 0 10px 0 0;
} 

#quartercircleTopRight-border {
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 0 9px 0 0;
}

#quartercircleTopRight-border:before {
    content: "";
    background: #FFF;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 0 11px 0 0;
}

#quartercircleBottomLeft {
    width: 10px;
    height: 10px;
    border-radius: 0 0 0 10px;
} 

#quartercircleBottomLeft-border {
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 0 0 0 9px;
}

#quartercircleBottomLeft-border:before {
    content: "";
    background: #FFF;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 0 0 0 11px;
}

#quartercircleBottomRight {
    width: 10px;
    height: 10px;
    border-radius: 0 0 10px 0;
} 

#quartercircleBottomRight-border {
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 0 0 9px 0;
}

#quartercircleBottomRight-border:before {
    content: "";
    background: #FFF;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 0 0 11px 0;
}

.ellipsis {
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;  /* IE 6+, FF 7+, Op 11+, Saf 1.3+, Chr 1+ */
 -o-text-overflow: ellipsis;  /* for Opera 9 & 10 */
}

.cleaner {
 clear: both;
 height: 1px;
 font-size: 1px;
 border: 0px none;
 margin: 0;
 padding: 0;
 background: transparent;
}

.doNotDisplay {
 display: none;
}




/* google chrome audio player specific: */
/*
audio::-internal-media-controls-download-button {
 display:none;
}

audio::-webkit-media-controls-enclosure {
 overflow:hidden;
}
audio::-webkit-media-controls-panel {
 width: calc(100% + 30px); /* Adjust as needed */ /*
}
*/

/* ]]> */


/* Overlay, e.g. for payment notice */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.overlay-content {
   max-width: 60%; 
   background: white;
   padding: 20px;
   border-radius: 5px;
   text-align: center;
}

.overlay-content p {
   font-weight: normal;
   font-color: #000;
   text-align: left;
}

.overlay-content button {
   margin: 10px;
}

/* on/off switch */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 15px;
  border: 1px solid #333;
  border-radius: 15px;
}

  /* hidden checkbox element */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


  /* status button */
.status-circle {
  width: 11px;
  height: 11px;
  vertical-align: middle;
  border-radius: 50%;
  display: inline-block;
  margin: 0px;
  outline: 1px solid black; /* Dicke und Farbe der Outline */
}

.status-on {
  background-color: #28de23;
}

.status-off {
  background-color: grey;  /* #ccc; */
}

  /* switch design */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 15px;
}

  /* switch button */
.slider:before {
  position: absolute;
  content: "";
  height: 11px;
  width: 11px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

  /* status 'ON'" */
input:checked + .slider {
  background-color: #28de23;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

