* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Georgia, serif;
	font-size: 14px;
	background: #ccc;
}

a {
	color: #c00;
}
	a:hover {
		color: #f00;
	}
	
h1,h2 {
	text-shadow: #fff 1px 1px 0;
}

	#container {
		width: 600px;
		margin: 20px auto;
	}
	
		#container .tabs {
			margin: 20px;
		}
		
		#menu_tabs {
			width: 600px;
			overflow: hidden;
			list-style: none;
		}
			#menu_tabs li {
				float: left;
				font-size: 24px;
				margin-right: 1px;
			}
				#menu_tabs a {
					display: block;
					background: #c00;
					color: #fff;
					padding: 2px 20px 2px 8px;
					text-decoration: none;
					border-top-right-radius: 20px;
					-webkit-border-top-right-radius: 20px;
					-moz-border-radius-topright: 20px;
				}
					#menu_tabs a:hover,
					#menu_tabs .selected {
						background: #f00;
					}
					
			#container .caja {
				padding: 20px;
				border: 1px solid #c00;
				background: #fff;
				border-top-right-radius: 20px;
				-webkit-border-top-right-radius: 20px;
				-moz-border-radius-topright: 20px;
			}






