/* INIT -----------------------------------------------------------------------------*/
html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt {
	margin: 0;
	padding: 0;
	border: 0;
	outline-style: none;
	outline-width: 0;
}
a, a:visited {
	text-decoration: none;
}
a {
	color: #0170d9;
	outline-style: none;
	outline-width: 0;
}
a:hover {
	color: #000;
}
a:focus {
	outline: 2px solid;
}
ol, ul {
	list-style: none;
}
legend {
	display: none;
}
body, input, textarea, select, option, optgroup, button {
	font-family: 'Poppins', sans-serif;
}
input, textarea, select, option, optgroup, button {
}
* {
	box-sizing: border-box;
}
[data-whatintent='mouse'] *:focus {
	outline: none;
	box-shadow: none!important;
}
/* LAYOUT -----------------------------------------------------------------------------*/
html {
	font-size: 0.625em;
	height: 100%;
}
body {
	min-height: 900px;
	background: #fff;
	color: #1b1b1b;
	font-size: 1.6rem;
	height: 100%;
	overflow-x: hidden;  
}
.wrapper {
}
.wrap {
	width: 1200px;
	margin: 0 auto;
}
/* HEADER -----------------------------------------------------------------------------*/
.header {
	height: auto;
	float: left;
	width: 100%;
	padding: 20px 0 0 0;
	position: relative;
	z-index: 999;
}
.header-inner {
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
h1.logo a {
	background-image: url("/images/logo.svg");
	background-position: center center;
	background-repeat: no-repeat;
	border-bottom: medium none;
	float: left;
	height: 69px;
	padding: 0;
	text-indent: -9999px;
	width: 500px;
	background-size: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.top-nav {
	float: right;
}
.path {
	position: relative;
	z-index: 1;
	width: calc(100% - 535px);
	float: left;
	text-transform: lowercase;
	font-size: 1.2rem;
	min-height: auto;
	display: flex;
	align-items: center;
	color: #0170d9;
	font-weight: 400;
}
.path .spacer {
	margin: 0 10px;
	display: inline-block;
	color: #0170d9;
}
.path-inner {
	float: left;
	width: 100%;
}
.path-inner p {
	display: inline-block;
	float: left;
	margin-right: 10px;
}
.path-inner ol {
	float: left;
}
.path-inner ol li {
	float: left;
}
.path a {
	text-decoration: none;
	color: #0170d9;
}
.path a:hover {
	text-decoration: underline;
	color: #0170d9;
}
.search {
	float: left;
	width: calc(50% + 38px);
	background: #fff;
	border-radius: 50px;
	height: 60px;
	border: 1px solid #fff;
	box-shadow: 0px 31px 49px 0px rgba(39, 33, 63, 0.2);
}
.input-search {
	padding: 10px 30px;
	border: none;
	font-size: 1.8rem;
	font-weight: 500;
	width: calc(100% - 80px);
	float: left;
	background: transparent;
	border-radius: 50px;
	height: 60px;
}
.btn-search {
	cursor: pointer;
	padding: 10px;
	border: none;
	width: 80px;
	font-size: 2.4rem;
	transition: all 0.3s ease;
	border-radius: 50px;
	background: #2c1973;
	color: #fff;
	height: 58px;
	box-shadow: 0px 14px 49px 0px rgba(39, 33, 63, 0.39);
}
.btn-search:hover {
	background: #ff0008;
}
.lang {
}
.lang li {
	width: auto;
	float: left;
}
.lang li a {
	color: #000;
	font-size: 1.8rem;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
	transition: all 0.3s ease;
	font-weight: 400;
}
.lang li a.active {
	background: #0170d9;
	color: #fff;
}
.lang li a:hover {
	background: #0170d9;
	color: #fff;
}
/* MENU -----------------------------------------------------------------------------*/
.menu-container {
	background: #2c1973;
	float: left;
	width: 100%;
    height: 49px;
}
.menu {
	position: relative;
	float: left;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.menu li {
	float: left;
}
.menu li a {
	float: left;
	padding: 14px 10px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
}
.menu li.active a {
	color: #a0c1e2;
}
.menu li a:hover {
	color: #a0c1e2;
}
.menu li a:hover {
}
.menu .submenu {
	display: none;
	position: absolute;
	top: 49px;
	width: 250px;
	background: #fff;

	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
}
.menu .submenu .children .submenu {
	top: 0;
	left: 250px;
}
.menu .submenu .children .submenu .children .submenu {
	top: 0;
	left: 250px;
}
.menu .submenu li {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
}
.menu .submenu li a {
font-size: 1.2rem;
padding: 7px;
float: left;
width: 100%;
color: #2c1973;
line-height: 2rem;
}
.menu .submenu li a:hover {
	background: #f2f2f2;
}
.menu .submenu li.active > a {
	background: #dd0000;
	color: #fff;
}
.toggleSubmenu {
    float: right;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    top: calc(50% - 15px);
}
.menu-mob .submenu li a {
    font-size: 1.4rem;
    padding-left: 40px;
    line-height: 1.6rem;
}
.menu-mob .submenu li .submenu li a {
       font-size: 1.2rem;
    padding-left: 60px;
    line-height: 1.6rem;

}

.submenu-inactive .fa-angle-up {
	display: none;
}
.submenu-active .fa-angle-down {
	display: none;
}
.menu li, .menu2 li, .menu3 li, .menu4 li {
	position: relative;
}
.menu-mob {
	background: #f8f8f8;
	height: 100%;
	left: -285px;
	position: fixed;
	top: 0;
	width: 285px;
	z-index: 9999;
	overflow-y: scroll;
	box-sizing: border-box;
}
.menu-mob ul {
	border-top: 1px solid #ddd;
	float: left;
	list-style: outside none none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.menu-mob li {
	border-bottom: 1px solid #ddd;
	float: left;
	width: 100%;
}
.menu-mob a {
	color: #312784;
	font-size: 1.6rem;
	text-decoration: none;
	float: left;
	width: 100%;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-top: 10px;
	box-sizing: border-box;
	position: relative;
	padding-right: 40px;
}
.menu-mob ul li.active > a {
	color: #ed1c24;
}
.icon-close {
	color: #312784;
	cursor: pointer;
	float: right;
	font-size: 2rem;
	padding: 7px 15px;
}
.icon-menu {
background: #2c1973;
color: #fff;
font-size: 2rem;
border-radius: 50%;
width: 40px;
height: 40px;
float: left;
display: none;
justify-content: center;
align-items: center;
margin-left: 10px;
transition: all 0.3s ease;
cursor: pointer;
}
/* CONTENT -----------------------------------------------------------------------------*/
.content {
}
.main {
	width: 100%;
	display: inline-block;
	min-height: 300px;
}
h1 {
	font-size: 3rem;
	line-height: 4rem;
  
}
.article h2 {
	font-size: 2.6rem;
	line-height: 4rem;
  
}
.article h3 {
 font-size: 2.2rem;

line-height: 3.4rem;
}
/* ARTICLE -----------------------------------------------------------------------------*/
.article {
	padding: 10px 0;
	min-height: 300px;
	line-height: 1.5;
	float: left;
	width: 100%;
}
.faq-item {
  	line-height: 1.5;
}
.article h1 {
	width: 100%;
	padding-top: 0px;
	float: none;
}
.article h2 {
}
.art-content {
}
.art-body {
}
.article ul {
	list-style-image: url(../images/li.svg);
	margin: 10px 40px;
}
.article li {
	color: #000;
	line-height: 2;
	font-size: 1.4rem;
}
.art-date {
}
.art-author {
}
/* galeria artykulu */
.art-gallery {
float: left;
width: 100%;
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
grid-auto-flow: row dense;

}
.art-gallery-outer {
float: left;
width: 100%;
margin-top: 50px;

}
.art-gallery-outer h3, .art-files h3 {
	width: 100%;
	padding: 10px 0 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDDDDD;
	font-size: 15px;
	font-weight: 600;
}
.art-gallery .thumb a {
            display: block;

}
.article a:focus img {
outline: solid 3px; outline-offset: 3px
}
.art-gallery .thumb a img {
width: 100%;
display: flex;
         border-radius: 5px;
overflow: hidden;
}
/* za��czniki artykulu */
.art-files {
	display: inline-block;
	width: 100%;
}
.files-item {
	line-height: 3rem;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.files-item p {
	font-size: 1.4rem;
	font-weight: 600;
}
.files-item a {
}
/* FILE ICONS -----------------------------------------------------------------------------*/
.ico-doc:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c2";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.ico-xls:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c3";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.ico-ppt:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c4";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.ico-pdf:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c1";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.ico-image:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c5";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.ico-archive:before {
	font-family: 'Font Awesome\ 5 Free';
	content: "\f1c6";
	font-size: 1.6rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* ASIDE -----------------------------------------------------------------------------*/
.aside {
	width: 30%;
	float: right;
	background: transparent;
	min-height: 300px;
}
/* SUBMENU -----------------------------------------------------------------------------*/
.submenu-body {
	padding: 20px
}
.submenu-top {
}
.submenu-foot {
}
/* level-0 */
ul.level-0 {
	width: 100%;

}
li.level-0 {
	padding: 5px;
	border-bottom: 1px solid #DDDDDD;
}
li.level-0:last-child {
	border-bottom: 0;
}
li.level-0 a {
}
li.level-0.active {
}
li.level-0:hover {
}
/* level-N */
li.level-1 {
	padding: 10px;
}
/* ANIM -----------------------------------------------------------------------------*/
.anim-wrap {
}
.anim {
}
.anim slides {
}
.anim slides img {
}
ul.anim-nav {
}
ul.anim-nav li {
}
ul.anim-nav li a {
}
/* NEWS-LISTING -----------------------------------------------------------------------------*/
.news-listing {
}
.news-item {


	border-bottom: 1px dotted #ddd;
}
.news-item h2 {
	display: inline-block;
	font-weight: normal;
	font-size: 15px;
	margin-bottom: 10px;
}
.news-item-content {
}
.news-item-info {
	display: inline-block;
    position: relative;
    width: 100%;

}
.news-item-info h3 a {
font-size: 2rem;
font-weight: 500;
transition: all 0.4s ease-out;
color: #000;

}
.news-item-info h3 {
 padding: 20px 30px 20px 0;

}
.news-item-info h3 a:hover {
text-decoration: underline;

color: #0170d9;
}
.news-item-info:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    font-size: 1.8rem;
    color: #000;
    float: right;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.news-item-date {
	display: inline-block;
	position: absolute;
	top: 2px;
	left: 0px;
	font-size: 13px;
	padding: 0px 5px 0px 0;
	border-right: 1px solid #ddd;
}
.news-item-author {
}
.news-item-detail {
}
.news-item-intro {
}
.news-item-more {
	float: right;
	display: none;
}
/* NEWS -----------------------------------------------------------------------------*/
.news {
}
.news-info {
}
.news-date {
}
.news-author {
}
.news-content {
	display: inline-block;

	width: 100%;
}
.news-thumb {
	float: left;
	padding: 5px;
	border: 1px solid #ddd;
	margin: 0 15px 5px 5px;
}
.news-intro {
display: inline-block;
padding: 30px;
border: 2px solid #0170d9;
border-radius: 10px;
margin-bottom: 30px;
width: 100%;
font-size: 2rem;
}
.article .news-intro h2 {
margin: 0;

}
.news h2, .art-body h2 {
 margin-bottom: 30px;

}
.news-body h3, .art-body h3 {
font-size: 2.4rem;
margin: 30px 0 15px 0;
}
a.news-back {
border: 2px solid #ddd;
padding: 10px 30px;
border-radius: 34px;
float: left;
margin-top: 30px;
transition: all 0.3s ease;
}
a.news-back:hover {
border: 2px solid #2c1973;
color: #2c1973;
}
/* PAGINATION -----------------------------------------------------------------------------*/
.pagination {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-top: 50px;
	width: 100%;
}
.pagination .pages {
}
.pagination ul {
	list-style-type: none;
	list-style-image: none;
}
.pagination ul li {
	float: left;
	margin-right: 10px;
}
.pagination a {
	float: left;
	margin-right: 10px;
	line-height: 2;
	height: 32px;
	width: 32px;
	text-align: center;
	font-size: 1.6rem;
	transition: all .3s ease;
	font-weight: 500;
	text-decoration: none;
	color: #000;
	border-radius: 50%;
}
.pagination span {
	float: left;
	margin-right: 10px;
	line-height: 2;
	height: 32px;
	width: 32px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
}
.pagination a.active {
	background: #0170d9;
	color: #fff;
}
.pagination a:hover {
	background: #ddd;
}
/* GALLERY -----------------------------------------------------------------------------*/
.gallery {
/* tylko jesli kontener galerii jest inny niz artykulu */
}
.gallery-item {
	display: block;
}
.gallery .thumb, .art-gallery .thumb {

}
.gallery .thumb, .gallery .thumb a {
   }
.gallery .thumb a img {

}
.thumb-desc {
	clear: both;
	display: block;
	float: left;
	margin: 6px 0 0;
	text-align: center;
	width: 100%;
}
.gallery .thumb.gallery-cat {
}
.gallery-cat-name {
}
/* FORM -----------------------------------------------------------------------------*/
.form-data {
	margin: 20px 0 0 0;
	display: block;
}
.form-elem-group {
	float: left;
	margin-bottom: 20px;
	width: 100%;
}
.form-elem-name {
width: 100%;
float: left;
margin: 0px 0px 2px 25px;
font-size: 1.4rem;
color: #000;
letter-spacing: 0.5px;
font-weight: 500;
}
.form-elem-input {
    float: left;
    width: 100%;
    font-size: 1.2rem;
}
.form-elem-input input[type=text], .form-elem-input select, .form-elem-input textarea {
width: 100%;
float: left;
padding: 12px 20px;
border: 2px solid #DDDDDD;
font-size: 1.6rem;
border-radius: 50px;
}
.form-elem-input input[type=text]:focus, .form-elem-input select:focus, .form-elem-input textarea:focus {
	border: 2px solid #0070d9;
}
.form-elem-input select {
width: 100%;
}
.form-data textarea {
	height: 150px;
	resize: none;
    border-radius: 15px;
}
.form-elem-input input[type=radio], .form-elem-input input[type=checkbox] {
	font-size: 12px !important;
	margin: 0 6px !important;
	vertical-align: middle;
}
.form-btn-send {
padding: 4px 69px;
border-radius: 34px;
float: left;
margin-top: 30px;
transition: all 0.3s ease;
cursor: pointer;
background: #2c1973;
border: 2px solid #2c1973;
color: #fff;
font-size: 2rem;
margin-right: 10px;

}
.form-btn-send:hover, .form-btn-send:focus {
    background: #0170d9;
    color: #fff;
    border: 2px solid #0170d9;
}
.captcha-code {
}
.captcha-input {
}
.input-has-error {
	border: 1px solid red !important;
}
.form-error {
	color: red;
	font-size: 10px;
}
.formularz form {
   width: 50%;
margin: 0 auto;

}
/* SEARCH RESULT -->> tylko jesli lista ma byc inna ni� lista aktualnosci -----------------------------------------------------------------------------*/
.search-result {
}
.search-result news-item {
}
/* SITEMAP -----------------------------------------------------------------------------*/
.site-map {
font-size: 1.4rem;
}
.site-map ul  {
    list-style: none;
    margin: 0;
}
.site-map a:hover {
text-decoration: underline;
}
.site-map ul.level-0  {
}
.site-map ul.level-0 > li a {
font-size: 1.8rem;
}
.site-map ul.level-1 > li a {
font-size: 1.6rem;
}
.site-map ul.level-1 {
margin-left: 20px;
}
.site-map ul.level-2 {
margin-left: 20px;
}
/* FOOTER -----------------------------------------------------------------------------*/
.footer {
	height: auto;
	float: left;
	background: #2c1973;
	width: 100%;
	padding: 70px 0;
}
ul.foot-nav {
	float: left;
	line-height: 1.5;
}
ul.foot-nav li {
}
ul.foot-nav li a {
	font-size: 1.4rem;
	color: #fff;
	transition: all 0.3s ease;
}
ul.foot-nav li a:hover {
	text-decoration: underline;
	color: #fff;
}
.footer-links {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
	align-items: center;
}
.footer-links li {
	float: left;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.footer-links li a {
	padding: 20px;
	display: flex;
	justify-content: center;
	min-height: 100px;
	align-items: center;
	color: #2c1975;
	font-size: 2rem;
	text-align: left;
	font-weight: bold;
	line-height: 1.2;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	border: 5px solid #fff;
}
.footer-inner {
	display: flex;
	margin-bottom: 30px;
	justify-content: space-between;
	width: 100%;
	flex-flow: row wrap;
}
.footer-inner>div {
	color: #fff;
	width: calc(33.333% - 40px);
}
.footer-inner>div p {
	margin: 15px 0px;
	font-size: 1.6rem;
	font-weight: 400;
}
.footer-inner>div h2 {
	font-size: 2rem;
	color: #b6daf4;
	font-weight: 400;
}
.footer-inner div p a {
	text-decoration: underline;
	color: #fff;
}
.footer-links li a:hover, .footer-links li a:focus {
	border: 5px solid #ff0008;
}
.kambit-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-flow: row wrap;
	float: left;
	width: 100%;
	padding: 50px 0 0 0;
	margin-top: 20px;
	font-size: 1.2rem;
	color: #5371ad;
	border-top: 1px solid #455b94;
}
.kambit-inner a {
	color: #5371ad;
	text-decoration: underline;
}
/* LOGIN -----------------------------------------------------------------------------*/
.login-wrap {
	position: relative;
}
.login-panel {
	margin-top: -38px;
	color: #fff;
	background-color: #000;
	padding: 10px;
}
/************ <<< STANDARD CLASSES >>> ************/
/* TABLE -----------------------------------------------------------------------------*/
.article table {
border-collapse: collapse;
border: 2px solid #ddd;
}
.article table thead tr th {
background: #f9f9f9;
border: 2px solid #ddd;
padding: 10px;
font-size: 1.4rem;
font-weight: bold;
}

table tfoot tr th {
}
table tr {
}
.article table tr td {
border: 1px solid #ddd;
padding: 10px;
}
table tr.odd td {
}
table tr.even td {
}
table tr:hover {
}
table tr:hover td {
}
table tr:hover td:hover {
}
/* DEFAULTS -----------------------------------------------------------------------------*/
.w100p {
	width: 100% !important;
}
.w50p {
	width: 48% !important;
}
.w30p {
	width: 28% !important;
}
.dn {
	display: none !important;
}
.db {
	display: block !important;
}
.dib {
	display: inline-block !important;
}
.di {
	display: inline !important;
}
.fl {
	float: left !important;
}
.fr {
	float: none !important;
}
.cl {
	clear: left !important;
}
.cr {
	clear: right !important;
}
.cb {
	clear: both !important;
}
.disabled {
	opacity: 0.4;
	filter: Alpha(Opacity=40);
}
.debug {
	text-align: center;
	background-color: yellow;
	color: #000;
	font-weight: bold;
}
/************ <<< === FUTURE CLASSES === >>> ************/
/* MODULE BOX -----------------------------------------------------------------------------*/
.module-box-top {
}
.module-box-body {
}
.module-box-foot {
}
/* SUPERNEWS -----------------------------------------------------------------------------*/
/* ANIMATIONS -->> klasy dziedziczone z .anim + $id -----------------------------------------------------------------------------*/
.wrapIE {
	width: 900px;
	margin: 0 auto;
	position: relative;
}
.ieElder {
	position: absolute;
	top: -300px;
	left: 200px;
	height: 287px;
	width: 500px;
	border: 5px solid #8ABEF1;
	z-index: 99999999999;
	background: url(/images/browsers.jpg) no-repeat 0 0;
}
.ieElder-close {
	bottom: 0;
	cursor: pointer;
	height: 20px;
	left: 0;
	position: absolute;
	width: 76px;
}
.ieElder-later {
	bottom: 0;
	cursor: pointer;
	height: 20px;
	position: absolute;
	right: 0;
	width: 54px;
}
.get-chrome {
	height: 176px;
	left: 56px;
	position: absolute;
	top: 76px;
	width: 150px;
}
.get-ff {
	height: 176px;
	left: 290px;
	position: absolute;
	top: 76px;
	width: 150px;
}
#cookies_warning {
	position: fixed;
	bottom: 0;
	right: 0;
	background: #fff;
	font-size: 1.1rem;
	color: #000;
	padding: 50px 0 0;
	z-index: 9999;
	width: 49vw;
	max-width: 600px;
	box-shadow: -30px -30px 70px rgba(0, 0, 0, 0.1);
	animation: 500ms slideIn cubic-bezier(.35, .57, .4, .89);
}
@keyframes slideIn {
from {
	bottom: -500px;
}
to {
	bottom: 0;
}
}
#cookies_warning_close {
	color: #000;
	position: absolute;
	top: 0px;
	right: 0px;
}
#cookies_warning_close a {
font-size: 3.2rem;
text-decoration: none;
padding: 13px 10px 10px;
line-height: 1.6rem;
transition: all 0.3s ease;
}
#cookies_warning_close a:hover {
	background: #2c1973;
	color: #fff;
}
#cookies_warning_info {
	padding: 0px 30px;
	color: #000;
	width: 100%;
	float: left;
}
#cookies_accept {
	font-size: 1.2rem;
	text-align: center;
	float: left;
	padding: 15px 25px;
	transition: all 0.3s ease;
	font-weight: 600;
	background: #2c1973;
	border-radius: 55px;
}
#cookies_accept_container {
padding: 0 30px 30px 30px;
float: left;
width: 100%;
}
#cookies_accept .fa {
	margin-left: 10px;
	font-size: 1rem;
}
#cookies_warning_info a {
	font-weight: bold;
	color: #0170d9;
}
#cookies_accept:hover {
	background: #0170d9;
	color: #fff;
}
.hidden {
	display: none;
}
.g-recaptcha-error {
	display: none;
	font-size: 12px;
	color: red;
}
.top-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
}
.ikony {
	float: right;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 530px;
	flex-flow: row wrap;
	padding: 15px;
	color: #000;
}
.ikony-info {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	color: #000;
	font-weight: 600;
	margin-bottom: 5px;
}
.ikony li {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	text-align: center;
}
.deklaracja_icon .small-txt {
	font-size: 12px !important;
	display: inline-block;
	text-align: right;
	margin-right: 7px;
	line-height: 1;
}
.deklaracja_icon svg {
	font-size: 3rem;
}
.ikony li a {
	color: #000;
	font-size: 1.8rem;
	font-weight: 600;
}
.ikony li a i {
	font-style: normal;
}
.ikony li.deaf a {
	font-size: 3rem;
}
body.ff-paragraph p {
	margin-bottom: 2em !important;
}
body.ff-lines {
	line-height: 3em !important;
}
body.ff-word {
	word-spacing: 1em !important;
}
body.ff-letter {
	letter-spacing: .25em !important;
}
.nav_tab a {
	display: inline;
	font-size: 1.6rem;
	left: -9000em;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	width: 150px;
	z-index: 2;
}
.nav_tab a:hover, .nav_tab a:focus, .nav_tab a:active {
	background: #000 none repeat scroll 0 0;
	color: #ffff00;
	font-weight: 600;
	left: 5px;
	position: absolute;
	top: 10px;
	outline: none;
}
.search-outer {
	background: #cdddea url("/images/top-bg.svg") no-repeat center;
	float: left;
	width: 100%;
}
.search-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 270px;
}
.box-panel {
	float: left;
	width: 100%;
	background: #f2f9ff;
	padding: 80px 0;
}
.box-panel ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
	grid-template-areas: "box-panel-1 box-panel-1 box-panel-2 box-panel-2 box-panel-3 box-panel-3" "box-panel-1 box-panel-1 box-panel-4 box-panel-4 box-panel-5 box-panel-5";
}
.box-panel-1 {
	grid-area: box-panel-1;
	background: #0170d9 url("/images/rezerwacja.svg")no-repeat right bottom;
}
.box-panel-2 {
	grid-area: box-panel-2;
	background: #0170d9 url("/images/euslugi.svg")no-repeat right bottom;
}
.box-panel-3 {
	grid-area: box-panel-3;
	background: #0170d9 url("/images/eplatnosci.svg")no-repeat right bottom;
}
.box-panel-4 {
	grid-area: box-panel-4;
	background: #0170d9 url("/images/obiurze.svg")no-repeat right bottom;
}
.box-panel-5 {
	grid-area: box-panel-5;
	background: #0170d9 url("/images/kontakt.svg")no-repeat right bottom;
}
.box-panel ul li {
	padding: 40px;
	border-radius: 15px;
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
}
.box-panel ul li h2 {
	color: #fff;
	font-weight: 400;
	font-size: 3rem;
	margin-bottom: 20px;
	float: left;
	width: 100%;
}
.box-panel ul li span {
	color: #b6daf4;
	font-size: 1.8rem;
	float: left;
	width: 100%;
	margin-top: -5px;
}
.box-panel ul li .btn {
	background: #2c1973;
	color: #b6daf4;
	padding: 5px 19px;
	border-radius: 30px;
	font-size: 1.4rem;
	font-weight: 500;
	box-shadow: 0px 16px 22px rgba(0, 0, 0, 0.4);
	align-self: flex-start;
	transition: all 0.3s ease;
}
.box-panel ul li .btn:hover {
	background: #fff;
	color: #2c1973;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
}
.newsbar {
	background: #dd0000;
	float: left;
	width: 100%;
	height: 40px;
	position: fixed;
	z-index: 9999;
bottom: 0;
left: 0;
    transform: translate3d(0px, 0px, 0px);
    -webkit-backface-visibility: hidden;
}
.marquee {
	overflow: hidden;
	width: calc(100% - 80px);
	float: left;
}
#newsbar-content ul {
	overflow: auto;
}
#newsbar-content ul {
	float: left;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	height: 40px;
}
.resizable-content {
	margin-top: 3px;
	font-weight: 600;
}
#newsbar-content ul li a {
	font-size: 14px;
	color: #fff;
	text-decoration: underline;
}
#newsbar-content ul li a:hover {
	color: #d4f9ff;
}
#newsbar-content ul li:last-child svg {
	display: none;
}
#newsbar-content ul li svg {
	font-size: 8px;
	color: #ffffff;
	float: right;
	margin: 6px 20px;
}
#newsbar-close:hover {
	background: #2c1973;
	color: #fff;
}
#newsbar-close {
	float: left;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}
