form fieldset {
  border: 1px solid #aaa;
  padding: 15px;
  margin: 0 0 15px 0;
}
form legend {
  padding: 15px;
}
form input,
form button,
form label,
form select {
  display: block;
  margin: 0 15px 15px 15px;
  padding: 10px;
  float: left;
  width: 40%;
  max-width: 400px;
}
form table input,
form table button,
form table label,
form table select {
  display: block;
  margin: 0;
  padding: 5%;
  float: none;
  width: 90%;
  max-width: 400px;
}
form table input.wide,
form table button.wide,
form table label.wide,
form table select.wide {
  min-width: 250px;
}
form table input.small,
form table button.small,
form table label.small,
form table select.small {
  max-width: 60px;
}
form label {
  width: auto;
}
form textarea {
  margin: 0 15px 15px 15px;
  padding: 10px;
  float: left;
  width: 75%;
  max-width: 855px;
}
form input[type="submit"] {
  max-width: 200px;
}
form br {
  clear: left;
}
form p.note {
  margin: 0 15px 15px 15px;
}
form fieldset.checklist label {
  width: 20%;
  padding: 2.5%;
  margin: 0;
  display: inline-block;
}
form fieldset.checklist input[type="checkbox"] {
  width: 20px;
  margin: 0 15px 0 0;
}
table {
  width: 100%;
  border: 1px solid #333;
}
table tr.active {
  background: #ffdb6a;
}
table tr:hover {
  background: #ffe79d;
}
table tr.clickable {
  cursor: pointer;
}
table th {
  text-align: left;
  padding: 10px;
  background: #993300;
  color: #fff;
}
table td {
  border: 1px solid #333;
  padding: 10px;
}
table th.center,
table td.center {
  text-align: center;
}
img.destroy:hover {
  cursor: pointer;
}
div.video,
div.photo {
  width: 45%;
  min-width: 550px;
  float: left;
  padding: 0 5% 15px 0;
}
div.video img.destroy,
div.photo img.destroy {
  float: left;
  margin: 140px 15px 0 0;
}
div.video img.preview,
div.photo img.preview {
  max-width: 450px;
}
div.video div,
div.photo div {
  float: left;
}
div#topBar {
  width: 100%;
  height: 30px;
  line-height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  background: #993300;
  z-index: 10;
  text-align: right;
}
div#topBar a {
  color: #fff;
  text-decoration: none;
  padding: 0 15px 0 0;
}
div#topBar a:hover {
  text-decoration: underline;
}
div#navBar {
  width: 150px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffe79d;
}
div#navBar a {
  display: block;
  text-decoration: none;
  text-indent: 30px;
  font-size: 11px;
  line-height: 25px;
}
div#navBar a.at {
  background: #444;
  color: #fff;
}
div#navBar a:hover {
  background: #f5f6f7;
  color: #222;
}
div#navBar a#dash {
  margin: 32px 0 0 0;
  color: #000;
  background: #ccc;
  font-weight: bold;
}
div#signIn {
  width: 200px;
  height: 200px;
  margin: 100px auto 0;
  padding: 100px;
  background: #ffe79d;
  -moz-box-shadow: inset 0 0 5px 2px #993300;
  -webkit-box-shadow: inset 0 0 5px 2px #993300;
  box-shadow: inset 0 0 5px 2px #993300;
  border: 3px solid #993300;
}
div#signIn h1 {
  text-align: center;
  margin: 0;
}
div#signIn input {
  margin: 0 auto 15px;
  width: 180px;
  float: none;
}
div#shell {
  padding: 55px 25px 25px 175px;
}
#addRow,
.class_button_remove {
  cursor: pointer;
}
/* ==========================================================================
   jQuery UI Overrides
   ========================================================================== */
.ui-accordion .ui-accordion-header {
  font-size: 13px;
  font-weight: bold;
}
.ui-accordion .ui-accordion-content {
  padding: 0;
}
.ui-dialog .ui-dialog-content {
  font-size: 13px;
}
.ui-button-icon-only .ui-icon {
  top: 0 !important;
  left: 0 !important;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links for images, or javascript/internal links
     */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
