/**
 * Stylesheet
 * 
 * @author      Lex van der Woude <lex@bizhub.co.nz>
 * @copyright   Copyright (c) 2006-2012 BizHub Ltd.
 * @link        http://bizhub.co.nz
 */

@import url(../font-awesome/4.0.3/css/font-awesome.css);

/*
 * Resets
 */
body, html {
    width: 100%;
    height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td {
    padding: 0;
    margin: 0;
}
fieldset, img {
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
}

/*------------------------------------------------------------------*/

/*
 * Styles
 */
body {
    background: url(../images/backgrounds/main.png) center 140px no-repeat;
    
    color: #666666;
    font-family: Helvetica, Arial;
    font-size: 12px;
}

p {
    line-height: 18px;
}
p span.small {
    font-size: 9px;
    font-weight: bold;
}

/* Links */
a {
    color: #29ABE2;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}

/* Headers */
h1,
h1 a {
    color: #0D72B9;
    font-size: 23px;
}
h2 {
    padding-bottom: 15px;
    
    color: #29ABE2;
    font-size: 30px;
}
h3 {}
h4 {}
h5 {}

/* Colors */
.blue { color: #0071BC; }
.green { color: #8CC63F; }
.lightblue { color: #00ADEE; }
.facebook { color: #2E3192; }

/*
 * Basic's
 */
.left {
    float: left;
}
.right {
    float: right;
}
.clear {
    clear: both;
}
.relative {
    position: relative;
}
.show {
    display: block;
}
.hide {
    display: none;
}

/*
 * Printing styles
 */
@media print {
    .noprint { display: none; }
}

/*
 * Clear fix
 */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {
    display: inline-block;
}
html[xmlns] .clearfix {
    display: block;
}
* html .clearfix {
    height: 1%;
}


/*-------------------------------------------------------------------*/

/*
 * Containers
 */
.container {
    width: 920px;
    height: inherit;
    min-height: inherit;
    padding: 0 20px;
    margin: 0 auto;
}

/*-------------------------------------------------------------------*/

/**
 * Top block
 */
#top {
    height: 170px;
}

/**
 * Top bar
 */
#top .bar {
    height: 30px;
    
    background: #000000;
    color: white;
}
#top .bar .left,
#top .bar .right {
    line-height: 30px;
}

#top .bar ul {
    list-style: none;
    border-right: #00ACED solid 1px;
}
#top .bar li {
    float: left;
    position: relative;
}
#top .bar li a {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;

    border-left: #00ACED solid 1px;

    color: #FFF;
    text-decoration: none;
    text-align: center;
}
#top .bar li.open a,
#top .bar li a:hover {
    background: #00ACED;
}
#top .fa {
    color: #FFF;
    font-size: 16px;
}

/**
 * Main bar
 */
#top .main {
    height: 80px;
    background: #00ACED;
}
#top .main .container {
    position: relative;
}
#top .main img.logo {
    margin-top: 10px;
    margin-left: -10px;
}

/* Navigation */
#top .main .nav {
    position: absolute;
    left: 220px; top: 40px;

    color: white;
}
#top .main .nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}
#top .main .nav a.current,
#top .main .nav a:hover {
    color: #2B3998;
}

/* Cart display */
#top .cart-display {
    float: right;
    position: relative;
    
    width: 136px;
    height: 72px;
    
    padding-top: 8px;
    padding-right: 10px;
    background: #2D3092;
    
    color: white;
    line-height: 20px;
    text-align: right;
}
#top .cart-display a {
    color: #00ADEE;
}
#top .cart-display a.cart-count {
    margin-right: 3px;
    
    color: white;
    font-weight: bold;
}
#top .cart-display img {
    position: absolute;
    left: 10px; top: 10px;
}

/* Cart footer */
.cart-footer {
    clear: both;
    width: 100%;
    
    padding-top: 15px;
}
.cart-footer .left {
    width: 250px;
}
.cart-footer .small {
    margin-top: 8px;
    font-size: 11px;
}

