/*  

CONTENTS ------------------------------------------

*01: Reset
*02: Util classes & Phrase Elements
*03: Default Styles (Typography, colour)
*04: Structure (layout, size, positioning)
*05: Common Containers & Subclasses

*/

/* *01: Reset -----------------------------------------------------------------------------------------------------------------*/

body {color:#000;background:#fff;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
img{display:block;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:"'";}
abbr,acronym {border:0;font-variant:normal;}
sup,sub {line-height:-1px;vertical-align: text-top;}
sub {vertical-align:text-bottom;}
input, textarea, select{font-family:inherit;font-size:inherit;font-weight:inherit;}

/* *02: Util Classes ----------------------------------------------------------------------------------------------------------*/

.center 				{ text-align: center; }
.right 					{ text-align: right !important; }
.left 					{ text-align: left !important; }
.small 					{ font-size: 0.9em !important;}
.float-right 			{ float: right; }
.float-left 			{ float: left;}
.clear 					{ clear: both; }
.clear-left				{ clear: left; }
.uppercase 				{ text-transform: uppercase; }
.nowrap 				{ white-space: nowrap; }
.offscreen				{ position: absolute; left: -9999px; top: -9999px; }
.hidden					{ display: none !important; }
.self-clear 			{ zoom: 1; }
.self-clear:after 		{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.no-right-margin		{ margin-right: 0 !important; }
.no-left-margin			{ margin-left: 0 !important; }
.no-top-margin			{ margin-top: 0 !important; }
.no-bottom-margin		{ margin-bottom: 0 !important; }
.top-margin				{ margin-top: 15px !important; }
.bottom-margin			{ margin-top: 15px !important; }
.no-bottom-border       { border-bottom: none !important; }
.no-right-border        { border-right: none !important; }
.hot					{ cursor:pointer; }
.script-only			{ display : none; } /* javascript css should turn this on */
.light					{ font-weight:normal !important ;}
.inline					{ display: inline; vertical-align:middle; }
.relative				{ position: relative; }
.block					{ display: block !important; }
.todo					{ background-color: fuchsia; }

/* *02a: Phrase Elements -------------------- */
strong, .bold 			{ font-weight: bold !important; /*letter-spacing:1px;*/ }
em						{ font-style: italic; }
#ie6 em 				{ margin-left: -1px; }
code					{ font-family: Courier, serif; color: #FF0000; font-size: 0.5em; }
cite					{ font-style: italic; }
abbr, acronym			{ border-bottom: 1px dotted; cursor: help; }
q						{ color: #fff; }
blockquote				{ color: #fff; font-size: 1.1em; margin: 0 0 0.5em 0; }

/* *03: Default Styles --------------------------------------------------------------------------------------------------------*/

body {
	font: 62.5%/1.6 "Arial"; /* set font size to 10px (a nice round number) - 1.4 line height */
	font-family:Arial,Helvetica,sans-serif;
	color: #333;	
	margin:0;
	padding:0;
}

h1,h2, h3, h4, h5, h6 { letter-spacing: 0px; margin-bottom: 0; }

h1,h2 { margin:0;line-height:1em;font-size:2em; font-weight:bold;padding:10px 0 0 0;color:#000; }
h3 { font-size: 1.6em; margin: 1em 0 0.5em 0; }
h4 { font-size: 1.4em; margin: 1em 0 0.5em 0; }

p { font-size: 1.4em; color: #000; line-height: 1.4em; margin: 0.5em 0; }

a { color: #00adff; text-decoration:none; }
h2 a {color: #000;}

a:hover, a:active { text-decoration:line-through; color: #00adff !important; }


ul li {
	list-style: disc;
	margin-left: 2em;
}

ul.no-markers li {
	list-style: none;
	margin-left: 0;
}

ol li {
	list-style-type: decimal;
	margin-left: 2em;
}

dl {
	font-size: 12px;
}

dt {
	float: left;
	clear: left;
	width: 32%;
	margin: 0 0 11px 0 !important;
	color: #999;

}

dd 
{
	width:60%;
	float: right;
	margin: 0 10px 10px 0;
}

/*#ie6 .png { behavior: url(/Css/iepngfix.htc); }*/

.loading
{
	/* TODO: add background animated loading image */
	min-height: 20px;
	padding:5px;
}

.button
{
	text-transform:uppercase;
	display:inline-block;
	color: #fff;
	font-size: 10px;
	padding:3px 0;
	border:1px solid #ddd;
	margin:0;
	background:#00adff;
	zoom:1;
}


.button:hover
{
	color:#00adff;
	background:#fff;
}

/* *04: Structure -------------------------------------------------------------------------------------------------------------*/

#wrapper
{
	width:770px;
	background:#fff;
	margin:1em auto;
}

#header
{
	position:relative;
	overflow:hidden;
}

#logo
{
	width:300px;
	float:left;	
}

#content-wrapper
{
	position:relative;
	width:770px;
	overflow:hidden;
	border-top:1px solid #b4b4b4;
}

#content
{
	width:770px;
	margin:1em 0;
	overflow:hidden;
}


h1
{
	display:block;
	padding:.4em 0 .4em .4em;
	margin-bottom:2px;
}



#content p
{
	font-family:Arial, Helvetica, Sans-Serif;
	font-size:1.1em;
	font-style:normal;
}

.text-content
{
	
}

.text-content p
{
	padding:0 1em;
}

p.margin-top{

	margin-top:1.5em;
}

/* Main Nav Styles============= */ 

#navigation
{
	clear:both;
}

#sub-navigation
{
	margin:0;
	position:absolute;
	top:0;
	right:0;
}

#sub-navigation li
{
	font-size:1em;
	list-style:none;
	float:left;
	margin:0;
	padding:0 1em;
	border-right:1px solid #000;
	line-height:1em;
}

#sub-navigation li.last
{
	padding:0 0 0 1em;
	border:none;
}

#sub-navigation a
{
	color:#000;
}






/* End Main Nav Styles============= */ 

/* Product Page Styles============= */ 

#product-viewer
{
	float:left;
	width:300px;
}


#product-detail
{
	margin-left:2px;
	width:240px;
	float:left;
	background:#eee;
	padding:10px;
}

#product-detail h1
{
	padding:0;
	margin:0;
	font-size:2em;
	font-weight:bold;
}

#product-detail h2 
{
}

#product-detail p
{

}

/* End Product Page Styles========= */ 



/* Product Gallery Styles========== */ 

#gallery
{
	border-top:1px solid #000;
	overflow:hidden;
	position:relative;
	margin-top:5px;
	clear:both;
}

#gallery li
{
	list-style:none;
	margin:1em 0 1em 1em;
	float:left;
}

#gallery li img
{
	border:1px solid #b6b6b6;
	padding:5px;
	margin:5px;	
}
.sold-out
{
	position:absolute;
}

/* End Product Gallery Styles====== */ 






/* Footer Styles=================== */ 

#footer
{
	width:770px;
	height:40px;
	border-top:1px solid #b4b4b4;
}


#footer p
{
	color:#b4b4b4;
	font-size:1em;
	text-align:right;
	font-family:Georgia;
	font-style:italic;
}


.product-list li
{
	list-style:none;
	display:block;
	width:252px;
	height:330px;
	margin:15px 0 0 6px;
	float:left;

}

/* End Footer Styles=============== */ 

/* Product List Styles============= */ 

.product-list li.row
{
	clear:left;
	margin-left:0px;
}

.product-list .image
{
	margin-bottom:2px;
}

.product-list .description
{
	padding-left:52px;
	zoom:1;
	position:relative;
	width:168px;
}

.product-list .description h2
{

	
}

.product-list .description p
{
	margin:0;
}

p.price {
 color:#00adff;
}
	
/* End Product List Styles========= */ 


/* Cart Styles===================== */ 

.add-to-cart
{
	width:180px;
	float:right;
	background:#eee;
	padding:10px;
	text-align:right;
}

.add-to-cart label
{
	display:block;
	font-size:1.4em;
	margin-bottom:.5em;
	clear:both;
}

.add-to-cart .button
{
	width:100%;
}

/* CART TABLE */
.proceedButton {
	float:right;
}

.proceedButton.top {
	float:left;
}

.cart-tab {
	clear:both;
	width:100%;
	border-collapse:collapse;
	margin:1em 0;
	padding:0;
}
.cart-tab th, .cart-tab td {
	border:1px solid #ccc;
	border-width:1px 0;
	padding:5px 2px;
	font-size:1.4em;
}
.cart-tab .altRow th, .cart-tab .altRow td {
	background:#DFDFDF;
}
.cart-tab .totalRow td {
	border-top:3px double #999;
	border-bottom:0;
}
.cart-tab th, .cart-tab .total, .cart-tab .title {
	font-weight:bold;
	line-height:1.2em;
}

.cart-tab .total {
	font-size:2em;
}
.cart-tab .total, .cart-tab .price {
	text-align:right;
}

#shipping {
	border:3px solid #999;
	float:right;
	margin-top:1em;
	padding:1em;
	width:300px;
}
#shipping select
{
	font-size:1.4em;
}


#shipping h2 {
	font-weight:bold;
	margin:0 0 0.5em 0;
	padding:0;
	font-size:1.5em;
}

#calcs {
	clear:both;
	font-size:1.4em;
}

.grandTotal {
	border-bottom:3px double #CCCCCC;
	font-size:2em;
	font-weight:bold;
	padding:0.2em;
	text-align:right;
	margin-bottom:1em;
}

.subTotal, .tax {
	padding:0.2em;
	text-align:right;
}

.message
{
	text-align:center;
	color:#000;
	background:#ddd;
	padding:1em;
	font-size:2em;
	font-weight:bold;
	clear:both;
	margin:1em 0;
}

.message strong
{
	color:#00adff;
}

.free-ship
{
	padding-top:1em;
}

.note
{
	width:400px;
}


#micro-cart
{
	position:absolute;
	width:200px;
	top:40px;
	right:0;
	overflow:hidden;
	zoom:1;
}

#micro-cart .cart-items
{
	font-family:Arial;
	font-size:1em;
	font-style:normal;
}

#micro-cart .total
{
	font-weight:bold;
}

#micro-cart .view-cart
{
	float:right;
}

#micro-cart .view-cart a
{
	display:block;
	background:url(../images/layout/bkg/cart-link.gif) no-repeat;
	font-size:1.4em!important;
	color:#000;	
	width:90px;
	height:22px;
}


/* End Cart Styles================= */ 

/* start artist styles ============ */
.artist
{
	width:380px;
	float:left;
	margin:0 0 10px 0;
}

.artist .image
{
	width:120px;
	padding:10px 5px;
	float:left;
}

.artist .image img
{
	border:1px solid #ddd;
	padding:2px;	
}

.artist .artist-content
{
	width:230px;
	padding:0 5px;
	float:left;
}

.artist .artist-content a
{
	background:url(/images/link-x.gif) no-repeat;
	padding-left:15px;
}

.clear-row
{
	clear:both;
}


/* blog stuffs */

#blog-content
{
	width:570px;
	float:left;
	padding:0 30px 0 10px;
}

#blog-sidebar
{
	width:160px;
	float:right;
}

#blog-sidebar li
{
	list-style:none;
	margin:0;
	padding:0;
}

.cmt-form-name
{
	background:url(/images/gen/user-icon.gif) no-repeat;
		
}

.cmt-form-email
{
	background:url(/images/gen/email-icon.gif) no-repeat;
}

.cmt-form-comment,.cmt-form-website,.cmt-form-name,.cmt-form-email
{
	padding-left:5px;
	padding-top: 5px;
	padding-right:20px;
	padding-bottom:1px;
	background-color:#fff;
	background-position:5px 5px;
	height:25px;
}

.comment-form
{
	background:#efefef;
	padding:10px;
	overflow:hidden;
}

.comment-form input,.comment-form textarea
{
	width:100%;
	font-size:1.1em;
	padding:5px;
	font-weight:bold;
	color:#666;
}

.comment-form textarea
{
	height:150px;
}

	
/* *05: Common Containers & Subclasses -------------------------------------------------------------------------------------------------------------*/











/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
