﻿/* Root */
html
{
    padding: 0em;
    margin: 0em;
}

body 
{
    font-family: Arial Rounded MT Bold, Arial;
    font-size: 12pt;
    color: #FFF;
    background-color: #000;
    text-align: center;
    padding: 0em;
    margin: 0em;
}

/* The outer most section within the body */
#wrapper
{
    position: relative; /* position must be relative to center the text. */
	margin-left: auto; 	/* auto set the left margin to center the text. */
	margin-right: auto; /* auto set the left margin to center the text. */
    background-color: #9A0009; /* 154,0,9 - Dark Maroon */
    width: 1006px;
}

/* The top-most section displays the logo and company name */
#masthead
{
    position: relative;
    background-color: #000;
    padding: 2em 0em 0.75em 0em;
    margin: 0em;
    text-align: left;
    /* The z-index here is only necessary to keep the #we-moved image on top of the banner.
       http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/ */
    z-index: 3003;
}

#masthead h1
{
    margin: 0em;
    padding: 0em 0em 0.25em 4.25em;
}

#masthead a
{
    color: #FFF;
    text-decoration: none;
}

#masthead a:focus,
#logo a:focus
{
    -moz-outline-style: none;
    outline: none;
    border: 0px none;
}

#masthead #we-moved
{
    position: absolute; 
    top: 8px; 
    left: 860px; 
    z-index: 1001;
    display: none;
}

#masthead #we-moved a img,
#follow a img
{
    border: none 0px;
}

#follow
{
    position: absolute; 
    top: 8px; 
    left: 920px; 
    z-index: 1001;
}

#follow a.facebookIcon
{
    width: 32px;
    height: 32px;
    display: block;
}

#follow a.facebookIcon
{
    background: transparent url(../../images/facebook.png) no-repeat center;
    background-position: 0px 0px; 
}

#follow a.facebookIcon:hover
{
    background-position: -32px 0px; 
}

#masthead .logged-in,
#masthead .logged-out,
#masthead #staff-signin
{
    position: absolute; 
    top: 8px; 
    right: 0px; 
    z-index: 1001;
    font-size: 9pt;
    font-family: Arial;
    text-align: right;
}

#masthead .logged-in a,
#masthead .logged-out a,
#masthead #staff-signin a
{
    color: #9A0009;
}

#masthead .logged-in a:hover,
#masthead .logged-out a:hover,
#masthead #staff-signin a:hover
{
    text-decoration: underline;
}

#logo
{
   position: absolute;
   top: 0.25em;
   left: 0em;
   z-index: 4004;
}

#logo a img
{
    border: none 0px #000;
    text-decoration: none;
}

#logo a img:hover
{
    border: none 0px #000;
    text-decoration: none;
    background: transparent url(../../images/CrossroadsLogoCropped_230_glow.png) no-repeat center;
}

/* Displays the company slogan and a variety of silohette images. */
.banner
{
   /* background: transparent url(../../images/BackgroundBanner_1006x198.jpg) no-repeat center;*/
    border-bottom: solid 1px #000;
    width: 1006px;
    height: 198px;
    position: relative;
    background-image: url(../../images/banners_sprite.jpg);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: 0px 0px; 
}

/* position the slogan */
.banner h3
{
    font-style: italic;
    margin: 0em;
    padding: 0em;
    position: absolute;
    left: 34em;
    bottom: 2.25em;
}

.banner h3 a
{
    text-decoration: none;
    color: #FFFFFF;
}

/* banner background images for each page */
.banner_home
{
    /*background: transparent url(../../images/women_holding_hands.jpg) no-repeat 0px 0px;*/
    background-position: 0px 0px;  
}

.banner_education
{
    /*background: transparent url(../../images/banners.jpg) no-repeat 0px 199px;*/    
    background-position: 0px -198px;     
}

.banner_referral
{
    /*background: transparent url(../../images/girl_reading_on_floor.jpg) no-repeat center;*/
    background-position: 0px -396px;   
}

.banner_careers
{
    /*background: transparent url(../../images/business_women.jpg) no-repeat center;*/
    background-position: 0px -594px; 
}

.banner_contact
{
    /*background: transparent url(../../images/teenage_girls_standing_and_talking.jpg) no-repeat center;*/
    background-position: 0px -792px; 
}

.banner_parents
{
    /*background: transparent url(../../images/two_girls_walking.jpg) no-repeat center;*/
    background-position: 0px -990px; 
}

.banner_about
{
    /*background: transparent url(../../images/girls_arms_around_shoulder.jpg) no-repeat center;*/
    background-position: 0px -1188px; 
}

.banner_events
{
    /*background: transparent url(../../images/girls_celebrating.jpg) no-repeat center;*/
    background-position: 0px -1386px; 
}