/**
 * Shop navigation
 */
#top .shop-nav {
    height: 34px;
    border-bottom: #00ACED solid 1px;
}
#top .shop-nav .container {
    position: relative;
}
#top .shop-nav span {
    color: #00ADEE;
    font-size: 13px;
    font-weight: bold;
    line-height: 34px;
}

#top .shop-nav .shop-categories {
    position: absolute;
    left: 145px; top: 0;
}

/* Top categories */
#top .shop-nav ul {
    list-style: none;
}
#top .shop-nav ul li {
    float: left;
}
#top .shop-nav ul li > a {
    text-decoration: none;
}
#top .shop-nav ul li > a div {
    line-height: 28px;
    
    padding: 0 16px;
    margin-top: 2px;
    margin-right: 3px;
    
    border: #CCCCCC solid 1px;
    background: #CCCCCC;
    
    color: #666666;
    font-weight: bold;
    text-align: center;
}
#top .shop-nav ul li.hover > a div,
#top .shop-nav ul li.current > a div {
    background: #8BC53E;
    border: #8BC53E solid 1px ;
    color: white;
}

/* Sub panel */
#top .shop-nav ul li {
    position: relative;
}
#top .shop-nav li.open > a div {
    position: relative;
    z-index: 50;
    
    padding-bottom: 4px;
    
    border: #00ACED solid 1px !important;
    border-bottom: white solid 1px !important;
    background: white !important;

    color: #666666 !important;
}
#top .shop-nav .sub {
    display: none;
    position: absolute;
    top: 34px;
    z-index: 150;
    
    min-width: 170px;
    min-height: 50px;
    
    padding: 7px 0 0;
    
    background: white;
    border: #00ACED solid 1px;
    
    box-shadow: 0 1px 3px #AAA;
}

#top .shop-nav .sub ul li {
    clear: both;
    width: 100%;
    line-height: 30px;
}

#top .shop-nav .sub ul li.view-all {
    line-height: 25px;
    margin-top: 7px;
    border-top: #00ACED solid 1px;
}
#top .shop-nav .sub ul li.view-all a {
    padding-left: 0 !important;
    font-weight: normal;
    text-align: center;
}

#top .shop-nav .sub ul li a {
    display: block;

    padding-left: 18px;
    
    color: #666666;
    font-weight: bold;
}
#top .shop-nav .sub ul li a:hover {
    background: #E7E7E7;
    color: #666666;
}

#top .shop-nav .sub span {
    /* LI Arrows */
    padding-right: 2px;
    color: #CCC;
    line-height: inherit;
}

/**
 * Shop search
 */
#top .shop-nav .search {
    position: absolute;
    top: 2px; right: 20px;
    width: 130px;
}
#top .shop-nav .search input.query {
    position: absolute;
    top: 0; right: 0;
    width: 23px;
    
    padding: 7px 6px;
    border: #CECECE solid 1px;
    background: #EEEEEE;
    
    font-size: 11px;
    
    cursor: pointer;
}
#top .shop-nav .search input.query.open {
    cursor: text;
}

#top .shop-nav .search input.submit {
    position: absolute;
    top: 7px; right: 9px;

    width: 18px;
    height: 15px;
    
    border: solid 0 transparent;
    background-color: transparent;
    background-image: url(../images/icons/mag-search.png);
    background-repeat: no-repeat;
    
    cursor: pointer;
}

/**
 * Breadcrumbs
 */
#top .breadcrumbs {
    line-height: 24px;
    margin-left: -15px;
    
    border-bottom: #00ACED solid 1px;
    
    color: #C2C2C2;
    font-weight: bold;
}
#top .breadcrumbs a {
    margin: 0 7px;
    
    color: #C2C2C2;
    font-weight: bold;
    text-decoration: none;
}
#top .breadcrumbs .current,
#top .breadcrumbs a:hover {
    color: #4D4D4D;
}

