/*
 *  Browser for Meydenberg's Flickr stream
 */

.flickr {
	position: relative;
	width: 600px;
}

/* Navigation */

.flickr .navigation {
	position: absolute;
	left: 0;
	top: 0;
	width: 600px;
	height: 60px;
}

.flickr .navigation button {
	color: #919191;
	background: #fffefe;
	border: 1px solid #515151;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: helvetica, arial, sans-serif;
	font-size: 10px;
	line-height: 10px;
	width: 21px;
	height: 21px;
}

.flickr .navigation .previous {
	position: absolute;
	left: 0;
	bottom: 0;
}

.flickr .navigation .next {
	position: absolute;
	right: 0;
	bottom: 0;
}

/* Photo */

.flickr .photo {
	margin-left: 50px;
	text-align: center;
	width: 500px;
}

.flickr .photo img {
}

.flickr .photo h2 {
	color: #888;
	font-family: helvetica, arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
}

/* Loader */

.flickr .loader {
	position: absolute;
	left: 50px;
	top: 0;
	background: url('/flickr/loader.gif') no-repeat center;
	width: 500px;
	height: 100%;
}

.flickr .loader.hidden {
	display: none;
}

