@charset "UTF-8";
/* variables */
:root {
    --brand: #1967d2; /* #055bcc;  #2a5d99;*/
    --background-body: #ebf3fd;
    --background-section: #fff;
    --background-footer: var(--brand);
    --text: #222;
    --text-link: #1967d2;
    --text-link-hover: #ef2850; /* #a2262e; */
    --text-secondary: #ebf3fd;
    --text-secondary-link: #ebf3fd;
    --text-secondary-link-hover: #ebf3fd;
    --gap: 20px;
    --radius: 16px;
    --radius-top: 16px 16px 0 0;
    --radius-bottom: 0 0 16px 16px;
    
}

/* Reset + normalize */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Render elements */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
picture,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

template,
[hidden] {
    display: none;
}

/* Headings */

h1 {
    font-size: 2.5em;
}
  
h2 {
    font-size: 2em;
}
  
h3 {
    font-size: 1.75em;
}
  
h4 {
    font-size: 1.375em;
}
  
h5 {
    font-size: 1.25em;
}
  
h6 {
    font-size: 1.125em;
}  

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.full-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.full-height.disclaimer {
    margin-top: 58px;
}

#ConnectiveDocSignExtentionInstalled {
    display: none;
}

/* Text-level semantics */

a {
    background-color: transparent;
}

b,
strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    /*width: 100%;*/
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
    margin: 0;
}

/* site css rules */
/* html */

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--background-body);
    color: var(--text);
    font-size: 16px;
}

@font-face {
    font-family: myFont;
    src: url(/font/Evolventa-Bold.woff);
}

a {
    text-decoration: none;
    color: var(--text-link);
    transition: 0.3s ease-out color;
}
a:visited {
    color: var(--text-link);
}
a:focus, 
a:hover,
a:active {
    color: var(--text-link-hover);
    text-decoration: underline;
}

ul {
    list-style-type: none;
    border: 0;
    margin: 16px;
    padding: 0;

}

li {
    padding: 3px 0;
}


/* responsive screen width */

.wrapper {
    width: 300px;
    margin: 0 auto;
}

@media screen and (min-width: 700px) {
    
    .wrapper {
        width: 600px;
    }

}

@media screen and (min-width: 1000px) {

    .wrapper {
        width: 900px;
    }

}

@media screen and (min-width: 1300px) {

    .wrapper {
        width: 1200px;
    }
    
}




/* header banner */

header {
    display: block;
    padding: 16px 0;
    margin-bottom: var(--gap);
    text-align: center;
    font-family: myFont;
    color: var(--brand);
    line-height: 1.3;
}

header a:link, 
header a:visited,
header a:hover, 
header a:active {
    color: var(--brand);
    text-decoration: none;
}

header span {
    display: block;
}

header span:first-child {
    font-size: 2em;
}

header span:last-child {
    font-size: 1em;
}


h1, 
h2,
h3 {
    font-size: 1.25em;
}

/* nav */

nav {
    margin-bottom: var(--gap);
}

nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
    list-style-type: none;
    margin: 0;
    padding: 6px 0 0;
}

nav li {
    flex-grow: 1;
    padding: 0;
}

nav li svg {
	width: 20px;
	position: relative;
	top: 4px;
	margin-right: 12px;
}

nav li a {
    display: block;
    background-color: var(--background-section);
    padding: 6px;
    text-align: center;
    border-radius: var(--radius);
}


nav li a:link, 
nav li a:visited {
    color: var(--text);
    font-weight: 400;
}

nav li a:hover,
nav li a:active {
    background-color: var(--brand);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius);
}

/* search box */

/*



.section-search form input:first-child {
	border: 1px solid #ccc;
	margin-right: 15px;
	padding: 8px 12px;
	border-radius: 25px;
}

*/

.search-container form {
    position: relative;
    width: 100%;
    height: auto;
    padding: 12px;
    margin: 0 auto;
  }
  
  form.hide-submit input[type="submit"] {
    display: none;
  }

.search-input {
	box-sizing: border-box;
	padding: 5px 64px 5px 15px;
	width: 100%;
	height: 100%;
	border: 1px solid #ccc;
	background-color: #fff;
	line-height: 28px;
	font-size: 21px;
	color: rgba(38,52,74,.8);
	outline: 0;
	border-radius: 25px;
}


.search-input:focus {
    outline: 0;
  }
  
  input::-webkit-input-placeholder {
    color: #bbb;
  }
  
  .search-container label {
    position: absolute;
    top: 12px;
    right: 12px;
    /*line-height: 0.5;*/
  }
  


.icon-search-button {
	color: #fff;
	background: var(--text-link);
	width: 45px;
	height: 40px;
	padding: 8px 10px;
	border-radius: 0 25px 25px 0;
}

