﻿/*******************************************************/
/***************** Main menu ***************************/
/*******************************************************/

/* SET YOUR PREFERENCES!!! */
/* set your menu's font and colors here - the MENU MECHANICS  follow below */
div.multi_drop_menus
{
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 11px;
	margin-right: 5px;
	height: 35px;
	background-color: transparent; /* colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
}
div.multi_drop_menus ul
{
	display: inline; /* fixes margin-doubling bug in IE6 */
}

div.multi_drop_menus a, div.multi_drop_menus a.visited
{
	color: #fff;
	text-decoration: none;
}
div.multi_drop_menus ul li ul
{
	background-color: #696969;
	border: #ccccd2 thin solid;
}
div.multi_drop_menus li li
{
	border-bottom: #ccccd2 1px dotted;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	height: 25px;
	width: 100px;
}

div.multi_drop_menus li div
{
	display: block;
}

/* Want transparency on your menus? add the class 'transparent' to the multi_drop_menus div */
div.multi_drop_menus.transparent ul ul li
{
	/* note: the lower the value, the greater the transparency */
	opacity: 0.9; /* CSS3 - range 0 to 1 */
	-moz-opacity: 0.9; /* Firefox- range 0 to 1  */
	filter: alpha(opacity=90); /* IE- range 0 to 100  */
}
/* END MENU PREFERENCES */


/* YOU ARE STONGLY ADVISED NOT TO MODIFY THE CODE THAT FOLLOWS : ) */
/* the menu mechanics start here */
div.multi_drop_menus
{
	float: left;
}
div.multi_drop_menus ul
{
	float: left; /* makes ul wrap li */
}
div.multi_drop_menus li
{
	float: left; /*causes the list to align horizontally instead of stack */
	list-style-type: none; /* removes the bullet off each list item */
	position: relative; /* positioning context for the absolutely positioned drop-down */
}
div.multi_drop_menus a
{
	display: block; /* makes link fill li so entire area is "hot" */
}
/* the horizontal menu ends here */
/* the drop-downs starts here */
div.multi_drop_menus ul li ul
{
	position: absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	margin-left: 0px; /* stops inheritance from level 1 ul */
}
div.multi_drop_menus ul li ul li
{
	padding: 0; /* stops inheritance */
}
div.multi_drop_menus ul li ul
{
	display: none;
}
/* conceals the drop-down when menu not hovered */
/*
w jaxonie nie pokazujemy podmenu
div.multi_drop_menus ul li:hover ul {
	display:block; /* shows the drop-down when the menu is hovered 
	z-index:1000; /* Safari needs this to display menu on top of other page elements 
	} 

 */


/* END MENU MECHANICS */

/* inevitable hacks for IE6  and < */
* html div.multi_drop_menus
{
	z-index: 1; /* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */
}
/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */
* html div.multi_drop_menus ul li ul
{
	z-index: 400; /*ensures menu is on top of other page elements */
}
* html div.multi_drop_menus a
{
	/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */
}
* html div.multi_drop_menus.vertical a
{
	/* now hasLayout in IE - works on the vert menu as container has width */
	zoom: 100%;
}
* html div.multi_drop_menus ul ul a
{
	/* second level of horiz menu */
	zoom: 100%; /* now IE 'haslayout" - IE now makes background hot in horizontal menus */
}
/* info on haslayout: 
  http://www.sitepoint.com/forums/showpost.php?p=2041209&postcount=24
  http://onhavinglayout.fwpf-webdesign.de/hack_management/
   */
/* END OF LIST-BASED MENU */


div#menu_top div.multi_drop_menus div.main_item_panel
{
	float: left;
	height: 33px;
	text-align: center;
	font-size: 9px;
	width: 70px;
	background-color: gray;
}
div.multi_drop_menus div.color_panel_1, div.multi_drop_menus div.color_panel_2, div.multi_drop_menus div.color_panel_3, div.multi_drop_menus div.color_panel_4
{
	height: 3px;
}
div.multi_drop_menus div.color_panel_1
{
	background-color: #ff9966;
}
div.multi_drop_menus div.color_panel_2
{
	background-color: #33ccff;
}
div.multi_drop_menus div.color_panel_3
{
	background-color: #99ff33;
}
div.multi_drop_menus div.color_panel_4
{
	background-color: #ff9966;
}
div.multi_drop_menus .main_item_content
{
	border-right: 1px solid white;
	padding: 1px 8px 1px 8px;
	height: 10px;
	background-color: #696969;
	color: #3D3B3B;
	font-size: 8pt;
	line-height: 12px;
	display: table;
}
div.multi_drop_menus .main_item_content span
{
	display: table-cell;
	vertical-align: middle;
	float: none;
}
div.multi_drop_menus .main_item_content a, div.multi_drop_menus .main_item_content a.visited
{
	text-decoration: none;
}


