/*
 * styles.css
 Farbtafel:
 
	#E10000 	APA-red
	
	#eeeff0		light grey, background of input elements, hitlist background
	#91999A		grey, hovered link
	#81888E		grey borders
	#888f96		grey text
	#5B6670		dark grey, pre formatted text, no-submit-buttons

 * TL bg hightlight 		#E3EAEF (227, 234, 239)
 * Orange: 							#FFCCB6 (255, 204, 182)
 */
 
 /* TODOs
 - Mit dem neuen APA-header wird der gesamte Content gesized, deshalb müssen alle min-size media queries angepasst werden.
 - 
 */

/* ------------------------------------------------------------------------- */
/* bootstrap overwrites and general styling */

@-ms-viewport{ width: auto !important; }

body a{
	text-decoration: underline;
}
body a:HOVER{
	color: #91999A;
}
body table{
	width: 100%;
}
body .modal-header{
	min-height: 32px;
	border: none;
}
#wait {
	position: fixed;
	width: 100%;
	height: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: black;
	opacity: 0.5;
	transition: opacity .5s linear;
	z-index: 2;
	cursor: wait;
}
#wait.displayNone{
	opacity: 0;
}
.displayNone{
	display: none !important;
}
.invisible-click-target{
	visibility: hidden;
	width: 0;
	height: 0;
}
.disabled{
	color: #91999A;
	cursor: default;
}
.width300 {
	width: 300px;
}
.clickable{
	cursor: pointer;
}
.zoom-in{
	cursor: -moz-zoom-in;
	cursor: -webkit-zoom-in;
}
.zoom-out{
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
}
.floatbox {
	overflow: hidden;
}
.text-label{
	width: 50%;
	float:left;
}
.text-input{
	width: 50%;
	float: right;
}

span.error, div.error {
	color: #E10000;
}
.dlg-error{
	border: 1px solid #E10000;
	padding: 18px 20px 16px;
	background-color: #ffe8e8;
	color: #9E0000;
}
/* wo benutzt???*/
span.error.disabled{
	display: none;
}
p{
	margin-bottom: 0;
}
h1, h2{
	margin-top: 0;
}
h1{
	line-height: 1
}
#info_link_wrapper, .charge-icon,
h3, h4{
	display: inline;
}
h3{
	font-family: "UniversLTW01-67BoldCn";
	font-weight: normal;
	text-transform: uppercase;
}

.no-text-transform {
	text-transform: none !important;
}

.left{
	float: left;
}
.right{
	float: right;
}
label{
	cursor: pointer;
	font-weight: normal;
	margin: 0;
}
input[type="checkbox"],
input[type="radio"]{
	margin-right: 6px;
	background-color: transparent;
	display: inline;
	vertical-align: top;
}

.autoModal {
	align-items: center;
}

.autoModal.in {
	display: flex !important;
}

.autoModal .modal-body {
    max-height: 100%;
    max-width: 100%;
}

*{
	padding: 0;
}
input, select, textarea {
	background-color: #eeeff0;
	border: none;
	padding: 5px;
}
textarea:focus, a:focus, input:focus, input[type="radio"]:focus, input[type="checkbox"]:focus{
	outline: none;
	box-shadow: 1px 1px 3px #888888;
}

input.invalid, select.invalid,textarea.invalid{
	background-color: #ffe8e8;
	color: #9E0000;
}

fieldset {
	margin: 22px 0;
	width: 100%;
	overflow: hidden;
}

a.resetForm{
	float: left;
	margin: 22px 0;	
}

/* ------------------------------------------------------------------------- */
/* general page layout */
#breadcrumb {
	margin-bottom: 33px;
}
#breadcrumb :first-child {
	background: none;
	padding: 0;
}
#breadcrumb li {
	padding: 0px 0px 0px 22px;
	background: url("../images/icons/breadcrumb.gif") no-repeat 8px 7px;
	display: inline-table;
}
#content {
	overflow: hidden;
	padding-top: 44px;
}
#mainframe {
	overflow: hidden;
}
#sidebar {
	width: 298px;
	float: right;
	padding-left: 30px;
	overflow: hidden;
}
@media only screen and (max-height: 767px){
	#breadcrumb {
		margin-bottom: 22px;
	}
	#content {
		padding-top: 22px;
	}
	h1{
		margin-bottom: 5px;
	}
	h2{
		margin-bottom: 2px;
	}
}

#footer {
	padding: 33px;
	background: #eeeff0;
}
#loadedDialog{
	overflow: auto;
}

