/* CSS Document */
@charset "utf-8";
html,  body,  div,  p,  form,  ul,  li,  p,  label,  span,  img,  h1,  h2,  h3,  h4, h5, h6, table, section {
    margin: 0;
    padding: 0;
    border: none;
}
@font-face {
    font-family:'Calibri';
    src: local('Calibri'), local('Calibri-Regular'), url('../fonts/calibri.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+000D-25CA;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: local('Lato Regular'), local('Lato-Regular'), url(../fonts/lato.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(../fonts/opensans.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins'), local('Poppins-Regular'), url(../fonts/poppins.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: local('Oswald Regular'), local('Oswald-Regular'), url(../fonts/oswald.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
html, body{
    min-width:300px !important;
    height:100%;
    background: #fff;
    font-family:'Poppins', sans-serif;
    font-weight:normal;
    text-shadow:none;
    font-size: 12px;
    line-height: 14px;
    text-align: left;
    overflow:initial;/* Fix menu comming on top of the browser scroll bar*/
}
ul.listnone, ol.listnone  {list-style: none;}
ul.list{
    margin:10px 0 0 15px;
    display:inline-block;
}
ul.list.half li{
    width:47%;
    height:auto;
    float:left;
    margin-left:3%;
}
a, a:hover{
    text-decoration: none;
}
a.ttip{
    border-bottom:#999 dashed 1px;
    text-decoration:none;
    cursor:help;
}
.float-right{
    float:right;
}
.float-left{
    float:left;
}
.clear-left{
    clear:left;
}
.fixed{
    position: fixed;
    z-index: 999;
}
.relative{
    position: relative;
}
.fixed.top{
    top: 0;
    left: 0;
}
.absolute-top{
    position: absolute;
    z-index: 99;
    top: 2px;
    left: 4px;
}
.absolute-bottom{
    position: absolute;
    z-index: 99;
    bottom: 10px;
    right: 10px;
}
.display-none{
    display: none;
}
.display-block{
    display: block;
}
.square, .square .btn{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
/* Vertical text center */
.text-v-center {
    position: relative;
}
.text-v-center::before {
    content: " ";
    display: inline-block;
    height: 100%;
    width: 1%;
    vertical-align: middle;
}
.text-v-center p {
    display: inline-block;
    vertical-align: middle;
}
.vertical-center {
    /* this class should be called in row or wrapper(outer) div.*/
    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center;
    /* In legacy web browsers such as Firefox 9
       we need to specify the width of the flex container */
    width: 100%;
    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
       hence the bootstrap's container won't be aligned to the center anymore.
       Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack : center;
    -moz-box-pack : center;
    -ms-flex-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
}
/* can be called inside the vertical-center class. this class haven't width property */
.vertical-c {
    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center; 
    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
   hence the bootstrap's container won't be aligned to the center anymore.
   Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack : center;
    -moz-box-pack : center;
    -ms-flex-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
}
.voffset-1 { margin-top:1% !important;}
.voffset-2 { margin-top:2% !important;}
.voffset-3 { margin-top:3% !important;}
.voffset-4 { margin-top:4% !important;}
.voffset-5 { margin-top:5% !important;}
.voffset-6 { margin-top:6% !important;}
.voffset-8 { margin-top:8% !important;}
.voffset-10 { margin-top:10% !important;}
.voffset-25 { margin-top:25% !important;}
.voffset-b-1 { margin-bottom:1% !important;}
.voffset-b-2 { margin-bottom:2% !important;}
.voffset-b-3 { margin-bottom:3% !important;}
.voffset-b-4 { margin-bottom:4% !important;}
.voffset-b-5 { margin-bottom:5% !important;}
.voffset-b-6 { margin-bottom:6% !important;}
.voffset-b-8 { margin-bottom:8% !important;}
.voffset-b-10 { margin-bottom:10% !important;}

.offset-al-1{ margin:1% !important;}
.offset-al-2{ margin:2% !important;}
.offset-al-3{ margin:3% !important;}
.offset-al-5{ margin:5% !important;}
.offset-r-1 { margin-right:1% !important;}
.offset-r-2 { margin-right:2% !important;}
.offset-r-3 { margin-right:3% !important;}
.offset-r-5 { margin-right:5% !important;}
.offset-l-1 { margin-left:1% !important;}
.offset-l-2 { margin-left:2% !important;}
.offset-l-3 { margin-left:3% !important;}
.offset-l-5 { margin-left:5% !important;}

.col-pdn-left-0{
    padding-left:0 !important;
}
.col-pdn-right-0{
    padding-right:0 !important;
}
.col-pdn-both-0{
    padding-left:0 !important;
    padding-right:0 !important;
}
.pdn-0{
    padding:0 !important;
}
#vidwrap{
    cursor: pointer;
}
#wrapper #container.white, #wrapper .others.white, #wrapper .container-fluid.white, #wrapper .container.white{
    background:#fff;
}
#wrapper #container.color, #wrapper .others.color, #wrapper .container-fluid.color, #wrapper .container.color{
    background:#eee;
}
#wrapper #container.color2, #wrapper .others.color2, #wrapper .container-fluid.color2, #wrapper .container.color2{
    background:#0f1505;
}
#wrapper #container.bg1, #wrapper .others.bg1, #wrapper .container-fluid.bg1, #wrapper .container.bg1{
    background:#0b3150 url("../images/quote_back.jpg") center top no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
#wrapper #container.bg2, #wrapper .others.bg2, #wrapper .container-fluid.bg2, #wrapper .container.bg2{
    background:#00182b url("../images/tuna_back.jpg") center top no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.panel {
    border: none;
    border-radius: 0;
}
.panel .form-control, .panel .panel-heading{
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    margin-bottom: 10px;
}
.panel.panel-info .panel-title{
    color: #00508f;
}
.panel placeholder{
    color: #eee;
}
#toTop{
    display: none;
    position: fixed;
    bottom: 80px;
    right: 0;
    z-index: 9999;
}
.text-smallcaps{
    font-variant: small-caps;
}
.btn-warning.dark{
    background:#e48600;
}
.text-info{
    color:#0555a0;
    font-size: 15px;
    line-height: 20px;
}
.text-primary{
    color:#013d75;
}
.text-muted{
    color:#444;
}
.thumbnail .caption{
    overflow:hidden;
}
hr.style-one { border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc); }
hr.style-two { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)); }
hr.style-three { border: 0; border-bottom: 1px dashed #ccc; background: #999; }
hr.style-four { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

#wrapper{
    width: 100%;
    max-width: 1920px;
    height:auto;
    overflow:hidden;
    margin:0 auto;
    background:#fff;
    position: relative;
}
#wrapper #header{
    width:100%;
    display:block;
    overflow: visible;
    background: #fff;
    border-bottom: #a0d1ff 2px solid;
}
#wrapper #header.home{
    position: absolute;
    z-index: 990;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
    margin-top: 50px;
}
#wrapper #header.home:hover, #wrapper #header.home:focus{
    background: rgba(255, 255, 255, 0.8);
}
.top-abs-logo{
    width: auto;
    height: auto;
    overflow: hidden;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 999;
    padding: 5px 15px 5px 15px;
    border-top: none;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    border-bottom:#33a4de 4px solid;
}
#wrapper #header .top-hd-layer{
    background: #1b4368;
    border-bottom: #143259 1px solid;
}
#wrapper #header .top-hd-layer ul{
    margin: 0 auto;
    display: block;
}
#wrapper #header .top-hd-layer ul.float-right li{
    float: right;
}
#wrapper #header .top-hd-layer ul li{
    width: auto;
    display: inline-block;
    border-right: #143259 1px solid;
    padding: 0 8px 0 8px;
    margin: 3px 0 3px 0;
    font-size: 13px;
}
#wrapper #header .top-hd-layer ul li{
    color: #fff;
    text-shadow: 0 0 1px rgba(120, 173, 193, .3);
    line-height: 30px;
}
#wrapper #header .top-hd-layer ul>li>a{
    color: #fff;
    text-shadow: 0 0 1px rgba(120, 173, 193, .3);
    line-height: 30px;
}
#wrapper #header .top-hd-layer ul>li>a:hover{
    text-decoration: none;
    color: #a6d4ee;
    border-bottom: #a6d4ee 1px dotted;
}
#wrapper #header .top-hd-layer ul li .glyphicons{
    line-height: 30px;
}
#wrapper #header .top-hd-layer ul li.noborder{
    border: none;
}
#header .sitename{
    color:#0f5697;
    text-shadow: 0 0 1px rgba(10, 100, 100, .5);
    font-size:28px;
    line-height: 32px;
    font-family:'Calibri', sans-serif;
}
.label-danger.hotline{
    font-size:17px;
    font-weight:normal;
    text-shadow: 0 0 1px rgba(175, 4, 0, .3);
    padding:6px 15px 6px 15px;
    border-radius:0 0 5px 5px; 
    -moz-border-radius:0 0 5px 5px; 
    -webkit-border-radius:0 0 5px 5px; 
    background:#da2e2a;
    position:absolute;
    right:10px;
    top:0;
}
#wrapper .menu-top{
    width:100%;
    min-height:50px;
    float:left;
    background:#00416e;
    display:block;
    text-transform: uppercase;
}
/* navbar ---------------- */
.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 0;
    border: none;
    font-size: 13px;
    z-index: 9999;
}
.navbar-inverse {
    background-color: #00416e;
    border-color: #003a63;
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
}
/* changing color when menu fixed on scroll down */
.navbar-fixed-top .navbar-inverse{
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.7);

}
.navbar-fixed-top .navbar-inverse .navbar-nav > li > a{
    color: #fff;
}
/* end */
.navbar-inverse .navbar-brand {
    color: #fff;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-text {
    color: #fff;
}
.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    border-right: #003a63 1px solid;
}
.navbar-inverse .navbar-nav > li.last > a {
    border-right: none;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color:#007ec7;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #007ec7;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent;
}
.navbar-inverse .navbar-toggle {
    border-color: #003a63;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #007ec7;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #003a63;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #007ec7;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    border-color: #003a63;
}

