/* ***  Global Plugins					*** */

/* ***  Togglable Containers			*** */

.selectorTogglable{
	position: relative;
}

.togglableContainer{
	position: relative;
	min-height: 16px;
	padding-right: 20px !important;
	border: 1px dotted #D4D4E9;
}

.togglableContainer.togglableSimpleContainer{
	padding-right: 0;	
}

.togglableContainer .selectorTogglable{
	position: relative;
}

.togglableContainer .togglableHandle{
	display: block;
	text-align: left;
}

.togglableContainer .togglableButtons{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 17px;
	height: 100%;
	background-color: #BCCBE7;
}

.togglableContainer .togglableButtons a{
	display: block;
	height: 17px;
	background-position: 2px 1px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.togglableContainer .togglableButtons .expandButton{
	background-image: url('../images/icons/v5white/icon_toggle_expand.png');
}
body#theme0 .togglableContainer .togglableButtons .expandButton{
	background-image: url('../images/icons/icon_toggle_expand.png');
}

.togglableContainer .togglableButtons .collapseButton{
	background-image: url('../images/icons/v5white/icon_toggle_collapse.png');
}
body#theme0 .togglableContainer .togglableButtons .collapseButton{
	background-image: url('../images/icons/icon_toggle_collapse.png');
}

/* *** Menu								*** */
/*
	Inspired from: http://lwis.net/free-css-drop-down-menu/
	Credits: Tomas Bagdanavicius
*/
ul.menu,
ul.menu li,
ul.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

ul#applicationMenu.menu {
	position: relative;
	z-index: 1000;
	float: left;
	font-weight: bold;
    background-color: #e5f2ff/*menu_back*/;
	border:1px solid #CCC;
}
body#theme0 ul#applicationMenu.menu 
{
    background-color: #60a4d7/*theme0:menu_back*/;
}

ul.menu {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

ul.menu li {
	float: left;
	line-height: 0.9em;
	vertical-align: middle;
	zoom: 1;
	padding: 7px 10px;
}

ul.menu li.selected:not(:last-child):not(:first-child) {
	position: relative;
	z-index: 599;
	cursor: default;
    background-color: #c7e4ff/*menu_hover*/ !important;
}
body#theme0 ul.menu li.selected:not(:last-child):not(:first-child) {
    background-color: #236bbe/*theme0:menu_hover*/ !important;
}

ul#applicationMenu.menu>li.selected {
    background-color: #c7e4ff/*menu_hover*/ !important;
}
body#theme0 ul#applicationMenu.menu>li.selected {
    background-color: #236bbe/*theme0:menu_hover*/ !important;
}

#siemsMenu ul li ul li.selected.disabled
{
	background-color:#EEE !important;
}


#header #headerIdentity #logoPanel .slogan
{
	display:none;
}
	            
	            
ul.menu ul {
	visibility: hidden;
	position: absolute;
	left: 0;
	z-index: 598;
	width: 100%;
}

ul.menu ul li {
	float: none;
}

ul.menu ul ul {
	top: 0;
	left: 99%;
}

ul.menu li.open > ul {
	visibility: visible;
}


/* -- level mark -- */

ul.menu ul {
	width: 150px;
	margin-top: 1px;
}

ul.menu ul li {
	font-weight: normal;
}

ul.menu .headNodeMenu {
	padding-right: 20px;
	background-image: url('../images/icons/icon_arrow_down.png');
	background-position: 3% 50%;
	background-repeat: no-repeat;
}

ul.menu ul .nodeMenu {
	padding-right: 15px;
	background-image: url('../images/icons/icon_arrow_right.png');
	background-position: 100% 50%;
	background-repeat: no-repeat;
}

ul.menu .nodeMenu > a {
	cursor: default;
}


/* *** Tree					*** */

.tree{
	margin-left: 5px;
}

.tree ul { 
	padding-left: 16px; 
	list-style-type: none;
	background: none;
}

.tree li {
	background: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tree li a {
	padding: 2px 0 2px 3px;
}

.tree li.leaf {
	padding-left: 16px;
}

.tree li.leaf a {
	padding-left: 2px;
}

.tree li span.handleButton {
	display: block;
	float: left;
	width: 15px;
	height: 12px;
	cursor: pointer;
}

.tree li > span.handleButton {
	background: url('../images/tree/bullet_toggle_minus.png') no-repeat 0 -1px;
}

.tree li.closed > span.handleButton {
	background: url('../images/tree/bullet_toggle_plus.png') no-repeat 0 -2px;
}

.tree li.closed > ul {
	display: none;
}

