/*
    Copyright:      Copyright (c) Mindscape Solutions. All rights reserved.
    Filename:       project.css
    Created by:     Jason Van Vuren
    Created on:     5.8.2008

    Summary:
        Use this style sheet to style all pages in the site.

    Revision:   Jason Van Vuren 5.8.2008
        Initial style creation.
*/

/* ----------  Interior.master Styles  ---------- */
/* ----------  Styles by ELEMENT  ---------- */
@import "formmodule.css";
@import "sitemap.css";
@import "online-registration.css";

body
{
    background-color: #84d3e5;
    padding: 0;
    margin: 0;
    text-align: center;
    background-image: url(   "../images_new/background.gif" );
    background-repeat: repeat-x;
    background-position: top;
}

h1
{
    display: none;
}


h2
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #7a7a7a;
    padding: 20px 0px 15px 0px;
    text-align: left;
    text-transform: uppercase;
}


h3
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #7a7a7a;
    padding: 15px 0px 10px 0px;
    text-align: left;
    text-transform: uppercase;
}

p
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    color: #7a7a7a;
    line-height: 17px;
    text-align: left;
    padding-top: 15px;
}

a
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 17px;
    text-decoration: underline;
}

a:hover
{
    color: #000;
}

/* ----------  Styles by DIV id  ---------- */
div#wrapper
{
    background-color: #84d3e5;
    width: 915px;
    height: 100%;
    text-align: left;
    margin: 0 auto; /* for the rest */
    padding: 0px 5px 10px 5px;
    background-image: url(   "../images_new/background.gif" );
    background-repeat: repeat-x;
    background-position: top;
}

div#header
{
    width: 915px;
    text-align: center;
    margin-bottom: 20px;
}


div#Content
{
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 915px;
    height: 100%;
    clear: both;
}





/* ----------  Main Nav styles  ---------- */

/* 
The first selector sets the top-level ul and applies to all the dropdown ULs as well.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
If desired, we could set a font-family different from the global font-family declared for the
body element. 
*/

#mainmenu
{
    margin: 0 auto; /* for the rest */
    padding-left: 0px;
    width: 915px;
    text-align: center;
}

#mainnav
{
    margin-top: 20px;
    margin-bottom: 20px;
}

#mainnav, #mainnav ul
{
    list-style: none;
    display: block;
    float: left;
}



#mainnav li
{
    background-position: right;
    padding: 0px;
    margin: 0px;
    float: left;
}


#mainnav ul li
{
    background-image: none;
}

#mainnav a
{
    margin: 0px;
    font-size: 18px;
    color: #7a7a7a;
    display: block;
    text-decoration: none;
    padding: 0px 38px 0px 0px;
    font-family: tahoma;
    line-height: 24px;
}

#mainnav a:hover
{
    color: #000;
}

/*
Sets the properties of the dropdown links. 
Keeping the padding the same throughout should eliminate any blinking issues on ie.
*/

#mainnav ul li
{
    width: 100%;
    text-align: left;
    float: none;
    height: 30px;
}

#mainnav ul li a
{
    padding: 3px 0px 0px 15px;
    margin: 0px;
    font-family: tahoma;
    font-size: 18px;
    color: #7a7a7a;
    text-align: left;
    height: 24px;
}

#mainnav ul li a.hover
{
    color: #000;
}

/*
Sets the properties of the dropdown link that is currently loaded. OPTIONAL!
*/
#mainnav ul li a.current
{
}

/*
Sets width for dropdown box and the links inside - in proportional em units. 
This allows the dropdown width to expand if users resize the text in their browsers.
*/
#mainnav li ul
{
    width: 20em;
}

/*
Sets the properties of each dropdown box.
Positioned Absolutely to allow them to appear below their root trigger. 
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
*/
#mainnav li ul
{
    border: solid 4px #7a7a7a;
    background-position: left top;
    position: absolute;
    display: none;
    z-index: 100;
    background-color: #84d3e5;
}

