/* http://www.menucool.com */

#div-mainbanner {
    height: 400px;
}

#sliderFrame {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    background-color: #0066FF;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
} /*remove the "margin:0 auto;" if you want to align the whole slider to the left side*/


        
#slider 
{
    text-align:center;
    width:100%;
	height:250px;
	background: url(loading.gif) no-repeat 50% 50%;	
	margin:0 auto;/*make the image slider center-aligned */
    margin-top:0px;
    transform: translate3d(0,0,0);

}
#slider img {
	position:absolute;
	border:none;
	display:block;
    width:100%;
	height:250px;
    z-index:20;
    resize: both;

	
	
}

/* the link style (if an image is wrapped in a link) */
#slider a.imgLink {
	z-index:2;
	display:none;position:absolute;
	top:0px;left:0px;border:0;padding:0;margin:0;
	width:100%;height:100%;
}

/* Caption styles */
div.mc-caption-bg, div.mc-caption-bg2 {
	position:absolute;
	width:100%;
	height:auto;
	padding:0;
	left:0px; /*if the caption needs to be aligned from right, specify by right instead of left. i.e. right:20px;*/
	bottom:0px;/*if the caption needs to be aligned from top, specify by top instead of bottom. i.e. top:150px;*/
	z-index:3;
	overflow:hidden;
	font-size: 0;
}
div.mc-caption-bg {
	background-color:black;
}
div.mc-caption {
	/*font: bold 13px/20px tahoma;*/
    font-size:19px;
	color:#EEE;
	z-index:4;
	padding:10px 0;/*Adding a padding-left or padding-right here will make the caption area wider than its background. Sometimes you may need to define its width again here to keep it the same width as its background area (div.mc-caption-bg).*/
	text-align:center;
}
div.mc-caption a {
	color:#FB0;
}
div.mc-caption a:hover {
	color:#DA0;
}


/* ------ built-in navigation bullets wrapper ------*/
div.navBulletsWrapper  {
	top:270px;
    right:48%;
	width:130px;
	height:21px;
	padding-top:1px;
	position:relative;
	z-index:5;
	cursor:pointer;
}

/* each bullet */
div.navBulletsWrapper div 
{
    width:19px; height:21px;
    background:transparent url(bullet.png) no-repeat 0 0;
    float:right;overflow:hidden;vertical-align:middle;cursor:pointer;
    margin-right:2px;/* distance between each bullet*/
    _position:relative;/*IE6 hack*/
}

div.navBulletsWrapper div.active {background-position:0 -22px;}


/* --------- Others ------- */

/*----------- navigation buttons on both sides of the slider -----------*/
.group1-Wrapper 
{
    position:absolute;
    z-index:20;
    top:120px;
    margin-left:50%;/* position it in the middle of #sliderFrame */
    width:1px;
}
a.group1-Prev, a.group1-Next
{
    width:50px;height:150px;
    background:transparent url(navbuttons2.gif); 
    display:block; 
    cursor:pointer;
    position:absolute;
    top:0;
    user-select: none;
}
a.group1-Prev{background-position:0 -150px; right: 0px;}
a.group1-Next {background-position:0 0px;right:1150px;}

a.group1-Prev:hover{background-position:50px -150px;}
a.group1-Next:hover {background-position:50px 0px;}


/* ----------- navigation buttons in the nav bar ---------- */
a.group2-Prev, a.group2-Next, a.group2-Play, a.group2-Pause 
{
    width:20px; height:20px; 
    background:transparent url(navbuttons.gif); 
    display:inline-block; 
    *display:inline;zoom:1;/*IE hack*/
    margin-left:4px; margin-right:4px;
    cursor:pointer;
}
a.group2-Pause{background-position:0 0;}
a.group2-Play {background-position:0 -20px;}
a.group2-Next {background-position:0 -40px;}
a.group2-Prev {background-position:0 -60px;} 

a.group2-Pause:hover{background-position:20px 0;}
a.group2-Play:hover {background-position:20px -20px;}
a.group2-Next:hover {background-position:20px -40px;}
a.group2-Prev:hover {background-position:20px -60px;} 


