/***********************************************************/	
/* This CSS file contain style for the Odin Portal menu    */
/*                                                         */
/* Do not add specific styles that appear on only one      */
/* element here (like div tags with with,height etc.       */
/***********************************************************/	

/** Style for the menu area **/
div.navigation
{
	font-family: arial;
	font-size: 11px;
	font-weight: bold;
	width: 155px;
	margin-right: 5px;
	line-height: 11px;
	margin-top: 0px;
}
/** General styles for all the menu items **/
div.navigation div
{
	border-top: 1px solid white;
}
div.navigation div a, .navigation div a:link, .navigation div a:visited
{
	padding-top: 2px;
	padding-bottom: 5px;
	display: block;
	text-decoration: none;
}
/**  Menu on level 1**/
div.navigation div.nav-level1
{
	background-color: #dfe8f7;
}
div.navigation div.nav-level1 a
{
	padding-left:5px;
	padding-top: 3px;
	color: black;
}
/**  Menu on level 2 **/
div.navigation div.nav-level2
{
	background-color: #bcd2ee;
}
div.navigation div.nav-level2 a
{
	padding-left:10px;
	padding-top: 3px;
	color: white;
}
/**  Menu on level 3 **/
div.navigation div.nav-level3
{
	background-color: #dfe8f7;
}
div.navigation div.nav-level3 a
{
	padding-left:14px;
	padding-top: 3px;
	color: white;
}
/**  Menu item, when user moves the mouse over it **/
div.navigation div.nav-level1 a:hover, div.navigation div.nav-level2 a:hover
{
	background-color: #7bafde;
	text-decoration: none;
	color: white;
}
/** Defines the style for the selected menu item **/
#nav-selected
{
	background-color: #7bafde;
}
#nav-selected a
{
	color: white;
}
#nav-selected #nav-selected-marker {
	float: right;
	color: white;
	border:none; 
	margin-top: 3px; 
	margin-right:3px; 
	font-size: 15px;
}
#nav-parent-marker {
	background-image: url(/op/images/layout/menu/subMenuMarker.gif);  
	background-repeat: no-repeat;
	background-position: right bottom;
	float: right;
	color: white;
	border:none; 
	margin-top: 8px; 
	margin-right:2px; 
	font-size: 1px;
	width:12px;
	height:6px;
}



