/*
	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/

        Adapted by Punsset
*/

/*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID to match your slider */
#banner {
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

/***********************
  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: absolute;
        bottom: 0;
        left: 0;
}
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	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;
}
/* all panels inside the slider */
.anythingBase .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
.anythingBase .panel.vertical {
	float: none;
}

div.anythingSlider .panel *{
        width: 100%;
        height: 100%;
}

/* Navigation Links */
div.anythingSlider .thumbNav {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
div.anythingSlider .thumbNav li {
    float: left;
    display: inline;
    margin: 1px;
    width:11px;
    height:11px;
}
div.anythingSlider .thumbNav a {
	display:block;
        width: 9px;
	height: 9px;
        text-indent: -99999px;
	background: url(/images/comun/spt-anything-slider.png) no-repeat;
}

div.anythingSlider .thumbNav a.cur{
	background-position: 0 -9px;
}