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

#carousel_container {
	margin-left:17px;
}

#carousel_inner {
float:left; /* important for inline positioning */
width:461px; /* important (this width = width of list item(including margin) * items shown */ 
height:393px;														   
overflow: hidden;  /* important (hide the items outside the div) */
/* non-important styling bellow */
background: white;
border: #dbe4e9 solid 11px;
padding:10px;
}

#carousel_ul {
position:relative;
left:0px; /* important (this should be negative number of list items width(including margin) */
list-style-type: none; /* removing the default styling for unordered list items */
margin: 0px;
padding: 0px;
width:9999px; /* important */
/* non-important styling bellow */
padding-bottom:10px;
}

#carousel_ul li{
float: left; /* important for inline positioning of the list items */                                    
width:441px;  /* fixed width, important */
/* just styling bellow*/
padding:0px;
height:390px;
background: white;
margin-top:10px;
margin-bottom:10px; 
margin-left:10px; 
margin-right:20px;
text-align:center;
}

#carousel_ul li .textStyleOne {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:23px;
	color:#6f8997;
	font-weight:bold;
}

#carousel_ul li .textStyleTwo {
}

#carousel_ul li img {
.margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/
/* styling */
cursor:pointer;
cursor: hand; 
border:0px; 
}

#left_scroll, #right_scroll{
float:left; 
height:108px; 
width:34px; 
margin-top:150px;
}	

#left_scroll {
	margin-right:9px;
}

#right_scroll {
	margin-left:9px;
}

#left_scroll img, #right_scroll img{
/*styling*/
cursor: pointer;
cursor: hand;
}