/* CSSTerm.com Horizontal Easy DropDown CSS menu */
#pageBar
{
	position:fixed;
	top: 30px;
	height: 31px;
	left: 31px;
	right: 62px;
	z-index: -1;
	background: steelblue;
	overflow:hidden;
	display: none;
}

#closeBar
{
	position:fixed;
	top: 30px;
	height: 32px;
	width: 30px;
	right: 0px;
	z-index: -1;
	background: steelblue;
	text-align: center;
}

#scrollLeft
{
	position:fixed;
	left:0px;
	width:30px;
	top: 30px;
	height: 32px;
	z-index: -1;
	background: steelblue;
	text-align: center;
}

#scrollRight
{
	position:fixed;
	top: 30px;
	height: 32px;
	width: 30px;
	right:31px;
	z-index: -1;
	background: steelblue;
	text-align: center;
}

#closeBar a,
#scrollLeft a,
#scrollRight a {
	padding-top: 5px;
	padding-right: 0px;
	display: block;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	font: 20px arial, verdana, sans-serif;
}

.page_bar table {
	display: table;
	border-collapse: separate;
	border-spacing: 0px;
	border-color: steelblue;
}

.page_menu {
	background: lightgrey;
	padding: 0;
	margin: 0;
	list-style-type: none;
	height: 29px;
	white-space:nowrap;
	width:auto;
	overflow:hidden;
	transition:1.0s;
}

.page_menu li.active {
	background: steelblue;
	padding: 0;
	margin: 0;
	list-style-type: none;
	height: 29px;
}

.page_menu li {
	display:inline-block;
	padding:0;
}

.page_menu li a {
	padding: 7px 15px;
	display: block;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	font: 12px arial, verdana, sans-serif;
	border-right: 1px solid #75809a;
}

/* Submenu */
.page_menu ul {
	position: absolute;
	list-style-type: none;
}

.page_menu li:hover {
	position: relative;
	background: steelblue;
	z-index: 1;
}

.page_menu li:hover ul {
	left: 0px;
	top: 28px;
	background: steelblue;
	padding: 0px;
}

.page_menu li:hover ul li a {
	padding: 5px;
	display: block;
	width: 168px;
	white-space: nowrap;
	text-indent: 15px;
	background-color: #75809a;
}

.page_menu li:hover ul li a:hover {
	background: #5d0133;
	z-index: 1;
}

/* css tooltip
*/
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;

    /* Position the tooltip */
    top: 40px;
    z-index: 1;

    /**/
    position: absolute;			
    text-align: center;			
    width: auto;					
    height: auto;					
    min-width: 100px;					
    min-height: 20px;					
    padding: 2px;
    font: 12px sans-serif;		
    background: lightsteelblue;	
    border: 0px;		
    border-radius: 8px;			
    pointer-events: none;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.pageBar{
	position:absolute;
	width:100%;
	z-index:0;
}

