정리가 안됐으므로 절대 가져가지 말것!!!
/* 기본 스타일 */
body
{
color:#000000;
font-size:75%;
line-height:1.2;
font-family:돋움, Dotum, 굴림, Gulim, Verdana, AppleGothic, sans-serif;
background:#fff url(../images/common/bg_body.gif) repeat-x 0 0;
/* background-attachment: 스크롤을 따라 움직이는 여부 scroll, fixed */
}
/* 링크스타일 */
/* 가상 클래스 */
a:link, a:visited, a:active, a:focus
{
text-decoration:none;
}
a:hover /* */
{
text-decoration:underline;
}
a:link /* 방문한적이 없는 링크 */
{
color:#4f4f4f;
}
a:visited /* 방문한 적이 있는 링크 */
{
color:#8a2e91;
}
a:hover, a:active, a:focus
{
color:#100;
}
/*
a:active /* 링크가 활성화 됐을 때
{
}
a:focus /* 포커스가 갔을 때
{
}
*/
/* 숨김 컨텐츠 */
#skipNav, .blind, legend, .banner h3, .search h3, #slogan h2
{
/*
일반적인 트릭
visibility:hidden;
width:0;
height:0;
*/
position:absolute;/* 본문의 일반적인 흐름을 벗어남. */
left:-9999em;
/* 반드시 블럭 엘리먼트에만 적용
text-indent:-9999em
*/
}
