/* 
---------------------------------------------------------------------------------------------------------
AUSTRALIA

PART 1 : Overall standard layout components
	1.1 Main layout components 
	1.2 Navigation Components
	1.3 Footer 
PART 2: Common content formatting
	2.1 Text
	2.2 Links  & special button links 
	2.3 Content
	2.4 Specials
PART 3 : Specific pages with specific layout and formatting needs 
	3.1 Plone Template related
	3.2 Home page
	3.3 Experience meditation
	3.4 Thought for today 
	3.5 Calendar 
	3.6 Mailinglist
	3.7 Sitemap 
	3.8 Locations near you page styles
	3.9 Feedback page 
	3.10 FAQ
	
---------------------------------------------------------------------------------------------------------
*/


/* -------------------
Comment on how to use: 
----------------------
- the code marked with "permanent - do not touch unless really necessary or wanted" is the essential code to make the layout stand and contains most of the positioning CSS - little changes here would very likely break parts if not the full layout; if  needed some of these settings can be adapted by using overruling statements in the 'customizable sections'.
- the code in the customized sections is adaptable as the name says - it allows to modify the 'skin' of the layout and even if this code would be totally omitted the foundation of the layout should still stand.
- to allow maximum flexibility as much formatting and 'skin' related code has been added to  the 'adaptable' areas - for font colouring, background colours etc. this is quite easy, however for spacing with margins and paddings some initial choices might have been made in the permanent areas as these seemed the best starting point for most of the layouts which are going to be made available - if needed they can be overruled but be especially carefull with containers set to 100%, as adding borders or padding to these areas  tend to easily break the layout in IE6; to avoid a maximum of hacks for this browser a point of awareness is to set margin/padding/border on the containing divs in stead of doing so directly on the container set to 100%.
- each page will receive a default id for the body tag, something like <body id="typeA">, with a matching name for the choosen template in Plone for this specific page ; this happens automatically and will trigger off the provided CSS for the page. If needed one can however provide another ID for a specific page - this can be done through the Plone management pages - such an approach may be the only solution to some complexer design issues, where pages and containers need to be addressed very specifically.
- the code has been divided into 3 logical parts for layout, common content and specific pages; this means that some css selectors will be repeated in two or even all 3 parts or in several subsections... and at the same time some selectors will be repeated in both the permanent and customized areas of each section....  however in this way it should be easier to find one's way throughout the code and allow a methodological approach - special attention is needed towards the order of the declarations ; this is often a good starting point when debugging - the firebug addon for FF is definitely a good help too if no other CSS editor is available 
- bottlenecks, traps and dangerous point have explaining comments
- the pure "hacks" to make the code work in IE7,IE6 (and IE5, but partially as this browser can be considered dead) have been added to special stylesheets IE6.css, IE7.css which are detected by conditional comments in the xhtml - if there's a need for extra hacks in a layout, then be sure to checkout these stylesheets too and add or overrule declaration there as well.
- the print.css takes on board all css but makes header and all navigation areas unvisible when printing - also all borders have been removed as well for printing (well leaving aside IE6 probably) - for new pages / templates this css file needs to be adapted asper the needs as well.

*/


/* 
---------------------------------------------------------------------------------------------------------
PART 1 : Overall standard layout components
---------------------------------------------------------------------------------------------------------
*/


/* ----------------------- 
1.1 Main layout components
--------------------------*/ 


/* permanent - do not touch unless really necessary or wanted */

body {min-width:780px;	margin:0 0 10px 0; padding:0; text-align:center ;}/* considers IE 5 and IE6 quirck mode - keep image file names consistent*/
#container {max-width:933px; margin:0 auto; padding:0; text-align:left;}
#header {margin: 0 ; padding: 0; height: 122px; background: url(images/oz_header.jpg) left top  no-repeat;}
	#printLogo {display:none;visibility:hidden;}

#navigation {padding: 0; margin:0; background-color: #fff;}
	#toolboxWrapper {margin:0 0 5px 0;}
	#toolbox {padding: 5px 0 5px 10px;margin:0;	line-height:22px; height:22px;}	
	#mainMenu{list-style: none;	text-align: center;	clear:both; margin:0 ; padding:0;  position:relative; z-index: 10; width:auto; }/*IE7 needs auto width*/
	#trail {margin: 0; clear:both;}

#mainBody {clear:both; float:left; margin:0; padding:0; width:100%;} /*seems essential in this layout */
	#secondaryNavigation {float:left; margin:0;	width:199px; clear: both; padding:0;}
	#subMenu {padding:0; margin:0; border:none; width: auto;}
	#contentContainer {margin:0 0 0 199px; min-height: 525px; z-index: 1; position:relative; padding:0;}/* no margin bottom for IE7*/
	#contentContainerExtra {padding:0; margin:0; float:left; width:100%; position: relative;} /* width here needs 100% in this layout(liquid layout) - */
	#content {margin:0; padding:0; z-index:1; clear:both; position:relative; width:100%;} /* width needs to be 100% in your layout */
	
#footer {clear:both; padding:0; line-height:25px; height:25px; margin:0;}

.clearer{height: 1%; clear: both; background-color:transparent; overflow: hidden; }
span.clearer{display:block; height:1px; clear:both; margin-bottom:-1px;}/* used to force certain non floated containers to contain their floated children properly  */


