/*	Alzheimer's Disease Research Center Master CSS                                                                                                    
/ #                                                                                                      
/ # Author: Jonathan Henriksen (jhenrik@uw.edu)
/ --------------------------------------------- */

/* =FONT COLORS
	- Default body text  #
	- Links              #
	- Headings Orange    #
	- Text selection bg  #
	- Primary btn bg     #
----------------------------------------------- */

/* =PRIMARY COLORS
	- primary blue       #
	- light blue         #
	- link blue          #
	- link light blue    #
	- body gray          #
	- body gray border   #
	- footer gray        #
----------------------------------------------- */

/* =FONT FAMILIES
	- default body:  	"Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
	- headings: 		"Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
	- news body:		"Merriweather", Georgia, "Goudy Old Style", serif;
	- form input text:	"Helvetica Neue", Helvetica, Arial, sans-serif
	- pre and code:		Monaco, Menlo, Consolas, "Courier New", monospace
----------------------------------------------- */


/* =HTML/BODY STYLES
----------------------------------------------- */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	color: #333333;
}

/* =BACKGROUND STYLES
----------------------------------------------- */
html {
	background: #000000 url("../adrc/img/layout/matureneuron.jpg") no-repeat center top; 
	-webkit-background-size: 100%;
	   -moz-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
}

body {
	background-color: transparent;
}


/* =GLOBAL STYLES
----------------------------------------------- */

/* === LINKS === */
a {
	color: #6640b3;
	text-decoration: none;
}

a:hover, a:focus {
	color: #a32a91;
	text-decoration: underline;
}

a:hover, a:active {
    outline: 0px none;
}

/* Mobile Device link tap color */
a {
	-webkit-tap-highlight-color: rgba(75, 46, 130, .33);
}

/* Text Selection */
::-moz-selection {
	background-color: #4b2e83;
	color: #ffffff;
}

/* Works in Safari */
::selection {
	background-color: #4b2e83;
	color: #ffffff;
}


/* === HEADINGS === */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #144159;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}


h3,
h4,
h5,
h6 {
	color: #144159;
}


h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	font-weight: 300;
	color: #999999;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #1c5d80;
	border-bottom: transparent 1px solid;
}

h1 a:hover,
h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h6 a:hover,
h6 a:focus {
	color: #a32a91;
	outline: 0px none;
	text-decoration: none;
	border-bottom: #a32a91 1px solid;
}

.heading-underline {
	border-bottom: #d9d9d9 1px solid;
}

/* === BOOTSTRAP OVERRIDE WITH ADRC COLORS - SHOULD REBUILD BOOTSTRAP === */
.lead {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}


.btn,
#content .btn {
	-webkit-transition: all 0.15s ease-in;
	   -moz-transition: all 0.15s ease-in;
	     -o-transition: all 0.15s ease-in;
	        transition: all 0.15s ease-in;
}

.btn-default {
	color: #1c5d80;
	background-color: #fff;
	border-color: #d9d9d9;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
	color: #a32a91;
	background-color: #fff;
	border-color: #a32a91;
}

.btn-link {
	color: #6640b3;
	text-decoration: none;
}
.btn-link:hover,
.btn-link:focus {
	color: #a32a91;
	text-decoration: none;
}


.btn-primary {
	color: #ffffff;
	background-color: #1c5d80;
	border-color: #195373;
	text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
	color: #ffffff;
	background-color: #164a66;
	border-color: #144159;
}

.btn-info {
	color: #ffffff;
	background-color: #760e67;
	border-color: #660c59;
	text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info:active:hover,
.btn-info.active,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info,
.open > .dropdown-toggle.btn-info:hover,
.open > .dropdown-toggle.btn-info:focus {
	color: #ffffff;
	background-color: #660c59;
	border-color: #5c0b50;
}

.btn-blended {
	color: #6b6b6b;
	background-color: transparent;
	border-color: rgba(0, 0, 0, 0);
}
.btn-blended:hover,
.btn-blended:focus,
.btn-blended:active,
.btn-blended.active,
.open > .dropdown-toggle.btn-blended {
	color: #000;
	background-color: #e6e6e6;
	border-color: rgba(0, 0, 0, 0.25);
}

.nav > li > a:hover,
.nav > li > a:focus {
	color: #760e67;
	text-decoration: none;
	background-color: #d9d9d9;
}

.nav > li.disabled > a {
    color: #cccccc;
}

.nav-pills > li > a {
	background-color: transparent;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
	color: #fff;
	cursor: default;
	background-color: #760e67;
}

.nav-tabs {
	border-bottom: 1px solid #d9d9d9;
}
.nav-tabs > li > a {
	border: 1px solid transparent;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	text-transform: uppercase;
}
.nav-tabs > li > a:hover {
  border-color: #760e67 #760e67 #d9d9d9;
  background: #f5f5f5;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #760e67;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-bottom-color: transparent;
}

/* Open tabs from Dropdown menus */
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
	border-color: #660c59;
}

.img-thumbnail {
	padding: 2px;
	border: 1px solid #e1e1e1;
	border-radius: 0px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
	        box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.img-non-responsive {
	display: inline;
	max-width: none;
	height: auto;
}

.thumbnail {
	padding: 2px;
	border: 1px solid #fff;
	border-radius: 0px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
	        box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
	border-color: #760e67;
}

.thumbnail .caption {
  padding: 9px;
  color: #5e5e5e;
  font-size: 12px;
  font-style: italic;
}

blockquote,
.well blockquote {
	position: relative;
	display: block;
	padding: 10px 45px 10px 45px;
	border-left: 5px solid #d9d9d9;
}
.blockquote-reverse,
blockquote.pull-right {
	position: relative;
	padding: 10px 45px 10px 45px;
	border-right: 5px solid #d9d9d9;
	border-left: 0;
}

blockquote::before,
.well blockquote::before {
	content: "\201C"; /*Unicode for Left Double Quote*/
	display: inline-block;
	position: absolute;
	left: 5px;
	top: 0px;
	width: 45px;
	height: 45px;
	font-size: 60px;
	line-height: 60px;
	text-align: left;
	color: #760e67;
	font-family: Georgia, serif;
	font-weight: bold;
}

blockquote::after,
.well blockquote::after {
	content: "\201D"; /*Unicode for Right Double Quote*/
	display: inline-block;
	position: absolute;
	right: 5px;
	bottom: 0;
	width: 45px;
	height: 45px;
	font-size: 60px;
	line-height: 60px;
	text-align: right;
	color: #760e67;
	font-family: Georgia, serif;
	font-weight: bold;
}


.table > thead > tr > th {
	color: #144159;
	border-bottom: 2px solid #760e67;
}

.list-group-item {
	border-color: #d9d9d9;
}

.list-group-item:first-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.list-group-item:last-child {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

a.list-group-item {
	color: #1c5d80;
	background-color: #fff;
	border-color: #d9d9d9;
}
a.list-group-item:hover,
a.list-group-item:focus {
	color: #760e67;
	background-color: #fff;
	-webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	     -o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
	        transition: border-color ease-in-out .15s, background-color ease-in-out .15s;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
	z-index: 2;
	color: #fff;
	background-color: #760e67;
	border-color: #660c59;
}

.form-control {
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	     -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
	outline: 0;
	border-color: #760e67;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(163, 42, 145, .6);
	        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(163, 42, 145, .6);
}

.pagination > li > a,
.pagination > li > span {
	color: #1c5d80;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #d9d9d9;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	color: #760e67;
	background-color: #f5f5f5;
	border-color: #d9d9d9;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	color: #fff;
	background-color: #760e67;
	border-color: #760e67;
}

.label-primary {
	background-color: #1c5d80;
}
	.label-primary[href]:hover,
	.label-primary[href]:focus {
		background-color: #164a66;
	}

.label-info {
	background-color: #760e67;
}
	.label-info[href]:hover,
	.label-info[href]:focus {
		background-color: #660c59;
	}

.label-alert {
	background-color: #4b2e83;
}
	.label-alert[href]:hover,
	.label-alert[href]:focus {
		background-color: #3b185a;
	}

.label-rss {
	background-color: #fbb547;
}
	.label-rss[href]:hover,
	.label-rss[href]:focus {
		background-color: #ec971f;
	}

.text-reduced-margin {
	margin-bottom: 0;
}

.loading-indicator {
	display: none;
	font-size: 16px;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	text-transform: uppercase;
	color: #999999;
}

hr.divider {

}


/* ===  LISTS === */
.icon-list > li {
	padding: 0 0 5px 20px;
	display: block;
	position: relative;
}

.icon-list > li:before {
	font-family: 'Glyphicons Halflings';
	position: absolute;
	left: 3px;
	top: 2px;
	font-size: 80%;
	color: #760e67;
}

.icon-list > li.list-header {
}

.icon-list > li.list-header:before {
	content: '';
}

.chevron-right > li:before {
	content: '\e080';
}

.list-unstyled li a.active {
	padding: .2em .6em .3em;
	border-radius: 2px;
	color: #ffffff;
	background-color: #760e67;
}

/* Page Anchors */
#content a.anchor {
	color: #ededed;
}

#content a.anchor:hover,
#content a.anchor:focus {
	color: #808080;
}

