/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #666;
	background-image: url(../images/front-end-background.jpg);
	color: #2e2d2c;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-repeat: repeat-x;
}
h1 {
	font-size: 16px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
	padding-bottom: 6px;
	margin-bottom: 10px;
	color: #EC9400;
}
h2, caption {
	text-align:left;
	font-size: 13px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #F09600;
	padding: 4px;
	margin-top:12px;
}
small {
	color:#666;
}

#entityAdminMenu {
	color:#F7F7F7;
	text-align:center;
	padding: 4px;
	background-color:#e8a023;
	border:1px solid #525E37;
	border-bottom:none;
	border-right:none;
	font-weight:bold;
	margin-bottom:0px;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin-left: auto;
  margin-right: auto;
  min-width: 755px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 955px;
}
#outerWrapper #admin-debug {
	border: dashed 1px #826a50; /* Sets the bottom border properties for an element using shorthand notation */
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 20px 0 0 0;
	background-color: #FFDA9B;
	font-size:0.8em;
}
#outerWrapper #header {
	background-color: #ffb533; /* Sets the bottom border properties for an element using shorthand notation */
	line-height: 15px;
	/*padding: 69px 10px 10px;*/
	padding: 39px 10px 10px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	font-size: 12px;
	/*	background-image: url(../images/admin/admin_header.gif);*/
	border: 1px solid;
	border-top-color: #ccc;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
	background-repeat: no-repeat;
}
#outerWrapper #header #entityName {
	font-size:2em;
	text-align:right;
	color: #999;
	margin-bottom:14px;
	padding-right:110px;
}
#outerWrapper #header a:link {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
#outerWrapper #header a:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
#outerWrapper #header a:hover {
	color: #000000;
}
#outerWrapper #contentWrapper {
margin: 10px 0px 0px 0px;

}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #f3f5ee; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #333333; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	font-size:0.8em;
	min-height:880px;
	border: solid 1px #666;
}
#outerWrapper #contentWrapper #leftColumn2 {
	background-color: #333333; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-left:8px;
	width: 180px;
	font-size:0.8em;
	min-height:880px;
	border: solid 1px #666;
	color:#CCCCCC;
}
#outerWrapper #contentWrapper #leftColumn2 h2 {
margin-top:0px;
}
#outerWrapper #contentWrapper #leftColumn2 ul {
	margin-left:2px;
	padding:2px;
	list-style:none;
}
#outerWrapper #contentWrapper #leftColumn2 ul li {
margin: 6px 0px 6px 0px;
}
#outerWrapper #contentWrapper #leftColumn2 a:link {
	color: #ffb533;
	font-weight: bold;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn2 a:visited {
	color: #ffb533;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn2 a:hover {
	color: #ccc;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	background-color:#FFF;
	margin-left: 210px;
	font-size:11px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content a:link {
	color: #CA7900;
}
#outerWrapper #contentWrapper #content a:visited {
	color: #CA7900;
}
#outerWrapper #contentWrapper #content a:hover {
	color: #FF9B04;
}
#outerWrapper #contentWrapper #content_intro {
	background-color:#FFF;
	margin-left: 420px;
	font-size:11px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content_intro a:link {
	color: #CA7900;
}
#outerWrapper #contentWrapper #content_intro a:visited {
	color: #CA7900;
}
#outerWrapper #contentWrapper #content_intro a:hover {
	color: #FF9B04;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	background-color: #191617; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size:0.7em;
	color: #FFFFFF;
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #ffb533;
	margin-top: 10px;
}

#outerWrapper #footer a:link {
	color:#FFF;
	text-decoration:none;
	font-weight:normal;
}
#outerWrapper #footer a:visited {
	color: #FFF;
	text-decoration: none;
	font-weight:normal;
}
#outerWrapper #footer a:hover {
	color: #FFF;
	text-decoration:underline;
	font-weight:normal;
}

/* form field styles */
input {
	cursor:pointer;
}
select:focus, input:focus, textarea:focus {
	background-color: #e7e7e7;
	border:1px solid #0C0;
	}
select:hover, input:hover, textarea:hover {
	border:1px solid #0C0;
	background-color:#eee;
	}
select, input, textarea {
	border:1px solid #666;
	padding:2px 2px 2px 2px;
}

/*  ======== */




/* ==========[ alert divs ]========== */

