/*
 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;
		text-indent:0px;
    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-size: 62.5%; /* 1em = 10px \ 1.1em = 11px \ 1.2em = 12px */
		font-family:"Century Gothic", Arial, Helvetica, sans-serif;
}

.accessAid{
	position:absolute !important;
	width:0px !important;
	height:0px !important;
	overflow:hidden !important;
	text-indent:-9999em !important;
	font-size:0px !important;
}

.clear{
	clear: both;
	line-height: 1px;
	height: 1px;
	font-size: 1px;
}

.center{
	text-align: center;
}

/*-------1.2. block elements----*/

h1 {
	font-size:32px;
	font-weight:normal;
	color:#E42D82;
	text-transform:lowercase;
	margin-bottom:10px;
}


h1.catName{
	font-size:32px;
	font-weight:normal;
	color:#E42D82;
	text-transform:lowercase;
	margin-bottom:10px;
}

h2 {
   font-size:16px;
	 color:#4DBBCA;
	 margin-bottom:3px;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

p {
	margin-bottom:15px;
}

blockquote {
}

noscript div {
    color: red;
    font-size: 12px;
}
/*--------------1.2.1 lists-------------*/
ul {
}

ol {
}

li {
}

dl {
}

dd {
}

dt {
}

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

form ol {
}

form li {
	margin-bottom:3px;
}

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

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

form li label {
    display: block;
    cursor: pointer;
}

fieldset {
    border: none;
}

legend {
}

.textInput {
		border:1px solid #543E29;
		color:#543E29;
}

.submitBtn {
	cursor:pointer;
}

.resetBtn{
	cursor:pointer;
}

.imageInput{
	
}

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

button {
    cursor: pointer;
    border: none;
}

select {
	border:1px solid #543E29;
	color:#543E29;
}

option {
}

optgroup {
}

textarea {
		border:1px solid #543E29;
	  color:#543E29;
}

/*--------------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 {
}

.pad2 {
}

.pad3 {
}

.pad4 {
}

.pad5 {
}

.infoPagePad{
	text-align:justify;
}
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
		color:#E42D82;
}

a:hover, a:focus {
}

a:visited {
}

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,
#header .contents:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*end of clearfix*/

/*-------1.6. other classes------*/
.color1{
	color:#4DBBCB !important;
}

.color2{
	color:#543E29;
}

.color3{
	color:#E42D82;
}

.color4{
	color:#D68317;
}
/************************************
 2. Layout
 *************************************/

/*------------2.1. container------------*/
#container {
	font-size:12px;
	color:#543E29;
	height:100%;
}

.contents{
	width:980px;
	position:relative;
	margin:0 auto;
}

.nonFooter{
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -225px auto;
	position:relative;
}
/*end of container*/

/*------------2.2. header---------------*/
#header{
	background:#E8F6F9 url(../images/header.jpg) top center repeat-x;
	padding:170px 0px 5px 0px;
	color:#543E29;
}

#header li{
	display:inline;
	border-right:1px solid #74cad7;
	padding:0px 10px 0px 0px;
	margin:0px 10px 0px 0px;
}

#header li.last{
	border:none;
	padding:0px;
	margin:0px;
}

#header a{
	color:#543E29;
	font-size:14px;
}

#header a:hover{
	color:#E42D82;
}

a#logo {
	display:block;
	width:410px;
	height:207px;
	text-indent:-9999px;
	background:url(../images/logo.png) center center no-repeat;
	margin:0 auto;
	margin-top:-175px;
	position:relative;
	z-index:10;
}

#mainNav{
	float:left;
}

#mainNav a{
}

#mainNav a:hover{
	
}

#miniCart{
	padding-right:50px;
}

#miniCart a{
	
}

#miniCart a:hover{
	
}


#secNav{
	float:right;
}


#secNav a{
}

#memberLogin li{
	display:inline;
}

#memberLogin{
	text-align:center;
}
/*end of header*/

/*------------2.3. content--------------*/
#content {
	background:#fff;
	padding:15px 0px 5px 0px;
}

/*main content*/
#mainCell{
	border:2px solid #4DBBCB;
}

