/* Start of CMSMS style sheet 'Homepage' */






/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Homepage Blocks
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

div#hpleft {
   width: 446px;
   float: left;
}

div#hpright {
   width: 220px;
   float: right;
   margin-bottom: 1em;
}

div#contentblock {
   margin-top: 1.5em;
}

div#contentblock h1 {
   font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
   font-size: 1.3em;
   color: #9B3D04;
   background-color: #FFF;
   padding: 0 1em 0.3em 0;
   float: left;
}

div#UpcomingEvents {
   border-bottom: 5px solid #AC5F12;
   margin-bottom: 9px;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Side Bar
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#sidebar {
   float: right;
   width: 185px;
   /*display: inline;  /* FIX ie doublemargin bug */
   display: block;
   margin: 0;
}

div#sidebar h1 {
   font-size: 1.2em;
   padding: 0.5em 5px;
}

div#sidebar p {
   font-size: 1em;
   padding: 0.2em 5px;
   margin: 0;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Homepage Community News
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#ChamberMessage, div#NewsBlock, div#BusinessSpotlight {
   padding: 0;
   border-bottom: 5px solid #FFF;
   margin-top: 9px;
}

div#ChamberMessage {
   border-bottom-color: #899107;
   background-color: #EDEED9;
}

div#NewsBlock {
   border-bottom-color: #173B78;
}

div#BusinessSpotlight {
   border-bottom-color: #649337;
}

div#BusinessSpotlightPhoto {
   margin: 9px 0;
   border-top: 5px solid #649337;
   padding-top: 9px;
}

div#BusinessSpotlightPhoto * {
   margin: 0;
   padding: 0;
}

div#ChamberMessage {
   /*font-family: Georgia, "Times New Roman", Times, serif;
   font-size: 1.4em;
   line-height: 130%;
   padding: 0;
   margin: 0.5em 0.3em;
   color: #595E00;
   font-style: italic;*/
}

div#HomepageNewsTopStory {
   margin: 0;
   padding: 1em 0;
   width: 100%;
}

div#HomepageNewsTopStory h1 {
   font-size: 2em;
}

div#HomepageNewsTopStory p {
   font-size: 1.2em;
   margin: 0;
   padding: 0;
   color: #000;
}

div#HomepageNewsSummary {
   margin: 0;
   padding: 0.3em 0;
   clear: both;
}

div#HomepageNewsSummary h1 {
   font-size: 1em;
   margin: 0.8em 0;
}




/* End of 'Homepage' */

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'CSS: Menu' */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Horizontal menu for the CMS CSS Menu Module
 * by Alexander Endresen
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Framework, Default, and Core Styles
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#menuContainer * {
   margin: 0;
   padding: 0;
   font-family: "Lucida Sans Unicode", Verdana, Arial;
   font-size: 12px;
   font-weight: bold;
   text-decoration: none;
}

div#menuContainer {
   width: 100%;
   position: relative;
   background: url('images/cms/menu-bg.gif') repeat-x 10% 0;
}

div#menuMask {
   width: 50%;
   height: 26px;
   position: absolute;
   left: 0;
   background-color: #FFF;
}

div#menuwrapper {
   width: 880px;
   margin: 0 auto;
   height: 26px;
   position: relative;
}

ul#primary-nav {
   width: 695px;
   background-color: #FFF;
}


/* * * * * * * * * * * * * * * * * * * * * * *
 * First and Second Level
 * * * * * * * * * * * * * * * * * * * * * * */


ul#primary-nav, ul#primary-nav ul {
   position: absolute;
   list-style: none; 
}

ul#primary-nav ul {
   top: 26px;
   left: 0px;
   width: 659px;
   padding: 8px;
   border-bottom: 4px solid #9B3D04;
   display: none;
   background: url("/content/images/cms/menu-bg.jpg") bottom center;
   background-color: #E7EBEE;
}

ul#primary-nav a { 
   display: block; 
   padding-right: 20px;
   line-height: 26px;
   color: #656A6A;
}

ul#primary-nav li {
   margin-left: -1px;
   float: left; 
}

#primary-nav li a:hover,
#primary-nav li:hover a, 
#primary-nav li.menuh a, 
#primary-nav li.menuparenth a, 
#primary-nav li.menuactiveh a { 
   color: #9B3D04;
}

#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}


/* * * * * * * * * * * * * * * * * * * * * * *
 * Second Level Only
 * * * * * * * * * * * * * * * * * * * * * * */


ul#primary-nav li li { 
   width: 220px; 
   float: left;
}

ul#primary-nav li li a { 
   padding: 0 10px;
   color: #9B3D04;
}

ul#primary-nav li li a:hover {
   color: #000;
}


/* * * * * * * * * * * * * * * * * * * * * * *
 * Hacks
 * * * * * * * * * * * * * * * * * * * * * * */

/* IE Hacks */
ul#primary-nav li li { 
   float: left; 
}

ul#primary-nav li li a { 
   height: 1%; 
}

/* Fix for Opera 8 */
.clearb {
   clear: both;
}
/* End of 'CSS: Menu' */

