/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

/*	#map {
		width: 116%;
		right: 50px;
	}
	*/

	.topImgWrapp .topTitle {
	    font-size: 1.5em;
	    top: 250px;
	    left: 50px;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	header.default {
		position: relative!important;
	}

	.wrappLogo {
		float: none!important;
		text-align: center;

	}

	.logo {
		height: 120px;
	}
	
	.language {
		height: 120px;
	}

	div.typeChannel {
		padding: 0.8em 0;

	}

	div.typeChannel a {
		display: block;
	}


	.wrapp50 {
		float: none!important;
		width: 100%;
	}
	
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}