﻿/*AI- PAge styles */
/* OVERIDE OF STYLE.CSS */
.MainContainer {
    background-color: #efefef;
}
   

.divPageRowOLD {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.divPageRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* keep items aligned without gaps pushing them apart */
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box; /* include border + padding in width calc */
    /*/border: 1px solid black; */
}


.divPageCell {
    display: inline-block;
    border: 14px solid #efefef;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    padding: 5px;
    box-sizing: border-box; /* prevents borders/padding from overflowing row */
    margin-right: 10px; /* optional space between items */
}

    .divPageCell:last-child {
        margin-right: 0; /* no extra space at the end */
    }




.divPageHeaderBackground {
    text-align: center;
    vertical-align: middle;
    padding: 20px 0 0 0;
    width: 100%;
    min-height: 260px;
    background-image: url(/backdrop.jpg); /*default backdrop - chage in local style per page*/
    background-size: 100% 100%;
    background-repeat: repeat-x;
}




.page {
    font-family:  Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif Arial, sans-serif, 'Marcellus';
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #222;
    width: 100%;
}

    .page h1,
    .page h2,
    .page h3 {
        margin-top: 30px;
        /*color: #007bff; Blue*/
        color: #000055;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.6;
    }
    @media only screen and (max-width: 768px) {
      
        .page h2 {
            font-size: 7vw;
        }
    }


    .page ul {
        padding-left: 20px;
        margin-top: 10px;
    }

        .page ul li {
            margin-bottom: 10px;
        }

    .page blockquote {
        font-style: italic;
        background-color: #eee;
        padding: 15px;
        border-left: 4px solid #0F032B;
        margin: 20px 0;
    }

    .page a { /*HYPER LINKS ON PAGE*/
        color: #007bff; 
        text-decoration: underline;
        font-size: 1.5rem;
    }

    .page p{
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .page img {
        width: 80%;
        border-radius: 10px;
        margin: 20px 0;
    }

@media (max-width: 768px) {
    .page {
        padding: 0px 0px;
        max-width: 95vw;
    }
}



@media only screen and (max-width: 768px) {
    .divPageHeaderBackground {
        min-height: 150px;
    }

    .Container .content {
        font-size: 90%
    }

   
    .Container {
        max-width: 450px;
    }
}

/*END AI*/

