@charset "utf-8";
/* CSS Document */

.imageClicker1{
	text-align:left;
	cursor:pointer;
	font: 700 16px/16px 'Roboto Condensed',sans-serif;
    color:#FFFFFF;
    opacity: 1;
    padding: 6px;
	padding-right:10px;
    background: none repeat scroll 0 0 #323D5A;
    moz-border-radius: 3px;
    -webkit-border-radius: 3px;
	border-radius: 3px;
    border: 3px solid #323D5A;
	position:relative;
	margin: 0 auto;
	width:200px;
  
	-webkit-box-shadow: 2px 2px 3px rgba(100, 100, 100, 0.29);
	-moz-box-shadow:    2px 2px 3px rgba(100, 100, 100, 0.29);
	box-shadow:         2px 2px 3px rgba(100, 100, 100, 0.29); 
	display:inline-block;   
	-webkit-transition: all .6s ease; /* Safari and Chrome */
    -moz-transition: all .6s ease; /* Firefox */
    -ms-transition: all .6s ease; /* IE 9 */
    -o-transition: all .6s ease; /* Opera */
    transition: all .6s ease;
}

.imageClickerOuter1{
	position:relative;
	margin: 0 auto;
	width:200px;
	display:inline-block;  
}

.imageClicker1.expanded{
	width:calc(100% - 20px);
	max-width:1200px;
	background: none repeat scroll 0 0 #e4e4e4;
	border: 3px solid #e4e4e4;
}

.imageClickerOuter1.expanded{
	width:100%;
	height:703px;
	max-width:1200px;
}

.imageClickerOuter1.done{
	height:100%;
}

.imageClicker1 img{
	width:100%;
	-webkit-transition: all .6s ease; /* Safari and Chrome */
    -moz-transition: all .6s ease; /* Firefox */
    -ms-transition: all .6s ease; /* IE 9 */
    -o-transition: all .6s ease; /* Opera */
    transition: all .6s ease;
}

.imageClicker1.expanded img{
	max-width:100%;
}

.imageClicker1Image{
	position:relative;
	left:0px;
}

.contentDisplay1{
	color:#fff;
	display:none;
	visibility:hidden;
	opacity:0;
	-webkit-transition: all .6s ease; /* Safari and Chrome */
    -moz-transition: all .6s ease; /* Firefox */
    -ms-transition: all .6s ease; /* IE 9 */
    -o-transition: all .6s ease; /* Opera */
    transition: all .6s ease;
}

.contentDisplay1.expanded{
	display:block;
	background-color:#30374B;
	visibility:visible;
	padding:20px;
	display:block;
	opacity:1;
}

.contentDisplay1TitleText{
	font: 700 20px/20px 'Roboto',sans-serif;
}

.contentDisplay1Content{
	font: 15px "Istok Web","Trebuchet MS",serif;
}