/*
 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-size: 62.5%; /* 1em = 10px \ 1.1em = 11px \ 1.2em = 12px */
	font-family:"Century Gothic";
	background:#f8c4ce url(/images/body.jpg) top center repeat;
}

/*-------1.2. block elements----*/
h1 {
	font-weight:normal;
	text-transform:capitalize;
	color:#f06477;
	font-size:20px;
}


h1.catname{
	padding-top:15px;
}

h1.infoheading{
/*
	margin-bottom:10px;
*/
}

h2 {
   color:#f06477;
   font-weight:bold;
   text-decoration:underline;
}

.infoInner h2 {
	font-size: 16px;
text-decoration: none;
font-weight: normal;}

h3 {
	color:#F06477;
	font-weight:normal;
}

h4 {
	color:#F06477;
	font-weight:normal;
}

h5 {
}

h6 {
}

p {
	font-family:"Century Gothic";
	margin-bottom:10px;
}

blockquote {
}

noscript div {
    color: red;
    font-size: 12px;
}

hr {
    display: none;
}

br{
	line-height:8px;
	overflow:hidden;
}

/*--------------1.2.1 lists-------------*/
ul {
}

ol {
}

.contentList{
	margin-bottom:10px;
}

.contentList li{
	margin-left:20px;
	list-style:disc;
}

li {
}

dl {
}

dd {
}

dt {
}

/*------------1.2.2 forms-----------------*/
form {
}

form ol {
}

form li {
	padding:2px 0px;
}

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 {
}

input.textinput {
	border:1px solid #FBD9DD;
	color:#794400;
}

#mainContent input.textinput{
	/*width:200px;*/
}

input.textbox{
	border:1px solid #FBD9DD;
	/*width:200px;*/
	color:#794400;
}

imput.submitBtn {
}

input[ type = "submit" ], input [ type = "reset" ] {
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
}


select {
	color:#794400;
}

#mainContent select{
	width:203px;
	border:1px solid #FBD9DD;
}

option {
}

optgroup {
}

textarea {
}


form#standard{
	width:200px;
	padding-left:15px;
	padding-bottom:100px;
	float:right;
}

/*--------------1.2.3. tables-------------*/
table {
    border: none;
    border-collapse: separate;
    border-spacing: 0; /*when set to "0" cellspacing has no effect on tables */
}


table.standard th{
	text-align:right;
	padding-right:10px;
}
tr {
}

td {
}

th {
}

/*----------1.2.4 padded divs------------*/
.pad1 {
	padding:10px 10px 20px 10px;
	min-height:600px;
	position:relative;
}

.pad2 {
	min-height:450px;
}

.pad3 {
	/*padding-top:35px;*/
	padding-left:8px;
}

.pad4 {
}

.pad5 {
}

.borderTop1{
	background:url(/images/wrapperTop.jpg) top left repeat-x;
}

.borderBot1{
	background:url(/images/wrapperBot.jpg) bottom left repeat-x;
}

.borderLeft1{
	background:url(/images/wrapperLeft.jpg) top left repeat-y;
}

.borderRight1{
	background:url(/images/wrapperRight.jpg) top right repeat-y;
}

.borderTopLeft1{
	background:url(/images/wrapperTopLeft.jpg) top left no-repeat;
}

.borderTopRight1{
	background:url(/images/wrapperTopRight.jpg) top right no-repeat;
}

.borderBotLeft1{
	background:url(/images/wrapperBotLeft.jpg) bottom left no-repeat;
}

.borderBotRight1{
	background:url(/images/wrapperBotRight.jpg) bottom right no-repeat;
}
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
	color:#f06477;
}

a:hover, a:focus {
	color:#f8c4ce;
}

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, #footer ul:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*end of clearfix*/

/*-------1.6. other classes------*/
.overlay1{
	position:absolute;
	top:-35px;
	left:-90px;
	width:149px;
	height:177px;
	background:url(/images/overlay1a.png) center center no-repeat;
}

.overlay2{
	position:absolute;
	bottom:-60px;
	right:-35px;
	width:131px;
	height:227px;
	background:url(/images/overlay2.png) center center no-repeat;
}

.overlay3{
	position:absolute;
	top:0px;
	left:0px;
	width:150px;
	height:150px;
	background:url(/images/overlay3.png) center center no-repeat;
	z-index:3;
}

.cat1 .overlay3{
	background:url(/images/overlay3.png) center center no-repeat;
	z-index:3;
}

.cat2 .overlay3{
	background:url(/images/overlay4.png) center center no-repeat;

}

.overlay5{
	position:absolute;
	top:0px;
	left:0px;
	width:288px;
	height:288px;
	background:url(/images/overlay5.png) center center no-repeat;
}

