@import url("../reset.css");
/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
/* General */
body {
    line-height: 1.4;
    background: #fff url(../../images/front/bg.png) repeat-x;
    color: #666;
    font-family: Verdana, sans-serif;
    font-size: 12px;
}
a {
    font-family: Verdana, sans-serif;
    color: #666;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    transition: color .3s;
}
a:hover {
    color: #333;
}
p {
    margin-bottom: 10px;
}
.center {
    text-align: center;
}
.tright {
    text-align: right;
}
.tleft {
    text-align: left;
}
.fright {
    float: right;
}
.fleft {
    float: left;
}
h1, h2 {
    color: #09639f;
    text-shadow: 0 1px 0 #fff;
    font-family: 'Open Sans', Verdana, sans-serif;
    font-weight: normal;
    font-size: 20px;
}
h2 {
    font-size: 18px;
}
.info-icon {
    vertical-align: middle;
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 0;
    background: url(../../images/front/icons/info.png) no-repeat;
    font-size: 0;
}
/* Tooltip */
#tooltip {
    z-index: 3000;
    position: absolute;
    max-width: 300px;
    padding: 5px;
    line-height: 1;
    border: 1px solid #aaa;
    background-color: #efefef;
    opacity: 0.85;
    font-size: 11px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#tooltip h3, #tooltip div {
    text-shadow: none;
    margin: 0;
    font-weight: normal;
}
/* Fancy checkbox */
a.fancy_check {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 30px;
    line-height: 0;
    padding: 0;
    text-indent: 0;
    background: url(../../images/front/icons/fancy_check_base.png) no-repeat;
    vertical-align: middle;
    font-size: 0;
}
a.fancy_check span {
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 1px;
    display: inline-block;
    width: 40px;
    height: 28px;
    margin: 0;
    background: url(../../images/front/icons/fancy_check_handler.png) no-repeat -1px -1px;
}
a.fancy_check span span {
    display: none;
    position: static;
    background: url(../../images/front/circular_loading.gif) no-repeat 50% 50%;
}
a.fancy_check.checked span {
    left: 39px;
}
a.fancy_check.loading span span {
    display: block;
}
/* Button */
a.mail,
a.edit,
a.delete,
a.forward,
a.save,
a.doc {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../../images/front/icons/mail.png) no-repeat;
    vertical-align: middle;
}
a.edit {
    background: url(../../images/front/icons/edit.png) no-repeat;
}
a.delete {
    background: url(../../images/front/icons/delete.png) no-repeat;
}
a.forward {
    background: url(../../images/front/icons/forward.png) no-repeat;
}
a.save {
    background: url(../../images/front/icons/save.png) no-repeat;
}
a.doc {
    background: url(../../images/front/icons/doc.png) no-repeat;
}
a.doc-btn,
a.attachment-btn {
    display: inline-block;
    height: 18px;
    padding: 6px 0 0 24px;
    margin-bottom: 3px;
    background: url(../../images/front/doc_btn.png) no-repeat 0 0;
}
a.attachment-btn {
    background: url(../../images/front/attachment_btn.png) no-repeat 0 0;
}
a.doc-btn:hover {
    background: url(../../images/front/doc_btn.png) no-repeat 0 100%;
}
a.attachment-btn:hover {
    background: url(../../images/front/attachment_btn.png) no-repeat 0 100%;
}
/* Messages */
.error, .success, .info, .note {
    position: relative;
    padding: 5px;
    margin-bottom: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
a.msg-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 15px;
    height: 16px;
    font-size: 0;
    border: none;
}
.error-content, .success-content, .info-content, .note-content {
    padding: 8px 30px 8px 8px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.error {
    background: #f0d6d5;
}
.error-content {
    border: 1px solid #ae2831;
    background: #d14a53 url(../../images/front/error_bg.png) repeat-x;
    text-shadow: 0 1px 0 #801219;
}
.error a.msg-close {
    background: url(../../images/front/error_close.png) no-repeat;
}
.success {
    background: #d9f0d5;
}
.success-content {
    border: 1px solid #0f600b;
    background: #558556 url(../../images/front/success_bg.png) repeat-x;
    text-shadow: 0 1px 0 #094706;
}
.success a.msg-close {
    background: url(../../images/front/success_close.png) no-repeat;
}
.info {
    background: #d3f2f7;
}
.info-content {
    border: 1px solid #107690;
    background: #558b9d url(../../images/front/info_bg.png) repeat-x;
    text-shadow: 0 1px 0 #115971;
}
.info a.msg-close {
    background: url(../../images/front/info_close.png) no-repeat;
}
.note {
    background: #f4f1d6;
}
.note-content {
    border: 1px solid #a89c11;
    background: #b7a13b url(../../images/front/alert_bg.png) repeat-x;
    text-shadow: 0 1px 0 #6d5c0e;
}
.note a.msg-close {
    background: url(../../images/front/alert_close.png) no-repeat;
}
/* Forms */
.error_list {
    color: #bd5252;
    font-size: 11px;
}
.fancy-form,
.fancy-error,
.fancy-success {
    padding: 10px 10px 0 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background: #fcfcfc url(../../images/front/tr_logo.png) no-repeat 100% 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.fancy-success {
    background-color: #e4ffe2;
    border-color: #aee6aa;
}
.fancy-error {
    background-color: #fff6f6;
    border-color: #eda0a0;
}
.fancy-success,
.fancy-error {
    min-height: 100px;
    background-position: 100% 0;
}
.fancy-form.with-error {
    background: #fcfcfc url(../../images/front/error_indicator.png) repeat-y;
}
.form-item {
    margin-bottom: 10px;
}
label {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 3px;
}
.description {
    color: #999;
    font-size: 11px;
}
label.checkbox {
    margin: 0;
}
span.inactive {
    display: inline-block;
}
.inactive {
    vertical-align: middle;
    padding: 7px;
    border: 1px solid #d9d9d9;
    background: #eee;
    color: #666;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#postal_cide_prefix {
    width: 20px;
    text-align: center;
}
input, textarea {
    vertical-align: middle;
    margin: 0;
    padding: 8px;
    border: 1px solid #d9d9d9;
    background: #f9f9f9;
    color: #666;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    -webkit-transition: color .3s, border .3s, box-shadow .3s;
    -moz-transition: color .3s, border .3s, box-shadow .3s;
    transition: color .3s, border .3s, box-shadow .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
input:focus,
input.focus,
textarea:focus,
textarea.focus {
    border-color: #7ec1ee;
    box-shadow: 0 0 3px #0f77bc;
}
input.middle,
textarea.middle {
    width: 350px;
}
input.small {
    width: 40px;
}
table.grid input.small {
    text-align: center;
}
select {
    vertical-align: middle;
    padding: 5px;
    border: 1px solid #d9d9d9;
    color: #666;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
table.grid select {
    padding: 4px 10px;
    border-color: #bbb;
    color: #333;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.circular-preloader {
    visibility: hidden;
    vertical-align: middle;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../../images/front/circular_preloader.gif) no-repeat;
}
input.checkbox {
    border: none;
    padding: 0;
    margin: 0;
    background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
input.with-error {
    background: #fff url(../../images/front/err_stripes.png);
}
#sign_up_terms .box-content {
    height: 150px;
    overflow: auto;
}
input.fancy-ok,
input.fancy-cancel,
a.fancy-ok,
a.fancy-cancel {
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    width: 30px;
    height: 31px;
    line-height: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: url(../../images/front/icons/ok.png) no-repeat;
    font-size: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
input.fancy-cancel,
a.fancy-cancel {
    background: url(../../images/front/icons/cancel.png) no-repeat;
}
input.fancy-ok.loading {
    border: 1px solid #aaa;
    background: url(../../images/front/loading.gif);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
/* The Button */
a.button,
input.button {
    overflow: visible;
    cursor: pointer;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #1076bc;
    background: #0e76bc url(../../images/front/button.png) repeat-x;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
a.button:hover,
input.button:hover {
    background: #1c89d2 url(../../images/front/button.png) repeat-x 0 -50px;
}
a.button:active,
input.button:active {
    background: #59a1d0 url(../../images/front/button.png) repeat-x 0 -100px;
}
a.button.big,
input.button.big {
    padding: 7px 15px;
    font-size: 18px;
    font-weight: bold;
}
a.button span {
    display: inline-block;
    padding-left: 25px;
    background: url(../../images/front/button_arrow.png) no-repeat 0 50%;
}
a.button.light,
input.button.light {
    border: 1px solid #d9d9d9;
    background: #f2f2f2 url(../../images/front/button_light.png) repeat-x 0 -50px;
    color: #0f77bc;
    text-shadow: 0 1px 0 #fff;
}
a.button.light:hover,
input.button.light:hover {
    color: #333;
}
a.button.light:active,
input.button.light:active {
    background: #fefefe url(../../images/front/button_light.png) repeat-x;
}
a.button.fancy,
input.button.fancy {
    border: 1px solid #bbb;
    background: #f2f2f2 url(../../images/front/button_fancy.png) repeat-x 0 0;
    color: #333;
    text-shadow: 0 1px 0 #fff;
    font-size: 11px;
    font-weight: bold;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
a.button.fancy:hover,
input.button.fancy:hover {
    color: #006699;
}
a.button.fancy:active,
input.button.fancy:active {
    background: #f2f2f2 url(../../images/front/button_fancy.png) repeat-x 0 -50px;
}
.form-image img {
    width: 100%;
    display: block;
}
.form-image2 img {
    display: block;
}
/* Button loading */
a.button.loading,
input.button.loading {
    border: 1px solid #ccc;
    background: #fff url(../../images/front/loading.gif);
    color: #666;
    text-shadow: 0 1px 0 #fff;
}
/* The Box */
.box {
    margin-bottom: 10px;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.box.home {
    float: left;
    width: 223px;
    margin-right: 12px;
}
.box.grey {
    padding: 10px;
    min-height: 100px;
    background: #f2f2f2 url(../../images/front/box_grey.png) repeat-x;
    text-shadow: 0 1px 0 #fff;
}
.box-header {
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border-bottom: 1px solid #d9d9d9;
    background: url(../../images/front/box_header.png) repeat-x;
    color: #09639f;
    text-shadow: 0 1px 0 #fff;
    font-family: 'Open Sans', Verdana, sans-serif;
    font-size: 20px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}
.blue .box-header {
    background: url(../../images/front/box_header_blue.png) repeat-x;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}
.box-header span {
    display: inline-block;
    padding-left: 30px;
    background: url(../../images/front/box_arrow.png) no-repeat 0 50%;
}
.blue .box-header span {
    background: url(../../images/front/box_arrow_blue.png) no-repeat 0 50%;
}
.with-menu .box-header {
    font-size: 15px;
}
.box-header ul {
    height: 38px;
    line-height: 38px;
    line-height: 1;
    font-size: 14px;
}
.box-header ul li {
    display: inline-block;
    float: left;
    height: 30px;
    line-height: 30px;
    padding-top: 8px;
    margin-right: 10px;
}
.box-header ul li a {
    display: inline-block;
    border: 1px solid #ccc;
    border-bottom: none;
    padding: 0 10px;
    color: #666;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.box-header ul li a:hover {
    color: #09639f;
}
.box-header ul li a.active,
.box-header ul li a.active:hover {
    background: #fff;
    color: #333;
}
.tab-content {
    display: none;
}
.tab-content.loading {
    background: url(../../images/front/light_circular_loading.gif) no-repeat 50% 50%;
}
.box-content {
    overflow: hidden;
    padding: 10px;
    background: #fff url(../../images/front/box_content.png) repeat-x 0 100%;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}
.with-menu .box-content {
    padding: 0 0 10px 0;
}
.with-steps .box-content {
    padding: 0;
}
.box.home .box-content {
    position: relative;
    min-height: 210px;
}
.box.home .box-content a.button {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.box-content.fancy {
    background: #fcfcfc url(../../images/front/tr_logo.png) no-repeat 100% 100%;
}
.v-nav li {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e3e4e6;
    background: #fff url(../../images/front/v_nav.png) repeat-x;
}
.v-nav li a {
    display: block;
    padding: 7px 10px;
}
.v-nav li a:hover {
    color: #0f76bc;
}
.v-nav li a.selected,
.v-nav li a.selected:hover {
    color: #333;
    font-weight: bold;
}
.tasks {
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
}
.tasks li {
    padding: 5px 5px 5px 25px;
    border-bottom: 1px solid #ccc;
    background: url(../../images/front/icons/cross.png) no-repeat 3px 5px;
}
.tasks li.tick {
    background: url(../../images/front/icons/tick.png) no-repeat 3px 5px;
}
/* Steps */
.steps-nav {
    padding: 10px 0;
}
.steps-nav li {
    padding-bottom: 10px;
    background: #fff url(../../images/front/steps_empty.png) repeat-y 5px 0;
}
.steps-nav li a {
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px 0 5px;
    background: #fff url(../../images/front/steps.png) no-repeat 5px -180px;
}
.steps-nav li a.with-error {
    color: #bd5252;
}
.steps-nav li a span {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding-right: 5px;
    color: #bbb;
    text-shadow: 0 1px 0 #eee;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
}
.steps-nav li.first a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px 0;
}
.steps-nav li.last {
    padding: 0;
}
.steps-nav li.last a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -360px;
}
.steps-nav li.passed {
    background: #fff url(../../images/front/steps_full.png) repeat-y 5px 0;
}
.steps-nav li.passed a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -240px;
}
.steps-nav li.first.passed a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -120px;
}
.steps-nav li.current a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -300px;
}
.steps-nav li.first.current a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -60px;
}
.steps-nav li.last.passed a,
.steps-nav li.last.current a {
    background: #fff url(../../images/front/steps.png) no-repeat 5px -420px;
}
.steps-nav li.current a span,
.steps-nav li.passed a span {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
/* Auth window */
#mask {
    display: none;
    z-index: 100;
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/front/mask.png);
}
.popup-window {
    display: none;
    z-index: 100;
    position: absolute;
    top: 150px;
    left: 50%;
    margin-left: -200px;
    width: 400px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.popup-window input {
    width: 362px;
}
.popup-window input.button {
    width: auto;
    margin-right: 10px;
}
.popup-window input.fright {
    margin-right: 0;
}
.popup-window input.checkbox {
    width: auto;
}
.popup-window-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 11px;
    height: 10px;
    line-height: 0;
    background: url(../../images/front/close.png) no-repeat 0 0;
    font-size: 0;
}
/* Layout */
#container {
    width: 960px;
    margin: 0 auto 30px auto;
}
body.signed-in #container {
    padding-top: 60px;
}
#content-wrap {
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
}
#content {
    padding: 10px 10px 0 10px;
}
/* Grid layout */
.grid-layout {
    margin-bottom: 5px;
}
.grid-layout tr td {
    vertical-align: top;
    width: 50%;
    padding: 5px;
}
.grid-layout input.middle,
.grid-layout textarea.middle {
    width: 310px;
}
select.middle {
    width: 370px;
}
.grid-layout select.middle {
    width: 300px;
}
/* Header */
#header-top {
    position: relative;
    height: 79px;
}
#header-top a.sign-in,
#header-top a.sign-up,
#header-top a.sign-out,
#header-top a.user-profile {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding: 10px 15px;
    border: 1px solid #1076bc;
    background: #0e76bc url(../../images/front/button.png) repeat-x;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
    font-size: 15px;
    font-weight: bold;
}
#header-top a.sign-in,
#header-top a.user-profile {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}
#header-top a.sign-up,
#header-top a.sign-out {
    margin: 0;
    border-left: 1px solid #5aa1d1;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}
