<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

#navMenuBar {
	background: url("http://www.uky.edu/HR/assets_site/menu_bg.jpg") repeat; 
	height: 29px;
	margin: 0;
	padding: 0;
	width:100%;
	vertical-align: middle;
}

#MenuBar1 {
    background: url("http://www.uky.edu/HR/assets_site/menu_rounded_left.jpg") no-repeat; 
}

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal {
	margin: 0;
	padding: 0px 0px 0px 10px;
	list-style-type: none;
	font-size: 70%;
	cursor: default;
	/*added*/
	font-family:arial;
	font-weight:bold;
	float:left;
	height:29px;
	line-height:120%;
	background: url("http://www.uky.edu/HR/assets_site/menu_bg.jpg") repeat-x;   
}

#menu_end_cap {
	width:10px;
	float:right;
	height:29px;
	margin:0;
	padding:0;
	background: url("http://www.uky.edu/HR/assets_site/menu_rounded_right.jpg") no-repeat top right; 
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive{
	z-index: 1000;
}

ul.MenuBarHorizontal li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;
        /*added*/
        border-right:1px solid #b9b8b8;
 	padding:1px 7px 0px 5px;
}

ul.MenuBarHorizontal a:link, ul.MenuBarHorizontal a:visited{
	color:#525a6b;
}

ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
	color:#333;
}

ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 3px 0px 0px 0px;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li {
	width: 8.2em;
}

/*added... widen drop down menus */
ul.MenuBarHorizontal ul li {
      border:0px;
     width:180px;
     font-weight:normal;
     text-align:left;
     height:auto;
	padding:0;
}

/* hover state for drop down menus */
ul.MenuBarHorizontal ul li a:hover {
	color:#fff;
	background:#f2f2f2;
	background:#666;
}

ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
	left: auto;
}

ul.MenuBarHorizontal ul ul {
	position: absolute;
	margin: -5% 0 0 95%;
}

ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	color: #7B88A3;
	color:#697388;
	color:#666666;	
	text-decoration: none;
        /*added*/
        padding:6px 10px 6px 10px;	
}

/* drop down box font */
ul.MenuBarHorizontal li ul li a {
	display: block;
	cursor: pointer;
	background-color: #c3c9d5;
	color: #666;
	color: #333;
	text-decoration: none;
        /*added*/
        padding:7px 2px 8px 3px;
	  margin:0;
	  border-top:1px solid #eee;
	  line-height:100%;
	
}




/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
   
	background-position: 100% 59%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 100% 59%;
}









/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		
	}
}
</pre></body></html>