/* Flickr Photo Browser items */

.albumlist {
	float: left;
	margin-top: 10px;
	padding: 5px;
	text-align: center;
	width: 130px;
	border-top: 3px solid #66c;
	border-left: 3px solid #66c;
	border-bottom: 3px solid #66c;
	font-size: 8.5pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 14px;
	color: #44c;
	background-color: #e0e0e0;
}
.albumlist hr {
	height: 1px;
	color: #66c;
	background: #66c;
	clear: both;
}

#fpbrowser {
	color: #333;
	position: relative;
	margin-left: 0px;	/* to abut the album selector */
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	width: 470px;
	height: auto; /*330px;*/
	background-color: #e0e0e0;
	border: 3px solid #66c;
}

#fpbrowser .hasloading {
	/* this is the (small) loading image shown while thumbnails load */
	background: url('loader.gif') no-repeat center;
}

#fpbrowser .noloading {
	background: #e0e0e0;
}

#fpbrowser .hidden {
	visibility: hidden;	/* IE6 bug! Image object size info is not updated on display:none images */
	/*display: none;*/	/* so use visibility:hidden instead.*/
}

#fpbrowser .visible {
	visibility: visible;
	/*display: visible;*/
}

#fpbrowser a:link,
#fpbrowser a:visited,
#fpbrowser a:active {
	color: #44c;
	text-decoration: none;
}

#fpbrowser a:hover {
	text-decoration: none;
	font-weight: bold;
}

#fpbrowser .albumTitle {
	font-size: 12px;
	color: #44c;
	font-weight: bold;
	text-align: center;
	width: 100%;
	height:18px;
	line-height: 18px;
	/* display: none; */
	/*border: 1px solid #fff;*/
	border-bottom: 2px ridge #66c;
}

#fpbrowser .photoTitle {
	position: relative;
	clear: both;
	text-align: center;
	font-size: 10px;
	width: 145px;
	height: 15px;
	line-height: 15px;
	overflow: hidden;
	/*border: 1px solid green;*/
}

#fpbrowser .photoBox {			/* simple fixed-size container for the image  */
	position: relative;			/* vertical and horizontal centering is done  */
	width: 145px;				/* in the image onload handler.  I have found */
	height: 110px;				/* no other reliable, cross-browser css way to*/
	/*border: 1px solid red;*/	/* center an image in a div consistently.     */
}

#fpbrowser img {
	position:relative;
	border: 1px solid #66c;
	background-color: #e0e0e0;
}

#fpbrowser .spacer {				/* decided to use <hr> instead */
	position: relative;
	clear: both;
	width: 100%;
	/*height: 1px;*/
	border-bottom: 1px solid #66c;
	/*display: none;*/
}

#fpbrowser hr {
	height: 1px;
	color: #66c;
	background: #66c;
	clear: both;
}

#fpbrowser .separator {
	border-right: 1px solid #66c;
}

#fpbrowser .albumNav {
	position: relative;
	clear: both;
	text-align: center;
	padding-top: 2px;
	width:100%;
	height:18px;
	font-size: 8pt;
	line-height: 18px;
	/*border: 1px solid #0f0;*/
	border-top: 2px ridge #66c;
}

.fpbrowser-drag {
	cursor:move;
}

#fpbrowser-detailFrame {
    position: absolute;
    text-align: left;
	min-width: 250px;
    border: 2px solid #66c;
    background-color: #e0e0e0;
    display: none;
z-index:999;
}

#fpbrowser-detailTitle {
	text-align: center;
	padding: 5px;
	font-family: verdana;
    font-size: 9pt;
    font-weight: bold;
    color: black;
	overflow: hidden;
    /*border: 1px solid red;*/
}
#fpbrowser-detailPic {
	text-align: center;
	padding: 5px;
	/*border: 1px solid green;*/
}
#fpbrowser-detailPic img {
	border: 1px solid #66c;
	background-color: #e0e0e0;
}

#fpbrowser-detailNav {
	text-align: left;
    text-decoration: none;
	font-family: verdana;
    font-size: 8pt;
    font-weight: bold;
    color: #44c;
    padding: 1px;
    /*border: 1px solid red;*/
}

#fpbrowser-detailNav img,
#fpbrowser-detailNav a:link,
#fpbrowser-detailNav a:visited,
#fpbrowser-detailNav a:hover,
#fpbrowser-detailNav a:active,
#fpbrowser-detailNav a:focus
{
	padding-top: 4px;
	padding-left: 2px;
	border: 0 none;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	-moz-outline-style: none;
}

/* classes for declaring the nav icon images here in the css */
/* rather than as <img> tags directly in the (emitted) html */
#fpbrowser-detailNav .leftNav {
	position: relative;
	float: left;
	clear: none;
	width: 20px;
	height: 20px;
	background: url('left.gif') no-repeat center;
}

#fpbrowser-detailNav .rightNav {
	position: relative;
	float: left;
	clear: none;
	width: 20px;
	height: 20px;
	background: url('right.gif') no-repeat center;
}

#fpbrowser-detailClose {
	text-align: right;
    text-decoration: none;
	font-family: verdana;
    font-size: 8pt;
    font-weight: bold;
    color: #44c;
    padding: 1px;
    /*border: 1px solid red;*/
}

#fpbrowser-detailClose img,
#fpbrowser-detailClose a:link,
#fpbrowser-detailClose a:visited,
#fpbrowser-detailClose a:hover,
#fpbrowser-detailClose a:active,
#fpbrowser-detailClose a:focus
{
	padding-top: 4px;
	padding-right: 2px;
	border: 0 none;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	-moz-outline-style: none;
}

/* classes for declaring the nav icon images here in the css */
/* rather than as <img> tags directly in the (emitted) html */
#fpbrowser-detailClose .closeWin {
	position: relative;
	float: right;
	clear: none;
	width: 20px;
	height: 20px;
	background: url('close2.gif') no-repeat 0px 3px;
}

#fpbrowser-detailClose .zoomFlickr {
	position: relative;
	float: right;
	clear: none;
	width: 20px;
	height: 20px;
	background: url('zoom.gif') no-repeat 0px 3px;
}