#header-top a.sign-out.complete {
    margin-left: 10px;
    border: 1px solid #1076bc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#header-top a.sign-in:hover,
#header-top a.sign-up:hover,
#header-top a.sign-out:hover,
#header-top a.user-profile:hover {
    background: #1c89d2 url(../../images/front/button.png) repeat-x 0 -50px;
    color: #fff;
}
#header-top a.sign-in:active,
#header-top a.sign-up:active,
#header-top a.sign-out:active,
#header-top a.user-profile:active {
    background: #59a1d0 url(../../images/front/button.png) repeat-x 0 -100px;
    color: #fff;
}
#logo {
    position: absolute;
    top: 0;
    left: 0;
}
#logo img {
    display: block;
}
#header-links {
    position: absolute;
    top: 0;
    right: 0;
    height: 79px;
    line-height: 79px;
    color: #a6a6a6;
    font-size: 11px;
}
#header-links a {
    margin-left: 10px;
    color: #a6a6a6;
}
#header-links a:hover {
    color: #666;
}
/* Main nav */
#main-nav {
    height: 50px;
    background: url(../../images/front/menu_bg.png) repeat-x;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
#main-nav ul {
    float: right;
}
#main-nav ul li {
    display: inline-block;
    float: left;
}
#main-nav ul li.separator {
    width: 2px;
    height: 50px;
    background: url(../../images/front/v_separator.gif) repeat-y;
}
#main-nav ul li a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #0f77bc;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .85);
    font-family: 'Open Sans', Verdana, sans-serif;
    font-size: 16px;
}
#main-nav ul li a:hover {
    color: #333;
}
#main-nav ul li a.selected {
    background: #fff;
    color: #333;
}
.submenu {
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #e0e0e0;
    background: url(../../images/front/submenu_bg.png) repeat-x;
}
.submenu li {
    display: inline-table;
    float: left;
}
.submenu li a {
    display: inline-block;
    padding: 0 10px;
    color: #808080;
}
.submenu li a:hover {
    color: #0f76bc;
}
.submenu li a.selected,
.submenu li a.selected:hover {
    color: #404040;
}
/* Rotator */
#rotator-wrap {
    position: relative;
    height: 310px;
    margin-bottom: 5px;
    background: url(../../images/front/rotator_shadow.png) no-repeat 50% 100%;
}
#rotator-prev,
#rotator-next {
    z-index: 99;
    position: absolute;
    top: 50%;
    margin-top: -46px;
    display: block;
    width: 55px;
    height: 92px;
    background: url(../../images/front/rotator_prev.png) no-repeat;
}
#rotator-prev {
    left: 1px;
}
#rotator-next {
    right: 1px;
    background: url(../../images/front/rotator_next.png) no-repeat;
}
#rotator {
    overflow: hidden;
    height: 300px;
}
/* Main Content */
.left-column {
    float: left;
    width: 227px;
}
.right-sidebar .left-column {
    width: 698px;
}
.right-column {
    float: right;
    width: 698px;
}
.right-sidebar .right-column {
    width: 227px;
}
.one-column {
    padding-bottom: 10px;
}
.right-column h1,
.one-column h1 {
    line-height: 39px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e3e4e6;
}
/* Grid */
table.grid {
    margin: 10px 0;
    border: 1px solid #ccc;
}
table.grid tr th {
    padding: 7px;
    border: 1px solid #ccc;
    border-right: none;
    border-left: none;
    background: #e6e6e6 url(../../images/front/grid_header.png) repeat-x;
    color: #262626;
    text-shadow: 0 1px 0 #fff;
    font-weight: normal;
    font-size: 14px;
}
table.grid tr th a {
    color: #262626;
}
table.grid tr th a:hover {
    color: #09639f;
}
table.grid tr th .arrow {
    vertical-align: middle;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../images/front/box_arrow.png) no-repeat;
}
table.grid tr th .fright {
    font-weight: normal;
    padding: 4px 0;
    font-size: 12px;
}
table.grid tr td.no-padding {
    padding: 0;
}
table.grid tr td {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    background: #fafafa url(../../images/front/grid_light.png) repeat-x;
}
table.grid tr.alt td {
    background: #ededed url(../../images/front/grid_dark.png) repeat-x;
}
table.grid tr.notice td {
    background: #ffeabe url(../../images/front/grid_notice.png) repeat-x;
}
table.grid tr.alert td {
    background: #ffd1d1 url(../../images/front/grid_alert.png) repeat-x;
}
table.grid tr td img {
    vertical-align: middle;
}
table.grid .center {
    text-align: center;
}
table.grid tr.canceled td {
    background: #fff0f0;
}
table.grid tr.finished td {
    background: #f3fff2;
}
table.grid tr.over td {
    background: #dbedf6 url(../../images/front/grid_over.png) repeat-x;
}
table.statistics tr th,
table.statistics tr td {
    border: 1px solid #ccc;
}
table.grid.statistics tr td {
    padding: 0;
}
a.toggle {
    float: right;
    vertical-align: middle;
    display: inline-block;
    width: 28px;
    height: 27px;
    line-height: 0;
    margin: 5px;
    background: url(../../images/front/grid_toggle.png) no-repeat 0 0;
    font-size: 0;
}
a.toggle.opened {
    background: url(../../images/front/grid_toggle.png) no-repeat 0 -27px;
}
.toggle-title {
    float: left;
    padding: 10px 5px 5px 5px;
}
table.statistics tr td ul {
    display: none;
}
table.statistics tr td ul li {
    border-top: 1px solid #ccc;
    background: #fafafa url(../../images/front/grid_light.png) repeat-x;
}
table.statistics tr td ul li span {
    display: block;
    padding: 10px 10px 10px 30px;
    background: url(../../images/front/statistics_list_bullet.png) no-repeat 5px 50%;
}
table.statistics tr td ul li.notice {
    background: #ffeabe url(../../images/front/grid_notice.png) repeat-x;
}
table.statistics tr td ul li.alert {
    background: #ffeabe url(../../images/front/grid_alert.png) repeat-x;
}
table.statistics tr td div.html_tables_sux {
    vertical-align: middle;
    margin: 0;
    float: left;
    width: 90px;
    height: 30px;
    line-height: 24px;
    
}
table.statistics tr td div.html_tables_sux a.fancy {
    line-height: 1.4;
}
/* Pager */
.pager {
    text-align: right;
}
.pager a,
.pager span {
    display: inline-block;
    line-height: 1;
    padding: 5px 7px;
    border: 1px solid #ccc;
    background: #f2f2f2 url(../../images/front/button_light.png) repeat-x 0 -50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: color .3s, -webkit-box-shadow .3s;
    -moz-transition: color .3s, -moz-box-shadow .3s;
    transition: color .3s, box-shadow .3s;
}
.pager a:hover {
    color: #09639f;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
.pager a:active {
    background: #fefefe url(../../images/front/button_light.png) repeat-x;
}
.pager span {
    border: 1px solid #1076bc;
    background: #0e76bc url(../../images/front/button.png) repeat-x;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}
/* Footer */
#footer {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background: #fafafa url(../../images/front/footer_bg.png) repeat-x;
    color: #999;
    text-shadow: 0 1px 0 #fff;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
#footer-logo {
    display: inline-block;
    float: left;
    margin: 0 10px;
}
#footer-logo img {
    display: block;
}
.footer-column {
    float: left;
    min-width: 130px;
    padding: 15px;
}
.copy {
    color: #808080;
    font-size: 11px;
}
.footer-column a {
    display: inline-block;
}

