@charset "UTF-8";
/* CSS Document */

* {
	padding: 0;
	border: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0;
}


.orange {
	color: #ff8003;
}

.blue {
	color: #0a6bee;
}

#logo {
	background-image: linear-gradient(to right, #f2f2f2, #FFF); /* for gradient, first color is left, second is right */
	width: 100%;
	height: auto;
	float: left;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	position: fixed; /* to position at top of screen */
	top: 0;  /* to position at top of screen. I turned this off and it doesn't appear to change anything. */
	z-index: 100; /* to position at top of screen */
}

#logo a {
	font-size: 23px;
	color: #666;
	text-transform: uppercase;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica;
	margin-left: 10%;
	letter-spacing: 2px;
}

#logo a:hover  {
	color: black;
	font-size: 24px;  /* Large on hover. decimals don't appear to work in Safari. Looks like it gets rounded to next whole number. */
}

#banner {
	float: left;
	clear: none;
	position: relative;
	margin-bottom: 0px;
	margin-top: 67px; /* to not cover up the logo fixed to the top. Must be equal or greater to the height of the logo bar. */
}

#banner h2 {
	font-family: Arial, Helvetica;
	font-size: 4.8vw;
	color: #0a6bee;
	font-weight: bold;
	text-transform: none;
	position: absolute;
	top: 38px;
	left: 10%;
	right: 10%;
	text-align: left;
	line-height: 105%;
	letter-spacing: -1px; /* percentage doesn't seem to work, just px */
}

#banner img {
	height: auto;
	width: 100%;
}

/* Mobile banner image. Specs are included on mobile css */

#mobile_banner {
	display: none;
}

#mobile_banner img {
	display: none;
}




/* Full-width pic without any text on top */

#banner2 {
	float: left;
	clear: left;
	margin-top: 12px;
	}

#banner2 img {
	height: auto;
	width: 65%;
	margin-left: 0%;
	margin-right: 35%;
}


#fullwidthtext {
	float: left;
	width: 100%;
	margin-top: 0px;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-bottom: 20px;
	border: 1px none #F96;
}

#fullwidthtext p {
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.3em;
	text-align: left;
	margin-top: 24px;
	margin-left: 10%;
	margin-right: 35%;
	line-height: 160%;
	clear: left;
}

#fullwidthtext h1 {
	font-family: Arial, Helvetica;
	font-size: 2em;
	color: #777;
	font-weight: normal;
	text-transform: none;
	text-align: left;
	float: left;
	margin-top: 18px;
	margin-left: 10%;
	margin-right: 10%;
	line-height: 120%;
	border: thin none #FC6;
}

#fullwidthtext h2 {
	font-family: Arial, Helvetica;
	font-size: 2em;
	color: #777;
	font-weight: normal;
	text-transform: none;
	text-align: left;
	float: left;
	margin-top: 24px;
	margin-left: 10%;
	margin-right: 5%;
	line-height: 120%;
	border: thin none #FC6;
}

#fullwidthtext h3 {
	font-family: Arial, Helvetica;
	font-size: 2em;
	color: #E38226;
	font-weight: normal;
	text-transform: none;
	text-align: left;
	float: left;
	clear: both;
	margin-top: 24px;
	margin-left: 10%;
	margin-right: 35%;
	line-height: 140%;
}

#fullwidthtext h4 {
	font-family: Arial, Helvetica;
	font-size: 1.5em;
	color: #333333;
	font-weight: bold;
	text-transform: none;
	text-align: left;
	float: left;
	clear: both;
	margin-top: 35px;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: -12px;
	line-height: 120%;
}

#fullwidthtext a  {
	color: blue;
}

#fullwidthtext a:hover  {
	color: #E38226;
}

/* not all of these hr styles are being accepted. I think just the margin top and bottom. Need to experiment more to stylize the lines.  */
#fullwidthtext hr {
	margin-top: 2em;
	margin-bottom: 1em;
	margin-left: 10%;
	margin-right: 35%;
	width: 600px;
	color: orange;
	height: 2px;
	float: left;
}



/* Background color to hold photo gallery together */

#backgroundwrapper {
	float: left;
	clear: left;
	width: 100%;
	border: 1px none #F96;
	margin-top: 0px;
	margin-bottom: 40px;
	padding-bottom: 60px;
	background-color:#F2F2F2;
}

/* Container holds left and right photos  together horizontally */
   
#smallphotocontainer {
	float: left;
	clear: both;
	margin-top: 80px;
	margin-left: 10%;
	margin-right: 10%;
}

/* These divs hold the photo and text underneath. There are two sets of CSS, one for the the left images, and one for the right. Make sure specs match. */
/* the width is set based on these two divs being a child of the "smallphotocontainer" parent. If each photo is 43% wide, that leaves 14% between them. I did this visually to visually match the over left and right margins on the page. */

