/* ---------------------------------------------------
    DEFAULT STYLES
----------------------------------------------------- */

	@import url('https://fonts.googleapis.com/css?family=Alfa+Slab+One');
	body {
		font-family: Georgia, Times, serif;
		background: #fafafa;
	}
	input, select, textarea {
		font-family: Georgia, Times, serif;
		font-size: 16px;
	}
	h1, h2, h3, h4,
	#sidebar, 
	.nav-tabs {
		font-family: 'Alfa Slab One', cursive;
	}
	p {
		font-size: 1.1em;
		font-weight: 300;
		line-height: 1.7em;
		color: #666;
	}

	a,
	a:hover,
	a:focus {
		color: #CC0000;
		text-decoration: none;
		transition: all 0.3s;
	}

	.navbar {
		padding: 15px 10px;
		background: #fff;
		border: none;
		border-radius: 0;
		margin-bottom: 40px;
		box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	}

	.navbar-btn {
		box-shadow: none;
		outline: none !important;
		border: none;
	}

	.line {
		width: 100%;
		height: 1px;
		border-bottom: 1px dashed #ddd;
		margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

	.wrapper {
		display: flex;
		width: 100%;
		align-items: stretch;
	}

	#sidebar {
		min-width: 250px;
		max-width: 250px;
		background: #333333;
		color: #fff;
		transition: all 0.3s;
	}

	#sidebar.active {
		margin-left: -250px;
	}

	#sidebar .sidebar-header {
		padding: 20px;
		background: #6;
	}

	#sidebar ul.components {
		padding: 20px 0;
	}

	#sidebar ul p {
		color: #fff;
		padding: 10px;
	}

	#sidebar ul li a {
	    color: white;
		padding: 10px;
		font-size: 1.1em;
		display: block;
	}

	#sidebar ul li a:hover {
		color: #CC0000;
		background: #fff;
	}

	#sidebar ul li.active>a,
	a[aria-expanded="true"] {
		color: #fff;
		background: #666666;
	}

	a[data-toggle="collapse"] {
		position: relative;
	}

	.dropdown-toggle::after {
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}

	ul ul a {
		font-size: 0.9em !important;
		padding-left: 30px !important;
		background: #666666;
	}

	ul.CTAs {
		padding: 20px;
	}

	ul.CTAs a {
		text-align: center;
		font-size: 0.9em !important;
		display: block;
		border-radius: 5px;
		margin-bottom: 5px;
	}

	a.yellow {
		background: #fecc01;
		color: #333333;
	}

	a.red,
	a.red:hover {
		background: #cc0000 !important;
		color: #fff !important;
	}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

	#content {
		width: 100%;
		min-height: 100vh;
		transition: all 0.3s;
	}
	/* Sections */
		.section {padding: 1em 1em 0 1em;}
		.section-light {background-color: #f4f3f2;}
		.section-medium {background-color: #ebe8e0;}
	/* Newspaper Tab */
		.newspaper-list {margin-bottom: 1.5em; height: 400px; overflow-x: hidden; overflow-y: auto;}
		.newspaper-list a {color: black; font-family: 'Arial', Helvetica, sans-serif; font-size: 13px;}
		.newspaper-list a:hover {color: #CC0000; text-decoration: underline;}
		.city-state {font-style: italic; font-size: 11px;}
		.name-paper {
			border-bottom: 1px dotted #666;
			padding: 4px 0;
		}
		.the {
			margin-left: 23px;
		}
	
	/* State Tab */
		#column1, #column2, #column3 {
			height: 300px;
			font-size: 13px;
			overflow: auto;
		}
		#column1 a, #column2 a, #column3 a {
			display: block;
			border-bottom: 1px dotted #666;
			padding: 6px 0;
		}

	/* Footer */
		#footer {
			background-color: black; 
			color: white; 
			padding: 3em 0; 
			font-size: small;
		}
		#footer a {
			color: silver;
			display: block;
			margin-bottom: 1em;
		}
		#footer h4 {
			color: gray;
			font-size: 18px;
		}
		.copyright {background-color: black; color: white;}



/* ---------------------------------------------------
    FADING CAROUSEL
----------------------------------------------------- */

	.carousel-fade .carousel-item {
	 opacity: 0;
	 transition-duration: .6s;
	 transition-property: opacity;
	}

	.carousel-fade  .carousel-item.active,
	.carousel-fade  .carousel-item-next.carousel-item-left,
	.carousel-fade  .carousel-item-prev.carousel-item-right {
	  opacity: 1;
	}

	.carousel-fade .active.carousel-item-left,
	.carousel-fade  .active.carousel-item-right {
	 opacity: 0;
	}

	.carousel-fade  .carousel-item-next,
	.carousel-fade .carousel-item-prev,
	.carousel-fade .carousel-item.active,
	.carousel-fade .active.carousel-item-left,
	.carousel-fade  .active.carousel-item-prev {
	 transform: translateX(0);
	 transform: translate3d(0, 0, 0);
	}


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

	@media (max-width: 768px) {
		#sidebar {
			margin-left: -250px;
		}
		#sidebar.active {
			margin-left: 0;
		}
		#sidebarCollapse span {
			display: none;
		}
		.newspaper-list {height: auto;}
	}