/*메모 박스*/
.memo_box {
    position: absolute;
    right: 176px;
    bottom: 107px;
    width:  572px;
    height: 361px;
    z-index: 10;
    /* font-family: 'KoPubDotum', sans-serif; */
    background: url(../images/memo/memo.png) no-repeat;
    background-size: 100% 100%;
}

.memo_box.hide {
	-webkit-clip: rect(0px 790px 74px 605px);
	-moz-clip: rect(0px 790px 74px 605px);
	clip: rect(0px 790px 74px 605px);
	background:none;
	/* -webkit-transition: all 0.3s 0.3s;
	-moz-transition: all 0.3s 0.3s;
	transition: all 0.3s 0.3s; */
}

.memo_box .hideButton_box {
    position: absolute;
    top: 10px;
	right: 25px;
	width: 180px;
    height: 64px;
	cursor:pointer;
	background: url(../images/memo/hideButton.png) no-repeat;
	background-size: 180px 64px;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.memo_box .closeButtom_box {
    position: absolute;
    top: 10px;
    right: 25px;
    width: 56px;
    height: 54px;
    cursor: pointer;
	/* background: url(../images/memo/btn_close.png) no-repeat;
	background-size: 180px 64px;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s; */
}

.memo_box .hideButton_box.on {
    background: url(../images/memo/showButton.png) no-repeat;
    background-size: 180px 64px;
	/*
	bottom: 10px;
    top: auto;
    left: 0px;
    right: auto; */
}

.memo_box .hideButton_box .hide_button {
    width: 100%;
	cursor:pointer;
	display: none;
}
.memo_box .deleteButton_box {
    position: absolute;
    bottom: 50px;
    right: 52px;
    width: 47px;
}

.memo_box .deleteButton_box:hover {
	-webkit-filter: hue-rotate(180deg);
	-moz-filter: hue-rotate(180deg);
	filter: hue-rotate(180deg);
}

.memo_box .deleteButton_box .delete_button {
    width: 100%;
    cursor:pointer;
}
.memo_box .contents {
    position: absolute;
    top: 85px;
    left: 0px;
    padding: 0 43px;
    color: #4D443E;
    display: block;
    width: 452px;
    height: 242px;
    font-family: 'KoPubDotum', sans-serif;
    font-size: 33px;
    font-weight: bold;
    overflow: auto;
    border: transparent;
    outline: 0px;
    word-break: break-all;
}

.memo_box .contents * {
    position: relative;
}

/**************************************** 스크롤 ****************************************/

::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}

::-webkit-scrollbar-button {
    background:transparent;
}
::-webkit-scrollbar-corner {
    width:0;
    height:0;
}
::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
    display: block;
    height:20px;
    background:transparent;
}
::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 10px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.2);
    cursor: pointer;
}
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.2);
    border-radius: 8px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.1);
}