/* HEADER */
.header {
}

.header img {
	display: inline-block;
    vertical-align: middle;
} 

.text_block {
    border: 0px solid green;
    float: left; 
} 

@media (min-width: 40em) {
    .header img {
        width: 100px;
        height: 100px;
    	float: left;
        border:0px solid green;
    }
   
    .text_block table
    {
    	height:100px;
    }

    .text_block td, th {
        border: 0px solid black;
        padding-left: 1.5em;
    	text-align: center;
    }
    
    .text_block .text_big {
        display: inline-block;
        vertical-align: bottom;
    	font-size: 3em;
    	font-weight: bold;
    }
    
    .text_block .text_small {
        display: inline-block;
        vertical-align: top;
    	font-size: 2em;
    	color: green;
    	font-weight: bold;
    }
}

@media (max-width: 40em) {
    .header img {
        width: 50px;
        height: 50px;
    	float: left;
        border:0px solid green;
    }
    
    .text_block table
    {
    	height:50px;
    }
	
	.text_block td, th {
        border: 0px solid black;
        padding-left: 0.75em;
    	text-align: center;
    }
    
    .text_block .text_big {
        display: inline-block;
        vertical-align: bottom;
    	font-size: 1.5em;
    	font-weight: bold;
    }
    
    .text_block .text_small {
        display: inline-block;
        vertical-align: top;
    	font-size: 1em;
    	color: green;
    	font-weight: bold;
    }
	
}

