/**
 * Start Vanilla CSS 1.0.2 
 */

pre,
code,
tt {
    font: 1em/1.5em "Andale Mono", "Lucida Console", monospace;
}
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-weight: bold;
}
em,
i,
dfn {
    font-style: italic;
}
dfn {
    font-weight: bold;
}
p,
code,
pre,
kbd {
    margin: 0 0 1.5em 0;
}
blockquote {
    margin: 0 1.5em 1.5em 1.5em;
}
cite {
    font-style: italic;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}
ol ol {
    list-style: upper-alpha;
}
ol ol ol {
    list-style: lower-roman;
}
ol ol ol ol {
    list-style: lower-alpha;
}
dl {
    margin: 0 0 1.5em 0;
}
dl dt {
    font-weight: bold;
}
dd {
    margin-left: 1.5em;
}
table {
    margin-bottom: 1.4em;
    width: 100%;
}
th {
    font-weight: bold;
}
th,
td,
caption {
    padding: 4px 5px 4px 5px;
}
tfoot {
    font-style: italic;
}
sup,
sub {
    line-height: 0;
}
abbr,
acronym {
    border-bottom: 1px dotted;
}
address {
    margin: 0 0 1.5em;
    font-style: italic;
}
del {
    text-decoration: line-through;
}
pre {
    margin: 1.5em 0;
    white-space: pre;
}
img.centered,
.aligncenter,
div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
img.alignright {
    display: inline;
}
img.alignleft {
    display: inline;
}
.alignright {
    float: right;
    margin-left: 20px;
}
.alignleft {
    float: left;
    margin-right: 20px;
}
img {
    max-width: 100%;
}
* html .clearfix {
    height: 1%;
}
* + html .clearfix {
    display: inline-block;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
* html .group {
    height: 1%;
}
* + html .group {
    display: inline-block;
}
.group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/**
* End Vanilla CSS
*/

/*---------------------*/
/*-----------------------STARTING OWN CSS*/
/*---------------------*/

@font-face {
    font-family: "segprint";
    src: url("/fonts/segprint.ttf");
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto-regular-webfont.woff2") format("woff2"),
        url("/fonts/roboto-regular-webfont.woff") format("woff"), url("/fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto-bold-webfont.woff2") format("woff2"), url("/fonts/roboto-bold-webfont.woff") format("woff"),
        url("/fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto-italic-webfont.woff2") format("woff2"),
        url("/fonts/roboto-italic-webfont.woff") format("woff"), url("/fonts/Roboto-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto-bolditalic-webfont.woff2") format("woff2"),
        url("/fonts/roboto-bolditalic-webfont.woff") format("woff"),
        url("/fonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/*---------------------*/
/*-----------------------OWN VANILLA*/
/*---------------------*/

.left {
    float: left;
}
.right {
    float: right;
}
.clear {
    clear: both;
}
.red {
    color: red;
}

.text-center {
    text-align: center !important;
}

/*---------------------*/
/*-----------------------MAIN LAYOUT*/
/*---------------------*/

body {
    overflow-y: scroll;
    background-image: url("/imgs/background/background01.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #f8f4ec;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

#wrapper {
    width: 1080px;
    margin: auto;
    margin-top: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    /*border: 1px solid #E4D2DC;*/
    display: none;
    transition: width 0.3s, margin 0.3s, border-radius 0.3s;
}

header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 180px;
    box-sizing: border-box;
    transition: border-radius 0.3s, height 0.3s, background-size 0.3s;
}

section#main {
    float: left;
    box-sizing: border-box;
    width: 780px;
    padding: 20px 40px 20px 50px;
    transition: width 0.3s;
}

aside {
    float: left;
    box-sizing: border-box;
    width: 300px;
    padding: 20px 25px 20px 25px;
    border-bottom-left-radius: 20px;
    margin-bottom: 10px;
    transition: width 0.3s, float 0.3s, padding 0.3s, border-radius 0.3s, margin 0.3s;
}

footer {
    clear: both;
}

/*---------------------*/
/*-----------------------COLORS*/
/*---------------------*/

#wrapper {
    background-color: white;
}

header {
    background-color: #aa4778;
}

nav {
    background-image: url("/imgs/bg-header-footer.gif");
    background-repeat: repeat;
}

section#main {
    color: #333;
}

section#main h1,
section#main h2,
section#main h3,
section#main h4,
section#main h5,
section#main h6 {
    color: #941b57;
}

section#main a {
    color: #971e5a;
    transition: color 0.3s;
}

section#main a:hover {
    color: #5a4952;
}

