/* ------------------------------------------------------------

  	* YA Center
  	* Coded by Bruce Clark of Imulus

  	screen.css
  	- Site wide style, layout, and function

------------------------------------------------------------ */

/* =Initial Page Structure 
	(further specific styling for these sections is lower down, use =Section to quick find)
------------------------------------------------------------ */

* { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	list-style: none;
}

html {
	font: 10pt/1.5 Georgia, "Times New Roman", Times, serif;
	color: #000;
	background: #fff;
}

body { 
	position: relative;
}

#header {
	position: relative;
	border-bottom: 1pt solid #ccc;
}


#content { 
	clear: both;
	position: relative;
}

#footer { 
	clear: both;
	position: relative;
	border-top: 1pt  solid #ccc;
	padding: 10px 20px;
}



/* =Basic Element Styles 
------------------------------------------------------------ */ 

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	padding-bottom: 5px;
}

h1 { 
	font-size: 20px;
	color: #235d75;
}

h2 { 
	font-size: 17px;
	color: #126b00;
}

h3, h4, h5, h6 { 
	font-size: 15px;
}

h3 { 
	color: #555;
}

p {
	padding-bottom: 15px;
}


input,
textarea { 
	font: 11px Verdana, sans-serif;
	padding: 2px;
	border: 1pt solid #999;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #fff url(/images/layout/form-bg.gif) repeat-x left top;
}

select { 
	font: 11px Verdana, sans-serif;
	padding: 0;
	border: 1pt solid #999 !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

input[type="image"],
input.submit { 
	border: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	width: auto !important;
	height: auto !important;
}

sup {
	vertical-align: top;
}

sub {
	vertical-align: bottom;
}

img,
a img { 
	border: 0;
	vertical-align: middle;
} 

a { 
	color: #81a07a;
	text-decoration: underline;
}

a:visited { 
	color: #4F76A0;
}

a:hover { 
	color: #457A80;
	text-decoration: none;
}

	/* =Main Content Basic Element Styles 
------------------------------------------------------------ */

.sub #main ul {
	padding: 0 0 15px 0;
}

.sub #main ul li {
	padding: 0 0 5px 20px;
	background: url(/images/icons/bullet.gif) no-repeat 8px 6px;
}

.sub #main ol {
	padding: 0 0 15px 25px;
}

.sub #main ol li {
	list-style: decimal;
	padding: 0 0 5px 0;
}

.sub #main blockquote {
	padding: 0 0 0 15px;
}

.sub #main table {
	margin: 0 0 15px 0;
	background: #C8DBE3;
	border-collapse: collapse;
	border: 1pt solid #516E87;
}

.sub #main table tr th {
	color: #fff;
	background: #73A2B4;
}

.sub #main table tr th,
.sub #main table tr td {
	padding: 5px 10px;
	border: 1pt solid #516E87;
}

.sub #main table tr.even td {
	background: #D1E6F1;
}

/* =Utilities 
------------------------------------------------------------ */ 

.left { 
	float: left;
	position: relative;
	margin: 0 10px 5px 0;
}

.right { 
	float: right;
	position: relative;
	margin: 0 0 5px 10px;
}

.spacer {
	margin-top: 10px;
}

.clear {
	clear: both;
}

.clear-left { 
	clear: left;
}

.clear-right { 
	clear: right;
}

.clear-none { 
	clear: none;
}

.center { 
	text-align: center;
}

.autoclear:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden; 
}

.autoclear { 
	display: inline-block;
}

.autoclear { 
	display: block;
}

/* =Forms
------------------------------------------------------------ */ 

.forms p { 
	position: relative;
	float: left;
	clear: left;
	padding: 0 0 5px 140px;
	width: 570px;
}
	
.forms p label.name { 
	position: relative;
	float: left;
	width: 130px;
	padding-right: 10px;
	margin-left: -140px;
	text-align: right;
	color: #3E6589;
}	

.forms span.error { 
	display: block;
	position: absolute;
	right: 0;
	width: 240px;
	color: #999;
	font-size: .9em;
	background: #eee;
	padding: 3px 5px 4px 5px;
	border: 1pt solid #ccc;
	line-height: 1em;
}

.forms p input, 
.forms p select { 
	font: 1em Arial, Helvetica, Sans-serif;
	padding: 2px;
	width: 250px;
	border: 1pt solid #999;
	margin-bottom: 5px;
	color: #666;
	background: #fff url(/images/layout/form-bg.gif) no-repeat left top;
}

.forms p input:focus { 
	background: #eee;
}

.forms p input.small { 
	width: 70px;
}

.forms p input.medium { 
	width: 130px;
}

.forms p input.large { 
	width: 300px;
}

