#overbox3 {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999999;
    display: block;
}
#infobox3 {
    margin: auto;
    position: relative;
    top: 0px;
    width: 100%;
    text-align:center;
    background-color: #F0E7E0;
}
#infobox3 p {
    line-height:58px;
    font-size:14px;
    text-align:center;
    color: white;
}
#infobox3 p a {
    margin-right:5px;
    text-decoration: underline;
}
.transparent {
	zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
}
.flex{
    display: flex;
}
.w100{
    width: 100%;
}
.w25{
    width: 25%;
}
.w50{
    width: 50%;
}
.h100{
    height: 100%;
}
.wrap{
    flex-wrap: wrap;
}
.ali_center{
    align-items: center;
}
.jcon_center{
    justify-content: center;
}
.space_between{
    justify-content: space-between;
}
.flex_end{
    justify-content: flex-end;
}
.flex_column{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.pointer{
    cursor: pointer;
}