/* 
    Document   : template
    Created on : 04.12.2013, 17:05:03
    Author     : 1
    Description:
        Purpose of the stylesheet follows.
*/

body > .navbar .brand{
    font-size: 14px;
    font-weight: normal;
}

table { 
	empty-cells: show; 
}

a.brand {
    color: #111;
    text-decoration: underline;
}

#top-menu a img{
    float: left;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    margin: 2px 3px 0 0;
}
#top-menu a{
    text-decoration: underline;
    font-size: 13px;
}

.masthead {
    padding: 20px 0 0px;
}

/* Customize the navbar links to be fill the entire space of the .navbar */
.masthead .navbar .navbar-inner {
    padding: 0;
}
.masthead .navbar .nav {
    margin: 0;
    display: table;
    width: 100%;
}
.masthead .navbar .nav li {
    display: table-cell;
    width: auto;
    float: none;
}
.masthead .navbar .nav li a {
    font-weight: bold;
    text-align: center;
    /*border-left: 1px solid rgba(255,255,255,.75);*/
    border-right: 1px solid rgba(0,0,0,.1);
}
.masthead .navbar .nav li:first-child a {
    border-left: 0;
    border-radius: 3px 0 0 3px;
}
.masthead .navbar .nav li:last-child a {
    border-right: 0;
    border-radius: 0 3px 3px 0;
}

.masthead .navbar .nav > li > a {
    padding: 5px 10px 5px;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 1px 0 #ffffff;
}

/* Vidjet block */

.vidjet{
    border: 1px solid #ddd;
    float:left;
    padding: 20px 0 0 0px;
    display: block;
    margin-top: 20px;
    font-size:12px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.vidjet .divtext{
    position:relative;
    top: -32px;
    left: 0px;
    margin-left: 20px;
    font-size:18px;
    color:#0088cc;
    background: #fff;
    width: 180px;
    padding-left:8px;
}
.vidjet .info{
    position:relative; 
    top: -20px; 
    left: 0px;
    margin-left:20px;
}

.info img{
    float:left;
    padding-right: 20px;

}
.balans-text{
    width:50%; 
    float:left;
    font-size:12px;
}
.balans-money{
    width:40%; 
    float:right;
    padding-right:20px;
    font-size:12px;
    text-align:right;		
}
.info-text{
    font-size:12px; 
    color:#222; 
    line-height: 22px;
}
.info-right-text{
    width:170px; 
    float:left;
}
.row .margin-null{
    margin-left:0px;
}



/* ********************** График Flot *******************************/
/* #######################################################

HOW TO CREATE AN INTERACTIVE GRAPH USING CSS3 & JQUERY [TUTORIAL]

"How to create an Interactive Graph using CSS3 & jQuery [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net
http://designmodo.com
http://vladimirkudinov.com

######################################################## */

/* Resets */
.graph-container,
.graph-container div,
.graph-container a,
.graph-container span {
    margin: 0;
    padding: 0;
}

/* Gradinet and Rounded Corners */
.graph-container, #tooltip, .graph-info a {
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f9f9f9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f9f9f9));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f9f9f9 100%);

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

/*  Graph Container */
.graph-container {
    position: relative;
    width: 600px;
    height: 350px;
    padding: 20px;

    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0px 1px 2px rgba(0,0,0,.1);
    box-shadow: 0px 1px 2px rgba(0,0,0,.1);
}

.graph-container > div {
    position: absolute;
    width: inherit;
    height: inherit;
    top: 10px;
    left: 25px;
}

.graph-info {
    width: 690px;
    margin-bottom: 10px;
}

/* Text Styles */
#tooltip, .graph-info a {
    height: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    color: #646464;
}

.tickLabel {
    font-weight: bold;
    font-size: 12px;
    color: #666;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Tooltip */
#tooltip {
    position: absolute;
    display: none;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
}

/* Links */
.graph-info a {
    position: relative;
    display: inline-block;
    float: left;
    padding: 7px 10px 5px 30px;
    margin-right: 10px;
    text-decoration: none;
    cursor: default;
}

