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

       /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      margin-bottom: 0;
      border-radius: 0;
    }
    
    /* Add a gray background color and some padding to the footer */
    footer {
	  background-color: #f2f2f2;
      padding: 25px;
    }

.bg-1 {
	background-color: #06F; /* Blue */
	color: #FFF;
}
.bg-2 { 
    background-color: #474e5d; /* Gray */
    color: #ffffff;
}
.bg-3 {
	background-color: #ffffff; /* White */
	color: #009;
}
.bg-4 { 
    background-color: #060; /* Green */
   color: #ffffff;
}
.bg-5 {
	background-color: #FFF; /* white */
	color: #474e5d;
}
.bg-6 {
	background-color: #FBAC37; /* white */
	color: #474e5d;
}
.text-black   /* Black */
{
	color: #000;
}
}
.text-blue   /* Blue */
{
	color: #009;
}
.text-yellow   /* Yellow */
{
	color: #FF0;
}
.text-orange  /* Orange */
{
	color: #F60;
}
.text-green   /* Green */
{
	color: #060;
}
.strike_price {
	margin:0px;
	padding:0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration:line-through;
	color:#F00;
	padding-top:6px;
}
/* Carousel  */

 .carousel-inner img {
      width: 100%; /* Set width to 100% */
      margin: auto;
      min-height:200px;
  }

  /* Hide the carousel text when the screen is less than 600 pixels wide */
  @media (max-width: 600px) {
    .carousel-caption {
      display: none; 
    }
  }