html,body,form,h1,h2,h3,h4 {
	padding: 0;
	margin: 0;
	border: 0;
}
html {
	background: white;
}
body {
	width: 100%;
	/*overflow: hidden;*/
	font: normal 16px "Open Sans", sans-serif;
	color: black;
}
h1,h2,h3,h4 {
	font-weight: normal;
	display: inline-block;
	height: auto;
	font-size: 100%;
}
h1 {
	font-size: 150%;
}
h2,h3,h4 {
	font-weight: bold;
}
h2 {
	font-size: 130%;
}

form {
	display: inline-block;
	width: auto;
}
.error {
	color: black;
	background: yellow;
	font-weight: bold;
}
button {
	font-size: 100%;
	margin: 2px;
}
input, select {
	width: 100%; /* expected to be in a table! */
	box-sizing: border-box;
	font-size: 100%;
	border: 4px solid transparent;
	padding: 6px;
	outline: none;
	background: white;
	margin: 0;
}
input.inline, select.inline {
	width: auto; /* natural width, but you have to ask for it */
	border: 4px solid #eee;
}
input:focus, select:focus {
	border-color: rgb(255, 221, 34);
}

label {
	display: inline-block;
}
a, a:visited {
	text-decoration: none;
	color: #36f;
}
a:hover, a:active {
	background: rgba(0,0,0, 0.1);
}
.action_links a {
	margin-left: 1.5em;
}
.action_links a:first-of-type {
	margin-left: 0;
}
.buttons a {
	margin-left: 0.5em;
	padding: 0.25em 0.5em;
	/*background-color: #f50;*/
	background-color: #f99;
	color: white;
	border-radius: 0.3em;
	cursor: pointer;
	text-decoration: none;
}
.buttons a:first-child {
	margin-left: 0;
}
.righthand {
	text-align: right;
}
button[type="submit"] {
	/*background-color: #f50;*/
	background-color: #f99;
	color: white;
	font: bold 100% "Open Sans", sans-serif;
	padding: 0.33em 0.66em;
	border: 0 none;
	border-radius: .5em;
	cursor: pointer;
}
blockquote {
	margin: 1em;
	padding: 0;
	border: 0;
}

.content {
	/*padding: 0.5em 0.75em 0.5em 0.75em;*/
	padding: 25px;
}

form.question {
}
form .answers {
	display: block;
}
form .answers input[type=text] {
	font: bold 100% "Open Sans", sans-serif;
	display: inline-block;
	margin: 0.2em 0;
    padding: 0.25em;
	color: black;
	width: 10em;
	/*
	border: 0 none;
    border-radius: 0.5em;
    background: #dde8ff;
	border-bottom: 2px solid silver;
*/
}
/*
form .answers input[type=text]:invalid {
    background: #dde8ff;
}
form .answers input[type=text]:valid {
    border-radius: 0;
    border-bottom: 2px solid silver;
}
*/
form .buttons {
	display: block;
	text-align: right;
}
.vcenter {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.holo {
	background-image: -webkit-linear-gradient( 22deg, red, orange, yellow, green, blue, indigo, violet );
	background-image: linear-gradient( 22deg, red, orange, yellow, green, blue, indigo, violet );

	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;

	background-size: 300% 300%;
	animation: holoAnim 3s ease infinite;
}
@keyframes holoAnim { 
	0%{background-position:0% 50%}
	50%{background-position:100% 25%}
	100%{background-position:50% 75%}
}

.interview {
	color: black;
	width: auto;
	text-align: left;
}
.interview .sec-title {
	display: block;
	color: white;
	background: #ccc;
	padding: 6px 10px;
}
.interview table {
	width: 100%;
	border: 1px solid #ccc;
	border-collapse: collapse;
}
.interview td {
	border: 1px solid #ccc;
	position: relative;
	text-align: left;
	margin: 0;
	padding: 0;
}
.interview td.center {
	text-align: center;
}

.opt-group {
	display: table;
	border-spacing: 1em;
	width: 100%;
}
.opt-group label {
	display: table-cell;
	margin-top: 1em;
	position: relative;
	border: 3px solid rgb(153,153,153);
	color: rgb(153,153,153);
	font-size: 115%;
	padding: 1.5em 0.5em;
	text-align: center;
}
.opt-group.five label {
	width: 20%;
}
.opt-group.four label {
	width: 25%;
}
.opt-group.three label {
	width: 33%;
}
.opt-group>label.highlight {
	border-color: rgb(64,128,255);
}
.opt-group>label.unhighlight>span {
	background: rgb(153,153,153);
}
.opt-group>label>span {
	position: absolute;
	top: -0.75em;
	left: 50%;
	margin-left: -0.75em;
	background: rgb(64,128,255);
	color: white;
	font-weight: bold;
	border-radius: 1.5em;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
}
.opt-group>label>input[type="radio"] {
	position: absolute;
	bottom: -1em;
	left: 50%;
	text-align: center;
	margin-left: -0.75em;
	width: 1.5em;
	height: 1.5em;
}

#next, #back {
	background: #fd2;
	color: black;
	font: bold 150% "Open Sans Condensed", sans-serif;
	padding: 0.2em 0.75em;
	position: fixed;
	top: 40%;
	cursor: pointer;
}
#back {
	left: 0;
	transform: rotate(90deg);
	transform-origin: left bottom 0;
}
#next {
	right: 0;
	transform: rotate(-90deg);
	transform-origin: right bottom 0;
}

#nav-menu {
	float: right;
	width: auto;
	height: 100%;
	border-left: 2px solid silver;
	/*min-height: 80vh;*/
	line-height: 1.5;
}

.nav-block {
	padding: 0.5em 0.5em;
	font-size: 80%;
}

#nav-menu hr {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 2px solid silver;
}

.psyche {
	background-image: -webkit-linear-gradient( 45deg, red, orange, yellow, limegreen, dodgerblue, magenta, red, orange, yellow );
	background-image: linear-gradient( 45deg, red, orange, yellow, limegreen, dodgerblue, magenta, red, orange, yellow );

	color:transparent;
	-webkit-background-clip: text;
	background-clip: text;

	background-size: 400% 100%;
	animation: psychecycle 5s linear infinite;
}
@keyframes psychecycle { 
	from {
		background-position:0% 50%
	}
	to {
		background-position:100% 50%
	}
}
.psyche2 {
	color: rgba(0,0,0,0.25);
}