/*
The first selector sets the top-level link hover display. The second selector sets properties 
when top-level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#mainnav li:hover a, #mainnav a:focus, #mainnav a:active, #mainnav li.p7hvr a
{
}

/*
The first selector sets the dropdown to be visible when its associated
top-level link is moused over. The second selector is assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#mainnav li:hover ul, #mainnav li.p7hvr ul
{
    display: block;
}

/*
The first selector sets the text color of the dropdown links when the top-level
menu items are moused over. The second selector is assigned to IE5 and IE6 via 
the P7_ExpMenu script. The color should match the normal dropdown link color
in the rule: #mainnav ul li a. The background color must be
transparent if any background needs to show through from the UL .
*/
#mainnav li:hover ul a, #mainnav li.p7hvr ul a
{
}

/*
Sets the normal hover state for dropdown links. The "Important" directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#mainnav ul li a:hover
{
    color: #000;
}

/*
Clears the floated menu items.
Assigned to a BR tag placed just after the main nav closing ul.
*/
.clearit
{
    clear: both;
    height: 0;
    line-height: 0.0;
    font-size: 0;
}

/*

/* ----------  Interior Master page styles  ---------- */


/* SUB NAV */
#subnav
{
}

#subnav ul
{
    padding: 0;
    margin: 0;
    list-style: none;
    background: none;
}

#subnav li
{
    list-style: none;
}

#subnav a
{
    padding: 3px 0px 0px 15px;
    margin: 0px;
    font-family: tahoma;
    font-size: 12px;
    color: #7a7a7a;
    text-align: left;
    height: 24px;
}

#subnav a:hover
{
    color: #000;
}

#subnav .current a
{
    color: #000;
}

/* ----------  Side Menu Styles  ---------- */
#sidemenu li
{
}

.sidemenu li a
{
}

.sidemenu li a:hover
{
}

.sidemenu p
{
}

.sidemenu p a
{
}

.sidemenu p br
{
}

.sidemenu h2 a
{
}


/* ----------  Custom Content Styles  ---------- */
.template-content
{
    border: solid 4px #7a7a7a;
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    color: #7a7a7a;
    line-height: 17px;
    padding: 5px 20px 15px 20px;
    margin-top: 20px;
    text-align: left;
    background-color: #fff;
}

.template-content li
{
    list-style-type: none;
    padding-left: 10px;
}

/* Used to remove border and margin from interior custom content */
#interior .template-content
{
    border: none;
    margin-top: 0px;
}

/* ----------  General Listing Styles  ---------- */
.generallist
{
    padding-left: 10px;
    margin-bottom: 10px;
}

.generallist strong
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 20px;
    color: #7a7a7a;
    padding: 10px 10px 10px 10px;
    text-align: left;
}

.generallist img
{
    float: left;
    margin-right: 1em;
    margin-top: 1em;
}

.generallist hr
{
    color: #7a7a7a;
    clear: both;
}


/* ----------  News Article Styles  ---------- */
.newsarticles
{
}

.newsarticles .newslisting .newsitem
{
}
.newsarticles .newslisting .newsitem a
{
}

.newsarticles .newslisting .newsitem h4
{
}

.newsarticles .newslisting .newsitem h5
{
}

.newsarticles .newslisting .newsitem p
{
}
.newsarticles .newsdetail p
{
}

.newsarticles .newsdetail h4
{
}

.newsdetail a
{
}


/* ----------  Blog Styles  ---------- */
.blog div#ctl00_cphPageBody_public_partctrl_1_pnlListing .blog-entry .post-body
{
}

.blog .blog-entry .post-body span
{
}

.blog a
{
}

.blog hr
{
}


/* ---------- Form Styles  ---------- */
.form-module
{
    padding-left: 20px;
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    color: #7a7a7a;
    line-height: 17px;
    text-align: left;
}

.form-module .form-table input
{
    width:200px;
}

.form-module .form-table
{
 padding:5px;
}

.form-module .form-table span
{
}

.form-module .form-table .form-module-column1
{
}

.form-module .form-table .form-module-checkboxlist
{
}

.form-module .form-table .form-module-checkboxlist input
{
}

.form-module .form-table .form-module-radiobuttonlist
{
}

.form-module .form-table .form-module-checkbox
{
}

