/* GENERAL ELEMENTS */

* {
	margin: 0;
	padding: 0;
}

/* LIST ELEMENTS */

ul.disc { list-style-type: disc; }
ul.circle{ list-style-type: circle; }
ul.square{ list-style-type: square; }
ol.arabic-numbers{ list-style-type: decimal; }
ol.upper-alpha{ list-style-type: upper-alpha; }
ol.lower-alpha{ list-style-type: lower-alpha; }
ol.upper-roman{ list-style-type: upper-roman; }
ol.lower-roman{ list-style-type: lower-roman; }


/* BASIC LAYOUT */

#wrapper {
	margin: 0 auto;
}

#header {
	margin: 24px 0;
}

#banner {
	height: 2px;
	background-color: transparent;
	background-position: top left;
	background-repeat: no-repeat;
	border-bottom: 1px solid #DDD;
}

#content-wrapper {
	padding-top: 24px;
}

#sidebar {
	width: 250px;
}

#footer {
	display: block;
	width: 100%;
	clear: both;
	margin: 36px 0;
	padding: 24px 0 18px 0;
	font-size: .9em;
	border-top: 1px solid #c7cad1;
}

#breadcrumb {
	display: block;
	padding: 5px 0;
}

#breadcrumb ul {
	list-style: none;
	margin: 0;
}

#breadcrumb li {
	display: inline;
}


/* MENU 1 */

#menu {
	height: 27px;
	font-size: 12px;
	line-height: 18px;
	padding-left: 6px;
	margin-bottom: 1px;
}
	
#menu ul {
	/* Definitive width defined in css/widths/... */
	list-style: none;
	padding-left: 5px;
	height: 27px;
}

#menu li {
	float: left;
	background: transparent url('images/menu-divider.jpg') right no-repeat;
}

#menu a {
	display: block;
	height: inherit;
	padding: 5px 17px 4px 15px;
	text-decoration: none;
}
	
	#menu a.current {
		background: transparent url('images/menu-current.gif') bottom no-repeat !important;
	}
	
	#menu a:active {
		background: transparent url('images/menu-active.jpg') top repeat-x;
	}
	
#menu ul ul {
	display: none; /* Only show the top most menu in the primary menu bar */
}


/* MENU 2 - Level 2 (Level 1 is Hidden) */

#sidebar-menu ul {
	list-style: none;
	display: inline;
}

#sidebar-menu li {
	display: inline;
}

#sidebar-menu span {
	display: none;
}

#sidebar-menu ul ul {
	display: block;
	padding: 0 0 18px 0;
	margin-bottom: 18px;
	border-bottom: 1px solid #c7cad1;
}

#sidebar-menu ul ul span {
	display: block;
	padding: 3px 0;
}

#sidebar-menu ul ul a {
	padding: 0 0 0 22px;
	background: transparent url('images/bullet-arrow-off.png') left no-repeat;
	text-decoration: none;
}

#sidebar-menu a:hover {
	background: transparent url('images/bullet-arrow-on.png') left no-repeat;
}

#sidebar-menu a.current, #sidebar-menu a.currentAncestor, #sidebar-menu ul li a.current:hover, #sidebar-menu ul li a.currentAncestor:hover {
	background: transparent url('images/bullet-arrow-current.png') left no-repeat;
}


/* MENU 2 - Level 3 and beyond */

#sidebar-menu ul ul ul {
	margin: 3px 0 0 25px;
	padding-bottom: 0;
	border: none;
}

#sidebar-menu ul ul ul a {
	padding-left: 19px;
}

#sidebar-menu ul ul ul li a, #sidebar-menu ul ul ul a.currentAncestor {
	background: transparent url('images/bullet-dot-light.png') left no-repeat;
}

#sidebar-menu ul ul ul li a:hover {
	background: transparent url('images/bullet-dot-dark.png') left no-repeat;
}

#sidebar-menu ul ul ul a.current, #sidebar-menu ul ul ul li a.current:hover {
	background: transparent url('images/bullet-dot-dark.png') left no-repeat;
}


