/* ================================================================ 
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/menus/flyout_horizontal.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 */
.menutarto {
	position:relative;
    width:190px;
    height:120px; 
    padding:0px; 
    border:0px solid #000;
	z-index: 1100;
}

.menu {
    font-family: arial, sans-serif; 
    font-weight: bold;
    width:190px; 
    height:120px; 
    position:relative; 
    margin:0; 
    font-size:11px;
}

.menu ul li a, .menu ul li a:visited {
    display:block; 
    text-decoration:none;
    color:#cccccc; 
    width:180px; 
    height:20px; 
    border:0px solid #5a3; 
    border-width:0px 0px 0px 0px; 
    background:#20211f; 
    line-height:8px; 
    font-size:12px; 
    padding-left:10px;
    padding-top:8px;
}

.menu ul {
    padding:0; 
    margin:1px;
    list-style-type: none;
}

.menu ul li {
    float:left; 
    position:relative;
	z-index:1100;
}

.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
.menu ul li:hover a {
    color:#fff;
    background:#b3ab79;
}

.menu ul li:hover ul {
    display:block; 
    position:absolute; 
    top:-1px; 
    left:189px; 
    width:210px; 
    background:transparent;
}

.menu ul li:hover ul li {
    float:left;
}

.menu ul li:hover ul li a {
    display:block; 
    background:transparent  url(pix/opaque.gif); 
    color:#000; 
    width:200px; 
    float:left;
}

.menu ul li:hover ul li a:hover {
    background:#dfc184; 
    color:#000;
}