.forms p input.submit { 
	border: 0;
	background: transparent;
	width: auto;
	height: auto;
	padding: 0;
}

.forms p input.submit:focus { 
	background: transparent;
}

.forms p input.submit:focus { 
	background: transparent;
}

.forms p textarea { 
	background: #fff url(/images/layout/form-bg.gif) no-repeat left top;
	font: 1em Arial, Helvetica, Sans-serif;
	border: 1pt solid #999;
	width: 300px;
	padding: 2px;
	margin-bottom: 5px;
}

.forms p textarea:focus { 
	background: #eee;
}

.forms p textarea.short { 
	height: 70px;
}

.forms p textarea.tall { 
	height: 180px;
}

.forms p span.radcheck { }

.forms p span.radcheck input { 
	border: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
	margin: -5px 2px 0 0;
}

.forms p select { 
	border: 1pt solid #ccc;
	font: 1em Arial, Helvetica, Sans-serif;
	width: 306px;
}

/* =Layout and Function 
------------------------------------------------------------ */ 

	/* =Header 
------------------------------------------------------------ */ 

#header strong {
	display: block;
	position: relative;
	font-size: 25px;
	padding: 10px 20px;
	font-family: arial, helvetica, sans-serif;
}

#header strong a {
	color: #000;
	text-decoration: none;
}

#header #nav {
	padding: 10px 20px;
	border-top: 1pt solid #ccc;
}

#header #nav li {
	display: inline;
	padding-right: 10px;
}

#header #nav li a, 
#header #sub-nav li a {
	text-decoration: none;
	color: #777;
}

#header #sub-nav {
	padding: 10px 20px 5px 20px;
	border-top: 1pt solid #ccc;
	overflow: auto;
}

#header #sub-nav li {
	float: left;
	padding-right: 30px;
	padding-bottom: 10px;
}

#header #sub-nav ul {
	display: none;
}

#header #search {
	display: none;
}


	/* =Content
------------------------------------------------------------ */	

.sub #content .heading-image {
	display: none;
}

			/* =Main
------------------------------------------------------------ */

.sub #content #main {
	float: left;
	width: 59%;
	padding: 10px 2.5%;
}

			/* =Sidebar (banners and panels)
------------------------------------------------------------ */

.sub #content #sidebar {
	float: right;
	width: 30%;
	position: relative;
	padding: 10px 2.4%;
	overflow: hidden;
}

		/* =Contact Subpage
------------------------------------------------------------ */

#contact #main .forms {
	margin: 10px -37px 0 -17px;
	padding: 15px 30px 0 18px;
	border-top: 1pt  dashed #9eaebf;
}

#contact #sidebar .box img {
	margin-top: 3px;
	border: 1pt solid #849996;
}

		/* =Events Subpage
------------------------------------------------------------ */

#main .formats {
	position: absolute;
	right: 47px;
	top: 25px;
}

#main .formats a {
	padding-left: 12px;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #4f81c6;
}

#main .formats a img {
	margin-top: -3px;
}

#main ul.events {
	margin: 0 -37px 0 -17px;
}

#main ul.events li {
	border-top: 1pt  dashed #9EAEBF;
	background: transparent;
	padding: 12px 30px 12px 15px;
}

#main ul.events li strong {
	color: #2A5599;
	font-weight: normal;
}

#main ul.events li span {
	color: #8d5300;
	font-weight: bold;
	padding-right: 5px;
}

#main ul.events li em {
	padding-right: 5px;
	font-style: normal;
	font-weight: bold;
	color: #333;
}

#main ul.events li a:hover {
	color: #24548D;
}

		/* =News Subpage
------------------------------------------------------------ */

.sub.news #content #main ul.news-list {
	position: relative;
	padding: 0;
	border-top: 1pt  dashed #9EAEBF;
	margin: 0 -37px 15px -17px;
}

.sub.news #content #main ul.news-list li {
	list-style: none;
	padding: 10px 10px 10px 130px;
	background: transparent;
	border-bottom: 1px dashed #9EAEBF;
}

.sub.news #content #main ul.news-list li.last {}

.sub.news #content #main ul.news-list li a strong { 
	color: #222;
}

.sub.news #content #main ul.news-list li a:hover { 
	text-decoration: none;
}

.sub.news #content #main ul.news-list li em { 
	display: block;
	float: left;
	width: 105px;
	font-size: 11px;
	padding-top: 1pt ;
	padding-left: 10px;
	text-align: left;
	color: #555;
	margin-left: -120px;
	font-weight: normal;
	font-style: italic;
}

		/* =Photo Gallery
------------------------------------------------------------ */

#gallery #showcase { 
	position: relative;
	padding: 0 0 15px 0;
}

