/*css for layout2 */

*{
  margin: 0;
  padding: 0;
  }
  
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 150px;
  background-color: rgba(5, 10, 50, 0.5);
}

li a {
  display: block;
  color: white;
  padding: 2px 4px;
  text-decoration: none;
}

li a:hover {
  background-color: #cf3476;
  color: white;
}

.active {
  background-color: #cf3476;
  color: #cf3476;
}
  
#container {
  width: 1200px;
  margin: 10px auto;
  }
  
  header {
    height: 372px;
    background-image: url('ssbanner2.png');
    background-position: center;
    background-repeat: no-repeat;
    }
  
#main {
    height: 720px;
    overflow: hidden;
    }

#navigation {
  background-color: #4166f5;
  height: 450px;
  float: left;
  width: 170px;
  border-style: solid;
  border-width: 10px;
  border-image: url('naviborder.png') 10;
  box-sizing: border-box;
  background-image: url('navibg2.png');
}

#updates {
  background-color: rgba(255, 255, 255, 0.1);
  height: 700px;
  padding: 10px;
  margin-left: 150px;
  overflow: auto;
  color: black;
  text-align: center;
  
  /* Firefox */
  scrollbar-color: #002147 #4166f5;
}

/* WebKit and Chromiums */
::-webkit-scrollbar {
  background-color: #002147;
}

::-webkit-scrollbar-thumb {
  background: #4166f5;
}
    
    footer {
      height: 20px;
      text-align: center;
      }