/*
Dunkelgrau: 54 54 54
Menüelemente: 141 138 138
Menü ausgewählt: 45 45 45
Menütrenner: 39 39 39
Hintergrund: 243 243 243
Überschrift: 51 51 51
Überschrift 2: 102 102 102
Text: 154 154 154
Trennlinie: 220 220 220
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');

body, html {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #666666;
	background-color: #f3f3f3;
}

.header {
	background-color: #f3f3f3;
    height: 70px;
    border-bottom: 2px solid #dcdcdc;
    line-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 70px;
    right: 0;
}

.main {
	margin-top: 70px;
    margin-left: 70px;
    padding: 10px 10px;
}

hr {
	border: 0.5px solid #dcdcdc;
	margin-top: 20px;
	margin-bottom: 20px;
}












.sidenav {
    height: 100%;
    width: 70px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #363636;
    color: #8d8a8a;
    overflow-x: hidden;
}

.sidenav .menuelement {
	width: 100%;
	height: 50px;
	border-bottom: 2px solid #272727;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
}

.sidenav .menuelement:hover {
	background-color: #2d2d2d;
	color: #72D1EE;
	cursor: pointer;
}

.sidenav .menuetop {
	width: 100%;
	height:70px;
	border-bottom: 2px solid #272727;
}















#notifybox {
	background-color: #ffffff;
	color: #9a9a9a;
	border-top: 5px solid #6666667a;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-radius: 5px;
	padding: 20px;
	
    position: fixed;
    z-index: 9;
    top: 90px;
    right: -100%;
    
    -moz-transition: right 1s ease;
    -webkit-transition: right 1s ease;
}

#notifybox.active {
    right: 20px;
    -moz-transition: right 1s ease;
    -webkit-transition: right 1s ease;
}

#notifybox.green, .contentbox.green {
	border-top: 5px solid #BADF9D;
}

#notifybox.red, .contentbox.red {
	border-top: 5px solid #df9d9d;
}















#taskbox {
	position: fixed;
    z-index: 10;
    
    left: 120px;
    bottom: -130px;
    right: 50px;
    
    -moz-transition: bottom 1s ease;
    -webkit-transition: bottom 1s ease;
}

#taskbox:hover {
    bottom: 0px;
    -moz-transition: bottom 1s ease;
    -webkit-transition: bottom 1s ease;
    
}

#taskboxheader {
	background-color: #363636;
	font-weight: 400;
	color: #8d8a8a;
	width: 100%;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#taskboxcontent {
	background-color: #ffffff;
	color: #9a9a9a;
	overflow-y: scroll;
	height: 130px;
	border-left: 1px solid #363636;
	border-right: 1px solid #363636;
}

#taskboxtable {
	display: table;
	width: 100%;
}

.taskboxline {
	display: table-row;
	width: 100%;
	height: 10px;
}

.taskboxline.dark div{
	background-color: #f3f3f3;
}

.taskboxline.head div {
	font-weight:400;
	font-size: 12px;
	background-color: #363636;
	color: #8d8a8a;
}

.taskboxline div {
	display: table-cell;
	font-weight: 300;
	font-size: 14px;
	padding: 2px;
}












.contentbox {
	float: left;
	background: #ffffff;
	margin: 10px;
	border-radius: 3px;
	border-top: 5px solid #6666667a;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

.contentbox .contentboxheader {
	height: 30px;
	line-height: 30px;
	font-weight: 400;
	font-size: 20px;
	padding: 10px;
	border-bottom: 3px dotted #dcdcdc; 
}

.contentbox .contentboxcontent {
	width: 100%;
	font-weight: 100;
	font-size:16px;
	padding: 10px;
}












.clear {
	clear:both;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #363636;
   color: #8d8a8a;
   text-align: center;
   font-size: 12px;
   padding-top: 5px;
   padding-bottom: 5px;
}