/* Start of CMSMS style sheet 'Module: News' */
/* * * * * * * * * * * * * * * * * * * * *
 * NEWS: Detail
 * * * * * * * * * * * * * * * * * * * * */


div#newsDetail h5 {
   font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
   font-size: 1.7em;
   font-weight: bold;
   line-height: normal;
   color: #FFF;
   padding: 35px 325px 5px 0.5em;
   background: url(images/cms/page-title.jpg) no-repeat bottom;
   margin-bottom: 0.5em;
}

div#newsDetail div#summary {
   margin: 1em;
   padding: 0.3em;
   background-color: #DDD;
}

div#newsDetail div#summary p {
   color: #000;
}

div#newsDetail h2 {
   padding: 1em 0 0.5em 0.5em;
   margin: 0;
   color: #000;
   font-size: 1.5em;
}

div#newsDetail p {
   margin: 0;
   padding: 0.5em 0 0.5em 0.5em;
   color: #444;
}

div#newsDetail p.postInfo {
   font-style: italic;
   padding: 0 2em;
   font-size: 80%;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Lists
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#newsDetail ul, div#newsDetail ol, div#newsDetail dl {
   font-size: 1.2em;
   line-height: 1.4em;
   margin: 0.5em 0;
   color: #444;
}

div#newsDetail ul li, div#newsDetail ol li {
   margin: 0.2em 0 0.2em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}

div#newsDetail blockquote {
   font-size: 1.2em;
   line-height: 1.4em;
   margin: 1em 3em;
   color: #444;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * NEWS: Icons
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#ButtonWrapper {
   margin: 0 0.5em;
}

div#ButtonWrapper div {
   margin: 0;
   float: left;
}

div#ButtonWrapper a {
   margin: 5px;
   display: block;
   height: 22px;
   text-indent: -999em;
}

div#printButton a {
   background: url(images/cms/print-button.gif) no-repeat;
   width: 66px;
}

div#returnButton a {
   background: url(images/cms/return-button.gif) no-repeat;
   width: 78px;
}

.moreMiniButton a {
   background: url(images/cms/more-mini-button.gif) no-repeat;
   height: 13px;
   width: 43px;
   display: block;
   text-indent: -999em;
}






div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}





.NewsSummary {
    /*padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    /*margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    /*border-bottom: 1px solid #ccc; */
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/

/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Secondary Pages' */

/*
 * Images in Text
 */

img.TopRightImage {
   float: right;
   margin: 0 0 0 1em;
   position: relative;
   top: -1em;
   z-index: 1;
}

.img_left {
	margin-left: 0px;
	margin-top: 2px;
	margin-right: 10px;
	margin-bottom: 2px;
}

.img_right {
	margin-left: 10px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
}
/* End of 'Secondary Pages' */

/* Start of CMSMS style sheet 'CSS: Banners' */
/* * * * * * * * * * * * * * * * * * * * * * * * * *
 * BANNERS
 * * * * * * * * * * * * * * * * * * * * * * * * * */


div#banner {
   width: auto;
   margin: 2em 0;
   padding: 0 3px 0 2px;
}

div#banner p {
   font-family: Arial. Helvetica, sans-serif;
   font-size: 0.7em;
   text-transform: uppercase;
   letter-spacing: 0.5em;
   color: #888;
   text-align: center;
   line-height: normal;
}
/* End of 'CSS: Banners' */

/* Start of CMSMS style sheet 'Expandable Boxes' */
/* * * * * * * * * * * * * * * * * * * * * * * * * *
 * EXPANDABLE BOXES
 * * * * * * * * * * * * * * * * * * * * * * * * * */


div.button {
   margin-bottom: 2px;
}

div.expandableOpen {
   height: auto;
   overflow: visible;
   margin-bottom: 2px;
   padding: 0 0 5px 0;
}

div.expandableOpen img.collapse {
   visibility: visible;
   display: inline;
}

div.expandableOpen img.expand {
   visibility: hidden;
   display: none;
}

div.expandableClosed {
   height: 36px;
   overflow: hidden;
   margin-bottom: 2px;
   padding: 0;
}

div.expandableClosed img.expand {
   visibility: visible;
   display: inline;
}

div.expandableClosed img.collapse {
   visibility: hidden;
   display: none;
}

div.expandableOpen div#frame, div.expandableClosed div#frame {
   margin: 0 5px;
   border: 1px solid #000;
   background-color: #FFF;
}

div#exbusinessdir {
   background: url(images/cms/expandable/business-dir-bg.jpg) no-repeat;
}

div#exbusinessdir form {
   margin: 0 5px;
}

div#exbusinessdir form input {
   border: 1px solid #789859;
   background-color: #FFF;
   font-size: 11px;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   color: #789859;
   margin: 0;
   width: 132px;
   padding: 4px;
}

div#exbusinessdir form input.button {
   background-color: #789859;
   border: none;
   color: #FFF;
   width: auto;
   font-weight: bold;
   width: 33px;
}

div#ListAlphaWrapper {
   margin: 0 0 0 5px;
   padding: 0;
}

div#ListAlpha {
   margin: 1px;
   float: left;
   text-align: center;
   font-size: 10px;
}

