.clear {
    clear: both;
}

.nobr {
    white-space: nowrap;
}

@font-face {
    font-family: "star";
    font-style: normal;
    font-weight: normal;
    src: url("../font-star/star.eot?#iefix") format("embedded-opentype"), url("../font-star/star.woff") format("woff"), url("../font-star/star.ttf") format("truetype"), url("../font-star/star.svg#star") format("svg");
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.woocommerce-breadcrumb {
	text-align:right;
}

.woocommerce-message {
	padding:10px 0 10px 0;
}

.demo_store { display:none !important; }

#woocommerce-top-bar { 
	width:100%; height:34px;
}

#woocommerce-top-bar>div {
	max-width:960px;
	margin:0 auto;
}

#woocommerce-top-bar .items,
#woocommerce-top-bar .myaccount {
	line-height:34px;
	padding:0 20px 0 20px !important;
	float:left;
	display:inline-block;
}

#woocommerce-top-bar .cart {
	width:34px;
	height:34px;
	float:left;
	background:url(../images/cart.png) no-repeat;
}

ul.products {
	position:relative;
	list-style-type:none !important;
	list-style:none !important;	
	margin:0 auto !important;
	width:100%;
	overflow:visible;
	padding-top:10px;
}

/*ul.products li.first {
	margin-left:0px !important;
}*/

ul.products li.product {
	position:relative;
	float:left;

	margin:0 12px 40px 0;
	padding:0px;
	width:312px;
	
	border-bottom:8px solid black;
	
	transition: all 0.2s ease-in-out;	
		-moz-transition: all 0.2s ease; /* Enable CSS3 transition on all props */
		-webkit-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;	
}

ul.products li.product h3 {
	margin:10px 0 10px 0;
}

.woo-product-list-2column ul.products li.product:nth-child(2n+2) {
	margin-right:0px;
}

.woocommerce-featured-wrapper ul.products li.product:nth-child(3n+3),
.woo-product-list-3column li.product:nth-child(3n+3) {
	margin-right:0px;
}

/*.standard-page ul.products li.product:nth-child(3n+3) {
	margin-right:0px;
}*/

.woocommerce_ordering .orderby {
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
	padding:5px;
	border:1px solid #d4d4d4;	
}

.woocommerce_ordering .orderby:focus {
    outline:none;
    border-color:#d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}

/*PRODUCT DETAIL PAGE, PRODUCT IMAGE AND THUMBS*/

#page-content>.product {
	position:relative;
	clear:both;
}

#page-content .product .images {
/*	display:block;*/
	float:left;
	margin:0 20px 20px 0;
	max-width:300px;
}

#page-content .product .images .thumbnails:empty {
	display:none;
}

#page-content .product .images .thumbnails {
	margin-top:10px;
}

#page-content .product .images .thumbnails a {
	margin-left:6px;
	float:left;
	display:block;
}

#page-content .product .images .thumbnails a img {
	width:55px;
	height:55px;
}

#page-content .product .images .thumbnails a:first-child {
	margin-left:0px;
}

#page-content .product .images .thumbnails a>img {
	transition: all 0.2s ease-in-out;	
		-moz-transition: all 0.2s ease; /* Enable CSS3 transition on all props */
		-webkit-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;	
		
	box-sizing:border-box;
		-webkit-box-sizing:border-box;	
		-moz-box-sizing:border-box;	

	border:1px solid transparent;
}

#page-content .product .images .thumbnails a>img:hover {
	transform: scale(1.3, 1.3);	
		-moz-transform: scale(1.3, 1.3);
		-webkit-transform: scale(1.3, 1.3);
		-ms-transform: scale(1.3, 1.3);
		-o-transform: scale(1.3, 1.3);
}

/*#page-content .product .images {
	min-width:300px;
	max-width:300px;
	text-align:center;	
	border:1px solid #dedede;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
}*/

