/* Simple Reset */

* {
	padding: 0;
	margin: 0;
}

body{ font-family:Tahoma;
font-size:12px;
}


#read {
	height: 35px; width: 100px;
    overflow: hidden;
	float: right;
    margin: 10px 0;
	line-height:23px;
    text-align: center;
}

#read ul li {
	float: left;
	margin: 0 5px;
	list-style-type: none;
}

/* Menu Link Styles */
#read ul a {
	display: block;
	background: #e70f23; 
	color: #fff;
	height: 60px; 
	width: 100px;
	 margin: 10px 0;
	text-decoration: none;
	-webkit-transition: margin .2px ease-in-out;
	-moz-transition: margin .2px ease-in-out;
	-o-transition: margin .2px ease-in-out;
	-ms-transition: margin .2px ease-in-out;
	transition: margin .2px ease-in-out;
}

/* Secondary Link Styles */
#read ul a:nth-of-type(even) {
	background: #555555;
	color: white;
}

/* Hover Slide */
#read ul li:hover :first-child {
	margin-top: -60px;
}