/* Calendar */
table.calendar {
    width: 100%;
    border: 1px solid #bbb;
    table-layout: fixed;
}
table.calendar td,
table.calendar th {
    border: 1px solid #bbb;
    color: #444;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
    text-align: center;
    background: #eee url(../../images/front/calendar/calendar_date.png) repeat-x;
}
table.calendar td {
    font-size: 20px;
}
table.calendar td a {
    position: relative;
    display: block;
    padding: 30px 0;
    color: #444;
}
table.calendar td.date a:hover {
    background: #e4e4e4 url(../../images/front/calendar/calendar_over.png) repeat-x;
}
table.calendar th {
    padding: 8px 0;
    font-size: 13px;
    background: #ccc url(../../images/front/calendar/calendar_date.png) repeat-x 0 100%;
}
table.calendar td.empty,
table.calendar td.empty a:hover {
    background: #fff;
}
table.calendar td.empty a {
    cursor: default;
}
table.calendar td.event,
table.calendar td.event a:hover {
    background: #1d96d2 url(../../images/front/calendar/calendar_event.png) repeat-x;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}
table.calendar td.today,
table.calendar td.today a:hover {
    background: #1d96d2 url(../../images/front/calendar/calendar_event.png) repeat-x;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .6);
}
table.calendar tr.navigation th {
    padding: 0;
}
table.calendar tr.navigation th a {
    display: block;
    padding: 8px 0;
    color: #444;
}
table.calendar tr.navigation th a:hover {
    background: #dbdbdb url(../../images/front/calendar/calendar_over.png) repeat-x;
}
.has-shows {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: url(../../images/front/calendar/has_shows.png) no-repeat;
}
.has-reservations {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: url(../../images/front/calendar/has_reservations.png) no-repeat;
}
.calendar-events-list {
    height: 300px;
    overflow: auto;
}
.calendar-events-list ul {
    margin-bottom: 10px;
}
.calendar-events-list ul li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}
.calendar-events-list ul li p {
    margin: 0;
}
.calendar-events-list h4 {
    text-transform: uppercase;
    text-align: center;
    font-size: 11px;
}
.calendar-legend {
    padding-top: 10px;
}
.calendar-legend img {
    vertical-align: middle;
}
.calendar-legend span {
    display: inline-block;
    margin-right: 10px;
}

