/*
 1.   general rules
 1.1  global reset
 1.2. block elements
 1.3. inline elements
 1.4. alignment classes
 1.5. floats
 1.6. miscellaneous classes
 2.   layout
 2.1. container
 2.2. header
 2.3. content
 2.4. footer
 */
/*************************************
 
 1. General rules
 
 **************************************/
/*---------1.1. global reset-------------*/
* {
    margin: 0px;
    outline: 0;
    font-size: 100%;
    font-family: inherit;
    text-decoration: none;
    list-style: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, select, option, optgroup {
    padding: 0px;
}

html, table.mainTbl {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
	font-family:Arial, Helvetica, sans-serif;
    font-size: 62.5%; /* 1em = 10px \ 1.1em = 11px \ 1.2em = 12px */
	background:url(../images/body.jpg) top left repeat;
	color:#719f80;
}

/*-------1.2. block elements----*/
h1 {
	color:#719F80;
	font-size:20px;
	font-weight:normal;
}

h1 b{
	font-weight:normal;
}

h1 b.catTitleColor2{
	color:#F7A9AE;
}


h1.catname{

}

h1.infoheading{
	margin-bottom:8px;
}


h2 {
}

h3 {
	font-style:oblique;
	font-weight:bold;
	margin-top:10px;
	font-size:11px;
}

h4 {
	color:#F7A9AE;
	font-size:14px;
	font-weight:normal;
	margin-bottom:10px;
}

h5 {
}

h6 {
}

p {
	color:#919396;
	margin-bottom:10px;
}

p.message{
	color:#F7A9AE;
}

blockquote {
}

noscript div {
    color: red;
    font-size: 12px;
}

hr {
    display: none;
}

/*--------------1.2.1 lists-------------*/
ul {
}

ul.contentlist{
	margin-left:25px;
	margin-bottom:10px;
}

ul.contentlist li{
	list-style:disc;
}


ol {
}

li {
}

dl {
}

dd {
}

dt {
}

/*------------1.2.2 forms-----------------*/
form {
}

form ol {
}

form li {
}

form dl dt {
    float: left;
    clear: left;
    width: 50%;
}

form dl dd {
    float: right;
    clear: right;
    width: 50%;
}

form  label {

    cursor: pointer;
	color:#7da88b;
}

fieldset {
    border: none;
}

legend {
}

input.textinput {
	border:1px solid #96d1a7;
	color:#7da88b;
}

imput.submitBtn {
}

input[ type = "submit" ], input [ type = "reset" ] {
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
}

select {
	border:1px solid #96D1A7;
	color:#719F80;
}

option {
}

optgroup {
}

textarea {
}

/*--------------1.2.3. tables-------------*/
table {
    border: none;
    border-collapse: separate;
    border-spacing: 0; /*when set to "0" cellspacing has no effect on tables */
}

tr {
}

td {
}

th {
}

/*----------1.2.4 padded divs------------*/
.pad1 {
	padding:15px 10px 0px 0px;
}

.pad2 {
}

.pad3 {
}

.pad4 {
}

.pad5 {
}
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
	color:#719f80;
}

a:hover, a:focus {
	color:#96d1a7;
}

a:visited {
}

a.important{
	color:#F7A9AE;
	font-weight:bold;
}

a img {
    border: none;
}

span {
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: oblique;
}

u {
    text-decoration: underline;
}

img {
    border: none;
}

/*-------1.4. alignment classes-------*/
.left {
    text-align: left;
}

img.left {
    float: left;
    clear: left;
}

.center {
    text-align: center;
}

img.center {
    margin: 0 auto;
    display: block;
}

.right {
    text-align: right;
}

img.right {
    float: right;
    clear: right;
}

/*-------------1.5. floats-------------*/
.leftfloat {
    float: left;
    clear: left;
}

.rightfloat {
    float: right;
    clear: right;
}

/*------1.5.1. clearing floats---------*/
/*clearfix*/
.clearfix:after, form li:after, form dl:after, form dt:after, form dd:after, #footer:after, #footer ul:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*end of clearfix*/

/*-------1.6. other classes------*/
div.pics{
	padding-bottom:25px;
}

