
/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){
  body {
    width: 320px;
  }
  
  #slider-wrapper {
  	xdisplay: none;
	xborder: 3px solid #00ff00;
  }

}

/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){

.mobile_nav_wrapper, .home_mobile_wrapper {
	display: block;
}

#slider-wrapper {
  	xdisplay: none;
	xborder: 3px solid #00ff00;
  }


}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px){
  /* some CSS here */
  
  #slider-wrapper {
  	xdisplay: none;
  }
  
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){
  /* some CSS here */
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){

html { min-width:  1080px; }

body { min-width:  1080px; height: 100%; background-color: transparent; }

}


/* #### Desktops #### */
@media screen and (min-width: 1024px){
  /* some CSS here */
}