#mainContent{
	min-height:520px;
	padding:5px;
}

.content{
	padding:0px 15px;
}

.text{
	padding:0px 15px;
	text-align:justify;
}

.homePage{
	margin:-5px;
}

#mainContent a{

}

#mainContent a:hover{
	text-decoration:underline;
}

#breadcrumb{
	text-transform:lowercase;
	color:#4DBBCB;
	padding:5px 15px;
}


.trail{
	
}

.prevNext{
	float:right;
}

#breadcrumb a{
	color:#CACBCB;
}

#breadcrumb a:hover{
	color:#4DBBCB;
	text-decoration:none;
}

#welcomeText h6{
	color:#E42D82;
	margin-bottom:10px;
}

#memberCreations{
	background:#E8F6F9;
	padding:10px 5px;
	margin:10px 0px 0px 0px;
}

#memberCreations a img{
	vertical-align:bottom;
}

#memberCreations p{
	margin:10px 0px 0px 0px;
}

#homePageLinks{
	margin:10px 0px 0px 0px;
	font-size:13px;
}

#homePageLinks a{
	display:block;
	width:187px;
	height:96px;
	line-height:96px;
	text-align:center;
	background-position:center center;
	background-repeat:no-repeat;
}

#homePageLinks a:hover{
	text-decoration:none;
}

.hpl1{
	background:url(../images/hpl1.gif);
}

.hpl2{
	background:url(../images/hpl2.gif);
}

.hpl3{
	background:url(../images/hpl3.gif);
}

.hpl4{
	background:url(../images/hpl4.gif);
}
/*end of main content*/

/*side content*/
#sideCell{
	width:170px;
	padding-right:10px;
}

#sideContent{
}


#sideNav{
	color: #543E29;
	text-transform:capitalize;
	padding:4px 0px 4px 4px;
}

#sideNav a{
	color: #543E29;
	display:block;
}

#sideNav a:hover{
	color:#E42D82;
}

#sideNav li.selected a{
		color:#E42D82;
} 

#sideNav li.selectedwithsub a{
	color:#E42D82;
}

#sideNav li.subselected a{
	color:#4DBBCB;
}

#sideNav li.subcat{
	padding-left:15px;
}

#sideNav li.subselected{
	padding-left:15px;
}

#sideCell label{
	display:block;
}

#sideCell select{
	width:160px;
}

/*end of side content*/

/*member area*/
#loginForm,
#forgotPassForm,
#member-sidebar{
	float:right;
	width:300px;
	margin:0px 0px 100px 10px;
}

form.memberForm .textInput{
	width:200px;
}

form.memberForm select{
	width:202px;
}

form.memberForm textarea{
	width:200px;
	height:70px;
}

form#changePasswordForm{
	float:left;
}
/*end of member area*/

/*product table*/
table#prodtable {

}

table#prodtable a {

}

tr.trImage {

}

td.tdImage {

}

td.tdImage a{
	display:block;
	width:130px;
	padding:5px;
}

tr.trName {
}

td.tdName {
	padding:2px 0px;
}

td.tdName a{
	color:#4DBBCB;
}

tr.trDescription {
}

td.tdDescription {
	padding:0px 15px;
}

div.proddescription{
	text-align:justify;
}

tr.trPrice {
}

td.tdPrice {
}

tr.trBuyButton {
}

td.tdBuyButton {
}

td.productsImageHolder {
	height:130px;
	vertical-align:middle;
	text-align:center;
	border:1px solid #4DBBCB;
}

.pagenums{
	text-align:center;
}
/*end of product table*/

/*categories table*/
table#categoriesTable {
}

td.tdCatImage a{
	display:block;
	width:130px;
	padding:5px;
}

td.tdCatImage td{
	height:130px;
	border:1px solid #4DBBCB
}

td.tdCatName {
		padding-bottom:15px;
}

td.tdCatName a{
}

td.tdCatName a:hover{
}
/*end of categories table*/

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

table#productDetailTable a:hover{
	text-decoration:none;
}

td.image-cell{
	width:277px;
	padding-right:15px;
}

