@charset "utf-8";
/* copyright www.ordredesavocatsdetarascon.com -- created by www.drimlike.com */


/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
float:right;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}
.menu ul li a:hover, .menu ul li a:active { background-image:url(../images/red.gif); background-position:left bottom; background-repeat:repeat-x;}
.menu ul li ul li a:hover { background-image:none}

.end { width:150px; height:10px; background-image:url(../images/end-menu.gif); background-position:left top; background-repeat:repeat-x; }

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:30px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:16px;
width:150px;
padding:6px 0 0px 0;
color:#fff;
text-decoration:none;
margin-right:0px;
text-align:center;
height:25px;
font-family:"Times New Roman", Times, serif;
}

.menu ul li ul li a, .menu ul li ul li :visited, .menu ul li ul li :active {
display:block;
font-size:13px;
width:150px;
padding:6px 0 0px 0;
color:#fff;
background-color:#425a7d;
text-decoration:none;
margin-right:0px;
text-align:center;
height:22px;
}


/* style the links hover */
.menu :hover{
color:#fff;

}

.menu ul li ul li :hover {
background-color:#74849e;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:150px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
