@charset "utf-8"; /* CSS Document for CNN text by Mark Mulrooney */

html {
  font-size: 62.5%;
}
html,body{height: 100%;}

body {
	background: #fff;
	color: #fff;
	font-family:CNN,Helvetica Neue,Helvetica,Arial,Utkal,sans-serif;
}

/* HEADER */
header {
  background-color: #000;
  min-height: 60px;
  position: relative;
}
header img {
  float: left;
  height: 60px;
  width: 60px;
}
header .header-link {
  color: #fff;
  float: left;
  font-size: 1.6em;
  line-height: 60px;
  margin: 0 1em;
  position: relative;
  text-decoration: none;
}
header .header-link:before {
	border-style: solid;
	border-width: 0.1em 0.1em 0 0;
	content: '';
	display: inline-block;
	height: 0.2em;
  left: .15em;
	position: relative;
	top: 27px;
	transform: rotate(-135deg);
	vertical-align: top;
	width: 0.2em;
}

/* HAMBURGER ICON */
#menu-icon {
  display: block;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 29px;
}
#menu-icon:hover {
  cursor:pointer;
}
#menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#menu-icon span:nth-child(1) {
  top: 0px;
}

#menu-icon span:nth-child(2),#menu-icon span:nth-child(3) {
  top: 8px;
}

#menu-icon span:nth-child(4) {
  top: 16px;
}

#menu-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu-icon.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}


/* NAVIGATION */
nav {
  background-color: #000;
  float: right;
  font-size: 1.5em;
  max-height: 0;
  max-width:400px;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-transition:max-height 1.25s ease-in-out;
  -moz-transition:max-height 1.25s ease-in-out;
  -o-transition:max-height 1.25s ease-in-out;
  transition:max-height 1.25s ease-in-out;
  z-index: 2;
}
nav.open{
  max-height: 30em;
}

nav p {
  max-width: 270px;
  padding: 20px;
}

nav ul {
  border-top: 2px solid #fff;
  margin: 0;
}

nav li {
  border-bottom: 2px solid #fff;
  margin: 0;
  padding: .95em 1.5em;
  text-align: right;
}
nav li a {
  color: #fff;
  text-decoration: none;
}

/* SPONSORED */
.sponsored-content {
  background-color: #B59343;
  color: #fff;
  font-size: 1.5em;
  left:0;
  padding: 1em;
  position: fixed;
  top:60px;
  width: 100%;
  z-index: 1;
}
