/*
	A Better Blogroll
	by Chris Coyier
	http://css-tricks.com
*/


/*
	GENERIC RESET & BASIC STRUCTURE
*/
* 									{ margin: 0; padding: 0; }

a 									{ /* remove the dotted outlines when clicking tabs */ 
						  		      outline: none; text-decoration: none; }
ul 									{ list-style: none; }


/*
	WIDGET STRUCTURE
*/
#blogSliderWrap 					{ width: 320px; margin: 50px auto;
									  background: url(images/widget-bottom-bg.jpg) 7px bottom no-repeat;
									  padding-bottom: 50px; position: relative; }
#blogSlider 						{ margin-left: 15px; padding: 25px 18px 0px 18px; width: 263px;
									  background: url(images/widget-middle-bg.jpg) center center repeat-y; }
.stripViewer-slider 						{ position: relative; overflow: hidden; clear: both; }
.stripViewer-slider .panelContainer-slider 		{ position: relative; left: 0px; top: 0px; }
.stripViewer-slider .panelContainer-slider .panel { float: left; position: relative; width: 280px; }
.stripNav 							{ margin-left: 22px; position: relative; top: 18px; z-index: 99;
									  width: 285px; }
.wrapper-slider						{ padding: 10px; }
.innerWrap 							{ width: 273px; overflow: hidden; }
#push 								{ height: 35px; }


/* 
	MAIN TABBED NAVIGATION
*/
.stripNav-slider ul li 					{ float: left; }

.stripNav-slider li a 						{ /* Generic "CSS image replacement" */
									  display: block; height: 18px; text-indent: -9999px; }
/* The below class names are auto-generated by the JavaScript */
.stripNav-slider li.tab1 a { background: url(images/tab-psdtuts.jpg) top center no-repeat; width: 63px; }
.stripNav-slider li.tab2 a { background: url(images/tab-nettuts.jpg) top center no-repeat; width: 63px; }
.stripNav-slider li.tab3 a { background: url(images/tab-vectortuts.jpg) top center no-repeat; width: 85px; }
.stripNav-slider li.tab4 a { background: url(images/tab-audiotuts.jpg) top center no-repeat; width: 73px; }

.stripNav-slider li a:hover, 
.stripNav-slider li a:active, 
.stripNav-slider li a:focus 				{ /* Restore focus styling that we removed when we removed outlines */
									  background-position: top center; }

/* It is neccessary to repeat the image paths here */
.stripNav-slider li.tab1 a.current { background: url(images/tab-psdtuts.jpg) bottom center no-repeat; }
.stripNav-slider li.tab2 a.current { background: url(images/tab-nettuts.jpg) bottom center no-repeat; }
.stripNav-slider li.tab3 a.current { background: url(images/tab-vectortuts.jpg) bottom center no-repeat; }
.stripNav-slider li.tab4 a.current { background: url(images/tab-audiotuts.jpg) bottom center no-repeat; }


/* 
	SUB NAVIGATION
*/
.stripNavL-slider a, .stripNavR-slider a 			{ display: block; position: absolute; width: 75px; 
							 		  height: 22px; text-indent: -9999px; }
.stripNavL-slider a						{ bottom: 35px; left: 45px; background: url(images/previous.png); }
.stripNavR-slider a 						{ bottom: 35px; right: 45px; background: url(images/next.png);
}


/* 
	HEADLINES STYLING 
*/
.panel-slider ul 							{ width: 240px; }
.panel-slider ul li a 						{ border-bottom: 1px solid #C1B599; color: #303030;
						  		  	  display: block; padding: 7px 10px; }
.panel-slider ul li:last-child a 			{ /* Remove bottom border on last list item
	   							  	  Hooray for pseudo selectors! */
								  	  border: none; }
								  	  /* Unique rollover colors for each list */
.panel-slider ul#psd-list li a:hover 		{ background: #b20202; color: white; }
.panel-slider ul#net-list li a:hover 		{	background: #4a8c7f; color: white; }
.panel-slider ul#vector-list li a:hover 	{ background: #1f5293; color: white; }
.panel-slider ul#audio-list li a:hover 	{ background: #4f7c11; color: white; }