/* User Controls */
#user-controls {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #e0e0e0;
    background: url(../../images/front/menu_bg.png) repeat-x;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
#user-controls ul {
    width: 960px;
    margin: 0 auto;
}
#user-controls ul li {
    position: relative;
    display: inline-block;
    float: left;
}
#user-controls ul li.separator {
    width: 2px;
    height: 50px;
    background: url(../../images/front/v_separator.gif) repeat-y;
}
#user-controls ul li.fright {
    float: right;
}
#user-controls ul li a {
    display: inline-block;
    padding: 0 10px;
    color: #0f77bc;
    font-size: 13px;
}
#user-controls ul li a:hover {
    color: #333;
}
#user-controls ul li a.selected {
    background: #fff;
    color: #333;
}
a#top-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    vertical-align: middle;
    display: none;
    width: 28px;
    height: 27px;
    padding: 0;
    line-height: 0;
    background: url(../../images/front/top.png) no-repeat;
    font-size: 0;
}
#user-controls ul li a span {
    display: inline-block;
    padding-left: 25px;
}
#user-controls ul li a.contracts span {
    background: url(../../images/front/icons/contracts.png) no-repeat 0 50%;
}
#user-controls ul li a.artists span {
    background: url(../../images/front/icons/artists.png) no-repeat 0 50%;
}
#user-controls ul li a.promoters span {
    background: url(../../images/front/icons/promoters.png) no-repeat 0 50%;
}
#user-controls ul li a.calendar span {
    background: url(../../images/front/icons/calendar.png) no-repeat 0 50%;
}
#user-controls ul li a.tools span {
    background: url(../../images/front/icons/tools.png) no-repeat 0 50%;
}
#user-controls ul li a.cms span {
    background: url(../../images/front/icons/cms.png) no-repeat 0 50%;
}
#user-controls ul li a.settings span {
    background: url(../../images/front/icons/settings.png) no-repeat 0 50%;
}
#user-controls ul li a.users span {
    background: url(../../images/front/icons/users.png) no-repeat 0 50%;
}
#user-controls ul.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 200px;
    height: auto;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f2f2f2 url(../../images/front/box_grey.png) repeat-x;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#user-controls ul.submenu li:first-child,