#smallphotoleft {
	float: left;
	width: 43%;
}

#smallphotoright {
	float: right;
	width: 43%;
}

#smallphotoleft img {
	height: auto;
	width: 100%;
	/* box-shadow: 7px 7px 12px #999;  first two numbers: right and down, third number is amount of blur, last is color */
}

#smallphotoright img {
	height: auto;
	width: 100%;
	/* box-shadow: 7px 7px 12px #999;  first two numbers: right and down, third number is amount of blur, last is color */
}

#smallphotoleft h2 {
	font-family: Arial, Helvetica;
	font-size: 2.1vw;
	color: #0a6bee;
	font-weight: bold;
	text-align: left;
	margin-top: 14px;
}

#smallphotoright h2 {
	font-family: Arial, Helvetica;
	font-size: 2.1vw;
	color: #0a6bee;
	font-weight: bold;
	text-align: left;
	margin-top: 14px;
}

#smallphotoleft p {
	font-family: Arial, Helvetica;
	font-size: 1.1em;
	color: #333;
	font-weight: bold;
	text-align: left;
	margin-top: 4px;
	line-height: 150%;
}

#smallphotoleft a:link  {
	color: blue;
}

#smallphotoleft a:visited  {
	color: blue;
}

#smallphotoleft a:hover  {
	color: #E38226;
}

#smallphotoleft a:active  {
	color: black;
}



#smallphotoright p {
	font-family: Arial, Helvetica;
	font-size: 1.1em;
	color: #333;
	font-weight: bold;
	text-align: left;
	margin-top: 4px;
	line-height: 150%;
}


#smallphotoright a:link  {
	color: #36C;
}

#smallphotoright a:visited  {
	color: blue;
}

#smallphotoright a:hover  {
	color: #E38226;
}

#smallphotoright a:active  {
	color: black;
}

#buttons {
	float: left;
	clear: none;
	height: 36px;
	margin-top: 32px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10%;
	text-align: left;
	border: 2px none #F69;
}

#buttons ul {
	list-style-type: none;
}

#buttons li  {
	display: inline;
}
	
#buttons a  {
	text-decoration: none;
	font-family: Arial, Helvetica;
	font-weight: normal;
	font-size: 15px;
	border-radius: 18px;
	padding-top: 10px;
	padding-right: 17px;
	padding-bottom: 10px;
	padding-left: 17px;
	margin-right: 45px;
	color: #FFF;
	letter-spacing: .5px; /* % doesn't seem to work */
	box-shadow: 2px 2px 6px #a2a1a1; /* first two numbers: right and down, third number is amount of blur, last is color */
}

#buttons a:link {
	/*background-color: #f28d2a; use for solid, non gradient */
	background-image: linear-gradient(to bottom right, #ffb245, #cc6601); /* for gradient, first color is left, second is right */
}

#buttons a:hover  {
	color: #FFF;
	/*background-color: #999999; use for solid, non gradient*/
	background-image: linear-gradient(to bottom right, #CCC, #666); /* for gradient, first color is left, second is right */
}

/* turn off mobile buttons in main css. I added buttons ID in mobile css */

#mobile_buttons {
	display: none;
}


#paypal_buttons {
	float: left;
	clear: left;
	margin-left: 10%;
	border: medium none #F69;
}

#mobile_smallphoto img {
	display: none;
}

#mobile_smallphoto h2 {
	display: none;
}

#mobile_smallphoto p {
	display: none;
}

#mobile_spacer {
	display: none;
}



#footer {
	float: left;
	clear: left;
	width: 100%;
	margin-top: 20px;
	background-color: #8F8F8F;
	padding-top: 20px;
	padding-bottom: 50px;
	border: 1px none #F96;
}

#footer p {
	float: left;
	clear: both;
	font-family: Verdana, "sans serif";
	font-size: 1em;
	text-align: left;
	margin-top: 14px;
	margin-left: 10%;
	margin-right: 35%;
	line-height: 140%;
	color: #FFF;
}

#footer a  {
	float: left;
	clear: both;
	font-family: Verdana, "sans serif";
	font-size: 1em;
	text-align: left;
	margin-top: 18px;
	margin-left: 10%;
	margin-right: 0%;
	line-height: 140%;
	color: white;
	text-decoration: none;
}
#footer a:link {
	color: white;
	text-decoration: none;
}

#footer a:active {
	color: white;
	text-decoration: none;
}

#footer a:hover  {
	color: black;
	text-decoration: none;
	font-weight: bold;
}

/* used for logo in footer. Same specs except made white */

#footer h3 {
	font-size: 1.7vw;
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	font-family: Arial, Helvetica;
	margin-left: 10%;
	margin-top: 6px;
	letter-spacing: 2px;
	float: left;
	clear: left;
}
