/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; font-weight: bold; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; background: #fff; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color:#607890; }
a:hover { color:#036; }


ul { margin-left:30px; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }

/*
-------------------------------
Basic Div Layout
---------------------------------
*/

#wrap {margin:0 auto; text-align:left; width: 975px; }

#content { background:#fff; margin:0 auto; padding:0; text-align:left; min-height:450px;}

#content_wrap {margin:0 auto;}


.container_clear {width:100%; margin:0 auto; height:10px;}


/*
-------------------------------
NavSearchbox
-------------------------------
*/

#navsearchbox {text-align: right;}

#navsearchbox form {margin:0; padding:0;}

#navsearchbox input {border:0; margin:8px 0px; padding:0;}

#navsearchbox .navsearchinput {height:14px; padding:5px; width:160px; background:url(images/searchbar_grad.png) #999; color:#fff;}

#navsearchbox input#searchsubmit {height:24px; width:18px; background:url(images/search_icon.png) no-repeat; cursor:pointer; margin:8px 4px 0px 0px;}

#navsearchbox #searchform input#searchsubmit:hover {height:24px; width:18px; background:url(images/search_icon.png) no-repeat; background-color:none; cursor:pointer; margin:8px 4px 0px 0px;}

#navsearchdivider {width:1px; height:40px; border-left:1px solid #666; margin:0 15px;}


/*
-------------------------------
Searchbox
-------------------------------
*/

#searchbox {}


/*
-------------------------------
Navbar Feed Icons
-------------------------------
*/

#navfeedicons {text-align:right;}

a.navfeedicon {display:block; height:24px; width:24px; margin:8px; border:0px; text-decoration:none; float:right;}

a.navfeedicon:hover {background-position:0px -24px;}

a.navfeedmail {background:url(images/mail_icon.png); width:36px;}

a.navfeedrss {background:url(images/rss_icon.png);}



/*
-------------------------------
Navigation Bar Dropbox
-------------------------------
*/

#button {
	height: 28px;
	width: 200px;
	margin: auto;
	position:relative;
	top:6px;
	right:0px;
	z-index:1;
}

#button img {height:28px; width:200px;}

.menu_class {
	margin-bottom: -5px;
}

.the_menu {
	display:none;
	width:200px;
}

