/* #### Desktops #### */
@media screen and (min-width: 1024px){

}


/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){
  /* some CSS here */
}


/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){
  /* some CSS here */
}


/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px){
  /* some CSS here */
}


/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
   
    .ColumnRight {
  		display:none;
    }
	
	.PageBody {
		width: 90%;
		margin: 0 auto;
		padding: 0 10px 40px 10px;
	}
	
	.PageHeader {
		width: 100%;
	}
	
	.PageFooter {
		width: 97%;
	}
	
	.PageFooter table{
		width: 97%;
	}


/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){
  /* some CSS here */
}


/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){
  /* some CSS here */
}

