﻿@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: 'Roboto', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ul {
    list-style: none;
    padding: 0;
}
a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
/*.................................... Common CSS ..................................................*/

 

/*................. Banner menu css ...........................*/

.bannr-menu-container {
    max-width: 1200px;
    padding: 0 0px;
    width: 100%;
    margin: 0 auto;
    /*-moz-box-shadow: 0px 10px 14px -11px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 10px 14px -11px rgba(0,0,0,0.2);
    box-shadow: 0px 10px 14px -11px rgba(0,0,0,0.2);*/
}
.live-cricle {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ff373f;
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
    -moz-animation: blinker .3s cubic-bezier(.5, 0, 1, 1) infinite alternate;
    -webkit-animation: blinker .3s cubic-bezier(.5, 0, 1, 1) infinite alternate;
    animation: blinker .3s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}
@-moz-keyframes blinker {
 from {
background: #c82027;
     opacity: .4;
}
 to {
background: #ff373f;
     opacity: 1;
}
}
@-webkit-keyframes blinker {
 from {
background: #c82027;
      opacity: .4;
}
 to {
background: #ff373f;
       opacity: 1;
}
}
@keyframes blinker {
 from {
background: #c82027;
      opacity: .4;
}
 to {
background: #ff373f;
       opacity: 1;
}
}
.banner-menu {
   /* border-bottom: 1px solid #eee;*/
    width: 100%;
    float: left;
    background: #fff;
}
.banner-menu-ul {
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    text-align: center;
    background: #232560;
   
}
.banner-menu-li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    position: relative;
    border-right: 1px solid  rgba(255,255,255,0.2);
}
.banner-menu-li:last-child{
    border-right: none;
}
.banner-menu-a {
    display: block;
    padding:0 18px 0 15px;
    height: 45px;
    line-height: 44px;
    color:#fff;
    font-size: 14px;
   text-transform: uppercase;
text-align: center;
font-family: arial;
font-weight: bold;
}
.banner-menu-a:hover{
    color:#6fb0ff;
}