body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000;
    padding-top: 60px;
}

nav {
    background-color: #ffffffe0;
    padding: 4px;
    display: flex;
    justify-content: right;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #cccccce0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav>* {
    text-decoration: none;
    margin-right: 1rem;
}

nav a {
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px;
    color: black;
    margin: 6px;
}

nav a:last-child {
    margin-right: 20px;
}

nav a:hover {
    background-color: #f0f0f0e0;
}

.branding {
    font-weight: bold;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5px;
    line-height: 0.6;
    user-select: none;
    cursor: pointer;
    height: min-content;
    align-self: center;
    max-width: 100%;
    margin-right: auto;
    padding: 10px 5px;
    width: 157px;
}

.branding:hover {
    background-color: rgba(0, 0, 0, 0.100);

}

.l {
    text-align: left;
}

.r {
    text-align: right;
}

.branding .l {
    font-size: 15px;
    z-index: 2;
}

.branding .bmenu {
    font-size: 20px;
    z-index: 1;
}

.branding .r {
    font-size: 15px;
    z-index: 2;
}

.adright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    background-color: #f0f0f0;
    right: 0;
    bottom: 0;
    position: fixed;
    width: 20%;
    min-width: 100px;
    max-width: 300px;
    margin-right: 0;
}

div.content {
    left: 0;
    position: absolute;
    width: 80%;
    max-width: calc(100vw - 100px);
    min-width: calc(100vw - 300px);
    box-sizing: border-box;
}
[articletop] {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 100%;
    height: auto;
}
article {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.imagegroup{
    background-color: #f0f0f0;
}
.programsearchengine {
    display:none;
}

div.content article {
    padding: 20px;
    box-sizing: border-box;
    max-width: 80%;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-top: 1px solid #ccc;
    position: relative;
    bottom: 0;
    width: 100%;
}

@property --vyrsis-gradient-start {
    syntax: '<color>';
    inherits: false;
    initial-value: rgb(131, 0, 131, 0.9);
}

@property --vyrsis-gradient-end {
    syntax: '<color>';
    inherits: false;
    initial-value: rgba(0, 100, 146, 0.9);
}

.vyrsis {
    font-size: 20px;
    font-style: italic;
    text-decoration: none;
    margin-right: 1rem;
    background: linear-gradient(45deg, var(--vyrsis-gradient-start) 0%, var(--vyrsis-gradient-end) 100%);
    color: white;
    transition: --vyrsis-gradient-start 0.7s ease, --vyrsis-gradient-end 0.7s ease, text-decoration 0.7s ease;
}

.vyrsis:hover {
    --vyrsis-gradient-start: rgba(192, 0, 192, 0.9);
    --vyrsis-gradient-end: rgba(0, 148, 216, 0.9);
    color: white;
    text-decoration: underline;
}
.alt {
    font-size: 12px;
    color: #666;
    text-align: center;
}