/**** CSS for home (home/index.html) styles ****/

/*Missing email message*/
div #missing-email {
	border: 2px black solid;
	color: black;
	text-align: center;
	width: 675px;
	margin: auto;
	background-color: lightblue;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/*Missing email message: link*/
div #missing-email a{
	color: blue;
}

/*Home: "Upload sample data" container*/
#main-container {
  margin-right: 30%;
  padding: 1em;
  border-right: 1px solid silver;
  position: relative
}

/*Home: "Past Jobs" container*/
#right-container {
  float: right;
  width: 25%;
  padding:1em
}

/*Home: Upload sample data fieldsets (i.e. bordered sections)*/
fieldset.upload{
  margin-left:1%;
  margin-right:1%;
  margin-bottom: 20px;
  padding: 25px;
  min-width: 350px;
  max-width: 500px
}

/*Home: Process Data button*/
input.process{
  font-size:18px;
}

/*Home; Past Jobs scroll box*/
#pastJobsSB{
  font-size: 15px;
  font-weight: bold;
  border: solid gray 1px;
  width: 300px;
  height: 260px;
  margin-bottom:10px;
  margin-top: 17px;
}

/*Home: Past Jobs sample icon*/
#pastJobsSB option.folder_closed{
  background: white url(/images/folder_closed.png) no-repeat 3% 50%;
}

#pastJobsSB option.folder_opened{
  background: white url(/images/folder_opened.png) no-repeat 3% 50%;
}

/*Home: Past Jobs medium-quality sample*/
#pastJobsSB option.passed_sample{
  background: #99cc00 url(/images/arrow.gif) no-repeat 5% 50%; /*green*/
  margin-bottom: 2px;
  font-weight: normal;
}

/*Home: Past Jobs sample that needs review (due to marked key locations) */
#pastJobsSB option.check_sample{
	background: #ff9900 url(/images/arrow.gif) no-repeat 5% 50%; /*orange*/
	margin-bottom: 2px;
	font-weight: normal;
}

/*Home: Past Jobs low-quality (i.e. failed) sample*/
#pastJobsSB option.failed_sample{
  background: #cc3333 url(/images/arrow.gif) no-repeat 5% 50%; /*red*/
  margin-bottom: 2px;
  font-weight: normal;
}

/*Home: Past Jobs corrupt sample*/
#pastJobsSB option.corrupt_sample{
  background: silver url(/images/arrow.gif) no-repeat 5% 50%; /*silver*/;
  margin-bottom: 2px;
  font-weight: normal;
  font-style: italic;
}

/*Home: Past Jobs terrible sample*/
#pastJobsSB option.terrible_sample{
  background: black url(/images/arrow.gif) no-repeat 5% 50%; /*black*/;
  color: lightgrey;
  margin-bottom: 2px;
  font-weight: normal;
}

/*Home: Progress bar status*/
#status{
  font-size: 13px;
  color: gray;
  font-weight: 300;
}

/*Show: Table cells - everything but the cell with instructions*/
td.view{
  vertical-align: top;
  border: 1px solid black;
  margin: 0px;
}

/*Show: Table with dashed border*/
div.dashBox{
  border: 1px dashed gray;
  padding: 10px;
  margin-left: auto ;
  margin-right: auto ;
  margin-top:20px;
  margin-bottom:20px;
  text-align: center;
}

/*Show: Table containing instructions*/
table.instr{
	width: 270px;
  border: 1px dashed gray;
  margin-left:5px;
  margin-right:auto;
	margin-top: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/*Show: Table cell with instructions*/
table.instr td{
  vertical-align: top;
  padding: 2px;
  font-size: 10px;
}

/*Show: Table cell with job info */
table.info td{
  font-size: 12px;
}

/*Show: Title in table of instructions (for navigating) */
div.instr_header{
	background-color: lightblue;
	padding: 5px;
	font-size: 11px;
}

/*Show: Title in table of instructions (for editing) */
div.instr_header2{
	background-color: thistle;
	padding: 5px;
	font-size: 11px;
}

/*Show: Label heading for sample (above chromatograms)*/
label.header{
  font-size: 15px;
  font-weight: bold;
  color: black;
}

/*Show: Labels for table cell with instructions*/
label.instr{
  font-weight: bold;
  color: #4d9b12;
}

/*Show: Labels for sample information*/
label.info{
  font-weight: bold;
}

/*Show: Link with solid underline*/
a.solid_link{
  position: absolute;
  text-decoration: underline;
  margin-left: 5px;
}

/*Show: Table cell with dashed border under it*/
td.underline{
  border-bottom: 1px dashed gray;
  padding-left: 4px;
  padding-right: 2px;
  text-align: center;
}

/*Show: Table cell with dashed border on its left */
td.leftline{
  border-left: 1px dashed gray;
}

/*Show: Table cell with dashed border under and on its left */
td.underleftline{
  border-left: 1px dashed gray;
  border-bottom: 1px dashed gray;
  padding-left: 4px;
  padding-right: 2px;
  text-align: center;
}

/*Show: Table cell containing sample errors*/
td.errors{
  color: gray;
  max-width: 250px;
}

/*Show: div that contains page error*/
#save-msg{
	max-width: 250px;
	margin-bottom: 15px;
}

/*Show: upload file message*/
#error2{
	color: red;
  font-size: 15px;
  font-weight: bold;
}

/*Show: page error message*/
#error3{
	color: red;
}

/*Show: save edits progress div*/
#saving{
	display: table;
	margin: 0px;
}

ul{
  margin: 0px;
  line-height: 12px;
}
