/* 
==============================
EmbassyOnline.ca Basic Style Sheet
==============================
This CSS cucumber was pickled by:
>> Kyle Dutka at See Design
>> www.seedesign.ca | kyle [at] seedesign.ca
------------------------------
CSSed in Canada inside an igloo with 
dial-up internet powered by beaver
fur and pemmican that was purchased
with coloured money from the Queen.
------------------------------

==============================
Notes
==============================
- Play Dodgeball with Nice Browsers (PDwNB) 
  refers to using [id], [class], etc. to hide that 
  element from IE6 in order to apply the AlphaImageLoader
  or another "hack" in ie6.css and force proper display in IE6
- Make IE Sit in the Corner (MIEsitC) refers to using the
  * hack to display only to IE6 and IE7.
- We do indeed actually play Dodgeball with the
  Nice Browsers (Firefox, Safari, etc.)
- IE 7 may be considered a Nice Browser due to it's 
  native transparent PNG support, but then again it's 
  Microsoft - so we're still deciding.
------------------------------

==============================
Table of Contents
==============================
1.1 General Styles
2.1 Structure
3.1 Header
4.1 Navigation: Main
------------------------------

==============================
Colour Palette
==============================
#000000 - Black
#FFFFFF - White
------------------------------

==============================
Layers (z-index)
==============================
100 - CMS Editing Bar
------------------------------
*/

/* 
==============================
1.1 General Styles
==============================
*/

body {
	margin: 0;
	padding: 0 0 10px 0px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	background: url(../../images/page_bkg.jpg) #000000 fixed top left no-repeat;
	}

/* --- Headers --- */

h1 {
	margin: 0;
	font-size: 20px;
	font-weight: normal;
	}

h2 {
	margin: 0;
	font-size: 14px;
	font-weight: normal;
	}

h3 {
	margin: 0;
	font-size: 12px;
	font-weight: normal;
	}

h4 {
	margin: 0;
	font-size: 12px;
	font-weight: normal;
	}

p {
	line-height: 18px !important;
	font-family: Helvetica, Arial, sans-serif !important;
	}


/* --- Links --- */

a {
	position: relative;
	border-bottom: none;
	color: #FF9900;
	text-decoration: none;
	cursor: pointer;
	}

a:hover {
	position: relative;
	text-decoration: underline;
	/* border-bottom: 1px dotted #666666; */
	color: #FF9900;
	cursor: pointer;
	}

a.link_go {
	padding-right: 20px;
	background: url(../../images/link_go.gif) top right no-repeat;
	}

a.link_go:hover {
	background-position: right -15px;
	}

a.link_return {
	padding-left: 20px;
	background: url(../../images/link_return.gif) top left no-repeat;
	}

a.link_return:hover {
	background-position: left -15px;
	}

a img {
	border-bottom: none;
	}

a.link_external {
	padding-right: 12px;
	background: url(../../images/link_external.gif) top right no-repeat;
	}

a.link_external:hover {
	background-position: right -16px;
	}
	
/* This removes the annoying dotted line bug in Firefox when a link is clicked */

:focus {
  -moz-outline-style: none;
	}

/* --- Images --- */

img {
	border: none;
	}

.content img {
	padding: 0px 7px 7px 0px;
	}

/* --- Text Replacment --- */

h1.hide, h2.hide {
	text-indent: -7777777px;
	}

/* --- Forms --- */

input.text {
	color: #0099CC;
	width: 175px;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid #CCCCCC;
	}

input:focus {
	border-bottom: 1px solid #666666;
	}

input.submit {
	width: 100px;
	}

input.checkbox {
	width: 20px;
	}

input.captcha {
	color: #0099CC;
	width: 60px;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid #CCCCCC;
	}

textarea {
	color: #0099CC;
	width: 225px;
	height: 140px;
	border: 1px solid #CCCCCC;
	font-family:Arial, Helvetica, sans-serif;
	font-size: small;
	}

form {
	position: relative;
	margin: 0;
	padding-top: 5px;
	}


/* MIEsitC - Min Height Fast Hack  */

/* --- Content Boxes --- */

#column1 .content_box_top {
	height: 30px;
	width: 560px;
	margin: 0;
	padding: 0;
	}

#column1 .content_box_top[class] {
	background: url(../../images/content_box_top.png) bottom left no-repeat;
	}

#column1 .content_box {
	float: left;
	width: 560px;
	margin: 0;
	padding: 0;
	}

#column1 .content_box[class] {
	background: url(../../images/content_box_bottom.png) bottom left no-repeat;
	}

#column2 .content_box_top {
	height: 30px;
	width: 285px;
	margin: 0;
	padding: 0;
	}

