/*======================================================================
  Diaphresh » site-wide CSS
  © 2007 WildernessPros Marketing, LLC
  Bryan Pack
========================================================================
  core page layout & structure
----------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
}

body {
	font: 76% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	color: #000000; /* [c]: black */
	background-color: #566C11; /* [c]: Green */
}


#page {
	margin: 16px auto;
	background: url(gfx/page-bg.gif) repeat-y left;
	width: 800px;
  text-align: left;
}

#main {
	clear: both;
}

#content,
#sidebar {
  display: inline;
  float: left;
}

#content {
	width: 530px;
	margin-left: 252px;
	padding-bottom: 2em;
}

#sidebar {
	width: 228px;
	margin-left: -774px;
}

#footer {
	clear: both;
}

/*======================================================================
  page header
----------------------------------------------------------------------*/

#header {
  padding-top: 171px;
  background: url(gfx/header.jpg) no-repeat center top;
  overflow: hidden;
  height: 0 !important;
  height /**/: 171px;
}

#subheader {
  padding-top: 8px;
  background: url(gfx/sidepanel-top.gif) no-repeat left top;
}

/*--------------------------------------
    menu (horizontal bar)
......................................*/

#subheader .menu {
	float: right;
	display: inline; /* fixes IE float doubled-margin bug */
  list-style: none;
	margin-top: -8px;
	margin-right: 10px;
}
#subheader .menu li {
	float: left;
	margin: 0 2px;
	background: #566C11 url(gfx/subhead-tab-bl.gif) no-repeat left bottom; /* [c]: Green */
}
#subheader .menu li a {
	display: block;
	border-top: 3px solid #566C11; /* [c]: Green */
	padding: 0 0.5em;
	line-height: 1.5em;
	font-weight: bold;
	text-decoration: none;
	color: #D3D9BF; /* [c]: Green20% */
	background: url(gfx/subhead-tab-br.gif) no-repeat right bottom;
}
#subheader .menu li a:hover {
	border-color: #F68933; /* [c]: Orange */
  color: #FFFFFF; /* [c]: white */
}

/*======================================================================
  page content
------------------------------------------------------------------------
                                 ::  common elements  ::
......................................................*/

.clearfloats {
	clear: both;
}

.moniker {
  font-weight: bold;
  color: #566C11; /* [c]: Green */
}

/*--------------------------------------
    common block elements
......................................*/

#content h1, #content h2, #content h3, #content h4 {
  font-style: normal;
  font-weight: bold;
}
#content h1 {
  margin-bottom: 0.25em;
  font-size: 2.5em;
  color: #F68933; /* [c]: Orange */
}
#content h2 {
  margin: 1em 0 0.5em;
	border-bottom: 1px solid;
  font-size: 1.75em;
  color: #798A41;  /* [c]: Green75% */
}
#content h3 {
  margin: 0.5em 0 0.25em;
  font-size: 1.5em;
  color: #A0AD75; /* [c]: Green50% */
}
#content h4 {
  margin: 0.75em 0 0.25em 1em;
  font-size: 1.25em;
  font-style: italic;
  color: #B9C298; /* [c]: Green35% */
}
#content p {
  line-height: 1.25em;
  text-indent: 1.5em;
}

#content hr {
	clear: both;
	margin: 1em 0;
}

/* .................................. */

#content .highlight,
#content .highlight-error {
	clear: both;
  margin: 1em 0;
  border: 2px solid;
  padding: 1em 20px;
}
#content .highlight {
	background: #E5EADB url(gfx/content-divider.gif) repeat-x top; /* [c]: Green10% */
  color: #000000; /* [c]: black */
	border-color: #566C11; /* [c]: Green */
}
#content .highlight-error {
  font-weight: bold;
  background-color: #FFFF99;
  border-color: #990000;
  color: #990000;
}

#content .highlight h3 {
  color: #566C11; /* [c]: Green */
}
#content .highlight p {
	margin: 1em 0;
	text-indent: 0;
}
#content .highlight a:hover {
  background-color: #D3D9BF; /* [c]: Green20% */
}


