 /* ------------------------------------------------------ */
/* Public: CSS
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* Header
/* ------------------------------------------------------ */
.HeaderWrapper {
/*	background: #FFFFFF url('/img/v1/header.nav.bg.gif') bottom repeat-x; */
}
.HeaderWrapper .Header {
	background: #FFFFFF;
	width: 980px;
	height: 164px;
	margin: 0px auto 0px auto;
}
.HeaderWrapper .Header .Banner {
	padding: 12px 0px 0px 15px;
	float: left;
}
.HeaderWrapper .Header .Banner a {
	width: 687px;
	height: 94px;
	display: block;
	background: url('/img/v1/header.banner.gif') center center no-repeat;
}
.HeaderWrapper .Header .Banner a span {
	display: none;
}
.HeaderWrapper .Header form.Search {
	float: left;
	padding: 27px 0px 0px 80px;
}
.HeaderWrapper .Header form.Search .SearchLabelQuery {
	width: 59px;
	height: 11px;
	display: block;
	padding: 0px 0px 8px 0px;
	background: url('/img/v1/header.search.label.gif') center center no-repeat;
}
.HeaderWrapper .Header form.Search .SearchLabelQuery span {
	display: none;
}
.HeaderWrapper .Header form.Search .SearchInputQuery {
	width: 148px;
}
.HeaderWrapper .Header form.Search .SearchSubmitQuery {
	margin: 0px 0px 0px 5px;
}
.HeaderWrapper .Header form.Search .TimeTemp {
	font-weight: bold;
}
/* ------------------------------------------------------ */
/* Header - CSS Drop Down Menu
/* ------------------------------------------------------ */
.Header ul {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	list-style-type: none;
	font-size: 12px; /* em base font size */
}
.Header li {
	float: left;
	position: relative;
	background: none;
}
.Header li .CursorDefault {
	cursor: default;
}
.Header li ul {
	display: none;
	position: absolute;
		top: 1em;
		left: 0;
}
.Header li > ul {
	top: auto;
	left: auto;
}
.Header li:hover ul {
	display: block;
}
/* ------------------------------------------------------ */
/* Header - SuckerFish >> SuperFish Drop Down
/* ------------------------------------------------------ */
.Header .sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.Header .sf-menu {
	line-height:	1.0;
}
.Header .sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			13.33em; /* left offset of submenus need to match (see below) */
}
.Header .sf-menu ul ul {
	position:		absolute;
	top:			-999em;
	width:			21.66em; /* left offset of submenus need to match (see below) */
}
.Header .sf-menu ul li {
	width:			100%;
}
.Header .sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.Header .sf-menu li {
	float:			left;
	position:		relative;
}
.Header .sf-menu a {
	display:		block;
	position:		relative;
}
.Header .sf-menu li:hover ul,
.Header .sf-menu li.sfHover ul {
	left:			0;
	top:			3.16em; /* match top ul list item height */
	z-index:		99;
}
.Header ul.sf-menu li:hover li ul,
.Header ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
.Header ul.sf-menu li li:hover ul,
.Header ul.sf-menu li li.sfHover ul {
	left:			13.33em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
/* ------------------------------------------------------ */
/* Header - SuckerFish >> SuperFish Drop Down - Skin
/* ------------------------------------------------------ */
.Header .sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.Header .sf-menu a {
	padding: 		.75em 1em;
	text-decoration: none;
}
.Header .sf-menu a.FirstLvl {
	padding: 		0;
	text-decoration: none;
}
.Header .sf-menu a, 
.Header .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#FFFFFF;
}
.Header .sf-menu li {
	background:		#BE803C;
}
.Header .sf-menu li li {
	background:		#8f6434;
}
.Header .sf-menu li li li {
	background:		#7a5429;
}
.Header .sf-menu li.Selected, .Header .sf-menu li:hover, .Header .sf-menu li.sfHover,
.Header .sf-menu a:focus, .Header .sf-menu a:hover, .Header .sf-menu a:active {
	background:		#b9874e;
	outline:		0;
}
/* ------------------------------------------------------ */
/* Header - SuckerFish >> SuperFish Drop Down Arrows
/* ------------------------------------------------------ */
.Header .sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.Header .sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/img/v1/superfish/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
.Header a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
.Header a:focus > .sf-sub-indicator,
.Header a:hover > .sf-sub-indicator,
.Header a:active > .sf-sub-indicator,
.Header li:hover > a > .sf-sub-indicator,
.Header li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.Header .sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.Header .sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.Header .sf-menu ul a:focus > .sf-sub-indicator,
.Header .sf-menu ul a:hover > .sf-sub-indicator,
.Header .sf-menu ul a:active > .sf-sub-indicator,
.Header .sf-menu ul li:hover > a > .sf-sub-indicator,
.Header .sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}
/* ------------------------------------------------------ */
/* Header - SuckerFish >> SuperFish Drop Down Shadows Sans IE6
/* ------------------------------------------------------ */
.Header .sf-shadow ul {
	background:	url('/img/v1/superfish/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.Header .sf-shadow ul.sf-shadow-off {
	background: transparent;
}
/* ------------------------------------------------------ */
/* Header - First Level Nav Widths and Backgrounds
/* ------------------------------------------------------ */
.HeaderWrapper .Header ul.Nav, .HeaderWrapper .Header ul.Nav li, .HeaderWrapper .Header ul.Nav li ul {
	z-index:100;
}
.HeaderWrapper .Header ul.Nav li a.Home {
	width: 98px;
	background: url('/img/v1/header.nav.gif') 0px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Home,
.HeaderWrapper .Header ul.Nav li a.Home:hover {
	width: 98px;
	background: url('/img/v1/header.nav.gif') 0px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.About {
	width: 174px;
	background: url('/img/v1/header.nav.gif') -98px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.About,
.HeaderWrapper .Header ul.Nav li a.About:hover {
	width: 174px;
	background: url('/img/v1/header.nav.gif') -98px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.Departments {
	width: 160px;
	background: url('/img/v1/header.nav.gif') -272px -0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Departments,
.HeaderWrapper .Header ul.Nav li a.Departments:hover {
	width: 160px;
	background: url('/img/v1/header.nav.gif') -272px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.Services {
	width: 121px;
	background: url('/img/v1/header.nav.gif') -432px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Services,
.HeaderWrapper .Header ul.Nav li a.Services:hover {
	width: 121px;
	background: url('/img/v1/header.nav.gif') -432px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.Government {
	width: 156px;
	background: url('/img/v1/header.nav.gif') -554px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Government,
.HeaderWrapper .Header ul.Nav li a.Government:hover {
	width: 156px;
	background: url('/img/v1/header.nav.gif') -554px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.Calendar {
	width: 132px;
	background: url('/img/v1/header.nav.gif') -710px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Calendar,
.HeaderWrapper .Header ul.Nav li a.Calendar:hover {
	width: 132px;
	background: url('/img/v1/header.nav.gif') -710px -38px no-repeat;
}
.HeaderWrapper .Header ul.Nav li a.Contact {
	width: 139px;
	background: url('/img/v1/header.nav.gif') -841px 0px no-repeat;
}
.HeaderWrapper .Header ul.Nav li.Selected a.Contact,
.HeaderWrapper .Header ul.Nav li a.Contact:hover {
	width: 139px;
	background: url('/img/v1/header.nav.gif') -841px -38px no-repeat;
}
.FirstLvl {
	padding: 0px 0px 0px 0px;
	height: 38px;
}
.FirstLvl span {
	display: none;
}
/* ------------------------------------------------------ */
/* Body
/* ------------------------------------------------------ */
.BodyWrapper {}
/* ------------------------------------------------------ */
/* Main
/* ------------------------------------------------------ */
.Main {
	width: 980px;
	background: #FFFFFF;
	margin:  0px auto 0px auto;
	padding: 10px 0px 0px 0px;
	clear: both;
}
.Main h2 {
	font-size: 28px;
	line-height: 36px;
	font-weight: bold;
	color: #79410f;
	border-bottom: 1px solid #79410f;
	margin: 20px 50px 10px 0px;
}
.Main h2.First {
	margin: 0px 50px 10px 0px;
}
.Main p{
	font-size: 13px;
	line-height: 15px;
}
.Main .BodyContent {
	float: right;
	width: 785px;
	margin: 0px 0px 0px 10px;
}
.Main .ToolsWrapper {
	float: right;
	margin: 0px 0px 0px 0px;
}
.Main .HomeNews_Container {
}
.Main .HomeNews_Container .HomeNews_Entry {
	padding:10px;
}
.Main .HomeNews_Container .HomeNews_Entry h3{
	margin-top:2px;
	margin-bottom:5px;
}
.Main .HomeNews_Container .Odd{
	background-color:#f3e7d7;
}
.Main .HomeNews_Container .Even{
	background-color:#fff8ef;
}
.Main .HomeNews_Container .HomeNews_Date {
	font-size:12px;
	line-height:15px;
	color: #000000;
}
.Main .HomeNews_Container .HomeNews_Title {
	font-weight:bold;
	font-size:15px;
	line-height:17px;
	color: #79410f;
}
.Main .HomeNews_Container .HomeNews_Teaser {
	clear:both;
}
.Main .HomeNews_Container .HomeNews_Image {
	padding-right:5px;
}
.Main ul.Home_SubNav {
	list-style:none;
	width:100%;
	margin:0px;
	padding:0px;
	height:90px;
}
.Main ul.Home_SubNav li {
	float:left;
	background-image:none;
}
.Main ul.Home_SubNav li a{
	width: 250px;
	height: 90px;
	display:block;
}
.Main ul.Home_SubNav li a span{
	display:none;
}
.Main ul.Home_SubNav li a.Residents {
	background: url('/img/v1/home.subnav.jpg') 0px 0px no-repeat;
}
.Main ul.Home_SubNav li a.Visitors {
	background: url('/img/v1/home.subnav.jpg') 0px -90px no-repeat;
}
.Main ul.Home_SubNav li a.Businesses {
	background: url('/img/v1/home.subnav.jpg') 0px -180px no-repeat;
}
.Main .HomeTicker {
	z-index:1;
	font-size:14px;
	line-height:16px;
	padding: 5px 8px 10px 8px;
	font-weight:bold;
	border:2px solid #866036;
	color: #79410f;
	margin:5px 0px 5px 0px;
	height:20px;
	background: #B87D3D;

}
	.HomeTicker .TickerContainer { /* the outer div with the black border */
		width: 100%; 
		height: 20px; 
		margin: 0; 
		padding: 0
		overflow: hidden; 
	}
	.HomeTicker .TickerContainer .Mask { /* that serves as a mask. so you get a sort of padding both left and right */
		position: relative;
		left: 0px;
		top: 5px;
		width: 760px;
		height:17px;
		overflow: hidden;
	}
	.HomeTicker ul.NewsTicker { /* that's your list */
		position: relative;
		left: 770px;
		margin: 0;
		padding: 0;
		list-style-type: none;
	}
	.HomeTicker ul.NewsTicker li {
		float: left; /* important: display inline gives incorrect results when you check for elem's width */
		margin: 0;
		padding: 0px 5px 0px 5px;
		height:20px;
		padding:0 0px 0px 10px;
		margin:0px 0px 0px 5px; 
		list-style-type: none;
		background: url('/img/v1/box.bullet.gif') no-repeat scroll left 6px;
		color:#FFFFFF;

	}
	.HomeTicker ul.NewsTicker a, .HomeTicker ul.NewsTicker a:visited,.HomeTicker ul.NewsTicker a:Link{
		white-space: nowrap;
		padding: 0;
		text-decoration:none;
		margin: 0 50px 0 0;
		margin: 0 10px 0 0;
		color:#FFFFFF;

	} 
	.HomeTicker ul.NewsTicker span {
		margin: 0 10px 0 0;
	}

/* ------------------------------------------------------ */
/* News
/* ------------------------------------------------------ */
.News .BodyContent{
}

.News .BodyContent .DynamicBody {
	font-size: 13px;
	line-height: 15px;
	padding: 0px 10px 0px 10px;
	text-align: left;
	width: 532px;
	max-width: 532px;
	overflow:hidden;
	width: auto !important;
	width: 532px;
	overflow-x: auto;
}

/* ------------------------------------------------------ */
/* Page
/* ------------------------------------------------------ */
.Page {
	background: #FFFFFF;
	margin: 0px auto 0px auto;
	padding: 10px 0px 0px 0px;
	width: 980px;
}
.Page .BodyContent {
	float: left;
	width: 786px;
	margin: 0px 10px 0px 0px;
}
.Page .ToolsWrapper {
	float: left;
	margin: 0px 0px 0px 0px;
}
.Page .PageSubNav h3 {
	color: #FFFFFF;
	font-size: 17px;
	line-height: 19px;
	font-weight: bold;
	padding: 5px 0px 5px 10px;
	margin: 0px 0px 0px 0px;
}
.Page .PageSubNav h4 {
	color: #FFFFFF;
	font-size: 15px;
	line-height: 17px;
	font-weight: bold;
	padding: 10px 0px 0px 10px;
	margin: 0px 0px 0px 0px;
}
.Page .PageSubNav .Top {}
.Page .PageSubNav .Top .TopSlice {
	height: 8px;
	font-size: 1px;
	line-height: 1px;
	background: url('/img/v1/subnav.top.topslice.gif') top center no-repeat;
}
.Page .PageSubNav .Top .Title {
	background: url('/img/v1/subnav.top.body.gif') repeat-y;
}
.Page .PageSubNav .Top .Title .Inner {
	width: 220px;
	margin: 0px 0px 0px 2px;
	min-height: 25px;
	height: auto !important;
	height: 25px;
	background: url('/img/v1/subnav.top.inner.bg.gif') top center no-repeat;
}
.Page .PageSubNav .Top .BottomSlice {
	height: 5px;
	font-size: 1px;
	line-height: 1px;
	background: url('/img/v1/subnav.top.bottomslice.gif') top center no-repeat;
}
.Page .PageSubNav .Body {
	width: 100%;
	background: #996633 url('/img/v1/subnav.body.gif') repeat-y;
}
.Page .PageSubNav .Body .Inner {
	min-height: 44px;
	height: auto !important;
	height: 44px;
	padding: 0px 0px 10px 0px;
	background: url('/img/v1/subnav.body.inner.gif') top center no-repeat;
}
.Page .PageSubNav .Body .Inner ul {
	list-style-type: disc;
	margin: 0px 0px 0px 21px;
	padding: 8px 0px 0px 0px;
	font-size: 13px;
	line-height: 20px;
}
.Page .PageSubNav .Body .Inner ul li {
	color: #FFFFFF;
	padding: 0px 10px 0px 0px;
	list-style-type: disc;
	background: none;
}
.Page .PageSubNav .Body .Inner ul li.Selected a {
	font-weight: bold;
	color: #ffc600;
}
.Page .PageSubNav .Body .Inner ul li a {
	text-decoration: none;
	color: #EFEFEF;
}
.Page .PageSubNav .Body .Inner ul li a:hover,
.Page .PageSubNav .Body .Inner ul li a:active {
	color: #ffc600;
}
.Page .PageSubNav .Bottom {
	width: 224px;
	height: 12px;
	font-size: 1px;
	line-height: 1px;
	background: url('/img/v1/subnav.bottom.gif') top center no-repeat;
}
.Page .BodyContent .BreadCrumbWrapper {
	background: #fff6e8;
	margin: 0px 0px 0px 0px;
	font-size: 1px;
	line-height: 1px;
}
.Page .BodyContent .BreadCrumbWrapper .Top {
	background: transparent url('/img/v1/breadcrumb.topright.gif') top right no-repeat;
}
.Page .BodyContent .BreadCrumbWrapper .Top .Left {
	height: 6px;
	width: 6px;
	background: transparent url('/img/v1/breadcrumb.topleft.gif') no-repeat;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left {
	width: 100%;
	background: transparent url('/img/v1/breadcrumb.bodyleft.gif') left repeat-y;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right {
	width: 100%;
	background: transparent url('/img/v1/breadcrumb.bodyright.gif') right repeat-y;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body {
	width: 100%;
	font-size: 12px;
	line-height: 14px;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul {
	list-style-type: none;
	margin: 0px 10px 0px 10px;
	padding: 0px 0px 4px 0px;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul li {
	border: 0px;
	color: #711800;
	display: inline;
	padding: 0px 5px 3px 0px;
	background: none;
}
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul li a,
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul li a:hover,
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul li a:active,
.Page .BodyContent .BreadCrumbWrapper .BodyWrapper .Left .Right .Body ul li a:visited {
	color: #711800;
	text-decoration: none;
}
.Page .BodyContent .BreadCrumbWrapper .Bottom {
	background: transparent url('/img/v1/breadcrumb.bottomright.gif') bottom right no-repeat;
}
.Page .BodyContent .BreadCrumbWrapper .Bottom .Left {
	height: 5px;
	width: 6px;
	background: transparent url('/img/v1/breadcrumb.bottomleft.gif') no-repeat;
}
/* ------------------------------------------------------ */
/* Page Template 1 - Three column - With Sidenav/Quicklinks
/* ------------------------------------------------------ */
.Template1 .OneColumn {
	width: 184px;
	float: left;
}
.Template1 .TwoColumn {
	width: 786px;
	margin: 0px 10px 0px 0px;
	float: left;
}
.Template1 .TwoColumn .BodyContent {
	width: 552px;
	float: right;
	margin: 0px 0px 0px 10px;
}
.Template1 .TwoColumn .PageSubNav {
	width: 224px;
	float: right;
	padding-bottom: 10px;
}
.Template1 .BodyContent .DynamicBody {
	font-size: 13px;
	line-height: 15px;
	padding: 0px 10px 0px 10px;
	text-align: left;
	width: 532px;
	max-width: 532px;
	overflow:hidden;
	width: auto !important;
	width: 532px;
	overflow-x: auto;
}
.Template1 .TwoColumn .SecondLvlSubNav {
	float: right;
	clear: both;
}
.Template1 .TwoColumn .PageSubNavWrapper {
	float: right;
	width: 224px;
}
/* ------------------------------------------------------ */
/* Page Template 2 - Two Column - Without SideNav/QuickLinks
/* ------------------------------------------------------ */
.Template2 .TwoColumn {
	margin: 0px 0px 0px 0px;
	float: left;
}
.Template2 .TwoColumn .BodyContent {
	width: 746px;
	float: right;
	margin: 0px 0px 0px 10px;
}
.Template2 .TwoColumn .PageSubNav {
	width: 224px;
	float: right;
	padding-bottom: 10px;
}
.Template2 .BodyContent .DynamicBody {
	font-size: 13px;
	line-height: 15px;
	padding: 0px 10px 0px 10px;
	text-align: left;
	overflow-x: auto;
	overflow-y: hidden;
}
.Template2 .RailWrapper {}
.Template2 .TwoColumn .SecondLvlSubNav {
	float: right;
	clear: both;
}
.Template2 .TwoColumn .PageSubNavWrapper {
	float: right;
	width: 224px;
}
/* ------------------------------------------------------ */
/* INL Tools
/* ------------------------------------------------------ */
.Tools {
	width: 184px;
	margin: 0px 0px 0px 0px;
}
.Tools h3 {
	color: #FFFFFF;
	font-size: 17px;
	line-height: 19px;
	font-weight: bold;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 0px 0px;
}
.Tools .ToolBox {
	margin: 0px 0px 10px 0px;
}
.Tools .ToolBox .Top {}
.Tools .ToolBox .Top .TopSlice {
	height: 6px;
	font-size: 1px;
	line-height: 1px;
	background: url('/img/v1/toolbox.top.topslice.gif') center bottom no-repeat;
}
.Tools .ToolBox .Top .Title {
	background: #ae793f url('/img/v1/toolbox.top.body.gif') center repeat-y;
}
.Tools .ToolBox .Top .Title .Content {
	background: #ae793f url('/img/v1/toolbox.top.inner.bg.gif') top center no-repeat;
	min-height: 26px;
	height: auto !important;
	height: 26px;
	width: 180px;
	margin: 0px 0px 0px 2px;
}
.Tools .ToolBox .Top .BottomSlice {
	height: 5px;
	font-size: 1px;
	line-height: 1px;
	background: #9e7343 url('/img/v1/toolbox.top.bottomslice.gif') center top no-repeat;
}
.Tools .ToolBox .Body {
	background: #9e7343 url('/img/v1/toolbox.body.gif') center repeat-y;
}
.Tools .ToolBox .Body .Content {
	width: 159px;
	color: #EFEFEF;
	margin: 0px 0px 0px 2px;
	padding: 10px 10px 10px 10px;
	background: #996633 url('/img/v1/toolbox.body.inner.bg.gif') top center no-repeat;
	min-height: 54px;
	height: auto !important;
	height: 54px;
}
.Tools .ToolBox .Body .Content a,
.Tools .ToolBox .Body .Content a:hover,
.Tools .ToolBox .Body .Content a:visited {
	color: #FFFFFF;
}
.Tools .ToolBox .Body .Content a:hover,
.Tools .ToolBox .Body .Content a:active {
	color: #FFC600;
}
.Tools .ToolBox .Body .Content b, 
.Tools .ToolBox .Body .Content strong {
	font-weight: bold;
	color: #FFFFFF;
}
.Tools .ToolBox .Body .Content ul {
	list-style-type: disc;
	margin: 0px 0px 0px 15px;
	padding: 0px 0px 0px 0px;
	font-size: 13px;
	line-height: 20px;
}
.Tools .ToolBox .Body .Content ul li {
	color: #FFFFFF;
	background: none;
	list-style-type: disc;
	padding: 0px 0px 0px 0px;
}
.Tools .ToolBox .Body .Content ul li a {
	text-decoration: none;
	color: #FFFFFF;
}
.Tools .ToolBox .Body .Content ul li a:hover,
.Tools .ToolBox .Body .Content ul li a:active {
	color: #ffc600;
}
.Tools .ToolBox .Bottom {
	height: 11px;
	font-size: 1px;
	line-height: 1px;
	background: #9e7343 url('/img/v1/toolbox.bottom.gif') center bottom no-repeat;
}
/* ------------------------------------------------------ */
/* Footer
/* ------------------------------------------------------ */
.FooterWrapper {
	clear: both;
}
.FooterWrapper .Footer {
	width: 980px;
	background: #FFFFFF;
	margin:  0px auto 0px auto;
	padding: 10px 0px 10px 0px;
}
.FooterWrapper .Footer p {
	color: #774315;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}
.FooterWrapper .Footer .HRBar {
	height: 10px;
	background: url('/img/v1/footer.hr.bg.gif') repeat-x;
}
.FooterWrapper .Footer ul {
	text-align: center;
	width: 100%;
	overflow: auto;
	margin: 5px 0px 5px 0px;
}
.FooterWrapper .Footer ul li {
	display: inline;
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
	background: none;
	padding: 0px 0px 0px 0px;
}
.FooterWrapper .Footer ul li a {
	padding: 0px 5px 0px 5px;
	text-decoration: none;
	color: #774315;
}
.FooterWrapper .Footer ul li a:visited {
	color: #774315;
}
.FooterWrapper .Footer ul li a:hover,
.FooterWrapper .Footer ul li a:active {
	color: #501700;
}
/* ------------------------------------------------------ */
/* Jquery LightBox
/* ------------------------------------------------------ */
/*
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}

.Clearer {
	line-height:1px;
	font-size:1px;
	clear:both;
}

.ClearLeft {
	line-height:1px;
	font-size:1px;
	clear: left;
}

.ClearRight {
	line-height:1px;
	font-size:1px;
	clear: right;
}

/* ------------------------------------------------------ */
/* Calendar Page
/* ------------------------------------------------------ */
.Calendar {
	border-collapse: collapse;
	position: relative;
}
.Calendar, .Calendar td {
	font: 11px/13px 'Tahoma','Arial','Sans-Serif';
	z-index: 1;
}
.Calendar th {
	font: bold 13px/15px 'Tahoma','Arial','Sans-Serif';
	padding: 5px 0px;
}
.Calendar td {
	border: 1px dashed #946422;
}
.Calendar div.Date {
	width: 100px;
	height: 80px;
	position: relative;
	background-color: #FFFFFF;
}
.Calendar div.DayNumber {
	font: bold 13px/15px 'Tahoma','Arial','Sans-Serif';
	position: absolute;
	right: 3px;
	top: 3px;
	z-index: 10;
}
.Calendar ul.Events {
	position: absolute;
	bottom: 2px;
	left: 2px;
	font: normal 9px/11px 'Tahoma','Arial','Sans-Serif';
	width: 95px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.Calendar ul.Events li {
	position: relative;
	list-style: none;
	list-style-image: none;
}

.Calendar ul.Events li div.CalPop {
	position: absolute;
	right: -100px;
	width: 100px;
	padding: 2px;
	border: 1px solid #000;
	background: #fff;
	z-index: 1000;
	display: none;
	color: #000000;
}

.Calendar ul.Events li.Col_CCS a, .Calendar ul.Events li.Col_CCS a:hover {
	color: #000;
}
.Calendar ul.Events li.Col_HS a, .Calendar ul.Events li.Col_HS a:hover {
	color: #063;
}
.Calendar ul.Events li.Col_CCC a, .Calendar ul.Events li.Col_CCC a:hover {
	color: #9a1937;
}
.Calendar ul.Events li.Col_SE a, .Calendar ul.Events li.Col_SE a:hover {
	color: #963;
}
.Calendar ul.Events li.Col_GPUUE a, .Calendar ul.Events li.Col_GPUUE a:hover {
	color: #963;
}
.Calendar caption {
	font: bold 18px/22px 'Tahoma','Arial','Sans-Serif';
}
.Calendar .Today {
	border: 1px solid #FF6633;
}
.Calendar .Selected {
}
.Calendar .HasEvent {
	text-align: left;
}
.Calendar .HasEvent a {
	color: #000;
}
.Calendar .HasEvent a:hover {
	/*color: #fff;*/
}
.Calendar .Prev {
	border: none;
	text-align: left;
}
.Calendar .Next {
	border: none;
	text-align: right;
}
.Calendar .NoDate {
	background: #ccc;
}
.Calendar .Prev a, .Calendar .Next a {
	color: #FF6633;
}
.Calendar .Prev a:hover, .Calendar .Next a:hover {
	color: #ff3300;
}

/* Photo Gallery --------------------------------------------*/
.AdoptAPet {
	background: #f3e7d7;
}

.PHG_PhotoContainer {
	overflow: auto;
	padding: 10px;
}

.PHG_PhotoContainer h3 {
	color: #FFFFFF;
	font-size: 17px;
	line-height: 19px;
	font-weight: bold;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 0px 0px;
}

.PHG_PhotoContainer .ToolBox {
	float: left;
	display: block;
}

.PHG_PhotoContainer .ToolBox .Top .TopSlice {
	width: 180px;
	height: 6px;
	font-size: 1px;
	line-height: 1px;
	background: url('/img/v1/toolbox.top.topslice.gif') center bottom no-repeat;
}

.PHG_PhotoContainer .ToolBox .Top .Title {
	background: #ae793f url('/img/v1/toolbox.top.body.gif') center repeat-y;
	width: 180px;
}

.PHG_PhotoContainer .ToolBox .Top .Title .Content {
	background: #ae793f url('/img/v1/toolbox.top.inner.bg.gif') top center no-repeat;
	width: 178px;
	min-height: 16px;
	height: auto !important;
	height: 26px;
	margin: 0px 0px 0px 2px;
}

.PHG_PhotoContainer .ToolBox .Top .BottomSlice {
	width: 180px;
	height: 5px;
	font-size: 1px;
	line-height: 1px;
	background: #9e7343 url('/img/v1/toolbox.top.bottomslice.gif') center top no-repeat;
}

.PHG_PhotoContainer .ToolBox .Body {
	background: #9e7343 url('/img/v1/toolbox.body.gif') center repeat-y;
}

.PHG_PhotoContainer .ToolBox .Body .Content {
	width: 180px;
	height:auto !important;
	min-height:160px;
	background: #996633;
	color: #FFFFFF;
	padding: 10px 0px;
	font-weight: bold;
	text-align: center;
	background: #996633 url('/img/v1/toolbox.body.inner.bg.gif') top center no-repeat;
}

.PHG_PhotoContainer .ToolBox .Bottom {
	width: 180px;
	height: 11px;
	font-size: 1px;
	line-height: 1px;
	background: #9e7343 url('/img/v1/toolbox.bottom.gif') center bottom no-repeat;
}

.PHG_PhotoContainer h3 {
	font-size: 13px;
	line-height: 15px;
	padding: 2px 10px 2px 10px;
	text-align: center;
}

.PHG_PhotoContainer .PHG_Content .PHG_Photo img {
	border: 2px solid #cfad79;
}

.PHG_PhotoContainer a {
	outline: none;
}

.PHG_PhotoContainer a span {
	display: none;
}

.PHG_PhotoContainer .PHG_Details {
	text-align: center;
	margin-left: 230px;
	padding-top: 40px;
	width: 400px;
	font: bold 14px/16px 'Arial';
	color: #79410F;
}

.PHG_PhotoGallery {
	width: 644px;
	margin: 10px auto;
}

.PHG_PhotoGallery .PHG_Header {
	background: url('../../img/v1/bg.photo_gallery_header.gif') no-repeat;
	height: 44px;
}

.PHG_PhotoGallery .PHG_Header span {
	display: none;
}

.PHG_PhotoGallery .PHG_Content {
	background: #996633;
	padding: 10px 0px 10px 10px;
}

.PHG_PhotoGallery .PHG_Content .PHG_AlbumSelect {
	background: url('../../img/v1/bg.photo_gallery_album_select.gif') no-repeat;
	height: 30px;
	padding-left: 10px;
	font: bold 14px/30px 'Arial';
	border-bottom: 3px solid #996633;
	color: #996633;
	cursor: pointer;
}

.PHG_PhotoGallery .PHG_Content .PHG_AlbumOptions {
	width: 268px;
	position: absolute;
		top: 30px;
		z-index: 100;
	background: #FFFFFF;
	border: 2px solid #774315;
	display: none;
}

.PHG_PhotoGallery .PHG_Content .PHG_AlbumOption {
	font: bold 14px/16px 'Arial';
	padding: 5px;
}

.PHG_PhotoGallery .PHG_Content .PHG_AlbumOption a {
	color: #996633;
	text-decoration: none;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn {
	width: 270px;
	background: #FFFFFF;
	position: relative;
	float: left;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList {
	height: 350px;
	margin-bottom: 10px;
	overflow: hidden;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList hr {
	width: 90%;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList .PHG_Album {
	padding: 10px;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList .PHG_Album .PHG_Title {
	font: bold 14px/16px 'Arial';
	color: #996633
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList .PHG_Album .PHG_Date {
	font: normal 12px/14px 'Arial';
	color: #996633
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumList .PHG_Album .PHG_Description {
	font: bold 10px/12px 'Arial';
	color: #996633
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumItemList {
	height: 350px;
	margin-bottom: 10px;
	overflow: hidden;
	display: none;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavUp, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavDown,
.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemUp, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemDown {
	background: url('../../img/v1/bg.photo_gallery_nav_arrows.gif') no-repeat;
	width: 270px;
	height: 24px;
	display: block;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavUp span, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavDown span,
.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemUp span, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemDown span {
	display: none;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavUp, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemUp {
	border-top: 3px solid #996633;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavDown, .PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_NavItemDown {
	background-position: 0px -24px;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumItem {
	width: 80px;
	height: 108px;
	float: left;
	display: inline;
	margin: 5px 0px 0px 7px;
	text-align: center;
}

.PHG_PhotoGallery .PHG_Content .PHG_LeftColumn .PHG_AlbumItem a {
	outline: none;
}

.PHG_PhotoGallery .PHG_Content .PHG_RightColumn {
	margin-left: 280px;
}

.PHG_PhotoGallery .PHG_Content .PHG_RightColumn .PHG_Viewer {
	text-align: center;
}

.PHG_PhotoGallery .PHG_Content .PHG_RightColumn .PHG_Viewer .PHG_Caption {
	color: #FFFFFF;
	margin: 10px;
	text-align: left;
}

.PHG_PhotoGallery .PHG_Content .PHG_RightColumn .PHG_Viewer img {
	border: 3px solid #d1b07c;
}

.PHG_PhotoGallery .PHG_Footer {
	background: url('../../img/v1/bg.photo_gallery_footer.gif') no-repeat;
	height: 9px;
	line-height: 9px;
}

.PHG_PhotoGallery .PHG_Controls {
	background: #FFFFFF;
	margin: 0px 10px 10px 0px;
	padding: 0px 5px;
	display: none;
}

.PHG_PhotoGallery .PHG_Controls a {
	font: bold 14px/30px Arial;
	color: #996633;
	text-decoration: none;
}

.PHG_PhotoGallery .PHG_Controls .PHG_PlayPause {
	background: url('../../img/v1/bg.photo_gallery_buttons.gif') no-repeat;
	width: 30px;
	height: 30px;
	display: block;
	float: right;
	background-position: -30px 0px;
}

.PHG_PhotoGallery .PHG_Controls .PHG_Paused {
	background-position: 0px 0px;
}

.PHG_PhotoGallery .PHG_Controls .PHG_PlayPause span {
	display: none;
}

.PET_List .PET_Pet {
	width: 250px;
	margin: 5px;
	float: left;
	display: inline;
}

.PET_List .PET_Pet .PET_Image {
	text-align: center;
}
/*-----------------------------------------------------------*/
