
body {
  padding-top: 70px;
}

.navbar-nav {
	/*background: white; */
	background: rgba(144,40,19,1.0);
	}

#navbar {
	min-height: 70px;
}

.navbar .nav > li > a {
    color:  #FFF;
	background: #902813;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: white;  /*Sets the text hover color on navbar*/
 background-color: #CE3A1C;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active >   
 a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: white; /*BACKGROUND color for active*/
background-color: rgba(206,58,28,1.0)
}



 .dropdown-menu   {
    color: white;
  background-color: rgba(144,40,19,1.0);  /*change color of links in drop down here*/
   }
   
 .dropdown-menu > li > a:hover,
   .dropdown-menu > li > a:focus {
    color: white;
   text-decoration: none;
  background-color: rgba(206,58,28,1.0);  /*change color of links in drop down here*/
   }

.dropdown-menu > li > a {
	color: white;
}
  
.container { padding-top: 15px; } 

.rai-orange { background:rgba(206,58,28,1.0);   }
.rai-dark-orange { background: rgba(145,41,20,1.0); }
.rai-gradient { background-image: linear-gradient(180deg, rgba(206,58,28,1.0), rgba(145,41,20,1.0)); }

.rai-orange-text{ color: rgba(206,58,28,1.0);   }

.white-text {
	color: #FFF;
}

.jumbotron { padding: 0.8em 1.2em;
}

 h1.jumbotron {  font-size: 2em; }
 p.jumbotron  {  font-size: 1.2em; }

.dropdown:hover .dropdown-menu {
   display: block;
}

.rai_spacing { line-height: 150%; 
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn linear 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn linear 1;
	animation:fadeIn linear 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
 
 .fade-in.one {
-webkit-animation-delay: 0s;
-moz-animation-delay:0s;
animation-delay: 0s;
}

.fade-in.two {
-webkit-animation-delay: 2s;
-moz-animation-delay:2s;
animation-delay: 2s;
}
 
.fade-in.three {
-webkit-animation-delay: 4s;
-moz-animation-delay: 4s;
animation-delay: 4s;
}

.fade-in.four {
-webkit-animation-delay: 6s;
-moz-animation-delay: 6s;
animation-delay: 6s;
}