.banner_programs
{
    /*background: transparent url(../../images/girls_standing.jpg) no-repeat center;*/
    background-position: 0px -1584px; 
}

/* Displays the main tabs for the site. */
#main-menu
{
    margin: 0em 0em 0em 0em;
    position: relative;
    top: -0.75em;
    /*left: 1.5em;
    height: 35px;*/
}

/******************************************/
/*** Nav bar styles ***/

/*Remove all spacings from the list items*/
/*ul.nav,
.nav ul{

	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}*/

/*ul.nav{
	display: table;
}

ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 0.5em 0em 0.5em 0em; 
	z-index: 9000;
	text-align: left;
    white-space: nowrap; 
    background: transparent url(../../images/BlackTab.png) repeat-x top; 
}


/***ul.nav>li:hover{
	padding-right: 1px;
}***/

/*Make the sub list items invisible*/
/*ul.nav li>ul{
	display: none;
	position: absolute;
	max-width: 40ex;
	margin-left: 0px;
	margin-top: 9px;
}*/

/*When hovered, make them appear*/
/*ul.nav li:hover>ul{

	display : block;	
}*/

/*Make the hyperlinks as a block element, sort of a hover effect*/
/*.nav ul li a{

	display: block;
	padding: 0.5em 0.75em 0.5em 1em;  	
}*/

/*** Menu colors (customizable) ***/

/*.nav 
{
    margin: 0;
    padding: 0;
}

ul.nav,
.nav ul,
.nav ul li a{
	color: #fff;
	background: transparent url(../../images/BlackTab.png) repeat-x top;
	border-top: solid 0px;	
}

.nav ul li
{
    border-left: solid 1px #000;
	border-right: solid 1px #000;  
}

.nav ul li a
{
    font-size: 10pt;
    border-right: none;
    border-left: none; 
}

ul.nav li:hover,
.nav ul li a:hover{
	color: #fff;
	background-image: none;
    background-repeat: no-repeat;
    background-color: #444444;
}

ul.nav li:active,
.nav ul li a:active{
	color: #fff;	 
}*/

/*ul.nav,
.nav ul{
	/* border: 1px solid #369; JK - I don't want this 
}

.nav a{
	color: #FFF;
    text-decoration: none;
    margin: 0;
    padding: 0.5em 0.75em 0.5em 1em;
    border-top: solid 1px #000;
    border-right: solid 1px #000;    
    border-bottom: solid 1px #000;
}

.nav li:first-child
{
    border-left: solid 1px #000;
}*/

/******************************************/

#nav
{
    margin: 0;
    padding: 0;
}

#nav li
{
    list-style: none;
    display: inline;
    /*margin: 0em -0.25em 0em 0em;*/ /* For browsers other than IE 7 */
    margin: 0em 0em 0em 0em; /* For IE 7 */
    /* The top and bottom paddings must match those of the '#nav a' in order
       to have the hover effect work correctly. If the padding is only on the
       '#nav a' then the browser doesn't add any padding to the top and bottom. */
    padding: 0.5em 0.75em 0.5em 1em; 
    line-height: 20px;    
    background: transparent url(../../images/BlackTab.png) repeat-x top; 
    border-top: solid 1px #000;
    border-right: solid 1px #000;    
    border-bottom: solid 1px #000;
    cursor: pointer;
}

#nav li:first-child
{
    border-left: solid 1px #000;
}

#nav a
{
    color: #FFF;
    text-decoration: none;
    margin: 0;
    padding: 0;
    /*padding: 0.5em 0.75em 0.5em 1em;
    border-top: solid 1px #000;
    border-right: solid 1px #000;    
    border-bottom: solid 1px #000;*/
}

#nav li:hover
{
    background-image: none;
    background-repeat: no-repeat;
    background-color: #444444; /* #444444, #111 and #222 look good for subtle changes. Yellow is a bold change. */
}

#nav a:hover
{
    color: White;
}

/* Displays the copyright info along with tab replacement links */
#footer
{
    font-size: 10pt;
    border-top: solid 1px #000;   
}

#footer b
{
    font-weight: normal;
}

#validates
{
    color: #111;
    background-color: #000;
    padding: 0.25em 0em;
}

#validates p
{
    margin: 0;
    padding: 0;
}

#validates a,
#validates a img
{
    color: #111;
    border: none;
    text-decoration: none;
}

/* The container for the page content */
#page-content
{
    text-align: left;
    /* z-index needed as fix for IE7 bug that causes the #page-content to appear above the hover menu. 
     * See: http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/ */
    z-index: 2000;
}


/* Main Content */
#main-content
{
    color: #000;
    background-color: #FFF;
    margin: 0;
    padding: 0em 1em;
}

#main-content h3,
#spotlight h3,
#page-menu h3
{
    margin-top: 0em;
}

