/* 
	jQuery Logo Slider Ticker 
	by http://webdesignandsuch.com
	build with code from http://bxslider.com
*/


.slider-container {
	list-style:none;
	padding:0px
}

.slider-container img {
	max-width:200px; 
	height:100px; 
	margin:0px; 
	display:inline-block;
	
	/* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    /* IE 5.5-7 */
    filter: alpha(opacity=60);
    /* Netscape */
    -moz-opacity: 0.6;
    /* Safari 1.x */
    -khtml-opacity: 0.6;
    /* Modern browsers */
    opacity: 0.6;
}

.slider-container img:hover {
	/* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5.5-7 */
    filter: alpha(opacity=100);
    /* Netscape */
    -moz-opacity: 1.0;
    /* Safari 1.x */
    -khtml-opacity: 1.0;
    /* Modern browsers */
    opacity: 1.0;
}

.slider-container .flag {
	width: 16px;
	height: 11px;
	margin-right: 2px;
	/* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5.5-7 */
    filter: alpha(opacity=100);
    /* Netscape */
    -moz-opacity: 1.0;
    /* Safari 1.x */
    -khtml-opacity: 1.0;
    /* Modern browsers */
    opacity: 1.0;
}

.slider-container li .name {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	top: -2px;
}

.slider-container .bx-wrapper, .slider-container .bx-window {
	width: 100% !important;
}



/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.slider-container {
    position: relative;
    overflow: hidden;
	
	width:100% !important; 
	height:150px; 
	padding: 0; 
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.slider-container ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.slider-container li {
    /* Required only for block elements like <li>'s */
    float: left;
	max-width:200px;
	position: relative;
	margin-right: 10px;
	width: auto !important;
	height: 120px;
}


