/**
 * The CSS for Shadowbox.
 *
 * This file is part of Shadowbox.
 *
 * Shadowbox is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 *
 * Shadowbox is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
 * more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Shadowbox.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @author      Michael J. I. Jackson <mjijackson@gmail.com>
 * @copyright   2007 Michael J. I. Jackson
 * @license     http://www.gnu.org/licenses/lgpl-3.0.txt GNU LGPL 3.0
 * @version     SVN: $Id: shadowbox.js 150 2007-12-04 18:42:03Z michael $
 */

/*_________________________________________________________________  Overlay  */
#shadowbox_overlay {
  visibility: hidden;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 998;
}

/*_______________________________________________________________  Container  */
#shadowbox_container {
  position: fixed;
  height: 0px;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: center; /* centers in quirks and IE */
}

/*_______________________________________________________________  Shadowbox  */
#shadowbox {
  display: none;
  visibility: hidden;
  margin: 0 auto;
  position: relative;
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  text-align: left; /* reset left alignment */
}

/*___________________________________________________________________  Title  */
/*
HTML snapshot:
<div id="shadowbox_title">
  <div id="shadowbox_title_inner">Title Here</div>
</div>
*/
#shadowbox_title {
  height: 25px;
  padding: 0;
  overflow: hidden;
}
#shadowbox_title_inner {
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  white-space: nowrap;
  padding: 5px 0 4px 8px;
  color: #fff;
}

/*____________________________________________________________________  Body  */
/*
HTML snapsnot:
<div id="shadowbox_body">
  <div id="shadowbox_body_inner">
    <img src="my_image.jpg" id="shadowbox_content" height="350" width="580">
  </div>
  <div id="shadowbox_loading">
    <img src="images/loading.gif" alt="loading"></div>
    <span><a href="javascript:Shadowbox.close();">Cancel</a></span>
  </div>
</div>
*/
#shadowbox_body {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid #fff;
  background-color: #000;
}
#shadowbox_body_inner {
  position: relative;
  overflow: hidden;
}
#shadowbox_loading {
  position: absolute;
  top: 0;
  left: 0;
  height: 10000px; /* overflow:hidden will clip this */
  width: 100%;
  background-color: #222;
}
#shadowbox_loading img {
  float: left;
  margin: 10px 10px 0 10px;
}
#shadowbox_loading span {
  float: left;
  margin-top: 16px;
  font-size: 10px;
}
#shadowbox_loading span a,
#shadowbox_loading span a:link,
#shadowbox_loading span a:visited {
  color: #fff;
}

#shadowbox_content.html { /* make html content scrollable */
  height: 100%;
  width: 100%;
  overflow: auto;
}

/*_________________________________________________________________  Toolbar  */
/*
HTML snapshot:
<div id="shadowbox_toolbar">
  <div id="shadowbox_toolbar_inner">
    <div id="shadowbox_nav_close">
      <a href="javascript:Shadowbox.close();"><span class="shortcut">C</span>lose</a>
    </div>
    <div id="shadowbox_nav_next">
      <a href="javascript:Shadowbox.next();"><span class="shortcut">N</span>ext</a>
    </div>
    <div id="shadowbox_nav_previous">
      <a href="javascript:Shadowbox.previous();"><span class="shortcut">P</span>revious</a>
    </div>
    <div id="shadowbox_counter">
      <a href="javascript:Shadowbox.change(0);">1</a>
      <a href="javascript:Shadowbox.change(1);" class="shadowbox_counter_current">2</a>
      <a href="javascript:Shadowbox.change(2);">3</a>
    </div>
  </div>
</div>
*/
#shadowbox_toolbar {
  margin: 0;
  padding: 0;
  height: 20px;
  overflow: hidden;
}
#shadowbox_toolbar_inner {
  height: 20px;
  color: #fff;
}
#shadowbox_toolbar_inner div {
  padding-top: 4px;
  padding-bottom: 2px;
  font-size: 10px;
  height: 10px;
  line-height: 10px;
}
#shadowbox_toolbar_inner div span.shortcut {
  text-decoration: underline;
  font-weight: bold;
}
#shadowbox_toolbar_inner div a {
  text-decoration: none;
  color: #fff;
}
#shadowbox_nav_close,
#shadowbox_nav_previous,
#shadowbox_nav_next {
  float: right;
  padding-right: 10px;
}
#shadowbox_counter {
  float: left;
  padding-left: 10px;
}
#shadowbox_counter a {
  padding: 0 4px 0 0;
}
#shadowbox_counter a.shadowbox_counter_current {
  text-decoration: underline;
  font-weight: bold;
}