/* Social media start ---------------- */
.media-24, .media-32, .media-64{
    text-align: center;
}
#header .media-32{
    text-align: right;
}
#contact-us .media-32 {
    text-align: left;
}
.media-24 li, .media-32 li, .media-64 li{
    display: inline-block;
}

.media-24.theme-1 .media-icn{
    background:url(../images/social_icon_24x24_1.png);
}
.media-24.theme-2 .media-icn{
    background:url(../images/social_icon_24x24_2.png);
}
.media-24.theme-3 .media-icn{
    background:url(../images/social_icon_24x24_3.png);
}
.media-24.theme-4 .media-icn{
    background:url(../images/social_icon_24x24_4.png);
}
.media-24.theme-5 .media-icn{
    background:url(../images/social_icon_24x24_5.png);
}
.media-24 .media-icn{
    width:24px;
    height:24px;
    overflow:hidden;
    display:inline-block;
    margin:0 0 0 6px;
}
.media-24.withlabel a{
    width: 100%;
    display: block;
    text-align: left;
    line-height: 24px;
}
.media-24.withlabel .media-icn{
    width:24px;
    height:24px;
    overflow:hidden;
    display:block;
    margin:0 4px 0 4px;
    float: left;
}
.media-24 .media-icn.fb{
    background-position: 0 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.fb{
    background-position: 0 -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.fb:hover, .media-24 a:hover .media-icn.fb{
    background-position: 0 -24px;
}
.media-24.reverse .media-icn.fb:hover, .media-24.reverse a:hover .media-icn.fb{
    background-position: 0 0;
}
.media-24 .media-icn.tw{
    background-position: -24px 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.tw{
    background-position: -24px -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.tw:hover, .media-24 a:hover .media-icn.tw{
    background-position: -24px -24px;
}
.media-24.reverse .media-icn.tw:hover, .media-24.reverse a:hover .media-icn.tw{
    background-position: -24px 0;
}
.media-24 .media-icn.gp{
    background-position: -48px 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.gp{
    background-position: -48px -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.gp:hover, .media-24 a:hover .media-icn.gp{
    background-position:-48px -24px;
}
.media-24.reverse .media-icn.gp:hover, .media-24.reverse a:hover .media-icn.gp{
    background-position:-48px 0;
}
.media-24 .media-icn.ut{
    background-position: -72px 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.ut{
    background-position: -72px -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.ut:hover, .media-24 a:hover .media-icn.ut{
    background-position:-72px -24px;
}
.media-24.reverse .media-icn.ut:hover, .media-24.reverse a:hover .media-icn.ut{
    background-position: -72px 0;
}
.media-24 .media-icn.pr{
    background-position: -96px 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.pr{
    background-position: -96px -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.pr:hover, .media-24 a:hover .media-icn.pr{
    background-position:-96px -24px;
}
.media-24.reverse .media-icn.pr:hover, .media-24.reverse a:hover .media-icn.pr{
    background-position: -96px 0;
}
.media-24 .media-icn.li{
    background-position: -120px 0;
    background-repeat: no-repeat;
}
.media-24.reverse .media-icn.li{
    background-position: -120px -24px;
    background-repeat: no-repeat;
}
.media-24 .media-icn.li:hover, .media-24 a:hover .media-icn.li{
    background-position:-120px -24px;
}
.media-24.reverse .media-icn.li:hover, .media-24.reverse a:hover .media-icn.li{
    background-position: -120px 0;
}

.media-32.theme-1 .media-icn{
    background:url(../images/social_icon_32x32.png);
}
.media-32.theme-2 .media-icn{
    background:url(../images/social_icon_32x32_2.png);
}
.media-32.theme-3 .media-icn{
    background:url(../images/social_icon_32x32_3.png);
}
.media-32.theme-4 .media-icn{
    background:url(../images/social_icon_32x32_4.png);
}
.media-32.theme-5 .media-icn{
    background:url(../images/social_icon_32x32_5.png);
}
.media-32 .media-icn{
    width:32px;
    height:32px;
    overflow:hidden;
    display:inline-block;
    margin:0 0 0 6px;
}
.media-32.withlabel a{
    width: 100%;
    display: block;
    text-align: left;
    line-height: 32px;
}
.media-32.withlabel .media-icn{
    width:32px;
    height:32px;
    overflow:hidden;
    display:block;
    margin:0 6px 0 6px;
    float: left;
}
.media-32 .media-icn.fb{
    background-position: 0 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.fb{
    background-position: 0 -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.fb:hover, .media-32 a:hover .media-icn.fb{
    background-position: 0 -32px;
}
.media-32.reverse .media-icn.fb:hover, .media-32.reverse a:hover .media-icn.fb{
    background-position: 0 0;
}
.media-32 .media-icn.tw{
    background-position: -32px 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.tw{
    background-position: -32px -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.tw:hover, .media-32 a:hover .media-icn.tw{
    background-position: -32px -32px;
}
.media-32.reverse .media-icn.tw:hover, .media-32.reverse a:hover .media-icn.tw{
    background-position: -32px 0;
}
.media-32 .media-icn.gp{
    background-position: -64px 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.gp{
    background-position: -64px -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.gp:hover, .media-32 a:hover .media-icn.gp{
    background-position:-64px -32px;
}
.media-32.reverse .media-icn.gp:hover, .media-32.reverse a:hover .media-icn.gp{
    background-position:-64px 0;
}
.media-32 .media-icn.ut{
    background-position: -96px 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.ut{
    background-position: -96px -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.ut:hover, .media-32 a:hover .media-icn.ut{
    background-position:-96px -32px;
}
.media-32.reverse .media-icn.ut:hover, .media-32.reverse a:hover .media-icn.ut{
    background-position: -96px 0;
}
.media-32 .media-icn.pr{
    background-position: -128px 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.pr{
    background-position: -128px -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.pr:hover, .media-32 a:hover .media-icn.pr{
    background-position:-128px -32px;
}
.media-32.reverse .media-icn.pr:hover, .media-32.reverse a:hover .media-icn.pr{
    background-position: -128px 0;
}
.media-32 .media-icn.li{
    background-position: -160px 0;
    background-repeat: no-repeat;
}
.media-32.reverse .media-icn.li{
    background-position: -160px -32px;
    background-repeat: no-repeat;
}
.media-32 .media-icn.li:hover, .media-32 a:hover .media-icn.li{
    background-position:-160px -32px;
}
.media-32.reverse .media-icn.li:hover, .media-32.reverse a:hover .media-icn.li{
    background-position: -160px 0;
}

.media-64.theme-1 .media-icn{
    background:url(../images/social_icon_64x64.png);
}
.media-64 .media-icn{
    width:64px;
    height:64px;
    overflow:hidden;
    display:inline-block;
    margin:0 0 0 6px;
}
.media-64.withlabel a{
    width: 100%;
    display: block;
    text-align: left;
    line-height: 64px;
}
.media-64.withlabel .media-icn{
    width:64px;
    height:64px;
    overflow:hidden;
    display:block;
    margin:0 4px 0 4px;
    float: left;
}
.media-64 .media-icn.fb{
    background-position: 0 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.fb{
    background-position: 0 -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.fb:hover, .media-64 a:hover .media-icn.fb{
    background-position: 0 -64px;
}
.media-64.reverse .media-icn.fb:hover, .media-64.reverse a:hover .media-icn.fb{
    background-position: 0 0;
}
.media-64 .media-icn.tw{
    background-position: -64px 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.tw{
    background-position: -64px -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.tw:hover, .media-64 a:hover .media-icn.tw{
    background-position: -64px -64px;
}
.media-64.reverse .media-icn.tw:hover, .media-64.reverse a:hover .media-icn.tw{
    background-position: -64px 0;
}
.media-64 .media-icn.gp{
    background-position: -128px 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.gp{
    background-position: -128px -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.gp:hover, .media-64 a:hover .media-icn.gp{
    background-position:-128px -64px;
}
.media-64.reverse .media-icn.gp:hover, .media-64.reverse a:hover .media-icn.gp{
    background-position:-128px 0;
}
.media-64 .media-icn.ut{
    background-position: -192px 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.ut{
    background-position: -192px -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.ut:hover, .media-64 a:hover .media-icn.ut{
    background-position:-192px -64px;
}
.media-64.reverse .media-icn.ut:hover, .media-64.reverse a:hover .media-icn.ut{
    background-position: -192px 0;
}
.media-64 .media-icn.pr{
    background-position: -256px 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.pr{
    background-position: -256px -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.pr:hover, .media-64 a:hover .media-icn.pr{
    background-position:-256px -64px;
}
.media-64.reverse .media-icn.pr:hover, .media-64.reverse a:hover .media-icn.pr{
    background-position: -256px 0;
}
.media-64 .media-icn.li{
    background-position: -320px 0;
    background-repeat: no-repeat;
}
.media-64.reverse .media-icn.li{
    background-position: -320px -64px;
    background-repeat: no-repeat;
}
.media-64 .media-icn.li:hover, .media-64 a:hover .media-icn.li{
    background-position:-320px -64px;
}
.media-64.reverse .media-icn.li:hover, .media-64.reverse a:hover .media-icn.li{
    background-position: -320px 0;
}
/* Social media END ---------------- */

#header .contact{
    height: auto;
    float:right;
    text-align: right;
    display: block;
    margin:8px 0 0 0;
    overflow:hidden;
    display:inline-block;
    font-size:14px;
    text-shadow: 0 0 1px rgba(20, 20, 20, .3);
    color:#3d5682;
    line-height:26px;
}
#header .contact span{
    font-size: 22px !important;
    line-height: 24px;
    color:#224586;
}
#short-links{
    width: 100%;
    min-height:16px;
    display:block;
}
#short-links ul li{
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    color: #1f6398;
}
#short-links .glyphicons{
    line-height: 16px;
    color: #1c8bbe;
}
#short-links ul li a{
    margin: 0 4px 0 4px;
    color: #1f6398;
    text-decoration: none;
}
#short-links ul li a:hover{
    color: #1c8bbe;
}
#top-search{
    width: 100%;
    max-width: 480px;
    float: right;
    opacity: 0.7;
    filter: alpha(opacity=70); /* For IE8 and earlier */
}
#top-search:hover, #top-search:focus{
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}
#top-search input[type=text]{
    background: #33679c;
    border-color: #154d85;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#top-search .form-control::-webkit-input-placeholder { color:#d1e1ea; }
#top-search .form-control:-moz-placeholder { color:#d1e1ea; }
#top-search .form-control::-moz-placeholder { color:#d1e1ea; }
#top-search .form-control:-ms-input-placeholder { color:#d1e1ea; }

#top-search .form-group{
    margin-bottom: 5px;
}
#top-search input[type=text]:hover, #top-search input[type=text]:focus{
    background: #376ea6;
}
#top-search .btn-default{
    background: #1f568e;
    border-color: #154d85;
    border-left: #144270 1px solid;
    color: #fff;
    padding: 5px 22px;
    font-size: 12px;
    line-height: 1.5;
}
#top-search .input-group-addon{
    border: 0;
}
#top-search .form-group .bootstrap-select.btn-group{
    border: 0;
}
#wrapper #front-slider{
    width:100%;
    height:auto;
    overflow:hidden;
    display:block;
    margin:0 auto;
    position: relative;
}
#front-slider .newsouter{
    width:38%;
    height:96% !important;
    overflow:hidden;
    display:block;
    position:absolute;
    z-index:3;
    top:2%;
    right:0;
    padding:1%;
    background:url(../images/news_back.png) 0 0 repeat;
    border:#bfddf0 1px solid;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px; 
    border-radius: 3px 0 0 3px;
    padding-left:40px;
}
.newsouter .news-close{
    width:40px;
    height:40px;
    position:absolute;
    z-index:4;
    left:0;
    top:50%;
    margin-top:-20px;
    display:block;
}
.news-open{
    width:40px;
    height:40px;
    position:absolute;
    z-index:2;
    right:-6px;
    top:50%;
    margin-top:-20px;
    display:none;
}
.news-close .btn-primary, .news-open .btn-primary{
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0; 
    border-radius: 0 3px 3px 0;
    background:#143656;
    border-color:#143656;
    float:left;
}
.news-open .btn-primary{
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px; 
    border-radius: 3px 0 0 3px;
}
.news-close .btn-primary:hover, .news-open .btn-primary:hover{
    background:#0a4a84;
    border-color:#0a4a84;
}

#wrapper #container, #wrapper .others{
    width:100%;
    height:auto;
    overflow:hidden;
    display:block;
    position: relative;
}
#wrapper #container{
    min-height:250px;
}
#wrapper #container.menu-margin{
    margin-top: 50px;
}
.container h1, .container-fluid h1{
    width: 100%;
    margin:0 auto;
    display: block;
    font-size:28px;
    line-height:34px;
    color:#0d579c;
    text-shadow:0px 0px 1px rgba(13, 87, 156, 0.4);
}
.container h2, .container-fluid h2{
    color:#0d579c;
    text-shadow:0px 0px 1px rgba(13, 87, 156, 0.3);
}
.container h1 span.color, .container-fluid h1 span.color, .container h2 span.color, .container-fluid h2 span.color{
    color: #295909;
}
.container h1 span.white, .container-fluid h1 span.white, .container h2 span.white, .container-fluid h2 span.white{
    color: #fff;
}
.container .text-bold, .container-fluid .text-bold{
    font-weight: bold;
}
.container .text-small-caps, .container-fluid .text-small-caps{
    font-variant: small-caps;
}

/* common-block Start ----------- */
.common-block{
    color: #444;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
} 
.common-block p{
    margin-top: 10px;
}
.common-block br{
    margin-top: 5px;
    display: block;
}
.common-block p.nomargin, .common-block br.nomargin, p.nomargin, br.nomargin{
    margin-top: 0 !important;
}
.common-block p.quote:before{
    content: open-quote;
    font-family:"Times New Roman", Times, serif !important;
    font-size: 150%;
    color: #666;
    font-weight: bold;
}
.common-block p.quote:after {
    content: close-quote;
    font-family:"Times New Roman", Times, serif !important;
    font-size: 150%;
    line-height: 75%;
    color: #666;
    font-weight: bold;
}
.common-block ul{
    margin: 10px;
    padding: 0 0 0 10px;
    color: #555;
}
.common-block ul li{
    margin-bottom: 8px;
}
.common-block h1{
    font-size: 26px;
}
.common-block h3{
    font-size: 20px;
    text-shadow: 0 0 1px rgba(60,60,60,.3);
}
.common-block h4{
    line-height: 17px;
    text-shadow: 0 0 1px rgba(60,60,60,.3);
}
.common-block h5{
    line-height: 16px;
    text-shadow: 0 0 1px rgba(60,60,60,.2);
}
/* common-block End ----------- */


/* Carousel STRAT -------------- */
#carousel-bounding-box .full-img{
    position: absolute;
    width: 38px;
    height: 46px;
    font-size: 26px;
    line-height: 30px;
    padding: 12px 6px 4px 6px;
    background:rgba(0,0,0,0.4);
    color: #fff;
    top: -8px;
    right: 50%;
    margin-right: -19px;
    z-index: 200;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(117,117,117,0.3);
    -moz-box-shadow: 0px 10px 10px 0px rgba(117,117,117,0.3);
    box-shadow: 0px 10px 10px 0px rgba(117,117,117,0.3);
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}
#carousel-bounding-box .full-img:hover{
    background:rgba(0,0,0,0.9);
}
#carousel-bounding-box a .full-img{
    color: #fff;
}
#slider-thumbs .thumbnail{
    width: auto;
    display: block;
    margin: 6px;
    padding: 3px;
}
#slider-thumbs .thumbnail:hover{
    cursor: pointer;
    border: #fecf7d 1px solid;
}

/* carousel control & button */
.carousel-control{
    width: 25px;
    z-index: 150;
}
.carousel-control:hover .full-img{
    z-index: 99999
}
.carousel-control.left, .carousel-control.right {background-image:none; filter:none;}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 10px;
    color: #ed1c24;
}
.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 10px;
    color: #ed1c24;
}
/* crousel theme 2 */
.crousel-theme2 .carousel-control{
    width: 40px;
    height: 30px;
    margin: 5px 5px 0 0;
}
.crousel-theme2 .carousel-control.left, .crousel-theme2 .carousel-control.right {
    background:rgba(0,93,164, 0.8); 
    filter:none;
}
.crousel-theme2 .carousel-control.left {
    right: 42px;
    left: auto;
}
.crousel-theme2 .carousel-control .icon-prev, .crousel-theme2 .carousel-control .glyphicon-chevron-left {
    left: 15px;
    color: #fff;
    font-size: 20px;
}
.crousel-theme2.carousel-control .icon-next, .crousel-theme2 .carousel-control .glyphicon-chevron-right {
    right: 15px;
    color: #fff;
    font-size: 20px;
}
/* crousel theme 3 */
.crousel-theme3 {
    padding-top: 30px;
}
.crousel-theme3 .carousel-control{
    width: 40px;
    height: 25px;
    margin: -30px 5px 0 0;
}
.crousel-theme3 .carousel-control.left, .crousel-theme3 .carousel-control.right {
    background:rgba(0,93,164, 0.8); 
}
.crousel-theme3 .carousel-control:hover{
    background:rgba(0,93,164, 0.9); 
}
.crousel-theme3 .carousel-control.left {
    right: 42px;
    left: auto;
}
.crousel-theme3 .carousel-control .icon-prev, .crousel-theme3 .carousel-control .glyphicon-chevron-left {
    left: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}
.crousel-theme3 .carousel-control .icon-next, .crousel-theme3 .carousel-control .glyphicon-chevron-right {
    right: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}
#container .crousel-theme3 .front-pro-items .itm-name{
    position: relative;
    background: transparent;
}
.crousel-theme3 a{
    display: block;
    font-size: 12px;
    color: #205e8e;
    text-shadow:0px 0px 1px rgba(20, 60, 0, 0.3);
}
.crousel-theme3 a strong{
    font-weight: normal;
    color: #0f558b;
}
.crousel-theme3 a:hover, .crousel-theme3 a strong:hover{
    color: #2075b7;
}
#container .crousel-theme3 .front-pro-items .itm-name{
    font-size: 14px;
    line-height: 20px;
    color: #4084d0;
    text-transform: capitalize;
}

/* crousel theme 4 */
.crousel-theme4 .carousel-control .icon-prev, .crousel-theme4 .carousel-control .glyphicon-chevron-left {
    left: 0px;
    color: #4084d0;
    font-size: 20px;
    line-height: 24px;
}
.crousel-theme4 .carousel-control .icon-next, .crousel-theme4 .carousel-control .glyphicon-chevron-right {
    right: 0px;
    color: #4084d0;
    font-size: 20px;
    line-height: 24px;
}
.crousel-theme4 a{
    font-size: 13px;
    color: #205e8e;
    text-shadow:0px 0px 1px rgba(20, 60, 0, 0.3);
}
.crousel-theme4 a strong{
    font-weight: normal;
    color: #0f558b;
}
.crousel-theme4 a:hover, .crousel-theme4 a strong:hover{
    color: #2075b7;
}
#container .crousel-theme4 .front-pro-items .itm-name{
    position: inherit;
    font-size: 13px;
    line-height: 20px;
    padding: 6px 3px 6px 3px;
    color: #4084d0;
    font-variant: normal;
    background: #fff;
    text-shadow:0px 0px 1px rgba(54, 98, 0, 0.2);
    font-weight:normal;
    text-align: center;
    border-top: #4084d0 2px solid;
}
#container .crousel-theme4 .front-pro-items{
    background: #fff;
    border: #fff 4px solid;
    padding: 3px;
}
#container .crousel-theme4 .front-pro-items:hover{
    background: rgba(240,240,240,0.5);
    border: #eee 1px solid;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(153,153,153,0.4);
    -moz-box-shadow: 0px 3px 5px 0px rgba(153,153,153,0.4);
    box-shadow: 0px 3px 5px 0px rgba(153,153,153,0.4);
}
/* carousel popup*/
.crousel-popup{}
.crousel-popup .c-content{
    background: #f9f9f9;
    border: #eee 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px; 
    border-radius: 3px;
    padding-bottom: 15px;
}
/* END */

