@charset "utf-8";
/* Global Content Formatting and styles */

*,
*:after,
*:before {
  box-sizing: border-box;
}

input, textarea, button {
    -webkit-appearance: none;
    -webkit-border-radius: 0; 
}

input[type=checkbox] {
    -webkit-appearance:checkbox;
}

@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot?9vd68h');
	src:url('../fonts/icomoon.eot?#iefix9vd68h') format('embedded-opentype'),
		url('../fonts/icomoon.woff?9vd68h') format('woff'),
		url('../fonts/icomoon.ttf?9vd68h') format('truetype'),
		url('../fonts/icomoon.svg?9vd68h#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	cursor: pointer;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-right:before {
	content: "\e601";
}
.icon-arrow-left:before {
	content: "\e602";
}
.icon-remove:before {
	content: "\e608";
}
.icon-remove2:before {
	content: "\e600";
}

/* Global ----------------------------------------------------------------- */

body {
	margin: 0;
	padding: 0;
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size: 1em;
	color: #333;
	background: #999999; /* Old browsers */ /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666666), color-stop(450px,#999999)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #666666 0%,#999999 450px); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
background: linear-gradient(to bottom,  #666666 0%,#999999 450px); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#999999',GradientType=0 ); /* IE6-9 */

}
@media only screen and (max-width: 550px)
{
	body {
		background: -moz-linear-gradient(top, #666666 0%, #999999 270px);
		background: -ms-linear-gradient(top, #666666 0%, #999999 270px);
		background: -webkit-linear-gradient(top, #666666 0%, #999999 270px);
		background: linear-gradient(top, #666666 0%, #999999 270px);
		font-size: 1em;
	}	
}
.page {
	width: 100%;
	max-width: 1100px;
	min-width: 320px;
	height: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
}
header {
	position: relative;
	width: 100%;
	z-index: 1000;
}

header a.logo {
	float:left;
	display: block;
	margin: 5px 0px 25px 10px;
	width: 114px;
	height: 95px;
	background-image: url(../images/logo_medium.png);
	background-repeat: no-repeat;	
}

@media only screen and (max-width: 550px)
{
	header a.logo {
		background-image: url(../images/logo_small.png);
		margin: 3px 0px 20px 5px;
		width: 96px;
		height: 80px;
	}
}

#logo_text {
	float: left;
	width: 200px;
	color: antiquewhite;
	font-size: 1.6em;
	margin-top: 13px;
}

@media only screen and (max-width: 550px) {
	#logo_text {
		font-size: 1.1em;
		margin-top: 8px;
	}
}
.logo-country {
	position: absolute;
	top: 25px;
	left: 340px;
	-webkit-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	border: 1px solid #9A1B1F;
	color: #990000;
	font-size: 80%;
	padding: 3px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 550px) {
	.logo-country {
		top:20px;
		left:250px; 
	}
}
header ul{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	
}

header ul a{
	color: #d1a867;
	display: block;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
	border-top: 1px solid #000034;
	text-align: center;
}

header ul a:hover{
	color: #000034;
	background-color: #999999;
}

header .menu{
	clear:both;
	max-height:0;
	transition:max-height .2s ease-out;
}

header .menu-icon{
	padding: 20px 20px;
	position: relative;
	float:right;
	cursor: pointer;
}

header .menu-icon .nav-icon{
	background: antiquewhite;
	display: block;
	height: 2px;
	width: 18px;
	position: relative;
	transition:background .2s ease-out;
}

header .menu-icon .nav-icon:before{
	background: antiquewhite;
	content:"";
	display: block;
	height: 100%;
	width:100%;
	position: absolute;
	transition:all .2s ease-out;
	top: 5px;
}

header .menu-icon .nav-icon:after{
	background: antiquewhite;
	content:"";
	display: block;
	height: 100%;
	width:100%;
	position: absolute;
	transition:all .2s ease-out;
	top: -5px;
}

header .menu-btn{
	display:none;
}

header .menu-btn:checked~ .menu{
	max-height: 240px;
}

header .menu-btn:checked~ .menu-icon .nav-icon{
	background:transparent;
}

header .menu-btn:checked~ .menu-icon .nav-icon:before{
	transform: rotate(-45deg);
	top:0;
}

header .menu-btn:checked~ .menu-icon .nav-icon:after{
	transform: rotate(45deg);
	top:0;
}

@media only screen and (min-width: 768px)
{
	header ul {
		background-color: transparent;
	}
	header ul a:hover{
		color: antiquewhite;
		background-color: transparent;
	}
	header li {
		float:left;
	}
	header li a {
		padding:15px 12px;
	}
	

	header .menu {
		clear:none;
		float:right;
		max-height: none;
	}
	header .menu-icon {
		display:none;
	}
}

ul.breadcrumb {
    padding-top: 15px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 0px;
    list-style: none;
	color: #fefef2;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 16px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #fefef2;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #67a1d1;
  text-decoration: none;
}

#main_content {
	background: #999999; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(#666666 0%, #999999 450px);
    background: -o-linear-gradient(#666666 0%, #999999 450px);
    background: linear-gradient(#666666 0%, #999999 450px); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#999999',GradientType=0 ); /* IE6-9 */
	max-width: 1100px;
	position: relative;
	width: 98%;
	border: 1px solid #1f0000;
	box-shadow: 0px 5px 10px 2px #666666;
	z-index: 1000;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	padding-bottom: 10px;
	-webkit-box-shadow: 0px 5px 10px 2px #666666;
	clear: both;
}
@media only screen and (max-width: 550px)
{
	#main_content {
		width: 100%;
		margin:0;
		border: none;
		border-top:  1px solid #333333;
		border-bottom: 1px solid #333333;
	}
}

#title_bar {
	width: 100%;
	color: #666666;
	min-height: 32px;
	padding: 8px 5px 8px 8px;
}
@media only screen and (max-width: 550px)
{
	#title_bar {
		padding: 5px;
	}
}

#guide_player_title {
	float: left;
	width: 100%;
	margin-right: -180px;
}
@media only screen and (max-width: 550px)
{
	#guide_player_title {
		float: none;
		width: 100%;
		margin-right: 0;
		text-align: center;
	}
}
#guide_player_title h1 {
	font-size: 1.6em;
	color: #fefef2;
	margin: 0 0 8px 0;
	text-shadow: 4px 2px 6px #1f0000;
}
@media only screen and (max-width: 550px)
{
	#guide_player_title h1 {
		font-size: 1.4em;
		margin: 0 0 7px 0;
	}
}
#banner_placeholder {
    width: 96%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
