/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/
/*
 * Menu container settings
 * Applies to the first level menu container
 */
 
.BAL2 { 
  font-family: Verdana, Arial, Helvetica, sans-serif; 
  font-size: 10px; 
  font-weight: bold; 
  border: 1px solid #A4A37B; 
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
} 

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.BAL2 ul {
	font-weight: bold;
 
}
/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.BAL2 li {
	background-color: #FFFFFF;
	width: 152px;
	margin: 0 0 0 0 px ;
	border: 0px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/sidebar_bg_gradient.gif");
	background-repeat: repeat;
	background-position: left top;
	border-bottom: 1px solid #3C4070;
}
.BAL2 li.addbullet {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/sidebar_bg_gradient_bullet.gif") !important;
    background-repeat: repeat !important;
}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.BAL2 ul li {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/spacer.gif");
	background-repeat: repeat;
	border: 0px solid #FFFFFF;
	border-top: 1px solid #DFDEC7;
	background-color: #E5EAF8;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.BAL2 a, .BAL2 a:link, .BAL2 a:visited, .BAL2 a:hover {
	text-decoration: none;
	color: #3c4070;
	text-align: left;
	line-height: 18px;	padding: 2px 2px 2px 10px;
	cursor: pointer;
	font-size: 10px;
	font-weight: bold;
}
p.show_hide {
   padding: 2px 2px 2px 10px;
   font-weight: bold;
}
a.show_hide, a.show_hide:link, a.show_hide:visited, a.show_hide:hover {
	text-decoration: none;
	color: #3c4070;
	text-align: left;
	line-height: 18px;	cursor: pointer;
	font-size: 10px;
	font-weight: bold !important;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.BAL2 ul a, .BAL2 ul a:link, .BAL2 ul a:visited, .BAL2 ul a:hover {
	text-align: left;
	line-height: 12px;
	font-weight: bold;
	padding: 2px 2px 2px 15px;
}


/*****************************************************************************
* In this section, we will define what happens when a menu item is selected  *
*****************************************************************************/

/*
 * Selected menu item
 * Applies to selected menu items in all menu containers
 */
.BAL2 li.selected {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/spacer.gif");
	background-repeat: repeat;
	background-color: #A4B5E7;
}

/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.BAL2 ul li.selected {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/spacer.gif");
	background-repeat: repeat;
    background-color: #EDF1FA;
}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.BAL2 a.selected {
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.BAL2 ul a.selected {
	font-weight: bold;
}


/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/

/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.BAL2 li.hover {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/spacer.gif");
	background-repeat: repeat;
	font-weight: bold;
	background-color: #D1DAF3 !important;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.BAL2 ul li.hover {
	background-image: url("http://www.barringtonarealibrary.org/includes/design_images/spacer.gif");
	background-repeat: repeat;
	background-color: #C8D2F1 !important;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.BAL2 a.hover {
	text-decoration: none;
	color: #3c4070;
	text-align: left;
	line-height: 18px;	padding: 2px 2px 2px 10px;
	cursor: pointer;
	font-weight: bold;
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.BAL2 ul a.hover {
	text-align: left;
	line-height: 12px;
/*	border-top: 1px solid #65688F; */
/*	border-bottom: 1px solid #303465; */
	padding: 2px 2px 2px 15px;
	font-weight: bold;
}


/******************************************************************************
* In this section, we will define the menu arrows behavior                    *
* An arrow is inserted next to the menu item when the menu item has sub-menus *
******************************************************************************/

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus
 */
.BAL2 .arrow {
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.BAL2 .hover ul .arrow,
.BAL2 ul .arrow {
	background-image: url("http://www.barringtonarealibrary.org/includes/cssmenus2/skins/BAL2/img/pos2.gif");
	background-repeat: no-repeat;
	background-position: right center;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.BAL2 .hover .arrow {
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus located in the second (or more) level on mouse over
 */
.BAL2 ul .hover .arrow {
}
/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.expandable {
	clear: both;
}
div.expandable br {
	clear: both;
}
div.expandable ul {
	margin: 0px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.expandable li {
	list-style-type: none;
	display: block;
	float: left;
	clear: both;
	text-align: left;
    position: relative;
}
div.expandable li img {
	border: none;
}
div.expandable a {
	clear: both;
	float: none;
	display: block;
	margin: 0px;
}
div.expandable ul li ul {
	position: static;
	visibility: visible;
	display: block;
	clear: both;
	margin: 0px;
	margin-top: -5000px;
}
div.expandable ul li ul li ul {
	display: none;
}
div.expandable ul li ul li {
	clear: both;

}
div.expandable ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}