/***NRF Styles***/
/* w.e.g. 11/14/2017*/

/* Basic text style */
 .nrf_basic {
  font-family: Verdana, Arial, Sans Serif;
  font-size: medium;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-variant: normal;
  color: #000000;
  text-align: justify;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-width: 100%;
  margin-height: 100%;
  }
  /* link features */
  .nrf_basic a:link {
  text-decoration:none; 
  color: blue;
  }
  
  .nrf_basic a:hover {
  text-decoration:underline; 
  color: red;
  }
  
   .nrf_basic a:visited {
  text-decoration:underline; 
  color: blue;
  }
 
  
  
  /* small text footer */
  .nrf_footer {
  font-size: medium;
  text-align: center;
  }
  
 /* center an image */    
   img.centered {
   display: block;
   margin-left: auto;
   margin-right: auto;
   }
  
  .p {
  font-family: Verdana, Arial, Sans Serif;
  font-size: medium;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-variant: normal;
  color: #000000;
  text-align: justify;
  }
  
 p.center {
  text-align: center;
  }
  
/* Basic page setup from sample with
   top links, body, and footer */
   
* {
    box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the content */
.content {
    background-color: #ddd;
    padding: 10px;
     /* Should be removed. Only for demonstration */
}

/* Style the footer */
.footer {
    background-color: #f1f1f1;
    padding: 10px;
}

/* for list of brain matters issues */
.bmlist {
  font-family: Verdana, Arial, Sans Serif;
  font-size: medium;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-variant: normal;
  color: #000000;
  margin-left: 15%;
}
.bmlist ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }

.bmlist li {
    text-decoration: none; /* redundant? */
    color: black;
      }

 /* Link colors */
 .bmlist a:link {
   text-decoration:none;
   color: blue;
   }
 .bmlist a:visited {
   text-decoration: underline;
   color: blue;
   }
 .bmlist a:hover {
   text-decoration:underline;
   color:#FF0000;
 }
 .bmlist a:active {
   text-decoration:none; 
 }







/*
</style>
</head>
<body>

<div class="topnav">
  <a href="#">Link</a>
  <a href="#">Link</a>
  <a href="#">Link</a>
</div>

<div class="content">
  <h2>CSS Template</h2>
  <p>A topnav, content and a footer.</p>
</div>

<div class="footer">
  <p>Footer</p>
</div>

</body>
</html>
*/


