

	.album-tiles-main {
	  margin: 0;
	  position: relative;
	}
	.album-tiles-main-desktop {
	  margin-left:-10px;
	  margin-top:10px;
	}
	.album-tiles-main-mobile {
	  margin-left:-10px;
	}
	.album-tiles {
	  list-style-type: none;
	  position: relative; /** Needed to ensure items are laid out relative to this container **/
	  margin: 0;
	  padding: 0;
	}
	.album-tiles li {
	  width: 120px;
	  background-color: #ffffff;
	  border: 1px solid #dedede;
			  border-radius: 2px;
		 -moz-border-radius: 2px;
	  -webkit-border-radius: 2px;
	  display: none; /** Hide items initially to avoid a flicker effect **/
	  cursor: pointer;
	  padding: 4px;
	}
	.album-tiles-desktop li:hover {
		background-color:#333;
	}
	.album-tiles li.inactive {
	  visibility: hidden;
	  opacity: 0;
	}
	.album-tiles li a {
		text-decoration:none;
	}
	.album-tiles li a p {
		display:none; 
		margin:0;
		text-decoration:none;
	}
	.album-tiles-desktop li a:hover p {
		display:block; 
		text-align:center;
		text-decoration:none;
		padding-top:5px;
		padding-bottom:5px;
		font-size:9px;
		line-height:12px;
		color:#fff;
		overflow:hidden;
	}
	.album-tiles li img {
	  display: block;
	}
	
	/**
	 * Grid item text
	#tiles li p {
	  color: #666;
	  font-size: 12px;
	  margin: 7px 0 0 7px;
	}
	 */
	
	/**
	 * Placerholder css
	 */
	.wookmark-placeholder {
			  border-radius: 2px;
		 -moz-border-radius: 2px;
	  -webkit-border-radius: 2px;
	  background-color: #eee;
	  border: 1px solid #dedede;
	  z-index: -1;
	}