/*________________________________________________________________  Messages  */
div.shadowbox_message {
  text-align: center;
  padding: 10px;
}
div.shadowbox_message a:link,
div.shadowbox_message a:visited {
  text-decoration: none;
  color: #bed333;
}
div.shadowbox_message a:hover,
div.shadowbox_message a:focus {
  text-decoration: underline;
}














/*  Hope point */
body
{
    margin:0px;
    padding:0px 0px 50px 0px;
    background-color: #40616a;
    font-family: Verdana, Tahoma, Arial, Sans-Serif;
    color: #d4dbdd;
    background-position: left top;
    background-image: url(/images/bodyBG.gif);
    background-repeat: repeat-x;
    font-size:9pt;
}

#pageContainer
{
    display:block;
    width:890px;
    margin-left:auto;
    margin-right:auto;
    background-color:#5c7980;
    position:relative;    
}

/*---------- Top Header ----------*/
#topHeader
{
    display:block;
    height:125px;
    width:100%;
}

#bigLogo span {display:none;}
#bigLogo
{margin:0px;padding:0px;}
.serviceTimeHeader {position:absolute;top:55px;left:460px;font-weight:bold;font-size:1.2em;color:#cec9b5;margin:0px;}
#siteSearch{width:290px;height:22px;text-align:right;position:absolute;top:50px;left:550px;}
.searchTextBox {margin-right:0px;border:1px solid #dee4e6;background-color:#a9b8bc;padding:3px 5px 0px 5px;color:#dee4e6;width:210px;height:18px;}
.searchButton{width:70px;padding-left:10px;}

/*---------- Big Box Header ----------*/

#masterMenu
{
    position:absolute;
    top:424px;
    left:30px;
    z-index:1;
    width:830px;
    height:40px;
}
.menuBar
{
    text-align:center;    
}
.menuItem
{
	z-index:100;
}
#masterMenu td
{
    text-align:left;
    padding:0px 0px;
    height:23px;
}
/*
.menuItemUnderline
{   border-bottom:1px solid #bbbfc0;
    border-left:1px solid #bbbfc0;
    border-right:1px solid #bbbfc0;
}
*/
body table td.menuItemUnderline a:link
{padding:0px 20px; font-size:.6em;}

.menuItem0,
.menuItem1,
.menuItem2,
.menuItem3,
.menuItem4,
.menuItem5,
.menuItem6
{padding: 0px 16px;}

#bigBoxHeader
{
    display:block;
    width:100%;
    height:350px;
    background-color:#45656d;    
}

#bigBox
{
    width:810px;
    height:281px;
    background-position: left top;
    background-image: url(/images/bigBoxBG.gif);
    background-repeat: no-repeat;
    background-color:#113039;
    margin:0px 30px 0px 30px;
    position:relative;
    top:0px;
    padding:10px;
}
#flashBox{margin:0px;float:left;}
#linkBox{width:205px;margin:0px;padding:0px;position:relative;left:10px;}
#linkBox span{display:none;}
#linkBox a.link-Adults
{
    display:block;
    width:205px;
    height:50px;
    background-position: left top;
    background-image: url(/images/link-Adults.jpg);
    background-repeat: no-repeat;
    padding:0px 0px 4px 0px;
}
#linkBox a.link-College
{
    display:block;
    width:206px;
    height:50px;
    background-position: left top;
    background-image: url(/images/link-College.jpg);
    background-repeat: no-repeat;
    padding:0px 0px 4px 0px;
}
#linkBox a.link-Youth
{
    display:block;
    width:205px;
    height:50px;
    background-position: left top;
    background-image: url(/images/link-Youth.jpg);
    background-repeat: no-repeat;
    padding:0px 0px 4px 0px;
}
#linkBox a.link-Children
{
    display:block;
    width:205px;
    height:50px;
    background-position: left top;
    background-image: url(/images/link-Children.jpg);
    background-repeat: no-repeat;
    padding:0px 0px 5px 0px;
}
.listenToWord{margin:0px;}

#menuBar
{
    display: block;
    width: 830px;
    height: 50px;
    position: absolute;
    left:30px;
    top:410px;
    z-index:10;
    background:#113039 url(/images/bigBoxBottomBG.gif) no-repeat left bottom;
}

#loginControl
{
	position:relative;
	top:145px;
	left:-30px;
	display:block;
	width:890px;
	height:20px;
	background-color:#113039;
	text-align:right;
}

#loginControl a
{
	color: #8ca0a5;
	font-size: 10px;
	font-weight:bold;
	text-decoration:none;
}
.contentEditLinks
{
    padding-right:10px;
    position:relative;
    top:2px;    
}

.contentEdit
{
 display:block;
 text-align:left;
 margin-top:20px;       
}

#loginLink span
{
    padding:0px 5px 0px 5px;
    border-right:1px solid #8ca0a5;  
}
.ceLogin, .csEditPageContent, .ceHideEditor {border-left:1px solid #8ca0a5;}
#loginLink span.cePageTitle {border-right:none;}
.contentTitleTxtBx {border:1px solid #d4dbdd;}

#bodyContent
{
    margin-top:30px;
    padding: 0px 30px 130px 30px;
    background-position: left bottom;
    background-image: url(/images/hands-footer.jpg);
    background-repeat: no-repeat;
    position:relative;
}
#leftMenu
{
    display: block;
    width: 140px;
    position:absolute;
    left:30px;
    top:0px; 
}
#leftMenu ol
{
    margin:0px;
    padding:0px;
    list-style-type:none;
}
#leftMenu li
{
    margin: 0px;
    padding: 7px 0px;
    background-position: left bottom;
    background-image: url(/images/lm-itemSepBar.gif);
    background-repeat: no-repeat;
}
#middleContent
{
    width: 455px;
    margin-right: 235px;
    margin-left: 140px;
    text-align: justify;
    text-justify: auto;
    line-height: 1.3em;
    

}
.middleContent
{
    width:600px;    
}
.contentBoxClassNarrow
{
    background-position: left top;
    background-image: url(/images/contentBox-TopBG1.gif);
    background-repeat: no-repeat;
    background-color:#dee4e6;
    color:#0b2127;	
    display:block;
    padding: 0px 20px 20px 20px;
    margin:0px 0px 30px 0px;
    width: 560px;
    margin-right: 235px;
    text-align: justify;
    text-justify: auto;
    line-height: 1.6em;
}

.contentBoxClassWide
{
    width: 790px;
}
/*----- Create space after content paragraphs -----*/
/*.contentBoxClassNarrow p
{
    margin-top:0px;
    margin-bottom:15px;    
}*/
/*.contentBoxClassNarrow h3,*/
.contentHeader
{
    border-bottom: 0px solid #A4B4B8;
    padding-bottom: 20px;
    margin:0px 0px 0px 0px;
    color:#dee4e6;
    padding-top:14px;
    font-weight:bold;
    font-size:1.5em;
}
.contentBoxClassNarrow p.paragraphTitle
{
    margin-bottom:5px;
    font-weight:bold;
    padding:0px;
}

#leftContent
{
    width: 595px;
    margin-right: 235px;
    text-align: justify;
    text-justify: auto;
    line-height: 1.3em;
}

h3
{
    border-bottom: 1px solid #A4B4B8;
    padding-bottom: 5px;
    margin:0px 0px 0px 0px;
}

#rightContent
{
    display: block;
    width: 205px;
    position:absolute;
    left:655px;
    top:0px;
}
#rightContent p{margin:0px;}

.welcome{width:350px;}
.serviceTime{color:#fff7b0;font-weight:bold;}
#smallFlashPhotos
{
    position: absolute;
    top:-30px;
    left:375px;
}
#quickLinksBox
{
    display:block;
    width:auto;
    height:auto;
    background-color: #8ca0a5;
    padding:15px;
    color:#ffffff;
    margin-top:-1px;
}
.whiteLink,
.whiteLink:link
{
    color: #ffffff;
}
.whiteLink:hover
{
    color:#fff7b0;
}
#quickLinksBox ol{margin:0px; padding:0px;list-style-type:none;}

.calendarEventStyle
{
    font-weight: bold;
    color: Red;
    /*border: 1px solid #cccccc; */
}
.eventListTable td
{
    border-bottom:1px solid #7c9398;
}
.calendarEventStyle a
{
    border-bottom: 1px solid #cccccc;
}
.eventsTitle
{
    margin:0px 0px 10px 0px;
    padding:0px;   
}
#eventsCalBox
{
    background-position: left top;
    background-image: url(/images/eventsTop.gif);
    background-repeat: no-repeat;
    background-color: #3f5f68;
    padding:8px 0px 0px 0px;
    margin:0px;
}
#eventsCalBox td {text-align:center;}

.eventDetailTitle
{
 color:#d4dbdd;    
}

#WzBoDyI div
{
    font-weight:bold;
    color:#d9dfe1;
    display:block;
    width:494px;
    padding:3px;
    background-color:#3f5f68;
}
#WzBoDyI table
{
    border-bottom:1px solid #b7c8cd;
}
#WzBoDyI p
{
    color:#3f5f68;
    padding:2px 10px 2px 10px;
    margin:0px;
}

#WzBoDyI a:link,
#WzBoDyI a:active,
#WzBoDyI a:visited

{
    font-weight:bold;
    color:#3f5f68;
    text-decoration:none;
}

#WzBoDyI a:hover

{
    font-weight:bold;
    color:#cc0000;
    text-decoration:underline;
}

.eventCalendar a
{
    text-decoration:none;
}

.viewAllEvents span
{display:none;}

.viewAllEvents
{
    
    display:block;
    width:188px;
    height:22px;
    margin:8px 0px 0px 8px;
    background-position: left top;
    background-image: url(/images/btn-viewAllEvents.gif);
    background-repeat: no-repeat;
}
.eventsDetailsBox
{
    padding:10px 20px 0px 20px;
}
.eventDayListTitle
{
    padding:3px;
    color:#40616a;
    font-weight:bold;
    background-color:#d4dbdd;
}
.boxBottom
{
    margin:0px;
    padding:0px;
    width:205px;
    height:12px;
    background-position: left bottom;
    background-image: url(/images/rightBoxBottom.gif);
    background-repeat: no-repeat;
}
.closeButton 
{color:Red; text-decoration:none}
.bigBoxMenuShow
{position:absolute;width:595px; top:10px; left:10px; border:solid 1px black; height: 259px; background-color:White; display:block;}
.bigBoxMenuHide
{position:absolute;width:595px; height: 259px; background-color:White; display:none;}
.bigBoxMenuCloseShow
{position:absolute;left:565px;display:block;z-index:100;}
.bigBoxMenuCloseHide
{position:absolute;left:565px;display:none;z-index:100;}


.twoColumnTbl td
{
    border-bottom:1px solid #cccccc;
    padding:20px 10px 20px 10px;
}

/*----- Styles used in association FCK Editor -----*/
.contentBoxClassNarrow p.paragraphTitle
{
    margin-bottom:5px;
    font-weight:bold;
    padding:0px;
}

.listItemBottomSpace li
{
    padding-bottom:10px;    
}

.paragraphRightAlign,
.listRightAlign
{
    padding:0px 0px 0px 175px;
}

.twoCol-imageLeftAlignBorder
{
    float:left;
    border:1px solid #000000;
}

.twoCol-imageLeftAlignNoBorder
{
    float:left;
}

#bodyContent hr
{
    height:1px;
    border-bottom:1px solid #cccccc;
    clear:both;
}

.flashTitle
{
    font-weight:bold;
    font-size:1.1em;   
}
.termsOfUse
{
    display:inline;
    position:absolute;
    top:2px;
    left:15px;
    color:#8ca0a5;
    font-size:.8em;
    font-weight:bold;
    margin:0px;  
}

.eNewsLetterButton
{
    BORDER-RIGHT: #999 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #999 1px solid; MARGIN-TOP: 5px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; BORDER-LEFT: #999 1px solid; PADDING-TOP: 3px; BORDER-BOTTOM: #999 1px solid
}

.formIntro
{
    border-bottom:1px solid #5c7980;
    padding-bottom:15px; 
    font-weight:bold; 
}
.enewsForm
{
    background-color:#dee4e6;  
    color:#333333; 
    padding:5px 20px 20px;
}
.enewsForm form
{
    margin:0px;
    padding:0px;    
}

/* youth payment page */
.paymentTable
{width:600px;}

.paymentTable h4
{margin:10px 0px;padding:5px;background-color:#b6c6cc;}

.secTitle
{padding:0px;}
        
.childPayBox,
.payTotalBox
{text-align:left;
}

.payTotalBox
{background-color:#F6E5E5;}

.paymentNote
{border:4px solid #ffffff; background-color:#fffcc6;}

.specialNotes
{}

.arrowForm
{background:url(images/arrowForm.gif) no-repeat -115px center;}
/* -------------------------------*/



/* jQuery menu CSS */
ul.topnav {
	list-style: none;
	padding: 0 45px;
	margin: 10px 0 0 0;
	width: 830px;
	/*font-size: 1.2em; */
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
	padding: 10px 5px;
	color: #fff;
	display: block;
	text-decoration: none;
	float: left;
}
ul.topnav li a:hover{
	background: url(/Images/topnav_hover.gif) no-repeat center 8px;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(/Images/subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; top: 35px;
	background:#45656d;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 210px;
	border: 1px solid #111;
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	border-top: 0px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #113039; /*--Create bevel effect--*/
	clear: both;
	width: 210px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 185px;
	background: #45656d url(/Images/dropdown_linkbg.gif) no-repeat 10px center;
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #113039 url(/Images/dropdown_linkbg.gif) no-repeat 10px center;
}
