/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.row {
  margin-bottom: 15px;
}
.document-table {
  border-color: #b0bec5;
}
.document-table thead {
  background: #1e3685;
  color: white;
}
.document-table thead th {
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  border-color: #b0bec5;
}
.document-table tbody tr {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -kthtml-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.document-table tbody tr:hover {
  background: #e7e7e7;
  cursor: pointer;
}
.document-table tbody tr td {
  border-color: #b0bec5;
  font-size: 14px;
  padding: 20px 15px;
}
.document-table tbody tr td a {
  color: inherit;
}
#change-search {
  display: block;
  margin: 10px 0 20px;
  color: #9d0000;
  text-decoration: underline;
}
.instruct {
  background: #fbfbfb;
  border: 1px solid #b0bec5;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 20px;
  padding: 20px;
  cursor: pointer;
  position: relative;
}
.instruct:not(.collapsed) {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 20px 50px rgba(135, 135, 135, 0.35);
  -moz-box-shadow: 0px 20px 50px rgba(135, 135, 135, 0.35);
  box-shadow: 0px 20px 50px rgba(135, 135, 135, 0.35);
  border-color: white;
}
.instruct:not(.collapsed) i.icon-plus {
  display: none;
}
.instruct:not(.collapsed) i.icon-minus {
  display: block;
}
.instruct:last-child {
  margin-bottom: 0;
}
.instruct i {
  position: absolute;
  top: 24px;
  right: 15px;
}
.instruct i.icon-minus {
  display: none;
}
.instruct .header {
  font-weight: bold;
  font-size: 16px;
}
.instruct .body {
  font-size: 14px;
}