aside {
    background-color: #aa4778;
    color: #fff;
    /*text-shadow: 1px 1px 1px #6f0439;*/
}

aside h2 {
    color: #6f0439;
    text-shadow: none;
}

aside a {
    color: #fff;
    transition: color 0.3s;
}

aside a:hover {
    color: gold; /*#6f0439;*/
}

footer {
    background-image: url("/imgs/bg-header-footer.gif");
    background-repeat: repeat;
}

/*---------------------*/
/*-----------------------Typography*/
/*---------------------*/

body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    /* line-height: 1.5; */
    /* font-size: 62.5%; */
    /* letter-spacing: 62.5%; */
}

section#main h1 {
    font-family: "segprint", serif;
    font-size: 2rem;
    font-weight: normal;
    transition: font-size 0.3s;
    hyphens: none;
    -webkit-hyphens: none;
    margin-top: 3rem;
}

section#main h1.sub {
    font-size: 1.25rem;
    font-family: "segprint", serif;
    margin-top: -1rem;
    hyphens: auto;
    -webkit-hyphens: auto;
}

section#main h2 {
    font-family: "segprint", serif;
    font-size: 2rem;
    font-weight: normal;
    transition: font-size 0.3s;
    hyphens: none;
    -webkit-hyphens: none;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: left;
}

section#main h2.sub {
    font-size: 1.25rem;
    font-family: "Roboto", sans-serif;
    margin-top: -0.625rem;
    border: none;
    hyphens: auto;
    -webkit-hyphens: auto;
}

section#main h3 {
    font-family: "segprint", serif;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: normal;
    hyphens: none;
    -webkit-hyphens: none;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
}

section#main h3.sub {
    font-family: "Roboto", sans-serif;
    margin-top: -0.7rem;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    hyphens: auto;
    -webkit-hyphens: auto;
}

section#main h4 {
    font-family: "Robot", sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    hyphens: none;
    -webkit-hyphens: none;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

section#main h5,
section#main h6 {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

section#main .bottomline {
    border-bottom: 1px solid #aa4778;
}

section#main .normalcolor {
    color: #5a4952;
}

section#main p,
section#main ul,
section#main ul ul,
section#main ol {
    font-family: "Roboto", sans-serif;
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
}

section#main ol li {
    margin-bottom: 1rem;
}

section#main ol {
    margin-bottom: 1rem;
}

section#main td {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    /* line-height: 1.25; */
    vertical-align: top;
    padding: 0.1rem 0.5rem 0.1rem 0.25rem;
}

section#main form td {
    font-size: 1rem;
    /* line-height: 1.5; */
    vertical-align: top;
    padding: 0.5rem 1rem;
}

section#main a {
    text-decoration: none;
    hyphens: none;
    -webkit-hyphens: none;
}

section#main a:hover {
    text-decoration: none;
}

section#main blockquote {
    font-style: italic;
    text-shadow: 2px 2px 8px #c99ab2;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

aside h2 {
    font-family: "segprint", serif;
    font-size: 1.4rem;
    padding-bottom: 0px;
    border-bottom: 1px solid #8c2558;
    font-weight: normal;
}

aside h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-variant: small-caps;
    margin-bottom: 0.375rem;
}

aside h3.dateHead {
    float: left;
    margin-top: 0px;
}

aside .date {
    float: right;
    font-size: 0.625rem;
    /* line-height: 0.875; */
}

aside ul {
    font-size: 0.875rem;
}

aside ul sub {
    font-size: 0.625rem;
    margin-left: 0.25rem;
}
/*asfw*/

aside ul li {
    margin-bottom: 0.25rem;
}

aside p {
    font-size: 0.875rem;
    /* line-height: 0.93; */
    hyphens: auto;
    -webkit-hyphens: auto;
}

aside p.linklist {
    font-size: 0.875rem;
    /* line-height: 0.93; */
}

aside a {
    font-weight: bold;
    text-decoration: none;
}

aside a:hover {
    text-decoration: none;
}

aside figure {
    margin: 0px;
}

aside #sidebarIMG,
aside #divider {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #8c2558;
}

aside img {
    border-radius: 0.25rem;
}

aside .newslist {
    padding-left: 1.25rem;
}

/*---------------------*/
/*-----------------------HEADER*/
/*---------------------*/