div.pics div{
	display:block;
	padding:3px;
	background:#ffffff;
	border:1px solid #cbe8d3;
	margin:0px 10px 5px 0px;
}

#flashContent1{
	width:286px;
	height:257px;
	background:url(../images/pic1.jpg) center center no-repeat;
}


#flashcontent{
	margin:10px 0px;
}

.pink{
	color:#F7A9AE;
}
/************************************
 
 2. Layout
 
 *************************************/

/*------------2.1. container------------*/
#container {
	width:761px;
	margin:0 auto;
	font-size:10px;
}

#wrapper{
	background:#ffffff;
	padding:5px;
}
/*end of container*/

/*------------2.2. header---------------*/
#header{
	position:relative;
	height:109px;
	background:url(../images/header.jpg) top center no-repeat;
}

a#logo {
	display:block;
	width:180px;
	height:109px;
	text-indent:-9999px;
	overflow:hidden;
	position:absolute;
	top:0px;
	left:0px;
}

#searchForm{
	position:relative;
	top:85px;
	left:350px;
}

#searchForm label{
	padding-top:2px;
}

#search{
	vertical-align:middle;
	width:120px;
	font-size:9px;
	height:11px;
}

#searchFormSubmit{
	vertical-align:middle;
}

#header .textinput{
	margin-right:2px;
}	
/*end of header*/

/*------------2.3. content--------------*/
#content {
	padding:10px 0px;
	position:relative;
	background:url(../images/content.jpg) top right no-repeat;
}


#maincontent {
	min-height:330px;
}

#maincontent a {
}


#sideCell{
	width:150px;
}

#sidecontent {
	padding:15px 0px 53px 10px;
}

#viewProducts{
	width:81px;
	height:53px;
	text-transform:capitalize;
	text-align:center;
	background:url(../images/viewProduct.jpg) center center no-repeat;
	overflow:hidden;
	position:absolute;
	bottom:10px;
	left:10px;
}

#viewProducts a{
	display:block;
	padding-top:10px;
}

#navigation {

}

#navigation li {
	color:#719F80;
	margin-bottom:10px;
}

#navigation li.subselected,
#navigation li.subcat
{
	padding-left:10px;
}

#navigation a {
	color:#719F80;
}

#navigation a:hover {
	color:#f7a9ae;
}

#navigation li.selected a {

}

#navigation li.subselected a {
	color:#f7a9ae;
}

#navigation li.selected a:hover{

}

#navigation li.subcat a {
}

#navigation li.subcat a:hover{
}

#breadcrumb {
	color:#96d1a7;
	text-transform:lowercase;
}

#breadcrumb a {
	color:#919396;
}

#breadcrumb a:hover{
	color:#96d1a7;
}

#breadcrumb .trail {

}

.trail a:hover {

}

.prevnext {

}

.pagenums{
	text-align:center;
	color:#8D8F90;
}


.pagenums a{
	color:#8D8F90;
}

.pagenums a:hover{
	color:#f7a9ae;
}
/*product table*/
table#prodtable {
}

table#prodtable a {

}

table#prodtable tr.trImage {

}

 td.tdImage td a{
 	display:block;
	border:1px solid #96d1a7;
/*	width:100px;
	height:100px;
*/	
}

table#prodtable tr.trName {
}

div.prodname{
	padding:3px 0px;
}

table#prodtable td.tdImage {

}

table#prodtable tr.trDescription {
}

table#prodtable td.tdDescription {
}

table#prodtable tr.trPrice {
}

table#prodtable td.tdPrice {
}

table#prodtable tr.trBuyButton {
}

table#prodtable td.tdBuyButton {
}

table#prodtable td.productsImageHolder {
}

table#prodtable td.tdImage td a {
	display:block;
}
/*end of product table*/

/*categories table*/
table#categoriesTable {
}

table#categoriesTable td.tdCatImage td a{
	display:block;
	width:105px;
	height:84px;
	border:1px solid #96D1A7;
}

table#categoriesTable td.tdCatName a{
	display:block;
	text-align:center;
	padding:3px 0px;
}

/*end of categories table*/

/*product detail table*/
table#productDetailTable{
}

td.image-cell{
	width:295px;
	padding-right:5px;
	text-align:center;
}

a.hrefProductDetailImage{
}