.play-box a {
	float: left;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}
.play-box a:hover {
	background: #2c1973;
	color: #fff;
}
.most-popular {
	float: left;
	width: 100% !important;
	display: grid;
	grid-gap: 50px;
	grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
	grid-auto-flow: row dense;
	margin: 50px 0;
}
.most-popular > li {
	display: flex;
}
.most-popular > li {
	position: relative;
	border-width: 3px;
	border-color: rgb(255, 0, 7);
	border-style: solid;
	border-radius: 15px;
	background-color: #fff;
	padding: 20px 20px 20px 50px;
	width: calc(100% - 30px);
	justify-self: end;
	display: block;
	transition: all 0.3s ease;
	box-shadow: 0px 20px 87px 0px rgba(0, 0, 0, 0.26);
}
.most-popular > li:hover {
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.30);
	border-color: #2c1973;
}
.most-popular > li a:hover {
	text-decoration: underline;
}
.icon-mostpopular {
	position: absolute;
	left: -31px;
	top: calc(50% - 30px);
	width: 60px;
	height: 60px;
	background: #2c1973;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 2.4rem;
}
.most-popular > li h3 {
	font-size: 1.8rem;
	line-height: 2.8rem;
	float: left;
	width: 100%;
	font-weight: 500;
	margin-bottom: 10px;
}
.most-popular > li h3 a {
	color: #0070d9;
}
.most-popular > li a {
	color: #000;
}
.most-popular > li p {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2rem;
}
#header-slider-nav {
	text-align: center;
	display: flex;
	justify-content: space-between;
	height: 8px;
	align-items: flex-start;
	margin-top: -4px;
	list-style: none;
	position: absolute;
	width: calc(100% + 4px);
	left: -2px;
	bottom: -4px;
    z-index: 10;
}
#header-slider-nav::after,
#header-slider-nav::before {
	content: '';
	display: block;
	border-bottom: 3px solid #2b1973;
	flex: 1 0;
	height: 7px;
}
#header-slider-nav::after {
	margin-left: .4em;
	border-bottom-right-radius: 7px;
}
#header-slider-nav::before {
	margin-right: .4em;
	border-bottom-left-radius: 7px;
}
#header-slider-nav li a {
	width: 12px;
	height: 12px;
	background: #0070d9;
	border-radius: 50%;
	margin: 0 4px;
	display: block;
	position: relative;
	z-index: 999;
}
#header-slider-nav li.activeSlide a {
	background-color: #2b1973;
}
.slider-top {
	width: 400px;
	position: relative;
	display: flex;
	border: 3px solid #2b1973;
	border-bottom-color: #2b1973;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom: 0;
	border-radius: 7px;
	min-height: 180px;
}
.slider-top ul li>div {
	padding: 30px;
	width: 100% !important;
	min-height: 180px;
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
}
.slider-top ul li {
	list-style: none;
	width: 100%!important;
	min-height: 180px;
}
.slider-top ul {
	display: flex;
	width: 100%!important;
}
.slider-top ul li h3 {
	color: #0070d9;
	font-size: 2.4rem;
	line-height: 3rem;
}
.slider-top ul li a {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 20px 21px 0px rgba(0, 0, 0, 0.09);
	border-radius: 20px;
	font-size: 1.2rem;
	color: #2b1973;
	text-align: center;
	padding: 5px 15px;
	align-self: flex-end;
	font-weight: 600;
}
.slider-top ul li a:hover {
	background-color: #2c1973;
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
	color: #fff;
}
.slider-next {
	position: absolute;
	top: calc(50% - 20px);
	right: -21px;
	width: 40px;
	height: 40px;
	background: #cdddea;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: #2b1973;
	z-index: 10;
	cursor: pointer;
}
.slider-prev {
	position: absolute;
	top: calc(50% - 20px);
	left: -21px;
	width: 40px;
	height: 40px;
	background: #cdddea;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: #2b1973;
	z-index: 10;
	cursor: pointer;
}
.slider-prev:hover, .slider-next:hover {
	background: #2b1973;
	color: #cdddea;
}
.accordion, .accordion-v2 {
	background: #fff;
	color: #000;
	cursor: pointer;
	padding: 20px 30px 20px 0;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.4s ease-out;
	position: relative;
}
.accordion-panel {
	border-bottom: 1px solid #ddd;
    float: left;
width: 100%;
}
.accordion-panel h3 a {
 color: #000;

}
.accordion-panel ul li {
	list-style: none;
	margin-bottom: 10px;
}
.sprawy-list li span {
	font-size: 1.2rem;
	font-weight: bold;
	color: #666;
}
.sprawy-list li a:hover {
	text-decoration: underline;
	color: #0170d9;
}
.accordion-panel .sprawy-list {
	margin: 0 30px 20px 20px;
}
.accordion h3, .accordion-v2 h3 {
	font-size: 2rem;
	font-weight: 500;
	transition: all 0.4s ease-out;
    margin: 0;
}
.active-accordion, .accordion:hover {
}
.panel {
	border-bottom: 1px solid #ddd;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
.panel p {
	padding: 0px 0 20px 0;
}
.accordion-v2-outer .accordion-v2 {
	padding-top: 0;
}
.accordion-v2-outer .accordion-v2:after {
	top: 0;

}
.accordion:after, .accordion-v2:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	top: calc(50% - 10px);
	font-size: 1.8rem;
	color: #000;
	float: right;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.active-accordion:after {
	content: "\f107";
	color: #0170d9;
}
.active-accordion h3 {
	color: #0170d9;
}
.accordion:hover h3, .accordion-v2:hover h3 {
	color: #0170d9;
	text-decoration: underline;
}
.sprawa-title {
float: left;
margin-bottom: 20px;
justify-content: space-between;
flex-flow: row wrap;
display: flex;
padding: 30px;
border: 2px solid #0170d9;
border-radius: 10px;
width: 100%;
align-items: center;
}
.sprawa-title h2 {
	width: calc(100% - 200px);
}
.sprawa-title div span {
	font-size: 1.2rem;
}
.sprawa-title div {
	padding: 0 0px 0px 20px;
	line-height: 1.2;
	border-left: 2px solid #0170d9;
	display: flex;
	width: 150px;
	flex-flow: column wrap;
	justify-content: center;
}
ul.metka-box {
	background: url("/images/metka.svg")no-repeat right top;
	padding: 20px;
	border-radius: 10px;
	float: left;
	width: 100%;
	margin: 20px 0;
	border: 1px solid #ddd;
    background-size: contain;
}
.metka-box li {
	list-style: none;
	line-height: 1.5;
	font-size: 1.4rem;
	font-style: italic;
	font-weight: 500;
}
.sprawa-link {
	float: left;

	margin: 30px 0;
    }

.sprawa-link li {
font-size: 1.8rem;
color: #0170d9;
}

.sprawa-link a {
	padding: 5px 20px;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	border: 2px solid #ddd;
	height: 35px;
    font-size: 1.4rem;
}
.sprawa-link a:hover {
	border: 2px solid #2c1973;
}
.sprawa-zalaczniki {
	float: left;
	width: 100%;
	margin-top: 20px;
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 10px;
	background: url("/images/zalaczniki.svg")no-repeat right top; 
}
.sprawa-zalaczniki h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
    line-height: 2rem;
}
.sprawa-zalaczniki ol {
	padding-left: 20px;
	list-style-type: decimal;
}
.sprawa-zalaczniki ol li a {
	text-decoration: underline;
	margin-right: auto;
	margin-left: 10px;
}
.sprawa-link-outer {
	float: left;
	width: 100%;
	margin: 20px 0;
}
.most-popular-title {
	font-size: 3rem;
	float: left;
	width: 100%;
	margin-top: 50px;
}
.most-popular-sprawy li a {
	color: #0070d9;
    font-size: 1.4rem;
  
}
.top {
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-flow: row wrap;
	padding: 30px 0;
	align-items: center;
}
.ico {
	display: flex;
	justify-content: space-between;
	width: auto;
}
.ico > div a {
	color: #2c1973;
	font-size: 1.8rem;
	width: 42px;
	height: 42px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all .3s ease;
}
.ico > div a:hover {
	background: #2c1973;
	color: #fff;
}
.top-h2 {
	font-size: 3.6rem !important;
	color: #2c1973;
	float: left;
	width: 100%;
	padding: 25px 0;
}
.line-zalaczniki {
	border-bottom: 2px dotted #c9c9c9;
	flex-grow: 1;
	margin: 7px 5px;
}
.naglowek {
	cursor: pointer;

    float: left;

    padding: 20px 0;
}
.ramka {
	width: 100%;
	margin-bottom: 30px;
	display: none;

}
.ramkain {
width: 100%;
min-height: 500px;
float: left;
border: 0;
}
.sprawy-wyszukiwanie {
float: left;
width: 50%;
background: #fff;
border-radius: 50px;
height: 60px;
border:2px solid #0170d9;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;


}
.sprawy-wyszukiwanie > div {
 width: calc(100% - 46px);
}
.sprawy-wyszukiwanie input {
padding: 10px 30px;
border: none;
font-size: 1.8rem;
font-weight: 500;
width: 100%;
float: left;
background: transparent;
border-radius: 50px;
height: 60px;
}
.sprawy-wyszukiwanie button {
  background: #ddd;
border: none;
width: 36px;
height: 36px;
border-radius: 50%;
margin-right: 10px;
color: #2c1973;
transition: all 0.3s ease;
cursor: pointer;
display: none;

}
.sprawy-wyszukiwanie button:hover {
background: #dc0000;
color: #fff;

}

