/* ADMINISTARTION */

#office{
	text-align: left;
	color: #212121;
	font: 1.2em "Lucida Grande", Lucida, Verdana, sans-serif;
	width: 60%;
	border-radius: 10px;
	border: 1px solid #424242;
	padding: 2% 5% 5%;
	margin: 0 auto;
}

.em2{
	font-size: 2.4em;
	text-align: center;
	color: #797979;
}

.em1{
	font-size: 1.1em;
}

.tab{
	font-size: 1.2em;
	text-align: left;
	padding-left: 20px;
	display: table;
}

input[type=submit]
{
  background-color: #3ca542;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
}
input[name=submit_old_del],input[name=submit_hack], input[name=submit_deadlink_del], input[name=submit_delfrom_podcast]{    
  background-color: #e8716d;
  color: white;
  padding: 3px 20px;
  margin: 8px 0;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[name=submit_news],input[name=submit_blind] {    
  background-color: #3ca542;
  color: white;
  padding: 3px 20px;
  margin: 8px 0;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[name=submit_state], input[name=submit_states], input[name=submit_header] {    
  background-color: #3ca542;
  color: white;
  padding: 3px 20px;
  margin: 8px 0 4px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[type=number]{
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid #424242;
  box-sizing: border-box;
  font-size: 1em;
  outline-color: none;
}
input[type=date]{
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid #424242;
  box-sizing: border-box;
  font-size: 1em;
  outline-color: none;
}

.typeleft{
	text-align: left;
}

label{
	font-weight: bold;
}

hr{
	width: 96%;
	border-bottom: 1px dotted #212121;
}

li span{ 
	float: left;
	width: 25%;
	margin-left: 5%;
}

@media only screen and (max-width: 740px) {
nav details{
	display:  none;
}

}

@media only screen and (max-width: 880px) {
#office{
	width: 78%;
}

}
/*

<style>
  .thumb {
    height: 75px;
    border: 1px solid #000;
    margin: 10px 5px 0 0;
  }
</style>

<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>

<script>
  function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object

    // Loop through the FileList and render image files as thumbnails.
    for (var i = 0, f; f = files[i]; i++) {

      // Only process image files.
      if (!f.type.match('image.*')) {
        continue;
      }

      var reader = new FileReader();

      // Closure to capture the file information.
      reader.onload = (function(theFile) {
        return function(e) {
          // Render thumbnail.
          var span = document.createElement('span');
          span.innerHTML = ['<img class="thumb" src="', e.target.result,
                            '" title="', escape(theFile.name), '"/>'].join('');
          document.getElementById('list').insertBefore(span, null);
        };
      })(f);

      // Read in the image file as a data URL.
      reader.readAsDataURL(f);
    }
  }

  document.getElementById('files').addEventListener('change', handleFileSelect, false);
</script>

*/