/*
/* Mobile First */

/* styles for less than 400px */
/*
@media screen 
and (max-width : 399px) {
}
	
#logo {
	background: transparent url(images/mobile_logo.png) no-repeat;
	width:100%;
	min-height: 70px;
}	
	

/* styles for 400px - 600px */
/*
@media screen 
and (min-width : 400px) 
and (max-width : 599px) {
}

#logo {
	background: transparent url(images/mobile_logo.png) no-repeat;
	width:100%;
	min-height: 90px;
}


/* styles for 600px - 900px */
/*
@media screen 
and (min-width : 600px) 
and (max-width : 900px) {
#logo {
	text-align:left;
}

#logo {
	background: #fff url(images/mobile_logo.png)no-repeat;
	width:100%;
	min-height: 50px;

/* styles for 901px - 1200px */
/*
@media screen 
and (min-width : 901px) {
#header_social_cont {
	display:block;

	#logo {
	background: #fff url(images/mobile_logo.png)no-repeat;
	width:100%;
	min-height: 50px;
