/* This is the part for the CSS menu - these settings are for a horizontal menu */

	#dmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: white;    /* the default background color within the main menu container */
        color: #000;                /* the default font color (not links) within the main menu container */
        z-index: 100;               /* push the menu up in the layer order a bit so it isn't hidden behind anything */
								    /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
    }
    
	#dmenu li{                      /* top-level menu element */
        list-style-type: none;      /* disable the display of the list item bullets */
        float: left;                /* this is to allow for the horizontal main menu */
        color: #000;                /* main menu item font color (not links) */
        margin: 0px;
		margin-right: -10px;        /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */
        display: block;
    }
    
	#dmenu li div{                  /* top-level menu element links */
        text-align: left;           /* text alignment in main menu item links */                             
        display: block;
		/*cursor: hand;*/
    }

	/*#dmenu li span{
        display: none;
    }*/
    
	#dmenu li ul{                   /* sub-menu list container */
		position: absolute;         /* this is so that it doesn't push that page content around on hover */
		margin: 0px;               /* space within the list container */
		list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 140px;               /* the width of the sub menus */     
        color: #000;                /* sub-menu default font color (not links) */
		padding: 0px;           /* odmik od vrha pri podmeniju */
		border: none;
	}

    #dmenu li ul li{                /* sub-menu element links */
		background-color: white;    /* default background color for sub-menu container */
		color: #000;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
		margin: 0px;                /* spacing between sub-menu containers */
		padding: 0px;               /* This is for padding between menu items in the drop-downs */
		font-size: 11px;
    }

    #dmenu li ul li a{
        text-decoration: none;
		background: white;
		margin-left: 7px;
		padding: 5px 0 0 0;
		display: block;
        width: 140px;               /* should be set to the same value as #dmenu li ul li -> width */
    }

    #dmenu li div {
		height: 22px;               /* sirina menija */
	}

    #dmenu li ul li a:hover{
        text-decoration: underline;
    }

    #dmenu li:hover ul, #dmenu li.over ul{ /* lists nested under hovered list items */
        display: block;
    }
    .content {
        clear: left;
    }