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

#displayScreenWidth {
	color: #FFF;
	padding-top: 20px;
	position: absolute;
	z-index: 2000;
	top: 30px;
	right: 10px;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea, button {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}
@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;
	font-display: auto;
}
[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 ----------------------------------------------------------------- */
h1 h2 h3 h4 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif
}


h1 {
	font-size: 2em;
	line-height: 1em;
	color: #5b1427;
	margin: 0 0 .5em 0;
}
h2 {
	font-size: 1.5em;
	line-height:1.1em;
	color: #5b1427;
	margin: 0 0 1em 0;
	font-weight: bold;
}
h3 {
	font-size: 1.5em;
	color: #5b1427;
	margin: 0 0 1em 0;
}
h4 {
	font-size: 1.3em;
	color: #5b1427;
	margin: 0 0 0.4em 0;
}
h5 {
	font-size: 1.1em;
	color: #5b1427;
	margin: 0.5em 0 0.4em 0;
}
p {
	text-align: justify;
	margin: 0 0 1em 0;
}
a {
	color: #5b1427
}
a:hover {
	color: #009eff
}

body {
	margin: 0;
	padding: 0;
	font-family: "Roboto","Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
	font-size: 1em;
	line-height: 1.4em;
	color: #000033;
	background-color: #67a1d1; /* Old browsers */
	background: linear-gradient(to bottom, #000034 0%, #67a1d1 360px); /* W3C */
}
.page {
	max-width: 1100px;
	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/flag_logo_medium.png);
	background-repeat: no-repeat;	
}

@media only screen and (max-width: 550px)
{
	header a.logo {
		background-image: url(../images/flag_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;
	}
}
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: #67a1d1;
}

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 {
    max-width: 1100px;
    position: relative;
    width: 98%;
    border: 1px solid #000034;
    box-shadow: 0px 5px 10px 2px #000033;
    z-index: 500;
    background: #000034; /* Old browsers */
    background: -moz-linear-gradient(top, #000034 0%, #67a1d1 450px);
    background: -ms-linear-gradient(top, #000034 0%, #67a1d1 450px);
    background: -webkit-linear-gradient(top, #000034 0%, #67a1d1 450px);
    background: linear-gradient(top, #000034 0%, #67a1d1 450px);
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    padding-bottom: 10px;
    -webkit-box-shadow: 0px 5px 10px 2px #000033;
	clear: both;
}
#title_bar {
	width: 100%;
	color: #fefef2;
	min-height: 32px;
	padding: 8px 5px 5px 5px;
}
#guide_player_title {
	width: 100%;
	text-align: center;
}

#guide_player_title h1 {
	font-size: 1.6em;
	color: #fefef2;
	margin: 0 0 7px 0;
}

#icon_nav_slider {
	width: 100%;
	margin: auto;
	overflow: hidden;
}
#slidebox {
	height: 100%;
	position: relative;
	transition: all 0.6s ease-in-out;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	overflow: hidden;
}
.slide {
	margin: auto;
	float: left;
}
.icon_nav {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}
.icon_nav ul {
	text-align: center;
	list-style: none;
}
.icon_nav li {
	width: 100px;
	display: inline-block;
	margin: 0px 3px 15px 3px;
}
.icon_nav li a {
	padding: 106px 0px 0px 0px;
	line-height: 1.2em;
	font-size: .8em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: #fefef5;
	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;
}
#switch{
	width: 96%; 
	margin-left:2%; 
}

footer {
	font-size: 0.85em;
	background-color: #346085;
	color: #67a1d1;
	padding: 10px;
	margin-top: 15px;
}

.clear-fix {
	clear: both;
	line-height: 1px;
}
	
.radius {
	-ms-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

/* Global Formatting and styles For Quiz Content*/

#secondary_content, .home #secondary_content{
	width: 98%;
	position: relative;
	float: none;
}
#playerContent{
	margin-top: 15px;
}
.max_width {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
#player {
    width: 100%;
    min-height: 450px;
    max-width: 96%;
    min-width: 320px;
    position: relative;
	overflow: hidden;
    background-color: #fff;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
	margin-bottom: 40px;
	padding-top: 10px;
    /*background-image: url(../images/passport.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    */
	box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.3);
}

