
/* CONTENEDOR SLIDER */

#ultimos_trabajos 
{
    width: 658px;
    margin: 0 auto;
	padding: 1px;
    position: relative;
	clear: both;
}

	/* BOTONES */
	
	.scrollButtons 
	{
		position: absolute;
		top: 140px;
		cursor: pointer;
	}
	
	.scrollButtons.left 
	{
		left: -25px;
	}
	
	.scrollButtons.right 
	{
		right: -25px;
	}
	
	/* SLIDER */
	
	.scroll 
	{
		overflow: hidden;
		width: 658px;
		height: 283px;
		margin: 0 auto;
		position: relative;
	}

		.scrollContainer 
		{
			position: relative;
		}
		
		/* PANEL */
		
		.scrollContainer div.panel 
		{
			
			width: 274px;
			height: 283px;
			padding: 0 10px;
		}
			
			/* TEXTO */
			
			.inside 
			{
				background: #EEE;
				padding: 10px;
				cursor: pointer;
				-moz-box-shadow: 1px 1px 1px #DDD;
				-webkit-box-shadow: 1px 1px 1px #CCC;
			}

				.inside img 
				{
					display: block;
					margin: 0 0 10px 0;
					width: 250px;
				}
				
				.inside h3 
				{
					font: 16px Myriad Pro;
					text-shadow: 1px 1px 1px #CCC;
				}
				
				.inside p 
				{
					color: #999;
					margin-top: 5px;
					text-shadow: 1px 1px 1px #FFF;
				}
				
				.inside p a
				{
					color: #666;
					font: bold 11px Arial;
					padding: 3px;
					text-shadow: 1px 1px 1px #CCC;
				}
				
				.inside p a:hover
				{
					text-decoration: underline;
				}

	.hide 
	{
		display: none;
	}
