/* pt-sans-narrow-regular - latin */
@font-face {
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/pt-sans-narrow-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/fonts/pt-sans-narrow-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/pt-sans-narrow-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/pt-sans-narrow-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/pt-sans-narrow-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/pt-sans-narrow-v17-latin-regular.svg#PTSansNarrow') format('svg'); /* Legacy iOS */
}

html {
background: url("/grafiken/bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

body {
	padding: 0px;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}

.inhalt {
	color: #444;
	font-size: 13px;
	line-height: 21px;
}

.left {
	text-align: left;
}

.page {
	margin: auto;
	width: 1000px;
	padding: 5px 15px 15px 15px;
}

.npfix {
	background-color: #CFCFCF;
}

#top-link {
display:none;
position:fixed;
right:5px;
bottom:5px;
#background: #fe8f3d;
border: 0px;
cursor: pointer;
#color: #fff;
#text-decoration:none;
#padding:10px;
}

.jump {
    position: relative;
    top: -50px;
}

.jump2 {
    position: relative;
    top: -40px;
}

.klickhand, .klickhand2 {
	cursor: pointer;
}

.smiliesversteckt {
	display: none;
	margin-top: 10px;
}

.smiliemenu {
	line-height: 30px;
	height: 30px;
	vertical-align: middle;
}

img.smiliemid {
	margin-bottom: -4px;
}

.zitat {
	border: 1px dotted #ddd;
	padding: 5px 8px;
}

.hidden {
	display: none;
}

.nodeco {
	text-decoration: none;
}

.sponsorsky {
	position: absolute;
	left: 50%;
	margin-left: 515px;
	top: 215px;
	text-align: left;
}

.fixedsky {
  position: fixed;
  top: 0px;
}

.sponsorsky2 {
	position: absolute;
	right: 50%;
	margin-right: 515px;
	top: 215px;
	text-align: left;
}

.fixedsky2 {
  position: fixed;
  top: 0px;
}

.menublock {
	position: absolute;
	top: 120px;
	width: 1000px;
	height: 40px;
	background:#fff;
	z-index: 2;
}

.menublock2 {
	position: absolute;
	top: 215px;
	width: 1000px;
	height: 40px;
	background:#fff;
	z-index: 2;
}

.fixed {
  position: fixed;
  top: 0px;
  	-moz-box-shadow: 0 1px 2px #ccc;
	-webkit-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
}

.loginblock {
	position: absolute;
	top: 161px;
	left: 50%;
	margin-left: 36px;
	width: 300px;
	height: 250px;
	background-color: #eee;
	z-index: 2;
	-moz-box-shadow: 0 2px 4px #aaa;
	-webkit-box-shadow: 0 2px 4px #aaa;
	box-shadow: 0 2px 4px #aaa;
	display: none;
}

.fixed2 {
  position: fixed;
  top: 41px;
}

/* Main Navigation */
ul#navigation {
	margin:0px auto;
	position:relative;
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 0px;
}

ul#navigation li {
	display:inline;
	margin:0;
	padding:0;
	float:left;
	position:relative;
}

ul#navigation li a {
	padding: 0px 25px;
	line-height: 40px;
	height: 40px;
	vertical-align: middle;
	color: #333;
	text-decoration: none;
	display: inline-block;
	border-right: 1px solid #ddd;

	-webkit-transition: color 0.2s linear, background 0.2s linear;
	-moz-transition: color 0.2s linear, background 0.2s linear;
	-o-transition: color 0.2s linear, background 0.2s linear;
	transition: color 0.2s linear, background 0.2s linear;
}

ul#navigation li a:hover {
	background:#ff9445;
	color:#fff;
}

ul#navigation li a.first {
	border-left: 0 none;
}

ul#navigation li a.last {
	border-right: 0 none;
}

ul#navigation li:hover > a {
	background:#ff9445;
	color: #fff;
}

/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
	visibility:visible;
	opacity:1;
}

ul#navigation ul, ul#navigation ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
	width:180px;
	background:#fff;
/* css3 transitions for smooth hover effect */
	-webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
	-moz-transition:opacity 0.2s linear, visibility 0.2s linear;
	-o-transition:opacity 0.2s linear, visibility 0.2s linear;
	transition:opacity 0.2s linear, visibility 0.2s linear;

  	-moz-box-shadow: 0 1px 3px #ccc;
	-webkit-box-shadow: 0 1px 3px #ccc;
	box-shadow: 0 1px 3px #ccc;
}