#user-controls ul.submenu li:first-child a {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}
#user-controls ul.submenu li:last-child,
#user-controls ul.submenu li:last-child a {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
#user-controls ul.submenu::before {
    content: "";
    z-index: 999;
    position: absolute;
    top: -6px;
    left: 50%;
    width: 11px;
    height: 7px;
    margin-left: -5px;
    line-height: 0;
    background: url(../../images/front/submenu_arrow.png) no-repeat;
    font-size: 0;
}
#user-controls ul.submenu li {
    float: none;
    display: block;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ddd;
}
#user-controls ul.submenu li a {
    display: block;
    padding: 5px 10px;
    color: #444;
    font-size: 12px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
#user-controls ul.submenu li a:hover {
    background: #e2f3ff;
    color: #006699;
}
/* Notifications */
#user-controls ul li a.notifications {
    padding: 0;
}
a.notifications strong {
    margin-top: -4px;
    vertical-align: middle;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding:  0 5px 0 10px;
    border: 1px solid #bbb;
    background: url(../../images/front/box_header.png) repeat-x 0 50%;
    color: #4c4c4c;
    text-shadow: 0 1px 0 #fff;
    font-weight: normal;
    font-size: 13px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
a.notifications strong span {
    display: inline-block;
    height: 18px;
    line-height: 18px;
    padding: 0 5px !important;
    background: #ff3636;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}
#user-controls ul li a.notifications:hover strong {
    color: #0e76bc;
}

/* Preload Preloader (fixing a WebKit bug) */
#preload-preloader {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 30px;
    height: 30px;
    background: url(../../images/front/loading.gif);
}
/* Clear margins */
.clrea-right {
    margin-right: 0 !important;
}