#main-content h4,
#main-content h5
{
    margin-top: 1em;
}

#main-content h5
{
    margin-bottom: 0em;
    font-size: 12pt;
}

#main-content h3,
#main-content h4,
#spotlight h4
{
    margin-bottom: 0em;
    padding-bottom: 0em;
}

#spotlight h4
{
    margin-top: 0.5em;
    letter-spacing: -1px;
}

#spotlight h3
{
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    margin-bottom: 0em;
}

#spotlight a sup
{
    vertical-align: baseline;
}

/*#spotlight h3+img
{
    margin-top: 6px;
}*/

#main-content p
{
    margin-top: 0em;
    margin-bottom: 0em;
    padding-top: 0em;
}

#main-content p+p
{
    margin-top: 1em;
}

#main-content ul,
#main-content ol
{
    margin-top: 0em;
    margin-bottom: 0em;
}

#main-content .content-image-wrapper
{
    position: relative;
}

#main-content .content-image
{
    float: right; 
    margin-top: -2em; 
    text-align: center;
}

.caption
{
    font-style: italic;
    font-size: 10pt;
}

.clear-it
{
    clear: both;
    margin: 0em;
    padding: 0em;
    height: 0px;
}

#spotlight p
{
    margin-top: 0em;
    padding-top: 0em;
}

#main-content-wrapper .round-top,
#standard-content .round-top
{
    background: #FFF url(../../images/main-content-top-right.jpg) no-repeat top right;
    height: 20px; /* The height of the corner image */
}

#main-content-wrapper .round-bottom,
#standard-content .round-bottom
{
    background: #FFF url(../../images/main-content-bottom-right.jpg) no-repeat bottom right;
    height: 20px; /* The height of the corner image */
}

/* Sub Content */
#sub-content-wrapper
{
    margin-top: 2em;
}

#sub-content-wrapper .round-top
{
    background: #E1000E url(../../images/sub-content-top-right.jpg) no-repeat top right;
    height: 20px; /* The height of the corner image */
}

#sub-content-wrapper .round-bottom
{
    background: #E1000E url(../../images/sub-content-bottom-right.jpg) no-repeat bottom right;
    height: 20px; /* The height of the corner image */
}

#sub-content
{
    color: #FFF;
    background-color: #E1000E; /* 225,0,14 */
    margin-top: 0em;
    padding: 0em 1em 0em 1em;
}

#sub-content h3
{
    margin-top: 0em;
    margin-bottom: 0em;
}

#sub-content p
{
    margin-top: 0em;
    margin-bottom: 0em;
    padding-top: 0em;
}

/* Page Menu */
#page-menu
{
    color: #FFF;
    /*background-color: #E1000E;  225,0,14 */
    position: absolute;
    /* 40px is equivalent to the 2 round borders of 20px each that push the page title "header" line down. */
    /* 36px is to make up the difference that comes from the top padding in "#page-menu h3"*/
    top: 38px;/*40px;*//*2em;*/
    left: 754px;
    width: 252px; /* Required for IE 7, else the width extends beyond the container. */
}

#page-menu h3
{
    background-color: #C9000C; /* 201,0,12 */
    margin-bottom: 0em;
    margin-left: 0em;
    padding: 0.25em 0.5em;
}

#page-menu ul,
#page-menu p
{
    margin-left: 0em;
    padding-left: 1em;
    margin-top: 0.5em;
}

#home-wrapper #page-menu li
{
    padding-top: 0em;
    padding-bottom: 0em;
}

#page-menu li
{
    list-style-type: none;
    padding-top: 0.25em;
    padding-bottom: 0.25em;    
}

#page-menu li h4
{
    margin-top: 0em;
    margin-bottom: 0em;
    padding-bottom: 0em;
}

#page-menu li p
{
    margin-top: 0em;
    padding-top: 0em;
    padding-right: 0.5em;
}

#page-menu p
{
    font-family: Arial;
    color: #FFF;
}

#page-menu a
{
    color: #FFF;
}

/*******************************************/
/************   Home Page   ****************/
/*******************************************/
#home-wrapper
{
    position: relative;
}

#standard-content-wrapper,
#home-content-wrapper
{
    background-color: #C9000C; /* 201,0,12 */
    padding: 0em;
    width: 75%;
    position: relative; 
    line-height: 1.5em;   
}

#standard-content-wrapper > .round-top,
#home-content-wrapper > .round-top
{
    background: #C9000C url(../../images/body-content-top-right.jpg) no-repeat top right;
    height: 20px; /* The height of the corner image */
}

#standard-content-wrapper > .round-bottom,
#home-content-wrapper > .round-bottom
{
    background: #C9000C url(../../images/body-content-bottom-right.jpg) no-repeat bottom right;
    height: 20px; /* The height of the corner image */
}

