/*
	LSB.css
	
	Login Manager Status Bar
 
	---------------------------------------------------
	Login Manager 
	Copyright Ronnie MacGregor
	www.LoginManager.co.uk
	www.dBASEdeveloper.co.uk
	--------------------------------------------------- 
*/


/*-------------------------------------------------------*/ 
/* Login Status Bar                                      */
/*-------------------------------------------------------*/ 

#LoginStatusBar {
   list-style: none;
	position: absolute;
	top: 0px; /* Set the top of the LSB here*/
	right: 5%;
   padding: 0;
   margin: 0;
	width: 36%; 
   height: 13px;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	/*font-size: 90%;*/
	font-size: 10pt;	
	color: #888888;
	text-align: right;
	line-height: 115%;
	z-index: 100;	
}

#LoginStatusBar li {
	float: right; /* make list horizontal */
   padding: 4px; /* Spacing for LSB objects */	
}

#LoginStatusBar a {
	text-decoration: none;
	color: #888888;	
   display: block;
	position:relative; /* Tooltip related element*/ 		
}

#LoginStatusBar a:hover {
	text-decoration: none;
	color: #000000;
   background-position: 0 -26px; /* -13 for Orange, -26 for black */
	z-index: 100; /* Tooltip related element*/
}

#LoginStatusBar span {
   display: none; /* Prevent the display of span text */
}

#LoginStatusBar a:hover span { /* Tooltip */
    display: block;
    position: absolute;
    top: 2.5em;
	 left: -2em;
	 width: 5em;
	 height: 1.35em;
    border: 1px solid #000000; 
    background-color: #FFFFE1;  
	 color: #000000;
    text-align: center
}

/* Individual LSB objects follow */

#LoginStatusBar .Login {
   width: 12px;
   height: 13px;
   background: url(../Images/LSB_Icons/Login.gif) no-repeat 0 0;
}

#LoginStatusBar .Logout {
   width: 8px;
   height: 13px;
   background: url(../Images/LSB_Icons/Logout.gif) no-repeat 0 0;
}

#LoginStatusBar .Home {
   width: 11px;
   height: 13px;
   background: url(../Images/LSB_Icons/Home.gif) no-repeat 0 0;
}

#LoginStatusBar .Target {
   width: 11px;
   height: 13px;
   background: url(../Images/LSB_Icons/Target.gif) no-repeat 0 0;
}

#LoginStatusBar .Settings {
   width: 10px;
   height: 13px;
   background: url(../Images/LSB_Icons/Settings.gif) no-repeat 0 0;
}

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/
/* eof */  