header #logo {
    width: 350px;
    height: 100%;
    text-align: center;
    /* padding-top: 45px; */
    background: radial-gradient(#f987be 2%, #aa4778 75%);
    border-top-left-radius: 20px;
    box-sizing: border-box;
    transition: padding 0.3s, background 0.3s, border-radius 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

header h1 {
    font-family: "segprint", serif;
    margin: 0px;
    margin-bottom: 1rem;
    color: gold;
    font-size: 2.625rem;
    line-height: 0.625;
    font-weight: normal;
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.8);
    transition: font-size 0.3s;
}

header h1 span {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../imgs/header/Font_BG.png");
    background-size: 100%;
    opacity: 0.2;
}

header h2 {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    /* margin-bottom: 0.25rem; */
    color: gold;
    font-size: 0.75rem;
    /* line-height: 1em; */
    font-weight: normal;
    text-transform: uppercase;
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.8);
    transition: font-size 0.3s;
}

header h3 {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    color: gold;
    font-size: 0.75rem;
    font-weight: normal;
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.8);
    transition: font-size 0.3s;
    letter-spacing: 0.05rem;
}

header {
    background-position: right center;
    background-size: 730px auto;
    background-repeat: no-repeat;
    position: relative;
}

header span {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 730px;
    background-size: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 90%, rgba(170, 71, 120, 1));
    z-index: 1;
    transition: width 0.3s, display 0.3s;
}

header h2#imgcaption {
    position: absolute;
    font-family: "segprint", serif;
    z-index: 2;
    bottom: 15%;
    right: 0px;
    padding: 7px 7px 7px 10%;
    margin: 0px;
    font-size: 1.5em;
    text-transform: none;
    font-variant: none;
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.8);
    background-color: rgba(248, 244, 236, 0.5);
    background: linear-gradient(to right, rgba(248, 244, 236, 0) 10%, rgba(248, 244, 236, 0.5) 20%);
    transition: padding 0.2s, font-size 0.2s, bottom 0.2s, background 0.2s, text-align 0.2s, left 0.2s;
}

header a {
    text-decoration: none;
}

/*---------------------*/
/*-----------------------NAVIGATION*/
/*---------------------*/

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

nav li {
    flex-grow: 1;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e4d2dc;
}

nav li a {
    color: #6f0439;
    font-family: "segprint", serif;
    font-size: 1rem;
    display: block;
    padding: 0px 50px;
    text-align: center;
    height: 3rem;
    line-height: 3;
    text-decoration: none;
    box-sizing: border-box;
    transition: color 0.4s, background-color 0.2s, padding 0.3s, border 0.3s, background-color 0.3s, margin 0.3s,
        font-size 0.3s, height 0.3s, width 0.3s;
}

nav li a.active {
    background-color: #aa4778;
    color: white;
}

nav li a:hover {
    background-color: #6f0439;
    color: white;
}

nav ul ul {
    display: none;
    position: absolute;
    z-index: 999;
    margin-left: 0px;
    border-bottom: 1px solid #e4d2dc;
}

nav li li {
    float: none;
    border-bottom: none;
    border-left: 1px solid #e4d2dc;
    border-right: 1px solid #e4d2dc;
}

nav li li a {
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    text-align: left;
    height: auto;
    line-height: 1;
    width: auto;
    margin-right: 0px;
    padding: 8px 20px 8px 22px;
}

nav li li a.active {
    border: 0px solid white;
}

* html li li {
    display: inline;
} /* IE6 Bugfix... */

#navService {
    display: none;
    transition: 0.3s;
}

/*---------------------*/
/*-----------------------SLIDESHOW*/
/*---------------------*/

#slideshow #imgwrapper {
    position: relative;
    width: 100%;
    height: 250px;
    z-index: 51;
    transition: height 0.2s, widht 0.2s;
}

#slideshow #imgwrapper img {
    position: absolute;
    z-index: 51;
    width: 100%;
    box-shadow: #000 0em 0em 0em;
    overflow: hidden;
}

#slideshow #imgwrapper img.active {
    z-index: 53;
}

#slideshow h2#imgcaption {
    position: absolute;
    z-index: 54;
    bottom: 5%;
    right: 0px;
    padding: 7px 7px 7px 10%;
    margin: 0px;
    font-size: 1.25rem;
    font-variant: small-caps;
    text-shadow: 1px -1px 0.1px #dbe9f6;
    background-color: rgba(219, 233, 246, 0.8);
    background: linear-gradient(to right, rgba(219, 233, 246, 0) 10%, rgba(219, 233, 246, 0.8) 20%);
    transition: padding 0.2s, font-size 0.2s, bottom 0.2s, text-align 0.2s, left 0.2s;
}

/*---------------------*/
/*-----------------------CONTENT*/
/*---------------------*/

