/*@import "colors.css";*/
/*@import "menu.css";*/
/*!*@import "struct.css" screen and (min-width: 1000px);*!*/
/*!*@import "struct_mobile.css" screen and (max-width: 1000px);*!*/
/*!*@import "mobile.css" screen and (max-width: 1000px);*!*/
/*@import "struct_mobile.css";*/
/*@import "mobile.css";*/
/*@import "tables.css";*/
/*@import "dialogAlerts.css";*/
/*@import "Themes.css";*/
/*@import "tasks.css";*/
/*@import "Lists.css";*/

:root{
    --footer_size:20px;
    --header_size:40px;
    color-scheme: only light;
}
@font-face {
    font-family: 'VarelaRound';
    src: url('/fonts/VarelaRound-Regular.ttf') format('truetype');
    /*src: url('https://fonts.googleapis.com/css?family=VarelaRound') format('truetype');*/
}
body{
    direction: rtl;
    position: relative;
    background-color: var(--footer_bg);
    font-family: "VarelaRound";
    font-size: 22px;
}
input[type='text']{
    font-family: "VarelaRound";
}
header h1{
    margin: 0 auto;
    line-height: var(--header_size);
    font-size: 120%;
}
main{
    padding: 5px 10px;
}
main p{margin: 0;}
main h2,main h1{margin: 0;margin-top: 10px;}

.tbl2col div{
    border-radius: 20px;
    background-color: var(--gray_bg);
    padding: 10px;
}
.PicLeft{
    border-radius: 20px;
    /*box-shadow: #aaabab -5px 5px;*/
    float: left;
    max-width: 40%;
    margin-right: 20px;
}
.sticky{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.sticky_L2{
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    max-width: 70%;
}
.alignLeft{
    text-align: left;
}
.alignRight{
    text-align: right;
}
.alignCenter{
    text-align: center;
}
.floatLeft{
    float: left;
}
.posContainer{
    position: relative;
}
.LeftSide{
    position: absolute;
    left: 10px;
}
.RightSide{
    position: absolute;
    right: 10px;
}
.inlineForm{display: inline-block}
.RedMsg{color: red;font-weight: bold;}
header h1{
    text-align: center;
    width: calc(100% - 110px);
    margin-right: 30px;
}
footer p{
    font-size: 80%;
    line-height: 120%;
}
.ptr{
    cursor: pointer;
}
.LogoBar{
    float: left;
    max-width: 30%;
    margin-right: 20px;
}
.LogoBar img{
    border-radius: 20px;
    max-width: 90%;
    margin-right: 2%;
    margin-bottom: 40px;
}
aside h2{
    text-align: center;
}

#logo img{
    width: 100%;
}

.clearAll{
    clear: both;
}
.ErrMssg{
    font-size: 200%;
    color: red;
    text-align: center;
}

.TopBackBtn{
    position: fixed;
    top  : 10px;
    right: 10px;
}
.TopBackBtn button{
    cursor: pointer;
    width:  32px;
    height: 28px;
    background-color: transparent;
    background-image: url("/images/back2Home.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border: 2px solid transparent;
    padding: 5px;
}
.InbalPic{
    width: 40%;
    max-width: 600px;
    aspect-ratio: 10 / 15;
    background-image: url("/images/inbal.1000.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    float: left;
    margin-right: 20px;
}