span.highlight {
	background-color: #FFFF00;
}

/* ------------------------------------------------------------------------- */
/* header menu */

ul, ol {
	list-style-type: none;
}
ul.navigation.main li {
	display: inline;
	margin-right: 22px;
}
ul.navigation.main li img{
	vertical-align: baseline;
}
ul.navigation.main li a,
ul.navigation.main li span {
  text-decoration: none;
  color: #000;
}

/*  main navigation and settings dropdown 
	setting overflow: hidden
	or display:table to the containing header ensures that
	its height calculation respects floating childs too */
div#header			{ width: 100%; 	}
div#header div#menu	{ float: left;		}
div#header div#user	{ float: right;	display: flex;	}


/* ------------------------------------------------------------------------- */
/* Login page */

#login .loginField {
	width: 250px;
	margin-right: 22px;
}

a#pwreminder {
  font-size: 0.8em;
  color: #000000;
}

td.loginLanguage {
	padding-top: 15px;
}

/* ------------------------------------------------------------------------- */
/* Buttons */
.help-button,
button, a.button,
input.submit{
	float: right;
	padding: 5px 10px;
	border: none;
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 11px;
	line-height: normal;
    outline-style: none;
}

a.button:link, a.button:visited {
	color: #FFFFFF;
}

button.reset, input.reset, a.reset, button.cancel, input.cancel, a.cancel, button.delete, input.delete, a.delete {
	float: left;
	background-color: #5B6670;
	margin-right: 20px;
}
button:hover, button:disabled, a.button:hover, a.buttonDisabled,input.submit:hover{
	background-color: #5B6670;
	color: #ffffff;
}
.info-button img{
	padding-left: 6px;
	vertical-align: baseline;
} 
/* ------------------------------------------------------------------------- */
/* time selection controls */
#meta_timepoints td, #timepoints td {
	text-align: left;
	background-color: #eeeff0;
}
#timepoints td.relTime {
	border-right: 11px solid white;
}
#timepoints td.timeField {
  border-left: 11px solid white;
}
td.fromTo{
	min-width: 30px;
	padding-left: 5px;
	background-color: #eeeff0;
	line-height: 22px;
}

td.fromToLabelAnalyse{
    width:30px;
    padding-bottom: 11px;
}

td.dateField,
div.dateField input#digestStartDate{
	white-space: nowrap;
	padding-right: 0;
	width: 80px;
}
td.timeField {
	width: 40px;
}
.dateField button.startDateTrigger {
	float: inherit;
	background: none;
	margin: 0;
	padding: 0 0 2px 0;
	width: 30px;
	vertical-align: middle;
}

.styled {
	background-color: #eeeff0;
	width: 100%;
	overflow: hidden;
}
.styled select{
	background: url(../skinning/images/buttons/dropdown.png) no-repeat 84%;
	text-overflow: ellipsis;
	width: 118%;
	cursor: pointer;
	-webkit-appearance:none;
    -moz-appearance: none;
    padding-right: 50px;
}

.styled select::-ms-expand {
    display: none; /* hide the default arrow in ie10 and ie11 */
}
.styled select:focus {
	outline: none;
}
.styled select option {
	padding-left: inherit;
}

#settingsForm div.styled,
#settingsForm input[type="text"],
#settingsForm input[type="password"]{
	min-width: 330px;
	max-width: 330px;
}
#settingsForm tr{
	height: 35px;
}
.saveLoginFields{
	display:none;
}
/* ------------------------------------------------------------------------- */

#ressortContainer, div.channelsContainer {
	display: inline-block;
}
div.ressortTitle, div.ressortTitleMetaServ, div.channelsColumn {
	margin: 11px 11px 0 0;
	float: left;
}

/* ------------------------------------------------------------------------- */
/* The search term input field and controls*/

table.searchTermInput {
	width: 85%;
	vertical-align: top;
	overflow: hidden;
}
#searchTerm.multiline {
	height: 55px;
	overflow-y: auto;
	padding: 0px 5px;
	line-height: 22px;
	resize: none;
	width: 100%;
    -webkit-backface-visibility: hidden;
}
#searchButton {
	height: 55px;
	width: 143px;
	font-size: 15px;
}

div#fromTimes{
	float: left;
	width: 47%;
}
div#toTimes{
	float: right;
	width: 47%;
}