.box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #aa4778;
    background-color: rgba(170, 71, 120, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    margin: 2rem 0rem;


}

.box__headline {
    color:rgba(170, 71, 120, 1);
    font-weight: bold;
    font-size: 1.2rem;
}

.box__content p {
    margin-bottom: 0.75rem;
}

.box__content p:last-child{
    
    margin-bottom: 0px;
}

.box__content table {

}

section#main .box__content table td {
    padding-left: 0px;
    font-size: 1rem;
    padding-top: 0.5rem;
}


section#main .sign {
    font-family: "segprint", serif;
    font-size: 1.25rem;
    color: #941b57;
}

section#main .priceTag {
    background-color: #eeeeee;
    border: 1px solid #aa4778;
    padding: 0.625rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    margin-bottom: 5rem;
    margin-top: 1rem;
    color: #555;
}

section#main p.footer {
    padding-top: 0.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid #941b57;
    font-size: 0.875rem;
}

section#main div.distance {
    clear: both;
    height: 1.25rem;
    width: 100%;
    display: block;
}

section#main #impressTable {
    border-collapse: collapse;
}

section#main #impressTable td {
    border-bottom: 1px dotted #941b57;
}

section#main form table {
    border-collapse: collapse;
}
section#main form td {
    border-bottom: 1px dotted #941b57;
}

section#main ul {
    margin-bottom: 1rem;
}

section#main form .full {
    width: 100%;
}

section#main form .item,
section#main form .itemButton {
    margin-top: 2%;
    padding: 0 2% 0 2%;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.688;
}

section#main form h3 {
    border-bottom: 1px solid #aa4778;
}

section#main form h4 {
    margin: 1rem 0px 0.25rem 0px;
}

section#main form .itemButton {
    margin: 4% 0% 4% 0%;
    padding: 0 2% 0 2%;
}

section#main form .formtext {
    font-size: 1.125rem;
}

section#main form input,
section#main form textarea {
    font-family: "Roboto";
    font-size: 1rem;
    padding: 0.125rem;
}

section#main form .subtext {
    font-size: 0.5rem;
}

section#main form .itemButton .submitButton {
    padding: 1.5% 6% 1.5% 6%;
    font-weight: bold;
    border-radius: 0.5rem;
    color: #6f0439;
    background-color: #f8f4ec;
    border: 2px solid #6f0439;
    border-left: 5px solid #6f0439;
    border-right: 5px solid #6f0439;
}

section#main form input[type="radio"] {
    margin-bottom: 5px;
}

section#main form .itemButton .submitButton:hover {
    color: white;
    background-color: #aa4778;
    border: 2px solid #6f0439;
    border-left: 5px solid #6f0439;
    border-right: 5px solid #6f0439;
    cursor: pointer;
}

section#main form .errorMsg {
    color: red;
    margin-bottom: 1em;
}

section#main form textarea {
    width: 100%;
    box-sizing: border-box;
}

section#main form .agbBox {
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    overflow: auto;
    font-family: monospace;
    font-size: 0.8rem;
    background-color: white;
    color: black;
    border: 1px solid darkgray;
    box-shadow: 1px 1px 1px 0 lightgray inset;
    padding: 3px 4px;
    margin-bottom: 0.625rem;
}

section#main form .specialBox {
    border: 1px solid #aa4778;
    padding: 10px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
    background-color: #f8f4ec;
}

section#main form #formWSTitle {
    font-weight: bold;
}

section#main .wsListItem h2 {
    border-bottom: 1px solid #aa4778;
    margin: 15px 0px 0px 0px;
    padding-bottom: 5px;
    box-sizing: border-box;
}

section#main .wsListItem #body {
    margin: 0px 0px 30px 10px;
    padding: 10px 0px 0px 10px;
    border-left: 1px solid #aa4778;
    box-sizing: border-box;
}

section#main .wsListItem #body table td {
    vertical-align: top;
}

section#main img,
aside img {
    border: 1px solid #6f0439;
    padding: 2px;
    background-color: #f8f4ec;
    box-sizing: border-box;
    border-radius: 5px;
}

section#main a img,
aside a img {
    transition: background-color 0.5s;
}

section#main a img:hover,
aside a img:hover {
    background-color: #aa4778;
}

section#main .imgArray2 {
    width: 50%;
    min-width: 250px;
    padding-right: 20px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    float: left;
    transition: min-width 0.3s, padding 0.3s;
}

section#main .imgArray2 img {
    width: 100%;
    box-sizing: border-box;
}

