
    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_5452a2c2df84a9e425e59700.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_01194790ec0325b5713a8c65.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.824000;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_56693556219229df6a1a6bd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.387000;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_30e09aff9ce7b2bee196846b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.694000;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_9f7022821963cce6524f8e1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;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_6222d7378b503f12e96fef51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858000;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_372a928deaffbc3ffa98809c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858000;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_5b6290f67ee6ce514ff7101a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_0dc43002a4219ed2253d47cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_497492c7f513b0aa639a8ee1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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);}
.v2{vertical-align:-21.702000px;}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:26.040000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.987700px;}
.ls3{letter-spacing:2.991350px;}
.lsb{letter-spacing:2.991900px;}
.ls1{letter-spacing:4.081185px;}
.ls4{letter-spacing:8.970144px;}
.lsa{letter-spacing:11.127282px;}
.lsd{letter-spacing:13.449600px;}
.ls9{letter-spacing:14.135700px;}
.lsc{letter-spacing:14.334557px;}
.ls6{letter-spacing:18.196379px;}
.ls7{letter-spacing:22.778201px;}
.ls0{letter-spacing:22.930175px;}
.ls2{letter-spacing:32.730540px;}
.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;}
}
.wsa1{word-spacing:-35.865600px;}
.ws3f{word-spacing:-32.727300px;}
.ws17{word-spacing:-26.899200px;}
.ws81{word-spacing:-23.910300px;}
.wsad{word-spacing:-22.516382px;}
.wsa2{word-spacing:-22.450928px;}
.ws61{word-spacing:-22.320019px;}
.ws3c{word-spacing:-21.992746px;}
.ws7a{word-spacing:-21.818100px;}
.ws29{word-spacing:-21.730927px;}
.ws25{word-spacing:-21.600018px;}
.ws24{word-spacing:-21.582724px;}
.ws7e{word-spacing:-20.945472px;}
.ws62{word-spacing:-20.683654px;}
.ws69{word-spacing:-20.487290px;}
.ws54{word-spacing:-20.356381px;}
.wsb{word-spacing:-20.263928px;}
.ws99{word-spacing:-20.029108px;}
.ws11{word-spacing:-19.785724px;}
.ws5b{word-spacing:-19.636380px;}
.ws76{word-spacing:-19.505471px;}
.ws57{word-spacing:-19.374562px;}
.wsac{word-spacing:-19.243652px;}
.ws94{word-spacing:-19.112743px;}
.wsa7{word-spacing:-19.047289px;}
.wsa{word-spacing:-19.008641px;}
.ws6c{word-spacing:-18.981834px;}
.ws43{word-spacing:-18.785470px;}
.ws36{word-spacing:-18.720016px;}
.ws35{word-spacing:-18.654561px;}
.ws23{word-spacing:-18.458197px;}
.ws80{word-spacing:-18.392743px;}
.wsa5{word-spacing:-18.130924px;}
.ws31{word-spacing:-18.065470px;}
.ws63{word-spacing:-18.000015px;}
.ws2a{word-spacing:-17.932800px;}
.ws34{word-spacing:-17.869106px;}
.ws2c{word-spacing:-17.803651px;}
.ws22{word-spacing:-17.607287px;}
.ws85{word-spacing:-17.345469px;}
.ws28{word-spacing:-17.280014px;}
.ws65{word-spacing:-17.149105px;}
.ws77{word-spacing:-17.083651px;}
.ws66{word-spacing:-17.018196px;}
.ws7{word-spacing:-16.737168px;}
.ws71{word-spacing:-16.690923px;}
.ws98{word-spacing:-16.625468px;}
.ws84{word-spacing:-16.560014px;}
.wsa6{word-spacing:-16.429105px;}
.ws1a{word-spacing:-16.363650px;}
.ws41{word-spacing:-16.232741px;}
.ws9{word-spacing:-16.199188px;}
.ws42{word-spacing:-16.167286px;}
.ws38{word-spacing:-16.036377px;}
.ws89{word-spacing:-15.970922px;}
.ws33{word-spacing:-15.905468px;}
.ws10{word-spacing:-15.900310px;}
.ws56{word-spacing:-15.774559px;}
.wsa0{word-spacing:-15.709104px;}
.ws4f{word-spacing:-15.643649px;}
.ws5d{word-spacing:-15.250922px;}
.ws87{word-spacing:-15.185467px;}
.ws93{word-spacing:-15.054558px;}
.ws88{word-spacing:-14.989103px;}
.ws14{word-spacing:-14.943900px;}
.ws32{word-spacing:-14.923649px;}
.ws49{word-spacing:-14.792740px;}
.ws5c{word-spacing:-14.661830px;}
.ws8{word-spacing:-14.645022px;}
.ws1c{word-spacing:-14.530921px;}
.wsf{word-spacing:-14.465695px;}
.ws26{word-spacing:-14.465467px;}
.wsc{word-spacing:-14.405920px;}
.ws68{word-spacing:-14.400012px;}
.wsd{word-spacing:-14.346144px;}
.ws9f{word-spacing:-14.334557px;}
.ws51{word-spacing:-14.269103px;}
.ws7b{word-spacing:-14.203648px;}
.ws30{word-spacing:-13.941830px;}
.ws8e{word-spacing:-13.876375px;}
.ws6{word-spacing:-13.867939px;}
.ws52{word-spacing:-13.810921px;}
.ws55{word-spacing:-13.680011px;}
.ws8f{word-spacing:-13.549102px;}
.ws45{word-spacing:-13.483648px;}
.ws5e{word-spacing:-13.452134px;}
.ws3b{word-spacing:-13.449600px;}
.wse{word-spacing:-13.449510px;}
.ws60{word-spacing:-13.446845px;}
.ws13{word-spacing:-13.389734px;}
.ws2e{word-spacing:-13.352738px;}
.ws4e{word-spacing:-13.221829px;}
.ws4c{word-spacing:-13.156375px;}
.ws20{word-spacing:-12.960011px;}
.ws21{word-spacing:-12.894556px;}
.ws78{word-spacing:-12.763647px;}
.ws95{word-spacing:-12.698192px;}
.ws86{word-spacing:-12.632738px;}
.ws44{word-spacing:-12.567283px;}
.ws73{word-spacing:-12.501829px;}
.ws9c{word-spacing:-12.436374px;}
.ws7c{word-spacing:-12.370919px;}
.wsae{word-spacing:-12.174556px;}
.ws3d{word-spacing:-12.109101px;}
.ws1f{word-spacing:-12.043646px;}
.ws4a{word-spacing:-11.978192px;}
.ws8c{word-spacing:-11.847283px;}
.ws59{word-spacing:-11.716373px;}
.ws9b{word-spacing:-11.650919px;}
.ws9d{word-spacing:-11.585464px;}
.ws7d{word-spacing:-11.520010px;}
.ws9e{word-spacing:-11.454555px;}
.ws12{word-spacing:-11.417140px;}
.ws8b{word-spacing:-11.389100px;}
.ws6a{word-spacing:-11.323646px;}
.wsa3{word-spacing:-11.258191px;}
.ws64{word-spacing:-11.127282px;}
.ws70{word-spacing:-11.061827px;}
.ws74{word-spacing:-10.930918px;}
.ws8a{word-spacing:-10.734554px;}
.ws90{word-spacing:-10.669100px;}
.ws4d{word-spacing:-10.472736px;}
.ws92{word-spacing:-10.407281px;}
.ws53{word-spacing:-10.341827px;}
.ws16{word-spacing:-10.281403px;}
.ws91{word-spacing:-10.276372px;}
.wsa4{word-spacing:-10.080008px;}
.ws79{word-spacing:-10.014554px;}
.ws1e{word-spacing:-9.949099px;}
.ws75{word-spacing:-9.883645px;}
.ws37{word-spacing:-9.752735px;}
.ws6b{word-spacing:-9.621826px;}
.ws47{word-spacing:-9.556372px;}
.ws46{word-spacing:-9.490917px;}
.ws5a{word-spacing:-9.294553px;}
.ws4b{word-spacing:-9.229099px;}
.ws9a{word-spacing:-9.163644px;}
.ws48{word-spacing:-9.098189px;}
.ws2f{word-spacing:-9.032735px;}
.ws1d{word-spacing:-8.967280px;}
.ws18{word-spacing:-8.966400px;}
.ws58{word-spacing:-8.901826px;}
.ws2d{word-spacing:-8.640007px;}
.ws83{word-spacing:-8.574553px;}
.ws2b{word-spacing:-8.312734px;}
.ws40{word-spacing:-8.247280px;}
.ws82{word-spacing:-8.181825px;}
.ws7f{word-spacing:-7.985461px;}
.ws3e{word-spacing:-7.592734px;}
.ws39{word-spacing:-7.482624px;}
.ws8d{word-spacing:-7.478477px;}
.ws96{word-spacing:-7.461824px;}
.ws6d{word-spacing:-7.396370px;}
.ws97{word-spacing:-6.480005px;}
.ws67{word-spacing:-5.956369px;}
.ws50{word-spacing:-4.647277px;}
.ws6f{word-spacing:-4.581822px;}
.ws72{word-spacing:-4.516367px;}
.wsa8{word-spacing:-4.058185px;}
.ws15{word-spacing:-3.526760px;}
.wsa9{word-spacing:-3.403639px;}
.ws27{word-spacing:-2.630133px;}
.ws4{word-spacing:-0.059776px;}
.ws3a{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.052603px;}
.ws19{word-spacing:0.000000px;}
.ws6e{word-spacing:2.177100px;}
.wsab{word-spacing:14.596376px;}
.ws3{word-spacing:14.884124px;}
.ws1{word-spacing:19.869542px;}
.ws1b{word-spacing:23.097446px;}
.ws5{word-spacing:23.560742px;}
.wsaa{word-spacing:26.247295px;}
.ws0{word-spacing:28.611995px;}
.ws5f{word-spacing:1009.328189px;}
._1b{margin-left:-8.225755px;}
._18{margin-left:-6.464774px;}
._6{margin-left:-4.939561px;}
._1{margin-left:-3.615234px;}
._8{margin-left:-2.579910px;}
._2{margin-left:-1.549386px;}
._0{width:1.549386px;}
._5{width:2.988780px;}
._4{width:4.662497px;}
._7{width:11.077625px;}
._12{width:13.221829px;}
._21{width:14.842326px;}
._16{width:15.920699px;}
._17{width:17.801370px;}
._13{width:19.315639px;}
._3{width:20.770536px;}
._11{width:22.216290px;}
._9{width:24.039350px;}
._24{width:25.063675px;}
._e{width:26.147704px;}
._15{width:27.577911px;}
._a{width:29.285264px;}
._1e{width:31.162683px;}
._20{width:32.492662px;}
._10{width:34.379065px;}
._25{width:35.482049px;}
._1a{width:36.669807px;}
._27{width:39.271335px;}
._1f{width:40.320034px;}
._1c{width:41.441699px;}
._f{width:42.986285px;}
._d{width:45.125400px;}
._1d{width:46.538221px;}
._26{width:48.888293px;}
._19{width:49.945872px;}
._29{width:55.314793px;}
._14{width:58.963046px;}
._23{width:62.901871px;}
._28{width:70.080352px;}
._22{width:828.120707px;}
._b{width:858.601757px;}
._c{width:1433.927516px;}
.fc1{color:rgb(61,58,155);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:43.636200px;}
.fs8{font-size:47.820600px;}
.fs2{font-size:52.602600px;}
.fs6{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:118.014000px;}
.y91{bottom:118.015500px;}
.y22{bottom:129.522000px;}
.y90{bottom:168.519000px;}
.y10e{bottom:168.520500px;}
.y21{bottom:173.401500px;}
.y8f{bottom:190.876500px;}
.y4c{bottom:191.083500px;}
.ya9{bottom:200.578500px;}
.y4b{bottom:208.764000px;}
.y20{bottom:212.394000px;}
.y8e{bottom:213.232500px;}
.yec{bottom:217.338000px;}
.y71{bottom:221.206500px;}
.ya8{bottom:222.936000px;}
.y10d{bottom:225.706500px;}
.y4a{bottom:226.446000px;}
.y1f{bottom:232.120500px;}
.y8d{bottom:235.588500px;}
.yc9{bottom:236.322000px;}
.yeb{bottom:239.695500px;}
.y70{bottom:243.562500px;}
.y49{bottom:244.128000px;}
.ya7{bottom:245.292000px;}
.y10c{bottom:248.062500px;}
.y1e{bottom:251.845500px;}
.y8c{bottom:257.944500px;}
.yc8{bottom:258.679500px;}
.y48{bottom:261.808500px;}
.yea{bottom:262.051500px;}
.y6f{bottom:265.920000px;}
.ya6{bottom:267.648000px;}
.y10b{bottom:270.420000px;}
.y47{bottom:279.490500px;}
.y8b{bottom:280.300500px;}
.yc7{bottom:281.035500px;}
.y6e{bottom:288.276000px;}
.ye9{bottom:288.925500px;}
.ya5{bottom:290.004000px;}
.y10a{bottom:292.776000px;}
.yc6{bottom:303.391500px;}
.y46{bottom:306.151500px;}
.y6d{bottom:310.632000px;}
.ye8{bottom:311.283000px;}
.ya4{bottom:312.360000px;}
.y109{bottom:315.132000px;}
.y8a{bottom:318.502500px;}
.y1d{bottom:323.998500px;}
.yc5{bottom:325.747500px;}
.y45{bottom:328.509000px;}
.ye7{bottom:333.639000px;}
.y6c{bottom:334.054500px;}
.ya3{bottom:335.046000px;}
.y1c{bottom:346.354500px;}
.yc4{bottom:348.103500px;}
.y108{bottom:349.962000px;}
.y44{bottom:350.865000px;}
.ye6{bottom:355.995000px;}
.y6b{bottom:356.410500px;}
.ya2{bottom:357.402000px;}
.y89{bottom:365.379000px;}
.yc3{bottom:370.884000px;}
.y107{bottom:372.319500px;}
.y43{bottom:373.221000px;}
.y1b{bottom:377.677500px;}
.ye5{bottom:378.351000px;}
.y6a{bottom:378.766500px;}
.ya1{bottom:379.758000px;}
.y88{bottom:387.735000px;}
.yc2{bottom:393.241500px;}
.y106{bottom:394.675500px;}
.y42{bottom:395.577000px;}
.y1a{bottom:397.402500px;}
.ye4{bottom:400.707000px;}
.y69{bottom:401.122500px;}
.ya0{bottom:402.114000px;}
.y87{bottom:410.092500px;}
.yc1{bottom:415.597500px;}
.y41{bottom:417.933000px;}
.ye3{bottom:423.064500px;}
.y19{bottom:426.096000px;}
.y105{bottom:429.505500px;}
.y86{bottom:432.448500px;}
.y9f{bottom:434.122500px;}
.y68{bottom:434.956500px;}
.yc0{bottom:437.953500px;}
.y40{bottom:440.290500px;}
.ye2{bottom:445.420500px;}
.y18{bottom:445.822500px;}
.y104{bottom:451.861500px;}
.y85{bottom:454.804500px;}
.ybf{bottom:460.309500px;}
.y3f{bottom:462.646500px;}
.ye1{bottom:467.776500px;}
.y103{bottom:474.219000px;}
.y17{bottom:474.514500px;}
.y84{bottom:477.160500px;}
.y67{bottom:480.565500px;}
.ybe{bottom:483.090000px;}
.y3e{bottom:485.002500px;}
.ye0{bottom:490.132500px;}
.y16{bottom:494.241000px;}
.y9e{bottom:496.002000px;}
.y102{bottom:496.575000px;}
.y83{bottom:499.516500px;}
.y66{bottom:502.921500px;}
.ybd{bottom:505.446000px;}
.y3d{bottom:507.358500px;}
.y15{bottom:513.966000px;}
.y82{bottom:521.874000px;}
.y65{bottom:525.277500px;}
.ybc{bottom:527.803500px;}
.y3c{bottom:529.714500px;}
.y9d{bottom:530.179500px;}
.y101{bottom:531.405000px;}
.ydf{bottom:532.524000px;}
.y14{bottom:533.692500px;}
.y81{bottom:544.230000px;}
.y64{bottom:547.633500px;}
.y3b{bottom:552.072000px;}
.y13{bottom:553.419000px;}
.y100{bottom:553.761000px;}
.ybb{bottom:560.046000px;}
.y80{bottom:566.586000px;}
.y63{bottom:569.989500px;}
.y12{bottom:573.145500px;}
.y3a{bottom:574.428000px;}
.yff{bottom:576.118500px;}
.y7f{bottom:588.942000px;}
.y62{bottom:592.347000px;}
.y11{bottom:592.870500px;}
.y39{bottom:596.983500px;}
.yde{bottom:598.602000px;}
.yba{bottom:601.854000px;}
.yfe{bottom:610.948500px;}
.y7e{bottom:611.298000px;}
.y10{bottom:612.597000px;}
.y61{bottom:614.703000px;}
.y38{bottom:619.341000px;}
.ydd{bottom:620.958000px;}
.yb9{bottom:624.210000px;}
.yf{bottom:632.323500px;}
.yfd{bottom:633.304500px;}
.y7d{bottom:633.655500px;}
.y60{bottom:637.059000px;}
.y37{bottom:641.697000px;}
.ydc{bottom:643.315500px;}
.yb8{bottom:646.566000px;}
.ye{bottom:652.050000px;}
.yfc{bottom:655.660500px;}
.y5f{bottom:659.415000px;}
.y36{bottom:664.053000px;}
.ydb{bottom:665.671500px;}
.yb7{bottom:668.922000px;}
.yd{bottom:671.776500px;}
.y7c{bottom:674.104500px;}
.y5e{bottom:682.837500px;}
.y35{bottom:686.409000px;}
.yda{bottom:688.027500px;}
.yfb{bottom:690.492000px;}
.yb6{bottom:691.279500px;}
.yc{bottom:691.501500px;}
.y5d{bottom:705.193500px;}
.y7b{bottom:708.282000px;}
.yd9{bottom:710.383500px;}
.yb{bottom:711.228000px;}
.yfa{bottom:712.848000px;}
.yb5{bottom:713.635500px;}
.y34{bottom:726.295500px;}
.y5c{bottom:727.549500px;}
.ya{bottom:730.954500px;}
.yf9{bottom:735.204000px;}
.yb4{bottom:735.991500px;}
.yd8{bottom:737.259000px;}
.y5b{bottom:749.905500px;}
.y9{bottom:750.681000px;}
.yb3{bottom:758.772000px;}
.yd7{bottom:759.615000px;}
.yf8{bottom:770.035500px;}
.y5a{bottom:773.328000px;}
.y33{bottom:776.565000px;}
.yb2{bottom:781.128000px;}
.yd6{bottom:781.971000px;}
.yf7{bottom:792.391500px;}
.y8{bottom:794.008500px;}
.y59{bottom:795.684000px;}
.y32{bottom:798.921000px;}
.yb1{bottom:803.484000px;}
.yd5{bottom:804.327000px;}
.y58{bottom:818.040000px;}
.y7{bottom:820.882500px;}
.y31{bottom:821.476500px;}
.yb0{bottom:825.841500px;}
.yd4{bottom:826.684500px;}
.yf6{bottom:827.221500px;}
.y9c{bottom:838.551000px;}
.y57{bottom:840.397500px;}
.y6{bottom:840.609000px;}
.y30{bottom:843.834000px;}
.yd3{bottom:849.040500px;}
.yf5{bottom:849.577500px;}
.yaf{bottom:858.084000px;}
.y9b{bottom:860.907000px;}
.y56{bottom:862.753500px;}
.y2f{bottom:866.190000px;}
.y5{bottom:868.002000px;}
.yd2{bottom:871.396500px;}
.yf4{bottom:871.935000px;}
.y9a{bottom:883.263000px;}
.y55{bottom:885.109500px;}
.y2e{bottom:888.546000px;}
.y4{bottom:889.969500px;}
.yd1{bottom:893.752500px;}
.yae{bottom:898.638000px;}
.y99{bottom:905.619000px;}
.y7a{bottom:906.277500px;}
.y54{bottom:907.465500px;}
.y3{bottom:908.754000px;}
.yf3{bottom:910.266000px;}
.y2d{bottom:910.902000px;}
.yd0{bottom:920.628000px;}
.y98{bottom:927.975000px;}
.y79{bottom:928.633500px;}
.y53{bottom:929.821500px;}
.y2c{bottom:933.258000px;}
.ycf{bottom:942.984000px;}
.y97{bottom:950.331000px;}
.yad{bottom:950.565000px;}
.y78{bottom:950.989500px;}
.y52{bottom:953.244000px;}
.y2b{bottom:955.815000px;}
.yf2{bottom:957.370500px;}
.yce{bottom:965.340000px;}
.yac{bottom:972.922500px;}
.y96{bottom:973.017000px;}
.y77{bottom:973.345500px;}
.y51{bottom:975.600000px;}
.y2a{bottom:978.171000px;}
.yf1{bottom:979.726500px;}
.ycd{bottom:987.697500px;}
.y2{bottom:992.076000px;}
.yab{bottom:995.278500px;}
.y95{bottom:995.373000px;}
.y76{bottom:995.703000px;}
.y50{bottom:997.956000px;}
.y29{bottom:1000.527000px;}
.yf0{bottom:1002.084000px;}
.ycc{bottom:1010.053500px;}
.yaa{bottom:1017.634500px;}
.y94{bottom:1017.729000px;}
.y75{bottom:1018.059000px;}
.y4f{bottom:1020.312000px;}
.y28{bottom:1022.884500px;}
.yef{bottom:1024.440000px;}
.y1{bottom:1028.241000px;}
.ycb{bottom:1032.409500px;}
.y93{bottom:1040.086500px;}
.y74{bottom:1040.415000px;}
.y4e{bottom:1042.669500px;}
.y27{bottom:1045.240500px;}
.yee{bottom:1046.796000px;}
.yca{bottom:1054.765500px;}
.y92{bottom:1062.442500px;}
.y73{bottom:1062.771000px;}
.y4d{bottom:1065.025500px;}
.y26{bottom:1067.596500px;}
.yed{bottom:1069.152000px;}
.y72{bottom:1085.127000px;}
.y25{bottom:1107.483000px;}
.y24{bottom:1166.455500px;}
.h9{height:19.636290px;}
.ha{height:24.675533px;}
.h4{height:29.803525px;}
.he{height:30.021706px;}
.h10{height:37.336090px;}
.h6{height:40.707184px;}
.h5{height:40.826735px;}
.h8{height:41.125613px;}
.h11{height:41.484266px;}
.h7{height:44.705492px;}
.hb{height:45.032765px;}
.hf{height:45.425492px;}
.hc{height:49.781453px;}
.hd{height:56.660573px;}
.h3{height:61.967576px;}
.h2{height:76.952838px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:125.007000px;}
.x2{left:129.619500px;}
.xd{left:133.189500px;}
.x3{left:136.912500px;}
.x6{left:143.331000px;}
.x7{left:155.493000px;}
.xa{left:160.989000px;}
.x4{left:164.409000px;}
.x5{left:177.822000px;}
.xc{left:183.405000px;}
.xb{left:217.968000px;}
.x9{left:231.603000px;}
.x8{left:442.365000px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:23.146667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.655733pt;}
.ls3{letter-spacing:2.658978pt;}
.lsb{letter-spacing:2.659467pt;}
.ls1{letter-spacing:3.627720pt;}
.ls4{letter-spacing:7.973461pt;}
.lsa{letter-spacing:9.890917pt;}
.lsd{letter-spacing:11.955200pt;}
.ls9{letter-spacing:12.565067pt;}
.lsc{letter-spacing:12.741829pt;}
.ls6{letter-spacing:16.174559pt;}
.ls7{letter-spacing:20.247290pt;}
.ls0{letter-spacing:20.382378pt;}
.ls2{letter-spacing:29.093813pt;}
.wsa1{word-spacing:-31.880533pt;}
.ws3f{word-spacing:-29.090933pt;}
.ws17{word-spacing:-23.910400pt;}
.ws81{word-spacing:-21.253600pt;}
.wsad{word-spacing:-20.014562pt;}
.wsa2{word-spacing:-19.956380pt;}
.ws61{word-spacing:-19.840017pt;}
.ws3c{word-spacing:-19.549107pt;}
.ws7a{word-spacing:-19.393867pt;}
.ws29{word-spacing:-19.316380pt;}
.ws25{word-spacing:-19.200016pt;}
.ws24{word-spacing:-19.184644pt;}
.ws7e{word-spacing:-18.618197pt;}
.ws62{word-spacing:-18.385470pt;}
.ws69{word-spacing:-18.210924pt;}
.ws54{word-spacing:-18.094561pt;}
.wsb{word-spacing:-18.012381pt;}
.ws99{word-spacing:-17.803651pt;}
.ws11{word-spacing:-17.587310pt;}
.ws5b{word-spacing:-17.454560pt;}
.ws76{word-spacing:-17.338196pt;}
.ws57{word-spacing:-17.221833pt;}
.wsac{word-spacing:-17.105469pt;}
.ws94{word-spacing:-16.989105pt;}
.wsa7{word-spacing:-16.930923pt;}
.wsa{word-spacing:-16.896570pt;}
.ws6c{word-spacing:-16.872741pt;}
.ws43{word-spacing:-16.698196pt;}
.ws36{word-spacing:-16.640014pt;}
.ws35{word-spacing:-16.581832pt;}
.ws23{word-spacing:-16.407286pt;}
.ws80{word-spacing:-16.349105pt;}
.wsa5{word-spacing:-16.116377pt;}
.ws31{word-spacing:-16.058195pt;}
.ws63{word-spacing:-16.000013pt;}
.ws2a{word-spacing:-15.940267pt;}
.ws34{word-spacing:-15.883650pt;}
.ws2c{word-spacing:-15.825468pt;}
.ws22{word-spacing:-15.650922pt;}
.ws85{word-spacing:-15.418195pt;}
.ws28{word-spacing:-15.360013pt;}
.ws65{word-spacing:-15.243649pt;}
.ws77{word-spacing:-15.185467pt;}
.ws66{word-spacing:-15.127285pt;}
.ws7{word-spacing:-14.877483pt;}
.ws71{word-spacing:-14.836376pt;}
.ws98{word-spacing:-14.778194pt;}
.ws84{word-spacing:-14.720012pt;}
.wsa6{word-spacing:-14.603649pt;}
.ws1a{word-spacing:-14.545467pt;}
.ws41{word-spacing:-14.429103pt;}
.ws9{word-spacing:-14.399278pt;}
.ws42{word-spacing:-14.370921pt;}
.ws38{word-spacing:-14.254557pt;}
.ws89{word-spacing:-14.196375pt;}
.ws33{word-spacing:-14.138194pt;}
.ws10{word-spacing:-14.133609pt;}
.ws56{word-spacing:-14.021830pt;}
.wsa0{word-spacing:-13.963648pt;}
.ws4f{word-spacing:-13.905466pt;}
.ws5d{word-spacing:-13.556375pt;}
.ws87{word-spacing:-13.498193pt;}
.ws93{word-spacing:-13.381829pt;}
.ws88{word-spacing:-13.323647pt;}
.ws14{word-spacing:-13.283467pt;}
.ws32{word-spacing:-13.265466pt;}
.ws49{word-spacing:-13.149102pt;}
.ws5c{word-spacing:-13.032738pt;}
.ws8{word-spacing:-13.017797pt;}
.ws1c{word-spacing:-12.916374pt;}
.wsf{word-spacing:-12.858396pt;}
.ws26{word-spacing:-12.858193pt;}
.wsc{word-spacing:-12.805262pt;}
.ws68{word-spacing:-12.800011pt;}
.wsd{word-spacing:-12.752128pt;}
.ws9f{word-spacing:-12.741829pt;}
.ws51{word-spacing:-12.683647pt;}
.ws7b{word-spacing:-12.625465pt;}
.ws30{word-spacing:-12.392738pt;}
.ws8e{word-spacing:-12.334556pt;}
.ws6{word-spacing:-12.327057pt;}
.ws52{word-spacing:-12.276374pt;}
.ws55{word-spacing:-12.160010pt;}
.ws8f{word-spacing:-12.043646pt;}
.ws45{word-spacing:-11.985465pt;}
.ws5e{word-spacing:-11.957453pt;}
.ws3b{word-spacing:-11.955200pt;}
.wse{word-spacing:-11.955120pt;}
.ws60{word-spacing:-11.952751pt;}
.ws13{word-spacing:-11.901986pt;}
.ws2e{word-spacing:-11.869101pt;}
.ws4e{word-spacing:-11.752737pt;}
.ws4c{word-spacing:-11.694555pt;}
.ws20{word-spacing:-11.520010pt;}
.ws21{word-spacing:-11.461828pt;}
.ws78{word-spacing:-11.345464pt;}
.ws95{word-spacing:-11.287282pt;}
.ws86{word-spacing:-11.229100pt;}
.ws44{word-spacing:-11.170918pt;}
.ws73{word-spacing:-11.112737pt;}
.ws9c{word-spacing:-11.054555pt;}
.ws7c{word-spacing:-10.996373pt;}
.wsae{word-spacing:-10.821827pt;}
.ws3d{word-spacing:-10.763645pt;}
.ws1f{word-spacing:-10.705463pt;}
.ws4a{word-spacing:-10.647282pt;}
.ws8c{word-spacing:-10.530918pt;}
.ws59{word-spacing:-10.414554pt;}
.ws9b{word-spacing:-10.356372pt;}
.ws9d{word-spacing:-10.298190pt;}
.ws7d{word-spacing:-10.240009pt;}
.ws9e{word-spacing:-10.181827pt;}
.ws12{word-spacing:-10.148569pt;}
.ws8b{word-spacing:-10.123645pt;}
.ws6a{word-spacing:-10.065463pt;}
.wsa3{word-spacing:-10.007281pt;}
.ws64{word-spacing:-9.890917pt;}
.ws70{word-spacing:-9.832735pt;}
.ws74{word-spacing:-9.716372pt;}
.ws8a{word-spacing:-9.541826pt;}
.ws90{word-spacing:-9.483644pt;}
.ws4d{word-spacing:-9.309099pt;}
.ws92{word-spacing:-9.250917pt;}
.ws53{word-spacing:-9.192735pt;}
.ws16{word-spacing:-9.139025pt;}
.ws91{word-spacing:-9.134553pt;}
.wsa4{word-spacing:-8.960007pt;}
.ws79{word-spacing:-8.901826pt;}
.ws1e{word-spacing:-8.843644pt;}
.ws75{word-spacing:-8.785462pt;}
.ws37{word-spacing:-8.669098pt;}
.ws6b{word-spacing:-8.552734pt;}
.ws47{word-spacing:-8.494553pt;}
.ws46{word-spacing:-8.436371pt;}
.ws5a{word-spacing:-8.261825pt;}
.ws4b{word-spacing:-8.203643pt;}
.ws9a{word-spacing:-8.145461pt;}
.ws48{word-spacing:-8.087279pt;}
.ws2f{word-spacing:-8.029098pt;}
.ws1d{word-spacing:-7.970916pt;}
.ws18{word-spacing:-7.970133pt;}
.ws58{word-spacing:-7.912734pt;}
.ws2d{word-spacing:-7.680006pt;}
.ws83{word-spacing:-7.621825pt;}
.ws2b{word-spacing:-7.389097pt;}
.ws40{word-spacing:-7.330915pt;}
.ws82{word-spacing:-7.272733pt;}
.ws7f{word-spacing:-7.098188pt;}
.ws3e{word-spacing:-6.749097pt;}
.ws39{word-spacing:-6.651221pt;}
.ws8d{word-spacing:-6.647535pt;}
.ws96{word-spacing:-6.632733pt;}
.ws6d{word-spacing:-6.574551pt;}
.ws97{word-spacing:-5.760005pt;}
.ws67{word-spacing:-5.294550pt;}
.ws50{word-spacing:-4.130913pt;}
.ws6f{word-spacing:-4.072731pt;}
.ws72{word-spacing:-4.014549pt;}
.wsa8{word-spacing:-3.607276pt;}
.ws15{word-spacing:-3.134898pt;}
.wsa9{word-spacing:-3.025457pt;}
.ws27{word-spacing:-2.337896pt;}
.ws4{word-spacing:-0.053134pt;}
.ws3a{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.046758pt;}
.ws19{word-spacing:0.000000pt;}
.ws6e{word-spacing:1.935200pt;}
.wsab{word-spacing:12.974556pt;}
.ws3{word-spacing:13.230333pt;}
.ws1{word-spacing:17.661815pt;}
.ws1b{word-spacing:20.531063pt;}
.ws5{word-spacing:20.942882pt;}
.wsaa{word-spacing:23.330929pt;}
.ws0{word-spacing:25.432884pt;}
.ws5f{word-spacing:897.180612pt;}
._1b{margin-left:-7.311782pt;}
._18{margin-left:-5.746466pt;}
._6{margin-left:-4.390721pt;}
._1{margin-left:-3.213541pt;}
._8{margin-left:-2.293253pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.377232pt;}
._5{width:2.656693pt;}
._4{width:4.144442pt;}
._7{width:9.846778pt;}
._12{width:11.752737pt;}
._21{width:13.193179pt;}
._16{width:14.151732pt;}
._17{width:15.823440pt;}
._13{width:17.169457pt;}
._3{width:18.462699pt;}
._11{width:19.747813pt;}
._9{width:21.368311pt;}
._24{width:22.278822pt;}
._e{width:23.242403pt;}
._15{width:24.513699pt;}
._a{width:26.031346pt;}
._1e{width:27.700163pt;}
._20{width:28.882366pt;}
._10{width:30.559169pt;}
._25{width:31.539599pt;}
._1a{width:32.595384pt;}
._27{width:34.907853pt;}
._1f{width:35.840030pt;}
._1c{width:36.837066pt;}
._f{width:38.210031pt;}
._d{width:40.111467pt;}
._1d{width:41.367307pt;}
._26{width:43.456260pt;}
._19{width:44.396331pt;}
._29{width:49.168705pt;}
._14{width:52.411597pt;}
._23{width:55.912774pt;}
._28{width:62.293646pt;}
._22{width:736.107295pt;}
._b{width:763.201562pt;}
._c{width:1274.602237pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:38.787733pt;}
.fs8{font-size:42.507200pt;}
.fs2{font-size:46.757867pt;}
.fs6{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:104.901333pt;}
.y91{bottom:104.902667pt;}
.y22{bottom:115.130667pt;}
.y90{bottom:149.794667pt;}
.y10e{bottom:149.796000pt;}
.y21{bottom:154.134667pt;}
.y8f{bottom:169.668000pt;}
.y4c{bottom:169.852000pt;}
.ya9{bottom:178.292000pt;}
.y4b{bottom:185.568000pt;}
.y20{bottom:188.794667pt;}
.y8e{bottom:189.540000pt;}
.yec{bottom:193.189333pt;}
.y71{bottom:196.628000pt;}
.ya8{bottom:198.165333pt;}
.y10d{bottom:200.628000pt;}
.y4a{bottom:201.285333pt;}
.y1f{bottom:206.329333pt;}
.y8d{bottom:209.412000pt;}
.yc9{bottom:210.064000pt;}
.yeb{bottom:213.062667pt;}
.y70{bottom:216.500000pt;}
.y49{bottom:217.002667pt;}
.ya7{bottom:218.037333pt;}
.y10c{bottom:220.500000pt;}
.y1e{bottom:223.862667pt;}
.y8c{bottom:229.284000pt;}
.yc8{bottom:229.937333pt;}
.y48{bottom:232.718667pt;}
.yea{bottom:232.934667pt;}
.y6f{bottom:236.373333pt;}
.ya6{bottom:237.909333pt;}
.y10b{bottom:240.373333pt;}
.y47{bottom:248.436000pt;}
.y8b{bottom:249.156000pt;}
.yc7{bottom:249.809333pt;}
.y6e{bottom:256.245333pt;}
.ye9{bottom:256.822667pt;}
.ya5{bottom:257.781333pt;}
.y10a{bottom:260.245333pt;}
.yc6{bottom:269.681333pt;}
.y46{bottom:272.134667pt;}
.y6d{bottom:276.117333pt;}
.ye8{bottom:276.696000pt;}
.ya4{bottom:277.653333pt;}
.y109{bottom:280.117333pt;}
.y8a{bottom:283.113333pt;}
.y1d{bottom:287.998667pt;}
.yc5{bottom:289.553333pt;}
.y45{bottom:292.008000pt;}
.ye7{bottom:296.568000pt;}
.y6c{bottom:296.937333pt;}
.ya3{bottom:297.818667pt;}
.y1c{bottom:307.870667pt;}
.yc4{bottom:309.425333pt;}
.y108{bottom:311.077333pt;}
.y44{bottom:311.880000pt;}
.ye6{bottom:316.440000pt;}
.y6b{bottom:316.809333pt;}
.ya2{bottom:317.690667pt;}
.y89{bottom:324.781333pt;}
.yc3{bottom:329.674667pt;}
.y107{bottom:330.950667pt;}
.y43{bottom:331.752000pt;}
.y1b{bottom:335.713333pt;}
.ye5{bottom:336.312000pt;}
.y6a{bottom:336.681333pt;}
.ya1{bottom:337.562667pt;}
.y88{bottom:344.653333pt;}
.yc2{bottom:349.548000pt;}
.y106{bottom:350.822667pt;}
.y42{bottom:351.624000pt;}
.y1a{bottom:353.246667pt;}
.ye4{bottom:356.184000pt;}
.y69{bottom:356.553333pt;}
.ya0{bottom:357.434667pt;}
.y87{bottom:364.526667pt;}
.yc1{bottom:369.420000pt;}
.y41{bottom:371.496000pt;}
.ye3{bottom:376.057333pt;}
.y19{bottom:378.752000pt;}
.y105{bottom:381.782667pt;}
.y86{bottom:384.398667pt;}
.y9f{bottom:385.886667pt;}
.y68{bottom:386.628000pt;}
.yc0{bottom:389.292000pt;}
.y40{bottom:391.369333pt;}
.ye2{bottom:395.929333pt;}
.y18{bottom:396.286667pt;}
.y104{bottom:401.654667pt;}
.y85{bottom:404.270667pt;}
.ybf{bottom:409.164000pt;}
.y3f{bottom:411.241333pt;}
.ye1{bottom:415.801333pt;}
.y103{bottom:421.528000pt;}
.y17{bottom:421.790667pt;}
.y84{bottom:424.142667pt;}
.y67{bottom:427.169333pt;}
.ybe{bottom:429.413333pt;}
.y3e{bottom:431.113333pt;}
.ye0{bottom:435.673333pt;}
.y16{bottom:439.325333pt;}
.y9e{bottom:440.890667pt;}
.y102{bottom:441.400000pt;}
.y83{bottom:444.014667pt;}
.y66{bottom:447.041333pt;}
.ybd{bottom:449.285333pt;}
.y3d{bottom:450.985333pt;}
.y15{bottom:456.858667pt;}
.y82{bottom:463.888000pt;}
.y65{bottom:466.913333pt;}
.ybc{bottom:469.158667pt;}
.y3c{bottom:470.857333pt;}
.y9d{bottom:471.270667pt;}
.y101{bottom:472.360000pt;}
.ydf{bottom:473.354667pt;}
.y14{bottom:474.393333pt;}
.y81{bottom:483.760000pt;}
.y64{bottom:486.785333pt;}
.y3b{bottom:490.730667pt;}
.y13{bottom:491.928000pt;}
.y100{bottom:492.232000pt;}
.ybb{bottom:497.818667pt;}
.y80{bottom:503.632000pt;}
.y63{bottom:506.657333pt;}
.y12{bottom:509.462667pt;}
.y3a{bottom:510.602667pt;}
.yff{bottom:512.105333pt;}
.y7f{bottom:523.504000pt;}
.y62{bottom:526.530667pt;}
.y11{bottom:526.996000pt;}
.y39{bottom:530.652000pt;}
.yde{bottom:532.090667pt;}
.yba{bottom:534.981333pt;}
.yfe{bottom:543.065333pt;}
.y7e{bottom:543.376000pt;}
.y10{bottom:544.530667pt;}
.y61{bottom:546.402667pt;}
.y38{bottom:550.525333pt;}
.ydd{bottom:551.962667pt;}
.yb9{bottom:554.853333pt;}
.yf{bottom:562.065333pt;}
.yfd{bottom:562.937333pt;}
.y7d{bottom:563.249333pt;}
.y60{bottom:566.274667pt;}
.y37{bottom:570.397333pt;}
.ydc{bottom:571.836000pt;}
.yb8{bottom:574.725333pt;}
.ye{bottom:579.600000pt;}
.yfc{bottom:582.809333pt;}
.y5f{bottom:586.146667pt;}
.y36{bottom:590.269333pt;}
.ydb{bottom:591.708000pt;}
.yb7{bottom:594.597333pt;}
.yd{bottom:597.134667pt;}
.y7c{bottom:599.204000pt;}
.y5e{bottom:606.966667pt;}
.y35{bottom:610.141333pt;}
.yda{bottom:611.580000pt;}
.yfb{bottom:613.770667pt;}
.yb6{bottom:614.470667pt;}
.yc{bottom:614.668000pt;}
.y5d{bottom:626.838667pt;}
.y7b{bottom:629.584000pt;}
.yd9{bottom:631.452000pt;}
.yb{bottom:632.202667pt;}
.yfa{bottom:633.642667pt;}
.yb5{bottom:634.342667pt;}
.y34{bottom:645.596000pt;}
.y5c{bottom:646.710667pt;}
.ya{bottom:649.737333pt;}
.yf9{bottom:653.514667pt;}
.yb4{bottom:654.214667pt;}
.yd8{bottom:655.341333pt;}
.y5b{bottom:666.582667pt;}
.y9{bottom:667.272000pt;}
.yb3{bottom:674.464000pt;}
.yd7{bottom:675.213333pt;}
.yf8{bottom:684.476000pt;}
.y5a{bottom:687.402667pt;}
.y33{bottom:690.280000pt;}
.yb2{bottom:694.336000pt;}
.yd6{bottom:695.085333pt;}
.yf7{bottom:704.348000pt;}
.y8{bottom:705.785333pt;}
.y59{bottom:707.274667pt;}
.y32{bottom:710.152000pt;}
.yb1{bottom:714.208000pt;}
.yd5{bottom:714.957333pt;}
.y58{bottom:727.146667pt;}
.y7{bottom:729.673333pt;}
.y31{bottom:730.201333pt;}
.yb0{bottom:734.081333pt;}
.yd4{bottom:734.830667pt;}
.yf6{bottom:735.308000pt;}
.y9c{bottom:745.378667pt;}
.y57{bottom:747.020000pt;}
.y6{bottom:747.208000pt;}
.y30{bottom:750.074667pt;}
.yd3{bottom:754.702667pt;}
.yf5{bottom:755.180000pt;}
.yaf{bottom:762.741333pt;}
.y9b{bottom:765.250667pt;}
.y56{bottom:766.892000pt;}
.y2f{bottom:769.946667pt;}
.y5{bottom:771.557333pt;}
.yd2{bottom:774.574667pt;}
.yf4{bottom:775.053333pt;}
.y9a{bottom:785.122667pt;}
.y55{bottom:786.764000pt;}
.y2e{bottom:789.818667pt;}
.y4{bottom:791.084000pt;}
.yd1{bottom:794.446667pt;}
.yae{bottom:798.789333pt;}
.y99{bottom:804.994667pt;}
.y7a{bottom:805.580000pt;}
.y54{bottom:806.636000pt;}
.y3{bottom:807.781333pt;}
.yf3{bottom:809.125333pt;}
.y2d{bottom:809.690667pt;}
.yd0{bottom:818.336000pt;}
.y98{bottom:824.866667pt;}
.y79{bottom:825.452000pt;}
.y53{bottom:826.508000pt;}
.y2c{bottom:829.562667pt;}
.ycf{bottom:838.208000pt;}
.y97{bottom:844.738667pt;}
.yad{bottom:844.946667pt;}
.y78{bottom:845.324000pt;}
.y52{bottom:847.328000pt;}
.y2b{bottom:849.613333pt;}
.yf2{bottom:850.996000pt;}
.yce{bottom:858.080000pt;}
.yac{bottom:864.820000pt;}
.y96{bottom:864.904000pt;}
.y77{bottom:865.196000pt;}
.y51{bottom:867.200000pt;}
.y2a{bottom:869.485333pt;}
.yf1{bottom:870.868000pt;}
.ycd{bottom:877.953333pt;}
.y2{bottom:881.845333pt;}
.yab{bottom:884.692000pt;}
.y95{bottom:884.776000pt;}
.y76{bottom:885.069333pt;}
.y50{bottom:887.072000pt;}
.y29{bottom:889.357333pt;}
.yf0{bottom:890.741333pt;}
.ycc{bottom:897.825333pt;}
.yaa{bottom:904.564000pt;}
.y94{bottom:904.648000pt;}
.y75{bottom:904.941333pt;}
.y4f{bottom:906.944000pt;}
.y28{bottom:909.230667pt;}
.yef{bottom:910.613333pt;}
.y1{bottom:913.992000pt;}
.ycb{bottom:917.697333pt;}
.y93{bottom:924.521333pt;}
.y74{bottom:924.813333pt;}
.y4e{bottom:926.817333pt;}
.y27{bottom:929.102667pt;}
.yee{bottom:930.485333pt;}
.yca{bottom:937.569333pt;}
.y92{bottom:944.393333pt;}
.y73{bottom:944.685333pt;}
.y4d{bottom:946.689333pt;}
.y26{bottom:948.974667pt;}
.yed{bottom:950.357333pt;}
.y72{bottom:964.557333pt;}
.y25{bottom:984.429333pt;}
.y24{bottom:1036.849333pt;}
.h9{height:17.454480pt;}
.ha{height:21.933807pt;}
.h4{height:26.492022pt;}
.he{height:26.685961pt;}
.h10{height:33.187635pt;}
.h6{height:36.184163pt;}
.h5{height:36.290431pt;}
.h8{height:36.556100pt;}
.h11{height:36.874903pt;}
.h7{height:39.738215pt;}
.hb{height:40.029124pt;}
.hf{height:40.378215pt;}
.hc{height:44.250180pt;}
.hd{height:50.364954pt;}
.h3{height:55.082290pt;}
.h2{height:68.402523pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:111.117333pt;}
.x2{left:115.217333pt;}
.xd{left:118.390667pt;}
.x3{left:121.700000pt;}
.x6{left:127.405333pt;}
.x7{left:138.216000pt;}
.xa{left:143.101333pt;}
.x4{left:146.141333pt;}
.x5{left:158.064000pt;}
.xc{left:163.026667pt;}
.xb{left:193.749333pt;}
.x9{left:205.869333pt;}
.x8{left:393.213333pt;}
}




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