/* apply a natural box layout model to all elements */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin-bottom: 100px;
  font-size: 16px;
  color: #333;
}
h1 {
  margin-bottom: 30px;
  text-align: center;
}
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
}
#container {
  width: 460px;
  margin: 0 auto;
}
hr {
  margin: 20px 0 30px;
  border: 0;
  border-top: 1px solid #ddd;
}
.translation,
.translation-max {
  position: relative;
  width: 100%;
}
.source,
.target {
  width: 100%;
  min-height: 24px;
  padding: 3px 6px;
  line-height: 24px;
  word-break: normal;
  word-wrap: normal;
   overflow: scroll;
   resize: none
}
.source {
  margin-bottom: 6px;
}
.target {
  -webkit-appearance: none;
  overflow: scroll;
  white-space: pre-wrap;
  resize: none;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.target:focus {
  border-color: #888;
  outline: none;
}

.maxlength {
  position: absolute;
  right: 2px;
  bottom: 6px;
  padding: 2px 6px;
  font-size: 13px;
  color: #999;
}

.claim {
  color: #ce3500;
   opacity: .6;
}
.warrant {
  color: #f8a300;
   opacity: .6;
}
.evidence {
  color: #ffbb00;
   opacity: .6;
}

.rebuttal {
  color: #901e1d;
   opacity: .6;
}

.general {
  color: #f0c282;
   opacity: .6;
}

.convention {
  color: #FF9933;
   opacity: .6;
}
.precision {
  color: #eecdae;
   opacity: .6;
}
.organization {
	color: #47add5;
	 opacity: .6;
}
.word {
  color: #8eb1d6;
   opacity: .6;
}

.cascaded {
  color: #FFFFCC;
   opacity: .6;
}

.unknown {
  color: #808080;
   opacity: .6;
}
.claimHighlight {
  background-color: #ce3500;
}
.warrantHighlight {
  background-color: #f8a300;
}
.evidenceHighlight {
  background-color: #ffbb00;
}

.rebuttalHighlight {
  background-color: #901e1d;
}

.generalHighlight {
  background-color: #f0c282;
}

.precisionHighlight {
  background-color: #eecdae;
}

.conventionHighlight {
  background-color: #adbbcc;
}

.wordHighlight {
  background-color: #8eb1d6;
}

.organizationHighlight {
  background-color: #47add5;
}


.cascadedHighlight {
  background-color: #FFFFCC;
  opacity: .6;
}

.unknownHighlight {
  background-color: #808080;
}


.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}
