/*
 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:Verdana, Geneva, Arial, Helvetica, sans-serif;
	background:#010201 url(../images/body.jpg) top left repeat-x;
}

/*-------1.2. block elements----*/
h1 {
	color:#ea166e;
	padding:8px 0px;
	font-size:11px;
}


h1.catname{

}

h1.infoheading{
	font-size:16px;
}


h2 {
   color:#EA166E;
   font-size:14px;
   margin-bottom:5px;
}

h3 {
}

h4 {
}

h5 {
	text-transform:uppercase;
	color:#DD156E;
	font-size:12px;
}

h6 {
}

p {
	margin-bottom:10px;
}

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

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 #C6C6C6;
	padding:1px 0px;
	color:#58585A;
}

imput.submitBtn {
}

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

button {
    cursor: pointer;
    border: none;
}

select {
	color:#747577;
	border:1px solid #C6C6C6;
}

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

.pad2 {
	padding:0px 30px 10px 30px;
	text-align:justify;
}

.pad3 {
}

.pad4 {
}

.pad5 {
}

.borderTop3 {
        background: url(../images/borderTop3.gif) top left repeat-x;
    }
    
    .borderBot3 {
        background: url(../images/borderBot3.gif) bottom left repeat-x;
    }
    
    .borderLeft3 {
        background: url(../images/borderLeft3.gif) top left repeat-y;
    }
    
    .borderRight3 {
        background: url(../images/borderRight3.gif) top right repeat-y;
    }
    
    .borderTopLeft3 {
        background: url(../images/borderTopLeft3.gif) top left no-repeat;
    }
    
    .borderTopRight3 {
        background: url(../images/borderTopRight3.gif) top right no-repeat;
    }
    
    .borderBotLeft3 {
        background: url(../images/borderBotLeft3.gif) bottom left no-repeat;
    }
    
    .borderBotRight3 {
        background: url(../images/borderBotRight3.gif) bottom right no-repeat;
    }
    
/*----------1.3. inline elements---------*/
a {
    cursor: pointer;
	color:#000;
}

a:hover, a:focus {
	color:#F273A8;
}

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,
.floatLeft {
    float: left;
    clear: left;
}

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

/*-------1.6. other classes------*/
.highlight{
	color:#DA1C5C !important;
}

.separator1{
	height:0px;
	border-top:1px solid #C6C6C6;
	clear:both;
}

strong.firstLetter{
	font-size:48px;
	font-weight:normal;
}
/************************************
 
 2. Layout
 
 *************************************/

/*------------2.1. container------------*/
#container {
	font-size:10px;
	color:#747577;
}

div.inner{
	width:970px;
	margin:0 auto;
}
/*end of container*/

/*------------2.2. header---------------*/
#header{}

a#logo {
	display:block;
	width:388px;
	height:139px;
	background:url(../images/logo.png) bottom left no-repeat;
	text-indent:-999px;
	overflow:hidden;
}

#topMenuHolder{
	background:url(../images/logoBot.png) top left no-repeat;
	text-transform:uppercase;
	color:#fff;
	font-size:10px;
}

#topMenuHolder a{
	color:#fff;
}

#topMenuHolder a:hover{
	color:#EA166E;
}

#topMenu {
	padding:15px 0px 15px 350px;
}

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

#miniCart img {
    vertical-align: middle;
}


#miniCart a{
	padding:0px 4px;
}

#miniCart span{
	padding-left:4px;
}

#topMenu {

}

#topMenu li {
	display:inline;
	padding-right:5px;
}

#topMenu ul li a {

}

#topMenu a:hover {

}

/*end of header*/

/*------------2.3. content--------------*/
#content {
	background:#ffffff;
}

#mediaTable{
	margin:0px 50px;
}


#mediaTable td{
	padding-bottom:15px;
}
/*searchBar*/
#searchBar{
	border-bottom:1px solid #c6c6c6;
	padding:10px 0px;
}

#searchArea{
	float:right;
	width:245px;
}

#searchForm input{
	vertical-align:middle;
}

#stext{
	width:170px;
	border:1px solid #000;
	padding:2px;
}
/*end of searchBar*/

/*sideCell1*/
#sideCell1{
	width:150px;
	border-right:1px solid #C6C6C6;
}

#sideContent1 {
	padding:5px 5px 0px 0px;
}

