
/*body { 
	background: #efefef url(../img/background.png) repeat top center;
	font: normal 12px/12px Arial,Helvetica;
	color: #272727;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}*/
.header_temp {
	/*background: #efefef url(../img/temp_header.jpg) no-repeat top center;*/
	width: 100%;
	height: 130px;
	display: block;
}


.slides_background_current {
	background: #e2e2e2;
	width: 100%;
	height: 400px;
	display: block;
	position: absolute;
	z-index: 103;
}
.slides_background_next {
	background: #e2e2e2;
	width: 100%;
	height: 400px;
	display: block;
	position: absolute;
	z-index: 102;
}

#portfolio_cycler{position:relative;}
#portfolio_cycler div{position:absolute;z-index:1}
#portfolio_cycler div.active{z-index:3}

/*
	Slideshow style
*/


/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	width: 960px;
	height: 400px;
	overflow: hidden;
	position:relative;
	display:none;
	margin: 0 auto;
	z-index: 105;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides {
	position: absolute;
	top: 130px;
	left: 0px;
	z-index: 107;
}

#slides  {
	width: 100%;

	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMWQxZDEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(209,209,209,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(209,209,209,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(209,209,209,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(209,209,209,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(209,209,209,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(209,209,209,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#d1d1d1',GradientType=0 );

	border-top: 8px solid #D7D7D7;
	border-bottom: 8px solid #D7D7D7;
}
.slide {
	padding: 0px 0px 0px 0px;
	width: 960px;
	height: 230px;
	display:block;
	top: 40px;
	position: relative;
	z-index: 200;
}






/* RUNDE BUTTONS */
.slider_navigation_outer span {
	position: absolute;
	top: 170px; /* 50% */
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #6A6A6A;
	cursor: pointer;
	z-index: 200;
	opacity: 0;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
	-webkit-transition: opacity 0.4s ease-in-out 0.2s;
	-moz-transition: opacity 0.4s ease-in-out 0.2s;
	-o-transition: opacity 0.4s ease-in-out 0.2s;
	-ms-transition: opacity 0.4s ease-in-out 0.2s;
	transition: opacity 0.4s ease-in-out 0.2s;
}
#slides:hover .slider_navigation_outer span {
	opacity: 1;
}
.slider_navigation_outer span:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 5px;
	left: 5px;
	background: transparent url(../img/arrows.png) no-repeat top left;
	border-radius: 50%;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.slider_navigation_outer span:hover:after {
	box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.slider_navigation_outer span:active:after {
	box-shadow: 1px 1px 1px rgba(255,255,255,0.1);
}
.slider_navigation_outer span.slider_next:after {
	background-position: top right;
}
.slider_navigation_outer span.slider_prev{
	left: 15px;
}
.slider_navigation_outer span.slider_next {
	right: 15px;
}


/*
	Pagination
*/

.slider_pagination_outer {
	width: 100%;
	position: absolute;
	top: 0px;
	/*margin:26px auto 0;*/
	z-index: 999;
}
.slider_pagination {
	width: 100px;
	margin: 0 auto;
	padding: 10px 0px 0px 0px;
}
.slider_pagination span a,
.slider_pagination span a:link {
	width: 100%;
	height: 100%;
	display: block;
}
.slider_pagination span {
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #6A6A6A;
	margin: 3px;
	cursor: pointer;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset, 1px 1px 1px rgba(255,255,255,0.1);
}
.slider_pagination span.current:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
/*
.slider_pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.slider_pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.slider_pagination li.current a {
	background-position:0 -12px;
}
*/




.slider_heading {
	font: normal 42px/42px Arial,Helvetica;
	color: #3B3B3B;
	text-decoration: none;
	text-align: left;
	letter-spacing: -3px;
	z-index: 500;
	position: absolute;
	/*left: -800px;*/
	top: 40px;
}


.slider_content {
	font: normal 14px/18px Arial,Helvetica;
	z-index: 500;
	position: absolute;
	/*left: -800px;*/
	width: 400px;
}
.slider_content {
	margin: 100px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}


.slider_content_img {
	z-index: 500;
	position: absolute;
	left: 450px;
	width: 400px;
}

.slider_ahref_readmore {
	margin: 0px 0px 0px 0px;
	padding: 250px 0px 0px 0px;
}
a.slider_readmore {
	color: #7D7D7D !important;
}
a.slider_readmore:link {
	background: #E8E8E8 url(../img/icon_readmore.png) no-repeat right top;
	color: #7D7D7D !important;
	display: inline-block;
	font-size: 13px;
	line-height: 22px;
	padding: 0px 30px 0px 7px;
	text-transform: uppercase;
	text-decoration: none;
}
a.slider_readmore:hover {
	background-color: #93B008;
	background-position: right -0px;
	color: #010101 !important;
}