/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit, .middleUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding:0 10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where 
	padding and border are NOT added onto the width - they are included in the width, 
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}
 iframe {max-width:100%;}
/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space. 
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters. 
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
 
}
 .middleUnit  {  background:   url(../images/logo22.jpg) center bottom no-repeat   ; overflow:hidden;padding: 0px 10px 90px 10px; margin :0 0 50px 0;position:relative;}
 .middleUnit:last-child {background:none;}
                    
/* MAIN LAYOUT */
body {
    margin: 0;
    background: #ededed;
    min-width: 240px; 
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    background: #fff;
	    padding: 40px 0 60px;
	    min-height: 300px;
	}
	.inner {
	    max-width: 1170px;
	    margin: 0 auto;
	    padding: 0 15px;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
	    width:100%; /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
	    margin-top: 12px;
	}
	.no-sidebar .sidebar {
		display: none;
	}


/* HEADER */
.header {
    background: #fff;
}
	.header .inner {
	    padding : 14px 0;
	    position: relative; 
	     
	}

	/* Brand */
	header .brand, header .brand:hover {
	   
	    color: #fff;
	    display:  inline-block;    text-align:left;  height:82px;line-height:82px;
	}
		 	.brand img  {float:left;max-height:82px;width:auto;}
		.brand p {
     font-family:   Arial, sans-serif;  
		    color: #008c00;
		    font-size:24px; padding-left:90px; text-shadow:1px 1px 1px #fff; position:relative;z-index:5;  text-transform:none;
		}

	/* Search form */

	.search-bar {
		position: absolute;
		right: 13px;
		top: 12px;
	}
		.search-bar .field {
			margin: 0;
			padding: 0;
		}
		.search-bar form input.text {
		    width: 155px;
		    padding: 5px 34px 5px 15px;
		    color: #888;
		    margin: 0;
		    border: none;
		    -moz-border-radius: 14px;
		    border-radius: 14px;
		    background: #fff;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    right: 5px;
		    top: 0;
		    cursor: pointer;
		    border: none;
		    padding: 5px;
		    background: none;
		    font-family: 'WebSymbolsRegular';
		    color: #848484;
			border-radius: 0;
			margin: 0;
		}
		.search-bar form input.active,
		.search-bar form input.action:hover {
		    color: #000;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}




	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #e5e5e5;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #e5e5e5;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow { 
			    color: #b80000;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 2px;
			    top: 7px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 6px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		    font-size: 11px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;
		    font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
		}
		.main .secondary li .text {
		    padding-left: 28px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #b80000;
			background-color: #EDEDED;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}
		

		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }
			
		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #b80000;
		}




/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: #333; margin-left: 0; }
.footer a.brand:hover { color: #B80000; }
body h1 span.amp {
    font-family: Baskerville,"Goudy Old Style","Palatino","Book Antiqua",Georgia;
    font-style: italic;
}


/* FOOTER */
.footer {
    color: #fff;
     font-family: 'LatoReg', Arial, sans-serif;
    background: #000;
    padding: 10px 0;
    font-size: 11px;
    line-height: 11px;
    text-align:right;
    border-top: 0px solid #99cc01;
}

.footer p {
    color: #fff;  line-height: 11px;
    font-size: 9px;
    text-align: center;
    font-family: 'LatoReg';
}
 .footer img {
    float: left;
    height: 14px;
    width: 14px;
    padding-top: 3px;
}
 
/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}
  .typography table.apart td,
  .typography table.apart th {
      padding: 2px 5px;
      border: 0px solid #d4d4d4;
      vertical-align: top;
  }
