﻿
/* mobile devices / small PC screens */
@import url("mobile.css") only screen and (max-width:1023px) ;
@import url("mobile.css") only screen and (max-height:700px) ;
@import url("mobile.css") only screen and (min-height:701px) and (max-height:799px) and (max-width:799px);

/* standard desktops */
@import url("desktop.css")  only screen and  (min-width:1024px) and (min-height:800px);
@import url("desktop.css") only screen and (min-height:701px) and (max-height:799px) and (min-width:800px);




.sys_100Center
{

    width: 100%; text-align: center
}



.sys_RelativeLeft {
    position: relative;
    text-align: left;
}


.sys_DisplayNone {
    display:none;
}

.sys_invisible
{
    visibility:hidden;

}

.sys_visible
{ visibility:visible;

}