ul#navigation ul {
    top: 40px;
    left: 0px;
}

ul#navigation ul li ul {
    top: 0;
    left: 181px; /* strong related to width:180px; from above */
}

ul#navigation ul li {
	clear:both;
	width:100%;
	border:0 none;
	border-bottom:1px solid #ddd;
}

ul#navigation ul li a {
	background:none;
	color:#333;
	text-decoration:none;
	display:inline-block;
	border:0 none;
	float:left;
	clear:both;
	width: 130px;
}

.maincontainer {
	width: 1000px;
	margin: auto;
}

.kopf {
	height: 120px;
}

img.logo {
	float: left;
	width: 333px;
	height: 120px;
	margin-left: -4px;
}

.topmenu {
	float: right;
	width: 360px;
	color: #fff;
	margin-top: 25px;
}

.logininpl {
	width: 161px;
	float: left;
	background: #fff;
	border: 0px;
	color: #666;
	height: 28px;
	padding-left: 7px;
	padding-right: 7px;
}

.logininpr {
	width: 161px;
	float: right;
	background: #fff;
	border: 0px;
	color: #666;
	height: 28px;
	padding-left: 7px;
	padding-right: 7px;
}

.logininpchk {
	vertical-align: bottom;
   position: relative;
	top: -4px;
	margin-right: 4px;
}

.loginform1 {
	margin-top: 0px;
}

.loginform2 {
	margin-top: 10px;
	float: right;
	line-height: 28px;
	vertical-align: middle;
	color: #666;
}

.clear {
	clear: both;
}

.loginbtn {
	background: #fff;
	border: 0px;
	color: #666;
	height: 28px;
	padding-left: 7px;
	padding-right: 7px;
	cursor: pointer;
	float: right;
	margin-left: 12px;
}

.loginerror {
	background: #F94E3B;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 7px;
	padding-top: 8px;
	font-size: 12px;
	position: absolute;
	right: 50%;
	margin-right: -130px;
	top: 120px;
	color: #fff;
}

.loginerror2 {
	background: #F94E3B;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 7px;
	padding-top: 8px;
	font-size: 12px;
	position: absolute;
	right: 50%;
	margin-right: -179px;
	top: 160px;
	color: #fff;
}

.loggedinas {
	background: #fff;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 7px;
	padding-top: 8px;
	font-size: 12px;
	float: right;
	color: #666;
}

