@charset "UTF-8";

#ProductDetailsImage {
    margin-right: 12px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 0px;
}




/* ~~~~~~~~~~~~~~~ CONTAINER STYLES ~~~~~~~~~~~~~~~ */
#container {
    width: 945px;  /* this is the width of the main slice minus the 9px of padding on each side */
    background: #FFF url(../images/container_back.jpg) repeat-y; /* repeat-y causes the image to repeat vertically */
    padding-left: 9px; /* due to the box model, this must be added to the width to create the width of the slice */
    padding-right: 9px; /* due to the box model, this must be added to the width to create the width of the slice */
    padding-bottom: 15px; /* this creates a little white space before the close of the page */
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* ~~~~~~~~~~~~~~~ HEADER STYLES ~~~~~~~~~~~~~~~ */
#header {
    background: #8F9184; /* this color should match the color your logo gradient ends on */
    padding: 0;
    margin: 0; /* do not add any margin on this selector or the slice on the #container below it will show */
}
#action {
    float: right;
    color: #FEF8EA;
    font-size: 160%;
    line-height: .8; /* this keeps the space around the call to action from pushing the navigation down when text size is increased */
    padding-right: 40px; /* don't use margin as it can cause the doubled float margin bug in IE */
    margin-top: 40px; /* this adjusts the positioning of the call to action in the header */
}    

#header ul {
    background: #787B6E url(../images/nav_bar.jpg) repeat-x left top;
    margin: 0;
    padding: 0;
    padding-left: 10px; /* creates alignment that matches the logo and navigation in the sidebar1 */
    line-height: 2.5; /* this creates the height of the nav bar */
    font-size: 95%;
}
#header li {
    list-style: none;
    display: inline;
    margin: 0;
}
#header li a {
    text-decoration: none;
    padding: 6px 20px 6px 10px; /* this padding fills out the button -- change the left and right padding to space the list items more, or less, apart */
    color: #FEF8EA;
    background: url(../images/nav_divide.gif) no-repeat right center; /* the circle image here divides the buttons visually */
    font-weight: normal;
}
#header li a.last { /* this should be placed on the last item in the list so there's no cirlce image to its right */
    background: none;    
}
#header li a:hover, #header li a:active, #header li a:focus { /* must be in this order and allows the hover style to be seen for keyboard navigators as well as mouse users */
    color: #000;
}
.home #home a, .about #about a, .contact #contact a, .cart #cart a, .checkout #checkout a { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
    font-weight: bold;
    color: #000;
}

/* ~~~~~~~~~~~~~~~ SIDEBAR1 STYLES ~~~~~~~~~~~~~~~ */
#sidebar1 {
    width: 210px; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0 10px 5px 10px; /* remember to add the padding on each side to the width to arrive at the space this div will take up in your layout */
    margin: 0;
}
#sidebar1 h1 {
    color: #2F1309;
    font-size: 24px;
    margin-top: 20px;
}
#sidebar1 h2 {
    color: #797B6F;
    font-size: 100%;
    margin-top: 50px; /* this creates the space between the navigation and the H2 element below */
}

#sidebarContent {
    padding-top: 0px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
	min-height:200px;
  	height:auto !important;
  	height:200px;

}
#sidebarContent h2 {
    font-size: 14px;
    font-weight: bold;
    margin-top: -5px;
}

#sidebar1 a {
	color: #7F0000;	
}


/* NOTE: sidebar1 navigation is contained in the SpryMenuBarVertical.css file */

/* ~~~~~~~~~~~~~~~ MAINCONTENT STYLES ~~~~~~~~~~~~~~~ */
#mainContent { 
    padding: 0 20px 0 20px; /* remember that padding is the space inside the div box (and is added to the total width) and margin is the space outside the div box */
    margin: 0; 
} 
#mainContent h1 {
    color: #AF2020;
    font-size: 24px;
    margin-top: 20px;
}
#mainContent h2 {
    color: #8F9184;
    font-size: 130%;
}
#mainContent h3 {
    color: #000;
    font-size: 110%;
}
#mainContent h4 {
    font-size: 100%;    
}

#mainContent .hdr1 {
	color: #AF2020;
	font-size: 110%;
	font-weight: bold;
}

/* ~~~~~~~~~~~~~~~ FOOTER STYLES ~~~~~~~~~~~~~~~ */
#footer {
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    text-align: center;
    width: 945px;
    padding: 20px 9px;
    margin: 0 auto;
    background: url(../images/container_bottom.jpg) no-repeat center top;
} 
#footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    color: #797B6F;
    font-size: 80%;
}

/* ~~~~~~~~~~~~~~~ MISCELLANEOUS CLASSES ~~~~~~~~~~~~~~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* ~~~~~~~~~~~~~~~ FEATURED PRODUCT CLASSES ~~~~~~~~~~~~~~~ */

.FeaturedCallout {
    margin: 22px;
    width: 200px;
    float: left;
}
.FeaturedCallout a {
    margin-left: 10px;
}

/* ~~~~~~~~~~~~~~~~~~ Contact Form Styles ~~~~~~~~~~~~~~~~~~~~~~~ */

.contactform p{
width: 300px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
border-top: 1px dotted gray;
height: 1%;
}

.contactform label{
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.contactform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}

.contactform textarea{
width: 250px;
height: 150px;
}

table#tableSearchResults {
margin: 0 auto;	
}

#tableSearchResults td {
padding-right: 8px;	
}

.tabularData td {
text-align: left;	
}

table.tabularData th, table.tabularData th a:link, table.tabularData th a:visited, table.tabularData th a:hover, table.tabularData th a:active  {
background-color: #000852 !important;	
color: white !important;
}

.tabularData h1 {
margin-top: 0 !important;	
}

#tableProductDetails {
margin: 0 auto;
}

#tableProductDetails td {
text-align: left;
}

#tableProductDetails h1 {
margin-top: 0;	
}


div#cartLinks {
margin: 3px 5px 0 0;
text-align: right;
font-size: 70%;
}

#checkout td {
text-align: left;	
}

table#checkout {
margin-bottom: 25px;	
}

table.tabularData, table.tabularData td, table.tabularData th {
    border: 1px solid #969696;
    border-collapse: collapse;
}

input.formButton {
background-color: #000852;
border-color: #969696;

}

table.tabularData th, table.tabularData th a:link, table.tabularData th a:visited, table.tabularData th a:hover, table.tabularData th a:active  {
    color: #FFFFFF;
    background-color: #8F9184;
}

p, ul, ol, dl { /* when using percentage font sizing, be aware that any of these elements nested in each other will decrease the font-size of the nested element accordingly. The rule that follows shows how to offset that */
    font-size: 80%;    
    color: #6e6f68;        
}


