@import url("/css/fck_editorarea.css");


/* GENERAL */

.bg-image > .image-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	}

.bg-image > .image-wrapper .image {
	opacity: 0.4;
	}

.image-wrapper {
	display: block;
	position: relative;
	background: #202020;
	}

.image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #303030;
	}

.image.faded img {
	opacity: 0.4;
	}

.image div {
	height: 100%;
	}

.image img {
	display: block;
	}

.image.gradient:before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	}

.empty {
	text-align: center;
	margin: 10px 10px 20px;
	padding: 30px;
	background: rgba(0,0,0,0.1);
	font-size: 200%;
	color: #999999;
	}

.stats span {
	white-space: nowrap;
	margin-right: 30px;
	}



/* HEADER */

header {
	position: relative;
	z-index: 3;
	background: #ffffff;
	}

header .top {
	position: relative;
	height: 100px;
	}

header .logo {
	position: absolute;
	left: 38px;
	top: 14px;
	width: 192px;
	height: 60px;
	background: url(/images/logo.png);
	}

header .logo img {
	display: none;
	}

header .info {
	position: absolute;
	left: 256px;
	right: 40px;
	bottom: 40px;
	border-bottom: 2px solid #ffff04;
	}

header nav {
	position: relative;
	padding: 0 40px;
	}

header nav ul {
	margin: 0;
	list-style: none;
	}

header ul.main > li {
	position: relative;
	display: inline-block;
	-webkit-transition: background 200ms;
	}

header ul.main > li > a {
	cursor: pointer;
	display: block;
	padding: 12px 18px;
	-webkit-transition: color 200ms;
	text-transform: uppercase;
	}

header ul.main > li:hover,
header ul.main > li.active {
	background: #02009A;
	-webkit-transition-delay: 100ms;
	}

header ul.main > li:hover > a,
header ul.main > li.active > a {
	color: #ffffff;
	}

header ul.main > li:hover > a[href]:hover {
	background: rgba(255,255,255,0.1);
	-webkit-transition-delay: 100ms;
	}

header ul.main > li > a:after {
	color: #000000;
	opacity: 0.4;
	-webkit-transition-property: color, opacity;
	-webkit-transition-duration: 200ms;
	}

header ul.main > li:hover > a:after {
	color: #ffff04;
	opacity: 1;
	-webkit-transition-delay: 100ms;
	}

header nav .dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 100%;
	background: #02009A;
	visibility: hidden;
	opacity: 0;
	-webkit-transition-property: visibility, opacity;
	-webkit-transition-duration: 200ms;
	z-index: 1;
	}

header ul.main > li:hover .dropdown {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 100ms;
	color:white;
	}

header ul.main > li .dropdown p{
  font-size: 16px;
  color: #fff;
  padding: 0 20px 12px 20px;
  }

header nav > div > ul .dropdown ul a {
	display: block;
	padding: 6px 18px;	
	color: #ffffff;
	opacity: 1;
	font-size: 95%;
	}

header nav li:not(.nav-press-releases) .dropdown a {
	white-space: nowrap;
	}

header nav > div > ul .dropdown li:not(:last-child) a {
	border-bottom: 1px solid #29279c;
	}

header nav .dropdown ul a:hover {
	background: #29279c;
	opacity: 1;
	}

header nav .dropdown .actions {
	padding: 18px;
	}

