/*-----------------------------------------------------------
배송비 할인요율표에 사용되는 css
/info/usa_price.html
------------------------------------------------------------*/


/***********************
1.TABLE
************************/


/*======================
        1.TABLE (table tag 사용하지 않고 표만들기 css)
========================*/
.price-div div {
	border: 1px solid #000;
}
.price-table { /* <table> tag 대신 사용*/
	display: table;
	width: 100%;
}
.price-table-row {/* <tr> tag 대신 사용*/
	display: table-row;
}
.price-table .price-table-header {/* <th> tag 대신 사용*/
	display: table-cell;
	padding: 10px 0px;
	background-color:#ccc;
}
.price-table-cell {/* <td> tag 대신 사용*/
	display: table-cell;
	padding: 10px 0px;
}
.price-top {/* 높이를 top으로 정렬*/
	vertical-align: top;
}
.price-middle {/* 높이를 middle로 정렬*/
	vertical-align: middle;
}
.price-bottom {/* 높이를 bottom으로 정렬*/
	vertical-align: bottom;
}
