
    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_fa39dc582398176794f7cf65.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000286;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_0ea71026462c27de8bbe7689.woff')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_9d0fd56c393114055ea2991f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.062500;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_4e502332a3998b5841d5059a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.886719;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_93b008b5c1f2b0a8bf7727cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.046875;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_6f5cdab05b7905b7194a780f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.062500;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_7f34559d70b617d34ef17967.woff')format("woff");}.ff8{font-family:ff8;line-height:1.051758;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_84706a0daec2e76a3ea41a61.woff')format("woff");}.ff9{font-family:ff9;line-height:1.046875;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.935547;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_71be25982895741802b78c37.woff')format("woff");}.ffb{font-family:ffb;line-height:1.062500;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.935547;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_87bfee26d623846a4e34d67b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.051758;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_84d6afcd6991e8181e4d0b4f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.046875;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_8ebe466c0ec92100975ce63a.woff')format("woff");}.fff{font-family:fff;line-height:0.892578;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.935547;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_2d563f791f7d304b22661140.woff')format("woff");}.ff11{font-family:ff11;line-height:1.062500;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_6320466f2dbd0530af60b500.woff')format("woff");}.ff12{font-family:ff12;line-height:0.903320;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.935547;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_6be690a18e372fafcfe2ea07.woff')format("woff");}.ff14{font-family:ff14;line-height:0.903320;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_aa97604cc4cd3babf4f4bbc8.woff')format("woff");}.ff15{font-family:ff15;line-height:1.062500;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff16{font-family:ff16;line-height:0.935547;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_ea8643e46aa95be8240565b2.woff')format("woff");}.ff17{font-family:ff17;line-height:1.062500;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_69a498c8708d43b41184ae39.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff19{font-family:ff19;line-height:0.935547;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_3b4267c2745653d75f7d5fb4.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.062500;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_90126ffc25e1668ae6948ffc.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.888672;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.935547;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_2e2e78a920e8ce8b52a82e4b.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.062500;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_282efeb9705aaa955f673e8a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.904297;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_fd0181d83663dc9e36874ef4.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.886719;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff20{font-family:ff20;line-height:0.935547;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_f2fcbad186796fa6a030b73d.woff')format("woff");}.ff21{font-family:ff21;line-height:1.062500;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_00a78e0661820222e66d3710.woff')format("woff");}.ff22{font-family:ff22;line-height:1.046875;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff23{font-family:ff23;line-height:0.935547;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_5cf31e59552fbb6fc01f0c86.woff')format("woff");}.ff24{font-family:ff24;line-height:1.038086;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_1129f7d9fbeec5140d2c2d3a.woff')format("woff");}.ff25{font-family:ff25;line-height:1.062500;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff26{font-family:ff26;line-height:0.935547;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_e20b461764b6eed336d31fd3.woff')format("woff");}.ff27{font-family:ff27;line-height:1.062500;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_c307be395c7c093f823b7391.woff')format("woff");}.ff28{font-family:ff28;line-height:0.880859;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_3c153e98778511e0aba10abc.woff')format("woff");}.ff29{font-family:ff29;line-height:0.935547;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.935547;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_b417b5137d61a895093a1184.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.062500;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_2045aa7b3bd32a578cbd3b18.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.904297;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.935547;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_ba54f9feadb805a7da521aba.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.062500;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_60217bfb3a9be2c5000008be.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.892578;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff30{font-family:ff30;line-height:0.935547;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_01be82a371065a1ee239c95c.woff')format("woff");}.ff31{font-family:ff31;line-height:0.937500;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_0175c95f0a94aa3fbf36d709.woff')format("woff");}.ff32{font-family:ff32;line-height:0.936523;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_c6d1fad218e8765abdbc08f4.woff')format("woff");}.ff33{font-family:ff33;line-height:0.935547;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.010177px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.016882px;}