#sprawy-search-list {
float: left;
width: 100%;


}
.faq-item h3 {
font-size: 2.6rem;
line-height: 4rem;
float: left;
width: 100%;
margin-bottom: 20px;

}
.btn-light {

    border: 2px solid #ddd;
    padding: 10px 30px;
    border-radius: 34px;
    float: left;
    margin-top: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    margin-right: 10px;
}

.btn-light:hover {
    border: 2px solid #2c1973;
    color: #2c1973;
}
.search-result .news-item-intro {
margin-bottom: 20px;
padding-right: 30px;
}
.search-result-none, .error {
background: #f5b3b3;
float: left;
width: 100%;
text-align: center;
border-radius: 5px;
padding: 20px;
color: #850000;
border: 2px solid #e95858;


}
.search-result .news-item-info h3 a {
color: #0170d9;

}

.zielony {
background: #a6f3a6;
float: left;
width: 100%;
text-align: center;
border-radius: 5px;
padding: 20px;
color: #004b00;
border: 2px solid #00ba00;


}
.search-result .search {
margin-bottom: 50px;
border: 1px solid #ddd;

}
.article .kafelki {

list-style: none;
margin: 0;
}
.article .kafelki li {

border-width: 3px;
border-color: rgb(255, 0, 7);
border-style: solid;
border-radius: 15px;
background-color: #fff;
padding: 20px;
width: 100%;
justify-self: end;
display: block;
transition: all 0.3s ease;
box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
font-size: 1.8rem;
line-height: 1.5;
}
.article .kafelki {
float: left;
width: 100% !important;
display: grid;
grid-gap: 30px;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-auto-flow: row dense;
}
.sprawa-link span {
 display: block;

}
.sprawa-link .epuap-link {
border: none;
display: inline-block;
margin: 0;
text-align: left;
color: #dd0000;
width: 100%;
height: auto;


}
.sprawa-link .epuap-link img {
height: 12px!important;
}
.sprawa-link .epuap-link:hover {
   border: none;
}
.article a:hover {
 text-decoration: underline;

}
.sprawa-link .epuap-link svg {
  background: #0170d9;
width: 12px;
height: 12px;
color: #fff;
border-radius: 50%;

}
.main-en {
display: none;

}
body.en .main-en  {

 display: block;
}
body.en .search-outer, body.en .most-popular-title, body.en .box-panel, body.en .dost-search {
 display: none;


}
.serch-index {
padding: 25px 0;
display: none;

}
.e-uslugi .serch-index, .kontakt .serch-index, .o-biurze .serch-index, .-rezerwacja-kolejki .serch-index, .petycje .serch-index, .umow-wizyte-urzednika-w-domu .serch-index, .numery-rachunkow-bankowych-urzedu-miasta .serch-index, .zmiany-w-przepisach-w-stanie-epidemii  .serch-index, .zadawane-pytania .serch-index  {
display: block;

}
.serch-index .search {
box-shadow: none;
width: 100%;

}
.sprawa-wrap {
margin-top: 40px;

}
.e-uslugi-szczegoly h2 {
margin-bottom: 30px

}
.rsbtn {

    margin-bottom: 0!important;
    }
    #webreaderContainer {
