/* LAYOUT */
@width: 990px;

/***     COLORS      ************************/
@color1: #000000;
@color2: #999999;
@color3: #bababa;
@color4: #c9c8c9;
@color5: #f4f5f4;

/* Extra Colors */

@color6: #db1814;

/* Black & White */
@black: #000;
@white: #fff;

/* Global */
@bgmargin: 0px;
@text: lighten(@black,15%);
@bgcolor: @color4;
@red: red;
@a: @black;

/* Header */
@bar: @color5;
@bar_border: @color2;
@bar_text: @color1;

/* Components */
@head: @color4;
@head_text: @color1;
@border: @color3;
@button: darken(@color3,5%);

/* Selected components */
@head_selected: @color6;
@head_selected_text: @white;
@border_selected: darken(@color3,7%);
@a_selected: @color6;

/* Footer */
@foot: @color5;

/*** Layout/Components/etc ******************/
@width1: @width - (@bgmargin*2);
@column: @width1*0.18864097;
@space: @width1*0.01419878;

/* 3 columns divided into 4 columns */
@column3on4: ((@column*3)+(@space*2)) * 0.23720137; 
@space3on4:  @column3on4*0.075268817;

/* 3 columns divided into 5 columns */
@column3on5: ( @column*3 + @space*2 ) / (5 + 4 * 0.075268817 );
@space3on5: @column3on5 * 0.075268817;

/* 4 columns divided into 5 columns */
@column4on5: ( @column*4 + @space*3 ) / (5 + 4 * 0.075268817 );
@space4on5: @column4on5 * 0.075268817;

/* 4 columns divided into 6 columns */
@column4on6: ( @column*4 + @space*3 ) / (6 + 5 * 0.075268817 );
@space4on6: @column4on6 * 0.075268817;body
{
    background: url(/images/frontend/theme/default2/body.gif) top left repeat-x;
}

#bg_container
{
    background: url(/images/frontend/theme/default2/bg_container.gif) top center repeat-y;
    overflow: hidden;
    margin-bottom: 25px;    
}

#bg_container_bottom
{
    background: url(/images/frontend/theme/default2/bg_container_bottom.gif) bottom center no-repeat;
    overflow: hidden;
}

#middle, #navigation
{
    padding: 0px @bgmargin;
}

#path
{
    background-color: #fff;
}

#path .not_active_last
{
    color: #000;
}

#banner_middle 
{
    background: @color5;
    width: (@column*3)+(@space*2);
    height: 192px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;      
}

.title
{
    margin:10px;
}

.title p
{
    margin: 0px !important;
    padding: 0px !important;
    font-style:italic;
}

.box
{
    border: 1px solid @border;
    margin-bottom: 10px;
    background-color: @white;        
}

.box .head
{
    padding: 5px 5px 4px 10px;
    border-bottom: 1px solid @border;
    background: url(/images/frontend/theme/default2/bg_gradient.png) top left repeat-x;
    background-color: @head;
    -moz-border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    border-radius: 4px 4px 0px 0px;
}

#category_tree .head
{
    background-color: @head_selected;
    border-bottom: 1px solid @head_selected;
}

#category_tree
{
    border: none;
}

#category_tree .content
{    
    border: 1px solid @border;
    border-top: none;
    -moz-border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;    
}

#category_tree h3
{
    color: @head_selected_text;
}

.box h3.head
{
    color: @head_text;
    font-size: 1.1em;
    font-weight: bold;
}

.box h3.head a
{
    background: url(/images/frontend/theme/default2/buttons/heading-arrow.png) center right no-repeat;
    text-decoration: none;
    display: block;
    color: @head_text;
}

.box .content
{
    padding: 5px 10px;    
}

