/*
This is my special file for special styles for the cabhaul program

Specially created by John Orr      Started 10.01.2018

*/

       .im-centered
           {
               margin: auto;
               max-width: 400px;
           }
		   
/* provides close spaced text */	   

   p
           {
		       margin: 0 /*! stackoverflow 2787310 */
	       }		   

       .font-big
           {
               font-size: 24px; 
           }

       .jgo-table
           {
               table-layout: fixed;
               word-wrap: break-word;
           }
		   
/*/ provides the table border color	*/	   

       .jgo-border
           {
               border: 2px solid orange;
           }
		   
/* this provides a <br> spacing of zero of standard value */	   

   .line-space-0
       {
           line-height:0%;
       }		   

/* this provides a <br> spacing of 50% of standard value */	   

   .line-space-50
       {
           line-height:50%;
       }	  

/* this provides a <br> spacing of 200% of standard value */	   

   .line-space-200
       {
           line-height:200%;
       }	   
   
/* this provides a <br> spacing of 300% of standard value */	   

   .line-space-300
       {
           line-height:300%;
       }
	   
 /*  this provides red dashed line box around text */  
   
.theDiv {
  width: 330px;
  border: dashed red 2px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
} 

/* these provides a <br> spacing of % shown of standard value */	   

.little_line-space
    {
        line-height:100%;
    } 
	
.medium_line-space
    {
        line-height:200%;
    } 

.big_line-space
    {
        line-height:500%;
    } 	   









        