#myNavBar {
	width: 96px;
	max-width: 96px;

	/* possible values for font-weight: normal bold bolder lighter
	 * 100 200 300 400 500 600 700 800 900
	 */
	font-weight: normal;
	font-size: 12px;
	padding-left: 0px;
	speak: none;
	border: none;
	display: block;
	vertical-align: top;
}


ul#nav {
	margin: 0;
	/* padding: top right bottom left */
	/* NOTE that bottom padding is zero because the last button already
	 * has 2px (or 3px) padding below it
	 */
	padding: 2px 2px 0px 2px;

	list-style: none;
	/* if width is left unspecified, IE does bad things, but Firefox is fine? */
	/* width: 112px; */
/*	background: url("http://bluecalicoltd.com/images/background-dark.jpg") repeat; */
/*	background: url("http://bluecalicoltd.com/images/background-lighter.jpg") repeat;
	background-position: top left; */

	font-family: Arial, Tahoma, Helvetica, sans-serif, sans;
}


/* Regular rows */

/* this padding will be between the cells of the menu bar */
ul#nav li {
	display: block;
	height: 28px;
	width: 92px;

	/* padding: top right bottom left */
	padding: 0px 0px 3px 0px;
	/* margin: top right bottom left */
	margin: 0px 0px 0px 0px;
	text-align: center;

	/* set the background of each list item to be our (short) button box */
	background: url("/store/images/buttons/short-button-normal.gif") 0 0 no-repeat;

	/* line-height: sets the distance between lines */
	line-height: 120%;
}

ul#nav li a	{
		/* NOTE that we need to specify the width here in order
		 * to ensure that the entire button area is clickable.
		 */
		width: 96px;
		display: block;
		text-decoration: none;
		font-weight: bold;
		font-size: 13px;
		color: #ffffff;
		padding: 0 0 0 0px;
		margin: 0;
		text-align: center;
		border: none;

		/* padding: top right bottom left */
		padding: 8px 0 0 0;
	}


/* hover should use the cyan-colored text */
ul#nav li a:hover { color: #00ffff; }

ul#nav li.short,
ul#nav li.spacer-short {
		height: 28px;
	}

/* the "tall" variants use a different background image */
ul#nav li.tall,
ul#nav li.spacer-tall {
		height: 44px;
		background: url("/store/images/buttons/tall-button-normal.gif")
				top left no-repeat;
	}


/* the "spacer" versions just add 20 pixels of padding below the item -
 * used to create the vertical spacing
 */
ul#nav li.spacer-short,
ul#nav li.active-spacer-short,
ul#nav li.spacer-tall,
ul#nav li.active-spacer-tall { 
		/*
		margin-bottom: 0px;
		** padding: top right bottom left **
		padding: 0 0 20px 0px;
		 */
		/* padding-bottom: 20px; */
		/* margin-bottom: 20px; */
		/* margin: top right bottom left */
		/* THIS WORKS: padding: 0px 0px 20px 0px; */
		/* THIS WORKS TOO: margin: 0px 0px 20px 0px; */
		/* margin: top right bottom left */
		margin: 0px 0px 20px 0px;
		/* background-color: transparent; */
	}


/* Button for the currently-active page: */

ul#nav li.active-short,
ul#nav li.active-spacer-short {
		height: 28px;
		background: url("/store/images/buttons/short-button-active.gif") 0 0 no-repeat;
	}

ul#nav li.active-tall,
ul#nav li.active-spacer-tall {
		height: 44px;
		background: url("/store/images/buttons/tall-button-active.gif") 0 0 no-repeat;
	}

/* need to override the inherited font color - use black, not white */
ul#nav li.active-short a,
ul#nav li.active-tall a,
ul#nav li.active-spacer-short a,
ul#nav li.active-spacer-tall a
		{ color: #000; }

/* need to specify the hover font color, else it will use the #000 from above */
ul#nav li.active-short a:hover,
ul#nav li.active-tall a:hover,
ul#nav li.active-short-spacer a:hover,
ul#nav li.active-tall-spacer a:hover
		{ color: #00ffff; }

/* End */