@media only screen and (max-width: 550px)
{
	#banner_placeholder {
		display: none;
	}
}


#icon_nav_slider {
	width: 100%;
	overflow: hidden;
}
#slidebox {
	height: 100%;
	position:relative;
	-webkit-transition: all 0.6s ease-in-out;
	        transition: all 0.6s ease-in-out;
 	-webkit-transform: translate3d(0,0,0);
 	-ms-transform: translate3d(0,0,0);
  	transform: translate3d(0,0,0);



}
.slide {
	margin: auto;
	float: left;	
}
.icon_nav {
	width: 100%;
}
.icon_nav ul {
	text-align: center;
	list-style: none;
}
.icon_nav li {
	width: 122px;
	display: inline-block;
	margin: 3px 15px 14px 15px;
	padding: 8px;
	border: 3px solid #990000;
	border-radius: 10px;
	background-color: #999999;
	box-shadow: 0 10px 6px -6px #666666;
}
.icon_nav li a {
	padding: 110px 0px 0px 0px;
	line-height: 1em;
	font-size: .8em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: #333333;
	border: none;
	display: block;
}
.icon_nav li a.icon1 {
	background: url(../images/nav_icons.png) no-repeat -1px 0px;
}
.icon_nav li a.icon2 {
	background: url(../images/nav_icons.png) no-repeat -121px 0px;
}
.icon_nav li a.icon3 {
	background: url(../images/nav_icons.png) no-repeat -241px 0px;
}
.icon_nav li a.icon4 {
	background: url(../images/nav_icons.png) no-repeat -361px 0px;
}
.icon_nav li a.icon5 {
	background: url(../images/nav_icons.png) no-repeat -481px 0px;
}
.icon_nav li a.icon6 {
	background: url(../images/nav_icons.png) no-repeat -601px 0px;
}
.icon_nav li a.icon7 {
	background: url(../images/nav_icons.png) no-repeat -721px 0px;
}
.icon_nav li a.icon8 {
	background: url(../images/nav_icons.png) no-repeat -841px 0px;
}
.icon_nav li a.icon9 {
	background: url(../images/nav_icons.png) no-repeat -961px 0px;
}
@media only screen and (max-width: 550px)
	{
		.icon_nav {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.icon_nav li {
		width: 102px;
		padding: 8px;
		margin: 0px 3px 12px 3px;
		border: 2px solid #990000;
		border-radius: 6px;
	}

	.icon_nav li a {
		padding: 88px 0px 0px 0px;
		font-size: .7em;
	}
	.icon_nav li a.icon1 {
		background: url(../images/nav_icons_med.png) no-repeat -1px 0px;
	}
	.icon_nav li a.icon2 {
		background: url(../images/nav_icons_med.png) no-repeat -121px 0px;
	}
	.icon_nav li a.icon3 {
		background: url(../images/nav_icons_med.png) no-repeat -241px 0px;
	}
	.icon_nav li a.icon4 {
		background: url(../images/nav_icons_med.png) no-repeat -361px 0px;
	}
	.icon_nav li a.icon5 {
		background: url(../images/nav_icons_med.png) no-repeat -481px 0px;
	}
	.icon_nav li a.icon6 {
		background: url(../images/nav_icons_med.png) no-repeat -601px 0px;
	}
	.icon_nav li a.icon8 {
		background: url(../images/nav_icons_med.png) no-repeat -721px 0px;
	}
	.icon_nav li a.icon9 {
		background: url(../images/nav_icons_med.png) no-repeat -841px 0px;
	}

}
h1 h2 h3 h4 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif
}
h1 {
	font-size: 2em;
	color: #990000;
	margin: 0 0 .5em 0;
}
h2 {
	font-size: 1.85em;
	color: #333333;
	margin: 0 0 1em 0;
}
h3 {
	font-size: 1.5em;
	color: #990000;
	margin: 0 0 1em 0;
}
h4 {
	font-size: 1.3em;
	color: #990000;
	margin: 0 0 0.4em 0;
}
h5 {
	font-size: 1.1em;
	color: #990000;
	margin: 0.5em 0 0.4em 0;
}
p {
	margin: 0 0 0.4em 0;
}

