/*********************************************
	COLUMN LAYOUT
*/

body {
	margin: 0;
	overflow-y: hidden;
	text-align: left;
}

#page {
	padding: 120px 0 0;	
	margin: 0;
	width: 100%;
}

#header {
	margin: -120px 0 0;
}

#container {
	overflow-x: scroll;
	overflow-y: hidden;
	padding: 2000px 0 0;
}

#content {
	width: 100%;
	height: 100%;
	padding: 0 0 0 55px;
	float: none;
}

#footer {
	display: none;
}

#loader {
	position: absolute;
	top: 140px;
	left: 40px;
	width: 32px;
	height: 32px;
	background: url('../images/loading.gif') no-repeat;
}

/*********************************************
	POSTS
*/

#content.columns .post {
	float: left;
	position: relative;
	overflow: hidden;
	width: 515px;
	margin: 10px 0 30px 0;
	padding: 0 65px 0 0;
	height: 100%;
	border: none;
}

.post .entry {
	height: 50%;
	overflow: hidden;
}

.post .scroll {
	position: absolute;
	right: 40px;
	width: 17px;
	filter:alpha(opacity=25);
	-moz-opacity:0.25;
	-khtml-opacity: 0.25;
	opacity: 0.25;
}

.post:hover .scroll {
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
}

.post .scroll .track {
	background: #17171a url('../images/scroll_track_bg.gif') repeat-y;
}

.post .scroll .bot,
.post .scroll .top {
	height: 3px;
}

.post .scroll .top {
	background: url('../images/scroll_track_cap_top.gif') no-repeat;
}

.post .scroll .bot {
	background: url('../images/scroll_track_cap_bot.gif') no-repeat;
}

.post .track .handle {
	height: 60px;
	width: 13px;
	margin: 0 2px;
	background: #292930 url('../images/scroll_handle_bg.gif') no-repeat center center;
	cursor: move;
	position: relative;
}

.post .postmetadata {
	background: #111;
	padding: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 465px;
	text-align: right;
	display: none;
}

.post .postmetadata .more {
	font-size: 175%;
	float: left;
	border: none;
	outline: none;
}

.post .postmetadata .more:hover {
	background:#080808;
}

/*********************************************
	TWEETS
*/

.post.tweet {
	background:url('../images/twitter.gif') no-repeat top left;
}

.post.tweet .entry {
	margin: 30px 0 0;
	height: auto;
}

.post.tweet .entry h2 {
	font-size: 400%;
	letter-spacing: -3px;
}

.post.tweet .entry small {
	color: #444;
	display: block;
	margin: 5px 0;
}

/*********************************************
	PHOTOS
*/

.post .image {
	height: 100%;
	overflow: hidden;
	position: relative;
}

.post .image img {
	height: 100%;
	float: left;
}

.post .image .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #000;
	padding: 2px 5px;
	width: 100%;
	opacity: 0.85;
	color: #fff;
	font-size: 90%;
}

.post .image .caption .name,
.post .image .caption .title,
.post .image .caption .date {
	margin: 0 5px 0 0;
}

.post .image .caption .title,
.post .image .caption .date {
	color: #666;
	border-left: solid 1px #333;
	padding: 0 0 0 7px;
}

.post .image .caption .url {
	float: right;
	margin: 0 10px 0 0;
}

.post .image .caption a {
	border: none;
}

.post .image .caption a:hover {
	color: #fff;
}