float: left;
margin-bottom: 40px;
width: 100%;
}

.treeview, .treeview ul { 
	padding: 0;
	margin: 0;
	list-style: none;
}

.treeview ul {
	background-color: white;
	margin-top: 4px;
}

.treeview .hitarea {
	background: url(/js/treeview/images/treeview-default.gif) -64px -25px no-repeat;
	height: 16px;
	width: 16px;
	margin-left: -16px;
	float: left;
	cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}

.treeview li { 
	margin: 0;
	padding: 3px 0pt 3px 16px;
}

.treeview a.selected {

}

#treecontrol { margin: 1em 0; display: none; }

.treeview .hover { color: red; cursor: pointer; }

.treeview li { }
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }

.treeview .expandable-hitarea { background-position: -80px -3px; }

.treeview li.last { background-position: 0 -1766px }
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(/js/treeview/images/treeview-default.gif); }  
.treeview li.lastCollapsable { background-position: 0 -111px }
.treeview li.lastExpandable { background-position: -32px -67px }

.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }

.treeview-red li { background-image: url(/js/treeview/images/treeview-red-line.gif); }
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(/js/treeview/images/treeview-red.gif); } 

.treeview-black li { background-image: url(/js/treeview/images/treeview-black-line.gif); }
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(/js/treeview/images/treeview-black.gif); }  