.product .onsale {
	position:absolute;
	left:5px;
	top:5px;
	
	/*background:rgb(0, 0, 0);
	background-color:rgba(0, 0, 0, 0.5);	*/
	height:40px;
	width:40px;

	/*border-radius:64px;
		-moz-border-radius:64px;
		-webkit-border-radius:64px;*/

	text-align:center;
	line-height:40px;
	font-size:10px;
	font-weight:bold;
	color:#fff;
	
	background:url(../images/sale.png) no-repeat;
}

/*PRODUCT DETAIL CART */
.cart .qty {
	padding:9px 5px 9px 5px;;
	border:1px solid #d4d4d4;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
	width:60px;
}

.price_slider_wrapper .button,
.track_order .button,
form.login .button,
#place_order,
.shipping-calculator-form button,
.shop_table .actions input[type=submit],
.single_add_to_cart_button,
.checkout .button {
	border:0px !important;
	cursor:pointer;	
	padding:8px 10px 10px 8px !important;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;	
		
	transition: all 0.2s ease-in-out;	
		-moz-transition: all 0.2s ease; /* Enable CSS3 transition on all props */
		-webkit-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;		
}

.summary .quantity,
.cart .quantity {
	position: relative;
	width: 67px !important;
	float: left;
	margin-right: 15px;
	max-height:36px !important;
	/*height:52px;*/
}

.summary .quantity:after,
.cart .quantity:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	clear: both;
}

.summary .quantity .plus,
.cart .quantity .plus,
.summary .quantity .minus,
.cart .quantity .minus {
	width: 18px;
	-webkit-appearance: none;
	position: absolute;
	top: 0px;
	right: 0;
	border: 0;
}

.summary .quantity .minus,
.cart .quantity .minus {
	top:18px;
}

.cart input:focus {
    outline:none;
    border-color:#d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}

div.related h2{
	margin:20px 0 10px 0;
}

/*TABS*/
ul.tabs {
    width:100%;
	/*border-bottom:1px solid #ddd;*/
	border-bottom-width:1px;
	border-bottom-style:solid;
	min-height:38px;
	
	margin-left:0px;
	list-style:none;
	
	clear:both;
}

ul.tabs li {
    float:left;
    display:block;
	margin:0 2px 0 0;
	width:auto;
	background:none;
	border:none;
	min-height:38px;
	font-size:16px;
	/*font-weight:lighter;*/
}

ul.tabs li a {
    float:left;
    display:block;
    /*color:#32383f;*/
    text-decoration:none;
    padding:0 20px 0 20px;
	/*border:1px solid #cacaca;*/
	/*background-color:#CCC;*/
	width:auto;
	margin:0px;
	
	line-height:37px;	
	
	border-width:1px;
	border-style:solid;
	border-bottom-width:1px !important;
}

.tabs .active>a {
	border-bottom:none;
	border-top-width:1px;
	border-top-style:solid;
	line-height:38px;
}

.entry-content {
	clear:both;
	margin-top:-2px;
	/*clear:both;*/
    padding:20px;
    border-width:1px;
	border-style:solid;/* #ddd;*/
	/*background-color:#fff;*/
	border-top:none;

	position:relative;
	overflow:auto;
}

.entry-content:before,
.entry-content:after { content: ""; display:block; }
.entry-content:after { clear: both; }

/*GENERAL LAYOUT*/

#page-content h1.page-title {
	font-size:32px;
	line-height:40px;
}

#page-content form.woocommerce_ordering {
	position:absolute;
	top:0;
	right:0;
}

div.product div.summary {
	/*float:right;
	display:table;
	/*width:33.333333333333333333333333333333%;*/
	/*max-width:80%;/*66.666666666666666666666666666667%;*/
/*	width:auto;*/
	/*width:100%;*/
	float:right;
	width:calc(100% - 320px);
		width:-moz-calc(100% - 320px);
		width:-webkit-calc(100% - 320px);	
}

div.product div.summary .price>ins {
	text-decoration:none !important;
}

.product_title {
	font-size:24px  !important;
	line-height:30px !important;
}

.summary .amount {
	margin:20px 0 20px 10px;
	font-size:16px !important;
	line-height:22px !important;
}