#container .btn.cfb{
    background: #335408;
    border: #344209 1px solid;
}
#container .btn.cfb:hover{
    background: #3c6309;
}
/* front-pro-items Start --------- */
#container .front-pro-items{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
#container .front-pro-items img{
    margin: 0 auto;
}
#container .front-pro-items .itm-name{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 30px;
    padding: 6px 6px 6px 12px;
    color: #0951a2;
    background: rgba(255,255,255, 0.6);
    text-shadow:0px 0px 1px rgba(54, 98, 0, 0.4);
    background-size: 100% auto; 
    font-weight:  bold;
}
#container .front-pro-items .links{
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 0;
    text-align: right;
    color: #6e8f58;
}
#container .front-pro-items .links a{
    display: inline-block;
    margin: 0 10px 0 10px;
    color: #225003;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
#container .front-pro-items .links a:hover{
    color: #288400;
}
/* front-pro-items End ----------- */

/* front-about START ------------ */
#front-about {
    width:100%;   
    height:auto;
    border:1px solid #007ebf;
    background:#026fa7;
    padding: 35px 20px 35px 20px;
    font-size: 22px;
    color: #fff;
    line-height: 31px;
    text-align: center;
    font-variant: small-caps;
    text-shadow: 0 0 1px rgba(42, 55, 0, .3);
}
#front-about:before {
    content:"";
    border-color: #026fa7 transparent transparent transparent;
    border-style:solid;
    border-width:12px;
    width:0;
    height:0;
    position:absolute;
    bottom:-23px;
    left:50%;
    margin-left: -6px;
    z-index:1;
}
#front-about:after {
    content:"";
    border-color: #007ebf transparent transparent transparent;
    border-style:solid;
    border-width:12px;
    width:0;
    height:0;
    position:absolute;
    bottom:-24px;
    left:50%;
    margin-left: -6px;
}
#front-about .moreouter{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}
#front-about .moreouter .more{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
    width: auto;
    height: auto;
    overflow: hidden;
    z-index: 4;
}
#front-about a{
    color: #fff;
    text-decoration: none;
}
#front-about a:hover{
    color: #081000;
}
/* front-about END ------------ */