section#main .divider {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #aa4778;
}

section#main figure {
    transition: float 0.3s, margin 0.3s;
    margin-bottom: 27px;
    margin-left: 0px;
    margin-right: 0px;
}

section#main figure img {
    transition: width 0.3s;
}

section#main figure.right {
    margin-left: 20px;
}

/*---------------------*/
/*-----------------------FOOTER*/
/*---------------------*/

footer {
    font-size: 0.875rem;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px 40px;
}

/*---------------------*/
/*-----------------------LOADING SCREEN*/
/*---------------------*/

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    /*background-color: #dbe9f6;*/
}

#loadingMsg {
    position: relative;
    margin: 20% auto 0% auto;
    width: 500px;
    text-align: center;
    transition: width 0.2s;
    background-color: rgba(102, 100, 96, 0.3);
    padding: 10px;
    border-radius: 10px;
}

#loadingMsg h1,
#loadingMsg h2 {
    font-family: "segprint", serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    transition: font-size 0.2s;
    color: gold;
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.4), 1px 1px 0px rgba(0, 0, 0, 0.9);
}

#loadingMsg h2 {
    font-size: 1.125rem;
    font-weight: normal;
    font-variant: small-caps;
    font-family: "Roboto", sans-serif;
}

#loadingImg {
    position: relative;
    margin: 1% auto 0% auto;
    width: 32px;
    background-color: rgba(102, 100, 96, 0.3);
    padding: 10px;
    border-radius: 10px;
}

#loadingImg img {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 2px 2px 0px;
    box-sizing: border-box;
}

#loadingJS {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #8599ad;
    bottom: 10%;
    font-size: 0.75rem;
    font-family: "Droid Sans", sans-serif;
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    #wrapper {
        width: 800px;
    }

    header {
        background-size: 450px;
        height: 145px;
    }

    header h1 {
        font-size: 2rem;
    }
    header h2 {
        font-size: 0.75rem;
    }
    header h3 {
        font-size: 0.75rem;
    }
    header span {
        width: 450px;
    }
    header h2#imgcaption {
        font-size: 0.875rem;
        padding: 5px 5px 5px 8%;
        bottom: 12%;
    }

    nav li a {
        padding: 0px 20px 0px 20px;
    }

    section#main {
        width: 550px;
    }

    aside {
        width: 250px;
    }

    section#main h1 {
        font-size: 2rem;
    }
    section#main h2 {
        font-size: 1.5rem;
    }

    section#main .imgArray2 {
        min-width: 200px;
        padding: 10px;
    }
}

@media screen and (min-width: 600px) and (max-width: 799px) {
    #wrapper {
        width: 600px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    header {
        height: 265px;
        background-position: center bottom;
        background-size: 600px auto;
    }

    header #logo {
        width: 100%;
        margin: auto;
        height: 85px;
        border-top-right-radius: 20px;
        background: linear-gradient(
            to bottom,
            rgba(170, 71, 120, 1),
            rgba(245, 135, 190, 1) 48%,
            rgba(170, 71, 120, 1) 80%,
            rgba(170, 71, 120, 0)
        );
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    header #logo h1 {
        font-size: 2rem;
    }
    header #logo h2 {
        font-size: 0.75rem;
    }
    header #logo h3 {
        font-size: 0.75rem;
    }

    header span {
        display: none;
    }

    header h2#imgcaption {
        font-size: 0.875rem;
        padding: 5px 5px 5px 8%;
        bottom: 12%;
    }

    nav {
        height: 144px;
        background-color: #dbe9f6;
        /*border-bottom: 1px dotted #e4d2dc;*/
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    nav li {
        border-bottom: 0px solid #e4d2dc;
    }

    nav li a {
        padding: 0px 0px;
        font-size: 0.875rem;
        width: 190px;
        height: 39px;
        line-height: 39px;
        margin: 4px;
        border: 1px dotted #aa4778;
        border-radius: 3px;
        background-color: white;
    } /*Height Sum: 40px*/

    nav li a.double {
        font-size: 0.75rem;
    }

    nav ul ul {
        margin-left: 0px;
        border-bottom: 0px solid #e4d2dc;
    }

    nav li li {
        border-left: 0px solid #e4d2dc;
        border-right: 0px solid #e4d2dc;
    }

    nav li li a {
        border: 1px solid #6f0439;
        border-bottom: 0px solid #6f0439;
        margin: 0px;
        margin-left: 5px;
        padding: 10px 0px 10px 10px;
        width: 190px;
    }

    nav li li a.last {
        border-bottom: 1px solid #6f0439;
    }

    #navService {
        display: block;
    }

    section#main {
        width: 100%;
        padding: 8px 17px 26px 17px;
        float: none;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    aside {
        border-top: 1px solid #e4d2dc;
        border-bottom: 1px solid #e4d2dc;
        width: 100%;
        padding: 0px 5px 10px 5px;
        border-radius: 0px;
        float: none;
        text-align: center;
        margin-bottom: 0px;
    }

    aside #sidebarNews {
        padding: 0px 20px;
        text-align: left;
    }

    aside p,
    aside ul {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    footer {
        border-radius: 0px;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }
}

