
/*	
	======================================================================

	stylesheets/links.css

	======================================================================
*/



/* ----------------------------------------------------
   breadcrumb buttons
   ---------------------------------------------------- */

	.breadcrumb_button {
	
		position: relative;
		top: -10px;
		float: right;
/*		background-color: #9DC435;  changed for 508 compliance */
		background-color: #62810C;
		color: white;
		font-size: 1.8rem;
		padding: 6px 15px;
/*		border: 2px #9DC435 solid;  changed for 508 compliance */
		border: 2px #62810C solid;
		border-radius: 8px;
		margin: 10px 10px 10px 25px;
		cursor: pointer;
	}

	.breadcrumb_button:hover {
	
		background-color: #0071B5;  /* EcoAdapt blue */
	}
	
	.breadcrumb_button:active {
	
/*		background-color: #9DC435;  changed for 508 compliance */
		background-color: #62810C;
	}

	.breadcrumb_arrow {
	
		position: relative;
		top: 4px;
		margin-right: 10px;
	}

	@media only screen and (max-width: 1000px) {
	
		.breadcrumb_button {
			
			position: relative;
			display: inline-block;
			top: -0;
			float: none;
			margin: 15px 0 20px 0;
		}
	}

/* ----------------------------------------------------
   white links
   ---------------------------------------------------- */

 	a.white_link:link,
 	a.white_link:visited {
 	
		color: #FFF;
		font-weight: normal;
 		text-decoration: none;
 	}
 	
 	a.white_link:hover {
 	
		color: #FFF;
		font-weight: normal;
 		text-decoration: underline;
 	}
 	
 	a.white_link:active {
 	
		color: #FFF;
		font-weight: normal;
 		text-decoration: none;
 	}


/* ----------------------------------------------------
   large link buttons
   ---------------------------------------------------- */
	
	.green_link_buttons {
	
		margin-bottom: 30px;
	}
	
	.green_link_button {
	
		float: left;
/*		background-color: #9DC435;  changed for 508 compliance */
		background-color: #62810C;
		color: white;
		padding: 6px 24px;
/*		border: 2px #9DC435 solid;  changed for 508 compliance */
		border: 2px #62810C solid;
		border-radius: 8px;
		margin: 5px;
		cursor: pointer;
	}
		
	.green_link_button_spacious {
	
		margin: 20px;
	}
		
	.green_link_button_small {
	
		font-size: 1.75rem;
		line-height: 160%;
		padding: 3px 9px;
/*		border: 1px #9DC435 solid;  changed for 508 compliance */
		border: 1px #62810C solid;
		border-radius: 4px;
		margin: 2px;
	}

	.green_link_button_inline {
	
		float: none;
		display: inline;
		margin: 0 5px;
	}
		
	.green_link_button_selected {
	
		background-color: #0071B5;  /* EcoAdapt blue */
		cursor: auto;
	}
	
	.green_link_button_title {
	
		font-size: 2.25rem;
		text-align: center;
	}
	
	.green_link_button_subtitle {
	
		font-size: 1.8rem;
		font-style: italic;
		text-align: center;
	}
	
	.green_link_button_no_subtitle {
	
		padding: 10px 24px 0 24px;
	}
	
	.green_link_button:hover {
	
		background-color: #0071B5;  /* EcoAdapt blue */
	}
	
	.green_link_button:active {
	
/*		background-color: #9DC435;  changed for 508 compliance */
		background-color: #62810C;
	}
	
	.green_link_button_selected:active {
	
		background-color: #0071B5;  /* EcoAdapt blue */
	}
