div.floated {
	width: 400px;
	float: left;
	margin-left: 1em;
}

div#myElement {
	width: 100px;
	height: 100px;
	border: 1px solid black;
	background-color: #f9f9f9;
	float: left;
}

div#myOtherElement {
	width: 382px;
	height: 62px;
	overflow: hidden;
	position: relative;
	z-index: 50;

}

div#myOtherElement span, div#myOtherElement a {
	display: block;
	padding: 0 3px;
	cursor: pointer;
	height: 60px;
	position: absolute;
	width:375px;
	z-index:300;
}

div#myOtherElement a:hover {
	background: #f5f5f5;
}