.summary ins .amount{
	font-size:24px !important;
	line-height:30px !important;
	text-decoration:none !important;
}

.summary .price:before {
	font-family:'fontello';
	content: '\e70c';
	
	font-size:24px !important;	
}

.single-product .summary .product_meta { 
	margin:15px 0 15px 0;
	padding:10px 0 10px 0;
}

div.product div.summary div[itemprop=description] {
	margin-bottom:15px;
	padding-bottom:10px;
}

/*ATTRIBUTES TABLE*/
.product .shop_attributes {
	width:100%;
}

.product .shop_attributes tr:last-child {
	border-bottom:none;
}

.product .shop_attributes th {
	font-weight:bold;
	text-align:right;
	min-width:10%;
	overflow:visible;
	padding-right:10px;
}

.product .shop_attributes th,
.product .shop_attributes td {
	line-height:30px;
}

.product .shop_attributes td {
	width:90%;	
}

/*.product .shop_attributes th:after {
	content: ' : ';
}*/

/*PRODUCT LISTING PAGE*/
.products .product a:hover {
	text-decoration:none !important;
}

.products .product h3 {
	margin-top:10px;
	font-size:16px  !important;
	line-height:20px !important;
}

.products .product .price {
	display:block;
	width:100%;
	margin:10px 0 10px 0;
}

.products .product .price ins {
	text-decoration:none !important;
	font-size:130%;
	font-weight:bold;
}

.products a.add_to_cart_button {
	display:none !important;
}

/*CART PAGE*/
.shop_table {
	width:100%;
	clear:both;
}

.shop_table th {
	font-weight:bold;
}

.shop_table .cart_table_item td { 
	padding:10px 0 10px 0; 
	vertical-align:middle;
}

.shop_table th.product-price,
.shop_table .cart_table_item td.product-price, 
.shop_table th.product-subtotal,
.shop_table .cart_table_item td.product-subtotal {
	text-align:right;
	/*font-weight:bold;	*/
}

.shop_table th.product-quantity {
	text-align:center;
}

.shop_table td.product-quantity>div {
	margin:0 auto !important;
	float:none;
}

.shop_table td.product-thumbnail {
	width:90px;	
}

.shop_table .actions {
	padding:20px 0 20px 0;	
}

.shop_table .actions {
	text-align:right;
}

.shop_table .actions .coupon {
	text-align:left;	
	float:left;
	width:50%;
}

.shop_table .actions .coupon label {
	font-weight:bold;
}

.cart-collaterals .cart_totals table,
.cart-collaterals .cart_totals {
	float:right;
	width:50%;
	text-align:right;
}


.cart-collaterals .cart_totals h2 {
	margin-bottom:10px;
}

.cart-collaterals .cart_totals th {
	font-weight:bold;	
	padding-right:10px;	
}

.cart-collaterals .cart_totals .total td {
	font-weight:bold;
	font-size:130%;
}

.actions .coupon input,
.shipping_calculator input[type=text],
.shipping_calculator select {
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
	padding:5px;
	border:1px solid #d4d4d4;	
}

.actions .coupon input:focus,
.shipping_calculator input[type=text]:focus,
.shipping_calculator select:focus {
    outline:none;
    border-color:#d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}

/*CHECKOUT*/
form.checkout {
	position:inherit !important;
}
form.track_order p.form-row label,
.checkout #customer_details .col-1 p label,
.checkout #customer_details .col-2 p label {
	clear:both;
	font-weight:bold;
	display:inline-block;
	margin-bottom:4px;
}

.checkout #customer_details .col-1 h3,
.checkout #customer_details .col-2 h3 {
	margin-bottom:10px;
}

.checkout #customer_details .col-1 p label:after,
.checkout #customer_details .col-2 p label:after {
	content:'';
	clear:both;
	display:table;
}

.checkout #customer_details p.form-row {
	clear:both;
	font-weight:bold;
	display:inline-block;
	margin-bottom:4px;
	width:100%;
}

