/* sets universal values */
* {
        font-family: sans-serif;
        margin: 0;
	background-color:white; 
        color:#232323;
}


/* css for the main stuff on each page */
#content {
        /* allows text to be centered with margins, nicer looking */
        max-width: 85%;
        padding: 2em 2em 0em 2em;
	font-size: 1.2rem;
	margin:auto;
}

@media (max-width:400px){
#content {
        /* allows text to be centered with margins, nicer looking */
        padding: 2em 3em 2em 3em;
	font-size: 1.1rem;
}
}


h1 {
  font-size: 2.35em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

.warning {
        color:red;
        font-weight:bold;
}


input[type=checkbox]{
    display: none;
}

#HIS{
    display:unset;
}

/*Show menu when invisible checkbox is checked*/
#navigation-bar input[type=checkbox]:checked ~ #menu{
    display: block;
}


a#furtherinfo {
	display:none;
}

#codelike {
	font-family: monospace;
	font-size: 0.8em;
}


code {
	font-family: monospace;
}
#headerbar {
        /* height: 14em; */ 
        background-color: #369;
        padding: 0em 1em 1em 1em;
}

.headerlogo {
        /* brings in image */
        /* CHANGE THIS */
        background:url(../../resources/chargemaplogo.png) no-repeat;
        left: 0;
        /* width: 30% */
        background-size:contain;
        /* /1* sets size of banner *1/ */
        width: 40%;
        height: 7em;
        /* /1* hides text on logo, important for clickable logo without text *1/ */
        text-indent: -9999px;
        /* /1* stops text from wrapping on page *1/ */
        white-space: nowrap;
        /* /1* hide text as it exceeds size of element *1/ */
        overflow: hidden;
        /* /1* spaces logo nicely *1/ */
        margin: 0.75em 0em 0em 1em;
        /* display: inline; */
        display: inline-block;
}
.manunilogo {
        /* brings in image */
        /* CHANGE THIS */
        background:url(../../resources/manunilogo.png) no-repeat;
        background-size:contain;
        right: 0;
        float:right;
        /* width: 30% */
        /* /1* sets size of banner *1/ */
        /* float:right; */
        width: 10%;
        height: 6em;
        /* /1* hides text on logo, important for clickable logo without text *1/ */
        text-indent: -9999px;
        /* /1* stops text from wrapping on page *1/ */
        white-space: nowrap;
        /* /1* hide text as it exceeds size of element *1/ */
        overflow: hidden;
        /* /1* spaces logo nicely *1/ */
        margin: 2.7em 0em 0em 1em;
        /* padding: 10em 0em 0em 0em; */
        display: inline;
}
.bioprologo {
        /* brings in image */
        /* CHANGE THIS */
        background:url(../../resources/biopronetlogo.png) no-repeat;
        background-size:contain;
        right: 0;
        float:right;
        /* width: 30% */
        /* /1* sets size of banner *1/ */
        /* float:right; */
        width: 10%;
        height: 6em;
        /* /1* hides text on logo, important for clickable logo without text *1/ */
        text-indent: -9999px;
        /* /1* stops text from wrapping on page *1/ */
        white-space: nowrap;
        /* /1* hide text as it exceeds size of element *1/ */
        overflow: hidden;
        /* /1* spaces logo nicely *1/ */
        margin: 1.85em 0em 0em 1em;
        /* padding: 10em 0em 0em 0em; */
        display: inline;
}

#navigation-bar ul {
	font-size:1.2rem;
        /* removes space around items */
        max-width: 100%;
        height: 2em;
        background-color: #369;
        margin: 0;
        padding: 0;
        /* removes the bullets */
        list-style-type: none;
        /* keeps text central */
        text-align: center;
        /* position: absolute; */
}

#navigation-bar li {
        display:inline-block;
        /* float: left; */
        margin-right: 1em;
        margin-left: 1em;
}


#navigation-bar ul li { 
        /* builds a horizontal bar i.e. with no new line breaks */
        display: inline; 
}

#navigation-bar ul li a {
        /* don't decorate text */
        text-decoration: none;
        /* add space around text for box */
        padding: 0.5em 0.5em;
        /* color of item text */
        /* color of item box */
        background-color: #369;
	color:#f9f9f9;
}

/* causes the bar to change color on mouse over */
#navigation-bar ul li a:hover {
        color: #fff;
        background-color: #5b84ad;
}

#navigation-bar .show-menu {
        /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
	font-size:1.2rem;
        text-decoration: none;
        color: #fff;
        background: #369;
        text-align: center;
        padding: 10px 0;
        display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
#navigation-bar input[type=checkbox]:checked ~ #menu{
    display: block;
}


@media only screen and (max-width : 1100px){
        /*Make dropdown links appear inline*/
        #navigation-bar ul {
                background-color: #369;
                position: static;
                display: none;
        }
        /*Create vertical spacing*/
        #navigation-bar li {
                margin-left: 0;
                margin-right: 0;
                float: left;
        }
        /*Make all menu links full width*/
        #navigation-bar ul li, li a {
                width: 100%;
                padding: 0em 0em;
        }
        /*Display 'show menu' link*/
        #navigation-bar .show-menu {
                display:block;
        }
        #navigation-bar li a {  
                display:block;
                min-width:140px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                text-decoration: none;
        }
        #navigation-bar ul li a {
                padding: 0;
        }
        .manunilogo {
                display: none;
        }
        .bioprologo {
                display: none;
        }
        .headerlogo {
                width:100%;
        }
}
input,textarea {
  border: 2px solid #4a4a4a; }
  input:focus, textarea:focus {
    border: 2px solid #2c8898; }

textarea {
  width: 100%; }

.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #336699;
  color: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box; 
}



.button[disabled], button[disabled], input[type="submit"][disabled], input[type="reset"][disabled], input[type="button"][disabled] {
    cursor: default;
    opacity: .5; 
}
  .button:focus, .button:hover, button:focus, button:hover, input[type="submit"]:focus, input[type="submit"]:hover, input[type="reset"]:focus, input[type="reset"]:hover, input[type="button"]:focus, input[type="button"]:hover {
    background-color: #4EA5D9;
    border-color: #336699;
    outline: 0; 
}

textarea, select, input[type] {
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  margin-bottom: 10px;
  border: 2px solid #336699;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
  textarea:focus, select:focus, input[type]:focus {
    border: 1px solid #2c8898;
    outline: 0; }

input[type="checkbox"]:focus {
outline: 1px dotted #2c8898; }
