html>body #nav, #nav ul { /* all lists */
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 25px;
    text-align: left;
    position: relative;
    z-index: 80;
}

#nav #solutions {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/solutions.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #solutions:hover, #nav .solutions {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/solutions.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #process {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/process.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #process:hover, #nav .process {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/process.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #work{
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/work.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #work:hover, #nav .work {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/work.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #company{
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/company.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #company:hover, #nav .company {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/company.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #contact{
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/contact.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #contact:hover, #nav .contact {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/contact.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #blog{
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/blog.gif") no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav #blog:hover, a.blog {
    display: block;
    width: 125px;
	height: 50px;
    background: url("../images/blog.gif") -125px 0 no-repeat;
    text-align: center;
	text-indent: -9999px;
}

#nav li { /* all list items */
    float: left;
    width: 125px; /* width needed or else Opera goes nuts */
}

#nav a.short, #nav li.short {
    width: 75px;
}

#nav a.last, #nav li.last {
    width: 106px;
}

#nav li a, #nav li a:visited, #nav li a:active {
    outline-style: none;
    outline-width: 0;
}

#nav li ul { /* second-level lists */
    position: absolute;
    width:120px;
	margin-top: -18px;
    left: -9999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li {
    width:120px;
    border-bottom: #ffffff;
}
    
#nav li ul a { /* second-level list links */
    color: #ffffff;
    font-size: 10px;
    display: block;
    height: 21px; 
    border: 1px solid #ffffff;
    width: 120px;
    background-color: #eb322d;
    text-align: left;
    text-indent: 3px;
}

#nav li ul a:hover { /*hover color for second-level list links */
    background-color: #eb322d;
}

#nav li ul ul { /* third-and-above-level lists */
    margin: -23px 0 0 120px;
}

#nav li ul li ul { /* third-and-above-level lists */
    margin-top: -23px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
    left: -9999px;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
    left: auto;
}

/*#nav li:hover, #nav li.sfhover {
	
    color: #ffffff;
}*/