#playerContent p{
	margin: 0 0 1.5em 0;
}
#playerContent li{
	margin: 0 0 .8em 0;
}
a {
	color: #990000;
	text-decoration:underline;
}
a:hover {
	color: #CC0000
}

.news_article {
	width: 100%;
	height: 100%;
	min-height: 490px;
	float: none;
	position: relative;
	background-color: #FEFEF2;
	padding: 20px 20px 10px 20px;
}

#article_list {
	width: 100%;
	float:none;
	position: relative;
}

@media only screen and (min-width : 780px) {
	.news_article {
	width: 70%;
	max-width: 760px;
	float: right;
	}
	
	#article_list {
	width: 29%;
	float:left;
	margin-left: 1%;
	margin-top: 5px;
	}
}


footer {
	font-size: 0.85em;
	background-color: #666666;
	color: #a8a8a8;
	padding: 10px;
}
@media only screen and (max-width: 550px)
{
	footer {
		border-top: 1px solid #f2f2f2;
	}
}
a.cta {
	text-transform: uppercase;
	font-size: .9em;
	font-weight: bold;
	text-decoration: none;
	margin: .5em 0 0 0;
}
.promo h3 {
	font-size: 1.1em;
	margin: 0;
}
.promo p {
	line-height: 1.2em;
	font-size: .9em;
	margin-bottom: .5em;
}
.promo {
	background-repeat: no-repeat;
}
.promo.one {
	background-image: url(/images/promo_1.jpg);
}
.promo.two {
	background-image: url(/images/promo_2.jpg);
}
.promo.three {
	background-image: url(/images/promo_3.jpg);
}

a.article_link {
	background-color: #346085;
	border: 1px solid #a8a8a8;
	color: #d1a867 ;
	display: block ;
	padding: 10px 30px 10px 10px ;
	position: relative ;
	text-decoration: none;
	text-transform: uppercase;
	width: 100% ;
}
 
a.article_link:after {
	content: '»';
	font-size: 20px ;
	height: 28px ;
	line-height: 26px ;
	margin-top: -14px ;
	position: absolute ;
	right: 6px ;
	text-align: center ;
	text-indent: 1px ;
	top: 50% ;
	width: 28px ;
}

.clear-fix {
	clear: both;
	line-height: 1px;
}

.radius {
	border-radius: 3px;
}
/* Global Formatting and styles For Quiz Content*/