.ls2{letter-spacing:7.485757px;}
.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;}
}
.ws0{word-spacing:-55.591833px;}
.ws1{word-spacing:-35.968551px;}
.ws9{word-spacing:-14.991306px;}
.ws7{word-spacing:-13.488207px;}
.ws3{word-spacing:-11.241492px;}
.ws2{word-spacing:-8.989820px;}
.ws8{word-spacing:-8.103053px;}
.ws6{word-spacing:-8.094613px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:600.923350px;}
._20{margin-left:-1.023667px;}
._0{width:1.206315px;}
._8{width:2.373110px;}
._1{width:3.442748px;}
._6{width:4.597086px;}
._f{width:6.038980px;}
._10{width:7.276746px;}
._5{width:8.335794px;}
._d{width:10.066448px;}
._16{width:11.221567px;}
._4{width:12.267729px;}
._24{width:13.286068px;}
._14{width:14.553950px;}
._9{width:15.698633px;}
._b{width:17.173089px;}
._e{width:18.280101px;}
._3{width:20.073604px;}
._a{width:21.160108px;}
._13{width:22.939017px;}
._2{width:24.253073px;}
._18{width:25.379395px;}
._1d{width:26.439730px;}
._19{width:27.449389px;}
._c{width:28.492903px;}
._11{width:29.808841px;}
._22{width:30.935286px;}
._26{width:33.084324px;}
._1a{width:34.092103px;}
._23{width:35.427960px;}
._15{width:36.662561px;}
._1e{width:37.874898px;}
._12{width:38.983050px;}
._7{width:40.857875px;}
._33{width:42.745496px;}
._1f{width:43.884016px;}
._25{width:45.082377px;}
._17{width:46.294843px;}
._2e{width:47.948076px;}
._1b{width:51.255280px;}
._28{width:56.237132px;}
._27{width:57.324625px;}
._2c{width:74.444970px;}
._1c{width:80.021954px;}
._29{width:82.051605px;}
._32{width:93.371774px;}
._2b{width:107.266285px;}
._2f{width:111.640838px;}
._30{width:125.775235px;}
._31{width:147.720341px;}
._2a{width:517.672253px;}
._2d{width:668.183462px;}
._21{width:882.977757px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(33,35,77);}
.fc0{color:rgb(7,0,89);}
.fsd{font-size:28.785504px;}
.fs3{font-size:35.968551px;}
.fs6{font-size:43.171267px;}
.fsc{font-size:43.216285px;}
.fs7{font-size:47.945707px;}
.fs8{font-size:47.975692px;}
.fsf{font-size:59.917577px;}
.fs1{font-size:59.954623px;}
.fs2{font-size:59.962591px;}
.fs9{font-size:60.007609px;}
.fs10{font-size:65.936591px;}
.fsa{font-size:65.994864px;}
.fs5{font-size:71.937102px;}
.fsb{font-size:72.027138px;}
.fse{font-size:77.924356px;}
.fs4{font-size:119.909246px;}
.fs0{font-size:179.908846px;}
.y0{bottom:0.000000px;}
.y97{bottom:0.000021px;}
.y192{bottom:2.275881px;}
.y96{bottom:3.099812px;}
.y18d{bottom:3.223301px;}
.y109{bottom:3.235686px;}
.yd1{bottom:3.285119px;}
.y150{bottom:3.297803px;}
.y33{bottom:3.299797px;}
.y10f{bottom:3.347371px;}
.y2f{bottom:3.447445px;}
.y35{bottom:3.464696px;}
.y3{bottom:3.608100px;}
.y2e{bottom:3.612383px;}
.y5{bottom:3.703602px;}
.y1ad{bottom:4.856126px;}
.yc{bottom:6.924354px;}
.y182{bottom:15.696897px;}
.y95{bottom:17.092722px;}
.y2d{bottom:17.105546px;}
.y18c{bottom:17.216211px;}
.y108{bottom:17.228596px;}
.yd0{bottom:17.278029px;}
.y14f{bottom:17.290713px;}
.y32{bottom:17.292707px;}
.y10e{bottom:17.340282px;}
.y1ac{bottom:25.095871px;}
.y6{bottom:25.335020px;}
.y149{bottom:28.524364px;}
.y2c{bottom:30.598710px;}
.y94{bottom:31.085632px;}
.y29{bottom:31.182189px;}
.y18b{bottom:31.209121px;}
.ycf{bottom:31.270939px;}
.y14e{bottom:31.283623px;}
.y31{bottom:31.285618px;}
.y2{bottom:36.216578px;}
.yb{bottom:42.906123px;}
.y93{bottom:45.078542px;}
.y18a{bottom:45.202031px;}
.y107{bottom:45.214417px;}
.yce{bottom:45.263850px;}
.y14d{bottom:45.276534px;}
.y10d{bottom:45.326102px;}
.y190{bottom:54.409117px;}
.y148{bottom:55.534541px;}
.y28{bottom:58.192365px;}
.y92{bottom:59.071453px;}
.y189{bottom:59.194942px;}
.y106{bottom:59.207327px;}
.y14c{bottom:59.269444px;}
.y10c{bottom:59.319012px;}
.y91{bottom:73.064363px;}
.y188{bottom:73.187852px;}
.y105{bottom:73.200237px;}
.ycd{bottom:73.249670px;}
.y14b{bottom:73.262354px;}
.ya{bottom:78.887892px;}
.y134{bottom:80.293870px;}
.y147{bottom:82.544718px;}
.y27{bottom:85.202542px;}
.y90{bottom:87.057273px;}
.y187{bottom:87.180762px;}
.ycc{bottom:87.242581px;}
.yeb{bottom:90.138732px;}
.y8f{bottom:101.050183px;}
.y186{bottom:101.173672px;}
.y104{bottom:101.186058px;}
.ycb{bottom:101.235491px;}
.y133{bottom:106.178622px;}
.y146{bottom:109.554894px;}
.y26{bottom:112.212719px;}
.y61{bottom:114.866984px;}
.y9{bottom:114.869662px;}
.y8e{bottom:115.043094px;}
.y185{bottom:115.166583px;}
.y103{bottom:115.178968px;}
.yca{bottom:115.228401px;}
.yea{bottom:116.023484px;}
.y8d{bottom:129.036004px;}
.y184{bottom:129.159493px;}
.y102{bottom:129.171878px;}
.yc9{bottom:129.221311px;}
.y132{bottom:132.063375px;}
.y144{bottom:136.565071px;}
.y25{bottom:139.222896px;}
.y60{bottom:140.751736px;}
.ye9{bottom:141.908237px;}
.y8c{bottom:143.028914px;}
.y101{bottom:143.164789px;}
.yc8{bottom:143.214222px;}
.y181{bottom:145.120661px;}
.y8b{bottom:157.021824px;}
.y100{bottom:157.157699px;}
.yc7{bottom:157.207132px;}
.y131{bottom:157.948128px;}
.y143{bottom:163.575248px;}
.y24{bottom:166.233073px;}
.y5f{bottom:166.636489px;}
.ye8{bottom:167.792990px;}
.yee{bottom:168.975014px;}
.y180{bottom:171.005413px;}
.y8a{bottom:171.014735px;}
.yff{bottom:171.150609px;}
.y130{bottom:183.832881px;}
.y89{bottom:185.007645px;}
.yfe{bottom:185.143519px;}
.yc6{bottom:185.192952px;}
.y142{bottom:190.585425px;}
.y5e{bottom:192.521242px;}
.y23{bottom:193.243249px;}
.ye7{bottom:193.677743px;}
.y17f{bottom:196.890166px;}
.yfd{bottom:199.136430px;}
.yc5{bottom:199.185863px;}
.yed{bottom:201.555711px;}
.y12f{bottom:209.717633px;}
.yfc{bottom:213.129340px;}
.yc4{bottom:213.178773px;}
.y141{bottom:217.595602px;}
.y5d{bottom:218.405995px;}
.ye6{bottom:219.562495px;}
.y22{bottom:220.253426px;}
.y17e{bottom:222.774919px;}
.yfb{bottom:227.122250px;}
.yc3{bottom:227.171683px;}
.y12e{bottom:235.602386px;}
.yfa{bottom:241.115160px;}
.yc2{bottom:241.164593px;}
.y5c{bottom:244.290748px;}
.y140{bottom:244.605778px;}
.ye5{bottom:245.447248px;}
.y21{bottom:247.263603px;}
.y17d{bottom:248.659672px;}
.y145{bottom:252.483747px;}
.yf9{bottom:255.108071px;}
.y2a{bottom:255.141571px;}
.yc1{bottom:255.157504px;}
.y63{bottom:255.375010px;}
.y12d{bottom:261.487139px;}
.y14a{bottom:262.575010px;}
.yf8{bottom:269.100981px;}
.yc0{bottom:269.150414px;}
.y5b{bottom:270.175500px;}
.ye4{bottom:271.332001px;}
.y13f{bottom:271.615955px;}
.y20{bottom:274.273780px;}
.y17c{bottom:274.544424px;}
.y112{bottom:279.178893px;}
.y88{bottom:282.958017px;}
.ybf{bottom:283.143324px;}
.y12c{bottom:287.371892px;}
.y1ab{bottom:288.855009px;}
.y5a{bottom:296.060253px;}
.y87{bottom:296.950927px;}
.yf7{bottom:297.086801px;}
.y30{bottom:297.135008px;}
.ybe{bottom:297.136235px;}
.ye3{bottom:297.216754px;}
.y13e{bottom:298.626132px;}
.y17b{bottom:300.429177px;}
.y1f{bottom:301.283956px;}
.yec{bottom:305.094722px;}
.y86{bottom:310.943837px;}
.yf6{bottom:311.079712px;}
.ybd{bottom:311.129145px;}
.y12b{bottom:313.256644px;}
.y59{bottom:321.945006px;}
.ye2{bottom:323.101506px;}
.y85{bottom:324.936748px;}
.yf5{bottom:325.072622px;}
.ybc{bottom:325.122055px;}
.y17a{bottom:326.313930px;}
.y1e{bottom:328.294133px;}
.y84{bottom:338.929658px;}
.yf4{bottom:339.065532px;}
.y12a{bottom:339.141397px;}
.y13d{bottom:343.643093px;}
.yb8{bottom:347.280005px;}
.y58{bottom:347.829759px;}
.ye1{bottom:348.986259px;}
.y179{bottom:352.198683px;}
.y83{bottom:352.922568px;}
.y1d{bottom:355.304310px;}
.y1ae{bottom:361.526964px;}
.y129{bottom:365.026150px;}
.y82{bottom:366.915478px;}
.yf3{bottom:367.051353px;}
.y57{bottom:373.714511px;}
.ye0{bottom:374.871012px;}
.y178{bottom:378.083435px;}
.y81{bottom:380.908389px;}
.yf2{bottom:381.044263px;}
.y1c{bottom:382.314487px;}
.y128{bottom:390.910903px;}
.y80{bottom:394.901299px;}
.yf1{bottom:395.037173px;}
.yb7{bottom:399.049510px;}
.y56{bottom:399.599264px;}
.ydf{bottom:400.755765px;}
.y177{bottom:403.968188px;}
.y111{bottom:406.351808px;}
.y62{bottom:407.477232px;}
.y7f{bottom:408.894209px;}
.yf0{bottom:409.030084px;}
.y1b{bottom:409.324664px;}
.y127{bottom:416.795656px;}
.y1a9{bottom:421.176828px;}
.y7e{bottom:422.887119px;}
.yef{bottom:423.022994px;}
.yb6{bottom:424.934263px;}
.y54{bottom:425.484017px;}
.ydb{bottom:426.640518px;}
.y110{bottom:427.734865px;}
.y176{bottom:429.852941px;}
.y1a{bottom:436.334840px;}
.y114{bottom:441.271030px;}
.y1a8{bottom:442.559885px;}
.y126{bottom:442.680408px;}
.yb5{bottom:450.819016px;}
.y7d{bottom:450.872940px;}
.y53{bottom:451.368770px;}
.yda{bottom:452.525270px;}
.y175{bottom:455.737694px;}
.yde{bottom:460.403238px;}
.y113{bottom:462.654087px;}
.y19{bottom:463.345017px;}
.y1a7{bottom:463.942941px;}
.y7c{bottom:464.865850px;}
.y125{bottom:468.565161px;}
.yb4{bottom:476.703769px;}
.y52{bottom:477.253522px;}
.yd9{bottom:478.410023px;}
.y7b{bottom:478.858761px;}
.y174{bottom:481.622447px;}
.y1a6{bottom:485.325998px;}
.ydd{bottom:486.287991px;}
.y18{bottom:490.355194px;}
.y7a{bottom:492.851671px;}
.ybb{bottom:493.036978px;}
.y124{bottom:494.449914px;}
.yb3{bottom:502.588521px;}
.y51{bottom:503.138275px;}
.yd8{bottom:504.294776px;}
.y1a5{bottom:506.709054px;}
.y79{bottom:506.844581px;}
.yba{bottom:507.029888px;}
.y173{bottom:507.507199px;}
.ydc{bottom:512.172744px;}
.y17{bottom:517.365371px;}
.y123{bottom:520.334667px;}
.y78{bottom:520.837491px;}
.yb9{bottom:521.054999px;}
.y1a4{bottom:528.092111px;}
.yb2{bottom:528.473274px;}
.y50{bottom:529.023028px;}
.yd7{bottom:530.179529px;}
.y172{bottom:533.391952px;}
.y77{bottom:534.830402px;}
.y16{bottom:544.375548px;}
.y122{bottom:546.219419px;}
.y76{bottom:548.823312px;}
.y1a3{bottom:549.475168px;}
.yb0{bottom:554.358027px;}
.y4f{bottom:554.907781px;}
.yd6{bottom:556.064281px;}
.y171{bottom:559.276705px;}
.y10a{bottom:562.785749px;}
.y75{bottom:562.816222px;}
.y1a2{bottom:570.858224px;}
.y15{bottom:571.385724px;}
.y121{bottom:572.104172px;}
.y74{bottom:576.809132px;}
.yaf{bottom:580.242780px;}
.y4e{bottom:580.792533px;}
.yd5{bottom:581.949034px;}
.y170{bottom:585.161458px;}
.y55{bottom:588.670502px;}
.y73{bottom:590.802043px;}
.y1a1{bottom:592.241281px;}
.y120{bottom:597.988925px;}
.y14{bottom:598.395901px;}
.yae{bottom:606.127532px;}
.y4d{bottom:606.677286px;}
.yd4{bottom:607.833787px;}
.y16f{bottom:611.046210px;}
.y72{bottom:618.787863px;}
.y11f{bottom:623.873678px;}
.y13{bottom:625.406078px;}
.yad{bottom:632.012285px;}
.y1b2{bottom:632.081758px;}
.y4c{bottom:632.562039px;}
.y71{bottom:632.780773px;}
.y16e{bottom:636.930963px;}
.y70{bottom:646.773684px;}
.y11e{bottom:649.758430px;}
.y12{bottom:652.416255px;}
.yd3{bottom:652.850748px;}
.y1b1{bottom:653.464815px;}
.yac{bottom:657.897038px;}
.y4b{bottom:658.446792px;}
.y6f{bottom:660.766594px;}
.y16d{bottom:662.815716px;}
.y6e{bottom:674.759504px;}
.y1b0{bottom:674.847871px;}
.y11d{bottom:675.643183px;}
.y11{bottom:679.426432px;}
.yab{bottom:683.781791px;}
.y4a{bottom:684.331544px;}
.y16c{bottom:688.700469px;}
.y6d{bottom:688.752415px;}
.yb1{bottom:691.659759px;}
.y15c{bottom:694.910760px;}
.y1af{bottom:696.230928px;}
.y191{bottom:698.534992px;}
.y11c{bottom:701.527936px;}
.y6c{bottom:702.745325px;}
.y10{bottom:706.436608px;}
.yaa{bottom:709.666543px;}
.y46{bottom:710.216297px;}
.y16b{bottom:714.585221px;}
.y6b{bottom:716.738235px;}
.y15b{bottom:719.670088px;}
.y11b{bottom:727.412689px;}
.yf{bottom:733.446785px;}
.ya9{bottom:735.551296px;}
.y45{bottom:736.101050px;}
.y16a{bottom:740.469974px;}
.y15a{bottom:744.429417px;}
.y11a{bottom:753.297441px;}
.ye{bottom:760.456962px;}
.ya8{bottom:761.436049px;}
.y2b{bottom:761.894989px;}
.y44{bottom:761.985803px;}
.y159{bottom:769.188746px;}
.y1aa{bottom:770.962683px;}
.y18f{bottom:779.182194px;}
.ya6{bottom:787.320802px;}
.y43{bottom:787.870555px;}
.y158{bottom:793.948075px;}
.y13c{bottom:799.378677px;}
.y18e{bottom:805.066947px;}
.y1a0{bottom:811.477927px;}
.ya5{bottom:813.205554px;}
.y42{bottom:813.755308px;}
.yd{bottom:814.477316px;}
.y6a{bottom:814.688607px;}
.y168{bottom:818.124232px;}
.y49{bottom:821.633276px;}
.y13b{bottom:824.138006px;}
.y69{bottom:828.681517px;}
.y157{bottom:830.951700px;}
.y19f{bottom:833.986408px;}
.ya4{bottom:839.090307px;}
.y41{bottom:839.640061px;}
.y68{bottom:842.674427px;}
.y167{bottom:844.008985px;}
.y48{bottom:847.518029px;}
.y13a{bottom:848.897335px;}
.y7{bottom:853.766178px;}
.y19e{bottom:856.494889px;}
.y67{bottom:856.667338px;}
.y156{bottom:856.836452px;}
.ya3{bottom:864.975060px;}
.y40{bottom:865.524814px;}
.y10b{bottom:865.934985px;}
.y166{bottom:869.893738px;}
.y66{bottom:870.660248px;}
.y139{bottom:873.656663px;}
.y19d{bottom:879.003369px;}
.y155{bottom:882.721205px;}
.y65{bottom:884.653158px;}
.ya2{bottom:890.859813px;}
.y3f{bottom:891.409567px;}
.y165{bottom:895.778491px;}
.y138{bottom:898.415992px;}
.y64{bottom:898.646068px;}
.y19c{bottom:901.511850px;}
.y154{bottom:908.605958px;}
.ya1{bottom:916.744565px;}
.y3e{bottom:917.294319px;}
.y164{bottom:921.663243px;}
.y137{bottom:923.175321px;}
.y8{bottom:923.534982px;}
.y19b{bottom:924.020331px;}
.y169{bottom:929.541212px;}
.y153{bottom:934.490711px;}
.ya0{bottom:942.629318px;}
.y3d{bottom:943.179072px;}
.y183{bottom:945.494981px;}
.y19a{bottom:946.528811px;}
.y163{bottom:947.547996px;}
.y136{bottom:947.934650px;}
.y152{bottom:960.375464px;}
.y9f{bottom:968.514071px;}
.y199{bottom:969.037292px;}
.y3c{bottom:969.063825px;}
.y135{bottom:972.693978px;}
.y162{bottom:973.432749px;}
.y151{bottom:986.260216px;}
.y198{bottom:991.545773px;}
.y9e{bottom:994.398824px;}
.y3b{bottom:994.948578px;}
.y161{bottom:999.317502px;}
.ya7{bottom:1002.276792px;}
.y119{bottom:1012.144969px;}
.y197{bottom:1014.054253px;}
.y9d{bottom:1020.283577px;}
.y3a{bottom:1020.833330px;}
.y160{bottom:1025.202255px;}
.y118{bottom:1038.029722px;}
.y9c{bottom:1046.168329px;}
.y39{bottom:1046.718083px;}
.y196{bottom:1049.390648px;}
.y47{bottom:1054.596051px;}
.y117{bottom:1063.914475px;}
.y195{bottom:1070.773705px;}
.y9b{bottom:1072.053082px;}
.y38{bottom:1072.602836px;}
.y15f{bottom:1074.720912px;}
.y116{bottom:1089.799227px;}
.y194{bottom:1092.156761px;}
.y15e{bottom:1096.103969px;}
.y9a{bottom:1097.937835px;}
.y37{bottom:1098.487589px;}
.y193{bottom:1113.539818px;}
.y115{bottom:1115.683980px;}
.y15d{bottom:1117.487025px;}
.y4{bottom:1120.454974px;}
.y99{bottom:1123.822588px;}
.y36{bottom:1124.372341px;}
.yd2{bottom:1133.406810px;}
.y98{bottom:1149.707340px;}
.y1{bottom:1153.214973px;}
.y34{bottom:1201.454971px;}
.h28{height:8.280000px;}
.h5{height:17.279999px;}
.h29{height:24.090993px;}
.h17{height:35.456089px;}
.he{height:36.130640px;}
.h23{height:36.168316px;}
.h2e{height:38.879998px;}
.h1a{height:39.401911px;}
.h10{height:40.126436px;}
.h12{height:40.151532px;}
.hf{height:41.039998px;}
.h11{height:42.479998px;}
.h2d{height:42.656166px;}
.h4{height:42.682539px;}
.h2c{height:42.720261px;}
.h2f{height:46.941187px;}
.h21{height:47.911234px;}
.hb{height:48.332740px;}
.h1f{height:48.965000px;}
.h25{height:49.035251px;}
.h18{height:49.240076px;}
.h6{height:50.176867px;}
.h1c{height:50.221212px;}
.h20{height:55.232030px;}
.h2b{height:55.475445px;}
.h8{height:57.112763px;}
.h16{height:59.081155px;}
.h27{height:59.221657px;}
.hc{height:59.643164px;}
.hd{height:60.205172px;}
.h22{height:60.280525px;}
.h1e{height:70.559997px;}
.h2{height:77.039997px;}
.h24{height:84.599996px;}
.ha{height:85.365078px;}
.h3{height:130.485316px;}
.h26{height:140.399994px;}
.h9{height:142.199994px;}
.h1d{height:434.159982px;}
.h19{height:518.039978px;}
.h14{height:909.719962px;}
.h2a{height:1149.839952px;}
.h13{height:1193.399950px;}
.h7{height:1204.919950px;}
.h15{height:1218.734949px;}
.h1b{height:1238.039948px;}
.h1{height:1263.000000px;}
.h0{height:1263.374968px;}
.w14{width:3.240000px;}
.w12{width:10.440000px;}
.w13{width:12.599999px;}
.w15{width:13.679999px;}
.w6{width:14.039999px;}
.wb{width:16.199999px;}
.wf{width:17.279999px;}
.w5{width:214.919991px;}
.we{width:221.039991px;}
.w8{width:221.399991px;}
.wc{width:222.119991px;}
.w17{width:236.519990px;}
.w2{width:343.079986px;}
.w1{width:362.519985px;}
.w4{width:393.839984px;}
.w7{width:503.999979px;}
.w9{width:706.319971px;}
.w11{width:849.959965px;}
.w16{width:850.769965px;}
.w10{width:851.849965px;}
.wa{width:855.719964px;}
.wd{width:856.529964px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.097845px;}
.x2f{left:6.188830px;}
.xe{left:24.119999px;}
.xc{left:26.279999px;}
.x6{left:30.738496px;}
.x2{left:35.074960px;}
.xf{left:36.719998px;}
.x18{left:41.399998px;}
.x3{left:42.479998px;}
.x7{left:44.495198px;}
.x8{left:187.561389px;}
.x20{left:235.794849px;}
.x24{left:237.317642px;}
.x23{left:238.865966px;}
.x2d{left:240.199532px;}
.x10{left:244.625966px;}
.x19{left:249.667218px;}
.xa{left:282.210655px;}
.x17{left:304.924075px;}
.x25{left:355.276612px;}
.x27{left:364.107729px;}
.x1b{left:370.650302px;}
.x13{left:408.885120px;}
.x5{left:425.159982px;}
.x1c{left:446.809862px;}
.xb{left:456.598626px;}
.x2b{left:459.248028px;}
.x1e{left:461.000750px;}
.x1{left:487.079980px;}
.x21{left:490.369288px;}
.x31{left:508.635356px;}
.x14{left:517.980918px;}
.x32{left:524.391292px;}
.x1a{left:533.643360px;}
.x11{left:573.988343px;}
.x2e{left:598.319975px;}
.x22{left:618.650038px;}
.x2a{left:641.461218px;}
.x28{left:644.669259px;}
.x30{left:648.152766px;}
.x1d{left:668.975600px;}
.x26{left:673.236675px;}
.x4{left:676.970383px;}
.x2c{left:702.550641px;}
.x12{left:742.714030px;}
.x16{left:794.307688px;}
.x15{left:806.353236px;}
.xd{left:817.559966px;}
.x29{left:823.319966px;}
.x9{left:844.148943px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.009046pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015006pt;}
.ls2{letter-spacing:6.654007pt;}
.ws0{word-spacing:-49.414963pt;}
.ws1{word-spacing:-31.972045pt;}
.ws9{word-spacing:-13.325606pt;}
.ws7{word-spacing:-11.989517pt;}
.ws3{word-spacing:-9.992437pt;}
.ws2{word-spacing:-7.990951pt;}
.ws8{word-spacing:-7.202714pt;}
.ws6{word-spacing:-7.195211pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:534.154089pt;}
._20{margin-left:-0.909926pt;}
._0{width:1.072280pt;}
._8{width:2.109431pt;}
._1{width:3.060221pt;}
._6{width:4.086299pt;}
._f{width:5.367982pt;}
._10{width:6.468219pt;}
._5{width:7.409595pt;}
._d{width:8.947954pt;}
._16{width:9.974726pt;}
._4{width:10.904648pt;}
._24{width:11.809838pt;}
._14{width:12.936845pt;}
._9{width:13.954340pt;}
._b{width:15.264968pt;}
._e{width:16.248978pt;}
._3{width:17.843204pt;}
._a{width:18.808985pt;}
._13{width:20.390237pt;}
._2{width:21.558287pt;}
._18{width:22.559462pt;}
._1d{width:23.501982pt;}
._19{width:24.399457pt;}
._c{width:25.327025pt;}
._11{width:26.496748pt;}
._22{width:27.498032pt;}
._26{width:29.408288pt;}
._1a{width:30.304092pt;}
._23{width:31.491520pt;}
._15{width:32.588943pt;}
._1e{width:33.666576pt;}
._12{width:34.651600pt;}
._7{width:36.318111pt;}
._33{width:37.995996pt;}
._1f{width:39.008014pt;}
._25{width:40.073224pt;}
._17{width:41.150972pt;}
._2e{width:42.620512pt;}
._1b{width:45.560249pt;}
._28{width:49.988562pt;}
._27{width:50.955223pt;}
._2c{width:66.173306pt;}
._1c{width:71.130626pt;}
._29{width:72.934760pt;}
._32{width:82.997133pt;}
._2b{width:95.347809pt;}
._2f{width:99.236301pt;}
._30{width:111.800209pt;}
._31{width:131.306970pt;}
._2a{width:460.153114pt;}
._2d{width:593.940855pt;}
._21{width:784.869118pt;}
.fsd{font-size:25.587114pt;}
.fs3{font-size:31.972046pt;}
.fs6{font-size:38.374459pt;}
.fsc{font-size:38.414475pt;}
.fs7{font-size:42.618406pt;}
.fs8{font-size:42.645060pt;}
.fsf{font-size:53.260069pt;}
.fs1{font-size:53.292998pt;}
.fs2{font-size:53.300081pt;}
.fs9{font-size:53.340097pt;}
.fs10{font-size:58.610303pt;}
.fsa{font-size:58.662102pt;}
.fs5{font-size:63.944091pt;}
.fsb{font-size:64.024123pt;}
.fse{font-size:69.266094pt;}
.fs4{font-size:106.585996pt;}
.fs0{font-size:159.918974pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:0.000018pt;}
.y192{bottom:2.023005pt;}
.y96{bottom:2.755388pt;}
.y18d{bottom:2.865156pt;}
.y109{bottom:2.876165pt;}
.yd1{bottom:2.920106pt;}
.y150{bottom:2.931380pt;}
.y33{bottom:2.933153pt;}
.y10f{bottom:2.975441pt;}
.y2f{bottom:3.064395pt;}
.y35{bottom:3.079730pt;}
.y3{bottom:3.207200pt;}
.y2e{bottom:3.211007pt;}
.y5{bottom:3.292090pt;}
.y1ad{bottom:4.316557pt;}
.yc{bottom:6.154981pt;}
.y182{bottom:13.952797pt;}
.y95{bottom:15.193530pt;}
.y2d{bottom:15.204930pt;}
.y18c{bottom:15.303298pt;}
.y108{bottom:15.314308pt;}
.yd0{bottom:15.358248pt;}
.y14f{bottom:15.369523pt;}
.y32{bottom:15.371295pt;}
.y10e{bottom:15.413584pt;}
.y1ac{bottom:22.307441pt;}
.y6{bottom:22.520017pt;}
.y149{bottom:25.354990pt;}
.y2c{bottom:27.198853pt;}
.y94{bottom:27.631673pt;}
.y29{bottom:27.717501pt;}
.y18b{bottom:27.741441pt;}
.ycf{bottom:27.796391pt;}
.y14e{bottom:27.807665pt;}
.y31{bottom:27.809438pt;}
.y2{bottom:32.192514pt;}
.yb{bottom:38.138776pt;}
.y93{bottom:40.069815pt;}
.y18a{bottom:40.179583pt;}
.y107{bottom:40.190593pt;}
.yce{bottom:40.234533pt;}
.y14d{bottom:40.245808pt;}
.y10d{bottom:40.289869pt;}
.y190{bottom:48.363659pt;}
.y148{bottom:49.364036pt;}
.y28{bottom:51.726547pt;}
.y92{bottom:52.507958pt;}
.y189{bottom:52.617726pt;}
.y106{bottom:52.628735pt;}
.y14c{bottom:52.683950pt;}
.y10c{bottom:52.728011pt;}
.y91{bottom:64.946100pt;}
.y188{bottom:65.055868pt;}
.y105{bottom:65.066878pt;}
.ycd{bottom:65.110818pt;}
.y14b{bottom:65.122093pt;}
.ya{bottom:70.122571pt;}
.y134{bottom:71.372329pt;}
.y147{bottom:73.373082pt;}
.y27{bottom:75.735593pt;}
.y90{bottom:77.384243pt;}
.y187{bottom:77.494011pt;}
.ycc{bottom:77.548960pt;}
.yeb{bottom:80.123317pt;}
.y8f{bottom:89.822385pt;}
.y186{bottom:89.932153pt;}
.y104{bottom:89.943162pt;}
.ycb{bottom:89.987103pt;}
.y133{bottom:94.380998pt;}
.y146{bottom:97.382128pt;}
.y26{bottom:99.744639pt;}
.y61{bottom:102.103986pt;}
.y9{bottom:102.106366pt;}
.y8e{bottom:102.260528pt;}
.y185{bottom:102.370296pt;}
.y103{bottom:102.381305pt;}
.yca{bottom:102.425245pt;}
.yea{bottom:103.131986pt;}
.y8d{bottom:114.698670pt;}
.y184{bottom:114.808438pt;}
.y102{bottom:114.819447pt;}
.yc9{bottom:114.863388pt;}
.y132{bottom:117.389667pt;}
.y144{bottom:121.391174pt;}
.y25{bottom:123.753685pt;}
.y60{bottom:125.112655pt;}
.ye9{bottom:126.140655pt;}
.y8c{bottom:127.136813pt;}
.y101{bottom:127.257590pt;}
.yc8{bottom:127.301530pt;}
.y181{bottom:128.996143pt;}
.y8b{bottom:139.574955pt;}
.y100{bottom:139.695732pt;}
.yc7{bottom:139.739673pt;}
.y131{bottom:140.398336pt;}
.y143{bottom:145.400221pt;}
.y24{bottom:147.762731pt;}
.y5f{bottom:148.121324pt;}
.ye8{bottom:149.149324pt;}
.yee{bottom:150.200012pt;}
.y180{bottom:152.004812pt;}
.y8a{bottom:152.013098pt;}
.yff{bottom:152.133875pt;}
.y130{bottom:163.407005pt;}
.y89{bottom:164.451240pt;}
.yfe{bottom:164.572017pt;}
.yc6{bottom:164.615958pt;}
.y142{bottom:169.409267pt;}
.y5e{bottom:171.129993pt;}
.y23{bottom:171.771777pt;}
.ye7{bottom:172.157993pt;}
.y17f{bottom:175.013481pt;}
.yfd{bottom:177.010160pt;}
.yc5{bottom:177.054100pt;}
.yed{bottom:179.160632pt;}
.y12f{bottom:186.415674pt;}
.yfc{bottom:189.448302pt;}
.yc4{bottom:189.492243pt;}
.y141{bottom:193.418313pt;}
.y5d{bottom:194.138662pt;}
.ye6{bottom:195.166663pt;}
.y22{bottom:195.780823pt;}
.y17e{bottom:198.022150pt;}
.yfb{bottom:201.886445pt;}
.yc3{bottom:201.930385pt;}
.y12e{bottom:209.424343pt;}
.yfa{bottom:214.324587pt;}
.yc2{bottom:214.368528pt;}
.y5c{bottom:217.147331pt;}
.y140{bottom:217.427359pt;}
.ye5{bottom:218.175332pt;}
.y21{bottom:219.789869pt;}
.y17d{bottom:221.030819pt;}
.y145{bottom:224.429997pt;}
.yf9{bottom:226.762729pt;}
.y2a{bottom:226.792508pt;}
.yc1{bottom:226.806670pt;}
.y63{bottom:227.000009pt;}
.y12d{bottom:232.433012pt;}
.y14a{bottom:233.400009pt;}
.yf8{bottom:239.200872pt;}
.yc0{bottom:239.244812pt;}
.y5b{bottom:240.156000pt;}
.ye4{bottom:241.184001pt;}
.y13f{bottom:241.436405pt;}
.y20{bottom:243.798915pt;}
.y17c{bottom:244.039488pt;}
.y112{bottom:248.159016pt;}
.y88{bottom:251.518237pt;}
.ybf{bottom:251.682955pt;}
.y12c{bottom:255.441682pt;}
.y1ab{bottom:256.760008pt;}
.y5a{bottom:263.164669pt;}
.y87{bottom:263.956380pt;}
.yf7{bottom:264.077157pt;}
.y30{bottom:264.120007pt;}
.ybe{bottom:264.121097pt;}
.ye3{bottom:264.192670pt;}
.y13e{bottom:265.445451pt;}
.y17b{bottom:267.048158pt;}
.y1f{bottom:267.807961pt;}
.yec{bottom:271.195308pt;}
.y86{bottom:276.394522pt;}
.yf6{bottom:276.515299pt;}
.ybd{bottom:276.559240pt;}
.y12b{bottom:278.450351pt;}
.y59{bottom:286.173338pt;}
.ye2{bottom:287.201339pt;}
.y85{bottom:288.832665pt;}
.yf5{bottom:288.953442pt;}
.ybc{bottom:288.997382pt;}
.y17a{bottom:290.056827pt;}
.y1e{bottom:291.817007pt;}
.y84{bottom:301.270807pt;}
.yf4{bottom:301.391584pt;}
.y12a{bottom:301.459020pt;}
.y13d{bottom:305.460527pt;}
.yb8{bottom:308.693338pt;}
.y58{bottom:309.182008pt;}
.ye1{bottom:310.210008pt;}
.y179{bottom:313.065496pt;}
.y83{bottom:313.708949pt;}
.y1d{bottom:315.826053pt;}
.y1ae{bottom:321.357301pt;}
.y129{bottom:324.467689pt;}
.y82{bottom:326.147092pt;}
.yf3{bottom:326.267869pt;}
.y57{bottom:332.190677pt;}
.ye0{bottom:333.218677pt;}
.y178{bottom:336.074165pt;}
.y81{bottom:338.585234pt;}
.yf2{bottom:338.706012pt;}
.y1c{bottom:339.835099pt;}
.y128{bottom:347.476358pt;}
.y80{bottom:351.023377pt;}
.yf1{bottom:351.144154pt;}
.yb7{bottom:354.710676pt;}
.y56{bottom:355.199346pt;}
.ydf{bottom:356.227346pt;}
.y177{bottom:359.082834pt;}
.y111{bottom:361.201607pt;}
.y62{bottom:362.201984pt;}
.y7f{bottom:363.461519pt;}
.yf0{bottom:363.582297pt;}
.y1b{bottom:363.844145pt;}
.y127{bottom:370.485027pt;}
.y1a9{bottom:374.379403pt;}
.y7e{bottom:375.899662pt;}
.yef{bottom:376.020439pt;}
.yb6{bottom:377.719345pt;}
.y54{bottom:378.208015pt;}
.ydb{bottom:379.236016pt;}
.y110{bottom:380.208769pt;}
.y176{bottom:382.091503pt;}
.y1a{bottom:387.853192pt;}
.y114{bottom:392.240916pt;}
.y1a8{bottom:393.386564pt;}
.y126{bottom:393.493696pt;}
.yb5{bottom:400.728014pt;}
.y7d{bottom:400.775947pt;}
.y53{bottom:401.216684pt;}
.yda{bottom:402.244685pt;}
.y175{bottom:405.100172pt;}
.yde{bottom:409.247323pt;}
.y113{bottom:411.248077pt;}
.y19{bottom:411.862238pt;}
.y1a7{bottom:412.393726pt;}
.y7c{bottom:413.214089pt;}
.y125{bottom:416.502365pt;}
.yb4{bottom:423.736683pt;}
.y52{bottom:424.225353pt;}
.yd9{bottom:425.253354pt;}
.y7b{bottom:425.652232pt;}
.y174{bottom:428.108841pt;}
.y1a6{bottom:431.400887pt;}
.ydd{bottom:432.255992pt;}
.y18{bottom:435.871284pt;}
.y7a{bottom:438.090374pt;}
.ybb{bottom:438.255092pt;}
.y124{bottom:439.511034pt;}
.yb3{bottom:446.745352pt;}
.y51{bottom:447.234022pt;}
.yd8{bottom:448.262023pt;}
.y1a5{bottom:450.408048pt;}
.y79{bottom:450.528517pt;}
.yba{bottom:450.693234pt;}
.y173{bottom:451.117510pt;}
.ydc{bottom:455.264661pt;}
.y17{bottom:459.880330pt;}
.y123{bottom:462.519704pt;}
.y78{bottom:462.966659pt;}
.yb9{bottom:463.159999pt;}
.y1a4{bottom:469.415210pt;}
.yb2{bottom:469.754021pt;}
.y50{bottom:470.242691pt;}
.yd7{bottom:471.270692pt;}
.y172{bottom:474.126180pt;}
.y77{bottom:475.404801pt;}
.y16{bottom:483.889376pt;}
.y122{bottom:485.528373pt;}
.y76{bottom:487.842944pt;}
.y1a3{bottom:488.422371pt;}
.yb0{bottom:492.762691pt;}
.y4f{bottom:493.251361pt;}
.yd6{bottom:494.279361pt;}
.y171{bottom:497.134849pt;}
.y10a{bottom:500.253999pt;}
.y75{bottom:500.281086pt;}
.y1a2{bottom:507.429533pt;}
.y15{bottom:507.898422pt;}
.y121{bottom:508.537042pt;}
.y74{bottom:512.719229pt;}
.yaf{bottom:515.771360pt;}
.y4e{bottom:516.260030pt;}
.yd5{bottom:517.288030pt;}
.y170{bottom:520.143518pt;}
.y55{bottom:523.262668pt;}
.y73{bottom:525.157371pt;}
.y1a1{bottom:526.436694pt;}
.y120{bottom:531.545711pt;}
.y14{bottom:531.907468pt;}
.yae{bottom:538.780029pt;}
.y4d{bottom:539.268699pt;}
.yd4{bottom:540.296699pt;}
.y16f{bottom:543.152187pt;}
.y72{bottom:550.033656pt;}
.y11f{bottom:554.554380pt;}
.y13{bottom:555.916514pt;}
.yad{bottom:561.788698pt;}
.y1b2{bottom:561.850451pt;}
.y4c{bottom:562.277368pt;}
.y71{bottom:562.471799pt;}
.y16e{bottom:566.160856pt;}
.y70{bottom:574.909941pt;}
.y11e{bottom:577.563049pt;}
.y12{bottom:579.925560pt;}
.yd3{bottom:580.311776pt;}
.y1b1{bottom:580.857613pt;}
.yac{bottom:584.797367pt;}
.y4b{bottom:585.286037pt;}
.y6f{bottom:587.348084pt;}
.y16d{bottom:589.169525pt;}
.y6e{bottom:599.786226pt;}
.y1b0{bottom:599.864774pt;}
.y11d{bottom:600.571718pt;}
.y11{bottom:603.934606pt;}
.yab{bottom:607.806036pt;}
.y4a{bottom:608.294706pt;}
.y16c{bottom:612.178194pt;}
.y6d{bottom:612.224368pt;}
.yb1{bottom:614.808675pt;}
.y15c{bottom:617.698453pt;}
.y1af{bottom:618.871936pt;}
.y191{bottom:620.919993pt;}
.y11c{bottom:623.580387pt;}
.y6c{bottom:624.662511pt;}
.y10{bottom:627.943652pt;}
.yaa{bottom:630.814705pt;}
.y46{bottom:631.303375pt;}
.y16b{bottom:635.186863pt;}
.y6b{bottom:637.100653pt;}
.y15b{bottom:639.706745pt;}
.y11b{bottom:646.589057pt;}
.yf{bottom:651.952698pt;}
.ya9{bottom:653.823374pt;}
.y45{bottom:654.312044pt;}
.y16a{bottom:658.195533pt;}
.y15a{bottom:661.715037pt;}
.y11a{bottom:669.597726pt;}
.ye{bottom:675.961744pt;}
.ya8{bottom:676.832043pt;}
.y2b{bottom:677.239990pt;}
.y44{bottom:677.320714pt;}
.y159{bottom:683.723330pt;}
.y1aa{bottom:685.300163pt;}
.y18f{bottom:692.606395pt;}
.ya6{bottom:699.840713pt;}
.y43{bottom:700.329383pt;}
.y158{bottom:705.731622pt;}
.y13c{bottom:710.558824pt;}
.y18e{bottom:715.615064pt;}
.y1a0{bottom:721.313713pt;}
.ya5{bottom:722.849382pt;}
.y42{bottom:723.338052pt;}
.yd{bottom:723.979836pt;}
.y6a{bottom:724.167651pt;}
.y168{bottom:727.221540pt;}
.y49{bottom:730.340690pt;}
.y13b{bottom:732.567116pt;}
.y69{bottom:736.605793pt;}
.y157{bottom:738.623733pt;}
.y19f{bottom:741.321252pt;}
.ya4{bottom:745.858051pt;}
.y41{bottom:746.346721pt;}
.y68{bottom:749.043935pt;}
.y167{bottom:750.230209pt;}
.y48{bottom:753.349359pt;}
.y13a{bottom:754.575409pt;}
.y7{bottom:758.903269pt;}
.y19e{bottom:761.328790pt;}
.y67{bottom:761.482078pt;}
.y156{bottom:761.632402pt;}
.ya3{bottom:768.866720pt;}
.y40{bottom:769.355390pt;}
.y10b{bottom:769.719986pt;}
.y166{bottom:773.238878pt;}
.y66{bottom:773.920220pt;}
.y139{bottom:776.583701pt;}
.y19d{bottom:781.336328pt;}
.y155{bottom:784.641071pt;}
.y65{bottom:786.358363pt;}
.ya2{bottom:791.875389pt;}
.y3f{bottom:792.364059pt;}
.y165{bottom:796.247547pt;}
.y138{bottom:798.591993pt;}
.y64{bottom:798.796505pt;}
.y19c{bottom:801.343867pt;}
.y154{bottom:807.649740pt;}
.ya1{bottom:814.884058pt;}
.y3e{bottom:815.372728pt;}
.y164{bottom:819.256216pt;}
.y137{bottom:820.600285pt;}
.y8{bottom:820.919984pt;}
.y19b{bottom:821.351405pt;}
.y169{bottom:826.258855pt;}
.y153{bottom:830.658410pt;}
.ya0{bottom:837.892727pt;}
.y3d{bottom:838.381397pt;}
.y183{bottom:840.439983pt;}
.y19a{bottom:841.358944pt;}
.y163{bottom:842.264886pt;}
.y136{bottom:842.608577pt;}
.y152{bottom:853.667079pt;}
.y9f{bottom:860.901396pt;}
.y199{bottom:861.366482pt;}
.y3c{bottom:861.390067pt;}
.y135{bottom:864.616870pt;}
.y162{bottom:865.273555pt;}
.y151{bottom:876.675748pt;}
.y198{bottom:881.374020pt;}
.y9e{bottom:883.910066pt;}
.y3b{bottom:884.398736pt;}
.y161{bottom:888.282224pt;}
.ya7{bottom:890.912704pt;}
.y119{bottom:899.684417pt;}
.y197{bottom:901.381559pt;}
.y9d{bottom:906.918735pt;}
.y3a{bottom:907.407405pt;}
.y160{bottom:911.290893pt;}
.y118{bottom:922.693086pt;}
.y9c{bottom:929.927404pt;}
.y39{bottom:930.416074pt;}
.y196{bottom:932.791687pt;}
.y47{bottom:937.418712pt;}
.y117{bottom:945.701755pt;}
.y195{bottom:951.798849pt;}
.y9b{bottom:952.936073pt;}
.y38{bottom:953.424743pt;}
.y15f{bottom:955.307477pt;}
.y116{bottom:968.710424pt;}
.y194{bottom:970.806010pt;}
.y15e{bottom:974.314639pt;}
.y9a{bottom:975.944742pt;}
.y37{bottom:976.433412pt;}
.y193{bottom:989.813172pt;}
.y115{bottom:991.719093pt;}
.y15d{bottom:993.321800pt;}
.y4{bottom:995.959977pt;}
.y99{bottom:998.953411pt;}
.y36{bottom:999.442081pt;}
.yd2{bottom:1007.472720pt;}
.y98{bottom:1021.962080pt;}
.y1{bottom:1025.079976pt;}
.y34{bottom:1067.959974pt;}
.h28{height:7.360000pt;}
.h5{height:15.359999pt;}
.h29{height:21.414216pt;}
.h17{height:31.516524pt;}
.he{height:32.116125pt;}
.h23{height:32.149615pt;}
.h2e{height:34.559999pt;}
.h1a{height:35.023921pt;}
.h10{height:35.667943pt;}
.h12{height:35.690250pt;}
.hf{height:36.479998pt;}
.h11{height:37.759998pt;}
.h2d{height:37.916592pt;}
.h4{height:37.940035pt;}
.h2c{height:37.973565pt;}
.h2f{height:41.725499pt;}
.h21{height:42.587763pt;}
.hb{height:42.962436pt;}
.h1f{height:43.524444pt;}
.h25{height:43.586890pt;}
.h18{height:43.768956pt;}
.h6{height:44.601659pt;}
.h1c{height:44.641077pt;}
.h20{height:49.095138pt;}
.h2b{height:49.311506pt;}
.h8{height:50.766901pt;}
.h16{height:52.516582pt;}
.h27{height:52.641473pt;}
.hc{height:53.016145pt;}
.hd{height:53.515709pt;}
.h22{height:53.582689pt;}
.h1e{height:62.719997pt;}
.h2{height:68.479997pt;}
.h24{height:75.199997pt;}
.ha{height:75.880070pt;}
.h3{height:115.986948pt;}
.h26{height:124.799995pt;}
.h9{height:126.399995pt;}
.h1d{height:385.919984pt;}
.h19{height:460.479981pt;}
.h14{height:808.639966pt;}
.h2a{height:1022.079957pt;}
.h13{height:1060.799956pt;}
.h7{height:1071.039955pt;}
.h15{height:1083.319955pt;}
.h1b{height:1100.479954pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.999972pt;}
.w14{width:2.880000pt;}
.w12{width:9.280000pt;}
.w13{width:11.200000pt;}
.w15{width:12.159999pt;}
.w6{width:12.479999pt;}
.wb{width:14.399999pt;}
.wf{width:15.359999pt;}
.w5{width:191.039992pt;}
.we{width:196.479992pt;}
.w8{width:196.799992pt;}
.wc{width:197.439992pt;}
.w17{width:210.239991pt;}
.w2{width:304.959987pt;}
.w1{width:322.239987pt;}
.w4{width:350.079985pt;}
.w7{width:447.999981pt;}
.w9{width:627.839974pt;}
.w11{width:755.519969pt;}
.w16{width:756.239968pt;}
.w10{width:757.199968pt;}
.wa{width:760.639968pt;}
.wd{width:761.359968pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:0.975862pt;}
.x2f{left:5.501182pt;}
.xe{left:21.439999pt;}
.xc{left:23.359999pt;}
.x6{left:27.323108pt;}
.x2{left:31.177742pt;}
.xf{left:32.639999pt;}
.x18{left:36.799998pt;}
.x3{left:37.759998pt;}
.x7{left:39.551287pt;}
.x8{left:166.721234pt;}
.x20{left:209.595422pt;}
.x24{left:210.949015pt;}
.x23{left:212.325303pt;}
.x2d{left:213.510695pt;}
.x10{left:217.445303pt;}
.x19{left:221.926416pt;}
.xa{left:250.853916pt;}
.x17{left:271.043623pt;}
.x25{left:315.801433pt;}
.x27{left:323.651315pt;}
.x1b{left:329.466935pt;}
.x13{left:363.453440pt;}
.x5{left:377.919984pt;}
.x1c{left:397.164322pt;}
.xb{left:405.865446pt;}
.x2b{left:408.220469pt;}
.x1e{left:409.778445pt;}
.x1{left:432.959982pt;}
.x21{left:435.883812pt;}
.x31{left:452.120316pt;}
.x14{left:460.427483pt;}
.x32{left:466.125593pt;}
.x1a{left:474.349653pt;}
.x11{left:510.211860pt;}
.x2e{left:531.839978pt;}
.x22{left:549.911145pt;}
.x2a{left:570.187749pt;}
.x28{left:573.039342pt;}
.x30{left:576.135792pt;}
.x1d{left:594.644978pt;}
.x26{left:598.432600pt;}
.x4{left:601.751452pt;}
.x2c{left:624.489459pt;}
.x12{left:660.190249pt;}
.x16{left:706.051278pt;}
.x15{left:716.758432pt;}
.xd{left:726.719970pt;}
.x29{left:731.839970pt;}
.x9{left:750.354616pt;}
}




    .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; }
  