/* ------------------------------- 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-right: 13px;
	}

.external {
	background: url(../images/externalLink.gif) no-repeat right center;
	}

.pdf {
	background: url(../images/pdfLink.gif) no-repeat right center;
	}

/* 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/clock.gif) no-repeat left;
}

p {
	margin: .5em 0;
	}

/* strong and em tags will be dk violet */
h4, em {
	color:#606;
	}

/* massage.htm: conditions and massage types are hidden until user clicks on "more" link */
#moreConditions, #moreTypes {
	display: none;
	}

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: #ffc;
	color: #000;
	margin: -1px;
	font: .8em 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 {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 14.5em; /* this width is set to make sure navigation items don't wrap to 2 lines */
	height: 1012px; /* height is set to height of background image */
	padding-right: 26px; /* right padding makes room for purple curve background */
	background: #066 url(../images/navSpine.gif) no-repeat top right;
	}

#navWrapper, #navWrapper a {
	color: #ffc;
}

#navWrapper .external {
	background: url(../images/externalLinkCream.gif) no-repeat right center;
	}

/* the only image in navWraper is the company logo */
#navWrapper #logo {
	width: 12em;
	max-width: 192px;
	padding: 1em 0 0 .5em;
}

#giftCert {
	text-align: center;
	font: italic 1.2em "Times New Roman", Times, serif;
	border: outset;
	padding: .6em 0;
	margin: 2em 1.5em 0 1em;
	width: 8em;
}

#copyright {
	position: absolute;
	width: 19em;
	right: 54px;
	top: 57em;
	font-size: .7em;
	text-align: right;
	padding-bottom: 10px;
	}
	
/*These styles format the main navigation bar, which is actually an un-ordered list*/
#navWrapper ul {
	margin: 2em 0 2em 5px;
	padding: 0;
	list-style: none;
}
	
#navWrapper li {
	display: inline; /* fixes extra vertical space with internet explorer */
	}
	
#navWrapper ul a:link, #navWrapper ul a:visited, #navWrapper ul a:active {
	display: block;
	line-height: 1.8em;
	text-decoration: none;
	border-bottom: none;
	padding-left: 7px;
	}
	
#navWrapper ul a:hover {
	font-weight:bold;
	text-decoration:none;
	border-bottom:none;
	}
	
/*The following highlights the current page in Main Navbar*/
#home #mainNav .home a, #first #mainNav .first a, #physicians #mainNav .physicians a, #map #mainNav .map a, #massage #mainNav .massage a, #contact #mainNav .contact a, #about #mainNav .about a {
	cursor:default;
	font-weight: bold;
	background: url(../images/circles.gif) no-repeat left center;
	}

/* ------------------------------- 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: absolute;
	top: 5px;
	left: 17em;
	width: 75%;
	height: 6.5em;
	overflow: hidden;
	text-align: center;
	color: #606;
	}

/* 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: absolute;
	top: 7em;
	left: 17em;
	width: 75%;
	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: 18.5em;
	float: right;
	display: inline;
	background: url(../images/secContentSpine.gif) no-repeat left top;
	margin: 30px 0 0 0; /*top margin pushes the div down a bit on the page */
	padding: 0 0 0 40px; /* left padding makes room for purple curve background */
}

/* these sections are for to FAQ data definition list, only displayed when user clicks the question */
dt.faq {
	margin: 10px 0;
	color: #606;
	border-bottom: 1px dotted;
	}
	
#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: inside;
	margin: 0;
	padding: 0;
	}

/* 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 */
