.ver-main-nav ul 
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f38b3c;
}

.ver-main-nav li a 
{
    display: block;
    color: black;
    padding: 8px 0 8px 16px;
    text-decoration: none;
}

/* Change the link color on hover */
.ver-main-nav li a:hover 
{
    background-color: #c05a0c;
}

.hor-main-nav ul 
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f38b3c;
}

.hor-main-nav li 
{
    float: right;
}

.hor-main-nav .home 
{
    float: left;
}

.hor-main-nav li a 
{
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.hor-main-nav li a:hover 
{
    background-color: #c05a0c;
}

.active
{
    background-color: #c05a0c;
}

.hor-main-nav li .activehome 
{
    float: left;
    background-color: #c05a0c;
}

.project_input
{
    max-width: 405px;
}

.text_label
{
    vertical-align: top;
}

.form-group input.has-error,
.form-group textarea.has-error
{
    border: 1px solid red;
}

.btn-orange
{   
    background-color: #f38b3c;
    color: black;
    padding: 14px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border: 1px solid #c05a0c;
    border-radius: 3px;
}

.btn-orange:hover
{
    background-color: #c05a0c;
    border: 1px solid #f38b3c;
    border-radius: 3px;
    color: black;
}

.add-link
{
    margin-right: 0px;
    color: green;
    float: right;
}

.remove-link
{
    margin-right: 0px;
    float: right;
    color: red;
}

.panel-list
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f38b3c;
    float: left;
}

.panel-list li
{
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.bimage
{
    height: 300px;
    width: 100%;
    -webkit-background-size: cover; /* For WebKit*/
    -moz-background-size: cover;    /* Mozilla*/
    -o-background-size: cover;      /* Opera*/
    background-size: cover;  
    z-index: 1;
}

#wall_1
{
    background-image : url("/src/images/headimage.jpg");
}

/*--------------------------------------------------------------------------*/

/* filter row */
.tablesorter-filter-row td {
  background: #eee;
  line-height: normal;
  text-align: center; /* center the input */
  -webkit-transition: line-height 0.1s ease;
  -moz-transition: line-height 0.1s ease;
  -o-transition: line-height 0.1s ease;
  transition: line-height 0.1s ease;
}
/* optional disabled input styling */
.tablesorter-filter-row .disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: not-allowed;
}

/* hidden filter row */
.tablesorter-filter-row.hideme td {
  /*** *********************************************** ***/
  /*** change this padding to modify the thickness     ***/
  /*** of the closed filter row (height = padding x 2) ***/
  padding: 2px;
  /*** *********************************************** ***/
  margin: 0;
  line-height: 0;
  cursor: pointer;
}
.tablesorter-filter-row.hideme .tablesorter-filter {
  height: 1px;
  min-height: 0;
  border: 0;
  padding: 0;
  margin: 0;
  /* don't use visibility: hidden because it disables tabbing */
  opacity: 0;
  filter: alpha(opacity=0);
}

/* filters */
.tablesorter-filter {
  width: 95%;
  height: inherit;
  margin: 4px;
  padding: 4px;
  background-color: #fff;
  border: 1px solid #bbb;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: height 0.1s ease;
  -moz-transition: height 0.1s ease;
  -o-transition: height 0.1s ease;
  transition: height 0.1s ease;
}

.roundedCorners {
    border: #777 1px solid;
    padding: 0 10px;
    border-radius: 1em;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
}

.clicktable tr
{
    cursor: pointer;
    cursor: hand;
}

.h-scroll 
{
    height: 80vh; /* %-height of the viewport */
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/*MODAL ----------------------------------------------- */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}