#alertHelp { /* blue */
	/* help box */
		background-color:#D2E4FF;
		border:1px dashed #666;
		padding:4px;
		color:#333;
		margin-bottom:16px;
		height:125px;
		overflow-y:auto;
}
#alertHelp h2 {
	color:#053668;
	font-size:1.2em;
	border-bottom: 1px dotted #053668;
	margin-right:25px;
	padding-bottom:6px;
	margin-bottom:10px;
	font-size:1.2em;
	background-color:#D2E4FF;
}
#alertHelp h3 {
	font-size:1.0em;
	margin-bottom:10px;
}
#alertAction { /* green */
	/* alert of action confirmed eg. something updated or added */
		background-color:#deed9a;
		border:1px dashed #666;
		padding:4px;
		color:#333;
		margin-bottom:16px;
		height:75px;
		overflow-y:auto;		
}
#alertAction h2 {
	color:#005515;
	font-size:1.2em;
	border-bottom: 1px dotted #005515;
	margin-right:25px;
	padding-bottom:4px;
	background-color:#deed9a;
}

#alertWarning { /* red */
	/* something went wrong */
		background-color:#FFC1C1;
		border:1px dashed #666;
		padding:4px;
		color:#333;
		margin-bottom:16px;
		height:125px;
		overflow-y:auto;		
}
#alertWarning h2 {
	color:#200;
	font-size:1.2em;
	border-bottom: 1px dotted #005515;
	margin-right:25px;
	padding-bottom:4px;
	background-color:#FFC1C1;
}
#outerWrapper #contentWrapper #content #alertWarning a:visited {
	color:#CA0000;
}
#outerWrapper #contentWrapper #content #alertWarning a:link{
	color:#CA0000;
}
#outerWrapper #contentWrapper #content #alertWarning a:active {
	color:#FF3C3C;
}
#outerWrapper #contentWrapper #content #alertWarning a:hover{
	color:#FF3C3C;
}

.closeAlert { float:right; }

.alertWarning { /* red, for using for micro alerts through site where required, hard coded, not automated */
	/* something went wrong */
		background-color:#FFC1C1;
		border:1px dashed #666;
		padding:4px;
		color:#333;
		margin-bottom:160px;
}

/* basic alert messages */
.alertActionMsg {
	color:#090;
}
.alertWarningMsg {
	color:#F00;
}

/* ==========[ alert ends ]========== */




/* ==========[ admin area layout classes ]========== */
.rowAdminOnly { /* highlights admin only features in the control panel */
	background-color:#ffb533;
}
.rowheadertable { /* highlights admin only features in the control panel */
	background-color:#e8a023;
	color:#FFF;
	font-size:1.2em;
}
.rowtablegrey { /* highlights admin only features in the control panel */
	background-color:#f3f5ee;
}


/* ==========[ admin area layout classes ends ]========== */

/* ==========[ custom page management classes ]========== */
  div.section, div#createNew {
	border: 1px solid #F93;
	margin: 0px 5px 10px 5px;
	padding: 0px 0px 5px 0px;
	background-color: #FBFCF3;
  }
  


  div#createNew input { margin-left: 5px; }

  div#createNew h3, div.section h3 {
    font-size: 12px;
    padding: 2px 5px;
    margin: 0 0 10px 0;
    background-color: #ffb533;
    display: block;
	color:#333;
  }
  div.lineitem {
	margin: 3px;
	padding: 0px 2px 0px 2px;
	background-color: #eee;
	border:1px solid #ffb533;    /*cursor: move;*/
	background-image: url(../images/admin/grabber.gif);
	cursor:move;
	background-repeat: no-repeat;
  }

  div.unused { /* depreciated as some entities with pages classed as unassigned do actually use them 
	filter:alpha(opacity=66);opacity:.66;
  */} 
  
  #customPages {
  	width:450px;
  }
  
  .floatRight {
  	float:right;
  }
  
  .editInPlaceHover {
  		border:1px solid #009726;
		background-color:#E8FFEE;
		cursor:pointer;
  }
  .editInPlacePageName {
		border:1px solid transparent;
		background-color: transparent;
		font-size:0.85em;
  }

  .dragHandle {
		cursor:move;
  } 
  
  .lineitem input { /* make buttons smaller in custom page lists */
  	padding:0px;
	font-size: 0.8em;
  }
/* ==========[ custom page management classes ends ]========== */
#events_nav {
	background-color: #eee;
	border: 1px solid #999999;
	padding: 6px;
	width: auto;
  }
  #events_header {
	background-color: #ccc;
	border: 1px solid #999999;
	padding: 6px;
	width: auto;
  }

.news_style {
	margin-bottom:16px;	
}

.news_date {
	float:left;
	padding-right:16px;
	font-weight:bold;
}

.news_headline {
	font-size:1.15em;
	font-weight:bold;
	margin-bottom:6px;
}
  
.news_article {
  
}
/* classes below for news headlines output */
.news_style_headlines {
	margin-bottom:2px;	
}
.news_headline_headlines {
	font-size:0.85em;
	font-weight:bold;
}
/* ===== */

/* class for quoting links/code for user's to copy/paste */
.blockquoteLinkCode {
	margin:20px 20px 20px 45px;
	border:1px dashed #333;
	padding:20px;
	background-color:#F3F5EE;
	width:475px;
}