div#dash{
	float: left;
	width: 6%;
	height: 33px;
	text-align: center;
}
div#dash img {
	margin-top: 15px;
}
/* ------------------------------------------------------------------------- */
/* Search form */
.input-wrapper label{
	color: #91999A;
	position: absolute;
}

#searchTermSample,
#searchTermSampleShort{
	float:left;
	color: #888f96;
}
#searchTermDelete{
	float:right;
}
/* Wrap search times on search page if we are below 1160 pixels */
@media only screen and (max-width: 1159px) {
	#searchTermSample,
	#searchForm  div#dash{
		display: none;
	}
	#searchForm #timepoints{
		float: none;
		padding: 0;
	 	width: 68%;
	 	/* white-space: normal; */
	}
	#searchForm div#fromTimes{
	 	width: 100%;
		float: none;
		padding-bottom: 11px;
	}
	#searchForm div#toTimes{
	 	width: 100%;
		float: none;
	}
}
/* 	we have two different search term sample strings
	
*/
@media only screen and (min-width: 1150px) {
	#searchTermSampleShort{
		display: none;
	}
}

/* ------------------------------------------------------------------------- */
/* #sidebar content */
#sidebar .module {
	margin-bottom: 33px;
}
#sidebar .module div.header {
	line-height: 32px;
	margin-top: -6px;
	margin-bottom: 6px;
}
#sidebar #searchTemplateSave {
	padding: 0px 0px 22px;
}
#sidebar #searchButton{
	float: none;
	height: auto;
	width: auto;
	font-size: 11px;
	margin-bottom: 11px;
}
#sidebar button, #sidebar a.button {
	font-family: "UniversLTW01-67BoldCn";
	font-weight: normal;
	float: none;
}
button#saveTemplateButton {
	float: none;
}
#sidebar input.text {
	width: 100%;
	margin-bottom: 11px;
}
#meta_template li a img {
	margin: 7px 5px 7px 0;
}
.search-template-entry .if-active,
.search-template-entry.active .if-inactive{
	display: none;
}
.search-template-entry.active .if-active{
	display: inline;
}
.search-template-entry.active ol.if-active{
	display: block;
}
#sidebar .active .item-delete {
	float: right;
}
#sidebar .item-actions{
	width: 100%;
	overflow: hidden;
	padding-left: 33px;
	color: #91999A;
}
#sidebar .text-reports li{
	margin: 11px 0;
}
#sidebar .active .item-actions a{
	color: #91999A;
}
#sidebar .template-changes-link {
	display: none;
}
.alarm-descr {
	font-size: 11px;
	line-height: 11px;
}

/* filter and similar/linked articles*/
#sidebar ul,
#sidebar ol {
	width: 100%;
	margin: 0 0 5px 0;
	overflow: hidden;
}
#sidebar ul>li {
	overflow: hidden;
	margin: 0 0 11px 0;
}
#sidebar div.filter-colHeader {
	text-align: right;
	float: right;
}
.filter-name-quantity{
	width: 212px;
	float: left;
	display: block;
}
.filter-name{
	width: 177px;
	float: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
}
.filter-quantity {
	font-size: 12px;
	width: 35px;
	float: right;
	height: 10px;
 	line-height: 10px;
	text-align: right;
	overflow: hidden;
	margin: 5px 0 0 0;
	display:block;
}
.filter-quantityBar {
	width: 50px;
	height: 12px;
	float: right;
	background-color: #cccfd2;
	margin: 4px 0 0 4px;
}
.filter-quantityBar div {
	height: 12px;
	display:block;
	float: left;
}

/* more/less links */
#sidebar .more-link,
#sidebar .less-link{
	float: left;
	padding-right: 10px;
}
#sidebar .more-link a,
#sidebar .less-link a{
	color: #91999A;
}	
#meta_timeDist div.timesliceContainer {
	margin: 0px;
	height: 100px;
	float: left;
	cursor: pointer;
}
div.stopFloat {
	clear: both;
	height: 1px;
}
/* ------------------------------------------------------------------------- */
/* Alarm Notification Top-Bar */
.topbar{
	display: none;
	width: 100%;
	background: #333;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
	position: fixed;
	top: 0px;
	z-index: 1040;
}
.topbar-content {
	display: none;
	width: inherit;
	background: transparent;
	position: fixed;
	top: 0px;
	z-index: 1041;
	color: #fff;
}

.topbar-content a,
.topbar-content a:hover,
.topbar-content a:link,
.topbar-content a:focus {
	background-color: transparent;
	border: none;
	text-decoration: underline;
	color: #fff;
}
.alarm-notification{
	margin: 22px 0;
	overflow:auto;
}

