/* CLOSE BTN */
.am_mod_close {
    position: absolute;
    right: 8px;
	top: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 46px;
    opacity: 0.6;
}
.am_mod_close:hover {
    opacity: 1;
}
/* POPUP */
.am_mod_popup_overlay {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width: 100%;
    height: 100%;
	overflow: auto;
}
.am_mod_popup {
    width: 800px;
    max-width: 98%;
    margin: 0 auto 20px auto;
    padding: 0;
    border: 1px solid #404040;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    -moz-border-radius: 10px;
}
/* SLIDE */
.am_mod_popup_slide {
    position: relative;
}
/* NOTIFY */
.am_mod_popup_notify {
	position: fixed;
	z-index: 999999999;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}
.am_mod_popup_notify.top_center {
	width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ddd;
}
.am_mod_popup_notify.top_left {
	width: 400px;
    max-width: 100%;
    top: 0;
    left: 0;
	margin: 20px;
    border: 1px solid #ddd;
}
.am_mod_popup_notify.top_right {
	width: 400px;
    max-width: 100%;
    top: 0;
    right: 0;
	margin: 20px;
    border: 1px solid #ddd;
}
.am_mod_popup_notify.bottom_center {
	width: 100%;
    bottom: 0;
    left: 0;
    border-top: 1px solid #ddd;
}
.am_mod_popup_notify.bottom_left {
	width: 400px;
    max-width: 100%;
    bottom: 0;
    left: 0;
	margin: 20px;
    border: 1px solid #ddd;
}
.am_mod_popup_notify.bottom_right {
	width: 400px;
    max-width: 100%;
    bottom: 0;
    right: 0;
	margin: 20px;
    border: 1px solid #ddd;
}