/*
CSS-Animation Slide von rechts 
http://www.dirkpfuhl.de/

Dirk Pfuhl 2014, www.dirkpfuhl.de
*/

html, body {
	height: 100%;
}
body {
	width: 100%;
	overflow: hidden;
  font-size: 14px;
  font-family: helvetica, arial, sans-serif;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  background-color: #FAFAF9;
  background-image: url("images/hintergrund_body.png");
  background-repeat: repeat-x;
  }
#container	{
	height: 100%;
	width: 100%;
  overflow: hidden;
  }
#banner {
  background-image: url("images/hintergrund_banner.png");
  background-repeat: repeat-x;
  height: 130px;
  }
#logo {
  margin-top: 10px;
  margin-left: 40px;
  } 
#container-content-main {
  position: relative;
  height: calc( 100% - 130px );
  overflow: hidden;
  }
#navigation {
	position: absolute;
	z-index: 2000;
	width: 320px;
	top: 0px;
	right: 0px;
}
#navigation h1 {
  font-size: 2.4em; 
  font-weight: normal;
  color: #F28B02;
  color: #ffffff;
  text-align: left;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #06285E;
}
#navigation ul {
	width: 320px;
	display: block;
	list-style: none;
  padding: 0;
	margin: 0;
  }
#navigation li {
  margin-bottom: 10px;
  background-color: #000000;
  box-shadow: -2px 2px 2px #999999;
}
#navigation li a {
  display: table-cell;
  vertical-align: middle;
  width: 300px;
  height: 30px;
  color: #ffffff;
  font-variant: small-caps;
  font-size: 1.4em;
  text-decoration: none;
  padding: 10px;
}
.slide-content{
  padding-left: 50px;
  padding-right: 400px;
}
.slide-content h2{
	font-size: 6em;
	color: #FF9200;
	margin-top: 20px;
  margin-bottom: 20px;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
.slide-content p{
	font-size: 18px;
	padding: 10px;
	line-height: 24px;
	color: #111111;
}
.content {
	position: absolute;
	z-index: 2;  
  }
.slide-right {
	position: absolute;
  left: 100%;
	width: 0%;
	height: 100%;
	background-color: #000000;
	z-index: 2;
  box-shadow: -5px 0 5px #999999;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	-ms-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
.slide-right:target{
  left: 40px;
	width: calc( 100% - 40px );
	background-color: #ffffff;
}
#navigation li a:hover, 
#menu-01:target ~ #navigation #menu-right #link-menu-01,
#menu-02:target ~ #navigation #menu-right #link-menu-02,
#menu-03:target ~ #navigation #menu-right #link-menu-03,
#menu-04:target ~ #navigation #menu-right #link-menu-04 {
	background-color: #FF9200;
	color: #06285E;
  }