@charset "UTF-8";
/* CSS Document */

body {
  background: #6c6b6e;
}


.form-container {
    background: #f1ecdf;
    border: #e2ddd2 1px solid;
    padding-top: 20px; padding-left: 20px;
    border-radius: 2px;
}


.input-row {
    margin-bottom: 20px;
}

.input-row label {
    color: #75726c;
}

.input-field {
    width: 100%;
    border-radius: 2px;
    padding: 10px;
    border: #e0dfdf 1px solid;
    box-sizing: border-box;
    margin-top: 2px;
}

.span-field {
    font: Arial;
    font-size: small;
    text-decoration: none;
}

.btn-submit {
    padding: 10px 60px;
    background: #9e9a91;
    border: #8c8880 1px solid;
    color: #ffffff;
    font-size: 0.9em;
    border-radius: 2px;
    cursor: pointer;
}

.errorMessage {
    background-color: #e66262;
    border: #AA4502 1px solid;
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 3px;
}

.successMessage {
    background-color: #9fd2a1;
    border: #91bf93 1px solid;
    padding: 5px 10px;
    color: #3d503d;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
}

.info {
    font-size: .8em;
    color: #e66262;
    letter-spacing: 2px;
    padding-left: 5px;
}


 table.head {
    border: 0;
    align : center;
    table-layout: auto;
    width: 100%;
    margin-top: 5%;
    margin-right : auto;
    margin-left : auto;
    background-color: gainsboro;
    style : "overflow-x:auto;"
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
  background-color: gainsboro;
}

td.head{
    text-align: center;
    font-family: Monaco;
    font-size: 5vw
    }

 table.ribbon {
    border: 0;
    align : center;
    table-layout: auto;
    width: 100%;
    style : "overflow-x:auto" ;
   
}

td.ribbon {
      column-width: 13%;
}

table.center {
    border: 0;
    align : left;
    table-layout: auto;
     margin-left: 5%;
    width: 90%;
    style : "overflow-x:auto" ;
}

th.center{
    padding-left: 20px;
    padding-right:20px ;
    padding-bottom: 5px;
    font-size: 26px;
}

td.center{
    padding-left: 20px;
    padding-right:20px ;
    padding-bottom: 5px;
}

td.formcell{
    padding-left: 20px;
    padding-right:20px ;
    padding-bottom: 5px;
    font-size: 24px;
   
}

td.noshow{
     display: none; 
}


table.map {
    border: 0;
    align : left;
    table-layout: auto;
    margin-left: 5%;
    width: 90%;
}

table.columnonscreen {
    align : left;
    table-layout: auto;
    margin-left: 5%;
    width: 90%;
    style : "overflow-x:auto" ;
    border-collapse:separate;
    border:solid black 1px;
    border-radius:6px;
}

td.columnonscreen{
    padding-left: 20px;
    padding-right:20px ;
    padding-bottom: 5px;
}

.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 30%;
  padding: 10px;
 border: 0;
}




button.ribbon {
      background-color: slategray; 
      border: none;
      color: white;
      padding: 10px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 12px;
      width:    100%
}

button.header {
      background-color: slategray; 
      border: none;
      color: white;
      padding: 2 px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 12px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 12px;
    width:    100%
}


img { 
  min-width : 100px;
  max-width : 50%;
  width:auto;
  height:auto; 
  align-content: center
}

a.header { 
    color:White;
    text-decoration:none;
}
a:hover, a:focus {
    text-decoration:underline;
    
}

#checkbox1,
.toggle {
  display: none;
}

.menu {
  padding: 0;
  margin: 0;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
  align : center;
  width: 100%;

}

.menu li a {
  text-decoration: none;
  align-self: center;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 15px;
  transition: background .2s linear;
}

@media screen and (max-width: 600px) {
  .menu li a {
    font-size: 13px;
  }
}

