/*
 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:Georgia;
	background:#CB2027;
	text-align:center;
}

/*-------1.2. block elements----*/
h1 {
	font-size:20px;
	font-weight:normal;
	color:#cd2027;
}


h1.catname{
	padding:10px 0px 0px 0px;
}

h1.infoheading{
	padding-bottom:3px;
}

h2 {
	font-size: 14px;
   
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

p {
	margin-bottom:15px;
	text-align:justify;
}

blockquote {
}

noscript div {
    color: red;
    font-size: 12px;
}

hr {
    /*display: none;*/
}

/*--------------1.2.1 lists-------------*/
ul {
}

ol {
}

.contentList{
	margin-bottom:10px;
}

.contentList li{
	margin-left:25px;
	list-style:disc;
}

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 li label {
    display: block;
    cursor: pointer;
}

fieldset {
    border: none;
}

legend {
}

input.textinput {
}

imput.submitBtn {
}

input[ type = "submit" ], input [ type = "reset" ] {
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
}

select {
}

option {
}

optgroup {
}

textarea {
}

/*--------------1.2.3. tables-------------*/
table {
    border: none;
    border-collapse: separate;
}

table.inlineTable{
	width:240px;
	margin:0 auto;
}

tr {
}

td {
}

th {
}

/*----------1.2.4 padded divs------------*/
.pad1 {
	min-height:400px;
	padding:10px 20px;
	
}

.pad2 {
}

.pad3 {
}

.pad4 {
}

.pad5 {
}
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
	color:#000;
}

a:hover, a:focus {
	color:#cb2530;
}

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 {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*end of clearfix*/

/*-------1.6. other classes------*/
.highlight{
	color:#CB2027;
}

.quicklinks{
	text-align:right;
	padding:30px 80px 0px 0px;
	color:#a9abad;
}

.quicklinks a{
	color:#a9abad;
}
/************************************
 
 2. Layout
 
 *************************************/

/*------------2.1. container------------*/
#container {
	font-size:11px;
	color:#303030;
}

.inner{
	position:relative;
	width:930px;
	margin:0 auto;
	text-align:left;
}

/*end of container*/

/*------------2.2. header---------------*/
#header{
	/*padding-top:50px;*/
}

a#logo {
	display:block;
	width:180px;
	height:114px;
	background:url(../images/logo.png) center center no-repeat;
	text-indent:-9999px;
	overflow:hidden;
	margin-left:158px;
	margin-bottom: 10px;
}

#topMenuHolder{
	background:#ffffff;
	border-bottom:1px  solid #e2e3e4;
	padding:5px 0px;
}

#topMenu {
	font-size:11px;
	/*letter-spacing:-0.2px;*/
	font-weight:bold;
}

#topMenu li{
	display:inline;
	color:#000000;
	margin-right:10px;
	margin-left: 10px;
	
}

#topMenu li.last{
	margin-right:0px;
}

#topMenu a{
	color:#000000;
}

#topMenu a.active,
#topMenu a:hover{
	color:#CB2027;
}

a.selected{
	color:#cd2027 !important;
}

a.cartlink {
	padding-left: 15px;
}

#miniCart {
	float:right;
	padding-left:15px;
	background:url(../images/miniCart.jpg) center left no-repeat;
	color:#A9ABAD;
	font-size:9px;
}

#miniCart img {
    vertical-align: middle;
}

#miniCart a{
	color:#A9ABAD;
}
/*end of header*/

/*------------2.3. content--------------*/
#content {
	background:#ffffff;
	padding:5px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

#content .inner{
	border:1px solid #e2e3e4;
	padding:5px 20px 10px 5px;
}

#content hr {
	color:#666666; 
	height:1px; 
	width:90%;
	margin-bottom:15px;
	margin-top:15px;
}


#categoriesLink{
	padding-bottom:10px;
}

#mainCell{
	border:1px  solid #e2e3e4;
	width:800px;
	padding:3px 3px 3px 7px;
	font-size:12px;
}

#homePageTable{
	margin: auto;
}

#maincontent {
	padding:3px 3px 3px 7px;
}

#maincontent a {
 
}

#sideCell{
	width: 140px;
	padding-right: 25px;
}

#sidecontent {
}

