/*Style sheet for UWS multiple choice tutor*/
/*The body is indented 12 times standard character width to allow a fixed menu to appear on the LHS of the screen*/
body
	{
	padding-left: 2em;
	font-family: Comic Sans MS, helvetica, sans-serif;
	text-align: justify;
	background-color: silver;
	}
h1, h2, h3, h4
	{
	font-family: Helvetica, sans-serif;
	text-align: center;
	line-height: 2pc;
	}
/*The navbar style is made for the ul (unsorted list) to enable a menu to be constructed on the LHS of the screen*/
ul.navbar
	{
	position: absolute;
	top: 7em;
	left: 1em;
	width: 10.5em;
	text-align: left;
	list-style-type: none;
	padding: 0;
	margin: 0;
	}
/*Formating control for unsorted list list items*/
ul.navbar li
	{
	font-size: small;
	background-color: aqua;
	margin: 0.5em 0;
	padding: 0.3em;
	border-right: 0em}
/*How to format a hypertext link in a navigation bar*/
ul.navbar a
	{
	text-decoration: none
	}
 		a:link
	{
	color: blue
	}
/*How to format a link when it has been visited*/
 		a:visited
	{
	color: purple
	}
/*This style sites any image of the site_logo class in the top LHS of the screen. This will normally be UWS's logo*/
img.site_logo
	{
	position: absolute;
	top: 1em;
	left: 1em;
	}
/*The .tab style is used to create the tab in a tabbed interface, which is linked to a panel below that shows the relevant page content*/
	.tab{
		color: navy;
		font-size: small;
		background-color: white;
		border: thin solid navy;
		position: absolute;
		top: 7.5em;
		width: 8em;
		text-align: center;
/*		font: 9pt Verdana,sans-serif; */
		z-index: 2;
		padding: 0;
		cursor: pointer;
		cursor: hand;
	}
	.panel{
		position: absolute;
		top: 8em;
		left: 12em;
		width: 95%;
		z-index: 1;
		height: 85%;
		visibility: hidden;
/*		font: 12pt Verdana,sans-serif; */
		color: navy;
		border: thin solid navy;
		padding: 10;
		overflow: auto;
	}
