@charset "utf-8";
/* 
Projekt: Webauftritt PR-Kueche.de
Author: Niels Weithofer
Date: 12.04.2013 
*/



/* ========================
	Mobile Screen Styles
======================== */

body {
	background-color: #fff;
	color:#5d5d5d;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	margin:0;
	padding:0;
}

/* Wrapper */

#wrapper {
	width:100%;
}

#inner-wrapper{
	width:100%;
}	

a {
	text-decoration: none;
	color:#94c154;
	font-weight:bold;
}

p {
	margin:0 0px 15px 0;
	line-height: 130%;
	width:95%;
}	

img {
	border: none;
	margin: 0px 15px 8px 0px;
}

.alignleft {
	border: none;
	float: left;
	margin: 0px 10px 5px 0px;
}

.alignright {
	float: right;
	margin: 5px 0px 5px 10px;
	max-width:34%;
	height:auto;
}		

ul {
	margin: 0;
	padding: 0px;
	display:block;
}

li {
	/*list-style: square;
	line-height: 140%;*/
	margin: 10px 10px 10px 15px;	
}	

.clear {clear: both;}

.clear-m {clear: both;}

.clearmobile {clear: both;}

.hide-m {
	display:none;
}	

iframe {
	width:90%!important;
	margin: 15px 15px 5px 0px;
	max-height: 250px;
}	

h2 {
	margin:15px 0 15px 0;
}		

/**************************
******** HEADER *************
**************************/

#header {
	width: 100%;
	height: 70px;
	border-bottom: 2px solid #44444f;
	background-color:#fbbf09;

}

/**************************
********** LOGO ***********
**************************/

.logo {
	width:200px;
	height: 50px;
	background-image:url(img/mobile-img/logo.png);
	background-repeat:no-repeat;
	float:left;
	margin:10px 0 0 10px;
	padding: 0px;
}

/* Hide Logo headline */
.logo h1 {
    margin:0;
    padding:0;
}
.logo h1 a {
    display:block;
    margin:0;
    text-indent:-9999px;
    font-size:0;
    height:50px;
    width:200px;
}

/**************************
******* METANAVI **********
**************************/

.metanavi {
	display:none;
}	

/**************************
****** Badge *********
**************************/

.badge {
	display:none;
}
	
/*----------------------------
	CSS3 Animated Navigation
-----------------------------*/


.fancyNav{
	/* Affects the UL element */
	overflow: hidden;
	display: block;
	
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	/*background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);*/
	width: 80%;
	margin: 0 auto;
	margin-top:10px;
	margin-bottom:20px;
}

.fancyNav li{
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	
	background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	
	position:relative;
	
	float: left;
	list-style: none;
	margin:5px 0 0 0;
	width:99%;
	text-align:center;
	border-radius:8px;
	border: 1px solid #44444f;
}

.fancyNav li:after{

	/* This creates a pseudo element inslide each LI */	
	
	content:'.';
	text-indent:-9999px;
	overflow:hidden;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:1;
	opacity:0;
	
	/* Gradients! */
	
	background-image:-webkit-gradient(linear, left top, right top, from(rgba(168,168,168,0.5)),color-stop(0.5,rgba(168,168,168,0)), to(rgba(168,168,168,0.5)));
	background-image:-moz-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-o-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-ms-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	
	/* Creating borders with box-shadow. Useful, as they don't affect the size of the element. */
	
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	/* This will create a smooth transition for the opacity property */
	
	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
}

/* Treating the first LI and li:after elements separately */

.fancyNav li:first-child{
	/*border-radius: 4px 0 0 4px;*/
}

.fancyNav li:first-child:after,
.fancyNav li.selected:first-child:after{
	box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	border-radius:8px;

	/*border-radius:4px 0 0 4px;*/
}

.fancyNav li:last-child{
	/*border-radius: 0 4px 4px 0;*/
}

/* Treating the last LI and li:after elements separately */

.fancyNav li:last-child:after,
.fancyNav li.selected:last-child:after{
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	border-radius:8px;
	
	/*border-radius:0 4px 4px 0;*/
}

.fancyNav li:hover:after,
.fancyNav li.selected:after,
.fancyNav li:target:after{
	/* This property triggers the CSS3 transition */
	opacity:1;
	border-radius:8px;
}

.fancyNav:hover li.selected:after,
.fancyNav:hover li:target:after{
	/* Hides the targeted li when we are hovering on the UL */
	opacity:0;
}

.fancyNav li.selected:hover:after,
.fancyNav li:target:hover:after{
	opacity:1 !important;
}

.current{
	opacity:1 !important;
}

/* Styling the anchor elements */

.fancyNav li a{
	color: #5d5d5d;
	display: inline-block;
	/*font: 20px/1 Lobster,Arial,sans-serif;*/
	padding: 12px 35px 14px;
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}

	
	
/**************************
********** MAIN ***********
**************************/

#main {
	width:88%;
	padding:0;
	margin:0 auto;
	}


/**************************
********* CONTENT *********
**************************/

#content-start{
	width:100%;
	margin:20px 0 0 0px;
	padding:0 0 30px 0;
	height:auto;
	min-height:100px;
}	


#content {
	width:100%;
	margin:2px 0 0 0px;
	padding:0 0 0 0;
	height:auto;
}	


#content img {
	width:80%;
	height:auto;
}	

