 
  body {
      font-family: 'Bellefair', serif;
	  font-size: 22;
      line-height: 1.4;
      color: #f5f6f7;
  }
  p {font-size: 18px;}
  
  h4 {font-size: 26px;
  line-height: 1.5;
		color: #555;
  } 
  ul  li   {font-size: 18px;}
  .margin {margin-bottom: 45px;}
  .bg-1 { 
  			width: 100%;
      /* background-color: #CC9966;   */
	        background-image: url("korona/2.jpg");
			height: 300px;
		  background-size: cover;
  
 
  }
 
  .bg-2 { 
      background-color: #474e5d; /* Dark Blue */
      color: #ffffff;
  }
  .bg-3 { 
      background-color: #ffffff; /* White */
      color: #555555;
  }
  .bg-4 { 
      background-color: #2f2f2f; /* Black Gray */
      color: #fff;
  }
  
    .bg-4 a { 
     font-size: 18px; 
      color: #777;
  }
  
  
    .bg-5 { 
      background-color: #CC9966; /* Black Gray */
      color: #fff;
  }
  .container-fluid {
	 
      padding-top: 30px;
      padding-bottom: 70px;
 
  }
  
 

  
    .container-fluid  h3   {
		font-weight: 100;
	  font-size: 36px;
	  text-transform: uppercase;
	  line-height: 1.2;
	  color: #000;
 display: inline;
padding: 5px 15px;
/*background: rgba(255, 255, 255, 0.8);*/
	 
	     
  }
  
      .container-fluid  p   {
		font-weight: 100;
	  font-size: 26px;
 
	  line-height: 1.8;
	  color: #000;
 display: inline;
padding: 5px 15px;
/*background: rgba(255, 255, 255, 0.8);*/
	     
  }
  
  
  .navbar {
      padding-top: 15px;
      padding-bottom: 15px;
      border: 0;
      border-radius: 0;
      margin-bottom: 0;
      font-size: 18px;
      letter-spacing: 5px;
	  text-align: center;
  }
  .navbar-nav  li a:hover {
      color: #cc9966 !important;
  }
  .navbar-header a {
	  font-size: 28px;
	  	  text-align: center;
  }
.carousel {
	padding-top: 20px;
}  
.carousel-control.right, .carousel-control.left {
    background-image: none;
    color: #cc9966;
}
.carousel-indicators li {
    border-color: #cc9966;
}
.carousel-indicators li.active {
    background-color: #cc9966;
}
.item h4 {
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 400;
    font-style: italic;
    margin: 70px 0;
	
}
.item span {
    font-style: normal;
}

.slideanim {visibility:hidden;}
.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide; 
    /* The duration of the animation */
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible; 
}
/*
  .container-fluid  li a:hover {
      color: #cc9966 !important;
  }
  */
  
keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0%);
    } 
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}