@media screen and (min-width: 400px) and (max-width: 599px) {
    #wrapper {
        width: 400px;
        margin-top: 0px;
        border-radius: 0px;
    }

    header {
        height: 195px;
        background-position: center bottom;
        background-size: 400px auto;
        border-radius: 0px;
    }

    header #logo {
        width: 100%;
        margin: auto;
        height: 85px;
        padding-top: 5px;
        border-radius: 0px;
        position: relative;
        overflow: auto;
        background: linear-gradient(
            to bottom,
            rgba(170, 71, 120, 1),
            rgba(245, 135, 190, 1) 48%,
            rgba(170, 71, 120, 1) 80%,
            rgba(170, 71, 120, 0)
        );
    }

    header #logo h1 {
        position: absolute;
        top: 17px;
        left: 25px;
        font-size: 2rem;
    }
    header #logo h2 {
        position: absolute;
        top: 13px;
        left: 235px;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    header #logo h3 {
        position: absolute;
        top: 40px;
        left: 235px;
        font-size: 0.75rem;
        line-height: 1.2;
    }

    header span {
        display: none;
    }

    header h2#imgcaption {
        font-size: 0.75rem;
        padding: 3px 3px 3px 6%;
        bottom: 6%;
    }

    nav {
        height: 240px;
        background-color: #dbe9f6;
        /*border-bottom: 1px dotted #e4d2dc;*/
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    nav li {
        border-bottom: 0px solid #e4d2dc;
    }

    nav li a {
        font-size: 0.875rem;
        padding: 0px;
        width: 190px;
        height: 39px;
        line-height: 39px;
        margin: 4px;
        border: 1px dotted #aa4778;
        border-radius: 3px;
        background-color: white;
    } /*Height Sum: 40px*/

    nav li a.double {
        font-size: 1.2em;
    }

    nav li a.lastNav {
    }

    nav ul ul {
        margin-left: 0px;
        border-bottom: 0px solid #e4d2dc;
    }

    nav li li {
        border-left: 0px solid #e4d2dc;
        border-right: 0px solid #e4d2dc;
    }

    nav li li a {
        border: 1px solid #6f0439;
        border-bottom: 0px solid #6f0439;
        margin: 0px;
        margin-left: 5px;
        padding: 10px 0px 10px 10px;
        width: 190px;
    }

    nav li li a.last {
        border-bottom: 1px solid #6f0439;
    }

    #navService {
        display: block;
    }

    section#main {
        width: 100%;
        padding: 4px 8px 20px 8px;
        float: none;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    section#main h1 {
        font-size: 1.125rem;
    }

    section#main h2 {
        font-size: 1.5rem;
    }

    section#main h3 {
        font-size: 1.25rem;
    }

    section#main .imgArray2 {
        min-width: 160px;
        padding: 5px;
    }

    aside {
        border-top: 1px solid #e4d2dc;
        border-bottom: 1px solid #e4d2dc;
        width: 100%;
        padding: 0px 5px 10px 5px;
        border-radius: 0px;
        float: none;
        text-align: center;
        margin-bottom: 0px;
    }

    aside #sidebarNews {
        padding: 0px 20px;
        text-align: left;
    }

    aside p,
    aside ul {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    footer {
        border-radius: 0px;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    #loadingMsg {
        margin-top: 18%;
        width: 370px;
    }

    #loadingMsg h1,
    #loadingMsg h2 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 375px) and (max-width: 399px) {
    #wrapper {
        width: 375px;
        margin-top: 0px;
        border-radius: 0px;
    }

    header {
        height: 185px;
        background-position: center bottom;
        background-size: 375px auto;
        border-radius: 0px;
    }

    header #logo {
        width: 100%;
        margin: auto;
        height: 100px;
        border-radius: 0px;
        background: linear-gradient(
            to bottom,
            rgba(170, 71, 120, 1),
            rgba(245, 135, 190, 1) 48%,
            rgba(170, 71, 120, 1) 80%,
            rgba(170, 71, 120, 0)
        );
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header #logo h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    header #logo h2 {
        font-size: 0.75rem;
        
    }
    header #logo h3 {
        font-size: 0.75rem;
    }

    header span {
        display: none;
    }

    header h2#imgcaption {
        font-size: 0.8125rem;
        padding: 3px 3px 3px 6%;
        bottom: 6%;
    }

    nav {
        height: 240px;
        background-color: #dbe9f6;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    nav li {
        border-bottom: 0px solid #e4d2dc;
    }

    nav li a {
        padding: 0px;
        width: 176px;
        height: 39px;
        line-height: 39px;
        margin: 4px;
        border: 1px dotted #aa4778;
        border-radius: 3px;
        background-color: white;
        font-size: 0.75rem;
    }

    nav li a.double {
        font-size: 0.75rem;
    }

    nav li a.lastNav {
    }

    nav ul ul {
        margin-left: 0px;
        border-bottom: 0px solid #e4d2dc;
    }

    nav li li {
        border-left: 0px solid #e4d2dc;
        border-right: 0px solid #e4d2dc;
    }

    nav li li a {
        border: 1px solid #6f0439;
        border-bottom: 0px solid #6f0439;
        margin: 0px;
        margin-left: 5px;
        padding: 10px 0px 10px 10px;
        width: 176px;
    }

    nav li li a.last {
        border-bottom: 1px solid #6f0439;
    }

    #navService {
        display: block;
    }

    section#main {
        width: 100%;
        padding: 4px 8px 20px 8px;
        float: none;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    section#main h1 {
        font-size: 1.75rem;
    }

    section#main h2 {
        font-size: 1.125rem;
    }

    section#main .imgArray2 {
        min-width: 160px;
        padding: 5px;s
    }

    section#main figure {
        margin: 0px 0px 10px 0px !important;
        float: none;
    }

    section#main figure img {
        width: 100% !important;
    }

    aside {
        border-top: 1px solid #e4d2dc;
        border-bottom: 1px solid #e4d2dc;
        width: 100%;
        padding: 0px 5px 10px 5px;
        border-radius: 0px;
        float: none;
        text-align: center;
        margin-bottom: 0px;
    }

    aside #sidebarNews {
        padding: 0px 20px;
        text-align: left;
    }

    aside p,
    aside ul {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    footer {
        border-radius: 0px;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    #loadingMsg {
        width: 345px;
        margin-top: 17%;
    }

    #loadingMsg h1,
    #loadingMsg h2 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 374px) {
    #wrapper {
        width: 360px;
        margin-top: 0px;
        border-radius: 0px;
    }

    header {
        height: 175px;
        background-position: center bottom;
        background-size: 360px auto;
        border-radius: 0px;
    }

    header #logo {
        width: 100%;
        margin: auto;
        height: 100px;
        border-radius: 0px;
        background: linear-gradient(
            to bottom,
            rgba(170, 71, 120, 1),
            rgba(245, 135, 190, 1) 48%,
            rgba(170, 71, 120, 1) 80%,
            rgba(170, 71, 120, 0)
        );
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header #logo h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    header #logo h2 {
        font-size: 0.75rem;
        
    }
    header #logo h3 {
        font-size: 0.75rem;
    }

    header span {
        display: none;
    }

    header h2#imgcaption {
        font-size: 0.75rem;
        padding: 3px 3px 3px 6%;
        bottom: 6%;
    }

    nav {
        height: 240px;
        background-color: #dbe9f6;
        /*border-bottom: 1px dotted #e4d2dc;*/
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    nav li {
        border-bottom: 0px solid #e4d2dc;
    }

    nav li a {
        padding: 0px;
        width: 169px;
        height: 39px;
        line-height: 39px;
        margin: 4px;
        border: 1px dotted #aa4778;
        border-radius: 3px;
        background-color: white;
        font-size: 0.75rem;
    } 

    nav li a.double {
        font-size: 0.625rem;
    }

    nav li a.lastNav {
    }

    nav ul ul {
        margin-left: 0px;
        border-bottom: 0px solid #e4d2dc;
    }

    nav li li {
        border-left: 0px solid #e4d2dc;
        border-right: 0px solid #e4d2dc;
    }

    nav li li a {
        border: 1px solid #6f0439;
        border-bottom: 0px solid #6f0439;
        margin: 0px;
        margin-left: 5px;
        padding: 10px 0px 10px 10px;
        width: 169px;
    }

    nav li li a.last {
        border-bottom: 1px solid #6f0439;
    }

    #navService {
        display: block;
    }

    section#main {
        width: 100%;
        padding: 4px 8px 20px 8px;
        float: none;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    section#main h1 {
        font-size: 1.75rem;
    }

    section#main h2 {
        font-size: 1.125rem;
    }

    section#main .imgArray2 {
        min-width: 160px;
        padding: 5px;
    }

    section#main figure {
        margin: 0px 0px 10px 0px !important;
        float: none;
    }

    section#main figure img {
        width: 100% !important;
    }

    aside {
        border-top: 1px solid #e4d2dc;
        border-bottom: 1px solid #e4d2dc;
        width: 100%;
        padding: 0px 5px 10px 5px;
        border-radius: 0px;
        float: none;
        text-align: center;
        margin-bottom: 0px;
    }

    aside #sidebarNews {
        padding: 0px 20px;
        text-align: left;
    }

    aside p,
    aside ul {
        font-size: 1.125rem;
        line-height: 1.3s;
    }

    footer {
        border-radius: 0px;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    #loadingMsg {
        width: 330px;
        margin-top: 16%;
    }

    #loadingMsg h1,
    #loadingMsg h2 {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 359px) {
    #wrapper {
        width: 320px;
        margin-top: 0px;
        border-radius: 0px;
    }

    header {
        height: 180px;
        background-position: center bottom;
        background-size: 320px auto;
        border-radius: 0px;
    }

    header #logo {
        width: 100%;
        margin: auto;
        height: 100px;
        border-radius: 0px;
        background: linear-gradient(
            to bottom,
            rgba(170, 71, 120, 1),
            rgba(245, 135, 190, 1) 48%,
            rgba(170, 71, 120, 1) 80%,
            rgba(170, 71, 120, 0)
        );
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header #logo h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    header #logo h2 {
        font-size: 0.75rem;
        
    }
    header #logo h3 {
        font-size: 0.75rem;
    }

    header span {
        display: none;
    }

    header h2#imgcaption {
        padding: 3px 5px 3px 5px;
        font-size: 0.75rem;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        background: none;
        background-color: rgba(248, 244, 236, 0.5);
    }

    nav {
        height: 240px;
        background-color: #dbe9f6;
        /*border-bottom: 1px dotted #e4d2dc;*/
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    nav li {
        border-bottom: 0px solid #e4d2dc;
    }

    nav li a {
        padding: 0px;
        width: 149px;
        height: 39px;
        line-height: 39px;
        margin: 4px;
        border: 1px dotted #aa4778;
        border-radius: 3px;
        background-color: white;
        font-size: 0.75rem;
    }

    nav li a.double {
        font-size: 0.625rem;
    }

    nav li a.lastNav {
    }

    nav ul ul {
        margin-left: 0px;
        border-bottom: 0px solid #e4d2dc;
    }

    nav li li {
        border-left: 0px solid #e4d2dc;
        border-right: 0px solid #e4d2dc;
    }

    nav li li a {
        border: 1px solid #6f0439;
        border-bottom: 0px solid #6f0439;
        margin: 0px;
        margin-left: 5px;
        padding: 10px 0px 10px 10px;
        width: 149px;
    }

    nav li li a.last {
        border-bottom: 1px solid #6f0439;
    }

    #navService {
        display: block;
    }

    section#main {
        width: 100%;
        padding: 4px 8px 20px 8px;
        float: none;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    section#main h1 {
        font-size: 1.75rem;
    }

    section#main h2 {
        font-size: 1.125rem;
    }

    section#main .imgArray2 {
        min-width: 120px;
        padding: 5px;
    }

    section#main figure {
        margin: 0px 0px 10px 0px !important;
        float: none;
    }

    section#main figure img {
        width: 100% !important;
    }

    aside {
        border-top: 1px solid #e4d2dc;
        border-bottom: 1px solid #e4d2dc;
        width: 100%;
        padding: 0px 5px 10px 5px;
        border-radius: 0px;
        float: none;
        text-align: center;
        margin-bottom: 0px;
    }

    aside #sidebarNews {
        padding: 0px 20px;
        text-align: left;
    }

    aside p,
    aside ul {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    footer {
        border-radius: 0px;
        border-left: 1px solid #e4d2dc;
        border-right: 1px solid #e4d2dc;
    }

    #loadingMsg {
        width: 290px;
        margin-top: 15%;
    }

    #loadingMsg h1,
    #loadingMsg h2 {
        font-size: 0.75rem;
    }
}
