﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the BIBNavigation control is enabled. */
/* These rules correspond to the "pure CSS menu" technique that have been evolving over the past several years. */ 

ul.BIB-Menu
{
	padding: 3px 0;
	margin-left: 7px;
	margin-bottom: 0;
	list-style-type: none;
	font-size: 70%;
	font-weight: bold;
	font-size: 70%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

ul.BIB-Menu li
{
	display: inline;
	margin: 0;
}

ul.BIB-Menu li a
{
	padding: 3px 7px;
	border: 1px solid;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
}

ul.BIB-Menu li a:hover
{
	font-weight: bold;
	text-decoration: underline;
}

/*selected main tab style */
ul.BIB-Menu li.BIB-Menu-tabSelected a, ul.BIB-Menu li.BIB-Menu-tabSelected a:visited, ul.BIB-Menu li.BIB-Menu-tabSelected a:hover
{
	position: relative;
	font-weight: bold;
	top: 1px; /* Makes tab 1 px smaller than other tabs */
	padding-top: 4px; /* Makes selected tab same height as other height padding of li a plus top */
	border-bottom: none;
}

ul.BIB-Menu li.BIB-Menu-tabSelected a:hover
{
	text-decoration: underline;
}

/* Style for sub menu with items */
#BIB-Menu-Sub-Content
{
	font-size: 70%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 5px 0px 5px 16px;
	border: 1px solid;
	height: 1%; /*IE6 fix - This seems to work fine with IE7, FireFox, and Netscape as well - stops 100% vertical spanning */
}

/* Style for submenu without sub menu items */
#BIB-Menu-Sub-Content-None
{
	border: 1px solid;
	padding: 2px;
}

#BIB-Menu-Sub-Content ul
{
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: none;
}

#BIB-Menu-Sub-Content ul li
{
	display: inline;
}

/* Selected 2nd item in sub menu */
#BIB-Menu-Sub-Content ul.BIB-Menu-Sub-Content-Selected
{ 
	display: block;
}

/* Base styles for all sub menu items */
#BIB-Menu-Sub-Content ul li a, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a, 
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a:hover, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a, 
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a:hover, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Last a
{
	padding: 0px 15px 0 15px;
	display: block;
	float: left;
	text-align: center;
	text-decoration: none;
}

/* Add right border if not last item in the list */
#BIB-Menu-Sub-Content ul li a, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a, 
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a:hover
{
	border-right: 1px solid;
}

/* Removed right border for last item in the list */
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a, 
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a:hover, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Last a
{
	border-right: none;
}

#BIB-Menu-Sub-Content ul li a:hover, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a:hover,
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a:hover
{
	text-decoration: underline;
}

/* Selected item style */
#BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected a, #BIB-Menu-Sub-Content ul li.BIB-Menu-Sub-Content-Selected-Last a
{
	font-weight: bold;
}

/*Clear floats hack: http://positioniseverything.net/easyclearing.html*/
.clearfix:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

.clearfix
{
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
