/*-- Start CSS3 Menu with no javascript necessary --*/

/* Main */
#menu{
	width: 100%;
	margin: 0;
	padding: 0 0 0 0;
	list-style: none;  
	background: none;
}

#menu li{
	float: left;
	padding: 0 0 2px 0;
	position: relative;
}

#menu li:before {content:""; left:0; top:0;}

#menu a{
	float: left;
	height:23px;
	padding: 0 15px;
	font-family: Segoe UI, Arial, Helvetica, Verdana;
	font-size: 0.9em;
	font-weight: bolder;
	color: #000;
	text-decoration: none;
	text-align:left;
}

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

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

#menu li:hover > ul{
	display: block;
	
	visibility:visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    -transition-delay: 0s;
}

/* Sub-menu */

#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 99999;    
    background: #EAEAEA;
    -moz-border-radius: 5px;
    border-radius: 5px;
	
	visibility:hidden;
	-webkit-transition: 0s all;   
    -webkit-transition-delay: .05s; 
    -moz-transition: 0s all;   
    -moz-transition-delay: .05s; 
    -ms-transition: 0s all;   
    -ms-transition-delay: .05s; 
    -o-transition: 0s all;   
    -o-transition-delay: .05s; 
    transition: 0s all;   
    transition-delay: .05s; 
}

#menu ul ul
{
  top: 0;
  left: 153px;
}

#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
	border-bottom: 1px solid #CCC;
}

#menu ul li:last-child
{
	border-bottom: 1px solid transparent;   
}

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

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

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

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

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

#menu ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 16px;
    height: 8px;
	background: #EAEAEA;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

#menu ul ul li:first-child a:after
{
    left: -8px;
    top: 5px;
    width: 8px;
    height: 16px;
	background: #EAEAEA;
    -moz-border-radius: 8px 0 0 8px;
    border-radius: 8px 0 0 8px;
}

#menu ul li:first-child a:hover:after
{
	background: #CCC;	
}

#menu ul ul li:first-child a:hover:after
{
	background: #CCC;	
}


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

#menu ul#overview {width:150px;}
#menu ul#overview a {width:150px;}
#menu ul#overview ul {left:153px;}
#menu ul#overview li:first-child > a:after {left: 12px;}

#menu ul#featmap {width:80px;}
#menu ul#featmap a {width:80px;}
#menu ul#featmap ul {left:83px;}
#menu ul#featmap li:first-child > a:after {left: -8px;}

#menu ul#products {width:180px;}
#menu ul#products a {width:180px;}
#menu ul#products ul {left:183px;}
#menu ul#products li:first-child > a:after {left: 12px;}

#menu ul#casestudies {width:225px;}
#menu ul#casestudies a {width:225px;}
#menu ul#casestudies ul {left:228px;}
#menu ul#casestudies li:first-child > a:after {left: 12px;}

#menu ul#solutions {width:275px;}
#menu ul#solutions a {width:275px;}
#menu ul#solutions ul {left:278px;}
#menu ul#solutions li:first-child > a:after {left: -8px;}

#menu ul#orders {width:150px;}
#menu ul#orders a {width:150px;}
#menu ul#orders ul {left:153px;}
#menu ul#orders li:first-child > a:after {left: 12px;}

#menu ul#downloads {width:165px;}
#menu ul#downloads a {width:165px;}
#menu ul#downloads ul {left:168px;}
#menu ul#downloads li:first-child > a:after {left: 12px;}

#menu ul#support {width:175px;}
#menu ul#support a {width:175px;}
#menu ul#support ul {left:178px;}
#menu ul#support li:first-child > a:after {left: 12px;}

#menu ul#andmore {width:135px;}
#menu ul#andmore a {width:135px;}
#menu ul#andmore ul {left:138px;}
#menu ul#andmore li:first-child > a:after {left: 12px;}

/* 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 */