/***** BODY ******/
body{
	position: relative;
	min-width: 960px;
	background-color: #f0f0f0;
	font-family: Calibri, Arial, sans-serif;
}
/*
@font-face{
	font-family: 'Duru Sans';
	src: url('../fonts/Duru Sans.eot');
	src: url('../fonts/Duru Sans.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/Duru Sans.woff') format('woff'),
	     url('../fonts/Duru Sans.otf') format('truetype'),
	     url('../fonts/Duru Sans.svg#Duru Sans') format('svg');
}
*/

.cookies {
	display: none;
	position: absolute;
	bottom: 0;
	background-color: rgba(0,0,0, 0.5);
	left: 0;
	right: 0;
	padding: 20px 50px;
	text-align: center;
}
	.cookies > p {
		float: left;
		width: 70%;
		font-size: 13px;
		color: #FFF;
		margin: 0;
	}
	.cookies > button {
		float: left;
		background-color: #F90;
		border: 0;
		text-transform: uppercase;
		color: #FFF;
		padding: 5px 15px;
	}

.newsletter {
	float: left;
	margin-top: 20px;
}
	.newsletter > p {
		margin: 0 0 1px 1px;
	}
	.newsletter > input {
		width: 150px;
		padding-right: 26px;
	}
	.newsletter > span {
		display: inline-block;
		height: 26px;
		line-height: 28px;
		border: 1px solid #ccc;
		border-radius: 3px;
		width: 25px;
		margin: -1px 0 0 -27px;
		text-align: center;
		vertical-align: middle;
		cursor: pointer;
	}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 110;
}

.captcha-form {
	display: none;
	position: fixed;
	top: 150px;
	left: 0;
	right: 0;
	width: 50%;
	max-width: 350px;
	margin: 0 auto;
	background-color: #FFF;
	z-index: 111;
	padding: 50px;
	text-align: center;
	border-radius: 10px;
}
	.captcha-form .close {
		position: absolute;
		top: 5px;
		right: 5px;
		background-color: #FFF;
		width: 20px;
		height: 20px;
		line-height: 20px;
		color: #000;
		font-size: 16px;
		cursor: pointer;
	}
	.captcha-form .error {
		border: 1px solid #F00;
	}
	.captcha-form .captcha {
		vertical-align: super;
	}
	.captcha-form input {
		vertical-align: sub;
	}
	.contact-btn,
	.captcha-form button {
		background-color: #F90;
		border: 0;
		text-transform: uppercase;
		color: #FFF;
		padding: 5px 15px;
	}

.contact-title {
	margin: 40px 0 15px;
}
.contact-form label {
	padding: 6px 10px 0 0;
}
.contact-form input,
.contact-form textarea {
	width: 450px;
}

.contact-form .contact-btn {
	margin: 10px 0 10px 140px;
}

.contact-form .error {
	display: none;
}

h3 {
	font-size: 18px;
	line-height: 20px;
}

/***** HEADER ******/
header{
	width: 94%;
	padding: 0 3%;
	height: 90px;
	background: url("../img/bg_header.gif") repeat-x scroll 0 0px transparent;
	margin-top: -3px;
}
/* links */
header a{
	display: block;
	height: 60px;
	text-indent: -999em;
	margin-top: 19px;
}
header .left{
	float: left;
}
header .right {
	float: right;
}
header .right.text {
	color: #2F3F9A;
	font-size: 18px;
	margin: 27px 0 0 0;
	padding: 0 15px 0 0;
	border-right: 1px solid #CCC;
	line-height: 50px;
}
header a.left > img.left {
	margin: 11px 10px 0 0;
}
header .logo{
	width: 140px;
	background: url("../img/logo_bz.png") no-repeat scroll 10px 0 transparent;
}
header .r_border{
	border-right: 1px solid #ccc;
}
header .social{
	padding: 0 0 0 10px;
}
header .social a{
	float: left;
	width: 32px;
	height: 32px;
	margin-left: 8px;
    margin-top: 36px;
	background: url("../img/logo_fb.png") no-repeat scroll 0 0 transparent;
}
header a.fl{
	background-image: url("../img/logo_fl.png");
}
header a.rss{
	background-image: url("../img/logo_rss.png");
}
header a.yt{
	background-image: url("../img/logo_yt.png");
}
header a.tw{
	background-image: url("../img/logo_tw.png");
}
header .welcome{
    background: url("../img/logo_welcome.png") no-repeat scroll 0 12px transparent;
    height: 50px;
    margin-top: 30px;
    width: 228px;
}
header.en .welcome{
    background-image: url("../img/logo_welcome_en.png");
}
header.de .welcome{
    background-image: url("../img/logo_welcome_de.png");
}



