/* Tribtec.ie - javascript loadingbox custom styling */
#processing_overlay{
    position: absolute;
	z-index:99998;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    background-color: #fff;
    opacity: 0.5;
    filter: alpha(opacity=50);
	cursor:wait;
}
#processing_container{
    font-family: Arial, sans-serif;
    font-size: 12px;
    background: transparent;
    color: #000;
	margin:0;
	padding:0;
	cursor:wait;
}

#processing_title{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    padding: 0em;
    margin: 0em;
	color:#999;
	text-transform:none;
}

#processing_content{
    text-align: center;
    padding: 10px;
    margin: 0em;
}

#processing_message{
    text-align: center;
    vertical-align: middle;
	width:150px; 
	height:150px;
	margin:0 auto;
	padding:0;

	-webkit-animation:spin 2s linear infinite;
	-moz-animation:spin 2s linear infinite;
	animation:spin 2s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform:rotate(360deg); }}
@-webkit-keyframes spin { 100% { -webkit-transform:rotate(360deg); }}
@keyframes spin { 100% { -webkit-transform:rotate(360deg); transform:rotate(360deg);}}
