#lerto_fb { border:none; overflow:hidden; width:206px; height:394px; background:#FFF;}
#lerto_wysuwane { background: url("img/fb_slider.png") no-repeat scroll 0 0 transparent; width: 253px; height:402px; position: fixed; margin-top: -250px;right: 0px; top: 50%; padding: 3px;}
.lerto_zamknij { background-position: 0px 0px -242px 0px; }
.border10 {-moz-border-radius: 10px;-webkit-border-radius: 10px; -khtml-border-radius: 10px;border-radius: 10px;}
/**
* @package		PickMeUp - jQuery datepicker plugin
* @author		Nazar Mokrynskyi <nazar@mokrynskyi.com>
* @author		Stefan Petre <www.eyecon.ro>
* @copyright	Copyright (c) 2013, Nazar Mokrynskyi
* @copyright	Copyright (c) 2008-2009, Stefan Petre
* @license		MIT License, see license.txt
*/
.pickmeup {
background: black;
border-radius: 0.4em;
display: none;
position: absolute; }
.pickmeup * {
-moz-box-sizing: border-box;
box-sizing: border-box; }
.pickmeup .pmu-instance {
display: inline-block;
height: 13.8em;
padding: .5em;
text-align: center;
width: 15em; }
.pickmeup .pmu-instance .pmu-button {
color: #eeeeee;
cursor: pointer;
outline: none;
text-decoration: none; }
.pickmeup .pmu-instance .pmu-today {
background: #17384d;
color: #88c5eb; }
.pickmeup .pmu-instance .pmu-button:hover {
color: #88c5eb; }
.pickmeup .pmu-instance .pmu-not-in-month {
color: #666666; }
.pickmeup .pmu-instance .pmu-disabled,
.pickmeup .pmu-instance .pmu-disabled:hover {
color: #333333;
cursor: default; }
.pickmeup .pmu-instance .pmu-selected {
background: #136a9f; }
.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected {
background: #17384d; }
.pickmeup .pmu-instance nav {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
color: #eeeeee;
line-height: 2em; }
.pickmeup .pmu-instance nav *:first-child :hover {
color: #88c5eb; }
.pickmeup .pmu-instance nav .pmu-prev,
.pickmeup .pmu-instance nav .pmu-next {
display: none;
height: 2em;
width: 1em; }
.pickmeup .pmu-instance nav .pmu-month {
width: 14em; }
.pickmeup .pmu-instance .pmu-years *,
.pickmeup .pmu-instance .pmu-months * {
display: inline-block;
line-height: 3.6em;
width: 3.5em; }
.pickmeup .pmu-instance .pmu-day-of-week {
color: #999999;
cursor: default; }
.pickmeup .pmu-instance .pmu-day-of-week *,
.pickmeup .pmu-instance .pmu-days * {
display: inline-block;
line-height: 1.5em;
width: 2em; }
.pickmeup .pmu-instance .pmu-day-of-week * {
line-height: 1.8em; }
.pickmeup .pmu-instance:first-child .pmu-prev,
.pickmeup .pmu-instance:last-child .pmu-next {
display: block; }
.pickmeup .pmu-instance:first-child .pmu-month,
.pickmeup .pmu-instance:last-child .pmu-month {
width: 13em; }
.pickmeup .pmu-instance:first-child:last-child .pmu-month {
width: 12em; }
.pickmeup:not(.pmu-view-days) .pmu-days, .pickmeup:not(.pmu-view-days) .pmu-day-of-week, .pickmeup:not(.pmu-view-months) .pmu-months, .pickmeup:not(.pmu-view-years) .pmu-years {
display: none; }


/*	General CSS resets; RANGE SLIDER */
.noUi-target * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-ms-touch-action: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: default;
}
/*	Main slider bar;
*		Standard styles no longer incorrectly force a
*		width or height on the slider.
*/
.noUi-base {
width: 100%;
height: 10px;
position: relative;
max-width: 100%;
max-height: 100%;
border: 1px solid #BFBFBF;
z-index: 1;
}
/*	Handles + active state;
*		The :after pseudo-element wont inherit
*		box-sizing, so it needs to applied manually.
*/
.noUi-handle {
background: #EEE;
height: 20px;
width: 20px;
border: 1px solid #BFBFBF;
margin: -6px 0 0 -13px;
cursor:pointer;
}
.noUi-active {
background: #E9E9E9;
}
.noUi-active:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
content: "";
display: block;
height: 100%;
border: 1px solid #DDD;
}
/*	Styling-only classes;
*		Structured to prevent double declarations
*		for various states of the slider.
*/
.noUi-connect {
background: Teal;
}
.noUi-background {
background: #DDD;
}
/*	Functional styles for handle positioning;
*		Note that the origins have z-index 0, the base has
*		z-index 1; This fixes a bug where borders become invisible.
*/
.noUi-origin {
position: absolute;
right: 0;
top: 0;
bottom: 0;
z-index: 0;
border-radius: inherit;
}
.noUi-origin-upper {
background: inherit !important;
}
.noUi-z-index {
z-index: 10;
}
/*	Adaptations for the vertical slider;
*		Some standard styles have been extended to keep
*		exceptions for the vertical slider as minimal as possible.
*/
.noUi-vertical {
width: 40px;
height: 100%;
}
.noUi-vertical .noUi-origin {
bottom: 0;
left: 0;
}
.noUi-vertical .noUi-handle  {
margin: -23px 0 0 -3px;
}
/*	Various alternate slider states;
*		Support for transition is widely available,
*		Only IE7, IE8 and IE9 will ignore these rules.
*		Since this is merely a progressive enhancement,
*		this is no problem at all.
*		http://caniuse.com/#search=transition
*/
.noUi-target[disabled] .noUi-base {
background: #999;
}
.noUi-target[disabled] .noUi-connect {
background: #BBB;
}
.noUi-state-tap .noUi-origin {
-webkit-transition: left 0.3s, top 0.3s;
transition: left 0.3s, top 0.3s;
}