.front-services .img-border{
    border: #d5e0ed 2px solid;
}
.front-services a h3{
    font-size: 18px;
    text-decoration: none;
    color: #0f81e1;
    padding: 10px 0 8px 0;
}
.front-services :hover h3, .front-services a:hover{
    text-decoration: none !important;
    color: #2098d1;
}
.front-points .icon{
    max-width: 80px;
    max-height: 80px;
    color: #fff;
    text-align: center;
    position: relative;
}
.front-points .icon span{
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
    line-height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    z-index: 3;
}
.front-points h2, .common-block .front-points h2{
    font-size: 18px;
    color: #4d250c;
    font-variant: small-caps;
    font-weight: bold;
    text-align: left;
}
.front-points .descp{
    font-size: 14px;
    line-height: 18px;
    color: #464646;
    text-align: justify;

    -moz-text-align-last: right;
    -webkit-text-align-last:justify; /*not implemented yet, and will not be */
    text-align-last: justify; /*IE*/
}
.front-points .descp:after{
    content: "";
    display: inline-block;
    width: 100%;
}
/* Front welcome STRAT ----------- */
.front-welcome{
    color: #333;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}
.front-welcome p, .front-welcome br{
    margin-bottom: 10px;
}
.front-welcome h3{
    color: #2469af;
    font-size: 19px;
    font-weight: bold;
    text-shadow: 0 0 1px rgba(24, 60, 0, .3);
}
.front-welcome a , .front-img-box a{
    font-size: 13px;
    color: #0f81e1;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.front-welcome a:hover, .front-img-box a:hover{
    color: #1f6bac;
}

/* Front welcome END ----------- */
.front-img-box{
    position: relative;
}
.front-img-box .label-name{
    min-width: 30%;
    position: absolute;
    left: 28px;
    top: 15px;
    z-index: 3;
    background: rgba(255,255,255, 0.90);
    padding: 8px 10px 8px 15px;
    color: #333;
    text-shadow: 0 0 1px rgba(0, 109, 200, .4);
    font-size: 16px;
    -webkit-border-radius:0 3px 3px 0;
    -moz-border-radius:0 3px 3px 0;
    border-radius:0 3px 3px 0;
}
.front-img-box img{
    border: #c0c7cd 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px; 
    border-radius: 3px;
    margin-bottom: 10px;
}
.front-img-box .dscp-box{
    text-align: justify;
    font-size: 13px;
    line-height: 22px;
}

/* product display */
.panel-prd-box{
    width:100%;
    height:auto;
    overflow:hidden;
    position:relative;
    display:block;
    border:#bfd5e5 1px solid;
    border-bottom-width: 8px;
    /*    -webkit-border-radius: 3px;
        -moz-border-radius: 3px; 
        border-radius: 3px;*/
    padding: 5px 5px 10px 5px;
}

.panel-prd-box .imgbox{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}	
.panel-prd-box .imgbox img{
    margin: 0 auto;
}
.panel-prd-box h2{
    font-size: 14px;
    line-height: 22px;
    min-height: 44px;
    text-align: center !important;
    margin: 10px 0 20px 0;
}
.panel-prd-box .input-group-addon{
    background: #ebd6c0;
    border: none;
    padding-left: 8px;
    padding-right: 8px;
}
.panel-prd-box .input-group-addon select{
    padding: 0;
    background: #f3eee9;
    border: none;
}

.breadcrumb{
    background: #b1cadd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.breadcrumb a{
    color: #2c4d66;
}
.label-default.prd, a .label-default.prd{
    background: #f3eee9;
    color: #93735b;
    text-decoration: none;
    font-weight: normal;
    line-height: 28px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: #eee5dc 1px solid;
}
a:hover .label-default.prd, .label-default.prd:hover{
    background: #ebd7c0;
    color: #555;
    text-decoration: none !important;
}
ul.pagination li a{
    border-radius:0 !important;	
    -moz-border-radius:0 !important;
    -webkit-border-radius:0 !important;
}
.cart{
    width:96%;
    height:auto;
    overflow:hidden;
    display:inline-block;
}

/** itmdetails ----------------------------------------- */
#container .itmdetails{
    position:relative;
    color:#444;
    line-height:22px;
    font-size:13px;
    text-align: justify;
    word-wrap: break-word;
}
.itmdetails h1{
    font-size:20px;
}
.itmdetails .feature-img{
    position: relative;
    display: block;
    border:#ddd 1px solid;
    padding: 1px !important;
}
.itmdetails .feature-img img{
    margin: 0 auto;
    display: block;
    padding:0;
}
.itmdetails .itm-descp{

}
.itmdetails table {
    border-collapse:collapse;
}
.itmdetails img{
    padding:2px;
    display:block;
}
#prd-gallery img{
    border:1px solid white;
}
#prd-gallery .active img{
    border:1px solid #6da3e1 !important;
}
.nopadding{
    padding: 0;
}
.noborder{
    border: 0;
}
.addthis_default_style{
    clear:left;
    width:auto;
    float:left;
    display:block;
    margin:40px 0 0 0;
}
/*  --------------------------------------- */
/* itmdetails Carousel STRAT ----------- */
#container .itmdetails .front-pro-items{
}
#container .front-pro-items img{
}
#container .itmdetails .front-pro-items .itm-name{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 6px 6px 12px;
    color: #333;
    text-shadow:0px 0px 1px rgba(60, 60, 60, 0.3);
    background: url(../images/category_name_back-item.png) 0 0 repeat-y;
    background-size: 100% auto;
    font-weight: normal;
}
#container .front-pro-items .links{
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 0;
    text-align: right;
    color: #6e8f58;
}
#container .front-pro-items .links a{
    display: inline-block;
    margin: 0 10px 0 10px;
    color: #225003;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