#home-content
{
    width: 65%;
}

#spotlight
{
    position: absolute;
    /* 40px is equivilant to the 2 round borders of 20px each that push the page title "header" line down. */
    top: 38px;/*2em;*/
    right: 0.75em;
}

#spotlight a
{
    color: #FFF;
}

/*******************************************/
/************  Standard Page   *************/
/*******************************************/
#standard-wrapper
{
    position: relative;
}

/*#standard-content-wrapper
{
    background-color: #C9000C; /* 201,0,12 
    padding: 2em 2em 2em 0em;
    width: 70%;
    position: relative;
    
}*/

#standard-content-wrapper
{
    font-family: Verdana, Trebuchet MS, Arial;
}

#standard-content
{
    /*width: 100%; */
    /* This is to make the right "Maroon border" appear the same size as the top 20px "border"
       created by the round-top image.
    */
    margin-right: 20px;/*2em;*/ 
}

#photo-list
{
    
}

#photo-list li
{
    vertical-align: top;
    border-bottom: solid 1px black;
    padding: 0.5em 0.25em;
}

#photo-list li img
{
    height: 230px;
}

/***************************************/
/*********** Styles ********************/
/***************************************/
.highlight,
.highlight a
{
    color: #FF0000;/*#9A0009*/
}

ul.jumpTo
{
    padding-left: 1em;
    padding-top: 1em;
}

ul.jumpTo li
{
    list-style-type: none;
}

h5.listTitle
{
    font-style: italic;
}

#main-content ul+p
{
    margin-top: 1em;
}

a img
{
    border: 2px solid #FFFFFF;
}

#page-menu a img
{
    border: 2px solid #9A0009;
}

a img:hover,
#page-menu a img:hover
{
    border: 2px solid Yellow;
}

p.indent
{
    margin-left: 1em;
}

img.justGive
{
    width: 170px;
    height: 65px;
}

img.unitedWay
{
    width: 150px;
    height: 65px;
}

img.swipeGood
{
    width: 136px;
    height: 68px;
}

.form-entry
{
    margin-top: 0.5em;
    margin-bottom: 1em;
    width: 100%;
    text-align: left;
}

.form-entry .label
{
    text-align: left;
    font-style: italic;
}

/*.form-entry .input
{
    text-align: left;
    font-size: 14pt;
}*/

.form-entry input,
.form-entry textarea
{
    font-size: 12pt;
}

.form-entry input.food-quantity
{
    width: 40px;
}

.form-entry input.food-price
{
    white-space: nowrap;
    display: block;
}

.food-note
{
    margin-bottom: 0.5em;
    font-style: italic;
    color: #C9000C;
}

.food-container
{
    height: 200px; 
    overflow: auto;    
}

.form-entry table.food
{
    border-collapse: collapse;    
    overflow: auto;
    width: 97.5%;
}

.form-entry table.food thead th
{
    text-align: right;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.form-entry table.food thead th:first-child
{
    text-align: left;
    padding-left: 1.25em;
}

.form-entry table.food thead th.header-qty
{
    padding-right: 0.7em;
}

.form-entry table.food tbody td:first-child
{
    padding-right: 1em;
    padding-left: 0.25em;
    text-align: left;
}

.form-entry table.food tbody td:first-child input,
.form-entry table.food tbody td:first-child label
{
    cursor: pointer;
}

.form-entry table.food tbody td
{
    padding-top: 0.12em;
    padding-bottom: 0.12em;
    padding-left: 0.5em;
    padding-right: 0.25em;
    text-align: right;    
    vertical-align: top;
}

.form-entry table.food tbody tr
{
    border-right: solid 1px White;
    
}
.form-entry table.food tbody tr:hover
{
    /*background-image: url(../../images/arrow-left-small.png);
    background-position: right;
    background-repeat: no-repeat;
    background-color: Yellow;*/
}

.error-panel
{
    color: #FF0000;
    font-weight: bold;
}

.form-entry .signin table td
{
    padding-top: 0.12em;
    padding-bottom: 0.12em;
}

.widen
{
    width: 98%;
}

#cartSummary
{
    display: block;
    float: right;
    margin-right: 0em;
    text-align: right;
    /*border: 1px solid #AAAAAA;
    padding: 0.25em;*/
}

#locBudget,
#cartBalance
{
    display: block;
}

.cart-over-budget,
.cart-under-budget
{
    border-top: solid 1px #000000;
}

.cart-under-budget
{
    color: #000000;
}

.cart-over-budget
{
    color: #C9000C;
}

/* Tabs - http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/ */
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #999;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;
}
ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0 20px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}

.tab_container {
	border: 1px solid #999;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
	margin-bottom: 0.25em;
}
.tab_content {
	padding: 5px 0px 2px 0px;
}
/* End tabs */