/* ===  CUSTOM BOOTSTRAP PANEL STYLING === */
.panel-secondary {
	border-color: #d9d9d9;
}

.panel-secondary > .panel-heading {
	color: #333333;
    border-color: #d9d9d9;
}

.panel-secondary .panel-footer {
	color: #333333;
	background-color: #ffffff;
    border-color: #d9d9d9;
	border-top: #d9d9d9 1px solid;
}

.panel-secondary > .panel-heading a {
	color: #6640b3;
	text-decoration: none;
	border-bottom: none;
}

.panel-secondary > .panel-heading a:hover, .panel-secondary > .panel-heading a:focus {
	color: #a32a91;
	text-decoration: none;
	border-bottom: none;
}

/* ===  ACCORDION PANELS === */

/* Category Collapse toggle icon in sidebar 
 * uses Font Awesome icons
 * fa-plus-square: \f0fe
 * fa-minus-square: \f146
*/

.accordion .panel-heading a .fa {
	margin-right: 5px;
	font-size: 14px;
}

.accordion .panel-heading a .fa:before {
	content: "\f056";
}
.accordion .panel-heading a.collapsed .fa:before {
	content: "\f055";
}

/* =PAGE STRUCTURE
----------------------------------------------- */

/* Wrapper for page content to push down footer */
#main {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	/* Negatively indent the footer by it's height */
	/* Bottom margin is for extra small screens */
	margin: 0 auto -660px;
	padding: 0;
	/* Offset content by height of the navbar - in header */
	/*padding-top: 50px;*/
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#144159+0,760e67+15,144159+15,760e67+85,760e67+100&0.75+0,0.75+100 */
	background: -moz-linear-gradient(45deg,  rgba(20,65,89,0.75) 0%, rgba(20,65,89,0.75) 15%, rgba(118,14,103,0.75) 85%, rgba(118,14,103,0.75) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  rgba(20,65,89,0.75) 0%,rgba(20,65,89,0.75) 15%,rgba(118,14,103,0.75) 85%,rgba(118,14,103,0.75) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  rgba(20,65,89,0.75) 0%,rgba(20,65,89,0.75) 15%,rgba(118,14,103,0.75) 85%,rgba(118,14,103,0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf144159', endColorstr='#bf760e67',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
/* Small screens */
@media(min-width:768px){
	#main {
		margin-bottom: -340px;
	}
}
/* Medium screens */
@media(min-width:992px){
	#main {
		margin-bottom: -345px;
	}
}
/* Large screens */
@media(min-width:1200px){
	#main {
		margin-bottom: -345px;
	}
}

/* =FOOTER
----------------------------------------------- */

/* Set the fixed height of the footer */
/* Extra Small screens */
footer, #push {
	height: 660px;
}
/* Small screens */
@media(min-width:768px){
	footer, #push {
		height: 340px;
	}
}
/* Medium screens */
@media(min-width:992px){
	footer, #push {
		height: 345px;
	}
}
/* Large screens */
@media(min-width:1200px){
	footer, #push {
		height: 345px;
	}
}

footer {
	color: #ffffff;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	background: #304257;
	background: rgba(255,255,255,.1);
}

footer a {
	color: #ffffff;
	font-weight: 400;
	border-bottom: transparent 1px solid;
	-webkit-transition: all 0.1s ease-in-out;
	   -moz-transition: all 0.1s ease-in-out;
	     -o-transition: all 0.1s ease-in-out;
	        transition: all 0.1s ease-in-out;
}

footer a:hover,
footer a:focus {
	color: #d9d9d9;
	text-decoration: none;
	border-bottom: #d9d9d9 1px solid;
}

footer h4 {
	color: #ffffff;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
}
/* Small screens */
@media(max-width:991px){
	footer h4 {
		font-size: 16px;
	}
}

footer hr.divider {
	width: 30%;
	border-top-color: #d9d9d9;
}


/* === FOOTER TOP === */
#footer-top {
	padding: 20px 0 0 0;
}

/* === #FOOTER-CONTACT === */
#footer-contact {
	font-size: 14px;
}
@media (max-width: 767px) {
	#footer-contact {
		text-align: center;
	}
}
@media(max-width:991px){
	#footer-contact {
		font-size: 12px;
	}
}

address .title {
	display: inline-block;
	margin-bottom: 10px;
	color: #ffffff;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
}
/* Small screens */
@media(max-width:991px){
	address .title {
		font-size: 16px;
	}
}

/* === #FOOTER-SOCIAL === */
#footer-social {
	font-size: 14px;
	text-align: center;
}
/* Small screens */
@media(max-width:991px){
	#footer-social {
		font-size: 12px;
	}
}

#footer-social .social-media-icons a {
	margin-right: 25px;
	border-bottom: none;
	-webkit-transition: background 0.1s ease-in-out;
	   -moz-transition: background 0.1s ease-in-out;
	     -o-transition: background 0.1s ease-in-out;
	        transition: background 0.1s ease-in-out;
}
	#footer-social .social-media-icons a:last-child {
		margin-right: 0;
	}

#footer-social .social-media-icons a:hover,
#footer-social .social-media-icons a:focus,
#footer-social .social-media-icons a:active {
	border-bottom: none;
}

footer .logo-icon {
	display: inline-block;
	text-decoration: none;
	border: none;
	z-index: 3;
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
}

	footer .logo-icon:hover,
	footer .logo-icon:focus,
	footer .logo-icon:active {
		text-decoration: none;
		border: none;
	}

#facebook-icon {
	width: 50px;
	height: 50px;
	background: transparent url("../img/sprites/social-media-icons.svg") no-repeat 0px 0px;
}
	#facebook-icon:hover, 
	#facebook-icon:focus, 
	#facebook-icon:active {
		background: transparent url("../img/sprites/social-media-icons-focus.svg") no-repeat 0px 0px;
	}

#twitter-icon {
	width: 50px;
	height: 50px;
	background: transparent url("../img/sprites/social-media-icons.svg") no-repeat -60px 0px;
}
	#twitter-icon:hover, 
	#twitter-icon:focus, 
	#twitter-icon:active {
		background: transparent url("../img/sprites/social-media-icons-focus.svg") no-repeat -60px 0px;
	}

#youtube-icon {
	width: 50px;
	height: 50px;
	background: transparent url("../img/sprites/social-media-icons.svg") no-repeat -120px 0px;
}
	#youtube-icon:hover, 
	#youtube-icon:focus, 
	#youtube-icon:active {
		background: transparent url("../img/sprites/social-media-icons-focus.svg") no-repeat -120px 0px;
	}