/*--------------------------------------
    links: regular inline
......................................*/

#content a {
  text-decoration: none;
  font-weight: bold;
  color: #798A41 /* [c]: Green75% */;
  border-bottom: 1px dotted;
}
#content a:hover {
  color: #004108 /* [c]: DkGreen */;
  background-color: #E5EADB; /* [c]: Green10% */
  border-bottom: 2px solid #F68933; /* [c]: Orange */
}


/*--------------------------------------
    img elements
......................................*/

#content img {
}
#content img.hidden {
	border: 0;
	float: none;
	display: inline;
}

#content img.lflt,
#content img.rflt {
	margin: 1em;
	display: block;
}
#content img.lflt {
	float: left;
	margin-left: 0;
}
#content img.rflt {
	float: right;
	margin-right: 0;
}

#content .highlight img {
	float: left;
	border: 2px solid #566C11; /* [c]: Green */
	margin: 0 1em 10px 0;
}

#content a:hover img {
	background-color: #F68933; /* [c]: Orange */
}

#content img.featured,
#content img.featured-logo {
	display: block;
	border: 6px solid #566C11; /* [c]: Green */
	margin: 1em auto;
	text-align: center; /* for IE 5.x */
}
#content img.featured-logo {
	border: 0;
}


/*--------------------------------------
    list elements
......................................*/

#content ul {
	list-style-type: square;
	margin: 1em 2em;
}
#content ul li {
	margin: 0.5em 0;
}
#content ul ul {
	list-style-type: circle;
	margin: 0.5em 1.5em;
}
#content ul ul li {
	margin: 0;
}

/*  . . . . . . . . . . . . . . . . . */

#content ol {
	margin: 2em;
}
#content ol li {
	margin: 0.5em 0;
}

/* .................................. */

#content dl dt {
	margin: 1em 0 0.5em;
	font-weight: bold;
  color: #004108; /* [c]: DkGreen */
}

#content dl dd {
	margin: 0.5em 2em 1em 1em;
	line-height: 1.25em;
}



/*--------------------------------------
    table elements
......................................*/

table { font-size: 100% } /* for IE5 (to force td/th size cascading) */

#content table {
	border-collapse: collapse;
	margin: 0 auto 2em;
	border: 2px solid #566C11; /* [c]: Green */
	background-color: #E5EADB; /* [c]: Green10% */
}

#content table caption {
	margin: 1.5em auto 0;
	padding: 0.75em 1em 0.5em;
	background: #D3D9BF url(gfx/content-divider.gif) repeat-x top; /* [c]: Green20% */
	font-size: 1.2em;
	font-weight: bold;
	color: #566C11; /* [c]: Green */
}

#content table tr {
	border-top: 1px solid #566C11; /* [c]: Green */
}
#content table col {
	border-left: 1px solid #566C11; /* [c]: Green */
}
#content table .thdesc {
	border: none;
	color: #004108; /* [c]: DkGreen */
}

#content table tr.theaders,
#content table col.theaders {
	border: none;
}

#content th,
#content td {
	padding: 0.25em 0.5em;
	text-align: center;
}
#content td.empty {
	background-color: #A0AD75; /* [c]: Green50% */
}
#content td {
	background-color: #FFFFFF;
}

.whitetable {
 border: none;
 }
/*------------------------------------------------------
                                    ::  product list  ::
......................................................*/

#content .product {
}
#content .product p {
	text-indent: 0;
}
#content .product ul {
	margin-left: 2em;
}
#content .product ul li {
	margin: 0.25em 2em;
	line-height: 1.25em;
}

#content .product img {
	float: left;
	margin: 0 1em 1em 0;
	border: 4px solid #566C11; /* [c]: Green */
}

/*--------------------------------------
    purchase now direct
......................................*/

