/*
 * Author:		Ronan Sprake [ronansprake@gmail.com]
 * Project: 	Growing Connections Project
 * Comment:		Base stylesheet

----------------------
Contents:

1. Font Sizing
2. Generic HTML
3. Parent layout
4. Header
5. Content
6. Footer
7. Miscellaneous

/*--------------------------------------------------------------------------
	=Font sizing
----------------------------------------------------------------------------*/

body
{
	font-size:				0.75em;	/* 16 x 0.75 = 12px */
}

h1
{
	font-size:				2em;	/* 12 x 2 = 24px */
}

#sidebar h3,
#header p
{
	font-size:				1.5em;	/* 12 x 1.5 = 18px */
}

#nav li a
{
	font-size:				1.42em;	/* 12 x 1.42 = 17px */
}

h2
{
	font-size:				1.17em;	/* 12 x 1.17 = 14px */
}

#footer
{
	font-size:				0.83em;	/* 12 x 0.83 = 10px */
}


/*--------------------------------------------------------------------------
	=Generic HTML
----------------------------------------------------------------------------*/

body
{
	background:				#FFF url(../images/bg-rpx-body.gif) repeat-x 0 0;
	font-family:			Georgia,Times,serif;
}

h1
{
	font-weight:			normal;
	margin-bottom:			10px;
}

h2
{
	font-weight:			bold;
	margin-bottom:			12px;
}

ol,
ul,
p
{
	line-height:			1.8em;
	margin-bottom:			20px;
}

blockquote
{
	background:				url(../images/bg-quote.gif) no-repeat 0 0;
	padding-left:			50px;
}

blockquote p
{
	font-style:				italic;
}

cite
{
	font-style:				normal;
	font-weight:			bold;
}

strong
{
	font-weight:			bold;
}

em
{
	font-style:				normal;
}

a
{
	color:					#333;
}

label
{
	display:				block;
	font-weight:			bold;
	margin-bottom:			4px;
}

textarea
{
	font-family:			Arial, sans-serif;
}


/*--------------------------------------------------------------------------
	=Parent layout
----------------------------------------------------------------------------*/

#page-container
{
	margin:					0 auto 26px;
	position:				relative;
	width:					770px;
}


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

#header
{
	background:				url(../images/banners/00-home.jpg) no-repeat 100% 0;
	height:					170px;
	margin-bottom:			20px;
	padding-left:			220px;
	position:				relative;
}

.vision #header
{
	background:				url(../images/banners/01-vision.jpg) no-repeat 100% 0;
}

.news #header
{
	background:				url(../images/banners/02-news.jpg) no-repeat 100% 0;
}

.gallery #header
{
	background:				url(../images/banners/03-gallery.jpg) no-repeat 100% 0;
}

.contact #header
{
	background:				url(../images/banners/04-contact.jpg) no-repeat 100% 0;
}

.faq #header
{
	background:				url(../images/banners/05-faq.jpg) no-repeat 100% 0;
}

.get-involved #header
{
	background:				url(../images/banners/06-getinvolved.jpg) no-repeat 100% 0;
}

#header p
{
	background-color:		#4B351E;
	color:					#FFF;
	font-style:				italic;
	letter-spacing:			0.01em;
	line-height:			1em;
	padding:				4px 20px 5px 0;
	position:				absolute;
	text-align:				right;
	/*top:					81px;*/
	top:					143px;
	width:					530px;
	z-index:				9;
}

#header li
{
	display:				none;
}

#header li.first
{
	display:				block;
}

#nav
{
	border-left:			1px solid #EDEBD5;
	height:					65px;
	margin-bottom:			0;
	margin-left:			-1px;
}

#nav li
{
	float:					left;
}

#nav li a
{
	border-right:			1px solid #EDEBD5;
	color:					#BABABA;
	display:				block;
	height:					45px;
	padding:				20px 0 0;
	text-align:				center;
	text-decoration:		none;
	width:					109px;
}

#nav li a:hover
{
	background-color:		#F7F7F4;
}

#nav li.current a,
#nav li.current a:hover
{
	background-color:		#F49A24;
	color:					#FFF;
}

#nav li img
{
	left:					0;
	position:				absolute;
	top:					65px;
	z-index:				9;
}


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

#content
{
	color:					#666;
	padding:				4px 20px 0;
	width:					530px;
}

#content table
{
	margin-bottom:			20px;
}

#content table thead
{
	font-weight:			bold;
}

#content td,
#content th
{
	border:					1px solid #D1D1D1;
	padding:				7px 5px;
}

#content em
{
	font-style:				italic;
}

h1,
.img-divider
{
	border-bottom:			1px solid #CCC;
	color:					#333;
	margin-left:			-20px;
	padding:				0 0 15px 20px;
	width:					550px;
}

.tagline
{
	color:					#963;
}

.images img
{
	float:					left;
	margin-right:			50px;
}

#gallery
{
	min-height:				100px;
}

#gallery li
{
	float:					left;
	margin:					0 12px 12px 0;
}

#sidebar
{
	float:					right;
	width:					175px;
}

#sidebar h3
{
	background:				#A2BC73 url(../images/bg-rpx-sidebar-h3.gif) repeat-x 0 0;
	color:					#FFF;
	padding:				5px 15px;
}

#sidebar div
{
	background-color:		#FFC;
	border:					5px solid #EDEBD5;
}

#sidebar div a
{
	color:					#960;
}

#sidebar div ul
{
	margin-bottom:			0;
	padding:				15px;
}


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

#footer
{
	background:				#EDEBD5 url(../images/bg-rpx-footer.gif) repeat-x 0 0;
	clear:					left;
	height:					100px;
	padding:				25px 0;
}

#footer p
{
	margin:					0 auto;
	text-align:				center;
	width:					770px;
}


/*--------------------------------------------------------------------------
	=Miscellaneous
----------------------------------------------------------------------------*/

ul.bulleted
{
	list-style:				inside disc;
}

.left
{
	float:					left;
	margin:					0 20px 10px 0;
}

.w3c,
.accessibility
{
	left:					-99999px !important;
	position:				absolute !important;
}

#nav:after,
.images:after,
#gallery ul:after
{
	clear:					both;
	content:				".";
	display:				block;
	font-size:				0;
	line-height:			0;
	overflow:				hidden;
	visibility:				hidden;
}
/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}