.overlay6{
	position:absolute;
	top:0px;
	left:0px;
	width:100px;
	height:100px;
	background:url(/images/overlay6.png) center center no-repeat;
}

.overlay7{
	position:absolute;
	z-index:10;
	bottom:-5px;
	right:-33px;
	width:107px;
	height:95px;
	background:url(/images/overlay7.png) center center no-repeat;
}

.overlay8{
	position:relative;
	margin-top:-15px;
	z-index:5;
	width:98px;
	height:115px;
	background:url(/images/overlay8.png) center center no-repeat;
}

.overlay9{
	position:absolute;
	top:0px;
	left:0px;
	width:100px;
	height:100px;
	background:url(/images/overlay9.png) center  center no-repeat;
}

.info{
	width:656px;
	background:#fbf1e0;
	line-height:1.65em;
}

.infoTop_home{
	height:15px;
	background:url(/images/infoTop_home.gif) top right no-repeat;
	margin-right:8px;
}

.infoBottom_home{
	height:15px;
	background:url(/images/infoBottom_home.gif) right top no-repeat;
	margin-right:8px;
}

.infoInner_home{
	padding-right:15px;
	padding-left:15px;
	background:url(/images/infoInner_home.gif) top left repeat;
	text-align:left;
	margin-right:8px;
}

.infoTop{
	height:97px;
	padding-left:24px;
	background:url(/images/infoTop.gif) top right no-repeat;
}

.infoBottom{
	height:130px;
	background:url(/images/infoBottom.gif) right bottom no-repeat;
}

.infoInner{
	padding-right:15px;
	padding-left:15px;
	margin-left:24px;
	background:url(/images/infoInner.gif) top left repeat;
}

.infoImage{
	margin:20px 0px 0px 15px;
}

.info p{
	padding-bottom:20px;
}
/************************************
 
 2. Layout
 
 *************************************/

/*------------2.1. container------------*/
#container {
	position:relative;
	width:935px;
	padding:100px 120px 90px 120px;
	margin:0 auto;
	font-size:12px;
	color:#794400;
}

#containerTop{
	position:absolute;
	top:0px;
	left:0px;
	width:1160px;
	height:443px;
	background:url(/images/containerTop.png) top center no-repeat;
}

#containerBotom{
	position:absolute;
	bottom:0px;
	right:0px;
	width:1160px;
	height:539px;
	background:url(/images/containerBottom.png) center center no-repeat;
}

#wrapper{
	background:#ffffff;
	position:relative;
	z-index:2;
}

#contentTable{
	height:445px;
}
/*end of container*/

/*------------2.2. header---------------*/
#header{
	background:url(/images/template/title.png) top center no-repeat;
	position:relative;
	z-index:10;
	color:#794400;
	padding-top:10px;
}

#header a{
	color:#fff;
}

#header a:hover{
	color:#794400;
}

a#logo {
	position:absolute;
	top:10px;
	left:20px;
	display:block;
	width:217px;
	height:175px;
	background:url(/images/logo.png)  center center no-repeat;
	/*background:url(/images/holiday/LBB-logo-easter.png)  center center no-repeat;*/
	text-indent:-9999px;
	overflow:hidden;
}

#topMenu {

}

#miniCart {
	float:right;
	width:69px;
	padding:0px 25px 10px 0px;
	background:url(/images/miniCart.jpg) top left no-repeat;
	text-align:center;
	color:#794400;
	font-weight:bold;
}

#miniCart strong{
}

#miniCart a{
	color:#794400;
}

#miniCart a.totalPrice{
	display:block;
	padding:65px 5px 0px 5px;
}
#miniCart img {
    vertical-align: middle;
}

#topMenu{
	clear:both;
	text-align:right;
	background:url(/images/topMenu.jpg) top left repeat-x;
	/*background:#f06477;*/
	color:#fff;
}

.topMenuTop{
	background:url(/images/topMenuTop.jpg) top left repeat-x;
}

.topMenuBot{
	background:url(/images/topMenuBot.jpg) bottom left repeat-x;
	padding:5px;
}

#topMenu ul {
	margin-left:415px
}

#topMenu ul li {
	float:left;
	margin-right:20px;
	padding-left:15px;
	line-height:1.4em;
}

#topMenu ul li.home{
	background:url(/images/home.jpg) center left no-repeat;
}

#topMenu ul li.shoppingCart{
	background:url(/images/cart.jpg) center left no-repeat;
}

#topMenu ul li.member{
	background:url(/images/member.jpg) center left no-repeat;
}

#topMenu ul li.login{
	background:url(/images/login.jpg) center left no-repeat;
}

#topMenu  a {
}