#secondary_content{
	width: 96%;
	height: 100%;
	position: relative;
}
@media only screen and (max-width: 550px)
{
	#secondary_content{
		width: 100%;
		float: none;
	}
}

.max_width{
	max-width: 1100px;
	margin: 0 auto;
}


#player {
    height: 100%;
    min-height: 450px;
    width: 100%;
    max-width: 96%;
    min-width: 320px;
    overflow: hidden;
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
	padding-top: 10px;
	box-shadow: inset 0px 0px 25px 0px rgb(0 0 0 / 30%);
}
#playerContent {
	height: 100%;
	margin: 0 10px;
	padding-top: 25px;
}
.article_teasers{
	width: 100%;
	height: 100%;}

.article_teasers h2 {
	margin: 1em 0 1em 0;
	border-bottom-width: thin;
	border-bottom-color: #FFFFFF;
}
.teaser {
	min-height: 48px;
	margin-bottom: 10px;
	width: 50%;
	float: left;
}
@media only screen and (max-width: 550px)
{
	.teaser {
		width: 100%;
		float: none;
	}
}
.teaser:nth-child(even){
    clear: both;
}
.teaser a {
	display:block;
	background-repeat: no-repeat;
	background-image: url(../images/article_icon.png);
	padding-left: 50px;
	font-size: 1.1em;
	margin: 0;
	text-decoration: none;
}

.teaser a p {
	
	line-height: 1.2em;
	font-size: .9em;
	margin-bottom: .5em;
	color:#333333;
	
}
.teaser a p:hover {
	
}

.teaser .promo {
	width: auto;
	float: none;
	padding: 10px 0px 0px 0px;
	background-position: 20px 13px;
	border-bottom: 1px solid #a8a8a8;
}
.teaser .promo .content {
	padding: 0px 20px 5px 90px;
}

#playerInnerWrapper {
	overflow: hidden;
	margin-top: 1px;
	margin-right: 1px;
	margin-left: 1px;
	position: relative;
}
#menu_wrapper {
	position: absolute;
	top: 10px;
	margin-top: 20px;
	z-index: 1000;
	background-color: #1f0000;
	width: 200px;
	left: -160px;
}
#xml_menu {
	width: 160px;
	background-color: #CCC;
	height: 400px;
}

#displayResults {
	width: 100%;
	max-width: 760px;
	height: 440px;
	position: relative;
}

#player_horizontal_ad_container {
	width: 100%;
	max-width: 728px;
	margin: 10px auto;
}


.drop_shadow{
	box-shadow: 0 10px 6px -6px #a8a8a8;
}

.drop_shadow_small{
	box-shadow: 0 5px 3px -3px #a8a8a8;
}


/* Global Formatting and styles For Quiz Selector*/
#selector {
	width: 100%;
	margin: auto;
	min-height: 475px;
	position: relative;
}

#selector h3 {
	font-size: 1.3em;
	font-weight: bold;
	color: #990000;
	margin: .2em 4px;
}

#allQuestions {
	width: 96%;
	height: 100%;
	margin: auto;
	float: none;
	position: relative;
}
@media only screen and (min-width : 701px) {
   #allQuestions {
      	width: 47%;
		margin-left:2%;
		float: left;
		position: relative;
   }
}

#someQuestions {
	width: 96%;
	height: 100%;
	float: none;
	position: relative;
	padding-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}
@media only screen and (min-width : 701px) {
   /* Smartphone view: 1 tile */
   #someQuestions {
	   width: 47%;
	   margin-right:2%;
	   height: 100%;
	   float: right;
	   position: relative;
   }
}
.box {
   float: left;
   position: relative;
   width: 33.3333%;
   padding-bottom: 33.3333%;
}
@media only screen and (max-width : 550px) {
   /* Smartphone view: 1 tile */
   #quizSelector {
	margin-left: auto;
	margin-right: auto;
	max-width: 350px;
	position: relative;
}
   .box {
      width: 33.3333%;
      padding-bottom: 33.3333%;
   }
}

@media only screen and (max-width : 700px) and (min-width : 551px) {
   .box {
      width: 20%;
      padding-bottom: 20%;
   }
}
@media only screen and (min-width : 701px) {
   .box {
      width: 33.3333%;
      padding-bottom: 33.3333%;
   }
}

