@CHARSET "UTF-8";

form input {
	border: 1px solid #7FAADF;
	border-radius: .3em;
	box-shadow: 0 0 .6em #666;
	padding: .3em 0 .3em 1em;
}

form select {
	border: 1px solid #7FAADF;
	border-radius: .3em;
	box-shadow: 0 0 .5em #888;
	padding: .3em .2em;
}

div.panel table.form {
	display: block;
	margin: 5px auto;
	table-layout: fixed;
	width: 800px;
}

div.panel table.form td {
	vertical-align: middle;
}

div.panel table.form td.label {
	line-height: 2em;
	padding: 0 .5em 0 0;
	text-align: right;
}

div.panel table.form td.column-1 {
	width: 400px;
}

div.panel table.form td.column-2 {
	width: 400px;
}

form label {
	font-weight: bold;
}

form .field-instruction {
	font-size: .7em;
}

form .field-instruction.essential {
	color: blue;
}

form .field-instruction.optional {
	color: green;
}

form .field-memo {
	font-size: .8em;
	margin: 0;
}

form .field-memo.essential {
	color: blue;
}

form .field-memo.optional {
	color: green;
}

div.panel p.error {
	color: red;
	font-weight: bold;
	margin: 0 0;
	text-align: center;
}

.jmol-panel.ref.fixed {
	position: fixed;
	top: 30%;
	left: 0;
}

.jmol-panel.fit.fixed {
	position: fixed;
	top: 30%;
	right: 0;
}

.jmol-panel .button-pin {
	cursor: pointer;
}

.jmol-panel .button-pin:BEFORE {
	content: "- ";
}

.jmol-panel .button-pin:HOVER {
}

.jmol-panel .button-pin.selected {
}

.jmol-panel .button-pin.selected:BEFORE {
	content: "+ ";
}

.sequence-panel p {
	text-align: center;
	color: blue;
}

.sequence-container .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;
	float: left;
	margin: 0 5px 10px 0;
	padding: 0 0 15px 0;
	text-shadow: .1em -.1em 0 rgba(0, 0, 0, 0.25);
	width: 3em;
	
	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);
	
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.sequence-container .residue p {
	color: white;
}

.sequence-container .residue.selected {
	background-color: black;
	
	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);
}

.sequence-container .residue:HOVER {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}

.sequence-container .residue p {
	margin: 0;
	text-align: center;
}