
/*Copyright 2016, NCHAM, Utah State University*/


/*homepage overrides*/
			
#header_left h1 {
	margin-top: -8px;
}

div#top_nav {
	margin-top: 25px;
}

div#homepage-left {
	float: left;
	width: 60%;
}

	div#homepage-left img {
		margin-top: 18px;
	}

	#content h2 {
		font-size: 2.5em;
		font-weight: 600;
		font-family: "Avenir Next", arial, sans-serif;
		color: #5378bc;
		margin-top: -10px;
		margin-bottom: 10px;
		margin-left: -11px;
		background: none;
	}

div#homepage-right {
	float: right;
	width: 30%;
	margin-right: 10%;
}
	
	div#homepage-right img {
		margin-left: 25px;
	}
	
	h3#tagline {
		font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
		color: #f47c26;
		font-size: 2.6em;
		text-align: center;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 11px;
		margin-bottom: 21px;
		padding: 0;
		width: 350px;
		background: #fff;
		line-height: 130%;
	}
	
		span.smaller-tagline-text {
			font-size: 70%;
			line-height: 10%;
			margin: 0;
			padding: 0;
		}
		
			span.smallest-tagline-text {
				font-size: 45%;
			}
			


/*homepage partner logos styles*/
	
	div.footer-partner-logos {
		float: left;
		width: 100%;
		margin: 70px 0 0 0;
		clear: both;
	}
	
	
	div.footer-partner-logos img {
		display: block;
		margin: 0;
		padding: 0;
		float: left;
		margin-right: 185px;
		border: none;
	}
	
		div.footer-partner-logos img a {
			border: none;
		}
	
	div.footer-partner-logos img.rightmost-partner-logo {
		margin-right: 0;
	}
		
			
			
/*homepage carousel styles*/
	
	
				div.carousel {
					background-color: #fff;
					overflow: hidden;
					height: 350px;
					margin-bottom: 40px;
					float: left;
				}
	
	
				div.carousel-inner-container {
					width: 500px;
					height: 350px;
					float: left;
				}
	
					
	
					/*styles for the navigation buttons, used the info on this very helpful page for starting reference: 
					http://shhdesign.co.uk/blog/implementing-and-styling-owl-carousel/*/
	
						.owl-prev, .owl-next {
							position: absolute;
							top: 50%;
							margin-top: -25px;
							width: 50px;
							height: 50px;
							text-align: center;
							/*background-color: #fff;*/ /*makes a white square for the background*/
							/*filter: Alpha(Opacity=50);*/ /*IE7 fix*/
							filter: Alpha(Opacity=100); /*IE7 fix*/
							/*opacity: 0.8;*/  /*use this if you want the buttons to be transparent*/
							opacity: 1;
							/*font-size: 1.6em;*/ /*use this style to show the "prev" and "next" text*/
							font-size: 0em; /*makes the "prev" and "next" text invisible*/
						}
	
						.owl-next {
							right: 100px; /*placement for the "next" button to the right of the carousel*/
							/*right: 0;*/ /*places the "next" button at the right end of the carousel*/
							background-image: url('/img/tutorial-icons/forward-arrow-a.png');
							opacity: 0.5;
							filter: Alpha(Opacity=50);  /*IE8 and earlier fix*/
						}
	
						.owl-prev {
							left: 18px; /*placement for the "prev" button to the left of the carousel*/
							background-image: url('/img/tutorial-icons/backward-arrow-a.png');
							opacity: 0.5;
							filter: Alpha(Opacity=50);  /*IE8 and earlier fix*/
						}
	
						/*hover styles for the previous and next buttons, if using a transparent button, can become opaque when hovering with this, or can change the level of opacity*/
	
						.owl-prev:hover, .owl-next:hover {
						    opacity: 1;
						    filter: Alpha(Opacity=100);*/  /*IE7 fix*/
						}
			
			