/* Minimal css for clickable pure CSS collapsible tree menu */
/* As specific as possible to prevent interference with other code */

#menutree {
    margin-left: -20px;          /* all list item li dots invisible */
}

#menutree ol {
    margin-left: -20px;          /* all list item li dots invisible */
}

#menutree li {
    list-style: none;          /* all list item li dots invisible */
}

li .menu_label + input[type=checkbox] {
    opacity: 0;             /* checkboxes invisible and use no space */
}                        /* display: none; is better but fails in ie8 */

li .menu_label {
    cursor: pointer;        /* cursor changes when you mouse over this class */
    margin-bottom: 2px;

}
/* could add the many user-select: none; commands here */

li .menu_label + input[type=checkbox] + ol > li {
    display: none;         /* prevents sublists below unchecked labels from displaying */
 }

li .menu_label + input[type=checkbox]:checked + ol > li {
   display: block;         /* display submenu on click */
}


.custom_color_box_container {
    float: left;
    display:block;
    margin-bottom: 20px;
    /*margin-left: 5px;*/
}
.custom_color_box {
    margin-top: 5px;
    width: 19px;
    height: 19px;
    border: 1px solid #eee;
    background: #d8d8d8;
    margin-right: 5px;
    float: left;
    cursor: pointer;
}
.active_custom_color_box {
    border: 2px solid #000;
}

.shop table.cart .product-name {
     width: 40%;
}
.shop table.cart .product-color {
     width: 10%;
}

#footer p {
    color: #FFF;
}

#header .header-search {
    margin-top: 5px;
}

#header .logo_title {
    border: #808080 1px solid;
    z-index: 99;
    border-radius: 5px;
    color: #000;
}
#header .header-column {
     display: block;
    vertical-align: middle;
}
#header .header-text {
    width: 580px;
    position: absolute;
}
#header .header-nav-top .nav > .logo_title > a, #header .header-nav-top .nav > .logo_title > span {
    color: #000;
}
/*#header .header-nav-top {
    float: right;
    margin-top: 10px;
    margin-left: 10px;
}*/

#header .header-logo img {
    margin: 0 15px 15px 0;
}

#header ol, ul {
    margin-top: -5px;
}