/* === #FOOTER-RELATED-LINKS === */
#footer-related-links {
	font-size: 14px;
}
/* Small screens */
@media(max-width:991px){
	#footer-related-links {
		font-size: 12px;
	}
}
/* Extra Small screens */
@media (max-width: 767px) {
	#footer-related-links {
		text-align: center;
	}
}

#footer-related-links ul.list-unstyled li {
	margin-bottom: 10px;
	text-transform: uppercase;
}


/* === FOOTER BOTTOM === */
#footer-bottom {
}

/* === FOOTER LOGOS === */
#footer-logos {
	display: block;
	margin-bottom: 10px;
	padding: 0 15px;
	list-style-type: none;
	text-align: center;
	font: 0/0 a;
	white-space: nowrap;
}
#footer-logos li {
	display: inline-block;
	margin-right: 0;
	text-align: center;
	font: 0/0 a;
	white-space: nowrap;
}
#footer-logos li:last-child {
	margin-right: 0;
}
/* Extra Small screens */
@media (max-width: 767px) {
	#footer-logos {
		display: block;
		width: 100%;
	}
	#footer-logos li {
		display: block !important;
		width: 100% !important;
		margin-bottom: 15px;
	}
}
/* Small+ Screens */
@media(min-width:768px){
	#footer-logos li {
		margin-right: 40px;
	}
}

footer .wordmark {
	display: inline-block;
	text-decoration: none;
	border: none;
	z-index: 3;
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
}

	footer .wordmark:hover,
	footer .wordmark:focus,
	footer .wordmark:active {
		text-decoration: none;
		border: none;
	}

#footer-uw-medicine-logo {
	width: 132px;
	height: 30px;
	background: transparent url("../adrc/img/sprites/adrc-logo-sprite.svg") no-repeat 1px -250px;
}
	#footer-uw-medicine-logo:hover, 
	#footer-uw-medicine-logo:focus, 
	#footer-uw-medicine-logo:active {
		background-position: 1px -300px;
	}

#footer-uw-logo {
  width: 292px;
  height: 30px;
  background: transparent url("../adrc/img/sprites/adrc-logo-sprite.svg") no-repeat -199px -250px;
}
	#footer-uw-logo:hover, 
	#footer-uw-logo:focus, 
	#footer-uw-logo:active {
		background-position: -199px -300px;
	}

/* iPhone 5 and smaller devices scaled to 90% to fit */
@media (max-width: 350px) {
	#footer-uw-logo {
		width: 263px;
		height: 23px;
		background-size: 630px 360px;
		background-position: -179px -225px;
	}
	#footer-uw-logo:hover,
	#footer-uw-logo:focus,
	#footer-uw-logo:active {
		background-position: -179px -270px;
	}
}


/* === FOOTER COPYRIGHT STATEMENT === */
#footer-copy-statement {
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
}

#footer-copy-statement p {
	margin-bottom: 0px;
}

/* === FOOTER DISCLAIMER === */
#footer-disclaimer {
	font-size: 10px;
	text-align: center;
}


/* =HEADER
----------------------------------------------- */
header {
	margin: 0;
	padding: 0;
	background: transparent; /* Old browsers */
}

/* Branding */
#uw-adrc-logo {
	display: block;
	margin: 10px auto 20px;
	padding: 0;
	width: 320px;
	height: 105px;
	background: transparent url("../adrc/img/sprites/adrc-logo-sprite.svg") no-repeat 1px -8px;
	opacity: 1.0;
	-webkit-transition: opacity 0.15s ease-in;
	   -moz-transition: opacity 0.15s ease-in;
	     -o-transition: opacity 0.15s ease-in;
	        transition: opacity 0.15s ease-in;
}

	#uw-adrc-logo:hover,
	#uw-adrc-logo:focus,
	#uw-adrc-logo:active {
		opacity: 0.6;
	}

/* iPhone 5 and smaller devices scaled to 90% to fit */
@media (max-width: 350px) {
	#uw-adrc-logo {
		width: 290px;
		height: 95px;
		background-size: 630px 360px;
		background-position: 1px -7px;
	}
}

#header-logo-tagline {
	margin: 10px 0 20px 0;
	font-size: 14px;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	text-align: center;
	font-style: italic;
	color: #ffffff;
}

#header-logo-tagline a {
	color: #ffffff;
	border-bottom: transparent 1px solid;
	-webkit-transition: all 0.1s ease-in-out;
	   -moz-transition: all 0.1s ease-in-out;
	     -o-transition: all 0.1s ease-in-out;
	        transition: all 0.1s ease-in-out;
}

#header-logo-tagline a:hover,
#header-logo-tagline a:hover,
#header-logo-tagline a:hover {
	color: #d9d9d9;
	text-decoration: none;
	border-bottom: #d9d9d9 1px solid;
}

#header-uw-logo {
	display: block;
	margin: 20px auto 10px auto;
	padding: 0;
	width: 320px;
	height: 27px;
	background: transparent url("../adrc/img/sprites/adrc-logo-sprite.svg") no-repeat 0 -150px;
}

	#header-uw-logo:hover,
	#header-uw-logo:focus,
	#header-uw-logo:active {
		background-position: 0 -200px;
		outline: 0;
	}

/* iPhone 5 and smaller devices scaled to 90% to fit */
@media (max-width: 350px) {
	#header-uw-logo {
		width: 290px;
		height: 25px;
		background-size: 630px 360px;
		background-position: 0 -135px;
	}
	#header-uw-logo:hover,
	#header-uw-logo:focus,
	#header-uw-logo:active {
		background-position: 0 -180px;
	}
}

/* Small screens */
@media(min-width:992px){
	#header-uw-logo {
		margin: 20px 0 10px 0;
	}
}


/* Header Search Button - used with btn-link styles */
#header-search-container {
	padding-top: 5px;
	text-align: right;
	color: #ffffff;
}

.header-toggle-search {
	margin-top: 40px;
	padding: 2px 4px 2px 8px;
	color: #760e67;
	background-color: #ffffff;
	border-radius: 30px;
	font-size: 20px;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	outline: 0;
	-webkit-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	   -moz-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	     -o-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	        transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
}
.header-toggle-search.collapsed {
	color: #ffffff;
	background-color: transparent;
}

.header-toggle-search:hover,
.header-toggle-search:focus,
.header-toggle-search:active {
	color: #760e67;
	background-color: #ffffff;
	outline: 0;
}

.header-toggle-search .fa-inverse {
	color: #ffffff;
	-webkit-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	   -moz-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	     -o-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	        transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
}
.header-toggle-search.collapsed .fa-inverse {
	color: #760e67;
}

.header-toggle-search:hover .fa-inverse,
.header-toggle-search:focus .fa-inverse,
.header-toggle-search:active .fa-inverse {
	color: #ffffff;
}

.header-toggle-search.collapsed .fa-search:before {
	content: "\f002";
}

.header-toggle-search .fa-search:before {
	content: "\f00d";
}


/* =NAVBAR (MAIN HORIZONTAL NAVIGATION)
----------------------------------------------- */
.navbar-adrc-default {
	margin-top: 10px;
	min-height: 0px;
	color: #d9d9d9;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	background: rgba(255,255,255,0.2);
	border: none;
	border-radius: 0;
	-webkit-box-shadow: 0px 1px 3px rgba(34, 25, 25, 0.4);
	        box-shadow: 0px 1px 3px rgba(34, 25, 25, 0.4);
}

/* Align navbar elements to edge of continer on non-xs screens */
@media (min-width: 768px) {
	.navbar-adrc-default .navbar-nav {
		margin-left: -15px;
	}
}

