@charset "UTF-8";
/* CSS MARTIN BERKOVITZ */

/* MENU */
#menu {
        width: 650px;
        margin-top: -20px;
		margin-right: 0px;
		float: right;
        list-style: none;
		z-index:200;
}

#menu li {
        float: right;
		padding: 0 0 10px 0;
        position: relative;
}

#menu a {
	padding: 0 0 0 15px;
	color: #BFBFBF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	font-style: normal;
	line-height: 2em;
}

#menu li:hover > a {
        color: #A7BF35;
}

*html #menu li a:hover /* IE6 */
{
        color: #A7BF35;
}

#menu li:hover > ul
{
        display: block;
}

/* Sub-menu */

#menu ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	top: 30px;
	left: 20px;
	z-index: 99999;
	background:url(../images/dropnav_bg.png);
	font-family: Arial, Helvetica, sans-serif;
	font-size: .89em;
	line-height: 1em;
	text-align: left;
	width: 150px;
}

#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
}


#menu ul a
{
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

*html #menu ul a /* IE6 */
{
        height: 10px;
        width: 150px;
}

*:first-child+html #menu ul a /* IE7 */
{
        height: 10px;
        width: 150px;
}

#menu ul li:first-child a:after
{
    content: '';
    position: absolute;
    left: 10px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #282828;
}

#menu ul li:first-child a:hover:after
{
    border-bottom-color: #282828;
}

#menu ul li:last-child a
{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after
{
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */

