
/* 브라우저 기본 스타일 초기화 */
 *,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


 
ul, ol, li{list-style:none; }
/* Link Style */
a:link		{text-decoration:none; }
a:visited	{text-decoration:none; }
a:active	{text-decoration:none; }
a:hover		{text-decoration:none; }
a{color: #888; /* 기본 회색 */
  text-decoration: none;}
  