@import "reset.css";

/*
 * GENERAL
 * ------------------------------------------------
 */
html {
    height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ADDAF5;
    min-height: 100%;
    height: 100%;
    font-size: 10pt;
}
h1 {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
}

strong {
	font-weight: bold;
}

/*
 * TABLE
 * ------------------------------------------------
 */
.fixed_headers {
    cursor: default;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0 0 5px 0;
    background-color: #FFF;
}
.fixed_headers th {
  text-decoration: none;
}
.fixed_headers th,
.fixed_headers td {
  padding: 5px;
  text-align: left;
}
.fixed_headers td:nth-child(1),
.fixed_headers th:nth-child(1) {
  min-width: 50px;
}
.fixed_headers td:nth-child(2),
.fixed_headers th:nth-child(2) {
  min-width: 120px;
}
.fixed_headers td:nth-child(3),
.fixed_headers th:nth-child(3) {
  min-width: 120px;
}
.fixed_headers td:nth-child(4),
.fixed_headers th:nth-child(4) {
  min-width: 100px;
}

.fixed_headers td:nth-child(5),
.fixed_headers th:nth-child(5) {
  min-width: 130px;
}

.fixed_headers td:nth-child(6),
.fixed_headers th:nth-child(6) {
    min-width: 130px;
}

.fixed_headers td:nth-child(7),
.fixed_headers th:nth-child(7) {
  width: 100%;
}

.fixed_headers thead {
    background-color: #555;
    color: #FFF;
}
.fixed_headers thead tr {
  display: block;
  position: relative;
}
.fixed_headers tbody {
    display: inline-block;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.fixed_headers tbody tr:nth-child(even) {
    background-color: #EEE;
}

.tableEntrySelected {
	background-color: #B5E3FF !important;
}

/*
 * SPEZIAL
 */
.field-em-mode {
    display: none;
}
/* 
 * Wrapper
 * ------------------------------------------------------------------------------
 */
.wrapper {
    width: 100%;
    min-width: 1000px;
    height: 100%;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
    height: 50px;
    color: #000;
    padding: 5px;
    border-bottom: 2px solid #000000;
    background: linear-gradient(to right, #53A3D3, #FFF);
}


/* Middle
-----------------------------------------------------------------------------*/
.middle {
    border-left: 280px solid #ADDAF5;
    border-right: 250px solid #ADDAF5;
    position: relative;
    height: calc(100% - 109px);
}

.middle:after {
	display: table;
	clear: both;
	content: '';
}
.container {
	width: 100%;
	float: left;
	overflow: hidden;
	margin-right: -100%;
    height: 100%;
}
.content {
	padding: 0;
    height: 100%
}


/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
    float: left;
    width: 280px;
    position: relative;
    left: -280px;
    box-sizing: border-box;
    padding: 5px;
    border-right: 2px solid #000000;
    background-color: #ADDAF5;
    height: 100%;
}


/* Right Sidebar
-----------------------------------------------------------------------------*/
.right-sidebar {
    float: right;
    margin-right: -250px;
    width: 250px;
    position: relative;
    box-sizing: border-box;
    padding: 5px;
    border-left: 2px solid #000000;
    background: #ADDAF5;
    height: 100%;
    overflow-x: hidden;
}


/* Footer
-----------------------------------------------------------------------------*/
.footer {
    font-size: 0.8em;
    height: 35px;
    background: linear-gradient(to right, #53A3D3, #FFF);
    color: #000;
    padding: 5px;
    border-top: 2px solid #000000;
}