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

body {
	background-image: url(../images/bg-cream.gif);
}

/* fix carousel start point */
.carousel{
	margin-top: 0px; /* was 100px */
}

h3 {
	text-transform: uppercase;
	color: #000;
	font-family: 'Open Sans', sans-serif; font-weight:400; font-style:italic; /* note: the addition of the weight and style are critical to ensure Safari compatibility */
	font-size: 40px;
	text-align: left;
	line-height: 40px;
}

h2{
    margin-bottom: 20px;
	margin-top: 0px;
    color: #767575;
    font-family: 'Open Sans', sans-serif; font-weight:400; font-style:italic; /* note: the addition of the weight and style are critical to ensure Safari compatibility */
	font-size: 40px;
}

p {
    margin-bottom: 20px;
    color: #000000; /* old gray was 9e9e9e */
    font-family: Helvetica, Arial, "sans-serif";
    font-size: 18px;
	font-style: italic;
    line-height: 24px;
}


/*Links */	

a {
	text-decoration: none;
}

a.fade-trans {
    color: #848484;
    font-family: Helvetica, Arial, "sans-serif";
    font-size: 18px;
    text-decoration: none;
    letter-spacing: .5px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}

a.fade-trans :hover {
	background-color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition:all .4s linear;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-o-transition:all .4s linear;
}


/* Nav Related */
@media (min-width: 768px) {
.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.navbar .navbar-collapse {
  text-align: center;
}
}

nav ul li{
    margin-left: 7px;
    font-size: 17px;
    font-family: Helvetica, Arial, "sans-serif";
	font-weight: 100;
    letter-spacing: 1px;
	line-height: 20px;
	color: #ffffff;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff !important; /* Nav color */
	padding: 15px 20px !important;  /* important that this padding matches the hover padding to avoid movement */
}

nav ul li a:hover{
    color: #ffffff  !important; 
	background-color: #046255 !important;
	padding: 15px 20px !important;  /* important that this padding matches the non hover padding to avoid movement */
}



/* Misc */
.column-padding {
	padding: 0 5% 0 5%;
}

.hp-callouts {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 10px;transition:all .4s linear;
	-webkit-transition:all .4s linear;
	-moz-transition:all .4s linear;
	-o-transition:all .4s linear;
}

.conditional-right-line {
	border-right: 1px solid #b5b5b5;
	padding-left: 20px;
}




@media (max-width: 480px) {
.conditional-right-line {
	border-right: none;
	padding-left: 0px;
}
	/* Fix too long line-height on mobile nav */
	nav ul li{
    margin-left: 7px;
	font-weight: 100;
    letter-spacing: 1px;
	line-height: 9px;
	color: #ffffff;
}

nav ul li a {
	padding: 4px 10px !important;  /* important that this padding matches the hover padding to avoid movement */
}

nav ul li a:hover{
	padding: 4px 10px !important;  /* important that this padding matches the non hover padding to avoid movement */
}
}