/**
## General styles
This stuff can be ported from experiment to experiment.*/

/** We want the page to sit flush inside the browser window - that means no margins or padding. 
 * 	Also, use a nice-looking serif font. */
body {
	padding: 0;
	margin: 0;
	font-family: Palatino Linotype, Bookman Antiqua, Palatino, serif;
	font-size: 16px;
	line-height: 20px;
}

/** We manage display using "slides". A slide is a <code>div</code> that takes up the entire page. 
 * 	Only one slide should be visible at a time. 
 * Navigation between slides is most sensibly accomplished using using buttons, rather than keyboard events. */
.slide {
	width: 95%;
	height: 95%;
	display: none;
	position: absolute;
	margin: 0;
	margin-left: 0.5%;
	padding: 1% 2% 1% 2%;
}

input, select, button {font-family: Georgia, serif; font-size: 14px;}

button, .next {
	border: 1px solid #999;
	border-top: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	margin: 10px;
	padding-left: 5px;
	padding-right: 5px;
	height: 29px;
	min-width: 70px;
}
button:active, .next:active{
	border-left: 1px solid #c9c9c9;
	border-top: 1px solid #c9c9c9;
	background: none;
	background-color: #c9c9c9;
}

button[disabled], .next[disabled] {
	background: url(zen-button.png);
	border: 1px solid #999;
	border-top: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	cursor: not-allowed;
}



/**
## Experiment-specific styles
This stuff will vary by experiment.
*/

#trialNum {
	margin: 15px 200px;
	text-align: left;
	font-size: 28px;
}

table.sentences {
	
	margin: 30px 200px;
	text-align: left;
	border: 1px solid black;
	width: 520px;
}

table.sentences col {
	width: 30px;
}

table.sentences td {
	padding: 15px;
	font-size: 18px;
	
}

table.judgments {
	
	margin: 30px 200px;
	text-align: left;
}

.message {
	color: red;
}

#question {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin: 0 200px;
	text-align: left;
}

.exampleQuestion {
	font-size: 11px;
	text-align: left;
	width: 520px;
	margin: 0 auto;
  	margin-bottom: 1em;
  	padding: 0px;
}

.sampleQ {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

table.sample_sentences {
	border: 1px solid black;
	width: 500px;
}

table.sample_sentences td{
	padding: 0px;
}

.title {
  font-weight: bold;
}

#consent-sub {
	font-style: italic;
}

#introduction, #instructions, #survey {
  text-align: center;
}

#stage {
  text-align: center;
}


#odd-key, #even-key {
  background-color: #e3e3e3;
  padding: 2px;
  border: 1px outset #cccccc;
  font-family: Courier New;
  font-weight: bold;
  font-size: 15px;
}

.block-text, .answer-text {
  width: 520px;
  text-align: justify;
  margin: 0 auto;
  margin-bottom: 1em;
}

.answer-text {
	color: red;
	font-size: 12px
}

#legal {
  margin: 0 auto;
  margin-top: 1.5em;
  font-size: 0.8em;
}

#lucky #outcome {
  font-size: 16px;
  margin: 50px 200px;
  text-align: left;
  line-height: 16px
  
}

.demographics{
	text-align: left;
    margin:10px 300px;
}

.demographics ul{
    list-style:none;
    padding:0;
    line-height:20px;
    margin:0;
}

.demographics input{
    margin:0 10px 0 5px;
}

.demographics textarea{
    margin:5px 0;
}

