/*
* Lumos V1.0
* Copyright 2013, Gocha Gogia
* 0/0/2013
*/


/* Table of Content
==================================================
    #big 1200px
    #Medium 960px
    #Tablet (Portrait)
    #Mobile (Landscape)
    #Mobile (Portrait)
*/
    
 /*>>> big 1024px  <<<<<=================================*/

 
 
/*>>> Medium 960px <<<<<=================================*/
  
  /* Note: Design for a width of 960px */
  
@media only screen and (max-width: 1224px) {
	.caption_title { padding:30px 20px 0 80px; }

}
	
 
/*>>> Tablet (Portrait) <<<<<=================================*/
  
  /* Note: Design for a width of 768px */
  
@media only screen and (max-width: 959px) {
	
	

}

 
/*>>> Mobile (Landscape) <<<<<=================================*/
  
  /* Note: Design for a width of 480px */
  
@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	
	
}

 
/*>>> Mobile (Portrait) <<<<<=================================*/
  
  /* Note: Design for a width of 320px */
  
@media only screen and (max-width: 479px) {
	
	
	
}
 