// 스크롤시 배경이미지
* background-attachment: scroll;
- 옵션 : fixed : 고정, scroll : 스크롤
// 배경이미지 넣기
* background-image: url(../img/rian_sub_bg.gif);
// 배경 반복
* background-repeat: no-repeat;
- 옵션 : no-repeat : 반복않함, repeat-x : 가로반복, repeat-y : 세로반복
// 배경정렬
* background-position: center top;
- 옵션 : top, center, bottom, left, right, center, %(수평값,수직값), px(길이)










