/* ************************************************** COMMON ************************************************** */
body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	line-height: 20px;
	color: #404040;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Sans Pro', sans-serif;
}
a, input {
	-webkit-transition: color .12s, background-color .12s;
	-moz-transition: color .12s, background-color .12s;
	transition: color .12s, background-color .12s;
}
h1.brand {
	display: block;
	height: 60px;
	margin: 0px;
	padding: 0px 0px 0px 80px;
	font-family: 'Source Sans Pro', sans-serif;
	background: url('../images/senate_seal_grey.png') 0px 0px no-repeat;
}
	h1.brand .title {
		display: block;
		font-size: 36px;
		line-height: 36px;
		font-weight: 200;
		color: #333333;
		text-transform: uppercase;
	}
	h1.brand .title:hover,
	h1.brand .title:active,
	h1.brand .title:focus {
		color: #2e99e5;
		text-decoration: none;
	}
	h1.brand .subtitle {
		display: block;
		font-size: 18px;
		line-height: 18px;
		font-weight: 400;
		color: #333333;
	}
	h1.brand .subtitle:hover,
	h1.brand .subtitle:active,
	h1.brand .subtitle:focus {
		color: #2e99e5;
		text-decoration: none;
	}
	
/* ************************************************** HEADER ************************************************** */	
header {
	padding-top: 40px;
}
	header .navbar {
		display: none;
	}
	header .site-title {
		height: 60px;
		padding-top: 25px;
		padding-bottom: 25px;
	}
		header .site-title .nav {
			margin: 0px;
			padding: 40px 0px 0px;
		}
			header .site-title .nav > li {
				float: left;
				height: 20px;
				position: relative;
			}
				header .site-title .nav > li > a {
					display: block;
					font-size: 18px;
					font-weight: 400;
					color: #333333;
					padding: 0px 10px;
					border-bottom: 5px solid transparent;
					height: 45px;
				}
				header .site-title .nav > li.active > a,
				header .site-title .nav > li:hover > a,
				header .site-title .nav > li:active > a,
				header .site-title .nav > li:focus > a {
					color: #4fac2b;
					text-decoration: none;
					background-color: transparent;
					border-color: #74d54f;
				}
				header .site-title .nav > li.nav_home > a {
					background: url('../images/icon_home.png') center 0px no-repeat;
					width: 20px;
					text-indent: -10000px;
				}
				header .site-title .nav > li > ul {
					display: none;
					list-style: none;
					position: absolute;
					top: 50px;
					left: 0px;
					width: 200px;
					margin: 0px;
					padding: 20px;
					background: white;
					-moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
					-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
					box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
				}
				header .site-title .nav > li:hover > ul {
					display: block;
				}
				header .site-title .nav > li.nav_Contact > ul {
					left: auto;
					right: 0px;
				}
					header .site-title .nav > li > ul > li {
						font-size: 18px;
						line-height: 20px;
						font-weight: 300;
						color: #333333;
						background: url('../images/dashed_line.png') center top repeat-x;
						padding-top: 1px;
					}
					header .site-title .nav > li > ul > li:first-child {
						padding-top: 0px;
						background-image: none;
					}
						header .site-title .nav > li > ul > li > a {
							display: block;
							position: relative;
							color: #333333;
							margin: 0px -20px;
							padding: 10px 20px 10px 40px;
						}
						header .site-title .nav > li > ul > li > a:hover,
						header .site-title .nav > li > ul > li > a:active,
						header .site-title .nav > li > ul > li > a:focus {
							background-color: #f2f2f2;
							text-decoration: none;
						}
						header .site-title .nav > li > ul > li > a:after {
							content: "";
							display: block;
							position: absolute;
							top: 15px;
							left: 20px;
							width: 10px;
							height: 10px;
							background: url('../images/arrow_black.png') 0px 0px no-repeat;
						}
	header .search-bar {
		position: fixed;
		top: 0px;
		right: 0px;
		width: 100%;
		height: 40px;
		background-color: #404040;
		color: white;
		z-index: 100;
	}
		header .search-bar .nav {
			margin: 0px;
			padding: 0px;
			text-align: right;
			font-size: 16px;
			color: white;
			line-height: 40px;
		}
			header .search-bar .nav > li {
				display: inline;
			}
			header .search-bar .nav > li:before {
				content: "|";
				display: inline;
			}
			header .search-bar .nav > li:first-child:before {
				display: none;
				content: "";
			}
				header .search-bar .nav > li > a {
					display: inline;
					color: white;
				}
				header .search-bar .nav > li > a:hover,
				header .search-bar .nav > li > a:active,
				header .search-bar .nav > li > a:focus {
					background-color: #656565;
					text-decoration: none;
				}
		header .search-bar .search-form {
			width: auto;
			height: 26px;
			margin: 7px 0px 0px;
			padding: 0px 40px 0px 10px;
			position: relative;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
			-webkit-border-radius: 2px;
			-moz-border-radius: 2px;
			border-radius: 2px;
			background-color: #e6e6e6;
		}
			header .search-bar .search-form fieldset {
				margin: 0px;
				padding: 0px;
			}
				header .search-bar .search-form input[type=text] {
					display: block;
					margin: 0px;
					border: 0px;
					padding: 0px;
					width: 100%;
					height: 26px;
					line-height: 26px;
					font-family: 'Source Sans Pro', sans-serif;
					font-weight: 300;
					font-size: 16px;
					color: #333333;
					background-color: transparent;
					-moz-box-shadow: none;
					-webkit-box-shadow: none;
					box-shadow: none;
				}
				header .search-bar .search-form input[type=submit] {
					position: absolute;
					top: 3px;
					right: 10px;
					width: 20px;
					height: 20px;
					margin: 0px;
					border: 0px;
					padding: 0px;
					background: transparent url('../images/icon_search.png') 0px 0px no-repeat;
					text-indent: -10000px;
					cursor: pointer;
				}
				header .search-bar .search-form input[type=submit]:hover,
				header .search-bar .search-form input[type=submit]:active,
				header .search-bar .search-form input[type=submit]:focus {
					background-position: 0px -20px;
				}