/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries) 
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}
.headimg {width:100%;display:block;height:auto;position:relative;z-index:3;}
.upup {
    position: fixed;
    bottom: 85px;
    right: 20px;
}
table.oferta {width:100%;text-align:center;font-size:20px;color:#006b00;}
table.oferta img, table.oferta img.leftAlone{text-align:center;float:none;display:block;margin:0px auto;padding:30px 0 5px 0;}
table.onas {width:auto;text-align:left;font-size:24px;color:#006b00;font-family: 'LatoBol';padding:20px 0;}
.typography table.onas td {vertical-align:middle;}
.typography table.onas td img {display:block;margin:0 20px 0 0;}
/* BREAKPOINT 960px */
 .logo2 {display:block;clear:both;margin:0px auto;}
 .galerie-pojedyncze img {float:left;display:inline-block;margin:2px;}

@media only screen and (max-width: 960px) {
	.content img {
	    max-width: 97%;
	    height: auto;
	}
	.header .primary ul {
	    margin-left: -12px;
	    -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
	}
}
@media only screen and (min-width: 641px) {
 .lang  {
    position: fixed;
    right: 0px;
    top: 300px;
    z-index: 200;
    background: url(../images/header-green.png)  0% 100% repeat #008800;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 0px;
    -moz-box-shadow: 0px 0px 5px #000000;
    -webkit-box-shadow: 0px 0px 5px #000000;
    box-shadow: 0px 0px 5px #000000;
}
                .lang ul {
    padding-top: 10px;
}
                .lang  li {
    list-style: none;
    padding: 2px 3px;
}
 .imgWrap {float:left; width:29%;margin:20px 2%;position:relative;}
  .imgWraps {position:relative;max-width:340px;margin:0px auto;overflow:hidden;}
  .typography .imgWrap h2 {text-align:center;position:absolute;margin:0;bottom:0;left:0;right:0;color:#fff;font-size:20px;height:50px;line-height:50px;background: url(../images/headh1.jpg)  50%  50%  repeat  ;}
.headins {overflow:hidden;}
header.header {background: url(../images/header-green.png)  50%  50%  repeat #008800;overflow:hidden;}
nav.primary {overflow:hidden; background:#fff}
nav.primary ul {width:auto;max-width:1170px;margin:0px auto;list-style:none;border-bottom:0px solid #99cc01;overflow:hidden}
nav.primary ul li {display:inline-block;float:left;width:auto; 
            margin:5px 1px;padding:0 2%;border-right: 1px solid #575656;height:39px;line-height:39px; }
           nav.primary ul li:hover ,  nav.primary ul li.current ,
			nav.primary ul li.section {color:#000;}
 
    nav.primary ul li a:link, nav.primary ul li a:visited, nav.primary ul li a:hover { font-size: 18px;
			    color: #575656;margin:  0;display:block;width:100%;font-weight:normal;text-transform:none;}
           
 nav.primary ul li.current a,
			nav.primary ul li.section a {
			  color:  #0a6e2b;
			}
			nav.primary ul li a:hover {
			   color: #0a6e2b; 
			}
   
      nav.primary ul li img {width:100%;height:auto;display:block;}
      .headimg22 {position:absolute;right: 0%;top:0; z-index:2;max-width:30%; }
        .headimg21 {position:absolute;right: 0%;top:0; z-index:4;max-width:30%; }
        .social {position:relative;float:right; padding-top:20px;z-index:8;width:145px;text-align:right;}
         .social img {display:inline-block;margin:0px ;border:1px solid #fff;}
         
     .module1, .module2, .module3, .module4 { width:48%;position:relative;margin-bottom:60px;}   
     .module1,   .module3 {float:left;}
      .module2,   .module4 {float:right;}
      .moduly a, .moduly img {display:block;max-width:100%;}
      .moduly .apply {position:absolute;right:0;bottom:0;z-index:2;} 
       .moduly .interview {position:absolute;right:0;top:0;z-index:2;width:120px;height:auto;} 
       .module3 {background: url(../images/zawiasy.png)  50%  80% no-repeat #ebebeb;border-top:5px solid #99cc01;} 
       .module3 img {float:right;clear:both;} 
       .typography .module3 p {width:80%;display:block;margin:0px auto;clear:both;margin-bottom:20px;padding-top:20px;} 
       .typography .module3 p.absolut {width:100%;display:block;margin:0px auto;clear:both;margin-bottom: 0px;font-size:12px;line-height:16px;text-align:center;color:#fff;background: url(../images/kategoria_35a.png)  0%   0% repeat  ; padding :5px 0;position:absolute;left:0;right:0;bottom:0;z-index:2;}  
        .typography .module3 a:link,  .typography .module3 a:visited,  .typography .module3 a:hover {color:#464646;}
        .typography .module4 table {   border: 0px solid #d4d4d4;text-align: center;margin:0px auto; } 
        .typography .module4 table tr:nth-child(2n) {     background-color: #fff;  }
           .typography .module4 table td {border:0;text-align:center;}
           .typography .module4 table td img {display:block;margin:0 auto;}
           .typography .module4 h3    {text-align:center;}
            .lewy  {width:57%;padding-right:3%;float:left;border-right:1px solid #ccc; }
               .prawy  {width:36%;float:right;  }
                .prawy   .module1,  .prawy .module2,  .prawy .module3,  .prawy .module4  {width:100%;}
                }
/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
.lang  {
    display: block; text-align:center;padding:10px 0; background: url(../images/header-green.png)  0% 100% repeat #008800;
}
.lang li {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 5px;
    font-weight: bold;
}
.lang li.section a {
    color: #DA251C;
    font-weight: bold;
} 
.typography table.apart td {display:block;width:100%;}
 .imgWrap {float:left; width:96%;margin:20px 2%;position:relative;text-align:center;overflow:hidden;}
  .imgWraps {position:relative;max-width:340px;margin:0px auto;overflow:hidden;}
    .typography .imgWrap h2 {text-align:center;position:absolute;margin:0;bottom:0;left:0;right:0;color:#fff;font-size:20px;height:50px;line-height:50px;background: url(../images/headh1.jpg)  50%  50%  repeat  ;}
	body {
	    max-width: 640px;
	}
	#media-query-trigger {
	    visibility: visible;
	}
  .comp {display:none;} 

	/* Brand */
	header .brand, header .brand:hover {
	    float: left; overflow:hidden;
	    color: #fff;
	    display:  block;  width:100%; text-align:left;  height:80px;line-height:80px;
	}
		 	.brand img  {display:block;float:left;max-height:80px;width:auto;padding-bottom:15px;}
		.brand p {
     font-family:   Arial, sans-serif; height:80px;line-height:80px; text-indent:5px;
		    color: #008c00;
		    font-size:20px;
		}
	/* Navigation*/

	.tablet-nav .header .brand {
	    float: none;
	    display: inline-block;
	    
	}
		.brand h1 {
		    font-size: 40px;
		}
		.brand h1 {
		    padding-right: 100px; /* padding stops .brand text from overlapping the search and nav buttons */
		}
	.tablet-nav .header {
	    padding: 0px; background: url(../images/header-green.png)  50%  50%  repeat #008800;
	}
		.tablet-nav .header .inner {
		  display:block; padding : 15px 0 0 0; 
	    position: relative; 
		    min-height: 80px;
		}
		.tablet-nav .header .primary .nav-open-button { /* styling and positioning of the nav toggle button */
		    z-index: 100;
		    width: 20px;
		    height: 20px;
		    position: absolute;
		    right: 20px;
		    top: 35px;
		    display: block;
		    cursor: pointer;
		    font-family: 'WebSymbolsRegular';
		    font-size: 20px;
		    color: #fff;
		}
		.tablet-nav .header .primary ul {
		    z-index: 10;
		    position: absolute; top:101px;left:0;right:0;
		    display: none; /* initially hiding the navigation */
		    float: left;
		    margin: 0;
		    padding: 0;
		    white-space: normal;
		    width: 100%;
		}
			.tablet-nav .header .primary ul li {
			    width: 100%;
			    margin: 0;
			    padding: 0;
			    float: none; /* displays list items vertically */
			    background: none;
			    position: relative;
          border-bottom:1px solid #6BC90E;
          border-top:1px solid #57BD0B;
			    
			}
			.tablet-nav .header .primary ul li:after { /* creates the arrow for the primary nav links */
			    content: '\003e';
			    display: block;
			    position: absolute;
			    right: 20px;
			    top: 0px;
			    font-family: 'WebSymbolsRegular';
			    font-size: 14px;
			    color: #fff;
			    text-align: center;
			    vertical-align: middle;
			    line-height: 38px;
			}
			.tablet-nav .header .primary ul li a,
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a { /* styling the  top level nav links */
			    padding: 10px 0 10px 22px;
			    font-weight: bold;
			    width:100%;display:block; 
			    color: #fff;
			    background: #62C40D ;
			}
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a {
		background:#0a6e2b ;   color: #fff;
			}
			.tablet-nav .header .primary ul li a:hover {
			   color: #fff; background:#0a6e2b ;
			}
			.tablet-nav .header .primary li.section:after,
			.tablet-nav .header .primary li.current:after {
			    display: none; /* hides the link arrow on current top level page */
			}
			.tablet-nav .tablet-nav .header nav.primary ul li {
				padding: 0;
			}

	/* Search Form */
	.search-bar { /* adds new styling to mobile search bar */
	    width: 100%;
	    position: relative;
	    top: 0;
	    right: 0;
	    display: none; /* hides searchbar initially */
	    padding: 20px 0;
	    margin: 0;
	    background-color: #E7E7E7;
	}
	.search-dropdown-icon { /* styling for search toggle button */
	    display: block;
	    cursor: pointer;
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    right: 60px;
	    top: 34px;
	    font-family: 'WebSymbolsRegular';
	    font-size: 20px;
	    color: #ededed;
	    text-align: center;
	    line-height: 20px;
	}
	.search-bar form {
	    margin: 0;
	    width: 100%;
	}
		.search-bar form fieldset {
		    padding: 0 18px;
		    left: 0;
		    right: 0;
		    position: relative;
		}
	.search-bar div.field {
	    margin-bottom: 0;
	}
	.search-bar form input.text {
	    width: 89%; /* makes search input full width - allowing for space either side */
	    max-width: 89%;
	    padding: 8px 10% 8px 1%;
	    text-indent: 15px;
	    position: relative;
	    display: block;
	    right: 0;
	    left: 0;
	    border: 1px solid #e5e5e5;
	    background: #fff;
	    font-size: 17px;
	    -moz-border-radius: 20px; /* increase border radius due to increased padding */
		border-radius: 20px;
	}
	.search-bar form input.action {
	    right: 5%;
	    top: 2px;
	    font-size: 18px;
	}

	/* Main Content */
	.main {
	    padding: 20px 0 45px; /* decrease padding so that more content can fit on screen */
	}
	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	    margin-bottom: 30px;
	}
		.typography h1 { /* decrease size of page heading due to smaller screen */
		    font-size: 30px;
			line-height:35px;
		    margin-bottom: 15px;
		    padding-bottom: 10px;
		}
		.typography p {
		    font-size: 16px;
		    line-height: 30px;
		}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	.main .inner {
	    padding: 0 22px;
	}
	/* Secondry Nav */
	.secondary li a {
	    line-height: 24px;
	}
	.secondary li .arrow {
	    line-height: 26px;
	}
	/* Footer */
	.footer .right {
	    float: left;
	    width: 100%;
	}
   .module1, .module2, .module3, .module4 { width:98%;float:none;position:relative;margin:0 auto;margin-bottom:30px;max-width:540px;}   
      
      .moduly a, .moduly img {display:block;max-width:100%;}
      .moduly .apply {position:absolute;right:0;bottom:0;z-index:2;} 
       .moduly .interview {position:absolute;right:0;top:0;z-index:2;width:100px;height:auto;}  
       .module3 {background: url(../images/zawiasy.png)  50%  80% no-repeat #ebebeb;border-top:5px solid #99cc01;} 
       .module3 img {float:right;clear:both;} 
       .typography .module3 {position:relative; overflow:hidden;}
       .typography .module3 p {width:80%;display:block;margin:0px auto;clear:both;margin-bottom:20px;padding-top:20px;}
         .typography .module3 p.absolut {width:100%;display:block;margin:0px auto;clear:both;margin-bottom: 0px;font-size:12px;line-height:16px;text-align:center;color:#fff;background: url(../images/kategoria_35a.png)  0%   0% repeat  ; padding :5px 0;position:absolute;left:0;right:0;bottom:0;z-index:2;}  
     
        .typography .module3 a:link,  .typography .module3 a:visited,  .typography .module3 a:hover {color:#464646;}
        .typography .module4 table {   border: 0px solid #d4d4d4;text-align: center;margin:0px auto; } 
        .typography .module4 table tr:nth-child(2n) {     background-color: #fff;  }
           .typography .module4 table td {border:0;text-align:center;}
           .typography .module4 table td img {display:block;margin:0 auto;}
           .typography .module4 h3    {text-align:center;}
           .prawy, .lewy  {width:98%;float:none;position:relative;margin:0 auto;margin-bottom:30px;margin-right:0;border:0;}
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}
.skk_container {margin:0 auto;}


/* LIGHTBOX*/
 #sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#fff;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:1px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url(../images/loading.gif) no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:26px;width:26px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url(../images/close.png);}
#sb-nav-next{background-image:url(../images/next.png);}
#sb-nav-previous{background-image:url(../images/previous.png);}
#sb-nav-play{background-image:url(../images/play.png);}
#sb-nav-pause{background-image:url(../images/pause.png);}
#sb-counter{float:left;width:45%;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
div.sb-message{font-size:12px;padding:10px;text-align:center;}
div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underline;}

 .row.header-hotel.ng-scope {display:none}