#column2 .content_box_top[class] {
	background: url(../../images/content_box_small_top.png) bottom left no-repeat;
	}

#column2 .content_box {
	width: 285px;
	margin: 0;
	padding: 0;
	height: 100%;
	}

#column2 .content_box[class] {
	background: url(../../images/content_box_small_bottom.png) bottom left no-repeat;
	}

.content[class] {
	position: relative;
	margin: 0;
	padding: 1px 25px 30px 25px;
	}

#column1 .content {
	min-height: 400px;
	/* MIEsitC - Min-Height Fast Hack */
	height: auto !important;
	height: 400px;
	/* End MIEsitC */
	overflow: auto;
	}

#column2 .content {
	max-height: 700px;
	min-height: 425px;
	/* MIEsitC - Min-Height Fast Hack */
	height: auto !important;
	height: 425px;
	/* End MIEsitC */
	width: 250px;
	overflow: auto;
	} 

#pageid_media #column2 .content {
	height: 400px;
	width: 250px;
	overflow: auto;
	} 

/* --- Dividers --- */

.divider {
	color: #CCCCCC;
	}

#footer .divider {
	font-size: 12px;
	color: #000;
	}

hr {
	height: 2px;
	margin: 0;
	padding: 0;
	border: none;
	color: #F4F4F4;
	background: #F4F4F4;
	}

/* --- Error Box --- */

.error {  
	color:#FF0000; 
	}
/* 
==============================
2.1 Structure
==============================
*/

#container {
	position: relative;
	width: 960px;
	margin: 0;
	padding: 0;
	text-align: left;
	}

#error {
	background: #FF0000;
	}

#header {
	position: relative;
	height: 185px;
	}

#main {
	position: relative;
	}

#nav {
	position: relative;
	float: left;
	height: 50px;
	margin: 0 0px 20px 0;
	padding: 0 20px 0 0;
	}

#nav_bkg {
	position: absolute;
	top: 195px;
	height: 60px;
	padding: 0;
	margin: 0;
	width: 100%;
	}

	#nav_bkg[id] {
		background: url(../../images/nav_bkg.png) top left repeat-x;
		}

#column1 {
	position: relative;
	float: left;
	margin: 0 10px 0 0;
	padding: 10px;
	}

#column2 {
	position: relative;
	float: left;
	margin: 0 0 0 -10px;
	padding: 10px;
	}

#footer {
	position: relative;
	clear: both;
	margin-left: -90px;
	padding-top: 5px;
	color: #000000;
	font-size: x-small;	
	text-align: center;
	line-height:140%;
	}


/* 
==============================
3.1 Header
==============================
*/

#logo {
	position: absolute;
	top: 7px;
	left: 85px;
	height: 180px;
	width: 355px;
	}

#logo[id] {
	background: url(../../images/logo.png) top left no-repeat;
	}

#promo {
	position: absolute;
	top: 0;
	right: 20px;
	color: #FFFFFF;
	width: 300px;
	margin: 0;
	padding: 0;
	}

#promo[id] {
	background: url(../../images/content_box_promo_bottom.png) bottom left no-repeat;
	}

#promo .content {
	position: relative;
	margin: 15px 0px 10px 25px;
	}

#title_latest_sermon {
	width: 150px;
	height: 20px;
	}

#title_latest_sermon[id] {
	background: url(../../images/title_latest_sermon.png) top left no-repeat;
	}

#title_mlist {
	width: 150px;
	height: 20px;
	margin-top: 10px;
	cursor: pointer;
	}

#title_mlist[id] {
	background: url(../../images/title_mlist.png) top left no-repeat;
	}


/* 
==============================
3.2 Footer
==============================
*/
	
#footer a{
	color:#000000;
	text-decoration: none;
	}

#footer a:hover {
	color:#FFFFFF;
	text-decoration: none;
	}

#footer p {
	margin: 0;
	padding: 0;
	}

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

#nav {
	position: relative;
	}

#nav .divider {
	height: 50px;
	width: 50px;
	text-indent: -7777777px;
	background: url(../../images/nav_divider.png) top left no-repeat;
	}

/* --- Structure --- */

#nav ul {
	margin: 10px 0 0 20px; 
	padding: 0; 
	list-style-type: none;
	}

#nav_primary li {
	display: block;
	float: left;
	margin: 0; 
	padding: 0;
    list-style: none;
	}

#nav_primary a {
	text-indent: -5000px;
	position: relative;
	float: left;
	padding: 0 0 0 10px;
	height: 45px !important; 
	/* Causes horiz scroll problems width: 100%; */
	}