img.prodfullimage{
	background:#ffffff;
/*	padding:0px 5px;*/
	border:1px solid #CBE8D3;
}

a.zoom{
	display:block;
	margin-top:15px;
}

a.zoom:hover{
}

td.text-cell{
}

h1.productDetailName{
	margin-bottom:10px;
}

p.productDetailDescription{
	min-height:200px;
}

div.productDetailOptions{
	text-align:right;
}

div.productDetailOptions fieldset{
	padding:2px 0px;
}

div.productDetailOptions label{
	float:left;
}

div.productDetailPrice{
	margin-bottom:20px;
}

div.productDetailEmailFriend{
	margin-right:15px;
	float:left;
	color:#719F80;
	font-weight:bold;
}

div.productDetailEmailFriend a{
	color:#719F80;
	font-weight:bold;
	font-size:11px;
}

div.productDetailAddToWishlist{
	float:left;
	margin-right:15px;
}

div.productDetailAddToWishlist input{
	padding:0px;
	background:none;
	border:none;
	color:#719F80;
}

div.productDetailBuyNow{
	float: right;
	margin-top: -10px;
}
/*end of product detail table*/

/*multiple images table*/
table#multiple-images{
	width:100%;
	margin-top:30px;
}

table#multiple-images td{
	text-align:center;
}

table#multiple-images a{
	display:block;
	text-align:center;
}

table#multiple-images  img{
	background:#ffffff;
	padding:0px 5px;
	border:1px solid #CBE8D3;
	margin-bottom:5px;
}
/*end of multiple images table*/

/*cross promotion table*/
div#cross-promotion {
    clear: both;
	margin-top:30px;
}

h1#crossPromoHeading{
	margin-bottom:15px;
	padding-left:30px;
}

table#cross-promotion-table {
	width:460px;
	clear:both;
	margin:0 auto;
}

table#cross-promotion-table td{
	text-align:center;
	vertical-align:top
}

table#cross-promotion-table tr.image-row td.tdCrossPromo{
	padding:0px 15px;
}

table#cross-promotion-table tr.image-row table {
	width:122px;

}

table#cross-promotion-table tr.image-row td td {
}

table#cross-promotion-table tr.image-row a {
	display:block;
	width:100px;
	border:1px solid #96D1A7;
	text-align:center;
}

table#cross-promotion-table tr.product-name-row {
}

table#cross-promotion-table tr.price-row {
}
/*end of cross promotion table*/

/*search table*/
/*end of search table*/

/*checkout form*/
form#checkoutForm {
}

form#checkoutForm td,
table.cobtbl td{
	padding:2px;
}

/*end of checkout form*/

/*affiliate form*/
table#affiliateTable td{
	padding:2px;
}

table#affiliateTable .textinput{
	width:100px;
}
/*end of affiliate form*/

/*search page search form*/
form#search-page-form {
}

form#search-page-form fieldset {
	padding:2px;
}

form#search-page-form input.textinput {
	width:220px;
}

form#search-page-form select {
	width:225px;
}

form#search-page-form select input.submitBtn {
}

form#search-page-form label {
	float:left;
	width:10em;
	display:block;
}
/*end of search page search form*/

/*cart form*/
#mainForm {
}

#mainForm td {
	padding:2px;
}

#mainForm label{
	
}

#mainForm input.textinput {
	width:200px;
}

#mainForm select {
	width:225px;
}

#mainForm select#payprovider {
	margin-left:78px;
	margin-bottom:5px;
}

#mainForm textarea {
	width:222px;
	margin-left:78px
}
/*end of cart form*/

/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
	background:#d8eddd;
	color:#719f80;
	text-align:left;
	font-size:12px;
	padding:3px 10px;
}

#footer ul{
	padding-top:4px;
}

#footer li {
	float:left;
	margin-right:18px;
}

#footer a {
}

#footer a:hover {
}

#miniCart {
	float:right;
	background:url(../images/minicart.jpg) center left no-repeat;
	padding:4px 0px 4px 20px;
}

#miniCart,
#miniCart a{
	font-size:10px;
}

#credits{
	color:#b0b2b0;
	padding:5px 0px;
}

#credits a{
	color:#b0b2b0;
}
/*end of footer*/