body{
	margin:0;
	padding:0;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0.25+0,0.1+100;Neutral+Density */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.25)), color-stop(100%,rgba(0,0,0,0.1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#1a000000',GradientType=0 ); /* IE6-9 */

	font-family: verdana,arial,helvetica,sans-serif;
	min-height: 100vh;

}

body.devSite {
    border: 10px solid #ff0000;
}

.pubstr {
    text-align: right;
    margin: -10px 0 10px 0;
    font-size: 12px;
}

.crumbs, .crumbs a {
    color: #000000;
    font-size: 12px;
    text-align:right;
}

.objdesc {
    border: 1px solid #ccc;
    padding: 3px;
    background-color: #f1f1f1;
    margin: 0 0 5px 0;
}

.objdesc img {
    max-width: 100%;
}

/* Top Header */
.topHead {
    margin: 0;
    padding: 0;
	/* background-color: #4D4D4D; */
	position:relative;
    height: 110px;
    position: relative;
    background-color: #373636;
}

@media only screen and (max-width: 400px) { .topHead { height:auto; } } /* Mobile */
@media only screen and (min-width: 401px) and (max-width: 960px) { .topHead { height: auto; } } /* Tablet */

.siteLogoBox {
    /* background-color: #cccccc; */
    position: absolute;
    top: 10px;
    left: 10px;
    height: 90px;
    width: 235px;
}

.siteLogoBox { width: 235px; height: 90px; } /* Desktop */
@media only screen and (max-width: 400px) { .siteLogoBox { display: block; margin: 0 auto; position:relative; top: auto; right:auto; } } /* Mobile */
@media only screen and (min-width: 401px) and (max-width: 960px) { .siteLogoBox { display: block; margin: 0 auto; position:relative; top: auto; right:auto; } } /* Tablet */

.siteTopAd { /* Desktop */
    background-color: #cccccc;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 728px;
    height: 90px;
}

@media only screen and (max-width: 720px) { .siteTopAd { display: block; margin: 0 auto; position:relative; top: auto; right:auto; } }  /* Mobile */
@media only screen and (min-width: 401px) and (max-width: 960px) { .siteTopAd { display: block; margin: 0 auto; position:relative; width:468px; height:60px; top: auto; right:auto; overflow:hidden; } } /* Tablet */


.editImageBox {
    display: inline-block;
}

.editImageBox input[type="checkbox"][id^="image"] {
  display: none;
}

.editImageBox label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

.editImageBox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.editImageBox label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  object-fit: cover;
}

.editImageBox :checked + label {
  border-color: #ddd;
}

.editImageBox :checked + label:before {
  content: "\2713";
  background-color: grey;
  transform: scale(1);
}

.editImageBox :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}

.profileImage {
    border-radius: 50%;
    max-width: 200px;
}



