@charset "utf-8";
/* CSS Document */

/* Menu Styles */

.third-level-menu
{
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu > li
{
    height: 30px;
    background: #999999;
}
.third-level-menu > li:hover { background: #CCCCCC; }

.second-level-menu
{
    position: absolute;
    top: 30px;
    left: 0;
    width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
	font-size:11px;
	margin-top:12px;
}

.second-level-menu > li
{
    position: relative;
    height: 30px;
    background: #ccc;
}
.second-level-menu > li:hover { background: #fff; }

.top-level-menu
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-level-menu > li
{
    position: relative;
    float: left;
    height: 40px;
    width: 110px;
    background: #999999;
	font-size:15px;
}
.top-level-menu > li:hover { background: #CCCCCC;
line-height:40px;}

.top-level-menu li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu a /* Apply to all links inside the multi-level menu */
{
    color: #000;
    text-decoration: none;
    padding: 0 0 0 10px;
	font-family:Arial, Helvetica, sans-serif;
		font-family: 'Alegreya Sans SC', sans-serif;
	text-transform:uppercase;

    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 40px;
}
.top-level-menu a:hover { color: #000000; }