@media (min-width: 1200px) {
	header .site-title .nav > li > a {	
		padding: 0px 15px;
		font-size: 20px;
	}
}
@media (max-width: 979px) {
	header {
		padding: 0px;
	}
	header .navbar {
		display: block;
	}
	header .search-bar,
	header .site-title {
		display: none;
	}
}
				
/* ************************************************** BODY ************************************************** */
.page-title {
	background: url('../images/subpage_bg_header_5.jpg') center center no-repeat;
}
	.page-title .inner {
		width: auto;
		max-width: 1500px;
		height: 155px;
		border-top: 5px solid #000;
		border-color: rgba(0, 0, 0, .5);
		margin: 0px auto;
	}
		.page-title .container {
		}
			.page-title .container h1 {
				margin: 0px;
				padding: 89px 0px 0px;
				font-size: 36px;
				line-height: 36px;
				height: 66px;
				font-weight: 600;
				text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
				color: white;
			}
.main-body {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url('../images/bg_image_columns.jpg') center bottom no-repeat;
}
	.main-body .sidebar {
	}
		.main-body .sidebar .inner {
		}
			.main-body .sidebar h2 {
				margin: 0px 0px 10px;
				padding: 0px 0px 10px;
				font-size: 36px;
				line-height: 36px;
				font-weight: 300;
				color: #2e99e5;
				border-bottom: 1px solid #cccccc;
			}
			.main-body .sidebar ul {
				margin: 0px;
				padding: 0px;
				list-style: none;
			}
				.main-body .sidebar ul li {
					margin: 0px 0px 10px 0px;
					padding: 0px 0px 10px 0px;
					font-size: 18px;
					line-height: 20px;
					border-bottom: 1px dashed #cccccc;
				}
					.main-body .sidebar ul li a {
						display: block;
						position: relative;
						color: #404040;
						background: transparent;
						padding-left: 20px;
					}
					.main-body .sidebar ul li a:hover,
					.main-body .sidebar ul li a:active,
					.main-body .sidebar ul li a:focus {
						background: transparent;
						color: #2e99e5;
						text-decoration: none;
					}
					.main-body .sidebar ul li a:after {
						content: "";
						display: block;
						position: absolute;
						top: 7px;
						left: 0px;
						width: 10px;
						height: 10px;
						background: url('../images/arrow_black.png') 0px 0px no-repeat;
					}
					.main-body .sidebar ul li a:hover:after,
					.main-body .sidebar ul li a:active:after,
					.main-body .sidebar ul li a:focus:after {
						background-position: 0px -10px;
					}
	.main-body .main-content {
	}
		.main-body .main-content .inner {
		
		}
			.main-body .main-content .inner .cookie-crumbs {
				list-style: none;
				margin: 0px 0px 10px;
				padding: 0px 0px 10px;
				font-size: 18px;
				line-height: 24px;
				font-color: 300;
				color: #404040;
				border-bottom: 1px solid #ccc;			
			}
				.main-body .main-content .inner .cookie-crumbs li {
					display: inline;
				}
					.main-body .main-content .inner .cookie-crumbs li a {
						color: #404040;
					}
					.main-body .main-content .inner .cookie-crumbs li a:hover,
					.main-body .main-content .inner .cookie-crumbs li a:active,
					.main-body .main-content .inner .cookie-crumbs li a:focus {
						color: #2e99e5;
						text-decoration: none;
					}
	.main-body .tertiary-content {
	}
		.main-body .tertiary-content .featured-post {
		}
			.main-body .tertiary-content .featured-post .video {
				margin-bottom: 20px;
			}
				.main-body .tertiary-content .featured-post .video iframe {
					width: 100%;
					height: 250px;
				}
			.main-body .tertiary-content .featured-post img {
				display: block;
				margin-bottom: 20px;
			}
			.main-body .tertiary-content .featured-post h1 {
				font-size: 24px;
				line-height: 24px;
				color: #404040;
				font-weight: 600;
				margin: 0px 0px 20px;
				padding: 0px;
			}
			.main-body .tertiary-content .featured-post h1 a {
				color: #404040;
			}
			.main-body .tertiary-content .featured-post p {
				font-size: 18px;
				line-height: 20px;
				max-height: 60px;
				overflow: hidden;
			}
				.main-body .tertiary-content .featured-post p .date {
					font-weight: 600;
				}
			.main-body .tertiary-content .featured-post .read-more {
				display: inline-block;
				font-size: 18px;
				line-height: 45px;
				padding: 0px 20px;
				background-color: #74d54f;
				color: white;
				font-weight: 400;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
			}	
			.main-body .tertiary-content .featured-post .read-more:hover,
			.main-body .tertiary-content .featured-post .read-more:active,
			.main-body .tertiary-content .featured-post .read-more:focus {
				background-color: #62b342;
				text-decoration: none;
			}