div#ListAlpha a {
   display: block;
   width: 14px;
   padding: 1px;
   background-color: #F7F5C5;
}

div#ListAlpha a:hover {
   background-color: #EFE949;
}

div#exbusinessdir div#frame {
   border-color: #789859;
   margin-top: 5px;
}

div#exnews {
   background: url(images/cms/expandable/news-bg.jpg) no-repeat;

}


div#exnews h1 a{
   
font-size: 13px;
}



div#exnews div#frame {
   border-color: #173B78;
}

div#excalendar {
   background: url(images/cms/expandable/calendar-bg.jpg) no-repeat;
}

div#excalendar div#frame {
   border-color: #9A4E0B;
}

/*div#exjobs {
   background: url(images/cms/expandable/job-listings-bg.jpg) no-repeat;
}

div#exjobs div#frame {
   border-color: #A98329;
}

div#exhotdeals {
   background: url(images/cms/expandable/hot-deals-bg.jpg) no-repeat;
}

div#exhotdeals div#frame {
   border-color: #A91E1E;
}*/
/* End of 'Expandable Boxes' */

/* Start of CMSMS style sheet 'CSS: Sitewide' */
/* * * * * * * * * * * * * * * * * * * * *
 * Body
 * * * * * * * * * * * * * * * * * * * * */


* {
   margin: 0;
   padding: 0;
}

body {
   background: #FFF url("/content/images/cms/bg-page.png") repeat-x;
   color: #000;
   font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 75.01%;
}

img {
   border: 0;
}


/* * * * * * * * * * * * * * * * * * * * *
 * Default Headings
 * * * * * * * * * * * * * * * * * * * * */


h5 {
   font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
   font-size: 1.7em;
   font-weight: bold;
   line-height: normal;
   color: #FFF;
   padding: 35px 325px 5px 10px;
   background: url("/content/images/cms/page-title.jpg") no-repeat bottom;
   margin-bottom: 0.5em;
}

h2 {
   font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
   font-size: 1.7em;
   font-weight: bold;
   color: #9B3D04;
   padding: 1em 0 1em 10px;
   margin: 0;
}

h3 {
   padding: 0.5em 0 0.5em 10px;
   margin: 0;
   color: #000000;
   font-size: 1.2em;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Default Text and Lists
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

p {
   font-size: 1.2em;
   padding: 0.5em 0 0.5em 10px;
   color: #444;
   line-height: 1.4em;
}

ul, ol, dl {
   font-size: 1.2em;
   line-height: 1.4em;
   margin: 0.5em 0;
   color: #444;
}

ul li, ol li {
   margin: 0.2em 0 0.2em 3em;
}

blockquote {
   font-size: 1.2em;
   line-height: 1.4em;
   margin: 1em 3em;
   color: #444;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Default Link Styles
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


a, a:link, a:active, a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #9B3D04; 
}

a:hover {
   text-decoration: none;
   background-color: inherit;
   color: red;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Sub Menu Link Styles
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


.subMenuLinks {
   text-transform: uppercase;
   font-size: 0.8em;
   text-align: right;
}

.subMenuLinks a, .subMenuLinks a:link, .subMenuLinks a:active, .subMenuLinks a:visited {
   padding-left: 1.8em;
   text-decoration: none;
   color: #6F6F6F;
   font-weight: bold;
}

.subMenuLinks a:hover {
   color: red;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * HEADER: Framework
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#headerWrapper {
   min-width: 900px;
   background-color: #FFF;
   position: relative;
   z-index: 10;
}

div#headerCell1 {
   position: relative;
   line-height: 22px;
   width: 100%;
   height: 22px;
}

div#headerCell2 {
   position: absolute;
   width: 100%;
}

div#headerCell3 {
   background: url("/content/images/cms/bg-header.gif");
   height: 83px;
   clear: both;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * HEADER: Sub Menu
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#headerSubMenu {
   position: absolute;
   right: 0px;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * HEADER: Search
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#headerSearchWrapper {
   width: 890px;
   margin: 0 auto;
}

div#headerSearch {
   float: right;
   margin-right: 185px;
   border: 6px solid #fff;
   background: #fff;
   color: #888;
   display: inline;
}

div#headerSearch input {
   border: 1px solid #888;
   background-color: #FFF;
   font-size: 11px;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   color: #888;
   width: 20em;
   padding: 4px;
}

div#headerSearch input.button {
   background-color: #888;
   border: none;
   color: #FFF;
   width: auto;
   font-weight: bold;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * CONTENT: Framework
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#contentWrapper {
   margin: 0 auto;
   width: 880px;
   background-color: #fff;
   color: black;
   border-right: 10px solid #fff;
   border-left: 10px solid #fff;
   position: relative;
   z-index: 5;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * CONTENT: Main column
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#main {
   width: 675px;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * FOOTER: Framework
 * * * * * * * * * * * * * * * * * * * * * * * * * * */


div#footer {
   padding-top: 1em;
   margin-top: 1em;
   border-top: 5px solid #CCC;
   text-align: right;
   clear: both;
   line-height: 2em;
}
/* End of 'CSS: Sitewide' */

