@charset "iso-8859-1";


/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 3em 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
form
{
    margin: 0;
}
li, p, div.catlist-item {
	font-size: 12px;
	line-height: 150%;
	color: #666;
	letter-spacing: 0.2px;
}
#middleColumn h1, h2, h3, h4, h5, h6 {
	color: #009036;
	/*color: #009978;*/
}
h1 {
	font-size: 13px;
	letter-spacing: 0.3px;
}
h2, h3, h4, h5, h6
{
	font-size: 13px;
	letter-spacing: 0.4px;
}

/* alter some HTML elements' default style
 */
 #languages a {
	text-decoration: none;
	color: #666;
	font-weight: normal;
	font-size: 9px;
}
#languages .CUR a {
	color: #336eb0;
	font-weight: bold;
}
 a, a:link, a:visited, a:active
{
	text-decoration: underline;
	color: #336eb0;
}
a:visited {
	color: #809e8d;
}
a:hover
{
	color: #336eb0;
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 0 1%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
    text-align: center;
	
}
#pageWrapper
{
	border: 0;
	width: 940px;	
	text-align: left;
	margin: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: 0;
	padding: 0;
	position: relative;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 183px #fff;
	border-right: solid 183px #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	padding: 15px 0;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -183px;
	width: 142px;
	z-index: 4;
	text-align: center;
}
#leftColumn .inside, #middleColumn .inside {
    padding: 0;
}
#rightColumn
{
	float: right;
	width: 182px;
	margin: 0 -183px 0 1px;
	z-index: 2;
}
#rightColumn, #rightColumn .inside{
	padding: 0;
	
}
object {
	margin: 2em 1em;
}
#footer
{
	border-top: solid 2px #ededed;
	padding: 0;
	color: #000;
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
	width: 940px;
	margin: 0 auto;
	text-align: left;
}

#footer TABLE.contenttable {
  width: 100%;
}

#footer div#footer-menu, #footer p.bodytext
{
    padding: 6px 0;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
  margin: 1em 0;
  width: 179px;
  text-align: left;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: 0;
}
.vnav ul li
{
	border: 0;
}
.vnav ul li.vm_act {
   background: transparent url(vm_bck_act.gif) repeat-y top left;

}
.vnav ul li.vm {
   background: transparent url(vm_bck.gif) repeat-y top left;

}
.vnav ul li.vm_act .vm_out {
   background: transparent url(vm_top_act.gif) no-repeat top left;
}
.vnav ul li.vm .vm_out {
   background: transparent url(vm_top.gif) no-repeat top left;
}
.vnav ul li.vm_act .vm_in {
   background: transparent url(vm_bot_act.gif) no-repeat bottom left;
}
.vnav ul li.vm .vm_in {
   background: transparent url(vm_bot.gif) no-repeat bottom left;
}

.vnav ul li.vm_act div.vm_2 {/*, .vnav ul li.vm_act .vm_2_act { */
   background: white url(vm_2_bck.gif) repeat-y top left;

}
.vnav ul li div.vm_2 li.vm_2 a
{
	background: url(row2.gif) no-repeat 15px center;
	color: #6a6a6a;
}
.vnav ul li div.vm_2 li.vm_2_act a
{
	background: url(row2_act.gif) no-repeat 15px center;
}

.vnav ul li div.vm_2 .vm_out {
   background: transparent url(vm_2_top.gif) no-repeat top left;
}
.vnav ul li.vm_2_act .vm_in {

}
.vnav ul li div.vm_2 .vm_in {
   background: transparent url(vm_2_bot.gif) no-repeat bottom left;
}
.vnav ul li.vm_act a, .hnav ul li.active a.act {
	color: #336eb0;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 12px 2px 10px 25px;
	margin-right: 10px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
	color: #6a6a6a;
	background: url(row.gif) no-repeat 15px center;
}
.vnav ul li.vm_act a
{
	background: url(row_act.gif) no-repeat 15px center;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}




.tabnav_img, .hm_img {
  float: left;
}

.hm_img {
  margin-top: 17px;
}


/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	/*border-color: #565;*/
}

html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #fff;
	color: #000;
	font-family: verdana, helvetica, sans-serif;
	font-size: 12px;
	color: #6a6a6a;
}

#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}

#masthead
{
	background: #fff url(header3_v3.jpg) no-repeat top;
        width: 940px;
        height: 192px;        
}
#masthead img
{
	border: 0;
	margin: 0 10px;
}

#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
/*	background-color: #cdc;
	color: #000;*/
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}

#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	padding: 3em 0;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}

