/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  border: 0;
  line-height: 1;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  vertical-align: top;
}
/* Desktop Specific Media Query */
/* Tablets Specific Media Query */
/* Mobile Specific Media Query */
/* Pre-Define Color Style */
/*social Icons Colors */
/* Pre-Define Font Size */
/* Font Weight */
/* Floats */
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
/* Text Align */
/* Position */
/* Font Family */
html,
body {
  height: 100%;
}
body {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container:before,
.container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  .container {
    width: 90%;
  }
}
@media only screen and (max-width:  767px ) {
  .container {
    width: 90%;
  }
}
p {
  margin-bottom: 20px;
  text-align: left;
}
p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  color: #011637;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover {
  color: #990000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}
strong {
  font-weight: 700;
}
a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hideOverflow {
  overflow: hidden;
}
.overlayLoading {
  position: fixed;
  left: -50px;
  top: -50px;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.LoadingIcon {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #808080;
  border-radius: 25px;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  position: fixed;
  left: 66%;
  top: 40%;
  z-index: 999999999;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mobileHeader {
  display: none;
  height: 50px;
  background-color: #011637;
  border-top: 3px solid #0b3f90;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .mobileHeader {
    display: block;
  }
}
.mobileHeader .menubarlink {
  height: 47px;
  width: 25px;
  display: inline-block;
  vertical-align: top;
}
.mobileHeader .menubarlink > a {
  display: block;
  padding: 12px 0px;
}
.mobileHeader .menubarlink > a span {
  display: block;
  height: 3px;
  width: 100%;
  margin-bottom: 6px;
  background-color: #ffffff;
}
.mobileHeader .menubarlink > a span:last-child {
  margin-bottom: 0px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  top: 0px;
  z-index: 9;
  background-color: rgba(1, 22, 55, 0.95);
  color: #ffffff;
  font-size: 16px;
  padding-top: 50px;
  left: -100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobileHeader .menubarlink .mobileSubmenucontainer.openMobileSubmenu {
  left: 0%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer.openMobileSubmenu > ul.closeIconlink {
  left: 0;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul.closeIconlink {
  background-color: #010c1e;
  position: fixed;
  top: 0px;
  width: 100%;
  left: -100%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul.closeIconlink i {
  float: right;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li {
  text-transform: uppercase;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li > a {
  padding: 17px 5%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li > a .fa-angle-down {
  float: right;
  font-weight: 600;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li .submenu {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  max-height: 0;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li .submenu li {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 5%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li .submenu li a {
  font-weight: 400;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li .submenu li i {
  float: right;
}
.mobileHeader .menubarlink .mobileSubmenucontainer > ul > li .submenu.submenuOpened {
  max-height: 500px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob {
  margin-top: 0px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > span {
  display: block;
  padding: 17px 5% 0px 5%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > span#flagSelector {
  padding-bottom: 17px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > span img {
  margin-right: 10px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > span i {
  float: right;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > .flagSelectorBox > div span {
  display: block;
  padding: 17px 5% 0px 5%;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > .flagSelectorBox > div span#flagSelector {
  padding-bottom: 17px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > .flagSelectorBox > div span img {
  margin-right: 10px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob > .flagSelectorBox > div span i {
  float: right;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob .flagSelectorBox {
  overflow: hidden;
  max-height: 0px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob .flagSelectorBox.openFlagselector {
  max-height: 100px;
  margin-top: -10px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer .languagesSelectionmob .flagSelectorBox div#frlang {
  padding-bottom: 17px;
}
.mobileHeader .menubarlink .mobileSubmenucontainer li {
  list-style-type: none;
}
.mobileHeader .menubarlink .mobileSubmenucontainer a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 10px 0px;
}
.mobileHeader .dateandtimeloc {
  width: calc(100% - 25px);
  display: inline-block;
  vertical-align: top;
  color: #ffffff;
  padding: 16px 0px;
  font-size: 12px;
}
.subHeader {
  background-color: #f2f2f2;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .subHeader {
    display: none;
  }
}
.subHeader aside {
  width: 58.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  text-align: left;
}
.subHeader aside:last-child {
  margin-right: 0px;
}
.subHeader aside:last-child {
  width: 41.66666667%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  text-align: right;
}
.subHeader aside:last-child:last-child {
  margin-right: 0px;
}
.subHeader aside:last-child ul li {
  margin-right: 0px;
  margin-left: 30px;
}
.subHeader ul {
  font-size: 12px;
  text-transform: uppercase;
}
.subHeader ul li {
  display: inline-block;
  margin-right: 30px;
  padding: 20px 0px;
}
.subHeader ul li > a {
  display: block;
  text-decoration: none;
  color: #000000;
  position: relative;
}
.subHeader ul li > a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(153, 0, 0, 0.2);
  position: absolute;
  top: -30px;
  left: 0px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.subHeader ul li > a:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(153, 0, 0, 0.2);
  position: absolute;
  bottom: -30px;
  left: 0px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.subHeader ul li > a:hover,
.subHeader ul li > a.seletedlink {
  color: #990000;
}
.subHeader ul li > a:hover:before,
.subHeader ul li > a.seletedlink:before {
  opacity: 1;
  top: -10px;
}
.subHeader ul li > a:hover:after,
.subHeader ul li > a.seletedlink:after {
  opacity: 1;
  bottom: -10px;
}
.subHeader ul li.dateandtime {
  text-transform: capitalize;
}
.subHeader ul li.flagCombobox {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.subHeader ul li.flagCombobox:after {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  height: 100%;
  left: 0px;
  top: 0px;
  content: '';
  z-index: -1;
}
.subHeader ul li.flagCombobox span > img {
  margin-right: 10px;
}
.subHeader ul li.flagCombobox span > i {
  margin-left: 20px;
}
.subHeader ul li.flagCombobox div.flagSelectorBox {
  position: absolute;
  width: 100%;
  left: 0px;
  text-align: center;
  top: 0px;
  padding: 12px 0px;
  background-color: #011637;
  color: #ffffff;
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
  -moz-transform: translate(0px, -100%);
  -o-transform: translate(0px, -100%);
  -ms-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.subHeader ul li.flagCombobox div.flagSelectorBox.activelangbox {
  opacity: 1;
  -webkit-transform: translate(0px, 0%);
  -moz-transform: translate(0px, 0%);
  -o-transform: translate(0px, 0%);
  -ms-transform: translate(0px, 0%);
  transform: translate(0px, 0%);
}
.subHeader ul li.flagCombobox div.flagSelectorBox div {
  padding: 10px 0px;
}
header {
  padding: 15px 0px;
  background-image: url(../images/header-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0a3373;
}
header aside {
  width: 25%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  text-align: left;
}
header aside:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  header aside {
    width: 22%;
    float: left;
    padding: 0;
    margin: 0 4% 0 0;
  }
  header aside:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  header aside {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    text-align: center;
  }
  header aside:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  header aside:first-child img {
    max-width: 35%;
  }
}
header aside:last-child {
  width: 75%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  text-align: right;
}
header aside:last-child:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  header aside:last-child {
    width: 74%;
    float: left;
    padding: 0;
    margin: 0 4% 0 0;
  }
  header aside:last-child:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  header aside:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    text-align: center;
    margin-top: 20px;
  }
  header aside:last-child:last-child {
    margin-right: 0px;
  }
}
nav {
  background-color: #011637;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  nav {
    display: none;
  }
}
nav ul.mainMenu {
  width: 100%;
  position: relative;
}
nav ul.mainMenu > li {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 1px;
}
nav ul.mainMenu > li > a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0px 20px;
}
nav ul.mainMenu > li > a:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  left: 0px;
  top: 50px;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul.mainMenu > li > a span {
  position: relative;
  display: inline-block;
  padding: 17px 0px 17px 0px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav ul.mainMenu > li > a span:before {
  position: absolute;
  padding: 17px 0px 17px 0px;
  top: 100%;
  content: attr(data-hover);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
nav ul.mainMenu > li > a.activeMenu {
  color: #011637;
}
nav ul.mainMenu > li > a.activeMenu:after {
  top: 0px;
}
nav ul.mainMenu > li > a.activeMenu span {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
nav ul.mainMenu > li > a i {
  vertical-align: top;
  margin-left: 0px;
  padding: 17px 0px 17px 10px;
}
nav ul.mainMenu > li.magnifyingGlass {
  float: right;
  margin-right: 0px;
}
nav ul.mainMenu > li.magnifyingGlass a {
  background-color: rgba(255, 255, 255, 0.2);
}
nav ul.mainMenu > li.magnifyingGlass a i {
  margin-left: 0px;
  padding-left: 0px;
}
nav ul.mainMenu > li.magnifyingGlass a i.fa-angle-down {
  display: none;
}
nav ul.mainMenu > li.magnifyingGlass .submenu {
  left: auto;
  right: 0px;
  width: 500px;
  padding: 30px;
}
nav ul.mainMenu > li.magnifyingGlass .submenu .searchtext {
  display: inline-block;
  width: calc(100% - 100px);
  padding: 15px 10px;
  border: #cccccc 1px solid;
}
nav ul.mainMenu > li.magnifyingGlass .submenu .searchtext:focus {
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
nav ul.mainMenu > li.magnifyingGlass .submenu .searchtext:focus + .searchbtn {
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  background-color: #011637;
  color: #ffffff;
}
nav ul.mainMenu > li.magnifyingGlass .submenu .searchbtn {
  display: inline-block;
  width: 100px;
  padding: 15px 10px;
  border: 0px;
  cursor: pointer;
  background-color: #cccccc;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul.mainMenu > li .submenu {
  position: absolute;
  width: 270px;
  left: 0px;
  top: 48px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-top: 0px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(400px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(400px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(400px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(400px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(400px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
}
nav ul.mainMenu > li .submenu.menuOpen {
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
nav ul.mainMenu > li .submenu ul {
  padding: 0px 0px;
  font-size: 13px;
}
nav ul.mainMenu > li .submenu ul li {
  list-style-type: none;
  border-bottom: #f2f2f2 1px solid;
}
nav ul.mainMenu > li .submenu ul li a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: #333333;
  position: relative;
  z-index: 9;
  overflow-x: hidden;
}
nav ul.mainMenu > li .submenu ul li a i {
  float: right;
  -webkit-transform: translate(-20px, 0px);
  -moz-transform: translate(-20px, 0px);
  -o-transform: translate(-20px, 0px);
  -ms-transform: translate(-20px, 0px);
  transform: translate(-20px, 0px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul.mainMenu > li .submenu ul li a:after {
  position: absolute;
  content: '';
  width: 7px;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #dce9fe;
  z-index: -1;
  -webkit-transform: translate(-7px, 0px);
  -moz-transform: translate(-7px, 0px);
  -o-transform: translate(-7px, 0px);
  -ms-transform: translate(-7px, 0px);
  transform: translate(-7px, 0px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul.mainMenu > li .submenu ul li a:hover,
nav ul.mainMenu > li .submenu ul li a.activeSubmenu {
  color: #011637;
  padding-left: 20px;
}
nav ul.mainMenu > li .submenu ul li a:hover:after,
nav ul.mainMenu > li .submenu ul li a.activeSubmenu:after {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
nav ul.mainMenu > li .submenu ul li a:hover i,
nav ul.mainMenu > li .submenu ul li a.activeSubmenu i {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}
nav ul.mainMenu > li:hover .submenu {
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
nav ul.mainMenu > li:hover > a {
  color: #011637;
}
nav ul.mainMenu > li:hover > a:after {
  top: 0px;
}
nav ul.mainMenu > li:hover > a span {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
.breakingNews {
  background-color: #ffeb3b;
  padding: 10px 0px;
}
.redTheme .breakingNews {
  background-color: #990000;
}
.blueTheme .breakingNews {
  background-color: #ffeb3b;
}
.greenTheme .breakingNews {
  background-color: #ffeb3b;
}
.purpleTheme .breakingNews {
  background-color: #ffeb3b;
}
.breakingNews aside {
  display: inline-block;
  width: calc(100% - 110px);
  font-size: 12px;
  vertical-align: middle;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .breakingNews aside {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.breakingNews aside:first-child {
  width: 90px;
  background-color: #666666;
  text-align: center;
  padding: 10px 7px;
  margin-right: 20px;
  color: #ffffff;
  position: relative;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .breakingNews aside:first-child {
    overflow: visible;
  }
}
.breakingNews aside:first-child:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid #666666;
  border-bottom: 5px solid transparent;
}
.imgholder {
  background-color: skyblue;
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.authorDetailwithbars .imgholder {
  margin-bottom: 20px;
}
.imgholder a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
.imgholderVer {
  background-color: skyblue;
  position: relative;
  display: block;
  width: 100%;
  padding-top: 120.25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.authorDetailwithbars .imgholderVer {
  margin-bottom: 20px;
}
.imgholdertxt {
  display: block;
  width: 100%;
  padding-top: 20%;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .imgholdertxt.mobsizeSpacings {
    padding-top: 40%;
  }
}
.imgholdertxt span {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.homepagecontents {
  padding-top: 20px;
}
@media only screen and (max-width:  767px ) {
  .homepagecontents {
    padding-top: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  .homepagecontents .container {
    width: 100%;
  }
}
.homepagecontents aside {
  width: 50%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
.homepagecontents aside:last-child {
  margin-right: 0px;
}
.homepagecontents aside:first-child {
  padding: 0px 0px 0% 0%;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .homepagecontents aside:first-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 0.5%;
  }
  .homepagecontents aside:first-child:last-child {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .homepagecontents aside:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .homepagecontents aside:last-child:last-child {
    margin-right: 0px;
  }
}
.homepagecontents aside.slider_imageholder aside {
  padding: 0px 0px 2.25% 1.5%;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .homepagecontents aside.slider_imageholder aside {
    width: 50%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 1.5%;
  }
  .homepagecontents aside.slider_imageholder aside:last-child {
    margin-right: 0px;
  }
}
.homepagecontents aside.slider_imageholder #homeSlider .owl-pagination {
  position: absolute;
  line-height: 0;
  bottom: 15px;
  right: 15px;
}
.homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  margin-right: 5px;
}
.homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page.active {
  background-color: #ffeb3b;
}
.redTheme .homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page.active {
  background-color: #990000;
}
.blueTheme .homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page.active {
  background-color: #ffeb3b;
}
.greenTheme .homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page.active {
  background-color: #ffeb3b;
}
.purpleTheme .homepagecontents aside.slider_imageholder #homeSlider .owl-pagination .owl-page.active {
  background-color: #ffeb3b;
}
.homepagecontents aside.slider_imageholder .imgholdertxt {
  background-color: #011637;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions {
  opacity: 0;
  padding: 3%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions.activeSpancls {
  opacity: 1;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
  text-decoration: none;
  display: block;
}
.redTheme .homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions div a {
  color: #990000;
}
.blueTheme .homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.greenTheme .homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.purpleTheme .homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .slidercaptions a.auth {
  display: block;
  padding-top: 2.5%;
  text-decoration: none;
  color: #ffffff;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions {
  padding: 2% 3%;
  line-height: 1.1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
  max-height: 28px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.redTheme .homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions div a {
  color: #990000;
}
.blueTheme .homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.greenTheme .homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.purpleTheme .homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.homepagecontents aside.slider_imageholder .imgholdertxt .non-slidercaptions a.auth {
  display: block;
  padding-top: 1.2%;
  text-decoration: none;
  color: #ffffff;
}
.pageTitle {
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 30px;
}
.postsArticles aside {
  width: 70.25%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
.postsArticles aside:last-child {
  margin-right: 0px;
}
.postsArticles aside:last-child {
  width: 27.75%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
.postsArticles aside:last-child:last-child {
  margin-right: 0px;
}
.fullWidthList.postsArticles aside {
  width: 100%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
.fullWidthList.postsArticles aside:last-child {
  margin-right: 0px;
}
.fullWidthList.postsArticles aside:last-child {
  width: 100%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
.fullWidthList.postsArticles aside:last-child:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  .postsArticles aside {
    width: 66%;
    float: left;
    padding: 0;
    margin: 0 2% 0 0;
  }
  .postsArticles aside:last-child {
    margin-right: 0px;
  }
  .postsArticles aside:last-child {
    width: 32%;
    float: left;
    padding: 0;
    margin: 0 2% 0 0;
  }
  .postsArticles aside:last-child:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  .postsArticles aside {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .postsArticles aside:last-child {
    margin-right: 0px;
  }
  .postsArticles aside:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .postsArticles aside:last-child:last-child {
    margin-right: 0px;
  }
}
@media only screen and ( min-width: 1180px ) {
  .postArticles {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.postArticles > li {
  display: inline-block;
  width: 50%;
  list-style-type: none;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 30px;
  vertical-align: top;
}
.fullWidthList .postArticles > li {
  width: 33.33%;
}
@media only screen and ( min-width: 1180px ) {
  .postArticles > li:nth-last-child(2) {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .postArticles > li:nth-last-child(1) {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 20px;
  }
  .postArticles > li:nth-child(2n) {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.postArticles > li .imgholder a {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.postArticles > li .postTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #011637;
}
.postArticles > li .postTitle a {
  color: #011637;
  text-decoration: none;
}
.postArticles > li .datetimepost {
  font-size: 12px;
}
.postArticles > li .datetimepost span {
  line-height: 1;
  display: inline-block;
  vertical-align: top;
}
.postArticles > li .datetimepost .authernme {
  font-style: italic;
  font-weight: 700;
}
.postArticles > li .datetimepost .authernme a {
  color: #011637;
  text-decoration: none;
}
.postArticles > li .datetimepost .datetime {
  font-style: italic;
  color: #990000;
}
.postArticles > li .datetimepost .viewtotal {
  background-color: #999999;
  padding: 5px;
  -webkit-border-radius: 2px 2px 0px 2px;
  -moz-border-radius: 2px 2px 0px 2px;
  -ms-border-radius: 2px 2px 0px 2px;
  border-radius: 2px 2px 0px 2px;
  margin-top: -8px;
  color: #ffffff;
  float: right;
  position: relative;
}
.postArticles > li .datetimepost .viewtotal:after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -10px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 5px solid #666666;
  border-left: 0px solid #666666;
}
.postArticles > li .fullContents {
  color: #4d4d4d;
  margin-top: 20px;
  line-height: 1.5;
}
.postArticles > li .fullContents.editorCustomScroll {
  height: 180px;
}
.postArticles > li.fullWidthMidArticle {
  width: calc(100% - 20px);
  margin: 0px 0px 30px 10px;
  padding: 10px;
  background-color: #011637;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle {
    width: 100%;
    margin: 0px 0px 30px 0px;
    padding: 10px;
  }
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle {
    padding: 10px;
  }
}
.postArticles > li.fullWidthMidArticle .imgholder {
  background-size: inherit;
  padding-top: 135%;
}
.postArticles > li.fullWidthMidArticle .boxleftmiddle {
  width: 25%;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle .boxleftmiddle {
    width: 100%;
  }
}
.postArticles > li.fullWidthMidArticle .boxcontentleft {
  width: 75%;
  display: inline-block;
  vertical-align: top;
  padding-left: 15px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle .boxcontentleft {
    width: 100%;
    padding-left: 0px;
  }
}
.postArticles > li.fullWidthMidArticle .postTitle {
  margin: 0px;
  padding: 10px;
  font-size: 14px;
  background-color: #011637;
  color: #ffeb3b;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle .postTitle {
    padding: 10px 0px 0px 0px;
  }
}
.postArticles > li.fullWidthMidArticle .postTitle a {
  color: #ffeb3b;
  font-size: 22px;
  display: block;
}
.redTheme .postArticles > li.fullWidthMidArticle .postTitle a {
  color: #990000;
}
.blueTheme .postArticles > li.fullWidthMidArticle .postTitle a {
  color: #ffeb3b;
}
.greenTheme .postArticles > li.fullWidthMidArticle .postTitle a {
  color: #ffeb3b;
}
.purpleTheme .postArticles > li.fullWidthMidArticle .postTitle a {
  color: #ffeb3b;
}
.postArticles > li.fullWidthMidArticle .fullContents {
  margin: 0px;
  padding: 5px 10px 10px 10px;
  background-color: #011637;
  color: #b3b3b3;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle .fullContents {
    padding: 10px 0px 10px 0px;
  }
}
.postArticles > li.fullWidthMidArticle .authorfulllistng {
  margin-top: 0px;
  padding: 5px 10px 20px 10px;
  color: #ffffff;
  background-color: #011637;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .postArticles > li.fullWidthMidArticle .authorfulllistng {
    padding: 0px 0px 10px 0px;
  }
}
.postArticles > li.fullWidthMidArticle .authorfulllistng a {
  color: #ffffff;
  text-decoration: none;
}
.articleHoldershort {
  margin-bottom: 25px;
}
.articleHoldershort .titleArticle {
  background-color: #ffeb3b;
  padding: 15px;
}
.redTheme .articleHoldershort .titleArticle {
  background-color: #990000;
}
.blueTheme .articleHoldershort .titleArticle {
  background-color: #ffeb3b;
}
.greenTheme .articleHoldershort .titleArticle {
  background-color: #ffeb3b;
}
.purpleTheme .articleHoldershort .titleArticle {
  background-color: #ffeb3b;
}
.articleHoldershort .titleArticle span.title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.articleHoldershort .titleArticle span.linkrgtside {
  font-size: 10px;
  text-transform: uppercase;
  float: right;
  margin-top: 3px;
}
.articleHoldershort .titleArticle span.linkrgtside a {
  text-decoration: none;
  color: #333333;
}
.articleHoldershort .articlelistingposts {
  background-color: rgba(255, 235, 59, 0.2);
  padding: 15px;
}
.redTheme .articleHoldershort .articlelistingposts {
  background-color: rgba(153, 0, 0, 0.2);
}
.blueTheme .articleHoldershort .articlelistingposts {
  background-color: rgba(255, 235, 59, 0.2);
}
.greenTheme .articleHoldershort .articlelistingposts {
  background-color: rgba(255, 235, 59, 0.2);
}
.purpleTheme .articleHoldershort .articlelistingposts {
  background-color: rgba(255, 235, 59, 0.2);
}
.articleHoldershort .articlelistingposts p {
  line-height: 1.5;
}
.articleHoldershort .articlelistingposts li {
  list-style-type: none;
  display: block;
  border-bottom: #808080 1px dashed;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.articleHoldershort .articlelistingposts li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl {
  display: inline-block;
  width: 65%;
  padding-left: 15px;
  vertical-align: top;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl.withessayListrel {
  width: 100%;
  padding-left: 0px;
  text-align: center;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl:first-child {
  width: 35%;
  padding-left: 0px;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl:first-child.withessayListrel {
  width: 100%;
  padding-left: 0px;
  text-align: center;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl .titlelableDts {
  margin-bottom: 5px;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl .titlelableDts a {
  line-height: 1.3;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #1a1a1a;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl .authorNamelink {
  margin-bottom: 5px;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl .authorNamelink a {
  text-decoration: none;
  color: #990000;
  font-size: 13px;
  font-weight: 600;
}
.articleHoldershort .articlelistingposts li .rightsidebarImglbl .dateExtrnlinfo {
  font-size: 12px;
  color: #808080;
  font-style: italic;
}
.quickSection {
  margin-top: 40px;
}
.quickSection .quickvote {
  position: relative;
  width: 33.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  background-color: #000205;
  padding: 30px 20px;
  color: #e6e6e6;
}
.quickSection .quickvote:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .quickSection .quickvote {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .quickSection .quickvote:last-child {
    margin-right: 0px;
  }
}
.quickSection .quickvote .quickvoteQues {
  font-size: 16px;
  margin-bottom: 25px;
}
.quickSection .quickvote .quickvoteChecks {
  margin-bottom: 30px;
  height: 106px;
  overflow: auto;
}
.quickSection .quickvote .quickvoteChecks span {
  display: block;
  font-size: 16px;
  position: relative;
  padding: 10px 0px;
}
.quickSection .quickvote .quickvoteChecks span input {
  position: absolute;
  opacity: 0;
}
.quickSection .quickvote .quickvoteChecks span label {
  padding-left: 30px;
}
.quickSection .quickvote .quickvoteChecks span label:before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border: solid 4px #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.quickSection .quickvote .quickvoteChecks span input:checked ~ label:before {
  background-color: #000000;
  border: solid 4px #ffeb3b;
}
.quickSection .quickvote .voteButtonresult input {
  border: 0px;
  outline: 0px;
  cursor: pointer;
  background-color: #ffffff;
  color: #011637;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  margin-right: 15px;
}
.quickSection .quickvote .voteButtonresult a {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 12px;
}
.quickSection .quickvote .voteshortLine {
  margin-top: 20px;
  font-size: 12px;
}
.quickSection .newslatter {
  width: 33.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  background-color: #011637;
  padding: 30px 20px;
  border-left: #0452cd 1px solid;
  border-right: #0452cd 1px solid;
  color: #e6e6e6;
}
.quickSection .newslatter:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .quickSection .newslatter {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .quickSection .newslatter:last-child {
    margin-right: 0px;
  }
}
.quickSection .newslatter .quickvoteQues {
  font-size: 16px;
  margin-bottom: 25px;
}
.quickSection .newslatter .voteButtonresult input {
  border: 0px;
  outline: 0px;
  cursor: pointer;
  background-color: #ffffff;
  color: #011637;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  margin-right: 15px;
}
.quickSection .newslatter .voteButtonresult a {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 12px;
}
.quickSection .newslatter .voteshortLine {
  margin-top: 20px;
  font-size: 12px;
}
@media only screen and ( min-width: 1180px ) {
  .quickSection .newslatter .voteshortLine {
    margin-bottom: 25px;
  }
}
.quickSection .newslatter .subscribeForm {
  margin-bottom: 20px;
}
.quickSection .newslatter .subscribeForm input {
  display: block;
  width: 100%;
  border: 0px;
  outline: 0px;
  padding: 15px 10px;
  color: #e6e6e6;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1px;
}
.quickSection .follow {
  width: 33.33333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  background-color: #000205;
  padding: 30px 20px;
}
.quickSection .follow:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .quickSection .follow {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    padding: 30px 20px;
  }
  .quickSection .follow:last-child {
    margin-right: 0px;
  }
}
@media only screen and ( min-width: 1180px ) {
  .quickSection .follow .socialIcons {
    margin-bottom: 176px;
  }
}
.quickSection .titlenote {
  font-size: 22px;
  line-height: 1;
  border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}
footer {
  background-color: #002e5b;
  padding: 70px 0px;
  margin-top: 40px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  footer {
    padding: 40px 0px;
  }
}
footer aside {
  width: 31.33333333%;
  float: left;
  padding: 0;
  margin: 0 3% 0 0;
}
footer aside:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  footer aside {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-bottom: 30px;
  }
  footer aside:last-child {
    margin-right: 0px;
  }
  footer aside:last-child {
    margin-bottom: 0px;
  }
}
footer .footertexts {
  margin-top: 15px;
  color: #cccccc;
  line-height: 1.5;
  font-size: 12px;
}
footer .footertexts a {
  text-decoration: none;
  color: #ffffff;
}
footer .recentNewstitle {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
footer .recentnewsitems ul li {
  list-style-type: none;
}
footer .recentnewsitems ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  position: relative;
  display: block;
  padding: 5px 0px 5px 16px;
}
footer .recentnewsitems ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer .recentnewsitems ul li a:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
}
footer .footerCopyrights {
  margin-top: 30px;
  padding-top: 30px;
  border-top: rgba(255, 255, 255, 0.1) 1px solid;
  font-size: 12px;
}
footer .footercopyright {
  color: #b3b3b3;
}
footer .footercopyright a {
  text-decoration: none;
  color: #ffffff;
}
footer .footercopyright a:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer .footercopyright .leftcopyrights {
  float: left;
}
footer .footercopyright .developedby {
  float: right;
}
@media only screen and (max-width:  767px ) {
  footer .footercopyright .developedby {
    margin-top: 10px;
    line-height: 1.5;
    float: left;
  }
}
.searchSection {
  margin-bottom: 20px;
  position: relative;
}
.searchSection input {
  border: solid 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  line-height: 2;
  padding: 10px;
}
.searchSection button {
  border: 0;
  background: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 2;
  padding: 5px 15px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.searchSection button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.listingAuthor li {
  list-style-type: none;
  padding: 6px 3px 0px 3px;
}
.listingAuthor li:hover .imgholdertxt {
  background-color: rgba(0, 0, 0, 0.9);
}
.listingAuthor li .imgholdertxt {
  background-color: #011637;
  padding-top: 22%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listingAuthor li .imgholdertxt .slidercaptions {
  opacity: 0;
  padding: 3%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.listingAuthor li .imgholdertxt .slidercaptions.activeSpancls {
  opacity: 1;
}
.listingAuthor li .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
  text-decoration: none;
  display: block;
}
.redTheme .listingAuthor li .imgholdertxt .slidercaptions div a {
  color: #990000;
}
.blueTheme .listingAuthor li .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.greenTheme .listingAuthor li .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.purpleTheme .listingAuthor li .imgholdertxt .slidercaptions div a {
  color: #ffeb3b;
}
.listingAuthor li .imgholdertxt .slidercaptions a.auth {
  display: block;
  padding-top: 2.5%;
  text-decoration: none;
  color: #ffffff;
}
.listingAuthor li .imgholdertxt .non-slidercaptions {
  padding: 2% 3%;
  line-height: 1.1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.listingAuthor li .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
  text-decoration: none;
  display: block;
}
.redTheme .listingAuthor li .imgholdertxt .non-slidercaptions div a {
  color: #990000;
}
.blueTheme .listingAuthor li .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.greenTheme .listingAuthor li .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.purpleTheme .listingAuthor li .imgholdertxt .non-slidercaptions div a {
  color: #ffeb3b;
}
.listingAuthor li .imgholdertxt .non-slidercaptions a.auth {
  display: block;
  padding-top: 1.2%;
  text-decoration: none;
  color: #ffffff;
}
.authorListhingwithbars aside,
.authorDetailwithbars aside {
  width: 74.5%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
}
.authorListhingwithbars aside:last-child,
.authorDetailwithbars aside:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  .authorListhingwithbars aside,
  .authorDetailwithbars aside {
    width: 66%;
    float: left;
    padding: 0;
    margin: 0 2% 0 0;
  }
  .authorListhingwithbars aside:last-child,
  .authorDetailwithbars aside:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  .authorListhingwithbars aside,
  .authorDetailwithbars aside {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
  }
  .authorListhingwithbars aside:last-child,
  .authorDetailwithbars aside:last-child {
    margin-right: 0px;
  }
}
.authorListhingwithbars aside:last-child,
.authorDetailwithbars aside:last-child {
  width: 23.5%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
  margin-top: 30px;
}
.authorListhingwithbars aside:last-child:last-child,
.authorDetailwithbars aside:last-child:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ) {
  .authorListhingwithbars aside:last-child,
  .authorDetailwithbars aside:last-child {
    width: 32%;
    float: left;
    padding: 0;
    margin: 0 2% 0 0;
    margin-top: 30px;
  }
  .authorListhingwithbars aside:last-child:last-child,
  .authorDetailwithbars aside:last-child:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width:  767px ) {
  .authorListhingwithbars aside:last-child,
  .authorDetailwithbars aside:last-child {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0% 0 0;
    margin-top: 30px;
  }
  .authorListhingwithbars aside:last-child:last-child,
  .authorDetailwithbars aside:last-child:last-child {
    margin-right: 0px;
  }
}
.authorListings {
  margin-top: 30px;
}
.authorListings li {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: #999999 1px dashed;
}
.authorListings li:before,
.authorListings li:after {
  content: "";
  display: table;
}
.authorListings li:after {
  clear: both;
}
.authorListings li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}
.authorListings li .authorListingTitle {
  font-size: 18px;
  font-weight: 600;
}
.authorListings li .authornmedate {
  font-size: 12px;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 10px;
}
.authorListings li .authornmedate span:first-child {
  font-weight: 700;
  margin-right: 5px;
}
@media only screen and ( min-width: 1180px ) {
  .authorListings li .authorlistingImg {
    float: left;
    width: 50%;
    margin-right: 15px;
  }
}
.authorListings li .authorlistingShortdesc {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
.authorListings li .authorlistingreadmor a {
  text-decoration: none;
}
.authorDetails {
  margin-top: 30px;
  line-height: 2;
}
.authorDetails h1 {
  font-size: 40px;
  font-weight: 600;
  color: #011637;
  margin-bottom: 25px;
  line-height: normal;
}
.authorDetails .essayComments {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 20px;
  line-height: normal;
  font-size: 12px;
  margin-bottom: 30px;
}
.authorDetails .essayComments em {
  border-bottom: dashed 1px rgba(0, 0, 0, 0.2);
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
.authorDetails .essayComments .socialIcons {
  float: right;
}
.authorDetails .essayComments .socialIcons .fa {
  font-size: 22px;
  vertical-align: middle;
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.authorDetails .essayComments .socialIcons .fa.fa-facebook-official {
  color: #3b5998;
}
.authorDetails .essayComments .socialIcons .fa.fa-twitter-square {
  color: #55acee;
}
.authorDetails .essayComments .socialIcons .fa.fa-linkedin-square {
  color: #007bb5;
}
.authorDetails .essayComments .socialIcons .fa.fa-google-plus-square {
  color: #e02f2f;
}
.authorDetails .essayComments .socialIcons .fa.fa-envelope-square {
  color: rgba(0, 0, 0, 0.5);
}
.authorDetails .essayComments .socialIcons .fa:hover {
  color: #990000;
}
.authorDetails .pQuote {
  font-size: 32px;
  float: right;
  max-width: 280px;
  font-style: italic;
  color: #6e6300;
  line-height: normal;
  font-weight: 100;
  padding-left: 10px;
  padding-right: 10px;
}
.redTheme .authorDetails .pQuote {
  color: #000000;
}
.blueTheme .authorDetails .pQuote {
  color: #6e6300;
}
.greenTheme .authorDetails .pQuote {
  color: #6e6300;
}
.purpleTheme .authorDetails .pQuote {
  color: #6e6300;
}
.authorDetails .pQuote:before {
  font-family: FontAwesome;
  content: "\f10d";
  margin-right: 10px;
}
.authorDetails .pQuote:after {
  font-family: FontAwesome;
  content: "\f10e";
  margin-left: 10px;
}
.googleAds {
  background-color: #0b3f90;
  padding: 30px;
  text-align: center;
}
.socialIconsAuthor {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.socialIconsAuthor:before,
.socialIconsAuthor:after {
  content: "";
  display: table;
}
.socialIconsAuthor:after {
  clear: both;
}
.socialIconsAuthor .fa {
  display: block;
  width: 49.5%;
  float: left;
  padding: 0;
  margin: 0 1% 0 0;
  padding: 10px;
  background-color: #011637;
  color: #ffffff;
  margin-bottom: 1%;
  cursor: pointer;
  font-size: 22px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.socialIconsAuthor .fa:last-child {
  margin-right: 0px;
}
.socialIconsAuthor .fa:nth-child(2n+2) {
  margin-right: 0;
}
.socialIconsAuthor .fa.fa-facebook {
  background-color: #3b5998;
}
.socialIconsAuthor .fa.fa-twitter {
  background-color: #55acee;
}
.socialIconsAuthor .fa.fa-linkedin {
  background-color: #007bb5;
}
.socialIconsAuthor .fa.fa-envelope {
  background-color: #e02f2f;
}
.socialIconsAuthor .fa:hover {
  background-color: #990000;
}
.insideContent {
  float: left !important;
  width: 300px;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .insideContent {
    float: left !important;
    width: 100%;
  }
}
.detailCotenttxts {
  float: right !important;
  width: calc(100% - 320px);
}
.leftfullWdth.detailCotenttxts {
  float: left !important;
  width: 100%;
}
@media only screen and (min-width: 768px ) and (max-width:  1024px ), only screen and (max-width:  767px ) {
  .detailCotenttxts {
    float: left !important;
    width: 100%;
  }
}
.accordions_forum {
  margin-top: 20px;
}
.accordions_forum li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
}
.accordions_forum li [data-id="accordions-list"] {
  width: 100%;
  border-bottom: #cccccc 1px solid;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0px;
}
.accordions_forum li [data-id="accordions-list"] i {
  float: right;
}
.accordions_forum li [data-id="accordions-cont"] {
  display: none;
  padding-top: 5px;
  overflow: hidden;
  position: relative;
}
.accordions_forum li [data-id="accordions-cont"].active {
  display: block;
}
.accordions_forum li [data-id="accordions-cont"] .row {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.accordions_forum li [data-id="accordions-cont"] .row:before,
.accordions_forum li [data-id="accordions-cont"] .row:after {
  content: "";
  display: table;
}
.accordions_forum li [data-id="accordions-cont"] .row:after {
  clear: both;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside {
  width: 70.83333333%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
  padding: 0px 10px 0px 0px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child {
  margin-right: 0px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside div {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside div a.author {
  text-decoration: none;
  font-style: italic;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #990000;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child {
  width: 29.16666667%;
  float: left;
  padding: 0;
  margin: 0 0% 0 0;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child:last-child {
  margin-right: 0px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child aside {
  padding: 0px 0px 1px 5px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child aside:first-child {
  margin-bottom: 20px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child aside:last-child {
  padding: 1px 0px 0px 5px;
}
.accordions_forum li [data-id="accordions-cont"] .row > aside:last-child aside:last-child div {
  margin-top: 0px;
}
.accordions_forum li [data-id="accordions-cont"] .listloadmroe {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-top: 20px;
}
.accordions_forum li [data-id="accordions-cont"] .listloadmroe:before,
.accordions_forum li [data-id="accordions-cont"] .listloadmroe:after {
  content: "";
  display: table;
}
.accordions_forum li [data-id="accordions-cont"] .listloadmroe:after {
  clear: both;
}
.accordions_forum li [data-id="accordions-cont"] .listloadmroe aside {
  width: 23.5%;
  float: left;
  padding: 0;
  margin: 0 2% 0 0;
  line-height: 1.5;
}
.accordions_forum li [data-id="accordions-cont"] .listloadmroe aside:last-child {
  margin-right: 0px;
}
.accordions_forum li [data-id="accordions-cont"] .loadmoreButtoncls {
  text-align: center;
  margin-top: 30px;
}
.accordions_forum li [data-id="accordions-cont"] .loadmoreButtoncls a {
  display: inline-block;
  background-color: #011637;
  color: #ffffff;
  padding: 20px 50px;
  font-weight: 600;
  text-transform: uppercase;
}
.pagination {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  margin: 20px 0;
  list-style: none;
  border-radius: 25%;
  width: 100%;
  text-align: center;
  padding-left: 0;
  display: inline-block;
  position: relative;
}
.pagination:before,
.pagination:after {
  content: "";
  display: table;
}
.pagination:after {
  clear: both;
}
.pagination .page-item {
  display: inline-block;
  line-height: 26px;
}
.pagination .page-item:first-child .page-link {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.pagination .page-item:last-child .page-link {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.pagination .page-item .page-link {
  position: relative;
  padding: 10px 10px;
  margin-left: -1px;
  color: #000000;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}
.pagination .page-item .page-link:hover {
  background-color: #ffeb3b;
}
.pagination .page-item span.page-link {
  color: #000000;
}
.pagination .page-item span.page-link input {
  margin: 0 5px;
  text-align: center;
}
.pagination .page-item span.page-link input.inputWidth {
  width: 80px;
}
.pagination .page-item span.page-link input[type="button"] {
  background-color: #011637;
  border: 1px solid #011637;
  color: #ffffff;
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: none;
}
.popupWindow {
  display: none;
  position: fixed;
  z-index: 99999;
  width: 100%;
  max-width: 600px;
  min-height: 300px;
  background-color: #ffffff;
  left: 50%;
  top: 50%;
  overflow: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.popupWindow .popupTitle {
  font-size: 20px;
  font-weight: 600;
  padding: 30px;
  background-color: #ffeb3b;
}
.popupWindow .popupTitle i {
  font-style: normal;
  float: right;
  display: block;
  cursor: pointer;
}
.popupWindow .popupContent {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 30px;
}
.popupWindow .popupContent .answers {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-top: 20px;
  position: relative;
}
.popupWindow .popupContent .answers i {
  float: right;
}
.popupWindow .popupContent .answers .graph {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #990000;
  background: -moz-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #990000), color-stop(100%, #0b3f90));
  background: -webkit-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -o-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -ms-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: linear-gradient(to left, #990000 0%, #0b3f90 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#990000, endColorstr=#0b3f90, GradientType=1);
  height: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  left: 0;
  width: 0;
}
.popupWindow .popupContent .answers .graph:before {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: '';
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 10px;
  width: 100%;
  z-index: -1;
  left: 0;
}
.voteerror {
  background-color: rgba(0, 0, 0, 0.94);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.voteerror .alert {
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
}
.voteerror .alert button {
  margin-right: 10px;
}
.poll table {
  background: #ececec;
  border-spacing: 1px;
}
.poll table th {
  background: #f1f1f1;
  padding: 5px 10px;
  text-align: left;
}
.poll table td {
  background: #fff;
  padding: 5px 10px;
  font-size: 13px;
}
.polloverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: none;
}
.pollWindow {
  display: none;
  position: fixed;
  z-index: 99999;
  width: 100%;
  max-width: 600px;
  min-height: 300px;
  background-color: #ffffff;
  left: 50%;
  top: 50%;
  overflow: auto;
  line-height: normal;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.pollWindow .popupTitle {
  font-size: 20px;
  font-weight: 600;
  padding: 30px;
  background-color: #ffeb3b;
  width: 100%;
  float: left;
}
.pollWindow .popupTitle span {
  float: left;
  width: 90%;
}
.pollWindow .popupTitle i {
  font-style: normal;
  float: right;
  display: block;
  cursor: pointer;
}
.pollWindow .popupContent {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 30px;
}
.pollWindow .popupContent .answers {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-top: 20px;
  position: relative;
}
.pollWindow .popupContent .answers i {
  float: right;
}
.pollWindow .popupContent .answers .graph {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #990000;
  background: -moz-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #990000), color-stop(100%, #0b3f90));
  background: -webkit-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -o-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: -ms-linear-gradient(left, #990000 0%, #0b3f90 100%);
  background: linear-gradient(to left, #990000 0%, #0b3f90 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#990000, endColorstr=#0b3f90, GradientType=1);
  height: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  left: 0;
  width: 0;
}
.pollWindow .popupContent .answers .graph:before {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: '';
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 10px;
  width: 100%;
  z-index: -1;
  left: 0;
}
.flagSelectorBox a {
  color: #FFF;
}
.flagSelectorBox a:hover {
  color: #ffeb3b;
}