.navbar-adrc-default .navbar-nav > li > a {
	padding: 15px 15px;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	white-space: nowrap;
	background: transparent;
	-webkit-transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
	   -moz-transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
	     -o-transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
	        transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

/* Apply padding on menu tabs for different screen sizes */
/* Small */
@media(min-width:768px) and (max-width: 991px) {
	.navbar-adrc-default .navbar-nav > li > a {
		padding: 15px 6px 15px 6px;
		font-size: 12px;
	}
}
/* Medium */
@media(min-width:992px) {
	.navbar-adrc-default .navbar-nav > li > a {
		padding: 25px 8px 25px 8px;
		font-size: 13px;
	}
}
/* Large */
@media(min-width:1200px) {
	.navbar-adrc-default .navbar-nav > li > a {
		padding: 25px 15px 25px 15px;
		font-size: 14px;
	}
}

.navbar-adrc-default .navbar-nav > li > a:hover,
.navbar-adrc-default .navbar-nav > li > a:focus {
	color: #ffffff;
	background-color: rgba(255,255,255,0.2);
}
.navbar-adrc-default .navbar-nav > .active > a,
.navbar-adrc-default .navbar-nav > .active > a:hover,
.navbar-adrc-default .navbar-nav > .active > a:focus {
	color: #ffffff;
	background-color: rgba(255,255,255,0.2);
}
.navbar-adrc-default .navbar-nav > .disabled > a,
.navbar-adrc-default .navbar-nav > .disabled > a:hover,
.navbar-adrc-default .navbar-nav > .disabled > a:focus {
	color: #cccccc;
	background-color: transparent;
}

/* Dropdown Carat */
.navbar-adrc-default .navbar-nav > li > a i.fa {
	position: relative;
	top: -1px;
	color: #d9d9d9;
	font-size: 16px;
}
@media(min-width:768px) and (max-width: 991px) {
	.navbar-adrc-default .navbar-nav > li > a i.fa {
		font-size: 12px;
	}
}

/* Slash */
@media(min-width:768px) {
	.navbar-adrc-default .navbar-nav > li > a:after {
		content: "";
		position: absolute;
		right: -8px;
		height: 24px;
		width: 12px;
		background: url("../adrc/img/sprites/slash.svg") no-repeat;
		opacity: 0.4;
	}
	.navbar-adrc-default .navbar-nav > li:last-child > a:after {
		display: none;
	}
}
/* Small Screens */
@media(min-width:768px) and (max-width: 991px) {
	.navbar-adrc-default .navbar-nav > li > a:after {
		right: -8px;
		height: 18px;
		width: 12px;
		background: url("../adrc/img/sprites/slash.svg") no-repeat;
	}
}

/*
.dropdown:hover .dropdown-menu {
	display: block;
}
*/


/* Open tab */
.navbar-adrc-default .navbar-nav > .open > a,
.navbar-adrc-default .navbar-nav > .open > a:hover,
.navbar-adrc-default .navbar-nav > .open > a:focus {
	background-color: #760e67;
	color: #ffffff;
}
.navbar-adrc-default .navbar-nav > .open > a i.fa,
.navbar-adrc-default .navbar-nav > .open > a:hover i.fa,
.navbar-adrc-default .navbar-nav > .open > a:focus i.fa {
	color: #ffffff;
}
.navbar-adrc-default .navbar-nav > .open > a:after {
	display: none;
}


/* DROPDOWN MENUS DEFAULT STYLES */
.navbar-adrc-default .navbar-nav .dropdown-menu {
	border: none;
	border-top: #760e67 4px solid;
}

.dropdown-menu > li > a {
	padding: 8px 20px;
	color: #6b6b6b;
	border-bottom: #d9d9d9 1px solid;
	-webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
	   -moz-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
	     -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
	        transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dropdown-menu > li:last-child > a {
	border-bottom: none;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color: #760e67;
	text-decoration: none;
	background-color: #d9d9d9;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #760e67;
	background-color: #cccccc;
	text-decoration: none;
	outline: 0;
}

@media (max-width: 767px) {
	.navbar-adrc-default .navbar-nav .open .dropdown-menu {
		background-color: #ffffff;
	}
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > li > a {
		color: #6b6b6b;
		border-bottom: #d9d9d9 1px solid;
	}
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color: #333333;
		background-color: #d9d9d9;
	}
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-adrc-default .navbar-nav .open .dropdown-menu > .active > a:focus {
		color: #555555;
		background-color: #cccccc;
	}
}

/* EXTERNAL LINK ICON */
.dropdown-menu li a i.fa {
	color: #760e67;
	font-size: 12px;
}


/* COLLAPSE BUTTONS */
#navbar-collapse-buttons {
	margin: 8px 0px;
}
#navbar-collapse-buttons .navbar-toggle {
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	border-color: #ffffff;
}
#navbar-collapse-buttons .navbar-toggle:hover,
#navbar-collapse-buttons .navbar-toggle:focus {
	color: #ffffff;
	background-color: rgba(255,255,255,0.2);
}
#navbar-collapse-buttons .navbar-toggle-search {
	margin-left: 10px;
}

.navbar-adrc-default .navbar-collapse {
	border-color: #d9d9d9;
}

#search-collapse {
	margin-right: -15px;
	margin-left: -15px;
	border-top: #d9d9d9 1px solid;
}

/* Small Screens and above */
@media (min-width: 768px) {
	#search-collapse {
		border-top: none;
	}
}

/* NAVBAR SEARCH FORM */
#main-menu-search {
	margin: 15px 0;
}

#main-menu-search .form-control {
	color: #760e67;
	background-color: #fff;
	border: 1px solid #fff;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#main-menu-search .form-control:focus {
	border-color: #760e67;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(163, 42, 145, .6);
	        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(163, 42, 145, .6);
}

#main-menu-search .btn-default {
	color: #760e67;
	background-color: #fff;
	border-color: #fff;
}
#main-menu-search .btn-default:hover,
#main-menu-search .btn-default:focus,
#main-menu-search .btn-default:active {
	color: #a32a91;
	background-color: #fff;
	border-color: #a32a91;
}


/* =PAGE PANEL
----------------------------------------------- */
.page-panel {
	margin-bottom: 40px;
	background-color: #ffffff;
	border-bottom: #760e67 10px solid;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
	        box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
}

/* =PAGE HEADER
----------------------------------------------- */
.page-heading {
	position: relative;
	border-bottom: none;
}

.page-heading {
	display: block;
	margin: 0 0 20px 0;
	padding: 10px 20px;
	color: #fff;
	text-align: left;
	font-weight: 300;
	background-color: #4b2e83;
	border-top: rgba(255,255,255,0.15) 1px solid;
	z-index: 1;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#144159+0,760e67+15,144159+15,760e67+85,760e67+100&0.75+0,0.75+100 */
	background: -moz-linear-gradient(45deg,  rgba(20,65,89,1) 0%, rgba(20,65,89,1) 15%, rgba(118,14,103,1) 85%, rgba(118,14,103,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg,  rgba(20,65,89,1) 0%,rgba(20,65,89,1) 15%,rgba(118,14,103,1) 85%,rgba(118,14,103,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg,  rgba(20,65,89,1) 0%,rgba(20,65,89,1) 15%,rgba(118,14,103,1) 85%,rgba(118,14,103,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#144159', endColorstr='#760e67',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#content .color1 .page-heading {
	background-color: #760e67;
}
#content .color2 .page-heading {
	background-color: #4b2e83;
}
#content .color3 .page-heading {
	background-color: #144159;
}
#content .color4 .page-heading {
	background-color: #370747;
}

#content .page-heading h1,
#content .page-heading h2,
#content .page-heading h3,
#content .page-heading h4,
#content .page-heading h5,
#content .page-heading h6 {
	margin: 10px 0;
	color: #ffffff;
	font-weight: 300;
}

#content .page-heading h1 {
	font-size: 28px;
}

#content .page-heading h2 {
	font-size: 20px;
}

#content .page-heading h3 {
	font-size: 18px;
	font-weight: 400;
}


/* =CONTENT
----------------------------------------------- */

/* Main page content, located inside #main */
#content {
	margin: 20px 0 20px 0;
}
@media (max-width: 767px) {
	#content {
		margin: 20px 0 20px 0;
	}
}

#content a {
	-webkit-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	   -moz-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	     -o-transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
	        transition: color 0.15s ease-in, background-color 0.15s ease-in, border 0.15s ease-in;
}

#content h1 {
}


/* =CONTENT LAYOUT COLUMNS
----------------------------------------------- */

/* === MAIN COLUMN === */
#content .main-column {
	min-height: 300px;
}
@media (max-width: 767px) {
	#content .main-column {
		min-height: 0;
	}
}

/* === APPLY STANDARD PADDING === */
#content .main-column,
#content .side-column {
	margin-bottom: 30px;
}

/* Medium screens */
@media(min-width:992px){
	#content .main-column,
	#content .side-column {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/* Large screens */
@media(min-width:1200px){
	#content .main-column,
	#content .side-column {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* === IMAGES === */
#content .main-column li img {
	margin-bottom: 10px;
}

/* === SIDE COLUMN (AND RELATED INFO FOR XS SCREENS) === */
#content .side-column {
	height: 100%;
}

#content .side-column h1,
#content .side-column h1,
#content .side-column h2,
#content .side-column h3,
#content .side-column h4,
#content .side-column h5,
#content .side-column h6,
#content .related-content h1,
#content .related-content h1,
#content .related-content h2,
#content .related-content h3,
#content .related-content h4,
#content .related-content h5,
#content .related-content h6 {
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
}

#content .side-column h4,
#content .related-content h4 {
	margin-top: 20px;
}

/* Category Collapse toggle icon in sidebar 
 * uses Font Awesome icons
 * fa-plus-square: \f0fe
 * fa-minus-square: \f146
*/

.side-column .toggle-categories .fa {
	margin-right: 5px;
	font-size: 14px;
}

.side-column .toggle-categories .fa:before {
	content: "\f056";
}
.side-column .toggle-categories.collapsed .fa:before {
	content: "\f055";
}


#sidebar-collapse {
}
/* Set display back to block for anything larger than extra small devices */
@media (min-width: 768px) {
	#sidebar-collapse.collapse {
		display: block !important;
		height: auto !important;
	}
}

#sidebar-collapse-toggle {
	border-top: #ededed 1px solid;
	border-bottom: #ededed 1px solid;
}
#sidebar-collapse-toggle a {
	display: block;
	padding: 10px 15px;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-rendering: optimizeLegibility;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	-webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
	   -moz-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
	     -o-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
	        transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
#sidebar-collapse-toggle a:hover,
#sidebar-collapse-toggle a:focus {
	background-color: #ededed;
}


/* =CONTENT BLOCK PANELS
----------------------------------------------- */
#content .block-heading {
	display: block;
	margin: 0px;
	padding: 10px 20px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-weight: 300;
	background-color: #4b2e83;
	border-top: rgba(255,255,255,0.15) 1px solid;
	z-index: 1;
}

#content .color1 .block-heading {
	background-color: #760e67;
}
#content .color2 .block-heading {
	background-color: #4b2e83;
}
#content .color3 .block-heading {
	background-color: #144159;
}
#content .color4 .block-heading {
	background-color: #370747;
}

#content h2.block-heading {
	font-size: 20px;
}

#content h3.block-heading {
	font-size: 18px;
	font-weight: 400;
}

#content h4.block-heading {
	font-size: 16px;
	font-weight: 400;
}

#content .block-panel {
	margin-bottom: 20px;
	background-color: #ffffff;
	color: #4d4d4d;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
	        box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
}

#content .block-panel-body {
	padding: 20px 20px 10px 20px;
	position: relative;
}
#content .block-panel .alt {
	background-color: #f5f5f5;
}

#content .block-panel-body h2,
#content .block-panel-body h3,
#content .block-panel-body h4,
#content .block-panel-body h5,
#content .block-panel-body h6 {
	color: #808080;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
}
#content .block-panel-body h2 {
	margin-top: 10px;
	font-size: 24px;
}
#content .block-panel-body h3 {
	font-size: 18px;
}
#content .block-panel-body h4 {
	font-size: 16px;
}
#content .block-panel-body h5 {
	font-size: 14px;
}
#content .block-panel-body h6 {
	font-size: 12px;
}

#content .block-panel-body h2:first-child,
#content .block-panel-body h3:first-child,
#content .block-panel-body h4:first-child,
#content .block-panel-body h5:first-child,
#content .block-panel-body h6:first-child {
	margin-top: 5px;
}


#content .block-panel-body hr.divider {
	width: 30%;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0;
}

#content .block-panel-footer {
	padding: 10px 20px;
	text-align: center;
	border-top: #e5e5e5 1px solid;
}

.panel-footer-button {
	display: inline-block;
	color: #4b2e83;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 18px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	   -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	     -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.panel-footer-button:hover,
.panel-footer-button:focus,
.panel-footer-button:active {
	color: #a32a91;
	text-decoration: none;
}


#content .block-panel-body img {
	width: 100%;
}

#content .block-panel-body .btn img,
#content .panel-footer-button img {
	width: auto;
}

/* === BLOCK PANEL OUTLINE === */
#content .block-panel-outline {
	-webkit-box-shadow: none;
	        box-shadow: none;
}

#content .block-panel-outline .block-panel-body {
	border: #d9d9d9 1px solid;
}

#content .block-panel-outline .block-panel-footer {
	border: #d9d9d9 1px solid;
	border-top: none;
}


/* === BLOCK PANEL COLLAPSE === */
#content .block-panel-collapse-header {
	text-align: center;
}

#content .block-panel-collapse-header h2 {
	margin: 0;
	font-size: 24px;
}
#content .block-panel-collapse-header h3 {
	margin: 0;
	font-size: 18px;
}
#content .block-panel-collapse-header h4 {
	margin: 0;
	font-size: 16px;
}
#content .block-panel-collapse-header h5 {
	margin: 0;
	font-size: 14x;
}
#content .block-panel-collapse-header h6 {
	margin: 0;
	font-size: 12px;
}


/* === Non-collapsed state === */
.block-panel-collapse-header a {
	display: block;
	padding: 15px 20px 10px 20px;
	color: #fff;
	border-bottom: none;
	text-decoration: none;
	background-color: #760e67;
}
.block-panel-collapse-header a:hover,
.block-panel-collapse-header a:focus,
.block-panel-collapse-header a:active {
	color: #eeeeee;
	border-bottom: none;
	text-decoration: none;
}

/* === Collapsed state === */
.block-panel-collapse-header a.collapsed {
	color: #6640b3;
	background-color: #ffffff;
	border-bottom: transparent;
}
.block-panel-collapse-header a.collapsed:hover {
	color: #a32a91;
	border-bottom: none;
	text-decoration: none;
	background-color: #f5f5f5;
	border-bottom: transparent;
}


.block-panel-collapse-header a i.fa {
	display: block;
	padding: 0;
	margin-top: 5px;
	font-size: 16px;
	line-height: 16px;
	text-decoration: none;
}

/* === Set Font Awesome icon to fa-angle-down in collapsed state === */
.block-panel-collapse-header a.collapsed i.fa:before {
	content: '\f107';
}


/* =SIDEBAR BLOCK PANELS
----------------------------------------------- */
#content .side-column .block-panel {
	color: #808080;
	font-weight: 300;
	margin-bottom: 20px;
}

#content .side-column .block-heading {
	font-size: 20px;
	font-weight: 300;
}

#content .side-column .block-panel-body {
	padding: 20px 15px 10px 15px;
}

/* Small screens */
@media(min-width:768px){
	#content .side-column .block-panel {
		font-size: 12px;
	}
	#content .side-column .block-heading {
		font-size: 16px;
		font-weight: 400;
	}
}
/* Medium screens */
@media(min-width:992px){
	#content .side-column .block-panel {
		font-size: 13px;
	}
	#content .side-column .block-heading {
		font-size: 18px;
		font-weight: 300;
	}
	#content .side-column .block-panel-body {
		padding: 20px 20px 10px 20px;
	}
}
/* Large screens */
@media(min-width:1200px){
	#content .side-column .block-panel {
		font-size: 14px;
	}
	#content .side-column .block-heading {
		font-size: 20px;
		font-weight: 300;
	}
}