#container .front-pro-items .links a:hover{
    color: #288400;
}
#container .front-pro-items .btn{
    background: none;
    border: none;
    color: #ba680f;
}
#container .front-pro-items .btn:hover{
    background: none;
    border: none;
    color: #f6993f;
}
/* itmdetails Carousel END ----------- */
/*  itmdetails END --------------------------------------- */
.about-us .cop-family h4, .about-us .cop-family  h5{
    text-align: center;
}
.about-us .cop-family h4{
    color: #795d4d;
    font-weight: bold;
}
.about-us .cop-family .name{
    color: #283127;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}
.about-us .cop-family img{
    margin: 0 auto;
}
.about-us .about-dr h4{
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
.about-us .about-dr h5{
    font-size: 15px;
    line-height: 18px;
}
.about-us .about-dr img {
    max-width: 125px;
    display: inline-block;
    margin: 4px 10px 2px 0;
}

/* common-block END ----------- */
.nav-style-custom .nav-tabs{
    border: none;
    background: #b9cde8;
    background: -moz-linear-gradient(left,  #ffffff 0%, #b9cde8 50%, #ffffff 100%);
    background: -webkit-linear-gradient(left,  #ffffff 0%,#b9cde8 50%,#ffffff 100%);
    background: linear-gradient(to right,  #ffffff 0%,#b9cde8 50%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );

}
.nav-style-custom ul{
    background: #fff;
    -webkit-box-shadow:inset 0px 0px 0px 10px #fff;
    -moz-box-shadow:inset 0px 0px 0px 10px #fff;
    box-shadow:inset 0px 0px 0px 10px #fff;
}
.nav-style-custom ul.nav-tabs{
    text-align: center !important;
    padding: 0 !important;
    font-size: 0; /* inline-block property containg white spaces between divs,li. this will remove any white space*/
}
.nav-style-custom .nav-tabs > li{
    width: auto;
    float: none !important;
    display:inline-block !important;
    *display:inline; /*IE7*/
    *zoom:1; /*IE7*/
    text-align: center;
    margin: 0 !important;
    margin-right: 2px !important;
    background: none;
    border: transparent 1px solid;
    border-right-width: 0px;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
    background: #0966a7;
}
.nav-style-custom .nav-tabs > li br{
    margin: 0;
    padding: 0;
}
.nav-style-custom .nav-tabs > li span{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
    color: #fff;
}
.nav-style-custom .nav-tabs > li.last{
    border-right-width: 1px;
}
.nav-style-custom .nav-tabs > li a{
    background: none !important;
    border: none !important;
    outline: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
    color: #fff;
    padding: 5px 10px 5px 10px;
}
.nav-style-custom .nav-tabs > li:hover, 
.nav-style-custom .nav-tabs > li:hover a{
    background: #02397e;
    color: #fff;
}
.nav-style-custom .nav-tabs > li:hover a{
    border: none;
}
.nav-style-custom .nav-tabs > li.active span, 
.nav-style-custom .nav-tabs > li:hover span{
    color: #fff;
}
.nav-style-custom .nav-tabs > li.active a{
    background: #02397e;
    color: #fff;

}
.nav-style-custom .nav-tabs > li.active{
    background: #02397e;
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
    border-color: #002d64;
}
.nav-style-custom .nav-tabs > li.active a:hover{
    background: none; 
    border: none;
    color: #fff;
}
.nav-style-custom .nav-tabs > li.active:hover{
    background: #02397e;
}
.nav-style-custom .nav-tabs > li.active:before {
    content:"";
    border-color: #02397e transparent transparent transparent;
    border-style:solid;
    border-width:10px;
    width:0;
    height:0;
    position:absolute;
    bottom:-19px;
    left:50%;
    margin-left: -10px;
    z-index:0;
}
.nav-style-custom .nav-tabs > li.active:after {
    content:"";
    border-color: #02397e transparent transparent transparent;
    border-style:solid;
    border-width:10px;
    width:0;
    height:0;
    position:absolute;
    bottom:-20px;
    left:50%;
    margin-left: -10px;
}

.nav-style-custom .tab-content{
    font-size: 14px;
    color: #444;
    line-height: 24px;
}
.nav-style-custom .tab-content ul{
    padding-left: 25px;
}
.tab-content h3{
    color: #333;
    margin: 15px 0 15px 0;
    text-align: center;
    text-transform: uppercase;
}
.nav-style-custom .tab-content .img-border{
}
.nav-style-custom .tab-content table{
    font-size: 14px;
    word-wrap: break-word;
}
.nav-style-custom .tab-content p{
    margin-top: 10px;
}


.get-quote{}
.get-quote h2, .get-quote h3, .get-quote h4{
    text-align: center;
    color: #fff;
}

/** news-events ------------------- */
.stButton .chicklets, .stButton .chicklets.email{
    color: #888;
}
.news-events{

}
.news-events .newsbox{
    padding-bottom: 25px;
    border: #fff 1px solid;
    border-bottom:#ccc 1px dashed;
}
.news-events .newsbox:hover{
    background: #eee;
    border:#ddd 1px solid;
}
.news-events .newsbox h2{
    font-size:15px;
    text-align:left;
    font-weight: bold;
    color: #555;
}
.newsbox .news-content{
    width:98%;
    height:auto;
    overflow:hidden;
    display:block;
    margin: 0 auto;
    font-size:13px;
    line-height:20px;
    color:#666;
    text-align:justify;
}
.newsbox .news-content br{
    margin-bottom:10px;
}
.newsbox .news-content .datetag{
    font-size:10px;
    color:#999;
    font-style:italic;
    text-align: right;
    margin-right: 2px;
}
.newsbox .news-content ul, .newsbox .news-content ol{
    padding-left: 15px;
    margin-left: 10px;
}
.newsbox .img{ 
    margin:10px 0 10px 0;
}
/*  --------------------------------------- */
/** Contact Start */
#contact-us{
}
#contact-us .contact-info ul{}
#contact-us .contact-info ul li{
    margin-bottom: 5%;
}
#contact-us .contact-info ul li label {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    font-weight: bold;
}
#contact-us .contact-info ul li.h1{
    font-size: 15px;
    color: #4b718e;
}
#contact-us .contact-info ul li label>span {
    width: 20px;
    display: inline-block;
    margin:0 0 0 12px;
}
#contact-us .contact-info ul li>span {
    width: 100%;
    height: auto;
    display: block;
    font-size: 13px;
    line-height: 20px;
    display: inline-block;
    color: #5f5f5f;
    margin:0 0 0 32px;
}
#contact-us .contact-info ul li>span>a {
    text-decoration: none;
    color: #5f5f5f;
    font-weight: 500;
}
#contact-us .contact-info ul li>span>a:hover {color: #333;}