img.loggedinasavatar {
	float: right;
	margin-right: 10px;
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("/grafiken/iconsdark.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

.icon-white {
  background-image: url("/grafiken/iconslight.png");
}

.icon-pfeil-rechts { background-position: -468px -83px; }
.icon-melden { background-position: -155px -131px; }
.icon-daumenrauf { background-position: -107px -155px; }
.icon-daumenrunter { background-position: -131px -155px; }
.icon-kommentare { background-position: -251px -131px; }
.icon-suche { background-position: -347px -11px; }
.icon-views { background-position: -107px -131px; }
.icon-top { background-position: -107px -155px; }
.icon-starlight { background-position: -155px -11px; }
.icon-stardark { background-position: -131px -11px; }
.icon-permlink { background-position: -83px -179px; }
.icon-edit { background-position: -11px -83px; }
.icon-open { background-position: -323px -131px; }
.icon-close { background-position: -298px -131px; }
.icon-sticky { background-position: -131px -179px; }
.icon-posted { background-position: -155px -83px; }
.icon-plus { background-position: -419px -108px; }
.icon-zufall { background-position: -228px -131px;margin-top: 13px; }

.stickyposi {
	margin-top: 10px;
}

.icon-abstand {
	margin-left: 3px;
	margin-right: 3px;
	margin-top: -1px;
}

.icon-abstand2 {
	margin-left: 3px;
	margin-right: 3px;
	margin-top: 1px;
}

.trennerhor2 {
	width: 2px;
	height: 14px;
	background-color:	#dddddd;
	display: inline-block;
	margin-left: 3px;
	margin-right: 3px;
	margin-bottom: -2px;
}

.kommbtn, .forumbtn {
background: #fe8f3d;
border: 0px;
height: 30px;
padding-left: 7px;
padding-right: 7px;
cursor: pointer;
color: #fff;
}

.sprechblase {
    width: 10px;
    height: 9px;
    background: url("/grafiken/sprechblase.png") no-repeat;
	 position: relative;
	 top: -65px;
	 right: -111px;
}

.right {
	float: right;
}

.trennerhor {
	width: 2px;
	height: 14px;
	background-color:	#dddddd;
	display: inline-block;
	margin-left: 3px;
	margin-right: 3px;
	margin-bottom: -2px;
}

.suchform {
	float: right;
	display:	inline;
	margin-right: 5px;
	margin-top: 8px;
}

a.kommlink,a.kommlink:hover {
	color: #444;
	text-decoration: none;
}

.inpsuche {
	width: 145px;
	background: #fff;
	border: 0px;
	color: #666;
	height: 24px;
	padding-left: 6px;
	padding-right: 6px;
	border-right: 2px solid #ddd;
}

.suchbtn {
	background: #fff;
	border: 0px;
	color: #666;
	height: 24px;
	padding-left: 6px;
	padding-right: 6px;
	cursor: pointer;
	margin-left: 0px;
}

.blockontop {
	text-align: center;
	vertical-align: middle;
	width: 1000px;
	height: 90px;
	margin: auto;
}

.angesagtblock {
	margin-top: 55px;
	background: #fff;
	padding: 11px;
}

img.angesagtimg {

}

.distanz {
	margin-right: 10px;
}

.contentblock {
	margin-top: 15px;
	background: #fff;
	margin-bottom: 15px;
}


.contentlinks {
	float: left;
	width: 640px;
	padding: 20px;
}

.contentrechts {
	float: left;
	width: 300px;
	padding: 20px 0px 20px 0px;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	color: #444;
	font-size: 22px;
	margin-top: 2px;
}

h2 {

}

h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #444;
	font-size: 25px;
	margin-top: 2px;
	margin-bottom: 9px;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	color: #444;
	font-size: 13px;
	line-height: 21px;
}

img.post-image {
	background-color: #fff;
	padding: 6px;
	-moz-box-shadow: 0 1px 2px #ccc;
	-webkit-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
}

.usercontentimg {
	-moz-box-shadow: 0 1px 2px #ccc;
	-webkit-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
	width: 260px;
	height: 150px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 260px Auto;
	margin: 10px auto 10px auto;
}

a.link {
	color: #444;
	text-decoration: underline;
}

a.link:hover {
	text-decoration: underline;
	color: #ff8a33;
}

a.titlelink {
	text-decoration: none;
	color: #444;
}

a.titlelink:hover {
	text-decoration: none;
	color: #ff8a33;
}

.blocktitle {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #fff;
   width: 320px;
	background: rgba(255,148,69,1);
	background: -moz-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,148,69,1)), color-stop(100%, rgba(250,104,0,1)));
	background: -webkit-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
	background: -o-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9445', endColorstr='#fa6800', GradientType=0 );
   height: 30px;
	line-height: 30px;
	vertical-align: middle;
	text-align: center;
	margin-bottom: 10px;
}

.blocktitle2 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	color: #555;
	border-bottom: 1px dotted #ccc;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-bottom: 10px;
}

.topposttitel {
	height: 60px;
}

.toppostdetail {
	height: 21px;
	font-size: 11px;
}

.tippderwoche {
	margin-bottom: 20px;
}

.topderwoche {
	margin-bottom: 15px;
}

.topimgblock {
	width: 300px;
	position: relative;
	margin: auto;
}

img.topimage {
	background-color: #fff;
	display: block;
}

h3.toptitle {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #333;
	text-align: center;
	text-decoration: none;
    position: absolute;
    bottom: 0px;
	width: 300px;
	padding-top: 3px;
	padding-bottom: 3px;
	background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.8);
	margin-top: 0px;
	margin-bottom: 5px;
}

.tophits {

}

.toprating {
	display: none;
}

.newforum {
	display: none;
}

.toplinkblock2 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #555;
	margin-bottom: 10px;
	width: 300px;
}

