﻿/*modify the base font size for mobile devices*/
 body
{
    /*bumping up the font-sizes for higher res displays*/
    font-size:90%;

    
}
.appLogo {
    margin-top: 90px;
	width: 70%;
	height: 70%;

}

@media (max-width: 336px)
{
    body
    {
        font-size: 90%;
    }

    article.helpMenu li a
    {
        height:2.25em;
        line-height:2.25em;
    }
      
}

/*for odd Android aspect ratios*/
@media (max-width: 385px) and (min-width:337px) and (max-height:520px)
{
     body
    {
        font-size: 90%;
    }

    article.helpMenu li a
    {
        height:2em;
        line-height:2em;
    }
   
}


