div#loading_box{
    width: 100%;
    height: 5%;
    bottom: 0%;
    background: #db4f55 url("../img/loading.gif") no-repeat 50% 50%;
    position: fixed;
    z-index: 999;
    display: none;
}

div#message_box{
	width: 50%;
    height: 10%;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: fixed;
    z-index: 9999999999;
    display: none;
    background: #ffffff;
    padding: 3%;
    text-align: center;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

div#message_box>p{
	display: none;
}

div#message_box>div.close_button{
	background: url("../img/feedback_close.png") no-repeat;
    width: 19px;
    height: 22px;
    position: absolute;
    right: 2%;
    z-index: 999;
    cursor: pointer;
    top: 7%;
}

div.select{
	position: relative;
	display: inline-block;
	margin: 0px 10px;
	min-width: 100px;
}
div.select>div.select_title{
	color: #000000;
	background: url("../img/selects_arrow.png") no-repeat 100% 40%;
	padding: 0px 20px 0px 0px;
	cursor: pointer;
}
div.select>div.select_list{
	position: absolute;
	background: #ffffff;
	border-top:2px solid #000000; 
	width: 100%;
	display: none;
	padding: 5% 0%;
	z-index: 999;
}
div.select>div.select_list>ul{}
div.select>div.select_list>ul li{
	text-align: center;
	color: #000000;
	padding: 2% 0%;
    margin: 1% auto;
}
div.select>div.select_list>ul li:hover{
	color: #d2232a;
	cursor: pointer;
}

#copy_box{
    width: 25%;
    height: 3%;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: fixed;
    z-index: 9999999999;
    display: none;
    background: #ffffff;
    padding: 3%;
    text-align: center;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

#copy_box>.close_link_button{
    background: url("../img/feedback_close.png") no-repeat;
    width: 19px;
    height: 22px;
    position: absolute;
    right: 2%;
    z-index: 999;
    cursor: pointer;
    top: 7%;
}

#copy_box input{
    margin: auto;
    width: 80%;
    border: 1px solid #cccccc;
    padding: 1%;
    font-size: 18px;
}