header nav .dropdown [class*="button"] {
	background: rgba(255,255,255,0.12);
	border: 1px solid #ffffff;
	color: #ffffff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	}

header nav .dropdown [class*="button"]:hover {
	background: rgba(255,255,255,0.18);
	}

header nav .dropdown .input-wrapper {
	margin-bottom: 0;
	background: rgba(0,0,0,0.5);
	border: none;
	min-width: 240px;
	}

header nav .dropdown .input-wrapper [class*="icon"]:before {
	color: #ffff04;
	}

header nav .right {
	position: absolute;
	right: 40px;
	top: 0;
	}

header nav .right > ul {
	display: inline-block;
	vertical-align: middle;
	}

header nav .right .dropdown {
	left: auto;
	right: 0;
	}

header nav .right .dropdown .heading {
	margin: 0 18px 12px 18px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	opacity: 0.5;
	color: #ffffff;
	}

header nav .right .dropdown ul {
	margin: 0 36px 18px 18px;
	}

header nav .right .dropdown ul a {
	color: #ffffff;
	padding: 4px 0;
	}

header nav .right .dropdown a:hover {
	text-decoration: underline;
	background: none;
	}

header .search-popup-wrapper {
	display: inline-block;
	vertical-align: middle;
	margin-left 10px;
	}

header .search-popup-wrapper .input-wrapper {
	margin: 0;
	}

header .input-wrapper label,
header .input-wrapper input {
	font-size: 90% !important;
	}

header ul .input-wrapper input {
	color: #ffffff !important;
	}

header .search-trigger-wrapper {
	display: none !important;
	}

header .archive {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	height: 120px;
	-webkit-transform: translate3d(0,0,0);
	}

header .archive-container {
	position: absolute;
	left: 0;
	right: 0;
	height: 58px;
	padding: 12px 0 50px;
	background: #02009A;
	overflow: scroll;
	white-space: nowrap;
	}

header .archive.active {
	display: block;
	}

header .archive .tip {
	position: absolute;
	left: 50%;
	bottom: 5px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-left: -20px;
	font-size: 32px;
	opacity: 0.9;
	-webkit-transform: scale(0.75);
	}

header .archive .tip div {
	position: absolute;
	top: 50%;
	height: 2px;
	width: 150px;
	margin-top: -1px;
	background: #ffffff;
	font-size: 16px;
	}

header .archive .tip .icon-only-left {
	right: 100%;
	}

header .archive .tip .icon-only-right {
	left: 100%;
	}

header .archive .tip div:before {
	position: absolute;
	top: -7px;
	}

header .archive .tip .icon-only-left:before {
	left: -5px
	}

header .archive .tip .icon-only-right:before {
	right: -5px
	}

header .archive .slider {
	position: relative;
	font-size: 0;
	}

header .archive a,
header .archive span {
	display: inline-block;
	vertical-align: bottom;
	color: #d3d3d3;
	padding: 15px;
	}

header .archive .year a:first-of-type{
    color: #fff;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 20px;
	}

header .archive a {
	cursor: pointer;
	}

header .archive a:after {
	color: #FFFF04;
	}

header .archive a:hover {
	background-color: rgba(255,255,255,0.2);
	}

header .archive span:before,
header .archive span:after {
	color: #ffff04;
	}

header .archive .year {
	display: inline-block;
	vertical-align: bottom;
	background: rgba(0,0,0,0.3);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}

header .archive .year:first-child {
	margin-left: 12px;
	}

header .archive .year:last-child {
	margin-right: 12px;
	}

header .archive .year:not(:first-child) {
	margin-left: 10px;
	}

header .archive .year a:first-child {
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	}

header .archive .year a:last-child {
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	}

header .archive .month {
	text-transform: uppercase;
	}

.fix-nav header nav {
	position: fixed;
	z-index: 99;
	left: 0;
	right: 0;
	top: 0;
	}

header nav > div {
	-webkit-transition: -webkit-box-shadow 300ms;
	-moz-transition: -moz-box-shadow 300ms;
	transition: box-shadow 300ms;
	}

.fix-nav header nav > div {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #ffffff;
	padding: 0 40px;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.4);
	box-shadow: 0 1px 4px rgba(0,0,0,0.4);
	}

.fix-nav header .top {
	padding-bottom: 52px;
	}



/* HERO */