/*-------------------------------------------------------------------*/

/**
 * Dropdown panel
 */
.dropdown-panel .panel {
    display: none;
    position: absolute;
    z-index: 900;
    top: 30px; right: -2px;
    width: 300px;

    padding: 15px;
    border: #00ACED solid 1px;
    border-width: 0 1px 1px;
    background: #FFF;
    color: #4D4D4D;

    -webkit-box-shadow: 0 6px 24px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0 6px 24px 0 rgba(50, 50, 50, 0.75);
    box-shadow:         0 6px 24px 0 rgba(50, 50, 50, 0.75);
}
.dropdown-panel .panel h3 {
    margin-bottom: 5px;
    
    color: #43525A;
    font-size: 20px;
}
.dropdown-panel .panel label {
    display: block;

    font-size: 12px;
}
.dropdown-panel .panel input,
.dropdown-panel .panel button {
    box-sizing: border-box;
    width: 100%;
    padding: 10px !important;
}
.dropdown-panel .panel button {
    border-color: #00ACED;
    background: #00ACED;
    color: #FFF;

    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -ms-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}
.dropdown-panel .panel button:hover {
    border-color: #000;
    background: #000;
}
.dropdown-panel .panel p,
.dropdown-panel .panel input {
    margin-bottom: 10px;
}

.dropdown-panel.open .panel {
    display: block;
}

/*-------------------------------------------------------------------*/

/**
 * Body block
 */
#body {
    position: relative;
}
#body .container {
    padding-top: 20px;
}

/* Button */
#body button {
    border: black solid 1px;
    background: #000000;

    color: #FFFFFF;
    font-weight: bold;
}
#body button:hover {
    cursor: pointer;

    background: #FFFFFF;
    color: #000000;
}

/* Sidebar */
#body #side {
    float: left;
    width: 180px;
}
#body #side h3 {
    width: 180px;
    
    margin-bottom: 13px;

    color: #00ACED;
    font-size: 14px;
    font-weight: bold;
    border-bottom: #00ACED solid 1px;
}

#body #side .nav {
    margin-bottom: 17px;
}
#body #side .nav ul {
    list-style: none;
}
#body #side .nav li {
    padding-bottom: 14px;
}
#body #side .nav li a {
    color: #666666;
    font-weight: bold;
    text-decoration: none;
}
#body #side .nav li a.current, /* alternative current for the link only */
#body #side .nav li a:hover {
    color: #8BC53E;
}

#body #side .nav li.current {
    padding-bottom: 4px;
}
#body #side .nav li.current > a div {
    width: 180px;

    margin-bottom: 13px;
    
    border-bottom: #8BC53E solid 1px;
}
#body #side .nav li.current a {
    color: #8BC53E;
    font-weight: bold;
}

#body #side .nav ul.sub {
    margin-left: 20px;
}
#body #side .nav ul.sub li {
    padding-bottom: 9px !important;
}
#body #side .nav ul.sub a div {
    width: 160px;
    border-bottom: transparent dotted 1px;
}
#body #side .nav ul.sub li.current > a div,
#body #side .nav ul.sub a:hover div {
    border-bottom: #8BC53E dotted 1px;
    margin-bottom: 0;
}

/* Content */
#body #content {
    float: right;
    width: 720px;
}

#body div.hr {
    width: 100%;
    height: 45px;
    background: url(../images/icons/rule-long.png) center 15px no-repeat;
}

/* Index slideshow */
.slideshow {
    position: relative;
    z-index: 100;

    width: 920px;
    height: 210px;

    margin: 0 auto;
}
.slideshow .images {
    position: relative;
}

/* Gallery columns */
#content .col {
    width: 226px;

    margin-bottom: 20px;
    
}
#content .col .caption {
    padding: 5px;
    color: #F2F2F2;

    background: #00ACED;
}

