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

.slider			{
				width:60px;
				height:27px;
				overflow:hidden;
				position:absolute;
				top:10px;
				right:15px;
				}
				
.prev,
.next			{
				width:27px;
				height:27px;
				overflow:hidden;
				outline:none;
				cursor:pointer;
				margin:0 0 0 3px;
				}
				
a.prev			{float:left; background:url(../images/slider_btn.png) 0 -27px no-repeat;}
a.next			{float:right; background:url(../images/slider_btn.png) 100% -27px no-repeat;}
				
a:active.prev	{background-position:0 -27px;}
a:active.next	{background-position:100% -27px;}
				

				
a.disabled.prev, a:hover.disabled.prev{ /*Style for "disabled" previous or next link*/
				cursor:default;
				background:url(../images/slider_btn.png) 0 0 no-repeat;
				}
				
a.disabled.next, a:hover.disabled.next{ /*Style for "disabled" previous or next link*/
				cursor:default;
				background:url(../images/slider_btn.png) 100% 0 no-repeat;
				}
				
a:hover.prev, a.selected prev	{background:url(../images/slider_btn.png) 0 -27px no-repeat;}				
a:hover.next, a.selected next	{background:url(../images/slider_btn.png) 100% -27px no-repeat;}