.alarm-notification .summary{
	float: left;
}
.alarm-notification .iconizedClose{
	float: right;
}
/* ------------------------------------------------------------------------- */
/* hitlist */
.hitlistOptions {
	white-space: nowrap;
	overflow: auto;
}
.dashed-line {
	margin: 10px 0px;
	background-image: url("../images/backgrounds/bg_meta_top_line.png");
	height: 1px;
}
table.pagination {
	overflow: visible;
	white-space: nowrap;
	margin: 0;
	display: table;
}
.pagination td{
	text-align: center;
}
.pagination .first, .pagination .prev {
	margin-right: 11px;
}
.pagination .last, .pagination .next {
	margin-left: 11px;
}
.pagination td.pagination_narrow{
	width: 22px;
}
.pagination td.pagination_wide{
	width: 44px;
}

table.hitActions{
	margin: 11px 0;
}
table.hitActions div{
	display: inline-table;
}
table.hitActions td.pull-left{
	width: 40%;
	text-align: left;
}
table.hitActions td.pull-right{
	width: 60%;
	text-align: right;
	padding-left: 22px;
}
table.hitActions td.pull-left div{
	margin-right: 11px;
}
table.hitActions td.pull-right div{
	margin-left: 11px;
	text-align:	center;
}
div#newHits{
	text-decoration: underline;
	text-transform: uppercase;
	text-align: center;
 	padding: 18px 20px 16px;
	font-family: "UniversLTW01-67BoldCn";
	font-weight: normal;
}
.searchResultMessage {
    position: relative;
    top: -20px;
}
table.result-list{
	table-layout: fixed;
}
table.result-list tr:nth-child(even){
	background-color: #ffffff;
}
table.result-list tr:nth-child(odd){
	background-color: #eeeff0;
}
table.result-list tr.highlight{
	background: #e3eaef;
}
table.result-list td {
	padding: 18px 5px 16px;
	vertical-align:	top;
}
/* remove padding in sub tables*/
table.result-list td td{
	padding: 0;
}
body .list_link_content,
body .list_link_content a:HOVER{
	color: black;
	text-decoration: none;
}
table.result-list td.datetime, 
table.result-list td.attach {
	text-align: right;
	white-space: nowrap;
}

table.result-list .newEntry *{
	color: #ffffff !important;
}

.attachments
{
	display:inline-block;
}

.attachments ol{
	margin-left: 0px !important;
	padding-left: 0px !important;
}

table.result-list div.attachment,
table.result-list div.chain{
	width: 15px;
	height: 15px;
	display: block;
	float: right;
	margin-right: 3px;
}
table.result-list .newEntry div.attachment{
	background: url("../images/icons/att_white.png") no-repeat;
}
table.result-list .newEntry div.chain{
	background: url("../images/icons/chain_white.png") no-repeat;
}
table.result-list div.attachment{
	background: url("../images/icons/att_black.png") no-repeat;
}
table.result-list div.chain{
	background: url("../images/icons/chain_black.png") no-repeat;
}
table.result-list div.chain.red{
	background: url("../images/icons/chain_red.png") no-repeat;
}

img.hitlist-icon{
	width: 15px;
	height: 15px;
}

img.hit-pic-attachment {
    border: 1px solid #81888e;
    max-height: 42px;
    max-width: 80px;
}
#meta_image_chain img.hit-pic-attachment,
#meta_chain img.hit-pic-attachment,
#meta_edition img.hit-pic-attachment {
	max-height: 160px;
	max-width: 260px;
}
.detail-pic-item-wrapper {
	margin-bottom: 22px;
	margin-right: 22px;
}
.detail-pic-item-wrapper,
.detail-pic div.format-links {
    display: inline-block;
    vertical-align:	top;
}
.detail-pic div.format-links {
	display: inline-block;
	vertical-align:	bottom;
}
.detail-pic div.format-links a{
	display: block;
	font-size: 11px;
}
.detail-pic .detail-pic-item-description{
	max-width: 300px;
	display: inline-block;
	margin-top: 5px;
}
.detail-pic .detail-pic-item {
	display: table-cell;
	vertical-align: bottom;
}
.detail-pic .pic-div-height {
	height: 160px;
	display: inline-block;
}
.detail-pic .detail-pic-div {
	height: 160px;
	display: table;
}

