@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);

header{
  justify-content: space-between;
}

.logout-a{
  text-decoration:none;
  padding:0 0 0 20px;
}
.logout-a_icon:before {
  font-family: 'Font Awesome 5 Free';
	font-weight : bold;
  content: "\f2f5";
  color:white;
}



.content_wrap{
  display:flex;
  width:1200px;
  margin:0 auto;
}
nav{
  width:22%;
  background-color:#F3FBFF;
}
main{
  padding:0 10px;
}

main section h2{
  padding:20px 0 20px;
}


nav>ul>li{
  width:100%;
}
nav>ul>li>a{
  width:100%;
  border-bottom: 1px solid #e4eaef;
  padding:20px;
}



@media screen and (max-width:689px){
  .content_wrap{
    display:block;
    width:100%;
  }
  nav{
    width:100%;
  }
  nav>ul>li{
    width:auto;
  }

}



.current{
  background-color:#72a8db;
  font-weight:bold;
}
