/*
    style.css
    web-communication.eu | 28/10/2015
    Copyright 2015 web-communication.eu
*/


/* BODY */
*,
*:after,
*:before {
    -webkit-box-sizing:      border-box;
    -moz-box-sizing:         border-box;
    box-sizing:              border-box;
    padding:                 0;
    margin:                  0;
}
 
* {
    outline:                 none;
} 
 
body,html,p {
    margin:                  0; 
    padding:                 0;
}

body{
	background:              #FFFFFF;/*#F2EEDD;*/
}
	
	
	
/* LOADER */	
#light {
     background-color:      rgba(255,255,255,0.8);/*rgba(255,255,255,0.6);*/
     position:              absolute;
     top:                   0;
     left:                  0;
     display:               none;
     z-index:               9999;
}
#loading {
        position:           fixed;
        /*background:         rgba(0, 0, 0, 0.85);*/
        width:              60px;/*200px;*/
        height:             60px;/*120px;*/
        left:               50%;
        top:                50%;
        margin-left:        -30px;/*-100px;*/
        margin-top:         -30px;
        display:            none;
        z-index:            10000;
}	
#loading img {
       max-width:			60px;
}	
 
#waiting {
        position:           fixed;
        background:         rgba(0, 0, 0, 0.85);
        width:              200px;
        height:             120px;
        left:               50%;
        top:                50%;
        margin-left:        -100px;
        margin-top:         -90px;
        display:            none;
        z-index:            10000;
}	 
.loader {
    font-family:            Verdana, Arial, Helvetica, sans-serif;
    font-size:              14px;
    color:                  #CCCCCC;
    text-decoration:        none;
    text-align:             center;
}




/* LINK */
a:focus {
    -moz-outline:           0;
    outline:                0;
    outline-offset:         0; 
}

img,
a img {
    border:                 none;
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}