@charset "utf-8";
/* CSS Document */


.row.thumbnailGallery {
	margin-left: 15px;	
	margin-right: 15px;
}

.thumb{
    height:auto; 
	
    background:#E6E6E6;/*gray background behind thumb*/
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0px;
    line-height: 20px;
    border: 1px solid #ddd;
    webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}



/* new attempt */
.thumb .captionText{
	/*padding: 9px 9px 9px 9px;*/
    opacity:0;
    -moz-opacity: 0.5;
    display: block;
    position: absolute;
	z-index: 2;
    /*top: 240px;
    left: 0px;*/
    /*background: rgba(0,0,0,0.4);*/
    /*width: 100%;
    height: 100%;*/
	
	/* these bottom six properties are important for positioning the hoverboard */
	top: 0px;
	left: 0px;
	height:auto;
	bottom: 50%;
	
	transform: translate(0%, 100%);
	/* */
	
	
	text-align: left;
	
	background: #fff;
	background-image:url(../img/plusSignMinix.png);
	background-repeat: no-repeat;
	background-position: 95% 12%;
    
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.captionText h4{
	color: #ff9307 !important;
	font-size: 26px; 
	margin: 15% 2% 0% 2%;
	padding: 0% 0% 0% 0%;
}
.captionText p{
	color: #858482 !important;
	font-size: 16px;	
	margin: 0% 2% 2% 2%;
	padding: 0% 0% 10% 0%;
}



.second-container{
    margin-top: 20px;
}


.welcomeRow{
	margin-bottom: 40px;	
}

/*responsive thumbnail images upon resizing window*/

img.imgscaling{
	max-width: 100%;
	height: auto;	
}