#playerTitle {
    width: 94%;
	background-color: #d6d6d6;
	margin: 5px auto;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
}
#playerTitle #restart h2{
	margin-top: 0.4em;
    margin-bottom: 0.4em;
	margin-left: 5px;
}

#share2 {
			width: 80%;
			margin: auto;
			/*Width of right column in pixels*/
		}
		#social1 {
			width: 50%;
			float: left;
			
		}
		#social2 {
			width: 50%;
			float: right;
			
		}
		.share2 {
			max-width: 245px;
			margin: 20px auto 0px auto;
		}
		
		@media only screen and (max-width: 970px) {
			#share {
				width: 148px;
			}
		}
		@media only screen and (max-width: 600px) {
			#share2 {
			width: 100%;
		}

		#social1 {
			width: 100%;
			float: none;
			display: block;
			
		}
		#social2 {
			width: 100%;
			float: none;
			display: block;
			
		}
		.share2 {
			margin: 10px auto 0px auto;
		}
}
.article_teasers {
	width: 100%;
	height: 100%;
	min-height: 490px;
	position: relative;
}
.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;
}
.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: #000034;
}
.teaser a p:hover {
	color: #FFFFFF;
}
.teaser .promo {
	width: auto;
	float: none;
	padding: 10px 0px 0px 0px;
	background-position: 20px 13px;
	border-bottom: 1px solid #000034;
}
.teaser .promo .content {
	padding: 0px 20px 5px 90px;
}

#menu_wrapper {
	position: absolute;
	top: 10px;
	margin-top: 20px;
	z-index: 1000;
	background-color: #666666;
	width: 200px;
	left: -160px;
}
#xml_menu {
	width: 160px;
	background-color: #CCC;
	height: 400px;
}
#displayResults {
	width: 100%;
	max-width: 760px;
	height: 440px;
	position: relative;
}

.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;
}

#us_promo {
	width: calc(100% - 280px);
	float:right;
	
}
#canada_promo {
	width: 270px;
	float: left;
	background: -moz-linear-gradient(top, #1b2a5d 0%, #67a1d1 270px);
	background: -ms-linear-gradient(top, #1b2a5d 0%, #67a1d1 270px);
	background: -webkit-linear-gradient(top, #1b2a5d 0%, #67a1d1 270px);
	background: linear-gradient(top, #1b2a5d 0%, #67a1d1 270px);
	font-size: 1em;
	border: 1px solid #000034;
	border-radius: 4px;
	box-shadow: 0 7px 6px -6px #666666;
	overflow:hidden;
	
}
#canada_promo h3 {
	font-size: 1.5em;
	color: #fefef2;
	margin: 0 0 0.5em 0;
	text-align:center;
}
#canada_promo p {
	text-align:left;
	color: #5b1427;
	margin: 0.5em 0 0.5em 0;
}
#canada_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 #000034;
	border-radius: 4px;
	background-color: #67a1d1;
	box-shadow: 0 6px 6px -6px #666666;
}

#can_header {
	height: 45px;
}
#can_header .can_logo {
	display: block;
	position: absolute;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	width: 85px;
	height: 56px;
	background-image: url(/images/can_logo.png);
}


#can_logo_text {
	color: #FFF;
	margin-left: 75px;
	font-size: 1em;
	text-shadow: 4px 2px 6px #000034;
	padding-top: 10px;
	line-height: 0.8;
	position: relative;
	height: 40px;
}
.can_logo-country {
	position: absolute;
	bottom: 5px;
	left: 130px;
	-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;
	}

.image {
	float: right;
	margin-left: 5px;
	margin-bottom: 5px;
  padding: 3px;
  
  border: 5px solid #fefef2;

  -moz-box-shadow: 0 0 5px #888;
  -webkit-box-shadow: 0 0 5px#888;
  box-shadow: 0 0 5px #888;
}

.image img, .image span {
  display: block;
}

.image span, .image figcaption {
	width: 280px;
  text-align: center;
	font-size: 0.9em;
  margin-top: 4px;
}


.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
			}
#rwQuizzes {
	margin: auto;
	position: relative;
	clear: both;
	margin-bottom: 20px;
}
#rwQuizzes:after {
  content: "";
  display: table;
  clear: both;
}