.treeview-gray li { background-image: url(/js/treeview/images/treeview-gray-line.gif); }
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(/js/treeview/images/treeview-gray.gif); } 

.treeview-famfamfam li { background-image: url(/js/treeview/images/treeview-famfamfam-line.gif); }
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(/js/treeview/images/treeview-famfamfam.gif); } 

.treeview .placeholder {
	background: url(/js/treeview/images/ajax-loader.gif) 0 0 no-repeat;
	height: 16px;
	width: 16px;
	display: block;
}

.filetree li { padding: 3px 0 2px 16px; }
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
.filetree span.folder { background: url(/js/treeview/images/folder.gif) 0 0 no-repeat; }
.filetree li.expandable span.folder { background: url(/js/treeview/images/folder-closed.gif) 0 0 no-repeat; }
.filetree span.file { background: url(/js/treeview/images/file.gif) 0 0 no-repeat; }
/* * FancyBox - jQuery Plugin * Simple and fancy lightbox alternative * * Examples and documentation at: http://fancybox.net *  * Copyright (c) 2008 - 2010 Janis Skarnelis * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated. *  * Version: 1.3.4 (11/11/2010) * Requires: jQuery v1.3+ * * Dual licensed under the MIT and GPL licenses: *   http://www.opensource.org/licenses/mit-license.php *   http://www.gnu.org/licenses/gpl.html */
#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}
#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('/js/fancybox/fancybox.png');
}
#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}
#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}
#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;

	z-index: 1101;
	outline: none;
	display: none;
	margin-left: 20px;

	margin-top: 20px;
}
#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
}
#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
    background: #fff;
    border-radius: 10px;
}
#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}
#fancybox-close {
	position: absolute;
	top: -30px;
	right: 0;
	width: 30px;
	height: 30px;
	background: transparent url('/js/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}
#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}
#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}
#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
#fancybox-left,
#fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('/js/fancybox/blank.gif');
	z-index: 1102;
	display: none;
    text-indent: -9999px;
}
#fancybox-left {
	left: 0px;
}
#fancybox-right {
	right: 0px;
}
#fancybox-left-ico,
#fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}
#fancybox-left-ico {
	background-image: url('/js/fancybox/fancybox.png');
	background-position: -40px -30px;
}
#fancybox-right-ico {
	background-image: url('/js/fancybox/fancybox.png');
	background-position: -40px -60px;
}
#fancybox-left:hover,
#fancybox-right:hover {
	visibility: visible;
