﻿
/* 사이트 전체 레이아웃 사이즈 */
html, body {min-width:1024px;}


/*width*/
.w100p {width:100%;}
.w1280 {width:1280px;}
/*@media screen and (max-width:1280px) {
.w1280 {width:100%; min-width:1024px;}
}*/
.w90p {width:90%;}

/*float*/
.fL {float:left;}
.fR {float:right;}
.fN {float:none;}
.clear {clear:both;}

/*position*/
.absolute {position:absolute;}
.relative {position:relative;}
.fixed {position:fixed;}

/*display*/
.dis_bl {display:block;}
.dis_inbl {display:inline-block;}
.dis_in {display:inline;}
.dis_none {display:none;}

/*text-align*/
.t_center {text-align:center;}
.t_left {text-align:left;}
.t_right {text-align:right;}

가로정렬
.left {left:0;}
.right {right:0;}

수직정렬
.vTop {vertical-align:top;}
.vMid {vertical-align:middle;}
.vBtm {vertical-align:bottom;}
.top {top:0;}

/*가운데정렬*/
.center {margin:0 auto;}

/*박스사이징*/
.box {box-sizing:border-box;}

/*클리어*/
.clear {clear:both;}