/* Color Circle for Links */
.graph-info a:before {
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    top: 13px;
    left: 13px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* Colors For each Link */
.graph-info .visitors { border-bottom: 2px solid #71c73e; }
.graph-info .returning { border-bottom: 2px solid #77b7c5; }

.graph-info .visitors:before { background: #71c73e; }
.graph-info .returning:before { background: #77b7c5; }

/* Lines & Bars Buttons */
#lines, #bars {
    width: 34px;
    height: 32px;
    padding: 0;
    margin-right: 0;
    margin-left: 10px;
    border-bottom: 2px solid #71c73e;
    float: right;
    cursor: pointer;
}

#lines.active, #bars.active {
    background: #82d344;
    background: -moz-linear-gradient(top,  #82d344 0%, #71c73e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#82d344), color-stop(100%,#71c73e));
    background: -webkit-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: -o-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: -ms-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: linear-gradient(to bottom,  #82d344 0%,#71c73e 100%);
}

#lines span, #bars span {
    display: block;
    width: 34px;
    height: 32px;
    background: url('../js/flot/img/lines.png') no-repeat 9px 12px;
}

#bars span { background: url('../js/flot/img/bars.png') no-repeat center 10px; }

#lines.active span { background-image: url('../js/flot/img/lines_active.png'); }
#bars.active span { background-image: url('../js/flot/img/bars_active.png'); }

/* Hide the First and Last Y Label */
/*.yAxis .tickLabel:first-child,
.yAxis .tickLabel:last-child { display: none; } */

/* Clear Floats */
.graph-info:before, .graph-info:after,
.graph-container:before, .graph-container:after {
    content: '';
    display: block;
    clear: both;
}
/* ********************** Конец стилей Графика Flot *******************************/




/********************  МОДАЛЬНОЕ ОКНО **********************/

.modal {
    width: 900px;
    left: 10%;
    margin-left: auto;
}

.modal-body {
    max-height: 600px;
}
/********************  КОНЕЦ МОДАЛЬНОЕ ОКНО **********************/


/******************** СТИЛИ ТАБЛИЦ ***************************/

table, tr, td{
    font-size:12px;
}

.margin-left{
    margin-left: 50px;

}

/* Таблица АДС*/

table.table-ads{
    width: 100%;
}

.table-ads td,
.table-ads th{
    border: 0;
}
.table-ads td table{
    border: 1px solid #ddd;
}

.table-ads table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-ads .table {
    width: 100%;
    margin-bottom: 20px;
}

.table-ads .table th,
.table-ads .table td {
    padding: 0px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

.table-ads .table th {
    font-weight: bold;
}

.table-ads .table thead th {
    vertical-align: bottom;
    text-align: center;
}

.table-ads .table caption + thead tr:first-child th,
.table-ads .table caption + thead tr:first-child td,
.table-ads .table-ads .table colgroup + thead tr:first-child th,
.table-ads .table colgroup + thead tr:first-child td,
.table-ads .table thead:first-child tr:first-child th,
.table-ads .table thead:first-child tr:first-child td {
    border-top: 0;
}

.table-ads .table tbody + tbody {
    border-top: 2px solid #dddddd;
}

.table-ads  .table .table {
    background-color: #ffffff;
}

.table-ads .table-condensed th,
.table-ads .table-condensed td {
    padding: 4px 5px;
}





.table-ads .table-bordered {
    border: 1px solid #dddddd;
    border-collapse: separate;
    *border-collapse: collapse;
    border-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.table-ads .table-bordered th,
.table-ads .table-bordered td {
    border-left: 1px solid #dddddd;
}

.table-ads .table-bordered caption + thead tr:first-child th,
.table-ads .table-bordered caption + tbody tr:first-child th,
.table-ads .table-bordered caption + tbody tr:first-child td,
.table-ads .table-bordered colgroup + thead tr:first-child th,
.table-ads .table-bordered colgroup + tbody tr:first-child th,
.table-ads .table-bordered colgroup + tbody tr:first-child td,
.table-ads .table-bordered thead:first-child tr:first-child th,
.table-ads .table-bordered tbody:first-child tr:first-child th,
.table-ads .table-bordered tbody:first-child tr:first-child td {
    border-top: 0;
}

.table-ads .table-bordered thead:first-child tr:first-child > th:first-child,
.table-ads .table-bordered tbody:first-child tr:first-child > td:first-child {
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
}

.table-ads .table-bordered thead:first-child tr:first-child > th:last-child,
.table-ads .table-bordered tbody:first-child tr:first-child > td:last-child {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
}

.table-ads .table-bordered thead:last-child tr:last-child > th:first-child,
.table-ads .table-bordered tbody:last-child tr:last-child > td:first-child,
.table-ads .table-bordered tfoot:last-child tr:last-child > td:first-child {
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
}

.table-ads .table-bordered thead:last-child tr:last-child > th:last-child,
.table-ads .table-bordered tbody:last-child tr:last-child > td:last-child,
.table-ads .table-bordered tfoot:last-child tr:last-child > td:last-child {
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
}

.table-ads .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
}

.table-ads .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
}

.table-ads .table-bordered caption + thead tr:first-child th:first-child,
.table-ads .table-bordered caption + tbody tr:first-child td:first-child,
.table-ads .table-bordered colgroup + thead tr:first-child th:first-child,
.table-ads .table-bordered colgroup + tbody tr:first-child td:first-child {
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
}

.table-ads .table-bordered caption + thead tr:first-child th:last-child,
.table-ads .table-bordered caption + tbody tr:first-child td:last-child,
.table-ads .table-bordered colgroup + thead tr:first-child th:last-child,
.table-ads .table-bordered colgroup + tbody tr:first-child td:last-child {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
}

.required .input-xlarge {
    width: 270px;
}
/* Крнец таблицы АДС*/


input.input-smini{
    width: 20px;
}

/*     **************************************   Datepicker     ****************************************  */
#ui-datepicker-div {
    width: 90%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

/* end of DatePicker*/


/* Icon to counters*/
.dataTable td.water_cold {
    background-image: url('../../img/water_cold.png');
    background-repeat:no-repeat; 
    background-position: center center;
    width: 35px;
}
.water_hot {
    background-image: url('../../img/water_hot2.png');
    background-repeat:no-repeat;
    background-position: center center;
    width: 35px;  
}
.energy_bulb {
    background-image: url('../../img/bulbyell.png');
    background-repeat:no-repeat;  
    background-position: center center;
    width: 35px;
}
.heat_icon {
    background-image: url('../../img/heat_icon.png');
    background-repeat:no-repeat;
    background-position: center center;
    width: 35px;
}

/* End of Icon to counters*/





.email_label{
    width: 130px;
    padding: 5px 15px 3px 0;
    /* color: #555; */
    text-align: right;
    float: left;
    font-size: 12px;
}
.div-row{
    margin-bottom: 10px;
}



/* Форма авторизации */


.form-signin {
    clear: both;
    max-width: 300px;
    padding: 15px 30px 25px;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
    font-size: 16px;
    height: auto;
    margin-bottom: 10px;
    padding: 5px 9px;
}

.body-pad .form_title {
    float:left;     
    font-size: 18px;        
    padding: 20px 0 10px;
    margin: 0;
    color: #0088cc;
}

label.error {
    font-size: 14px;
    color:#f00;
}
.error-div{
    font-size: 14px;
    color:#f00;
}
#login_response, 
#captchaResponse{
    padding: 5px 0;
    font-size: 14px;
    color:#f00;
}
.refresh-cap {
    font-size: 12px;
    text-decoration:none;
    margin: 0;
    padding: 0;
    vertical-align:top;
    position:relative;
    top:0px;
    left:5px;
}

.img-cap-border {
    border: 1px solid #cccccc; 
    -webkit-border-radius: 5px;
    moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,.1);
    box-shadow: 0 2px 2px rgba(0,0,0,.1);                
}
.load-text{
    font-size: 14px;
    color:#555;
}


/* конец Формы авторизации*/


.bad_browser {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 530px;
    margin: -200px 0px 0px -250px;
    background: #FFF;
    border-bottom: 1px solid #E4E4E4;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}


select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {

    height: auto;
}


/* для титула */

.body-pad{
    float:left;
    padding: 50px 50px;
    width: 500px;
    min-height:90%;

}
.pay, .ads {
    float:left;
    height: 100px;
    width: 300px;
    color: #222;
    font-size:12px;
}

.pay a,
.ads a {
    color: #0088cc;
    padding: 0 0 20px 0;
    font-size: 18px;
    text-decoration: underline;
}

.pay img,
.ads img{
    width: 22px;
    height:22px;
    padding: 10px 10px;
    border:0;
}


/*table.dataTable tr.odd { background-color:  white !important; }*/
table.dataTable tr.odd { background-color: #fff7f7 !important;  }

.empty-height{
    width: 100%;
    height: 90px;
}

.wrap-payment{
    margin:0 10px;
    width: 150px;
    display: block;
    height: 75px;
    text-align: center;
    cursor: pointer;
    padding:15px;
    border-radius: 6px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;

}
.wrap-payment a, .wrap-payment-mini a{
    outline: none;
}

.wrap-payment img{
    display:block;
    text-align: center;
    margin: 0 auto;
}
.wrap-payment-mini{
    margin:0 10px;
    width: 107px;
    display: block;
    height: 50px;
    text-align: center;
    cursor: pointer;
    padding:9px;
    border-radius: 6px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;

}

.background1{
    background-color: #e5e5e5;
}

.background2{
    background-color: #dddddd;
}

.maxi{
    width:100px;
}

.r-padding{
    padding: 10px 0 0 0;
}


/* ДЛя Помощи*/