#selector {
	width: 94%;
	margin: auto auto 25px auto;
	/*max-width: 740px;*/
	/*min-height: 475px;*/
	position: relative;
}
#selector h3 {
	font-size: 1.4em;
	color: #5b1427;
	margin: 0.5em 0;
}
#playerTitle #restart1 {
    display: inline-block;
}

#playerTitle #restart1 h2{
	margin-top: 0.4em;
    margin-bottom: 0.4em;
	margin-left: 5px;
}

#allQuestions {
	width: 100%;
	height: 100%;
	margin: auto;
	float: none;
	position: relative;
}

@media only screen and (min-width : 740px) {
#allQuestions {
	width: 49%;
	float: left;
	position: relative;
}
}
#someQuestions {
	width: 100%;
	height: 100%;
	float: none;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

@media only screen and (min-width : 740px) {
/* Smartphone view: 1 tile */
#someQuestions {
	width: 49%;
	height: 100%;
	float: right;
	position: relative;
}
}
.box {
	float: left;
	position: relative;
	width: 33%;
	padding-bottom: 33%;
}

@media only screen and (max-width : 550px) {
/* Smartphone view: 1 tile */
#selector {
	margin-left: auto;
	margin-right: auto;
	max-width: 350px;
	position: relative;
}
.box {
	width: 33%;
	padding-bottom: 33%;
}
}

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

@media only screen and (min-width : 740px) {
.box {
	width: 33.33%;
	padding-bottom: 33.33%;
}
}
.boxInner {
	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);
}
.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: #67a1d1;
	position: absolute;
	left: 3px;
	right: 3px;
	top: 3px;
	bottom: 3px;
	display: inline-block;
	border-radius: 3px;
	overflow: hidden;
	text-align: left;
	line-height: 1em;
	color: #fff;
	cursor: pointer;
}
.topicInner {
	padding: 4%;
}
.topicicon1 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-democracy.png);
	background-color: #67A1D1;
}
.topicicon2 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-government.png);
	background-color: #67A1D1;
}
.topicicon3 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-rights.png);
	background-color: #67A1D1;
}
.topicicon4 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-history.png);
	background-color: #67A1D1;
}
.topicicon5 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-geography.png);
	background-color: #67A1D1;
}
.topicicon6 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-symbols.png);
	background-color: #67A1D1;
}
.topicicon7 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/cor-icon-holidays.png);
	background-color: #67A1D1;
}
.topicicon8 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/reading.png);
	background-color: #67A1D1;
}
.topicicon9 {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url(../images/writing.png);
	background-color: #67A1D1;
}

			
.dark-button {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 5px 2%;
	margin-bottom: 10px;
	overflow: hidden;
	font-size: 1.3em;
	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: #67a1d1;
	color: #fefef2;
	cursor: pointer;
	border: 3px solid #fefef2;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
}
.dark-button:hover {
	background-image: linear-gradient(#5cabed, #67a1d1);
	color: #fefef2;
}
.dark-button:active, .dark-button.down {
	background-image: linear-gradient(#5cabed, #67a1d1);
	/*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);
}
.dark-button2 {
	position: relative;
	display: inline-block;
	width: 50%;
	padding: 5px 2%;
	margin-top: 10px;
	margin-left: 24.8%;
	overflow: hidden;
	font-size: 1.0em;
	line-height: 1.5rem;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	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: #67a1d1;
	color: #fefef2;
	cursor: pointer;
	border: 2px solid #fefef2;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
}
.dark-button2:hover {
	background-image: linear-gradient(#5cabed, #67a1d1);
}
.dark-button2:active, .dark-button.down {
	background-image: linear-gradient(#5cabed, #67a1d1);
	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;
		}
.drop_shadow {
	-webkit-box-shadow: 0 10px 6px -6px #777;
	box-shadow: 0 10px 6px -6px #777;
}
.drop_shadow_small {
	-webkit-box-shadow: 0 5px 3px -3px #777;
	box-shadow: 0 5px 3px -3px #777;
}

.news_article {
	width: 100%;
	height: 100%;
	min-height: 490px;
	float: none;
	position: relative;
	background-color: #EFF5FB;
	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;
}
}
a.article_link {
	background-color: #346085;
	border: 1px solid #000034;
	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;
}


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

			
