/** 
 * Flickr Photosets
 *
 * @author      Mickael BLATIERE
 * @license     http://www.opensource.org/licenses/mit-license.php - Licensed under The MIT License
 * @link        http://github.com/blat/jquery-flickr-plugin
 */

ul#flickr {
    padding: 0;
    margin: 0 auto;
}

ul#flickr li {
    list-style: none;
    display: block;
    float: left;
    margin: 0;
    padding: 5px 5px 0px 0px;
}

ul#flickr li a {
    display: block;
    height: 150px;
    padding: 0;
    width: 150px;
    position: relative;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}

ul#flickr li a span {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px;
    width: 140px;
    color: #fff;
    font-family: arial, sans-serif;
    text-align: right;
    height: 140px;
    font-size: 15px;
    background: #000;
}

ul#flickr li a.normal span {
    display: none;
}

ul#flickr li a.normal:hover span {
    display: block;
}

ul#flickr li a.small {

    width: 80px;
    height: 80px;
	-webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  	-moz-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  	transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	border:1px solid transparent;

}

ul#flickr li a.small:hover {
   -webkit-transform: scale(1.05);
	-moz-transform:scale(1.05);
	transform: scale(1.05);
    z-index: 2;
}

ul#flickr li a.small span {
    display: none;
}

ul#flickr li a.large {
    width: 300px;
    height: 300px;
}

ul#flickr li a.large span {
    height: auto;
    width: 290px;
    text-transform: uppercase;
    opacity: 0.8;
}

