@charset "UTF-8";
body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #fff;
	font-style: normal;
	font-weight: 400;
}




/* START.... CONTROLS NAV BAR*/

/* nav bar. long BACKGROUND STRIPE. ALL OF THESE BACKGROUN SETTINGS ARE FROM THE BREADCRUMBS CSS. Original was only this:
.navbar-default {
    background-color: #F8F8F8;
    border-color: #E7E7E7;
}*/
.navbar-default {
	background-color: #FFFFFF;
	background-image: -moz-linear-gradient(top, #ffffff, #e1e3e4);
	background-image: -ms-linear-gradient(top, #ffffff, #e1e3e4);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e1e3e4));
	background-image: -webkit-linear-gradient(top, #ffffff, #e1e3e4);
	background-image: -o-linear-gradient(top, #ffffff, #e1e3e4);
	background-image: linear-gradient(to bottom, #ffffff, #e1e3e4);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e1e3e4', GradientType=0);
	
	border-color: #FFFFFF;
	}

/* title, top left */
.navbar-default .navbar-brand {
color: #3399cc;
}
/* title, top left,  hover color */
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5E5E5E;
}

/* text link color */
.navbar-default .navbar-nav > li > a {
color: #3399cc;
}
/* text link color, hover color */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
}
/* text & background, ACTIVE */
.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:hover, 
.navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #E7E7E7;
}
.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #D5D5D5;
}

/* caret */
.navbar-default .navbar-nav > .dropdown > a .caret {
    border-top-color: #777;
    border-bottom-color: #777;
}
/* END.... NAV BAR*/





/* CAROUSEL... Left & Right Gradients*  ORIGINAL #'s for left/right rgba(0, 0, 0, .0001) (0, 0, 0, .04)*/
.carousel-control.left {
	  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
	  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
	  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
background-image:         linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	  background-repeat: repeat-x;
}
.carousel-control.right {
	  right: 0;
	  left: auto;
	  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
	  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
	  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
background-image:         linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
 color: black;
	  text-decoration: none;
	  filter: alpha(opacity=90);
	  outline: 0;
	  opacity: .9;
  }
/* END CAROUSEL... Left & Right Gradients*/





/* CAROUSEL THUMBNAILS.... This code is NOT IN BOOTSTRAP.CSS*/
		#carousel-custom {
            margin: 0px auto;
            width: 100%;
        }
		#carousel-custom .carousel-indicators {
margin: 20px 0 10px 0;
		overflow: auto;

		position: static;
	text-align: center;
		white-space: nowrap;
	width: 612px;
	display: inline-block;

        }
        #carousel-custom .carousel-indicators li {
            background-color: transparent;
            -webkit-border-radius: 0;
            border-radius: 0;
            display: inline-block;
            height: auto;
            margin: 0 !important;
            width: auto;
        }
        #carousel-custom .carousel-indicators li img {
            display: block;
        }
        #carousel-custom .carousel-outer {
            position: relative;
        }
/* END CAROUSEL THUMBNAILS*/






/*THIS IS FOR THE SLIDER WITH TEXT. PRINT PAGE.*/
.hide-bullets {
list-style:none;
margin-left: -40px;
margin-top:20px;
}