/* Contenthub blocks */
div.ch-single-block {
    clear: both;
}
div.ch-third-block {
    float: left;
    width: 220px;
    
    padding-bottom: 30px;
    margin-bottom: 25px;
    margin-right: 19px;
    
    background: url(../images/icons/rule-long.png) center bottom no-repeat;
}

/* Blog widget */
.blog-widget {
    width: 280px;
    height: 274px;
    
    padding: 8px;
    border: #8BC53E solid 1px;
    
    overflow-x: hidden;
    overflow-y: auto;
}
.blog-widget .post {
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: #8BC53E dotted 1px;
}
.blog-widget .post.last {
    border-bottom: 0;
}

.blog-widget h1 a {
    color: #8BC53E;
    font-size: 15px;
}
.blog-widget p {
    padding-top: 2px;
}
.blog-widget p,
.blog-widget p a {
    color: #999;
}

.blog-widget a {
    text-decoration: none;
}
.blog-widget a:hover {
    color: #8BC53E;
    text-decoration: underline;
}

/*-------------------------------------------------------------------*/

/**
 * Index columns
 */
.index-col-2 {
    position: relative;
}
.index-col-2 .col-1 {
    float: left;
    width: 600px;
}
.index-col-2 .col-2 {
    float: right;
    width: 298px;
}

/*-------------------------------------------------------------------*/

/**
 * Shop
 */

/* Inf scroll ajax gif */
.inf-scroll-ajax {
    min-height: 35px;
    text-align: center;
}
.inf-scroll-ajax img {
    display: none;
    margin-top: 5px;
}
.inf-scroll-ajax.show {
    background-color: #F8F8F8;
}
.inf-scroll-ajax.show img {
    display: inline;
}

/* Items */
.mh-item {
    position: relative;
    width: 226px;
    height: 415px;
    
    padding-bottom: 22px;
    margin-bottom: 15px;
    background: url(../images/icons/rule-short.png) center bottom no-repeat;
}

.mh-item .info {
    padding-top: 5px;
}
.mh-item .info a.play div {
    float: left;
    width: 42px;
    height: 42px;
    
    margin-top: 7px;
    margin-right: 7px;
    margin-bottom: 15px;
    
    background: url(../images/icons/pointer-large.png) left top no-repeat;
}
.mh-item .info a.play div:hover {
    background-position: 0 -42px;
}
.mh-item .info p.name {
    max-height: 37px;
    overflow: hidden;
    
    color: #00ACED;
    font-size: 14px;
    font-weight: bold;
}
.mh-item .info p.reg {
    font-size: 11px;
}
.mh-item .info p.price {
    color: #C1272D;
    font-size: 14px;
    font-weight: bold;
}

/* Brand listing item */
.mh-item-brand {
    margin-bottom: 21px;
}

/* Brand information */
.mh-brand-info {
    position: relative;
    height: 164px;
    
    margin-bottom: 21px;
}
.mh-brand-info div {
    position: absolute;
    top: 0; left: 180px;
}
.mh-brand-info h1 {
    margin-bottom: 10px;
    
    color: #8BC53E;
    font-size: 22px;
    font-weight: bold;
}
.mh-brand-info p {
    line-height: 18px;
}

/**
 * Product ribbon
 */
.ribbon {
    position: absolute;
    left: -3px; top: -3px;
    z-index: 10;
    
    width: 76px;
    height: 76px;
    
    background: url(../images/ribbon-sprite.png) left top no-repeat;
}

.ribbon.sprite-staff-pick { background-position: left top; }
.ribbon.sprite-sale { background-position: -77px top; }
.ribbon.sprite-new { background-position: -154px top; }
.ribbon.sprite-pre-order { background-position: -231px top; }

.ribbon.sprite-nz-made { background-position: left -77px; }
.ribbon.sprite-new-brand { background-position: -77px -77px; }
.ribbon.sprite-exclusive { background-position: -154px -77px; }