.tx-jkpoll-pi1, .form_box {
    width: 179px;
	position: relative;
	overflow: visible;
	padding: 0;
	margin: 0 0 20px 0;
	border: 0;
	text-align: left;
}
.form_box_body {
  background: url(box_back.gif) repeat-x;
  width: 165px;
  padding: 10px;
  voice-family: "\"}\""; 
  voice-family:inherit;
  width: 145px;

}
#rightColumn .form_box_body {
  margin-left: 14px;  
}
.tx-jkpoll-pi1 h1, .form_box h1 {
	line-height: 31px;
	padding-top: 10px;
	padding-left: 20px;
	margin: 0;
	color: #165005;
	background: url(box_header_left_.gif) no-repeat top left;
}
#pollContainer, .form_box {
	position: relative;
}
#leftColumn .tx-jkpoll-pi1 h1, #leftColumn .form_box h1 {
	background: url(box_header_right_.gif) no-repeat top right;
}
#rightColumn .tx-jkpoll-pi1 h1, #rightColumn .form_box h1 {
	background: url(box_header_left_.gif) no-repeat top left;
}
#leftColumn .form_box_bottom {
	background: url(box_bottom_right.gif) no-repeat bottom right;
	width: 179px;
	height: 23px;
	position: absolute;
	right: 0;
	bottom: -1px;
}
#rightColumn .form_box_bottom {
	background: url(box_bottom_left.gif) no-repeat bottom left;
	width: 179px;
	height: 23px;
	position: absolute;
	left: 0;
	bottom: -1px;
}
.tx-jkpoll-pi1 .form_box_header, .form_box .form_box_header {
    height: 41px;
	background: url(box_header.gif) repeat-x;
		padding: 0;
	margin: 0;
	border: 0;
}
.header_back_right {
    float: right;
}
.header_back_left {
    float: left;
}
#leftColumn .tx-jkpoll-pi1, #leftColumn .form_box {
	background: url(box_back_right.gif) repeat-y top right;
}
#rightColumn .tx-jkpoll-pi1, #rightColumn .form_box {
	background: url(box_back_left.gif) repeat-y top left;
}
.form_box_submit {
	width: 179px;
	height: 40px;
}
#leftColumn .form_box_submit {
	background: url(box_submit_right_.gif) no-repeat;
}
#leftColumn .form_box_submit input {
    background: transparent;
    border: 0;
    width: 87px;
    height: 25px;
    margin-left: 77px;
    text-align: center;
    overflow: hidden;
}
#rightColumn .form_box_submit {
	background: url(box_submit_left_.gif) no-repeat;
}
#rightColumn .form_box_submit input {
    background: transparent;
	border: 0;
	width: 87px;
	height: 25px;
	margin: 0 0 0 18px;
	text-align: center;
    overflow: hidden;
}
#languages {
    padding: 35px 0 0 200px;
    font-size: 13px;
}
#headmenu {
	position: absolute;
	right: 35px;
	top: 40px;
}
#languages .NO a:link, #languages .NO a:visited, #languages .NO a:active, #languages .NO a:hover {
    color: #6a6a6a;
}
#languages .ACT a:link, #languages .ACT a:visited, #languages .ACT a:active, #languages .ACT a:hover {
    color: #336eb0;
}
.tx-newloginbox-pi1-user, #tx-newloginbox-pi1-forgot_email {
    height: 12px;
    width: 100px;
    font-size: 11px;
}
table.csc-mailform, #middleColumn DIV.tx-srfeuserregister-pi1 {
	width: 557px;
	background: transparent url(form_back.gif) repeat-y top left;
}
table.csc-mailform td {
	padding: 0 10px;
	font-size: 12px;
}
table.csc-mailform input, #middleColumn DIV.tx-srfeuserregister-pi1 input {
	/*height: 13px;*/
	font-size: 10px;
	font-weight: bold;
}

.csc-mailform-wrap 
{
  padding-top: 12px;
  background: url(form_top.gif) top left no-repeat;
  position: relative;
}

.csc-mailform-wrap1 
{
  padding-bottom: 12px;
  background: url(form_bottom.gif) bottom left no-repeat;
}


/******************************************************************************/


HR.clearer {
  background: transparent url(hr_bkg.gif) top left repeat-x;
  padding: 0;
  border: 0;
  clear: both;
}
.vnav ul li a:hover, .hnav ul li a:hover {
	color: #336eb0;
}
/* katalogas */
#cat {
	text-align: center;
}
.cat_1, .cat_2 {
	width: 178px;
	margin: 3px;
	float: left;
	position: relative;
	overflow: hidden;
}

#cat .cat_1 h2, #cat .cat_2 h2 {
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 10px;
  display: block;
  padding: 6px;
  clear: left;
  max-height: 65px;
  overflow: hidden;
  width: 158px;
  voice-family: "\"}\""; 
  voice-family:inherit;
  width: 138px;
}

#cat .cat_1 h2 a, #cat .cat_2 h2 a {
  display: block;
}

