/************************\
  Colors I want to use 
From the U:
https://ur.umn.edu/brand/requirements-and-guidelines/color-and-type/index.php

Gold: R:255 G:204 B:51 (#ffcc33)
Maroon: R:122 G:0 B:25 (#7a0019)


# NLS Gold: #ffca00
# NLS Black: #000000

\************************/

/* Generic Selectors */
* {
	margin: 0;
}

html, body {
  height: 100%;
}


body {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #333333;
	background-color: #F9F9F9;
}


/* body > #container { height: auto; min-height: 100%; } */


/*p { 
	width: 80%;
}*/

li {
	/* list-style-type: disc; /*none;*/ /* options for bullet type */
	line-height: 150%;
	/* list-style-image: url(../images/arrowSmall.gif); */ /* uses an image in place of bullet (if set to none?) */
}
    
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	font-weight: bold;
	color: #ffca00;
	border-bottom: 2px solid #ffca00;
}

.title {
    color: #ffca003;
    background-color: #000000;
    text-align: center;
    font-size: 30px;
    border-bottom: 0;
}

/*Code to make the section bounce below header when click to navigate*/
h1:before { 
  display: block; 
  content: " "; 
  margin-top: -6em; 
  height: 6em; 
  visibility: hidden; 
  -webkit-background-clip: content-box;
  background-clip: content-box;
}

/* I also added code to highlight selected;
   moved to bottom to ensure it is matched
   (had been a chrome issue when here)*/     


h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	color: #ffca00;
	border-bottom: 1px solid #ffca00;
	background-color: #000000;
}

h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	color: #ffca00;
	border-bottom: 1px solid #ffca00;
	background-color: #000000;
}
 

       
/**************** Pseudo classes ****************/


a:link {
	color: #000000;
	font-weight: bold;
}
    
    
li :link {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
    
a:visited {
	color: #000000;
	font-weight: bold;
}

    
li a:visited {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: rgb(0, 96, 255);
}
     
     
li a:hover {
	color: rgb(0, 96, 255);
}  

       
a:active {
	color: rgb(255, 0, 102);
	font-weight: bold;
}
   
   
/************************* ID's *************************/   

/* This hacks a space before the div that matches the height of the banner*/
#centerDoc:before {
    padding: 0;
    margin:  0;
    font-size: 36px;
    font-size: 5vh;
    font-weight: bold;
    content: ".";
}
       
#centerDoc {
	/*position: absolute;*/
	padding: 0;
	/*top right bottom left*/ 
	margin: auto;
	margin-bottom: 5em;
	max-width: 42em;
}

@media (max-width:46em) { 
    #centerDoc {
	margin-left: 0.5em ; /*NEED to set min*/
	margin-right: 0.5em ;
	
    }
}
     
#banner {
    position: fixed;
    width: 100%;
    padding: 0%;
    /*top right bottom left*/ 
    margin: 0;
    text-align: center;
    overflow:auto;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-size: 5vh;
    font-weight: bold;
    color: #000000;
    background-color: #ffca00;
    top:0px;
}
     
#footer {
/* clear: both; */
 position: fixed;
 margin: 0;
 margin-top: 1em;
 padding: 0em 0em 0em 0em;
 width: 100%;
 text-align: center;
 background-color: #ffca00;
 bottom:0px;
 font-size: 2vh;
 overflow:auto;
}



#container {
	height: 100%;
	/*margin-bottom: 1em;*/
} 

/* 
#container:after {
	height: 1em;
	content: "";
	display: block;
}
*/



/* I also added code to highlight selected;
   moved to bottom to ensure it is matched
   (had been a chrome issue when above)*/     

div:target h1 { 
    border-bottom: thick solid #000000;
}

/* Center all images */
img {
    display: inline;
    /*   float: center;
         margin: 0 auto; */
    max-width: 42em;
}

.imgContain {
    text-align: center;
}


/* the reference tooltips style starts here */
/* This was stolen from the What If? css sytle sheet
 *  at https://what-if.xkcd.com/css/style.css
 *  in an effort to emulate that style  */

.ref {
    position: relative;
    vertical-align: baseline;
   }

.refnum {
    position: relative;
    left: 2px;
    bottom: 1ex;
    font-family: Verdana, sans-serif;
    color: #005994;
    font-size: .7em;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.refbody {
    font-family: Verdana, sans-serif;
    font-size: .7em;
    line-height: 1.1;
    display: block;
    min-width: 20em;
    position: absolute;
    left: 25px;
    bottom: 5px ;
    border: 1px solid;
    padding: 5px;
    background-color: #fff;
    word-wrap: break-word;
    z-index: 9999;
    overflow: auto;
}

:target::before {
  content: "";
  display: block;
  height: 60px; /* fixed header height*/
  margin: -60px 0 0; /* negative fixed header height */
}

hr {
    border: none;
    border-top: 3px double #333;
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}