/* 
==============================
LiftChurch.ca >> Nav Styles
==============================
This CSS cucumber was pickled by:
>> Kyle Dutka at See Design
>> www.seedesign.ca | kyle [at] seedesign.ca
------------------------------
*/

	
/* 
==============================
Navigation: Main
==============================
*/

/* This was originally based on Son of Suckerfish Dropdowns by Patrick Griffiths and Dan Webb 
http://htmldog.com/articles/suckerfish/dropdowns/
and then was integrated with Leieber's Drop Down Menu for fancy awesome
http://www.leigeber.com/2008/11/drop-down-menu/
*/

/* --- Structure --- */

/* LEVEL 1: Main Nav Image */
#nav, #nav ul {
	position: relative;
	margin: 0;
	padding: 15px 0 0 30px;
	list-style: none;
	z-index: 110;
	}

#nav * {
	margin: 0;
	padding: 0;
	}

#nav li {
	position: relative;
	float: left;
	margin-right: 0px;
	}
	
#nav li a {
	position: relative;
	display: block;
	height: 50px;
	text-indent: -7777777px;
	width: 150px;
	margin-right: -40px;
	cursor: pointer;
	}

/* Make Main Nav image go to HOVER state */
#nav a:hover,
/* Even when drop-down section is selected */
#nav li:hover a /* NOTE: For IE6, may need to use the suckerfish class w/ the suckerfish javascript that I removed */ {
	background-position: 0 -50px;
	cursor: pointer;
	}

/* Make Main Nav image go to ACTIVE state */
#nav a:active,
/* Even when drop-down section is selected */
#nav li:active a {
	background-position: 0 -100px;
	cursor: pointer;
	}

/* LEVEL 2: Drop-down section */

#nav li ul {
	position: absolute; 
	top: 50px;
	left: 0px;
	display: none;
	opacity: 0;
	list-style: none;
	/* IMPORTANT NOTE: Top-Padding AND Bottom-Padding of #nav li ul MUST remain as 0 for animation to work, not totally sure why, but it happens. */
	padding: 0 0 0 50px;
	height: 100px;
	z-index: -1;
	}

#nav_identity ul, #nav_ministries ul {
	width: 420px;
	margin: 0 0 0 -10px;
	padding-left: 40px;
	background: url(../../images/nav_sub_bkg_long.png) top left no-repeat;
	}	


#nav_resources ul {
	width: 300px;
	background: url(../../images/nav_sub_bkg_short.png) top left no-repeat;
	}

#nav li ul a {
	position: relative;
	display: block;
	float: none;
	text-indent: 0;
	height: 15px;
	width: 90px;
	margin: 5px;
	padding: 3px;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	background: none;
	cursor: pointer;
	}
	
#nav li ul a:hover {
	color: #CCCCCC;
	padding-bottom: 2px;
	border-bottom: 1px #FFFFFF solid;
	}

/* --- Highlight Nav Image of Current Page --- */

/* NOTE: background-position: 0 -150px; is the grey "page" state... this is causing usability issues with the drop down though... so switched back to -50px which is blue "hover" state */

/* Identity */
body#pageid_identity #nav_identity a,
body#pageid_identity_leadership #nav_identity a,
body#pageid_identity_values #nav_identity a,
body#pageid_identity_vision #nav_identity a,
body#pageid_identity_history #nav_identity a,
body#pageid_storybook #nav_identity a {
	background-position: 0px -50px;
	cursor: pointer;
	}
	
	/* Force Hover even when Page is Selected */
	body#pageid_identity #nav_identity a:hover,
	body#pageid_identity_leadership #nav_identity a:hover,
	body#pageid_identity_values #nav_identity a:hover,
	body#pageid_identity_vision #nav_identity a:hover,
	body#pageid_identity_history #nav_identity a:hover,
	body#pageid_storybook #nav_identity a:hover {
		background-position: 0px -50px;
		cursor: pointer;
		}
	
	/* Force Hover even when Page is Selected, and when Drop-Down is Selected */
	body#pageid_identity #nav_identity li:hover a,
	body#pageid_identity_leadership #nav_identity li:hover a,
	body#pageid_identity_values #nav_identity li:hover a,
	body#pageid_identity_vision #nav_identity li:hover a,
	body#pageid_identity_history #nav_identity li:hover a,
	body#pageid_storybook #nav_identity li:hover a {
		background-position: 0px -50px;
		cursor: pointer;
		}
	
