.zaglavie {
background:url(../im/h1_bgr.gif) no-repeat;
border-bottom:1px solid white;
padding:40px 0 0 75px;
font:bold 11pt Tahoma;
color:#e0e1e2;
height: 30px;

}
.under_head {
background:url(../im/under_head.png) no-repeat;
padding:20px 0 0 300px;height:227px;
}
.under_head_en {
background:url(../im/en/under_head.png) no-repeat;
padding:20px 0 0 300px;height:227px;
}
.zaglavie_s {
background:url(../im/h1_bgr_s.png) no-repeat;
border-bottom:1px solid white;
padding:40px 0 0 75px;
font:bold 11pt Tahoma;
color:#e0e1e2;
height: 30px;
}



/*
 * simplyScroll 1.0.3 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 * http://logicbox.net/blog/simplyscroll-jquery-plugin
 * http://plugins.jquery.com/project/simplyScroll
 *
 * Copyright (c) 2009 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Last revised: 03/07/2009 21:13
 *
 */

/* Default/Master classes 

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/

.simply-scroll-container { /* Container DIV - automatically generated */
	position: relative;
}

	.simply-scroll-clip { /* Clip DIV - automatically generated */
		position: relative;
		overflow: hidden;
		z-index: 2;
	}

	.simply-scroll-list { /* UL/OL/DIV - the element that simplyScroll is inited on */
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		overflow: hidden;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
		.simply-scroll-list li {
			padding: 0;
			margin: 0;
			list-style: none;
		}
	
		.simply-scroll-list li img {
			border: none;
			display: block;
			
		}
	
	.simply-scroll-btn {
		position: absolute;
		background-image: url(../im/arr_left.gif);
		width: 25px;
		height: 24px;
		z-index:3;
		cursor: pointer;
	}
	
	.simply-scroll-btn-left {
		left: 20px;
		
		bottom: 30px;
		background-image: url(../im/arr_left.gif);
		
	}
	.simply-scroll-btn-left.disabled {
		background-position: 0 0 !important;
	}
	.simply-scroll-btn-left:hover {
		
	}
	
	.simply-scroll-btn-right {
		right: 20px;
		bottom: 30px;
		
		background-image: url(../im/arr_right.gif);
	}
	.simply-scroll-btn-right.disabled {
		background-position: 84px 0 !important;
	}
	.simply-scroll-btn-right:hover {
		
	}
	
	.simply-scroll-btn-up {
		right: 6px;
		top: 6px;
		background-position: -126px -44px;
	}
	.simply-scroll-btn-up.disabled {
		background-position: -126px 0 !important;
	}
	.simply-scroll-btn-up:hover {
		background-position: -126px -88px;
	}
	
	.simply-scroll-btn-down {
		right: 6px;
		bottom: 6px;
		background-position: -42px -44px;
	}
	.simply-scroll-btn-down.disabled {
		background-position: -42px 0 !important;
	}
	.simply-scroll-btn-down:hover {
		background-position: -42px -88px;
	}

/* Custom class modifications - override classees

.simply-scroll is default

*/

.simply-scroll { /* Customisable base class for style override DIV */
	width: 955px;
	height: 93px;
	margin-bottom: 1em;
}

	.simply-scroll .simply-scroll-clip {
		 
		height: 93px;
		margin:0 60px 0 60px;
		}
	
		.simply-scroll .simply-scroll-list {}
		
		.simply-scroll .simply-scroll-list li {
			float: left;
			width: 150px;
			height: 200px;
		}
		.simply-scroll .simply-scroll-list li img {margin-left:0;}
	
	.simply-scroll .simply-scroll-btn {}
	
	.simply-scroll .simply-scroll-btn-left {}
	.simply-scroll .simply-scroll-btn-left.disabled {}
	.simply-scroll .simply-scroll-btn-left:hover {}
	
	.simply-scroll .simply-scroll-btn-right {}
	.simply-scroll .simply-scroll-btn-right.disabled {}
	.simply-scroll .simply-scroll-btn-right:hover {}
	
	.simply-scroll .simply-scroll-btn-up {}
	.simply-scroll .simply-scroll-btn-up.disabled {}
	.simply-scroll .simply-scroll-btn-up:hover {}
	
	.simply-scroll .simply-scroll-btn-down {}
	.simply-scroll .simply-scroll-btn-down.disabled {}
	.simply-scroll .simply-scroll-btn-down:hover {}
	


/* Vertical scroller example */

.vert { /* wider than clip to position buttons to side */
	width: 340px;
	height: 400px;
	margin-bottom: 1.5em;
}

	.vert .simply-scroll-clip {
		width: 290px;
		height: 400px;
	}
	
		.vert .simply-scroll-list {}
		
		.vert .simply-scroll-list li {
			width: 290px;
			height: 200px;
		}
		.vert .simply-scroll-list li img {}
	
	.vert .simply-scroll-btn {}

	.vert .simply-scroll-btn-up { /* modified btn pos */
		right: 0;
		top: 0;
	}
	.vert .simply-scroll-btn-up.disabled {}
	.vert .simply-scroll-btn-up:hover {}
	
	.vert .simply-scroll-btn-down { /* modified btn pos */
		right: 0;
		top: 52px;
	}
	.vert .simply-scroll-btn-down.disabled {}
	.vert .simply-scroll-btn-down:hover {}
	
	/* NOTE left-right classes wouldn't be needed on vertical scroller */
	
/* Flickr example 

Images created from a data source use simpler format i.e.

<div>
	<img/>
	<img/>
	...
</div>

*/

.flickr {
	width: 850pxpx;
	height: 180px;
	margin-bottom: 1.5em;
}

	.flickr .simply-scroll-clip {
		width: 576px;
		height: 180px;
	}
		
		.flickr .simply-scroll-list img {
			float: left;
			border: none;
			display: block;
		}
.menu:link, .menu:visited {
font:bold 9pt Tahoma;
color:#57595c;
text-transform:uppercase;
text-decoration:none;
margin-right:15px;


}
.menu:hover {
color:#dd5c5e;
}
.menu_selected {
font:bold 9pt Tahoma;
color:#dd5c5e;
text-transform:uppercase;
text-decoration:none;
margin-right:15px;
}
.submenu {
display:none;
position:absolute;
top: 34px;
max-width: 200px;
width: 200px;
text-align:left;
left:0;
}

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

.submenu ul a, .submenu ul a:visited {
background-color:#ffffff;
display:block;
text-decoration:none;
border:1px solid #e6e6e6;
border-top:0px;
width:100%;
font:bold 7pt/25px Tahoma;
color:#57595c;
padding:0 5px 0 5px;
text-transform:uppercase;
}
.submenu ul a:hover {
background-color:#d7413d;
color:#fff;
}
.submenu_act {
background-color:#d7413d!important;
color:#fff!important;
}
.langs {
margin-right:15px;
}
.langs a, .langs a:visited {
font:bold 7pt Tahoma;
color:#57595c;
text-transform:uppercase;
text-decoration:none;
}
.langs a:hover, .langs_act {
color:#dd5c5e!important;
}
div#nyroModalFull {
	font-size: 12px;
	color: #777;
	font-family: Verdana;
}
div#nyroModalFull div#nyroModalLoading {
	border: 4px solid #777;
	width: 150px;
	height: 150px;
	text-indent: -9999em;
	background: #fff url(../im/ajaxLoader.gif) no-repeat;
	background-position: center;
}
div#nyroModalFull div#nyroModalLoading.error {
	border: 4px solid #f66;
	line-height: 20px;
	padding: 20px;
	width: 300px;
	height: 100px;
	text-indent: 0;
	background: #fff;
}
div#nyroModalFull div#nyroModalWrapper {
	background: #fff;
	border: 4px solid #777;
}
div#nyroModalFull div#nyroModalWrapper a#closeBut {
	position: absolute;
	display: block;
	top: -13px;
	right: -13px;
	width: 12px;
	height: 12px;
	text-indent: -9999em;
	background: url(../im/close.gif) no-repeat;
	outline: 0;
}
div#nyroModalFull div#nyroModalWrapper h1#nyroModalTitle {
	margin: 0;
	padding: 0;
	position: absolute;
	top: -22px;
	left: 5px;
	font-size: 12px;
	color: #ddd;
}
div#nyroModalFull div#nyroModalWrapper div.wrapper div#nyroModalContent {
	padding: 5px;
}
div#nyroModalFull div#nyroModalWrapper div.wrapperImg div#nyroModalContent {
	position: relative;
	overflow: hidden;
	text-align: center;
}
div#nyroModalFull div#nyroModalWrapper div.wrapperImg div#nyroModalContent img {
	vertical-align: baseline;
}
div#nyroModalFull div#nyroModalWrapper div.wrapperImg div#nyroModalContent div {
	position: absolute;
	bottom: 0;
	left: 0;
	background: black;
	padding: 10px;
	margin: 10px;
	border: 1px white dotted;
	overflow: hidden;
	opacity: 0.2;
	filter: alpha(opacity=20);
}
div#nyroModalFull div#nyroModalWrapper div.wrapperImg div#nyroModalContent div:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: help;
}
div#nyroModalFull div#nyroModalWrapper a.nyroModalPrev, div#nyroModalFull div#nyroModalWrapper a.nyroModalNext {
	z-index: 105;
	outline: none;
	position: absolute;
	top: 0;
	height: 100%;
	width: 40%;
	cursor: pointer;
	text-indent: -9999em;
	background-image: url(data:image/gif;base64,AAAA); /* Trick IE6 */
}
div#nyroModalFull div#nyroModalWrapper div.wrapperSwf a.nyroModalPrev, div#nyroModalFull div#nyroModalWrapper div.wrapperSwf a.nyroModalNext, div#nyroModalFull div#nyroModalWrapper div.wrapper a.nyroModalPrev, div#nyroModalFull div#nyroModalWrapper div.wrapper a.nyroModalNext {
	height: 60%;
	width: 20%;
}
div#nyroModalFull div#nyroModalWrapper div#nyroModalContent a.nyroModalPrev {
	left: 0;
}
div#nyroModalFull div#nyroModalWrapper div#nyroModalContent a.nyroModalPrev:hover {
	background: url(../im/prev.gif) left 20% no-repeat;
}
div#nyroModalFull div#nyroModalWrapper div#nyroModalContent a.nyroModalNext {
	right: 0;
}
div#nyroModalFull div#nyroModalWrapper div#nyroModalContent a.nyroModalNext:hover {
	background: url(../im/next.gif) right 20% no-repeat;
}body {
background:url('../im/body_bgr.png') repeat-x top;
margin:0;
font:10pt/16pt Tahoma;
color:#242226;
text-align:center;
}