.the_menu {background:#333; }

.the_menu ul.children {
	margin-bottom:0;
}


.the_menu ul.children li {
	padding-left:20px;
}

.the_menu ul.children li a {
	font-size:11px;
}

.the_menu li a {
	color:#ccc;
	text-decoration:none; 
	padding:10px; 
	display:block;
}

.the_menu li a:hover {
	padding:10px;
	font-weight:bold;
	background:#ccc;
	color:#333;
}

	

/*
-------------------------
Featured Slider
-------------------------
*/

.featured {background:#ccc;}

.stepcarousel{
	position: relative; /*leave this value alone*/
	overflow: scroll; /*leave this value alone*/
	width: 940px;
	height: 300px; /*Height should enough to fit largest content's height*/
}

.stepcarousel .belt{
	position: absolute; /*leave this value alone*/
	left: 0;
	top: 0;
}

.stepcarousel .panel{
	float: left; /*leave this value alone*/
	overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
	width: 940px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}

.stepcarousel .panel img {margin:10px 0px 0px 10px;}

.featured_text {padding:20px 20px 0 0;}

	.featured_text h2 {text-transform:uppercase;}
	
	.featured_text h2 a {color:#333;}
	
	.featured_text p.read_more a {font-size: 12px; font-weight:bold; color:#fff; background:#E0941A; padding:10px 15px;}
	
	.featured_text p.read_more a:hover {text-decoration:none; background:#333; color:#fff;}

/*
-------------------------
Featured Slider Navigation
-------------------------
*/

#slider_nav {color:#dddddd; padding:10px 0px 10px 0px; line-height:20px; height:20px; font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; font-weight: bold; margin-top:10px; background: #000;}

#slider_nav img { vertical-align:middle;}

#slider_nav p {line-height:20px; margin:0 !important; color:#dddddd; text-align:right;}

#slider_nav a {color:#ffffff; text-decoration:none; margin:0px 10px;}

#slider_nav a img {margin: 0 5px;}


/*
-------------------------
   Featured Slideshow
-------------------------
*/
#featured-slideshow {height:310px;}

#featured-slideshow img {border:10px solid #ccc;}


/*
-------------------------
Post Entry
-------------------------
*/

/*.entry {border-bottom:1px solid #E4E4E4;}*/

.entry blockquote p {color: #666;font-size: 16px; font-style: italic; line-height: 22px;}

.entry ul {margin-left:50px;}

	.entry ul li {list-style-type: square; line-height:2;}

.entry ol {margin-left:50px;}

	.entry ol li {list-style-type:decimal; line-height:2;}
	
.entry h3 {margin-top:15px;}

#albums .entry {padding:10px; color:#eeeeee; border-bottom:none;}

#albums h2 a {color:#ffffff;}

p.tags {padding-top:10px; margin-bottom:5px; padding-bottom:5px;}

.commentsbox {border-top:1px solid #E4E4E4; padding-top:15px;}

.entry blockquote {border-left:5px solid #666; margin:10px 0px 10px 50px; padding:10px 0px 10px 30px; font-style: italic; font-size:75%; font-weight:bold;}

.box {margin:15px 0px 30px 0px; border-bottom: 1px solid #1d1d1d; }
.entry {margin:15px 0px 10px 0px; }

.box h2 a, .entry h1 { display: block; color: #ee1d57; font-weight: bold; font-style: italic; text-decoration: none; margin-bottom:0px; font-size: 30px; word-spacing: -2px; line-height: 0px; padding: 0px; margin: 0px 0px 0px 0px; }

div.post_meta { font-size:10px; color:#6c6d6f; font-weight: bold; padding:0px; margin: 10px 0px 15px 0px ; /*border-bottom: 1px solid #000; */ display: block; }
div.post_meta a { text-decoration: none; font-size:10px; color:#6c6d6f; font-weight: bold; }



.box p, .entry p { color: #666; font-weight: normal; font-size: 12px; margin: 15px 0px; padding: 0px; line-height: 16px; }

.newer a, .older a { color: #6d6e72; font-weight: bold; font-style: italic; text-decoration: none; font-size: 24px; }
.newer a:hover, .older a:hover { color: #feb300; font-weight: bold; text-decoration: none; font-size: 24px; }
.newer { float: right; }
.older { float: left; }

.entryclear {height:15px;}

#pagenavi {margin-bottom:15px; position: relative; }

/*
-------------------------
Footer
-------------------------
*/

#footerleft {text-align:left;}

#footerright {text-align:right;}



/*
-------------------------
Widgets
-------------------------
*/

.widget {margin-bottom:20px;}

.widget a {text-decoration: none;}
	
	.widget a:hover {text-decoration:underline;}

	.widget ul li {margin: 0; padding:10px; border-bottom:1px dotted;}
	
	.widget h3 {padding: 5px 0; margin-bottom:20px;}
	
	.widget h4 img {float:left; margin-right:10px;}

/*
-------------------------------
Forms
-------------------------------
*/

#searchform input, #searchform textarea, #commentform input, #commentform textarea, .formBuilderForm input, .formBuilderForm textarea, input.wpsc_buy_button {padding:10px; background:#333; color:#fff; border:none;}

#searchform input#searchsubmit:hover, .formBuilderSubmit input:hover, input.wpsc_buy_button:hover, #commentform input#submit:hover {cursor:pointer; background:#aaa; color:#fff; }

.formBuilderForm .single_line_text_box input{width:250px;}

.formBuilderForm .formBuilderLabelRequired, .formBuilderForm .formBuilderLabel {width:100px;}

.formBuilderError {color:#693234;}

.formBuilderSuccess {color:#55814c;}

.formBuilderLabel, .formBuilderLabelRequired {font-weight:bold;}

.formBuilderSubmit input {float:left; margin-bottom:15px;}


/*wpsc checkout form*/


/*-------------------------------
Utility classes
-------------------------------*/

.clear { clear: both }

/* Align */

.aligncenter {margin: 10px auto 20px auto; display: block;}

.alignleft {margin: 10px 20px 8px 0;float: left;}

.alignright {margin: 10px 0px 8px 20px; float: right;}

.thumbnail {display: block;}

.box .thumbnail {margin: 0 0 5px 0 ;}

.fl {float:left;}

.fr {float:right;}

.tenpxspace {height:10px;}

.fr img.thumbnail {margin-left:10px;}

/*-------------------------------
Special
-------------------------------*/
.thumbnailbox img {border:7px solid #ddd; margin:5px}

.singlepostimage img {margin-bottom:15px; border:7px solid #ddd;}


/*-------------------------------
WP-E-Commerce
-------------------------------*/
table.shoppingcart {width:100%;}

table.shoppingcart td, table.shoppingcart th {background:#eee; margin:1px; padding:3px; border:1px solid #fff;}

table.shoppingcart th {background:#333; color:#fff;}

.total {margin:5px 4px; font-size:120%; font-weight:bold;}

.pricedisplay {text-align:right;}

.totalhead {text-align:left;}
	
	
	
	/*Product Display*/
	.single_product_display textcol, .default_product_display {border-bottom:1px solid #E4E4E4; clear:both; margin:15px 0px;}
	
	.productdisplay {clear:both; margin-top:20px;}
	
img.product_image { /*border:7px solid #ddd; */ border: none; display:none; }
	
	.productdisplay .imagecol {}
	
	.productdisplay .producttext {margin-left:5%; /*width:auto; */}
	
	h2.prodtitles, h2.prodtitles a.wpsc_product_title {font-size:20px;}

	h2.prodtitles span {font-size:36px; text-transform: uppercase; font-style: italic; font-weight: bold; }
	
	.wpsc_description {padding-top:5px;}
	
	.wpsc_product_price {float:left;font-size:16px; font-weight:bold;}
	
	.wpsc_buy_button_container, input.wpsc_buy_button {float:right;}
	
	.pricedisplay {text-align:left;}
	
	a.wpsc_edit_product {float:right; text-align: right; font-weight:normal; font-size:100%; font-style:italic;}
	
	.single_product_display {clear:both; margin-bottom:10px; padding-bottom:10px;}
	
	/* Cart */
	table.productcart tr.firstrow td {padding:4px;}
	
	table.productcart tr.product_row td.firstcol img {margin:5px 0px 0px; text-align:center; border:3px solid #ccc;}



/*-------------------------------
Colors
-------------------------------*/
a {color:#E0941A; cursor:pointer;}

a.productlink {color:#E0941A;}



/*-------------------------------
HOMEPAGE OPTIONS
-------------------------------*/

#carouselspace {margin-top:70px; clear:both;}

#homepagegrid {margin:20px auto 0px;}

#homepagegrid a {border:none; text-decoration:none;}

#homepagegrid a img {width:200px; padding:10px 5px;}

.homepage_gridentry {background:#ccc; text-align: center;}

.homepage_gridentry:hover {background:#333;}

.homepage_gridentry:hover a {color:#fff;}

p.gridentry_title a {text-align:center; color:#000; font-weight:bold; font-size:14px; text-decoration:none;}

p.gridentry_title {margin:0px 10px 10px;}

#gridview-title {width: 940px;}

#gridview-title h1 {text-align: center; margin:20px 0px 20px; color:#666; /* border-top:1px solid #ccc; border-bottom:1px solid #ccc; padding:10px 0px 10px; */}



/*-------------------------------
HOMEPAGE CAROUSEL
-------------------------------*/
.infiniteCarousel {width: 940px; position: relative;}

.infiniteCarousel .carwrapper {width: 860px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */ overflow: auto; height: 210px; margin: 0px 40px; position: relative; top: 15px;}

.infiniteCarousel ul a img {border: 5px solid #ccc;}

.infiniteCarousel .arrow {display: block; height: 36px; width: 37px; background: url(images/carousel-arrow.png) no-repeat 0 0; text-indent: -999px; position:relative; top: 37px; cursor: pointer; outline: 0;}

.infiniteCarousel .carwrapper ul {width: 840px; /* single item * n */ list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position: absolute; top: 0;}

.infiniteCarousel ul li {display:block; float:left; padding-right: 26px; height: 120px; width: 120px; position:relative; top:-55px;}

.infiniteCarousel ul li img {-webkit-transition: border-color 1s; width:120px; height:120px;}

.infiniteCarousel ul:hover li:hover img {border-color: #333;}

.infiniteCarousel ul li a img {}

.infiniteCarousel .arrow {display: block; height: 36px; width: 37px; background: url(images/carousel-arrow.png) no-repeat 0 0; text-indent: -999px; position: absolute; top: 62px; cursor: pointer; outline: 0;}

.infiniteCarousel .forward {background-position: 0 0; right: 0;}

.infiniteCarousel .back {background-position: 0 -72px; left: 0;}

.infiniteCarousel .forward:hover {background-position: 0 -36px;}

.infiniteCarousel .back:hover {background-position: 0 -108px;}

#carousel {height:150px; clear:both; margin-top:20px;}

#carousel p {text-align:center; margin:3px 0px 10px 10px;}

#carousel-title h1 {text-align: center; margin:20px 0px 0px; color:#666;}

.featured_static_image {border:10px solid #ccc;}

.carousel-item {position:relative; top:55px; right:-10px; float:right; height:55px; width:55px; z-index:999;}

.carousel-sale-item {background:url(images/sale_icon.png) no-repeat top right;}

.saleprice {color:#BF3B00; font-weight:bold;}


/*-------------------------------
Added in version 1.3
-------------------------------*/

.product_footer {clear:both; margin-top:30px; padding-top:0px;}

img.goldstar {margin-top:0; padding-top:0;}








 /* Primary Styles
    Author: Ozan Kilic
 */

#container { margin: 75px auto 0px auto; position: relative; }
#header { position: relative; margin-bottom: 20px; }
#logo { width: 290px; height: 125px; text-indent: -999em; float: left; }
#logo a { display: block; position: absolute; background: transparent url(images/logo.png) no-repeat top left; width: 290px; height: 125px; text-indent: -999em; }

#topright { position: relative; float: right; padding: 10px 0px 10px 10px; display: block; margin-top: 20px; width: 460px }
#topnav { display: block; background: #444444; position: relative; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; padding: 10px; height: 40px; }

#search { position: relative; float: left; margin-top: 8px; }
#search input {
	padding: 5px;
	font-size: 10px;
	color: #535455;
	outline: none;
	background: #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 150px;
	font-weight: bold;
}

#search input.button {
	padding: 5px 10px 5px 5px;
	font-size: 12px;
	color: #fff;
	outline: none;
	background: #ed1c58;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 60px;
	font-weight: bold;
/*	font-style: italic; */
	word-spacing: -1px;
	text-transform: uppercase;
}

#login input::-webkit-input-placeholder { color: #fff; }


#nav { margin: 0px 0px 0px 0px; padding: 0px; position: relative; clear: both; display: block; }
#nav ul { margin: 0px; padding: 0px; clear: both; }
#nav ul li { margin: 0px 15px 0px 0px; padding: 0px; display: inline-block; float: left; list-style: none; cursor: pointer; height: 30px; }
#nav ul li:last-child { margin: 0px 0px 0px 0px; }
#nav ul li a { text-decoration: none; color: #6d6e71; margin: 7px 0px 0px 0px; display: block; font-size: 12px; font-weight: normal; /* font-style: italic; */ -webkit-user-select: none; -moz-user-select: none; word-spacing: -2px; text-transform: uppercase; padding: 5px 8px; }
#menu-mainnav li.current-menu-item a { background: #ed1a58; color: #fff; }
#nav ul li:hover a, #nav ul li:active a, #nav ul li.selected a { text-decoration: none; color: #feb300; font-size: 12px; margin: 7px 0px 0px 0px; text-transform: uppercase; }
/* #nav ul li:nth-child(2) a { color: #ed1c57; } */

#nav ul li ul { display: none; padding: 10px; width: 270px; background: #fff; -webkit-border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px; z-index: 999; }
#nav ul li ul li { display: block; width: 270px; }
#nav ul li:hover ul { display: block; position: absolute; z-index: 999; }
#nav ul li ul li a { text-decoration: none; color: #feb300; margin: 7px 0px 0px 0px; display: block; font-size: 20px; font-weight: bold; font-style: italic; -webkit-user-select: none; -moz-user-select: none; word-spacing: -2px; text-transform: uppercase; }
#nav ul li ul li:nth-child(2) a { color: #feb300; }
#nav ul li ul li:hover a, #nav ul li ul li:active a, #nav ul li ul li.selected a { text-decoration: none; color: #feb300; font-size: 20px; margin: 7px 0px 0px 0px; text-transform: uppercase; }
#nav ul li ul li a:hover { color: #000; }

#main { background: #fff; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; position: relative; margin-top: 30px; }

#featuredtop { position: relative; margin: 0px; padding: 0px; }
#slider { width: 975px; height: 650px; margin: 0px; padding: 0px; display: block; position: relative; float: left; }

#midsection { position: relative; }

#footer { margin: 10px auto 0px auto; padding: 0px 0px 30px 0px; position: relative; display: block; clear: both; float: left; }
#footersubs { position: relative; float: left; margin-top: 10px; padding: 0px; width: 300px; }
#footersubs .gsom-optin-form div { float: left; margin: 0px; }
#footersubs .sfi_1283741020579, #footersubs .sfi_1283741020584 { float: left; }
#footersubs span.gsom-required-msg {float: none;}
#footersubs .gsom_sfi input {
	padding: 7px;
        margin-top: 3px;
	font-size: 10px;
	color: #fff;
	outline: none;
	background: #b8b8b8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: none;
	width: 150px;
}

#footersubs .gsom-optin-radiogroup input {
	padding: 5px;
	font-size: 12px;
	color: #fff;
	outline: none;
	background: #ed1c58;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: none;
	width: 100px;
	font-weight: bold;
	font-style: italic;
	word-spacing: -1px;
	text-transform: uppercase;
}

#footersubs input::-webkit-input-placeholder { color: #fff; }

#footersocial { position: relative; float: left; display: block; margin: 5px 10px 0px 20px; }
#footersocial img { border: none; }

#footerlinks { margin: 12px 0px 0px 0px; padding: 0px; color: #6d6e72; font-size: 11px; float: right; text-align: right; }
#footerlinks a { padding: 0px; color: #6d6e72; font-size: 11px; font-weight: bold; text-decoration: none; }
#footerlinks a:hover { color: #ed1b58; text-decoration: none; }


.wrap { margin-top: 20px; }
.simpleCart_shelfItem { width: 700px; }
.simpleCart_shelfItem .title-bar { border-bottom: 1px solid #1d1d1d; }
.simpleCart_shelfItem .title-bar h1 { font-size: 32px; font-weight: bold; color: #ed1c57; font-style: italic; }

#sidebar { margin-top: 30px; }

ul.wpsc_categories { margin: 0px auto; padding: 0px; display: table; }
ul.wpsc_categories li { display: inline-block; margin: 10px 20px 10px 0px; padding: 0px; list-style: none; }
ul.wpsc_categories li a { font-size: 12px; font-weight: normal; text-decoration: none; color: #6d6e72; padding: 5px 8px; }
ul.wpsc_categories li a:hover { color: #ed1b58; text-decoration: none; }
ul.wpsc_categories li a.wpsc-current-cat { background: #ed1a58; color: #fff; }

form.wpcf7-form p { font-size: 12px; font-weight: normal;  text-decoration: none; color: #6d6e72; text-transform: uppercase; }
form.wpcf7-form input { 
	padding: 7px;
        margin-top: 3px;
	font-size: 12px;
	color: #fff;
	outline: none;
	background: #696969;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 450px;
}

form.wpcf7-form textarea { 
	padding: 7px;
        margin-top: 3px;
	font-size: 12px;
	color: #fff;
	outline: none;
	background: #696969;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 650px;
}

form.wpcf7-form input.wpcf7-submit {
	padding: 5px;
	font-size: 12px;
	color: #fff;
	outline: none;
	background: #ed1c58;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 200px;
	font-weight: bold;
/*	font-style: italic; */
	word-spacing: -1px;
	text-transform: uppercase;
}

.prod_detail_image_gallery h2 { display: none; }
.prod_detail_image_gallery { padding-bottom: 20px; }

span.pricedisplay { float: none; font-weight: bold; color: #fff; font-size: 36px; }

.wpcart_gallery { width: 100%; position: relative; }
.wpcart_gallery a.thickbox img { border: 1px solid #ccc; }
.wpcart_gallery a.thickbox { width: 125px; height: 137px; display: inline-block; position: relative; z-index: 99; margin: 0px 10px 10px 0px; }


input.wpsc_buy_button { margin: 30px 0px; float: left; padding: 10px;
	font-size: 24px;
	color: #fff;
	outline: none;
	background: #ed1c58;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 200px;
	font-weight: bold;
/*	font-style: italic; */
	word-spacing: -1px;
/*	text-transform: uppercase; */
	clear: both;
}

#sideshoppingcart { margin: -5px 0px 0px 0px; padding: 0px; }
#sideshoppingcart h3 { display: none; }
#widgetshoppingcart h3 { display: none; }

#checkout { position: relative; float: right; width: 190px; display: block; margin: 1px 8px 0px 0px; }
#checkout .total { font-size: 24px; font-weight: bold; color: #fff; float: left; width: 130px; display: block; margin: 0px; padding: 0px; text-align: right; }
#checkout .total span.pricedisplay { color: #fff; }
#checkout .items { display: block; position: relative; background: transparent url(images/scart.png) no-repeat top left; width: 40px; height: 28px; float: right; margin: 5px 0px 0px 0px; padding: 0px; }
#checkout .items a { display: block; position: absolute; top: -5px; right: -5px; background: #ef1b58; width: 20px; height: 18px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; text-decoration: none; }
#checkout .cartcount { display: block; text-align: center; font-size: 10px; padding: 2px; margin: 0px auto; color: #fff; }


.wpsc_page_numbers { display: block; text-align: center; }
.wpsc_page_numbers a { font-size: 14px; font-weight: bold; color: #6d6e72; font-style: italic; display: inline-block; margin: 0px; padding: 0px; text-decoration: none; }
.wpsc_page_numbers a.selected { color: #feb300; }

.transaction_result_cont { margin: 0px; padding-top: 250px; background: transparent url(images/attention.png) no-repeat center top; text-align: center; }
.transaction_result_cont span { font-size: 14px; font-weight: bold; color: #6d6e72; font-style: italic; display: inline-block; margin: 0px; padding: 0px; text-decoration: none; text-align: center; }
.transaction_result_cont a.transaction_result_link { display: inline-block; font-size: 14px; font-weight: bold; color: #feb300; font-style: italic; margin: 30px auto; padding: 0px; text-decoration: underline; text-align: center; }


tr.product_row .pricedisplay, tr.total_price .pricedisplay { font-size: 18px; }
tr.total_price .pricedisplay { float: right; padding-right: 197px; }

form.wpsc_checkout_forms { margin-top: 30px; }
form.wpsc_checkout_forms h2 { color: #ed1c57; font-size: 14px; font-weight: bold; }
form.wpsc_checkout_forms { color: #696969; font-size: 12px; font-weight: bold; }



.wpsc_checkout_table { position: relative; clear: both;	 }

div.wpsc_checkout_table h4 { color: #ed1c57; font-size: 24px; font-weight: bold; margin-bottom: 10px; font-size: 12px; clear: left; width: 450px; }

div.wpsc_checkout_table label { font-size: 11px; font-weight: normal; text-decoration: none; color: #696969; text-transform: uppercase; text-align: left; float: left; width: 100px; clear: left; padding: 12px 20px 0px 0px; }



.wpsc_checkout_table:nth-child(1) { background: #f00; }
.wpsc_checkout_table div[class=""] { width: 450px; float: left; clear: both; }
.wpsc_checkout_table div[class="wpsc_shipping_forms"] { width: 450px; float: right;}
.wpsc_shipping_forms h4 { position: absolute; top: 0px; left: 535px; width: 300px; }

.wpsc_shipping_forms label[for="wpsc_checkout_form_10"] { position: absolute; top: 25px; left: 535px; }
.wpsc_shipping_forms #wpsc_checkout_form_10 { position: absolute; top: 25px; left: 650px; }

.wpsc_shipping_forms label[for="wpsc_checkout_form_11"] { position: absolute; top: 68px; left: 535px; }
.wpsc_shipping_forms #wpsc_checkout_form_11 { position: absolute; top: 68px; left: 650px; }

.wpsc_shipping_forms label[for="wpsc_checkout_form_12"] { position: absolute; top: 111px; left: 535px; }
.wpsc_shipping_forms #wpsc_checkout_form_12 { position: absolute; top: 111px; left: 650px; }

.wpsc_shipping_forms label[for="wpsc_checkout_form_13"] { position: absolute; top: 202px; left: 535px; }
.wpsc_shipping_forms #wpsc_checkout_form_13 { position: absolute; top: 202px; left: 650px; }

.wpsc_shipping_forms .shipping_region_name { position: absolute; top: 252px; left: 650px; }
.wpsc_shipping_forms .shipping_country_name { position: absolute; top: 252px; left: 750px; }

.wpsc_shipping_forms label[for="wpsc_checkout_form_14"] { position: absolute; top: 242px; left: 535px; }
.wpsc_shipping_forms label[for="wpsc_checkout_form_15"] { position: absolute; top: 242px; left: 585px; }

/*.wpsc_shipping_forms #wpsc_checkout_form_15 { position: absolute; top: 332px; left: 650px; }*/

.wpsc_shipping_forms label[for="wpsc_checkout_form_16"] { position: absolute; top: 288px; left: 535px; }
.wpsc_shipping_forms #wpsc_checkout_form_16 { position: absolute; top: 288px; left: 650px; }

.termsonshopping { position: absolute; top: 360px; left: 535px; width: 450px; }
.termsonshopping input.agree { width: 20px; float: left; margin-right: 20px; }
.termsonshopping .review.replace { margin-top: 0px; display: inline-block; }





div.wpsc_checkout_table input { 
	padding: 7px;
        margin: 3px 0px 10px 0px;
	font-size: 15px;
	color: #fff;
	outline: none;
	background: #696969;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 310px;
clear: right;
}

div.wpsc_checkout_table input.radbox { 
	width: 30px;
}

div.wpsc_checkout_table textarea { 
	padding: 7px;
        margin: 3px 0px 10px 0px;
	font-size: 15px;
	color: #fff;
	outline: none;
	background: #696969;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 310px;
}

div.wpsc_checkout_table select { 
	padding: 7px;
        margin: 3px 0px 10px 0px;
	font-size: 10px;
	outline: none;
width: 130px; 	
}
	

div.wpsc_checkout_table .current_country, div.wpsc_checkout_table .current_region { float: left; }
#region_country_form_6, #region_select_6 { clear: right; }

div.wpsc_checkout_table input.make_purchase {
	padding: 5px;
	font-size: 15px;
	color: #fff;
	outline: none;
	background: #ed1c58;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
	width: 200px;
	font-weight: bold;
	font-style: italic;
	word-spacing: -1px;
	text-transform: uppercase;
}

.review { font-size: 18px; font-weight: bold; font-style: italic; text-decoration: none; color: #ed1c58; text-transform: uppercase; margin: 20px 0px 5px 0px; padding: 0px; display: block; }

.review .grayish { font-size: 14px; font-weight: bold; font-style: italic; text-decoration: none; color: #696969; text-transform: uppercase; margin: 0px 0px 5px 0px; padding: 0px; display: block; }


.wpsc_checkout_field1 { position: absolute; top: 10px; left: 0px; width: 450px; }
.wpsc_checkout_field2 { position: absolute; top: 35px; left: 0px; width: 450px; }
.wpsc_checkout_field3 { position: absolute; top: 78px; left: 0px; width: 450px; }
.wpsc_checkout_field4 { position: absolute; top: 121px; left: 0px; width: 450px; }
.wpsc_checkout_field5 { position: absolute; top: 209px; left: 0px; width: 450px; }
.wpsc_checkout_field6 { position: absolute; top: 249px; left: 0px; width: 450px; }
.wpsc_checkout_field6 div { position: relative; }
.wpsc_checkout_field6 #region_country_form_6 select { float:left; margin-right: 15px; }
.wpsc_checkout_field7 { position: absolute; top: 292px; left: 0px; width: 450px; }
.wpsc_checkout_field8 { position: absolute; top: 335px; left: 0px; width: 450px; }

div.sameaddress { position: absolute; top: -45px; right: 0px; width: 430px; background: #eaeaea; padding: 10px; clear: both; margin-bottom: 10px; }
div.wpsc_checkout_table div.sameaddress label { font-size: 11px; font-weight: normal; text-decoration: none; color: #696969; text-transform: uppercase; padding: 6px 20px 0px 0px; margin: 0px;  width: 300px; }


.wpsc_checkout_field9 { position: absolute; top: 10px; right: 0px; width: 450px; }
.wpsc_checkout_field10 { position: absolute; top: 35px; right: 0px; width: 450px; }
.wpsc_checkout_field11 { position: absolute; top: 78px; right: 0px; width: 450px; }
.wpsc_checkout_field12 { position: absolute; top: 121px; right: 0px; width: 450px; }
.wpsc_checkout_field13 { position: absolute; top: 209px; right: 0px; width: 450px; }
.wpsc_checkout_field14 { position: absolute; top: 249px; right: 250px; width: 200px; }
.wpsc_checkout_field15 { position: absolute; top: 249px; right: 0px; width: 200px; }
.wpsc_checkout_field14 span.shipping_region_name, .wpsc_checkout_field15 div span.shipping_country_name { margin-top: 10px; font-size: 15px; color: #000; display: block;}


.wpsc_checkout_field16 { position: absolute; top: 292px; right: 0px; width: 450px; }
.wpsc_checkout_field17 { position: absolute; top: 335px; right: 0px; width: 450px; }
.makep { position: absolute; top: 400px; right: 80px; width: 250px; }
p.validation-error { color:#f00; display:block; left:130px; margin:0; position:absolute; top:33px; z-index:999; }
.wpsc_checkout_field4 p.validation-error, .wpsc_checkout_field12 p.validation-error { top:79px; }











ol.commentlist { list-style-type: none; }
.comment-body { position: relative; }
ol.commentlist li { margin: 0px; padding: 0px; position: relative; }
ol.commentlist li .vcard { background: #eaeaea; display: block; padding 10px; position: relative; vertical-align: middle; }
ol.commentlist li .vcard img { padding: 10px; }
ol.commentlist li .fn { margin: -24px 0px 0px 0px; }
ol.commentlist li span.says { margin: -24px 0px 0px 0px; }

.thisisheader { position: relative; display: block; clear: both; }
.entry_author_image { float: left; display: block; width: 60px; }
.moverightabit { display: block; position: relative; margin-left: 10px; }










/* special coding for new, sale, out of stock, discount icons */
div.product_grid_display div.product_grid_item a img { position: relative; z-index: 10; }

/* sale */
div.product_grid_display div.product_grid_item a[href*="deals"] div { position: absolute; background: transparent url(http://ilthy.com/wp-content/uploads/2011/02/sale.png) no-repeat right bottom; bottom: 0px; right: 0px; border: 0px; z-index: 999; width: 175px; height: 175px; }

/* new */
div.product_grid_display div.product_grid_item a[href*="new"] div { position: absolute; background: transparent url(http://ilthy.com/wp-content/uploads/2011/02/new.png) no-repeat right bottom; bottom: 0px; right: 0px; border: 0px; z-index: 999; width: 175px; height: 175px; }

/* gone */
div.product_grid_display div.product_grid_item a[href*="gone"] div { position: absolute; background: transparent url(http://ilthy.com/wp-content/uploads/2011/02/gone.png) no-repeat right bottom; bottom: 0px; right: 0px; border: 0px; z-index: 999; width: 175px; height: 175px; }

/* almostgone */
div.product_grid_display div.product_grid_item a[href*="almost-gone"] div { position: absolute; background: transparent url(http://ilthy.com/wp-content/uploads/2011/02/almostgone.png) no-repeat right bottom; bottom: 0px; right: 0px; border: 0px; z-index: 999; width: 175px; height: 175px; }

ul.wpsc_categories li a[href="http://ilthy.com/store/almost-gone/"], ul.wpsc_categories li a[href="http://ilthy.com/store/new/"], ul.wpsc_categories li a[href="http://ilthy.com/store/gone/"], ul.wpsc_categories li a[href="http://ilthy.com/store/deals/"] { display: none; }


.soldout { display: block; background: white; float: left; height: 50px; padding: 0px; color: #f00; font-size: 24px; font-weight: bold; clear: left; }


.wpsc_product_price span.pricedisplay { float: none; font-weight: bold; color: #ed1a58; font-size: 36px; }



.product_grid_display { margin: 0px auto; }
div.product_grid_display div.product_grid_item { margin: 0px; }
