@charset "utf-8";
/* CSS Document */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 150px; /* Location of the box */
    left: 0;
    top: 0; 
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content */
.modal-pop {
    position: relative;
    background-color: #7E5600;
    margin: auto;
    padding: 10px 0;
    /*border: 1px solid #888;*/
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 30px 0 rgba(0,0,0,0.4),0 6px 30px 0 rgba(0,0,0,0.30);
    -webkit-box-shadow: 0 4px 30px 0 rgba(0,0,0,0.4),0 6px 30px 0 rgba(0,0,0,0.30);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 1.5s;
    animation-name: animatetop;
    animation-duration: 1.5s;
    color: #FFFFFF;
    border: solid 3px #FFF;
    border-radius: 8px;
    background-image: -webkit-repeating-linear-gradient(270deg,rgba(87,54,0,1.00) 0%,rgba(113,95,0,1.00) 100%);
    background-image: -moz-repeating-linear-gradient(270deg,rgba(87,54,0,1.00) 0%,rgba(113,95,0,1.00) 100%);
    background-image: -o-repeating-linear-gradient(270deg,rgba(87,54,0,1.00) 0%,rgba(113,95,0,1.00) 100%);
    background-image: repeating-linear-gradient(180deg,rgba(87,54,0,1.00) 0%,rgba(113,95,0,1.00) 100%);
    text-shadow: 1px 1px 2px #0B0A0A;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color:#00F;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close,
.close:hover,
.close:focus {
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
	margin-top:-15px;
	margin-right:-25px
}

.modal-header {
    padding: 5px 16px;
    color: white;
	border-bottom:dotted 1px #FFF;
	font-size:1.2em;
	font-weight:bold;
    margin-bottom: -20px
}

.modal-body {padding: 10px 15px;}

.modal-footer {
    padding: 5px 16px;
    color: white;
		border-top:dotted 1px #FFF;
		font-size:1em
}

/*#apDiv1 {
  position:absolute;
  left:17px;
  top:44px;
  width:143px;
  z-index:1;
  padding: 4px 10px;
  background-color:#694001;
  text-align: center;
  border: solid 1px #181B72;
}*/

