/* 
  -------------------------------------------------
  CSS Style Sheet for Listening to Whispers
  Copyright 2005 Edie Jane Eaton
  Website development by www.pageturnerdesigns.com
  -------------------------------------------------
*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {  
	margin: 0; 
	padding: 0; 
	border: 0; 
}

/* hide from IE mac \*/ 
html {
	min-height: 100%;
	margin-bottom: 1px;
}
/* end hiding from IE5 mac */

body {
	background-image:  url(body_bg.jpg);
	background-repeat: repeat-x;
	font-size: 100.01%;
	font-family:  Verdana, Arial, Helvetica, sans-serif;
	color: #56373C;
	background-color: #82594E;
}

#wrapper {
	margin: 0 auto;
	width: 712px;
	font-size: 80%;
	background-image:  url(wrapper_bg.jpg);
	background-repeat: repeat-y;
}

#header {
	background-image:  url(header_bg.jpg);
	background-repeat: no-repeat;
	height: 175px;
}

#innerwrapper {
	background-image:  url(bridging_slice.jpg);
	background-repeat: no-repeat;
}

#leftcol {
	float: left;
	width: 200px;
	margin-left: 24px;
}

#leftcol h2 {
	color: #F3E0AB;
	font-family:  Arial, Helvetica, sans-serif;
	padding: 3px 3px 5px;
	margin-top: 14px;
	font-weight: normal;
}

#leftcol h3 {
	color: #F3E0AB;
	font-family:  Arial, Helvetica, sans-serif;
	padding: 3px 3px 0px;
	margin-top: 12px;
	font-weight: normal;
}

#leftcol p {
	color: #F3E0AB;
	font-family:  Arial, Helvetica, sans-serif;
	padding: 3px;
	font-weight: normal;
	margin-top: 0px;
}

#content {
	width: 446px;
	margin-left: 240px;
	background-image:  url(tofu.jpg);
	background-position: right bottom;
	background-repeat: no-repeat;
	padding-bottom: 1px;
}

h1 {
	font-family:  Verdana, Arial, Helvetica, sans-serif;
	font-size: 130%;
	padding: 16px 0 10px;
}

h2 {
	padding: 6px 0;
}

p {
	margin: 10px 6px 10px 0;
	line-height: 125%;
}

ul li {
    margin: 0 0 0 12px;
}

.showfaq {
	display: block; 
	padding-left: 12px;
}

.hidefaq {
	display: block;
}

a:link, a:visited {
	text-decoration: underline;
	color: #7A3E39; 
}

a:hover, a:focus {
	color: #65652F;
}

#footer {
	background-image:  url("footer_bg.jpg");
	background-repeat: no-repeat;
	height: 55px;
	margin-left: 0px;
	clear: both;
}

#footer p {
	font-family:  Arial, Helvetica, sans-serif;
	font-size: 95%;
	float: right;
	color: #F3E0AB;
	padding: 5px 24px 0 0;
}

.left {
	float: left;
	border: 1px solid #56373C;
	margin: 5px 10px 2px 0;
}
.right {
	float: right;
	border: 1px solid #56373C;
	margin: 5px 0px 2px 10px;
}
.logos {
	margin: 5px 0px 5px 0;
}

.reg {
	font-size: 85%;
	vertical-align: top;
}

.special {
	background-color: #CABB90;
	color: #56373C;
	font-weight: bold;
	display: block; }

.separate {
	color: #56373C;
	font-weight: bold;
	display: block;
	border-top: 4px solid #CABB90;
	margin-top: 16px; }
	