#categoriesLink a{
	font-size:17px;
	color:#cd2027;
}

#navigation {
	text-transform:lowercase;
}

#navigation li {
	padding-left:10px;
}


#navigation .xmas_cat {
	line-height:20px;
	margin-top:4px;
}

#navigation a {

}

#navigation a:hover {

}

#navigation .blockSelected{
	font-weight:bolder;
}

#navigation li.selected{
	color:#CB2027;
	background:url(../images/dot1.gif) 0px 0.5em no-repeat;
	font-weight:bolder;
}

#navigation li.selectedwithsub{
	font-weight:bolder;
}

#navigation li.selected a ,
#navigation li.selectedwithsub a{
	color:#CB2027;
}

#navigation li.selected a:hover{

}

#navigation li.subselected{
	color:#CB2027;
	background:url(../images/dot1.gif) 10px 0.5em no-repeat;
	padding-left:20px;
}

#navigation li.subselected a{
	color:#CB2027;
}

#navigation li.subcat{
	padding-left:20px;
}

#navigation li.subcat a {
}

#navigation li.subcat a:hover{
}

#navigation li.subselected{
}


#navigation li.special{
	color:#CB2027;
	text-transform: capitalize;
	padding-top: 4px;
}

#navigation li.selectedspecial{
	color:#cd2027;
	text-transform: capitalize;
	background:url(../images/dot1.gif) 0px 0.5em no-repeat;
	padding-top: 4px;	
}

#navigation li.special a, #navigation li.selectedspecial a{
	color:#cd2027;
}

#brandsMenu{
	padding:10px 0px 3px 10px;
}

#brandsMenu label{
	display:block;
	width:151px;
	float:left;
	font-size:11px;
	text-transform: lowercase;
	font-weight: bold;
}

#shopByBrand{
	width:140px;
	border:1px solid #e2e3e4;
	font-size:12px;
}

#shopByBrandSubmit{
	background:none;
	border:none;
	color:#cd2027;
	padding:0px; 
	vertical-align:top;
}

#breadcrumb {
	color:#A9ABAD;
	text-transform:lowercase;
	font-size:9px;
}

#breadcrumb a {
	color:#A9ABAD;
}

#breadcrumb .trail {

}

.trail a:hover {

}

.prevnext {

}

.pagenums{
	text-align:center;
	text-transform:lowercase;
}


.pagenums a{
	
}

.pagenums a:hover{
	
}
/*product table*/
table#prodtable {

}

table#prodtable a {

}

tr.trImage {

}

td.tdImage {

}

tr.trName {
}

td.tdName {
	padding:0px 10px;
	text-align:center;
	text-transform:lowercase;
	font-size:13px;
	font-weight:bold;
	color:#CB2027;
}

td.tdName a{
	color:#CB2027;
}

div.prodname{
	padding:2px 0px;
}

tr.trDescription {
}

td.tdDescription {
}

tr.trPrice {
}

td.tdPrice {
}

tr.trBuyButton {
}

td.tdBuyButton {
}

td.productsImageHolder {
}

td.tdImage td a {
}
/*end of product table*/

/*categories table*/
table#categoriesTable {
}

table#categoriesTable a{
	color:#CB2027;
}
table#categoriesTable tr {
}

table#categoriesTable tr td tr {
}

td.tdCatName {
	text-align:center;
	text-transform:lowercase;
	font-size:13px;
	color:#CB2027;
}

td.tdCatName table {
	width:100%;
}

table#categoriesTable td.catname a {
}
/*end of categories table*/

/*product detail table*/
table#productDetailTable{
}

td.image-cell{
	width:300px;
	padding-right:10px;
}

a.hrefProductDetailImage{}

img.prodfullimage{}

a.zoom{
}

a.zoom:hover{
}

td.text-cell{

}

h1.productDetailName{
	padding-bottom:10px;
	font-size:18px;
}

p.productDetailDescription{
	min-height:120px;
	padding:0px;
	margin:0px;
}

div.productDetailOptions{
	text-align:right;
	padding:3px;
}

div.productDetailOptions fieldset{
	padding:2px;
}

div.productDetailOptions label{
	float:left;
	padding-top:2px;
}

div.productDetailOptions select{
	width:200px;
}

