@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/* General Styles */
body	{
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
}
h1	{
	font-size:1.5rem;	
}
h2	{
	font-size:1.2em;
	margin-bottom:0.25em;	
}
p.quote	{
	text-align:center;
	font-style:italic;
	font-size:0.9em;	
}

.no-shadow {
	box-shadow: none !important;
}

.bg-adg {
	background-color:#999;	
}

.btn-adg {
	background-color: rgba(102,96,46,0.8);	
}
.btn-adg:hover {
	background-color: rgba(102,96,46,1.00);	
}



.navbar-toggler {
	font-size: 0.75em;
}

.navbar-nav .nav-item {
	padding-right:2em;
}
.navbar-nav .nav-item .nav-link {
	color:#ddd;
}
.navbar-nav .nav-item.active .nav-link {
	color:#000;
}

.main-content {
	padding-top:2em;	
}
.main-content h1 {
	margin-bottom:0.75em;	
}
.main-content h3 {
	margin:0.75em 0;
	letter-spacing:2px;	
}

.main-content a:link, .main-content a:visited {
	color:#666;
	border-bottom:1px dotted #666;
	text-decoration: none;
}
.main-content a:hover {
	text-decoration:none;	
	color:black;
	border-bottom-color:black;
	border-bottom-style: solid;
}

.footer a:link, .footer a:visited	{
	color:#ddd;
	border-bottom:1px dotted #666;
	text-decoration: none;
}
.footer a:hover {
	color: white;
	border-bottom-color: white;
	border-bottom-style: solid;
	text-decoration:none;	
}


.main-content h2 {
	font-weight:500;
	letter-spacing:1px;
	margin-top:1.5em;
}

.tips-wrapper li {
	 margin-bottom:0.5em;	
}

.icon-wrapper {
	display:inline-block;
	width:30px;
}

.footer {
	padding:0 2%;	
}


/* Mobile Layout: 480px and below. */
.imageRight	{
	margin:0 auto 2em auto;

}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
	h1	{
		font-size:2.5rem;	
	}
	.imageRight	{
		float:right;
		margin-left:2em;	
	}
}