@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900&subset=latin,latin-ext);

*
{
    margin: 0;
    padding: 0;

    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */

    /* transition: all 0.5s ease; */
    /* -webkit-transition: all 0.5s ease; */

    outline: none;
}

html
{
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

body
{
    font-family: aller_light;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    min-height: 1000px;
	min-height: 100%;
    text-decoration: none;
    overflow-x: hidden;
    overflow-y: auto;
}

/* DIV BASE */
div
{
    position: relative;
    float: left;
}

.div_full
{
	width: 100%;
	height: auto;
}

.div_left
{
	float: left;
}

.div_right
{
	float: right;
}


/* EFFECT */


.hidden
{
	display: none;
}

.clickable
{
	
}

.clickable:hover
{
	cursor: pointer;
}

.div_global_default_loading_overlay
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100vw;
    height: 100vh;
    
    line-height: 100vh;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    
    color: rgba(255,255,255,0.5);
    background-color: rgba(0,0,0,0.5);
    
    z-index: 1000;
}

.div_global_default_loading_overlay .fa
{
    width: 100%;
    line-height: 100vh;
}
