/* ------------------------------- File Information--------------------------------- */
/*	Creator: Krista Ehlers, www.designedbykrista.com 
	Purpose: Cascading Style sheet for online display styles
	Date: January, 2007
	Site Owner: Bothell Integrated Health 
	Site URL: www.massageprovider.com */

/* ------------------------------- typography -------------------------------------- */
/* Links will be dark violet with a dotted underline - underline will become solid when
	you mouse over link */
a:link, a:visited {	
	color: #606;
	text-decoration: none;
	border-bottom: 1px dotted;
	}

a:hover, a:active {
	border-bottom-style: solid;
	}

/* special links are given a small icon to warn users of their content: 
	an arrow to show leaving site, 
	an "A" to show PDF download */	
.external, .pdf {
	padding: 0px;
	background: none;
	}

/* Heading 1 Used for company name only */
h1 {
	text-align: center;
	margin: 0;
	padding: 0;
	font: normal 2.5em "Times New Roman", Times, serif;
	}

/* Heading 2 is for page titles, shown at the top of primaryContent section */
h2 {
	font-weight: bold;
	font-size: 2em;
	color:#066; /* because this is a navigation aid, color matches teal of navWrapper */
	margin: 0;
	}
	
h3 {
	font-size: 1.15em;
	margin: 1em 0 .1em 0;
	}

#map h3 {
	margin-bottom: 0px; /*put text closer on map page to make directions fit better */
	}

#mapToBih {
	float: right; /* a special id allows this to be hidden on handheld.css */
	}

/* gives extra padding to paragraphs on the contact.htm page, making room for icons to the left */	
#address, #phone, #fax, #hours {
	padding: 10px 0 10px 40px;
	}

#address {
	background: url(../images/envelope.gif) no-repeat left;
}

#phone {
	background: url(../images/phone.gif) no-repeat left;
}

#fax {
	background: url(../images/fax.gif) no-repeat left;
	line-height: 2.5em;
}

#hours {
	background: url(../images/hours.gif) no-repeat left;
}

p {
	margin: .5em 0;
	}

/* strong and em tags will be dk violet */
h4, em {
	color:#606;
	}

img {
	border: none;
	}

/* blockquotes are primarily used for testimonials, located in secondaryContent */
blockquote {
	color: #606;
	margin: 1em 0;
}

blockquote .last {
	display: block;
	text-align: right;
	font-style: italic;
}

/* ------------------------------- body ---------------------------------------- */
/* Removes margins to prevent white "gutter" around window, sets font to Verdana ~10pt,
	black text on cream background */
body {
	background-color: #fff;
	color: #000;
	margin: 0;
	font: 10pt Verdana, Geneva, Arial, Helvetica, sans-serif;
	}

.clear {
	clear:both;
	}

/* ------------------------------- navWrapper ------------------------------------ */
/* navWrapper is a left-side, vertical div that contains the logo, the navigation, and the
	copyright block. Background is teal with cream text. */
#navWrapper {
	display: none;
	}

/* ------------------------------- branding -------------------------------------- */
/* branding div is a horizontal div along the top right of the page. It contains the company
	name as well as phone number, and hours. Text is violet on cream.*/
#branding {
	position: relative;
	width: 100%;
	text-align: center;
	color: #606;
	padding: 10px;
	}

/* This span covers the hours, just below company name */
#branding span {
	font-size: .9em;
	}

/* this paragraph is just above the company name */
#branding p {
	font: italic bolder 2em "Times New Roman", Times, serif;
	margin: 0 0 -7px 0; /* negative bottom margin moves this closer to company name below it */
	padding: 0;
	}

/* ------------------------------- primaryContent -------------------------------- */
/* primaryContent is a square div covering the lower right area of the page. It holds the  
	main page text, as well as a smaller div for secondaryContent. */
#primaryContent {
	position: relative;
	width: 100%;
	padding-bottom: 10px; /* to make sure anchor underlines show if they are on the last line of text*/
	}

/* ------------------------------- secondaryContent ----------------------------- */
/* secondaryContent is a smaller div on the right side of the page, containing text that has
	special importance on each page. The text is cream on a violet background */    
#secondaryContent {
	width: 18em;
	float: right;
	background: none;
	margin: 30px 0px 0px 10px; /*top margin pushes the div down a bit on the page */
	padding: 10px;
	border: 1px dotted #606;
}

/* these sections are for to FAQ data definition list, only displayed when user clicks the question */
dt.faq {
	margin: 10px 0;
	}
	
#a1, #a2, #a3, #a4 {
	display: none;
	text-align: left;
	font-style: italic;
	margin: 0 0 0 15px;
	}
	
/* This removes bullets and padding for lists in SecondaryContent (home, massage, about).*/
#secondaryContent ul {
	list-style: none;
	padding: 0;
	margin: 0;
	}

#massage #secondaryContent ul {
	list-style: inside;
	}

/* On the massage.htm, the last bullet in the list is a link for "more items" and shouldn't
	have a bullet */
li.last {
	list-style: none;
	}

/* ----------------------------- Table Layout ------------------------------------ */
/* there are no tables on this site */
	
/* -----------------------------Form Layout--------------------------------------- */
/* there are no forms on this site */

