/*

*********************************************************************************************
*** PLEASE FOLLOW THE RULES BELOW **************************
*********************************************************************************************

> Styles can be seperated into the groups (and sub-groups) shown below.

	1. Tag (Redefines the look of any specific tag)

	2. Class (Can apply to any tag)
	
		- Page (Applies to the entire web page)
			- Header (Applies to the header portion of the page)
			- Nav (Applies to the navigation portion of the page)
			- Content (Applies to the main content portion of the page)
				- Heading (Applies to the headings within main content portion of the page)
				- Paragraph (Applies to the paragraphs within main content portion of the page)
			- Footer (Applies to the footer portion of the page)
			- Control (Applies to the user controls)
				- Name of Control (Applies to the specific user control)
			- Form (Applies to the form elements of a site)
			- Misc (Applies to miscellaneous element/sections of the site)
				- Error (Applies to the error messages)
		- Admin (Applies to the admin section of the site)
			- Tree (Applies to the tree view)
			- Cms (Applies to the cms panel)

	3. Advanced (IDs, contextual selectors, etc.)

> Keep the styles belonging to the 3 main groups in order, below their relevant titles.
  
> Use the Pascal naming convention, i.e. NamedVariable, NamedVariable2, AnotherNamedVariable, 
  except with Tag Styles, use lowercase standard html names.

> Class styles should be pre-fixed with the name of their sub-set, e.g. PageBg, 
  HeaderImage, NavLink, ContentBorder, FormButton, ErrorMsg, AdminHeading, CmsParagraph, etc.
  
> Any abbreviations should be obvious, list them here:

  Bg = Background
  Nav = Navigation
  Msg = Message
  
> Where it is expected that more than one similar style will occupy a sub-set, append with numerals,
  e.g. ContentHeading, ContentHeading2, ContentHeading3, ContentHeading4, etc.

> Do not use properties within names! i.e. ContentRedBigBoldHeading. The style may change.
  Use objects instead of properties.

> Use hexidecimal colour values rather than descriptions, e.g. use '#ffffff' not 'white'.

/********************************************************************************************
*** 1. Tag Styles ***************************************************************************
********************************************************************************************/

body {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-image:url(../Images/PageBG.gif);
	background-repeat: repeat-y;
}

td,tr {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}

/********************************************************************************************
*** 2. Class Styles *************************************************************************
********************************************************************************************/

.FooterBG {
	background-image: url(../Images/Footer1.gif);
	background-repeat: repeat-x;
}
.FooterText {
	color: #827f6f;
}
.HeaderBG {
	background-color: #FFFFFF;
}

.FormTextBox {
 background-color: #FFFFFF;
 border: 1px solid #CCCCCC;
 width: 180px;
 height: 18px;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 color: #666666;
}

.FormTextArea {
 background-color: #FFFFFF;
 border: 1px solid #CCCCCC;
 width: 180px;
 height: 60px;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 color: #666666;
}

.NavBG
{
	background-image: url(../Images/NavBG.gif);
}

.MenuItemOver
{
	color: #000000;
	cursor:hand;
	cursor: pointer;
	background-image: url(../Images/NavSep.gif);
	background-repeat: no-repeat;
	background-position: left;
}

.MenuItem
{
	color: #004f7d;
	cursor:hand;
	cursor: pointer;
		background-image: url(../Images/NavSep.gif);
	background-repeat: no-repeat;
	background-position: left;
}

.MenuItemExpand
{
	color: #004f7d;
	cursor:hand;
	cursor: pointer;
	height: 26px;
	background-color: #E3E2DE;
	background-repeat: no-repeat;
	background-position: left;
}

.MenuItemExpandOver
{
color: #000000;
	cursor:hand;
	cursor: pointer;
	height: 26px;
	background-color: #E3E2DE;
	background-repeat: no-repeat;
	background-position: left;
	border-bottom:1px solid #A5A5A4;
	border-left:1px solid #A5A5A4;
	border-right:1px solid #A5A5A4;
	}
	
.MenuItemExpand
{
	color: #000000;
	cursor:hand;
	cursor: pointer;
	height: 26px;
	background-color: #E3E2DE;
	background-repeat: no-repeat;
	background-position: left;
	border-bottom:1px solid #A5A5A4;
	border-left:1px solid #A5A5A4;
	border-right:1px solid #A5A5A4;
}



/********************************************************************************************
*** 3. Advanced Styles **********************************************************************
********************************************************************************************/

.ErrorMessage {
 color: red;	
}

.BodyTextArea  {
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	background-color: #FFFFFF;
	height: 300px;
	}

