/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background: #fff3c4 url(../assets/graphics/body_bg.jpg) repeat-x;
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.7em;
  line-height: 1.3em;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 20px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
#header h1 {
	color: #3671b5;
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1.3em;
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	text-align: right;
	padding: 40px 60px 0px 0px;	  
}

#header h2 {
position: absolute;
top: 50px;
left: 20px;
z-index: 5;
width: 179px;
height: 78px;
background: transparent url(../assets/graphics/logo.png) no-repeat;
text-indent: -9000px;
}
#header h2 a:link {
display: block;
width: 179px;
height: 78px;
}
/* Commonly used to style section titles. */
#outerWrapper #innerWrapper #contentWrapper #content h2 {
margin-left: -10px;
padding-right: 0px;
padding-left: 5px;
  color: #62a5cc;
  font-size: 1.9em;
  /*font-weight: normal;*/
  font-family: "Times New Roman", Times, serif;
	font-style: italic;
  line-height: 1.3em;
  letter-spacing: 1px;
}


#outerWrapper #innerWrapper #contentWrapper #content h2.title {
  background: transparent url(../assets/graphics/title_underline.jpg) no-repeat bottom right;
  padding-bottom: 15px;
}
#outerWrapper #innerWrapper #contentWrapper #content p {
  font-size: 1.2em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #0049a7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #0049a7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
color: #62a5cc;
  text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
position: relative;
z-index: 2;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 761px;
  background: #fff url(../assets/graphics/content_wrapper_bg.jpg) repeat-y;
}

#innerWrapper {
position: relative;
/*padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;*/
z-index: 20;
  background: transparent url(../assets/images/stones_flower.jpg) no-repeat 2px 100%;
 /* margin-top: -61px;*/
}

#outerWrapper #header {
  /*border-bottom: solid 1px #666;*/ /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 1.7em;
  line-height: 1em;
  padding: 40px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  height: 100px;
  background: transparent url(../assets/graphics/header_bg.jpg) no-repeat ;
  margin-top: -41px;
}
#outerWrapper #contentWrapper #mainNav {
position: relative;/*required to solve overlap of picture issue in ie6*/
  float: left;
  padding: 20px 10px 10px 10px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 180px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #innerWrapper #contentWrapper #mainNav ul {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style: none;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav ul li {
margin: 0px 0px 0px 10px;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a, 
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a:link {
position: relative;/*for ie6*/
  padding-left: 24px;
  line-height: 2em;
  font-size: 1.2em;
  display: block;
 /* width: 180px;*/
  background: transparent url(../assets/graphics/nav_bullet.jpg) no-repeat -24px 50%;
  }
 
  #outerWrapper #innerWrapper #contentWrapper #mainNav ul li a:focus,
  #outerWrapper #innerWrapper #contentWrapper #mainNav ul li a:hover,
   #outerWrapper #innerWrapper #contentWrapper #mainNav ul li a:active {
    background: transparent url(../assets/graphics/nav_bullet.jpg) no-repeat -24px 50%;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a.current,
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a:link.current,
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a:visited.current,
#outerWrapper #innerWrapper #contentWrapper #mainNav ul a:hover.current {
color: #0049a7;
 cursor: default;
 text-decoration: none;
   background-position: 0px 50%;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav div#practiceArea {
width: 150px;
margin-top: 15px;
margin-left: 20px;
border-top: #62a5cc 1px dotted;
border-right: #62a5cc 1px dotted;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav div#practiceArea ul{
margin-top: 10px;
margin-left: 30px;
border-left: #62a5cc 2px solid;
background-color: #fff;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav div#practiceArea p {
margin-left: 10px;
padding-left: 5px;
padding-right: 5px;
background-color: #fff;
}
#outerWrapper #innerWrapper #contentWrapper #mainNav div#practiceArea h2 {
margin-left: 10px;
margin-top: 5px;
  color: #62a5cc;
  font-size: 1.6em;
  font-family: "Times New Roman", Times, serif;
	font-style: italic;
  line-height: 1.2em;
  letter-spacing: 1px;
}

