
        ul {
			margin: 0;
            padding: 0;
            width: 99px; /* Width of Menu Items */
            font-size: 12px;
			line-height: 20px;
        }

        ul ul {
			margin: 0;
            padding: 0;
            width: 99px; /* Width of Menu Items */
            font-size: 12px;
			color: #343434;
			line-height: 20px;
			background-color:#FEFCF0;
        }

        ul li {
			display: block;
            width: 99px; /* Width of Menu Items */
			line-height: 20px;
			vertical-align: top;
			font-family: Arial;
			font-size: 12px;
			color: #343434;
			text-decoration: none;
			padding-top: 0px;
			padding-right: 0px;
            position: relative;
            list-style: none;
        }

        ul li a {
            display: block;
            text-decoration: none;
			line-height: 20px;
            border-bottom: 0;
        }

        /* Fix IE. Hide from IE Mac \*/
        * html ul li { float: left; height: 1%; }
        * html ul li a { height: 1%; }
        /* End */

        ul ul {
            position: absolute;
			line-height: 20px;
            display: none;
            top: 23;
        }

        ul li ul li a { } /* Sub Menu Styles */

        ul li:hover ul ul,
        ul li:hover ul ul ul,
        ul li.over ul ul,
        ul li.over ul ul ul { display: none; } /* Hide sub-menus initially */

        ul li:hover ul,
        ul li li:hover ul,
        ul li li li:hover ul,
        ul li.over ul,
        ul li li.over ul,
        ul li li li.over ul { display: block; } /* The magic */

        ul li.menubar { background: transparent url(images/arrow.gif) right center no-repeat; }