a.hrefProductDetailImage{
	display:block;
	padding:5px;
	border:1px solid #4DBBCB;
}

img.prodfullimage{}

a.zoom{
	text-transform:lowercase;
	display:block;
	text-align:center;
	color:#CACBCB;
	padding:4px 0px;
}

a.zoom:hover{
}

td.text-cell{
}

h1.productDetailName{
	font-size:28px;
	font-weight:normal;
	text-transform:lowercase;
	color:#4DBBCB;
	margin-bottom:10px;
}

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

div.productDetailOptions{
}

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

div.productDetailPrice{
	text-align:right;
	text-transform:lowercase;
	color:#E42D82;
	font-size:14px;
	border-bottom:1px solid #4DBBCB;
	border-top:1px solid #4DBBCB;
	padding:5px 30px;
	margin:5px 0px 10px 0px;
}

div.productDetailPrice strong{
	font-weight:normal;
}

div.productDetailEmailFriend{
	float:left;
}

div.productDetailEmailFriend a{
	display:block;
	text-align:center;
	width:140px;
	height:68px;
	line-height:68px;
	background:url(../images/pdActionLink.gif) center center no-repeat;
}

div.productDetailAddToWishlist{
}

div.productDetailBuyNow{
}

div.productDetailBuyNow button{
	display:block;
	text-align:center;
	width:140px;
	height:68px;
	line-height:68px;
	background:url(../images/pdActionLink.gif) center center no-repeat;
}
/*end of product detail table*/

/*cross promotion table*/
div#cross-promotion {
    clear: both;
		border-top:1px solid #4DBBCB;
		margin-top:20px;
		padding-top:20px;
}

table#cross-promotion-table{
	width:100%;
}

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

table#cross-promotion-table h1{
	font-size:20px;
	background:url(../images/flowerIcon.gif) center left no-repeat;
	padding:2px 0px 2px 30px;
	font-weight:normal;
}

tr.image-row {
}

tr.image-row td td {
}

tr.image-row a {
	display:block;
	padding:5px;
	border:1px solid #4DBBCB;
}

tr.image-row a img{
}

tr.product-name-row{
	display:none;
}

tr.product-name-row td{
	text-align:center;
	padding:0px 25px;
}

tr.price-row{
	display:none;
}

tr.price-row td{
	text-align:center;
	padding:0px 25px;
}
/*end of cross promotion table*/


/*search form*/
#searchForm{
	float:right;
	width:300px;
	text-align:right;
}

#searchInput{
	
}

#searchSubmit{
	
}
/*end of search form*/

/*subscribe form*/
#subscribeForm{

}

#signupEmail{
	
}

#subscribeSubmit{
	
}
/*end of subscribe form*/

/*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:223px;
}

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

form#search-page-form label {
	display:block;
}

#search-info dt{
	font-size:12px;
	font-weight:bold;
	margin-bottom:2px;
}

#search-info dd{
	margin:0px 0px 10px 20px;
}
/*end of search page search form*/

/*cart form*/
#mainForm {
}

#mainForm td {
	padding:2px;
}

#mainForm label{
	
}

#mainForm input.textInput {
	width:220px;
}

#mainForm select {
	width:223px;
}

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

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

/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
	background:#fce8f1 url(../images/footer.jpg) center bottom repeat-x;
	position:relative;
	height: 230px;
}

#footer .contents{
	padding:5px 0px;
}

.push{
	height:230px;
}

#footer a {
}

#miniCart{
	float:left;
}


#credits{
	float:right;
}

#credits a{
	
}

#copyright{

}

#copyright a{
	
}

#footer p{
	padding-top:5px;
	margin-bottom:5px;
}

#footer .textInput{
	width:150px;
	border:1px solid #4DBBCB;
	padding:1px;
}


#footer .submitBtn{
	background:none;
	border:none;
	color:#D68317;
	cursor:pointer;
}

#footer form{
}
/*end of footer*/



#logos{
	text-align: center;
	padding: 8px 0px 0px 0px;
}

#logos img{
	vertical-align: middle;
}

#logos a{
	margin: 0px 30px;
}