.checkout #customer_details p.form-row input[type=text],
.checkout #customer_details p.form-row select {
	width:100%;	
}

.checkout #customer_details p.form-row label:after {
	content:'';
	clear:both;
	display:table;
}

form.track_order p.form-row input[type=text],
.checkout #customer_details p.form-row input[type=text],
.checkout #customer_details p.form-row select,
form.login .input-text,
.checkout #customer_details .col-2 p #order_comments,
.checkout #customer_details .col-1 p input,
.checkout #customer_details .col-1 p select,
.checkout #customer_details .col-2 p input,
.checkout #customer_details .col-2 p select {
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
	padding:5px;
	border:1px solid #d4d4d4;	
		
	width:100%;
}

form.track_order p.form-row input[type=text]:focus,
.checkout #customer_details p.form-row input[type=text]:focus,
.checkout #customer_details p.form-row select:focus,
form.login .input-text:focus,
.checkout #customer_details .col-2 p #order_comments:focus,
.checkout #customer_details .col-1 p input:focus,
.checkout #customer_details .col-1 p select:focus,
.checkout #customer_details .col-2 p input:focus,
.checkout #customer_details .col-2 p select:focus {
    outline:none;
    border-color:#d4d4d4;
    box-shadow:0 0 10px #d4d4d4;
}


.checkout #customer_details .col-1 {
	width:49%;
	float:left;
}

.checkout #customer_details .col-2 {
	width:49%;
	float:right;
	position:relative;
}

.checkout #customer_details .col-2 #shiptobilling {
	clear:both;
	position:absolute;
	bottom:-30px;
	width:100%;
	height:20px;
}

.checkout #customer_details .col-2 #shiptobilling input {
	width:auto !important;
}

.checkout #customer_details .col-1 #createaccount {
	width:auto !important;
}

.checkout #order_review_heading:before {
	content:' ';
	display:block;
	width:100%;
}

.checkout #order_review_heading {
	clear:both;
	margin:0 0 20px 0;
}

.order_details .product-total,
.checkout .checkout_table_item .product-total {
	text-align:right;
/*	font-weight:bold;*/
}

.order_details .order_table_item .product-quantity,
.checkout .checkout_table_item .product-quantity {
	text-align:center;
}

.order_details th.product-name,
.checkout .checkout_table_item .product-name { 
	text-align:left;
	font-weight:bold;
}

.checkout .checkout_table_item .product-name dl dt,
.checkout .checkout_table_item .product-name dl dd {
	font-weight:normal !important;
}

.checkout .shop_table .product-name dl dd {
	font-style:italic;
}

.shop_table tfoot th,
.shop_table tfoot td {
	text-align:right;
}

.order_table_item td,
.checkout_table_item td {
	padding:5px 0 5px 0;
}

.shop_table .total td {
	font-weight:bold;
	font-size:130%;	
}

.checkout .payment {
	margin-top:30px;
}

.checkout .payment_methods li {
	padding:10px 0 10px 0;
}

.checkout .payment_methods li img {
	vertical-align:middle;
}

.checkout .payment_methods label {
	font-weight:bold;
}

#place_order {
	float:right;
	margin:20px 0 20px 0;
}

form.login {
	display:block;
	margin-bottom:20px;
	padding-bottom:20px;
}

form.login label {
	font-weight:bold;
	line-height:30px;
}

form.login>p:first-child {
	width:100%;
}

form.login>p.form-row-first {
	width:49%;
	float:left;
}

form.login>p.form-row-last {
	width:49%;
	float:right;	
}

/*ORDER RECEIVED*/
ul.order_details {
	margin:10px 0 10px 0 !important;	
}

table.order_details {
	margin:20px 0 20px 0 !important;
}

ul.order_details li {
	list-style-type:none;
	padding:5px 0 5px 0;
}

ul.order_details li strong {
	font-weight:bold;
}

.col2-set .col-1 {
	margin-top:20px;
	width:48%;
	float:left;
}