div.productDetailPrice{
	text-align:right;
	border-bottom:1px  solid #E2E3E4;
	border-top:1px  solid #E2E3E4;
	color:#CB2027;
	font-weight:normal;
	padding:3px 15px 3px 0px;
	margin-bottom:10px;
}

div.productDetailPrice strong{
	font-weight:normal;
}

div.productDetailEmailFriend{
	float:left;
	padding:1px;
	margin-left:15px;
	padding-top: 4px;
}

div.productDetailEmailFriend a{
	color:#CB2027;
}

div.productDetailAddToWishlist{
}

div.productDetailBuyNow{
	/*float:left;*/
}

input#addToCart{
	background:#ffffff;
	border:none;
	padding:0px;
	/*color:#000;*/
	color: #CB2027;
	font-size:13px;
	float: right;
}
/*end of product detail table*/

/*cross promotion table*/
div#cross-promotion {
    clear: both;
	text-align:center;
	padding-top:30px;
}

table#cross-promotion-table {
	width:100%;
}

table#cross-promotion-table td{
	text-align:center;
	padding-bottom:4px;
}

tr.image-row {
}

tr.image-row td{
	width:33%;
}

tr.image-row a {
}

tr.product-name-row td{
	padding:0px 10px;
}

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 {
	display:block;
}
/*end of search page search form*/

/*cart form*/
#mainForm {
}

#mainForm td {
	padding:2px;
}

#mainForm label{
	
}

#mainForm input.textinput {
	width:221px;
}

#mainForm select {
	width:225px;
}

#mainForm select#payprovider {
	/*margin-left:144px;*/
	/*margin-bottom:5px;*/
}

#mainForm textarea {
	width:222px;
	margin-left:144px
}
/*end of cart form*/

/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
}

#footerMenuHolder{
	background:#ffffff;
	border-top:1px  solid #e2e3e4;
	padding:5px 0px;
}

#footerMenu {
	font-size:11px;
	color:#000000;
	font-weight:bold;
	
}

#footerMenu li {
	display:inline;
	margin-right:10px;
	margin-left: 10px;
}

#footer a {
	color:#000000;
}

#footer a:hover {
	color:#cd2027;
}

#credits{
	color:#e0777b;
	font-size:11px;
	padding:10px 0px;
	text-align:right;
}

#credits a,
#credits a:hover{
	color:#e0777b;
}
/*end of footer*/

img.content {
	float: right;
	margin: 0px 0px 10px 10px;
	border: 1px solid #e2e3e4;
	padding: 10px;
}

#searchFormDiv {
	float: right;
	padding:10px 0px 3px 10px;
}

#searchForm {
	margin: 0px;
	padding: 0px;
	/*width: 300px;
	border: 1px solid #FF0000;*/
	text-align: right;
}

#searchForm label{
	display:inline;
	width:30px;
	padding-right: 8px;

	font-size:11px;
	text-transform: lowercase;
	font-weight: bold;
}

#searchForm .textbox{
	width:140px;
	border:1px solid #e2e3e4;
	font-size:12px;

}

#searchForm .submit{
	background:none;
	border:none;
	color:#cd2027;
	padding:0px; 
	vertical-align:top;
}

#search-page-form #search-for-box {
width: 49%;
float: left;
}

#search-page-form #search-type-box {
width: 49%;
float: left;
}


.house{
	background:url(../images/house_mid.png) repeat-y center center;
	width: 83px;
	margin: 5px 0px 0px 28px;
}

.houseBot{
	background:url(../images/house_bot.png) no-repeat center bottom;
}

.houseTop{
	background:url(../images/house_top.png) no-repeat center top;
	padding: 30px 0px 14px 0px;
	text-align: center;	
	min-height: 50px;
	width: 100%;
}

#navigation .house ul{
	margin: 0px 0px 0px 2px;
	padding: 0px;
	line-height: 11px;
	min-height: 60px;
}

#navigation .house ul li{
	margin: 0px;
	padding: 1px 0px;
	line-height: 11px;
}

#navigation .house ul li a{
	color: #ffffff;
	font-size: 10px;
	line-height: 11px;
	font-weight: bold;
	letter-spacing: 0px;
}

#navigation .house ul li a:hover{
	color: #000000;
}


#navigation .house ul li.selected{
	background: none;
}