#navigation {

}

#navigation li {
	color:#696b6b;
	text-transform:uppercase;
}

#navigation a {
	color:#696b6b;
	display:block;
	padding:10px 0px;
}

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

#navigation li.selected a,
#navigation li.selectedwithsub a{
	color:#828383;
	font-weight:bold;
	background:url(../images/hGreyArrow.gif) 120px center no-repeat;
	border-bottom:1px solid #C6C6C6;
}

#navigation li.selected a:hover{

}

#navigation li.subcat a {
}

#navigation li.subcat a:hover{
}

#navigation li.subselected a {
	color:#f273a8;
	font-weight:bold;
	background:url(../images/hPinkArrow.gif) center right no-repeat;
}


li.mainCat{
	font-weight:bold;
}

/*end of sideCell1*/


/*mainCell*/

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

#maincontent a {
 
}

#mainContent a:hover{
	color:#EA166E;
}

#breadcrumb {
	color:#999;
	font-size:9px;
	font-weight:bold;
	text-transform:lowercase;
	border-bottom:1px solid #C6C6C6;
	padding:10px 15px;
}

#breadcrumb a {
	color:#999;
}

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

#breadcrumb .trail {

}

.trail a:hover {

}

.prevnext {

}


.prevnext a{
	
}

#howitworksTable td{
	padding:0px 15px;
	width:33%;
}

#howitworksTable h4{
	font-size:24px;
	font-weight:lighter;
	color:#EA166E;
	font-family:Georgia ,serif;
}

.pagenums{
	text-align:center;
}


.pagenums a{
	
}

.pagenums a:hover{
	
}

#member-sidebar{
	float:right;
	padding-left:20px;
	height:300px;
}



form#standard{
	
}
/*subscribe form*/
#subscribeForm .textinput{
	width:160px;
	border:1px solid #C6C6C6;
}
/*end of subscribe form*/
/*end of mainCell*/

/*sideCell2*/
#sideCell2{
	width:208px;
}

#sideContent2{
	padding:5px 0px 0px 0px;
}

#sideCell2 a{
	color:#000;
}

#sideCell2 a:hover{
	color:#DA1C5C;
}

.randomProd td#randomLeft{
	padding:8px 2px 4px 4px;
}


.randomProd td#randomLeft h5{
	font-weight:lighter;
	margin-bottom:2px;
	text-transform:uppercase;
}

.randomDesigner{
	color:#000;
	text-transform:uppercase;
}

.randomPrice{
	padding-top:7px;
	color:#000;
}

#randomRight{
	padding-right:1px;
}

.randomProd .link{
	margin-right:2px !important;
}

.box{
	border:1px solid #cdcece;
	margin-bottom:2px;
	padding:2px;
}

.box .link{
	background:url(../images/hBlackArrow.gif) center right no-repeat;
	padding-right:13px;
	margin-right:1px; 
}

.loginBox{
	background:url(../images/diag1.jpg) top left repeat;
	text-align:center;
	padding:8px 2px;
	margin-bottom:10px;
}

.loginBox ul{
	padding:10px 0px 0px 0px;
}

.loginBox ul li{
	margin-bottom:10px;
}

#sideCell2 .textinput{
	background:#ffffff;
	color:#58585a;
	padding:2px;
	border:1px solid #c7c7c7;
	width:170px;
	margin-top:8px;
	text-align:center;
}

#loginSubmit{
	background:none;
	border:none;
	padding:0px 8px 0px 0px;
	margin:2px 0px;
	color:#000;
	font-size:20px;
	font-weight:bold;
	background:url(../images/hBlackArrow.gif) center right no-repeat;
}

#newsletterBox{
	background:url(../images/newsletterBox.jpg) top left repeat-x;
	width:203px;
	margin:0 auto;
	text-align:center;
	font-size:9px;
	color:#58585a;
}

#newsletterEmail{
	width:140px;
	padding:2px 4px;
	border:1px solid #ffffff;
	color:#666666;
	font-weight:bold;
	margin:8px 0px 0px 0px;
}
/*end of sideCell2*/

/*product table*/
table#prodtable {

}

table#prodtable a {

}

tr.trImage {

}

td.tdImage {

}

td.tdImage td{
	width:192px;
}

tr.trName {
}

td.tdName {
	text-transform:uppercase;
	color:#747577;
	padding:8px;
}