#map {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    border: #EEE 2px solid;
}

#contact-us .form label{
    margin: 10px 0 5px 0;
}

#contact-us textarea{
    min-height:140px;
    /* resize:none;*/
}
#contact-us .btn-success{
    background:#1b3500;
    border: #224300 1px solid;
}
#contact-us .btn-success:hover{
    background:#2a5400
}
p#SkypeButton_Call_paraElement{
    width: 100% !important;
    height: 40px;
    position: relative;
}
#SkypeButton_Call img{
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: 0 !important;
}

/* front-about START ------------ */
.contact-about {
    width:100%;   
    height:auto;
    border-bottom:1px solid #ccc;
    background:#fff;
    padding: 25px 20px 25px 20px;
    font-size: 23px;
    color: #666;
    line-height: 31px;
    text-align: justify;
    font-variant: small-caps;
}
.contact-about:before {
    content:"";
    border-color: #fff transparent transparent transparent;
    border-style:solid;
    border-width:12px;
    width:0;
    height:0;
    position:absolute;
    bottom:-23px;
    left:50%;
    margin-left: -6px;
    z-index:1;
}
.contact-about:after {
    content:"";
    border-color: #ccc transparent transparent transparent;
    border-style:solid;
    border-width:12px;
    width:0;
    height:0;
    position:absolute;
    bottom:-24px;
    left:50%;
    margin-left: -6px;
}

