
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_8fc1c073cd1aac24b45e1c35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c3531d5d9d72aca8b3e2cdba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f377764f54c4abb30c40dca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab83eef2a2b64f001a71d4ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2525045a2179d5a61c1982be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f4aa327ae3bed636353669d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2bc0b6688bd898fd2bc72a30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bda819fc7e3795f9e375428f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f1313c52f99aeb2fa29007c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c7f83d08c5484102018e7d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_91129a89bea3d8e35a00422e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cfd786838820ebd97b317298.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_98ea955be58184bf2fe8329a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fc16a5af873f8328d8ce5819.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_219220f9eb1fb96ac4422cc6.woff2')format("woff");}.fff{font-family:fff;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_22fe190be2f7cb142102e9ea.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_859ecfba746d03f5094a995f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_55a1139f08cd7716a48481ae.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_859ecfba746d03f5094a995f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_81b9724099575aa5cb01dfda.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0af76533ce566beed094ed3e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2c4783348d1236e69f3d6148.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b40dc762639e90c2608bbfc4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e7f14527470b76d9e63d3358.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0ab719d7056a5cc0f7f2bb43.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4e673782f6579a72c018a53a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_78692ad85402a67548ce1ff9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_dc9b3b97ffb69c4d2317030d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e5165980715a0736e4c407fa.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_b9fc66ac9b3cc5adc37b5986.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.895508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e5165980715a0736e4c407fa.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_90dd9c5da493c1611e1ad759.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_c8caebf711beaea984128f49.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_ab09c354ab18d7eafabd47d4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_a5b11d451f3196c5fb6f895e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a4bf2633807862198003229c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e8c9ac6af1bf493857fcd2b0.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_521f5d7821b9db1ab9661396.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_48ca9efaf7df1fa0a5f1fabf.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_85ff864fb87760802f625e7c.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_7011bc470d33cb1c87d1d03d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_c6dfaebba92439f4eaf11203.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_5c750e8b2739b5c34a2be3e9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b59cd0deedf22c8222bd26e2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_859ecfba746d03f5094a995f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_4f1434e516d9a00172976177.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_859ecfba746d03f5094a995f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_a6a4da4ba2241cc28b0338e5.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_3eedcae0e987a9e579fddbb3.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_f74b9e066d5150a684b2f2c5.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_c8caebf711beaea984128f49.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_85ff864fb87760802f625e7c.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_5f78429894f719183b1c0409.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_8bc08b8034eed190936b057b.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.833984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_a3d7e8030c55c199651a60de.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_ec4b244e1b90d8ca94428044.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_91129a89bea3d8e35a00422e.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_3be08b6a001f2dc7179000b8.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_7993810b7207643bcc260a3d.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_85ff864fb87760802f625e7c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_9386e844a69cac6769093dd7.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls64{letter-spacing:-3.782880px;}
.ls65{letter-spacing:-2.930400px;}
.ls63{letter-spacing:-2.504160px;}
.ls66{letter-spacing:-1.180800px;}
.ls67{letter-spacing:-1.118880px;}
.ls14{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.083520px;}
.ls4f{letter-spacing:0.095040px;}
.ls58{letter-spacing:0.112080px;}
.ls51{letter-spacing:0.142560px;}
.ls54{letter-spacing:0.154080px;}
.ls57{letter-spacing:0.156240px;}
.ls33{letter-spacing:0.159840px;}
.ls68{letter-spacing:0.166920px;}
.ls16{letter-spacing:0.167040px;}
.ls48{letter-spacing:0.178440px;}
.ls52{letter-spacing:0.190080px;}
.ls30{letter-spacing:0.213120px;}
.ls0{letter-spacing:0.216840px;}
.ls6{letter-spacing:0.221160px;}
.ls62{letter-spacing:0.221340px;}
.ls55{letter-spacing:0.222840px;}
.ls18{letter-spacing:0.236160px;}
.ls4a{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.250560px;}
.ls22{letter-spacing:0.259200px;}
.ls4e{letter-spacing:0.266400px;}
.ls8{letter-spacing:0.267600px;}
.ls36{letter-spacing:0.275400px;}
.ls5{letter-spacing:0.276000px;}
.ls5a{letter-spacing:0.276060px;}
.ls37{letter-spacing:0.276180px;}
.ls39{letter-spacing:0.276600px;}
.ls49{letter-spacing:0.285120px;}
.ls1{letter-spacing:0.287280px;}
.ls2a{letter-spacing:0.295200px;}
.ls3{letter-spacing:0.302760px;}
.ls6a{letter-spacing:0.303360px;}
.ls81{letter-spacing:0.307200px;}
.ls31{letter-spacing:0.319680px;}
.ls1e{letter-spacing:0.324000px;}
.ls50{letter-spacing:0.332640px;}
.ls1c{letter-spacing:0.354240px;}
.ls32{letter-spacing:0.372960px;}
.ls34{letter-spacing:0.376800px;}
.ls43{letter-spacing:0.377220px;}
.lsd{letter-spacing:0.377400px;}
.ls7e{letter-spacing:0.378000px;}
.ls84{letter-spacing:0.378600px;}
.ls53{letter-spacing:0.380160px;}
.ls27{letter-spacing:0.388800px;}
.ls13{letter-spacing:0.399360px;}
.ls1b{letter-spacing:0.413280px;}
.ls4c{letter-spacing:0.426240px;}
.ls59{letter-spacing:0.427680px;}
.ls2d{letter-spacing:0.453600px;}
.ls4{letter-spacing:0.472320px;}
.ls2f{letter-spacing:0.479520px;}
.ls1f{letter-spacing:0.518400px;}
.ls19{letter-spacing:0.531360px;}
.ls60{letter-spacing:0.574800px;}
.lse{letter-spacing:0.583200px;}
.ls4d{letter-spacing:0.586080px;}
.ls1a{letter-spacing:0.590400px;}
.ls1d{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.655740px;}
.ls38{letter-spacing:0.655800px;}
.ls3c{letter-spacing:0.657000px;}
.ls56{letter-spacing:0.661680px;}
.lsc{letter-spacing:0.669240px;}
.ls86{letter-spacing:0.669600px;}
.ls4b{letter-spacing:0.712800px;}
.ls17{letter-spacing:0.767520px;}
.ls2e{letter-spacing:0.777600px;}
.ls3a{letter-spacing:0.826560px;}
.ls3b{letter-spacing:0.842400px;}
.ls21{letter-spacing:0.972000px;}
.ls20{letter-spacing:1.036800px;}
.ls46{letter-spacing:1.041000px;}
.ls87{letter-spacing:1.152000px;}
.ls79{letter-spacing:1.197600px;}
.ls45{letter-spacing:1.803600px;}
.ls7b{letter-spacing:3.048600px;}
.ls2c{letter-spacing:3.188760px;}
.ls2b{letter-spacing:3.189360px;}
.ls82{letter-spacing:3.251400px;}
.ls71{letter-spacing:3.684600px;}
.ls6c{letter-spacing:3.717000px;}
.ls6d{letter-spacing:3.726000px;}
.ls29{letter-spacing:4.453560px;}
.ls69{letter-spacing:4.549200px;}
.ls7c{letter-spacing:4.845000px;}
.ls77{letter-spacing:5.055600px;}
.ls3f{letter-spacing:5.703600px;}
.ls6f{letter-spacing:5.875800px;}
.ls70{letter-spacing:5.876400px;}
.ls11{letter-spacing:6.063600px;}
.ls28{letter-spacing:7.160400px;}
.ls6e{letter-spacing:7.209000px;}
.ls24{letter-spacing:7.223400px;}
.ls88{letter-spacing:7.633800px;}
.ls85{letter-spacing:8.420400px;}
.ls5d{letter-spacing:8.722200px;}
.ls5b{letter-spacing:8.723400px;}
.ls5c{letter-spacing:8.724000px;}
.ls3e{letter-spacing:8.974200px;}
.lsf{letter-spacing:9.705600px;}
.lsa{letter-spacing:9.915000px;}
.ls9{letter-spacing:9.916200px;}
.ls12{letter-spacing:11.300400px;}
.ls44{letter-spacing:11.698800px;}
.ls78{letter-spacing:12.053400px;}
.ls75{letter-spacing:13.285200px;}
.ls74{letter-spacing:13.286400px;}
.ls72{letter-spacing:13.286820px;}
.ls73{letter-spacing:13.287000px;}
.ls26{letter-spacing:13.308600px;}
.ls25{letter-spacing:13.309200px;}
.ls76{letter-spacing:13.444800px;}
.ls5e{letter-spacing:17.146800px;}
.ls41{letter-spacing:18.118800px;}
.ls40{letter-spacing:18.120600px;}
.ls5f{letter-spacing:18.442800px;}
.ls80{letter-spacing:19.270800px;}
.ls7f{letter-spacing:19.272000px;}
.ls7d{letter-spacing:19.663200px;}
.ls47{letter-spacing:19.745400px;}
.lsb{letter-spacing:22.597200px;}
.ls35{letter-spacing:22.872600px;}
.ls3d{letter-spacing:25.344000px;}
.ls61{letter-spacing:26.769000px;}
.ls23{letter-spacing:27.034800px;}
.ls83{letter-spacing:29.470800px;}
.ls7a{letter-spacing:30.457200px;}
.ls42{letter-spacing:30.831600px;}
.ls7{letter-spacing:51.491880px;}
.ls6b{letter-spacing:69.779400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws53{word-spacing:-1.101600px;}
.ws1e{word-spacing:-1.036800px;}
.ws3f{word-spacing:-0.907200px;}
.ws39{word-spacing:-0.885600px;}
.ws3a{word-spacing:-0.842400px;}
.ws5{word-spacing:-0.826560px;}
.ws52{word-spacing:-0.777600px;}
.wse{word-spacing:-0.712800px;}
.wsa{word-spacing:-0.649440px;}
.ws11{word-spacing:-0.648000px;}
.ws59{word-spacing:-0.639360px;}
.ws8{word-spacing:-0.590400px;}
.ws15{word-spacing:-0.583200px;}
.ws2f{word-spacing:-0.532800px;}
.ws7{word-spacing:-0.531360px;}
.ws1f{word-spacing:-0.518400px;}
.ws58{word-spacing:-0.479520px;}
.ws38{word-spacing:-0.472320px;}
.ws21{word-spacing:-0.453600px;}
.ws7b{word-spacing:-0.427680px;}
.ws32{word-spacing:-0.426240px;}
.wsd{word-spacing:-0.413280px;}
.wsf{word-spacing:-0.388800px;}
.ws63{word-spacing:-0.380160px;}
.ws31{word-spacing:-0.372960px;}
.ws37{word-spacing:-0.354240px;}
.ws1{word-spacing:-0.334080px;}
.ws5c{word-spacing:-0.332640px;}
.ws17{word-spacing:-0.324000px;}
.ws5a{word-spacing:-0.319680px;}
.ws6{word-spacing:-0.295200px;}
.ws5f{word-spacing:-0.285120px;}
.ws30{word-spacing:-0.266400px;}
.ws2{word-spacing:-0.250560px;}
.ws94{word-spacing:-0.237600px;}
.ws57{word-spacing:-0.213120px;}
.ws68{word-spacing:-0.190080px;}
.ws0{word-spacing:-0.167040px;}
.ws64{word-spacing:-0.142560px;}
.ws3{word-spacing:-0.072000px;}
.ws22{word-spacing:-0.064800px;}
.ws36{word-spacing:-0.059040px;}
.ws33{word-spacing:-0.053280px;}
.ws61{word-spacing:-0.047520px;}
.ws1d{word-spacing:0.000000px;}
.wsbe{word-spacing:1.065600px;}
.wsbd{word-spacing:1.121760px;}
.wsba{word-spacing:2.450880px;}
.wsbc{word-spacing:2.877120px;}
.wsbb{word-spacing:3.729600px;}
.ws95{word-spacing:6.985440px;}
.ws99{word-spacing:7.223040px;}
.ws67{word-spacing:7.270560px;}
.ws34{word-spacing:7.299360px;}
.wsa1{word-spacing:7.935840px;}
.ws6f{word-spacing:8.316000px;}
.ws4{word-spacing:8.442720px;}
.ws10{word-spacing:8.812800px;}
.wsd3{word-spacing:9.136800px;}
.ws87{word-spacing:9.171360px;}
.wse5{word-spacing:9.201600px;}
.wse4{word-spacing:9.314400px;}
.wse2{word-spacing:9.331200px;}
.wse7{word-spacing:9.460800px;}
.ws9d{word-spacing:9.931680px;}
.wse3{word-spacing:9.994800px;}
.ws18{word-spacing:10.044000px;}
.ws1a{word-spacing:10.173600px;}
.ws4c{word-spacing:10.368000px;}
.wsc2{word-spacing:10.432800px;}
.wse6{word-spacing:10.650000px;}
.ws19{word-spacing:10.692000px;}
.wsc0{word-spacing:10.821600px;}
.ws66{word-spacing:10.929600px;}
.wsbf{word-spacing:10.951200px;}
.ws80{word-spacing:11.024640px;}
.ws91{word-spacing:11.262240px;}
.ws9f{word-spacing:11.547360px;}
.ws4b{word-spacing:11.635620px;}
.wsc5{word-spacing:11.728800px;}
.wsc4{word-spacing:11.821860px;}
.ws1b{word-spacing:11.923200px;}
.wsca{word-spacing:11.956800px;}
.ws65{word-spacing:11.975040px;}
.ws3c{word-spacing:11.988000px;}
.ws2e{word-spacing:12.052800px;}
.ws3b{word-spacing:12.117600px;}
.ws2d{word-spacing:12.182400px;}
.wsc8{word-spacing:12.187800px;}
.wsb{word-spacing:12.280320px;}
.wscb{word-spacing:12.312000px;}
.wsc6{word-spacing:12.376800px;}
.wsad{word-spacing:12.402720px;}
.wsd1{word-spacing:12.441600px;}
.wsd0{word-spacing:12.571200px;}
.wsc7{word-spacing:12.587400px;}
.ws1c{word-spacing:12.636000px;}
.wscc{word-spacing:12.700800px;}
.wsd5{word-spacing:12.832800px;}
.ws4d{word-spacing:12.895200px;}
.wsc1{word-spacing:13.024800px;}
.wsd4{word-spacing:13.089600px;}
.ws8a{word-spacing:13.163040px;}
.ws77{word-spacing:13.210560px;}
.ws14{word-spacing:13.219200px;}
.wsc9{word-spacing:13.222200px;}
.wsd2{word-spacing:13.378800px;}
.wsb2{word-spacing:13.737600px;}
.wscf{word-spacing:14.256000px;}
.wsd9{word-spacing:14.320800px;}
.ws6b{word-spacing:14.541120px;}
.wscd{word-spacing:14.644800px;}
.wsdb{word-spacing:14.709600px;}
.wsce{word-spacing:14.904000px;}
.wsb3{word-spacing:15.811200px;}
.wse0{word-spacing:15.876000px;}
.wsda{word-spacing:15.907200px;}
.wsa6{word-spacing:15.919200px;}
.wsb4{word-spacing:16.070400px;}
.ws25{word-spacing:16.416060px;}
.ws20{word-spacing:16.588800px;}
.ws44{word-spacing:16.783200px;}
.ws75{word-spacing:16.822080px;}
.wsc{word-spacing:16.826400px;}
.ws26{word-spacing:16.848000px;}
.ws23{word-spacing:16.912800px;}
.ws45{word-spacing:17.020800px;}
.wsb5{word-spacing:17.236800px;}
.wsb6{word-spacing:17.366400px;}
.ws46{word-spacing:17.431200px;}
.ws47{word-spacing:17.560800px;}
.ws92{word-spacing:17.867520px;}
.ws27{word-spacing:17.884800px;}
.wse1{word-spacing:18.014400px;}
.ws24{word-spacing:18.208800px;}
.wsa8{word-spacing:18.342720px;}
.ws55{word-spacing:18.403200px;}
.wsdf{word-spacing:18.532800px;}
.ws8e{word-spacing:18.960480px;}
.ws56{word-spacing:19.051200px;}
.ws16{word-spacing:19.180800px;}
.ws7c{word-spacing:19.768320px;}
.ws12{word-spacing:20.476800px;}
.wsc3{word-spacing:20.865600px;}
.ws9{word-spacing:21.018240px;}
.ws51{word-spacing:21.189600px;}
.ws13{word-spacing:21.254400px;}
.wsec{word-spacing:21.418260px;}
.wsd6{word-spacing:21.578400px;}
.wsee{word-spacing:21.643200px;}
.ws3d{word-spacing:21.772800px;}
.ws6d{word-spacing:21.811680px;}
.wsd8{word-spacing:21.967200px;}
.ws3e{word-spacing:22.161600px;}
.ws8c{word-spacing:22.429440px;}
.ws35{word-spacing:22.590720px;}
.wsed{word-spacing:22.916400px;}
.wsd7{word-spacing:23.158200px;}
.ws42{word-spacing:23.976000px;}
.ws41{word-spacing:24.105600px;}
.wsdc{word-spacing:24.235200px;}
.ws4f{word-spacing:25.336800px;}
.wsb8{word-spacing:25.531200px;}
.ws50{word-spacing:25.596000px;}
.wsb9{word-spacing:25.660800px;}
.ws2a{word-spacing:25.790400px;}
.ws54{word-spacing:25.855200px;}
.ws29{word-spacing:25.920000px;}
.ws70{word-spacing:25.993440px;}
.ws28{word-spacing:26.179200px;}
.ws43{word-spacing:26.373600px;}
.wsb7{word-spacing:26.706000px;}
.ws4e{word-spacing:26.919840px;}
.wsea{word-spacing:28.236000px;}
.wse8{word-spacing:28.247400px;}
.wse9{word-spacing:28.641600px;}
.wseb{word-spacing:28.771200px;}
.wsdd{word-spacing:29.224800px;}
.wsde{word-spacing:29.354400px;}
.ws48{word-spacing:29.484000px;}
.ws49{word-spacing:29.613600px;}
.ws2b{word-spacing:32.400000px;}
.wsa0{word-spacing:32.693760px;}
.ws2c{word-spacing:33.048000px;}
.ws78{word-spacing:33.501600px;}
.ws7f{word-spacing:34.784640px;}
.wsa3{word-spacing:35.164800px;}
.ws79{word-spacing:35.449920px;}
.wsac{word-spacing:39.251520px;}
.ws4a{word-spacing:44.128800px;}
.ws6a{word-spacing:44.288640px;}
.ws9b{word-spacing:46.046880px;}
.ws6e{word-spacing:46.236960px;}
.ws90{word-spacing:47.567520px;}
.ws60{word-spacing:49.135680px;}
.ws69{word-spacing:49.230720px;}
.ws93{word-spacing:49.420800px;}
.ws81{word-spacing:50.228640px;}
.wsa2{word-spacing:52.224480px;}
.ws9a{word-spacing:52.272000px;}
.ws8f{word-spacing:54.790560px;}
.ws76{word-spacing:58.212000px;}
.wsae{word-spacing:58.544640px;}
.ws7a{word-spacing:58.877280px;}
.ws6c{word-spacing:60.017760px;}
.ws84{word-spacing:60.778080px;}
.wsa4{word-spacing:68.096160px;}
.ws5e{word-spacing:68.904000px;}
.ws62{word-spacing:69.996960px;}
.ws98{word-spacing:70.044480px;}
.ws89{word-spacing:70.329600px;}
.ws72{word-spacing:76.127040px;}
.ws86{word-spacing:76.412160px;}
.wsb1{word-spacing:78.930720px;}
.wsa5{word-spacing:81.164160px;}
.ws74{word-spacing:83.967840px;}
.ws5b{word-spacing:84.348000px;}
.wsaa{word-spacing:85.250880px;}
.ws40{word-spacing:86.767200px;}
.ws83{word-spacing:86.961600px;}
.wsb0{word-spacing:87.816960px;}
.ws96{word-spacing:101.787840px;}
.ws5d{word-spacing:103.498560px;}
.wsa7{word-spacing:105.684480px;}
.ws88{word-spacing:111.576960px;}
.ws73{word-spacing:118.182240px;}
.ws9c{word-spacing:119.655360px;}
.ws9e{word-spacing:125.120160px;}
.ws85{word-spacing:141.229440px;}
.wsab{word-spacing:141.704640px;}
.ws7e{word-spacing:150.923520px;}
.ws82{word-spacing:157.291200px;}
.ws8d{word-spacing:165.084480px;}
.ws97{word-spacing:166.842720px;}
.ws8b{word-spacing:172.164960px;}
.wsef{word-spacing:197.689860px;}
.wsa9{word-spacing:222.441120px;}
.ws71{word-spacing:225.339840px;}
.wsaf{word-spacing:247.674240px;}
.ws7d{word-spacing:250.192800px;}
._9{margin-left:-4.832880px;}
._8{margin-left:-3.597120px;}
._a{margin-left:-2.450880px;}
._1{margin-left:-1.062720px;}
._0{width:1.085760px;}
._2{width:2.560560px;}
._4{width:3.696600px;}
._3{width:5.208480px;}
._7{width:6.561480px;}
._6{width:8.385120px;}
._5{width:9.655200px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs4{font-size:53.280000px;}
.fs0{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.240000px;}
.y11c{bottom:3.240015px;}
.ybe{bottom:3.600000px;}
.y42{bottom:3.960000px;}
.y151{bottom:4.320000px;}
.y4f{bottom:4.680000px;}
.y14a{bottom:5.040000px;}
.y142{bottom:5.400000px;}
.y14b{bottom:5.760000px;}
.y15a{bottom:7.560000px;}
.y141{bottom:9.360000px;}
.y149{bottom:9.720000px;}
.y46{bottom:11.160000px;}
.y43{bottom:11.520000px;}
.y15d{bottom:11.880000px;}
.y15f{bottom:12.240000px;}
.y48{bottom:12.960000px;}
.ydb{bottom:13.429800px;}
.y153{bottom:13.680000px;}
.yd8{bottom:16.200000px;}
.y13f{bottom:16.920000px;}
.ycc{bottom:18.000000px;}
.ydf{bottom:18.360000px;}
.ybb{bottom:18.720000px;}
.y45{bottom:20.160000px;}
.y41{bottom:20.520000px;}
.yda{bottom:20.865450px;}
.y39{bottom:20.880000px;}
.y3a{bottom:21.240000px;}
.y126{bottom:26.401650px;}
.y11b{bottom:27.000000px;}
.y125{bottom:27.120150px;}
.y129{bottom:28.092450px;}
.y37{bottom:30.960000px;}
.ycb{bottom:32.760000px;}
.y127{bottom:33.120000px;}
.ybd{bottom:36.720000px;}
.y40{bottom:37.080000px;}
.yc0{bottom:38.390850px;}
.y11a{bottom:41.760000px;}
.yba{bottom:44.280000px;}
.yd7{bottom:45.360000px;}
.yca{bottom:47.160000px;}
.yde{bottom:47.520000px;}
.ybc{bottom:53.280000px;}
.y11f{bottom:55.362750px;}
.y119{bottom:56.160000px;}
.yd6{bottom:60.120000px;}
.y1{bottom:61.199985px;}
.yc9{bottom:61.920000px;}
.ydd{bottom:62.280000px;}
.y11e{bottom:63.282750px;}
.y36{bottom:64.440000px;}
.y118{bottom:70.920000px;}
.y3e{bottom:71.280000px;}
.y6c{bottom:71.640030px;}
.y12c{bottom:73.440000px;}
.yd5{bottom:74.880000px;}
.yc8{bottom:76.680000px;}
.ydc{bottom:77.040000px;}
.y19b{bottom:77.400015px;}
.y1b5{bottom:82.800030px;}
.yad{bottom:88.560015px;}
.yd4{bottom:89.280000px;}
.y18e{bottom:89.640015px;}
.y12b{bottom:90.000000px;}
.yc7{bottom:91.080000px;}
.y123{bottom:91.440000px;}
.y23{bottom:91.440015px;}
.y6b{bottom:91.800015px;}
.y4d{bottom:92.160015px;}
.y117{bottom:95.040000px;}
.yd3{bottom:104.040000px;}
.y3d{bottom:105.120000px;}
.yc6{bottom:105.840000px;}
.y122{bottom:106.200000px;}
.y19a{bottom:107.640015px;}
.y116{bottom:111.600000px;}
.y178{bottom:111.600015px;}
.y89{bottom:112.320015px;}
.yac{bottom:117.360015px;}
.yd2{bottom:118.800000px;}
.y4c{bottom:119.520015px;}
.y18d{bottom:119.880015px;}
.yc5{bottom:120.600000px;}
.y6a{bottom:120.960015px;}
.y22{bottom:121.320015px;}
.y1b4{bottom:122.040015px;}
.ye0{bottom:129.600000px;}
.y88{bottom:132.480015px;}
.yd1{bottom:133.200000px;}
.yc4{bottom:135.000000px;}
.y121{bottom:135.360000px;}
.y115{bottom:136.440000px;}
.y199{bottom:137.880015px;}
.y3c{bottom:138.960000px;}
.y177{bottom:141.840015px;}
.yab{bottom:146.520015px;}
.y4b{bottom:147.240015px;}
.yd0{bottom:147.960000px;}
.yc3{bottom:149.760000px;}
.y120{bottom:150.120000px;}
.y69{bottom:150.120015px;}
.y114{bottom:151.200000px;}
.y21{bottom:151.560015px;}
.y1b3{bottom:152.280015px;}
.y158{bottom:159.120000px;}
.ycf{bottom:162.720000px;}
.yc2{bottom:164.520000px;}
.y113{bottom:165.960000px;}
.y198{bottom:168.120015px;}
.y68{bottom:170.280015px;}
.y87{bottom:171.360015px;}
.y176{bottom:172.080015px;}
.ybf{bottom:172.440000px;}
.y4a{bottom:174.600015px;}
.yaa{bottom:175.680015px;}
.yce{bottom:177.480000px;}
.yc1{bottom:178.920000px;}
.y18c{bottom:180.360015px;}
.y20{bottom:181.800015px;}
.y1b2{bottom:182.520015px;}
.y112{bottom:190.080000px;}
.y197{bottom:198.360015px;}
.y67{bottom:199.440015px;}
.y157{bottom:200.880000px;}
.y175{bottom:202.320015px;}
.ya9{bottom:204.840015px;}
.y86{bottom:209.520015px;}
.y18b{bottom:210.600015px;}
.y1f{bottom:212.040015px;}
.y1b1{bottom:212.760015px;}
.y111{bottom:214.920000px;}
.y66{bottom:219.600015px;}
.y156{bottom:225.720000px;}
.y196{bottom:228.600015px;}
.y110{bottom:229.680000px;}
.y174{bottom:232.560015px;}
.ya8{bottom:234.000015px;}
.y85{bottom:238.680015px;}
.y1b0{bottom:243.000015px;}
.y10f{bottom:244.440000px;}
.y18a{bottom:249.840015px;}
.y155{bottom:250.560000px;}
.y1e{bottom:251.280015px;}
.y10e{bottom:258.840000px;}
.y65{bottom:258.840015px;}
.y3b{bottom:259.560000px;}
.y173{bottom:262.800015px;}
.ya7{bottom:263.160015px;}
.y84{bottom:267.840015px;}
.y1af{bottom:273.240015px;}
.y10d{bottom:273.600000px;}
.y154{bottom:275.040000px;}
.y49{bottom:276.840000px;}
.y189{bottom:280.080015px;}
.y1d{bottom:281.520015px;}
.y10c{bottom:288.360000px;}
.y64{bottom:289.080015px;}
.ya6{bottom:292.320015px;}
.y172{bottom:293.040015px;}
.y83{bottom:297.000015px;}
.y152{bottom:299.880000px;}
.y10b{bottom:302.760000px;}
.y1ae{bottom:303.480015px;}
.y188{bottom:310.320015px;}
.y47{bottom:310.680000px;}
.y1c{bottom:311.760015px;}
.y10a{bottom:317.520000px;}
.y195{bottom:319.320015px;}
.ya5{bottom:321.480015px;}
.y171{bottom:323.280015px;}
.y82{bottom:326.160015px;}
.y63{bottom:328.320015px;}
.y1ad{bottom:333.360015px;}
.y150{bottom:334.440000px;}
.y44{bottom:336.960000px;}
.y187{bottom:340.560015px;}
.y109{bottom:341.280000px;}
.y1b{bottom:342.000015px;}
.y194{bottom:349.560015px;}
.ya4{bottom:350.640015px;}
.y170{bottom:353.520015px;}
.y81{bottom:355.320015px;}
.y108{bottom:355.680000px;}
.y14f{bottom:361.080000px;}
.yb9{bottom:363.600000px;}
.y1ac{bottom:363.600015px;}
.y3f{bottom:370.440000px;}
.ya3{bottom:370.800015px;}
.y12e{bottom:371.520000px;}
.y1a{bottom:372.240015px;}
.y130{bottom:374.760000px;}
.y62{bottom:376.560015px;}
.y107{bottom:379.440000px;}
.y186{bottom:379.800015px;}
.y16f{bottom:383.760015px;}
.y80{bottom:384.480015px;}
.y12d{bottom:388.080000px;}
.y12f{bottom:389.520000px;}
.ya2{bottom:390.960015px;}
.y14e{bottom:391.320000px;}
.y1ab{bottom:393.840015px;}
.y106{bottom:394.200000px;}
.y19{bottom:402.480015px;}
.y7f{bottom:404.640015px;}
.y61{bottom:406.800015px;}
.y105{bottom:408.960000px;}
.y185{bottom:409.680015px;}
.y16e{bottom:413.640015px;}
.ya1{bottom:420.120015px;}
.y35{bottom:420.840000px;}
.y14d{bottom:421.560000px;}
.y104{bottom:423.360000px;}
.y1aa{bottom:424.080015px;}
.yb8{bottom:430.200000px;}
.y18{bottom:432.720015px;}
.y7e{bottom:433.800015px;}
.y60{bottom:437.040015px;}
.y184{bottom:439.920015px;}
.ya0{bottom:440.280015px;}
.y103{bottom:447.120000px;}
.y14c{bottom:451.800000px;}
.y16d{bottom:452.880015px;}
.y1a9{bottom:454.320015px;}
.y102{bottom:461.880000px;}
.y17{bottom:462.960015px;}
.y38{bottom:464.400000px;}
.y5f{bottom:467.280015px;}
.y9f{bottom:469.440015px;}
.y34{bottom:470.160015px;}
.yb7{bottom:472.680000px;}
.y101{bottom:476.280000px;}
.y148{bottom:481.680000px;}
.y1a8{bottom:484.560015px;}
.y9e{bottom:489.600015px;}
.y16c{bottom:490.680015px;}
.y100{bottom:491.040000px;}
.yb5{bottom:491.400015px;}
.y16{bottom:493.200015px;}
.y5e{bottom:497.160015px;}
.yb6{bottom:498.960000px;}
.y33{bottom:500.400015px;}
.y7d{bottom:502.200015px;}
.yff{bottom:505.800000px;}
.y147{bottom:511.920000px;}
.y1a7{bottom:514.800015px;}
.y9d{bottom:518.760015px;}
.yfe{bottom:520.200000px;}
.y15{bottom:523.080015px;}
.y32{bottom:530.640015px;}
.y12a{bottom:531.000000px;}
.yfd{bottom:534.960000px;}
.y9c{bottom:538.920015px;}
.y183{bottom:539.640015px;}
.y7c{bottom:541.440015px;}
.y146{bottom:542.160000px;}
.y1a6{bottom:545.040015px;}
.yfc{bottom:549.720000px;}
.y5d{bottom:555.840015px;}
.y31{bottom:560.880015px;}
.yfb{bottom:564.120000px;}
.y9b{bottom:568.080015px;}
.y182{bottom:569.880015px;}
.y145{bottom:572.400000px;}
.y1a5{bottom:575.280015px;}
.y16b{bottom:576.000000px;}
.yfa{bottom:578.880000px;}
.y14{bottom:581.760015px;}
.y7b{bottom:589.680015px;}
.y30{bottom:591.120015px;}
.yf9{bottom:593.640000px;}
.y9a{bottom:597.240015px;}
.yb4{bottom:600.120015px;}
.y144{bottom:602.640000px;}
.y16a{bottom:604.080000px;}
.y1a4{bottom:605.520015px;}
.y5c{bottom:614.520015px;}
.y99{bottom:617.040015px;}
.yf8{bottom:617.760000px;}
.y7a{bottom:619.920015px;}
.y13{bottom:630.360015px;}
.y169{bottom:632.160000px;}
.y143{bottom:632.880000px;}
.y128{bottom:634.320000px;}
.y1a3{bottom:635.760015px;}
.yf7{bottom:642.600000px;}
.y5b{bottom:644.760015px;}
.y98{bottom:646.200015px;}
.y79{bottom:650.160015px;}
.yf6{bottom:657.360000px;}
.y193{bottom:658.800015px;}
.y12{bottom:659.520015px;}
.y168{bottom:660.240000px;}
.y2f{bottom:660.600015px;}
.y140{bottom:663.120000px;}
.y1a2{bottom:666.000015px;}
.y97{bottom:666.360015px;}
.yf5{bottom:672.120000px;}
.y5a{bottom:675.000015px;}
.y78{bottom:680.040015px;}
.yf4{bottom:686.520000px;}
.y167{bottom:688.320000px;}
.y2e{bottom:690.840015px;}
.y13e{bottom:693.360000px;}
.y13c{bottom:694.440015px;}
.y96{bottom:695.520015px;}
.y1a1{bottom:696.240015px;}
.y181{bottom:699.840015px;}
.yf3{bottom:710.280000px;}
.y77{bottom:710.280015px;}
.y59{bottom:714.240015px;}
.y95{bottom:715.680015px;}
.y166{bottom:716.040000px;}
.y11{bottom:717.120015px;}
.y13b{bottom:720.000015px;}
.y2d{bottom:721.080015px;}
.yf2{bottom:725.040000px;}
.y1a0{bottom:726.120015px;}
.y180{bottom:730.080015px;}
.y13d{bottom:730.800000px;}
.y10{bottom:735.480015px;}
.yf1{bottom:739.440000px;}
.y76{bottom:740.520015px;}
.y165{bottom:744.120000px;}
.y58{bottom:744.480015px;}
.y94{bottom:744.840015px;}
.y13a{bottom:745.200015px;}
.y192{bottom:747.360015px;}
.y2c{bottom:751.320015px;}
.y124{bottom:752.040000px;}
.yf{bottom:753.840015px;}
.yf0{bottom:754.200000px;}
.y19f{bottom:756.360015px;}
.y17f{bottom:760.320015px;}
.y163{bottom:762.840015px;}
.y93{bottom:765.000015px;}
.yef{bottom:768.960000px;}
.y75{bottom:770.760015px;}
.ye{bottom:771.840015px;}
.y164{bottom:772.200000px;}
.y191{bottom:777.600015px;}
.yb3{bottom:781.560015px;}
.y57{bottom:783.720015px;}
.y19e{bottom:786.600015px;}
.yd{bottom:790.200015px;}
.yee{bottom:793.080000px;}
.y162{bottom:793.080015px;}
.y92{bottom:794.160015px;}
.y190{bottom:807.840015px;}
.yc{bottom:808.560015px;}
.y2b{bottom:809.640015px;}
.y74{bottom:810.000015px;}
.yb2{bottom:811.440015px;}
.y56{bottom:813.600015px;}
.y91{bottom:814.320015px;}
.y19d{bottom:816.840015px;}
.yed{bottom:817.920000px;}
.y17e{bottom:818.640015px;}
.y139{bottom:820.800015px;}
.yb{bottom:826.920015px;}
.yec{bottom:832.680000px;}
.y18f{bottom:838.080015px;}
.y73{bottom:840.240015px;}
.yb1{bottom:841.680015px;}
.y161{bottom:842.760015px;}
.y90{bottom:843.480015px;}
.ya{bottom:845.280015px;}
.y19c{bottom:847.080015px;}
.yeb{bottom:847.440000px;}
.y138{bottom:851.040015px;}
.y55{bottom:852.840015px;}
.yea{bottom:861.840000px;}
.y9{bottom:863.640015px;}
.y2a{bottom:868.320015px;}
.y11d{bottom:870.120000px;}
.y72{bottom:870.480015px;}
.y8f{bottom:872.640015px;}
.ye9{bottom:876.600000px;}
.y17d{bottom:877.320015px;}
.y137{bottom:881.280015px;}
.y8{bottom:882.000015px;}
.yb0{bottom:882.360015px;}
.y54{bottom:883.080015px;}
.y160{bottom:891.000015px;}
.ye8{bottom:891.360000px;}
.y29{bottom:898.560015px;}
.y7{bottom:900.000015px;}
.y71{bottom:900.720015px;}
.y8e{bottom:901.800015px;}
.ye7{bottom:905.760000px;}
.y17c{bottom:907.560015px;}
.y136{bottom:911.520015px;}
.ye6{bottom:920.520000px;}
.y8d{bottom:921.960015px;}
.y53{bottom:922.320015px;}
.y28{bottom:928.800015px;}
.y70{bottom:930.960015px;}
.ye5{bottom:935.280000px;}
.y17b{bottom:937.800015px;}
.y135{bottom:941.760015px;}
.ye4{bottom:949.680000px;}
.y8c{bottom:951.120015px;}
.y52{bottom:952.560015px;}
.y6{bottom:955.080015px;}
.y27{bottom:959.040015px;}
.y6f{bottom:961.200015px;}
.ye3{bottom:964.440000px;}
.y17a{bottom:968.040015px;}
.y8b{bottom:971.280015px;}
.y134{bottom:972.000015px;}
.ye2{bottom:979.200000px;}
.yaf{bottom:980.280015px;}
.y5{bottom:985.680015px;}
.y26{bottom:989.280015px;}
.y51{bottom:990.000015px;}
.ye1{bottom:993.960000px;}
.y179{bottom:998.280015px;}
.y6e{bottom:1000.440015px;}
.y133{bottom:1002.240015px;}
.y15e{bottom:1004.040000px;}
.yae{bottom:1009.440015px;}
.y4{bottom:1014.840015px;}
.y25{bottom:1028.520015px;}
.y8a{bottom:1029.600015px;}
.y132{bottom:1031.400015px;}
.y15c{bottom:1037.160000px;}
.y6d{bottom:1038.600015px;}
.y3{bottom:1045.440015px;}
.yd9{bottom:1046.520000px;}
.y24{bottom:1058.760015px;}
.y131{bottom:1060.200015px;}
.y15b{bottom:1069.920000px;}
.y50{bottom:1075.680000px;}
.y4e{bottom:1105.560000px;}
.y159{bottom:1110.960000px;}
.y2{bottom:1133.640015px;}
.h2c{height:16.200000px;}
.h32{height:16.559970px;}
.h12{height:16.559985px;}
.h21{height:16.560015px;}
.h2a{height:18.360015px;}
.h2e{height:20.160000px;}
.h24{height:21.959970px;}
.h29{height:21.960000px;}
.h27{height:21.960015px;}
.h28{height:22.320000px;}
.h30{height:24.480015px;}
.h31{height:24.840000px;}
.h10{height:25.559985px;}
.h15{height:25.560015px;}
.h2b{height:26.280000px;}
.h36{height:27.000000px;}
.h33{height:27.359985px;}
.h35{height:27.360030px;}
.h13{height:29.160000px;}
.h22{height:29.519985px;}
.h23{height:32.530781px;}
.he{height:32.760000px;}
.h2f{height:32.760045px;}
.h11{height:33.120000px;}
.h2d{height:33.479985px;}
.hf{height:38.242969px;}
.h19{height:39.190078px;}
.h3{height:39.350391px;}
.h34{height:40.474688px;}
.h16{height:41.760000px;}
.ha{height:42.480015px;}
.hb{height:42.840000px;}
.h9{height:43.940391px;}
.h14{height:44.423438px;}
.h26{height:47.988281px;}
.h7{height:48.690703px;}
.h6{height:49.359375px;}
.hd{height:49.680015px;}
.h5{height:53.441016px;}
.h4{height:57.256875px;}
.h25{height:59.378906px;}
.h17{height:65.880015px;}
.h8{height:86.039985px;}
.h1a{height:88.199985px;}
.h1f{height:102.599985px;}
.h1e{height:117.000000px;}
.h1d{height:117.359985px;}
.hc{height:160.560000px;}
.h1c{height:175.680000px;}
.h18{height:190.080000px;}
.h20{height:400.680000px;}
.h1b{height:1005.120000px;}
.h2{height:1188.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w11{width:62.999970px;}
.wf{width:64.440015px;}
.w15{width:65.519985px;}
.w10{width:73.800000px;}
.w1c{width:74.519985px;}
.we{width:80.280000px;}
.w16{width:81.720000px;}
.w14{width:84.240000px;}
.w1d{width:86.400015px;}
.w1e{width:93.240000px;}
.w13{width:95.039985px;}
.w5{width:100.439985px;}
.w6{width:100.800015px;}
.w12{width:116.279985px;}
.w19{width:129.240000px;}
.w18{width:137.519985px;}
.w17{width:137.520015px;}
.wb{width:157.680000px;}
.wc{width:158.040000px;}
.wa{width:158.760000px;}
.w9{width:159.120000px;}
.w20{width:160.200000px;}
.w4{width:201.960000px;}
.w7{width:209.160000px;}
.w8{width:241.560000px;}
.w1f{width:254.520000px;}
.w1b{width:352.080000px;}
.w3{width:451.440000px;}
.w1a{width:606.600000px;}
.wd{width:647.640000px;}
.w2{width:865.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x41{left:3.959955px;}
.xf{left:7.560000px;}
.x20{left:9.311355px;}
.x21{left:10.903275px;}
.x1{left:13.500000px;}
.x38{left:16.130565px;}
.x24{left:17.755350px;}
.x26{left:18.785400px;}
.x32{left:20.940150px;}
.x28{left:22.528350px;}
.xa{left:24.186600px;}
.x42{left:25.274850px;}
.x2d{left:27.562350px;}
.x43{left:28.676100px;}
.x30{left:31.562250px;}
.x37{left:32.917500px;}
.x8{left:34.634100px;}
.x34{left:36.720000px;}
.x2e{left:38.784900px;}
.x33{left:40.191450px;}
.x36{left:41.565900px;}
.x16{left:42.682950px;}
.x10{left:44.060250px;}
.x12{left:46.588800px;}
.x35{left:49.126650px;}
.x11{left:50.332350px;}
.x7{left:55.642800px;}
.x50{left:59.855100px;}
.xd{left:62.676750px;}
.x47{left:64.756050px;}
.x19{left:70.297050px;}
.xb{left:72.472050px;}
.x4f{left:74.858550px;}
.xc{left:78.315750px;}
.x18{left:97.769550px;}
.x4e{left:101.933550px;}
.x1e{left:107.281200px;}
.x48{left:110.049750px;}
.x49{left:112.043850px;}
.x2{left:113.760135px;}
.x5{left:119.340000px;}
.x3d{left:123.058650px;}
.x3b{left:127.620000px;}
.x51{left:140.760150px;}
.x4{left:156.285300px;}
.x45{left:159.043350px;}
.x1b{left:166.860000px;}
.x3{left:190.959900px;}
.x13{left:197.449950px;}
.x22{left:200.700000px;}
.x2c{left:202.140000px;}
.x3c{left:225.012600px;}
.x44{left:226.637400px;}
.x39{left:230.277150px;}
.x46{left:246.402900px;}
.x1f{left:255.371700px;}
.x1a{left:259.826700px;}
.x23{left:265.860000px;}
.x14{left:279.180000px;}
.x4b{left:280.260000px;}
.x4a{left:301.230450px;}
.xe{left:329.220000px;}
.x1d{left:337.829250px;}
.x25{left:340.380000px;}
.x1c{left:351.453000px;}
.x3a{left:394.183650px;}
.x27{left:404.100000px;}
.x15{left:438.660000px;}
.x4c{left:439.740000px;}
.x3e{left:479.700000px;}
.x2f{left:499.860000px;}
.x29{left:521.100000px;}
.x3f{left:554.580000px;}
.x6{left:571.500000px;}
.x17{left:597.060000px;}
.x4d{left:599.220000px;}
.x2a{left:616.860000px;}
.x31{left:638.100000px;}
.x40{left:640.980000px;}
.x9{left:672.660000px;}
.x2b{left:701.820000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls64{letter-spacing:-3.362560pt;}
.ls65{letter-spacing:-2.604800pt;}
.ls63{letter-spacing:-2.225920pt;}
.ls66{letter-spacing:-1.049600pt;}
.ls67{letter-spacing:-0.994560pt;}
.ls14{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.074240pt;}
.ls4f{letter-spacing:0.084480pt;}
.ls58{letter-spacing:0.099627pt;}
.ls51{letter-spacing:0.126720pt;}
.ls54{letter-spacing:0.136960pt;}
.ls57{letter-spacing:0.138880pt;}
.ls33{letter-spacing:0.142080pt;}
.ls68{letter-spacing:0.148373pt;}
.ls16{letter-spacing:0.148480pt;}
.ls48{letter-spacing:0.158613pt;}
.ls52{letter-spacing:0.168960pt;}
.ls30{letter-spacing:0.189440pt;}
.ls0{letter-spacing:0.192747pt;}
.ls6{letter-spacing:0.196587pt;}
.ls62{letter-spacing:0.196747pt;}
.ls55{letter-spacing:0.198080pt;}
.ls18{letter-spacing:0.209920pt;}
.ls4a{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.222720pt;}
.ls22{letter-spacing:0.230400pt;}
.ls4e{letter-spacing:0.236800pt;}
.ls8{letter-spacing:0.237867pt;}
.ls36{letter-spacing:0.244800pt;}
.ls5{letter-spacing:0.245333pt;}
.ls5a{letter-spacing:0.245387pt;}
.ls37{letter-spacing:0.245493pt;}
.ls39{letter-spacing:0.245867pt;}
.ls49{letter-spacing:0.253440pt;}
.ls1{letter-spacing:0.255360pt;}
.ls2a{letter-spacing:0.262400pt;}
.ls3{letter-spacing:0.269120pt;}
.ls6a{letter-spacing:0.269653pt;}
.ls81{letter-spacing:0.273067pt;}
.ls31{letter-spacing:0.284160pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls50{letter-spacing:0.295680pt;}
.ls1c{letter-spacing:0.314880pt;}
.ls32{letter-spacing:0.331520pt;}
.ls34{letter-spacing:0.334933pt;}
.ls43{letter-spacing:0.335307pt;}
.lsd{letter-spacing:0.335467pt;}
.ls7e{letter-spacing:0.336000pt;}
.ls84{letter-spacing:0.336533pt;}
.ls53{letter-spacing:0.337920pt;}
.ls27{letter-spacing:0.345600pt;}
.ls13{letter-spacing:0.354987pt;}
.ls1b{letter-spacing:0.367360pt;}
.ls4c{letter-spacing:0.378880pt;}
.ls59{letter-spacing:0.380160pt;}
.ls2d{letter-spacing:0.403200pt;}
.ls4{letter-spacing:0.419840pt;}
.ls2f{letter-spacing:0.426240pt;}
.ls1f{letter-spacing:0.460800pt;}
.ls19{letter-spacing:0.472320pt;}
.ls60{letter-spacing:0.510933pt;}
.lse{letter-spacing:0.518400pt;}
.ls4d{letter-spacing:0.520960pt;}
.ls1a{letter-spacing:0.524800pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.582880pt;}
.ls38{letter-spacing:0.582933pt;}
.ls3c{letter-spacing:0.584000pt;}
.ls56{letter-spacing:0.588160pt;}
.lsc{letter-spacing:0.594880pt;}
.ls86{letter-spacing:0.595200pt;}
.ls4b{letter-spacing:0.633600pt;}
.ls17{letter-spacing:0.682240pt;}
.ls2e{letter-spacing:0.691200pt;}
.ls3a{letter-spacing:0.734720pt;}
.ls3b{letter-spacing:0.748800pt;}
.ls21{letter-spacing:0.864000pt;}
.ls20{letter-spacing:0.921600pt;}
.ls46{letter-spacing:0.925333pt;}
.ls87{letter-spacing:1.024000pt;}
.ls79{letter-spacing:1.064533pt;}
.ls45{letter-spacing:1.603200pt;}
.ls7b{letter-spacing:2.709867pt;}
.ls2c{letter-spacing:2.834453pt;}
.ls2b{letter-spacing:2.834987pt;}
.ls82{letter-spacing:2.890133pt;}
.ls71{letter-spacing:3.275200pt;}
.ls6c{letter-spacing:3.304000pt;}
.ls6d{letter-spacing:3.312000pt;}
.ls29{letter-spacing:3.958720pt;}
.ls69{letter-spacing:4.043733pt;}
.ls7c{letter-spacing:4.306667pt;}
.ls77{letter-spacing:4.493867pt;}
.ls3f{letter-spacing:5.069867pt;}
.ls6f{letter-spacing:5.222933pt;}
.ls70{letter-spacing:5.223467pt;}
.ls11{letter-spacing:5.389867pt;}
.ls28{letter-spacing:6.364800pt;}
.ls6e{letter-spacing:6.408000pt;}
.ls24{letter-spacing:6.420800pt;}
.ls88{letter-spacing:6.785600pt;}
.ls85{letter-spacing:7.484800pt;}
.ls5d{letter-spacing:7.753067pt;}
.ls5b{letter-spacing:7.754133pt;}
.ls5c{letter-spacing:7.754667pt;}
.ls3e{letter-spacing:7.977067pt;}
.lsf{letter-spacing:8.627200pt;}
.lsa{letter-spacing:8.813333pt;}
.ls9{letter-spacing:8.814400pt;}
.ls12{letter-spacing:10.044800pt;}
.ls44{letter-spacing:10.398933pt;}
.ls78{letter-spacing:10.714133pt;}
.ls75{letter-spacing:11.809067pt;}
.ls74{letter-spacing:11.810133pt;}
.ls72{letter-spacing:11.810507pt;}
.ls73{letter-spacing:11.810667pt;}
.ls26{letter-spacing:11.829867pt;}
.ls25{letter-spacing:11.830400pt;}
.ls76{letter-spacing:11.950933pt;}
.ls5e{letter-spacing:15.241600pt;}
.ls41{letter-spacing:16.105600pt;}
.ls40{letter-spacing:16.107200pt;}
.ls5f{letter-spacing:16.393600pt;}
.ls80{letter-spacing:17.129600pt;}
.ls7f{letter-spacing:17.130667pt;}
.ls7d{letter-spacing:17.478400pt;}
.ls47{letter-spacing:17.551467pt;}
.lsb{letter-spacing:20.086400pt;}
.ls35{letter-spacing:20.331200pt;}
.ls3d{letter-spacing:22.528000pt;}
.ls61{letter-spacing:23.794667pt;}
.ls23{letter-spacing:24.030933pt;}
.ls83{letter-spacing:26.196267pt;}
.ls7a{letter-spacing:27.073067pt;}
.ls42{letter-spacing:27.405867pt;}
.ls7{letter-spacing:45.770560pt;}
.ls6b{letter-spacing:62.026133pt;}
.ws53{word-spacing:-0.979200pt;}
.ws1e{word-spacing:-0.921600pt;}
.ws3f{word-spacing:-0.806400pt;}
.ws39{word-spacing:-0.787200pt;}
.ws3a{word-spacing:-0.748800pt;}
.ws5{word-spacing:-0.734720pt;}
.ws52{word-spacing:-0.691200pt;}
.wse{word-spacing:-0.633600pt;}
.wsa{word-spacing:-0.577280pt;}
.ws11{word-spacing:-0.576000pt;}
.ws59{word-spacing:-0.568320pt;}
.ws8{word-spacing:-0.524800pt;}
.ws15{word-spacing:-0.518400pt;}
.ws2f{word-spacing:-0.473600pt;}
.ws7{word-spacing:-0.472320pt;}
.ws1f{word-spacing:-0.460800pt;}
.ws58{word-spacing:-0.426240pt;}
.ws38{word-spacing:-0.419840pt;}
.ws21{word-spacing:-0.403200pt;}
.ws7b{word-spacing:-0.380160pt;}
.ws32{word-spacing:-0.378880pt;}
.wsd{word-spacing:-0.367360pt;}
.wsf{word-spacing:-0.345600pt;}
.ws63{word-spacing:-0.337920pt;}
.ws31{word-spacing:-0.331520pt;}
.ws37{word-spacing:-0.314880pt;}
.ws1{word-spacing:-0.296960pt;}
.ws5c{word-spacing:-0.295680pt;}
.ws17{word-spacing:-0.288000pt;}
.ws5a{word-spacing:-0.284160pt;}
.ws6{word-spacing:-0.262400pt;}
.ws5f{word-spacing:-0.253440pt;}
.ws30{word-spacing:-0.236800pt;}
.ws2{word-spacing:-0.222720pt;}
.ws94{word-spacing:-0.211200pt;}
.ws57{word-spacing:-0.189440pt;}
.ws68{word-spacing:-0.168960pt;}
.ws0{word-spacing:-0.148480pt;}
.ws64{word-spacing:-0.126720pt;}
.ws3{word-spacing:-0.064000pt;}
.ws22{word-spacing:-0.057600pt;}
.ws36{word-spacing:-0.052480pt;}
.ws33{word-spacing:-0.047360pt;}
.ws61{word-spacing:-0.042240pt;}
.ws1d{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.947200pt;}
.wsbd{word-spacing:0.997120pt;}
.wsba{word-spacing:2.178560pt;}
.wsbc{word-spacing:2.557440pt;}
.wsbb{word-spacing:3.315200pt;}
.ws95{word-spacing:6.209280pt;}
.ws99{word-spacing:6.420480pt;}
.ws67{word-spacing:6.462720pt;}
.ws34{word-spacing:6.488320pt;}
.wsa1{word-spacing:7.054080pt;}
.ws6f{word-spacing:7.392000pt;}
.ws4{word-spacing:7.504640pt;}
.ws10{word-spacing:7.833600pt;}
.wsd3{word-spacing:8.121600pt;}
.ws87{word-spacing:8.152320pt;}
.wse5{word-spacing:8.179200pt;}
.wse4{word-spacing:8.279467pt;}
.wse2{word-spacing:8.294400pt;}
.wse7{word-spacing:8.409600pt;}
.ws9d{word-spacing:8.828160pt;}
.wse3{word-spacing:8.884267pt;}
.ws18{word-spacing:8.928000pt;}
.ws1a{word-spacing:9.043200pt;}
.ws4c{word-spacing:9.216000pt;}
.wsc2{word-spacing:9.273600pt;}
.wse6{word-spacing:9.466667pt;}
.ws19{word-spacing:9.504000pt;}
.wsc0{word-spacing:9.619200pt;}
.ws66{word-spacing:9.715200pt;}
.wsbf{word-spacing:9.734400pt;}
.ws80{word-spacing:9.799680pt;}
.ws91{word-spacing:10.010880pt;}
.ws9f{word-spacing:10.264320pt;}
.ws4b{word-spacing:10.342773pt;}
.wsc5{word-spacing:10.425600pt;}
.wsc4{word-spacing:10.508320pt;}
.ws1b{word-spacing:10.598400pt;}
.wsca{word-spacing:10.628267pt;}
.ws65{word-spacing:10.644480pt;}
.ws3c{word-spacing:10.656000pt;}
.ws2e{word-spacing:10.713600pt;}
.ws3b{word-spacing:10.771200pt;}
.ws2d{word-spacing:10.828800pt;}
.wsc8{word-spacing:10.833600pt;}
.wsb{word-spacing:10.915840pt;}
.wscb{word-spacing:10.944000pt;}
.wsc6{word-spacing:11.001600pt;}
.wsad{word-spacing:11.024640pt;}
.wsd1{word-spacing:11.059200pt;}
.wsd0{word-spacing:11.174400pt;}
.wsc7{word-spacing:11.188800pt;}
.ws1c{word-spacing:11.232000pt;}
.wscc{word-spacing:11.289600pt;}
.wsd5{word-spacing:11.406933pt;}
.ws4d{word-spacing:11.462400pt;}
.wsc1{word-spacing:11.577600pt;}
.wsd4{word-spacing:11.635200pt;}
.ws8a{word-spacing:11.700480pt;}
.ws77{word-spacing:11.742720pt;}
.ws14{word-spacing:11.750400pt;}
.wsc9{word-spacing:11.753067pt;}
.wsd2{word-spacing:11.892267pt;}
.wsb2{word-spacing:12.211200pt;}
.wscf{word-spacing:12.672000pt;}
.wsd9{word-spacing:12.729600pt;}
.ws6b{word-spacing:12.925440pt;}
.wscd{word-spacing:13.017600pt;}
.wsdb{word-spacing:13.075200pt;}
.wsce{word-spacing:13.248000pt;}
.wsb3{word-spacing:14.054400pt;}
.wse0{word-spacing:14.112000pt;}
.wsda{word-spacing:14.139733pt;}
.wsa6{word-spacing:14.150400pt;}
.wsb4{word-spacing:14.284800pt;}
.ws25{word-spacing:14.592053pt;}
.ws20{word-spacing:14.745600pt;}
.ws44{word-spacing:14.918400pt;}
.ws75{word-spacing:14.952960pt;}
.wsc{word-spacing:14.956800pt;}
.ws26{word-spacing:14.976000pt;}
.ws23{word-spacing:15.033600pt;}
.ws45{word-spacing:15.129600pt;}
.wsb5{word-spacing:15.321600pt;}
.wsb6{word-spacing:15.436800pt;}
.ws46{word-spacing:15.494400pt;}
.ws47{word-spacing:15.609600pt;}
.ws92{word-spacing:15.882240pt;}
.ws27{word-spacing:15.897600pt;}
.wse1{word-spacing:16.012800pt;}
.ws24{word-spacing:16.185600pt;}
.wsa8{word-spacing:16.304640pt;}
.ws55{word-spacing:16.358400pt;}
.wsdf{word-spacing:16.473600pt;}
.ws8e{word-spacing:16.853760pt;}
.ws56{word-spacing:16.934400pt;}
.ws16{word-spacing:17.049600pt;}
.ws7c{word-spacing:17.571840pt;}
.ws12{word-spacing:18.201600pt;}
.wsc3{word-spacing:18.547200pt;}
.ws9{word-spacing:18.682880pt;}
.ws51{word-spacing:18.835200pt;}
.ws13{word-spacing:18.892800pt;}
.wsec{word-spacing:19.038453pt;}
.wsd6{word-spacing:19.180800pt;}
.wsee{word-spacing:19.238400pt;}
.ws3d{word-spacing:19.353600pt;}
.ws6d{word-spacing:19.388160pt;}
.wsd8{word-spacing:19.526400pt;}
.ws3e{word-spacing:19.699200pt;}
.ws8c{word-spacing:19.937280pt;}
.ws35{word-spacing:20.080640pt;}
.wsed{word-spacing:20.370133pt;}
.wsd7{word-spacing:20.585067pt;}
.ws42{word-spacing:21.312000pt;}
.ws41{word-spacing:21.427200pt;}
.wsdc{word-spacing:21.542400pt;}
.ws4f{word-spacing:22.521600pt;}
.wsb8{word-spacing:22.694400pt;}
.ws50{word-spacing:22.752000pt;}
.wsb9{word-spacing:22.809600pt;}
.ws2a{word-spacing:22.924800pt;}
.ws54{word-spacing:22.982400pt;}
.ws29{word-spacing:23.040000pt;}
.ws70{word-spacing:23.105280pt;}
.ws28{word-spacing:23.270400pt;}
.ws43{word-spacing:23.443200pt;}
.wsb7{word-spacing:23.738667pt;}
.ws4e{word-spacing:23.928747pt;}
.wsea{word-spacing:25.098667pt;}
.wse8{word-spacing:25.108800pt;}
.wse9{word-spacing:25.459200pt;}
.wseb{word-spacing:25.574400pt;}
.wsdd{word-spacing:25.977600pt;}
.wsde{word-spacing:26.092800pt;}
.ws48{word-spacing:26.208000pt;}
.ws49{word-spacing:26.323200pt;}
.ws2b{word-spacing:28.800000pt;}
.wsa0{word-spacing:29.061120pt;}
.ws2c{word-spacing:29.376000pt;}
.ws78{word-spacing:29.779200pt;}
.ws7f{word-spacing:30.919680pt;}
.wsa3{word-spacing:31.257600pt;}
.ws79{word-spacing:31.511040pt;}
.wsac{word-spacing:34.890240pt;}
.ws4a{word-spacing:39.225600pt;}
.ws6a{word-spacing:39.367680pt;}
.ws9b{word-spacing:40.930560pt;}
.ws6e{word-spacing:41.099520pt;}
.ws90{word-spacing:42.282240pt;}
.ws60{word-spacing:43.676160pt;}
.ws69{word-spacing:43.760640pt;}
.ws93{word-spacing:43.929600pt;}
.ws81{word-spacing:44.647680pt;}
.wsa2{word-spacing:46.421760pt;}
.ws9a{word-spacing:46.464000pt;}
.ws8f{word-spacing:48.702720pt;}
.ws76{word-spacing:51.744000pt;}
.wsae{word-spacing:52.039680pt;}
.ws7a{word-spacing:52.335360pt;}
.ws6c{word-spacing:53.349120pt;}
.ws84{word-spacing:54.024960pt;}
.wsa4{word-spacing:60.529920pt;}
.ws5e{word-spacing:61.248000pt;}
.ws62{word-spacing:62.219520pt;}
.ws98{word-spacing:62.261760pt;}
.ws89{word-spacing:62.515200pt;}
.ws72{word-spacing:67.668480pt;}
.ws86{word-spacing:67.921920pt;}
.wsb1{word-spacing:70.160640pt;}
.wsa5{word-spacing:72.145920pt;}
.ws74{word-spacing:74.638080pt;}
.ws5b{word-spacing:74.976000pt;}
.wsaa{word-spacing:75.778560pt;}
.ws40{word-spacing:77.126400pt;}
.ws83{word-spacing:77.299200pt;}
.wsb0{word-spacing:78.059520pt;}
.ws96{word-spacing:90.478080pt;}
.ws5d{word-spacing:91.998720pt;}
.wsa7{word-spacing:93.941760pt;}
.ws88{word-spacing:99.179520pt;}
.ws73{word-spacing:105.050880pt;}
.ws9c{word-spacing:106.360320pt;}
.ws9e{word-spacing:111.217920pt;}
.ws85{word-spacing:125.537280pt;}
.wsab{word-spacing:125.959680pt;}
.ws7e{word-spacing:134.154240pt;}
.ws82{word-spacing:139.814400pt;}
.ws8d{word-spacing:146.741760pt;}
.ws97{word-spacing:148.304640pt;}
.ws8b{word-spacing:153.035520pt;}
.wsef{word-spacing:175.724320pt;}
.wsa9{word-spacing:197.725440pt;}
.ws71{word-spacing:200.302080pt;}
.wsaf{word-spacing:220.154880pt;}
.ws7d{word-spacing:222.393600pt;}
._9{margin-left:-4.295893pt;}
._8{margin-left:-3.197440pt;}
._a{margin-left:-2.178560pt;}
._1{margin-left:-0.944640pt;}
._0{width:0.965120pt;}
._2{width:2.276053pt;}
._4{width:3.285867pt;}
._3{width:4.629760pt;}
._7{width:5.832427pt;}
._6{width:7.453440pt;}
._5{width:8.582400pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:47.360000pt;}
.fs0{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.880000pt;}
.y11c{bottom:2.880013pt;}
.ybe{bottom:3.200000pt;}
.y42{bottom:3.520000pt;}
.y151{bottom:3.840000pt;}
.y4f{bottom:4.160000pt;}
.y14a{bottom:4.480000pt;}
.y142{bottom:4.800000pt;}
.y14b{bottom:5.120000pt;}
.y15a{bottom:6.720000pt;}
.y141{bottom:8.320000pt;}
.y149{bottom:8.640000pt;}
.y46{bottom:9.920000pt;}
.y43{bottom:10.240000pt;}
.y15d{bottom:10.560000pt;}
.y15f{bottom:10.880000pt;}
.y48{bottom:11.520000pt;}
.ydb{bottom:11.937600pt;}
.y153{bottom:12.160000pt;}
.yd8{bottom:14.400000pt;}
.y13f{bottom:15.040000pt;}
.ycc{bottom:16.000000pt;}
.ydf{bottom:16.320000pt;}
.ybb{bottom:16.640000pt;}
.y45{bottom:17.920000pt;}
.y41{bottom:18.240000pt;}
.yda{bottom:18.547067pt;}
.y39{bottom:18.560000pt;}
.y3a{bottom:18.880000pt;}
.y126{bottom:23.468133pt;}
.y11b{bottom:24.000000pt;}
.y125{bottom:24.106800pt;}
.y129{bottom:24.971067pt;}
.y37{bottom:27.520000pt;}
.ycb{bottom:29.120000pt;}
.y127{bottom:29.440000pt;}
.ybd{bottom:32.640000pt;}
.y40{bottom:32.960000pt;}
.yc0{bottom:34.125200pt;}
.y11a{bottom:37.120000pt;}
.yba{bottom:39.360000pt;}
.yd7{bottom:40.320000pt;}
.yca{bottom:41.920000pt;}
.yde{bottom:42.240000pt;}
.ybc{bottom:47.360000pt;}
.y11f{bottom:49.211333pt;}
.y119{bottom:49.920000pt;}
.yd6{bottom:53.440000pt;}
.y1{bottom:54.399987pt;}
.yc9{bottom:55.040000pt;}
.ydd{bottom:55.360000pt;}
.y11e{bottom:56.251333pt;}
.y36{bottom:57.280000pt;}
.y118{bottom:63.040000pt;}
.y3e{bottom:63.360000pt;}
.y6c{bottom:63.680027pt;}
.y12c{bottom:65.280000pt;}
.yd5{bottom:66.560000pt;}
.yc8{bottom:68.160000pt;}
.ydc{bottom:68.480000pt;}
.y19b{bottom:68.800013pt;}
.y1b5{bottom:73.600027pt;}
.yad{bottom:78.720013pt;}
.yd4{bottom:79.360000pt;}
.y18e{bottom:79.680013pt;}
.y12b{bottom:80.000000pt;}
.yc7{bottom:80.960000pt;}
.y123{bottom:81.280000pt;}
.y23{bottom:81.280013pt;}
.y6b{bottom:81.600013pt;}
.y4d{bottom:81.920013pt;}
.y117{bottom:84.480000pt;}
.yd3{bottom:92.480000pt;}
.y3d{bottom:93.440000pt;}
.yc6{bottom:94.080000pt;}
.y122{bottom:94.400000pt;}
.y19a{bottom:95.680013pt;}
.y116{bottom:99.200000pt;}
.y178{bottom:99.200013pt;}
.y89{bottom:99.840013pt;}
.yac{bottom:104.320013pt;}
.yd2{bottom:105.600000pt;}
.y4c{bottom:106.240013pt;}
.y18d{bottom:106.560013pt;}
.yc5{bottom:107.200000pt;}
.y6a{bottom:107.520013pt;}
.y22{bottom:107.840013pt;}
.y1b4{bottom:108.480013pt;}
.ye0{bottom:115.200000pt;}
.y88{bottom:117.760013pt;}
.yd1{bottom:118.400000pt;}
.yc4{bottom:120.000000pt;}
.y121{bottom:120.320000pt;}
.y115{bottom:121.280000pt;}
.y199{bottom:122.560013pt;}
.y3c{bottom:123.520000pt;}
.y177{bottom:126.080013pt;}
.yab{bottom:130.240013pt;}
.y4b{bottom:130.880013pt;}
.yd0{bottom:131.520000pt;}
.yc3{bottom:133.120000pt;}
.y120{bottom:133.440000pt;}
.y69{bottom:133.440013pt;}
.y114{bottom:134.400000pt;}
.y21{bottom:134.720013pt;}
.y1b3{bottom:135.360013pt;}
.y158{bottom:141.440000pt;}
.ycf{bottom:144.640000pt;}
.yc2{bottom:146.240000pt;}
.y113{bottom:147.520000pt;}
.y198{bottom:149.440013pt;}
.y68{bottom:151.360013pt;}
.y87{bottom:152.320013pt;}
.y176{bottom:152.960013pt;}
.ybf{bottom:153.280000pt;}
.y4a{bottom:155.200013pt;}
.yaa{bottom:156.160013pt;}
.yce{bottom:157.760000pt;}
.yc1{bottom:159.040000pt;}
.y18c{bottom:160.320013pt;}
.y20{bottom:161.600013pt;}
.y1b2{bottom:162.240013pt;}
.y112{bottom:168.960000pt;}
.y197{bottom:176.320013pt;}
.y67{bottom:177.280013pt;}
.y157{bottom:178.560000pt;}
.y175{bottom:179.840013pt;}
.ya9{bottom:182.080013pt;}
.y86{bottom:186.240013pt;}
.y18b{bottom:187.200013pt;}
.y1f{bottom:188.480013pt;}
.y1b1{bottom:189.120013pt;}
.y111{bottom:191.040000pt;}
.y66{bottom:195.200013pt;}
.y156{bottom:200.640000pt;}
.y196{bottom:203.200013pt;}
.y110{bottom:204.160000pt;}
.y174{bottom:206.720013pt;}
.ya8{bottom:208.000013pt;}
.y85{bottom:212.160013pt;}
.y1b0{bottom:216.000013pt;}
.y10f{bottom:217.280000pt;}
.y18a{bottom:222.080013pt;}
.y155{bottom:222.720000pt;}
.y1e{bottom:223.360013pt;}
.y10e{bottom:230.080000pt;}
.y65{bottom:230.080013pt;}
.y3b{bottom:230.720000pt;}
.y173{bottom:233.600013pt;}
.ya7{bottom:233.920013pt;}
.y84{bottom:238.080013pt;}
.y1af{bottom:242.880013pt;}
.y10d{bottom:243.200000pt;}
.y154{bottom:244.480000pt;}
.y49{bottom:246.080000pt;}
.y189{bottom:248.960013pt;}
.y1d{bottom:250.240013pt;}
.y10c{bottom:256.320000pt;}
.y64{bottom:256.960013pt;}
.ya6{bottom:259.840013pt;}
.y172{bottom:260.480013pt;}
.y83{bottom:264.000013pt;}
.y152{bottom:266.560000pt;}
.y10b{bottom:269.120000pt;}
.y1ae{bottom:269.760013pt;}
.y188{bottom:275.840013pt;}
.y47{bottom:276.160000pt;}
.y1c{bottom:277.120013pt;}
.y10a{bottom:282.240000pt;}
.y195{bottom:283.840013pt;}
.ya5{bottom:285.760013pt;}
.y171{bottom:287.360013pt;}
.y82{bottom:289.920013pt;}
.y63{bottom:291.840013pt;}
.y1ad{bottom:296.320013pt;}
.y150{bottom:297.280000pt;}
.y44{bottom:299.520000pt;}
.y187{bottom:302.720013pt;}
.y109{bottom:303.360000pt;}
.y1b{bottom:304.000013pt;}
.y194{bottom:310.720013pt;}
.ya4{bottom:311.680013pt;}
.y170{bottom:314.240013pt;}
.y81{bottom:315.840013pt;}
.y108{bottom:316.160000pt;}
.y14f{bottom:320.960000pt;}
.yb9{bottom:323.200000pt;}
.y1ac{bottom:323.200013pt;}
.y3f{bottom:329.280000pt;}
.ya3{bottom:329.600013pt;}
.y12e{bottom:330.240000pt;}
.y1a{bottom:330.880013pt;}
.y130{bottom:333.120000pt;}
.y62{bottom:334.720013pt;}
.y107{bottom:337.280000pt;}
.y186{bottom:337.600013pt;}
.y16f{bottom:341.120013pt;}
.y80{bottom:341.760013pt;}
.y12d{bottom:344.960000pt;}
.y12f{bottom:346.240000pt;}
.ya2{bottom:347.520013pt;}
.y14e{bottom:347.840000pt;}
.y1ab{bottom:350.080013pt;}
.y106{bottom:350.400000pt;}
.y19{bottom:357.760013pt;}
.y7f{bottom:359.680013pt;}
.y61{bottom:361.600013pt;}
.y105{bottom:363.520000pt;}
.y185{bottom:364.160013pt;}
.y16e{bottom:367.680013pt;}
.ya1{bottom:373.440013pt;}
.y35{bottom:374.080000pt;}
.y14d{bottom:374.720000pt;}
.y104{bottom:376.320000pt;}
.y1aa{bottom:376.960013pt;}
.yb8{bottom:382.400000pt;}
.y18{bottom:384.640013pt;}
.y7e{bottom:385.600013pt;}
.y60{bottom:388.480013pt;}
.y184{bottom:391.040013pt;}
.ya0{bottom:391.360013pt;}
.y103{bottom:397.440000pt;}
.y14c{bottom:401.600000pt;}
.y16d{bottom:402.560013pt;}
.y1a9{bottom:403.840013pt;}
.y102{bottom:410.560000pt;}
.y17{bottom:411.520013pt;}
.y38{bottom:412.800000pt;}
.y5f{bottom:415.360013pt;}
.y9f{bottom:417.280013pt;}
.y34{bottom:417.920013pt;}
.yb7{bottom:420.160000pt;}
.y101{bottom:423.360000pt;}
.y148{bottom:428.160000pt;}
.y1a8{bottom:430.720013pt;}
.y9e{bottom:435.200013pt;}
.y16c{bottom:436.160013pt;}
.y100{bottom:436.480000pt;}
.yb5{bottom:436.800013pt;}
.y16{bottom:438.400013pt;}
.y5e{bottom:441.920013pt;}
.yb6{bottom:443.520000pt;}
.y33{bottom:444.800013pt;}
.y7d{bottom:446.400013pt;}
.yff{bottom:449.600000pt;}
.y147{bottom:455.040000pt;}
.y1a7{bottom:457.600013pt;}
.y9d{bottom:461.120013pt;}
.yfe{bottom:462.400000pt;}
.y15{bottom:464.960013pt;}
.y32{bottom:471.680013pt;}
.y12a{bottom:472.000000pt;}
.yfd{bottom:475.520000pt;}
.y9c{bottom:479.040013pt;}
.y183{bottom:479.680013pt;}
.y7c{bottom:481.280013pt;}
.y146{bottom:481.920000pt;}
.y1a6{bottom:484.480013pt;}
.yfc{bottom:488.640000pt;}
.y5d{bottom:494.080013pt;}
.y31{bottom:498.560013pt;}
.yfb{bottom:501.440000pt;}
.y9b{bottom:504.960013pt;}
.y182{bottom:506.560013pt;}
.y145{bottom:508.800000pt;}
.y1a5{bottom:511.360013pt;}
.y16b{bottom:512.000000pt;}
.yfa{bottom:514.560000pt;}
.y14{bottom:517.120013pt;}
.y7b{bottom:524.160013pt;}
.y30{bottom:525.440013pt;}
.yf9{bottom:527.680000pt;}
.y9a{bottom:530.880013pt;}
.yb4{bottom:533.440013pt;}
.y144{bottom:535.680000pt;}
.y16a{bottom:536.960000pt;}
.y1a4{bottom:538.240013pt;}
.y5c{bottom:546.240013pt;}
.y99{bottom:548.480013pt;}
.yf8{bottom:549.120000pt;}
.y7a{bottom:551.040013pt;}
.y13{bottom:560.320013pt;}
.y169{bottom:561.920000pt;}
.y143{bottom:562.560000pt;}
.y128{bottom:563.840000pt;}
.y1a3{bottom:565.120013pt;}
.yf7{bottom:571.200000pt;}
.y5b{bottom:573.120013pt;}
.y98{bottom:574.400013pt;}
.y79{bottom:577.920013pt;}
.yf6{bottom:584.320000pt;}
.y193{bottom:585.600013pt;}
.y12{bottom:586.240013pt;}
.y168{bottom:586.880000pt;}
.y2f{bottom:587.200013pt;}
.y140{bottom:589.440000pt;}
.y1a2{bottom:592.000013pt;}
.y97{bottom:592.320013pt;}
.yf5{bottom:597.440000pt;}
.y5a{bottom:600.000013pt;}
.y78{bottom:604.480013pt;}
.yf4{bottom:610.240000pt;}
.y167{bottom:611.840000pt;}
.y2e{bottom:614.080013pt;}
.y13e{bottom:616.320000pt;}
.y13c{bottom:617.280013pt;}
.y96{bottom:618.240013pt;}
.y1a1{bottom:618.880013pt;}
.y181{bottom:622.080013pt;}
.yf3{bottom:631.360000pt;}
.y77{bottom:631.360013pt;}
.y59{bottom:634.880013pt;}
.y95{bottom:636.160013pt;}
.y166{bottom:636.480000pt;}
.y11{bottom:637.440013pt;}
.y13b{bottom:640.000013pt;}
.y2d{bottom:640.960013pt;}
.yf2{bottom:644.480000pt;}
.y1a0{bottom:645.440013pt;}
.y180{bottom:648.960013pt;}
.y13d{bottom:649.600000pt;}
.y10{bottom:653.760013pt;}
.yf1{bottom:657.280000pt;}
.y76{bottom:658.240013pt;}
.y165{bottom:661.440000pt;}
.y58{bottom:661.760013pt;}
.y94{bottom:662.080013pt;}
.y13a{bottom:662.400013pt;}
.y192{bottom:664.320013pt;}
.y2c{bottom:667.840013pt;}
.y124{bottom:668.480000pt;}
.yf{bottom:670.080013pt;}
.yf0{bottom:670.400000pt;}
.y19f{bottom:672.320013pt;}
.y17f{bottom:675.840013pt;}
.y163{bottom:678.080013pt;}
.y93{bottom:680.000013pt;}
.yef{bottom:683.520000pt;}
.y75{bottom:685.120013pt;}
.ye{bottom:686.080013pt;}
.y164{bottom:686.400000pt;}
.y191{bottom:691.200013pt;}
.yb3{bottom:694.720013pt;}
.y57{bottom:696.640013pt;}
.y19e{bottom:699.200013pt;}
.yd{bottom:702.400013pt;}
.yee{bottom:704.960000pt;}
.y162{bottom:704.960013pt;}
.y92{bottom:705.920013pt;}
.y190{bottom:718.080013pt;}
.yc{bottom:718.720013pt;}
.y2b{bottom:719.680013pt;}
.y74{bottom:720.000013pt;}
.yb2{bottom:721.280013pt;}
.y56{bottom:723.200013pt;}
.y91{bottom:723.840013pt;}
.y19d{bottom:726.080013pt;}
.yed{bottom:727.040000pt;}
.y17e{bottom:727.680013pt;}
.y139{bottom:729.600013pt;}
.yb{bottom:735.040013pt;}
.yec{bottom:740.160000pt;}
.y18f{bottom:744.960013pt;}
.y73{bottom:746.880013pt;}
.yb1{bottom:748.160013pt;}
.y161{bottom:749.120013pt;}
.y90{bottom:749.760013pt;}
.ya{bottom:751.360013pt;}
.y19c{bottom:752.960013pt;}
.yeb{bottom:753.280000pt;}
.y138{bottom:756.480013pt;}
.y55{bottom:758.080013pt;}
.yea{bottom:766.080000pt;}
.y9{bottom:767.680013pt;}
.y2a{bottom:771.840013pt;}
.y11d{bottom:773.440000pt;}
.y72{bottom:773.760013pt;}
.y8f{bottom:775.680013pt;}
.ye9{bottom:779.200000pt;}
.y17d{bottom:779.840013pt;}
.y137{bottom:783.360013pt;}
.y8{bottom:784.000013pt;}
.yb0{bottom:784.320013pt;}
.y54{bottom:784.960013pt;}
.y160{bottom:792.000013pt;}
.ye8{bottom:792.320000pt;}
.y29{bottom:798.720013pt;}
.y7{bottom:800.000013pt;}
.y71{bottom:800.640013pt;}
.y8e{bottom:801.600013pt;}
.ye7{bottom:805.120000pt;}
.y17c{bottom:806.720013pt;}
.y136{bottom:810.240013pt;}
.ye6{bottom:818.240000pt;}
.y8d{bottom:819.520013pt;}
.y53{bottom:819.840013pt;}
.y28{bottom:825.600013pt;}
.y70{bottom:827.520013pt;}
.ye5{bottom:831.360000pt;}
.y17b{bottom:833.600013pt;}
.y135{bottom:837.120013pt;}
.ye4{bottom:844.160000pt;}
.y8c{bottom:845.440013pt;}
.y52{bottom:846.720013pt;}
.y6{bottom:848.960013pt;}
.y27{bottom:852.480013pt;}
.y6f{bottom:854.400013pt;}
.ye3{bottom:857.280000pt;}
.y17a{bottom:860.480013pt;}
.y8b{bottom:863.360013pt;}
.y134{bottom:864.000013pt;}
.ye2{bottom:870.400000pt;}
.yaf{bottom:871.360013pt;}
.y5{bottom:876.160013pt;}
.y26{bottom:879.360013pt;}
.y51{bottom:880.000013pt;}
.ye1{bottom:883.520000pt;}
.y179{bottom:887.360013pt;}
.y6e{bottom:889.280013pt;}
.y133{bottom:890.880013pt;}
.y15e{bottom:892.480000pt;}
.yae{bottom:897.280013pt;}
.y4{bottom:902.080013pt;}
.y25{bottom:914.240013pt;}
.y8a{bottom:915.200013pt;}
.y132{bottom:916.800013pt;}
.y15c{bottom:921.920000pt;}
.y6d{bottom:923.200013pt;}
.y3{bottom:929.280013pt;}
.yd9{bottom:930.240000pt;}
.y24{bottom:941.120013pt;}
.y131{bottom:942.400013pt;}
.y15b{bottom:951.040000pt;}
.y50{bottom:956.160000pt;}
.y4e{bottom:982.720000pt;}
.y159{bottom:987.520000pt;}
.y2{bottom:1007.680013pt;}
.h2c{height:14.400000pt;}
.h32{height:14.719973pt;}
.h12{height:14.719987pt;}
.h21{height:14.720013pt;}
.h2a{height:16.320013pt;}
.h2e{height:17.920000pt;}
.h24{height:19.519973pt;}
.h29{height:19.520000pt;}
.h27{height:19.520013pt;}
.h28{height:19.840000pt;}
.h30{height:21.760013pt;}
.h31{height:22.080000pt;}
.h10{height:22.719987pt;}
.h15{height:22.720013pt;}
.h2b{height:23.360000pt;}
.h36{height:24.000000pt;}
.h33{height:24.319987pt;}
.h35{height:24.320027pt;}
.h13{height:25.920000pt;}
.h22{height:26.239987pt;}
.h23{height:28.916250pt;}
.he{height:29.120000pt;}
.h2f{height:29.120040pt;}
.h11{height:29.440000pt;}
.h2d{height:29.759987pt;}
.hf{height:33.993750pt;}
.h19{height:34.835625pt;}
.h3{height:34.978125pt;}
.h34{height:35.977500pt;}
.h16{height:37.120000pt;}
.ha{height:37.760013pt;}
.hb{height:38.080000pt;}
.h9{height:39.058125pt;}
.h14{height:39.487500pt;}
.h26{height:42.656250pt;}
.h7{height:43.280625pt;}
.h6{height:43.875000pt;}
.hd{height:44.160013pt;}
.h5{height:47.503125pt;}
.h4{height:50.895000pt;}
.h25{height:52.781250pt;}
.h17{height:58.560013pt;}
.h8{height:76.479987pt;}
.h1a{height:78.399987pt;}
.h1f{height:91.199987pt;}
.h1e{height:104.000000pt;}
.h1d{height:104.319987pt;}
.hc{height:142.720000pt;}
.h1c{height:156.160000pt;}
.h18{height:168.960000pt;}
.h20{height:356.160000pt;}
.h1b{height:893.440000pt;}
.h2{height:1056.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w11{width:55.999973pt;}
.wf{width:57.280013pt;}
.w15{width:58.239987pt;}
.w10{width:65.600000pt;}
.w1c{width:66.239987pt;}
.we{width:71.360000pt;}
.w16{width:72.640000pt;}
.w14{width:74.880000pt;}
.w1d{width:76.800013pt;}
.w1e{width:82.880000pt;}
.w13{width:84.479987pt;}
.w5{width:89.279987pt;}
.w6{width:89.600013pt;}
.w12{width:103.359987pt;}
.w19{width:114.880000pt;}
.w18{width:122.239987pt;}
.w17{width:122.240013pt;}
.wb{width:140.160000pt;}
.wc{width:140.480000pt;}
.wa{width:141.120000pt;}
.w9{width:141.440000pt;}
.w20{width:142.400000pt;}
.w4{width:179.520000pt;}
.w7{width:185.920000pt;}
.w8{width:214.720000pt;}
.w1f{width:226.240000pt;}
.w1b{width:312.960000pt;}
.w3{width:401.280000pt;}
.w1a{width:539.200000pt;}
.wd{width:575.680000pt;}
.w2{width:769.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x41{left:3.519960pt;}
.xf{left:6.720000pt;}
.x20{left:8.276760pt;}
.x21{left:9.691800pt;}
.x1{left:12.000000pt;}
.x38{left:14.338280pt;}
.x24{left:15.782533pt;}
.x26{left:16.698133pt;}
.x32{left:18.613467pt;}
.x28{left:20.025200pt;}
.xa{left:21.499200pt;}
.x42{left:22.466533pt;}
.x2d{left:24.499867pt;}
.x43{left:25.489867pt;}
.x30{left:28.055333pt;}
.x37{left:29.260000pt;}
.x8{left:30.785867pt;}
.x34{left:32.640000pt;}
.x2e{left:34.475467pt;}
.x33{left:35.725733pt;}
.x36{left:36.947467pt;}
.x16{left:37.940400pt;}
.x10{left:39.164667pt;}
.x12{left:41.412267pt;}
.x35{left:43.668133pt;}
.x11{left:44.739867pt;}
.x7{left:49.460267pt;}
.x50{left:53.204533pt;}
.xd{left:55.712667pt;}
.x47{left:57.560933pt;}
.x19{left:62.486267pt;}
.xb{left:64.419600pt;}
.x4f{left:66.540933pt;}
.xc{left:69.614000pt;}
.x18{left:86.906267pt;}
.x4e{left:90.607600pt;}
.x1e{left:95.361067pt;}
.x48{left:97.822000pt;}
.x49{left:99.594533pt;}
.x2{left:101.120120pt;}
.x5{left:106.080000pt;}
.x3d{left:109.385467pt;}
.x3b{left:113.440000pt;}
.x51{left:125.120133pt;}
.x4{left:138.920267pt;}
.x45{left:141.371867pt;}
.x1b{left:148.320000pt;}
.x3{left:169.742133pt;}
.x13{left:175.511067pt;}
.x22{left:178.400000pt;}
.x2c{left:179.680000pt;}
.x3c{left:200.011200pt;}
.x44{left:201.455467pt;}
.x39{left:204.690800pt;}
.x46{left:219.024800pt;}
.x1f{left:226.997067pt;}
.x1a{left:230.957067pt;}
.x23{left:236.320000pt;}
.x14{left:248.160000pt;}
.x4b{left:249.120000pt;}
.x4a{left:267.760400pt;}
.xe{left:292.640000pt;}
.x1d{left:300.292667pt;}
.x25{left:302.560000pt;}
.x1c{left:312.402667pt;}
.x3a{left:350.385467pt;}
.x27{left:359.200000pt;}
.x15{left:389.920000pt;}
.x4c{left:390.880000pt;}
.x3e{left:426.400000pt;}
.x2f{left:444.320000pt;}
.x29{left:463.200000pt;}
.x3f{left:492.960000pt;}
.x6{left:508.000000pt;}
.x17{left:530.720000pt;}
.x4d{left:532.640000pt;}
.x2a{left:548.320000pt;}
.x31{left:567.200000pt;}
.x40{left:569.760000pt;}
.x9{left:597.920000pt;}
.x2b{left:623.840000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  