/***** BREADCRUMP ******/
.breadcrumb{
	width: 960px;
	margin: 0 auto;
	height: 40px;
}
.breadcrumb li{
	float: left;
	padding: 10px 10px 10px 5px;
	height: 20px;
	list-style: none;
}
.breadcrumb li a{
	padding-right: 9px;
	color: #666;
}

.breadcrumb li.size{
	float: right;
	padding: 10px 2px;
}
.breadcrumb li.size a{
	display: block;
	padding-right: 0px;
	padding-top: 2px;
	color: #444;
	font-size: 17px;
}
.breadcrumb li.incr a{
	font-size: 23px;
	padding-top: 0px;
	padding-right: 10px;
}
.breadcrumb li.decr a{
	font-size: 12px;
	padding-top: 4px;
}

/***** CONTENT ******/
#backgrounds {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#backgrounds img{
	width: 100%;
	height: auto;
	display: block;
}
#backgrounds span.plugin_picture{
	display:none;
	line-height: 0px;
	width: 100%;
	height: auto;
}
#backgrounds span.plugin_picture:FIRST-CHILD{
	display:block;
}
.index #backgrounds span.plugin_picture img{
	min-height: 379px;
}

/* .js .index #backgrounds img.plugin_picture{
	display:none;
}
.js .index #backgrounds img.plugin_picture:FIRST-CHILD{
	display:block;
} */

.content{
	width: 960px;
	margin: 0 auto;
	background-color: #fff;
	padding: 20px 0;
}

.content h1{
	font-size: 25px;
	color: #142a53;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
	font-family: Duru Sans, Arial, sans-serif;
}
aside{
	width: 220px;
	float: left;
}
.content_side{
	width: 700px;
	float: right;
	padding: 0 20px;
	min-height: 300px;
}


.index_content{
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
}
body.index #news_list{
    background: rgb(255,255,255);
    background: rgba(255,255,255, 0.85);
    min-height: 280px;
    position: absolute;
    left: 3%;
    top: 20px;
    min-width: 350px;
    width: 30%;
    max-width: 515px;
    z-index: 10;
    padding: 15px 15px 0;
}
body.index #news_list h2{
	color: #0f218b;
	font-size: 18px;
	line-height: 22px;
	font-weight: normal;
	font-family: Duru Sans, Arial, sans-serif;
}
body.index #news_list .news{
	position: absolute;
}
body.index #news_list .date{
    color: #333333;
    float: left;
    font-family: Duru Sans,Arial,sans-serif;
    font-size: 14px;
    height: 197px;
    padding-right: 10px;
    width: 80px;
    overflow: hidden;
}
body.index #news_list .article{
    /* border-left: 1px solid #DDDDDD; */
    color: #333333;
    overflow: hidden;
    max-width: 100%;
    max-height: 225px;
}
body.index #news_list .article h3{
    line-height: 20px;
    width: 100%;
    display: block;
}
body.index #news_list .article h3 a{
    color: #FF7100;
    font-family: Duru Sans,Arial,sans-serif;
    font-size: 17px;
}
body.index #news_list .article h4{
	font-size: 13px;
	line-height: 10px;
	color: #999;
}
body.index #news_list .article p.wrap {
	height: 161px;
	height: auto;
    max-height: 178px;
    overflow: hidden;
    text-align: justify;
}
body.index #news_list .article .more{
	font-size: 13px;
	color: #ff7100;
	text-decoration: underline;
	position: absolute;
	right: 0;
	bottom: -10px;
}

