@CHARSET "UTF-8";

div.result-info {
	margin: 1em;
}

div.result-info p {
	margin: 0;
	text-align: center;
}

div.result-info .score {
	font-size: 1.5em;
	font-weight: bold;
}

div.result-info .score-value {
	color: green;
	font-size: 2em;
}

div.result-info .memo {
	font-size: .8em;
	color: green;
}

.residue-correspondence-container {
	margin: 1.5em 1em 1.5em 1em;
}

.residue-correspondence {
	border: 2px solid white;
	border-radius: 5px;
	cursor: hand;
	float: left;
	margin: 0;
	padding: 1em 1em 1em 1em;
	width: 3em;
	
	-webkit-transition: border .5s;
	-moz-transition: border .5s;
	-o-transition: border .5s;
	-ms-transition: border .5s;
	transition: border 1s;
}

.residue-correspondence:HOVER {
	border: 2px solid red;
}

.residue-correspondence.selected {
	border: 2px solid red;
	box-shadow: 2px 2px 5px #444;
}

.residue-correspondence .correspondence-link {
	margin: .2em 0;
	text-align: center;
}

.ref-residue, .fit-residue {
	background-color: rgb(177, 106, 123);
	border: 1px solid rgb(120, 0, 30);
	border-radius: 4px;
	box-shadow: 2px 2px 5px #444;
	color: white;
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 0 0 15px 0;
	text-shadow: .1em -.1em 0 rgba(0, 0, 0, 0.25);
	
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.ref-residue {
	background-image: -webkit-linear-gradient(top, #7FAADF, #385E8E);
	background-image: -moz-linear-gradient(top, #7FAADF, #385E8E);
	background-image: -o-linear-gradient(top, #7FAADF, #385E8E);
	background-image: -ms-linear-gradient(top, #7FAADF, #385E8E);
	background-image: linear-gradient(top, #7FAADF, #385E8E);
}

.fit-residue {
	background-image: -webkit-linear-gradient(top, #EE5F5B, #BD362F);
	background-image: -moz-linear-gradient(top, #EE5F5B, #BD362F);
	background-image: -o-linear-gradient(top, #EE5F5B, #BD362F);
	background-image: -ms-linear-gradient(top, #EE5F5B, #BD362F);
	background-image: linear-gradient(top, #EE5F5B, #BD362F);
}

.ref-residue p, .fit-residue p {
	margin: 0;
	text-align: center;
}