/*------Mobile Layout(Potrait/320px)----------*/
@media only screen and (max-width: 480px) { 
/*body				{background-color: #FF0 !important; }*/

}

/*------Mobile Layout(landscape/480px)----------*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
/*body				{background-color: #0F0 !important}*/

}

/*------tablet----------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
/*body					{background-color: #F00 !important}*/
.carousel-inner img {
    float: right !important;
}
.navbar-right {
    padding-top: 15px;
}
}

/*------Narrow Desktop Layout----------*/
@media only screen and (min-width: 992px) {
/*body				{background-color:#006 !important}*/
.carousel-inner img {
    float: right !important;
	width:720px !important;
	height:340px !important;
}
#views-bootstrap-carousel-1 .carousel-caption {
    left: 0px;
    padding: 30px;
    position: relative;
    top: 0px;
    width: 300px;
    height: 340px;
}
.carousel-caption {
    text-align: left;
}
.navbar-nav {
    float: right;
}
}