.detail-pic .detail-pic-bottom {
	vertical-align: bottom;
}
pre{
    border: none;
    background-color: #f8f8f8;
}
table.result-list td.gallery-container {
	padding: 0;
	background-color: #ffffff;
}
table.result-list div.gallery-entry {
	float: left;
}
.columns4{
	width: 25%;
}
.columns3{
	width: 33.33%;
}
.columns2{
	width: 50%;
}
.gallery-entry-outline{
    margin: 1px;
    padding: 1px;
}

.film-list-entry.notread td.report,
.film-list-entry.notread td.datetime,
.film-list-entry.notread td.last,
.film-list-entry.notread td.attach,
table.result-list div.gallery-entry .gallery-entry-title, /* same opacity for title string no matter if notread */
table.result-list.hitlist-results div.gallery-entry.notread .gallery-entry-outline .gallery-thumbnail-inner img,
table.result-list.hitlist-results div.gallery-entry.notread .gallery-entry-outline span{
	opacity: 1;
}

.film-list-entry td.report,
.film-list-entry td.datetime,
.film-list-entry td.last,
.film-list-entry td.attach,
table.result-list div.gallery-entry.notread .gallery-entry-title,
table.result-list.hitlist-results div.gallery-entry .gallery-entry-outline .gallery-thumbnail-inner img,
table.result-list.hitlist-results div.gallery-entry .gallery-entry-outline span{
	opacity: 0.5;
}

.film-list-entry td.datetime div.time,
.film-list-entry td.datetime div.location,
.film-list-entry td.report span.report-meta-info,
.film-list-entry td.report span.report-detail-info
{
	opacity: 0.8;
	font-family: "Univers LT W01 45 Light", arial, helvetica, sans-serif;
	font-weight: normal;
}

.film-list-entry.notread td.datetime div.time,
.film-list-entry.notread td.datetime div.location,
.film-list-entry.notread td.report span.report-meta-info,
.film-list-entry.notread td.report span.report-detail-info
{
	opacity: 0.6;
}

table.result-list div.gallery-entry .gallery-entry-outline{
	background-color: #f8f8f8;
}

#fulltext-overlay table.result-list div.gallery-entry .gallery-entry-outline{
	background-color: #ffffff;
}
table.result-list div.gallery-thumbnail {
	margin-top: 2px;
	display:table;
	height: 160px;
	text-align: center;
	position: relative;
	width: 100%;
}

table.result-list div.gallery-thumbnail-inner {
    display: table-cell;
    vertical-align: middle;
}

table.result-list div.gallery-entry .gallery-entry-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

table.result-list tr.film-list-entry.selected .last,
table.result-list div.gallery-entry.selected div.gallery-entry-outline {
	background-image: url("../skinning/images/buttons/selected-hit.png");
	background-repeat: no-repeat;
	background-position: right;
}
a.gallery_link_content:visited,
a.gallery_link_content:hover,
a.gallery_link_content:active,
.gallery_link_content {
    text-decoration: none;
}
/* ------------------------------------------------------------------------- */
/* dialog content */

.modal-dialog table td#fullTextEmailContainer{
	vertical-align: top;
}
.modal-dialog table select{
	vertical-align: middle;
}
.modal-dialog tr.alarm-row{
	height: 40px;
}
.modal-dialog tr.block-row td {
	padding-bottom: 11px;
}
.modal-dialog table col.alarm-label {
	width: 200px;
}
.modal-dialog table col.alarm-value{
	width: 300px;
}
.checkbox-indent {
	margin-left: 22px;
}
.alarmDescription, .digestDescription, .chargingInfoHint, .pushInfo {
	font-size: 11px;
	line-height: 15px;
	padding-bottom: 10px;
	display: none;
}
.chargingInfo,
.thumbnailTitle {
	display: none;
}
.modal-dialog button, .modal-dialog .button {
	width: 100px;
	margin-top: 10px;
}

.modal-dialog-video {
	width: auto;
}

.modal-dialog-video #loadedDialog {
	overflow: visible;
}

.modal-video-content {
	max-height: 500px;
	object-fit: contain;
}

/* ------------------------------------------------------------------------- */
/* fulltext overlay */