.h_span { color: #000000; text-decoration: underline; font-family: Tahoma, Arial, Verdana; font-weight: bold; font-size: 9pt; cursor: pointer; }
.h_span:hover { color: #000000; text-decoration: none; font-family: Tahoma, Arial, Verdana; font-weight: bold; font-size: 9pt; cursor: pointer; }

a:link.link_b { color: #000000; text-decoration: underline; font-family: Tahoma, Arial, Verdana; font-weight: bold; font-size: 9pt; display: inline; margin: 0px; }
a:visited.link_b { color: #000000; text-decoration: underline; font-family: Tahoma, Arial, Verdana; font-weight: bold; font-size: 9pt; display: inline; margin: 0px; }
a:hover.link_b { color: #000000; text-decoration: none; font-family: Tahoma, Arial, Verdana; font-weight: bold; font-size: 9pt; display: inline; margin: 0px; }

a:link.link_f { color: #FFF; text-decoration: underline; }
a:visited.link_f { color: #FFF; text-decoration: underline; }
a:hover.link_f { color: #FFF; text-decoration: none; }

.breadcrumb_d { margin-top: 30px; margin-left: 20px; }

.back, .back:visited {
font:10pt Tahoma;
color:#242226;
text-decoration:underline;
}
.back:hover {
text-decoration:none;
}
.holder {
background:url(../im/smoke.png) no-repeat left top;
height:236px;
width:330px;
position:absolute;
z-index:-1;
left: -112px;
top:0px;
}

h1 {
	font:bold 11pt Tahoma;
	color:#e0e1e2;
	padding: 0px;
	margin: 0px;
}

/* WINTER STUFF
.holder {
background:url(../im/smoke.png) no-repeat left top;
height:241px;
width:1243px;
position:absolute;
z-index:-1;
left: -143px;
top:0px;
}
*/
.out_pos {
padding-top:30px;
position:relative;
width:963px;
margin:0 auto;
}
/* WINTER STUFF
.holder1 {
background:url(../im/smoke1.png) no-repeat left top;
height:346px;
width:1243px;
position:absolute;
z-index:-1;
left: -143px;
top:0px;
}
*/
.holder1 {
background:url(../im/smoke1.png) no-repeat left top;
height:340px;
width:346px;
position:absolute;
z-index:-1;
left: -112px;
top:0px;
}
#header {
background:url(../im/header_bgr.png) no-repeat;
height:114px;
}
.left {
float:left;
}
.right {
float:right;
}
.under_head {
background:url(../im/under_head.png) no-repeat;
padding:20px 0 0 300px;height:247px;
[height:247px;
height:227px;]
}
.under_head_en {
background:url(../im/en/under_head.png) no-repeat;
padding:20px 0 0 300px;height:247px;
[height:247px;
height:227px;]
}
.under_head_s {
background:url(../im/services_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_s a {
display:block;
margin:21px 0 0 21px;

}
.under_head_s_en {
background:url(../im/en/services_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_s_en a {
display:block;
margin:21px 0 0 25px;

}
.under_head_o {
background:url(../im/opinion_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_o a {
display:block;
margin:21px 0 0 21px;

}
.under_head_o_en {
background:url(../im/en/opinion_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_o_en a {
display:block;
margin:21px 0 0 25px;

}
.under_head_p {
background:url(../im/partners_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_p a {
display:block;
margin:25px 0 0 25px;

}
.under_head_p_en {
background:url(../im/en/partners_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_p_en a {
display:block;
margin:25px 0 0 25px;

}
.under_head_j {
background:url(../im/jobs_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_j a {
display:block;
margin:25px 0 0 25px;

}
.under_head_j_en {
background:url(../im/en/jobs_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_j_en a {
display:block;
margin:25px 0 0 25px;

}
.under_head_rez {
background:url(../im/reserv_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_rez a {
display:block;
margin:25px 0 0 25px;

}
.under_head_rez_en {
background:url(../im/en/reserv_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_rez_en a {
display:block;
margin:25px 0 0 25px;

}
.under_head_m {
background:url(../im/menu_header.png) no-repeat;
height:239px;
text-align:left;

}
.under_head_m a {
display:block;
margin:26px 0 0 25px;

}
.under_head_m_en {
background:url(../im/en/menu_header.png) no-repeat;
height:239px;
text-align:left;

}
.under_head_m_en a {
display:block;
margin:25px 0 0 25px;

}
.under_head_r {
background:url(../im/bg/res_header.png) no-repeat;
height:239px;
text-align:left;

}
.under_head_r a {
display:block;
margin:25px 0 0 25px;

}
.under_head_r_en {
background:url(../im/en/res_header.png) no-repeat;
height:239px;
text-align:left;

}
.under_head_r_en a {
display:block;
margin:25px 0 0 25px;

}
.under_head_d {
background:url(../im/delivery_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_d a {
display:block;
margin:25px 0 0 25px;

}
.under_head_d_en {
background:url(../im/en/delivery_header.png) no-repeat;
height:239px;
text-align:left;
}
.under_head_d_en a {
display:block;
margin:25px 0 0 25px;

}

.menu_gal {
background:url(../im/menu_gal.png) no-repeat bottom;
height:110px;
width:962px;
 
}
.ramka {
background:url(../im/ramka.gif) no-repeat;
padding:6px 6px 5px 6px;margin-left:10px;
border:none;
}
.ramka img {
border: 1px solid white;

}

#footer {
background:url(../im/footer.gif) no-repeat;
height:89px;
font:bold 8pt Tahoma;
color:#48494a;

}
#footer img {
margin-right:10px;
float:left;
}
#footer span {
padding:30px 0 0 0;
display:block;
float:left;
color:#FFFFFF;
}
#footer b {
display:block;
padding:0 15px 10px 0;
}
.zaglavie {
background:url(../im/h1_bgr.gif) no-repeat 0 3px;
border-bottom:1px solid white;
padding:50px 0 10px 75px;
font:bold 11pt Tahoma;
color:#e0e1e2;
padding-top: 48px;
padding-bottom: 0px;
height: 27px;
text-align: left;



}
.zaglavie_s {
background:url(../im/h1_bgr_s.png) no-repeat;
border-bottom:1px solid white;
padding:40px 0 0 75px;
font:bold 11pt Tahoma;
color:#e0e1e2;
height: 70px;
[height: 70px;
height: 30px;]
}
#content {
background:#edeeef url(../im/content_bottom.gif) no-repeat bottom;
font:10pt/16pt Tahoma;
color:#242226;
padding:0 25px 25px 25px;
text-align:left;
}
.links, .links:visited{
font:10pt/20px Tahoma;
color:#242226;
text-decoration:underline;
}
.links:hover{
text-decoration:none;

}
.sudurjanie_top {
background:#edeeef url(../im/content_top.gif) no-repeat top;
font:10pt/16pt Tahoma;
padding:19px 20px 15px 20px;
}
.sudurjanie {
background:#edeeef;

font:10pt/16pt Tahoma;

}
.price {
float:right;
font:bold 10pt/16pt Tahoma;
color:#242226;
padding-bottom:20px;
}
.but {float:right;
background:url(../im/but_bgr.gif) no-repeat;
width:222px;
height:46px;
display:block;
font:bold 10pt/45px Tahoma;
color:#3f7918;
text-decoration:none;
text-align:center;
text-transform:uppercase;
}
.bgr {
background:#edeeef url(../im/content_bottom.gif) no-repeat bottom;
}
input {
width:201px;
border:1px solid #246004;
font:10pt/16pt Tahoma;
color:#246004;
padding:3px;
}
textarea {
border:1px solid #246004;
font:10pt/16pt Tahoma;
color:#246004;
padding:3px;
}
.button {
border:none;
cursor:pointer;
font:bold 10pt Tahoma;
color:white;
text-transform:uppercase;
background-color:#176802;
width:100px;
}
.but_job_td {
border-top:1px solid #afb0b0;
border-bottom:1px solid #afb0b0;
background-color:#FFFFFF;
padding:0px 5px 0px 5px;

}
.but_job, but_job:visited {
font:bold 10pt/44px Tahoma;
color:#3f7918;
text-decoration:none;
text-align:center;
text-transform:uppercase;

}
.anchor, .anchor:visited {
font:bold 8pt Tahoma;
color:#57595c;
text-decoration:underline;
}
.anchor:hover {
text-decoration:none;
}
.menu_up {
border-bottom:1px solid #161318;
font-weight:bold;
color:#417826;
}
.menu_up_r {
border-bottom:1px solid #161318;
font-size:8pt;
white-space:nowrap;
}

/* jQ Slider */

/*
#easyslider img{border: none;}

#controls {position: absolute; top: -55px; left: 20px; z-index: 9999px; margin:0px; padding:0px;}
#controls li {
	display: inline; list-style-type: none; float: left; width: 10px; height: 11px;
	margin-left: 5px;
	background: url(../img/cir_empty.gif) no-repeat;
}

#controls li .current {
	background: url(../img/cir_full.gif) no-repeat;
}
*/
#order_link { z-index: 50; position: absolute; bottom: 68px; left: 695px; width: 233px; height: 58px; }
#order_link a { float: left; width: 233px; height: 58px; }
#nav { z-index: 50; position: absolute; bottom: 30px; left: 35px; }
#nav a { width: 10px; height: 11px; float: left; margin-left: 5px; background: url(../img/cir_empty.gif) no-repeat; text-decoration: none; }
#nav a.activeSlide { background: url(../img/cir_full.gif) no-repeat; }
#nav a:focus { outline: none; }

/* END jQ Slider */