#content h1 {
	font-size:140%;
	font-weight:bold;
	margin: 0 0 20px 0;
	color:#1f497d;
}

#content h2 {
	font-size:120%;
	font-weight:bold;
	margin: 30px 0 15px 0;
	color:#1f497d;
}

#content li {
	list-style: square;
	line-height: 140%;
	margin: 10px 10px 10px 15px;	
}

.teasergrid {
	width:100%;
	height:auto;
	list-style:none!important;
	float:left;
	margin:0 auto;	
	margin-bottom:10px;
}	

.teaserwrapper a {
	display:block;
	width:100%;
	height:auto;
	text-decoration:none;
	color:#fff;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-webkit-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc!important;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#c1c1c1', Direction=135, Strength=1);
	opacity:1; 
}	

.teaserwrapper a:hover {
	opacity:1;
}	

.teasergrid h1 {
	color:#fff;
	font-weight:bold;
	width:auto;
	background-image:url(img/teaser_h1_bg.png);
	background-repeat:repeat;
	line-height:180%;
	margin:160px 0 0 0;
	padding: 0 10px 0 10px;
	
}

.teasergrid-sidebar {
	width:100%;
	height:auto;
	background-color:orange;
	list-style:none!important;
	margin: 0px 0px 15px 0px;	
}

.teasergrid-sidebar h1 {
	color:#fff;
	font-weight:bold;
	width:auto;
	background-image:url(img/teaser_h1_bg.png);
	background-repeat:repeat;
	line-height:40px;
	margin:10px 0 0 0;
	padding: 0 10px 0 10px;
	
}	


/* BG-Bilder für Teaser */

.referenzen {
	background-image:url(img/teaser_referenzen.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}	

.training {
	background-image:url(img/teaser_training.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}	

.reden {
	background-image:url(img/teaser_reden.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}

.history {
	background-image:url(img/teaser_history.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}

.publishing {
	background-image:url(img/teaser_publishing.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}

.presseservice {
	background-image:url(img/teaser_presseservice.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}

.consulting {
	background-image:url(img/teaser_consulting2.jpg);
	background-repeat:no-repeat;
	background-size: 100% auto;
}

.title-img {
	display:none;
}
	
/**************************
********* SIDEBAR *********
**************************/

#sidebar {
	width:90%;
	margin:20px 0 0 20px;
	padding:0 0 30px 0;
	height:auto;
	/*background-color:pink;*/
}

#sidebar h2 {
	font-size:140%;
	font-weight:bold;
	margin: 0 0 20px 0;
	color:#1f497d;
	line-height:130%;
}

#sidebar img {
	width:100%;
	height:auto;
}	

/* Kundenlogos */

.kundenlogos {
}


.kundenlogos img {
	-moz-box-shadow: 5px 5px 5px #ccc;
	-webkit-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc!important;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#c1c1c1', Direction=135, Strength=1);
	/*opacity: 0.8;*/
	width:45%!important;
	height:auto;
	margin: 0 10px 10px 0!important;
}


.kundenlogos img:hover {
	opacity: 1;
}


/**************************
********* FOOTER **********
**************************/

.fancyFoot{
	/* Affects the UL element */
	overflow: hidden;
	display: inline-block;
	
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	width:100%;
	height:28px;
	border-top:2px solid #44444f;
}

.fancyFoot li{
	
	border-right: 1px solid rgba(9, 9, 9, 0.125);
	
	
	position:relative;
	
	float: right;
	list-style: none;
	margin:0;
}

.fancyFoot li:after{

	/* This creates a pseudo element inslide each LI */	
	
	content:'.';
	text-indent:-9999px;
	overflow:hidden;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:1;
	opacity:0;
	
	/* Gradients! */
	
	background-image:-webkit-gradient(linear, left top, right top, from(rgba(168,168,168,0.5)),color-stop(0.5,rgba(168,168,168,0)), to(rgba(168,168,168,0.5)));
	background-image:-moz-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-o-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-ms-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	
	/* Creating borders with box-shadow. Useful, as they don't affect the size of the element. */
	
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	/* This will create a smooth transition for the opacity property */
	
	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
}

.fancyFoot li:hover:after,
.fancyFoot li.selected:after,
.fancyFoot li:target:after{
	/* This property triggers the CSS3 transition */
	opacity:1;
}

.fancyFoot:hover li.selected:after,
.fancyFoot:hover li:target:after{
	/* Hides the targeted li when we are hovering on the UL */
	opacity:0;
}

.fancyFoot li.selected:hover:after,
.fancyFoot li:target:hover:after{
	opacity:1 !important;
}

/* Styling the anchor elements */

.fancyFoot li a{
	color: #5d5d5d;
	display: inline-block;
	/*font: 15px/1 Lobster,Arial,sans-serif;*/
	padding: 6px 20px 6px;
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}



#footer {
	color:#7d7d7d;
	display:block;
	font-size:13px;
	font-weight:bold;
	padding:5px 0;
	text-align: center;
	text-decoration:none;
	/*text-shadow: 0px 1px 1px #fff; */
	margin-top:10px;
	border-top: 1px solid #DBDBDD;
}

#footer a{
	color:#7d7d7d;
	font-weight:bold;
	text-decoration:underline;
}	

#ooter ul {padding:0px;margin:0px;}

#footer li {display:inline;margin:0px;}

#footer li a {text-decoration:none;}