#gallery #showcase strong { 
	position: absolute;
	display: block;
	z-index: 1;
	width: 28px;
	height: 38px;
	text-indent: -9999px;
	top: 165px;
	left: -12px;
}

#gallery #showcase strong#next { 
	left: auto;
	right: -31px;
}

#gallery #showcase strong a { 
	display: block;
	width: 100%;
	height: 100%;
	background: url(/images/icons/left-arrow.gif) no-repeat left top;
}

#gallery #showcase strong#next a { 
	background: url(/images/icons/right-arrow.gif) no-repeat left top;
}

#gallery #showcase div#pager { 
	float: right;
	padding-bottom: 10px;
}

#gallery #showcase div#pager a { 
	float: left;
	margin-left: 7px;
	display: block;
	width: 14px;
	height: 14px;
	text-indent: -9999px;
	background: url(/images/icons/inactive-dot.gif) no-repeat 0 0;
}

#gallery #showcase div#pager a.activeSlide { 
	background: url(/images/icons/active-dot.gif) no-repeat 0 0;
}

#gallery #showcase div#pager a:hover { 
	background: url(/images/icons/active-dot.gif) no-repeat 0 0;
}

#gallery #showcase .internal-gallery-holder { 
	clear: both;
	position: relative;
	width: 820px;
	height: 320px;
	margin: 0 0 0 5px;
	background: #f4f9fb;
	border: 1pt solid #c5c5c5;
	padding: 0;
}

#gallery #showcase .internal-gallery {
	position: relative;
	width: 796px;
	margin: 0 auto;
	height: 320px;
}

#gallery #showcase .internal-gallery div { 
	float: left;
	width: 796px;
	margin-top: 15px;
	height: 300px;
}

#gallery #showcase .internal-gallery a { 
	float: left;
	display: block;
	width: 175px;
	height: 130px;
	padding: 8px 0 0 8px;
	margin: 0 0 13px 13px;
	background: url(/images/layout/content/image-bg.gif) no-repeat left top;
}

#gallery #showcase .internal-gallery a span { 
	display: block;
	width: 170px;
	height: 125px;
	background-position: 50% 0;
}

#gallery #showcase .internal-gallery img { 
	display: none;
}

#gallery #zoom {
	z-index: 9000;
}

#gallery #zoom_content p /* this style is called in relation to fancyZoom jQuery */ { 
	font-size: 1em;
	padding: 10px 0 0 5px;
	margin: 0;
}

		/* =Search Results
------------------------------------------------------------ */

#results #paging { 
	border-top: 1pt  solid #879FAB;
	border-bottom: 1px solid #879FAB;
	padding: 7px 12px;
}

#results #main #paging p { 
	padding: 0;
	border: 0;
	margin: 0;
	width: auto;
}

#results #main #paging p a { 
	display: inline;
	margin: 0 2px;
	text-decoration: none;
	font-size: 12px;
	border: 1pt solid #ddd;
	padding: 2px 4px;
	background: #fff;
	color: #777;
}

#results #main #paging p a:hover, 
#results #main #paging p a.active { 
	background: #A1C5C1;
	color: #fff;
	border: 1pt solid #689696;
}

#results #main p { 
	padding: 10px 12px;
	border-bottom: 1px solid #ddd;
}

#results #main p a { 
	display: block;
	text-decoration: none;
}

#results #main p a:hover strong { 
	color: #333;
}

#results #main p strong { 
	display: block;
	font-weight: normal;
	font-size: 1.1em;
	color: #004c70;
	padding: 0 0 5px 0;
}

#results #main p i { 
	display: block;
	font-size: .9em;
	padding-top: 2px;
	font-family: arial, helvetica, sans-serif;
}

#results #main p i a { 
	color: #517D52;
}

#results #main p i a:hover { 
	color: #555;
}

#results #main p .result-highlight {
	color: #457FD6;
}

	/* =Footer
------------------------------------------------------------ */	

#footer p {	
	float: left;
}

#footer p.copy {	
	float: right;
	padding: 3px 0;
}

#footer p span {
	display: block;
	float: left;
	padding: 3px 16px 3px 0;
}

#footer p span.phone {	
	padding-left: 18px;
}

#footer p span.fax {	
	padding-left: 19px;
}

#footer a {	
	color: #777;
	text-decoration: none;
}

#footer a:hover {	
	color: #fff;
}

#footer ul {
	float: left;
	padding-bottom: 10px;
}

#footer ul li { 
	float: left;
	padding-right: 12px;
	margin-right: 12px;
	border-right: 1px solid #999;
	margin-bottom: 5px;
}

#footer ul li.last { 
	border: 0;
}
