td.tdName a{
	color:#747577;
}

tr.trDescription {
	display:none;
}

td.tdDescription {
}

tr.trPrice {
	display:none;
}

td.tdPrice {
}

tr.trBuyButton {
	text-transform:uppercase;
	color:#000000;
}

td.tdBuyButton a{
	color:#000000;
	padding-right:10px;
	background:url(../images/hPinkArrow2.gif) center right no-repeat;
}

td.productsImageHolder {
}

td.tdImage td a {
	display:block;
	text-align:center;
	padding:12px 0px;
}
/*end of product table*/

/*categories table*/
table#categoriesTable {
}

td.tdCatImage a{
	display:block;
	padding:12px;
}

td.tdCatName {
	text-transform:uppercase;
	color:#747577;
}

td.tdCatName td {

}

td.tdCatName a{
	color:#747577;
}
/*end of categories table*/

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

td.image-cell{
	text-align:center;
	width:280px;
}

.productDetailHolder{
	width:272px;
}

a.hrefProductDetailImage{
	display:block;
	text-align:center;
}

img.prodfullimage{
	display:block;
	padding:12px;
	text-align:center;
}

a.zoom{
	text-transform:lowercase;
	display:block;
	padding:0px 0px 15px 0px;
}

a.zoom:hover{
}

td.text-cell{
	padding:10px 10px 0px 30px;
}

h1.productDetailName{
}

p.productDetailDescription{
	min-height:210px;
	margin-bottom:0px;
}

div.productDetailOptions{
	text-align:right;
	padding:15px 0px;
	border-bottom:1px solid #C6C6C6;
	border-top:1px solid #C6C6C6;
	margin-bottom:10px;
}

div.productDetailOptions fieldset{
	padding:2px;
}

div.productDetailOptions label{
	float:left;
}


div.productDetailOptions select{
	width:150px;
}

div.productDetailPrice{
	text-align:right;
	padding-right:15px;
}

div#prodDetailPrice{
	float:left;
	margin-top:7px;
	font-weight:bold;
}

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

div.productDetailEmailFriend{
	float:left;
	margin-bottom:10px;
}

div.productDetailAddToWishlist{
	float:left;
	margin-bottom:10px;	
}

div.productDetailBuyNow{
	float:left;
	width:91px;
	text-align:center;
	margin-bottom:10px;
}

div.productDetailBuyNow strong{
	display:block;
	height:41px;
	line-height:30px;
}
/*end of product detail table*/

/*multiple images*/
#multiple-images{
	width:100%;
	text-align:center;
}

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

#multiple-images img{
	margin-left:-26px;
}

#multiple-images a{
	display:block;
	padding:12px;
	width:37px;
	height:90px;
	overflow:hidden;
	text-align:center;
	margin:0 auto;
}

#multiple-images a span{
	display:none;
}

#multiple-images .borderTop3{
	margin:0 auto;
}
/*end of multiple images*/
/*cross promotion table*/
div#cross-promotion {
    clear: both;
}

table#cross-promotion-table {
	width:100%;
	margin-top:15px;
}

tr.image-row img{
	width:90px;
	height:130px;
	display:block;
	padding:12px;
}

tr.image-row td.tdCrossPromo  td{

}

tr.image-row a {
}

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

tr.price-row {
	display:none;
}
/*end of cross promotion table*/

/*search table*/
#search-info dt{
	font-size:12px;
	color:#DD156E;	
}

#search-info dd{
	padding:0px 0px 8px 15px;
}
/*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:225px;
}

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

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

/*member form*/
form.memberForm .textinput{
	width:203px;
	margin-bottom:3px;
}

form.memberForm select{
	width:205px;
}

.memberForm .buttons{
}
/*end of member form*/

/*end of content*/

/*-----------2.4. footer----------------*/
#footer {
	color:#666666;
	text-align:center;
	padding-bottom:15px;
}

#footerMenu {
	color:#fff;
	text-transform:uppercase;
	padding:18px 0px;
}

#footerMenu li {
	display:inline;
}

#footerMenu a {
	color:#fff;
}

#footer a{

}

#footer a:hover {
	color:#EA166E;
}

.credits{
	float:right;
}

.credits a{
	color:#B3B5B8;
}

.copyright{
	padding-left:220px;
}
/*end of footer*/