/*-------------------------------------------------------------------*/

/**
 * Product page
 */
.mh-pp-image {
    float: left;
    width: 400px;
}
.mh-pp-image .lrg {
    position: relative;
}
.mh-pp-image .lrg .mag {
    position: absolute;
    left: 0; bottom: 0;
}

.mh-pp-image .gallery {
    width: 400px;
    padding-top: 5px;
}
.mh-pp-image .gallery img {
    margin-bottom: 5px;

    filter: alpha(opacity=40);  /* internet explorer */
    -moz-opacity: .4;           /* Firefox */
    -webkit-opacity: .4;        /* Older Safari, Webkit */
    opacity: .4;                /* fx, safari, opera, chrome */
}
.mh-pp-image .gallery a.current img,
.mh-pp-image .gallery img:hover {
    filter: alpha(opacity=100); /* internet explorer */
    -moz-opacity: 1;            /* Firefox */
    -webkit-opacity: 1;         /* Older Safari, Webkit */
    opacity: 1;                 /* fx, safari, opera, chrome */
}

/* Details */
.mh-pp-details {
    float: right;
    width: 297px;
}
.mh-pp-details .reg {
    font-size: 13px;
}
.mh-pp-details .price {
    color: #C1272D;
    font-size: 17px;
    font-weight: bold;
}
.mh-pp-details h1 {
    margin-bottom: 13px;
    
    color: #00ACED;
    font-size: 22px;
}
.mh-pp-details h2 {
    padding-top: 4px;
    margin-top: 15px;
    margin-bottom: 11px;
    border-top: #CCCCCC solid 1px;
    
    color: #00ACED;
    font-size: 15px;
    font-weight: bold;
}
.mh-pp-details p.description {
    line-height: 15px;
    margin-bottom: 12px;
    
    color: #666666;
    font-size: 10px;
}
.mh-pp-details p.contact {
    font-size: 10px;
    font-weight: bold;
}

/* Options */
.mh-pp-details .options {
    margin: 12px 0;
    background: #E6E6E6;
}
.mh-pp-details .options h3 {
    padding: 8px;
    
    color: #666666;
    font-size: 15px;
    font-weight: bold;
}
.mh-pp-details .options td {
    padding: 6px 10px 6px 10px;
    
    color: black;
    font-weight: bold;
}
.mh-pp-details .options tr.line td {
    border-bottom: #666666 solid 1px;
}

/* Add to cart */
.mh-pp-details a.add-to-cart div {
    width: 295px;
    height: 33px;

    margin-bottom: 12px;
    background: url(../images/icons/add-to-cart.png) left top no-repeat;
}
.mh-pp-details a.add-to-cart div:hover {
    background-position: 0 -33px;
}

.cart-ajaxload {
    position: relative;
    
    width: 295px;
    height: 33px;

    margin-bottom: 12px;
}
.cart-ajaxload img {
    position: absolute;
    right: 142px; top: 4px;
}

/*-------------------------------------------------------------------*/

/**
 * Hover fade hovers
 */
.mh-item img,
.mh-item-brand img,
.mh-pp-image .lrg img.main,
#most-popular .product img {
    opacity: 1;

    -webkit-transition-duration: 250ms;
    -webkit-transition-property: opacity;
    -webkit-transition-timing-function: ease-in-out;

    -moz-transition-duration: 250ms;
    -moz-transition-property: opacity;
    -moz-transition-timing-function: ease-in-out;

    -o-transition-duration: 250ms;
    -o-transition-property: opacity;
    -o-transition-timing-function: ease-in-out;
}
.mh-item img:hover,
.mh-item-brand img:hover,
.mh-pp-image .lrg img.main:hover,
#most-popular .product img:hover {
    opacity:0.80;
    filter:alpha(opacity=80);
}

.page-rule {
    position: absolute;
    bottom: 273px; left: 0;
    
    width: 100%;
    height: 1px;
    
    border-bottom: #00ACED solid 1px;
}