.icon-search-button:hover,
.icon-search-button:active {
color: var(--brand);
background: transparent;


}
/*
.search-input:hover,
.search-input:active {
    border: 1px solid var(--brand);
}
*/


[class*="icon"] {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	display: block;
	text-align: center;
	color: #fff;
	cursor: pointer;
	overflow: hidden;
}

.search-focused {
    border-color: var(--brand);
  }


/* main */

article p, 
article h2 {
    padding: 0 16px;
}

article ol {
    padding: 0 48px;
}


article, 
aside,
section {
    background-color: var(--background-section);
    border-radius: var(--radius);
    margin-bottom: var(--gap);
    width: 100%;
}

aside img {
    border-radius: var(--radius);
}


section {
    position: relative;
}


section table {
    padding: 14px;
}

section table:nth-child(2) {
	display: none;
}

aside {
    padding-bottom: 1px;
}


article h1, 
section h1,
section h2,
aside h2,
.contents h1 {
    background-color: var(--brand);
    color: var(--text-secondary);
    font-weight: 700;
    padding: 5px 0 6px 16px;
    text-align: left;
    border-radius: var(--radius-top);
}

.section-header {
    padding: 24px 16px 12px;
}

.sub-section h3 {
    font-weight: 700;
    text-align: left;
    padding: 26px 0 14px;
}

.sub-section ul,
.section-videoinfo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
}

  
.section-videoinfo li {
    padding: 0 0 6px;
}


article h2 {
    font-weight: 700;
    text-align: left;
    padding: 0 16px;
    margin: 16px 0;
}

article h3 {
    font-weight: 700;
    font-size: 2.5em;
    text-align: center;
    padding: 0 16px;
    margin: 16px 0 36px;
}

article p {
    margin-bottom: 16px;
}

article p:first-of-type {
    margin-top: 16px;
}


main {
    display: flex;
    flex-direction: column;
}

main .fraction:first-child {
    flex-grow: 1;
}

main .fraction:last-child {
    flex-grow: 1;
}

.fraction .columns a, 
.fraction .sub-sections a {
    text-decoration: none;
    color: var(--text-link);
    transition: 0s ease-out color;
}

.fraction .columns a:visited,
.fraction .sub-sections a:visited {
	color: #999;
}

.fraction .columns a:focus, 
.fraction .columns a:hover,
.fraction .columns a:active,
.fraction .sub-sections a:focus, 
.fraction .sub-sections a:hover,
.fraction .sub-sections a:active {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.fraction .sub-sections a.toplist:visited {
	color: var(--text-link);
}

.fraction .sub-sections a.toplist:focus, 
.fraction .sub-sections a.toplist:hover,
.fraction .sub-sections a.toplist:active {
    color: var(--text-link-hover);
    text-decoration: underline;
}

a.toplist:focus, 
a.toplist:hover,
a.toplist:active {
    color: var(--text-link-hover);
    text-decoration: underline;
}



.section-nav {
    display: none;
    position: absolute;
    top: 13px;
    right: 0;
    color: var(--text-secondary);
}

.section-nav a:link, 
.section-nav a:visited,
.section-nav a:hover, 
.section-nav a:active {
    color: var(--text-secondary-link);
}

.section-nav span {
    font-weight: 700;
    display: block;
    float: left;
}

.section-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.section-nav li {
    border-right: var(--text-secondary) 1px solid;
    padding: 0 10px;
}
.section-nav li:last-child {
    border-right: 0;
}



.sub-sections {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sub-section {
    padding-left: 16px;
    flex-grow: 1;
    padding-bottom: 16px;
}


.columns {
    columns: 1;
    column-gap: 30px;
    padding: 16px 0;
}

.columns ol {
    margin: 0;
}

.columns ul {
    margin: 0 16px;
}

.columns li {
	border: 0;
    margin: 0;
	padding: 3px;
	text-align: left;
}

#screenshot { 
    position: absolute;
    border: 0;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


aside table {
    display: grid;
    grid-template-columns: minmax(10px, auto) minmax(10px, auto) minmax(10px, auto);
    grid-gap: 6px 2px;
    padding: 19px 16px 20px 16px;
    justify-content: space-between;
    border-collapse: collapse;
}

aside td {
	padding: 0;
}

aside tbody,
aside tr {
	display: contents;
}

/* pagination */

.pagination {
	display: flex;
	flex-flow: row;
	justify-content: space-around;
	padding: 11px 0;
    align-items: center;
    gap: 0;
    border-radius: var(--radius-bottom);
    background-color: var(--brand);
    color: var(--text-secondary)
}

.pagination a:link, 
.pagination a:visited,
.pagination a:hover, 
.pagination a:active {
    color: var(--text-secondary-link);
}

.anchor {
    display: none;
}

.key {
    font-weight: 400;
}

.pagination .item {
    padding: 0;
}

.arrow-left {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.4em solid transparent;
	border-bottom: 0.4em solid transparent;
	border-right: 0.6em solid;
	margin-left: 0.2em;
}

.arrow-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.6em solid;
    margin-right: 0.2em;
}


@media screen and (min-width: 700px) {

    header span:first-child {
        font-size: 2.5em;
    }

    header span:last-child {
        font-size: 1.25em;
    }

 
    h1, 
    h2,
    h3 {
        font-size: 1.5em;
    }

    .columns {
        columns: 2;
    }

    .section-nav {
        display: block;
    }



    main .fraction:last-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: var(--gap);
    }
    main .fraction:last-child > * {
        min-width: 30%;
        flex-grow: 1;
    }

    main .fraction:last-child .section-search {
        min-width: 80%;
    }
    
    .anchor {
        display: initial;
    }
    

}

