/*게시판 페이지 표시하는 박스 */
.pagebox_normal {
	display: inline-block;
    width: 30px;


    /*border: 1px solid #ddd;*/
	background-color: #eee;



    /*padding: 3px 5px 3px 5px;*/
    margin: 2px;
	text-align: center;
	text-decoration: none;
	color: #bbb;

}

.pagebox_select {
	display: inline-block;
    width: 30px;
    /*border: 1px solid #ccc;*/
	background-color: #eee;



    /*padding: 3px 11px 3px 5px;*/
    margin: 2px;
	text-align: center;
	font-weight: bolder;
	text-decoration: none;
	color: #999;

}


/* 밑줄만 있는 박스 - BODY 안의 타이틀 부분  */
.underlinebox_aaa {
	/*width : 100%;*/
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 25px;
	padding: 20px;
/*	background-color: #1f1b1b;*/
	/*color : #666;*/
/*	border-bottom: 2px dashed #888;*/
	border-bottom: 2px solid #aaa;
	line-height: 24px;
}



/* 주홍박스 */
.juhongbox {
	color: #fff;

	width : 90%;
	margin-left: auto; /* table을 화면 중앙에 오기 위해 */
	margin-right: auto;

	padding: 30px 30px 30px 30px;
	border-radius: 5px; /*둥근 사각형*/

	-webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);


	line-height:1.4em;



	background: rgba(255,117,33,1);
	background: -moz-linear-gradient(left, rgba(255,117,33,1) 0%, rgba(255,146,10,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,117,33,1)), color-stop(100%, rgba(255,146,10,1)));
	background: -webkit-linear-gradient(left, rgba(255,117,33,1) 0%, rgba(255,146,10,1) 100%);
	background: -o-linear-gradient(left, rgba(255,117,33,1) 0%, rgba(255,146,10,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,117,33,1) 0%, rgba(255,146,10,1) 100%);
	background: linear-gradient(to right, rgba(255,117,33,1) 0%, rgba(255,146,10,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7521', endColorstr='#ff920a', GradientType=1 );


}