/*-------------------------------------------------------------------*/

/**
 * Notification message (cart)
 */
#top .main .container {
    position: relative;
}

.notify {
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px; top: 80px;
    
    z-index: 200;
    
    width: 200px;
    height: 70px;

    padding: 10px;

    background: #8BC53E;

    color: #FFF !important;
    text-align: center;

    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-bottomright: 7px;
    -moz-border-radius-bottomleft: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}
.notify h1 {
    margin: 0 !important;
    
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
}
.notify p {
    margin: 0 !important;
    color: #FFF !important;
    font-size: 15px;
}

/*-------------------------------------------------------------------*/

/**
 * Cart
 */
#body .cart h1 {
    margin-top: 25px;
    margin-bottom: 20px;
    border-bottom: #CCCCCC solid 1px;

    color: #8BC53E;
    font-size: 23px;
    font-weight: bold;
}

/* Cart items */
#body .cart-items .item {
    position: relative;
    
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: #CCCCCC solid 1px;
}
#body .cart-items .item img.ajax {
    display: none;
    
    position: absolute;
    right: 10px; top: 10px;
}
#body .cart-items .item .info {
    position: absolute;
    left: 155px; top: 45px;
}
#body .cart-items .item .info h3 {
    color: #00ACED;
    font-size: 20px;
}
#body .cart-items .item .info td.price {
    color: #C1272D;
    font-size: 14px;
    font-weight: bold;
}
#body .cart-items .item .info a {
    color: #00ACED;
    font-size: 11px;
    text-decoration: none;
}
#body .cart-items .item .info a:hover {
    text-decoration: underline;
}

/* Promo code */
#body .promo {
    padding: 15px;
    margin-bottom: 8px;
    background: #F1F1F1;
}

/* Totals */
#body .totals {
    position: relative;
    
    padding: 15px;
    border: #CCCCCC solid 1px;
}
#body .totals .ajax {
    display: none;
    
    position: absolute;
    right: 10px; top: 10px;
}
#body .totals .sub-totals {
    float: right;
    
    font-size: 11px;
}
#body .totals .line {
    float: right;
    clear: both;
    
    width: 100%;
    height: 1px;

    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: #CCCCCC solid 1px;
}
#body .totals .total {
    float: right;
    
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

/* Cart buttons */
#body .cart-buttons {
    margin-top: 15px;
}
#body .cart-buttons > div {
    position: relative;
    line-height: 40px;
    
    padding: 0 10px;
    background: #000000;
    border: #000000 solid 1px;
}
#body .cart-buttons a {
    display: block;
    
    color: white;
    font-size: 19px;
    font-weight: bolder;
    text-decoration: none;
}
#body .cart-buttons > div:hover {
    background: #FFFFFF !important;
}
#body .cart-buttons > div:hover a {
    color: #000000;
}

#body .cart-buttons > div.blue { border-color: #00ACED; background: #00ACED; }
#body .cart-buttons > div.blue:hover a { color: #00ACED; }
#body .cart-buttons > div.green { border-color: #8BC53E; background: #8BC53E; }
#body .cart-buttons > div.green:hover a { color: #8BC53E; }

/**
 * 3 Column details
 */
#body .cols-3 .col {
    float: left;
    width: 210px;
    height: 185px;
    
    padding: 12px;
    margin-right: 6px;
    border: #CECECE solid 1px;
}
#body .cols-3 .col.last {
    margin-right: 0;
}
#body .cols-3 .col h4 {
    padding-bottom: 12px;
    
    color: #00ADEE;
    font-size: 15px;
    font-weight: bolder;
}
#body .cols-3 .col input {
    width: 200px;
    padding: 3px;
    margin-top: 7px;
}
#body .cols-3 .col input.blur {
    color: #CCCCCC;
}

/**
 * Register
 */
