body, td {
	font-family: Arial;
	font-size: 13px;
}

/* css needed by schoolweb///////////////////////////////////////////*/
.white {
	color: #ffffff;
 text-decoration: none;	}
	
.head {
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	}

.pic {
	border-style: solid;
	border-color: red;
	border-width: 1px;
}
	
.select {
	font-family: verdana;
	font-size: 11px;
}

.itemDate {
	color: #000000;
	font-size: 11px;
}
.itemHeader {
	font-weight: bold;
}
.itemBody {
	color: #666666;
	font-size: 12px;
	font-family: Tahoma;
}

h1 {
	font-size: 16px;
	font-weight: bold;
}

h3 {
	font-size: 14px;
	font-weight: bold;
}

.editLink {
	color: #FF0000;
	font-size: 9px;
}

.infoMessage {
	color: #FF0000;
	font-size: 12px;
	font-weight: bold;
}

.pictureText {
	font-style: normal;
	font-size: 10px;
	color: #888888;
}

.pictureTable {
	border: 1px solid #000000;
}


input, textarea, select {
	font-family: Arial;
	font-size: 12px;
	border: 1px solid #316531; 
}


.topNavLink {
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	color: #316531;
}

.subNavLink {
	font-family: Arial;
	color: #316531;
	font-size: 11px;
	text-decoration:none;
}

.subNavLink:Hover {
	text-decoration: underline;
}



hr {
	height:1px;
	color: #316531;
}

/* css needed by schoolweb but altered on each site/////////////////////*/


#pagetitle
{
color: #1D0470;
}

hr {
	height:1px;
	color: #000000;
}

.border {  border: 1px dashed; border-color: #990066 #990066 #990066 #FFFFFF}


/*//////////////////////////////////////////////////////////////////////*/


/*BEGIN MAIN NAVIGATION STYLING//////////////////////////////////////////////////////////*/



#menu {
/* The container for the entire menu system */
position: absolute;
	top: 190px;
	left: 5px;
	margin: 0px;
	padding: 0px;
}

#menu a{
    display: block;
	width: 120px;
	margin: 0px;
	padding: 2px 2px 2px 5px;
	
	text-decoration: none;
	font-family: Arial;
	color: #316531;
	font-size: 12px;
	text-decoration:none;
}
	
#menu a.hover {
    text-decoration: underline;
	
	

}
	
#menu span {
    display:none;
    }

#menu a img {
	border: 0px;
}

#menuList {
/* The container for the menu items */
	display: block;
	width: 120px;
	position: absolute;
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	border-top: 1px solid #316531; border-bottom:1px solid #316531; background-color: #FFFFCC;
}

#menuList ul {
/* The container for the submenu items */
	display: inline;
	width: 120px;
	margin: 0px; /* Margin must be 0, else the gap triggers MouseOut effect */
	padding: 0px;
	font-size: 12px;
}

#menuList li {
	display: block;
	list-style: none;
	
	text-align: left;
	
}
#menuList li a {
	display: block;
}

a.admin:hover, #menuList li a:hover
{
	text-decoration: underline;

}

/*//////////////////////////////////////////////////////////////////////*/

/*Transmenu css -requried by the menu controller///////////////////////*/

/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
	position:absolute;
	}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position:relative;
	background: #ffffcc ;
	border-top: 1px solid #316531;
	border-right: 0px solid #FFFFE8;
	border-bottom: 1px solid #316531;
	border-left: 0px solid #414134;
	display: block;
	left:0px; top:0px;
	z-index:2;
	width: 120px;
	}
/*
.transMenu.top .items {
	border-top:none;
}*/

/* each TR.item is one menu item */
.transMenu .item {
    font-family: Arial;
	color: #316531;
	font-size: 11px;
	text-decoration:none;
	padding: 0px;
	display: block;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	border:none;
	cursor:pointer;
	cursor:hand;
    width: 120px;
	}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	-moz-opacity:.2;
	filter:alpha(opacity=20);
	}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
	position:absolute;
	z-index:3;
	top:3px; width:2px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:3px; height:2px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.transMenu .item.hover {
	
	text-decoration: underline;
}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.transMenu .item img {
	margin-left:10px;
	}

/*//////////////////////////////////////////////////////////////////////*/

/*navigation extra display tags - these may be stie specific/////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////*/

/*////////////////site specific tags ///////////////////////////////////////////////////////*/
/*HTML tags/////////////////////*/
html, body {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	background: #FFFFFF url('../images/background.gif') repeat-x top;
}


body, p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
}


a:active, a:hover {
	color: #996600;
}

h1 {
	font-size: 1.7em;
}

/*//////////////////////////////////////////////////////////////////////*/

/* ID styles ///////////////////////////////////////////////////////////*/



/*//////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*specialist tags need to fullfil a one off requriement//////////////////*/ 
.menuHeading
{
color: #ffffff;
font-family: Arial;
display: block;
background-color: #84A284;
font-size: 13px;
 padding: 5px; 
 
 border-bottom: 1px solid #316531;
font-weight: bold;
 width: 110px;
 *width: 117px;
}

.catHeading
{
padding-left: 5px;
padding-top: 2px;
font-weight:bold;
font-family: Arial;
	color: #316531;
	font-size: 12px;
	text-decoration:none;
}
/*//////////////////////////////////////////////////////////////////////*/
