/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menu/lightbox.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* common styling */
/* set up the overall width of the menu div and the margins with a relative position*/

.menu2 {
font-family: verdana, arial, times, sans-serif; 
width:530px;
margin:0 auto; 
position:relative;
z-index:1;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu2 ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;
}
/* float the list so that the items are in a line */
.menu2 ul li {
float:left; 
}
/* style the links to be 130px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu2 ul li a, .menu2 ul li a:visited {
	display:block;
	float:left;
	text-align:center;
	text-valign:midle;
	text-decoration:none;
	width:130px;
	height:25px;
	color:#AF251C;
	background:#ffffff;
	line-height:25px;
	font-size:10px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	border: #AF251C;
}
/* make the dropdown ul invisible */
.menu2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu2 ul li:hover a{
color:#ffffff; 
background:#AF251C;
}
/* make the sub menu ul visible and position it beneath the first list item */
.menu2 ul li:hover ul {
text-align:left;
display:block; 
position:absolute; 
top:25px; 
left:0; 
}


/*      ŠIRINA PROZORA KAD SE OTVORI PODGRUPA      */


/* make the sub menu ul li the full width with padding and border. */
.menu2 ul li:hover ul li {
width:400px;
height:330px;
border:0px solid #ffffff;
background:#ffffff; 
color:#000000;
position:relative;
padding:25px 60px;
}

/* style the initial image size 100px x 75px no border and 5pixel padding */
.menu2 ul li:hover ul li a img {
height:75px;
border:0; margin:5px;
}

/* style the size, background color, border and margin of the submenu links */
.menu2 ul li:hover ul li a {
float:left;
width:110px;
height:85px;
background:#fff;
border:1px solid #999999;
margin:1px;
}

/* style position of the links on hover */
.menu2 ul li:hover ul li a:hover {
position:relative;
}

/* style the 2x size image on hover with an absolute position to place it centrally over the original image */
.menu2 ul li:hover li a:hover img {
height:170px;
position:absolute;
left:-30px; top:-38px;
border:0;
border:1px solid #888;
padding:5px;
background:#ccc;
}