@media (max-width: 979px) and (min-width: 768px) {
	.main-body .sidebar h2 {
		font-size: 24px;
		line-height: 24px;
	}
	.main-body .tertiary-content .featured-post .video iframe {
		height: 200px;
	}
	.main-body .tertiary-content .featured-post h1 {
		font-size: 20px;
		line-height: 20px;
	}
	.main-body .tertiary-content .featured-post p {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.page-title .inner {
		height: auto;
		padding: 20px;
		background: #61b2ee;
	}
		.page-title .container h1 {
			height: auto;
			padding: 0px;
			font-size: 24px;
			line-height: 24px;
		}
	.main-body .sidebar h2 {
		font-size: 20px;
		line-height: 20px;
	}
}
/* ************************************************** FOOTER ************************************************** */
footer {
	background: #222 url('../images/bg_spacer_footer.jpg') center top repeat-x;
	padding-bottom: 40px;
}
	footer .footer-nav {
		height: 460px;
		color: white;
		background: url('../images/bg_footer_texture_seal.jpg') center top no-repeat;
	}
		footer .footer-nav .site-title {
			padding-top: 20px;
			padding-bottom: 20px;
			border-bottom: 1px solid #595959;
		}
			footer .footer-nav .brand {
				background-image: url('../images/senate_seal_white.png');
				color: white;
				padding-left: 60px;
				height: auto;
			}
				footer .footer-nav .brand a {
					color: white;
				}
				footer .footer-nav .brand a:hover,
				footer .footer-nav .brand a:active,
				footer .footer-nav .brand a:focus {
					color: #98cdf5;
				}
				footer .footer-nav .brand .title {
					font-size: 30px;
				}
				footer .footer-nav .brand .subtitle {
					font-size: 16px;
				}
		footer .footer-nav .address {
			background: url('../images/dashed_line_white_vertical.png') right top repeat-y;
			margin-top: 40px;
		}
			footer .footer-nav .address h2 {
				margin: 0px;
				padding: 0px 20px 20px 0px;
				font-weight: 700;
				font-size: 14px;
				line-height: 16px;
				text-transform: uppercase;
			}
			footer .footer-nav .address h3 {
				margin: 0px;
				padding: 0px 20px 20px 0px;
				font-weight: 700;
				font-size: 14px;
				line-height: 16px;
			}
			footer .footer-nav .address address {
				padding-bottom: 10px;
				padding-right: 20px;
				font-size: 14px;
				line-height: 20px;
				font-weight: 300;
				font-style: normal;
			}
			footer .footer-nav .address .email-us {
				display: inline-block;
				width: auto;
				height: auto;
				font-size: 18px;
				font-weight: 400;
				line-height: 45px;
				color: white;
				background-color: #61b2ee;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
				padding: 0px 15px;
			}	
			footer .footer-nav .address .email-us:hover,
			footer .footer-nav .address .email-us:active,
			footer .footer-nav .address .email-us:focus {
				background-color: #5498cc;
				text-decoration: none;
			}
		footer .footer-nav .menus {
			margin-top: 40px;
		}
			footer .footer-nav .menus .menu {
				float: left;
				width: 16.5%;
			}
				footer .footer-nav .menus a {
					color: white;
				}
				footer .footer-nav .menus a:hover,
				footer .footer-nav .menus a:active,
				footer .footer-nav .menus a:focus {
					color: #98cdf5;
					text-decoration: none;
				}
				footer .footer-nav .menus .menu h2 {
					margin: 0px;
					padding: 0px 20px 20px 0px;
					font-weight: 700;
					font-size: 14px;
					line-height: 16px;
					text-transform: uppercase;
				}
				footer .footer-nav .menus .menu ul {
					list-style: none;
					margin: 0px;
					padding: 0px 20px 0px 0px;
				}
					footer .footer-nav .menus .menu ul li {
						padding-bottom: 10px;
						font-size: 14px;
						line-height: 16px;
					}
						footer .footer-nav .menus .menu ul li a {
							font-weight: 300;
						}
	footer .footer-follow {
		position: fixed;
		bottom: 0px;
		left: 0px;
		width: 100%;
		height: 21px;
		background: white;
		padding-top: 9px;
		padding-bottom: 9px;
		box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
		border-top: 1px solid #595959;
		z-index: 101;
	}
		footer .footer-follow .follow-title {
		}
			footer .footer-follow .follow-title .inner {
				line-height: 21px;
				font-style: italic;
				font-weight: 300;
				font-size: 13px;
				color: #595959;
				border-right: 1px solid #bfbfbf;
				text-align: right;
				padding-right: 20px;
			}
		footer .footer-follow .follow-links {
		}
			footer .footer-follow .follow-links ul {
				list-style: none;
				margin: 0px 0px 0px -10px;
				padding: 0px;
			}
				footer .footer-follow .follow-links ul li {
					display: inline-block;
					margin-right: 5px;
				}
					footer .footer-follow .follow-links ul li a {
						display: inline-block;
						width: 21px;
						height: 21px;
						background-position: 0px 0px;
						background-repeat: no-repeat;
						text-indent: -10000px;
					}
					footer .footer-follow .follow-links ul li a:hover,
					footer .footer-follow .follow-links ul li a:active,
					footer .footer-follow .follow-links ul li a:focus {
						background-position: 0px -21px;
					}
					footer .footer-follow .follow-links ul li.fb a {
						background-image: url('../images/icon_facebook.png');
					}
					footer .footer-follow .follow-links ul li.tw a {
						background-image: url('../images/icon_twitter.png');
					}
					footer .footer-follow .follow-links ul li.yt a {
						background-image: url('../images/icon_youtube.png');
					}
					footer .footer-follow .follow-links ul li.rss a {
						background-image: url('../images/icon_rss.png');
					}
					footer .footer-follow .follow-links ul li .tag {
						display: inline-block;
						position: relative;
						height: 19px;
						line-height: 19px;
						border: 1px solid #bfbfbf;
						font-size: 12px;
						font-weight: 300;
						font-style: italic;
						color: #595959;
						padding: 0px 5px;
						margin-left: 5px;
					}
					footer .footer-follow .follow-links ul li .tag:before {
						content: "";
						display: block;
						position: absolute;
						top: 4px;
						left: -10px;
						width: 0px;
						height: 0px;
						border-top: 5px solid transparent;
						border-right: 5px solid #bfbfbf;
						border-bottom: 5px solid transparent;
						border-left: 5px solid transparent;
					}
					footer .footer-follow .follow-links ul li .tag:after {
						content: "";
						display: block;
						position: absolute;
						top: 5px;
						left: -8px;
						width: 0px;
						height: 0px;
						border-top: 4px solid transparent;
						border-right: 4px solid #fff;
						border-bottom: 4px solid transparent;
						border-left: 4px solid transparent;
					}
@media (min-width: 1200px) {
	footer .footer-follow .follow-title .inner {
		font-size: 15px;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	footer .footer-follow .follow-title .inner {
	}
}
@media (max-width: 767px) {
	footer {
		background-image: none;
		height: auto;
		padding-bottom: 0px;
	}
		footer .footer-nav {
			background-image: none;
			height: auto;
			padding: 20px;
		}
			footer .footer-nav .brand .title {
				font-size: 20px;
			}
			footer .footer-nav .address {
				background-image: none;
			}
			footer .footer-nav .menus .menu {
				float: none;
				width: auto;
				margin-bottom: 40px;
			}
		footer .footer-follow {
			position: static;
			height: auto;
			width: auto;
			padding: 20px;
		}
			footer .footer-follow .follow-title .inner {
				text-align: left;
				border-right: 0px;
			}
			footer .footer-follow .follow-links ul {
				margin-left: 0px;
			}			
}

.main-body .sidebar ul.nav.subnav {
	margin-left: 30px;
	margin-top: 10px;
	display: none;
}
	.main-body .sidebar ul.nav li.active .subnav
	, .main-body .sidebar ul.nav.subnav.active {
		display: block;
	}
	.main-body .sidebar ul.nav.subnav li {
		font-size: 16px;
	}

.main-body .sidebar ul li.last{
	border-bottom: none;
}

.nav_new-investigative-reports{
	font-weight: bold;
}