@charset "utf-8";
/* CSS Document */

html, body {
	font: 100%/1.4 Lucida Grande, Verdana, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000000;
	background-color: #FFFFFF;
	height: auto;

}
/* Property of TAC */
/* Designed by Brian Salisbury */
/* Referenced from previouse Anschutz site*/
/* Referenced Font Family Lucida Grande, Verdana, Helvetica, sans-serif;

/*Reference
Colors:
Yellow: #FFFBBC
White: #FFFFFF
Light Gray: #F5F5F5
Medium Gray: #C0C0C0
Links (yellow): #BFB535

NAV
	Border (Light Yellow): ##FFF21E
	Background (Yellow): ##FFF21E
	Active\Hover (Bright Yellow): #FFF21E
	
*/

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 5px;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, aside, nav, article, figure {
	vertical-align: top;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	display: block;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link, a:visited {
	color: #BFB535;
	text-decoration:none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	text-align:justify;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	/* [disabled]background-color: #6E1B39; */
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 100%;
	margin: 0 auto;
}
.Logo {
	display: flex;
	flex-direction: row;
	flex-wrap:nowrap;
	margin: auto;
	justify-content:flex-start;
	align-items: center;
	padding-bottom: 2.5em;
	
}
.bgimg-1 {
  background-image: url("../Images/CoorsField.jpg");
  position: relative;
  height: 100%;
  min-height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
	

nav ul {
	list-style:none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
}

nav ul a:link, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: inline-block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	text-align:center;
}

.container nav ul{
	width: 100%;

}


/*Dropdown Menu start*/

/*Link Appearance*/

/*Make the parent of sub-menu relative*/

/*sub menu*/


#Nav_Menu p {
		margin: 0px; 
	
}

.types p {
	text-align: left;
	margin: 0px;
	padding: 0px;
	
	/*word-spacing: 50px;*/
}
p span {
	display: block;
	margin-top: 1em;
	
}
	
.clear {
	clear: both;
}

.wrapper {
  margin: 0 auto;
  width: 80%;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards li {
  border: 3px solid #490A3D;
  border-radius:5px;
  background:rgba(255,255,255,0.45);
  color: #000000;
  flex: 1 1 300px;
  
}

.cards h2 {
  background-color: #FFFFFF;
  margin: 0;
  padding: 10px 10px 15px 15px;
  height: 5.1em;
  font-size: 1.2em;
  justify-content:space-around;
  text-align: justify;
  
  
}
.cards h2 a img{
	display: inline-flex;
}
.cards h2:hover, .cards h2:active{
	background-color: #FFFBBC;
}

.cards p {
  padding: 10px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.flex li {
  flex: 1 1 300px;
  margin: 10px;
}
.sub-menu li,{
	width:  100%;
	flex-basis: 1000px;
	margin-left: -200px;
}
.sub-menu li h3 a:link, .sub-menu li h3 a:visited {
	color: #000000;
}
.sub-menu li h3 a:hover, .sub-menu li h3 a:active {
	color:#0A00FD;

}
.sub-menu li h3 {
	margin-bottom: -10px;
	font-size: 1.1em;
}
.sub-menu li a:link, .sub-menu li a:visited{
	color:#0A00FD;

}
/* ~~ The footer ~~ */
.footer {
	background: #F5F5F5;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 0.65em;
	margin-top: 2%;
	bottom: 0;
	z-index: 0;
}