.boxInner {
   position: absolute;
   left: 4px;
   right: 4px;
   top: 4px;
   bottom: 4px;
   background-color: #fefef2;
   border: 1px solid rgba(0,0,0,0.2);
   box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}
.aboxInner {
	position: absolute;
	left: 3px;
	right: 3px;
	top: 3px;
	bottom: 3px;
	background-color: #FFF;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
	display: block;
	text-decoration: none;
}

.topic {
	background-color: #990000;
   position: absolute;
   left: 5px;
   right: 5px;
   top: 5px;
   bottom: 5px;
	display: inline-block;
	overflow: hidden;
	color: #fefef2;
	cursor: pointer;
}
@media only screen and (max-width: 550px)
{
	.topic{
		font-size: 0.9em;
	}
}

.topicInner {
	padding: 4%;
}
.topicicon1 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-rights.png);
	background-color: #666666;
}
.topicicon1:hover {
	background-image: url(../images/cor-icon-rights.png), linear-gradient(#333333, #666666);
}
.topicicon2 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-democracy.png);
	background-color: #666666;
}
.topicicon2:hover {
	background-image: url(../images/cor-icon-democracy.png), linear-gradient(#333333, #666666);
}
.topicicon3 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-history.png);
	background-color: #666666;
}
.topicicon3:hover {
	background-image: url(../images/cor-icon-history.png), linear-gradient(#333333, #666666);
}
.topicicon4 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-modern.png);
	background-color: #666666;
}
.topicicon4:hover {
	background-image: url(../images/cor-icon-modern.png), linear-gradient(#333333, #666666);
}
.topicicon5 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-government.png);
	background-color: #666666;
}
.topicicon5:hover {
	background-image: url(../images/cor-icon-government.png), linear-gradient(#333333, #666666);
}
.topicicon6 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-justice.png);
	background-color: #666666;
}
.topicicon6:hover {
	background-image: url(../images/cor-icon-justice.png), linear-gradient(#333333, #666666);
}
.topicicon7 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-symbols.png);
	background-color: #666666;
}
.topicicon7:hover {
	background-image: url(../images/cor-icon-symbols.png), linear-gradient(#333333, #666666);
}
.topicicon8 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-economy.png);
	background-color: #666666;
}
.topicicon8:hover {
	background-image: url(../images/cor-icon-economy.png), linear-gradient(#333333, #666666);
}
.topicicon9 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-geography.png);
	background-color: #666666;
}
.topicicon9:hover {
	background-image: url(../images/cor-icon-geography.png), linear-gradient(#333333, #666666);
}
.dark-button{
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 5px 2%;
	margin-bottom: 10px;
	overflow: hidden;
	font-size: 1.3em;
	line-height: 48px;
	line-height: 3rem;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: top;
	box-sizing: border-box;
	background-clip: padding-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	 -ms-user-select: none;
	     user-select: none;
	-webkit-touch-callout: none;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6),
		0px -1px 1px rgba(0, 0, 0, 0.5);
	background-color: #666666;
	color: #fefef2;
	cursor: pointer;
	border: 4px solid #fefef2;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
	}

.dark-button:hover{
	background-image: -webkit-linear-gradient(#333333, #666666);
	background-image: linear-gradient(#333333, #666666);
	}


.dark-button:active,.dark-button.down{
	background-image: -webkit-linear-gradient(#333333, #666666);
	background-image: linear-gradient(#333333, #666666);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), 
		0px -0.5px 1px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8), 
		inset 0 0.5px 0.5px rgba(255,255,255,0.7), 
		inset 0 -0.5px 0.5px rgba(0,0,0,0.2);
	}
	
	
#restart{
	display: inline-block;
	cursor: pointer;
}
.sml_txt {
	font-size: 0.7em;
}

a.tooltip {
	position: relative;
}	
		
a.tooltip::before {
	content: attr(data-tip) ;	
	font-family: arial, sans-serif;	
	font-size: 10px;
	font-weight: bold;
	position:absolute;
	z-index: 999;
	white-space:nowrap;
	bottom:9999px;
	left: 50%;
	background:#000;
	color:#e0e0e0;
	padding:0px 7px;
	line-height: 24px;
	height: 24px;
	opacity: 0;	
	-webkit-transition:opacity 0.4s ease-out;  
	-moz-transition:opacity 0.4s ease-out;  
	-o-transition:opacity 0.4s ease-out;  
	transition:opacity 0.4s ease-out; 
}		
		
a.tooltip:hover::before	{
	opacity: 1;
	bottom:-35px;
}

 Slideshow CSS 

.rslides_container {
    float: left;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
  }
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }
  
  .rslides {
  margin: 0 auto;
  }

.rslides_container {
  margin-bottom: 50px;
  position: relative;
  float: left;
  width: 100%;
  }

.rslides1_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 50%;
	left: 0;
	z-index: 99;
	opacity: 0.7;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 61px;
	width: 38px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(/images/slideshow/themes/themes.gif);
	background-color: transparent;
	margin-top: -45px;
  }