.active {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	width: 145px;
	background: #ffaf74;
	text-align: center;
	height: 25px;
	line-height: 25px;
	vertical-align: middle;
	float: left;
}

.inactive {
	color: #555;
	text-decoration: none;
	cursor: pointer;
	width: 145px;
	background: #f5f5f5;
	text-align: center;
	height: 25px;
	line-height: 25px;
	vertical-align: middle;
	float: left;
}

.toplinkblock {
	width: 300px;
	float: left;
	margin-bottom: 5px;
	background: #f5f5f5;
	height: 81px;
}

.toplinkblocktext {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #555;
	width: 140px;
	padding-right: 10px;
	float: left;
}



.smallimg {
	padding-right: 10px;
	width: 140px;
	float: left;
}

a.toplink {
	color: #555;
	text-decoration: underline;
}

a.toplink:hover {
	text-decoration: underline;
	color: #ff8a33;
}

.toplinkblockfoot {
	margin-bottom: 8px;
	margin-top: 5px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.block-content {
	margin-bottom: 20px;
}

h3.posttitle,h1.posttitle {
	font-family: 'PT Sans Narrow', sans-serif;
	border-bottom: 1px solid #fe8c38;
	padding-bottom: 5px;
	margin-bottom: -5px;
	font-size: 24px;
	color: #444;
}

h2.posttitle {
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 24px;
	color: #444;
	padding: 0px;
	margin: 0px;
}

h2.posttitlekomm {
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 24px;
	color: #444;
	padding: 0px;
	margin: 0px;
	padding-top: 10px;
	margin-top: 12px;
	border-top: 1px solid #ddd;
}

.pleasereg {
	z-index: 2;
}

.kommentarblock {
	width: 640px;
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid #ddd;
}

.writekommentarblock {
	width: 640px;
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid #ddd;
}

.kommentaravatar {
	width: 120px;
	float: left;
}

.kommentartext {
	width: 520px;
	float: left;
}

.kommentarschreiben {
	width: 520px;
	float: left;
}

textarea.kommentarfeld {
	width: 506px;
	height: 120px;
	padding: 6px;
	background: #fff;
	border: 1px solid #ddd;
	color: #444;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 0px;
}

.kommentarblock2 {
	width: 600px;
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid #ddd;
	margin-left: 40px;
}

.kommentaravatar2 {
	width: 120px;
	float: left;
}

.kommentartext2 {
	width: 480px;
	float: left;
}

.kommentarzeit {
	color: #777;
	font-size: 12px;
}

.kommentarfunktionen {
	float: right;
	color: #444;
	font-size: 12px;
}

.userkommentar {
	padding-top: 12px;
	line-height: 19px;
}

.quelle {
	font-size: 11px;
	margin-top: 4px;
	color: #888;
}

a.linkquelle {
	color: #888;
	text-decoration: underline;
}

a.linkquelle:hover {
	color: #ff8a33;
}

p.details {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-bottom: 6px;
	color: #444;
	margin-top: 1px;
	padding-top: 4px;
	padding-bottom: 2px;
	border-bottom: 1px solid #dddddd;
}

.social {
	margin-top: 12px;
	margin-bottom: 5px;
}

.social2 {
margin-top: 15px;
margin-bottom: 5px;
}

.socialbutton {
	border: 0px;
	color: #ffffff;	
	text-align: center;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 14px;
	cursor: pointer;
}

.fbbutton {
	margin-right: 10px;
	background-color: #5879c9;
	float: left;
	width: 315px;
}

.fbbutton:hover {
	background-color: #6581c7;
}

.twitterbutton {
	background-color: #53a4d5;
	float: left;
	width: 315px;
}

.twitterbutton:hover {
	background-color: #5ea8d4;
}

.googlebutton {
	background-color: #dd4b39;
	float: left;
	width: 207px;
}

.contentads {
	margin-bottom: 10px;
	text-align: center;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 15px;
}

.googlebutton:hover {
	background-color: #dd5443;
}

hr.trenner {
	height: 3px;
	border: 0;
	color: #fe8c38;
	background: #fe8c38;
	margin-bottom: 10px;
	margin-top: 10px;
}



.rechts {
	float: right;
}

.center {
	text-align: center;
}

.lastcomment {
	height: 55px;
	width: 300px;
	overflow: hidden;
	background: #f5f5f5;
	float: left;
	margin-bottom: 5px;
}

img.smallavatar {
	float: left;
	margin-right: 10px;
}

.smalllastcomment {
	color: #555;
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	line-height: 15px;
	margin: 0px;
}

a.lastlink {
	color: #555;
	text-decoration: none;
}

a.lastlink:hover {
	color: #ff8a33;
}

.footer {
	background-color: #fff;
	padding: 20px;
	#margin-bottom: 15px;
}

.footblock {
	width: 240px;
	float: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	line-height: 20px;
	font-size: 12px;
}

.footheader {
	font-weight: bold;
	font-size: 13px;
	color: #555;
	margin-bottom: 8px;
}

.footfinal {
	width: 960px;
	text-align: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	line-height: 20px;
	font-size: 12px;
	border-top: 1px dotted #ddd;
	color: #555;
	margin-top: 20px;
	padding-top: 20px;
}

.hardl {
	text-align: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	float: left;
	line-height: 22px;
	vertical-align: middle;
	width: 155px;
}

.hardr {
	text-align: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	float: left;
	line-height: 22px;
	width: 145px;
	vertical-align: middle;
}

.ribbon {
  width: 200px;
  position: absolute;
  top: 182px;
  margin-left: -10px;
background: rgba(255,148,69,1);
background: -moz-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,148,69,1)), color-stop(100%, rgba(250,104,0,1)));
background: -webkit-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
background: -o-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
background: -ms-linear-gradient(top, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
background: linear-gradient(to bottom, rgba(255,148,69,1) 0%, rgba(250,104,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9445', endColorstr='#fa6800', GradientType=0 );
  height: 30px;
  color: #fff;
 	-moz-box-shadow: 0 1px 2px #333;
	-webkit-box-shadow: 0 1px 2px #333;
	box-shadow: 0 1px 2px #333;
	line-height: 30px;
	vertical-align: middle;
	text-align: center;
}

.ribbon .ribbon-fold:before {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #9e4201 transparent transparent transparent;
  bottom: -10px;
}

.ribbon .ribbon-fold:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

.ribbonposition {
	top: 277px;
}

.partnerliste {
	width: 640px;
	color: #444;
}

.partner1 {
	background: #f5f5f5;
	float: left;
	margin-bottom: 4px;
	line-height: 22px;
	height: 22px;
	vertical-align: middle;
	width: 155px;
	padding-left: 5px;
}

.partner2 {
	background: #f5f5f5;
	float: left;
	margin-bottom: 4px;
	line-height: 22px;
	height: 22px;
	vertical-align: middle;
	width: 100px;
	text-align: right;
}

.partner3 {
	background: #f5f5f5;
	float: left;
	margin-bottom: 4px;
	line-height: 22px;
	height: 22px;
	vertical-align: middle;
	width: 75px;
	text-align: right;
	padding-right: 5px;
}

a.partnerlinks {
	color: #555;
	text-decoration: none;
}

a.partnerlinks:hover {
	color: #ff8a33;
}

.account {
	width: 640px;
	color: #555;
	margin-bottom: 20px;
}

.accounteditl {
	width: 130px;
	float: left;
	height: 32px;
	line-height: 32px;
	vertical-align: middle;
}

.accounteditr {
	width: 510px;
	float: left;
	height: 32px;
	line-height: 32px;
	vertical-align: middle;
}

.accounteditinfo {
	float: left;
	width: 510px;
	padding-left: 130px;
	font-size: 11px;
	line-height: 16px;
	margin-top: 5px;
	margin-bottom: 5px;
}

input.account {
	width: 250px;
	height: 28px;
	padding-left: 6px;
	background: #fff;
	border: 1px solid #ddd;
}

.accountbtn {
background: #fe8f3d;
border: 0px;
height: 30px;
padding-left: 7px;
padding-right: 7px;
cursor: pointer;
color: #fff;
}

.pages {
	text-align: center;
	padding-bottom: 6px;
	padding-top: 3px;
}

.pages2 {
	text-align: center;
	margin-top: 15px;
	padding-bottom: 6px;
	padding-top: 3px;
}

.notification {
	margin-bottom: 10px;
	margin-top: 4px;
}

.pageactive {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #fe8f3d;
	font-weight: bold;
	text-decoration: none;
	padding: 4px 7px 3px 7px;
	color: #fff;
	display: inline;
}

.profilblock {
	width: 640px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: rgb(68, 68, 68);
	font-size: 13px;
	line-height: 21px;
}

.profilavatar {
	width: 120px;
	float: left;
}

.profiluser {
	float: left;
	width: 250px;
}

.profildetails {
	float: left;
	width: 270px;
}

.profilmehr {
	float: left;
	width: 520px;
	padding-left: 120px;
}

.profilkommentar {
	border-bottom: 1px solid rgb(221, 221, 221);
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: rgb(68, 68, 68);
	font-size: 13px;
	line-height: 21px;
}

.profilkomdetail {
	font-size: 12px;
	color: #777;
	margin-bottom: 5px;
}

a.linkpages {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color: #F5F5F5;
	text-decoration: none;
	padding: 4px 7px 3px 7px;
	color: #333333;
}

a.linkpages:hover {
	text-decoration: none;
	background-color: #fe8f3d;
	color: #fff;
}

h3.posttitle2 {
	font-family: 'PT Sans Narrow', sans-serif;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 5px;
	margin-bottom: 8px;
	font-size: 24px;
	color: #444;
}

h1.posttitle2 {
	font-family: 'PT Sans Narrow', sans-serif;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 10px;
	margin-bottom: 8px;
	font-size: 24px;
	color: #444;
}

h1.posttitle3 {
	font-family: 'PT Sans Narrow', sans-serif;
	margin-bottom: 8px;
	padding-bottom: 0px;
	font-size: 24px;
	color: #444;
}

.forumtop {
	margin-bottom: 3px;
}

.forumindexthread {
	width: 640px;
	margin-bottom: 12px;
}

.forumindexthread:hover {
	background-color: #f5f5f5;
}

.forumindeximage {
	width: 45px;
	float: left;
}

.forumcats {
	width: 300px;
	float: left;
	line-height: 20px;
}

.forumcatsdetail {
	color: #888;
	font-size: 12px;
}

.forumlast {
	width: 295px;
	float: left;
	text-align: right;
	color: #888;
	font-size: 12px;
	line-height: 20px;
}

img.forumimg {
	margin-top: 4px;
}

a.linklight {
	color: #888;
	text-decoration: underline;
}

a.linklight:hover {
	text-decoration: underline;
	color: #ff8a33;
}

.pace .pace-progress {
  background: #f78b33;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;

  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

.pace-inactive {
  display: none;
}

.barontop {
	height: 32px;
	margin-top: 15px;
}

.barontopl {
	float: left;
	height: 32px;
	vertical-align: middle;
	line-height: 32px;
	text-align: left;
	width: 775px;
	padding-left: 15px;
	background-color: #FFFFFF;
}

.barontopr {
	float: right;
	height: 32px;
	width: 210px;
}

img.socialicon {
	margin-left: 10px;
}

img.picdumpimage {
	margin-bottom: 10px;
} 

.linkdump {
	text-align: left;
}

.linkdumppart {
	width: 100%;
	padding-top:4px;
	padding-bottom:5px;
	border-bottom: 1px solid #f2f2f2;
}

.linkdumppart:last-child {
	border-bottom: none;
}

a.linkdumplink {
	font-weight:bold;
	text-decoration:none;
	color: #444444;
}

a.linkdumplink:hover {
	color: #ff8a33;
}

.linkdumpdetail {
	font-size:10px;
	color:#aaaaaa;
	margin-top: 1px;
}

.linkdumpicon {
	color: #999999;
	width: 22px;
	display: inline-block;
}

#amazoninfo {
	display: none;
	position: fixed;
	top: 50%;
	margin-top: -120px;
	width: 600px;
	background-color: #ffffff;
	padding: 50px;
	border-radius: 20px;
	line-height: 24px;
	font-size: 15px;
	left: 50%;
	margin-left: -350px;
    box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.99);
    -moz-box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.99);
    -webkit-box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.99);
	border: 5px solid #ff8a33;
}

#amazoninfoclose {
	position: absolute;
	top: 15px;
	right: 25px;
	text-decoration: underline;
	font-size: 13px;
	cursor: pointer;
}

#amazoninfoclose:hover {
	color: #ff8a33;
}