/* anylink dropdown styles */
.anylinkcss{
position:absolute;
visibility: hidden;
border:1px solid #999;
border-bottom-width: 0;
line-height: 1.6em;
z-index: 100;
background-color: #FFF;
width: 165px;
font-size:0.85em;
font-weight:normal;
}

#outerWrapper #header .anylinkcss a {
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #999;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
font-weight:normal;
color:#696;
}

#outerWrapper #header .anylinkcss a:hover {
color: #9C0;
border-bottom: 1px solid #999;
background-color: #E9F5B3;
}

/* ========== */



/* LHS News Headlines */
#newsHeadlinesSkinLevel {
	border:1px solid #FFF;
	background-color:#D0870D;
}

#newsHeadlinesSkinLevel h3 {
	background-color: #F4B64D;
	color:#5C3C05;
	font-weight:bold;
	text-align:center;
	padding:4px 0px;
	border-bottom:1px solid #FFF;
}

#newsHeadlinesSkinLevel p {
	padding:4px;
}

#newsHeadlinesSkinLevel ul {
	margin-left:4px;
	padding:4px;
	list-style:none;
}
#newsHeadlinesSkinLevel li {
	margin-bottom:10px;
}

#newsHeadlinesSkinLevel a:link {
	color:#FFF;
	text-decoration:none;
	font-weight:normal;
}
#newsHeadlinesSkinLevel a:visited {
	color: #FFF;
	text-decoration: none;
	font-weight:normal;
}
#newsHeadlinesSkinLevel a:hover {
	color: #FFF;
	text-decoration:underline;
	font-weight:normal;
}
/* ========== */



/* =======[ form validation starts ]======= */
input.disabled {
	border: 1px solid #F2F2F2;
	background-color: #F2F2F2;
}

input.required, textarea.required {
	border: 1px solid #00A8E6;
}
input.validation-failed, textarea.validation-failed {
	border: 1px solid #FF3300;
	color: #FF3300;
}
input.validation-passed, textarea.validation-passed {
	border: 1px solid #00CC00;
	color: #000;
}

.validation-advice {
	margin: 5px 0;
	padding: 5px;
	background-color: #FF3300;
	color: #FFF;
	font-weight: bold;
}

.custom-advice {
	margin: 5px 0;
	padding: 5px;
	background-color: #C8AA00;
	color: #FFF;
	font-weight: bold;
}

fieldset {
	margin-bottom:22px;
}

label {
	font-weight: bold;
}
.form-row {
	clear: both;
	padding: 0.5em;
}

.field-label {

}

.field-widget {

}
/* =======[ form validation ends ]======= */

#search-wrap {
	margin-bottom:0px;
}


/* ======================================================= */
/* dropdown.css for header menu */

/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/
#menuwrapper {
	text-align:left;
	font-size:8pt;
}
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
#p7menubar {

}
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 2px 6px;
}
#p7menubar a.p7menubar_trigger {
	padding: 2px 6px;
	background-color:#ffb533;
}
#p7menubar li {
	float: left;
	width: 9em;
}
#p7menubar li {position: relative;}

/* hide from IE mac \*/
#p7menubar li {position: static; width: auto;}
/* end hiding from IE5 mac */

#p7menubar li ul, #p7menubar ul li  {
	width: 130px;
	padding-left:0px;
}
#p7menubar ul li a  {
	color: #999;
	padding: 2px;
	border-bottom:1px solid #222;
}
#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #000000;
	border:1px solid #222;
	border-bottom:none;
	opacity:.92;
	filter:Alpha(opacity=92);    /* filter:progid:DXImageTransform.Microsoft.Alpha(opacity=85); */
}
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color:#FFF;
}
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #999;
}

#p7menubar ul a:visited {
	color: #e8a023 !important;
	font-weight:normal;
}
#p7menubar ul a:link {
	color: #e8a023 !important;
	font-weight:normal;
}
#p7menubar ul a:active {
	color: #e8a023 !important;
	font-weight:normal;
}
#p7menubar ul a:hover {
	background:#222;
	color: #e8a023 !important;
}
/* ======================================================= */

/* =======[ class to handle table row highlight on hover via prototype ]=======*/
/*
add: <table class="highlightable"> to indicate tables to check 
add: <tr id="ignorehighlight"> to indicate rows to ignroe eg. header row - this does not need any style info
*/
table.highlightable td.highlightrow {
	background-color:#eee;
}
/* =======[ highlight table row ends ]=======*/


/* =======[ automagic table row ] ======= */
.auto-table-row-odd {background-color: #F9D8A2;}
.auto-table-row-even {background-color: #FFF6E5;}

/* =======[ automagic table row ends ] ======= */