@media screen and (min-width: 1000px) {

   
    header span:first-child {
        font-size: 3em;
    }
    
    header span:last-child {
        font-size: 1.5em;
    }



    .columns {
        columns: 3;
    }

    .pagination {
        gap: 32px;
        justify-content: center;
    }




    
}

@media screen and (min-width: 1300px) {


    header span:first-child {
        font-size: 3.5em;
    }
    
    header span:last-child {
        font-size: 1.75em;
    }


    nav ul {
        padding: 0;
    }

    nav li a, 
    nav li a:hover, 
    nav li a:active {
        border-radius: var(--radius-bottom);
    }



    .columns {
        columns: 4;
    }

    section .columns {
        columns: 3;
    }

    main {
        flex-direction: row;
        gap: var(--gap);
    }
        
    main .fraction:last-child {
        display: block;
        width: 280px;
        flex-grow: 0;
        flex-shrink: 0;
    }


    
}





/* footer */


footer {
    width: 100%;
    background-color: var(--background-footer);
    color: var(--text-secondary);
    padding: 20px;
    /*margin-top: auto;*/
}
 
footer a:link, 
footer a:visited,
footer a:hover, 
footer a:active {
    color: var(--text-secondary-link);
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .fraction:first-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .fraction:last-child {
    display: flex;
    padding: 10px;
    justify-content: center;
}

footer ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 12px;
}

footer li {
    text-align: center;
}

.rta {
    position: relative;
    top: 5px;
    width: 60px;
    display: inline;
    margin-right: 3px;
    left: -4px;
}


@media screen and (min-width: 1000px) {

    footer .wrapper {
        flex-direction: row;
    }

    footer ul {
        flex-direction: row;
        gap: unset;
    }

    footer li {
        border-right: #e5e5e5 1px solid;
        padding: 0 10px;
        text-align: initial;
    }
    footer li:last-child {
        border-right: 0;
    }

    footer .fraction:last-child {
        justify-content: initial;
    }

}





footer h3 {
    font-family: myFont;
    font-weight: 400;
    align-self: center;
}

footer h3 a:focus, 
footer h3 a:hover,
footer h3 a:active {
    text-decoration: none;
}

/* rest */



#aebn-pitch {
  margin: 16px;
}




.square {
    padding: 20px 0;
}
  
.square > a:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
}




/* tube */

.player {
    position: relative;
    display: block;
  }

video {
    display: block;
    max-width: 100%;
    width: 100%;
    padding: 16px;
}



.pitch {
    text-align: center;
    margin: 16px 0;
}

#endscreen {
	display: none;
	visibility: hidden;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
    background-color: var(--background-body);
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 1.5s;
	-moz-transition: opacity 1.5s;
	transition: opacity 1.5s;
	justify-content: center;
	align-items: center;
}

#endscreen.is-finished {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}


.section-videoinfo {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: 1fr;
	justify-content: space-between;
	padding: 16px;
	gap: 32px;
}

@media screen and (min-width: 700px) {
    .section-videoinfo {
        grid-auto-flow: column;
    }
}

.section-videoinfo h1 {
    display: inline;
    font-size: initial;
    font-weight: initial;
    color: var(--text);
    background-color: initial;
    padding: initial;
    text-align: initial;
    border-radius: initial;

}


.section-videoinfo img {
	border: 0;
}

/* figures */
/* figures tube */

.figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 16px;
    padding: 16px;
}

.figures figure {
    position: relative;
}

.figures figcaption {
    position: absolute;
    bottom: 6px;
    right: 6px;
    color: var(--text-secondary-link);
    background-color: rgba(0,0,0,.5);
    padding: 0 4px;
    font-size: small;
}