#fulltext-overlay-wrapper {
	position: fixed !important;
	width: auto;
	height: auto;
	right: 0px;
}
#fulltext-overlay {
	position: relative;
	margin: 0%;
	top: 0px;
	left: 0px !important;
	height: 100%;
    background-color: rgba(238,239,240, .95);
}
#fulltext-overlay table.result-list td.gallery-container{
    background-color: transparent;
}
#fulltext-overlay.not-resizing{
    -webkit-transition:width 300ms ease-in-out;
    -moz-transition:width 300ms ease-in-out;
    -o-transition:width 300ms ease-in-out;
    transition:width 300ms ease-in-out;
}
#story-container {
	position: absolute;
	float: right;
	height: 100%;
	overflow: auto;
	display: none;
	outline: none;
}
#story-container #story-placeholder {
	padding: 33px;
	text-align: center;
}
#story-controls {
	position: absolute;
	right: 0;
	height: 100%;
	background: #eeeff0;
	padding-top: 11px;
}
#fulltext-overlay .hidePreview,
#fulltext-overlay.expanded .showPreview{
	display: none;
}
#fulltext-overlay.expanded .hidePreview,
#fulltext-overlay .showPreview,
#fulltext-overlay.expanded #story-container{
	display: inherit;
}
.skinned-background-color{
	color: white;
}
.showPreview,
.hidePreview {
	width: 16px;
}
.showPreview div,
.hidePreview div{
	height: 1.1em;
	font-weight: bold;
	font-size: 0.8em;
	text-align:	center;
	text-transform: uppercase;
}
#fulltext-overlay #story{
	margin: 11px;
}

/* ------------------------------------------------------------------------- */
/* fulltext page */

.search-result-detail #story table,
.search-result-detail #story table td{
	width: auto;
}
/* ------------------------------------------------------------------------- */
/* analysis */
#subjectTable{
	width:100%;
}
#subjectTable tr.actorRow {
	border-top: 1px #eeeff0 solid;
}
#subjectTable tr.actorRow .nameElements{
  border-top: 1px white solid;
}
#matterInput {
	width: 95%;
}
.charttypemenu {
	width: 100%;
	text-align: center;
	background-color: #DDDFE1;
}
.charttypemenu td{
 	color: #A9AEB3;
	cursor: pointer;
}
.charttypemenu td.active{
	background-color: #555f69;
	color: #FFFFFF;
	cursor:default;
}
.charttypemenu p.delimiter {
	border-left: 1px solid #A9AEB3;
}
.chartrestrictionmenu {
	width: 100%;
	min-height: 50px;
	font-size: 16px;
	background-color: #CBCED1;
	display: inline-block;
}
.chartrestrictionmenu div.menuitem{
	float: left;
	height: 50px;
	line-height: 50px;
	cursor:pointer;
	text-align: center;
	color: #545E68;
}
.chartrestrictionmenu div.active {
	color: white;
	background-color: #545E68;
	cursor: default;
}

/* ------------------------------------------------------------------------- */
/* tootltips TODO: use bootstrap tooltips */
.qtooltip,
.qtooltip .qtip-content{
	color: #fff;
	background-color: rgba(68,68,68,0.7);
}
.qtip-content span.highlight {
	color: rgba(68,68,68,0.7); /* SDA-739 highlight readability */
}
body .tooltip{
	display:none;
}
/* ------------------------------------------------------------------------- */
/* clipboard selector popup */
.clipboardSelector {
	z-index: 100;
	position: absolute;
	background-color: white;
}
.clipboardSelector div.container{
	width: 200px;
	margin: 11px;
	white-space: normal;
}
.clipboardSelector div{
	margin: 5px 0;
}
.dropShadow{
	-webkit-appearance: none;
	-moz-box-shadow: 0 0 3px #000;
	-webkit-box-shadow: 0 0 3px #000;
	box-shadow: 0 0 3px #000;
    border-collapse: separate;
}
#clipboardComment {
	width: 100%;
	height: 135px;
}

/* ------------------------------------------------------------------------- */
/* clipboard approval dialogs */
table.approve-clipboard td{
	vertical-align: top;
	padding-bottom: 5px;
}
table.approve-clipboard label{
	margin-top: 5px;
}
table.approve-clipboard input[type=radio]{
	margin-top: 9px;
}
#clipboard-comment {
	width: 100%;
}

/* ------------------------------------------------------------------------- */
.loginErrors ,
.cookieInfo {
	background-color: #FFFFFF;
	color: #81888E; 
	border: 1px solid #81888E; 
}
.loginErrors {
	min-height: 44px;
	visibility: hidden;
	text-align: center;
    margin-bottom: 10px;
}
.cookieInfo {
	display: none;
	padding: 0 10px;
}
.cookieInfo p {
	margin-bottom: 5px;
}
#loginLoaderContainer {
	width: 100%;
	text-align: center;
}
#loginLoaderContainer img {
	margin-right: 10px;
}
.loader-image{
	width:16px;
	max-width: 16px;
	margin-right: 5px;
}
/* ------------------------------------------------------------------------- */
/* progress-bar */

