html,body {
    overflow:hidden;
}

.catalog-container {
    background:#f1f1f1;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:100000;
    overflow:hidden;
}

.catalog-navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:50px;
    line-height:50px;
    padding:0px 10px;
    text-align:center;
    background-color:#333;
    -webkit-transition:background-color 0.5s;
    font-size:24px;
    z-index:50000;
}

/*.catalog-navbar:hover {
	background-color:rgba(0, 0, 0, 0.5);
	-webkit-transition:background-color 0.75s;
}*/

.catalog-menu-container {
    position:absolute;
    top:0;
    left:10px;
    height:50px;
    line-height:50px;
    z-index:70000;
    margin-top:-4px;
}

#catalog-search-btn-container {
    position:absolute;
    top:0;
    right:10px;
    height:50px;
    line-height:50px;
    z-index:70000;
}

#catalog-search-container {
    display:inline-block;
    position:fixed;
    top:0px;
    right:10px;
    height:50px;
    color:#fff;
    z-index:80000;
    padding-top:10px;
}

#search-result-container {
    padding:70px 10px 10px 10px;
    text-align:left;
    color:#fff;
    font-size:120%;
}

.catalog-nav {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:50px;
    line-height:50px;
    text-align:center;
    z-index:50000;
}

.catalog-navbar-right {
    position:absolute;
    top:0;
    right:10px;
    height:50px;
    line-height:50px;
    z-index:70000;
}

a:link, a:hover, a:visited, a:active {
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

.catalog-menu {
    position:fixed;
    top:0px;
    left:-250px;
    width:250px;
    height:100%;
    background:#333;
    color:#fff;
    padding:50px 10px 10px 10px;
    z-index:70000;
    overflow-y:auto;
}

.items-menu {
    position:fixed;
    top:0px;
    right:-250px;
    width:250px;
    height:100%;
    background:#333;
    color:#fff;
    padding:50px 10px 10px 10px;
    z-index:70000;
}

.items-container {
    color:#333;
}

.catalog-menu a:link, .catalog-menu a:active, .catalog-menu a:visited {
    display:block;
    padding:10px;
    color:#fff;
    font-weight:normal;
    font-size:14px;
}

.items-menu a:link, .items-menu a:active, .items-menu a:visited {
    display:block;
    padding:10px;
    color:#fff;
    font-weight:normal;
    font-size:14px;
}

.items-container a {
    min-height:70px!important;
    color:#333!important;
}

.items-container a:hover {
    background-color:rgba(0, 102, 204, 0.1)!important;
}

.catalog-menu a:hover {
    cursor:pointer;
    background-color:rgba(255, 255, 255, 0.4);
    font-size:14px;
}

.items-menu a:hover {
    cursor:pointer;
    background-color:rgba(255, 255, 255, 0.4);
    font-size:14px;
}

.items-container {
    background:#fff;
    height:100%;
    overflow:auto;
}

.items-container a img {
    float:left;
    margin-right:5px;
    max-width:50px;
    max-height:50px;
}

.catalog-menu-close {
    position:absolute;
    top:10px;
    right:10px;
}

.catalog-items-close {
    position:absolute;
    top:10px;
    left:10px;
}

#form-page-jump {
    display:inline-block;
}

#input-page-jump {
    width:65px;
    height:40px;
    text-align:center;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-align:center;
    overflow:auto;
    z-index:1;
    padding-top:50px;
    overflow:hidden;
}

.page.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    z-index:0;
}

.page.center {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index:100;
}

.page.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    z-index:0;
}

.page.transition {
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
}

.page img {
    max-width:100%;
    -webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.3);
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.3);
}

#loading-card {
    display:block;
    z-index:75000;
    position:relative;
    top:50%;
    left:50%;
    width:100px;
    height:100px;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    margin-left:-50px;
    margin-top:-50px;
    background:#fff url(/_images/loading.gif) center center no-repeat;
    -webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.3);
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.3);
}

.logo, .nav, #mobile-menu, .footer {
    display:none;
}

#catalog-pages-container iframe {
    border:none;
    width:100%;
    height:100%;
}

.inline-search-result {
    display:block;
    font-size:15px;
    font-weight:normal;
    padding:10px;
    border-bottom:1px solid #676666;
    min-height:120px;
    line-height:1.2;
}

.inline-search-result img {
    float:right;
    height:100px;
    max-width:70%;
    margin-left:10px;
}

@media print {
    .catalog-navbar, .catalog-menu, .items-menu, .page.left, .page.right {
        display:none;
    }

    * {
        box-shadow:none!important;
        -moz-box-shadow:none!important;
        -webkit-box-shadow:none!important;
    }

    .page.center {
        padding-top:0px;
    }
}

body, html {
    font-family: "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:16px;
    background: #FFFFFF;
    color: #000000;
    padding:0;
    margin:0;
    overflow:auto;
}

map {
    display:none;
}

#productbox {
    background-color: #fff;
    border-radius: 3px;
    color: #000;
    display: none;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 400px;
    min-height: 360px;
    margin-top: 40px;
}
#product {
    margin-top: 20px;
    display: block;
}
#productimage {
    display: block;
    text-align:center;
}
#productimage img {
    max-width: 300px;
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right:20px;
}
#productinfo {
    display: block;
    margin-right: 10px;
}
.productprice {
    width: 100%;
    border: 1px solid #0055a5;
    border-spacing: 0;
    border-collapse: collapse;
    min-width:250px;
}
.productprice table {
    width: 100%;
}
.productprice th {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 4px;
    background-color: #0055a5;
    color: #fff;
}
.productprice td {
    padding:5px;
    border-bottom:1px solid #0055a5;
}
.productprice tr:last-child td {
    border-bottom:none;
}
.qty {
    text-align: center;
}
.price {
    text-align: center;
}
#producttitle {
    font-size: 1.17em;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}
#productsubtitle {
    font-size: .8em;
    text-align: center;
    margin-bottom: 10px;
}

#productsubtitle a, input {
    color:#333;
    font-weight:bold;
}

#orderqty {
    text-align: center;
    font-size: 1.17em;
    margin-left: auto;
    margin-right: auto;
}
#addtocart {
    background: rgb(0,90,175);
    background: -moz-linear-gradient(top, rgba(0,90,175,1) 0%, rgba(0,77,150,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,90,175,1)), color-stop(100%,rgba(0,77,150,1)));
    background: -webkit-linear-gradient(top, rgba(0,90,175,1) 0%,rgba(0,77,150,1) 100%);
    background: -o-linear-gradient(top, rgba(0,90,175,1) 0%,rgba(0,77,150,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,90,175,1) 0%,rgba(0,77,150,1) 100%);
    background: linear-gradient(to bottom, rgba(0,90,175,1) 0%,rgba(0,77,150,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005aaf', endColorstr='#004d96',GradientType=0 );
    outline-width: 0;
    border: 1px solid #03C;
    color: #ffffff!important;
    padding: 10px;
    text-decoration: none!important;
    font-family: sans-serif;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    margin: 5px;
    cursor:pointer;
}
#orderlabel {
    font-size: 1.17em;
}
#response {
    display: block;
    width: 100%;
}
.b-close {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}