.jMenu {
    display: table;
    margin: 10px 0 0 0;
    padding: 0;
	background: #eaf1f6;
	border:solid 1px #d3e5f2;
	width:100%;
	
}

/* First level */
.jMenu li {
	float:left; list-style:none; margin:0px 5px 0px 5px;
   
    background:none;
   
	width:auto;
}

.jMenu li a {
    padding: 10px;
    display: block;
    background-color: transparent;
    color:#3E3E3E;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.88em;
}

/* Lower levels */
.jMenu li ul {
    display: none;
    position: absolute;
	z-index:9999;
    padding: 0;
    margin: 0;
	width:180px;
}

.jMenu li ul li {
    background-color: #27a5dc;
    display: block;
    border-bottom: solid 1px #a6cdef;
	color: #CCC;
    padding: 0;
	width:180px;
	
}

.jMenu li ul li.arrow {
    background-color: #A3A3A3;
    background-image: url('../images/arrow_down.png');
    background-repeat: no-repeat;
    background-position: center center;
    height: 6px;
    padding: 0;
    border-bottom: none;
    padding-bottom: 10px
}

.jMenu li ul li a {
    font-size: 0.75em;
    text-transform: none;
	
    padding: 7px;
    display: block;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.jMenu li ul li a.isParent {
    background-color:  #a4d7eb;
    background-image: url('../images/arrow_right.png');
    background-repeat: no-repeat;
    background-position: right center;
	color:#FFF;
}

.jMenu li ul li a:hover {
    background-color: #5abfea;
    border-top: 1px solid #none;
    border-bottom: 1px solid #none;
	color:#FFF;
}