.event {
	font-weight: bold;
	color: #65652F; }

.date {
	font-weight: bold;
	color: #7A3E39; }
		
/* The following selectors keep floats from overflowing out of their parent elements. This is done by generating a character within the parent but after the float, so that the parent must expand to hold the generated character, appearing to contain the floats in the process. */
.clearfix:after {
	content: "."; /* This dot is the actual content that will be appended to the end any div this class is applied to. */
	clear: both; /* Makes the generated content appear after the floats. */
	height: 0; /* Sets its height to zero so it doesn't show. */
	visibility: hidden; /* Sets its visibility to hidden so it doesn't show. */
	display: block; /* Overwrites the default inline display of the generated content. Needed because only blocks can have clear set on them. */
}
.clearfix {
	display: inline-block; /* Makes it work in MacIE. MacIE does not support generated content but will automatically contain a float if the container has this display property. */
}
/* The first selector below makes it work in WinIE. WinIE does not support generated content, but will automatically contain a float if the container has a width or height assigned. "height: 1%" can be used because WinIE will not honor this height and will expand the div to whatever height necessary to show the content. */
/* The second selector below overwrites the inline-block display used to help MacIE. */
/* Hides from MacIE \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from MacIE */

form {
	font-size: 1.0em; /* Sets font size smaller than default. */
}
/* Groups related questions together. */
fieldset {
	margin: 1em 0;
	padding: 1em 1em 1em 0; 
}
/* Labels what its fieldset is about. */
legend {
	padding: 0.2em 0.4em 0.2em 0.0em;
	font-weight: bold;
	color: #56373C;
}
/* Used to create questions - a label-input pair or, in the case of checkboxes and radio buttons, several label-input pairs that are related. */
form div {
	float: left;
	width: 15em; /* Sets width of label-input pairs. Needed to keep IE from expanding the divs and dropping the left col */
	margin: 0.5em 1em 0.5em 0;
	position: relative;
	z-index: 200;
}
label {
	display: block; /* Makes label display on line above input rather than to its left. However, this makes IE drop the left col if you don't include a width on the div which holds the label */
	font-weight: bold;
}
/* Used on divs which contain more than one label-input pairs, or in other words, questions with checkboxes or radio buttons. */
.multiple {
	float: none; 
	width: auto;
}
.multiple label {
	display: inline;
}
input, textarea {
	border: 1px solid #82594E;
	background: #F8F8F2;
}
/* Keeps IE from displaying background around checkboxes and radio buttons. */
.multiple input {
	border: none;
	background: none;
}
form p {
	margin: 0.8em 0 0.2em 0;
}
.click {
	border: 1px solid #82594E;
	background-color: #CFC099;
	color: #56373C;
	font-weight: bold;
}
/* 
  -----------------------------------
  PopMenu Magic Styles
  -----------------------------------
*/
#p7PMnav, #p7PMnav ul {
	border-top: 1px solid #A38232;
	margin: 0;
	padding:0;
	font-family: Arial, Helvetica, sans-serif;
}
#p7PMnav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #A38232;
	background-color: #65652F;
}
#p7PMnav ul {
	z-index: 10000;
}
#p7PMnav a {
	display: block;
	text-decoration: none;
	padding: 4px 8px 4px 2px;
	color: #F3E0AB;
	border-top: 1px solid #65652F;
	border-right: 1px solid #65652F;
	border-bottom: none;
	border-left: 1px solid #65652F;
	line-height: 1;
}
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus,
#p7PMnav .p7PMon, #p7PMnav .p7PMon:hover, 
#p7PMnav .p7PMon:active, #p7PMnav .p7PMtrg:hover {
	color: #F8F8F2;
	background-color: #A38232;
	letter-spacing: 0.01px;
	border-top: 1px solid #A38232;
	border-right: 1px solid #A38232;
	border-left: 1px solid #A38232;
}
/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark, #p7PMnav .p7PMmark:hover {
	color: #F8F8F2;
}
/* ------ the trigger link styles ------- */


/*the normal trigger link */
#p7PMnav .p7PMtrg, #p7PMnav .p7PMtrg:active {
	background-image:  none;
	background-repeat:	no-repeat;
	background-position: right center;
}
/* the active trigger link style */
#p7PMnav .p7PMon, #p7PMnav .p7PMon:hover {
	background-image:  none;
	background-repeat:	no-repeat;
	background-position: right center;
	background-color: #A38232;
	color: #F3E0AB;
}
/*the submenu classes */

#p7PMnav .p7PMhide {
	left: -9000px;
	border: 0;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav {
	width: 200px;
}

/* 2nd and subsequent Submenu widths */
#p7PMnav ul {
	width: 210px;
}

.signup a {
	background-image:  url(signUp.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}
.signup a:hover, .signup a:active, .signup a:focus {
	background-image:  url(signUp_over.gif);
}