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

/*-------1.2. block elements----*/
h1 {
}



h1.infoheading{
	background:url(../images/h1back.jpg) top left no-repeat;
	padding-left:25px;
}
.infoheading img{	padding-top:20px;	}
h2 {
   
}

h3 {
	font-weight:bold;
	font-size:20px;
	margin-bottom:10px;
	color:#000;
}

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

li {
}

dl {
}

dd {
}

dt {
}

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

form ol {
}

form li {
	margin-bottom:4px;
}

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 {
	color:#696A6C;
}

imput.submitBtn {
}

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

button {
    cursor: pointer;
    border: none;
}

select {
	color:#816974;
}

option {
}

optgroup {
}

textarea {
}

/*--------------1.2.3. tables-------------*/
table {
    border: none;
    border-collapse: separate;
}

tr {
}

td {
}

th {
}

/*----------1.2.4 padded divs------------*/
.pad1 {
	border:1px solid #737578;
	margin:3px;
	padding:10px 10px 50px 10px;	
}

.minh{
	min-height:550px;
}

* html .minh{
	height:550px;
}

.pad2 {
}

.pad3 {
	padding:0px 150px 0px 270px;
}

.pad4 {
	padding:0px 550px 0px 120px;
}

.pad5 {
	padding:0px 0px 0px 120px;
}
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
}

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

/*-------1.6. other classes------*/
.hasBg{
	background:url(../images/contentBack.jpg) right 170px no-repeat;
}
/************************************
 
 2. Layout
 
 *************************************/

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

#wrapper{
	border:1px solid #CBCCCE;
	position: relative;
}


#frontPageFlashHolder{
	width:250px;
	height:353px;
	overflow:hidden;
}

#frontpageFlash{
	width:250px;
	height:353px;
	background:url(../images/flashHolderBack.jpg) center center no-repeat;
}

#frontPageTable .middleRow td{
	padding:5px 3px 5px 3px;
}
/*end of container*/

/*------------2.2. header---------------*/
#header{
	padding:15px 0px 0px 120px;
	position:relative;
}

a#logo {
	display:block;
	width:96px;
	height:117px;
	float:left;
	background:url(../images/logo.jpg) bottom left no-repeat;
	text-indent:-9999px;
	overflow:hidden;
}

#topMenu {
	text-align:right;
	padding-top:90px;
}


#topMenu ul {

}

#topMenu ul li {
	display:inline;
	margin-right:12px;
	position:relative;
}

#topMenu ul li a {
	color:#000;
}


#topMenu a:hover {
	color:#E82224;
	font-weight:bold;
}

#topMenu a.selected{
	color:#E82224;
	font-weight:bold;
}

/*end of header*/

/*------------2.3. content--------------*/
#content {
	padding-top:20px;
	color:#696A6C;
}

#content a{
	color:#FE0000;
}

/*sideCell*/
td#sideCell{
	width:130px;
	padding-right:10px;
} 


#sideContent {
	text-align:right;
	position:relative;
	top:-10px;
}

#navigation {
	color:#000;
}

#navigation li {
	padding-top:10px;
}

#navigation a {
	color:#000;
	padding-left:20px;
	padding-top:10px;
}

#navigation a:hover {
	background:url(../images/navigationList.jpg) bottom left no-repeat;
}

#navigation li.selected a,
#navigation li.selectedwithsub a {
	background:url(../images/navigationList.jpg) bottom left no-repeat;
}

#navigation li.selected a:hover{

}

#navigation li.subcat a ,
#navigation li.subselected a{
	color:#9FA1A4;
}

#navigation li.subcat a:hover{
}
/*end of sideCell*/

/*mainCell*/
#maincontent {
	padding:0px 10px 0px 0px;
}

#maincontent a {
 
}

#mediaPics a:hover img{
  opacity: 0.6;
  -moz-opacity: 0.6;
  -khtml-opacity:0.6;
}

#breadcrumbArea{
	padding:0px 30px 0px 90px;
	clear:both;
}

#breadcrumb {
	color:#9FA1A4;
	font-size:9px;
	padding:20px 0px 40px 0px; 
	text-transform:lowercase;
}

#breadcrumb a {
	color:#9FA1A4;
}

#breadcrumb .trail {

}

#breadcrumb a:hover {
	color:#FE0000;
}

.prevnext {

}

#miniCart {
	float:right;
	color:#E82224;
	padding:20px 0px 40px 0px;
}

#miniCart img {
    vertical-align: middle;
}

#miniCart a{
	background:url(../images/cart.jpg) center left no-repeat;
	padding:4px 0px 4px 25px;
	color:#E82224;
}

#miniCart span{
	padding: 0px 10px;
}

.pagenums{
	text-align:center;
}


.pagenums a{
	
}

.pagenums a:hover{
	
}
/*end of mainCell*/

/*product table*/
table#prodtable {

}

table#prodtable a {

}

tr.trImage {

}

td.tdImage {

}

tr.trName {

}

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

