/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
 
textarea.ktzsoc-textarea-admin {
    width:80%;
	height:300px;
}

label.ktzsoc-radioimage-admin > input{ /* HIDE RADIO */
	display:none;
}
label.ktzsoc-radioimage-admin > input + img{ /* IMAGE STYLES */
	cursor:pointer;
	border:2px solid #efefef;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
label.ktzsoc-radioimage-admin > input:checked + img,
label.ktzsoc-radioimage-admin > input + img:hover{ /* (CHECKED) IMAGE STYLES */
	border:2px solid #999;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
}