/*~-- Menu --------------------------------------------------------*/
/**
    The menu appears just below the Page Header section, it is used
    to display all the possible actions the current user can do.
*/

/** The menu is represented as an undordered list. The list elements
    can containlinks to actions or embedded forms.
*/
.menuMarker
{
    /*background: url(../img/arrow.gif) center right no-repeat;*/
}

.menu
{
	height: 18px;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
/*	background-color: #203D75;*/
}

.menu ul
{
    position: absolute; /* pour sortir la liste du flux de donnée */
    display: block;
    margin: 0;
    padding: 0;
}

.menu li ul
{
    visibility: hidden;
    z-index: 1000;
}

.menu li li ul
{
    position: absolute; /* pour sortir la liste du flux de donnée */
    top: auto;
    left: auto;
    margin-left: 170px;
    margin-top: -23px; /* move the sub menu verticaly */
}

.menu li
{
    list-style: none;
    width: auto;
    height: auto;
    display: inline;
    display: block;
    float: none;
    float: left;
    margin: 0;
    padding: 0;
}

.menu li li
{
    display: block;
    float: none;
}

/* XXX correct a little IE bug */
* html .menu li li
{
    display: inline;
}

.menu li li li
{
    display: block;
    float: none;
}

/* XXX correct a little IE bug */
* html .menu li li li
{
    display: inline;
}

.menu a
{
/*    background-color: #203D75;*/
    color: White;
    display: block;
    text-decoration: none;
/*    padding: 3px 8px 3px 8px; */ /* 18px is 16px (width of the icon) + 2px */
    padding: 2px 8px 1px 8px; /* 18px is 16px (width of the icon) + 2px */
    margin: 0px;
	white-space:nowrap;
/*	font-weight:bold;*/
}

.menu li li a
{
    background-color: #F3F3F4;
    color:#777777;
}

.menu li li a:hover
{
    background-color: #DDF7FD;
    color:#777777;
}

.menu > li a
{
	width: auto;
}

.menu a:hover
{
    color: White;
    text-decoration: none;
    background-color: #006591;
}

/* for a mozilla better display with key nav */
/*
.menu a:focus
{
    background-color: #aaf;
    text-decoration: none;
}
*/

/* hide some accessibility stuff */
.menu span
{
	display: none;
}

.menu .separator
{
    border: 1px Solid White;
	margin: 0;
	padding: 0;
	height: 2px;
    width: auto; /* same as .menu a */
}