.hero-wrapper {
	position: relative;
	z-index: 1;
	padding: 10px 40px 0;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(245,245,245,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(245,245,245,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(245,245,245,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(245,245,245,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(245,245,245,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );
	}

.hero-wrapper + .bg-image {
	border-top: 40px solid #f5f5f5;
	}

.hero {
	position: relative;
	height: 640px;
	}

.hero-wrapper .hero {
	padding: 0 20px;
	}

.hero .bounds {
	height: 100%;
	}

.hero h1,
.hero h1 a {
	color: #ffffff;
	font-weight: 700;
	}

.hero a {
	border-bottom: 2px solid transparent;
	-webkit-transition: border-bottom 200ms;
	-moz-transition: border-bottom 200ms;
	transition: border-bottom 200ms;
	}

.hero a:hover {
	border-bottom-color: rgba(255,255,255,0.5);
	}

.hero .slideshow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	}

.hero.no-image {
	
	}

.hero .caption {
	position: absolute;
	z-index: 2;
	opacity: 1;
	left: 0;
	right: 0;
	bottom: 30px;
	}

.hero .back {
	position: absolute;
	left: 0;
	top: 20px;
	z-index: 10;
	cursor: pointer;
	display: none;
	border: none !important;
	margin-bottom: 5px;
	}

.hero .back:hover {
	opacity: 0.9;
	}

.hero .info,
.hero .info a {
	color: #ffffa4;
	}

.hero .caption h1 {
	margin-top: 15px;
	}

.hero .caption .text {
	max-width: 650px;
	}

.hero .actions {
	position: absolute;
	z-index: 3;
	right: 10px;
	bottom: -32px;
	}

.hero .actions a {
	display: inline-block;
	cursor: pointer;
	width: 64px;
	height: 64px;
	line-height: 64px;
	margin-left: 8px;
	text-align: center;
	background: #000099;
	color: #ffffff;
	border: none !important;
	font-size: 22px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	}

.hero .actions a:hover {
	background-color: #2020b7;
	}

.hero .backWide {
	display: inline-block;
	cursor: pointer;
	width: 64px;
	height: 64px;
	line-height: 64px;
	margin-left: 8px;
	text-align: center;
	background: #888;
	color: #ffffff;
	border: none !important;
	font-size: 22px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	left: 10px;
	bottom: -32px;
	z-index: 3;
	}

.hero .backWide:hover {
	background-color: #999;
	}


.hero.heading {
	background: #202020;
	height: auto;
	padding: 100px 20px;
	color: #ffffff;
	text-align: center;
	}

.hero.heading .image,
.hero.heading .yar-slide {
	opacity: 0.3;
	}

.hero.heading p {
	color: #ffff8f;
	}

.hero.heading .bounds {
	z-index: 2;
	}

.hero.heading .bounds :last-child {
	margin-bottom: 0;
	}

.hero [class*="button"] {
	border: none;
	}



/* BREADCRUMBS */

.breadcrumbs-wrapper {
	background: #f5f5f5;
	padding: 0 40px;
	}

.breadcrumbs {
	border-bottom: 2px solid #cccccc;
	padding: 10px 0;
	border-top: 2px solid #cccccc;
	}

.hero-wrapper + .breadcrumbs-wrapper .breadcrumbs {
	border-top: none;
	}

.breadcrumbs a:after,
.breadcrumbs span:after {
	pointer-events: none;
	color: #999999;
	margin-right: 3px;
	}



/* CONTENT */

header + .content-wrapper {
	border-top: 10px solid #ffffff;
	}

.content {
	background: #f5f5f5;
	padding: 40px 30px;
	}

.content.article {
	padding-top: 60px;
	}

.latest-galleries h2 {
	margin-top: 9px;
	}

.content [class*="column"]:first-child > .text {
	padding-right: 5%;
	}

.content [class*="column"]:last-child > .text {
	padding-left: 5%;
	}

.content .reverse [class*="column"]:first-child > .text {
	padding-right: 0;
	padding-left: 5%;
	}

.content .reverse [class*="column"]:last-child > .text {
	padding-left: 0;
	padding-right: 5%;
	}

.toggles {
	position: relative;
	margin-bottom: 21px;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	}

.toggle {
	position: relative;
	cursor: pointer;
	display: inline-block;
	}

.toggle span {
	opacity: 0.6;
	-webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
	}

.toggle:not(:last-child) {
	margin-right: 16px;
	}

.toggle:not(:last-child):after {
	content: "";
	position: absolute;
	right: -14px;
	top: -3px;
	width: 2px;
	height: 100%;
	background: #cccccc;
	-webkit-transform: rotate(15deg);
	-moz-transform: rotate(15deg);
	transform: rotate(15deg);
	pointer-events: none;
	}

.toggle:hover span {
	opacity: 1;
	}

.toggle.active span {
	color: #02009a;
	opacity: 1;
	border-bottom: 2px solid;
	}

ul.social {
	margin: 0;
	}

ul.social li {
	list-style: none;
	display: inline;
	padding-right: 4px;
	}

.content nav .page-heading {
	position: relative;
	z-index: 1;
	background: #ffffff;
	padding: 8px 16px;
	margin-bottom: 4px;
	margin-top: -60px;
	}

.content nav ul {
	margin: 0;
	list-style: none;
	}

.content nav a {
	display: block;
	padding: 8px 16px;
	margin: 4px 0;
	background: rgba(0,0,0,0.05);
	font-size: 120%;
	}

.content nav a:hover {
	background: rgba(0,0,0,0.08);
	}

.content nav a.selectedtrue {
	background: #02009a;
	color: #ffffff;
	}

.content.article .stats {
	margin-bottom: 20px;
	}

.content.article .details {
	margin: 20px 0 40px;
	position: relative;
	}

.content.article .details .detail {
	/*display: block;*/ 
	}

.content.article .boilerplate {
	opacity: 0.75;
	border-top: 2px dashed #d0d0d0;
	border-bottom: 2px dashed #d0d0d0;
	padding-bottom: 12px;
	}

.boilerplate p.normalplus {
	margin-bottom: 8px;
	margin-top: 30px;
	}

.boilerplate p {
	line-height: 1.3rem;
	}

.filed{
	position: absolute;
	top: -36px;
	padding: 0 20px 0 0;
	background: #f5f5f5;
}

.content.article .related-wrapper {
	border-style: solid;
	border-color: #cccccc;
	border-width: 2px 0;
	margin: 40px 0;
	}

.content.article .multi-related-label {
	margin-bottom: -35px;
	}

.content.article .related {
	position: relative;
	display: block;
	padding: 30px 200px 30px 0;
	text-align: right;
	}

.content.article .related .image-wrapper {
	position: absolute;
	right: 73px;
	top: 50%;
	width: 100px;
	height: 100px;	
	margin-top: -50px;
	}

.content.article .related:hover {
	background: rgba(255,255,255,0.65);
	}

.content.article .related:after {
	position: absolute;
	right: 10px;
	top: 50%;
	margin: -20px 0 0;
	font-size: 250%;
	}

.content.article .no-comments {
	height: 340px;
	text-align: center;
	line-height: 340px;
	background: rgba(0,0,0,0.05);
	}

.content.article .comment-form h5 {
	margin-top: 11px;
	}

.content.article .comment-form .input-wrapper {
	border: none;
	background: rgba(0,0,0,0.1);
	}

.content ul.social li {
	display: inline-block;
	}

.content ul.social a {
	display: block;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #ffffff;
	opacity: 0.9;
	}

.content ul.social a:hover {
	opacity: 1;
	}

.content ul.social .icon-only-facebook {
	background-color: #3b5998;
	}

.content ul.social .icon-only-twitter {
	background-color: #00aced;
	}

.content ul.social .icon-only-youtube {
	background-color: #bb0000;
	}

.content ul.social .icon-only-linkedin {
	background-color: #007bb6;
	}

.content ul.social .icon-only-googleplus {
	background-color: #dd4b39;
	}



/* ITEM STYLES */

.item {
	position: relative;
	display: block;
	background: #ffffff;
	color: #303030;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	-webkit-transition: -webkit-transform 150ms;
	-moz-transition: -moz-transform 150ms;
	transition: transform 150ms;
	}

a[href].item:hover {
	color: #303030;
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	transform: scale(1.02);
	}

.bg-image .item {
	background: rgba(0,0,0,0.4);
	}

.bg-image .item .text {
	border-color: rgba(255,255,255,0.13);
	border-style: solid;
	border-width: 0 1px 1px;
	color: #ffffff;
	}

.bg-image .item .text p {
	opacity: 0.65;
	}

.bg-image h2 {
	color: #ffffff;
	}

.fixed-items {
	position: relative;
	padding: 25px;
	text-align: center;
	font-size: 0;
	}

.fixed-items.bg-image {
	padding-top: 50px;
	padding-bottom: 50px;
	}

.fixed-items .item {
	display: inline-block;
	width: 100%;
	max-width: 360px;
	margin: 15px;
	text-align: left;
	vertical-align: bottom;
	}

.item .image-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	}

.item.short-format .image-wrapper {
	overflow: hidden;
	}

.item.short-format .image-wrapper:before {
	content: "News Brief";
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	background: #FFFF04;
	color: #02009A;
	padding: 8px 70px;
	font-weight: bold;
	font-size: 80%;
	-webkit-transform: rotate(-45deg) translate(-65px,-34px);
	-moz-transform: rotate(-45deg) translate(-65px,-34px);
	transform: rotate(-45deg) translate(-65px,-34px);
	}

.item .stats {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 25px;
	color: #ffffff;
	text-align: center;
	}

.item .stats span {
	margin: 0 15px;
	}

.item .text {
	position: relative;
	padding: 30px 40px;
	}

.item .text > :last-child {
	margin-bottom: 0;
	}

.item .date {
	display: block;
	margin-bottom: 16px;
	}

.item .action {
	position: relative;
	color: #01009a;
	text-align: right;
	}

.item .action .has-media {
	position: absolute;
	left: 0;
	top: 0;
	color: #303030;
	}

.item.small .text {
	padding: 20px;
	}

.item.small h3 {
	margin-bottom: 10px;
	}

.item.photo-left {
	padding-left: 280px;
	}

.item.photo-left .image-wrapper {
	width: 280px;
	height: 100%;
	}

.item.small.photo-left {
	padding-left: 160px;
	}

.item.small.photo-left .image-wrapper {
	width: 160px;
	}

.item.photo-top {
	padding-top: 180px;
	}

.item.photo-top .image-wrapper {
	width: 100%;
	height: 180px;
	}

.item.small.photo-top {
	padding-top: 160px;
	}

.item.small.photo-top .image-wrapper {
	height: 160px;
	}

.item.photo-square .image-wrapper {
	position: relative;
	padding-bottom: 100%;
	}

.item .icon {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	line-height: 73px;
	text-align: center;
	font-size: 32px;
	margin: -35px 0 0 -35px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #ffffff;
	color: #000000;
	opacity: 0.7;
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.7);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.7);
	box-shadow: 0 0 2px rgba(0,0,0,0.7);
	}

