/*
	Mosaic - Sliding Boxes and Captions jQuery Plugin
	Version 1.0.1
	www.buildinternet.com/project/mosaic
	
	By Sam Dunn / One Mighty Roar (www.onemightyroar.com)
	Released under MIT License / GPL License
*/

/*
* {
	margin:0;
	padding:0;
	border:none;
	outline:none;
}
*/

/*General Mosaic Styles*/
.imageContainer
{
    width: 184px;
    float: left;
    position: relative;
    margin-bottom: 5px;
}
.mosaic-block
{
    float: left;
    position: relative;
    overflow: hidden;
    width: 172px;
    margin: 0px;
    background: #111 url(../img/progress.gif) no-repeat center center;
    border: 6px solid #FFD203;
}

.mosaic-backdrop
{
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: #111;
}

.story, .video, .gallery
{
    background-repeat: no-repeat;
    height: 30px;
    width: 31px;
    position: absolute;
    left: 136px;
    top: 0px;
    z-index: 10;
}

.story
{
    background-image: url(../images/career_center/icon_story.png);
}
.gallery
{
    background-image: url(../images/career_center/icon_gallery.png);
}
.video
{
    background-image: url(../images/career_center/icon_video.png);
}

.mosaic-overlay
{
    display: none;
    z-index: 5;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
}

.details
{
    margin: 5px;
}
.details h4
{
    line-height: 14px;
    color: #fff;
    text-shadow: 1px 1px 0 rgb(0,0,0);
    font-family: Verdana, Geneva, sans-serif;
    font-size: 11px;
    font-weight: bold;
}
#LeftColumn .details p
{
    color: #CCC;
    text-shadow: 1px 1px 0 rgb(0,0,0);
    font-family: Verdana, Geneva, sans-serif;
    font-size: 11px;
    line-height: 14px;
    font-weight: normal;
    padding: 0px;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}
.details a
{
    text-decoration: none;
}
#LeftColumn .details p.ctaText
{
    color: #FFD203;
}

/*** Custom Animation Styles (You can remove/add any styles below) ***/

.bar2 .mosaic-overlay
{    
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.bar2 .mosaic-overlay:hover
{
    opacity: .75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}


/*** End Animation Styles ***/