#content .side-column .panel-footer-button {
	color: #1c5d80;
	display: block;
	text-align: right;
}
#content .side-column .panel-footer-button:hover,
#content .side-column .panel-footer-button:focus,
#content .side-column .panel-footer-button:active {
	color: #a32a91;
	text-decoration: none;
}


#content .side-column .block-panel-body > img,
#content .side-column .block-panel-body > p img {
	width: auto;
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* === NO-HEADING PANELS === */

#content .side-column .block-panel.panel-noheading {
	margin-top: 30px;
}

#content .side-column .block-panel.panel-noheading .block-panel-body:before {
	display: none;
}

#content .side-column .block-panel.panel-noheading h4:first-child {
	margin-top: 0px;
}


/* === RELATED PEOPLE PANEL === */

#sidebar-related-people {
}
#sidebar-related-people li {
	margin-bottom: 20px;
}

#content #sidebar-related-people li h3,
#content #sidebar-related-people li h4,
#content #sidebar-related-people li h5,
#content #sidebar-related-people li h6 {
	color: #144159;
	margin-bottom: 5px;
}

.professional-title:empty {
	display:none;
}


/* === RECENT NEWS PANEL === */

#sidebar-recent-stories {
	font-size: 16px;
}

#sidebar-recent-stories li {
	margin-bottom: 20px;
}

#sidebar-recent-stories img.media-object {
	width: 48px;
	height: 48px;
	margin-right: 10px;
	border-radius: 50%;
}
/* Small screens */
@media(min-width:768px){
	#sidebar-recent-stories {
		font-size: 16px;
	}

	#sidebar-recent-stories img.media-object {
		width: 40px;
		height: 40px;
		margin-right: 0px;
	}
}

/* Medium screens */
@media(min-width:992px){
	#sidebar-recent-stories {
		font-size: 14px;
	}

	#sidebar-recent-stories img.media-object {
		width: 48px;
		height: 48px;
		margin-right: 5px;
	}
}

/* Large screens */
@media(min-width:1200px){
	#sidebar-recent-stories {
		font-size: 16px;
	}

	#sidebar-recent-stories img.media-object {
		width: 64px;
		height: 64px;
		margin-right: 10px;
	}
}

#sidebar-recent-stories .date {
	display: block;
	margin: 0;
}


/* =CONTENT WYSIWYG STRUCTURES
----------------------------------------------- */

/* Inline content columns - columns are set to collapse on small and lower screens*/
.content-column {
	border-left: #d9d9d9 1px solid;
}
.content-column:first-child {
	border-left: none;
}
@media (max-width: 991px) {
	.content-column {
		border-left: none;
	}
}
.well .content-column {
	border-color: #e3e3e3;
}

/* === CAPTIONED FLOATING IMAGES === */
.figure {
	margin-top: 15px;
	margin-bottom: 20px;
}

.figure-left {
	float: left;
	margin-right: 50px;
	display: table;
}

.figure-right {
	float: right;
	margin-left: 50px;
	display: table;
}

.figure-center {
	text-align: center;
}

.figure .caption {
	margin: 10px 0 0 0;
	color: #808080;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	text-align: left;
}

.figure-left .caption,
.figure-right .caption {
	display: table-caption;
	caption-side: bottom;
}

.figure img,
.news-featured-photo img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

/* Extra-small screens */
@media (max-width: 767px) {
	.figure {
		float: none;
		display: block;
		margin-top: 30px;
		margin-bottom: 30px;
		margin-left: 0;
		margin-right: 0;
		text-align: center;
	}
	.figure .caption {
		display: block;
		text-align: center;
	}
}
/* Small screens */
@media (min-width: 768px) and (max-width: 991px) {
	.figure {
		float: none;
		margin-top: 30px;
		margin-bottom: 30px;
		margin-left: 0;
		margin-right: 0;
		display: block;
		text-align: center;
	}
	.figure .caption {
		display: block;
		text-align: center;
	}
}


/* === CAPTIONED FLOATING IMAGES - POPUP LIGHTBOX === */
.figure > a,
.news-featured-photo > a {
	outline: 0;
	position: relative;
	display: inline-block;
	max-width: 100%;
	text-decoration: none;
}

.figure > a::after,
.news-featured-photo > a::after {
	content: '\e096';
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 36px;
	height: 36px;
	padding-top: 8px;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	font-family: 'Glyphicons Halflings';
	border-radius: 50%;
	border: none;
	background: #000;
	opacity: 0.6;
	-webkit-transition: color 0.15s ease-in, opacity 0.15s ease-in;
	   -moz-transition: color 0.15s ease-in, opacity 0.15s ease-in;
	     -o-transition: color 0.15s ease-in, opacity 0.15s ease-in;
	        transition: color 0.15s ease-in, opacity 0.15s ease-in;
}

.figure > a:hover::after,
.news-featured-photo > a:hover::after {
	opacity: 0.8;
	text-decoration: none;
	border: none;
}

/* === ALTERNATE POPUP IMAGES - ALLOWS ANY STYLING/MARKUP - USED ON GLOSSARY === */
.img-popup {
	margin: 0;
}

.img-popup a.thumbnail {
	margin-bottom: 5px;
}

.img-popup p {
	margin-bottom: 0;
}

.img-popup .caption {
	margin: 0;
	color: #808080;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	text-align: center;
}

/* Extra-small screens */
@media (max-width: 767px) {
	.img-popup {
		margin-left: 0;
		margin-right: 0;
		text-align: center;
	}
}
/* Small screens */
@media (min-width: 768px) and (max-width: 991px) {
	.img-popup {
		margin-left: 0;
		margin-right: 0;
		text-align: center;
	}
}


/* === FLOATS - USED WITH PULL-LEFT AND PULL-RIGHT === */
.text-float-half {
	width: 50%;
}
.pull-left.text-float-half {
	margin: 15px 30px 20px 0;
}
.pull-right.text-float-half {
	margin: 15px 0 20px 30px;
}

/* Extra Small screens */
@media(max-width:767px){
	.pull-left.text-float-half,
	.pull-right.text-float-half {
		float: none;
		width: auto;
		margin: 15px 0 15px 0;
	}
}

/* Small screens */
@media (min-width: 768px) and (max-width: 991px) {
	.pull-left.text-float-half,
	.pull-right.text-float-half {
		float: none;
		width: auto;
		margin: 15px 0 15px 0;
	}
}


/* =SIDEBAR WYSIWYG STRUCTURES
----------------------------------------------- */
#content .side-column blockquote,
#content .side-column .well blockquote {
	border: none;
}



/* =HOME
----------------------------------------------- */

/* Some properties from bootstrap class text-hide */
h1.home-heading-hide {
	margin: 0;
	padding: 0;
	height: 0;
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}


/* =HOME PANELS
----------------------------------------------- */
#home-panels {
	margin-bottom: -20px;
	padding: 30px 0 50px 0;
}


/* =HOME LEADERSHIP
----------------------------------------------- */
#home-leadership {
}

#content #home-leadership .home-leadership-title {
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 14px;
}

#content #home-leadership .home-leadership-name {
	font-size: 14px;
	font-weight: 400;
	color: #808080;
}

/* Medium screens */
@media(min-width:992px){
	#content #home-leadership .home-leadership-title,
	#content #home-leadership .home-leadership-name {
		font-size: 14px;
	}
}

/* Large screens */
@media(min-width:1200px){
	#content #home-leadership .home-leadership-title,
	#content #home-leadership .home-leadership-name {
		font-size: 14px;
	}
}

#home-leadership a {
	color: #4b2e83;
}

#home-leadership a:hover,
#home-leadership a:focus,
#home-leadership a:active {
	color: #a32a91;
}

