/**
*
*		Media queries no responsive
*
**/


.hidden {
display: none;
visibility: hidden;
}

.visible-phone {
display: none !important;
}

.visible-tablet {
display: none !important;
}

.hidden-desktop {
display: none !important;
}

.visible-desktop {
display: inherit !important;
}


/** 		Miniimum width : 980 pixels 		**/

@media screen and (max-width: 979px) {

	body {
	min-width:980px;
	}
	
	#top-site, #middle-site, #bottom_site {
	position : relative;
	min-width:980px;
	}
	
	#bottom_site {
	clear:both;
	}

	.js {
	display : none;
	}
}