body{
    font-size:11px;
    color: #111111;
}
h1,h2,h3,h4{
    font-weight: 400;
}

h2{
    font-size: 26px;
    color: #1d6d75;
    text-shadow: #919191 0 1px 2px;
}

a:link, a:visited {
    color:#01998A;
    text-decoration:none;
}

a:hover {
    color: #007569;
    text-decoration:underline;
}

/*-----------HEADER AND NAV---------*/
header.navbar{
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(to bottom, #349b99 0%, #288690 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    opacity: 0.95;
    font-weight: 400;
}
header h1{
    margin-top: 0;
    margin-right: 30px;
    float: left;
    line-height: 30px;
    margin-bottom: 5px;
}
.mainav{
    margin-top:-5px;
}
.mainav li{
    display: block;
    float: left;
}
.mainav li a, header ul li a{
    padding: 0px 10px 1px;
    text-decoration: none;
    text-shadow: rgba(0, 0, 0, 0.25) 0 1px 0;
    color: #d8ebeb !important;
    font-size: 13px !important;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
    border-bottom-color: #d8ebeb !important;
    border-top-color: #d8ebeb !important;
}
.mainav li a:hover,header ul li a:hover{
    background: transparent !important;
    color: #fff !important;
}
.mainav li a:focus,header ul li a:focus,.mainav li a:active,header ul li a:active{
    background: #2c6171 !important;
}
.dropdown-menu > li > a{
    color: #333 !important;
    text-shadow: none !important;
}
.dropdown-menu > li:hover{
    color: #fff !important;
    background: #73a8a4;
}
.dropdown-menu > li > a:active, .dropdown-menu > li > a:focus{
    color: #fff !important;
}
.navbar-inverse .divider-vertical {
    border-left-color: #2c6171;
    border-right-color:  #a9cfcb;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
    background-color: #2c6171 !important;
    color: #FFFFFF;
}


.dropdown-menu > li > label > input[type="checkbox"]{
    float: left;
    margin-left: 5px;
}
.dropdown-menu > li > label img{
    margin-left: 7px;
    margin-right: 5px;
    margin-top: -2px;
}

/*espacio superior con header*/
.content{
    margin-top: 40px;
}




/*-----------------basic grid table-------------------*/
table.grid{
    width:100%;
    border: 1px solid #ddd;
    font-size: 12px;
    border-collapse: separate;
    border-radius: 4px 4px 4px 4px;
    box-shadow:0px 1px 3px rgba(0, 0, 0, 0.10);
    -moz-box-shadow:0px 1px 3px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
}
.grid th,td{
    padding: 4px;
    border-right: 1px solid #ddd;
}
.grid th{
    background-color: #e0f3e7;
}
.grid tr{
    background: #fff;
}
.grid td{
    border-top: 1px solid #ddd;
}
.grid td:last-child,.grid th:last-child{
    border-right: 0;
}
.grid caption + thead tr:first-child th, .grid caption + tbody tr:first-child th, .grid caption + tbody tr:first-child td, .grid colgroup + thead tr:first-child th, .grid colgroup + tbody tr:first-child th, .grid colgroup + tbody tr:first-child td, .grid thead:first-child tr:first-child th, .grid tbody:first-child tr:first-child th, .grid tbody:first-child tr:first-child td {
    border-top: 0 none;
}
.grid thead:first-child tr:first-child th:first-child, .grid tbody:first-child tr:first-child td:first-child {
    border-top-left-radius: 4px;
}
.grid thead:first-child tr:first-child th:last-child, .grid tbody:first-child tr:first-child td:last-child {
    border-top-right-radius: 4px;
}
.grid thead:last-child tr:last-child th:first-child, .grid tbody:last-child tr:last-child td:first-child {
    border-radius: 0 0 0 4px;
}
.grid thead:last-child tr:last-child th:last-child, .grid tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}
.grid td.cntrd img{
    margin-right: 2px;
    margin-left: 2px;
}
table.grid tbody tr:nth-child(2n+1){/*color alterno de fila en el grid (tr) automatico*/
    background-color: #F9F9F9;
}
table.grid.graf tbody tr:nth-child(2n+1){/*color alterno de fila en el grid (tr) automatico*/
    background-color: #fff;
}
.even{/*color alterno de fila en el grid (tr)*/
    background: #f9f9f9;
}
.cntrd{
    text-align: center !important;
}
.rgtd{
    text-align: right  !important;
}
.grid tbody tr:hover, .grid tbody tr:nth-child(2n+1):hover{
    background-color: #f4fdfe;
    cursor: pointer;
}
.grid.graf tbody tr:hover, .grid.graf tbody tr:nth-child(2n+1):hover{
    background-color: #fff;
    cursor: default;
}
.graf td p{
    font-weight: bold;
    padding: 6px;
    margin-top: -3px;
    margin-left: -4px;
    margin-right: -4px;
    background: #e8f0ef !important;
    background: -moz-linear-gradient(top, #e8f0ef 0%, #fff 100%) !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8f0ef), color-stop(100%,#fff)) !important;
    background: -webkit-linear-gradient(top, #e8f0ef 0%,#fff 100%) !important;
    background: linear-gradient(top, #e8f0ef 0%,#fff 100%) !important;
    border-bottom: 1px solid #efefef;
}
.graf td p span{
    font-weight: normal;
    font-style: normal;
    margin-left: 10px;
    margin-right: 2px;
}

/*-------------------reel-------------------*/
.proxybg{
    display: block;
    width: 64px;
    text-align: center;
}

.actionsreel{
    border: 1px solid #eee;
    border-radius: 4px 4px 4px 4px;
    padding-top: 5px;
    margin-left: 1px;
    margin-right: 1px;
    margin-top: -23px;
    height: 30px;
    padding-bottom: 10px;
    box-shadow:0px 0px 2px #c0c0c0;
    -moz-box-shadow:0px 0px 2px #c0c0c0;
    -webkit-box-shadow: 0px 0px 2px #c0c0c0;
    background: #f9faf8;
    background: -moz-linear-gradient(top, #f5f5f5 10%, #fefefe 90%) !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,#f5f5f5), color-stop(90%,#fefefe)) !important;
    background: -webkit-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: -o-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: -ms-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
}
.actionsreel.generic{
    text-align: right;
    margin-top: -16px;
    padding-top:14px;
    padding-left: 10px;
    padding-right: 10px;
}
.actionsreel.generic.lft{
    text-align: left;
}
.lote{
    float: left;
    margin-top: 6px;
    margin-left: 7px;
}
.icons {
    height: 20px;
    margin-left: 10px;
    padding-left: 20px;
    background: url(../img/reel/div_action_icns.png) no-repeat left center;
}
.icons li{
    float: left;
    height: 21px;
    padding-left: 0;
    padding-right: 20px;
    padding-top: 4px;
    width: 15px;
    background: url(../img/reel/div_action_icns.png) no-repeat right center;
    list-style-type: none !important;
}
.count_media{
    float: right;
    margin-top: -15px;
    margin-right: 5px;
    text-align: right;
    font-weight: bold;
    color: #333;
}


/*end basic grid*/

/*btn a+v*/
.btn_amasv {text-shadow: #02616b 0 -1px 0;color:#fff;background-color:#288690;background-image:-moz-linear-gradient(top, #349b99, #288690); background-image: -ms-linear-gradient(top, #349b99, #288690); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#349b99), to(#288690)); background-image: -webkit-linear-gradient(top, #349b99, #288690); background-image: -o-linear-gradient(top, #349b99, #288690); background-image: linear-gradient(top, #349b99, #288690); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#349b99', endColorstr='#288690', GradientType=0); border-color: #006D8D #288690 #288690 #006D8D; border-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.25); }
.btn_amasv:focus,.btn_amasv:hover, .btn_amasv:active, .btn_amasv.active{background-color: #01616c;background-image:-moz-linear-gradient(top, #349b99, #01616c); background-image: -ms-linear-gradient(top, #349b99, #01616c); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#349b99), to(#01616c)); background-image: -webkit-linear-gradient(top, #349b99, #01616c); background-image: -o-linear-gradient(top, #349b99, #01616c); background-image: linear-gradient(top, #349b99, #01616c); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#349b99', endColorstr='#101616c', GradientType=0);}
.btn_amasv:focus,.btn_amasv:hover {color:#fff;text-shadow: 0px -1px 0px #1f7b85}
.btn_amasv.active, .btn_amasv:active { background-image: none;-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); color: #d9dede; }
.btn_amasv.disabled, .btn_amasv[disabled],.btn_amasv.disabled:hover, .btn_amasv[disabled]:hover,.btn_amasv.disabled:active, .btn_amasv[disabled]:active{
    background-color: #E6E6E6;
    background-image: none;
    box-shadow: none;
    cursor: default;
    opacity: 0.65;
    color: #666;
    text-shadow: none;
}

/*-----------------filters form elements-------------------------*/
.filters{
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #eee;
    border-radius: 4px 4px 4px 4px;
    border-color: #fff;
    padding-top: 5px;
    margin-left: 1px;
    margin-right: 1px;
    min-height: 130px;
    padding-bottom: 10px;
    box-shadow:0px 0px 2px #c0c0c0;
    -moz-box-shadow:0px 0px 2px #c0c0c0;
    -webkit-box-shadow: 0px 0px 2px #c0c0c0;
    background: #f9faf8;
    background: -moz-linear-gradient(top, #f5f5f5 10%, #fefefe 90%) !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,#f5f5f5), color-stop(90%,#fefefe)) !important;
    background: -webkit-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: -o-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: -ms-linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    background: linear-gradient(top, #f5f5f5 10%,#fefefe 90%) !important;
    margin-bottom: -80px;
}
.filters.empresa_asociada {
    height: 170px;    
}
.filters select, .filters input[type="file"] {
    height: 25px !important;
    font-size: 11px !important;
    width:136px;
}
.filters select.shorty{
    width: 80px;
}
.filters input[type="text"], .filters input[type="date"], .filters input[type="search"]{
    min-height: 21px !important;
    font-size: 12px !important;
    padding: 1px 4px;
    width:90px;
}
.filters .input-append .add-on, .filters .input-prepend .add-on{
    height: 21px !important;
    padding: 1px 5px;
}
.calpick{
    background: url(../img/cal_icn_16x16.png) no-repeat 0 0;
}
.filters label{
    font-size: 11px;
    color: #666;
    display: block;
    width: auto;
    margin-bottom: 0;
}
.filters > div{
    float: left;
    margin-right: 3px;
    margin-left: 4px;
    width: auto;
}
.filters > div.datepick{
    margin-left: 0;
}
.filters > div.datepick:first-child{
    margin-left:10px;
}
.filters-item {
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #E0F3E7;
    border-color: #ddd;  
}
.filters-item.empresa_asociada {
    height: 95px;
}
.filters-item.empresa_asociada select[name=empresa_origen],select[name=empresa_destino] {
    width: 350px;
}
.filters-item.empresa_asociada button[type=submit],button[type=reset] {
    margin: 10px 0px 0px 10px;
}

.fldset{
    float: left;
    display: block;
    height: 60px;
    margin-bottom: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 5px;
    border-left: 1px solid #fff;
    border-right: 1px solid #ccc;
}
.fldset span{
    display: block;
    clear: both;
    line-height: 10px;
    color: #78979B;
    margin-left: -3px;
    text-align: center;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 2px;
    margin-right: 2px;
}
.fldset > div{
    width: 144px !important;
    margin-right: 2px;
    margin-left: 2px;
    float: left;
}
.fldset.one{
    width: 150px;
}
.fldset.two{
    width:300px;
}
.fldset.three{
    width: 450px;
}
.fldset.right{
    width:200px;
    float: right;
}
/*resumen datos*/
.filters.dataresumen{
    height: auto;
    background: #fcfcfc !important;
    overflow: auto;
    margin-bottom: -10px !important;
}
.btnes_back{
    border-bottom: 1px solid #DDDDDD;
    display: block;
    margin-bottom: 5px;
    padding-bottom: 5px;
    width: 99% !important;
}
.dataresumen .span3{
    margin-left: 10px !important;
}
.rgtres{
    float: right !important;
    text-align: right;
}
.dataresumen h4{
    margin-right:10px;
    margin-top:5px
}
.dateres{
    margin-right: 10px;
    font-size: 13px;
}
.dataresumen p{
    margin-bottom: 1px;
    font-size: 12px;
    color: #444;
}
.dataresumen p strong{
    color: #000;
    width: 123px;
    display: block;
    float: left;
    text-align: right;
    margin-right: 6px;
}
.linkdrop{
    clear: both;
    display: block;
    width: auto;
    background: url(../img/expand_icn.png) no-repeat right center;
    padding-right: 20px;
    float: right;
    margin-right: 15px;
    /*margin-top: 9px;*/
    color:#01998A;
}
.linkdrop:hover{
    color: #007569;
    cursor: pointer;
    text-decoration: underline;
}
.linkdrop.clos{
    background: url(../img/contraer_icn.png) no-repeat right center;
    margin-bottom: 10px;
}
.rescifras{
    clear: both;
    width:100% !important;
    margin-left: 0px !important;
    margin-top: 10px;
    border-top: 2px solid #fff;
}
.total_resumen{
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 10px;
}
.total_resumen th{
    background: #f4f4f4;
}
.total_resumen td{
    border-top: 1px solid #ddd;
}
.total_resumen td:last-child,.total_resumen th:last-child{
    border-right: 0;
}
.titu_desgloce{
    font-weight: 400;
    font-size: 14px !important;
    margin-top: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #000 !important;
    margin-left: 10px;
    margin-right: 10px;
}
.desgloce{
    width:60%;
    clear: both;
    border: 0;
    margin-bottom: 20px;
    margin-left: 10px;
}
.desgloce th{
    font-weight: bold;
    text-align: left;
}
.desgloce td{
    border: 0;
    border-bottom: 1px solid #eee;
    padding: 2px;
}



/*--------------------asociadores-------------------*/
.asociados_box{
    display: block;
    height: 300px;
    width:358px;
    border: 1px solid #ccc;
    -moz-border-radius:4px;
    border-radius: 4px;
    -webkit-border-radius:4px;
    background: #fff;
    margin-bottom: 10px;
}
.subfilter{
    float: left;
    position: relative;
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
}
.subfilter label{
    font-size: 12px;
    color: #666;
    margin-bottom: 1px;
}

.asociados_box.g6{
    width:548px !important;
}
.asociados_box h4,.formwindow h4{
    color: #fff;
    background: #1d6d75;
    margin-bottom:0px;
    margin-top: 0;
    padding: 8px;
    -moz-border-radius:3px 3px 0 0;
    border-radius:3px 3px 0 0;
    -webkit-border-radius:3px 3px 0 0;
    font-weight: normal;
    font-size: 16px;
}
.asociados_box h4 span{
    float:right;
    margin-top: 2px;
}
.asociados_box ul{
    display: block;
    overflow: auto;
    height: 264px;
    -moz-border-radius:0 0 3px 3px;
    border-radius:0 0 3px 3px;
    -webkit-border-radius:0 0 3px 3px;
    -moz-box-shadow: inset 0px 1px 4px #bababa;
    -webkit-box-shadow: inset 0px 1px 4px #bababa;
    box-shadow:inset 0px 1px 4px #bababa;
    margin: 0;
}
.asociados_box li:hover,.asociados_box li.selected{
    background: #e8fbfa;
    cursor: pointer;
}
.asociados_box li.selected{
    background: #c8f3f2;
    -moz-box-shadow: inset 0px 1px 4px #758f8e;
    -webkit-box-shadow: inset 0px 0px 6px #758f8e;
    box-shadow:inset 0px 1px 4px #758f8e;
}
.asociados_box li span{
    float: right;
}
.asociados_box li div{
    float: left;
}
.infomedial, .formwindow{
    -moz-border-radius:4px;
    border-radius:4px;
    -webkit-border-radius:4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    background: #fff;
    clear: both;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 5px;
}
.infomedial{
    width: 1120px;
    -moz-box-shadow: inset 0px 1px 3px #b3c6c5;
    -webkit-box-shadow: inset 0px 1px 3px #b3c6c5;
    box-shadow:inset 0px 1px 3px #b3c6c5;
    padding: 5px;
}
.infomedial > div.span2 > h4 > img{
    height: 68px;
    width: 162px;
    max-width: 162px;
}
.formwindow{
    width:auto;
    min-width: 500px;
    max-width:970px;
    padding: 6px;
    border-color: #eee;
}
.formwindow.smally{
    max-width: 430px;
    min-width: 430px;
}
.formwindow input[type="text"], textarea{
    width: 200px;
}
.infomedial p,.formwindow p{
    display: block;
    margin-top: 3px;
    margin-bottom: 3px;
    border-bottom: 1px solid #F0F0F0;
}
.formwindow p:last-child{
    border-bottom: 0;
}
.infomedial p{
    clear: both;
    height:20px;
}
.infomedial p strong{
    width: 100px;
    float: left;
}
.infomedial h4,.formwindow h4{
    margin-bottom: 10px;
}

.add_asoc{
    height: 362px;
    width: 500px;
}
.add_asoc.asociados_box ul{
    height: 300px;
}
.add_asoc h5{
    color: #fff;
    background: #555;
    margin-bottom:0px;
    padding: 4px;
    -moz-border-radius:3px 3px 0 0;
    border-radius:3px 3px 0 0;
    -webkit-border-radius:3px 3px 0 0;
    font-size: 12px;
    margin-top: 0;
}
.add_asoc h5 span{
    float:right;
    margin-top: 1px;
}
.add_asoc li span{
    float: left;
    margin-right: 5px;
}
.add_asoc button,.add_asoc input[type="button"]{
    margin-top: 3px;
    margin-right: 3px;
    float: right;
}
.asociados_box li{
    height: 18px;
    border-bottom: 1px solid #eee;
    padding: 0 8px 4px;
    list-style-type: none;
}
.firstbox{
    margin-left: 0 !important;
}
.empbtns{
    display: block;
    margin-bottom: 10px;
    margin-top: 5px;
}
.totalemp{
    display: block;
    clear: both;
    float: left;
    font-size: 12px;
    color: #fff;
    -moz-border-radius:5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
    background: #4f9899;
    padding: 6px;
    width: auto;
    max-width: 500px;
    line-height: 12px;
    margin-left: 10px;
    margin-top: -10px;
}

/*------------------content - documentacion------------------*/
.content_wf{
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px 4px 4px 4px;
    box-shadow:0px 1px 3px rgba(0, 0, 0, 0.10);
    -moz-box-shadow:0px 1px 3px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
}
.content_wf article{
    margin-bottom: 5px;
    padding: 10px;
}
.content_wf article h4{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin: 0 -10px 20px;
}
.content_wf article p{
    font-size: 12px;
    border-bottom: 1px dotted #EEEEEE;
}
.content_wf span.bulletz{
    display: block;
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url(../img/glyphicons-halflings.png) no-repeat;
    background-position: -264px -72px;
}


/*------------------------Formularios---------------------*/

.frmcrea label,p.check span{
    clear: both;
    float: left;
    font-weight: bold;
    margin-right: 10px;
    text-align: right;
    width: 100px;
    line-height: 15px;
    font-size: 12px;
}
.frmcrea p{
    padding-top: 2px;
    padding-bottom: 5px;
}
.frmcrea select{
    width: 150px;
}
.frmcrea p button{
    font-size: 10px;
    padding:1px 2px;
    text-shadow: none;
}
.logo_crea_empresa{
    border: 1px solid #EEEEEE;
    display: block;
    height: 70px;
    margin-bottom: 10px;
    margin-left: 130px;
    padding: 10px;
    width: 164px;
    background: #d6e7eb;
}
.logo_crea_empresa img{
    width: 162px !important;
    height: 68px !important;
    border: 1px dotted #4f9899 !important;
}
.avisoimg{
    text-align: center;
    font-style: italic;
    padding-left: 14px;
    padding-right: 14px;
    color: #57878c;
    line-height: 14px;
}

.margin_logo_exh{
    margin-left: 33% !important;
}

p.check{
    height: auto;
    overflow: auto;
}
p.check label{
    font-weight: normal;
    font-style: normal;
    float: none;
    clear: none;
    margin-right: 0;
    margin-left: 10px;
    width: auto;
    display:inline;
    font-size: 11px;
}
p.check input[type="radio"]{
    margin-top: 2px;
}
p.check input[type="checkbox"]{
    margin-top: -4px;
}
.privilege{
    display: block;
    clear: both;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}
.formwindow input[type="text"], .formwindow input[type="password"]{
    min-height: 22px !important;
    font-size: 12px !important;
    padding: 1px 4px;
    margin-bottom: 2px;
    margin-top: 2px;

}
.formwindow select {
    height: 25px !important;
    font-size: 12px !important;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 2px;
    margin-top: 2px;
}
.formwindow .span5, .formwindow .span6{
    margin-left: 2px;

}
.formwindow .span6 .user-email{
    max-width: 200px;
}
.btns_end{
    border-top: 1px solid #EEEEEE;
    clear: both;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 10px;
    padding-top: 10px;
    text-align: right;
}
.rgtbox{
    float: right !important;
    margin-right: 5px;
}
.emails-playout{
    float: left;
    width: 250px;
    margin-left: 10px;
    margin-bottom: 5px;    
}
.emails-playout-recibido{
    margin-bottom: 5px;
    float: left;
    width: 75px;
}

.emails-playout-recibido img{
    margin-left: 18px;
}
.emails-playout-fecha-descarga{
    margin-bottom: 5px;
    height: 20px;
}
.emails-playout-fecha-recepcion{
    margin-bottom: 5px;
    float: left;
    width: 120px;
}
.fileupload-new .input-append .btn-file{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}
/* file upload */
.btn.btn-file{
    margin-top: -28px;
    margin-right: -7px;
    overflow:hidden;
    position:relative;
    /*vertical-align:middle;*/
    float: right;
}
.btn.btn-file > input[type=file]{width:100%;position:absolute;left:0;top:0;opacity:0;cursor:pointer}
.uneditable-input{height:28px !important;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;-ms-box-sizing: border-box;box-sizing: border-box;width: 260px;}
input[type="file"]{
    opacity: 0;
}
.thebrowseinput{
    margin-top: -4px !important;
    margin-left: -6px;
    border:0 !important;
    box-shadow:none !important;
    width:150px !important;
    background: none !important;
}

/*crea usuarios update enero 2014*/
.frmcrea.empreslect{
    overflow: auto;
    border-right: 12px solid #fff;
    padding-bottom: 8px;
    margin-bottom: 8px;
    margin-left: -6px;
    margin-right: -5px;
    box-shadow: 0px 2px 2px #cdcdcd;
    -moz-box-shadow: 0px 2px 2px #cdcdcd;
    -webkit-box-shadow: 0px 2px 2px #cdcdcd;
}

#div_tipo_empresa_form, #div_empresa_form{
    float: left;
    width: 300px;
}
#div_id_pais_form{
    float: left;
    width: 215px;
}
#div_id_pais_form label{
    width: 50px;
}

.privilege h5{
    clear: both;
    float: left;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    margin-right: 10px;
    text-align: right;
    width: 100px;
}
.privlge_grp{
    clear: both;
    padding: 4px 10px 10px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    -moz-border-radius:5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
    box-shadow:inset 0px 1px 2px #c0c0c0;
    -moz-box-shadow:inset 0px 1px 2px #c0c0c0;
    -webkit-box-shadow:inset 0px 1px 2px #c0c0c0;
    overflow:auto;
}
.privlge_grp h6{
    margin: 0px 0px 5px 0px;
    color: #62908c;
}
.privlge_grp input[type="checkbox"]{
    float: left;
    margin-right: 6px;
}
.privlge_grp label{
    display: block;
    height: 15px;
    font-size: 11px;
    font-weight: bold;
    float: left;
    margin-right: 15px;
    padding: 0px 5px 6px 3px;
    border: 1px solid #ccc;
    -moz-border-radius:5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
}
input[type=checkbox]:checked {
    color: #f00;
    font-style: normal !important;
}

/*------------------btn menu nav----------------*/
.btn_menu {display:none}

@media (max-width: 979px) {
    #maincontainer {background: #fff}
    .row > [class*="span"],.navbar-fixed-top {margin:0 !important}
    .navbar-fixed-top .container-fluid {padding:0 !important}
    .navbar .brand {width:auto;line-height:18px;margin:3px 0 6px 34px}
    .navbar .user_menu {padding-top:5px}
    .navbar .user_menu .dropdown-menu {margin:8px 10px 0 0}
    .navbar .user_menu > li > a {padding:0 10px 0 0}
    .navbar-inner {position:relative;z-index:990;min-height:28px}
    .nav-collapse a {color:#fff !important}
    .nav-collapse .dropdown-menu li {padding:0}
    .nav-collapse .dropdown-menu li a {font-weight:400}
    .nav-collapse .sub-menu {display:block;left:0;right:auto;position:relative;visibility:visible}
    .nav-collapse .caret-right {display:none}
    .btn-navbar {margin-top:2px !important;padding:2px 8px !important}
    .user_menu .dropdown {margin-left:10px}
    .main_content {margin:0 !important;border:none !important;padding:28px 14px 20px}
    .main_content .row-fluid + .row-fluid {margin-top:20px}
    .sidebar {height: 400px;position:absolute;top:39px;left:0;background:#f1f1f1;border-width:0 1px;border-style:solid;border-color:#ccc;margin:0;-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);-moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);box-shadow: 1px 1px 4px rgba(0,0,0,0.2);z-index:1000;-webkit-border-radius: 0px 5px 5px 0px;border-radius: 0px 5px 5px 0px}
    .sidebar:after {border-bottom: 6px solid #fff;border-left: 6px solid transparent;border-right: 6px solid transparent;content: "";display: inline-block;left: 15px;position: absolute;top: -6px}
    .sidebar_hidden .sidebar {border:none}
    .sidebar_switch {position:absolute;z-index:1000;left:5px !important;top:14px;padding:0 10px}
    .off_switch {background-position:center 1px}
    .on_switch {background-position:center -17px}
    .sidebar_inner {padding-bottom:0 !important}
    div.sticky-queue {z-index:10000;top:0}
    .ms-container {background-position: 160px 83px}
    .ms-container ul.ms-list {width:152px;}
    #multi_search {width:136px}
    .btn_menu {display:block;clear:both;padding:0px 0 6px;border-top:1px solid rgba(255,255,255,.2);box-shadow: 0 -1px 0 rgba(0,0,0,.2);text-align:center;position:relative;top:2px;cursor:pointer}
    .btn_menu span {opacity:.8}
    .ssw_trigger {display:none}
    .content{margin-top: 65px;}
}

.loginbox {
    background-color: var(--color-white);
    border-radius: 9px;
    width: 400px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 225px;
    font-size: 15px;
}
.loginbox.requestpasswordreset,
.loginbox.resetpassword {
    width: 400px;
}
.loginbox.bloqueocomercial {
    width: 500px;
}
.loginbox h1 {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    line-height: 1;
    margin-top: 20px;
}
.loginbox h2 {
    font-size: 20px;
    text-align: center;
    text-shadow: none;
    color: var(--color-black);
    line-height: 1;
    margin-top: 20px;
}
.loginbox .requestpasswordreset-info,
.loginbox .resetpassword-info {
    font-size: 15px;
    margin-bottom: 20px;
}
.loginbox .btn-country {
    font-size: 15px;
}
.loginbox .countries-list .dropdown-menu {
    height: auto;
    max-height: 500px;
    font-weight: 400;
    overflow-x: hidden;
}
.loginbox label {
    font-size: 15px;
}
.loginbox input {
    font-size: 14px;
    font-weight: 300;
}
.loginbox .requestpasswordreset {
    font-size: 15px;
}
.loginbox .requestpasswordreset a:link,
.loginbox .requestpasswordreset a:visited {
    text-decoration:none;
    color: var(--color-black);
}
.loginbox .requestpasswordreset a:hover {
    text-decoration:underline;
}
.loginbox .input-prepend .add-on,
.loginbox .input-prepend input {
    padding: 6px 12px;
}
.loginbox .input-prepend input {
    width: 335px;
}

/**MEDIA FLOAT WINDOW (video y metadata)**************/
.wrap.wide{
    overflow: auto;
    width: 900px;
}
.wide aside{
    display: block;
    float: left;
}
aside.play{
    min-height: 310px;
    z-index: 50;
    position: fixed;
    background: #fff;
    padding-bottom: 15px;
}
.player{
    width: 480px;
    height: 294px;/*270px se sumo la barra de control*/
    margin: 10px 10px 20px;
    text-align: center;
    background: #000 url(../img/bg_player.png) repeat-x left bottom;
    border: 1px solid #aaaaaa;
}
.player object{
    margin-right: auto;
    margin-left: auto;
    border: 0 none !important;
}
.lateral div.player{
    width: 300px;
    height: 218px;
    margin-top: 0;
    margin-left: 10px;
    margin-bottom: 0;
}

/*tags*/
.separator{
    border-bottom: 1px solid #FFFFFF;
    border-top: 1px solid #EEEEEE;
    display: block;
    height: 0;
    margin-bottom: -8px;
}
a.tagsdrop{
    background: #fcfcfc url(../img/drop_arrow_1.png) no-repeat right 1px;
    text-align: left;
    padding-right: 14px;
    padding-left:5px;
    padding-top:0px;
    padding-bottom:0px;
    margin-left: 10px;
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
}
a.tagsdrop:hover{
    background: #fcfcfc url(../img/drop_arrow_1.png) no-repeat right -11px;
    color: #098492;
}
a.tagsdrop.down{
    background: #fcfcfc url(../img/drop_arrow_2.png) no-repeat right 1px;
    border-color: #bbb;
}
a.tagsdrop.down:hover{
    background: #fcfcfc url(../img/drop_arrow_2.png) no-repeat right -11px;
    color: #098492;
}
.player_tags{
    width:475px;
    padding-top:10px;
    padding-left:10px;
    clear:both;
}
.player_tags span{
    white-space: pre;
    *white-space: wrap;
    width:auto;
    background: #bbb;
    color:#fff;
    font-size:11px;
    line-height:24px;
    padding: 1px 5px 1px 2px;
    -moz-border-radius: 4px 4px;
    border-radius: 4px 4px;
    -webkit-border-radius: 4px 4px;
    border: 1px solid transparent;
    outline: none;
}
.player_tags span img{
    margin-right: 2px;
    margin-bottom: -5px;
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
    .player_tags a{
        display: inline-block !important;
        line-height:12px;
        margin-top:5px;
    }
}

.player_tags p{
    color: #666666;
    font-size: 12px;
    font-weight: bold;
    margin-bottom:5px;
}
.player_tags a:hover{
    text-decoration:none;
    background: #86bdb3 url(../img/borra_label.png) no-repeat right;
    color:#fff;
}

.arrow_more{
    width: 14px;
    height: 47px;
    z-index: 0;
    position: relative;
    left: -1px;
    top: 127px;
    float: left;
    background: url(../img/roll_fwd.png) no-repeat left top;
    cursor: pointer;
}
.arrow_less{
    background: url(../img/roll_back.png) no-repeat right top;
    width: 14px;
    height: 47px;
    margin-right: 0;
    cursor: pointer;
    position: relative;
    float: right;
    top:-165px;
    right: -16px;
}
.metadata_vista {
    width: auto;
    min-width: 320px;
    margin-top: -20px;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 1px solid #ddd;
    background: #fff;
    left: -5px;
    position: relative;
    z-index: 10;
    left:500px;

}
.lateral div.metadata_vista{
    min-width: 300px !important;
    max-width: 300px;
    border: none;
    box-shadow:0px 0px 0px #fff;
    -moz-box-shadow:0px 0px 0px #fff;
    -webkit-box-shadow: 0px 0px 0px #fff;
}


.metadata_vista dl {
    font-size: 11px;
    padding: 0 4px;
}

.metadata_vista dt {
    color: #000000;
    float: left;
    margin-top: 2px;
    width: 140px;
}

.metadata_vista dd{
    border-bottom: 1px solid #DDDDDD;
    color: #444444;
    padding-bottom: 2px;
    padding-left: 140px;
    padding-top: 2px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .arrow_less{
        top:-145px;
    }
}

.fancybox-skin{
    background: #fff !important;
}
/*fin player flotante*/








/****calendario*****/
/*calendario doble con opciones*/
.datedropdwn{
    padding:10px;
    background:#FFFFFF;
    -moz-box-shadow: 0px 2px 3px #888;
    -webkit-box-shadow: 0px 2px 3px #888;
    box-shadow: 0px 2px 3px #888;
    font-size: 11px;
    height:210px;
    position: absolute;
    width: 580px;
    z-index: 100;
    border-radius: 4px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}
.datedropdwn p{
    margin-top: 0;
    margin-bottom:2px;
}
.datedropdwn div.hasDatepicker{
    margin-right: 5px;
}
.twocalendars,.dateoptions{
    float: left;
    display: block;
    position: relative;
    height:190px;
}
.twocalendars{
    width: 400px;
    margin-right: 10px;
}
.dateoptions{
    border-left: 1px solid #EEEEEE;
    padding-left: 15px;
    width: 150px;
}
.dateoptions p.btns{
    position: relative;
    top: 120px;
}
.dateoptions p.btns button{
    margin-left: 5px;
}

.boton_input.cancela,button.cancela,input[type="submit"].cancela,input[type="button"].cancela,.btn.cancela{
    background:#71aaa3 repeat-x left top;
    border-color: #88c6be #71aaa3 #71aaa3 #71aaa3;
    margin-left: 15px;
}
/*ui clases*/
.ui-datepicker-inline{
    display: block;
    height: 185px;
    background: #fff !important;
}
.ui-datepicker{
    width: 185px !important;
}
.ui-datepicker td{
    line-height: 10px !important;
}
.hasDatepicker{
    background: #fff !important;
}
.ui-datepicker-title select{
    height: 20px !important;
    line-height: 14px !important;
    padding: 2px !important;
    border-color: #666;
}
table.ui-datepicker-calendar a.ui-state-default:hover{
    background: #b9d7d0;
}
table.ui-datepicker-calendar a.ui-state-active{
    background: #3cabb2;
    color: #fff;
}
/*fin calendar*/

/*resumen envios datos tabulados*/
.resumensends{
    float:right;
    clear:both;
    margin-top: -55px;
    color: #000 !important;
}
.resumensends aside{
    float: left;
    margin-left: 2px;
    margin-right: 2px;
    border: 1px solid #ddd;
    -moz-border-radius:5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius:5px 5px 5px 5px;
    box-shadow:inset 0px 1px 2px #c0c0c0;
    -moz-box-shadow:inset 0px 1px 2px #c0c0c0;
    -webkit-box-shadow:inset 0px 1px 2px #c0c0c0;
}
.envios_data{
    width: 318px;
    height: 18px;
    margin-left: 1px;
    clear: both;
}
.envios_data h3{
    color: #000;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 11px;
    line-height: 11px;
    float: left;
    padding-top: 1px;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
}
.hoy,.ayer{
    width: 230px;
}
.semactual,.semant{
    width: 300px;
}
.mesactual,.mesant{
    width: 280px;
}
.hoy h3,.ayer h3,.mesactual h3,.mesant h3,.semactual h3,.semant h3{
    padding-top: 4px;
    color: #2d7c89;
}
.hoy h3,.ayer h3{
    width: 22px;
}
.semactual h3,.semant h3{
    width:90px;
}
.mesactual h3,.mesant h3{
    width:65px;
}
.sd,.hd,.total{
    display: block;
    width:40px !important;
    text-align: left;
    float: left;
    margin-left: 5px;
    padding-top: 0px;
    padding-left:27px;
    font-size: 11px;
}
.total{
    padding-left: 5px;
    text-align: right;
    float: right;
    margin-right: 5px;
}
.sd{
    margin-left: 8px !important;
    background: url(../img/ico_sd_grid.png) no-repeat left center;
}
.hd{
    background: url(../img/ico_hd_grid.png) no-repeat left center;
}
.total{
    font-weight: bold;
}
.selects select{
    float: left;
    margin-top: 3px;
    margin-left: 3px;
}
.ssd,.shd,.stotal{
    width: 54px !important;
    height:10px ;
    text-align: left;
    float: left;
    margin-left:10px;
    padding-top: 4px;
    font-size: 13px;
}
.stotal{
    font-weight: bold;
}
/*fin resumen envios datos tabulados*/


/*Clone form*/
.hidden1 {
    display: none;
}


tr.sending{
    background:#F8ECAC !important;
}




/*facturables resumen box (excel)*/
.resumensends.factu{
    margin-bottom: 10px;
    margin-top: -60px;
}
.periodfact h3, .totval h3,.fact h3{
    display: block;
    font-size: 12px;
    float: left;
    margin: 0 0 0 10px;
    width: auto;
    line-height: 20px;
}
.dates, .valormoney{
    display: block;
    float: left;
    width: 150px;
    margin-left: 10px;
    color: #444;
}
.valormoney{
    width: 100px;
}
.totval{
    clear: both;
}
.fact{
    height: 16px;
    line-height:20px;
}
.fact h3{
    margin: 0 0 0 7px;
}
.fact > div.sd,.fact > div.hd{
    margin-left: 0 !important;
}
.factu aside{
    width: 390px;
}
.periodfact{
    height: 20px;
    margin-top: 2px;
    margin-bottom:2px;
}
.periodfact,.envios_data.fact,.totval{
    width:220px ;
}
.factu img{
    float: right;
    width: 162px;
    height: 68px;
    margin-top: -42px;
    margin-right: 4px;
    margin-bottom: 2px;
}

ul.extradata{
    font-size: 11px;
    text-align: left;
    list-style-type: none;
    margin-left: 0;
    border: 1px solid #ddd;
    -moz-border-radius:3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius:3px 3px 3px 3px;
    padding: 2px 2px 2px 3px;
    margin-top: 2px;
    margin-bottom: 1px;
    background: #fdfcfa;
    cursor: default;
    min-width: 100px;
}
.extradata li{
    list-style-position: inside;
    padding-right: 3px;
    line-height: 15px;
    color: #5a898d;
    word-break: break-word;
}
.extradata li strong{
    margin-right: 4px;
    color: #335153;
}

.extradata-icon {
}
.extradata-icon span span {
    color: #fff;
}
.extradata-icon .extradata-icon-label {
    background: #fff;
    border: 1px solid #bbb;
    color: #333;
    padding: 2px 4px;
    white-space: nowrap;
}
.extradata-icon i
{
    color: #AAA39F;
}

.extradata-icon i.liberado
{
    color: #5cb85c;
}
.extradata-icon i.noliberado
{
    color: #f0ad4e;
}
.extradata-icon i.enespera,
.extradata-icon i.reprobado
{
    color: #d9534f;
}

.extradata-emisoras,
.extradata-emails {
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

.extradata-emisoras li,
.extradata-emails li {
    padding:0px 2px;
    list-style: square;
/*    white-space: nowrap;*/
}
.extradata-emisoras li.fecha_hora_emi {
    list-style: none;
    font-weight: bold;
    margin-top: 5px;
}

.extradata-filtros {
    font-size: 11px !important;
    height: 25px !important;
    width: 125px;
}
.extradata-filtros-envios {
    font-size: 11px !important;
    height: 25px !important;
    width: 90px;
}

.envios-revision-form-com{
    margin: 0px !important;
}
.envios-revision-form-tec{
    margin: 0px !important;
}

.api-info span {
    white-space: nowrap;    
}

table.confirmPreview {
        font-size:11px;
        color:#333333;
        border-width: 1px;
        border-color: #666666;
        border-collapse: collapse;
}
table.confirmPreview th {
        border-width: 1px;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #dedede;
}
table.confirmPreview td {
        border-width: 1px;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #ffffff;
}

table td.danger {
    background : #D9534F !important;
    border-color: #D43F3A;
}

table td.eliminado, 
table td.manual {
    background : #A4A4A4 !important;
    border-color: #848484;
}

table td.warning {
    background : #F0AD4E !important;
    border-color : #EEA236;
}

.tabla-filtros {
    font-size: 11px !important;
    height: 25px !important;
    width: 136px;
}
.button-filtros {
    margin-top: -10px;
}

/* Autologin, empresa_asociada */
.select2-selection--single {
    padding: 5px 0px;
    height: 40px !important;
}
.select2-search__field {
    height: 30px !important;
}
.select2-selection__clear {
    font-size: 16px;
}

.autologin-container {
    margin-bottom: 50px;
}

.autologin-container label {
    font-size: 13px;
    text-transform: uppercase;
}
.autologin-container select {
    min-width: 450px;
    width: auto;
}
.autologin-container form button {
    height: 40px;
}

.autologin-select-optgroup {
}
.autologin-select-optgroup span {
    text-transform: uppercase;
}

.autologin-select-option {
    margin-left: 20px;
}
.autologin-select-option span {
}

.autologin-select-selection {
}

.autologin-select-img-pais,
.empresa_asociada-select-img-pais {
    vertical-align: middle;
    height: 11px;
    width: 16px;
    margin-right: 3px;
}
.autologin-select-img-empresa,
.empresa_asociada-select-img-empresa {
    vertical-align: middle;
    height: 29px;
    width: 70px;
    margin-right: 6px;
}

.accion-detalle {
    text-align: left;
    color: #5a898d;
    white-space: pre;
    
    background: #fdfcfa none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    padding: 2px;
}
.accion-detalle b {
    color: #335153;
}

.empresa_asociada-item-crear {
    background-color: #dff0d8;
    color: #468847;    
    font-weight: bold;
    border-radius: 4px;
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #d6e9c6;
}
.empresa_asociada-item-eliminar {
    background-color: #f2dede;
    color: #b94a48;
    font-weight: bold;
    border-radius: 4px;
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #eed3d7;
}


/*BOTONES REPORTE REQUERIMIENTO*/
.btncanal{
	padding: 2px 18px 2px 3px;     
	margin-right: 6px;
	-moz-border-radius:3px;
	border-radius: 3px;
	-webkit-border-radius:3px;
	background: #eee left top;
	border-color: #fff #bbb #bbb #bbb;
	border-style: solid;
	border-width: 1px;
	-moz-box-shadow:0px 1px 2px #666;
   	-webkit-box-shadow: 0px 1px 2px #666;
   	box-shadow:0px 1px 2px #666;
   	text-shadow: #fff 0 1px 0px;
   	
   	cursor: pointer;
	font-size: 11px !important;
}

.SD, .btncanal.SD:hover{
        background: #f36b22 url('../img/bg_sd_btn.png') no-repeat right top !important;
        color: #fff;
        text-shadow: none !important;
		font-size: 11px !important;
}
.HD, .btncanal.HD:hover{
	background: #168cc0 url('../img/bg_hd_btn.png') no-repeat right top;
	text-shadow: none !important;
	color: #fff;
	font-size: 11px !important;
}
.SH, .btncanal.SH:hover{
	background: #959e02 url('../img/bg_sdhd_btn.png') no-repeat right top;
	text-shadow: none !important;
	color: #fff;
	font-size: 11px !important;
}








/********botones canales**************/
.btn_sd,.btn_hd,.btn_sd_tape,.btn_hd_tape{
	display: block;
	width: 32px;
	height: 22px;
	float: right;
	margin-left: 3px;
	cursor: pointer;
	margin-top: -4px;
}
.btn_sd{
	background: url('../img/btn_sd.png') no-repeat left top;
}
.btn_sd:hover{
	background: url('../img/btn_sd.png') no-repeat 0 -22px;
}
.btn_sd:active,.btn_sd.select{
	background: url('../img/btn_sd.png') no-repeat 0 -44px;
}
.btn_sd.dissabled{
	background: url('../img/btn_sd.png') no-repeat left top;
}

.btn_hd{
	background: url('../img/btn_hd.png') no-repeat left top;
}
.btn_hd:hover{
	background: url('../img/btn_hd.png') no-repeat 0 -22px;
}
.btn_hd:active,.btn_hd.select{
	background: url('../img/btn_hd.png') no-repeat 0 -44px;
}
.btn_hd.dissabled{
	background: url('../img/btn_hd.png') no-repeat 0 0;
}
.btn_hd.dissabled,.btn_sd.dissabled,.btn_hd_tape.dissabled,.btn_sd_tape.dissabled{
	cursor: default;
	opacity: 0.3;
}

/****tape btn******/
.btn_sd_tape{
	background: url(../img/btn_tape_sd.png) no-repeat left top;
}
.btn_sd_tape:hover{
	background: url(../img/btn_tape_sd.png) no-repeat 0 -22px;
}
.btn_sd_tape:active,.btn_sd_tape.select{
	background: url(../img/btn_tape_sd.png) no-repeat 0 -44px;
}
.btn_sd_tape.dissabled{
	background: url(../img/btn_tape_sd.png) no-repeat left top;
}

.btn_hd_tape{
	background: url(../img/btn_tape_hd.png) no-repeat left top;
}
.btn_hd_tape:hover{
	background: url(../img/btn_tape_hd.png) no-repeat 0 -22px;
}
.btn_hd_tape:active,.btn_hd_tape.select{
	background: url(../img/btn_tape_hd.png) no-repeat 0 -44px;
}
.btn_hd_tape.dissabled{
	background: url(../img/btn_tape_hd.png) no-repeat 0 0;
}
/***fin tape btn****/


.row_destino {
    clear: both;
    color: #555;
    /*padding: 20px;*/
    /*width: 370px;*/
    height: auto !important;
    min-height: 20px;
    z-index: -1;
    border-bottom: 1px solid #eee;
    margin-left: 5px;
    padding-bottom: 5px;
}
.row_destino_logo {
    float: left;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 30px;
    margin: -17px 0 0 -20px;
    width: 75px;
    font-size: 14px;
}
.row_destino_logo img {
    height: 29px;
    margin: 0 0 0 3px;
    width: 70px;
}
.row_destino_name {
/*    margin-left: 10px;
    margin-right: 5px;
    margin-top: 7px;*/
    font-size: 12px;
    width: 300px;
    clear: both;
    /*border-bottom: 1px solid #eee;*/
    /*word-wrap: break-word;*/
}
.row_destino_titulo_pais_segmento {
    margin-left: -5px;
    margin-right: 5px;
    margin-top: 7px;
    font-size: 14px;
    width: 250px;
    padding: 5px;
    /*word-wrap: break-word;*/
}

.row_destino_btn {
    float: right;
    margin:-15px 10px 0;
    clear: both;
    /*border-bottom: 1px solid #eee;*/
}
.row_destino .row_destino_comercializadora {
    clear: both;
    /*border-bottom: 1px solid #eee;*/
    color: #555;
    /*padding: 5px;*/
    /*margin:-50px -20px 10px -20px;*/
    margin-bottom: -10px;
    margin-top: 55px;
    height: 30px;
}



.img_empresa_destinos {
    padding: 4px;
    width:50px;
    height:21px;
}

.img_bandera_destinos {
    padding: 4px;
    width:16px;
    height:11px;
}


/*comercializadoras*/
.newitem{
    clear: both;
	display: block;
	/*float: left;*/
	width: 280px;
	margin: 4px;
	padding: 3px;
	-moz-border-radius:4px 4px 4px4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius:4px 4px 4px 4px;
    -moz-box-shadow:0px 0px 3px #ccc;
    -webkit-box-shadow: 0px 0px 3px #ccc;
    box-shadow:0px 0px 3px #ccc;
}
.newitem span{
	width: 90px;
	float: left;
	color: #444;
}
.newitem select{
	width: 167px;
	margin-left: 2px;
	font-size: 11px;
	/*height: 13px;*/
}

/* select2 */
.select2-dropdown {
    z-index: 999999999 !important;
}

/***li checkbox custom***/
.chkbx{
	padding: 5px;
}
.chkbx label{
	line-height: 22px;
	color: #444;
}
/* Base for label styling */
.chkbx [type="checkbox"]:not(:checked),
.chkbx [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.chkbx [type="checkbox"]:not(:checked) + label,
.chkbx [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
/* checkbox aspect */
.chkbx [type="checkbox"]:not(:checked) + label:before,
.chkbx [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 17px; height: 17px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  /*box-shadow: inset 0 1px 3px rgba(0,0,0,.3)*/
}
/* checked mark aspect */
.chkbx [type="checkbox"]:not(:checked) + label:after,
.chkbx [type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 3px; left: 4px;
  font-size: 18px;
  line-height: 0.8;
  color: #2a7f7e;
  transition: all .2s;
}
/* checked mark aspect changes */
.chkbx [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.chkbx [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
.chkbx [type="checkbox"]:disabled:not(:checked) + label:before,
.chkbx [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.chkbx [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.chkbx [type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
.chkbx [type="checkbox"]:checked:focus + label:before,
.chkbx [type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}
/*** fin checkbox custom***/

/* interior columna seleccionados*/
.counter_emi{
	text-align: center;
	padding: 3px 3px 3px 3px;
	border: transparent;
	-moz-border-radius:50%;
	border-radius:50%;
	-webkit-border-radius:50%;
	background: #2a7f7e;
	color: #fff;
	font-size: 11px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	float: right;
	margin-left: 5px;
	margin-bottom: -26px;
        cursor: pointer;
        position: relative;
        top: 18px;        
}
.row_destino .counter_emi{
	margin-top: -20px;
	margin-right: 10px;
}
a.counter_emi , a.counter_emi :hover, a.counter_emi:visited, a.counter_emi:active{
	color: #ffffff;
	text-decoration: none;
}
.save_list{
	width: 300px;
	height: 110px;
}
.save_list h1{
	font-size: 16px;
	margin-bottom: 20px;
}
.save_list input[type=text]{
	width: 290px;
	margin-bottom: 10px;
}
.save_list p{
	float: right;
}
.col_selected_list .channel_buttons .row_destino_btn, .destiny_selected .channel_buttons .row_destino_btn{
	right: 35px;
	position: relative;
	clear: right;
}
/*arreglo botones e imagenes destinos*/
.row_destino_name{
	float: left;
}
.col_selected_list .row_destino_name{
	width: 230px;
}
.row_destino_name figure{
	width: 50px;
	height: 21px;
	margin: 5px 5px 8px 5px;
	float: left;
}
.row_destino_name figure + figure{
	width: 16px;
	height: 11px;
	margin: 5px;
	float:left;
}
.row_destino_name figure img{
	padding: 0;
	float: none;
}
.col_channels_list .row_destino_btn,.col_selected_list .row_destino_btn{
	margin-top: -18px;
}
.col_selected_list .row_destino .counter_emi{
	margin-top: -25px;
}

/*fancy seleccionador emisoras*/
.selec_emisoras_fan{
	padding: 0 10px;
}
.selec_emisoras_fan h3{
	font-size: 16px;
	color: #666666;
}
.selec_emisoras_fan aside{
	float: left;
	width: 250px;
	
}
.selec_emisoras_fan aside:first-child{
	margin-right: 15px;
}
.selec_emisoras_fan h3{
	line-height: 15px;
}
.box_list_emi,.box_emi_selected{
	width: 250px;
	height: 360px;
	border: 1px solid #dddddd;
	overflow: auto;
}
.box_list_emi ul,.box_emi_selected ul{
    position: relative;
    margin: 0;
}
section.btnes_final{
	clear:both;
	text-align: right;
	padding: 15px 0px 10px 10px;
}
.box_list_emi li {
    list-style-type: none;
}
.box_list_emi li:nth-child(odd),.box_emi_selected li:nth-child(odd){
	background: #f1f9fb;
}
.box_list_emi li:nth-child(even),.box_emi_selected li:nth-child(even){
	background: #fff;
}
.box_emi_selected li.fecha_hora_emi {
    padding: 5px;
    font-size: 13px;
    color: #aaa;
    font-weight: bold;
}
.box_list_emi li label, .box_emi_selected li label {
    font-size: 12px;
}
.btnes_final > .chkbx{
	float: left;
	width: 150px;
	text-align: left;
	margin: -9px;
}

.emisoras_list .chkbx [type="checkbox"]:disabled:not(:checked) + label:before,
.emisoras_list .chkbx [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: transparent;
  background-color:transparent;
}
.emisoras_list .chkbx [type="checkbox"]:disabled:checked + label:after {
  color: #000;
}
.emisoras_list .chkbx [type="checkbox"]:disabled + label {
  color: #000;
}

.emisoras_filter {
    clear: both;
    height: 40px;
    margin-bottom: 5px;
    padding-top: 3px;
    width: 100%;
}

.label-primary {
    background-color: #337ab7;
}

.scrollable-menu {
    height: auto;
    max-height: 500px;
    overflow-x: hidden;
}

.empresa-speed {
    width:140px !important;
}

/* Hitos */
.hito-thumbnail {
    padding-bottom:10px;
    cursor: pointer;
}
.hito-thumbnail img {
    border: 1px solid #fff;
    box-shadow: 0 2px 5px #777;
    width: 130px;
}

li.hitos-origen_destino {
    margin-top: 10px;
}

span.hitos-origen_destino {
    white-space: nowrap;
}

.hito-item:hover {
    cursor: pointer;
}
ul.solicitud{
    list-style-type: none;
    margin-left: 0px;
    margin-top:15px;
}
.transcode-solicitud-thumbnail {
    padding-bottom:10px;
    cursor: pointer;
}
.transcode-solicitud-thumbnail img {
    border: 1px solid #fff;
    box-shadow: 0 2px 5px #777;
    width: 130px;
}






/*
Exhibidor playout
*/
    #listSignal, #listFTP {
        background: #fff;
        color: #000;
        height: 200px;
        margin-top: 5px;
        padding: 10px;
        overflow: auto;
        font-size: 12px;
        font-weight: normal;
        text-align: left;
        border: 1px #BBB solid;
    }
    #ftpMenu, #signalMenu {
        color: #fff;
        background: #484848;
        width: 520px;
        float:left;
        margin: 10px;
        padding-top: 5px;
        text-align: left;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
    }
    .btn_ftp, .btn_signal { }
    .img_signal_list {
        max-width: 50px;
        max-height: 50px;
        border: 1px #ddd solid;
        padding: 5px;
    } 
    .img_ftp-signal_list {
        max-width: 15px;
        max-height: 15px;
        border: 1px #ddd solid;
        padding: 5px;
    } 
    .span_ftp-signal_list {
        position: relative;
        top: -8px;
        padding-left: 10px;
    }
    div.signal_list-container {
        float: left;
        width: 70px;
        height: 85px;
        padding: 5px;
        margin-bottom: 10px;
        margin-right: 5px;
        text-align: center;
    }
    div.signal_list-container span {
        width:90px;
        text-align: center;
        padding-bottom: 5px;
    }
    
    
.img_playout {
    width:50px;
    height:50px;
}
.accion-menu {
    cursor: pointer;
    clear: both;
    display: block;
    width: auto;
    /*
    padding-right: 20px;
    margin-right: 15px;
    color:#01998A;
    */
}
.accion-menu:hover {
    background: url(../img/borrar_icn_16x16.png) no-repeat right center;
    display: block;
    background-color: #E0F3E7;
}

.btn_ftp_delete{
    float:right;
}

.field_containner fieldset,.field_flujo fieldset{
	background:#fff;
	-moz-border-radius:5px;
	border-radius: 5px;
	-webkit-border-radius:5px;
	border: 1px solid #fff;
	padding:7px;
	-moz-box-shadow:0px 1px 4px #aaa;
   	-webkit-box-shadow: 0px 1px 4px #aaa;
   	box-shadow:0px 1px 4px #aaa;
   	margin: 10px;
}
.field_flujo fieldset{
	float: left;
	margin-left: 20px;
}
.field_flujo fieldset.otras {
	clear: both;
	margin-top:30px;
	width: 360px
}
.field_containner legend,.field_flujo legend{
	top: -12px;
	position: relative;
	font-weight: bold;
	font-size: 12px;
	margin-top: -17px;
	margin-bottom: -5px;
        border:none !important;
}

.titleitem_flujo
{
    text-transform: uppercase;
    font-weight: bold;
}
.demuestraunboton{
	display: block;
	height: 30px;
	margin-left: -5px;
	margin-right: -5px;
	width: auto;
	/*border-bottom: 1px solid #eee;*/
	margin-bottom: 10px;
	text-align: center;
}

.check_flujo{
    margin-top:-3px !important;
    margin-right:5px !important;
}

/**** botones acciones bajo grilla******/
.actn{
	/*background: #4b9d9a;
	border-color: #66D3C4 #3d8280 #3d8280 !important;*/
	background: #1a7f88;
	border-color: #27b4c0 #205e5c #205e5c !important;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.5px;
}
.actn_main{
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.5px;
	padding: 5px 10px 5px 5px;
        color: white;
}
.actn_main.aprob{
	background: #2d9b27;
	border-color: #48d040 #1d6c19 #1d6c19 !important;
	text-shadow: #1d6c19 0 1px 1px;
}
.actn_main.playout{
	background: #2098c9;
	border-color: #4cb7e2 #13759e #13759e !important;
	text-shadow: #1c7d9d 0 1px 1px;
}
.aprob:hover,.aprob:active{
	background: #196114;
	border-color:#196114 !important;
	text-shadow: none;
        color: white;
}
.playout:hover,.playout:active{
	background: #13759e;
	border-color:#13759e !important;
	text-shadow: none;
        color: white;
}
.actn_main.noaprob{
	background: #db2413;
	border-color: #fd9187 #a81406 #a81406 !important;
	text-shadow: #a81406 0 1px 1px;
}
.noaprob:hover,.noaprob:active{
	background: #b01a0d;
	border-color:#b01a0d !important;
	text-shadow: none;
}
.space_li{
	display: block;
	width: 0px !important;
	height: 30px;
	border-left: 1px solid #888;
	border-right: 1px solid #eee;
	margin-top: -5px;
	margin-right: 10px;
	margin-left: 10px;
}
fieldset.emailtec {
    margin-top:30px; 
    width:365px;
}
fieldset.emailtec p {
    margin-bottom:25px; 
    margin-top:3px;
}
fieldset.emailtec p input {
    margin-top:-30px;
/*    margin-right:5px;*/
    width: 225px; 
    float: right;
}
.flujo_grabar{
    position: relative;
    float: right;
    margin-right: 615px;
    margin-top: 200px;
}
.label_ftp{
    width: 100px !important;
}
