.rating {
    float:left;
}

/* :not(:checked) is a filter, so that browsers that don�t support :checked don�t
   follow these rules. Every browser that supports :checked also supports :not(), so
   it doesn�t make the test unnecessarily selective */
.rating:not(:checked) > input {
    position:absolute;
    top:-9999px;
    clip:rect(0,0,0,0);
}

.rating:not(:checked) > label {
    float:right;
    padding:0 .1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:200%;
    line-height:1.2;
    color:#ddd;
    text-shadow:1px 1px #bbb, 2px 2px #666, .1em .1em .2em rgba(0,0,0,.5);
}

.rating:not(:checked) > label:before {
    content: '★ ';
    font-size: 53px;
}

.rating > input:checked ~ label {
    color: #f70;
    text-shadow:1px 1px #c60, 2px 2px #940, .1em .1em .2em rgba(0,0,0,.5);
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: gold;
    text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5);
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    color: #ea0;
    text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5);
}

.rating > label:active {
    position:relative;
    top:2px;
    left:2px;
}

.rcondition {
    display:none;
}

.hide {
    display:none;
}

.show {
    -o-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    opacity:1;
}
.hide{  opacity:0; }

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.container {
    /*min-height: 100%; */
    min-height: 216px;
    height: 100%;
    /* equal to footer height */
    margin-bottom: -44px;
}
.container:after {
    content: "";
    display: block;
}
.site-footer, .container:after {
    /* .push must be the same height as footer */
    height: 44px;
}
.site-footer {
    background: url('../images/bg/bg-footer.png') repeat-x;
    font-size: 12px;
    padding-left: 20px;
    line-height: 44px;
    color: #fff;
}

.footer-social {
    float: right;
    margin: 10px 8px 0 0;
    background-color: white;
    border-radius: 5px;
    margin-left: 0;
    margin-top: 7px;
    margin: 7px 17px 0 0;
    padding: 2px 0 2px 0;
}

.footer-social li {
    float: left;
    list-style: none;
    margin: 0 2px;
}

.footer-social li a {
    display: block;
    width: 27px;
    height: 27px;
    background: url('../images/social_links.gif') no-repeat;
}
.footer-social li a:hover {
    display: block;
    width: 27px;
    height: 27px;
    background: url('../images/social_links_active.gif') no-repeat;
}
.footer-social li a.youtube {
    background-position: 0 0;
}
.footer-social li a.flickr {
    background-position: -30px 0;
}
.footer-social li a.linkedin {
    background-position: -60px 0;
}
.footer-social li a.facebook {
    background-position: -90px 0;
}

.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 )
    url('../images/wait.gif')
    50% 50%
    no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}

.error_div {
    position: absolute;
    top: 50%;
    margin-top: -41px;
    left: 50%;
    margin-left: -285px;
    width: 570px;
}