/*MAIN CONTAINER*/
.btn {
	position: relative;
	overflow: hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border: 2px solid #FFF;
		-webkit-transition: background-color 0.1s ease-out;
	-moz-transition: background-color 0.1s ease-out;
	-o-transition: background-color 0.1s ease-out;
	transition: background-color 0.1s ease-out;
	  -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.1s ease-out;
       -o-transition: all 0.1s ease-out;
      -ms-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
}
.btn:hover {
	position: relative;
	overflow: hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border: 2px solid #FFF;
		/* ie için gerekli kod */
	filter: alpha(opacity=60);
	/* CSS-3 standart kodu */
	opacity: 0.5;
	-webkit-filter: grayscale(100%);
}
/*IMGS IN CONTAINER*/
.btn img {
	display: block;
	max-width: 100%;
		border: 0px;
}
.st{
	background-color: #cdcdcd;
	text-transform: uppercase;
	text-align: center;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size: medium;
	font-weight: bold;
	color: #000;
	font-style: normal;
	width: 100%;
	z-index: 2;
	position: relative;
	top: -3px;
	border: 2px solid #cdcdcd;
	}