*{
	margin:0;
	padding:0;
}

#vino{
	width:60%;
	
	padding:20px 20px;
	margin:auto;
}

#titulo{
	font-family:Arial;
	font-size:50px;
	width:60%;
	margin:auto;
	padding:20px 20px;
	color:#494747;
	
	
}

.banner{
	width: 950px;
	height: 300px;
	border: 1px solid black;
    margin: auto;	
	border-radius: 10px;
	
	
	background-size: 100% 100%;
	
	animation-name: banner;
	animation-duration: 40s;
	animation-iteration-count: infinite;
	
	
}

	@keyframes banner {
		0%, 10% {
				background-image: url(imagenes/1.jpg);
		}
		15%, 25%{
			background-image: url(imagenes/2.jpg);
		}
		30%, 40% {
			background-image: url(imagenes/3.jpg);
		}
		45%, 55% {
			background-image: url(imagenes/4.jpg);
		}
		60%, 70% {
			background-image: url(imagenes/5.jpg);
		}
		75%, 85% {
			background-image: url(imagenes/6.jpg);
		}
		90%, 100% {
			background-image: url(imagenes/7.jpg);
		}
	}

body{
	
	background:#F2F4F4;
	
}
header, .main, footer{
	
	width: 1000px;
	font-family:Arial;
	margin: auto;
	background-color:#fff;
	
	
}
.main {
	
	width: 1000px;
	font-family:Arial;
	margin: auto;
}
	
	header nav {
		
		background:#CFCFCF;
		
	}
	
	header nav ul {
		list-style:none;
		
	} 
	
	
	
	header nav ul li a{
		padding:10px 30px;
		display:block;
		color:black;
		text-decoration:none;
		
	}
	
	header nav ul li a:hover{
		background:#CFCFCF;
	}
	
	.nav li ul {
		
		display:none;
		position:absolute;
		min-width:140px;
	}
	
	.nav li:hover > ul {
		display:block; 
	}
	
	
	.nav > li {
		
		Float:Left;
	}
	
	.main .articles {
		width:60%;
		margin-right:1.5%;
		float:right;
		
	}
	
	.main .articles article{
		padding:20px;
		
		margin-bottom:20px;
	}
	
	aside{
		
		height:200px;
		float:left;
		padding:20px;
		
		
	}
	
	
	
	footer{
		width:600px;
		background:#000;
		color:#fff;
		clear:both;
		padding:10px 0px;
		text-align:center;
	}