/*

	AnythingSlider v1.7+ Default (base) theme

	By Chris Coyier: http://css-tricks.com

	with major improvements by Doug Neiner: http://pixelgraphics.us/

	based on work by Remy Sharp: http://jqueryfordesigners.com/

*/



/*****************************

  SET DEFAULT DIMENSIONS HERE

 *****************************/

/* change the ID to match your slider */

#slider {
	width: 700px;
	/*height: 394px;*/
	height:130px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}



/*****************

  SET COLORS HERE

 *****************/

/**** Default state (no keyboard focus) ****/

/* slider window - top & bottom borders, default state */

div.anythingSlider .anythingWindow {

	border-top: 0px solid #777;

	border-bottom: 0px solid #777;

}

/* Navigation buttons, default state */

div.anythingSlider .anythingControls ul a.cur, div.anythingSlider .anythingControls ul a {

	background: #09F;

	color: #000;

	width:45px;

	height:83px;

}

/* start-stop button, stopped, default state */

div.anythingSlider .start-stop {

	background-color: #040;

	color: #fff;

}

/* start-stop button, playing, default state */

div.anythingSlider .start-stop.playing {

	background-color: #800;

}

/* start-stop button, default hovered text color (when visible) */

div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {

	color: #ddd;

}



/**** Active State (slider has keyboard focus) ****/

/* slider window - top & bottom borders, active state */

div.anythingSlider.activeSlider .anythingWindow {

	border:solid 0px #484848 ;

	

}

/* Navigation buttons, active state */

div.anythingSlider.activeSlider .anythingControls ul a.cur, div.anythingSlider.activeSlider .anythingControls ul a {

	width:45px; height:83px;

	background:url(../image/hover.png) no-repeat;

	

}

div.anythingSlider.activeSlider .anythingControls ul a

{

	width:45px; height:83px;

	background:url(../image/bg_slide.png) no-repeat;

	

}



/* start-stop button, stopped, active state */

div.anythingSlider .start-stop {

	background-color: #080;

	color: #fff;

}

/* start-stop button, playing, active state */

div.anythingSlider .start-stop.playing {

	background-color: #d00;

}

/* start-stop button, active slider hovered text color (when visible) */

div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {

	color: #fff;

}



/***********************

  COMMON SLIDER STYLING

 ***********************/

/* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */

div.anythingSlider {

	display: block;

	margin: 0 auto;

	overflow: visible !important; /* needed for Opera and Safari */

	position: relative;

	

}

/* anythingSlider viewport window */

div.anythingSlider .anythingWindow {

	overflow: hidden;


	width: 705px;
	float:left;

	height: 100%;

}

/* anythingSlider base (original element) */

.anythingBase {

	background: transparent;

	list-style: none;

	position: absolute;

	overflow: visible !important;

	top: 0;

	left: 0;

	margin: 0;

	padding: 0;
	/* Van Pham*/
	width:710px;
	height:130px;
	/* Van Pham*/

}

/* all panels inside the slider */

.anythingBase .panel {

	background: transparent;

	display: block;

	overflow: hidden;

	float: left;

	padding: 0;

	margin: 0;

}

.anythingBase .panel.vertical {

	float: none;

}



/* Navigation Arrows */

div.anythingSlider .arrow {

	margin-top:-20px;

	position: absolute;

	display: block;

	z-index:10;

	width:45px;

	height:83px;

	margin-left:597px;

}

.thumbNav li a

{

	color:#C33;

}

div.anythingSlider .arrow a {

	display: block;

	height: 83px;

	padding: 0px 0 0 0; /* half height of image */

	width: 45px;

	text-align: center;

	outline: 0;

	background: url(../image/bgarrow.png) no-repeat;

}

/* hide text, target the span so IE7 doesn't text-indent the link */

div.anythingSlider .arrow a span { display: block; visibility: hidden; }

/* back arrow */

div.anythingSlider .back { left: 0; }

div.anythingSlider .back a { background-position: top left; }

div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-position: }

div.anythingSlider .back.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */

/* forward arrow */

div.anythingSlider .forward { right: 0;  margin-right:2px;}

div.anythingSlider .forward a { background-position: right top;  }

div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position:  }

div.anythingSlider .forward.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */



/* Navigation Links */

div.anythingSlider .anythingControls { outline: 0; display: none; }

div.anythingSlider .anythingControls ul {margin-top:-20px; z-index:10; position:absolute; right:0; margin-right:47px; }

div.anythingSlider .anythingControls ul li { display: inline; }

div.anythingSlider .anythingControls ul a {

	display: inline-block;

	text-decoration: none;

	padding-top:10px;

	height: 18px;

	margin: 0 5px 0 0;

	background-image: url(../image/default.png);

	background-position: center -288px ;

	background-repeat: repeat-x;

	text-align: center;

	outline: 0;

	border-radius: 0 0 5px 5px;

	-moz-border-radius: 0 0 5px 5px;

	-webkit-border-radius: 0 0 5px 5px;

	

}

div.anythingSlider .anythingControls ul a:hover {

	background:url(../image/hover.png) no-repeat;

	

}





/* Navigation size window */

div.anythingSlider .anythingControls .anythingNavWindow { overflow: hidden; float: left; }



/* slider autoplay right-to-left, reverse order of nav links to look better */

div.anythingSlider.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */

div.anythingSlider.rtl .anythingControls ul { float: left; }    /* move nav link group to left */

div.anythingSlider.rtl .anythingWindow {

	direction: ltr;

	unicode-bidi: bidi-override;

}

/* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */



/* Autoplay Start/Stop button */

div.anythingSlider .start-stop {

	background-image: url(../image/default.png);

	background-position: center -288px;

	background-repeat: repeat-x;

	padding: 2px 5px;

	width: 40px;

	text-align: center;

	text-decoration: none;

	float: right;

	z-index: 100;

	outline: 0;

	border-radius: 0 0 5px 5px;

	-moz-border-radius: 0 0 5px 5px;

	-webkit-border-radius: 0 0 5px 5px;

}

/* hide cell shading on hover - makes the button appear to come forward */

div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { background-image: none; }



/* probably not necessary, but added just in case */

div.anythingSlider, div.anythingSlider .anythingWindow, div.anythingSlider .anythingControls ul a, div.anythingSlider .arrow a, div.anythingSlider .start-stop {

	

}