#nav_primary a:hover {
	background-position: 0px -50px;
	}

body#pageid_services #nav_services a, body#pageid_life_groups #nav_life_groups a, body#pageid_media #nav_media a,
body#pageid_teachings #nav_teachings a, body#pageid_discipleship #nav_discipleship a, body#pageid_kingdom #nav_kingdom a,
body#pageid_lord_done #nav_lord_done a, body#pageid_home #nav_home a, body#pageid_contact #nav_contact a{
	background-position: 0px -50px;
	cursor:default;
	}

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

#nav_services a{
	background: url(../../images/nav_services.png) top left no-repeat;
	width: 85px;
	}

#nav_life_groups a{
	background: url(../../images/nav_life_groups.png) top left no-repeat;
	width: 115px;
	}

#nav_media a{
	background: url(../../images/nav_media.png) top left no-repeat;
	width: 170px;
	}

#nav_teachings a{
	background: url(../../images/nav_teachings.png) top left no-repeat;
	width: 93px;
	}

#nav_discipleship a{
	background: url(../../images/nav_discipleship.png) top left no-repeat;
	width: 120px;
	}

#nav_kingdom a{
	background: url(../../images/nav_kingdom.png) top left no-repeat;
	width: 100px;
	}

#nav_lord_done a{
	background: url(../../images/nav_what.png) top left no-repeat;
	width: 150px;
	}

#nav_home a{
/*	background: url(../../images/nav_home.png) top left no-repeat; 
	width: 60px; */
	text-indent: 0;
	position: absolute;
	top: 20px;
	right: 0px;
	}

#nav_contact a{
/*	background: url(../../images/nav_contact.png) top left no-repeat;
	width: 70px; */
	text-indent: 0;
	position: absolute;
	top: 35px;
	right: 0px;
	}

#nav_logout a{
/*	background: url(../../images/nav_logout.png) top left no-repeat; */
	position: absolute;
	top: 50px;
	right: 0;
	text-indent: 0;
	color: #FF0000;
	}

/* 
==============================
5.1 Content: Home
==============================
*/

#pageid_home #column1 h1 {
	font-size: 20px;
	font-family:"Trebuchet MS", Helvetica, Arial, sans-serif;
	}


#pageid_home #column2 h1 {
	font-size: ;
	}





/* 
==============================
6.1 Tabs
==============================
*/

.container .tabs {
	position: absolute;
	top: 40px;
	left: 20px;
	}

.tabs ul {
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
	}

.tabs li {
	float: left;
	margin: 0 0 0 -25px;
	padding: 0 0 0 20px;
	list-style: none;
	/* background: url(../../images/tabs_left.png) top left no-repeat; */
	}

.tabs li a {
	display: block;
	position: relative;
	padding: 22px 20px 15px 5px;
	color: #000000;
	font-size: 14px;
	/* background: url(../../images/tabs_right.png) top right no-repeat; */
	}

/* --- States ---*/

.tabs li a:hover {
	color: #FF3300;
	}

.tabs li.selected a {
	color: #FF3300;
	font-weight: bold;
	cursor: default;
	}

.tabs li.selected {

	}

/* 
==============================
3.1 Titles
==============================
*/

h1.title {
	height: 50px;
	text-indent: -7777777px;
	}

#column1 h1.title {
	width: 550px;
	}

#column2 h1.title {
	width: 225px;
	}

#title_media {
	margin: 0 0 15px 0;
	}

#title_media[id] {
	background: url(../../images/title_media.png) top left no-repeat;
	}

#title_sermons {
	margin: 0 0 15px 0;
	}

#title_sermons[id] {
	background: url(../../images/title_sermons.png) top left no-repeat;
	}

#title_life_groups[id] {
	background: url(../../images/title_life_groups.png) top left no-repeat;
	}

#title_teachings[id] {
	background: url(../../images/title_teachings.png) top left no-repeat;
	}

#title_discipleship {
	margin: 0 0 15px 0;
	}

#title_discipleship[id] {
	background: url(../../images/title_discipleship.png) top left no-repeat;
	}

#title_feature_testimony {
	margin: 0 0 15px 0;
	}

#title_feature_testimony[id] {
	background: url(../../images/title_feature_testimony.png) top left no-repeat;
	}

#title_news {
	margin: 0 0 15px 0;
	}

#title_news[id] {
	background: url(../../images/title_news.png) top left no-repeat;
	}

#title_what[id] {
	background: url(../../images/title_what.png) top left no-repeat;
	}

#title_kingdom[id] {
	background: url(../../images/title_kingdom.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; 
------------------------------------------------------------------------------------------
*/