#news_list #news_slides{
}

#news_list a.prev,
#news_list a.next{
	display: none;
	float: right;
	font-size: 18px;
	height: 30px;
	line-height: 27px;
	padding: 0px 10px;
	width: 10px;
	background: rgb(255,255,255);
    background: rgba(255,255,255, 0.85);
    position: relative;
    top: 258px;
    right: -15px;
}
#news_list a.next{
	border-left: 1px solid #ccc;
}
#news_list a.prev{
}
/***** NEWS ******/
.news ul.months{
	font-size: 16px;
	font-family: Duru Sans, Arial, sans-serif;
	list-style: inside;
	list-style-type: square;
}
.news ul.months li{
	padding: 4px 2px;
}
.news ul.months a{
	color: #142a53;
}

.wrap .news{
	margin-bottom: 20px;
}
.wrap .news .thumb {
	float: left;
	width: 105px;
}
.wrap .news .date{
	float: left;
	width: 90px;
	background-color: #142a53;
	font-size: 16px;
	padding: 7px 8px;
	color: #fff;
	text-align: center;
}
.wrap .news .thumb > img {
	max-width: 105px;
	max-height: 105px;
}

.wrap .news .article{
	float: left;
	width: 560px;
	padding: 0 0 10px 10px;
	border: 1px solid #eee;
	border-width: 0 0 1px 1px;
}
.wrap .news .article h3 a{
	color: #ff7000;
}
.wrap .news .article h4{
	coloe: #888;
	padding: 2px 0;
}
.wrap .news .article p{
	text-align: justify;
}
.news .content_side>p>img:FIRST-CHILD{
	padding: 0 10px 10px 0;
}
.wrap .news .article .more{
	float: right;
	padding: 10px 0 0 0;
	color: #ff7000;
}

div.endless_page_template.loading{
	opacity: 0.8;
}

.interviews .interview{
	float: left;
	width: 215px;
	height: 244px;
	margin-right: 8px;
}
.interviews .brake{
	margin-right: 0;
}
.interview .logo{
	display: block;
	width: 200px;
	height: 120px;
	border: 1px solid #ccc;
	background: url("../img/icon_pdf_download.png") no-repeat scroll 50% 50% transparent;
}
.interview a.logo:hover{
	opacity: 0.8;
}
.interview .logo_wrap:hover{
	background: url("../img/icon_zoom.png") no-repeat scroll right bottom transparent;
	width: 201px;
	cursor: pointer;
}
.interview .date{
	color: #ff7000;
	padding-left: 10px;
	background: url("../img/icon_date.png") no-repeat left center transparent;
}


/***** GALLERY ******/
a.image_item:hover{
	text-decoration: none;
}
a.image_item{
	float: left;
	width: 200px;
	height: 220px;
	margin-right: 30px;
}
a.brake{
	margin-right: 0;
}
a.image_item img{
	padding: 6px;
	border: 1px solid #eee;
}
a.image_item .title{
	display: block;
	color: #454545;
}
a.image_item .more{
	display: block;
	color: #ff7000;
	padding-left: 13px;
	background: url("../img/icon_gallery.gif") no-repeat left center transparent;
}

/***** MENU ******/
menu{
	background-color: #fff;
	display: block;
	width: 960px;
	margin: -38px auto 0 auto;
	height: 38px;
	/* position: relative;
	z-index: 100; */
}
body.index menu{
	width: 94%;
	padding: 0 3%;
	margin: 0;
}
menu li{
	list-style: none;
	float: left;
}
menu.top li ul{
	display: none;
	/* @todo; */
}
menu a{
	background-color: #fff;
    color: #142A53;
    display: block;
    font-family: Duru Sans,Calibri,Arial,sans-serif;
    font-size: 12px;
    height: 34px;
    line-height: 36px;
    padding: 2px 17px;
    text-decoration: none;
    text-transform: uppercase;
}

