.wrapper {
	background-color: #E1E1E1;
	width: 80%;
	height: relative;
	margin: 0px auto;
	float: none;	
	overflow: hidden;
}

.header {
	height: auto;
	width: 100%;
	background-color: white;
	/*background-image: url("overlay2.png");*/
	
	background-repeat: no-repeat;
	background-position: right;
}

.lcol {
	background-color: #8E8E8E;
	width: 34%;
	height: 100%;
	overflow: hidden;
	/*max-height:90%;*/
	float: left;
	text-align: center;
	border-right: 1px solid grey;
	border-bottom: 4px solid grey;

}

.content {
	background-color: #E1E1E1;
	margin-left: 34%;
	width: 64%;
	padding-left: 1%;
	min-height: 1000px;
	height: relative;
	border-left: 1px solid grey;
	overflow: auto;		
}

body {
	background-color: #424242;
	font-family: sans-serif;
}

.headline3 {
	margin: 5px;
	font-family: sans-serif;
}

li {
	list-style-type: none;
	
	margin: 5px 1px 1px 5px;
	width: 90%;
		-webkit-transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
}

li:hover {
	background-color: white;
		-webkit-transition: all 0.1s;
		-moz-transition: all 0.1s;
		-o-transition: all 0.1s;
		transition: all 0.1s;
}

.a2 {
	color: #E1E1E1;
	font-family: sans-serif;
	text-decoration: none;
}

.a2:hover {
	color: #8E8E8E;
}

a {
	color: #444444;
	font-family: sans-serif;
	text-decoration: underline;
	text
}

a:hover {
	color: black;
}

.anmerkung {
	font-size: smaller;
}

.loeschenButton {
	background-image: url("delete_button.png");
}


/*button {
	background-color:#6e6d6c;
	border-radius:7px;
	border:0px;
	display:inline-block;
	cursor:pointer;
	color:white;
	font-family:arial;
	font-size:14px;
	font-weight:bold;
	padding:6px 8px;
	text-decoration:none;
	text-shadow:0px 1px 0px #4f4d4f;
}*/

.button {
  background: #7a7a7a;
  background-image: -webkit-linear-gradient(top, #7a7a7a, #454545);
  background-image: -moz-linear-gradient(top, #7a7a7a, #454545);
  background-image: -ms-linear-gradient(top, #7a7a7a, #454545);
  background-image: -o-linear-gradient(top, #7a7a7a, #454545);
  background-image: linear-gradient(to bottom, #7a7a7a, #454545);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 0px 4px 3px #525252;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.button:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

/*button:hover {
	background-color:#3b3b3b;
}*/

.button:active {
	position:relative;
	top:1px;
}

.selection::selection{
	background:red;
}

.img {
	border-radius: 5px;
	border: 3px;
	cursor: pointer;
	display: inline;
	margin: 5px;
	border: 10px solid #ffffff;
	box-shadow: 5px 5px 2px #888888;
}
.img:hover {
	 box-shadow: 10px 10px 5px #888888;
}

.headline {
	color: #F3F3F3;
	text-align: center;
	
}

.headline:hover {
	animation: changeColour 5s linear;
}

.liname:hover {
	background-color: #E1E1E1;
}

input {
	border: 0px 0px 0px 0px;
	color: grey;
}

.ausgabeTbl, .ausgabeTd, .ausgabeTh {
	border: 1px solid grey;
	size: 80%;	
}
.ausgabeTh {
	background-color: grey;
	color: white;
}
.ausgabeTd{
	padding-left: 1px;
	 padding-right: 1px;
}

.angebotTbl, .angebotTd, .angebotTh{
	border: 1px solid grey;
	width: 70%;
}
.angebotTd{
	width: 75%;
}
.angebotTh{
	width: 25%
}
/*------------------------------------------------------------------*/

@keyframes changeColour {
    0%   {background: #E2E2E2;}
    25%  {background: #A1A1A1;}
    50%  {background: #E2E2E2;}
    100% {background: #F3F3F3;}
} 
		
