/********************************************************************************
 This CSS file defines the style of the top navigation bar.
 ********************************************************************************/


/***** base style of the top navigation bar *****/
nav.top-bar
{
	top:0px;
	width:100%;
	height:40px;
	z-index:999                                                        !important;
	background-color: var(--contrast2-bg);
	color:            var(--contrast2-tx);
}

/***** list item *****/
nav.top-bar li
{
    float:left;
}

/***** links *****/
nav.top-bar a
{
	color:inherit;	
	text-decoration:none;
}

/***** links with mouse over *****/
nav.top-bar a:hover
{
	background-color: var(--contrast2-hl)                              !important;
}