#content .purchase {
	clear: both;
	margin: 1em 0;
	padding: 0.75em 0.5em 0.5em;
	border-bottom: 2px solid #566C11; /* [c]: Green */
	font-size: 1.2em;
	font-weight: bold;
	text-indent: 0;
	text-align: right;
	background: #E5EADB url(gfx/content-divider.gif) repeat-x top; /* [c]: Green10% */
	color: #004108; /* [c]: DkGreen */
}
#content .purchase img.pixel {
	border: 0;
}
#content .purchase .price {
	color: #F68933; /* [c]: Orange */
}

#content form.addcart,
#content form.addcart div {
	margin: 0;
	display: inline;
}
#content form.addcart input {
	margin: 0;
	padding: 0;
}

/*------------------------------------------------------
                                          ::  f.a.q.  ::
......................................................*/

#content dl.faq {
}
#content dl.faq dt {
  margin: 1em 0 0.5em;
	padding-top: 16px;
  padding-left: 48px;
  text-indent: -10px;
	font-size: 1.2em;
	font-weight: bold;
  background: url(gfx/faq-q.gif) no-repeat left top;
  color: #F68933; /* [c]: Orange */
}
#content dl.faq dd {
	margin-bottom: 2em;
}


/*------------------------------------------------------
                             ::  contact information  ::
......................................................*/

#content .address,
#content .phone {
	margin: 1.25em 0;
	text-align: center;
	text-indent: 0;
	font-size: 1.25em;
}

#content .address .moniker {
  color: #F68933; /* [c]: Orange */
	font-size: 1.25em;
	line-height: 1.25em;
}

#content .phone {
	font-weight: bold;
  color: #004108; /* [c]: DkGreen */
}


/*------------------------------------------------------
                  ::  location addresses (retailers)  ::
......................................................*/

#content dl.locations dt {
  margin: 1.5em 0 0 1em;
  font-weight: bold;
  color: #F68933; /* [c]: Orange */
}
#content dl.locations dd {
  margin: 0 0 1.5em 2em;
}
#content dl.locations dd .note {
  margin: 0.5em 2em 0.5em -0.5em;
  font-size: 0.9em;
	color: #004108; /* [c]: DkGreen */
}

/*------------------------------------------------------
                                    ::  testimonials  ::
......................................................*/

#content div.testimonial {
  margin: 2em 0;
  padding-top: 2em;
  background: url(gfx/content-divider.gif) repeat-x center top;
  font-style: italic;
}
#content div.testimonial blockquote {
  margin: 1em;
  font-style: normal;
}
#content div.testimonial img {
	float: right;
	margin: 0 0 1em 1em;
}
#content div.testimonial cite {
  display: block;
	clear: both;
  margin-top: 1em;
  text-align: right;
  font-style: normal;
  color: #798A41; /* [c]: Green50% */
}

/*------------------------------------------------------
                             ::  User-Feedback Forms  ::
......................................................*/


#content form.user {
  margin: 2em 0;
  padding: 6px;
  border: 2px solid #004108; /* [c]: DkGreen */
  background-color: #566C11; /* [c]: Green */
}
#content input, #content textarea {
  padding: 2px;
}


/*--------------------------------------
    field sets
......................................*/

#content form.user fieldset {
  margin: 5px 0;
  border: 1px solid #004108; /* [c]: DkGreen */
  padding: 10px;
  background-color: #E5EADB; /* [c]: Green10% */
}

#content form.user legend {
  margin: 3px;
  border: 2px solid #004108; /* [c]: DkGreen */
  padding: 3px 1em;
  font-weight: bold;
  background-color: #D3D9BF; /* [c]: Green20% */
}

/* .................................. */

#content form.user .instruction {
  margin: 5px 0;
  font-size: 0.9em;
  text-align: right;
  color: #004108; /* [c]: DkGreen */
}

/*--------------------------------------
    fields
........................................
... field rows .......................*/

#content form.user .field {
  padding: 2px 0;
  /*line-height: 2em;*/
  clear: both;
}
#content form.user .field:hover {
  background-color: #D3D9BF; /* [c]: Green20% */
}
#content form.user .required {
  background-color: #B9C298; /* [c]: Green35% */
}
#content form.user .required:hover {
  background-color: #A0AD75; /* [c]: Green50% */
}