/* figures thumbs pages */

.figures.thumbs figcaption {
    position: relative;
    bottom: initial;
    right: initial;
    color: initial;
    background-color: initial;
    padding: 7px 0;
    text-align: center;
    color: var(--brand);
}

.figcaption-date,
.figcaption-content {
    position: absolute;
    bottom: 45px;
    color: var(--text-secondary-link);
    background-color: rgba(0,0,0,.5);
    padding: 0 4px;
}

.figcaption-date{
    left: 6px;
}

.figcaption-content {
    right: 6px;
}

.figcaption-description {
    font-size: 16px;
}



  


/*
.figures a:link, 
.figures a:visited 
.figures a:hover, 
.figures a:active {
    color: var(--text-secondary-link-hover);
    text-decoration: none;
}
*/

.figures img {
    width: 100%;
    max-width: 100%;
}

.figures a {
    padding: 0;
}

.figures a:hover {
    border: 0; /*1px solid var(--text-link-hover);*/
    padding: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
}

.figures.thumbs figcaption:hover {
    color: var(--text-link-hover);
}

.thumbs a:hover figcaption {
    color: var(--text-link-hover);
}
  






/********************* 
*		Star Rating 
*********************/
#rating {
    font-size: 12px;
}

.star-rating,
.star-rating a:hover,
.star-rating a:active,
.star-rating a:focus,
.star-rating .current-rating {
    background: url(tube/css/style/images/star.gif) left -1000px repeat-x;
}

.star-rating {
    position: relative;
    width: 90px;
    height: 18px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    background-position: left top;
}

.star-rating li {
    display: inline;
}

.star-rating a,
.star-rating .current-rating {
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -1000em;
    height: 18px;
    line-height: 18px;
    outline: none;
    overflow: hidden;
    border: none;
}

.star-rating a:hover,
.star-rating a:active,
.star-rating a:focus {
    background-position: left bottom;
}

.star-rating a.one-star {
    width: 20%;
    z-index: 6;
}

.star-rating a.two-stars {
    width: 40%;
    z-index: 5;
}

.star-rating a.three-stars {
    width: 60%;
    z-index: 4;
}

.star-rating a.four-stars {
    width: 80%;
    z-index: 3;
}

.star-rating a.five-stars {
    width: 100%;
    z-index: 2;
}

.star-rating .current-rating {
    z-index: 1;
    background-position: left center;
}

/** For an inline rater */
.inline-rating {
    display: -moz-inline-block;
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: middle;
}

/** Smaller star */
.small-star {
    width: 60px;
    height: 12px;
}

.small-star,
.small-star a:hover,
.small-star a:active,
.small-star a:focus,
.small-star .current-rating {
    background-image: url(images/star_small.gif);
    line-height: 12px;
    height: 12px;
}

nav li:last-child a {
	padding-top: 8px;
}

/* parallax */

.parallax {
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 28px;
    text-align: center;
  }
  
  .parallax1 {
    background-image: url(/buttons/parallax1.jpg);
  }
  
  .parallax2 {
    background-image: url(/buttons/parallax2.jpg);
  }
  
  .parallax3 {
    background-image: url(/buttons/parallax3.jpg);
  }
  
  .parallax::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }
  
  .parallax-pitch {
    display: inline-block;
    vertical-align: middle;
    width: 90%;
    text-shadow: 0 0 120px #000;
  }
  
  .parallax-pitch,
  .parallax-pitch a:link,
  .parallax-pitch a:visited,
  .parallax-pitch a:hover,
  .parallax-pitch a:active {
    color: #fff;
  }
  
  .parallax-pitch a:hover,
  .parallax-pitch a:active {
    text-decoration: underline;
  }
  
  
  
  .breakout {
    margin: 2rem -100%;
    margin: 2rem calc(50% - 50vw);
  }

  
  @media screen and (max-width: 699px) {
  
    .breakout {
      margin: 1.5rem -100%;
      margin: 1.5rem calc(50% - 50vw);
    }
  
    .parallax {
      font-size: 22px;
      background-attachment: inherit;
      background-size: 100% auto;
    }

    .parallax2 {
        background-image: url(/buttons/parallax2s.jpg);
    }
  
  }



  .contents figcaption {
    text-align: center;
  }

  .contents h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 24px 0 30px;
    text-align: center;
  }


  .contents h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 24px 0 28px;
    text-align: left;
  }


  .contents h4 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 18px 0;
    padding: 0 16px;
  }

  .excerpt {
    padding: 1rem;
  }

  .excerpt h3,
  .excerpt p {
    margin-bottom: 1rem;
  }

  
  .block img {
    margin: 0 auto;
  }