/* =HOME RESEARCH CORES
----------------------------------------------- */
#home-cores {
}

#content #home-cores .home-core-title {
	margin-top: 5px;
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: 400;
}

#content #home-cores .home-core-leadership {
	font-size: 14px;
	font-weight: 300;
	color: #808080;
}

#home-cores .home-core-title a {
	color: #a32a91;
}

#home-cores .home-core-title a:hover,
#home-cores .home-core-title a:focus,
#home-cores .home-core-title a:active {
	color: #a32a91;
}

#home-cores .home-core-leadership a {
	color: #4b2e83;
}

#home-cores .home-core-leadership a:hover,
#home-cores .home-core-leadership a:focus,
#home-cores .home-core-leadership a:active {
	color: #4b2e83;
}

/* =HOME WELCOME
----------------------------------------------- */
#home-welcome {
}

#content #home-welcome p {
	font-size: 14px;
	font-weight: 300;
	color: #4d4d4d;
}

#home-welcome a {
	font-weight: 400;
	color: #a32a91;
}

#home-welcome a:hover,
#home-welcome a:focus,
#home-welcome a:active {
	color: #a32a91;
}

/* =HOME NEWS
----------------------------------------------- */
#home-news {
	font-size: 14px;
	font-weight: 300;
	text-rendering: optimizeLegibility;
}

#home-news li {
	margin-bottom: 20px;
}

#home-news img.media-object {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border-radius: 50%;
}

/* Small screens */
@media(min-width:768px){
	#home-news {
		font-size: 14px;
		/*font-size: 16px;*/
	}

	#home-news img.media-object {
		width: 64px;
		height: 64px;
		margin-right: 10px;
	}
}

/* Medium screens */
@media(min-width:992px){
	#home-news {
		font-size: 14px;
	}

	#home-news img.media-object {
		width: 48px;
		height: 48px;
		margin-right: 5px;
	}
}

/* Large screens */
@media(min-width:1200px){
	#home-news {
		font-size: 14px;
		/*font-size: 16px;*/
	}

	#home-news img.media-object {
		width: 64px;
		height: 64px;
		margin-right: 10px;
	}
}


#home-news a {
	color: #4b2e83;
}

#home-news a:hover,
#home-news a:focus,
#home-news a:active
{
	color: #a32a91;
}

#home-news .date {
	display: block;
	margin: 0;
	font-size: 14px;
	font-weight: 300;
	color: #808080;
}


/* =HOME ANNOUNCEMENTS
----------------------------------------------- */
#home-announcements {
	font-size: 14px;
	font-weight: 300;
	text-rendering: optimizeLegibility;
}

/* Small screens */
@media(min-width:768px){
	#home-announcements {
		font-size: 14px;
	}
}

/* Medium screens */
@media(min-width:992px){
	#home-announcements {
		font-size: 14px;
	}
}

/* Large screens */
@media(min-width:1200px){
	#home-announcements {
		font-size: 14px;
	}
}

#home-announcements a {
	color: #1c5d80;
}

#home-announcements a:hover,
#home-announcements a:focus,
#home-announcements a:active {
	color: #a32a91;
}

#home-announcements .summary {
	margin: 0 0 10px 0;
	font-size: 12px;
	font-weight: 300;
}

#home-announcements .summary .date {
}


/* =HOME UPCOMING EVENTS
----------------------------------------------- */
#home-upcoming-events .block-panel-footer {
	text-align: center;
}

#home-upcoming-events h3 a {
	color: #4b2e83;
}

#home-upcoming-events h3 a:hover,
#home-upcoming-events h3 a:active,
#home-upcoming-events h3 a:focus {
	color: #a32a91;
}

#home-upcoming-events .date {
	margin-bottom: 0px;
	color: #808080;
}
#home-upcoming-events .date .day {
	display: block;
}
#home-upcoming-events .date .time {
	display: block;
}

#home-upcoming-events .location {
	color: #808080;
}

#home-upcoming-events .date .fa,
#home-upcoming-events .location .fa {
	color: #4b2e83;
}

/* Extra Small screens */
@media(max-width:767px){
	#content #home-upcoming-events .alt {
		background-color: transparent;
	}
	#content #home-upcoming-events .alt .block-panel-body {
		background-color: #f5f5f5;
	}
}

/* Small-Large screens */
@media(min-width:768px){
	#home-upcoming-events .row-table {
		display: table;
		width: 100%;
	}
	#home-upcoming-events .col-table {
		float: none;
		display: table-cell;
		vertical-align: top;
	}

	#content #home-upcoming-events h3 {
		font-size: 16px;
	}
}

/* Large screens */
@media(min-width:1200px){
	#content #home-upcoming-events h3 {
		font-size: 18px;
	}
}

#calendar-load-events .load-spinner {
	padding: 40px 15px;
	font-size: 16px;
	text-align: center;
	color: #cccccc;
}


/* =NEWS ARTICLES
----------------------------------------------- */

/* === NEWS LISTING === */
.news-list-date-heading {
	color: #808080;
	font-size: 16px;
}

.news-listing-teaser {
	font-size: 16px;
}

.news-listing-info {
	color: #808080;
}

.news-listing-date {
	color: #808080;
}

.news-listing-featured {
	font-size: 16px;
}

.news-listing-thumbnail {
	padding: 0px;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
	        box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}
a.news-listing-thumbnail:hover,
a.news-listing-thumbnail:focus,
a.news-listing-thumbnail.active {
	border-color: #760e67;
}

.news-listing-thumbnail img {
	border-radius: 3px;
}

#content #news-filters .panel-footer-button {
	font-size: 14px;
	text-align: center;
	text-transform: none;
}


/* =ANNOUNCEMENTS
----------------------------------------------- */

.announcement-listing-summary {
	font-size: 14px;
}

.announcement-listing-summary .date {
	color: #808080;
}

.announcement-info .date {
	font-size: 16px;
	color: #808080;
}


/* =GLOSSARY
----------------------------------------------- */




/* =CALENDAR
----------------------------------------------- */

.calendar-toolbar {
	text-align: center;
}

.calendar-toolbar .btn-group {
	margin-bottom: 10px;
}

/* MONTH CALENDAR */
.block-panel-calendar {
	overflow: hidden;
	border: rgba(0, 0, 0, 0.1) 1px solid;
}

#month_calendar {
	margin: 0 auto 20px;
	padding: 0;
	width: 100%;
}
#month_calendar table {
	margin: 0;
	padding: 0;
}
#month_calendar tr, #month_calendar td {
	padding: 0px;
}

#month_calendar_outer {
	width: 100%;
	margin: 0;
	padding: 0;
	table-layout: fixed;
}

#month_calendar_inner {
	width: 100%;
	table-layout: fixed;
	border-radius: 6px;
}
#month_calendar #month_calendar_inner td {
	width: 14%;
	height: 130px;
	padding: 5px;
}

#month_calendar .event {
	font-size: 12px;
	overflow: hidden;
	white-space: nowrap;
	color: #7f7f7f;
	padding: 2px 0 0 0;
}
#month_calendar .event a {
	color: #565656;
	text-decoration: underline;
}