/* IE6 */
}
#fancybox-left:hover span {
	left: 20px;
}
#fancybox-right:hover span {
	left: auto;
	right: 20px;
}
.fancybox-bg {
}
#fancybox-bg-n {
}
#fancybox-bg-ne {
}
#fancybox-bg-e {
}
#fancybox-bg-se {
}
#fancybox-bg-s {
}
#fancybox-bg-sw {
}
#fancybox-bg-w {
}
#fancybox-bg-nw {
}
#fancybox-title {
	font-size: 14px;
	z-index: 1102;
	font-weight: 500!important;
	margin: 0 !important;
	bottom: 0 !important;
}
#fancybox-title b {
	font-weight: 500!important;
}
.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}
.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}
.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}
#fancybox-title-over {
	padding: 20px;
	background-image: url('/js/fancybox/fancy_title_over.png');
	display: block;
}
.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}
#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}
#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}
#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('/js/fancybox/fancybox.png') -40px -90px no-repeat;
}
#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('/js/fancybox/fancybox-x.png') 0px -40px;
}
#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('/js/fancybox/fancybox.png') -55px -90px no-repeat;
}
/* IE6 */
.fancybox-ie6 #fancybox-close {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_close.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-left-ico {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_nav_left.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-right-ico {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_nav_right.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-title-over {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_title_over.png', sizingMethod='scale');
	zoom: 1;
}
.fancybox-ie6 #fancybox-title-float-left {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_title_left.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-title-float-main {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_title_main.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-title-float-right {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_title_right.png', sizingMethod='scale');
}
.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right,
#fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}
#fancybox-loading.fancybox-ie6 {
	position: absolute;
	margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2: document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop: document.body.scrollTop )) + 'px');
}
#fancybox-loading.fancybox-ie6 div {
	background: transparent;
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_loading.png', sizingMethod='scale');
}
/* IE6, IE7, IE8 */
.fancybox-ie .fancybox-bg {
	background: transparent !important;
}
.fancybox-ie #fancybox-bg-n {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_n.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-ne {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_ne.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-e {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_e.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-se {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_se.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-s {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_s.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-sw {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_sw.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-w {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_w.png', sizingMethod='scale');
}
.fancybox-ie #fancybox-bg-nw {
	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/js/fancybox/fancy_shadow_nw.png', sizingMethod='scale');
}