.contact-about h1 {
    text-align: center;
    font-weight: bold;
    font-size: 34px !important;
    color: #0d6bb3;
    text-shadow:0px 0px 1px rgba(50, 50, 50, 0.4);
}
.contact-about h3, .contact-about h4{
    text-align: center;
    text-shadow:0px 0px 1px rgba(40, 40, 40, 0.3);
}
.contact-about h4{
    color: #777;
    font-weight: bold;
    text-shadow: none;
}
.contact-about a{
    color: #666;
    text-decoration: none;
}
.contact-about .btn{
    float:none;
    margin: 0 auto;
    display: block;
}
/** Contact End */
/* footer --------------------------------------- */
#footer{
    width:100%;
    height:auto;
    overflow:hidden;
    display:block;
    margin:0 auto;
    border-top:#001937 1px solid;
    background:#0d3567;
}
#footer .side-menu ul{
    width:100%;
    height:auto;
    overflow:hidden;
    margin: 15px 0 15px 0;
    display: block;
}
#footer .side-menu ul.dark-color, #footer .side-menu.dark-color{
    background: #011841;
}
#footer .side-menu ul.last{
    border-right:none;
    margin:10px 0 10px 0.5%;
}
#footer .side-menu ul li{
    width:96%;
    height:auto;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom:5px;
    padding-left:4%;
    font-size:13px;
    line-height:20px;
    color:#eee;
    text-shadow:0 0 1px rgba(50, 50, 50,.1);
}
#footer .side-menu ul li a{
    color:#eee;
    text-decoration: none;
}
#footer .side-menu ul li a:hover{
    color:#6290c8;
}
#footer .side-menu ul li.h1{
    font-size: 15px;
    line-height:22px;
    color:#fff;
    text-shadow:0 0 1px rgba(50, 50, 50,.2);
    padding-left:0;
    font-weight: bold;
    margin-top: 30px;
}
#footer .side-menu ul li.h2{
    font-size: 14px;
    line-height:18px;
    color:#c0d0e4;
    text-shadow:0 0 1px rgba(50, 50, 50,.2);
    padding-left:0;
    font-weight: bold;
    margin-top: 15px !important;
}
#footer .side-menu ul li span{
    font-size: 13px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    float: left;
}
#footer .side-menu ul li span.d-line{
    height: 36px;
}
#footer .side-menu ul li .glyphicons, #footer .side-menu ul li label {
    float: left;
}

#footer .copyright{
    width:100%;
    background: #000d23;
    overflow:hidden;
    font-size:12px;
    color:#999;
    text-shadow:0 0 1px rgba(50, 50, 50,.1);
    line-height:25px;
}
#footer .copyright .text-right{
    text-align: right;
}
#footer .copyright a{
    color: #ff0000;
    text-shadow:0 0 1px rgba(236,0,0,.1);
    text-decoration: none;
}
#footer .copyright a:hover{
    color: #ff1919;
}
/* --------------------------------------- */


@media (min-width: 1200px) {
    .col-lg-pdn-left-0{
        padding-left:0 !important;
    }
    .col-lg-pdn-right-0{
        padding-right:0 !important;
    }
    .col-lg-pdn-both-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }

}
@media (min-width: 992px) and (max-width: 1199px) {
    .col-md-pdn-left-0{
        padding-left:0 !important;
    }
    .col-md-pdn-right-0{
        padding-right:0 !important;
    }
    .col-md-pdn-both-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    #header .sitename{
        font-size:22px;
        line-height: 26px;
    }

    #wrapper #front-slider.padding{
        padding-bottom: 90px;
    }
    .col-sm-offset-4-5{
        float: left;
        margin-left: 37.5%;
    }  
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-sm-pdn-left-0{
        padding-left:0 !important;
    }
    .col-sm-pdn-right-0{
        padding-right:0 !important;
    }
    .col-sm-pdn-both-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }


    .top-abs-logo{
        padding: 15px 15px 15px 15px;
    }
    .navbar {
        font-size: 13px;
    }
    #header .sitename{
        font-size:22px;
        line-height: 24px;
    }


    #feature-box {
        font-size: 20px;
        line-height: 26px;
    }
    .front-img-box .label-name{
        min-width: 40%;
        font-size: 14px;
    }

    .col-sm-offset-4-5{
        float: left;
        margin-left: 37.5%;
    }
}
@media (min-width: 768px) {
    .navbar-collapse{
        padding-left: 0;
    }
    .one .all-wrapper{
        top: 85% !important;
    }
    .modal-dialog {
        width: 700px;
        margin: 30px auto;
    }

}
@media (max-width: 767px) {
    .col-xs-pdn-left-0{
        padding-left:0 !important;
    }
    #wrapper #container.color, #wrapper .others.color, #wrapper .container-fluid.color, #wrapper .container.color{
        background:#fff;
    }
    #wrapper #container.color2, #wrapper .others.color2, #wrapper .container-fluid.color2, #wrapper .container.color2{
        background:#fff;
    }
    /* Menu tweak Start ---------- */
    .menu-top .navbar-nav>li {
        width: 100% !important;
        float: left;
        display: block;
        border-bottom: #111 1px dotted;
    }
    .menu-top .navbar-nav>li.last {
        border-bottom: none;
    }
    .menu-top .navbar-nav .open .dropdown-menu ,  .menu-top .navbar-nav .dropdown-menu{
        position: static !important;
        float: none !important;
        width: 100% !important;
        background: #fff !important;
        border-radius: 0 !important;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #ddd !important;
    }
    .menu-top.megamenu .navbar-nav>li.mega-dropdown, 
    .menu-top.megamenu .navbar-nav > li.mega-dropdown.dropdown > a{
        width: 100% !important;
    }
    .navbar-fixed-bottom.megamenu .navbar-collapse, .navbar-fixed-top.megamenu .navbar-collapse {
        max-height: none !important;
    }
    .megamenu .dropdown-menu {
        position: relative !important;
    }
    .mega-dropdown-menu {
        max-height: 250px !important;
    }
    .navbar-inverse .navbar-nav > li > a {
        border-right: none;
    }
    .navbar {
        font-size: 12px;
    }
    /* Menu tweak End ---------- */
    #slider-thumbs .thumbnail{
        margin: 5px;
    }

    #wrapper #header.home{
        position: relative;
        background: #fff;
    }

    #header{
        width:100% !important;
    }
    #header .sitename{
        font-size:20px;
        line-height: 25px;
    }
    #short-links ul li a{
        font-size: 12px;
    }
    #footer .media-32, #footer .media-24{
        text-align: center;
    }
    .media-24.withlabel a{
        text-align: center;
    }
    .media-24.withlabel .media-icn{
        float: none;
        margin: 0 auto;
    }
    .one .all-wrapper{
        top: 75% !important;
    }
    .one .lefttitle{ 
        height: 100px !important;
        line-height: 100px !important; font-size: 50px !important;
    }
    .one .btn{
        height: 100px !important;
        font-size: 40px !important;
        line-height: 90px !important;
    }

    #wrapper #front-slider.padding{
        padding-bottom: 40px;
    }

    .arrow-box{
        font-size: 14px
    }

    #feature-box {
        font-size: 18px;
        line-height: 24px;
    }

    .front-points .icon{
        max-width: 60px;
        max-height: 60px;
        /*additional CSS*/
        float: right;
        margin-right: 20px;
    }
    .front-points .icon span{
        font-size: 24px;
        line-height: 26px;
        margin-left: -13px;
        margin-top: -13px;
    }

    .front-img-box .label-name{
        font-size: 15px;
    }

    .common-block h1, .front-welcome h3 {
        font-size: 20px;
        text-align: left;
    }

    .get-quote h2{
        font-size: 22px;
    }
    .get-quote h4{
        font-size: 15px;
        line-height: 22px;
    }

    #footer .side-menu ul{
        margin-top: 2%;
    }
    #footer .side-menu ul li{
        text-align: center;
    }
    #footer .side-menu ul li span{
        display: none;
    }
    #footer .side-menu ul li{
        padding-left: 0;
    }
    #footer .copyright{
        /* for addthis mobile icons */
        padding-bottom: 45px;
    }

}

@media (min-width: 479px) and (max-width: 767px){
    .col-xs-pdn-left-0{
        padding-left:0 !important;
    }
    .col-xs-pdn-right-0{
        padding-right:0 !important;
    }
    .col-xs-pdn-both-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .col-xs-text-center{
        text-align: center !important;
    }
    .col-xs-text-center img{
        display: block !important;
        margin: 0 auto !important;
    }

}