#month_calendar .day_cell .all_day, #month_calendar .day_cell .multi_day {
	padding: 0 6px;
	line-height: 20px;
	color: #7f7f7f;
}
#month_calendar .day_cell .all_day {
	margin-bottom: 2px;
	background-color: #f2f2f2;
	border: 1px solid;
	border-color: #c6c6c6;
}
#month_calendar .day_cell .multi_day {
	margin-bottom: 2px;
	background-color: #f2f2f2;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-left: none;
	border-right: none;
	border-color: #c6c6c6;
	margin-left: -5px;
	margin-right: -5px;
}
#month_calendar .day_cell .all_day a, #month_calendar .day_cell .multi_day a {
	color: #565656;
	text-decoration: none;
}
#month_calendar .day_cell .all_day a:hover, #month_calendar .day_cell .multi_day a:hover {
	color: #565656;
	text-decoration: underline;
}
#month_calendar .first_day {
	margin-left: 0 !important;
	border-left: 1px solid !important;
}
#month_calendar .last_day {
	margin-right: 0 !important;
	border-right: 1px solid !important;
}
#month_calendar .day_cell .date {
	width: 100%;
	text-align: right;
	margin: 0;
	padding: 0 0 3px 0;
}
#month_calendar .day_cell .date a {
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}
#month_calendar .day_cell .has_events a,
#month_calendar .day_cell .has_events span {
	color: #d75452;
	font-weight: bold;
}
#month_calendar .day_cell .date .num {
	font-size: 15px;
	color: #8a8a8a;
}
#month_calendar .day_cell .date a:hover {
	color: #000000;
	text-decoration: underline;
}
#month_calendar .day_cell .has_events a:hover {
	color: #000000;
}
#month_calendar .day_cell hr {
	margin-top: 7px;
	margin-bottom: 7px;
}
#month_calendar td.day_cell {
	padding-top: 30px;
}
#month_calendar .out_of_range {
	background: #fbfbfb;
}
#month_calendar .out_of_range .date {
	color: #aeaeae;
}

#month_calendar td.today {
	background-color: #fcf8e4;
}

#month_calendar #days_of_week th {
	padding: 5px 0;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-weight: 300;
	background-color: #4b2e83;
	border: #4b2e83;
	z-index: 1;
}

#month_calendar #month_year th {
	padding: 5px;
	color: #000;
}
#month_calendar #month_year th.left {
	text-align: left;
}
#month_calendar #month_year th.center {
	text-align: center;
}
#month_calendar #month_year th.right {
	text-align: right;
}

#month_calendar .popover-title span.event_time {
		display: block;
		color: #4f4f4f;
		font-size: 85%;
		margin-top: 5px;
}

#month_calendar .calendar-color {
	background-color: #9f9f9f;
	position: relative;
	top: 0;
	display: inline-block;
	height: 8px;
	width: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-indent: -9000px;
}





/* WEEK CALENDAR */

#week_calendar .header div {
	float: left;
	width: 20%;
}
#week_calendar .header div.left {
	padding-left: 10px;
}
#week_calendar .header div.center {
	width: 55%;
	text-align: center;
}
#week_calendar .header div.right {
	text-align: right;
	padding-right: 10px;
}
#week_calendar ul.list-group {
	margin-bottom: 0px;
}


/* DAY CALENDAR */

#day_calendar .header div {
	float: left;
	width: 15%;
}
#day_calendar .header div.left {
	padding-left: 10px;
}
#day_calendar .header div.center {
	width: 65%;
	text-align: center;
}
#day_calendar .header div.right {
	text-align: right;
	padding-right: 10px;
}
#day_calendar ul.list-group {
	margin-bottom: 0px;
}
.list-group-item .calendar_event_title {
	color: #3a3a3a;
	text-decoration: underline;
}
.list-group-item .calendar_event_title:hover {
	color: #4f4f4f;
	text-decoration: none;
}


/* MINI CALENDAR */

#mini_calendar td, #mini_calendar th {
	padding: 0;
	margin: 0;
	text-align: center;
}
#mini_calendar th {
	border: none;
	padding-top: 5px;
	padding-bottom: 5px;
}
#mini_calendar .mini_calendar_days th {
	background: #e5e5e5;
	border: 1px solid #979797;
	border-width: 1px 0;
}
#mini_calendar th a {
	color: #000;
	font-size: 15px;
}
#mini_calendar td a {
	display: block;
	color: #fff;
}
#mini_calendar td div, #mini_calendar td.has_events div #mini_calendar td.mini_calendar_pad div {
	vertical-align: middle;
	text-align: center;
	padding: 6px;
}
#mini_calendar td.has_events div {
	padding: 0;
}
#mini_calendar td.has_events div a {
	font-weight: bold;
	color: #000000;
	display: block;
	padding: 6px;
	background-color: #f5f5f5;
}
#mini_calendar td.has_events .middot {
	display: block;
	padding: 6px;
}
#mini_calendar .middot {
	color: #bcbcbc;
}
#mini_calendar td.has_events div a:hover {
	background: #dff0d9;
	text-decoration: none;
}
#mini_calendar td.today div, #mini_calendar td.today div a {
	background-color: #fcf8e4;
}


/* =CALENDAR EVENT PAGES
----------------------------------------------- */
.event-heading {
	padding:  10px;
	font-size: 16px;
	color: #fff;
}

.event-heading .location a {
	color: #fff;
	text-decoration: underline;
}

.event-heading .location a:hover,
.event-heading .location a:active,
.event-heading .location a:focus {
	color: #d9d9d9;
}

.event-heading .date .day {
	display: block;
}
.event-heading .date .time {
	display: block;
}

.event-heading .date .fa,
.event-heading .location .fa {
	color: #f5f5f5;
}

.event-heading .list-group {
	font-size: 14px;
}

.event-heading .list-unstyled a {
	color: #fff;
	text-decoration: underline;
}
.event-heading .list-unstyled a:hover,
.event-heading .list-unstyled a:active,
.event-heading .list-unstyled a:focus {
	color: #d9d9d9;
}


.event-heading .event-buttons {
	line-height: 45px;
}

#subscribeHelp {
	margin-top: 10px;
	text-align: left;
	font-size: 14px;
}

#subscribeHelp a {
	color: #fff;
	text-decoration: underline;
}

#subscribeHelp a:hover,
#subscribeHelp a:active,
#subscribeHelp a:focus {
	color: #d9d9d9;
}


/* =CALENDAR EVENT LIST GROUP
----------------------------------------------- */
.event-list-group .event-title,
.event-list-group .event-date,
.event-list-group .event-description {
	margin-bottom: 5px;
}

.event-list-group .event-title {
	font-size: 16px;
}

.event-list-group .fa {
	color: #4b2e83;
}


/* =AGENDA VIEW ON MAIN CALENDAR
----------------------------------------------- */
.calendar-agenda {
	margin-top: 20px;
}




/* =CLINICAL TRIAL PAGES
----------------------------------------------- */
#content .clinical-trial-panel {
	margin-bottom: 0;
	border: #d9d9d9 1px solid;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

#content .clinical-trial-panel .block-panel-body h2,
#content .clinical-trial-panel .block-panel-body h3,
#content .clinical-trial-panel .block-panel-body h4,
#content .clinical-trial-panel .block-panel-body h5,
#content .clinical-trial-panel .block-panel-body h6 {
	color: #a32a91;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
}
#content .clinical-trial-panel .block-panel-body h2 {
	margin-top: 10px;
	font-size: 24px;
}
#content .clinical-trial-panel .block-panel-body h3 {
	font-size: 22px;
}
#content .clinical-trial-panel .block-panel-body h4 {
	font-size: 20px;
}
#content .clinical-trial-panel .block-panel-body h5 {
	font-size: 18px;
}
#content .clinical-trial-panel .block-panel-body h6 {
	font-size: 16px;
}














/* =UNEDITED STYLES
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
-----------------------------------------------
----------------------------------------------- */

/* === NEWS ARTICLE === */
.news-article {
	font-family: "Merriweather", Georgia, 'Goudy Old Style', serif;
	font-size: 16px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.news-article-header {
	color: #888888;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.news-article-header p {
	margin-bottom: 5px;
}

.news-article-footer {
	position: relative;
	margin-top: 40px;
	color: #888888;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.news-article-footer:before {
	content: "";
	position: absolute;
	top: -15px;
	left: 1px;
	width: 60px;
	height: 2px;
	background-color: #c9bc9b;
}

.news-featured-photo {
	text-align: center;
}

.news-featured-photo .caption {
	margin: 10px 0 30px 0;
	color: #808080;
	font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	text-align: left;
}

.author-credit {
	font-style: italic;
}



