/* LAYOUT: PREPARATION: NAVIGATION LISTS */

/* Sets the special behaviour of the bulleted lists used for navigation */

/* IE 5.0 Win may handle badly -- it has problems with display:inline, border:left, and border:right in general.  That's one reason why it gets the lo-fi version. */


div.navlist ul, div.navlist ul li, #sidebar ul, #sidebar ol, #sidebar li {

	list-style-type:none; /* removes bullets/numbers */

	margin:0; /* we zero margins and padding to regain full control over whitespace */

	padding:0;

	}


/* WIKI COMMANDS TABS IN TITLE BLOCK */

#titleblock .actionlist li {

	display:inline; /* puts tabs all on one line */

	}

#titleblock .actionlist a {

	text-decoration:none; /* removes link underlines */

	}

#titleblock .moreactions {

	float:right;

	}


/* FOOTER LINK LISTS */

#footer ul li {

	display:inline; /* puts tabs all on one line */

	}

#footer ul a {

	margin:0; /* just in case it's not already */

	text-decoration:none; /* removes link underlines */

	}


/* VIEWSWITCHER LINK LIST */

#sidebar .viewswitcher p.vspace, #sidebar .viewswitcher p.currentview { /* remove unwanted whitespace and the current view: line */

	margin:0;

	padding:0;

	display:none !important;

	}

#sidebar .viewswitcher ul {

	margin:1em 0;

	}

#sidebar .viewswitcher ul li a {

	text-decoration:none;

	padding:0.1em 0.5em 0.2em 0.5em;

	display: block;

	/* prevents ugliness and jerking by "hiding" the border when not wanted. longhand validates, shorthand doesn't */
	border-style:none none none solid;
	border-width:1em;
	border-color:transparent;
	}
#sidebar .viewswitcher ul li a:hover, 
#sidebar .viewswitcher ul li a:focus, 
#sidebar .viewswitcher ul li a:active,
body.display #sidebar .viewswitcher ul li.display a, 
body.standard #sidebar .viewswitcher ul li.standard a, 
body.author #sidebar .viewswitcher ul li.author a, 
body.admin #sidebar .viewswitcher ul li.admin a 
	{
	border-left:1em solid;
	}
