
    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_fcc8fbe55bd1276b7b5e84cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ce132d1fb3d0b36af7e1cf7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_5b2ccf5faa4ebacfb4bb1158.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_0b828902da0b9aefccbd15b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_1ce39d57184fa240344f7ff8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_09ef494b0b7cdbe643ed59d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_4faa0f4686b6211e810b349c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_17c84e7b7527722fd919fbd6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_a6925f874fa0e06dc2b4d058.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_4af9071482e092df1647848d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961914;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_a8431e8c58942afa8b82fe2e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_694df8bfae814003985f9c99.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854492;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_5924719d522b8a73af6929ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_dcdad189eb8434f5aaef262e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130371;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_dc177f4f7a85530c68d5671d.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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_c6237b46d041dd321b31537a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100098;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_73914677508ee6af8218e9a9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_125d1688a392912b82486d7c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926758;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-48.300000px;}
.v3{vertical-align:-13.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.500000px;}
.v2{vertical-align:91.920000px;}
.v5{vertical-align:121.800000px;}
.ls29{letter-spacing:-2.538000px;}
.lsd{letter-spacing:-1.758000px;}
.ls1c{letter-spacing:-1.632000px;}
.ls5{letter-spacing:-1.620000px;}
.lsb{letter-spacing:-1.608000px;}
.ls1b{letter-spacing:-1.164000px;}
.ls2a{letter-spacing:-1.014000px;}
.ls4{letter-spacing:-0.834000px;}
.lsf{letter-spacing:-0.750000px;}
.ls3{letter-spacing:-0.684000px;}
.ls15{letter-spacing:-0.253800px;}
.lse{letter-spacing:-0.230400px;}
.ls24{letter-spacing:-0.225600px;}
.ls17{letter-spacing:-0.103800px;}
.ls1d{letter-spacing:-0.080400px;}
.ls1{letter-spacing:-0.075000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.021150px;}
.ls23{letter-spacing:0.035100px;}
.ls14{letter-spacing:0.141300px;}
.ls13{letter-spacing:0.230550px;}
.ls10{letter-spacing:0.254400px;}
.ls16{letter-spacing:0.308100px;}
.ls21{letter-spacing:0.423600px;}
.ls25{letter-spacing:0.555000px;}
.ls9{letter-spacing:0.684000px;}
.ls19{letter-spacing:0.834000px;}
.ls2b{letter-spacing:0.858000px;}
.ls11{letter-spacing:1.014000px;}
.ls12{letter-spacing:1.164000px;}
.ls2{letter-spacing:1.434000px;}
.ls28{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.506000px;}
.lsa{letter-spacing:2.514000px;}
.ls6{letter-spacing:70.297500px;}
.ls27{letter-spacing:92.520000px;}
.ls26{letter-spacing:92.572500px;}
.ls20{letter-spacing:95.197500px;}
.ls18{letter-spacing:95.227500px;}
.ls22{letter-spacing:97.147500px;}
.ls1f{letter-spacing:97.267500px;}
.ls1e{letter-spacing:97.297500px;}
.ls1a{letter-spacing:97.327500px;}
.ls8{letter-spacing:175.027500px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-160.633800px;}
.ws19{word-spacing:-108.901200px;}
.ws24{word-spacing:-108.150000px;}
.ws28{word-spacing:-85.650000px;}
.ws1{word-spacing:-60.070800px;}
.ws37{word-spacing:-49.500000px;}
.ws1c{word-spacing:-36.462900px;}
.ws1d{word-spacing:-35.628900px;}
.ws8{word-spacing:-29.988600px;}
.ws39{word-spacing:-29.898000px;}
.ws27{word-spacing:-28.968900px;}
.ws1f{word-spacing:-28.433700px;}
.ws26{word-spacing:-27.492900px;}
.ws21{word-spacing:-25.947900px;}
.ws18{word-spacing:-25.605900px;}
.ws17{word-spacing:-25.455900px;}
.ws35{word-spacing:-25.299900px;}
.ws23{word-spacing:-24.865500px;}
.ws3{word-spacing:-24.441900px;}
.ws20{word-spacing:-24.361500px;}
.ws25{word-spacing:-24.216300px;}
.ws1b{word-spacing:-23.810700px;}
.ws2b{word-spacing:-23.769000px;}
.ws4{word-spacing:-23.757900px;}
.ws29{word-spacing:-23.639400px;}
.ws6{word-spacing:-23.607900px;}
.ws2a{word-spacing:-23.468100px;}
.ws34{word-spacing:-23.427000px;}
.ws30{word-spacing:-22.454100px;}
.ws2e{word-spacing:-22.304100px;}
.ws2c{word-spacing:-21.231000px;}
.ws36{word-spacing:-20.373900px;}
.ws2{word-spacing:-19.982700px;}
.ws7{word-spacing:-14.652000px;}
.ws10{word-spacing:-4.160700px;}
.ws2d{word-spacing:-3.877500px;}
.ws31{word-spacing:-3.706200px;}
.ws12{word-spacing:-1.809300px;}
.wsb{word-spacing:-1.539450px;}
.ws32{word-spacing:-1.491750px;}
.ws13{word-spacing:-1.005150px;}
.wsc{word-spacing:-0.861450px;}
.ws14{word-spacing:-0.729450px;}
.ws1e{word-spacing:-0.687150px;}
.ws16{word-spacing:-0.555750px;}
.ws22{word-spacing:-0.369900px;}
.ws1a{word-spacing:-0.123242px;}
.ws15{word-spacing:-0.096000px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.340500px;}
.ws33{word-spacing:0.765450px;}
.ws11{word-spacing:1.544250px;}
.wsf{word-spacing:2.316300px;}
.ws38{word-spacing:6.435750px;}
.wsa{word-spacing:15.105750px;}
.ws5{word-spacing:418.126050px;}
.wsd{word-spacing:855.505350px;}
.wse{word-spacing:1178.985750px;}
._b{margin-left:-4812.552300px;}
._1b{margin-left:-19.935000px;}
._9{margin-left:-12.112800px;}
._7{margin-left:-10.993200px;}
._a{margin-left:-9.703200px;}
._11{margin-left:-8.025750px;}
._8{margin-left:-6.805200px;}
._f{margin-left:-5.722200px;}
._5{margin-left:-4.712700px;}
._2{margin-left:-3.247200px;}
._1{margin-left:-2.029500px;}
._6{margin-left:-1.014750px;}
._0{width:1.353000px;}
._3{width:2.638350px;}
._4{width:3.856050px;}
._17{width:4.861050px;}
._10{width:6.263700px;}
._14{width:7.383600px;}
._1a{width:11.278800px;}
._1c{width:21.898200px;}
._d{width:23.367150px;}
._1d{width:24.408300px;}
._e{width:25.788900px;}
._16{width:30.377850px;}
._c{width:50.920500px;}
._18{width:190.768950px;}
._19{width:238.468950px;}
._12{width:288.748950px;}
._13{width:292.168950px;}
._15{width:1273.386300px;}
.fc9{color:rgb(5,99,193);}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(32,35,42);}
.fc8{color:rgb(54,54,54);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsc{font-size:49.500000px;}
.fsd{font-size:49.650000px;}
.fs1{font-size:67.500000px;}
.fs0{font-size:67.650000px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fsa{font-size:85.500000px;}
.fs9{font-size:85.650000px;}
.fs18{font-size:90.150000px;}
.fs16{font-size:94.650000px;}
.fs7{font-size:108.150000px;}
.fs10{font-size:113.998970px;}
.fs5{font-size:121.650000px;}
.fs4{font-size:121.800000px;}
.fs13{font-size:123.241627px;}
.fs3{font-size:144.150000px;}
.fs17{font-size:144.300000px;}
.fs15{font-size:157.650000px;}
.fs14{font-size:157.800000px;}
.fs11{font-size:166.800000px;}
.fs12{font-size:180.300000px;}
.fs6{font-size:265.800000px;}
.fse{font-size:265.950000px;}
.fsf{font-size:274.950000px;}
.fs2{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y19{bottom:28.012500px;}
.y32{bottom:66.225000px;}
.y43{bottom:74.925000px;}
.yda{bottom:76.912500px;}
.yba{bottom:82.012500px;}
.y18{bottom:82.350000px;}
.y94{bottom:87.225000px;}
.y11e{bottom:92.850000px;}
.y60{bottom:93.075000px;}
.y31{bottom:98.887500px;}
.yc3{bottom:99.862500px;}
.y10a{bottom:101.362500px;}
.yd9{bottom:102.825000px;}
.y42{bottom:107.587500px;}
.y51{bottom:107.662500px;}
.y17{bottom:108.262500px;}
.yf3{bottom:110.887500px;}
.y11d{bottom:112.012500px;}
.y8f{bottom:112.350000px;}
.y83{bottom:116.437500px;}
.y93{bottom:116.512500px;}
.yb1{bottom:116.662500px;}
.y63{bottom:124.050000px;}
.y5f{bottom:124.612500px;}
.y109{bottom:127.275000px;}
.yd1{bottom:129.600000px;}
.yc2{bottom:132.525000px;}
.y16{bottom:133.012500px;}
.ya1{bottom:135.675000px;}
.y11c{bottom:139.050000px;}
.y50{bottom:139.200000px;}
.y41{bottom:140.250000px;}
.y62{bottom:140.628782px;}
.yf2{bottom:143.550000px;}
.y8e{bottom:145.012500px;}
.y74{bottom:145.200000px;}
.yb0{bottom:149.325000px;}
.y61{bottom:155.287835px;}
.y78{bottom:155.325000px;}
.yfd{bottom:157.095000px;}
.y5e{bottom:157.275000px;}
.y15{bottom:157.800000px;}
.yd0{bottom:162.255000px;}
.yc1{bottom:165.180000px;}
.ya0{bottom:168.345000px;}
.y4f{bottom:171.870000px;}
.y40{bottom:172.950000px;}
.y8d{bottom:176.550000px;}
.y108{bottom:176.850000px;}
.y73{bottom:177.900000px;}
.y77{bottom:180.120000px;}
.y82{bottom:181.770000px;}
.yaf{bottom:181.995000px;}
.y14{bottom:183.720000px;}
.y30{bottom:184.800000px;}
.y28{bottom:186.900000px;}
.y5d{bottom:189.930000px;}
.yfc{bottom:193.170000px;}
.ycf{bottom:194.925000px;}
.yc0{bottom:197.850000px;}
.y9f{bottom:201.000000px;}
.y107{bottom:202.755000px;}
.y11b{bottom:204.375000px;}
.y4e{bottom:204.525000px;}
.y6{bottom:208.350000px;}
.y72{bottom:210.570000px;}
.y3f{bottom:212.925000px;}
.y81{bottom:214.425000px;}
.yae{bottom:214.650000px;}
.y5c{bottom:222.630000px;}
.y27{bottom:224.100000px;}
.y11a{bottom:226.920000px;}
.y106{bottom:227.550000px;}
.yce{bottom:227.595000px;}
.ybf{bottom:229.380000px;}
.y76{bottom:230.820000px;}
.y9e{bottom:233.670000px;}
.y2f{bottom:235.500000px;}
.ye6{bottom:235.950000px;}
.y8c{bottom:241.905000px;}
.y71{bottom:243.225000px;}
.y3e{bottom:245.580000px;}
.yad{bottom:246.195000px;}
.y80{bottom:247.080000px;}
.y13{bottom:247.875000px;}
.y119{bottom:249.450000px;}
.y5{bottom:252.300000px;}
.y26{bottom:253.380000px;}
.y105{bottom:253.470000px;}
.y5b{bottom:255.300000px;}
.y75{bottom:256.725000px;}
.ycd{bottom:259.170000px;}
.ybe{bottom:262.080000px;}
.yf1{bottom:262.320000px;}
.yfb{bottom:265.230000px;}
.y9d{bottom:266.370000px;}
.y2e{bottom:267.030000px;}
.ye5{bottom:268.605000px;}
.y4d{bottom:269.880000px;}
.y8b{bottom:274.575000px;}
.y70{bottom:274.770000px;}
.y104{bottom:278.250000px;}
.y3d{bottom:278.280000px;}
.yac{bottom:278.880000px;}
.y5a{bottom:286.845000px;}
.y25{bottom:289.425000px;}
.ycc{bottom:291.825000px;}
.ybd{bottom:294.750000px;}
.yf0{bottom:294.975000px;}
.y2d{bottom:299.745000px;}
.ye4{bottom:300.150000px;}
.yfa{bottom:301.275000px;}
.y103{bottom:303.045000px;}
.y8a{bottom:307.245000px;}
.y6f{bottom:307.425000px;}
.y3c{bottom:310.950000px;}
.y7f{bottom:311.325000px;}
.yab{bottom:311.550000px;}
.y12{bottom:312.075000px;}
.y118{bottom:314.775000px;}
.ycb{bottom:324.480000px;}
.y24{bottom:326.580000px;}
.ybc{bottom:327.405000px;}
.yef{bottom:327.630000px;}
.y102{bottom:328.950000px;}
.y9c{bottom:329.445000px;}
.y2c{bottom:332.400000px;}
.ye3{bottom:332.850000px;}
.y4c{bottom:334.095000px;}
.yf9{bottom:337.350000px;}
.y117{bottom:338.445000px;}
.y6e{bottom:340.125000px;}
.y7e{bottom:343.995000px;}
.yaa{bottom:344.220000px;}
.y11{bottom:344.730000px;}
.y4{bottom:346.920000px;}
.y59{bottom:352.170000px;}
.y101{bottom:353.745000px;}
.y92{bottom:356.925000px;}
.yca{bottom:357.150000px;}
.yee{bottom:359.175000px;}
.y116{bottom:360.975000px;}
.y9b{bottom:362.100000px;}
.y23{bottom:362.655000px;}
.y2b{bottom:365.070000px;}
.ye2{bottom:365.520000px;}
.y4b{bottom:366.750000px;}
.y89{bottom:371.445000px;}
.y6d{bottom:372.780000px;}
.yf8{bottom:373.380000px;}
.yb9{bottom:374.025000px;}
.y7d{bottom:376.650000px;}
.ya9{bottom:376.875000px;}
.y3b{bottom:377.400000px;}
.y100{bottom:379.650000px;}
.y58{bottom:384.870000px;}
.yc9{bottom:389.820000px;}
.y22{bottom:391.950000px;}
.y9a{bottom:394.755000px;}
.y2a{bottom:397.725000px;}
.ye1{bottom:398.175000px;}
.y88{bottom:404.100000px;}
.yff{bottom:404.445000px;}
.y6c{bottom:405.450000px;}
.yb8{bottom:406.725000px;}
.ya8{bottom:408.405000px;}
.y7c{bottom:409.320000px;}
.y10{bottom:410.100000px;}
.yb6{bottom:414.375000px;}
.y57{bottom:417.525000px;}
.yc8{bottom:421.380000px;}
.yed{bottom:424.530000px;}
.y115{bottom:425.175000px;}
.y99{bottom:427.425000px;}
.yfe{bottom:429.225000px;}
.ye0{bottom:430.845000px;}
.y4a{bottom:432.120000px;}
.y87{bottom:436.800000px;}
.y6b{bottom:436.995000px;}
.ya2{bottom:440.970000px;}
.y9{bottom:441.045000px;}
.ya7{bottom:441.120000px;}
.yf{bottom:442.755000px;}
.y66{bottom:442.875000px;}
.y29{bottom:444.000000px;}
.yb5{bottom:444.780000px;}
.y114{bottom:447.720000px;}
.y56{bottom:449.070000px;}
.yc7{bottom:454.050000px;}
.yd8{bottom:455.475000px;}
.yec{bottom:457.200000px;}
.ydf{bottom:462.375000px;}
.y65{bottom:466.530000px;}
.y6a{bottom:469.650000px;}
.y112{bottom:469.725000px;}
.ya6{bottom:473.775000px;}
.y8{bottom:474.825000px;}
.yb4{bottom:475.200000px;}
.y3a{bottom:475.425000px;}
.y113{bottom:478.800000px;}
.yf7{bottom:481.545000px;}
.y55{bottom:481.725000px;}
.y7b{bottom:485.025000px;}
.yc6{bottom:486.720000px;}
.yd7{bottom:488.130000px;}
.yeb{bottom:488.745000px;}
.y64{bottom:492.450000px;}
.y98{bottom:494.025000px;}
.y111{bottom:494.505000px;}
.yde{bottom:495.075000px;}
.y47{bottom:500.775000px;}
.y86{bottom:501.000000px;}
.y69{bottom:502.350000px;}
.yb3{bottom:505.620000px;}
.ya5{bottom:506.445000px;}
.ye{bottom:506.970000px;}
.y39{bottom:508.620000px;}
.y7{bottom:510.870000px;}
.y54{bottom:514.380000px;}
.yf6{bottom:517.575000px;}
.y97{bottom:518.820000px;}
.yc5{bottom:519.375000px;}
.yea{bottom:521.400000px;}
.y7a{bottom:523.320000px;}
.ydd{bottom:527.745000px;}
.y1e{bottom:528.375000px;}
.y46{bottom:532.350000px;}
.y85{bottom:533.655000px;}
.y68{bottom:535.005000px;}
.y1d{bottom:535.575000px;}
.yb2{bottom:536.025000px;}
.ya4{bottom:539.100000px;}
.yd{bottom:539.625000px;}
.y38{bottom:541.275000px;}
.y96{bottom:544.725000px;}
.y110{bottom:545.205000px;}
.y53{bottom:547.080000px;}
.y91{bottom:549.870000px;}
.y1c{bottom:550.200000px;}
.yc4{bottom:552.030000px;}
.yd6{bottom:552.375000px;}
.yf5{bottom:553.650000px;}
.ye9{bottom:554.100000px;}
.ydc{bottom:560.400000px;}
.y79{bottom:560.505000px;}
.y1b{bottom:564.870000px;}
.y45{bottom:565.005000px;}
.y84{bottom:566.325000px;}
.y67{bottom:567.675000px;}
.y95{bottom:569.505000px;}
.y10f{bottom:570.000000px;}
.y90{bottom:571.245000px;}
.y37{bottom:573.945000px;}
.y3{bottom:577.800000px;}
.y1a{bottom:578.370000px;}
.y52{bottom:579.750000px;}
.yd5{bottom:585.030000px;}
.yf4{bottom:589.695000px;}
.ydb{bottom:593.070000px;}
.y10e{bottom:595.905000px;}
.yc{bottom:604.995000px;}
.y36{bottom:606.720000px;}
.ybb{bottom:611.595000px;}
.yd4{bottom:617.700000px;}
.ye8{bottom:619.425000px;}
.y10d{bottom:620.700000px;}
.y122{bottom:622.950000px;}
.y21{bottom:630.405000px;}
.y11f{bottom:635.325000px;}
.y1f{bottom:635.595000px;}
.y49{bottom:636.375000px;}
.y121{bottom:637.620000px;}
.y35{bottom:639.405000px;}
.y20{bottom:645.030000px;}
.y10c{bottom:645.495000px;}
.yd3{bottom:650.370000px;}
.ye7{bottom:652.095000px;}
.y120{bottom:652.275000px;}
.yb{bottom:659.070000px;}
.y48{bottom:666.570000px;}
.y44{bottom:670.050000px;}
.y10b{bottom:671.400000px;}
.y34{bottom:672.075000px;}
.yd2{bottom:683.025000px;}
.ya3{bottom:688.755000px;}
.ya{bottom:707.325000px;}
.yb7{bottom:720.225000px;}
.y33{bottom:724.005000px;}
.y2{bottom:755.280000px;}
.y1{bottom:779.955000px;}
.he{height:37.125000px;}
.hf{height:37.237500px;}
.hc{height:62.496826px;}
.hb{height:62.606470px;}
.h2{height:67.137451px;}
.h1{height:67.286646px;}
.h26{height:68.800781px;}
.h20{height:71.613281px;}
.h21{height:71.762476px;}
.h2b{height:73.935791px;}
.h2a{height:74.065503px;}
.h29{height:74.107324px;}
.h9{height:79.053003px;}
.h14{height:81.270923px;}
.ha{height:84.238550px;}
.h1d{height:85.189966px;}
.h15{height:85.499227px;}
.h2c{height:89.665796px;}
.h7{height:91.237500px;}
.h6{height:92.484888px;}
.h5{height:92.598926px;}
.h23{height:94.141626px;}
.h1c{height:104.165653px;}
.hd{height:107.569116px;}
.h4{height:109.590601px;}
.h13{height:110.737573px;}
.h27{height:120.996606px;}
.h28{height:121.145801px;}
.h18{height:124.560571px;}
.h19{height:124.714160px;}
.h1a{height:135.225000px;}
.h12{height:137.252197px;}
.h22{height:143.375757px;}
.h24{height:143.524951px;}
.h25{height:147.598901px;}
.h16{height:158.818359px;}
.h1f{height:161.421899px;}
.h1e{height:161.575488px;}
.h10{height:199.462500px;}
.h11{height:206.212500px;}
.h8{height:253.081055px;}
.h17{height:253.223877px;}
.h1b{height:267.639743px;}
.h3{height:343.201904px;}
.h0{height:810.000000px;}
.w2{width:403.753800px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x19{left:10.799979px;}
.x39{left:35.662479px;}
.x32{left:43.162479px;}
.x27{left:46.649979px;}
.x9{left:48.712479px;}
.x25{left:50.774979px;}
.xa{left:53.099979px;}
.x1e{left:56.849979px;}
.x2a{left:64.837479px;}
.x20{left:66.037479px;}
.x1c{left:73.912479px;}
.x3d{left:78.149979px;}
.x1{left:81.562479px;}
.x6{left:83.512479px;}
.x14{left:92.212479px;}
.x33{left:98.624979px;}
.x43{left:106.912479px;}
.x8{left:109.874979px;}
.x3e{left:111.937479px;}
.x15{left:119.249979px;}
.x28{left:123.337479px;}
.x1f{left:127.949979px;}
.x11{left:130.912479px;}
.x3a{left:132.224979px;}
.x34{left:152.654979px;}
.x2e{left:163.904979px;}
.x29{left:176.474979px;}
.x4{left:190.949979px;}
.x2f{left:197.699979px;}
.x1b{left:214.949979px;}
.x46{left:232.874979px;}
.x10{left:239.924979px;}
.x22{left:261.687921px;}
.x2d{left:315.299979px;}
.x35{left:327.224979px;}
.x1d{left:339.794979px;}
.x47{left:379.799979px;}
.x12{left:386.849979px;}
.x48{left:420.074979px;}
.x49{left:438.374979px;}
.x5{left:447.524979px;}
.x13{left:460.049979px;}
.x3{left:465.494979px;}
.x7{left:493.049979px;}
.xc{left:505.154979px;}
.xd{left:512.474979px;}
.x45{left:527.399979px;}
.x44{left:534.719979px;}
.xe{left:552.749979px;}
.xf{left:571.049979px;}
.x18{left:688.199979px;}
.x42{left:702.824979px;}
.x30{left:736.049979px;}
.x24{left:741.524979px;}
.x41{left:743.324979px;}
.x16{left:746.849979px;}
.x2c{left:773.219979px;}
.x17{left:800.069979px;}
.x3c{left:805.124979px;}
.x3f{left:806.444979px;}
.x1a{left:816.944979px;}
.x40{left:826.724979px;}
.x3b{left:848.819979px;}
.x38{left:858.149979px;}
.x26{left:866.504979px;}
.x37{left:871.244979px;}
.x31{left:893.654979px;}
.x21{left:897.823015px;}
.x23{left:909.494979px;}
.x36{left:934.529979px;}
.xb{left:1122.524979px;}
.x2b{left:1136.099979px;}
.x2{left:1155.704979px;}
@media print{
.v4{vertical-align:-42.933333pt;}
.v3{vertical-align:-12.373333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.000000pt;}
.v2{vertical-align:81.706667pt;}
.v5{vertical-align:108.266667pt;}
.ls29{letter-spacing:-2.256000pt;}
.lsd{letter-spacing:-1.562667pt;}
.ls1c{letter-spacing:-1.450667pt;}
.ls5{letter-spacing:-1.440000pt;}
.lsb{letter-spacing:-1.429333pt;}
.ls1b{letter-spacing:-1.034667pt;}
.ls2a{letter-spacing:-0.901333pt;}
.ls4{letter-spacing:-0.741333pt;}
.lsf{letter-spacing:-0.666667pt;}
.ls3{letter-spacing:-0.608000pt;}
.ls15{letter-spacing:-0.225600pt;}
.lse{letter-spacing:-0.204800pt;}
.ls24{letter-spacing:-0.200533pt;}
.ls17{letter-spacing:-0.092267pt;}
.ls1d{letter-spacing:-0.071467pt;}
.ls1{letter-spacing:-0.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.018800pt;}
.ls23{letter-spacing:0.031200pt;}
.ls14{letter-spacing:0.125600pt;}
.ls13{letter-spacing:0.204933pt;}
.ls10{letter-spacing:0.226133pt;}
.ls16{letter-spacing:0.273867pt;}
.ls21{letter-spacing:0.376533pt;}
.ls25{letter-spacing:0.493333pt;}
.ls9{letter-spacing:0.608000pt;}
.ls19{letter-spacing:0.741333pt;}
.ls2b{letter-spacing:0.762667pt;}
.ls11{letter-spacing:0.901333pt;}
.ls12{letter-spacing:1.034667pt;}
.ls2{letter-spacing:1.274667pt;}
.ls28{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.338667pt;}
.lsa{letter-spacing:2.234667pt;}
.ls6{letter-spacing:62.486667pt;}
.ls27{letter-spacing:82.240000pt;}
.ls26{letter-spacing:82.286667pt;}
.ls20{letter-spacing:84.620000pt;}
.ls18{letter-spacing:84.646667pt;}
.ls22{letter-spacing:86.353333pt;}
.ls1f{letter-spacing:86.460000pt;}
.ls1e{letter-spacing:86.486667pt;}
.ls1a{letter-spacing:86.513333pt;}
.ls8{letter-spacing:155.580000pt;}
.ws9{word-spacing:-142.785600pt;}
.ws19{word-spacing:-96.801067pt;}
.ws24{word-spacing:-96.133333pt;}
.ws28{word-spacing:-76.133333pt;}
.ws1{word-spacing:-53.396267pt;}
.ws37{word-spacing:-44.000000pt;}
.ws1c{word-spacing:-32.411467pt;}
.ws1d{word-spacing:-31.670133pt;}
.ws8{word-spacing:-26.656533pt;}
.ws39{word-spacing:-26.576000pt;}
.ws27{word-spacing:-25.750133pt;}
.ws1f{word-spacing:-25.274400pt;}
.ws26{word-spacing:-24.438133pt;}
.ws21{word-spacing:-23.064800pt;}
.ws18{word-spacing:-22.760800pt;}
.ws17{word-spacing:-22.627467pt;}
.ws35{word-spacing:-22.488800pt;}
.ws23{word-spacing:-22.102667pt;}
.ws3{word-spacing:-21.726133pt;}
.ws20{word-spacing:-21.654667pt;}
.ws25{word-spacing:-21.525600pt;}
.ws1b{word-spacing:-21.165067pt;}
.ws2b{word-spacing:-21.128000pt;}
.ws4{word-spacing:-21.118133pt;}
.ws29{word-spacing:-21.012800pt;}
.ws6{word-spacing:-20.984800pt;}
.ws2a{word-spacing:-20.860533pt;}
.ws34{word-spacing:-20.824000pt;}
.ws30{word-spacing:-19.959200pt;}
.ws2e{word-spacing:-19.825867pt;}
.ws2c{word-spacing:-18.872000pt;}
.ws36{word-spacing:-18.110133pt;}
.ws2{word-spacing:-17.762400pt;}
.ws7{word-spacing:-13.024000pt;}
.ws10{word-spacing:-3.698400pt;}
.ws2d{word-spacing:-3.446667pt;}
.ws31{word-spacing:-3.294400pt;}
.ws12{word-spacing:-1.608267pt;}
.wsb{word-spacing:-1.368400pt;}
.ws32{word-spacing:-1.326000pt;}
.ws13{word-spacing:-0.893467pt;}
.wsc{word-spacing:-0.765733pt;}
.ws14{word-spacing:-0.648400pt;}
.ws1e{word-spacing:-0.610800pt;}
.ws16{word-spacing:-0.494000pt;}
.ws22{word-spacing:-0.328800pt;}
.ws1a{word-spacing:-0.109548pt;}
.ws15{word-spacing:-0.085333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.302667pt;}
.ws33{word-spacing:0.680400pt;}
.ws11{word-spacing:1.372667pt;}
.wsf{word-spacing:2.058933pt;}
.ws38{word-spacing:5.720667pt;}
.wsa{word-spacing:13.427333pt;}
.ws5{word-spacing:371.667600pt;}
.wsd{word-spacing:760.449200pt;}
.wse{word-spacing:1047.987333pt;}
._b{margin-left:-4277.824267pt;}
._1b{margin-left:-17.720000pt;}
._9{margin-left:-10.766933pt;}
._7{margin-left:-9.771733pt;}
._a{margin-left:-8.625067pt;}
._11{margin-left:-7.134000pt;}
._8{margin-left:-6.049067pt;}
._f{margin-left:-5.086400pt;}
._5{margin-left:-4.189067pt;}
._2{margin-left:-2.886400pt;}
._1{margin-left:-1.804000pt;}
._6{margin-left:-0.902000pt;}
._0{width:1.202667pt;}
._3{width:2.345200pt;}
._4{width:3.427600pt;}
._17{width:4.320933pt;}
._10{width:5.567733pt;}
._14{width:6.563200pt;}
._1a{width:10.025600pt;}
._1c{width:19.465067pt;}
._d{width:20.770800pt;}
._1d{width:21.696267pt;}
._e{width:22.923467pt;}
._16{width:27.002533pt;}
._c{width:45.262667pt;}
._18{width:169.572400pt;}
._19{width:211.972400pt;}
._12{width:256.665733pt;}
._13{width:259.705733pt;}
._15{width:1131.898933pt;}
.fsc{font-size:44.000000pt;}
.fsd{font-size:44.133333pt;}
.fs1{font-size:60.000000pt;}
.fs0{font-size:60.133333pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fsa{font-size:76.000000pt;}
.fs9{font-size:76.133333pt;}
.fs18{font-size:80.133333pt;}
.fs16{font-size:84.133333pt;}
.fs7{font-size:96.133333pt;}
.fs10{font-size:101.332418pt;}
.fs5{font-size:108.133333pt;}
.fs4{font-size:108.266667pt;}
.fs13{font-size:109.548113pt;}
.fs3{font-size:128.133333pt;}
.fs17{font-size:128.266667pt;}
.fs15{font-size:140.133333pt;}
.fs14{font-size:140.266667pt;}
.fs11{font-size:148.266667pt;}
.fs12{font-size:160.266667pt;}
.fs6{font-size:236.266667pt;}
.fse{font-size:236.400000pt;}
.fsf{font-size:244.400000pt;}
.fs2{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:24.900000pt;}
.y32{bottom:58.866667pt;}
.y43{bottom:66.600000pt;}
.yda{bottom:68.366667pt;}
.yba{bottom:72.900000pt;}
.y18{bottom:73.200000pt;}
.y94{bottom:77.533333pt;}
.y11e{bottom:82.533333pt;}
.y60{bottom:82.733333pt;}
.y31{bottom:87.900000pt;}
.yc3{bottom:88.766667pt;}
.y10a{bottom:90.100000pt;}
.yd9{bottom:91.400000pt;}
.y42{bottom:95.633333pt;}
.y51{bottom:95.700000pt;}
.y17{bottom:96.233333pt;}
.yf3{bottom:98.566667pt;}
.y11d{bottom:99.566667pt;}
.y8f{bottom:99.866667pt;}
.y83{bottom:103.500000pt;}
.y93{bottom:103.566667pt;}
.yb1{bottom:103.700000pt;}
.y63{bottom:110.266667pt;}
.y5f{bottom:110.766667pt;}
.y109{bottom:113.133333pt;}
.yd1{bottom:115.200000pt;}
.yc2{bottom:117.800000pt;}
.y16{bottom:118.233333pt;}
.ya1{bottom:120.600000pt;}
.y11c{bottom:123.600000pt;}
.y50{bottom:123.733333pt;}
.y41{bottom:124.666667pt;}
.y62{bottom:125.003362pt;}
.yf2{bottom:127.600000pt;}
.y8e{bottom:128.900000pt;}
.y74{bottom:129.066667pt;}
.yb0{bottom:132.733333pt;}
.y61{bottom:138.033631pt;}
.y78{bottom:138.066667pt;}
.yfd{bottom:139.640000pt;}
.y5e{bottom:139.800000pt;}
.y15{bottom:140.266667pt;}
.yd0{bottom:144.226667pt;}
.yc1{bottom:146.826667pt;}
.ya0{bottom:149.640000pt;}
.y4f{bottom:152.773333pt;}
.y40{bottom:153.733333pt;}
.y8d{bottom:156.933333pt;}
.y108{bottom:157.200000pt;}
.y73{bottom:158.133333pt;}
.y77{bottom:160.106667pt;}
.y82{bottom:161.573333pt;}
.yaf{bottom:161.773333pt;}
.y14{bottom:163.306667pt;}
.y30{bottom:164.266667pt;}
.y28{bottom:166.133333pt;}
.y5d{bottom:168.826667pt;}
.yfc{bottom:171.706667pt;}
.ycf{bottom:173.266667pt;}
.yc0{bottom:175.866667pt;}
.y9f{bottom:178.666667pt;}
.y107{bottom:180.226667pt;}
.y11b{bottom:181.666667pt;}
.y4e{bottom:181.800000pt;}
.y6{bottom:185.200000pt;}
.y72{bottom:187.173333pt;}
.y3f{bottom:189.266667pt;}
.y81{bottom:190.600000pt;}
.yae{bottom:190.800000pt;}
.y5c{bottom:197.893333pt;}
.y27{bottom:199.200000pt;}
.y11a{bottom:201.706667pt;}
.y106{bottom:202.266667pt;}
.yce{bottom:202.306667pt;}
.ybf{bottom:203.893333pt;}
.y76{bottom:205.173333pt;}
.y9e{bottom:207.706667pt;}
.y2f{bottom:209.333333pt;}
.ye6{bottom:209.733333pt;}
.y8c{bottom:215.026667pt;}
.y71{bottom:216.200000pt;}
.y3e{bottom:218.293333pt;}
.yad{bottom:218.840000pt;}
.y80{bottom:219.626667pt;}
.y13{bottom:220.333333pt;}
.y119{bottom:221.733333pt;}
.y5{bottom:224.266667pt;}
.y26{bottom:225.226667pt;}
.y105{bottom:225.306667pt;}
.y5b{bottom:226.933333pt;}
.y75{bottom:228.200000pt;}
.ycd{bottom:230.373333pt;}
.ybe{bottom:232.960000pt;}
.yf1{bottom:233.173333pt;}
.yfb{bottom:235.760000pt;}
.y9d{bottom:236.773333pt;}
.y2e{bottom:237.360000pt;}
.ye5{bottom:238.760000pt;}
.y4d{bottom:239.893333pt;}
.y8b{bottom:244.066667pt;}
.y70{bottom:244.240000pt;}
.y104{bottom:247.333333pt;}
.y3d{bottom:247.360000pt;}
.yac{bottom:247.893333pt;}
.y5a{bottom:254.973333pt;}
.y25{bottom:257.266667pt;}
.ycc{bottom:259.400000pt;}
.ybd{bottom:262.000000pt;}
.yf0{bottom:262.200000pt;}
.y2d{bottom:266.440000pt;}
.ye4{bottom:266.800000pt;}
.yfa{bottom:267.800000pt;}
.y103{bottom:269.373333pt;}
.y8a{bottom:273.106667pt;}
.y6f{bottom:273.266667pt;}
.y3c{bottom:276.400000pt;}
.y7f{bottom:276.733333pt;}
.yab{bottom:276.933333pt;}
.y12{bottom:277.400000pt;}
.y118{bottom:279.800000pt;}
.ycb{bottom:288.426667pt;}
.y24{bottom:290.293333pt;}
.ybc{bottom:291.026667pt;}
.yef{bottom:291.226667pt;}
.y102{bottom:292.400000pt;}
.y9c{bottom:292.840000pt;}
.y2c{bottom:295.466667pt;}
.ye3{bottom:295.866667pt;}
.y4c{bottom:296.973333pt;}
.yf9{bottom:299.866667pt;}
.y117{bottom:300.840000pt;}
.y6e{bottom:302.333333pt;}
.y7e{bottom:305.773333pt;}
.yaa{bottom:305.973333pt;}
.y11{bottom:306.426667pt;}
.y4{bottom:308.373333pt;}
.y59{bottom:313.040000pt;}
.y101{bottom:314.440000pt;}
.y92{bottom:317.266667pt;}
.yca{bottom:317.466667pt;}
.yee{bottom:319.266667pt;}
.y116{bottom:320.866667pt;}
.y9b{bottom:321.866667pt;}
.y23{bottom:322.360000pt;}
.y2b{bottom:324.506667pt;}
.ye2{bottom:324.906667pt;}
.y4b{bottom:326.000000pt;}
.y89{bottom:330.173333pt;}
.y6d{bottom:331.360000pt;}
.yf8{bottom:331.893333pt;}
.yb9{bottom:332.466667pt;}
.y7d{bottom:334.800000pt;}
.ya9{bottom:335.000000pt;}
.y3b{bottom:335.466667pt;}
.y100{bottom:337.466667pt;}
.y58{bottom:342.106667pt;}
.yc9{bottom:346.506667pt;}
.y22{bottom:348.400000pt;}
.y9a{bottom:350.893333pt;}
.y2a{bottom:353.533333pt;}
.ye1{bottom:353.933333pt;}
.y88{bottom:359.200000pt;}
.yff{bottom:359.506667pt;}
.y6c{bottom:360.400000pt;}
.yb8{bottom:361.533333pt;}
.ya8{bottom:363.026667pt;}
.y7c{bottom:363.840000pt;}
.y10{bottom:364.533333pt;}
.yb6{bottom:368.333333pt;}
.y57{bottom:371.133333pt;}
.yc8{bottom:374.560000pt;}
.yed{bottom:377.360000pt;}
.y115{bottom:377.933333pt;}
.y99{bottom:379.933333pt;}
.yfe{bottom:381.533333pt;}
.ye0{bottom:382.973333pt;}
.y4a{bottom:384.106667pt;}
.y87{bottom:388.266667pt;}
.y6b{bottom:388.440000pt;}
.ya2{bottom:391.973333pt;}
.y9{bottom:392.040000pt;}
.ya7{bottom:392.106667pt;}
.yf{bottom:393.560000pt;}
.y66{bottom:393.666667pt;}
.y29{bottom:394.666667pt;}
.yb5{bottom:395.360000pt;}
.y114{bottom:397.973333pt;}
.y56{bottom:399.173333pt;}
.yc7{bottom:403.600000pt;}
.yd8{bottom:404.866667pt;}
.yec{bottom:406.400000pt;}
.ydf{bottom:411.000000pt;}
.y65{bottom:414.693333pt;}
.y6a{bottom:417.466667pt;}
.y112{bottom:417.533333pt;}
.ya6{bottom:421.133333pt;}
.y8{bottom:422.066667pt;}
.yb4{bottom:422.400000pt;}
.y3a{bottom:422.600000pt;}
.y113{bottom:425.600000pt;}
.yf7{bottom:428.040000pt;}
.y55{bottom:428.200000pt;}
.y7b{bottom:431.133333pt;}
.yc6{bottom:432.640000pt;}
.yd7{bottom:433.893333pt;}
.yeb{bottom:434.440000pt;}
.y64{bottom:437.733333pt;}
.y98{bottom:439.133333pt;}
.y111{bottom:439.560000pt;}
.yde{bottom:440.066667pt;}
.y47{bottom:445.133333pt;}
.y86{bottom:445.333333pt;}
.y69{bottom:446.533333pt;}
.yb3{bottom:449.440000pt;}
.ya5{bottom:450.173333pt;}
.ye{bottom:450.640000pt;}
.y39{bottom:452.106667pt;}
.y7{bottom:454.106667pt;}
.y54{bottom:457.226667pt;}
.yf6{bottom:460.066667pt;}
.y97{bottom:461.173333pt;}
.yc5{bottom:461.666667pt;}
.yea{bottom:463.466667pt;}
.y7a{bottom:465.173333pt;}
.ydd{bottom:469.106667pt;}
.y1e{bottom:469.666667pt;}
.y46{bottom:473.200000pt;}
.y85{bottom:474.360000pt;}
.y68{bottom:475.560000pt;}
.y1d{bottom:476.066667pt;}
.yb2{bottom:476.466667pt;}
.ya4{bottom:479.200000pt;}
.yd{bottom:479.666667pt;}
.y38{bottom:481.133333pt;}
.y96{bottom:484.200000pt;}
.y110{bottom:484.626667pt;}
.y53{bottom:486.293333pt;}
.y91{bottom:488.773333pt;}
.y1c{bottom:489.066667pt;}
.yc4{bottom:490.693333pt;}
.yd6{bottom:491.000000pt;}
.yf5{bottom:492.133333pt;}
.ye9{bottom:492.533333pt;}
.ydc{bottom:498.133333pt;}
.y79{bottom:498.226667pt;}
.y1b{bottom:502.106667pt;}
.y45{bottom:502.226667pt;}
.y84{bottom:503.400000pt;}
.y67{bottom:504.600000pt;}
.y95{bottom:506.226667pt;}
.y10f{bottom:506.666667pt;}
.y90{bottom:507.773333pt;}
.y37{bottom:510.173333pt;}
.y3{bottom:513.600000pt;}
.y1a{bottom:514.106667pt;}
.y52{bottom:515.333333pt;}
.yd5{bottom:520.026667pt;}
.yf4{bottom:524.173333pt;}
.ydb{bottom:527.173333pt;}
.y10e{bottom:529.693333pt;}
.yc{bottom:537.773333pt;}
.y36{bottom:539.306667pt;}
.ybb{bottom:543.640000pt;}
.yd4{bottom:549.066667pt;}
.ye8{bottom:550.600000pt;}
.y10d{bottom:551.733333pt;}
.y122{bottom:553.733333pt;}
.y21{bottom:560.360000pt;}
.y11f{bottom:564.733333pt;}
.y1f{bottom:564.973333pt;}
.y49{bottom:565.666667pt;}
.y121{bottom:566.773333pt;}
.y35{bottom:568.360000pt;}
.y20{bottom:573.360000pt;}
.y10c{bottom:573.773333pt;}
.yd3{bottom:578.106667pt;}
.ye7{bottom:579.640000pt;}
.y120{bottom:579.800000pt;}
.yb{bottom:585.840000pt;}
.y48{bottom:592.506667pt;}
.y44{bottom:595.600000pt;}
.y10b{bottom:596.800000pt;}
.y34{bottom:597.400000pt;}
.yd2{bottom:607.133333pt;}
.ya3{bottom:612.226667pt;}
.ya{bottom:628.733333pt;}
.yb7{bottom:640.200000pt;}
.y33{bottom:643.560000pt;}
.y2{bottom:671.360000pt;}
.y1{bottom:693.293333pt;}
.he{height:33.000000pt;}
.hf{height:33.100000pt;}
.hc{height:55.552734pt;}
.hb{height:55.650195pt;}
.h2{height:59.677734pt;}
.h1{height:59.810352pt;}
.h26{height:61.156250pt;}
.h20{height:63.656250pt;}
.h21{height:63.788867pt;}
.h2b{height:65.720703pt;}
.h2a{height:65.836003pt;}
.h29{height:65.873177pt;}
.h9{height:70.269336pt;}
.h14{height:72.240820pt;}
.ha{height:74.878711pt;}
.h1d{height:75.724414pt;}
.h15{height:75.999313pt;}
.h2c{height:79.702930pt;}
.h7{height:81.100000pt;}
.h6{height:82.208789pt;}
.h5{height:82.310156pt;}
.h23{height:83.681445pt;}
.h1c{height:92.591691pt;}
.hd{height:95.616992pt;}
.h4{height:97.413867pt;}
.h13{height:98.433398pt;}
.h27{height:107.552539pt;}
.h28{height:107.685156pt;}
.h18{height:110.720508pt;}
.h19{height:110.857031pt;}
.h1a{height:120.200000pt;}
.h12{height:122.001953pt;}
.h22{height:127.445117pt;}
.h24{height:127.577734pt;}
.h25{height:131.199023pt;}
.h16{height:141.171875pt;}
.h1f{height:143.486133pt;}
.h1e{height:143.622656pt;}
.h10{height:177.300000pt;}
.h11{height:183.300000pt;}
.h8{height:224.960937pt;}
.h17{height:225.087891pt;}
.h1b{height:237.901994pt;}
.h3{height:305.068359pt;}
.h0{height:720.000000pt;}
.w2{width:358.892267pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.599981pt;}
.x39{left:31.699981pt;}
.x32{left:38.366648pt;}
.x27{left:41.466648pt;}
.x9{left:43.299981pt;}
.x25{left:45.133314pt;}
.xa{left:47.199981pt;}
.x1e{left:50.533314pt;}
.x2a{left:57.633314pt;}
.x20{left:58.699981pt;}
.x1c{left:65.699981pt;}
.x3d{left:69.466648pt;}
.x1{left:72.499981pt;}
.x6{left:74.233314pt;}
.x14{left:81.966648pt;}
.x33{left:87.666648pt;}
.x43{left:95.033314pt;}
.x8{left:97.666648pt;}
.x3e{left:99.499981pt;}
.x15{left:105.999981pt;}
.x28{left:109.633314pt;}
.x1f{left:113.733314pt;}
.x11{left:116.366648pt;}
.x3a{left:117.533314pt;}
.x34{left:135.693314pt;}
.x2e{left:145.693314pt;}
.x29{left:156.866648pt;}
.x4{left:169.733314pt;}
.x2f{left:175.733314pt;}
.x1b{left:191.066648pt;}
.x46{left:206.999981pt;}
.x10{left:213.266648pt;}
.x22{left:232.611485pt;}
.x2d{left:280.266648pt;}
.x35{left:290.866648pt;}
.x1d{left:302.039981pt;}
.x47{left:337.599981pt;}
.x12{left:343.866648pt;}
.x48{left:373.399981pt;}
.x49{left:389.666648pt;}
.x5{left:397.799981pt;}
.x13{left:408.933314pt;}
.x3{left:413.773314pt;}
.x7{left:438.266648pt;}
.xc{left:449.026648pt;}
.xd{left:455.533314pt;}
.x45{left:468.799981pt;}
.x44{left:475.306648pt;}
.xe{left:491.333314pt;}
.xf{left:507.599981pt;}
.x18{left:611.733314pt;}
.x42{left:624.733314pt;}
.x30{left:654.266648pt;}
.x24{left:659.133314pt;}
.x41{left:660.733314pt;}
.x16{left:663.866648pt;}
.x2c{left:687.306648pt;}
.x17{left:711.173314pt;}
.x3c{left:715.666648pt;}
.x3f{left:716.839981pt;}
.x1a{left:726.173314pt;}
.x40{left:734.866648pt;}
.x3b{left:754.506648pt;}
.x38{left:762.799981pt;}
.x26{left:770.226648pt;}
.x37{left:774.439981pt;}
.x31{left:794.359981pt;}
.x21{left:798.064902pt;}
.x23{left:808.439981pt;}
.x36{left:830.693314pt;}
.xb{left:997.799981pt;}
.x2b{left:1009.866648pt;}
.x2{left:1027.293314pt;}
}




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