.col2-set .col-2 {
	margin-top:20px;	
	width:48%;
	float:right;
}

.customer_details dt {
	font-weight:bold;
}

/*MY ACCOUNT*/
.my_account_orders {
	margin:20px 0 20px 0;
}

.my_account_orders .order td { 
	padding:5px 0 5px 0 !important; 
}

.my_account_orders th {
	text-align:left;
}

.my_account_orders th.order-status,
.my_account_orders .order .order-status {
	padding-left:10px !important;
}

.my_account_orders .order td {
	vertical-align:middle;
}

.my_account_orders .order .order-number {
	overflow:visible;
	width:190px;
}

/*CHANGE PASSWORD*/

/*MESSAGES*/
.woocommerce_message { 
	position:relative;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;

	font-weight:bold;
	cursor:pointer;
	
    color: #fff;
    background-color: #66cad3;
    background-image: url('../images/micons/info.png');
	
	width:100%;
	float:left;	
	
	clear:both;
}

.woocommerce_error {
	position:relative;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;

	font-weight:bold;
	cursor:pointer;
	
    color: #fff;
    background-color: #ea6260;
    background-image: url('../images/micons/error.png');
	
	width:100%;
	float:left;	
	
	clear:both;	
}

ul.woocommerce_error {
	margin-left:0 !important;
}

.woocommerce_error li {
	list-style:none;
	font-weight:normal;
}

.woocommerce_error li strong {
	font-weight:bold;
}

.woocommerce_message:before,
.woocommerce_message:after{ content: ""; display: table; }
.woocommerce_message:after { clear: both; }

/*COMMENT FORM*/

#commentform .comment-form-comment textarea {
	margin-bottom:10px;
}

#commentform .comment-form-rating {
	margin:10px 0 10px 0;
}

#commentform .comment-form-rating .stars span a {
	display:block;
	clear:both;
	height:16px;
	text-indent:-9999px;
	background:url(../images/star_0.png) repeat-x;
}

#commentform .comment-form-rating .stars span a.active,
#commentform .comment-form-rating .stars span a:hover {
	background:url(../images/star_1.png) repeat-x;	
}

#commentform .comment-form-rating .stars span a.star-1 {
	width:16px;
}

#commentform .comment-form-rating .stars span a.star-2 {
	width:32px;
}

#commentform .comment-form-rating .stars span a.star-3 {
	width:48px;
}

#commentform .comment-form-rating .stars span a.star-4 {
	width:64px;
}

#commentform .comment-form-rating .stars span a.star-5 {
	width:80px;
}

#tab-reviews #reviews #comments .star-rating span {
	font-weight:bold !important;
}

#tab-reviews #reviews #comments h2 {
	margin:10px 0 10px 0;	
}

#tab-reviews #reviews #comments .comment_container img.avatar {
	display:block;
	float:left;
	margin-right:20px;
}

#tab-reviews #reviews #comments .comment_container {
	padding-bottom:10px;
	margin-bottom:10px;
}

/*WIDGETS*/

ul.product_list_widget {
	margin-left:0px !important;
	margin-bottom:10px;
}

ul.product_list_widget li {
	list-style-type:none !important;
	margin-top:10px;
}

ul.product_list_widget li:first-child {
	margin-top:0px;
}

ul.product_list_widget li a img {
	width:50px;
	height:50px;
	vertical-align:middle;
	margin-right:5px;
}

ul.product_list_widget li div {
	display:inline-block;
	margin:0 10px;
}

.price_slider_wrapper .price_slider_amount .price_label { /*like filter button on price filter*/
	margin-top:10px;
}


div.navigation>div.nav-next>a,
div.navigation>div.nav-previous>a {
	padding-left:10px;
	padding-right:10px;	
	width:inherit !important;
}

div.navigation>div.nav-next>a {
	float:right;
}

/*pagination*/
.woocommerce-pagination {
	clear:both;
	width:100%;
	/*border-top:8px solid #000;*/
}

.woocommerce-pagination>ul>li {
	float:left;
}