#topMenu a:hover {

}

#searchFormSubmit{
	background:#F06477;
	border:none;
	padding:0px;
	margin:0px;
	color:#794400;
}

#header .textinput{
	background:#f8c4ce;
	border:1px solid #f8c4ce;
	font-size:10px;
	width:100px;
	margin:0px 3px;
}
/*end of header*/

/*------------2.3. content--------------*/
#content {
	padding-top:20px;

	position:relative;
}

#mainCell{

}

#member-sidebar{
	float:right;
	width:200px;
	padding:0px 0px 100px 20px;
}

#sideCell{
	padding:35px 0px 10px 10px;
	background:url(/images/sideCell.jpg) top right repeat-y;
	width:190px;
}

#sideCell2{
	padding:15px 0px 0px 20px;
	background:url(/images/sideCell.jpg) top right repeat-y;
}

#sideContent{}

#navigation a{
	display:block;
}

#navigation a img{
	display:block;
	vertical-align:top;
}

#newsletterSignupForm{
	width:140px;
	margin: 0px 0px 0px 0px;
	position: relative;
	/*border: 1px solid #FF0000;*/

}

#newsletterSignupForm label{
	color:#f06477;
	font-weight:bold;
	font-size:14px;
	text-transform:capitalize;
	margin-bottom:4px;
	display:block;
}


#newsletterSignupForm .textinput{
	width:104px;
	padding:2px 5px;
	font-size:11px;
	color:#a2a4a7;
	border:1px solid #f48b99;
	z-index: 10;
	position: absolute;
}

#signupFormSubmit{
	position:relative;
	top:-2px;
	right:-45px;
	z-index: 1;
}

#mainContent {
	padding:0px 25px 0px 0px;
}

#mainContent a {
 
}

#homeWrapper{
	margin:40px 50px 0px 66px;
	position:relative;
}

#shortDesc2{
	text-align:left;
	font-size:12px;
	margin-left:8px;
}

#shortDesc{
	background:#c48b5b;
	text-align:center;
	font-size:12px;
	margin:2px 0px;
}

.shortDescTop{
	background:url(/images/shortDescTop.jpg) top left repeat-x;
}

.shortDescBot{
	background:url(/images/shortDescBot.jpg) bottom left repeat-x;
	padding:20px 15px 20px 20px; 
}

span.firstWords{
	position:relative;
	bottom:-5px;
}

div#address{
	padding:0px 80px 0px 0px;
	font-weight:bold;
}

#sideContent {
}

#navigation {

}

#navigation li {

}

#navigation a {

}

#navigation a:hover {

}

#navigation li.selected a {

}

#navigation li.selected a:hover{

}

#navigation li.subcat a {
}

#navigation li.subcat a:hover{
}

#breadcrumb {
	color:#f8c4ce;
	margin-bottom:10px;
}

#breadcrumb a {
}

#breadcrumb .trail {

}

.trail a:hover {

}

.prevnext {

}

.pagenums{
	text-align:center;
	clear:both;
	}


.pagenums a{
	
}

.pagenums a:hover{
	
}
/*product table*/
table#prodtable {

}

table#prodtable a {

}

tr.trImage {

}

td.tdImage {

}

tr.trName {
	font-family:"Century Gothic";
	font-weight:bold;
}

td.tdImage td.cat1 a,
td.tdImage td.cat2 a{
	display:block;
	width:150px;
	height:150px;
	position:relative;
	overflow:hidden;
}

tr.trDescription {
	display:none;
}

td.tdDescription {
}

tr.trPrice {
	font-family:"Century Gothic";
	font-weight:bold;
}

td.tdPrice {
}

div.prodprice{
	padding:3px 0px;
	color:#f06477;
	font-weight:bold;
}

tr.trBuyButton {
}

td.tdBuyButton {
}

td.productsImageHolder {
}

td.tdImage td a {
}
/*end of product table*/

/*categories table*/
#categoriesContainer{
	
}

table#categoriesTable {
}

table#categoriesTable tr {
}

table#categoriesTable tr td tr {
}

td.tdCatImage td.cat1 a,
td.tdCatImage td.cat2 a{
	display:block;
	width:150px;
	height:150px;
	position:relative;
	overflow:hidden;
}

td.tdCatName {
	font-family:"Century Gothic";
	font-weight:bold;
}

td.catname a {
}
/*end of categories table*/

/*product detail table*/
table#productDetailTable{
}

td.image-cell{
	width:370px;
	text-align:center;
}

a.hrefProductDetailImage{
	display:block;
	width:288px;
	height:288px;
	text-align:center;
	position:relative;
	margin:0 auto;
}

img.prodfullimage{}

a.zoom{
}