.PageHeading {
	text-align: left;
	padding-right: 0px;
	padding-left: 80px;
	padding-bottom: 0px;
	padding-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #374EA2;
	}
.PageHeading2 {
	text-align: left;
	padding-right: 0px;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #374EA2;
	}

.AdminHeader {
	background-image: url(../Images/AdminBG.jpg);
	background-repeat: repeat-y;
	}

a.FooterLinks {
	color: #827f6f;
	text-decoration: none;
}

a.FooterLinks:Hover {
	color: #0c119d;
	text-decoration: none;
}

a.FooterLinks:Active {
	color: #827f6f;
	text-decoration: none;
}

a.FooterLinks:Visited {
	color: #827f6f;
	text-decoration: none;
}
a.HeaderLinks {
	color: #000000;
	text-decoration: none;
}

a.HeaderLinks:Hover {
	color: #000000;
	text-decoration: underline;
}

a.HeaderLinks:Active {
	color: #000000;
	text-decoration: none;
}

a.HeaderLinks:Visited {
	color: #000000;
	text-decoration: none;
}

a.SiteLinks {
	color: #374EA2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

a.SiteLinks:Hover {
	color: #374EA2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: underline;
}

a.SiteLinks:Active {
	color: #374EA2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

a.SiteLinks:Visited {
	color: #374EA2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

.DefaultImage {
	background-image:url(../Images/HomeBodyBG.jpg);
	background-repeat: no-repeat;
}

.DefaultImageRight {
	background-image:url(../Images/HomeRightBG.jpg);
	background-repeat: no-repeat;
}

.DefaultImageBottom {
	background-image:url(../Images/HomeBottomBG.jpg);
	background-repeat: no-repeat;
}

.RightColumnBGTop {
	background-image:url(../Images/RightColumnBGTop.jpg);
	height: 60px;
}
.RightColumnBGBottom {
	background-image:url(../Images/RightColumnBGBottom.jpg);
	height: 40px;
}

.RightColumnBGMiddle {
	background-image:url(../Images/RightColumnBGMiddle.jpg);
	height: 100%;
}

.BodyBG {
	background-image:url(../Images/BodyBG.jpg);
}

.BodyBG2 {
	background-image:url(../Images/BodyBG2.jpg);
	height: 55px;
	background-repeat: no-repeat;
}

.BodyBG3 {
	background-image:url(../Images/BodyBG3.gif);
	background-repeat: no-repeat;
	height: 55px;
}

.MapBG {
	background-image: url(../Images/Map.jpg);
	align: right;
	background-repeat: no-repeat;
}

li.OrangeBullets
{
	list-style-image: url(../Images/BulletPoint.gif);
}

.SubTitleWhite {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

.FormButton
{
 border: 1px solid #C1BDA3;
 height: 20px;
 cursor: hand;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 color: #000000;
}
.AdminTree 
{
 border-bottom: #eeeeee 2px solid;
 border-right: #eeeeee 1px solid;
 border-top: #eeeeee 1px solid;
 border-left: #eeeeee 1px solid;
 background-color:#999999;
}

.AdminTreeView 
{
 border-bottom: 2px solid #999999;
 border-right: 1px solid #999999;
 border-top: 1px solid #999999;
 border-left: 1px solid #999999;
 background-image: url(../Images/AdminTreeViewBg.gif);
}

.AdminContent
{
 border-right: #999999 3px solid;
 border-top: #999999 3px solid;
 border-left: #999999 3px solid;
 border-bottom: #999999 3px solid;
}

.CmsBox
{
	border-top: solid 0px #ACA899;
	border-right: solid 0px #ACA899;
	border-left: solid 0px #ACA899;
	background-color: #eeeeee;
	padding: 6px;
}
.AdminBody 
{
	background-color:#FFFFFF;
}

.DropDownSite {
	background-color: #e9e7e0;
	font-size: 10px;
	font-weight: bold;
	color: #827f6f;
}
.HeaderText1 {
	color: #827f6f;
	font-size: 10px;
}

.ImageBorder {
	border: 20px solid #e9e7e0;
	margin-top:10px;
	margin-bottom: 10px;
}
.ImageBorder2 {
	border: 20px solid #e9e7e0;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.ImageBorder3 {
	border: 20px solid #e9e7e0;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	}

.AstuteText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #827f6f;
	}
	
a.Astute:link {color:#827f6f; text-decoration: none; font-size: 9px}
a.Astute:active {color:#827f6f; text-decoration: none; font-size: 9px}
a.Astute:visited {color:#827f6f; text-decoration: none; font-size: 9px}
a.Astute:hover {color:#827f6f; text-decoration: underline; font-size: 9px }