.form-module .form-table .form-module-multiline
{
}


/* ----------  Ecard Styles  ---------- */
.ecards
{
}

.ecards h4
{
}

.ecards p
{
}

.ecards a
{
}

.ecards .textarea
{
}


/* ----------  Donation Styles  ---------- */
.donations strong
{
}

.donations p
{
}


/* ----------  Photogallery Styles  ---------- */
.photogallery
{
    border: 1px solid #7a7a7a;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    text-align: center;
}

.photogallery li
{
    list-style-type: none;
    display: inline;
}


/* ----------  Sitemap Styles  ---------- */
.sitemap ul
{
    list-style-type: none;
    font-family: Tahoma, Helvetica, sans-serif;
}

.sitemap li
{
    padding-top: 2px;
    padding-bottom: 2px;
}

.sitemap li a
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 20px;
    text-decoration: none;
}

.sitemap li a:hover
{
    color: #000;
}

.sitemap li ul
{
    padding-left: 25px;
}


li
{
    padding-top: 2px;
    padding-bottom: 2px;
}

li a
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 12px;
    color: #7a7a7a;
    line-height: 20px;
    text-decoration: none;
}

li a:hover
{
    color: #000;
}

/* New Design Classes */

.logo
{
    padding-top: 35px;
}

.brownborder
{
    border: solid 4px #7a7a7a;
}

.footerspace
{
    margin-bottom: 5px;
}

.footer
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 12px;
    color: #7a7a7a;
    padding-top: 20px;
    color: #7a7a7a;
}

.footer a
{
    color: #7a7a7a;
    text-decoration: none;
}

.footer a:hover
{
    color: #000;
}

.side-menu
{
    width: 220px;
    background-color: #fff;
    border-right: solid 1px #7a7a7a;
    padding-top: 15px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    vertical-align:top;
}

#ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu h2
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #7a7a7a;
    padding: 15px 10px 10px 10px;
    text-align: center;
    text-transform: uppercase;
}

.main-content
{
    background-color: #fff;
    vertical-align:top;
}

.main-table
{
    width: 915px;
    margin-top: 20px;
    border: solid 4px #7a7a7a;
}

.quickcart
{
    display: none;
  
    
}

#ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu p
{
    display: none;
  
}

#ctl00_cphPageBody_pnlLogin 
{
 padding-left: 20px;
}

#senior-info-wrapper
{
    
    margin-bottom: 10px;
    border: solid 4px #7a7a7a;
    background-color:#404040;
    padding:30px 55px 30px 55px;
    height:100%;
    float:left;
}

.senior-info-content
{
    float:left;
    margin-bottom:25px;
}

#senior-info-wrapper .senior-info-content .senior-info-image-left
{
    width: 242px;    float: left;    
}

#senior-info-wrapper .senior-info-content .senior-info-image-right
{
    width: 242px;    float: right;    
}

#senior-info-wrapper .senior-info-content .senior-info-text
{
    background-color:#fff;    border: solid 4px #7a7a7a;    width:500px;
    float:left;
    padding: 10px 20px 20px 20px;
    
}


#senior-info-wrapper .senior-info-content .senior-info-text p
{
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 15px;
    color: #7a7a7a;
    line-height: 25px;
    text-align: left;
    padding-top: 15px;
}

#senior-info-wrapper .senior-info-content .senior-info-text h2
{
 text-align:center;
 padding-bottom:10px;
}

#senior-info-wrapper .senior-info-nav
{
    background-color:#fff;    border: solid 4px #7a7a7a;    float:left;
    padding: 20px 0px 20px 50px;
    width:742px;
    
}

#senior-info-wrapper .senior-info-nav a
{
    padding-right:30px;
    font-family: Tahoma, Helvetica, sans-serif;
    font-size: 20px;
    color: #7a7a7a; 
    text-decoration:none;
}

#senior-info-wrapper  .senior-info-nav  a:hover
{
   text-decoration:underline;
       
}

#wrapper .register 
{
    display:block;
    padding:10px;
    background-color:#84d3e4;
    
     
}

#wrapper .register a:hover
{
    border: solid 4px #7a7a7a;   
     
}