td.tdImage {
}

tr.trDescription {
	display:none;
}

td.tdDescription {

}

tr.trPrice {

}

td.tdPrice {
}

tr.trBuyButton {

}

td.tdBuyButton {
	padding-bottom:10px;
}

td.productsImageHolder {
	border:1px solid #A7A9AC;
}

td.tdImage td a {
}

tr.trBlank,
tr.trBlankTop,
tr.trBlankBottom{
	display:none;
}

tr.trHrRow div.hrrow{
	height:3px;
	overflow:hidden;
}
/*end of product table*/

/*categories table*/
table#catTable {
	margin: 0px 0px 30px 0px;
}

table#catTable div.catImage{
	display:none;
	position:relative;
	width:100%;
}

table#catTable div.catImage img{
	position:absolute;
	top:0px;
	left:0px;
}

div.catImage{
	margin:10px 0px;
	text-align:center;
}

table#catTable td:hover div.catImage{
	display:block;
}

td.tdCatName{
	text-align:left;
	padding:10px 0px 0px 5px;
	color:#A0A2A4;
	font-weight:bold;
	font-size:16px;
}

#content td.tdCatName a{
	color:#000;
}

td.tdCatName object{
	 background:url(../images/smallArrow.gif) top right no-repeat;
	 width:145px;
}

/*end of categories table*/

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

div#prodDetailHolder{
	border:1px solid #A7A9AC;
	padding:10px;
}

td.image-cell{
}

a.hrefProductDetailImage{}

img.prodfullimage{}

a.zoom{
	text-align:center;
	text-transform:lowercase;
	font-weight:bold;
	display:block;
	padding:10px 0px;
	color:#000 !important;
}

a.zoom:hover{
}

td.text-cell{
	text-align:right;
	padding-left:10px;
}

h1.productDetailName{
	text-align:right;
	font-size:26px;
	color:#808285;
	text-transform:uppercase;
	width:490px;
}

p.productDetailDescription{
}

div.productDetailOptions{
}

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

table#productDetailTable select{
	width:150px;
}

div.productDetailPrice{
	padding:15px 0px;
	color:#E82224;
	font-size:15px;
	font-weight:bold;
}

div.productDetailPrice strong{
	display:none;
}

div#prodDetailPrice{
	display:inline;
}

div.productDetailEmailFriend{
}

div.productDetailAddToWishlist{
}

div.productDetailBuyNow{
}

#addToCart{
	background:url(../images/addToCart.jpg) center right no-repeat;
	border:none;
	padding:2px 20px 2px 0px;
	margin:0px;
}

#checkoutInput{
	background:url(../images/checkout.jpg) center right no-repeat;
	border:none;
	padding:2px 20px 2px 0px;
	margin:0px;
}
/*end of product detail table*/

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

#multiple-images a{
	display:block;
	clear:both;
	text-align:center;
	padding:0px 12px;
		letter-spacing:0px;
}


#multiple-images td.left-cell img{
	display:block;
	margin:0 auto;
/*
	text-align:left;
	margin-right:7px;
*/
}

#multiple-images td.right-cell img{
	display:block;
	margin:0 auto;
/*
	text-align:right;
	margin-left:7px;
*/
}

#multiple-images td.defecit{
	display:none;
}
/*end of multiple images table*/

/*cross promotion table*/
div#cross-promotion {
    clear: both;
}

table#cross-promotion-table {
}


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

tr.image-row {
}

tr.image-row td td {
}

tr.image-row a {
}

tr.product-name-row {
}

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:200px;
}

#mainForm select {
	width:204px;
}

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

#mainForm textarea {
	width:200px;
	height:70px;
	margin-left:53px
}

#mainForm p{
	text-align:center;
}
/*end of cart form*/


/*wholesale form*/
#wholesale-right {
float: right;
position: relative;
width: 300px;
padding-right: 100px;
}

#wholesale-left {
width: 370px;
padding-left:20px;
float:left;
}

#wholesale-form .textinput{
	width:200px;
}

#wholesale-form textarea{
	width:200px;
	height:70px;
}

#wholesale-login-form .textinput{
	width:200px;
}
/*end wholesale form*/
/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
	color:#D1D3D4;
	padding:2px 15px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}

#footerMenu {
}

#footerMenu ul {
}

#footer li {

}

#footer a {
	color:#D1D3D4;
}

#footer a:hover {
}
/*end of footer*/



/* footer 2 */


#footerMenu {
	text-align:right;
	position: absolute;
	bottom: 20px;
	width: 950px;
	right: 11px;
}


#footerMenu ul {

}

#footerMenu ul li {
	display:inline;
	margin-right:12px;
	position:relative;
}

#footerMenu ul li a {
	color:#000;
}


#footerMenu a:hover {
	color:#E82224;
	font-weight:bold;
}

#footerMenu a.selected{
	color:#E82224;
	font-weight:bold;
}


/* end footer2 */


#orders h4{
	padding: 0px 0px 10px 0px;
}