#progress-bar-wrapper{
	width: 100%;
	height: 90px;
	display: none;
}
#progress-bar #bar{
	height: 18px;
	background-color: #eeeff0;
}
#progress-bar #bar #progress{
	height: 100%;
}
#progress-bar #messageBox{
	text-align: center;
}

/* ------------------------------------------------------------------------- */
/* help page */
.help-button{
	float: none;
	font-weight: bold;
	font-family: Arial, sans-serif;
	min-width: 90px;
	display: inline-block;
}
img.grey{
	background-color: #91999A;
}
.help-button.cancel{
	background-color: #5B6670;
}
span.euro{
	font-weight: bold;
	font-size: 1.5em;
	color:#91999A;
}
ul.helpIndex {
	line-height: 33px;
	margin-left: 50px;
	width: 250px;
}
table.help {
	border-collapse: separate;
	border-spacing: 5px;
}
table.help td {
	vertical-align: top;
}
#mainframe a:empty{
	display: block;
	position: relative;
	top: -50px;
	visibility: hidden;
}
/* ------------------------------------------------------------------------- */
/* 	Font rendering fix: in Chrome: we use Arial bold instead of Universe bold
	This has to be defined AFTER all other font definitions
	UPDATE: Firefox now shows the same rendering issues with Univers bold thats why we use Arial instead
*/
.bold, h1, h2, h4, h5, legend, ul.navigation.main li span.active,
button, a.button, input.submit,
a.fsItem.active,
table.result-list .film-list-entry td.report span.report-meta-info span.source,
table.result-list .film-list-entry td,
table.hitActions td.pull-right,
li.helpActive a, 
li.helpActive a:active, 
li.helpActive a:visited, 
li.helpActive a:focus, 
li.helpActive a:hover{
/* 	font-family: "Univers LT W01 65 Bold", arial, sans-serif; */
	font-family: Arial, sans-serif;
	font-weight: bold;
}

span.prio-1,
span.prio-2,
span.prio-3,
span.prio-4,
span.chain-N,
span.chain-K,
span.messagetype-H,
span.messagetype-Z,
span.embargo,
span.updateMethod {
	font-family: 'UniversLTW01-67BoldCn';
	font-weight: normal;
	font-size: 11px;
	border-radius: 3px;
	padding: 4px 4px 5px 4px; /* mit Designcenter gemeinsam abgestimmt */
    margin-left: 2px;
	margin-right: 5px;
	color: #fff;
	letter-spacing: 1px;
}
span.prio-1,
span.prio-2{
	background: green;
}
span.prio-3{
	background: orange;
}
span.prio-4{
	background: #E10000;
}

span.chain-N,
span.messagetype-H,
span.messagetype-Z {
	background-color: #50A53C;
}

span.chain-K{
	background-color: #007AFF;
}

span.versionInfo{
	float: right;
	color: #A9A9A9;
}

table.info-table{
	background: #eeeff0;
	overflow: hidden;
	width: auto;
}
table.info-table td,
table.info-table th{
	padding: 0 5px;
}
table.info-table th,
table.info-table tr.footer td{
	background: #e3eaef;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
}

.info-table-margin{
    margin: 15px 20px 20px 0;
}

#consumingUsersDiv {
	display:inline-block;
	width:40%;
}
.costCenterTemplate, .costCenterTemplate img , .costCenterTemplate span{
	visibility: hidden;
	height: 0px;
}

table.order td{
	padding-top: 3px;
}
table.order input,
table.order textarea{
	width: 100%;
}

.imageDialog {
	min-height: 425px;
}

