/*
 * jb overflow menu layout
 */ /*
 * the widget target must have width and height for this widget to work
 */
.jb-overflowmenu {
	color: white;
}

.jb-overflowmenu-helper-postion {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: visible;
	position: absolute;
	
	
}

.jb-overflowmenu .jb-overflowmenu-menu-primary {
	/*overflow: hidden; gets set in js we need to detect the height of the menu, then set this */
	overflow: hidden;
	height: 45px;

}

/*holds the overflow menu and label*/
.jb-overflowmenu .jb-overflowmenu-container {
	display: inline;
	left: auto;
	bottom: 0px;
	background-color: black;
}

.jb-overflowmenu .jb-overflowmenu-container .jb-overflowmenu-menu-secondary
	{
	top: auto;
	bottom: auto;
	left: auto;
	display: none;
	position: absolute;
	width: 130px;
	z-index: 100;
	background-color: black;
}