.roundies
{
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.clear, .st_clear_all
{
    clear: both;
    font-size: 0px;
    line-height: 0%;
    padding:0;
    margin:0;
    height: 0px;
}

.buttons a, .buttons button, button[disabled="disabled"]:hover
{
    display:block;
    float:left;
    background-color: lighten(@button,24%);
    border:1px solid @button;
    border-top:1px solid lighten(@button,15%);
    border-left:1px solid lighten(@button,15%);
    line-height:130%;
    text-decoration:none;
    color:@text;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}

.buttons button
{
    width:auto;
    overflow:visible;
    padding:4px 10px 3px 7px; /* IE6 */
}

.buttons button[type]
{
    padding: 5px 7px 5px 7px; /* Firefox */
    line-height:17px; /* Safari */
}

*:first-child+html button[type]
{
    padding: 4px 10px 3px 7px; /* IE7 */
}

.buttons button img, .buttons a img
{
    margin:0 0px -3px 0 !important;
    padding:0;
    border:none;
    width:16px;
    height:16px;
}

/* BASE */
button:hover, .buttons a:hover
{
    background-color:darken(@button,5%);
    border:1px solid darken(@button,7%);
    color: @text;
}

.buttons a:active
{
    background-color:darken(@button,9%);
    border:1px solid darken(@button,11%);
    color:@white;
}

/* DEFAULT */
button.regular, .buttons a.regular
{
    color: #000;
}

.buttons a.regular:hover, button.regular:hover
{
    background-color:darken(@button,5%);
    border:1px solid darken(@button,7%);
    color: @text;
}

.buttons a.regular:active
{
    background-color:darken(@button,9%);
    border:1px solid darken(@button,11%);
    color:@white;
}

button[disabled="disabled"]
{
    opacity: 0.3;
}

button[disabled="disabled"]:hover
{
    background-color: lighten(@button,24%);
    border:1px solid @button;
    border-top:1px solid lighten(@button,15%);
    border-left:1px solid lighten(@button,15%);
}

.left
{
    float:left;
}

.right
{
    float:right;
}

#left .container_content
{
    padding-top: 10px;
}

#main .container_content
{
    padding-top: 10px;
} 

#right .container_content 
{
    padding-top: 10px;
}

#overbaner
{
    padding: 5px 0px 4px 0px;
    overflow: hidden;
}

#currency
{
    margin: 3px;
}

.languages
{
    position: relative;
    top: 4px;
}

.txt_lang
{
    position: relative;
    top: -3px;
}

#online
{
    float: left;
    padding: 10px 0px 5px 0px;
    color: lighten(@text,30%);
}

#underbaner
{
    border: 1px solid @bar_border;
    background: url(/images/frontend/theme/default2/bg_gradient_menu.png) top left repeat-x;
    background-color: @bar;
    overflow: hidden;
    padding-right: 5px;    
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;        
    color: @bar_text;
    height: 34px;
}

#underbaner #pick
{
    position: relative;
    top: 6px;
    color: @color1;
}

#underbaner .languages
{
    position: relative;
    top: 11px;
}

#underbaner #search #keywords input
{
    border: none;
}

#underbaner #search
{
    position: relative;
    top: 6px;
}

#content_baner
{
    overflow: hidden;
}

.logo
{
    color: @black;    
    padding-top: 11px;
    padding-bottom: 10px;
    overflow: hidden;
}

.logo a
{
    text-decoration: none;
    color: @black;        
}

.icon_logo
{
    float: left;
    padding-bottom: 10px;
    padding-right: 15px;
}

.box_logo
{
    float: left;
    padding-top: 6px;
}

.box_logo h1
{
    font-size: 22px;
}

.txt_logo a
{
    font-size: 10px;
    color: lighten(@black,65%);
}

.column_baner_right
{
    color: @black;
    padding-top: 5px;
}

.column_baner_right a
{
    color: @color1;
}

.column_baner_right .header
{
    padding-top: 1px;
    color: @color1;
}

.row
{
    overflow: hidden;    
    padding: 5px 0px;
}

#header #home
{
    padding: 9px 10px 0 15px;
}

#underbaner a
{
    color: @bar_text;
    font-weight: bold;
    text-decoration: none;
}

#underbaner a:hover
{
    text-decoration: underline;
}

#header .left
{
    padding-right: 10px;
}

#header .right
{
    padding-left: 10px;
}

#copyright
{
    text-align: right;
    float:right;
    padding: 10px 0px;
}

#copyright .link
{
    float:left;
}

#copyright .link a
{
    text-decoration: none;
    color: lighten(@text,30%);
}

#copyright .logo_sote
{
    float: left;
    padding-top: 2px;
    padding-left: 5px;
}

#copyright .logo_en
{
    float: left;
    padding-top: 2px;
    padding-right: 5px;
}

#open
{
    clear: both;
    display: block;
    color: @color4;
    text-decoration:none;
    text-align: center;
    font-size: 10px;
    line-height: 12px;
}

.header a
{
    display: block;
    padding: 8px 10px 0px 10px;
    font-size: 13px;
    font-weight: bold;
    float: left;
}

#navigation
{
    overflow: hidden;
}

#footer
{
    border: 1px solid @border;
    background-color: @foot;
    margin-top: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;    
}

#footer h4
{
    font-weight: bold;
    color: @color1;
}

#footer a
{
    color: darken(@color2,10%);
}

.txt_input
{
    position: relative;
    top:2px;
}

.txt
{
    position: relative;
    top:2px;
}

#header .row .left
{
    padding-right: 3px;
}

#header .row .right
{
    padding-left: 3px;
}

.space10_right
{
    padding-right: 10px;
}

/* formularze */

.st_form
{
    padding: 0;
    margin: 0;
}


.st_form .st_row
{
    padding: 5px 0px;
    clear: both;

}

.st_form .st_row_last
{
    clear: both;
    border-top: 1px solid @border;
    background-color: @color5;
}

.st_form label
{
    float: left;
    width: 100px;
    text-align: right;
}

.st_form .st_field
{
    margin-left: 110px;
}

.st_form .st_error
{
    margin-left: 110px;
    color: red;
}

#main_categories .category a, #subcategories .name a
{
    font-size: 1em;
    font-weight: bold;
}

#main_products .basket, #product_long .basket
{
    background-color: @color5;   
    border-top:1px solid lighten(@color1,75%);
}

#main_products .description, #product_long .description
{
    color: lighten(@color1,45%);
}

.basket a
{
    color: @a_selected;
}

.box .content .full
{
    background-color: @white;
}

/** do elementów przesuwania [wyrzucic] **/

.block-hover
{
    border: 1px dashed @color3;
}

#schowek_add
{
    padding-right:12px;
    margin-right:12px;
    border-right:1px solid @color3;
}

#js_frame
{
    display:none;
}

#img_delivery,#img_card
{
    margin-top: 10px;
}


/* module stBasket */

#st_basket-add-button-content
{
    background-color: lighten(@button,24%);
    border: 1px solid @button;
    border-top: 1px solid lighten(@button,15%);
    border-left: 1px solid lighten(@button,15%);
    color:@text;    
}

#st_basket-add-button-content input
{
    color: #000;
}

/* module stCategory */

#st_category-list > li
{
	border-top: 1px solid @border;
}

#main_categories, #subcategories
{
    margin-left: 0px - @space3on4;
    margin-right: 0px - @space3on4;    
}

#main_categories .item, #subcategories .item
{
    width: @column3on4;
    margin-left: @space3on4;
}

#main_categories .image, #subcategories .image
{
    width: @column3on4 - 2;
}

#main_categories .item .box, #subcategories .item .box
{
    background-color: #fff;
}

/* module stCurrencyPlugin */

#pick select#currency
{
    border: 1px solid @color3;
    color: @black; 
    background-color:@white; 
}

/* module stNavigationPlugin */

#path a
{
    color: lighten(@color1,15%);
}

#path .not_active
{
    color: @color1;
}

/* module stNewsletterPlugin */

#newsletter .content .sign .email
{
    border: 1px solid @border;
}

#newsletter .content .sign .email input
{
    background-color: @white;
}

#newsletter .content .sign .email .submit input
{
    border: 1px solid @border;
    background-color: @white;
}

.email #newsletter_email
{
    color: #000;
}

/* module stProduct */

.price, .major_price span
{
    color: @black;
}

.minor_price
{
    color: @black;
}

.old_price, .old_price span, .price .old_price
{
    color: @red;
}

#list #product_other
{
   margin-left: 0px - @space3on5;
   margin-right: 0px - @space3on5;   
}

#product_other .item, #product_recommend .item, #product_accessories .item
{
    width: @column3on5;
    margin-left: @space3on5;
}

#product_other .image, #product_recommend .image, #product_accessories .image
{
    width: @column3on5 - 2;
}

/* Product list long and main */
@columnx: @space * (-1);

#main_products, #product_long
{
    margin: 0px @columnx 10px @columnx;
}

#main_products .item, #product_long .item
{
    width: @column - 2;
    margin-left: @space;
}

#product_other .image, #product_recommend .image, #product_accessories .image
{
    border: 1px solid @border;
    background-color: #fff;
}

#product_short .bg_grey_short td
{
    background-color: darken(@white,5%);
}

.box_photo_sort 
{
    border: 1px solid @border;    
    background-color: @white;
}

#product_card .label
{
    border: 1px solid @border;
}

#product_card .information .price
{
    border-top: 1px dotted @border;
}

#product_card .information .basket
{
    border-bottom: 1px dotted @border;
}

.border_basket
{
    border-top: 1px solid @white;
}

/* module stTabNavigatorPlugin */

.st_tab_navigator li a 
{
    color: @text;
    background-color: @white;
    border-top:1px solid @border;
    border-left:1px solid @border;
    border-right:1px solid @border;
    border-bottom:1px solid @white;    
}

.st_tab_navigator li a span
{
    background-color: lighten(@black,95%);
}

.st_tab_navigator li.st_selected a
{
    color: @text;
}

.st_tab_navigator li.st_selected a span
{
    background-color:@white;
}

.st_content_tab 
{
    border: 1px solid @border;
    background-color: @white;
}

.name a, .product_link a
{
    color: @black;
}

#basket_tooltip table th, #basket_tooltip table td, #basket_products table th, #basket_products table td
{
    background-color: #fff;
}

.st_basket-product-name a
{
    color: #000;
}

.box_info .content
{
    padding: 10px;
}

#recommend_overlay, #recommend_shop_overlay
{
    background-color: @white;
}body 
{
    margin: 0;
    padding: 0;
    font-family: Arial,Helvetica, Verdana, sans-serif;
    color: @text;
    font-size: 12px;
    text-align: left;
    letter-spacing: 0.5px;
    line-height: 150%;
    background-color: @white;
}

input, textarea, select, button
{
    font-family: Arial,Helvetica, Verdana, sans-serif;
    font-size: 12px;
}

fieldset
{
    padding: 0px;
}

h1, h2, h3, h4, h5, h6, table, td, th, ul, ol, li, form  
{
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6
{
    font-weight: normal;    
}

h1
{
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.1em;
}

h2
{
    font-size: 1.6em;
    line-height: 1.1em;    
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5
{
    font-size: 1.05em;
}

h6
{
    font-size: 1.05em;
}

a 
{
    color: @black;
    text-decoration: underline;
    outline-style:none;
}


ul,ol
{
    list-style-position: inside;
    margin-left: 0px;
    list-style-type:none;
}

ol ol, ul ul
{
    margin-left: 1.4em;
}

dt
{
    font-weight: bold;
}

dd
{
    margin-left: 0px;
}

blockquote
{
    margin: 0px;
    font-style: italic;    
}

img
{
    border-style: none;
}

input, select, textarea
{
    border: 1px solid #ccc;
    padding: 3px;
}

table
{
    border-left:1px solid @border;
    border-top: 1px solid @border;
}

table th, table td
{
    border-right:1px solid @border;
    border-bottom: 1px solid @border;
    padding: 5px;
    background-color: @white;
    color: #000;
}

table th
{
    background-color: @color5;
}

.tinymce_html ul
{
    list-style-type: disc;
}

.tinymce_html ul ul
{
    list-style-type: circle;
}

.tinymce_html ul ul ul
{
    list-style-type: square;
}

.tinymce_html ol
{
    list-style-type: decimal;
    list-style-position: outside;
    margin-left:20px;
}

.tinymce_html button
{
    display:block;
    float:left;
    background-color: lighten(@button,24%);
    border:1px solid @button;
    border-top:1px solid lighten(@button,15%);
    border-left:1px solid lighten(@button,15%);
    line-height:130%;
    text-decoration:none;
    color:@text;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}

.tinymce_html button:hover
{
    background-color:darken(@button,5%);
    border:1px solid darken(@button,7%);
    color: @text;
}

/************** MASSINTERNET **************/
body { background: url('/images/frontend/theme/hifi-mass/bg.png') repeat-x; }
#bg_container {background: none;} 
#baner {position: relative}
#baner .logo {height: 75px !important; }
#baner .logo h1 {height:20px !important;}
#underbaner {background: none !important; border: none !important;}
#content_baner .logo {}
#content_baner .logo a {display: block; position:absolute; text-indent: -9999em !important}
#content_baner .logo #mass-logo {width:132px; height:36px; top:20px; right:0;  background: url('/images/frontend/theme/hifi-mass/logo.png') no-repeat;}
#content_baner .logo #mass-logo2 {width:116px; height:33px; top:20px; left:0;  background: url('/images/frontend/theme/hifi-mass/logo2.png') no-repeat;}
#content_baner .logo h1 {position:absolute; display:block; width:277px; height:9px; top:30px; left:180px;  background: url('/images/frontend/theme/hifi-mass/slogan.png') no-repeat;text-indent: -9999em !important}
#baner .user {position: absolute; bottom:0px; right:0; font-size:12px !important; }
.user a {color: #586477!important; font-weight:bold;}
.user { width:500px !important;}
.user #user_status {float:right; margin-right:20px;}
.user #tkosz {line-height:34px;}

.mass-search input[type=text]{display:block; float:left; background: #fff url('/images/frontend/theme/hifi-mass/search.png') no-repeat !important; border-radius:0 !important; margin:0 !important; padding:0 !important; padding:7px 10px 7px 30px !important; height:14px !important; width:200px;}
.mass-search input[type=text]:active,
.mass-search input[type=text]:focus {border: none !important;}
.mass-search #keywords {margin-right: 0 !important; padding-right: 0 !important;}
.mass-search input[type=submit]{cursor:pointer; background: #f3f3f3; border:none; height:28px; color: #96a3b7; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; margin:0 !important; padding:0 !important; padding:0 5px !important;}
input, 
textarea,
select {outline: none !important;}


* {letter-spacing: 0px !important }

#category_tree,
.box_group {border: 1px solid #ebebeb !important; border-radius: 0px !important;}
#category_tree select {width:170px; margin-left:8px !important; margin-bottom:10px !important; border:1px solid  #ebebeb; padding:5px; color: #7c7c7c; font-size:11px;}
#category_tree .content {border: none !important; padding:0 !important}
#category_tree .content > div,
.x-tree-node-el {margin:0 !important; padding:0 !important}
#category_tree .content ul {margin:0 !important; width:100% !important}
#category_tree .content a,
#category_tree .content img {margin:0 !important; padding: 0 !important;}
#category_tree .content img {display:block; float:left; padding-left:10px !important;}
#category_tree .content a {display:block; margin: 0 !important; color: #858585 !important; padding:5px 0 !important;}
#category_tree .content li {padding:0 !important; margin:0 !important; /*padding-left:5px !important;*/}
#category_tree .content li * {bacground: none !important}
#category_tree .content li img {margin-top: 5px !important;}
#category_tree .content li li img {margin-left: 10px !important;}
#category_tree .content li li li img {margin-left: 20px !important;}
#category_tree .content li li li li img {margin-left: 30px !important;}
#category_tree .content li div:hover {background: #f6f7f9 !important}
#category_tree .content .x-tree-node-anchor-selected {color: #5f697d !important;}
#category_tree .st_category-tree-element .x-tree-elbow-leaf {background: url(/images/frontend/theme/hifi-mass/arrow_category_leaf.png) no-repeat 50%!important;}
#category_tree .st_category-tree-element .x-tree-elbow-minus {background: url(/images/frontend/theme/hifi-mass/arrow_category_open.png) no-repeat 50%!important;}
#category_tree .st_category-tree-element .x-tree-elbow-plus {background: url(/images/frontend/theme/hifi-mass/arrow_category.png) no-repeat 50%!important;}

.title h2,
.head{border: none !important; background: #fff url('/images/frontend/theme/hifi-mass/bg-head.png') no-repeat 0 50%!important; border-radius:none !important; color: #363c43 !important; padding:20px 10px !important; font-weight:bold; font-size:14px !important; clear:both; overflow:hidden; }


#main_text,
#main_text * {border: none !important;}
#main_text .tinymce_html {padding: 0 !important}
#main_text .tinymce_html > div {margin-bottom: 20px; border: 1px solid #ebebeb !important; width:580px !important;}

/*
.container_content #st_component-st_product-main_products  {margin-left:5px;}
.container_content #st_component-st_product-main_products .st_component-st_product-product_main_box_first,
.container_content #st_component-st_product-main_products .st_component-st_product-product_main_box_middle,
.container_content #st_component-st_product-main_products .st_component-st_product-product_main_box_last {float:left; width:170px; height:370px; padding:0 5px; border:1px solid #ebebeb; margin:5px; position:relative;}
.container_content #st_component-st_product-main_products .st_product-main_products_name {text-align: center; margin:10px 0; color: #69758b !important;}
.container_content #st_component-st_product-main_products .st_product-main_products_name a { color: #69758b !important; }
.container_content #st_component-st_product-main_products .st_product-main_products_image img{display:block; margin:0 auto; }
.container_content #st_component-st_product-main_products .st_product-main_products_description {position:absolute; top:230px; text-align:center; left:0; padding:0 5px;}
.container_content #st_component-st_product-main_products .st_product-main_products_price {position:absolute; bottom:50px; text-align:center; left:0; width:100%;}
.container_content #st_component-st_product-main_products .st_product-main_products_price span {color: #b60d0d }
.container_content #st_component-st_product-main_products .wiecej {position:absolute; bottom:5px; left:10px;background: #fff url('/images/frontend/theme/hifi-mass/bg-more.png') repeat-x; display:block; width:160px; height:37px; line-height:37px; border:1px solid #ebebeb;}
.container_content #st_component-st_product-main_products .wiecej a { color: #696f77 !important; text-decoration:none !important }
*/

#slider-wrapper {margin-top:20px;}

#bg_container_bottom {background: none !important;}
#st_logo_foot > div {width: 110px !important; float:left; }
#st_link_foot {width: 500px; float: right;} 

.box_info {border-radius: 0px !important; border: 1px solid #ebebeb !important;}
#newsletter {float:none !important; width:100%; border: 1px solid #ebebeb !important; margin-bottom:10px; padding:0 !important;}
#newsletter h4 {font-size:12px 1important; letter-spacing:0px;}

#newsletter > div * {margin:0 !important; padding:0 !important;}
#newsletter > div {padding:0 10px 10px 10px !important;}
#newsletter h4 {margin-bottom:10px !important;}
#newsletter input[type=text] {width:157px; border-radius:5px; padding:3px 5px !important; margin-bottom:5px !important; color: #bfbfbf;}
#newsletter .submit{ text-align:right;}
#newsletter input[type=submit] {background: #1f303d; color: #fff; border:none !important; padding:3px 13px !important; border-radius:3px; font-weight:bold; font-size:11px; cursor:pointer !important;}


#footer {background: none !important; border:none !important; border-top: 1px solid #ebebeb !important; border-radius:0px !important; padding-top: 10px;}
#footer * {color: #858585 !important; text-decoration:none; font-size:11px}
#footer a {font-weight:bold;}
#footer #st_link_foot {text-align:right}
#footer #st_link_foot a {display:block; float:left; margin:0 7px;}


.mass-news {border: none !important;}
.mass-news ul {border: 1px solid #ebebeb; }
.mass-news ul li {clear:both; padding:5px 10px; overflow:hidden; color: #5f697d; font-weight:bold; border-top: 1px solid #fafafa; }
.mass-news ul li:first-child {border-top:none !important}
.mass-news ul li:nth-child(2n) {background: #fafafa; }
.mass-news ul a {display:block; width:450px; float:right; text-decoration: none !important; font-weight:normal!important; color: #858585; letter-spacing: 0px}
.mass-news li a {}
.mass-news li a:hover {text-decoration:underline !important;}

.mass-box a {text-decoration: none; font-size:13px;}
.mass-box a:hover {text-decoration: underline}

.mass-category-info {border: 1px solid #ebebeb; padding:5px; margin-bottom:10px;}
.mass-category-info h2 {color: #363c43; font-weight:bold; margin-bottom:5px;}
.mass-category-info .box {border: none; color: #8e8e8e; letter-spacing: 0px}
.mass-category-info h2 + .box  {border-bottom: 1px solid #ebebeb !important; border-radius: 0px;}
.mass-category-info a {display:block; text-align: center; color: #69758b !important;}
.mass-category-info #subcategories {width: 570px !important; margin: 0 auto!important;}
.mass-category-info #subcategories .item { padding:0px !important; margin:2px !important; width:135px !important;}

.mass-product-list .st_product_pager {margin:10px 0; text-align:center; padding:0 !important; width: auto !important;}
.mass-product-list .st_product_pager .st_product-pager-center * { color: #8e8e8e !important}
.mass-product-list .st_product_pager .st_product-pager-center span { color: #69758b !important; font-weight:bold;}
.mass-product-list .st_product-pager-center,
.mass-product-list .st_product-pager-left,
.mass-product-list .st_product-pager-right  { display:inline-block!important; }
.mass-product-list .st_product-pager-center {padding:0 !important; margin:0 !important; margin-top:-10px; }
.mass-product-list .st_product-pager-center * {font-size:13px; text-decoration:none; padding:0 !important; margin:0 !important;}
.mass-product-list .st_product-pager-right,
.mass-product-list .st_product-pager-left {padding:0px !important;}
.mass-product-list .st_product-pager-right {margin-left:3px;}
.mass-product-list .st_product-pager-left a,
.mass-product-list .st_product-pager-right a {margin-bottom:0px !important; overflow:hidden; position: relative !important; top:3px;}


.mass-list * { letter-spacing:0px; }
.mass-list .st_component-st_product-product_list_long {border: 1px solid #ebebeb; width: 174px; height: 280px; float:left; margin:5px; padding:5px; position:relative;}
.mass-list a {display:block; text-align:center; text-decoration:none; color: #69758b; font-weight:bold; margin-bottom:5px !important;}
.mass-list .st_product-list_long_product_price {text-align:center; color: #8e8e8e; position:absolute; width:100%; left:0; bottom: 70px;}
.mass-list .st_product-list_long_product_price span {color: #b60d0d; font-weight:bold;}
.mass-list .st_product-list_long_product_image {position:absolute; width:100%; left:0; top:65px;}
.mass-list .wiecej {position:absolute; width:100%; left:0; bottom: 35px;}
.mass-list .wiecej a {display:block; width:150px !important; margin: 0 auto; background: #fff url('/images/frontend/theme/hifi-mass/bg-more.png') repeat-x; border: 1px solid  #ebebeb; color: #696f77!important; padding:3px 9px 3px 9px; text-align:center !important;}
.mass-list .mass-basket div {position:absolute; width:100%; left:0; bottom: 5px;}
.mass-list .mass-basket a { display:block; width:150px !important; margin: 0 auto; background: #fff url('/images/frontend/theme/hifi-mass/bg-basket.png') repeat-x; border: 1px solid  #ebebeb; color: #696f77!important; padding:3px 3px 3px 15px; text-align:left !important}

#underbaner {margin-top:1px; height:38px !important; clear:both !important; overflow:hidden !important; width:100%;} 
.mass-links { width:720px;  padding:0px !important; text-transform:uppercase; font-size:11px; letter-spacing:0px;}
.mass-links a {margin:0 !important; display:block; float:left; color: #fff !important; /*width: 142px;*/ padding:0 32px; text-align:center; line-height:38px; text-decoration: none !important; }
.mass-links a:hover {color: #586477 !important; background: #f3f3f3; border-radius: 0px !important; }



.container_content #st_component-st_product-main_products  {margin-left:5px;}
.container_content #st_component-st_product-main_products .mass-item{float:left; width:170px; height:280px; padding:0 5px; border:1px solid #ebebeb; margin:5px; position:relative;}
.container_content #st_component-st_product-main_products .st_product-main_products_name {text-align: center; margin:10px 0; color: #69758b !important;}
.container_content #st_component-st_product-main_products .st_product-main_products_name a { color: #69758b !important; }
.container_content #st_component-st_product-main_products .st_product-main_products_image {position:absolute; top:80px; left:0; width:100%;}
.container_content #st_component-st_product-main_products .st_product-main_products_image img{display:block; margin:0 auto; podition:absolute; left:0; top:60px;}
.container_content #st_component-st_product-main_products .st_product-main_products_description {position:absolute; top:230px; text-align:center; left:0; padding:0 5px;}
.container_content #st_component-st_product-main_products .st_product-main_products_price {position:absolute; bottom:50px; text-align:center; left:0; width:100%;}
.container_content #st_component-st_product-main_products .st_product-main_products_price span {color: #b60d0d; font-weight:bold }
.container_content #st_component-st_product-main_products .wiecej {position:absolute; width:100%; left:0; bottom: 5px;}
.container_content #st_component-st_product-main_products .wiecej a {display:block; width:150px !important; font-weight:bold; text-decoration:none !important; margin: 0 auto; background: #fff url('/images/frontend/theme/hifi-mass/bg-more.png') repeat-x; border: 1px solid  #ebebeb; color: #696f77!important; padding:3px 9px 3px 9px; text-align:center !important;}


.mass-product {border:1px solid #d9d9d9; padding:10px;}
.mass-product * {color: #8e8e8e !important;} 
.mass-left  {width:550px; float: left; }
.mass-right {float: right; width: 350px; margin: 0 10px 0 0;}
.mass-product .mass-right h1 {margin-bottom:20px; color: #6d6d6d !important; font-size: 21px; }
.mass-product .mass-right .st_product-show_success_main li:first-child {border-bottom:2px solid #ededed; padding-bottom:5px;}
.mass-product .mass-right #st_product-shop_success_price {margin:10px 0;}
.mass-product .mass-right .mass-rating {overflow:hidden; margin-bottom: 10px;}
.mass-product .mass-right .mass-rating b {color: #a2bb2e !important;} 

.mass-product #st_product-show_success_classic_image {width:450px; }
.mass-product #st_product-show_success_short_description {margin: 0 !important; padding: 0 !important; letter-spacing:0 !important; width:550px;}
.mass-product #st_product-show_success_short_description * { color: #8e8e8e !important; }
.mass-product .st_product-show_success_main li {padding: 5px 0; color: #8e8e8e;}
.mass-product .st_product-show_success_main span {display:block; float:left; width:100px; font-weight:bold;}
.mass-product #st_product-shop_success_price span {color: #b60d0d !important; font-weight:bold !important; font-size:18px;}
.mass-product hr {color: #ebebeb !important;}

.sidebar-contact {overflow:hidden; margin-bottom:10px;}
.sidebar-contact .item-mass {border-bottom: 1px solid #e7e7e7;}
.sidebar-contact .item-mass strong {display:block; float:left; overflow:hidden; width:150px; height:30px;}
.sidebar-contact .item-mass .bold {font-weight:bold;}

.mass-description {width:750px; margin: 0 auto;}
.mass-description .description {border: 1px solid #bababa; padding: 10px; background: #fefefe url('/images/frontend/theme/hifi-mass/bg-desc.png') repeat-x;}
.mass-product .content * {border-radius: 0px !important; color: #727272 !important;}
.mass-product .content .description strong,
.mass-product .content .description strong * {color: #95a2b5 !important}
.mass-description .mass-title {color: #586474 !important; display:block; border:1px solid #bababa; border-bottom: none !important; width: 180px; line-height:31px; text-align:center; position:relative; top:1px; background: #fbfbfb;}
.mass-product #st_tab_navigator-product_list-link-1 a,
.mass-product #st_tab_navigator-product_list-link-1 a span {color: #516272 !important; background: #fbfbfb !important; border-bottom: 1px solid #fbfbfb !important}
.mass-product #st_tab_navigator-product_list-content {background: #fefefe url('/images/frontend/theme/hifi-mass/bg-desc.png') repeat-x;}
.mass-product .st_component-st_product-product_list_recommend  { width:160px; height:160px; float:left; padding:5px; margin:5px; position:relative; }
.mass-product .st_component-st_product-product_list_recommend a {display:block; margin:0 auto; text-align:center;}
.mass-product .st_component-st_product-product_list_recommend .product_name {position:absolute; left:5px; top:95px; width:160px;}
.mass-product .st_component-st_product-product_list_recommend .st_product-list_other_price {text-align:center; position:absolute; width:160px; bottom:10px; color:#b60d0d !important; font-weight:bold;}  

.mass-product #st_tab_navigator-product_description-link-1 a,
.mass-product #st_tab_navigator-product_description-link-1 a span {color: #516272 !important; background: #fbfbfb !important; border-bottom: 1px solid #fbfbfb !important}
.mass-product #st_tab_navigator-product_description-content {background: #fefefe url('/images/frontend/theme/hifi-mass/bg-desc.png') repeat-x;}
.mass-product #st_tab_navigator-product_description-content td {background: none !important}
.mass-product #st_tab_navigator-product_description-content td a {color: #516272 !important;}

.mass-product .additional_description {margin:10px 0;padding:10px; background: #fefefe url('/images/frontend/theme/hifi-mass/bg-desc.png') repeat-x; color: #516272 !important; border:1px solid #bababa;}
#active_overlay {background: url('/images/frontend/theme/hifi-mass/bg-mail.png') no-repeat 2px 50% ; padding-left:25px; display:block;  margin-top:5px; width: 85px;}

#product_accessories {padding:0 !important; overflow:hidden; margin:0 !important}
#product_accessories .item { display:block; width:155px !important; height:100px !important; float:left; padding:5px; margin:5px; position:relative;}
#product_accessories .image {height:42px; display:block !important; margin:0 !important; padding:0 !important; border: none !important; margin:0 auto !important; clear:both; float:none !important; position:static !important; overflow: hidden;}
#product_accessories .image a {display:block !important; maring:0 auto !important; text-align:center;  border:1px solid #e7e7e7 !important;}
#product_accessories .name {display:block !important; clear:both; overflow:hidden; margin:0 !important; padding:0 !important; margin-top:10px; float:none !important; position:static !important; overflow: hidden;}
#product_accessories .name a {display:block; text-align:center; }
#product_accessories .price {text-align:center; position:absolute; width:160px; bottom:10px; font-weight:bold;}
#product_accessories .price span {color:#b60d0d !important;}


#st_product-default-image {display:block;padding:10px 0 !important}
#st_product-show_success_images { margin:10px; width:450px;}
#st_product-show_success_images ul {margin:10px;}
#st_product-show_success_images li {width:auto; float:left; margin:0 10px; }

.mass-description div {display:block; float:none !important}
.mass-description h2 {margin:20px 0 10px 0;}
.mass-description table {width:100%;}

.mass-description .description h3 {font-size:18px; margin:20px 0 10px 0; font-weight:bold; color: #b60d0d !important;}
.mass-description .description h3 * {color: #b60d0d !important;}

.mass-description .description table,
.mass-description .description table tr,
.mass-description .description table td {border: 1px solid #e7e7e7; border-collapse:collapse}
.mass-description .description ul {margin: 10px 0;}
.mass-description .description li {margin-left:20px !important; list-style:disc; }

#st_product-list_success_all { text-align:center; margin-top:10px;}

.mass-list-short {clear:both; height:50px; margin-bottom:20px; border-bottom: 1px solid #ebebeb}
.mass-list-short .st_product-list_short_product_image {width: 50px!important; float:left; margin-right:20px !important;}
.mass-list-short .st_product-list_short_product_name {width:350px; overflow:hidden; float:left;}
.mass-list-short .st_product-list_short_product_name a {text-align:left;}
.mass-list-short .st_product-list_short_product_price {width:110px; overflow:hidden; font-weight:bold; color: #b60d0d; float:left; text-align:right}
.mass-list-short .st_icon-basket-enabled {display:block; overflow:hidden; width:40px; float:right;}
.mass-list-short .st_icon-basket-disabled {display:block; overflow:hidden; width:40px; float:right;}
.mass-list-short .st_icon-basket-enabled a{text-indent:-9999em; background: url('/images/frontend/theme/hifi-mass/basket.png') no-repeat !important; width:16px; margin-left:15px;}
.mass-list-short .st_icon-basket-disabled img{display:block; width:16px; margin-left:15px;}


.mass-other-list {padding: 0 10px;}
.mass-other-list .st_component-st_product-product_list_other {border:1px solid #ebebeb;  width:130px; float:left; height: 180px; margin:5px; position:relative;}
.mass-other-list .st_product-list_other_image {position:absolute; width:100%; left:0; top:45px;}
.mass-other-list .st_product-list_other_price {position:absolute; width:100%; left:0; bottom:25px; text-align:center; font-weight:bold; color: #b60d0d;}

.mass-basket * {letter-spacing: 0px !important;}
.mass-basket h2,
.mass-basket h3 {color: #b60d0d; font-weight:bold; margin-bottom:20px; padding:5px}
.mass-basket .st_basket-all-empty div { display:block;  width:110px; float:right;}
.mass-basket .st_basket-all-empty a,
.mass-basket .st_basket-all-empty input {display:block; wdth:110px!important; text-align:center; padding:0 !important;margin:0 !important; background: #fafafa; padding:5px !important; border: 1px solid #ebebeb; text-decoration:none; cursor:pointer;}
.mass-basket .st_tabular-list {width:100% !important;}
.mass-basket .st_tabular-list, 
.mass-basket .st_tabular-list td {border:none; }
.mass-basket .st_tabular-list th {border:1px solid #ebebeb; border-collapse:collapse !important; text-align:center; color: #586477; font-weight:bold!important; background: #eff0f2 !important;}
.mass-basket .st_basket-product-num input {text-align:center;}
.mass-basket .st_basket-product-name {letter-spacing: 0px;}
.mass-basket .st_basket-product-name a {text-decoration:none;}

.mass-basket #st_basket-back_button {width:130px;margin-bottom:10px;}
.mass-basket #st_basket-back_button a{display:block; wdth:110px!important; text-align:center; padding:0 !important;margin:0 !important; background: #fafafa; padding:5px !important; border: 1px solid #ebebeb; text-decoration:none; cursor:pointer;}
.mass-basket .st_tabular-list td {border-top:1px solid #e5e5e5 !important;}


.mass-product #st_basket-add-to-basket-form {width:350px; padding:0 !important;  border-top: 1px solid #ededef; border-bottom: 1px solid #ededef; clear:both; overflow:hidden;}
.mass-product #st_basket-add-to-basket-form,
.mass-product #st_basket-add-to-basket-form * {padding:0 !important;}
.mass-product #st_basket-add-to-basket-form #st_basket-add-button {width:100%;}
.mass-product #st_basket-add-to-basket-form #st_basket-add-button div {}
.mass-product #st_basket-add-to-basket-form #quantity{text-align:center !important;}
.mass-product #st_basket-add-to-basket-form .st_button-right {margin:15px 0 !important; background: none !important; border: none; background: url('/images/frontend/theme/hifi-mass/bg-basket-new.png') no-repeat 50% 0 !important; padding: 0 !important }
.mass-product #st_basket-add-to-basket-form #st_basket-add-submit-container {width:186px; margin:0 auto; }
.mass-product #st_basket-add-to-basket-form #st_basket-add-quantity_container {float:right;margin-right:15px; color: #b60d0d !important;}
.mass-product #st_basket-add-to-basket-form #st_basket-add-quantity_container input {padding:5px !important; margin-right:5px;}
.mass-product #st_basket-add-to-basket-form .st_button-basket-submit-enabled { height:37px !important; width:186px; text-indent: -9999em; margin: 0 auto !important;}

.mass-right .question_link {border-bottom: 1px solid #edeef0;}
#active_price_question_overlay {display:block; margin:10px auto; width:186px; height: 37px;  background: url('/images/frontend/theme/hifi-mass/bg-cena.png') no-repeat; text-indent:-999em;}
#active_depository_question_overlay {display:block; margin:10px auto; width:186px; height: 37px;  background: url('/images/frontend/theme/hifi-mass/bg-dostepnosc.png') no-repeat; text-indent:-999em;}

#st_button-product_zagiel { border-bottom: 1px solid #ebecee; margin:0 !important; padding:0 !important; margin-bottom:20px; overflow:hidden;}
#st_button-product_zagiel li {margin:0 !important; padding:0 !important;}
#st_button-product_zagiel a {display:block; width: 186px; height:37px; background: url('/images/frontend/theme/hifi-mass/zagiel-raty.png') no-repeat; margin:10px auto; }
#st_button-product_zagiel a img {display:none;}

/*
#st_component-st_basket-list li{margin-top:50px !important; margin-bottom:0px !important; overflow:hidden; height: 20px !important; line-height: 20px !important; padding:0 !important;}
#st_component-st_basket-list #tkosz {padding-right: 10px !important; line-height: 22px !important;}
*/


.mass-box-login {border: 1px solid #ebebeb !important; border-radius:0px !important}
.mass-box-login * {letter-spacing: 0px; color: #7c7c7c}
.mass-box-login .st_content {margin:0 !important; padding:0!important; padding:10px 0 10px 120px !important}
.mass-box-login a {font-weight:bold; text-decoration: none; }

/*.mass-box-login .title {border-left: 4px solid #b60d0d; padding-left:15px;}*/
.title p {padding-left:10px !important;}
.title * {color: #363c43}
.mass-box-login #st_application-user-login-foot {padding-left:20px !important;}
.mass-box-login #st_application-user-login-foot a {color: #b60d0d}

#st_application-user-user,
#st_application-st_basket-index,
#st_user-edit_account {border: 1px solid #ebebeb !important; border-radius:0px !important}
#st_application-user-user *,
#st_application-st_basket-index *,
#st_user-edit_account * {letter-spacing: 0px; color: #7c7c7c}
#st_application-user-user h3,
#st_application-st_basket-index h3,
#st_user-edit_account h3 {color: #b60d0d !important;}
#st_application-user-user h5,
#st_application-st_basket-index h5,
#st_user-edit_account h5 {font-weight:bold;}

.st_navigation_bar_user, {background:none; border:none; border-bottom:1px solid #ebebeb; padding:10px !important; height:30px !important;}
.st_navigation_bar_user li {height:30px !important;}
.st_navigation_bar_user li:first-child {border-left: 4px solid #b60d0d; padding-left:15px;}
.st_navigation_bar_user li a {display:block; line-height:30px; color: #363c43; text-decoration:none !important; border:1px solid #ebebeb; padding:0 10px;}

#underbaner {border-radius:0px !important; }

.container_content > .box {border-radius:0px !important; border:1px solid #e7e7e7 !important}
.container_content h1 { margin-bottom:20px; color: #69758b !important; }
#search_results label {line-height:22px; display:block; float:left; }


#st_product-list_success_type {line-height:21px;}
#st_product-list_success_type span a,
#st_product-list_success_type b {display:inline-block; width:32px; height:21px; text-indent:-999em;}
#st_product-list_success_type b.list-other,
#st_product-list_success_type span.list-other a {width:33px !important}
#st_product-list_success_type b.list-other {background: url('/images/frontend/theme/hifi-mass/list-other-active.png') no-repeat;}
#st_product-list_success_type b.list-long {background: url('/images/frontend/theme/hifi-mass/list-long-active.png') no-repeat;}
#st_product-list_success_type b.list-short {background: url('/images/frontend/theme/hifi-mass/list-short-active.png') no-repeat;}
#st_product-list_success_type span a {opacity:0.7; filter:alpha(opacity=70);}
#st_product-list_success_type span.list-other a {background: url('/images/frontend/theme/hifi-mass/list-other.png') no-repeat;}
#st_product-list_success_type span.list-long a {background: url('/images/frontend/theme/hifi-mass/list-long.png') no-repeat;}
#st_product-list_success_type span.list-short a {background: url('/images/frontend/theme/hifi-mass/list-short.png') no-repeat;}

.st_product-producer_filter {font-size:11px; padding:5px; margin-bottom:5px;}
.st_product-producer_filter a {color: #b60d0d; font-weight:bold; }
#st_component-st_product-list_type {overflow:hidden; font-size:11px; padding:5px; margin-bottom:5px;}
#st_component-st_product-list_type b,
#st_component-st_product-list_type a {margin:0 5px;}
#st_component-st_product-sort {font-size:11px; padding:5px; margin-bottom:5px;}
/*
#box-6 .tinymce_html{padding:0}
#box-6 h3+div {padding:0; text-align:center; padding:10px; color: #606060}
#box-6 h3+div img {padding:5px 0}
#box-7 {border: none !important; margin-top:30px; }
#box-7 .tinymce_html {border: none !important; padding:0}
#box-8 .tinymce_html {padding:0;}
#box-8 h3+div {padding:10px}
*/
.box  {color: #8e8e8e; }
.box strong {color: #363c43}

#box-3 {background: url(/images/frontend/theme/hifi-mass/woman.jpg) no-repeat 100% 100% !important;padding-bottom:150px; }
#box-3 .tinymce_html {padding:0; font-size:12px !important}
#box-3 h3+div {padding:10px;}
#box-3 .tinymce_html img {display:block; margin:0 auto;}
#box-3 .tinymce_html strong {color: #96a3b7}

#box-4 {border: none !important}
#box-4 .tinymce_html{padding:0}
#box-4 h3+div {padding:0; text-align:center; padding:10px; color: #606060}
#box-4 h3+div img {padding:5px 0}
#box-4 .head {display:none;}

#box-5 {border: none !important}
#box-5 .tinymce_html{padding:0}
#box-5 h3+div {padding:0; text-align:center; padding:10px; color: #606060}
#box-5 h3+div img {padding:5px 0}
#box-5 .head {display:none;}

#box-6 {border: none !important}
#box-6 .tinymce_html{padding:0}
#box-6 h3+div {padding:0; text-align:center; padding:10px; color: #606060}
#box-6 h3+div img {padding:5px 0}
#box-6 .head {display:none;}

#box-7 {border: none !important}
#box-7 .tinymce_html{padding:0}
#box-2 {border: none !important}
#box-2 h3+div {padding:5px !important;}

#product_group_PROMOTION .full,
#product_group_PROMOTION .full * {text-align:center !important; margin:0 auto !important; }
#product_group_PROMOTION .full {padding:10px 0;}
#product_group_PROMOTION img {border: none !important; padding-bottom:5px !important;}
#product_group_PROMOTION .content * {color: #8e8e8e; font-size:11px !important;} 
#product_group_PROMOTION .price span {color: #b60d0d !important; font-size:12px !important}
#product_group_PROMOTION .price {margin-top:10px !important;}
#product_group_PROMOTION .full {border-top:1px solid #e7e7e7;}
#product_group_PROMOTION .full:first-child {border:none !important}

#product_group_RECOMMEND .full,
#product_group_RECOMMEND .full * {text-align:center !important; margin:0 auto !important; }
#product_group_RECOMMEND .full {padding:10px 0;}
#product_group_RECOMMEND  img {border: none !important}
#product_group_RECOMMEND .content * {color: #8e8e8e; font-size:11px !important;} 
#product_group_RECOMMEND .price span {color: #b60d0d !important; font-size:12px !important}
#product_group_RECOMMEND .price {margin-top:10px !important;}
#product_group_RECOMMEND .full {border-top:1px solid #e7e7e7;}
#product_group_RECOMMEND .full:first-child {border:none !important}


#product_group_SALES .full,
#product_group_SALES .full * {text-align:center !important; margin:0 auto !important; }
#product_group_SALES .full {padding:10px 0;}
#product_group_SALES   img {border: none !important}
#product_group_SALES .content * {color: #8e8e8e; font-size:11px !important;} 
#product_group_SALES .price span {color: #b60d0d !important; font-size:12px !important}
#product_group_SALES .price {margin-top:10px !important;}
#product_group_SALES .full {border-top:1px solid #e7e7e7;}
#product_group_SALES .full:first-child {border:none !important}



.container_content #webpage_show {border-radius: 0px; border:1px solid #e7e7e7;}
.container_content #webpage_show .addthis_toolbox {margin-top:10px; }
.title {margin-left:0px !important; margin-top:0px !important;}
.title h2 {color: #363c43 !important}

.st_content form {margin-top:10px; padding-bottom:20px}
.st_content h2 {color: #b60d0d}
#order_summary .content {margin:10px auto; line-height:180%;}
#order_summary .content .st_field {color: #b60d0d;}
#order_summary .content .st_name {font-weight:bold;}

strong.header { color: #41678d !important; border-bottom:1px dotted #ededed; display:block; padding-bottom: 10px; margin-top:10px; font-size:14px;}

#index {width:100%; }
#index,
#index td,
#index tr {border: none !important;}
#index td {padding: 0 0 10px 0 !important;}
#index td {color: #69758b !important}
#index td strong {color: #4c4b41 !important; font-size:14px !important;}
#index td a {text-decoration: none !important;}
#index td > div {border:1px solid #e7e7e7 !important; padding:0 !important; padding-top:10px !important;}
#index td img {display:block;}
#index td p {padding: 0 10px !important;}
#index td .price {color: #b1b1b1 !important; font-size:12px !important; float:right; padding-right:10px;}
#index td .price strong {color: #b60d0d !important; font-size:12px !important}
#index td .name{display:inline-block; margin-left:10px; width:460px}

#mass-kontakt {width:100%; border: none !important}
#mass-kontakt * {border: none !important; vertical-align:top; color: #8e8e8e !important;}
#mass-kontakt ul {list-style: none}
#mass-kontakt strong {color: #606060 !important}
#mass-kontakt ul strong {line-height:200%; }
#mass-kontakt .tel li {background: url(/images/frontend/theme/hifi-mass/icon-telephone-red.png) no-repeat 0 15px; padding-left:30px; margin-bottom:15px;}
#mass-kontakt .mail li {background: url(/images/frontend/theme/hifi-mass/icon-e-mail-red.png) no-repeat 0 15px; padding-left:30px; margin-bottom:15px;}
#mass-kontakt a {color: #b60d0d !important}
#mass-kontakt p {padding-top:0 !important; margin-top:0 !important;}
#google-map {height:300px;}

#attachments {width: 100%;}
#attachments,
#attachments tr,
#attachments td {border: none;}
#attachments td {border-bottom: 1px solid #e7e7e7;padding:10px 5px !important;}
#attachments td a {display:block; text-align:center !important; width:42px; margin:0 auto; font-weight:bold; text-decoration:none; color: #b1b1b1 !important;}
#attachments .last td {border:none !important}

#webpage_show h2 {float:none;clear:both !important; }
#webpage_show .title h2 {width:600px; float:left; }
#webpage_show #addthis-webpage {float:right; } 



#WzTtDiV {display:none !important;}
#st_product-default-image-link {display:inline-block; }


.mass-search #st_search_search{height:28px !important;}
#button_search_middle {border-radius:0; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px;}

.search-result-row  .image a {margin-right:10px; display:inline-block;}
.search-result-row .product_link {padding-bottom:10px;}
.search-result-row .search_links {padding-top:10px}
.search-result-row .search_links li a{color: #696f77; font-size:12px; border:1px solid #e7e7e7; padding:5px 10px; background-color: #fcfcfcl; text-decoration: none; font-weight:bold; display:block;}
.search-result-row .search_links li .add_to_basket { padding-left:30px ; background-position: 7px 50%;}
.search-result-row .price {color: #b60d0d}

.mass-description { width:944px !important;}
#st_product-show_success_classic_image{width:600px !important;}
#st_product-default-image-link {display:block; margin:0 auto !important; width:256px !important; }
#st_product-image_gallery { width:600px; overflow:hidden; clear:both;}
#st_product-image_gallery li {margin:0; margin-bottom:5px; margin-right:5px;}
#st_product-image_gallery a {display:block; width:82px; height:82px; border:1px solid #e7e7e7; text-align:center;padding:1px;}


#container {width:990px; margin:0 auto;}


.st_product-show_success_button form {margin:0 !important; padding:0 !important; height: 60px !important}
#st_button-product_zagiel,
#st_button-product_zagiel li {margin:0 !important; padding:0 !important; height: 60px !important}

#navigation {display:block;}
#navigation a {color: #424242; font-weight:bold;}
#navigation b {color: #6a7589}

.tinymce_html ul {list-style-position:outside !important; margin-left:20px;}


ul.mass-bnr {list-style:none; margin:0; padding:0;}
ul.mass-bnr li { backgroun: #000 !important; margin:0 !important; padding:0 !important; padding-bottom:10px !important; padding-top:10px !important; overflow:hidden; display:block !important; float:none  !important; clear:both;}
ul.mass-bnr li:first-child {border-top:0 !important; padding-top:0px !important}
ul.mass-bnr li img {display:block; border-top:1px solid #b8b7b7 !important; border-bottom:1px solid #b8b7b7 !important}

.bnr a {display:block;}
.bnr a img {display:block; margin:0 auto;}

.harman {display:none;}

#st_basket-add-button #st_basket-add-button-content { margin:0 auto !important; display: block !important; float:none !important; width: 186px !important; height:35px !important; margin-top:10px !important; border: none !important; background: url('/images/frontend/theme/hifi-mass/bg-basket-new.png') no-repeat 0 0 !important}
#st_basket-add-button #st_basket-add-button-content img {display: none !important;}
.description #mass-tabs {border: none !important; padding-top: 0 !important}

#box-11 {padding:0 !important; border: none !important; margin:0 !important; margin-bottom:10px !important; }
#box-11 .content {padding:0 !important;}

.horizontal-category-menu { background: #ecedef !important; padding:10px;}
.subMenu {border:1px solid #ecedef; background: #fff; border-left:none; border-top:none}
.subMenu a { border: none !important; color: #3e4045}
.subMenu a:hover {background: #94a4b4; color: #fff;}


#producer_filter {border:1px solid #e7e7e7; padding:0 }
#producer_filter select {margin-left:10px !important; width:165px; margin-bottom:10px}
.horizontal-category-menu h2 {font-size:12px; font-weight:bold; color: #424d5d; margin-bottom:10px;}
.horizontal-category-menu .items h2 {display: none !important;}
.horizontal-category-menu .image_menu {display:block; float:none;} 
.horizontal-category-menu .image_menu img {display:block; margin:5px auto;} 


.mass-product .st_component-st_product-product_list_recommend .st_product-list_other_old_price {
    position: absolute;
    bottom:0; 
    left:0; 
    text-align: center; 
    width: 100%; 
    font-size:10px;
    text-decoration: line-through;
}

.f-boxes {
    overflow: hidden;
    padding:10px 0;
    border-bottom: 1px solid #ebebeb; 
    margin-bottom:10px;
    display:table;
    width:100%;
}
.f-boxes .box {
    border: none;
    width: 25%;
    padding:0 10px;
    display:table-cell;
    margin-left:0px !important;

}
.f-boxes .box a{
    display:block;
}
.f-boxes .f-buttons {
    padding-left: 10px;
}
.f-boxes h2 {
    font-weight: bold;
    font-size: 14px !important;
    padding-left: 10px;
    border-bottom: 2px solid #96A3B7;
    padding-bottom:5px;
    margin-bottom: 10px;
    color: #363c43;
}
#st_application-recommend-shop .st_content {
    margin-left: 0;
}
#st_application-recommend-shop .st_form label {
    margin-left: 0;
}
.st_form .st_field {
    margin-left:30px;
}
#st_application-recommend-shop .captcha {
    margin-left: 220px;
}#container
{
    margin: 0 auto;
    width: @width;
}

#left
{
    float: left;
    width: @column;
    text-align: left;
    line-height: 142%;
}

#main
{
    float: right;
    width: (@column*4)+(3*@space);
    display: inline;
    margin-left: @space;    
}