#body .register h3 {
    color: #000000;
    font-size: 13px;
    font-weight: bold;
}
#body .register td {
    padding: 6px;
}
#body .register input {
    width: 200px;
    padding: 4px;
}
#body .register input.checkbox {
    width: auto;
}

#body .register .grey-stretch {
    margin-top: 10px;
    padding: 13px;
    
    background: #EDEDED;
}

#body .register .right {
    width: 368px;
}
#body .register .grey-box {
    padding: 12px;
    padding-bottom: 20px;
    background: #EDEDED;
}

#body .register button {
    line-height: 40px;
    
    margin-top: 12px;
    padding: 0 10px;
    border: #8BC53E solid 1px;
    background: #8BC53E;
    
    color: white;
    font-size: 19px;
    font-weight: bolder;
    text-decoration: none;
}
#body .register button:hover {
    background: #FFFFFF;
    color: #8BC53E;
}

/**
 * Forgot password
 */
.panel-forgot-password .submit {
    position: relative;
    width: 100%;
}
.panel-forgot-password .submit img {
    display: none;
    position: absolute;
    left: 20px; top: 4px;
}
.panel-forgot-password .submit a {
    float: right;
    margin-top: 6px;
}

.panel-forgot-password .thankyou-message {
    display: none;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 10px;
}
.panel-forgot-password .error-message {
    display: none;
    margin-top: 10px;
}

/*-------------------------------------------------------------------*/

/**
 * Blog
 */
.blog .article {
    padding-bottom: 18px;
}
.blog .article h1 a {
    text-decoration: none;
}
.blog .article h3 {
    padding-bottom: 17px;
}

.blog #side ul {
    list-style: none;
}

.blog .article h1 a,
.blog #side a {
    text-decoration: none;
}
.blog .article h1 a:hover,
.blog #side a:hover {
    text-decoration: underline;
}

.blog .tags {
    padding-top: 17px;
}

/* Comments */
.comment {
    margin-bottom: 12px;
    padding: 12px;
    border-bottom: #DDD solid 1px;
    
    background: #F8F8F8;
}
.comment .sub {
    margin-bottom: 8px;
}
.comment .sub span {
    float: right;
    color: #BBB;
}
.comment.last {
    margin-bottom: 23px;
}

/*-------------------------------------------------------------------*/

/**
 * Most popular
 */
#most-popular {
    position: relative;
    
    clear: both;
    width: 785px;
    height: 270px;
    
    padding-top: 50px;
    padding-left: 135px;
}
#most-popular .btn {
    position: absolute;
    left: 0; top: 68px;
}

#most-popular .product {
    float: left;
    width: 165px;
    
    padding-left: 24px;
    border-left: #00ACED solid 1px;
}
#most-popular .product.last {
    width: 166px;
}

#most-popular .info {
    padding-top: 5px;
}
#most-popular .info .play div {
    float: left;
    width: 28px;
    height: 28px;
    
    margin-top: 7px;
    margin-right: 7px;
    margin-bottom: 20px;
    
    background: url(../images/icons/pointer-small.png) left top no-repeat;
}
#most-popular .info .play div:hover {
    background-position: 0 -28px;
}
#most-popular .info p.name {
    color: #00ACED;
    font-size: 12px;
    font-weight: bold;
}
#most-popular .info p.reg {
    font-size: 11px;
}
#most-popular .info p.price {
    color: #C1272D;
    font-size: 12px;
    font-weight: bold;
}

/*-------------------------------------------------------------------*/

/**
 * Back to top
 */
#backtotop {
    display: none;
    position: fixed;
    right: 20px; bottom: 0;
    z-index: 1000;
}
#backtotop a {
    display: block;
    width: 48px;
    height: 48px;

    border: 0 none;

    text-decoration: none;
}
#backtotop a:hover {
    opacity:.8;
}


/*******************************************************
   Form styles
 *******************************************************/