.item .number {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	width: 90px;
	height: 90px;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	padding: 16px 10px;
	margin: -45px 0 0 -45px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #ffffff;
	color: #000000;
	opacity: 0.7;
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.7);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.7);
	box-shadow: 0 0 2px rgba(0,0,0,0.7);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

.item .number .label {
	font-size: 35%;
	}

.item .icon-only-play {
	text-indent: 0.22em;
	font-size: 25px;
	}

.item .checkbox {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background: #ffffff;
	margin: 0;
	display: block;
	line-height: 0;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}

.item .checkbox input {
	position: relative;
	z-index: 2;
	opacity: 0;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	margin: 0;
	}

.item .checkbox span {
	position: absolute;
	z-index: 1;
	display: block;
	opacity: 0;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 24px;
	text-align: center;
	color: #02009A;
	}

.item .checkbox input:checked + span {
	opacity: 1;
	}

.item:hover .checkbox span {
	opacity: 0.3;
	}

.item .checkbox:hover span {
	opacity: 0.4;
	}

.item .download {
	cursor: pointer;
	position: absolute;
	z-index: 1;
	display: block;
	left: 50px;
	bottom: 10px;
	width: 30px;
	height: 30px;
	line-height: 36px;
	font-size: 20px;
	text-align: center;
	background: #ffffff;
	color: #02009A;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}

.item .download span {
	opacity: 0.3;
	}

.item .download:hover span {
	opacity: 1;
	}

.download-selected {
	cursor: pointer;
	position: fixed;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	right: 30px;
	bottom: 30px;
	background: #02009A;
	color: #ffffff;
	padding: 15px 30px;
	font-weight: bold;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition-property: visibility, opacity;
	-webkit-transition-duration: 200ms;
	-moz-transition-property: visibility, opacity;
	-moz-transition-duration: 200ms;
	transition-property: visibility, opacity;
	transition-duration: 200ms;
	}

.download-selected.active {
	visibility: visible;
	opacity: 0.9;
	}

.download-selected:hover {
	opacity: 1;
	}



/* PAGINATION */

.page-numbers {
	padding: 30px 0;
	text-align: center;
	}

.page-number {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 42px;
    height: 42px;
    line-height: 42px;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    border: 1px solid #dddddd;
    color: #202020;
    margin-bottom: 8px;
	}

.page-number:hover {
	color: #202020;
	background: #dddddd;
	}

.current.page-number {
	font-weight: bold;
	color: #ffffff;
	background: #02009A;
	border-color: #02009A;
	}



/* TWITTER */

.twitter {
	background: #303030;
	color: white;
	padding: 50px 0;
	}

.twitter a {
	color: #999999;
	}

.tweetContent {
	padding: 20px 0 10px;
	}

.tweet {
	padding: 0 10px;
	}

.tweet a {
	word-break: break-all;
	}

.twitter .icon-only-twitter:before {
	color: #00aced;
	}



/* FOOTER */

footer {
	background: #ffffff;
	padding: 60px 24px;
	text-align: center;
	}

footer .link {
	display: none;
	}




/* POPUP */

.popup-wrapper {
	cursor: default;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	z-index: 9999;
	left: 0;
	right: auto;
	top: 0;
	display: table;
	width: 100%;
	height: 100%;
	background: rgba(2,0,154,0.95);
	-webkit-transition-property: opacity, visibility;
	-webkit-transition-duration: 300ms;
	-moz-transition-property: opacity, visibility;
	-moz-transition-duration: 300ms;
	transition-property: opacity, visibility;
	transition-duration: 300ms;
	}
.popup-wrapper.popup-active {
	visibility: visible;
	opacity: 1;
	}
.popup-wrapper .popup {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 300ms;
	-moz-transition-property: -moz-transform;
	-moz-transition-duration: 300ms;
	transition-property: transform;
	transition-duration: 300ms;
	padding: 0 20px;
	color: #ffffff;
	}
.popup-wrapper.popup-active .popup {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
	}

.popup-wrapper .popup .instructions {
	margin-bottom: 20px;
	}

.popup-wrapper .popup .actions {
	display: inline-block;
	width: 300px;
	}

.popup-wrapper .popup .actions [class*="button"]:not(:last-child) {
	margin-bottom: 15px;
	}

.popup-wrapper .close{
	position: absolute;
	z-index: 999;
	display: inline-block;
	top: 50px;
	right: 50px;
	color: #02009a;
	cursor: pointer !important;
	background: #f9f9f9;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 4rem;
	-webkit-border-radius: 100px;
	   -moz-border-radius: 100px;
	    -ms-border-radius: 100px;
	     -o-border-radius: 100px;
	        border-radius: 100px;
}

a.quoteTweet{
	text-align: right;
	display: inherit;
	color: #777;
	line-height: 1rem;
}

a.quoteTweet:hover{
	color: #555;
}
a.quoteTweet:after{
	top: 6px;
}

/* ELEMENTS */

.input-wrapper {
	position: relative;
	border: 1px solid #bfbfbf;
	margin-bottom: 20px;
	background; #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	}

.input-wrapper label {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
	color: #999999;
	}

.input-wrapper input[type="text"],
.input-wrapper input[type="password"],
.input-wrapper textarea {
	font-family: "mentone", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: transparent;
	outline: none;
	border: none;
	width: 100%;
	color: #303030;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	}

.input-wrapper label,
.input-wrapper input[type="text"],
.input-wrapper input[type="password"],
.input-wrapper textarea {
	display: block;
	font-size: 100%;
	padding: 12px 12px 10px 12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: normal;
	}

.input-wrapper textarea {
	display: block;
	height: 150px;
	resize: none;
	}

.input-wrapper a {
	position: absolute;
	z-index: 2;
	right: 10px;
	top: 50%;
	margin-top: -13px;
	}

.input-wrapper a:hover {
	text-decoration: none;
	}

.input-wrapper a + input,
.input-wrapper a + label + input,
.input-wrapper a + label,
.input-wrapper a + div + input,
.input-wrapper a + div + label + input,
.input-wrapper a + div + label {
	padding-right: 30px !important;
	}

.checkboxes {
	margin-bottom: 20px;
	}

.checkbox {
	display: inline-block;
	margin-right: 20px;
	}

.checkbox input {
	vertical-align: 2px;
	margin-right: 8px;
	}

.validator {
	position: absolute;
	right: 0;
	top: 0;
	width: 44px;
	height: 100%;
	background: #ffff04 url(/images/icon-validation.png) center center no-repeat;
	}

.error {
	display: block;
	border: 1px solid #93595c;
	background: #e7d3d4;
	color: #912028;
	padding: 6px 10px;
	margin-bottom: 20px;
	}

[class*="button"] {
	cursor: pointer;
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 12px 20px 9px;
	border: 1px solid #ababab;
	background-color: #d8d9d8;
	background-image: -moz-linear-gradient(top,  rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
	background-image: -webkit-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	-webkit-box-shadow: inset 0 1px 0 #ffffff;
	-moz-box-shadow: inset 0 1px 0 #ffffff;
	box-shadow: inset 0 1px 0 #ffffff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	}

[class*="button"]:hover {
	background-color: #d3d3d3;
	color: #02009a;
	}

[class*="button"][class*="bigger"] {
	font-size: 130%;
	font-weight: normal;
	margin: 30px 0;
	}

[class*="button"][class*="full"] {
	width: 100%;
	text-align: center;
	}

[class*="button"][class*="blue"] {
	color: #ffffff;
	border-color: #121158;
	background-color: #02009a;
	background-image: -moz-linear-gradient(top,  rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0)));
	background-image: -webkit-linear-gradient(top,  rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top,  rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top,  rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to bottom,  rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	}

[class*="button"][class*="blue"]:hover {
	background-color: #020088;
	}

[class*="button"][class*="blue"]:after {
	color: #ffff04;
	}

[class*="button"][class*="graphic-icon"] {
	padding-left: 86px;
	font-weight: normal;
	text-align: left;
	margin-bottom: 20px;
	}

[class*="button"][class*="graphic-icon"]:before {
	content: "";
	position: absolute;
	left: 15px;
	top: 50%;
	width: 55px;
	height: 55px;
	margin-top: -27px;
	}

[class*="button"][class*="graphic-icon-pdf"]:before {
	background-image: url(/images/icon-pdf.png);
	}

[class*="button"][class*="graphic-icon-photos"]:before {
	background-image: url(/images/icon-photos.png);
	}

[class*="button"] .action {
	display: block;
	color: #303030;
	opacity: 0.75;
	text-transform: uppercase;
	line-height: 1em;
	padding-top: 7px;
	margin-bottom: 4px;
	}

[class*="button"] .target {
	display: block;
	font-size: 1.3rem;
	line-height: 1em;
	padding-bottom: 4px;
	}
[class*="button"] .target.text-smaller {
	font-size: 1rem;
	}

.button-full {
	width: 100%;
	}

[class*="button"][class*="small"] {
	padding: 4px 12px 1px;
	}

.no-wrap {
	white-space: nowrap;
}


/* GRID FRAMEWORK */

.bounds {
	position: relative;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

.bounds.padding {
	padding-left: 10px;
	padding-right: 10px;
	}

.bounds.padding > .row {
	margin: 0 -10px;
	}

.bounds.wider {
	max-width: 1460px;
	}

[class*="column"] {
	position: relative;
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

.reverse > [class*="column"] {
	float: right;
	}

[class*="column"][class*="center"] {
	float: none;
	margin: 0 auto;
	}

[class*="column"] [class*="column"]:first-child {
	padding-left: 0;
	}

[class*="column"] [class*="column"]:last-child {
	padding-right: 0;
	}

[class*="column1"] { width: 8.33333% }
[class*="column2"] { width: 16.66667% }	
[class*="column3"] { width: 25% }
[class*="column4"] { width: 33.33333% }
[class*="column5"] { width: 41.66667% }
[class*="column6"], [class*="half"] { width: 50% }
[class*="column7"] { width: 58.33333% }
[class*="column8"] { width: 66.66667% }
[class*="column9"] { width: 75% }
[class*="column10"] { width: 83.33333% }
[class*="column11"] { width: 91.66667% }
[class*="column12"] { width: 100% }



/* RESPONSIVE GRID */

.row.grid .item-wrapper {
	float: left;
	width: 33.33333%;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

@media screen and (max-width:1080px) {
	.row.grid .item-wrapper {
		width: 50%;
		}
	}

@media screen and (max-width:580px) {
	.row.grid .item-wrapper {
		width: 100%;
		}
	}



/* RETINA */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.validator {
		background-image: url(/images/icon-validator-2x.png) !important;
		background-size: 16px 16px !important;
		}
	[class*="button"][class*="graphic-icon-pdf"]:before {
		background-image: url(/images/icon-pdf-2x.png) !important;
		background-size: 55px 55px !important;
		}
	[class*="button"][class*="graphic-icon-photos"]:before {
		background-image: url(/images/icon-photos-2x.png) !important;
		background-size: 55px 55px !important;
		}
	}



/* MEDIA QUERIES */

@media screen and (min-width:1420px) {
	.hero.heading {
		padding-top: 140px;
		padding-bottom: 140px;
		}
	}

@media screen and (max-width:1400px) {
	.hero .back{
		display:inline-block !important;
		}
}

@media screen and (max-width:1240px) {
	header ul.main > li > a {
		padding: 12px 13px;
		}
	}

@media screen and (max-width:1150px) {
	header .search-popup-wrapper {
		position: absolute;
		right: 0;
		top: -80px;
		width: 200px;
		}
	header .search-popup-wrapper .input-wrapper label,
	header .search-popup-wrapper .input-wrapper input {
		padding-left: 8px;
		padding-top: 8px;
		padding-bottom: 8px;
		}
	header .search-popup-wrapper .input-wrapper a {
		right: 8px;
		}
	}

@media screen and (max-width:1020px) {
	.press-releases .item-wrapper {
		width: 50%;
		}
	}

@media screen and (max-width: 960px) {
	header .logo {
		left: 18px;
		}
	header .info {
		left: 236px;
		right: 20px;
		}
	header nav {
		padding-left: 20px;
		padding-right: 20px;
		}
	header nav .right {
		right: 20px;
		}
	header ul.main > li > a {
		padding: 12px 12px;
		}
	.hero-wrapper,
	.content,
	.breadcrumbs-wrapper {
		padding-left: 20px;
		padding-right: 20px;
		}
	.hero {
		height: 540px;
		}
	.fixed-items {
		padding-left: 10px;
		padding-right: 10px;
		}
	.fixed-items .item {
		margin: 10px;
		}
	[class*="button"][class*="graphic-icon"] {
		padding-left: 15px;
		padding-top: 86px;
		text-align: center;
		}
	[class*="button"][class*="graphic-icon"]:before {
		left: 50%;
		top: 20px;
		margin: 0 0 0 -27px;
		}
	}

@media screen and (max-width: 900px) {
	header nav {
		height: 42px;
		}
	.fix-nav header nav {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		}
	.fix-nav header nav > div {
		position: static;
		left: auto;
		right: auto;
		top: auto;
		padding: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		}
	.fix-nav header .top {
		padding-bottom: 0;
		}
	header nav > div > ul.main {
		position: absolute;
		top: 42px;
		background: #02009A;
		}
	header nav > div > ul:before {
		content: "Menu";
		position: absolute;
		bottom: 100%;
		background: #02009A;
		padding: 7px 20px;
		color: #ffffff;
		}
	header nav > div > ul.main > li > a {
		padding: 8px 40px 8px 20px;
		}
	header .right > ul.main > li > a {
		padding: 7px 12px;
		}
	header nav > div > ul.main > li:not(:last-child) > a {
		border-bottom: 1px solid #29279c;
		}
	header nav > div > ul.main > li {
		display: none;
		}
	header nav > div > ul.main:hover > li {
		display: block;
		}
	header nav > div > ul.main > li > a {
		color: #ffffff;
		}
	header nav > div > ul.main > li > a[class*="icon"]:after {
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -8px;
		color: #ffffff;
		content: "\e001";
		}
	header nav > div > ul .dropdown {
		left: 100%;
		top: 0;
		min-width: 0;
		}
	header .archive {
		top: 42px;
		left: 20px;
		right: 20px;
		}
	[class*="column"] {
		float: none;
		width: 100%;
		padding: 0;
		}
	.content [class*="column"] > .text {
		padding: 0 !important;
		}
	.content > .bounds > [class*="column"] + [class*="column"] {
		margin-top: 40px;
		}
	.content nav {
		display: none;
		}
	.gallery-items {
		margin-left: -1%;
		margin-right: -1%;
		}
	.latest-galleries {
		font-size: 0;
		}
	.latest-galleries .item {
		display: inline-block;
		vertical-align: bottom;
		width: 48%;
		font-size: 1rem;
		margin-left: 1%;
		margin-right: 1%;
		}
	.twitter .tweet {
		margin-bottom: 20px;
		padding: 0 20px;
		}
	.twitter [class*="column"]:last-child .tweet {
		margin-bottom: 0;
		}
	.tweetContent {
		padding-top: 10px;
		}
	}

@media screen and (max-width: 800px) {
	.item .text {
		padding: 20px;
		}
	.item.photo-left {
		padding-left: 0;
		padding-top: 180px;
		}
	.item.photo-left .image-wrapper {
		width: 100%;
		height: 180px;
		}
	.archive{
		top:42px !important;
		}
	.content.article .related {
		padding-right: 60px;
		}
	.content.article .related .image-wrapper {
		display: none;
		}
	}

@media screen and (max-width: 740px) {
	header nav .dropdown ul {
		width: auto !important;
		}
	header nav .dropdown li {
		width: 260px !important;
		float: none !important;
		}
	}

@media screen and (max-width: 720px) {
	.hero {
		height: 380px;
		}
	.tweetContent {
		padding-top: 10px;
		}
	.twitter [class*="column"]:not(:last-child) .tweetContent {
		padding-bottom: 40px;
		}
	header .link {
		display: none;
		}
	footer .link {
		display: block;
		margin-bottom: 10px;
		}
	.popup .input-wrapper{
		background: white;
		}
	.hero .actions {
		bottom: -25px;
		}
	.hero .actions a {
		width: 52px;
		height: 52px;
		line-height: 52px;
		margin-left: 5px;
		font-size: 20px;
		}
	.hero .backWide{
		width: 52px !important;
		height: 52px !important;
		line-height: 52px !important;
		font-size: 20px !important;
		bottom: -26px !important;
		}
	}

@media screen and (max-width:640px) {
	.hero.heading {
		text-align: left;
		padding: 10% 8% !important;
		}
	.press-releases .item-wrapper {
		width: 100%;
		}
	.info.bold{
		font-size: 10px !important;
		}
	.image.gradient:before{
		height: 100% !important;
		}
	}	

@media screen and (max-width: 580px) {
	header nav {
		padding-left: 10px;
		padding-right: 10px;
		}
	header nav .right {
		right: 10px;
		}
	header nav > div > ul.main {
		position: absolute;
		left: 10px;
		right: 10px;
		top: 42px;
		background: #02009A;
		}
	header nav > div > ul:before {
		content: "Menu";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 100%;
		background: #02009A;
		color: #ffffff;
		border-bottom: 1px solid #29279c;
		}
	header nav > div > ul.main > li > a {
		padding: 8px 40px 8px 20px;
		}
	header .right > ul.main > li > a {
		padding: 7px 12px;
		color: white;
		}
/*	header nav > div > ul.main > li:not(:last-child) > a {
		border-bottom: 1px solid #29279c;
		} */
	header nav > div > ul.main > li {
		border-bottom: 1px solid #29279c;
		}
	header nav > div > ul.main:hover > li {
		display: block;
		}
	header nav > div > ul.main > li > a {
		color: #ffffff;
		}
	header nav > div > ul.main > li > a[class*="icon"]:after {
		display:none;	
		}
	header nav > div > ul .dropdown {
		position: relative;
		left: 0;
		top: 0;
		min-width: 0;
		visibility: visible;
		opacity: 1;
		}	
	header nav .dropdown a {
		white-space: normal;
		}
	header nav .dropdown li {
		width: auto !important;
		}
	.dropdown.search {
		right: -89px !important;
		}		
	header .top {
		height: auto;
		margin-bottom: 10px;
		text-align: center;
		}
	header .logo {
		left: 8px;
		top: 6px;
		width: 93px;
		height: 28px;
		background-image: url(/images/logo-mobile.png);
		background-size: 93px 28px;
		}
	header .info {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		padding: 6px 11px 6px 0;
		text-align: right;
		border: none;
		border-bottom: 2px solid #FEE801;
		}
	header .search-trigger-wrapper {
		display: inline-block !important;
		}
	header .search-popup-wrapper {
		cursor: default;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		z-index: 9999;
		left: 0;
		right: auto;
		top: 0;
		display: table;
		width: 100%;
		height: 100%;
		background: rgba(2,0,154,0.95);
		-webkit-transition-property: opacity, visibility;
		-webkit-transition-duration: 300ms;
		-moz-transition-property: opacity, visibility;
		-moz-transition-duration: 300ms;
		transition-property: opacity, visibility;
		transition-duration: 300ms;
		}
	header .search-popup-wrapper.popup-active {
		visibility: visible;
		opacity: 1;
		}
	header .search-popup-wrapper .popup {
		text-align: center;
		display: table-cell;
		vertical-align: middle;
		-webkit-transform: scale(0.7);
		-moz-transform: scale(0.7);
		transform: scale(0.7);
		-webkit-transition-property: -webkit-transform;
		-webkit-transition-duration: 300ms;
		-moz-transition-property: -moz-transform;
		-moz-transition-duration: 300ms;
		transition-property: transform;
		transition-duration: 300ms;
		padding: 0 20px;
		color: #ffffff;
		}
	header .search-popup-wrapper.popup-active .popup {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
		}
	header .popup .text {
		display: inline-block;
		text-align: left;
		padding: 0 !important;
		}
	header .popup .label {
		color: #ffffff;
		margin-bottom: 20px;
		}
	header .popup .input-wrapper {
		border: none;
	    margin-bottom: 0;
		}
	header .search-popup-wrapper .input-wrapper label,
	header .search-popup-wrapper .input-wrapper input {
		font-size: 130% !important;
		}
	header .search-popup-wrapper .input-wrapper input {
		color: #999;
		}
	header .archive {
		left: 10px;
		right: 10px;
		}
	.hero-wrapper,
	.content,
	.breadcrumbs-wrapper {
		padding-left: 10px;
		padding-right: 10px;
		}
	.fixed-items .item {
		margin-left: 0;
		margin-right: 0;
		}
	header nav > div > ul > li > a {
		border-bottom: 1px solid #e5e5e5;
		}
	header nav .right a {
		border-bottom: none;
		}	
	header nav > div > ul > li > a {
		padding: 10px;
		}
	header nav > div > ul .dropdown ul a {
		display: block;
		padding: 8px 36px 8px 36px;
		color: #ffffff;
		opacity: 0.5;
		}	
	.press-releases {
		padding: 30px 20px;
		}
	.media {
		padding: 30px 5px;
		}
	.content {
		padding-top: 20px;
		padding-bottom: 20px;
		}
	}