/********************************** 게시판 리스트 **********************************/
/* 게시판 검색*/
.board-search ul{
	display: inline-block;
}
.board-search ul li{
	float: left;
}

@media (max-width: 575px) {
	.board-search{
		width: 100%;
		overflow: hidden;
		text-align: right;
	}
	.board-search select{
		width: 70px;
		height: 36px;
		padding: 0 7px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search input{
		width: 160px;
		height: 36px;
		padding: 0 10px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search .btn-list-search{
		width: 36px;
		height: 36px;
		background-color: #717171;
		border: 0;
		padding: 5px 0 0 0;
	}
}
@media (min-width: 576px) {
	.board-search{
		width: 100%;
		overflow: hidden;
		text-align: right;
	}
	.board-search select{
		width: 90px;
		height: 36px;
		padding: 0 7px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search input{
		width: 260px;
		height: 36px;
		padding: 0 10px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search .btn-list-search{
		width: 36px;
		height: 36px;
		background-color: #717171;
		border: 0;
		padding: 5px 0 0 0;
	}
}
@media (min-width: 768px){
	.board-search select{
		width: 110px;
		height: 44px;
		padding: 0 7px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search input{
		width: 260px;
		height: 44px;
		padding: 0 10px;
		margin: 0 5px 0 0;
		font-size: 1rem;
	}
	.board-search .btn-list-search{
		width: 44px;
		height: 44px;
		background-color: #717171;
		border: 0;
		padding: 5px 0 0 0;
	}
}


/* 게시판-리스트 */
.board-list table{
	border-top: 2px solid #333333;
}
.board-list table td a{
	color: #333333;
}
.board-list table thead tr:hover{
	background-color: #FFFFFF;
}
.board-list table tr:hover{
	background-color: #f9f9f9;
}
.board-list table .board-new{
	width: 15px;
	height: 15px;
	font-family: 'Lato', sans-serif;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	background-color: #4273e8;	
	display: inline-block;
	text-align: center;
	margin: 0 0 0 8px;
}
.td-center{
	text-align: center !important;
}

@media (max-width: 575px) {
	.board-list{
		width: 100%;
		overflow: hidden;
		padding: 10px 0 0 0;
	}
	.board-list table tr{
		display: block;
		border-bottom: 1px solid #d8d8d8;
	}
	.board-list table td{		
		color: #333333;
		text-align: left;
	}
}
@media (min-width: 576px) {
	.board-list{
		width: 100%;
		overflow: hidden;
		padding: 14px 0 0 0;
	}
	.board-list table thead{
		display: table-header-group !important;
	}
	.board-list table th{
		height: 40px;
		color: #1e1e1e;
		font-weight: 400;
		border-bottom: 1px solid #d8d8d8;
		text-align: center;	
	}
	.board-list table td{
		height: 40px;
		color: #333333;
		border-bottom: 1px solid #d8d8d8;
		text-align: center;
		display: table-cell !important;
	}
}
@media (min-width: 768px){
	.board-list table th{
		height: 50px;
		color: #1e1e1e;
		font-weight: 400;
		border-bottom: 1px solid #d8d8d8;
		text-align: center;	
	}
	.board-list table td{
		height: 50px;
		color: #333333;
		border-bottom: 1px solid #d8d8d8;
		text-align: center;	
	}
}

.board-list table .td-title{
	text-align: left;
	padding: 0 0 0 20px;
}
.board-list table .td-title .td-title-data{
	padding: 0 0 0 5px;
}

@media (max-width: 575px) {
	.board-list table .td-title{
		width: 100%;
		display: block;
		padding: 10px 0 2px 10px;
	}
	.board-list table .td-data{
		width: 100%;
		display: block;
		padding: 0 0 10px 10px;
		color: #787878;
	}
}
@media (min-width: 576px) {
	.board-list table .td-no{
		width: 10%;
	}
	.board-list table .td-title{
		width: 75%;	
	}
	.board-list table .td-data{
		width: 15%;
	}
}

/* 게시판 페이지 */
.board-pagination ul{
	display: inline-block;
}
.board-pagination ul li{
	float: left;
}
.board-pagination ul li a:hover{
	background-color: #f1f1f1;
}
.board-pagination ul .active a{
	background-color: #7a7a7a;
	border: 1px solid #7a7a7a;
	color: #FFFFFF;
}
.board-pagination ul .active a:hover{
	background-color: #7a7a7a;
	border: 1px solid #7a7a7a;
}

@media (max-width: 575px) {
	.board-pagination{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 10px 0 0 0;
	}
	.board-pagination ul li a{
		width: 27px;
		height: 27px;
		color: #7a7a7a;
		font-size: 0.9375rem;
		line-height: 23px;
		border: 1px solid #d8d8d8;
		text-align: center;
		display: inline-block;
		margin: 0 3px;
	}
}
@media (min-width: 576px) {
	.board-pagination{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 20px 0 0 0;
	}
	.board-pagination ul li a{
		width: 26px;
		height: 26px;
		color: #7a7a7a;
		font-size: 0.9375rem;
		line-height: 24px;
		border: 1px solid #d8d8d8;
		text-align: center;
		display: inline-block;
		margin: 0 3px;
	}
}
@media (min-width: 768px){
	.board-pagination{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 30px 0 0 0;
	}
	.board-pagination ul li a{
		width: 30px;
		height: 30px;
		color: #7a7a7a;
		font-size: 0.9375rem;
		line-height: 28px;
		border: 1px solid #d8d8d8;
		text-align: center;
		display: inline-block;
		margin: 0 3px;
	}
}
@media (min-width: 992px){
	.board-pagination{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 40px 0 0 0;
	}
	.board-pagination ul li a{
		width: 34px;
		height: 34px;
		color: #7a7a7a;
		font-size: 0.9375rem;
		line-height: 32px;
		border: 1px solid #d8d8d8;
		text-align: center;
		display: inline-block;
		margin: 0 3px;
	}
}

/********************************** 게시판 상세글 **********************************/
/* 기본 */
.board-read table{
	border-top: 2px solid #333333;
}
.board-read table .td-content{
	line-height: 1.75rem;
}
.board-read table .td-content img{
	max-width: 100%;
	line-height: 0;
}
.board-read table .td-date span{
	color: #787878;
	padding: 0 0 0 12px;
}
.board-read table .td-data a{
	color: #1e1e1e;
}



@media (max-width: 575px) {
	.board-read table td{
		border-bottom: 1px solid #d8d8d8;
		padding: 10px 10px;
		display: block;
	}
	.board-read table .td-title{
		width: 100%;
		color: #1e1e1e;
		font-size: 1.125rem;
		line-height: 1.125rem;
		border-bottom: 0;
		padding-bottom:0;
	}
	.board-read table .td-date{
		width: 100%;
		padding-top: 5px;
	}
	iframe { width: 100% !important; height: 50vw !important;}
}
@media (min-width: 576px) {
	.board-read table td{
		border-bottom: 1px solid #d8d8d8;
		padding: 15px 15px;
	}
	.board-read table .td-title{
		width: 70%;
		color: #1e1e1e;
		font-size: 1.125rem;
		line-height: 1.125rem;
	}
	.board-read table .td-date{
		width: 30%;
		text-align: right;
	}
	iframe { width: 100% !important; height: 50vw !important;}
}
@media (min-width: 768px){
	.board-read table td{
		border-bottom: 1px solid #d8d8d8;
		padding: 15px 15px;
	}
	.board-read table .td-title{
		width: 70%;
		color: #1e1e1e;
		font-size: 1.125rem;
		line-height: 1.125rem;
	}
	.board-read table .td-date{
		width: 30%;
		text-align: right;
	}
	iframe { width: 100% !important; height: 50vw !important;}
}
@media (min-width: 992px){
	.board-read table .td-title{
		width: 70%;
		color: #1e1e1e;
		font-size: 1.125rem;
		line-height: 1.125rem;
	}
	.board-read table .td-date{
		width: 30%;
		text-align: center;
	}
	iframe { width: 100% !important; height: 720px !important;}
}

/* 버튼 */
@media (max-width: 575px) {
	.board-read-btn{
		width: 100%;
		overflow: hidden;	
		text-align: center;
		padding: 20px 0 0 0;
	}
}
@media (min-width: 576px) {
	.board-read-btn{
		width: 100%;
		overflow: hidden;	
		text-align: center;
		padding: 20px 0 0 0;
	}
}
@media (min-width: 768px){
	.board-read-btn{
		width: 100%;
		overflow: hidden;	
		text-align: center;
		padding: 20px 0 0 0;
	}
}

/* 이전글, 다음글 */
.board-read-list{
	width: 100%;
	overflow: hidden;
}
.board-read-list .brl-name img{
	padding: 0 0 0 10px;
	vertical-align: middle;
}
.board-read-list li a{
	color: #333333;
}
.board-read-list li:hover{
	background-color: #f9f9f9;
}

@media (max-width: 575px) {
	.board-read-list li{
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #d8d8d8;
		padding: 14px 15px;
	}
	.board-read-list .brl-name{
		width: 20%;
		float: left;
		color: #787878;
	}
	.board-read-list .brl-title{
		width: 80%;
		float: left;
		padding: 0 15px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
@media (min-width: 576px) {
	.board-read-list li{
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #d8d8d8;
		padding: 14px 15px;
	}
	.board-read-list .brl-name{
		width: 12%;
		float: left;
		color: #787878;
	}
	.board-read-list .brl-title{
		width: 73%;
		float: left;
		padding: 0 15px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-read-list .brl-data{
		width: 15%;
		float: left;
		text-align: right;
	}
}
@media (min-width: 768px){
	.board-read-list li{
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #d8d8d8;
		padding: 14px 15px;
	}
	.board-read-list .brl-name{
		width: 10%;
		float: left;
		color: #787878;
	}
	.board-read-list .brl-title{
		width: 75%;
		float: left;
		padding: 0 15px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-read-list .brl-data{
		width: 15%;
		float: left;
		text-align: right;
	}
}
@media (min-width: 992px){
	.board-read-list li{
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid #d8d8d8;
		padding: 14px 20px;
	}
	.board-read-list .brl-title{
		width: 75%;
		float: left;
		padding: 0 20px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/*패스워드*/
.board-read .board-read-pass{
	width: 100%;
	background-color: #f8f8f8;
	padding: 10px 0;
	font-size: 1rem;
	line-height: 1rem;
}
.board-read .board-read-pass input{
	min-width: 150px;
	height: 40px;
	padding: 0 10px;
}
.board-read .board-read-pass .btn-pass-confirm{
	background-color: #4273e8;
	color: #FFFFFF;
	font-size: 1rem;
	line-height: 1rem;
	padding: 12px 15px;
	border: 0;
}
.board-read .board-read-pass .btn-pass-cancel{
	background-color: #373737;
	color: #FFFFFF;
	font-size: 1rem;
	line-height: 1rem;
	padding: 12px 15px;
	border: 0;
}

/********************************** 게시판 쓰기 **********************************/
/* 기본 */
.board-write table b{
	color: #ff0000;
	padding: 0 0 0 3px;
}
.board-write input:focus,
.board-write textarea:focus{
	border: 1px solid #000000;
	outline: none;
}
.board-write-notice{
	text-align: right;
}
.board-write-notice b{
	color: #ff0000;
	padding: 0 3px 0 0;
}

@media (max-width: 575px) {	
	.board-write table{
		border-top: 2px solid #333333;
		margin: 5px 0 0 0;
	}
	.board-write table th{
		width: 24%;
		background-color: #f9f9f9;
		border-bottom: 1px solid #d8d8d8;
		color: #1e1e1e;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.188rem;
		padding: 5px 10px;
	}
	.board-write table td{
		width: 76%;
		border-bottom: 1px solid #d8d8d8;
		padding: 5px 10px;
	}
	.board-write table input,
	.board-write table select,
	.board-write table textarea{
		height: 36px;
		border: 1px solid #d8d8d8;
		padding: 0 10px;
	}
	.board-write input[type=checkbox]+ label:before{
		top: 1px;
	}
	.board-write input[type=checkbox] + label{
		color: #1e1e1e;
		font-size: 1rem;
	}
	.board-write table .btn-policy{
		color: #FFFFFF;
		font-size:  0.9375rem;
		line-height:  0.9375rem;	
		background-color: #717171;
		padding: 4px 9px 5px 9px;
		display: inline-block;
		margin: 5px 0 0 0;
	}
}
@media (min-width: 576px) {
	.board-write table{
		border-top: 2px solid #333333;
		margin: 10px 0 0 0;
	}
	.board-write table th{
		width: 24%;
		background-color: #f9f9f9;
		border-bottom: 1px solid #d8d8d8;
		color: #1e1e1e;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.188rem;
		padding: 5px 10px;
	}
	.board-write table td{
		width: 76%;
		border-bottom: 1px solid #d8d8d8;
		padding: 5px 15px;
	}
	.board-write table input,
	.board-write table select,
	.board-write table textarea{
		height: 36px;
		border: 1px solid #d8d8d8;
		padding: 0 10px;
	}
	.board-write input[type=checkbox]+ label:before{
		top: 1px;
	}
	.board-write input[type=checkbox] + label{
		color: #1e1e1e;
		font-size: 1rem;
	}
	.board-write table .btn-policy{
		color: #FFFFFF;
		font-size:  0.9375rem;
		line-height:  0.9375rem;	
		background-color: #717171;
		padding: 4px 9px 5px 9px;
		display: inline-block;
		margin: 0 0 0 5px;
	}
}
@media (min-width: 768px){
	.board-write table{
		border-top: 2px solid #333333;
		margin: 10px 0 0 0;
	}
	.board-write table th{
		width: 20%;
		background-color: #f9f9f9;
		border-bottom: 1px solid #d8d8d8;
		color: #1e1e1e;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.188rem;
		padding: 20px 10px;
	}
	.board-write table td{
		width: 80%;
		border-bottom: 1px solid #d8d8d8;
		padding: 5px 15px;
	}
	.board-write table input,
	.board-write table select,
	.board-write table textarea{
		height: 36px;
		border: 1px solid #d8d8d8;
		padding: 0 10px;
	}
	.board-write input[type=checkbox]+ label:before{
		top: 1px;
	}
	.board-write input[type=checkbox] + label{
		color: #1e1e1e;
		font-size: 1rem;
	}
	.board-write table .btn-policy{
		color: #FFFFFF;
		font-size: 0.8125rem;
		line-height: 0.8125rem;	
		background-color: #717171;
		padding: 4px 9px 5px 9px;
		display: inline-block;
		margin: 0 0 0 5px;
	}
}
@media (min-width: 992px){
	.board-write table th{
		width: 15%;
		background-color: #f9f9f9;
		border-bottom: 1px solid #d8d8d8;
		color: #1e1e1e;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.188rem;
		padding: 20px 10px;
	}
	.board-write table td{
		width: 85%;
		border-bottom: 1px solid #d8d8d8;
		padding: 5px 15px;
	}
	.board-write table input,
	.board-write table select,
	.board-write table textarea{
		height: 40px;
		border: 1px solid #d8d8d8;
		padding: 0 10px;
	}
	.board-write input[type=checkbox]+ label:before{
		top: 2px;
	}
	.board-write input[type=checkbox] + label{
		color: #1e1e1e;
		font-size: 1rem;
	}
}

@media (min-width: 1300px){
	.board-write input[type=checkbox]+ label:before{
		top: 5px;
	}
}

/* 버튼 */
.board-write-btn ul{
	display: inline-block;
}
.board-write-btn ul li{
	float: left;
}
.board-write-btn ul .li-1{
	padding: 0 10px 0 0;
}

@media (max-width: 575px) {
	.board-write-btn{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 20px 0 0 0;
	}
}
@media (min-width: 576px) {
	.board-write-btn{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 20px 0 0 0;
	}
}
@media (min-width: 768px){
	.board-write-btn{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 35px 0 0 0;
	}
}

/* input 넓이 */
@media (max-width: 575px) {
	.board-write table .board-title{
		width: 100%;
	}
	.board-write table .board-email{
		width: 100%;
	}
	.board-write table .board-name{
		width: 50%;
	}
	.board-write table .board-hp1{
		width: 26%;
	}
	.board-write table .board-hp2{
		width: 26%;
	}
	.board-write table .board-hp3{
		width: 34%;
	}
	.board-write table .board-sort{
		width: 100%;
	}
	.board-write table .board-time{
		width: 100%;
	}
	.board-write table .board-password{
		width: 50%;
	}
	.board-write table .board-contents{
		width: 100%;
		height: 100px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
@media (min-width: 576px) {
	.board-write table .board-title{
		width: 100%;
	}
	.board-write table .board-email{
		width: 100%;
	}
	.board-write table .board-name{
		width: 35%;
	}
	.board-write table .board-hp1{
		width: 20%;
	}
	.board-write table .board-hp2{
		width: 20%;
	}
	.board-write table .board-hp3{
		width: 25%;
	}
	.board-write table .board-sort{
		width: 50%;
	}
	.board-write table .board-time{
		width: 50%;
	}
	.board-write table .board-password{
		width: 35%;
	}
	.board-write table .board-contents{
		width: 100%;
		height: 120px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
@media (min-width: 768px){
	.board-write table .board-title{
		width: 80%;
	}
	.board-write table .board-email{
		width: 52%;
	}
	.board-write table .board-name{
		width: 30%;
	}
	.board-write table .board-hp1{
		width: 15%;
	}
	.board-write table .board-hp2{
		width: 15%;
	}
	.board-write table .board-hp3{
		width: 18%;
	}
	.board-write table .board-password{
		width: 26%;
	}
	.board-write table .board-sort{
		width: 35%;
	}
	.board-write table .board-time{
		width: 35%;
	}
	.board-write table .board-contents{
		width: 100%;
		height: 120px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
@media (min-width: 992px){
	.board-write table .board-title{
		width: 65%;
	}
	.board-write table .board-email{
		width: 55%;
	}
	.board-write table .board-name{
		width: 25%;
	}
	.board-write table .board-hp1{
		width: 12%;
	}
	.board-write table .board-hp2{
		width: 12%;
	}
	.board-write table .board-hp3{
		width: 15%;
	}
	.board-write table .board-sort{
		width: 30%;
	}
	.board-write table .board-time{
		width: 30%;
	}
	.board-write table .board-password{
		width: 20%;
	}
	.board-write table .board-contents{
		width: 80%;
		height: 170px;
		padding-top: 10px;
		padding-bottom: 10px;
		margin: 5px 0 0 0;
	}
}
@media (min-width: 1300px){
	.board-write table .board-title{
		width: 65%;
	}
	.board-write table .board-email{
		width: 41%;
	}
	.board-write table .board-name{
		width: 25%;
	}
	.board-write table .board-hp1{
		width: 12%;
	}
	.board-write table .board-hp2{
		width: 12%;
	}
	.board-write table .board-hp3{
		width: 15%;
	}
	.board-write table .board-sort{
		width: 22%;
	}
	.board-write table .board-time{
		width: 22%;
	}
	.board-write table .board-password{
		width: 20%;
	}
	.board-write table .board-contents{
		width: 65%;
		height: 170px;
		padding-top: 10px;
		padding-bottom: 10px;
		margin: 5px 0 0 0;
	}
}

/********************************** 후기리스트 **********************************/
.board-list-review li .layout a{
	display: block;
}
.board-list-review li .layout a:hover .blr-text{
	text-decoration : underline #888888 solid;
}
.board-search-review{
	background-color: #f9f9f9;
	text-align: center;
	padding: 10px 0 5px 0;
}

@media (max-width: 575px) {
	.board-list-review{
		width: 100%;
		overflow: hidden;
	}
	.board-list-review li{
		width: 100%;
		float: left;
		padding: 0 0 15px 0;
	}
	.board-list-review li .layout{
		width: 100%;
		overflow: hidden;
		border: 1px solid #d8d8d8;
		border-radius: 10px 10px;
		padding: 15px 13px;
		 transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
	}
	.board-list-review li .layout .blr-img{
		width: 40%;
		height: auto;
		float: left;	
	}
	.board-list-review li .layout .blr-img img{
		width: 100%;
		border-radius: 10px 10px;
	}
	.board-list-review li .layout .blr-title-xs{
		width: 60%;
		float: left;
	}
	.board-list-review li .layout .blr-title{
		color: #1e1e1e;
		font-size: 1.25rem;
		line-height: 1.25rem;
		padding: 5px 0 8px 13px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-list-review li .layout .blr-text{
		color: #545353;
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 0 0 0 13px;
		display: -webkit-box;
		-webkit-line-clamp: 2; /* 라인수 */
		-webkit-box-orient: vertical;
		white-space: normal;
		height: 3.0em;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-list-review li .layout .blr-data{
		background-color: #FFFFFF;
		border-radius: 0;
		color: #787878;
		font-size: 0.9375rem;
		line-height: 0.9375rem;
		padding: 10px 0 0 0;		
		text-align: right;
	}
	.board-review-btn{
		width: 100%;
		overflow: hidden;
		text-align: center;
		padding: 20px 0 20px 0;
	}
	.board-pagination-review{
		padding-top: 10px;
	}
}
@media (min-width: 576px) {
	.board-list-review{
		width: 560px;
		overflow: hidden;
	}
	.board-list-review li{
		width: 50%;
		float: left;
		padding: 0 20px 20px 0;
	}
	.board-list-review li .layout{
		width: 100%;
		overflow: hidden;
		border: 1px solid #d8d8d8;
		border-radius: 10px 10px;
		 transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
	}
	.board-list-review li .layout .blr-img{
		height: 136px;
	}
	.board-list-review li .layout .blr-img img{
		width: 100%;
		height: 136px;
		border-radius: 10px 10px 0 0;
	}
	.board-list-review li .layout .blr-title{
		color: #1e1e1e;
		font-size: 1.375rem;
		line-height: 1.375rem;
		padding: 20px 20px 15px 20px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-list-review li .layout .blr-text{
		color: #545353;
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 0 20px;
		display: -webkit-box;
		-webkit-line-clamp: 2; /* 라인수 */
		-webkit-box-orient: vertical;
		white-space: normal;
		height: 3.0em;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.board-list-review li .layout .blr-data{
		background-color: #f9f9f9;
		border-radius: 0 0 10px 10px;
		color: #787878;
		font-size: 0.9375rem;
		line-height: 0.9375rem;
		padding: 14px 20px;
		margin: 15px 0 0 0;
		text-align: right;
	}
	.board-review-btn{
		width: 100%;
		overflow: hidden;
		text-align: right;
		padding: 20px 0 20px 0;
	}
	.board-pagination-review{
		padding-top: 20px;
	}
}
@media (min-width: 768px){
	.board-list-review{
		width: 740px;
		overflow: hidden;
	}
	.board-list-review li{
		width: 50%;
		float: left;
		padding: 0 20px 20px 0;
	}
	.board-list-review li .layout .blr-img{
		height: 183px;
	}
	.board-list-review li .layout .blr-img img{
		height: 183px;
	}
	.board-list-review li .layout .blr-data{
		background-color: #f9f9f9;
		border-radius: 0 0 10px 10px;
		color: #787878;
		font-size: 0.9375rem;
		line-height: 0.9375rem;
		padding: 14px 20px;
		margin: 25px 0 0 0;
		text-align: right;
	}
	.board-review-btn{
		width: 100%;
		overflow: hidden;
		text-align: right;
		padding: 20px 0 40px 0;
	}
}
@media (min-width: 992px){
	.board-list-review{
		width: 980px;
		overflow: hidden;
	}
	.board-list-review li{
		width: 33.3%;
		float: left;
		padding: 0 20px 20px 0;
	}
	.board-list-review li .layout .blr-img{
		height: 160px;
	}
	.board-list-review li .layout .blr-img img{
		height: 160px;
	}
}
@media (min-width: 1300px){
	.board-list-review{
		width: 1230px;
		overflow: hidden;
	}
	.board-list-review li{
		width: 33.3%;
		float: left;
		padding: 0 30px 30px 0;
	}
	.board-list-review li .layout .blr-img{
		height: 199px;
	}
	.board-list-review li .layout .blr-img img{
		height: 199px;
	}
}

/********************************** FAQ **********************************/
.faq{
	width: 100%;
	overflow: hidden;
	border-top: 2px solid #333333;
}

.faq li.q{
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #d8d8d8;
	cursor: pointer;
}

.faq li.a{
	overflow: hidden;
	display: none;
	background-color: #f9f9f9;
	padding: 20px 20px 20px 0;
}

@media (max-width: 575px) {
	.faq li{	
		padding: 8px 0 13px 0;
	}
	.faq li.q .q-icon{
		width: 13%;
		float: left;
		text-align: center;
		color: #4273e8;
		font-weight: 700;
		font-size: 1.25rem;
	}
	.faq li.q .q-title{
		width: 87%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
		padding: 5px 0 0 0;
	}
	.faq li.a .a-icon{
		width: 13%;
		float: left;
		text-align: center;
		color: #ff8707;
		font-weight: 700;
		font-size: 1.25rem;
	}
	.faq li.a .a-content{
		width: 87%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
	}
}
@media (min-width: 576px) {
	.faq li{	
		padding: 8px 0 13px 0;
	}
	.faq li.q .q-icon{
		width: 10%;
		float: left;
		text-align: center;
		color: #4273e8;
		font-weight: 700;
		font-size: 1.375rem;
	}
	.faq li.q .q-title{
		width: 90%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
		padding: 5px 0 0 0;
	}
	.faq li.a .a-icon{
		width: 10%;
		float: left;
		text-align: center;
		color: #ff8707;
		font-weight: 700;
		font-size: 1.375rem;
	}
	.faq li.a .a-content{
		width: 90%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
	}
}
@media (min-width: 768px){
	.faq li{	
		padding: 10px 0 15px 0;
	}
	.faq li.q .q-icon{
		width: 10%;
		float: left;
		text-align: center;
		color: #4273e8;
		font-weight: 700;
		font-size: 1.5rem;
	}
	.faq li.q .q-title{
		width: 90%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
		padding: 10px 0 0 0;
	}
	.faq li.a .a-icon{
		width: 10%;
		float: left;
		text-align: center;
		color: #ff8707;
		font-weight: 700;
		font-size: 1.5rem;
	}
	.faq li.a .a-content{
		width: 90%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
	}
}
@media (min-width: 992px){
	.faq li.q .q-icon{
		width: 5%;
		float: left;
		text-align: center;
		color: #4273e8;
		font-weight: 700;
		font-size: 1.5rem;
	}
	.faq li.q .q-title{
		width: 95%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
		padding: 10px 0 0 0;
	}
	.faq li.a .a-icon{
		width: 5%;
		float: left;
		text-align: center;
		color: #ff8707;
		font-weight: 700;
		font-size: 1.5rem;
	}
	.faq li.a .a-content{
		width: 95%;
		float: left;
		color: #333333;
		font-size: 1.063rem;
	}
}

/********************************** 게시판 버튼 **********************************/
/* 리스트 */
.board-list-btn{
	width: 100%;
	overflow: hidden;
	text-align: right;
	padding: 20px 0 0 0;
}
.btn-list-write{
	background-color: #202020;
	color: #ffffff;
	font-size: 1.125rem;
	line-height: 1.125rem;
	padding: 14px 40px;
	border: 0;
	border-radius: 5px;
}

/* 상세글 */
@media (max-width: 575px) {
	.btn-read-list{
		background-color: #202020;
		color: #ffffff;
		font-size: 1rem;
		line-height: 1rem;
		padding: 12px 25px;
		border: 0;
	}
	.btn-read-modify{
		background-color: #4273e8;
		color: #ffffff;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1rem;
		padding: 12px 25px;
		border: 0;
	}
	.btn-read-delete{
		background-color: #cf0606;
		color: #ffffff;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1rem;
		padding: 12px 25px;
		border: 0;
	}
}
@media (min-width: 576px) {
	.btn-read-list{
		background-color: #202020;
		color: #ffffff;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1rem;
		padding: 14px 35px;
		border: 0;
	}
	.btn-read-modify{
		background-color: #4273e8;
		color: #ffffff;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1rem;
		padding: 14px 35px;
		border: 0;
	}
	.btn-read-delete{
		background-color: #cf0606;
		color: #ffffff;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1rem;
		padding: 14px 35px;
		border: 0;
	}
}

/* 글쓰기 */
@media (max-width: 575px) {
	.btn-write{
		background-color: #eb2729;
		color: #ffffff;
		font-size: 1.25rem;
		line-height: 1.25rem;
		padding: 16px 40px;
		border: 0;
	}
	.btn-write-list{
		background-color: #9e9e9e;
		color: #ffffff;
		font-size: 1.25rem;
		line-height: 1.25rem;
		padding: 16px 25px;
		border: 0;
	}
}
@media (min-width: 576px) {
	.btn-write{
		background-color: #eb2729;
		color: #ffffff;
		font-weight: 400;
		font-size: 1.25rem;
		line-height: 1.25rem;
		padding: 18px 70px;
		border: 0;
	}
	.btn-write-list{
		background-color: #9e9e9e;
		color: #ffffff;
		font-weight: 400;
		font-size: 1.25rem;
		line-height: 1.25rem;
		padding: 16px 40px;
		border: 0;
	}
}

/* 후기 리스트 */
	.btn-review-write{
		background-color: #202020;
		color: #ffffff;
		font-weight: 400;
		font-size: 1.125rem;
		line-height: 1.125rem;
		padding: 16px 54px;
		border: 0;
	}

/* 첨부파일 CSS 꾸미기 */
input[type=text].file_input_textbox {
	float: left;
	width: 500px; height: 35px; border: 1px solid #ccc; box-sizing: border-box; padding: 10px 10px 10px 15px; font-size: 12px; background-color: #e1e1e1; color: #999999; 
}
.file_input_textbox2 {
	float: left;
	position: absolute;
	top: 0px;
	left: 0px;

	width: 100%; height: 30px; border: 1px solid #ccc; box-sizing: border-box;  font-size: 12px; background-color: #eee; color: #999999; 
}
.file_input_div {
	position: relative;
	width: 140px;
	height: 40px;
	overflow: hidden;

}
.file_input_div2 {
	position: relative;
	width: 98%;
	height: 40px;
	overflow: hidden;

}
input[type="file"] {
	position: absolute;
	top: 5px;
	left: 0px;
	width: 350px;
	height: 34px;
	opacity: 0;
}
input[type=button].file_input_button {
	width: 100px;
	height: 30px;
	position: absolute;
	top: 0px;

	border-style: solid;
	margin-left: 10px;
	border: 1px solid #999999; background-color: #666666; font-size: 15px; font-weight: 500; color: #ffffff; 
	cursor: pointer;
}
input[type=button].file_input_button2 {
	width: 100px;
	height: 30px;
	position: absolute;
	top: 0px;
	right: 0px;
	border-style: solid;
	margin-left: 10px;
	border: 1px solid #999999; background-color: #666666; font-size: 15px; font-weight: 500; color: #ffffff; 
	cursor: pointer;
}

.file_input_hidden {
	font-size: 15px;
	position: absolute;
	right: 0px;
	top: 0px;
	opacity: 0;

	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	-khtml-opacity: 0;
	-moz-opacity: 0;
}
.file_input_hidden2 {
	font-size: 15px;
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
	width: 100%;

	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	-khtml-opacity: 0;
	-moz-opacity: 0;
}
