.left_menu_table th {
	color: #FAF0E6; /* #E0E0E0 -> #FAF0E6 (헤더 텍스트: 밝게) */
	background: #424242; /* #212121 -> #424242 (헤더 배경: 짙은 회색) */
}

.left_menu_table_title2 {
	color: #aaa; /* #E0E0E0 -> #333 (제목 텍스트: 어둡게) */
}


.left_menu_table_td {
	border-bottom: 1px solid #ccc; /* #aaa -> #ccc (구분선: 밝은 회색) */
	background: #FAF0E6; /* #E0E0E0 -> #FAF0E6 (항목 배경: 밝은 메인 배경색) */
}


.left_menu_table_td a {
	color: #000; /* #000 유지 (링크 텍스트: 검은색) */
}

.left_menu_table_td:hover {
	color: #424242; /* #424242 유지 (호버 텍스트색) */

	/* 배경색 천천히 변하기 */
	background: #eee; /* #aaa -> #eee (호버 배경: 아주 밝은 회색으로 은은하게) */
	-webkit-transition: background-color 500ms linear;
	-moz-transition: background-color 500ms linear;
	-o-transition: background-color 500ms linear;
	-ms-transition: background-color 500ms linear;
	transition: background-color 500ms linear;

}

.left_menu_table_td a:hover {
	/* 글색 천천히 변하기 */
	color: #424242; /* #424242 유지 (호버 링크 텍스트색) */
	-webkit-transition: color 500ms linear;
	-moz-transition: color 500ms linear;
	-o-transition: color 500ms linear;
	-ms-transition: color 500ms linear;
	transition: color 500ms linear;
}


.left_menu_table_td_select { /* 선택된 항목 스타일 */
	background: #5C9EAD; /* #3A5A81 (짙은 파랑) -> #5C9EAD (차분한 청록색으로 변경) */
	border-bottom: 1px solid #777777; /* #555555 -> #777777 (선택 항목 구분선) */
}

.left_menu_table_td_select a {
	color: #FAF0E6; /* #E0E0E0 -> #FAF0E6 (선택 항목 텍스트: 밝게) */
}