#outerWrapper #contentWrapper #content {
  margin: 0 0 0 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 30px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background: transparent url(../assets/images/ying_yang_sand.jpg) no-repeat bottom left;
}
#outerWrapper #innerWrapper #contentWrapper #content ul {
font-size: 1.2em;
}
#outerWrapper #innerWrapper #contentWrapper #content ul.address {
margin-left: 0px;
list-style:none;
font-weight: bold;
padding: 5px 5px 5px 5px;
width: 210px;
border: 2px solid #62a5cc;
background-color: #fff;
}
#outerWrapper #innerWrapper #contentWrapper #content ul.rightList {
margin-left: 230px;
}
#outerWrapper #innerWrapper #contentWrapper #content ul li {
margin-left: 20px;
}
#outerWrapper #innerWrapper #contentWrapper #content blockquote div.reflexology{
position: relative;
top: 10px;
left: -40px;
background: transparent url(../assets/graphics/feet_icon.png) no-repeat center left;
width: 35px;
height: 30px;
}
#outerWrapper #innerWrapper #contentWrapper #content blockquote div.nutrition{
position: relative;
top: 10px;
left: -40px;
background: transparent url(../assets/graphics/apple_icon.png) no-repeat center left;
width: 35px;
height: 30px;
}
#outerWrapper #innerWrapper #contentWrapper #content blockquote.nutrition {
}
#outerWrapper #innerWrapper #contentWrapper #content blockquote {
margin: 0px 50px 10px 10px;
padding: 3px 3px 3px 50px;
font-size: 1.2em;
border: 1px dotted #62a5cc;
}
#outerWrapper #innerWrapper #contentWrapper #content blockquote strong {
display: block;
text-align: right;
font-style: italic;
}
#outerWrapper #contentWrapper #content img {
border: 1px solid #cbd5eb;
}
.floatRight {
float: right;
margin-right: 15px;
}
.floatLeft {
float: left;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#credits,
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

#content_end {
	background: transparent url(../assets/graphics/bottom_curve.png) no-repeat top center;
	margin: 0 auto 0 auto;
	width: 100%;
	height: 35px;
}

#page_start {
position: relative;
	background: transparent url(../assets/graphics/top_curve_line.png) no-repeat bottom center;
	margin: 20px auto 0px auto;
	width: 100%;
	height: 21px;
	z-index: 10;
}


#sea_image {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 154px;
background: transparent url(../assets/images/sea.jpg) repeat-x;
z-index: 1;
}
 div#credits p {
 background-color: #fff;
 margin: 0 auto 0 auto;
 width: 738px;
 border: 1px solid #cbd5eb;
 padding: 2px 10px 2px 10px;
 margin-top: 60px;
 }
 div#credits p span#copyright a:link,
 div#credits p span#designedby a:link {
 font-weight: normal;
 color: #1445a1;
  font-size: 0.9em;
 }
 div#credits p span#copyright {
 width: 49%;
 float: left;
 text-align: left;
 }
 div#credits p span#designedby {
 width: 49%;
 float: right;
 text-align: right;
 }
 /* =Forms
-----------------------------------------------------------------------------*/

form {
	margin: 0px 30px 0px 0px;/*0px 30px 0px 0px*/
	padding: 0px 0px 0px 0px;
	font-size: 1em;
	width: 240px;
	float: right;
	clear: right;
}

form.form label {
	/*display: block;*/
	font-weight: bold;
	line-height: 1em;
	padding-top: 0px;
	padding-bottom: 2px;
}

html>body form.form label {
/*	line-height: 2em;*/
}

form.form input.input {
	margin: 0px 0px 0px 0px;
	padding: 2px 2px;
	border: solid 2px #62a5cc;
	background: #fff;
/*	color: #62a5cc;*/
	width: 225px;
}

html>body form.form input {
/*	margin: 3px 30px 3px 5px;*/
}

form.form textarea {
	margin: 0px 0px 0px 0px;
	width: 225px;
	height: 100px;
	padding: 2px 2px;
	border: solid 2px #62a5cc;
	background-color: #fff;
	/*color: #62a5cc;*/
}

html>body form.form textarea {
/*	margin: 3px 30px 3px 5px;*/
}

form.form input.submit {
	width: 230px;
	/*margin-right: 30px;*//*required for ie6 submit button positioning*/
}

/* Removes fieldset borders. even on Opea 7 */
fieldset {
  border: 1px solid transparent;
}