/* - error indicators - */

#content form.user .formerror {
  text-indent: 0;
  font-weight: bold;
  color: #990033;
}

#content form.user .error {
  background-color: #CC9966;
}
#content form.user .error:hover {
  background-color: #CC6666;
}

#content form.user .error .msg {
  margin: 1px 10px 2px 80px;
  padding: 2px 0.5em;
  text-indent: 0;
  font-size: 0.8em;
  font-weight: bold;
  background-color: #FFFF99;
  color: #990033;
}
#content form.user .error:hover .msg {
  background-color: #FFFFCC;
}

/*. field labels .....................*/

#content form.user label {
  float: left;
  width: 90px;
  margin-right: 5px;
  text-align: right;
}
#content form.user .required label {
  font-weight: bold;
}

/*. field controls/inputs ............*/

#content form.user .field input,
#content form.user .field textarea {
  width: 260px;
  background-color: #FFFFFF;
}
#content form.user .field input:focus,
#content form.user .field textarea:focus {
  border: 2px solid #F68933; /* [c]: Orange */
  background-color: #FFFFE5;
}

/*--------------------------------------
    form submission
......................................*/

#content form.user div.submit {
  margin-top: 5px;
  border: 1px solid #004108; /* [c]: DkGreen */
  padding: 5px;
  text-align: center;
  background-color: #B9C298; /* [c]: Green35% */
}
#content form.user input.submit {
  height: 2em;
  padding: 0 1em;
}


/*======================================================================
  sidebar items
----------------------------------------------------------------------*/

#sidebar {
}

#sidebar .panel {
	margin: 0 5px 12px 31px;
}
#facebook {
	width:180px;
	height:118px;
	padding:0px;
	margin:0px;
	background-image:url(http://www.diaphresh.com/imgs/bkgd.jpg);
	background-repeat:no-repeat;
	border:none;
	text-decoration:none;
	outline:none;
	border: 5px solid #556D1B;
	-moz-border-radius: 6px 6px 6px 6px;
	-webkit-border-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
}
#facebook img {
	width:59px;
	height:59px;
	margin:55px 0px 0px 62px;
	border:none;
	outline:none;
	text-decoration:none;
}
/*--------------------------------------
    menu (vertical panel)
......................................*/

#sidebar .menu {
  list-style: none;
	margin-bottom: 12px;
  padding: 12px 5px 12px 31px;
  background-color: #566C11; /* [c]: Green */
}
#sidebar .menu li {
	display: inline;
}
#sidebar .menu li a {
  display: block;
	margin: 2px 0;
  padding: 0.25em 0.5em;
  line-height: 1em;
  height: 1em;
  color: #004108; /* [c]: DkGreen */
	background: #E5EADB; /* [c]: Green10% */
  font-weight: bold;
  text-decoration: none;
}
#sidebar .menu li a:hover {
	background: #FFFFFF;
  color: #F68933; /* [c]: Orange */
}

/*  nested sub menu
......................................*/

#sidebar .menu ul {
  list-style: none;
  padding-left: 1em;
}
#sidebar .menu ul li a {
  font-size: 0.75em;
  font-weight: normal;
  color: #FFFFFF; /* [c]: white */
  background: #566C11; /* [c]: Green */
  border-bottom: 1px solid #D3D9BF; /* [c]: Green20% */
}
#sidebar .menu ul li a:hover {
  color: #004108; /* [c]: DkGreen */
	background: #D3D9BF; /* [c]: Green20% */
}
/*------------------------------------*/



/*======================================================================
  page footer
----------------------------------------------------------------------*/

#footer {
}
#footer p {
	padding: 212px 0 1em;
	text-align: center;
	font-size: 0.8em;
	background: #566C11 url(gfx/footer.jpg) no-repeat center top; /* [c]: Green */
}
