@charset "utf-8";
/* CSS Document */

/*
외부 스타일 시트파일은 반드시 확장자를 .css로 저장해야 한다.
스타일스트파일은 스타일 정의만 기록하면 된다.
스타일 정의의 시작과 끝을 알리는 {}는 줄을 바꿔서 기입해주고 스타일 정의는 한칸 들여서 써 주는
것이 좋은 코딩 습관이다.
*/

body, td
{
	font-family:"돋움", "돋움체"; 
	font-size:12px;
	line-height:1.5;
}

/* 고시원명 */
.name
{
	font-family:"돋움", "돋움체"; 
	font-size:12px;
	line-height:1.5;
	font-weight:bold;
	color:#096e23;
}


/* 타이틀화이트 */
.white
{
	font-family:"나눔고딕";
	font-size:12px;
	line-height:1.5;
	font-weight:bold;
	color:#ffffff;
}


/* 메뉴 <span class="add"> */
.add a:link			{	font-family: "나눔고딕";	font-size: 9pt;	color: #575656;	text-decoration: none;}
.add a:visited 		{	font-family: "나눔고딕";	font-size: 9pt;	color: #575656;	text-decoration: none;}
.add a:active	 	{	font-family: "나눔고딕";	font-size: 9pt;	color: #575656;	text-decoration: none;}
.add a:hover 		{	font-family: "나눔고딕";	font-size: 9pt;	font-weight: bold;	color: #febc3d;	text-decoration: underline;}


