

/* Main */
#menu
{
	width: 960px;
	margin:auto;
	background-color: #999;
	padding-top: 10px;
	padding-bottom: 10px;
	list-style: none;
}

#menu li
{
        float: left;
        padding: 0 0 10px 0;
        position: relative;
        border-right: thin solid gray;
}

#menu li:last-child {
	border:none;
}

.menu {
		float: left;
        height: 15px;
        padding: 0 25px;
        color: #fff;
        text-transform: uppercase;
        font: bold 12px/25px Arial, Helvetica;
        text-decoration: none;
        text-shadow: 0 1px 0 #000; 

}

#menu a
{
        float: left;
        height: 15px;
        padding: 0 25px;
        color: #fff;
        text-transform: uppercase;
        font: bold 12px/25px Arial, Helvetica;
        text-decoration: none;
        text-shadow: 0 1px 0 #000;
}

#menu li:hover > a
{
        color: #000;
        text-shadow: 0 1px 0 #fff;

}
.menu:hover
{
        color: #000;
        text-shadow: 0 1px 0 #fff;
        cursor: pointer;

}

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

/* Sub-menu */

#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 99999;
    background: #444;

}

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

#menu ul li:last-child
{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom:thin solid gray;
    border-right:thin solid gray;

}

#menu ul a
{
    padding: 10px;
    height: auto;
    line-height: .9;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
    border-left:thin solid gray;
}


#menu ul a:hover
{
    background: #fff;
}

#menu ul li:first-child a:after
{
    content: '';
    position: absolute;
    left: 25px;
    top: -8px;
    width: 0;
    height: 0;
}

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

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


footer {
	clear: both;
	width: 960px;
	margin: auto;
	text-align: center;
}