body { margin: 0; padding: 0; background-color: #f1f0d9; font-size: 100%; }

.nav { position: relative; width: auto; z-index: 20; font-family: Georgia, "Times New Roman", Times, serif; }

.container { margin: 0; padding: 0; border-right: 1px #bbb solid; border-bottom: 1px #bbb solid; background-color: #e3e1bf; list-style: none; width: 350px; height: 600px; position: absolute; top: 0; left: 0; -moz-border-radius-bottomright: 25px; border-bottom-right-radius: 25px; }

.container li { margin: 20px auto; width: 300px; background-color: #fff; float: right; }

.container li a
{ 
	display: block;
	width: 280px;
	padding: 0px 10px;
	text-align: right;
	text-decoration: none;
	z-index: 21;
	border-right: 1px #bbb solid;
	background: rgba(255,255,255, 0.8);
	line-height: 0.75;
}

.container li:hover a { background: rgba(210,237,255, 0.5); }

.container li a span { display: block; padding: 10px; }

.container li a span:first-child { font-weight: 700; font-size: 1em; color: #40341b; padding-top: 10px; }

.container li a span:nth-child(2){
	font-weight: 400;
	font-style: italic;
	font-size: 2em;
	color: #930;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.container li:nth-child(1):hover span:nth-child(2) { color: #e7685e; }

.container li:nth-child(2):hover span:nth-child(2) { color: #edc93e; }

.container li:nth-child(3):hover span:nth-child(2) { color: #5aa2bc; }

.container li:nth-child(4):hover span:nth-child(2) { color: #a9ca4a; }

.container li img {
    position: absolute;
	left: -500px;
	top: 0;
	opacity: 0;
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-moz-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-o-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-ms-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	z-index: -20;
}

.container li:hover img { position: absolute; left: 280px; top: 0; opacity: 1; }