div#header div.multi_drop_menus div.color_panel_1
{
	display: none;
}
div#header div.multi_drop_menus div.main_item_panel
{
	margin-right: 0px;
}

#menu_top .main_item_panel a.main_item_content:hover 
{
	background: transparent url(../images/master/left_tab_hover.png) no-repeat scroll 0 0;
}
#menu_top .main_item_panel a.main_item_content:hover span
{
	background: transparent url(../images/master/right_tab_hover.png) no-repeat scroll right 0;
}
#menu_top .selected .main_item_content
{
	background: transparent url(../images/master/left_tab_hover.png) no-repeat scroll 0 0;
	float: left;
}
#menu_top .selected a.main_item_content span
{
	background: transparent url(../images/master/right_tab_hover.png) no-repeat scroll right 0;
}

div#header div.multi_drop_menus div.main_item_panel
{
	border-left: 0 none;
	margin-left: 0;
	padding: 1px 8px;
}

#SpecialMenuJaxon span
{
	display: block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	line-height: 27px;
	padding-left: 8px;
	padding-right: 8px;
	text-transform: uppercase;
}

#SpecialMenuJaxon div.multi_drop_menus
{
	margin-right: 0px;
}
#SpecialMenuJaxon .color_panel_1, #SpecialMenuJaxon .color_panel_2, #SpecialMenuJaxon .color_panel_3, #SpecialMenuJaxon .color_panel_4, #SpecialMenuJaxon .color_panel_5, #SpecialMenuJaxon .color_panel_6, #SpecialMenuJaxon .color_panel_7, #SpecialMenuJaxon .color_panel_8, #SpecialMenuJaxon .color_panel_9, #SpecialMenuJaxon .color_panel_10, #SpecialMenuJaxon .color_panel_11
{
	display: none;
}
#SpecialMenuJaxon .main_item_content {
	background: #ffd475 none repeat scroll 0 0;
	border: solid 0px #fff;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius:5px 5px 5px 5px;
	-webkit-border-radius:5px 5px 5px 5px;
	float: left;
	height: 13px;
	margin-top: 1px;
	overflow: hidden;
	padding: 0 3px;
	]height: 19px;
}
#SpecialMenuJaxon .main_item_content span
{
	border: medium none;
	font-family: Tahoma;
	font-size: 10px;
	font-weight: bold;
	height: 19px;
	line-height: 19px;
	padding: 0;
}

#SpecialMenuJaxon li
{
	margin-right: 5px;
	margin-top: 3px;
}


#SpecialMenuJaxon li:hover  .main_item_content
{
	background: #ffe19f;

}
#SpecialMenuJaxon li .selected .main_item_content
{
	background: #ffe19f;

}
#SpecialMenuJaxon .selected  .main_item_content
{
	color:Black !important
}

div#header div.multi_drop_menus a.menu_home span {
	height:17px;
	width:11px;
	background: transparent url(../images/domek.png) no-repeat scroll 0 0;
	text-indent: -9999px;	
}
div#header div.multi_drop_menus .selected a.menu_home span,
div#header div.multi_drop_menus a.menu_home:hover span {
	background: transparent url(../images/menuRight_domek.png) no-repeat scroll right 0;
}

div#header div.multi_drop_menus div.selected a.menu_home .main_item_content,
div#header div.multi_drop_menus div.main_item_panel a.menu_home:hover .main_item_content {
background-color:#5a4f3b;
border-bottom:1px solid #5a4f3b;
border-top:1px solid #5a4f3b;
float:left;
height:15px !important;
background-position:center -1px;
}


/* top menu */

