@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,700);

/* Yellow = #FCEE21 */
/* Lime = #D9E021 */
/* Green = #8CC63F */

html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px;
  background-color: #476127;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
.dropshadow {
	-webkit-box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
}


/* HEADER */
.header {
	border: none;
	background-color: #FFF;
	padding: 20px 0px 20px 0px;
}
.headerText {
	float: left;
	text-align: left;
	padding: 20px 0px 15px 15px;
}
.header a, .header a:link, .header a:hover {
	color: #8CC63F;
	text-decoration: none;
}

/* NAVIGATION */
.navdiv {
	padding: 0px;
}
.navbar {
	background-color: #FFF;
	border: none;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-radius: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.navbar .lifirst {
	border-left: 1px solid rgba(0,0,0,0.1);
}
.navbar li {
	border-right: 1px solid rgba(0,0,0,0.1);
}
.navbar-collapse {
	padding-left: 0px;
}


/* SLIDESHOW */
.slideshow {
	background-color: #CCC;
	background-image: url(../images/backgroundLight.jpg);
	background-repeat: repeat;
	background-position: center top;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}


/* CONTENT */
.content {
	background-color: #FFF;
	padding: 0px 0px 20px 0px;
}


/* FOOTER */
.footer {
	border-top: 1px solid rgba(0,0,0,0.1);
	background-color: #D9E021;
}
.footerContent {
	color: rgba(0,0,0,0.5);
	padding: 20px 0px 20px 0px;	
}
.footerContent h3 {
	text-transform: uppercase;	
	font-size: 16px;
}
.footerContent ul {
    padding: 0;
	list-style-type: none;
}


/* BASE */
.base {
	color: rgba(0,0,0,0.25);
	background-color: #8CC63F;
	padding: 20px 0px 20px 0px;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.base p {
	margin-top: 0px;
	margin-bottom: 0px;
}
.baseLeft {
  float: left;
}
.baseRight {
  float: right;
}
.base a, .base a:link  {
	color: rgba(0,0,0,0.5);
	text-decoration: none;
	-webkit-transition: all .2s ease-in-out; /* For Safari 3.1 to 6.0 */
	transition: all .2s ease-in-out;
}
.base a:hover  {
	color: rgba(0,0,0,0.75);	
	-webkit-transition: all .2s ease-in-out; /* For Safari 3.1 to 6.0 */
	transition: all .2s ease-in-out;
}


/* CAROUSEL */
.carousel-control.left {
	background-image: none;
}
.carousel-control.right {
    background-image: none;
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #000;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0)
}
.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #000;
}