@charset "UTF-8";
/* CSS Document 
This style sheet is for a media query. It will format the page for different size screens such as:
-a desktop computer
-a tablet or laptop
-a mobile phone

VERY IMPORTANT!!! -stack the styls from largest to smallest screens
*/

/*===============================================================================================
STYLES FOR DESKTOPS LARGER THAN 1025 PX WIDE
===============================================================================================*/
@media screen and (min-width:1025px){
	
}

/*===============================================================================================
STYLES FOR LAPTOPS AND TABLETS IN LANDSCAPE ORIENTATION LESS THAN 1024 PX WIDE
===============================================================================================*/
@media screen and (max-width:1024px) and (orientation:landscape){
	
}

/*===============================================================================================
STYLES FOR TABLETS IN PORTRAIT
===============================================================================================*/
@media screen and (max-width:768px) and (orientation:landscape){
	
}

/*===============================================================================================
STYLES FOR MOBILE PHONE
===============================================================================================*/
@media screen and (max-width:480px){
	
}