.rslides1_nav:active {
  opacity: 1.0;
  }

.rslides1_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
  }

.rslides2_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 0;
  left: 0;
  display: block;
  background: #fff; /* Fix for IE6-9 */
  opacity: 0;
  filter: alpha(opacity=1);
  width: 48%;
  text-indent: -9999px;
  overflow: hidden;
  height: 91%;
  }

.rslides2_nav.next {
  left: auto;
  right: 0;
  }

.rslides3_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  opacity: 0.6;
  text-indent: -9999px;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  background: #000 url("/images/slideshow/themes/themes.gif") no-repeat left 50%;
  width: 38px;
  }

.rslides3_nav:active {
  opacity: 1.0;
  }

.rslides3_nav.next {
  left: auto;
  background-position: right 50%;
  right: 0;
  }

.rslides1_nav:focus,
.rslides2_nav:focus,
.rslides3_nav:focus {
  outline: none;
  }

.rslides_tabs {
  margin-top: 10px;
  text-align: center;
}

.rslides_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
  }

.rslides_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #ccc;
  background: rgba(0,0,0, .2);
  display: inline-block;
  _display: block;
  *display: block;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  -moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  width: 9px;
  height: 9px;
  }

.rslides_tabs .rslides_here a {
  background: #222;
  background: rgba(0,0,0, .8);
  }

.caption {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  background: #666666;
  background: rgba(102,102,102, .8);
  color: #fefef2;
}

.rslides p {
  margin: 0;
}

#can_promo {
	width: calc(100% - 280px);
	float:right;	
}
@media only screen and (max-width: 600px)
{
	#can_promo {
	width: 100%;
	float:none;
	}
}
#us_promo {
	width: 270px;
	float: left;
	background: -moz-linear-gradient(top, #666666 0%, #999999 270px);
	background: -ms-linear-gradient(top, #666666 0%, #999999 270px);
	background: -webkit-linear-gradient(top, #666666 0%, #999999 270px);
	background: linear-gradient(top, #666666 0%, #999999 270px);
	font-size: 1.0em;
	border: 1px solid #990000;
	border-radius: 4px;
	box-shadow: 0 7px 6px -6px #666666;
	overflow:hidden;
	
}
@media only screen and (max-width: 600px)
{
	#us_promo {
		width: 98%;
		margin:auto;
		float: none;
		display:block;
	}
}
#us_promo h3 {
	font-size: 1.7em;
	color: #990000;
	margin: 0 0 0.5em 0;
	text-align:center;
}
#us_promo p {
	text-align:left;
	color: #5b1427;
	margin: 0.3em 0 0.3em 0;
}
#us_promo .button {
	position: relative;
	display: inline-block;
	width: 100%;
  text-decoration: none;
  text-align:center;
  margin-bottom:4px;
  color: #fefef2;
  padding: 5px;
  border: 1px solid #990000;
	border-radius: 4px;
	background-color: #999999;
	box-shadow: 0 7px 6px -6px #666666;
}

#us_header {
	height: 50px;
}
#us_header .us_logo {
	display: block;
	position: absolute;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	width: 100px;
	height: 66px;
	background-image: url(/images/us_logo.png);
}


#us_logo_text {
	color: #FFF;
	margin-left: 90px;
	font-size: 1em;
	text-shadow: 4px 2px 6px #000034;
	padding-top: 10px;
	line-height: 0.8;
	position: relative;
	height: 40px;
}
.us_logo-country {
	position: absolute;
	bottom: 0;
	left: 145px;
	-webkit-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	border: 1px solid #9A1B1F;
	color: #990000;
	font-size: 80%;
	padding: 3px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	}
.article_strikeThrough {
    text-decoration: line-through;
}

#above_player_ad {
	max-width: 96%;
	margin: auto;
}
#below_player_ad {
	max-width: 96%;
	margin: auto;
}
