/*Plugin Name: Responsive Tile Gallery
Author: Andrew Mead
Date: 10/17/2012*/

/*Start theme customizatoin*/

.rtg-current-category {/*Color for the current category*/
    background-color: #B80209 !important;/*Fort for the current category*/
    color: #F8F8F8;
}

.rtg-categories > li > a {/*Color for the categories*//*Font color for the categories*/
    color:white;
}

/*End of theme customization*/

/*EDIT PAST THIS LINE AT YOUR OWN RISK!*/
/*Category style*/
.rtg-categories {
    padding: 10px 0 0 0;
    list-style-type:none;
    display: block;
    float: left;
    clear: both;
    position: relative;
    margin: 0 0 15px;
}
.rtg-categories > li {
    display: table;
    float: left;
    margin: 5px;
    height: auto;
    padding: 5px 5px;
    overflow: hidden;
    background-color: #1C9BD7;
    border-bottom: 4px solid #024C6F;
    text-align: center;
    text-transform: uppercase;
}
.rtg-categories > li > a {
    text-decoration:none;
    font-family:arial, sans-serif;
    font-weight:300;
    font-size:13px;
}

/*Image style*/
.rtg-images {
    position:relative;
    display: block;
    clear: both;
}
.rtg-images > div {
    width:800px;
    height:565px;
    position:absolute;
    /*top:0px;
    left:0px;*/
    background-color: #FFF;
    visibility:hidden;
}
.rtg-images > div > span {
	position:absolute;
	top:0;
	left:0;
	border-radius: 5px;
	width:800px;
	height:565px;
	background-color: rgba(5, 5, 5, 0.95);
	z-index:2;
	opacity:1;
	background-image:url('../gallery_plugins/images/plus.png');
	background-repeat:no-repeat;
	background-position:center;
}
.rtg-images > div > a > img {
    /* border:none; */
    opacity:1;
    position:absolute;
    z-index:3;
    background-color: #FFF;
}