@charset "UTF-8";
#carousel_container {
background:rgba(29, 46, 73, 0.9);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#991D2E49, endColorstr=#991D2E49)";
float:left;
width:100%;
margin:0px auto;
max-width:960px;
}
#carousel_inner {
float:left; /* important for inline positioning */
width:850px; /* important (this width = width of list item(including margin) * items shown */
overflow: hidden;  /* important (hide the items outside the div) */
/* non-important styling bellow */
}
#carousel_ul {
margin:0 auto;
left:-210px; /* important (this should be negative number of list items width(including margin) */
list-style-type: none; /* removing the default styling for unordered list items */
width:9999px; /* important */
/* non-important styling bellow */
}
#carousel_ul li{
padding-top:20px;
text-align:center;
display:inline;
float:left; /* important for inline positioning of the list items */
width:120px;  /* fixed width, important */
/* just styling bellow*/
margin:0 auto;
}
#carousel_ul li img {
margin-bottom:5px;
cursor:pointer;
border:0px;
}
#left_scroll{
margin-left:10px;
float:left;
height:130px;
}
#right_scroll {
margin-right:20px;
float:right;
height:130px;
width:15px;
}
#left_scroll img, #right_scroll img{
cursor: pointer;
}
/*Media Styles*/
@media only screen and (max-width : 768px) {
#carousel_container {
max-width:700px;
}
#carousel_inner {
width:610px;
}
}
@media only screen and (max-width : 667px) {
#carousel_container {
max-width:640px;
}
#carousel_inner {
width:490px;
}
}
@media only screen and (max-width : 640px) {
#carousel_container {
max-width:600px;
}
#carousel_inner {
width:490px;
}
}
@media only screen and (max-width : 568px) {
#carousel_container {
max-width:520px;
}
#carousel_inner {
width:370px;
}
}
@media only screen and (max-width : 414px) {
#carousel_container {
max-width:360px;
}
#carousel_inner {
width:250px;
}
}
@media only screen and (max-width : 360px) {
#carousel_container {
max-width:360px;
}
#carousel_inner {
width:210px;
}
}
@media only screen and (max-width : 320px) {
#carousel_container {
width:100%;
}
#carousel_inner {
width:210px;
}
}