#header div.multi_drop_menus .main_item_content
{
	border-left: medium none;
	border-right: medium none;
	color: white;
	font-size: 8pt;
	font-weight: bold;
	height: 17px;
	line-height: 17px;
	margin-left: 0;
	padding: 0 0 0 5px;
	float: left;
	color: #000;
	background-image: none;
	background-color: transparent;
}
#header div.multi_drop_menus .main_item_content:hover,
#header div.multi_drop_menus .selected .main_item_content {
	background: transparent url(../images/master/menuLeft.png) no-repeat scroll 0 0;
}
#header div.multi_drop_menus li
{
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../images/master/border.png) no-repeat scroll 0 6px;
	border-left: medium none;
	float: left;
	height: auto;
	list-style-type: none;
	margin-left: -3px;
	position: relative;
}
#header div.multi_drop_menus .main_item_content span
{
	color: White;
	padding-right: 5px;
	background-image: none;
	background-color: transparent;
}
#header div.multi_drop_menus .main_item_content:hover span,
#header div.multi_drop_menus .selected .main_item_content span {
	background: transparent url(../images/master/menuRight.png) no-repeat scroll right 0;
}
#header div.multi_drop_menus
{
	overflow: hidden; 
	margin-top:15px;
	margin-left:90px;
}
body.ru #header div.multi_drop_menus
{
	overflow: hidden; 
	margin-top:15px;
	margin-left:55px;
}


/* top sub menu */

#menu_top div.multi_drop_menus div.color_panel_1, div.multi_drop_menus div.color_panel_2, div.multi_drop_menus div.color_panel_3, div.multi_drop_menus div.color_panel_4
{
	background: white;
	display: none;
}


#menu_top .main_item_content
{
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../images/master/left_tab.png) no-repeat scroll 0 0;
	float: left;
	height: 35px;
	max-width: 48px;
	padding: 0;
	border: none;
	padding-left: 4px;
	]padding:0px 0px;/* Fix problems with top_menu displaying in IE7 */
	]position: relative;
}
div#menu_top div.multi_drop_menus div.main_item_panel
{
	background: transparent;
}
#menu_top .main_item_content span
{
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../images/master/right_tab.png) no-repeat scroll right 0;
	color: #3D3B3B;
	font-size: 10px;
	font-weight: bold;
	line-height: 9px;
	text-align: center;
	min-width: 40px;
	padding-bottom: 5px;
	padding-right: 4px;
	]display:block;/* Fix problems with top_menu displaying in IE7 */
}

body:nth-of-type(1) #menu_top .main_item_content span { /* CSS Hack only for Chrome */
	width:40px;
}

/*\*/
* html #menu_top .main_item_content span
{
	max-width:53px;
}
/**/
#menu_top .main_item_content,
#menu_top .main_item_content span {
	]max-width: 78px!important;
}
#menu_top a#ctl30_Repeater1_ctl00_Repeater2_ctl03_hlName,
#menu_top a#ctl31_Repeater1_ctl00_Repeater2_ctl03_hlName {
	]min-width: 70px; /* Fix problems with top_menu displaying in IE7 "Haczyki, kotwiczki, główki jigowe" */
}
#menu_top a#ctl30_Repeater1_ctl01_Repeater2_ctl01_hlName,
#menu_top a#ctl31_Repeater1_ctl01_Repeater2_ctl01_hlName {
	]min-width: 56px; /* Fix problems with top_menu displaying in IE7 "Akcesoria wędkarskie" */
}

div#menu_top div.multi_drop_menus div.main_item_panel
{
	width: auto;
}

/* right menu */
#right_menu .color_panel_1, #right_menu .color_panel_2, #right_menu .color_panel_3
{
	display: none;
}
#right_menu a.menu_rady
{
	background: transparent url(../images/master/right1.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 132px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
#right_menu a.menu_news
{
	background: transparent url(../images/master/right2.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 128px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
#right_menu a.menu_clipboard
{
	background: transparent url(../images/master/right3.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 91px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
body.en #right_menu a.menu_news
{
	background: transparent url(../images/master/right2_en.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 128px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
body.en #right_menu a.menu_clipboard
{
	background: transparent url(../images/master/right3_en.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 91px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}

body.ru #right_menu a.menu_news
{
	background: transparent url(../images/master/right2_ru.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 128px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
body.ru #right_menu a.menu_clipboard
{
	background: transparent url(../images/master/right3_ru.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 91px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}

#right_menu a.menu_gdzie_lowic
{
	background: transparent url(../images/master/right4.png) repeat scroll 0 0;
	clear: both;
	float: left;
	height: 100px;
	margin-bottom: 5px;
	width: 12px;
	overflow: hidden;
	border: solid 0px #fff;
}
#right_menu a *
{
	display: none;
}
#right_menu a:hover
{
	background-color: #C58B27;
	background-position: 57px 0;
}

#right_menu .selected a
{
	background-color: #FFFFFF;
	background-position: 28px 0;
}
#menu_top .main_item_content span {
	]height: 30px;
	]margin-left: 4px;
}