menu.top{
	position: relative;
    z-index: 100;
}
menu.top li.selected, menu.top li.ancestor{
    background: url("../img/menu_selected.png") no-repeat scroll 50% 0 transparent;
    margin-top: -5px;
    padding-top: 5px;
    /* z-index: 102;
    position: relative; */
}
menu.top a{
	font-weight: bold;
}
menu.top .selected a, menu.top .ancestor a{
	color: #fff;
	background-color: #ff7100;
	font-weight: normal;
}

/* chrome bug
menu.top.webkit a{
	text-shadow: 0 0 1px black;
	font-size: 14px;
	line-height: 37px;
}
menu.top.webkit .selected a, menu.top .ancestor a{
	text-shadow: 0 0 1px white;
} */


menu .lang{
	float:right;
}
menu .lang a{
	display: block;
	width: 24px;
	height: 32px;
	background: url("../img/lang/pl.png") no-repeat scroll 0 60% transparent;
	padding: 0 2px;
	margin: 2px 0;
	text-indent: -999em;
	opacity: 0.5;
}
body.index menu .lang a{
	opacity: 0.8;
}
body.index menu .lang a:hover,
menu .lang a:hover{
	opacity: 1;
}
body.index menu .lang a:ACTIVE,
menu .lang a:ACTIVE{
	background-position: 1px 60%;
}
menu .en a{
	background-image: url("../img/lang/en.png");
}
menu .de a{
	background-image: url("../img/lang/de.png");
}
menu.en .en,
menu.pl .pl,
menu.de .de{
	display: none;
}

aside menu{
	width: 220px;
	height: auto;
	background-color: #ff7100;
	background: url("../img/bg_aside_menu.png") no-repeat scroll 0 0 transparent;
	padding-top: 22px;
	margin: 0;
	position: relative;
	left: -9px;
}
aside menu li{
	float: none;
	display: block;
}
aside menu li a{
	color: #fff;
	border-top: 1px solid #ff9540;
	font-size: 13px;
	line-height: 28px;
	text-transform: none;
	background: url("../img/aside_menu_list_item.gif") no-repeat scroll 15px 50% #ff7100;
	height: auto;
	padding: 4px 4px 4px 25px;

}
aside menu li ul{
	display: block;
}
aside menu li ul li a{
	padding-left: 38px;
	background-position: 25px 50%;
	padding-top: 2px;
	padding-bottom: 2px;
	line-height: 15px;
	font-size: 12px;
	font-weight: normal;
}
aside menu li.selected > a{
	opacity: 0.9;
	background: url("../img/aside_menu_selected.png") no-repeat scroll 100% 50% #ff7100;
}
aside menu li ul li.selected a{
	padding-left: 28px;
	background-position: 100% 50%;
}

a.back{
	clear: both;
	margin: 20px 0;
	text-align: center;
	font-size: 15px;
}
/***** FOOTER ******/

div#print_wrap{
	padding: 20px 0;
	clear: both;
	border-top: 1px solid #eee;
}
a.print{
	padding-left: 15px;
}
a.print, a.pdf{
	float: left;
	height: 20px;
	line-height: 20px;
	margin: 20px 0 0 0;
	background: url("../img/icon_print.png") no-repeat scroll 0 50% transparent;
}
a.pdf{
	margin-left: 10px;
	text-indent: -999em;
	width: 15px;
	background-image: url("../img/icon_pdf.png");
	display:none;
}


footer{
	width: 100%;
	background-color: #142a53;
	color: #9aa7be;
}
body.index footer{
	width: 94%;
	padding: 0 3%;
	margin: 0;
}
footer .wrap{
	width: 960px;
	margin: 0 auto;
}
body.index footer .wrap{
	width: 100%;
	margin: 0;
}