@media (max-width: 480px) {
    .col-xxs-pdn-left-0{
        padding-left:0 !important;
    }
    .col-xxs-pdn-right-0{
        padding-right:0 !important;
    }
    .col-xxs-pdn-both-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .col-xxs-offset-0{
        margin-left: 0 !important;
    }
    .col-xxs-full-width{
        width: 100% !important;
    }
    .hidden-xss{
        display: none !important;
    }
    .visible-xss{
        display: block !important;
    }
    .col-xxs-text-center{
        text-align: center !important;
    }
    .col-xxs-text-center img{
        display: block;
        margin: 0 auto !important;
    }

    .navbar-brand{
        display: block;
    }
    #short-links {
        text-align: center;
        margin: 15px 0 10px 0 !important;
    }
    #header .sitename{
        font-size:18px;
        line-height: 22px;
    }
    .hotline{
        font-size:17px;
        line-height: 22px;
    }
    .hotline .text{
        font-size: 18px;
    }
    #header .media-32{
        text-align: center;
    }

    #wrapper #front-slider.padding{
        padding-bottom: 30px;
    }
    .arrow-box, .arrow-box.light {
        font-size: 13px;
    }
    .arrow-box.right:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(116, 92, 77, 0);
        border-top-color: #4c7437;
        border-width: 10px;
        margin-left: -10px;
        margin-top: auto !important;
    }

    #container .front-pro-items .itm-name{
        font-size: 16px;
        line-height: 24px;
    }

    .media-64.theme-1 .media-icn{
        background:url(../images/social_icon_48x48.png);
    }
    .media-64 .media-icn{
        width:48px;
        height:48px;
    }
    .media-64.withlabel a{
        width: 100%;
        display: block;
        text-align: left;
        line-height: 48px;
    }
    .media-64.withlabel .media-icn{
        width:48px;
        height:48px;
    }
    .media-64 .media-icn.fb{
        background-position: 0 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.fb{
        background-position: 0 -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.fb:hover, .media-64 a:hover .media-icn.fb{
        background-position: 0 -48px;
    }
    .media-64.reverse .media-icn.fb:hover, .media-64.reverse a:hover .media-icn.fb{
        background-position: 0 0;
    }
    .media-64 .media-icn.tw{
        background-position: -48px 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.tw{
        background-position: -48px -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.tw:hover, .media-64 a:hover .media-icn.tw{
        background-position: -48px -48px;
    }
    .media-64.reverse .media-icn.tw:hover, .media-64.reverse a:hover .media-icn.tw{
        background-position: -48px 0;
    }
    .media-64 .media-icn.gp{
        background-position: -96px 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.gp{
        background-position: -96px -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.gp:hover, .media-64 a:hover .media-icn.gp{
        background-position:-96px -48px;
    }
    .media-64.reverse .media-icn.gp:hover, .media-64.reverse a:hover .media-icn.gp{
        background-position:-96px 0;
    }
    .media-64 .media-icn.ut{
        background-position: -144px 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.ut{
        background-position: -144px -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.ut:hover, .media-64 a:hover .media-icn.ut{
        background-position:-144px -48px;
    }
    .media-64.reverse .media-icn.ut:hover, .media-64.reverse a:hover .media-icn.ut{
        background-position: -144px 0;
    }
    .media-64 .media-icn.pr{
        background-position: -192px 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.pr{
        background-position: -192px -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.pr:hover, .media-64 a:hover .media-icn.pr{
        background-position:-192px -48px;
    }
    .media-64.reverse .media-icn.pr:hover, .media-64.reverse a:hover .media-icn.pr{
        background-position: -192px 0;
    }
    .media-64 .media-icn.li{
        background-position: -240px 0;
        background-repeat: no-repeat;
    }
    .media-64.reverse .media-icn.li{
        background-position: -240px -48px;
        background-repeat: no-repeat;
    }
    .media-64 .media-icn.li:hover, .media-64 a:hover .media-icn.li{
        background-position:-240px -48px;
    }
    .media-64.reverse .media-icn.li:hover, .media-64.reverse a:hover .media-icn.li{
        background-position: -240px 0;
    }

    #feature-box {
        font-size: 16px;
        line-height: 22px;
    }
    .front-points .icon{
        /*additional CSS*/
        float: none !important;
        margin-right: 0 !important;
    }
    .front-points .icon span{
        font-size: 16px;
        line-height: 20px;
        margin-left: -9px;
        margin-top: -10px;
    }
    .front-points h2{
        font-size: 18px !important;
    }
    .front-points .descp{
        font-size: 13px;
        line-height: 17px;
    }
    .front-welcome h3{
        font-size: 17px;
        text-align: center;
    }

    .front-img-box .label-name{
        min-width: 40%;
        font-size: 15px;
    }

    .contact-about h1 {
        font-size: 24px !important;
        text-shadow:0px 0px 1px rgba(50, 50, 50, 0.3);
    }
    .contact-about h3, .contact-about h4{
        font-size: 17px;
        text-align: center;
    }
    .contact-about h4{
        font-size: 16px;
        font-weight: bold;
    }

    .common-block{
        font-size: 13px;
        line-height: 20px;
    }
    .about-dr{
        font-size: 13px;
    }
    .common-block h1{
        font-size: 18px;
        text-align: center;
    }

    /* media share button */
    .stButton .chicklets{
        font-size: 0px !important;
    }
    .stButton .chicklets.email{
        display: none;
    }
}

/* Megamenu Start --------------------------- */
.menu-top.megamenu .navbar, .menu-top.megamenu .navbar-inverse {
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
}
.menu-top.megamenu .navbar-nav>li>.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0; 
    border-radius: 0;
}
.mega-dropdown {
    position: static !important;
    display: block;
}
.mega-dropdown-menu {
    padding:40px 30px 40px 30px !important;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: none;
    display: none;
    background: #fff !important;
    -webkit-box-shadow: none;
    border-top: #eee 1px solid;
    margin-top: -1px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
}
.mega-dropdown-menu > li > ul {
    padding: 0;
    margin: 0;
}
.mega-dropdown-menu > li > ul.bg1 {
    background: #ecf8ff;
    border: #e0e9ef 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px; 
    border-radius: 3px;
}
.mega-dropdown-menu > li > ul > li {
    list-style: none;
    word-break:break-all;
    text-transform: none;
}
.mega-dropdown-menu > li > ul > li > a {
    display: block;
    padding: 4px 10px 4px 10px;
    clear: both;
    font-weight: normal;
    color: #777;
    white-space: normal;
    border-left: transparent 3px solid;
}
.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
    text-decoration: none;
    color: #444;
}
.mega-dropdown-menu .dropdown-header , .mega-dropdown-menu .dropdown-header a{
    color: #222;
    font-size: 14px;
    padding: 5px 0 5px 3px;
    line-height: 18px;
    font-weight:bold;
}
.mega-dropdown-menu .dropdown-header a{
    color: #265595;
}
.mega-dropdown-menu form {
    margin:3px 20px;
}
.mega-dropdown-menu .form-group {
    margin-bottom: 3px;
}
/* End --------------------------- */
/* code for bootstrap level 2 and 3 menu --------------------------- */
.menu-top .dropdown:hover .dropdown-menu {
    margin-top: 0; /* remove the gap so it doesn't close */
}

.menu-top .dropdown-menu > li > a{
    color: #444 !important;
    padding: 6px 10px 6px 10px;
    border-left: transparent 3px solid;
}
.mega-dropdown-menu > li > ul > li > a:hover,
.menu-top .dropdown-menu > li > a:hover {
    background: #add0ec !important;
    border-left: #75a9d1 3px solid;
}
.menu-top .dropdown-submenu {
    position: relative;
}
.menu-top .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.menu-top .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.menu-top .dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.menu-top .dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/* ---------------------- --------------------------- */