@media screen and (max-width: 550px) {
  .toggle {
    clear: both;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    width: 100%;
    height: 40px;
    color: #595959;
    background: #dbdbdb;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all .1s linear;
  }
  .toggle:hover {
    background: #cecece;
  }
  #checkbox1:checked + label .menubar li {
    opacity: 1;
    visibility: visible;
    transition: all .7s linear;
  }

  #checkbox1:checked + label .menubar {
    height: 200px;
  }
  .menu {
    border-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 0px;
    transition: height .3s linear;
  }
  .menu li {
    display: flex;
    /* magic */
    align-self: center;
    width: 100%;
     align : center;
    opacity: 0;
    visibility: hidden;
  }
  .menu li a {
    width: 100%;
    text-align: center;
    align-self: center;
    align-content: center;
     align : center;
  }
}

.menubar {
  background: #625b60;
}

.menubar li a {
  color: #fff;
}

.menubar li a:hover {
  background: #6d6268;
}



nav {
  max-width: 100%;
  width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
}

#checkbox1,
.toggle {
  display: none;
}

.menu {
  padding: 0;
  max-width: 100%;
  margin-right : auto;
  margin-left : auto;
  height: 50px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
}

.menu li a {
  text-decoration: none;
  align-self: center;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 15px;
  transition: background .2s linear;
}

@media screen and (max-width: 600px) {
  .menu li a {
    font-size: 13px;
  }
}

@media screen and (max-width: 550px) {
  .toggle {
    clear: both;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    width: 100%;
    height: 40px;
    color: white;
    background: #625b60;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all .1s linear;
  }
  .toggle:hover {
    background: #625b60;
  }
  #checkbox1:checked + label .menubar li {
    opacity: 1;
    visibility: visible;
    transition: all .7s linear;
  }

  #checkbox1:checked + label .menubar {
    height: 200px;
  }
  .menu {
    border-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 0px;
    transition: height .3s linear;
  }
  .menu li {
    display: flex;
    /* magic */
    align-self: center;
    width: 95%;
    opacity: 0;
    visibility: hidden;
  }
  .menu li a {
    width: 95%;
    text-align: center;
    align-self: center;
    align-content: center;
  }
}

.menubar {
  background: #625b60;
}

.menubar li a {
  color: #fff;
}

.menubar li a:hover {
  background: #6d6268;
}


form button { margin: 5px 0px; }
textarea { display: block; margin-bottom: 10px; }
/*post*/
.post { border: 1px solid #ccc; margin-top: 10px; }
/*comments*/
.comments-section { margin-top: 10px; border: 1px solid #ccc; }
.comment { margin-bottom: 10px; }
.comment .comment-name { font-weight: bold; }
.comment .comment-date {
	font-style: italic;
	font-size: 0.8em;
}
.comment .reply-btn, .edit-btn { font-size: 0.8em; }
.comment-details { width: 91.5%; float: left; }
.comment-details p { margin-bottom: 0px; }
.comment .profile_pic {
	width: 35px;
	height: 35px;
	margin-right: 5px;
	float: left;
	border-radius: 50%;
}
/*replies*/
.reply { margin-left: 30px; }
.reply_form {
	margin-left: 40px;
	display: none;
}
#comment_form { margin-top: 10px; }







#gridview {
   text-align:center; 
}

div.image {
    margin: 10px;
    display: inline-block;
}

div.image img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
}


div.image imgmap  { 
  min-width : 100px;
  max-width : 90%;
  width:auto;
  height:auto; 
  align-content: center
}

div.image img:hover {
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.32), 0 0 0 0px rgba(0,0,0,0.16);
}

.heading{    
    padding: 10px 10px;
    border-radius: 2px;
    color: #FFF;
    background: #6aadf1;
    margin-bottom:10px;
    font-size: 1.5em;
}
#grid{
    margin-bottom:30px;
}

/* Responsive Styles */

@media screen and (min-width: 1224px) {
    div.image {
        width: 300px;
    }
}

@media screen and (min-width: 1044px) and (max-width: 1224px) {
    div.image {
        width: 250px;
    }
}

@media screen and (min-width: 845px) and (max-width: 1044px) {
    div.image {
        width: 200px;
    }
}


select#wgmstr {
    max-width: 60px;
    min-width: 50px;
    width: 60px !important;
}    