/* Customized settings - layout */

body {background-color:#A7CB8E}
#container {background-color:#A7C07E;} 
#header {}
#navigation {}
	#toolboxWrapper {background:#77A64A; margin:0;}
	#toolbox {color:#e2e2e2;}
	#mainMenu {background: #fff; line-height:20px; height:20px; }
#footer {font-size: 0.8em; background:#77A64A; color:#fff;}


/* ----------------------
1.2 Navigation Components
----------------------- */		


/*toolbox - permanent - do not touch unless really necessary or wanted */	
			
#accessJumps {position:absolute;left:-9000px;font-size:0.7em;}
#searchForm, #languageForm {display: block;	float:left; margin: 0px 10px}
/*navigation*/
	#navigation input {height:14px;	position: relative;	float: left; line-height: 14px;}
	#navigation select {float: left;width: 14em;}
	#navigation label {display:block;float:left; padding: 1px 10px 0 0; line-height:16px;}
	input#searchText {width:14em;}
	#navigation #searchButton {position:relative;top:0px;height:18px;}
	/*#navigation #textSize {display:block; margin:1px 0 0 10px; width: 12em; float:right; line-height:18px; height:18px; padding:0;}*/
	#navigation #textSize {display:block; margin:1px 0 0 10px; width:11em; float:right; line-height:15px; padding:0;}
	
/* Customized settings - toolbox */

#searchForm {font-family:Verdana; color:#000; font-size:11px; padding-top:3px; font-weight:bold;} 
#navigation input {border:1px solid #D2D2D2; background-color: #FEF9F5; font-size:11px;}
#navigation select {background-color: #FEF9F5; font-size:11px; margin-top:-1px;} 
#navigation label {color:#000; font-weight:normal;}
#navigation #searchButton {background-color:#D2D2D2; color:#9A9B9D; font-weight:bold; margin-right:25px;}
	/*#navigation #textSize {color:#000; font-size:11px; padding-top:3px;}
	#navigation #textSize .smallTextSize {margin-left:7px;} *//*solves issue with spaces*/
#navigation #textSize {font-weight:bold; color:#000; font-size:0.85em; padding-top:3px;}
	#navigation #textSize a {text-decoration:none; color:#fff; padding-right:3px;}
	#navigation #textSize a:hover {color:#000;}
	#navigation #textSize .largeTextSize {font-size:1.5em;}
	#navigation #textSize .mediumTextSize {font-size:1.25em;}
	#navigation #textSize .smallTextSize {font-size:1em; padding-left:7px;}
	
/* main menu - permanent - do not touch unless really necessary or wanted */

#mainMenu li {margin: 0; padding: 0;  float: left; display: block; text-align: center; position: relative;}
	#mainMenu #home {margin:0; width:15%;}
	#mainMenu #menu0 {margin:0; width:18%;}
	#mainMenu #menu1 {margin:0; width:21%;}
	#mainMenu #menu2 {margin:0; width:21%;}
	#mainMenu #menu3 {margin:0; width:24.8%;}

#mainMenu ul {padding:0; margin:0; list-style: none; z-index: 10; position: absolute; text-align: center; display: none; left:0;right:0;/* IE7*/ overflow:visible;width:auto;  -moz-opacity:0.9; opacity: 0.9;}/* IE 7 collapsing menu items... widht saves - filter:alpha(opacity=90) does not validate and moved to IE7.css */ 
	#mainMenu ul li{min-height: 1%;	padding:0;	margin: 0; float:none; width:auto;}

#mainMenu a {display: block;  margin:0; padding: 0; white-space:nowrap; height:1%;} /* height gives IE HasLayout - all links are blocks - reset margin/padding */
	#mainMenu li a {margin: 0; overflow: visible;white-space:nowrap; line-height:20px;}	
	#mainMenu li:hover ul {display:block;} /*IE doesn't get this: javascript menu */

/* Customized settings - main menu */

/*main menu*/
	#mainMenu li#home {margin-left:10px; /*border-right:1px solid #fff;*/} 
	#mainMenu li#menu0 {/*border-right:1px solid #fff;background:url(images/nav_seperator.jpg) top left no-repeat;*/ } /* separators */
	#mainMenu li#menu1 {/*border-right:1px solid #fff;background:url(images/nav_seperator.jpg) top left no-repeat;*/ }
	#mainMenu li#menu2 {/*border-right:1px solid #fff;background:url(images/nav_seperator.jpg) top left no-repeat;*/ }
	#mainMenu li#menu3 {/*background:url(images/nav_seperator.jpg) top left no-repeat;*/ width:23%;}
#mainMenu ul {/*border: 1px solid #fff;*/ border-top: 1px solid #030; margin-right:-1px;} /*original concept is border white around, here alternative: just black border on top to arrange for submenu area which opens when hovering */
	#mainMenu ul li {/*border: 1px solid #fff; border-bottom:none;*/ line-height:16px;/*IE needs line-height here too*/}
#mainMenu a {text-decoration:none; font-weight: bold; color: #000; font-size:12px; font-family: Verdana;} /* links main menu items */
	#mainMenu li a {text-transform:uppercase; }
	#mainMenu ul li a {border-bottom: 1px solid #003300; font-size: 10px;font-weight: bold;color: #000; background-color: #fff ; line-height: 16px;font-variant:uppercase; font-family: Verdana;}	/* links main submenu items */
	/* #mainMenu ul li.last a {margin: 0; padding: 0; border:none; /*border-bottom: 1px solid #fff;	} possible to get rid of black bottom border ?*/ 
	/*#mainMenu ul li:last-child {border-width: 1px 1px 1px 1px; padding: 0; margin: 0;} alternative expression not understood by IE*/
	#mainMenu li a:hover, #mainMenu li:hover {background-color: #E9B22F;color: #000;}
	#mainMenu li ul li a:hover {background-color: #E9B22F;color: #fff;}

			
/* trailer  - permanent - do not touch unless really necessary or wanted */

#countryIndicator {width:199px; float:left; border:none; margin:0; padding:0 0 0 20px; line-height:40px;}
#breadcrumbs {margin: 0 0 0 199px; padding: 0 0 0 20px; line-height:40px;}
#breadcrumbs span {	display:block;padding:0 5px 0 2px;}

/* Customized settings - trailer */
#countryIndicator {color:#ffffff; font-size: 12px; background: #77A64A ;padding:0; font-weight:bold;}
	#countryIndicator span {display:block; padding: 0 0 0 20px; }
#breadcrumbs {background-color:#77A64A; color:#fff; font-size:12px;} 
	#breadcrumbs a.crumbs{color:#fff;text-decoration:none;}
	#breadcrumbs a.crumbs:hover {color:#000;border-bottom:1px #000 dashed;}


/* secondary navigation - country navigation - permanent - do not touch unless really necessary or wanted */

/*  Customized settings - secondary navigation - country navigation */
			
#subMenu li {padding:0 0 0 20px; margin:0; color:#003300; list-style:none; background-color: #E9B22F; border-top:1px solid #fff;} 
	#subMenu li a {font-family: Verdana; color:#195000;padding:0; margin:0; background:#E9B22F;text-decoration:none; border-bottom:none; font-size:12px; font-weight: normal; display:block; line-height:40px; height:40px;} /* set lineheight & height for IE6 here - display block to hover over full button */
	#subMenu li a:hover {font-weight:normal;color:#fff;padding:0;margin:0;  background:none; text-decoration:none;}


/*  Quicklinks/Floaters   - Related Links - permanent - do not touch unless really necessary or wanted */

/* Customized settings -  Quicklinks/Floaters    */
ul#quickLinks {margin: 0;padding: 0;}
	ul#quickLinks li {list-style-type: none; margin: 0 0 4px 0; padding: 0; line-height: 14px;}
	ul#quickLinks li a {display: block;	width: 190px; padding: 5px 0;margin: 0; border:4px double #fff; font: 0.9em Verdana, Arial, Helvetica, sans-serif;	text-decoration:none;text-align:center;color: #34696F;font-weight:bold;letter-spacing: -0.09em;}
	ul#quickLinks li a:hover {color: #fff;	background:#65ACC2;	text-decoration:none;font-weight: bold;}



	
/* ------------------------------
1.3 footer - fully customizable
-------------------------------- */

#footer a {color:#fff;text-decoration: none;}
	#footer a:hover {color:#FDECC6;text-decoration: none;}
#copyright{float: left;	padding: 0 0 0 25px;}
#footerLinks{float: right;padding: 0 25px 0 0;}



/* 
---------------------------------------------------------------------------------------------------------
PART 2: Common content formatting - fully customizable
---------------------------------------------------------------------------------------------------------
*/


/* ---------
2.1 Text 
----------*/

body {font-size:0.8em; font-family: Verdana;} /* don't use pt, use px or em */
td {vertical-align: top;}
#content {color:#534F4F;}
p {color:#534F4F; margin:0; font-size:0.85em; line-height: 100%; padding: 0;} /* don't use pt, use em */
h1,h2 {font-family:Verdana;}
h2 {font-size:1.1em; padding:0; margin:15px 0 3px 20px; font-weight:normal; color:#534F4F;font-weight:bold;}
h3 {color:#534F4F;font-size:0.9em;font-weight:normal;line-height:normal;margin:15px 0 3px 0;padding:0;text-align:justify;text-transform:none;}
h4 {font-size: 0.7em;font-weight: bold; margin:-8px 0 10px 20px; padding: 0; color:#E82691;}
form {font-size:0.7em;}


/* ------------------------------
2.2 Links  & special button links
---------------------------------*/

a {color: #5AA3C3;}
	a:hover {color: #B35438;text-decoration: underline;}
a img {border:none;}

#content a {margin:0; color:#5AA3C3;text-decoration:none;border-bottom:1px #5AA3C3 solid; font-weight:normal;}
	#content a:hover {color:#000;border-bottom:1px #000 solid; font-weight:normal;}
	#content a.buttlink {font-weight: bold;	color:#CC9900; text-decoration:none; padding:7px; border:1px #D7B85B solid;	background:#FDEA9F;
	font-size:100%;	font-family:verdana,arial,"sans-serif";	 text-align:center; margin:10px 0;}
	#content a.buttlink:hover{background-color:#D7B85B; border:1px solid #FDEA9F; color:#fff; text-decoration:none; font-weight: bold;	}
	#content a.buttlinknormal {font-weight: bold;border: 0;padding: 0;}
	#content a.buttlinknormal:hover{color: #ae587f; border-bottom: 1px #ae587f solid;}
#content p.more {clear:both; margin:0 20px;}

/*print link*/

#content #print{clear:both;	border-top: 1px solid #E9B22F;	padding: 2px 0 0 0;	margin: 15px 0 0 0;	visibility: visible; line-height:24px;
	height:24px; background-color:#fff;} /*default is hidden set visibility: visible; to change - IE7 needs height */
	#print a{background: url(images/print.gif) no-repeat left center;padding: 0 0 0 25px; font-size: 0.85em; color: #333;border: 0;display:block;float:right;margin-right:20px;}
	#print a:hover{border-bottom: 0;color: #C63200;}	


/* -----------
2.3 Content
------------ */

#contentContainer h1 {float:left; color:#CC9900; font-size:1.6em; margin:0 0 -7px 0; padding:0;	width:auto; font-weight:normal;}
	#contentContainer h1 span {margin:0; padding:0 5px 0 20px; z-index:1; display:block; line-height:42px;}
#content h2.first {margin: 0 0 10px 20px; padding-top:15px;}

#content ul {margin:10px 20px 10px 30px; width:auto; padding:0; color:#534F4F;}

#content p {margin:0 20px 15px 20px; line-height:1.5em;} /*make this stable overall */
	#content p.first {padding-top:20px;}
	#content p span.quote {color:#6B4E3E;}
	#content p.quote {color:#6B4E3E;}
	

.hrule{/*height: 20px;margin: -10px 20px 20px 20px;padding: 0;background-image: url(images/hr.gif);background-repeat: repeat-x;background-position: bottom; display:none;*/} /* is this content going to be removed from system ?*/

hr,.hrule {border:none; border-bottom:1px solid #8B814C; margin:10px 10px ; padding:0; clear:both; text-decoration:none;}
hr {margin:0 0 10px 10px; height:1px;}

#content img {border:0px solid #8B814C; padding:0px;} 
	#content img.firstfloatright {float:right; margin:22px 20px 20px 20px;} 
	#content img.floatleft {float:left;margin:10px 30px 20px 20px;}
	#content img.floatright {float:right; margin:2px 20px 20px 30px;}
	#content img.flushtr {border:none;display:inline;float:right;margin:0 20px 10px 20px;}
	#content img.flushl {border:none; display:inline; float:left; margin:10px 20px 10px 20px;}
	#content img.flushr {border:none;display:inline;float:right;margin:10px 20px 10px 20px;}

.split  {border-bottom:1px dashed #6B4E3E; border-top:1px dashed #6B4E3E; color:#6B4E3E; font-size:0.85em; font-weight:bold; margin:40px 10px 25px 10px; padding:0;} 



/*----------
2.4 Specials
------------ */

/* general layout concept*/
#contentContainerExtra , #content {background-color:#fff;}
#content .imgLeft, #content .imgRight {float:left; display:block; margin:20px 0; padding:0 20px;}
#content .imgRight {float:right;}
#content .imgcentre {position:absolute; top:150px; left:100px; }
#content .imgRight2 {float:right; display:block; padding:0 0 0 20px; margin:0}
#content .imgLeftFree {position:absolute; top:20px; left:20px; }
#content .imgRightFree {position:absolute; top:20px; right:20px;}
#content .imgLeftFree2 {position:absolute; top:0px; left:0px;}
#content .imgRightFree2 {position:absolute; top:125px; right:0px; z-index:18;}
#content .imgRightFree3 {position:absolute; top:-30px; right:0px; z-index:20;}

#content p, #content li {line-height:1.5em; font-size:0.85em;}
h2+h3 {margin-top:5px;}

.topicType1, .topicType2 {padding:0; margin:0; clear:both; width:100%; float:left; background:#fff; z-index:1; position:relative;} /*another way to clear,the browser compatible trick, but don't use padding here as width needs to be set to 100% and other wise layout breaks in IE - set padding on inner elements */
.topicType2 {padding:0; background:#77a64a; color:#fff;}
.topicType2 h3, .topicType2 p {color:#fff; margin-left:20px; }
.topicType1 h3, .topicType1 p {margin-right:15px;}

#content .topicType2 a {color:#00008B; border-bottom:1px solid #00008B;}
#content .topicType2 a:hover {color:#000; border-bottom:1px solid #000;}




/* 
---------------------------------------------------------------------------------------------------------
PART 3 : Specific pages with specific layout and formatting needs - Customizable unless noted differently
---------------------------------------------------------------------------------------------------------
*/

/* ---------------------------------------------
3.1 Plone Template layout related - Customizable
------------------------------------------------ */
/* specific code related to certain plone templates or page code for specific Plone templates only */

/* template A*/
/*#typeA #contentContainer {min-height:375px;} */
/*#typeA h1 {position:absolute; left:-9999px;}  for this template don't use main title, get it out of the way but keep it for accessibility, when css is off*/


/*courses page*/
.medCourses {height:293px;}
.foundCourse {height:198px;}
.posThinking {height:287px;}

/*retreat page*/
.retreatIntro {height:253px; padding: 0 0 0 300px; margin:0; z-index:20;}
.forEveryone {height:314px; padding: 0 300px 0 0; /*margin-top:279px;*/ z-index:20;} /*IE z-index on image alone is not enough*/
.empty {height:81px; background-color:#A7C07E;	z-index:1;}
.lifeStyle {background-color:#4f893f; height:192px;  padding: 0 0 0 300px;}
.costs {height:200px; padding: 0 300px 0 0;}
.retreatCenters {background-color:#4f893f; height:120px;}
#content .retreatIntro, #content  .forEveryone, #content .lifeStyle, #content .costs {width:auto;}

/*communities*/
.communities {border-top:solid 1px #A7C07E; margin:0 0 10px 0}
.communities h2 {background-color:#cfc156; padding:0 0 0 20px; margin:0; color:#fff; width:300px; line-height:25px; margin:15px 0 10px 20px; } 
.activities {height:333px;}
.environment {}
.health {}
.interfaith {}


/* template B*/
#typeB #content img {float:right; margin:0 15px 0 10px; padding:3px; display:block;}
#typeB #content h3 {margin:10px 15px 10px 20px; padding-top:5px;}

/* template C*/
#typeC #content img {border:none;}

/* template special 2 */
#special2 #content {width:93%;}	

/* template G */ 
#content #midknow {clear:both; margin:0; padding:10px;}
#knowtxt {clear:both;}
.kquotetxt {color:#9E4A04;font-size:0.7em;font-style:italic;font-weight:bold;line-height:175%;}
.quote {color:#6B4E3E;font-size:110%;font-style:italic;font-weight:bold;}
#sideknowledge {display:inline;float:left;margin:0 20px 20px 20px; width:200px;}
#content img.qstart {border:0 none;display:inline;float:left;margin:0 10px 0 0;}
#content img.qend {border:0 none;display:inline;float:right;margin:15px 10px 0 0;}
#typeG #content h2{margin: 0 20px 0 20px; font-size:0.9em;}
#typeG #content p.first {padding:0;}
#typeG #content h4 {margin:10px 0 0 20px; color:#927847; font-size:1em;}
#kquote img {background-color:transparent;}	

/* template K */ 
.heading3 {border-bottom:2px solid #77a64a; margin:0 20px 14px 20px; padding:20px 0 3px 0; position:relative;}
.heading3First {border-bottom:2px solid #77a64a; margin:0 0	14px 10px; padding:20px 0 3px 0; position:relative;}
	.heading3 h3, .heading3First h3 {background: url(images/right2.gif) no-repeat right top; color:#fff; display:inline; font-size:0.9em; font-weight:bold; margin:0;padding:5px 12px 4px 9px;}

/* ----------
3.2 Home page
------------- */

#homeView #content, #homeView #contentContainerExtra {background-color:#A7C07E;}
.welcome {height:369px; padding: 0 0 0 315px; width:auto;}
.RajaYogaMeditation {margin-top:157px; height:190px; }
#homeView p#print {/*position:relative; top:98px;*/ display:none;}
#homeView h1 {position:absolute; left:-9999px;} 

 
/*-----------------------
3.3 Experience meditation
--------------------------*/

#MeditationBoxes {float:left; margin:20px 0; width:100%;} /* IE7 needs width here - overal width and margin is subject of layout*/
.row {margin:0 20px 0 20px; clear:both;}

#whoami, #myhome, #innerpeace, #forgive, #peace, #stillness {background: no-repeat left top; height:140px; width:46.5%; margin:0 5px 20px 5px; padding:0 ;} /* common for all boxes - width & margin stretch the boxes, but layout may collapse */
	#whoami {background-image:url(images/whoami.jpg);}
	#myhome {background-image:url(images/myhome.jpg);}
	#innerpeace {background-image:url(images/innerpeace.jpg);}
	#forgive {background-image:url(images/forgive.jpg);}
	#peace {background-image:url(images/peace.jpg);}
	#stillness {background-image:url(images/stillness.jpg);}
	#whoami, #myhome, #innerpeace {float:left;}
	#forgive, #peace, #stillness {float:right;}

#MeditationBoxes h1 {background-image:none; float:none; border:none; margin:0; padding:0;}/* overruling some general h1 settings */
#MeditationBoxes .row h1 {margin:113px 0 0 0; padding:5px; color:#fff; text-align:center; font-weight:normal; font-size:1em;}
	#whoami h1, #whoami {background-color:#945F59;}
	#myhome h1, #myhome {background-color:#A26C21;}
	#innerpeace h1, #innerpeace {background-color:#2F5785;}
	#forgive h1, #forgive {background-color:#3E67AF;}
	#peace h1, #peace {background-color:#2C7853;}
	#stillness h1, #stillness {background-color:#5D5639;}

#whoami a, #myhome a, #innerpeace a, #forgive a, #peace a, #stillness a {color:#fff; border:0; font-weight:bold;}
#whoami a:hover, #myhome a:hover, #innerpeace a:hover, #forgive a:hover, #peace a:hover, #stillness a:hover {color:#fdea9f;	border:0; font-weight:bold;}

/* This is a total concept - only background images and font settings can be changed */
#experienceMeditation {float:left;margin: 0;padding:0;}
	#experienceMeditation ul {padding:0;list-style-type: none;clear:both; margin: 0;} /*IE7 does not allow to float this */
	#experienceMeditation li {padding:0;margin:7px ;display:block;float:left;height: 140px;line-height: 100%;}
	#experienceMeditation li a { text-align: center;margin: 110px 0 0 0;padding: 5px; display:block;}
#whoami, #myhome, #innerpeace, #forgive, #peace, #stillness {width:200px;}

/* customizable */
/* #meditationexp #contentContainer {min-height:725px;}  */ /* this is an issue with change of template ref removed this 4/1/2008 */
#experienceMeditation li a {font: 1.1em Arial, Helvetica, sans-serif; color:#fff; border:none;}
#experienceMeditation li a:hover {color:#000;border: none;}
#whoami{background: #945F59 url(images/whoami.jpg) 0 0 no-repeat;}
#myhome{background: #A26C21 url(images/myhome.jpg) 0 0 no-repeat;}
#innerpeace{background: #2F5785 url(images/innerpeace.jpg) 0 0 no-repeat;}
#forgive{background: #3E67AF url(images/forgive.jpg) 0 0 no-repeat;}
#peace{background: #2C7853 url(images/peace.jpg) 0 0 no-repeat;}
#stillness{background:#5D5639 url(images/stillness.jpg) 0 0 no-repeat;}



/* -------------------
3.4 Thought for today 
---------------------- */

/* This is a total concept - only background images and font settings can be changed */
#TFTcontact {display:block;float:right;width:70px;margin:10px 30px 0 0;}
#TFTcontact a {padding:0 3px;}	
#thoughtForToday {background-image:url(images/thought/day_image.jpg);background-position:center bottom;background-repeat:no-repeat;
height:500px;}

/* customizable */
#thoughtForToday p {color:#bb3c47;font-family:garamond,"Times New Roman",Times,serif;font-size:1.65em;font-weight:normal;line-height:1.1em;margin-left:14px;text-align:left;}
#thoughtForToday .firstCap {color:#bb3c47;float:left;font-size:4.5em;margin: -12px 0 400px 10px; padding: 0 2px 0 0;}

	

/* ------------
3.5 Calendar 
--------------- */

/* do not change */
table#calendar {margin: 7px 0 0 0 ; padding: 0;	border-collapse: collapse;}
	.cal_month {text-align: center;	height: 30px; vertical-align: middle; margin-bottom: 0;}
	.cal_month select {border: none;}
	.cal_month form {margin-bottom: 0px; margin-top: 3px; font-size:1em;}
	.cal_days td {width: 13%; text-align: center; height: 28px; padding: 6px 0 0 0;}
	.closeThisOut {display:block;text-align:right;margin: 0; }
#content .closeThisOut a:link, 
#content .closeThisOut a:visited {border:none; margin: 0;padding: 2px; text-align: center; text-decoration: none;}
#whatsOn #frame {margin:0;position: absolute; left: 30%; top:-70px; visibility:hidden;}


/* customizable */
#whatsOn #contentContainer {min-height:750px;}
#calendar {font-family: verdana, arial;}
.cal_month {background-color: #cfc156; color: #fff; font-weight: bold; font-size: 0.9em;}
.cal_month select {color: #2f6118;	font-weight: bold; background-color: #fff;}
.cal_dates td  {height: 112px; background-color: #fff; border: 1px #B4B4B4 dashed; border-top:none; text-align: right;	vertical-align: bottom;padding: 0;color: #DADADA;font-weight: normal;	font-size: 230%;color: #a1dfca;margin:0;}
#simpleCalendar .eventlink  { font-size: 11px; text-align: left } 
#content .cal_dates span {display:inline;padding: 0 3px 0 0;bottom:0;}
.notThisMonth {	color: #dadada;	}
.cal_days td {border-bottom: 1px #B4B4B4 dashed;border-right: 1px #B4B4B4 dashed; border-left: 1px #B4B4B4 dashed; color: #DB8C74;font-weight: bold;	font-size: 0.9em;}
.cal_days td.sat, .cal_days td.sun {color: #69C4CD;}

#content .hasEvent {background-color: #C5F0DB;text-align:left; margin:0;
padding: 2px; position:relative; height:108px;}
	#content .hasEvent span.dayEvent {position:absolute;color:#8CC1D1;
vertical-align:bottom;bottom:0;right:0;text-align:right;display:block;}
	#content .hasEvent .eventlink {display:block; margin:0 0 4px 0;}
	#content .hasEvent .eventlink a{font-size:9px; padding: 0;
margin:0; font-weight:normal;color:#000094;text-decoration:none;
border-bottom:1px solid #000094;

display:inline;vertical-align:top;line-height:11px;}
	#content .hasEvent .eventlink a:hover {font-size:9px; color:
#840000; font-weight:normal; border-bottom: 1px  dashed;}
	
#content .closeThisOut a:link, 
	#content .closeThisOut a:visited {color: #3392B2;font-size: 0.8em;background-color: #C5F0DB;}
	#content .closeThisOut a:hover {font-weight: bold;text-decoration: underline;}

/* Iframe Activity Popup - Customizable */
#frame iframe {height:520px; width:400px; clear:both;}
#iframe {background:none #fff; border: #83cad1 solid 3px; margin:0; padding:10px; text-align:left; min-width:350px; overflow:auto;} 
.ProgramDetail {border: #92dac2 solid 1px;margin: 0;background-color: #fff;	padding: 10px; width:auto; height: 470px;}
	.ProgramDetail .date {color: #83cad1;font-size: 1.0em;margin: 0;font-weight: bold;}
	.ProgramDetail .title {color: #d19f8e;font-size: 1.4em;	font-weight: bold;	margin-top: 0px;margin-bottom: 10px;}
	.ProgramDetail img {padding-top: 0px;padding-right: 10px;padding-bottom: 0px;padding-left: 0px;}
	.ProgramDetail p,
	.ProgramDetail td,
	.ProgramDetail th, .ProgramDetail span {font-size: 0.8em; line-height: 1.3em; color: #9f9f9f;margin: 0; padding: 0;}
	.ProgramDetail table {margin: 10px;clear: both;}
	.ProgramDetail th {color: #83cad1;text-align: left;font-weight: normal;}



/* ------------
3.6 Mailinglist 
--------------- */

#mailingIframe {background:none #fff; position:relative; min-height:400px; width:100%;} /* iframe html file uses this ID xhtml */

body#mailinglistcontainer {background-color:#fff; margin:auto 20px; min-width:300px; max-width:650px; width:100%; margin:20px; color:#969696; line-height:1.5em; padding:0; text-align:left;} /*overwrite background used in parent theme pages - body prefix is important here */
	body#mailinglistcontainer #contentContainer {background:none; background-color:transparent;} /*overwrite background used in parent theme pages*/
	body#mailinglistcontainer p {color:#42390a; font-size:1em; margin-top:7px; padding-left:2px;}
	body#mailinglistcontainer h1 {font-size:100%;} /*issuee with confirming messages */
	body#mailinglistcontainer form {font-size:0.9em; margin:10px 0; color:#42390a;} /*overriding basic setting for forms in theme*/
		body#mailinglistcontainer input, body#mailinglistcontainer textarea {margin:0 10px; padding:0; color:#42390a;}
		body#mailinglistcontainer #submit, body#mailinglistcontainer input[type="submit"] {background:#FDEA9F; border:1px #D7B85B solid; color:#CC9900; padding:5px; margin: 10px 0 10px 45px; font-weight:bold; width:22em;}
		body#mailinglistcontainer #submit:hover, body#mailinglistcontainer input[type="submit"]:hover {color:#fff; font-weight:bold; background:#D7B85B;}

		
/* redo of mailinglist with current/old form  */
body#mailinglistcontainer font.required, body#mailinglistcontainer br {display:none;}
body#mailinglistcontainer li {list-style:none;}	
body#mailinglistcontainer p a {margin:0 0 25px 45px; font-family:Verdana; font-weight:bold; font-size:0.9em; color:#5AA3C3}
body#mailinglistcontainer p a:hover {color:#000;}
body#mailinglistcontainer table, body#mailinglistcontainer td {margin:10px 0 0 0; padding:0;}
body#mailinglistcontainer ul.list {margin-top:10px;}


.poweredphplist {font-size:9px; font-variant:small-caps; font-weight:normal; padding:0; margin:50px 0 0;}
	.poweredphplist a:link, .poweredphplist a:active, .poweredphplist a:visited {font-size:9px; font-variant:small-caps; font-weight:normal; color:#666666; text-align:center; text-decoration:none; padding:2px;}
	.poweredphplist a:hover {color: #d90501;}		

/* for future use, redo of mailingslist*/
/*	body#mailinglistcontainer form label {display:block;margin:0 0 0 35px; line-height:2em;}
		body#mailinglistcontainer form label.emailText {margin-left:0;}
	body#mailinglistcontainer p.unSubscribe {margin:0 0 25px 45px; font-weight:bold;}
		body#mailinglistcontainer p.unSubscribe a:hover {color:#d90501;}
	body#mailinglistcontainer p.private {background:url(images/lockSymbol.gif) no-repeat left center; padding: 0 0 0 35px; line-height:2.2em;}
	body#mailinglistcontainer #submit, #mailinglistcontainer #reset {background:#e24c46; border:1px solid #9c0300; color:#fff; padding:5px; margin: 10px 0 10px 45px; font-weight:bold; width:18em;}
	body#mailinglistcontainer #submit:hover, #mailinglistcontainer #reset:hover {color:#d90501; font-weight:bold; background:#f0d742;}
*/	

/* ------------
3.7 Sitemap 
--------------- */


ul#sitemap {padding: 0 20px 20px 40px; margin: 0;font-size:1em;}
	#sitemap li {list-style: none;padding: 0 0 0 20px;margin: 0;background-image: url(images/folder_icon.gif);background-repeat: no-repeat;background-position: 0 0.3em;line-height: 2.0em;}
	#sitemap li ul{font-size: inherit;padding: 0 0 0 20px;margin: -3px 0 0 0;}
	#sitemap li ul li{font-size: inherit;padding: 0 0 0 20px;margin: 0;line-height: 1.8em;}



/* ----------------------
3.8 Locations near you 
------------------------- */

/* map image*/
#locationsIntro {margin: auto 20px;}
#map #locationsIntro img {border: 0; float:none; margin:20px 0 0 0;} /*becomes tricky here, overruling template setting 4/1/2008*/
#map #print {clear:both;}

/* form sections*/

/*adding template ID here is optional, as form is also used on home page, but that code is precede with #home - just to keep it clear and sure */
#map #addressForm {margin:20px 35px; padding:0 0 25px 0; float:left; width:35em;}
	#map #addressForm label {color:#534F4F; display:block; width:95px; line-height:22px; float:left; clear:left; padding:0; font-size:1.2em;}
	#map #addressForm select {float:left; font-size:1.2em; width:15em; border:#534F4F 1px solid; color:#36525d; height:18px; background-color: #fef9f5; margin:3px 0;}
		
		
/* result table */
#mapresults{font-size: 70%;color: #6B4E3E;line-height: 175%;margin: 20px 20px 20px 20px;padding: 0;border: 0;clear: both;}
	#mapresults td{vertical-align: top;padding: 10px 20px 10px 20px;border-bottom: 1px #DEA182 dashed;}
		#mapresults td.tdborderlast{border-right: 1px #DEA182 dashed;border-bottom: 0;}
		#mapresults td.tdborderlastcorner{border: 0;}
		#mapresults .tdborder{border-right: 1px #DEA182 dashed;}
	#mapresults #cityh{width: 8%;font-size: 100%;font-weight: bold;color: #922582;}
	#mapresults #address{width: 27%;font-size: 100%;font-weight: bold;color: #922582;}
	#mapresults #contactinfo{width:70%; font-size: 100%;font-weight: bold;color: #922582;}
	#mapresults .pinktxt{font-weight: bold;color: #E72691;}



/* -------------------------------
3.9 Feedback page 
---------------------------------- */
#contact {font-size:1em; margin:5px 0 30px 20px; float:left; color:#000;} /*no width here to avoid problems with IE6*/
	#contact label {width:7em; text-align:right; padding:0 10px 0 0; float:left; font-size:0.9em; line-height:1.5em;}
	#contact input, #contact textarea {margin:0; width:16em; border:1px solid #d7af38; padding:1px;}
	#contact #comments {width:25em; overflow:auto;} /* only FF not exactly as should? */
	#contact p {margin:20px 0 0 0;}
	#contact #submit, #contact #reset {color:#fff; font-weight:bold; font-size:0.95em; padding:5px;	background-color:#777;}
	#contact #submit {margin-left:8em; border-top:none; border-left:none; width:11em; float:left;}
	#contact #reset {margin-left:1em; border-top:none; border-left:none; width:5em; float:left;}
	#contact #submit:hover, #contact #reset:hover {color:#9c3f06; background:#fdea9f; cursor:pointer;}

/* old code 
table#contact{border: 0;padding: 0;margin: 0 0 0 5px;}
	table#contact input{height: 16px;	color: #36525D;	font-size: 70%;	border: 1px #DEA181 solid;	margin: 3px 0;}
	table#contact td{	vertical-align: top;	line-height:16px;}
	table#contact p{margin: 0 12px 20px 20px;}
	table#contact td.label{text-align: right;}
	table#contact #submit, table #contact #reset{height: 26px;font-weight: bold;color: #C63200;text-decoration: none;padding: 5px 9px 4px 10px;margin: 0 20px 0 0;background-color: #FCD7C5;border: 0;border-right: 1px #C63200 solid;border-bottom: 1px #C63200 solid;}
	table#contact textarea{width: 264px;height: 70px;color: #36525D;font-size: 70%;border: 1px #DEA181 solid;overflow: auto;}
*/


/* -------------------------------
3.10 FAQ
---------------------------------- */

#faq #content #faqList{margin:0 0 0 25px; padding:1px;} 
#faq #content ul {margin:10px;  font-size:1em;}/* change this to reset size for whole list*/
	#faq #content ul li {font-size:inherit; line-height:1.3em;}
	#faq #content #faqList > .faqTitle {font-size:0.95em; list-style-type:square; margin-top:15px;}  /* not all browsers understand*/
	#faq #content #faqList ul ul, #faq #content #faqList ul ul ul {list-style-type:disc;}
	#faq #content ul p {font-size:1em; margin:5px 0; line-height:1.3em;}
	
	

/* -------------------------------
3.11 EVENTS
---------------------------------- */

.cal {width:86px; height:105px; margin:6px 16px 16px 16px; background:url(images/datebg.gif) no-repeat;	float:right;}
	.calfirst {width:86px; height:105px; margin:22px 16px 16px 16px; background:url(images/datebg.gif) no-repeat; float:right;}

h3.eventtitlefirst {font-size: 1em; margin-top:16px; margin-bottom:0; font-weight:bold; margin:0 10px 0 10px ; padding-top:15px;}
h3.eventtitle {font-size: 1em; margin-bottom:0; font-weight:bold;}
#events h4 {font-weight:normal; font-size:1em;}

.date {margin:0 0 11px 11px; display: block; font-size:0.8em; color:#927847; font-weight:bold;}
.number {font-size:3em; color:#927847; display:block; margin:9px 4px 0 0; text-align:center;}
.month {font-size:1.7em; color:#333; display:block; text-transform:uppercase; margin:-6px 6px 0 0; text-align:center;}

