@charset "utf-8";
/* Plug ins */


/* tooltip styling */ 
.tooltip { 
    display:none; 
    background:url(../images/white_big.png); 
    height:140px; 
    padding:40px 30px 10px 30px; 
    width:310px; 
    font-size:11px; 
    color:#000; 
} 

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 338px;
	height:100px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 4px 0px 2px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(../images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 			{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
/* styling for the image wrapper  */
#image_wrap {
	/* dimensions */
	width:500px;
	margin:20px 0;
	padding:2px 0;

	/* centered */
	text-align:center;
	

	cursor:pointer;
}

/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:100000000 !important;
	background:#FFF;
    border:1px solid #666;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 

.about-mike {
	width:600px;
	height:450px;
	overflow:auto;
	margin-top:20px;
}
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../images/close.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px;
	z-index:10001
}

#flickr-sets-list ul {
	line-height:1.6em;
	list-style:none;

}

#clients {
	font-size:0.75em;
	line-height:1.6em;
	overflow:auto;
	height:350px;
	margin:0px;
}


#flickr-sets-list ul li a {
	color:#505050;
	font-weight:normal;
	font-size:0.85em;
}

#flickr-sets-list ul li a:hover {
	color:#560f13;
}

#flickr img {
	margin:5px;
	padding:2px;
	border:1px solid #333;
	outline:none;
	moz-outline:none;