.form table td {
    padding: 6px;

    color: #777;
    font-size: 14px;
    line-height: 20px;
}

/*
 * Field styling
 */
.form input {
    width: 230px;

    padding: 5px;

    border: #C5C5C5 solid 1px;
    font-size: 12px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.form select {
    width: 337px;
}
.form .checkbox {
    width: auto;
}
.form textarea {
    overflow: auto;
    width: 330px;
    padding: 5px;
    border: #C5C5C5 solid 1px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/*
 * Buttons
 */
button {
    overflow: visible;

    padding:3px 7px 3px 7px;

    background: #C4C6C7;
    border: 1px solid #C3C3C2;

    color: #005B7F;
    font-size: 100%;
    font-weight: bold;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
button:hover {
    cursor: pointer;
    background: #6D6E71;
    border-color: #6D6E71;

    color: #FFF;
}

/* Firefox & Safari Fixes */
.form button[type] {
    padding:3px 7px 3px 7px;
    line-height:17px;
}
/* IE7 Fixes */
.form *:first-child+html button[type] {
    padding:4px 7px 3px 7px;
}

/*
 * Thank you box
 */
div.thankyou-message {
    clear: both;

    padding: 12px 0px 12px 40px;
    margin-top: 14px;
    margin-bottom: 8px;

    border: #1C9640 solid 1px;
    border-width: 1px 0px 1px 0px;

    background: url(../images/icons/tick.png) no-repeat 10px 11px #ECF7ED;

    color: #1C9640;
}

/*
 * Errors
 */
div.error-message {
    clear: both;

    padding: 8px 0 8px 35px;
    margin-bottom: 14px;

    border: #C1272D solid;
    border-width: 1px 0 1px 0;

    background: url(../images/icons/alert.png) no-repeat 10px 9px #FFFFFF;

    color: #C1272D;
}

/* Field error */
tr.field-error td,
tr.field-error .label,
td.field-error {
    color: #C1272D !important;
}
.field-error input,
.field-error textarea {
    border: #C1272D solid 1px;
}

/*-------------------------------------------------------------------*/

/**
 * Footer block
 */
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -195px; /* = footer_height */
}
.push {
    clear: both;
    height: 198px; /* padding = footer_height + X */
}

#footer {
    height: 194px;
    
    border-top: #00ACED solid 1px;
    background: url(../images/backgrounds/footer-fade.png) left top repeat-x #FFFFFF;
    
    color: #999999;
}
#footer .container {
    position: relative;
}
#footer .left,
#footer .us {
    padding-top: 20px;
}

#footer .left {
    line-height: 21px;
}

#footer .ch {
    position: absolute;
    top: 155px; left: 20px;
}
#footer .ch a {
    color: #C1272D;
    font-size: 11px;
    font-weight: bold;
}

#footer .nav {
    position: absolute;
    top: 18px; left: 260px;
    
    line-height: 22px;
    color: #29ABE2;
}
#footer .nav a {
    text-decoration: none;
}
#footer .nav a:hover {
    text-decoration: underline;
}
#footer span {
    color: #999;
    font-weight: bold;
}

#footer .us {
    float: right;
    color: #8BC53E;
}
#footer .us a {
    color: #8BC53E;
}

/* newshub form */
#footer .news {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 232px;
    
    text-align: right;
}
#footer .news h1 {
    font-family: Arial;
    font-size: 16px;
    text-align: right;
}
#footer .news table {
    margin-top: 8px;
    font-size: 12px;
}
#footer .news table b {
    color: #FFFFFF;
}
#footer .news input {
    width: 200px;
    padding: 5px;
}
#footer .news button {
    background: #C4C6C7;
    border-color: #C4C6C7;
    color: #0072BC;
    font-weight: normal;
}
#footer .news button:hover {
    background: #00ACED;
    border-color: #00ACED;
    color: #FFFFFF;
}
#footer .news input.blur {
    color: gray;
}