html, body {
	font-family: Verdana, Geneva, sans-serif;
	width: 100%;
	height: 99.5%;
	margin: 0;
	padding: 0;
	min-height: 350px;
}

#container {
	white-space: nowrap;
	width: 800px;
	max-width: 800px;
	height: 100%;
	margin: 0 auto;
	display: block;
	overflow: visible;
}

.column {
	white-space: normal;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 10%;
	height: 100%;
	margin: 0;
	padding-left: 30px;
	padding-top: 100px;
	border: 3px solid white;
	overflow: hidden;
	-moz-transition-property: width;
	-webkit-transition-property: width;
	-ms-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
	cursor: pointer; 
	cursor: hand;
}

.column, .title {
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease;
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: ease;
	-o-transition-duration: 0.5s;
	-o-transition-timing-function: ease;
	transition-duration: 0.5s;
	transition-timing-function: ease;
}

ul {
	list-style-type: square;
	list-style-position: inside;
}

ul.no-listing {
	list-style-type: none;
}

li {
	margin-bottom: 0.25em;
}

.text-box {
	display: block;
	color: white;
	font-size: 1.25em;
	font-weight: bold;
	height: 200px;
	width: 475px;
	margin-top: 25px;
	margin-left: 25px;
	line-height: 1.25em;
}

.column.selected {
	width: 69%;
	cursor: default;
}

.title {
	font-weight: bold; 
	font-size: 1.5em; 
	background-color: white;
	position: absolute;
	right: -0.75em;
	padding: 0.1em 0.5em;
	-moz-transition-property: right;
	-webkit-transition-property: right;
	-ms-transition-property: right;
	-o-transition-property: right;
	transition-property: right;
}

a {
	color: inherit;
}

.text-image {
	width: auto;
	height: 1.2em;
	display: inline-block;
	text-decoration: none;
	border: none;
	outline: none;
	margin-right: 5px;
	vertical-align: middle;
}

.selected .title {
	right: 25px;
}

.red {
	background-color: #f22;
}

.green {
	background-color: #282;
}

.blue {
	background-color: #28f;
}

.orange {
	background-color: #f82;
}

.red .title {
	color: #f22;
}

.green .title {
	color: #282;
}

.blue .title {
	color: #28f;
}

.orange .title {
	color: #f82;
}