/* CSS Document */

/* #box sets the space within the wrapper where the menu will go */
/* sets bkgnd and size of total menu on screen and fonts etc */
/* Can be any other name */
#box{
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	width: auto;
	height: 13px;
	background-color: #000000;
	text-align: justify;
	border: none;
	text-decoration: none;
}

/* menucont sets the block that holds contents of the menu items - width must be equal to or greater than the total of menu items.  Do not fill background - it will expand with sub menus across screen */
#menucont {
	color: #ffffff;
	width: 760px;
	height: 15px;
	position: absolute;
	font-weight: bolder;
	left: 2px;
	top: 0px;
}

/* menublock/display sets the position, width, and background color (under the entire menu block of items) - width times items must be <= menucont width */
.menublock, .display {
float:left;
width:126px;
}

/* set properties of submenu items */
.subs{
	background-color: #000099;
}

/* turns off menu displays when called - make background same as menu cell */
.menublock .subs{
	display: none;
	background: #000099;
}

/* set the attrbutes of the off state - font weight must = menucont */
a.tl, a.sl {
	display: block;
	text-decoration: none;
	color: #ffffff;
	background-color: #000099;
	border: none;
	text-align: center;
	font-weight: bolder;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

/* set the attributes of the hover state */
a.tl:hover, a.sl:hover {
	background-color: #000099;
	text-align: center;
	font: bolder 11px Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
}

/* set background of menu cell if using tables*/
td.menu {
	background: #000000 url(../../../html/writing/tbirds%20on%20display/assets/images/bg_parch.jpg);
	height: 15px;
	width: 760px;
	border: none;
}
