<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* Lumos V1.0
* Copyright 2013, Gocha Gogia
* 0/0/2013
*/


/* Table of Content
==================================================
    #big 1200px
    #Medium 960px
    #Tablet (Portrait)
    #Mobile (Landscape)
    #Mobile (Portrait)
*/
    
 /*&gt;&gt;&gt; big 1024px  &lt;&lt;&lt;&lt;&lt;=================================*/

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

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

}

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

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