.cat_1 .bot, .cat_2 .bot, .cat_1 .top, .cat_2 .top {
	min-height: 225px;
	height: auto !important;
	height: 225px;
	overflow: hidden;
	vertical-align: bottom;
}
.cat_1 .top, .cat_2 .top {
/*	padding: 10px;*/
}
.cat_1 {
	background: transparent url(cat_mid_1.gif) top left repeat-y;
}
.cat_1 .top {
	background: transparent url(cat_top_1.gif) top left no-repeat;
}
.cat_1 .bot {
	background: transparent url(cat_bot_1.gif) bottom left no-repeat;
}
.cat_2 {
	background: transparent url(cat_mid_2.gif) top left repeat-y;
}
.cat_2 .top {
	background: transparent url(cat_top_2.gif) top left no-repeat;
}
.cat_2 .bot {
	background: transparent url(cat_bot_2.gif) bottom left no-repeat;
}
.cat_1 img, .cat_2 img {
	border: 2px #cfcfcd solid;
	margin: 15px 0 10px 0;
	clear: both;
}
.news-list-date
{
	font-weight: normal;
	font-size: 11px;
}

.single-item {
  margin: 35px 0;
}


/******************* NEWS *****************************/

LI.news-amenu-item-year {
  list-style-type: none;
  margin: 1em 10px;
}

LI.news-amenu-item-year DD {
  text-align: left;
  font-weight: bold;
  font-size: 150%;
  margin: 0;
}
div.news-single-item .imgWrap, div.news-single-item .news-single-img {
	float: left;
}

div.news-single-timedata {
  clear: left;
}

div.news-single-img .imgWrap {
	margin: 0 15px 15px 0;
}
.news-catmenu-header {
	display: none;
}

/******************* BREADCRUMB *****************************/

DIV#breadcrumb {
  margin-bottom: 1em;
}


.hnav {
  border-bottom: solid 1px #dbdbdb;
  margin-top: 20px;
}

.hnav ul, .hnav ul li
{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.hnav ul {
     text-align: center;
     padding: 15px 0 2px 0;   
}

.hnav ul li {
  display: inline;
  margin-right: 0;
  padding: 15px 0 4px 0;
}

.hnav ul li.last {
  background: url(hm_right.gif) right top no-repeat; 
  margin-right: 0;  
  padding-right: 11px;  
}

.hnav ul li.first {
  background: url(hm_left.gif) left top no-repeat; 
  padding-left: 8px;
}



.hnav ul li a
{
  margin: 0;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  border: none;
  padding: 15px 0 4px 0;
  white-space: nowrap;
  background: #fff url(tab_right_2.gif) right top no-repeat;      
}

.hnav ul li a#current, .hnav ul li a:hover
{
  background: #fff url(tab_right_act2.gif) right top no-repeat;      
}

/* For IE Mac*/ 

/*\*//*/
.hnav ul li a {
  display: inline-block;
  white-space: nowrap;
  width: 1px;
}
 /**/

/* For IE Win */
/*\*/ 
 * html .hnav ul li a, * html .hnav ul li {
     padding: 0;
}
 
.hnav ul li.last A {
  padding-right: 1px;
}


 /**/

*:first-child+html .hnav ul li a,
*:first-child+html .hnav ul li a:link,
*:first-child+html .hnav ul li a:visited,
*:first-child+html .hnav ul li a:active,
*:first-child+html .hnav ul li a:hover,
*:first-child+html .hnav ul li
 {
     padding: 0;
 }

*:first-child+html .hnav ul li.last a {
  padding-right: 1px;
}

*:first-child+html .hnav ul li.last {
  margin-right: 0;  
  padding-right: 11px;  
}

*:first-child+html .hnav ul li.first {
  padding-left: 8px;
}

.hnav ul li a span {
  background: transparent url(tab_left_2.gif) left top no-repeat;  
  padding: 15px 20px 4px 20px;
  color: #6a6a6a;
  font-weight: bold;
  margin: 0;
}

.hnav ul li a#current span {
  background: transparent url(tab_left_act2.gif) left top no-repeat; 
  color: #336eb0; 
}

.hnav ul li a:hover span {
  background: transparent url(tab_left_act2.gif) left top no-repeat;  
  color: #336eb0;
}

.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover {
  text-decoration: none;
  color: #336eb0;
}



#toolsmenu {
  float: right;
}

#logo {
  display: block;
  width: 150px;
  height: 76px;
  background: url(ss_logo.gif) top left no-repeat;
  margin: 100px 0 0 30px;
  float: left;
}

/* For IE Win */
/*\*/ 

* html #logo {
  margin: 100px 0 0 15px;
}
/**/

DIV.tx-vvcatalogue-pi1 .form_box .form_box_body IMG {
  float: left;
  margin: 0 10px 10px 0;
}


TABLE.typo3-adminPanel TD {
  text-align: left;
}

DIV.catalogue-related-items {
  text-align: left;
  border: 1px #c5c5c5 dashed;
  background-color: #eff4e4;
  padding: 1.5em;
  margin: 1.5em;
}