/**
* modal.min.css
* Author: Pedro Laxe
* Version: 1.0.4
* License: GPLv2
**/
.modal1 {
	left: 0;
	margin: 0 auto;
	opacity: 0;
	width:600px;
	position: absolute;
	top: -50%;
	visibility: hidden;
	width: 65%;
	box-shadow: 0 3px 7px rgba(0,0,0,.25);
	box-sizing: border-box;
	transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	
}
.modal1:target {
	opacity: 1;
	top: 50%;
	width:600px;
	visibility: visible;
}
.modal1 .header1, .modal1 .footer1 {
	border-bottom: 1px solid #e7e7e7;
	border-radius: 5px 5px 0 0;
}
.modal1 .footer1 {
	border: none;
	border-top: 1px solid #e7e7e7;
	border-radius: 0 0 5px 5px;
}
.modal1 h2 {
	margin: 0;
	color: #333333;
}
.modal1 .btn1 {
	float: left;
}
.modal1 .copy1, .modal1 .header1, .modal1 .footer1 {
	padding: 5px;
	color: #333333;
}
.modal-content1 {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius: 5px;
	color: #333333;
}
.modal .copy {
	background: #fff
}
.modal1 .overlay1 {
	background-color: #000;
	background: rgba(0,0,0,.8);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}
.copy1 ul li a {
	color: #333333;
	text-decoration: none;
}
/* Responsive Options */
@media screen and (min-width: 768px) {
	.modal1{
		width:600px;
		margin:0 auto;
		top: -50%;
	}
}
.modalcss-button1 {
    /* Structure */
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.modalcss-button1::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/*csslint outline-none:false*/

.modalcss-button1 {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    color: #444; /* rgba not supported (IE 8) */
    color: rgba(0, 0, 0, 0.80); /* rgba supported */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    background-color: #E6E6E6;
    text-decoration: none;
    border-radius: 2px;
}

.modalcss-button1-hover,
.modalcss-button1:hover,
.modalcss-button1:focus {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
    background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.modalcss-button1:focus {
    outline: 0;
}
.modalcss-button1-active,
.modalcss-button1:active {
    box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
    border-color: #000\9;
}

.modalcss-button1[disabled],
.modalcss-button-disabled1,
.modalcss-button-disabled1:hover,
.modalcss-button-disabled1:focus,
.modalcss-button-disabled1:active {
    border: none;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    filter: alpha(opacity=40);
    -khtml-opacity: 0.40;
    -moz-opacity: 0.40;
    opacity: 0.40;
    cursor: not-allowed;
    box-shadow: none;
}

.modalcss-button-hidden1 {
    display: none;
}

/* Firefox: Get rid of the inner focus border */
.modalcss-button1::-moz-focus-inner{
    padding: 0;
    border: 0;
}

.modalcss-button-primary1,
.modalcss-button-selected1,
a.modalcss-button-primary1,
a.modalcss-button-selected 1{
    background-color: rgb(0, 120, 231);
    color: #fff;
}
.button-success1,
        .button-error1,
        .button-warning1,
        .button-secondary1 {
            color: white;
            border-radius: 4px;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        }

        .button-success1 {
            background: rgb(28, 184, 65); /* this is a green */
        }

        .button-error1 {
            background: rgb(202, 60, 60); /* this is a maroon */
        }

        .button-warning1 {
            background: rgb(223, 117, 20); /* this is an orange */
        }

        .button-secondary1 {
            background: rgb(66, 184, 221); /* this is a light blue */
        }

 