footer dl{
	float: left;
	width: 270px;
	border-left: 1px solid #203864;
	padding-left: 15px;
	margin-left: 3px;
	margin-top: 25px;
}
footer dl dt{
	color: #fff;
	font-weight: bold;
}
footer dl dd{
	margin-left: 0;
}
footer dl dd p{
	margin: 3px 0;
}
footer span.icon{
	display: inline-block;
	width: 10px;
	height: 16px;
	background: url("../img/sprite_phone_email.png") no-repeat scroll -4px 4px transparent;
	text-indent: -999em;
}
footer span.icon.email{
	background-position: -4px -14px;
}
footer .right{
	float:right;
}
footer ul.copy{
	display: block;
	padding: 10px 0;
	border-top: 1px solid #1b3360;
	width: 100%;
}
footer ul.copy li{
	list-style: none;
	float: right;
	margin-left: 20px;
	color: #6c7d9c;
	font-size: 12px;
}
footer ul.copy li.first{
	margin-left: 0;
}
footer a{
	color: inherit;
}

/* FORUM */


.comment_reply { text-decoration: underline; cursor: hand; }
.comment_title { font-size: 0.9em; margin-bottom: 2px; background: #eeeeee; padding: 3px; background: rgba(230,230,230, 0.5);}
.comment_meta .commented_by, .comments_more{font-weight: bold;}
.admin{padding: 0 5px;background-color: rgb(255, 113, 0);color: #fff;}
.comment { margin-left: 0.5em; margin-top: 0.5em; padding-left: 0.5em; border-left: solid 4px #dddddd; border-left-color: rgba(230,230,230, 0.5); }
.comment_collapsed .comment, .comment_collapsed .comment_content { display: none; }
.comment_collapsed_below { display: none; }


.forum .subtitle{
	font-size: 120%;
	padding-bottom: 10px;
	border-bottom: 1px dotted #eee;
	text-align: justify;
}

.forum form label{
	padding-right: 10px;
}
.forum form textarea{
	height: 70px;
	overflow-y; auto;
}
.forum form .actions{
	margin-top: 10px;
	margin-left: 0;
	padding-left: 140px;
}

.forum .errorlist{
	color: red;
	margin-left: 153px;
}
.forum form .errors label,
.forum .error{
	color: red;
}
.forum form li{
	padding: 4px 0;
}
.forum form .required label{
	font-weight: bold;
}
.forum form .errors input,
.forum form .errors textarea{
	border-color: red;
}
.forum ol{
	list-style: none;
}
.hidden{
	display: none;
}

.forum .topic_form input,
.forum .topic_form textarea{
	width: 400px;
}

.forum table.zebra-striped th{
	color: rgb(255, 113, 0);
}
.forum table.zebra-striped .topic{
	width: 70%;
}
.forum table.zebra-striped .count{
	width: 15%;
}
.forum table.zebra-striped .date{
	width: 15%;
}

img.captcha{
}

#id_captcha_1{
	position: relative;
	top: -20px;
	width: 100px;
}


/* SLIMBOX */

#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
}

#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #fff;
}

.lbLoading {
	background: #fff url(../img/slimbox/loading.gif) no-repeat center;
}

#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 10px solid #fff;
	background-repeat: no-repeat;
}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
	background: transparent url(../img/slimbox/prevlabel.png) no-repeat 0 15%;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
	background: transparent url(../img/slimbox/nextlabel.png) no-repeat 100% 15%;
}

#lbBottom {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border: 10px solid #fff;
	border-top-style: none;
}

#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: transparent url(../img/slimbox/closelabel.png) no-repeat center;
	margin: 5px 0;
	outline: none;
}

#lbCaption, #lbNumber {
	margin-right: 71px;
}

#lbCaption {
	font-weight: bold;
}