a.zoom:hover{
}

td.text-cell{
}

td.text-cell fieldset{
	padding:2px 0px;
}

#mainContent td.text-cell .textinput{
	border:1px solid #fbd9dd;
	width:80px;
}

td.text-cell label{
	display:block;
	float:left;
	width:6em;
}

h1.productDetailName{
	margin-bottom:10px;
}

p.productDetailDescription{
	min-height:150px;
}

div.productDetailOptions{
}

div.productDetailPrice{
	background:url(/images/prodDetailPrice.jpg) top left repeat-x;
	text-align:center;
	color:#f06477;
	font-weight:bold;
	font-size:14px;
	margin:10px 0px;

}

div#prodDetailPrice{
	background:url(/images/prodDetailPrice.jpg) bottom left repeat-x;
	padding:5px 0px;
}

div#prodDetailPrice strong{
	display:none;
}

div.productDetailEmailFriend{
	float:left;
	clear:left;
}

div.productDetailAddToWishlist{
}

div.productDetailBuyNow{
	float:right;
}

#multiple-images{
	/*width:85px;
	margin:0px 15px;*/
}

#multiple-images a{
	position:relative;
	display:block;
	/*width:100px;
	height:100px;*/
	text-align:center;
	vertical-align:middle;
}

#multiple-images a img{
	/*
	width:100px;
	height:100px;*/
}
/*end of product detail table*/

/*cross promotion table*/
div#cross-promotion {
    clear: both;
}

table#cross-promotion-table {
	background:#f8c4ce;
	margin-top:40px;
	margin-bottom:20px;
	width:610px;
	font-size:16px;
	font-weight:bold;
}

table#cross-promotion-table tr.image-row {
}

table#cross-promotion-table tr.image-row td td {
}

table#cross-promotion-table tr.image-row a {
	display:block;
	width:100px;
	height:100px;
	overflow:hidden;
	text-align:center;
	position:relative;
	margin:0px 6px;
}

table#cross-promotion-table tr.image-row a  img{
	vertical-align:middle;
	width:100px;
	height:100px;
}

table#cross-promotion-table tr.product-name-row {
	display:none;
}

table#cross-promotion-table tr.price-row {
	display:none;
}

.crossPromoTop{
	height:8px;
	overflow:hidden;
	background:url(/images/crossPromoTop.jpg) top left repeat-x;
}

.crossPromoBot{
	height:8px;
	background:url(/images/crossPromoBot.jpg) bottom left repeat-x;
}
/*end of cross promotion table*/

/*search table*/
/*end of search table*/

/*checkout form*/
form#checkoutForm {
}

form#checkoutForm td,
table.cobtbl td{
	padding:2px;
}


#mainContent .cobtbl input.textinput{
	width:auto;
}
/*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 {
	display:block;
	color:#F06477;
}
/*end of search page search form*/

/*cart form*/
#mainForm {
}

#mainForm td {
	padding:2px;
}

#mainForm label{
	
}

#mainForm input.textinput {
	width:200px;
}

#mainForm select {
	width:205px;
}

#mainForm select#payprovider {
	margin-left:78px;
	margin-bottom:5px;
}

#mainForm textarea {
	width:200px;
	margin-left:80px;
	border:1px solid #FBD9DD;
	color:#794400;
}
/*end of cart form*/

/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
	text-align:center;
	text-transform:capitalize;
	color:#ffffff;
	zoom:1.0;
	clear:both;
	position:relative;
	z-index:3;
}

#footerMenu {
	width:238px;
	height:24px;
	line-height:24px;
	margin:0 auto;
	background:url(/images/footer.png) center center no-repeat;
}

#footerMenu ul {
	padding-left:23px;
}

#footer li {
	float:left;
	background:url(/images/dot1.jpg) center right no-repeat;
	padding-right:12px;
	margin-right:6px;
}

#footer li.last{
	background:none;
	margin:0px;
	padding:0px;
}

#footer a {
	color:#ffffff;	
	position:relative;
}

#footer a:hover {
	color:#EF6477;
}

#footer #credits{
	padding:8px 0px 0px 0px;
}

#footer #credits,
#footer #credits a{
	color:#794400;
	font-size:11px;
}

#footer #credits a:hover{
	color:#F16477;
}
/*end of footer*/

img.imgCatImage, img.prodimage {
	height: 150px;
	width: 150px;
	z-index:2;
	
}

ul.bullets li {
	list-style: inside disc;
}
.listFooter{
	color:#993300;
	margin-left:5px; 
	margin-right:5px; 
	text-decoration:none;
}
.listFooter2{
	color:#9F5000;
	margin-left:5px; 
	margin-right:5px; 
	text-decoration:none;
}