/**
 * Here's how this style sheet will work: General styles toward the top and
 * then specific styles, in the order in which they appear on the page.
 */



/**
 * General Styles.
 */




html, body {
	background-color: #ffffff;
	margin: 0;
	height: 100%;
}


/**
 * Specific Styles
 */
 

h1 {
	display: inline;
	vertical-align: top;
}
h1 a, h1 a:link, h1 a:active, h1 a:visited {
	text-decoration: none;
}
h1 a:hover, h1 a:visited:hover {
	text-decoration: underline;
}
 

/**
 * Menus
 */


ul.topMenu {
	list-style: none;
	padding-left: 10em; /* Must be same width as #leftNavigation */
}

ul.topMenu li ul {
	list-style: none;
	padding: 0;
}
ul.topMenu a {
	background-color: #ffffff;
	font-weight: bold;
	padding: 0 10px 0 10px;
	white-space: nowrap;
}

ul.menu {
	margin: 0;
	/*
	padding: 0;
	*/
	/*list-style: none;*/
	/*width: 150px;*/
}

ul.menuParent {
	padding: 0 0 0 1em;
}

ul.menu li.menuItem {
	position: relative;
	display: inline;
}
ul.menu li.horizontalMenuItem.menuHasChildren {
	list-style: url(menu-expanded.png);
}

ul.menu li.menuHasNoChildren {
	list-style-image: url(menu-leaf.png);
}

/*
ul.menu li.horizontalMenuItem {
	position: relative;
}
*/

/**
 * submenus
 */
ul.menu li.horizontalMenuItem ul {
	padding: 0;
	margin-left: 1.2em;
}

ul.menu li.horizontalMenuItem ul li {
	/*padding-left: 1em;*/
	/*list-style-type: square;*/
	list-style-image: url(themeresources/tapestry/menu-leaf.png);
}
/*
ul.menu li.menuItem:hover ul.menu {
	display: block;
}
*/

ul.menu li.menuItem ul {
	position: absolute;
	left: 0;
	top: 1.1em;
	display: none;
}





#leftNavigation {
	padding: 2em 0 1em 0;
	position: absolute;
	width: 10em;
}

#pageContent {
	padding: 1em 1em 1em 10em;
}



#container {
	padding: 0 2em 0 1em;
}