.layout-image-outer{
    width: 100%;
    text-align: center;
}
.layout-image{
	max-width: 100%;
	max-height: 100%;
}
/* css formating of file dropbox
*/
#filedrop{
	font-weight: bold;
	text-align: center;
	padding: 5px;
	margin: 1em 0;
	color: #555;
	border: 2px dashed #555;
	border-radius: 7px;
}
#filedrop.hover{
	color: #f00;
	border-color: #f00;
	border-style: solid;
	box-shadow: inset 0 3px 4px #888;
}
#filestatus{
	text-align: left;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 5px;
}
/* css formating of progressbar of file upload
*/
.ui-progressbar {
	position: relative;
	margin-top: 10px;
}
.progress-label {
	position: absolute;
	left: 50%;
	top: 4px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
}
#progressbar-upload > .ui-progressbar-value {
	border: none;
}
progress {
	width: 500px;
	height: 25px;
	border: 0px none;
	background-color: #E5E5E5;
	border-radius: 10px;
	padding: 4px 5px 5px 5px;
}
progress::-webkit-progress-bar {
	background-color: #E5E5E5;
	border-radius: 50px;
	padding: 2px;
	box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.2);
}
/* css formating of "inline" File upload button
*/
.css3-inline-file-input,
.css3-inline-file-input *{
	display: inline-block;
}
.css3-inline-file-input *{
	margin: 0;
	padding: 0;
	border: 0;
}
.css3-inline-file-input form{
	position: relative;
}
.css3-inline-file-input input{
	position: absolute;
	right: 0;
	cursor: pointer;

	filter: alpha(opacity=0); /* opacity fix IE6/7/8 */
	-moz-opacity: 0; /* opacity fix for older Firefox */
	-webkit-opacity: 0 /* opacity fix for older Chrome */;
	opacity: 0;
	z-index: -1;
}
.css3-inline-file-input{
	width: auto;
	vertical-align: top;
	overflow: hidden;
}
.css3-inline-file-input span{
	display: block;
	text-align: center;
	text-decoration: underline;
}
/* fixes for IE6/7 */
* html .css3-inline-file-input,
* html .css3-inline-file-input *,
* + html .css3-inline-file-input,
* + html .css3-inline-file-input *{
	display: inline;
}
.css3-inline-file-input{
	cursor: pointer;
}
table.upload-list {
	width: 200px;
	margin-left: auto;
	margin-right:auto;
}
table.upload-list td {
	padding: 0px 3px 0px 3px;
}
table.upload-list .upload-size,
table.upload-list .upload-file-status{
	white-space: nowrap;
}
table.upload-list .upload-file-status {
	width: 10%;
}
table.upload-list .upload-name{
	white-space:nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 350px;
	min-width: 100px;
}
/* used for dynarch calendar displaying on a modal dialog*/
.calendar {
    z-index:10000 !important;
}

iframe.hidden-frame {
	visibility: hidden;
	height: 0;
	border: 0;
}

div.text-gallery-entry .gallery-entry-title{
    padding-left:5px;
    padding-right:5px;
    white-space: normal !important;
/*    width: 220px !important;*/
}

div.text-gallery-entry .gallery-entry-title span{
	margin-bottom: 0px;
}

.text-gallery-container{
    background-color: inherit !important;
}

div.list-gallery-entry .gallery-entry-title{
    width: 93% !important;
    margin: 0 auto;
}

.gallery-entry-actions {
	margin: 0 auto;
	overflow: hidden;
	min-height: 32px;
}

div.list-gallery-entry .gallery-entry-actions {
	width: 93% !important;
    padding-bottom: 5px;
    padding-top: 5px;
}

div.text-gallery-entry .gallery-entry-actions {
    padding: 5px;
}
.gallery-entry-actions .format-links{
	font-size: 12px;
}

.thumbnailPic{
    max-width: 100%;
}

/* SDA-755 = AOMCOM-1608 */
a.alarmNotificationLink .highlight {
	color: black;
}
.print-legal-hint{
	clear: both;
	display: block;
}

table.paramTable {
	width: 100%;
	text-align: left;
	border-spacing: 0px;
	border-collapse: separate;
}
table.paramTable td {
	border-bottom: 1px dotted #727878;
	vertical-align: top;
	margin-right: 11px;
}

table.paramTable table {
	width: 100%;
}

table.paramTable table td {
	border: none;
	vertical-align: top;
}

div.subjectColor {
	float: left;
	margin: 7px 4px 0 0;
	border: 0;
	width: 8px;
	height: 7px;
	line-height: 16px;
	padding: 0 !important;
}
.scroll-box-100{
	max-height: 100px;
	overflow-y: auto;
}

#template-used{
	display: none;
}

a.button-left{
	float: left;
}

span.linkButton{
	margin-left: 5px;
	margin-right: 5px;
	font-weight: bold;
}

.articledev{
	margin-top: 20px;
	background-color: #eeeff0;
	padding-top: 26px;
	padding-bottom: 10px;
}

.articledev div{
	margin-left: 29px;
	margin-left: 29px;
	margin-bottom: 20px;
}

.articledev span{
	font-weight: bold;
}

.flex-container{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.space-between{
	justify-content: space-between;
}

