/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

.custom .sidebar h3 {
background-color:;
color:#800517;
font-family:Helvetica,Verdana,Arial,sans-serif;
font-size:14px;
text-align: center;
border-bottom: .1em #cccccc solid;
font-variant:normal;
padding:6px;}

.custom #header { border-bottom:none;
height:115px;
padding-top:0;
padding-bottom:0;
background:url("http://parrotcreek.com/wordpress/wp-content/themes/thesis_16/custom/images/ice-brookhdr.jpg")
center left no-repeat; }

.custom #content_box {background-color:#F5F5F5;}
.custom #content {background-color:#fff;}


/* STORE CSS */

/* Store page 1 columns*/

/* Paypal button formatting correction*/

.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}


#store-head {
  text-align: center;
  border-bottom: .1em #cccccc solid;
}

#store-col-left {
  /*border: 3px red solid;*/
  float: left;
  width: 11em;
  min-height: 120em; 
  
}

#store-col-right{
 /*border: 3px blue solid; */
  border-left: .1em #cccccc solid;
  float: right;
  width: 83%;
   
  
}

#store-footer {
  border-top: 5px gray double;
  float: left;
  clear: both;
  width: 100%;
  text-align: center;
}

/* store vert nav.css */
/* unindent entire list */
#store-vert-nav ul { 
 margin-left: 1.5em;
}

#store-vert-nav {
  margin-top: 10px;


}

/* set li as buttons */
#store-vert-nav li {
  list-style-type: none;
  border-top: 1px black solid;;
  width: 11em;  height: 2em;
  background-color: #efefef;
  text-align: center;
  margin-left: -1.6em;


}

/* display anchors as buttons */ 
#store-vert-nav a {
  color: black;
  text-decoration: none;
  display: block;
font-size: .8em; line-height: 2.4em; 

}

/* flash white on anchor hover */
#store-vert-nav a:hover {
  background-color: white;
}

/* collapse menus */
#store-vert-nav li ul {
  display: block;
}

/* show submenus on hover */
#store-vert-nav li:hover > ul {
  display: block;
  margin-left: 0em;
}
/* Store-col-right horizontal list*/

#store-col-right li { 
         margin-top: 30px;
         margin-left: 20px;
         margin-right: 20px;
         list-style-type: none;
 }

/* Store text CSS*/
#product-window li { height: 18em; background-color: #cccccc; border: black solid 1px; margin-bottom: 30px; }
#product-pic img{ margin-right: 10px; float: left; }
#product-name { color: red; font: bold 1.2em;}
#product-description { font: left; padding: 6px; }
#product-price { font: 1.3em red; }