/* Calendar */
body#pageid_calendar #nav_calendar a {
	background-position: 0px -50px;
	cursor: pointer;
	}
	
	/* Force Hover even when Page is Selected */
	body#pageid_calendar #nav_calendar a:hover {
		background-position: 0px -50px;
		cursor: pointer;
		}

/* Vodcast */
body#pageid_vodcast #nav_vodcast a {
	background-position: 0px -50px;
	cursor: pointer;
	}
	
	/* Force Hover even when Page is Selected */
	body#pageid_vodcast #nav_vodcast a:hover {
		background-position: 0px -50px;
		cursor: pointer;
		}
	

/* Ministries */

/* Page */
body#pageid_ministries #nav_ministries a,
body#pageid_ministries_actionpods #nav_ministries a,
body#pageid_ministries_catalyst #nav_ministries a,
body#pageid_ministries_youth #nav_ministries a,
body#pageid_ministries_student #nav_ministries a,
body#pageid_ministries_allages #nav_ministries a,
body#pageid_ministries_getinvolved #nav_ministries a {
	background-position: 0px -50px;
	cursor: pointer;
	}

	/* Force Hover even when Page is Selected */
	body#pageid_ministries #nav_ministries a:hover,
	body#pageid_ministries_actionpods #nav_ministries a:hover,
	body#pageid_ministries_catalyst #nav_ministries a:hover,
	body#pageid_ministries_youth #nav_ministries a:hover,
	body#pageid_ministries_student #nav_ministries a:hover,
	body#pageid_ministries_allages #nav_ministries a:hover,
	body#pageid_ministries_getinvolved #nav_ministries a:hover {
		background-position: 0px -50px;
		cursor: pointer;
		}


/* Resources */
body#pageid_resources #nav_resources a,
body#pageid_resources_books #nav_resources a,
body#pageid_articles #nav_resources a,
body#pageid_reviews #nav_resources a,
body#pageid_resources_links #nav_resources a {
	background-position: 0px -50px;
	cursor: pointer;
	}
	
	/* Force Hover even when Page is Selected */
	body#pageid_resources #nav_resources a:hover,
	body#pageid_resources_books #nav_resources a:hover,
	body#pageid_articles #nav_resources a:hover,
	body#pageid_reviews #nav_resources a:hover,
	body#pageid_resources_links #nav_resources a:hover {
		background-position: 0px -50px;
		cursor: pointer;
		}
		
		
/* Home and Contact */
body#pageid_home #nav_home a,
body#pageid_contact #nav_contact a {
	background-position: 0px -50px;
	cursor: pointer;
	}
	

/* --- Nav Image Replacement --- */

#nav_identity a{
	position: relative;
	background: url(../../images/nav_identity.png) top right no-repeat;
	z-index: 10; 
	}
		
#nav_ministries a{
	position: relative;
	background: url(../../images/nav_ministries.png) top left no-repeat;
	z-index: 9;
	}

#nav_calendar a{
	position: relative;
	background: url(../../images/nav_calendar.png) top left no-repeat;
	z-index: 8;
	}
	
#nav_vodcast a{
	background: url(../../images/nav_vodcast.png) top left no-repeat;
	z-index: 7;
	}
	
#nav_resources a{
	background: url(../../images/nav_resources.png) top left no-repeat;
	z-index: 6;
	/* Cancel -40px right margin */
	margin-right: 0px !important;
	}
	
/* --- Nav Image Replacement and Styling for "Home" and "Contact" --- */

li#nav_home a, li#nav_contact a {
	margin: 0px !important;
	width: 80px !important;
	}

#nav_home a{
	background: url(../../images/nav_home.png) top left no-repeat;
	}

#nav_contact a{
	background: url(../../images/nav_contact.png) top left no-repeat;
	}





/*
------------------------------------------------------------------------------------------
Your {CREATIVITY} is RESTRICTED [when you think] your creativity is BOUND by your {ABILITY}.
&#1501;&#1465;&#1493;&#1500;&#1464;&#1473;&#1513; 
------------------------------------------------------------------------------------------
*/