.woocommerce-pagination>ul>li>span.current,
.woocommerce-pagination>ul>li>a {
	display:block !important;
	float:left !important;
	width:40px  !important;
	line-height:40px !important;
	height:40px !important;
	text-align:center !important;
	margin:1px 1px 0 0 !important;
	text-decoration:none !important;

	transition: all 0.2s ease-in-out 0s;	
		-webkit-transition: all 0.2s ease-in-out 0s;
		-moz-transition: all 0.2s ease-in-out 0s;
}

/*2.0 additions*/
.standard-page #page-content .page-title {
	display:none !important;
}

.standard-page #page-content .page-description,
.standard-page #page-content .woocommerce-result-count {
	width:50%;
	display:block;
	float:left;
}

.standard-page #page-content .woocommerce-result-count {
	text-align:right;
	float:right;
}

.standard-page #page-content  .woocommerce-ordering {
	display:block;
	width:100%;
	text-align:right;
	float:right;
	margin-bottom:20px;
}

.standard-page #page-content  .woocommerce-ordering * {
	margin:0 !important;
}

/*star rating*/
.woocommerce .star-rating, .woocommerce-page .star-rating {
    float: right;
    font-family: 'star';
    font-size: 1em;
    height: 2em;
    line-height: 2em;
    overflow: hidden;
    position: relative;
    width: 5.4em;
}

.woocommerce .star-rating:before, .woocommerce-page .star-rating:before {
    color: #DFDBDF;
    content: "sssss";
    float: left;
    left: 0;
    position: absolute;
    top: 0;
}

.woocommerce .star-rating span, .woocommerce-page .star-rating span {
    float: left;
    left: 0;
    overflow: hidden;
    padding-top: 1.5em;
    position: absolute;
    top: 0;
}

.woocommerce .star-rating span:before, .woocommerce-page .star-rating span:before {
    content: "SSSSS";
    left: 0;
    position: absolute;
    top: 0;
}

.woocommerce .products .star-rating, .woocommerce-page .products .star-rating {
    display: block;
    float: none;
    margin: 0 0 0.5em;
}


/*price slider filter widget*/
.price_slider{ 
    margin-bottom: 1em;
}

.price_slider_amount {
    text-align: right;
    line-height: 2.4em;
    font-size: 0.8751em;
}

.price_slider_amount .button {
    font-size:1.15em;
}

.price_slider_amount .button {
    float: left;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 0.9em;
    height: 0.9em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    cursor: pointer;
    background: #e7e7e7;
    background: -webkit-gradient(linear,left top,left bottom,from(#FEFEFE),to(#e7e7e7));
    background: -webkit-linear-gradient(#FEFEFE,#e7e7e7);
    background: -moz-linear-gradient(center top,#FEFEFE 0%,#e7e7e7 100%);
    background: -moz-gradient(center top,#FEFEFE 0%,#e7e7e7 100%);
    outline: none;
    top: -.3em;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.ui-slider .ui-slider-handle:last-child {
    margin-left: -1em;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size:.7em;
    display: block;
    border: 0;
    background: none repeat scroll 0 0 #FF6B6B;
    box-shadow: 1px 1px 1px 0.5px rgba(0, 0, 0, 0.25) inset;
    -webkit-box-shadow: 1px 1px 1px 0.5px rgba(0, 0, 0, 0.25) inset;
    -moz-box-shadow: 1px 1px 1px 0.5px rgba(0, 0, 0, 0.25) inset
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
}

.price_slider_wrapper .ui-widget-content {
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    background: #1e1e1e;
    background: -webkit-gradient(linear,left top,left bottom,from(#1e1e1e),to(#6a6a6a));
    background: -webkit-linear-gradient(#1e1e1e,#6a6a6a);
    background: -moz-linear-gradient(center top,#1e1e1e 0%,#6a6a6a 100%);
    background: -moz-gradient(center top,#1e1e1e 0%,#6a6a6a 100%);
}

.ui-slider-horizontal {
    height:.5em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: -1px;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: -1px;
}