/* Font designed by Javier Ugarte del Corro */
/* FontFace Generated by FontPro */
@font-face {
    font-family: 'Neocat-Regular'; 
    src: url('/ext/neocat-regular_2.0.eot');
    src: url('/ext/neocat-regular_2.0.eot?#iefix') format('embedded-opentype'),
    url('/ext/neocat-regular_2.0.woff') format('woff'),
    url('/ext/neocat-regular_2.0.ttf') format('truetype'),
    url('/ext/neocat-regular_2.0.svg#Neocat-Regular') format('svg');
}

/* And some other fonts from Google */
/* latin-ext */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGFKFh1TDTPrUZWzVp6FtpG8.woff2) format('woff2');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGCOFnW3Jk0f09zW_Yln67Ac.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* latin-ext */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2) format('woff2');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

html {
    height: 100%;
}

body {
    background-color: #222;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;

    display: -ms-flexbox;
    -ms-flex-direction: column;
    -ms-flex-wrap: none;
    -ms-flex-align: center; /* align-items */
    -ms-flex-pack: start; /*justify-content */

    display: -webkit-flex;
    -webkit-flex-flow: column nowrap;
    -webkit-align-items: center;
    -webkit-justify-content: flex-start;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
}

a, a:visited {
    color: #fff;
}

h1, nav {
    font-family: 'Neocat-Regular', sans-serif;
    color: #fff;
}

/* HEADER */

header {
    -ms-flex-item-align: start; /*align-self*/
    -webkit-align-self: flex-start;
    align-self: flex-start;

    padding: 0;
    margin: 1.5em;
}

h1 {
    background-image: url("/img/logo_white_small.png");
    background-repeat: no-repeat;
    padding-left: 160px;
    height: 148px;
    display: table-cell;
    text-align: left;
    vertical-align:middle;
    white-space: pre-line;
}

/* MENU */

nav * {
    margin: 0;
    padding: 0;
}

nav {
    -ms-flex-item-align: end;
    -webkit-align-self: flex-end;
    align-self: flex-end;

    /* min-width: 60%; */
}

nav * {
    white-space: nowrap;
    text-decoration: none;
}


nav > ul {
    height: 3rem;
    background: linear-gradient(to right, rgba(128,128,128,0) , rgba(128,128,128,0.8));
    padding-left: 8rem;
    padding-left: 20vw;

    list-style-type: none;

    /* as container */
    display: -ms-flexbox;
    -ms-flex-direction: row;
    -ms-flex-wrap: none;
    -ms-flex-align: center; /* align-items */
    -ms-flex-pack: end; /*justify-content: */

    display: -webkit-flex;
    -webkit-flex-flow: row nowrap;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
}

nav > ul > li {
    position: relative;
}

nav > ul > li:hover {
    background-color: rgba(192, 192, 192, 0.6);
}

nav > ul > li > a, nav > ul > li > span {
    height: 3rem;
    display: table-cell;
    padding: 0 1rem 0;
    vertical-align: middle;
}

 /* submenus */

nav > ul > li > ul {
    position: absolute;
    right: 0;
    display:none;
    list-style-type: none;
    background-color: rgba(128, 128, 128, 0.6);
}

nav > ul > li:hover > ul {
    display: block;
}

 /* submenu items */
nav > ul > li > ul > li {
    padding: 0.75rem;
}

nav > ul > li > ul > li:hover {
    background-color: rgba(192, 192, 192, 0.6);
}

@media only screen and (max-device-width: 480px) {
    nav a, nav span {
        font-size: 1.75rem;
    }
}


/* CONTENT */
main{
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;

    display: -ms-flexbox;
    -ms-flex-direction: row;
    -ms-flex-wrap: none;
    -ms-flex-align: center; /* align-items */
    -ms-flex-pack: center; /*justify-content: */


    display: -webkit-flex;
    -webkit-flex-flow: row nowrap;
    -webkit-align-items: center;
    -webkit-justify-content: center;

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;

    font-family: 'SourceSansPro-Semibold',sans-serif;
    font-weight: 400;
}

main strong {
    font-family: 'SourceSansPro-Bold',sans-serif;
    font-weight: 700;
}

main>div{
    background-color: rgba(128, 128, 128, 0.6);
    color: #ddd;
    border-radius: 10px;
    margin: 1em;
    padding: 15px;
    text-align: left;
}

.flex {
    display: -ms-flexbox;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
    -ms-flex-align: center;
    -ms-flex-pack: center;

    display: -webkit-flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: center;
    -webkit-align-items: center;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.flex-top {
    align-items: flex-start;
    justify-content: flex-start;
}

.flex-top > * {
    /* border: 1px solid red; */
    /* padding: 1rem; */
}


.table {display: table;}
.table > * {display: table-row; }
.table > * > * {
    display: table-cell;
    margin: 3px;
    padding: 1px;
}

.table span {
    text-align: right;
}

.table input {
    margin:0;
    padding: 0;
}


.radio > label {
    display: block;
}

ol.two-columns {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
    padding: 0;
}

ol.two-columns>li{
    margin-left: 2em;
}

fieldset {
    text-align: left;
    border: 1px solid white;
}

legend,h3 {
    color: #ddd;
    font-size: 1.2rem;
    font-weight: normal;
}

.guest-photo{
    margin: 0 5px 5px;
}

.guest-photo>img {
    height: 225px;
    width: auto;
    margin-bottom: 3px;
}

.guest-photo>figcaption {
    font-style: italic;
    font-size: 0.8em;
}

@media only screen and (min-device-width: 481px) {
    .announcement{
        max-width: 60%;
    }
}
