
    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_944546be78ef847ee0bbf909.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_b42e33c883cf13f33d78f8a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_45c6fd47efc4681ade03eb1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_131ab84f306151417309c8cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_6ee2be4ed85a9397a7788e27.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_9b6a0911eb365bdb85661add.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_42ba8ffc1e158e80bb5d2e5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.389000;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_b361b6855f784fae1c9c6ba9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_5eee8a03e6062aff93a8f6d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_1882aada748102d58e407bae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.421000;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_af3a0580760897b913424894.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_563563ee49cfba71d65e3232.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:62.184000px;}
.v1{vertical-align:114.546000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.047821px;}
.ls5{letter-spacing:1.386797px;}
.ls6{letter-spacing:1.832729px;}
.lsb{letter-spacing:7.396370px;}
.ls7{letter-spacing:14.530921px;}
.ls8{letter-spacing:14.692757px;}
.lsa{letter-spacing:19.440016px;}
.ls2{letter-spacing:20.945472px;}
.ls3{letter-spacing:25.854567px;}
.ls4{letter-spacing:31.221844px;}
.ls0{letter-spacing:32.727300px;}
.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;}
}
.ws22{word-spacing:-18.183288px;}
.ws81{word-spacing:-5.379825px;}
.wsf{word-spacing:-3.215927px;}
.ws9a{word-spacing:-2.801457px;}
.ws4e{word-spacing:-2.775275px;}
.ws15{word-spacing:-2.474184px;}
.ws4f{word-spacing:-2.408729px;}
.ws6a{word-spacing:-1.950547px;}
.ws8e{word-spacing:-1.688729px;}
.ws89{word-spacing:-1.557819px;}
.ws16{word-spacing:-1.361456px;}
.wsa7{word-spacing:-1.034183px;}
.ws69{word-spacing:-0.968728px;}
.ws98{word-spacing:-0.772364px;}
.ws7e{word-spacing:-0.222546px;}
.ws85{word-spacing:-0.117818px;}
.ws1{word-spacing:-0.103292px;}
.ws3{word-spacing:-0.071731px;}
.ws3c{word-spacing:-0.065455px;}
.wsc{word-spacing:-0.047820px;}
.ws59{word-spacing:-0.011573px;}
.ws1e{word-spacing:0.000000px;}
.ws8d{word-spacing:0.013091px;}
.ws4c{word-spacing:0.209455px;}
.ws4b{word-spacing:0.301091px;}
.ws30{word-spacing:0.405819px;}
.ws10{word-spacing:0.490160px;}
.ws50{word-spacing:0.602182px;}
.wsa1{word-spacing:0.733092px;}
.ws7a{word-spacing:0.864001px;}
.ws55{word-spacing:0.890183px;}
.ws7d{word-spacing:0.955637px;}
.ws96{word-spacing:0.994910px;}
.ws62{word-spacing:1.256728px;}
.ws68{word-spacing:1.387638px;}
.ws8c{word-spacing:1.518547px;}
.ws90{word-spacing:1.649456px;}
.ws84{word-spacing:1.714911px;}
.ws56{word-spacing:1.976729px;}
.ws9d{word-spacing:2.107638px;}
.ws2c{word-spacing:2.434911px;}
.ws7f{word-spacing:2.500366px;}
.ws75{word-spacing:2.762184px;}
.ws6{word-spacing:3.000735px;}
.wsa{word-spacing:3.060511px;}
.ws7{word-spacing:3.120286px;}
.ws6f{word-spacing:3.154912px;}
.ws97{word-spacing:3.220366px;}
.ws8{word-spacing:3.299613px;}
.ws40{word-spacing:3.351276px;}
.wsa4{word-spacing:3.482185px;}
.wsa6{word-spacing:3.547639px;}
.ws13{word-spacing:3.613094px;}
.ws6e{word-spacing:3.639276px;}
.ws38{word-spacing:3.678549px;}
.ws60{word-spacing:3.744003px;}
.ws64{word-spacing:3.901094px;}
.ws58{word-spacing:3.940367px;}
.ws37{word-spacing:4.162913px;}
.ws3d{word-spacing:4.228367px;}
.ws46{word-spacing:4.267640px;}
.ws5a{word-spacing:4.398549px;}
.ws1c{word-spacing:4.464004px;}
.ws39{word-spacing:4.483200px;}
.ws51{word-spacing:4.882913px;}
.ws4a{word-spacing:4.987641px;}
.ws73{word-spacing:5.053095px;}
.ws5b{word-spacing:5.184004px;}
.ws4d{word-spacing:5.314914px;}
.ws26{word-spacing:5.379825px;}
.ws54{word-spacing:5.445823px;}
.ws48{word-spacing:5.511277px;}
.ws65{word-spacing:5.642187px;}
.ws94{word-spacing:5.904005px;}
.ws82{word-spacing:6.034914px;}
.ws86{word-spacing:6.100369px;}
.ws67{word-spacing:6.322914px;}
.ws33{word-spacing:6.493096px;}
.ws5e{word-spacing:6.624006px;}
.ws4{word-spacing:6.647047px;}
.ws2b{word-spacing:6.754915px;}
.wsd{word-spacing:7.065476px;}
.ws27{word-spacing:7.278552px;}
.ws49{word-spacing:7.474915px;}
.ws7b{word-spacing:7.540370px;}
.ws9{word-spacing:7.543681px;}
.ws5f{word-spacing:7.566552px;}
.ws79{word-spacing:7.802188px;}
.ws5{word-spacing:7.842559px;}
.ws1b{word-spacing:7.867643px;}
.ws93{word-spacing:7.998552px;}
.wsa3{word-spacing:8.064007px;}
.ws92{word-spacing:8.129461px;}
.ws6d{word-spacing:8.155643px;}
.ws7c{word-spacing:8.194916px;}
.ws24{word-spacing:8.221098px;}
.ws43{word-spacing:8.260371px;}
.ws52{word-spacing:8.325825px;}
.ws9c{word-spacing:8.587644px;}
.ws18{word-spacing:8.653098px;}
.ws19{word-spacing:8.784007px;}
.ws21{word-spacing:8.914917px;}
.ws91{word-spacing:9.111280px;}
.ws8f{word-spacing:9.242190px;}
.ws2a{word-spacing:9.307644px;}
.ws12{word-spacing:9.438553px;}
.ws3a{word-spacing:9.504008px;}
.ws32{word-spacing:9.700372px;}
.ws74{word-spacing:9.896736px;}
.ws29{word-spacing:9.962190px;}
.ws6c{word-spacing:10.158554px;}
.ws31{word-spacing:10.250190px;}
.ws61{word-spacing:10.354918px;}
.ws80{word-spacing:10.420372px;}
.ws1a{word-spacing:10.682191px;}
.ws23{word-spacing:10.944009px;}
.ws25{word-spacing:11.009464px;}
.ws20{word-spacing:11.074918px;}
.ws72{word-spacing:11.101100px;}
.ws83{word-spacing:11.140373px;}
.ws28{word-spacing:11.428373px;}
.ws2f{word-spacing:11.533101px;}
.ws1d{word-spacing:12.056737px;}
.ws95{word-spacing:12.122192px;}
.ws71{word-spacing:12.645829px;}
.ws1f{word-spacing:12.737465px;}
.ws78{word-spacing:12.842193px;}
.ws66{word-spacing:13.169466px;}
.ws63{word-spacing:13.824012px;}
.ws70{word-spacing:14.504739px;}
.ws36{word-spacing:14.544012px;}
.ws88{word-spacing:15.198558px;}
.ws44{word-spacing:15.329467px;}
.ws2e{word-spacing:15.525831px;}
.ws11{word-spacing:15.879286px;}
.ws2d{word-spacing:17.842924px;}
.ws9f{word-spacing:18.261833px;}
.ws41{word-spacing:19.060380px;}
.wsa2{word-spacing:20.683654px;}
.ws6b{word-spacing:21.246563px;}
.ws9e{word-spacing:21.992746px;}
.wsa5{word-spacing:23.236383px;}
.ws2{word-spacing:23.312640px;}
.ws99{word-spacing:23.367292px;}
.ws8b{word-spacing:23.707656px;}
.ws5c{word-spacing:24.087293px;}
.wsb{word-spacing:24.866650px;}
.ws76{word-spacing:26.247295px;}
.ws34{word-spacing:26.640022px;}
.ws57{word-spacing:26.836386px;}
.ws87{word-spacing:27.438568px;}
.ws5d{word-spacing:27.490932px;}
.ws9b{word-spacing:27.949114px;}
.ws42{word-spacing:28.747660px;}
.wsa0{word-spacing:28.930933px;}
.wse{word-spacing:29.828024px;}
.ws0{word-spacing:31.091012px;}
.ws8a{word-spacing:31.693117px;}
.ws17{word-spacing:31.810936px;}
.ws3b{word-spacing:32.465482px;}
.ws53{word-spacing:33.185482px;}
.ws3f{word-spacing:45.634947px;}
.ws35{word-spacing:58.281600px;}
.ws14{word-spacing:69.937725px;}
.ws3e{word-spacing:82.551342px;}
.ws45{word-spacing:87.656800px;}
.ws47{word-spacing:96.624081px;}
.ws77{word-spacing:698.047127px;}
._36{margin-left:-34.942783px;}
._35{margin-left:-32.727300px;}
._34{margin-left:-30.004470px;}
._0{margin-left:-8.160100px;}
._5{margin-left:-5.810227px;}
._7{margin-left:-4.671096px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._4{width:1.259614px;}
._2{width:2.685602px;}
._9{width:4.199551px;}
._17{width:5.523970px;}
._a{width:14.633066px;}
._b{width:18.151254px;}
._2e{width:19.242047px;}
._24{width:20.288962px;}
._14{width:21.728578px;}
._22{width:22.845619px;}
._23{width:24.791317px;}
._6{width:26.094749px;}
._8{width:27.106634px;}
._c{width:28.278351px;}
._11{width:29.450257px;}
._e{width:31.485626px;}
._26{width:33.110054px;}
._21{width:34.240996px;}
._1e{width:35.407011px;}
._2c{width:37.615736px;}
._d{width:39.615624px;}
._18{width:40.778216px;}
._f{width:41.830876px;}
._32{width:43.374147px;}
._10{width:44.467493px;}
._37{width:46.655755px;}
._15{width:48.001822px;}
._25{width:50.275024px;}
._2d{width:52.020431px;}
._33{width:62.362258px;}
._13{width:65.795500px;}
._16{width:80.697600px;}
._12{width:96.836850px;}
._1d{width:157.287404px;}
._1b{width:174.551442px;}
._1f{width:196.509107px;}
._1c{width:224.319961px;}
._30{width:228.061766px;}
._20{width:266.336731px;}
._19{width:270.785680px;}
._31{width:288.462735px;}
._27{width:340.564597px;}
._2b{width:355.563014px;}
._2a{width:438.746497px;}
._29{width:447.842722px;}
._28{width:450.397415px;}
._2f{width:703.375132px;}
._1a{width:872.117090px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y25{bottom:63.168000px;}
.yf2{bottom:108.000000px;}
.y46{bottom:110.253000px;}
.y114{bottom:115.765500px;}
.yd0{bottom:127.638000px;}
.yb0{bottom:129.877500px;}
.y45{bottom:130.576500px;}
.y6d{bottom:137.265000px;}
.y24{bottom:138.189000px;}
.yf1{bottom:141.034500px;}
.y113{bottom:149.539500px;}
.y8a{bottom:150.826500px;}
.y44{bottom:150.900000px;}
.ycf{bottom:158.530500px;}
.yf0{bottom:161.358000px;}
.yaf{bottom:163.650000px;}
.y112{bottom:169.863000px;}
.y89{bottom:171.150000px;}
.y23{bottom:171.963000px;}
.y43{bottom:181.792500px;}
.y6a{bottom:182.376000px;}
.y6c{bottom:182.559000px;}
.yae{bottom:183.975000px;}
.y111{bottom:190.186500px;}
.y22{bottom:192.286500px;}
.yef{bottom:194.392500px;}
.y69{bottom:202.701000px;}
.y6b{bottom:202.882500px;}
.y88{bottom:204.924000px;}
.y21{bottom:212.610000px;}
.yee{bottom:214.716000px;}
.yad{bottom:217.747500px;}
.yce{bottom:219.373500px;}
.y110{bottom:223.960500px;}
.y42{bottom:225.612000px;}
.y20{bottom:232.935000px;}
.yac{bottom:238.071000px;}
.y87{bottom:238.696500px;}
.y10f{bottom:244.284000px;}
.yed{bottom:247.750500px;}
.y1f{bottom:253.258500px;}
.ycd{bottom:257.400000px;}
.y41{bottom:259.384500px;}
.y10e{bottom:264.607500px;}
.y68{bottom:267.019500px;}
.yab{bottom:268.963500px;}
.y86{bottom:272.470500px;}
.y1e{bottom:273.582000px;}
.ycc{bottom:277.723500px;}
.yec{bottom:279.675000px;}
.y10d{bottom:284.931000px;}
.y67{bottom:287.343000px;}
.y40{bottom:293.158500px;}
.y1d{bottom:293.905500px;}
.ycb{bottom:298.047000px;}
.yeb{bottom:299.998500px;}
.y85{bottom:306.243000px;}
.yaa{bottom:312.783000px;}
.y1c{bottom:314.229000px;}
.yca{bottom:318.372000px;}
.y10c{bottom:318.705000px;}
.y66{bottom:325.573500px;}
.y3f{bottom:326.932500px;}
.yea{bottom:330.891000px;}
.ya9{bottom:333.106500px;}
.y1b{bottom:334.552500px;}
.yc9{bottom:338.695500px;}
.y10b{bottom:339.028500px;}
.y84{bottom:340.017000px;}
.ya8{bottom:353.430000px;}
.y1a{bottom:354.877500px;}
.y65{bottom:356.466000px;}
.yc8{bottom:359.019000px;}
.y3e{bottom:360.705000px;}
.y83{bottom:370.909500px;}
.y10a{bottom:372.801000px;}
.y19{bottom:375.201000px;}
.yc7{bottom:379.342500px;}
.ye9{bottom:391.554000px;}
.y109{bottom:393.126000px;}
.y64{bottom:393.592500px;}
.y3d{bottom:394.479000px;}
.ya7{bottom:396.652500px;}
.yc6{bottom:399.666000px;}
.y18{bottom:411.729000px;}
.y82{bottom:414.727500px;}
.ya6{bottom:416.976000px;}
.yc5{bottom:419.989500px;}
.y3c{bottom:425.370000px;}
.y108{bottom:426.898500px;}
.ye8{bottom:429.580500px;}
.ya5{bottom:437.299500px;}
.yc4{bottom:440.314500px;}
.y107{bottom:447.222000px;}
.y81{bottom:448.501500px;}
.ye7{bottom:449.905500px;}
.ya4{bottom:457.623000px;}
.yc3{bottom:460.638000px;}
.y63{bottom:462.174000px;}
.y3b{bottom:462.496500px;}
.y17{bottom:463.287000px;}
.y106{bottom:467.547000px;}
.ye6{bottom:470.229000px;}
.yc2{bottom:480.961500px;}
.y80{bottom:482.275500px;}
.y16{bottom:483.610500px;}
.ye5{bottom:490.552500px;}
.ya3{bottom:500.844000px;}
.y105{bottom:501.319500px;}
.y62{bottom:506.376000px;}
.y60{bottom:506.413500px;}
.yc1{bottom:509.500500px;}
.ye4{bottom:510.876000px;}
.y3a{bottom:514.054500px;}
.y7f{bottom:516.048000px;}
.y15{bottom:517.384500px;}
.ya2{bottom:521.169000px;}
.y104{bottom:521.643000px;}
.y61{bottom:526.699500px;}
.y5f{bottom:526.737000px;}
.ye3{bottom:531.199500px;}
.y39{bottom:534.378000px;}
.y14{bottom:535.317000px;}
.y7e{bottom:536.371500px;}
.ya1{bottom:541.492500px;}
.y103{bottom:541.968000px;}
.ye2{bottom:551.524500px;}
.yc0{bottom:551.640000px;}
.y13{bottom:553.249500px;}
.y38{bottom:554.703000px;}
.y7d{bottom:556.696500px;}
.y12{bottom:571.182000px;}
.ye1{bottom:571.848000px;}
.ybf{bottom:571.963500px;}
.y37{bottom:575.026500px;}
.y102{bottom:575.740500px;}
.y7c{bottom:577.020000px;}
.ya0{bottom:584.713500px;}
.y5e{bottom:587.655000px;}
.y5c{bottom:587.745000px;}
.y11{bottom:589.116000px;}
.y5a{bottom:589.245000px;}
.ye0{bottom:592.171500px;}
.ybe{bottom:592.287000px;}
.y101{bottom:596.064000px;}
.y9f{bottom:605.037000px;}
.y10{bottom:607.048500px;}
.y7b{bottom:607.911000px;}
.y5d{bottom:607.978500px;}
.y5b{bottom:608.070000px;}
.y59{bottom:609.570000px;}
.ydf{bottom:612.495000px;}
.y36{bottom:618.247500px;}
.ybd{bottom:623.179500px;}
.yf{bottom:624.981000px;}
.y9e{bottom:625.360500px;}
.y100{bottom:632.593500px;}
.y35{bottom:638.571000px;}
.yde{bottom:641.034000px;}
.ye{bottom:642.913500px;}
.y7a{bottom:645.037500px;}
.y9d{bottom:645.685500px;}
.y58{bottom:648.709500px;}
.y34{bottom:658.894500px;}
.ybc{bottom:660.306000px;}
.yd{bottom:660.846000px;}
.y9c{bottom:666.009000px;}
.y57{bottom:669.033000px;}
.yc{bottom:678.780000px;}
.y33{bottom:679.219500px;}
.ydd{bottom:681.525000px;}
.yff{bottom:684.151500px;}
.y56{bottom:689.356500px;}
.y79{bottom:696.595500px;}
.yb{bottom:696.712500px;}
.yfe{bottom:704.475000px;}
.y9b{bottom:709.230000px;}
.ybb{bottom:711.864000px;}
.ydc{bottom:712.417500px;}
.ya{bottom:714.645000px;}
.y78{bottom:716.919000px;}
.y55{bottom:720.249000px;}
.y32{bottom:722.440500px;}
.yfd{bottom:724.798500px;}
.y9a{bottom:729.553500px;}
.yba{bottom:732.187500px;}
.y9{bottom:732.577500px;}
.y77{bottom:737.244000px;}
.y31{bottom:742.764000px;}
.yfc{bottom:745.122000px;}
.y99{bottom:749.878500px;}
.ydb{bottom:755.887500px;}
.y8{bottom:759.850500px;}
.y30{bottom:763.087500px;}
.yfb{bottom:765.445500px;}
.yb9{bottom:765.961500px;}
.y54{bottom:769.756500px;}
.yda{bottom:776.211000px;}
.y76{bottom:780.465000px;}
.y98{bottom:780.769500px;}
.y2f{bottom:783.412500px;}
.yd9{bottom:796.536000px;}
.yb8{bottom:799.734000px;}
.y75{bottom:800.788500px;}
.yfa{bottom:801.975000px;}
.y53{bottom:807.783000px;}
.yd8{bottom:816.859500px;}
.y97{bottom:817.896000px;}
.y7{bottom:820.261500px;}
.y74{bottom:821.112000px;}
.y2e{bottom:826.633500px;}
.y52{bottom:828.108000px;}
.yb7{bottom:833.508000px;}
.yd7{bottom:837.183000px;}
.y73{bottom:841.437000px;}
.y2d{bottom:846.957000px;}
.y51{bottom:848.431500px;}
.yf9{bottom:853.533000px;}
.yb6{bottom:853.831500px;}
.y6{bottom:856.849500px;}
.yd6{bottom:857.506500px;}
.y50{bottom:868.755000px;}
.y96{bottom:869.454000px;}
.yf8{bottom:873.856500px;}
.y5{bottom:877.770000px;}
.y2c{bottom:883.485000px;}
.y72{bottom:884.658000px;}
.yb5{bottom:887.604000px;}
.y4f{bottom:889.078500px;}
.y95{bottom:889.777500px;}
.yd5{bottom:894.034500px;}
.yf7{bottom:894.180000px;}
.y71{bottom:904.981500px;}
.yb4{bottom:907.929000px;}
.y4e{bottom:909.402000px;}
.y94{bottom:910.101000px;}
.yf6{bottom:914.503500px;}
.y4{bottom:923.238000px;}
.y70{bottom:925.305000px;}
.y4d{bottom:929.727000px;}
.yf5{bottom:934.827000px;}
.y2b{bottom:935.043000px;}
.yb3{bottom:941.701500px;}
.y93{bottom:942.697500px;}
.y3{bottom:944.160000px;}
.yd4{bottom:945.244500px;}
.y4c{bottom:950.050500px;}
.y91{bottom:951.958500px;}
.y2a{bottom:955.368000px;}
.y90{bottom:961.776000px;}
.y8d{bottom:962.595000px;}
.y2{bottom:965.080500px;}
.yd3{bottom:965.568000px;}
.y6f{bottom:968.526000px;}
.y4b{bottom:970.374000px;}
.yf4{bottom:971.356500px;}
.y8f{bottom:971.595000px;}
.y92{bottom:978.141000px;}
.yb2{bottom:978.229500px;}
.y8e{bottom:981.412500px;}
.y29{bottom:989.140500px;}
.y4a{bottom:990.697500px;}
.y115{bottom:996.015000px;}
.yd2{bottom:997.494000px;}
.y1{bottom:997.957500px;}
.y6e{bottom:999.418500px;}
.y28{bottom:1009.464000px;}
.y49{bottom:1011.021000px;}
.y8c{bottom:1012.345500px;}
.yf3{bottom:1022.914500px;}
.yb1{bottom:1029.789000px;}
.yd1{bottom:1030.527000px;}
.y48{bottom:1031.344500px;}
.y8b{bottom:1032.669000px;}
.y27{bottom:1043.238000px;}
.y47{bottom:1059.885000px;}
.y26{bottom:1063.561500px;}
.h9{height:1.374547px;}
.ha{height:33.665702px;}
.h3{height:41.842920px;}
.h4{height:44.831700px;}
.h7{height:45.818220px;}
.hc{height:46.145493px;}
.h5{height:49.090950px;}
.h2{height:53.798400px;}
.hb{height:63.558547px;}
.h6{height:64.557900px;}
.h1{height:73.027727px;}
.h8{height:115.920547px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:106.728000px;}
.xb{left:108.000000px;}
.xc{left:111.319500px;}
.x39{left:116.182500px;}
.xf{left:118.147500px;}
.x3{left:127.725000px;}
.x14{left:128.791500px;}
.xa{left:133.404000px;}
.x2c{left:139.072500px;}
.x13{left:142.381500px;}
.x9{left:148.909500px;}
.x1{left:162.273000px;}
.x8{left:171.325500px;}
.x37{left:173.272500px;}
.x2d{left:188.704500px;}
.x2b{left:193.936500px;}
.x23{left:210.891000px;}
.x10{left:234.360000px;}
.x12{left:251.955000px;}
.x1e{left:275.193000px;}
.x22{left:281.580000px;}
.x16{left:286.125000px;}
.x1d{left:305.704500px;}
.x15{left:315.988500px;}
.x36{left:348.627000px;}
.x2e{left:366.565500px;}
.x27{left:370.465500px;}
.x28{left:373.681500px;}
.x24{left:377.875500px;}
.x2{left:384.049500px;}
.x38{left:390.745500px;}
.x6{left:400.593000px;}
.x2f{left:402.021000px;}
.x30{left:407.475000px;}
.x5{left:408.642000px;}
.x4{left:421.030500px;}
.x7{left:426.123000px;}
.x31{left:433.839000px;}
.x17{left:452.322000px;}
.xd{left:454.909500px;}
.x1f{left:472.128000px;}
.x18{left:480.708000px;}
.x32{left:483.052500px;}
.x11{left:490.971000px;}
.x33{left:509.493000px;}
.x34{left:538.707000px;}
.x35{left:546.888000px;}
.x29{left:576.018000px;}
.x25{left:578.268000px;}
.x2a{left:601.836000px;}
.x21{left:613.110000px;}
.x1a{left:622.132500px;}
.x19{left:635.427000px;}
.x20{left:638.553000px;}
.x26{left:652.813500px;}
.x1c{left:793.602000px;}
.x1b{left:802.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:55.274667pt;}
.v1{vertical-align:101.818667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.042507pt;}
.ls5{letter-spacing:1.232709pt;}
.ls6{letter-spacing:1.629092pt;}
.lsb{letter-spacing:6.574551pt;}
.ls7{letter-spacing:12.916374pt;}
.ls8{letter-spacing:13.060229pt;}
.lsa{letter-spacing:17.280014pt;}
.ls2{letter-spacing:18.618197pt;}
.ls3{letter-spacing:22.981837pt;}
.ls4{letter-spacing:27.752750pt;}
.ls0{letter-spacing:29.090933pt;}
.ws22{word-spacing:-16.162923pt;}
.ws81{word-spacing:-4.782067pt;}
.wsf{word-spacing:-2.858602pt;}
.ws9a{word-spacing:-2.490184pt;}
.ws4e{word-spacing:-2.466911pt;}
.ws15{word-spacing:-2.199275pt;}
.ws4f{word-spacing:-2.141093pt;}
.ws6a{word-spacing:-1.733820pt;}
.ws8e{word-spacing:-1.501092pt;}
.ws89{word-spacing:-1.384728pt;}
.ws16{word-spacing:-1.210183pt;}
.wsa7{word-spacing:-0.919273pt;}
.ws69{word-spacing:-0.861092pt;}
.ws98{word-spacing:-0.686546pt;}
.ws7e{word-spacing:-0.197818pt;}
.ws85{word-spacing:-0.104727pt;}
.ws1{word-spacing:-0.091815pt;}
.ws3{word-spacing:-0.063761pt;}
.ws3c{word-spacing:-0.058182pt;}
.wsc{word-spacing:-0.042507pt;}
.ws59{word-spacing:-0.010287pt;}
.ws1e{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.011636pt;}
.ws4c{word-spacing:0.186182pt;}
.ws4b{word-spacing:0.267637pt;}
.ws30{word-spacing:0.360728pt;}
.ws10{word-spacing:0.435698pt;}
.ws50{word-spacing:0.535273pt;}
.wsa1{word-spacing:0.651637pt;}
.ws7a{word-spacing:0.768001pt;}
.ws55{word-spacing:0.791273pt;}
.ws7d{word-spacing:0.849455pt;}
.ws96{word-spacing:0.884364pt;}
.ws62{word-spacing:1.117092pt;}
.ws68{word-spacing:1.233456pt;}
.ws8c{word-spacing:1.349819pt;}
.ws90{word-spacing:1.466183pt;}
.ws84{word-spacing:1.524365pt;}
.ws56{word-spacing:1.757092pt;}
.ws9d{word-spacing:1.873456pt;}
.ws2c{word-spacing:2.164365pt;}
.ws7f{word-spacing:2.222547pt;}
.ws75{word-spacing:2.455275pt;}
.ws6{word-spacing:2.667320pt;}
.wsa{word-spacing:2.720454pt;}
.ws7{word-spacing:2.773588pt;}
.ws6f{word-spacing:2.804366pt;}
.ws97{word-spacing:2.862548pt;}
.ws8{word-spacing:2.932989pt;}
.ws40{word-spacing:2.978912pt;}
.wsa4{word-spacing:3.095275pt;}
.wsa6{word-spacing:3.153457pt;}
.ws13{word-spacing:3.211639pt;}
.ws6e{word-spacing:3.234912pt;}
.ws38{word-spacing:3.269821pt;}
.ws60{word-spacing:3.328003pt;}
.ws64{word-spacing:3.467639pt;}
.ws58{word-spacing:3.502548pt;}
.ws37{word-spacing:3.700367pt;}
.ws3d{word-spacing:3.758549pt;}
.ws46{word-spacing:3.793458pt;}
.ws5a{word-spacing:3.909821pt;}
.ws1c{word-spacing:3.968003pt;}
.ws39{word-spacing:3.985067pt;}
.ws51{word-spacing:4.340367pt;}
.ws4a{word-spacing:4.433458pt;}
.ws73{word-spacing:4.491640pt;}
.ws5b{word-spacing:4.608004pt;}
.ws4d{word-spacing:4.724368pt;}
.ws26{word-spacing:4.782067pt;}
.ws54{word-spacing:4.840731pt;}
.ws48{word-spacing:4.898913pt;}
.ws65{word-spacing:5.015277pt;}
.ws94{word-spacing:5.248004pt;}
.ws82{word-spacing:5.364368pt;}
.ws86{word-spacing:5.422550pt;}
.ws67{word-spacing:5.620368pt;}
.ws33{word-spacing:5.771641pt;}
.ws5e{word-spacing:5.888005pt;}
.ws4{word-spacing:5.908486pt;}
.ws2b{word-spacing:6.004369pt;}
.wsd{word-spacing:6.280423pt;}
.ws27{word-spacing:6.469824pt;}
.ws49{word-spacing:6.644369pt;}
.ws7b{word-spacing:6.702551pt;}
.ws9{word-spacing:6.705494pt;}
.ws5f{word-spacing:6.725824pt;}
.ws79{word-spacing:6.935279pt;}
.ws5{word-spacing:6.971163pt;}
.ws1b{word-spacing:6.993460pt;}
.ws93{word-spacing:7.109824pt;}
.wsa3{word-spacing:7.168006pt;}
.ws92{word-spacing:7.226188pt;}
.ws6d{word-spacing:7.249461pt;}
.ws7c{word-spacing:7.284370pt;}
.ws24{word-spacing:7.307642pt;}
.ws43{word-spacing:7.342552pt;}
.ws52{word-spacing:7.400733pt;}
.ws9c{word-spacing:7.633461pt;}
.ws18{word-spacing:7.691643pt;}
.ws19{word-spacing:7.808007pt;}
.ws21{word-spacing:7.924370pt;}
.ws91{word-spacing:8.098916pt;}
.ws8f{word-spacing:8.215280pt;}
.ws2a{word-spacing:8.273461pt;}
.ws12{word-spacing:8.389825pt;}
.ws3a{word-spacing:8.448007pt;}
.ws32{word-spacing:8.622553pt;}
.ws74{word-spacing:8.797098pt;}
.ws29{word-spacing:8.855280pt;}
.ws6c{word-spacing:9.029826pt;}
.ws31{word-spacing:9.111280pt;}
.ws61{word-spacing:9.204371pt;}
.ws80{word-spacing:9.262553pt;}
.ws1a{word-spacing:9.495281pt;}
.ws23{word-spacing:9.728008pt;}
.ws25{word-spacing:9.786190pt;}
.ws20{word-spacing:9.844372pt;}
.ws72{word-spacing:9.867645pt;}
.ws83{word-spacing:9.902554pt;}
.ws28{word-spacing:10.158554pt;}
.ws2f{word-spacing:10.251645pt;}
.ws1d{word-spacing:10.717100pt;}
.ws95{word-spacing:10.775282pt;}
.ws71{word-spacing:11.240737pt;}
.ws1f{word-spacing:11.322191pt;}
.ws78{word-spacing:11.415282pt;}
.ws66{word-spacing:11.706192pt;}
.ws63{word-spacing:12.288010pt;}
.ws70{word-spacing:12.893102pt;}
.ws36{word-spacing:12.928011pt;}
.ws88{word-spacing:13.509829pt;}
.ws44{word-spacing:13.626193pt;}
.ws2e{word-spacing:13.800739pt;}
.ws11{word-spacing:14.114921pt;}
.ws2d{word-spacing:15.860377pt;}
.ws9f{word-spacing:16.232741pt;}
.ws41{word-spacing:16.942560pt;}
.wsa2{word-spacing:18.385470pt;}
.ws6b{word-spacing:18.885834pt;}
.ws9e{word-spacing:19.549107pt;}
.wsa5{word-spacing:20.654563pt;}
.ws2{word-spacing:20.722347pt;}
.ws99{word-spacing:20.770926pt;}
.ws8b{word-spacing:21.073472pt;}
.ws5c{word-spacing:21.410927pt;}
.wsb{word-spacing:22.103689pt;}
.ws76{word-spacing:23.330929pt;}
.ws34{word-spacing:23.680020pt;}
.ws57{word-spacing:23.854565pt;}
.ws87{word-spacing:24.389839pt;}
.ws5d{word-spacing:24.436384pt;}
.ws9b{word-spacing:24.843657pt;}
.ws42{word-spacing:25.553476pt;}
.wsa0{word-spacing:25.716385pt;}
.wse{word-spacing:26.513799pt;}
.ws0{word-spacing:27.636455pt;}
.ws8a{word-spacing:28.171660pt;}
.ws17{word-spacing:28.276387pt;}
.ws3b{word-spacing:28.858206pt;}
.ws53{word-spacing:29.498206pt;}
.ws3f{word-spacing:40.564397pt;}
.ws35{word-spacing:51.805867pt;}
.ws14{word-spacing:62.166867pt;}
.ws3e{word-spacing:73.378970pt;}
.ws45{word-spacing:77.917156pt;}
.ws47{word-spacing:85.888072pt;}
.ws77{word-spacing:620.486335pt;}
._36{margin-left:-31.060252pt;}
._35{margin-left:-29.090933pt;}
._34{margin-left:-26.670640pt;}
._0{margin-left:-7.253422pt;}
._5{margin-left:-5.164646pt;}
._7{margin-left:-4.152085pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._4{width:1.119657pt;}
._2{width:2.387202pt;}
._9{width:3.732934pt;}
._17{width:4.910195pt;}
._a{width:13.007170pt;}
._b{width:16.134448pt;}
._2e{width:17.104042pt;}
._24{width:18.034633pt;}
._14{width:19.314292pt;}
._22{width:20.307217pt;}
._23{width:22.036726pt;}
._6{width:23.195332pt;}
._8{width:24.094786pt;}
._c{width:25.136312pt;}
._11{width:26.178006pt;}
._e{width:27.987223pt;}
._26{width:29.431159pt;}
._21{width:30.436441pt;}
._1e{width:31.472899pt;}
._2c{width:33.436210pt;}
._d{width:35.213888pt;}
._18{width:36.247303pt;}
._f{width:37.183001pt;}
._32{width:38.554797pt;}
._10{width:39.526660pt;}
._37{width:41.471782pt;}
._15{width:42.668286pt;}
._25{width:44.688910pt;}
._2d{width:46.240383pt;}
._33{width:55.433118pt;}
._13{width:58.484889pt;}
._16{width:71.731200pt;}
._12{width:86.077200pt;}
._1d{width:139.811026pt;}
._1b{width:155.156837pt;}
._1f{width:174.674762pt;}
._1c{width:199.395521pt;}
._30{width:202.721570pt;}
._20{width:236.743761pt;}
._19{width:240.698382pt;}
._31{width:256.411320pt;}
._27{width:302.724086pt;}
._2b{width:316.056013pt;}
._2a{width:389.996886pt;}
._29{width:398.082420pt;}
._28{width:400.353258pt;}
._2f{width:625.222339pt;}
._1a{width:775.215191pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:56.149333pt;}
.yf2{bottom:96.000000pt;}
.y46{bottom:98.002667pt;}
.y114{bottom:102.902667pt;}
.yd0{bottom:113.456000pt;}
.yb0{bottom:115.446667pt;}
.y45{bottom:116.068000pt;}
.y6d{bottom:122.013333pt;}
.y24{bottom:122.834667pt;}
.yf1{bottom:125.364000pt;}
.y113{bottom:132.924000pt;}
.y8a{bottom:134.068000pt;}
.y44{bottom:134.133333pt;}
.ycf{bottom:140.916000pt;}
.yf0{bottom:143.429333pt;}
.yaf{bottom:145.466667pt;}
.y112{bottom:150.989333pt;}
.y89{bottom:152.133333pt;}
.y23{bottom:152.856000pt;}
.y43{bottom:161.593333pt;}
.y6a{bottom:162.112000pt;}
.y6c{bottom:162.274667pt;}
.yae{bottom:163.533333pt;}
.y111{bottom:169.054667pt;}
.y22{bottom:170.921333pt;}
.yef{bottom:172.793333pt;}
.y69{bottom:180.178667pt;}
.y6b{bottom:180.340000pt;}
.y88{bottom:182.154667pt;}
.y21{bottom:188.986667pt;}
.yee{bottom:190.858667pt;}
.yad{bottom:193.553333pt;}
.yce{bottom:194.998667pt;}
.y110{bottom:199.076000pt;}
.y42{bottom:200.544000pt;}
.y20{bottom:207.053333pt;}
.yac{bottom:211.618667pt;}
.y87{bottom:212.174667pt;}
.y10f{bottom:217.141333pt;}
.yed{bottom:220.222667pt;}
.y1f{bottom:225.118667pt;}
.ycd{bottom:228.800000pt;}
.y41{bottom:230.564000pt;}
.y10e{bottom:235.206667pt;}
.y68{bottom:237.350667pt;}
.yab{bottom:239.078667pt;}
.y86{bottom:242.196000pt;}
.y1e{bottom:243.184000pt;}
.ycc{bottom:246.865333pt;}
.yec{bottom:248.600000pt;}
.y10d{bottom:253.272000pt;}
.y67{bottom:255.416000pt;}
.y40{bottom:260.585333pt;}
.y1d{bottom:261.249333pt;}
.ycb{bottom:264.930667pt;}
.yeb{bottom:266.665333pt;}
.y85{bottom:272.216000pt;}
.yaa{bottom:278.029333pt;}
.y1c{bottom:279.314667pt;}
.yca{bottom:282.997333pt;}
.y10c{bottom:283.293333pt;}
.y66{bottom:289.398667pt;}
.y3f{bottom:290.606667pt;}
.yea{bottom:294.125333pt;}
.ya9{bottom:296.094667pt;}
.y1b{bottom:297.380000pt;}
.yc9{bottom:301.062667pt;}
.y10b{bottom:301.358667pt;}
.y84{bottom:302.237333pt;}
.ya8{bottom:314.160000pt;}
.y1a{bottom:315.446667pt;}
.y65{bottom:316.858667pt;}
.yc8{bottom:319.128000pt;}
.y3e{bottom:320.626667pt;}
.y83{bottom:329.697333pt;}
.y10a{bottom:331.378667pt;}
.y19{bottom:333.512000pt;}
.yc7{bottom:337.193333pt;}
.ye9{bottom:348.048000pt;}
.y109{bottom:349.445333pt;}
.y64{bottom:349.860000pt;}
.y3d{bottom:350.648000pt;}
.ya7{bottom:352.580000pt;}
.yc6{bottom:355.258667pt;}
.y18{bottom:365.981333pt;}
.y82{bottom:368.646667pt;}
.ya6{bottom:370.645333pt;}
.yc5{bottom:373.324000pt;}
.y3c{bottom:378.106667pt;}
.y108{bottom:379.465333pt;}
.ye8{bottom:381.849333pt;}
.ya5{bottom:388.710667pt;}
.yc4{bottom:391.390667pt;}
.y107{bottom:397.530667pt;}
.y81{bottom:398.668000pt;}
.ye7{bottom:399.916000pt;}
.ya4{bottom:406.776000pt;}
.yc3{bottom:409.456000pt;}
.y63{bottom:410.821333pt;}
.y3b{bottom:411.108000pt;}
.y17{bottom:411.810667pt;}
.y106{bottom:415.597333pt;}
.ye6{bottom:417.981333pt;}
.yc2{bottom:427.521333pt;}
.y80{bottom:428.689333pt;}
.y16{bottom:429.876000pt;}
.ye5{bottom:436.046667pt;}
.ya3{bottom:445.194667pt;}
.y105{bottom:445.617333pt;}
.y62{bottom:450.112000pt;}
.y60{bottom:450.145333pt;}
.yc1{bottom:452.889333pt;}
.ye4{bottom:454.112000pt;}
.y3a{bottom:456.937333pt;}
.y7f{bottom:458.709333pt;}
.y15{bottom:459.897333pt;}
.ya2{bottom:463.261333pt;}
.y104{bottom:463.682667pt;}
.y61{bottom:468.177333pt;}
.y5f{bottom:468.210667pt;}
.ye3{bottom:472.177333pt;}
.y39{bottom:475.002667pt;}
.y14{bottom:475.837333pt;}
.y7e{bottom:476.774667pt;}
.ya1{bottom:481.326667pt;}
.y103{bottom:481.749333pt;}
.ye2{bottom:490.244000pt;}
.yc0{bottom:490.346667pt;}
.y13{bottom:491.777333pt;}
.y38{bottom:493.069333pt;}
.y7d{bottom:494.841333pt;}
.y12{bottom:507.717333pt;}
.ye1{bottom:508.309333pt;}
.ybf{bottom:508.412000pt;}
.y37{bottom:511.134667pt;}
.y102{bottom:511.769333pt;}
.y7c{bottom:512.906667pt;}
.ya0{bottom:519.745333pt;}
.y5e{bottom:522.360000pt;}
.y5c{bottom:522.440000pt;}
.y11{bottom:523.658667pt;}
.y5a{bottom:523.773333pt;}
.ye0{bottom:526.374667pt;}
.ybe{bottom:526.477333pt;}
.y101{bottom:529.834667pt;}
.y9f{bottom:537.810667pt;}
.y10{bottom:539.598667pt;}
.y7b{bottom:540.365333pt;}
.y5d{bottom:540.425333pt;}
.y5b{bottom:540.506667pt;}
.y59{bottom:541.840000pt;}
.ydf{bottom:544.440000pt;}
.y36{bottom:549.553333pt;}
.ybd{bottom:553.937333pt;}
.yf{bottom:555.538667pt;}
.y9e{bottom:555.876000pt;}
.y100{bottom:562.305333pt;}
.y35{bottom:567.618667pt;}
.yde{bottom:569.808000pt;}
.ye{bottom:571.478667pt;}
.y7a{bottom:573.366667pt;}
.y9d{bottom:573.942667pt;}
.y58{bottom:576.630667pt;}
.y34{bottom:585.684000pt;}
.ybc{bottom:586.938667pt;}
.yd{bottom:587.418667pt;}
.y9c{bottom:592.008000pt;}
.y57{bottom:594.696000pt;}
.yc{bottom:603.360000pt;}
.y33{bottom:603.750667pt;}
.ydd{bottom:605.800000pt;}
.yff{bottom:608.134667pt;}
.y56{bottom:612.761333pt;}
.y79{bottom:619.196000pt;}
.yb{bottom:619.300000pt;}
.yfe{bottom:626.200000pt;}
.y9b{bottom:630.426667pt;}
.ybb{bottom:632.768000pt;}
.ydc{bottom:633.260000pt;}
.ya{bottom:635.240000pt;}
.y78{bottom:637.261333pt;}
.y55{bottom:640.221333pt;}
.y32{bottom:642.169333pt;}
.yfd{bottom:644.265333pt;}
.y9a{bottom:648.492000pt;}
.yba{bottom:650.833333pt;}
.y9{bottom:651.180000pt;}
.y77{bottom:655.328000pt;}
.y31{bottom:660.234667pt;}
.yfc{bottom:662.330667pt;}
.y99{bottom:666.558667pt;}
.ydb{bottom:671.900000pt;}
.y8{bottom:675.422667pt;}
.y30{bottom:678.300000pt;}
.yfb{bottom:680.396000pt;}
.yb9{bottom:680.854667pt;}
.y54{bottom:684.228000pt;}
.yda{bottom:689.965333pt;}
.y76{bottom:693.746667pt;}
.y98{bottom:694.017333pt;}
.y2f{bottom:696.366667pt;}
.yd9{bottom:708.032000pt;}
.yb8{bottom:710.874667pt;}
.y75{bottom:711.812000pt;}
.yfa{bottom:712.866667pt;}
.y53{bottom:718.029333pt;}
.yd8{bottom:726.097333pt;}
.y97{bottom:727.018667pt;}
.y7{bottom:729.121333pt;}
.y74{bottom:729.877333pt;}
.y2e{bottom:734.785333pt;}
.y52{bottom:736.096000pt;}
.yb7{bottom:740.896000pt;}
.yd7{bottom:744.162667pt;}
.y73{bottom:747.944000pt;}
.y2d{bottom:752.850667pt;}
.y51{bottom:754.161333pt;}
.yf9{bottom:758.696000pt;}
.yb6{bottom:758.961333pt;}
.y6{bottom:761.644000pt;}
.yd6{bottom:762.228000pt;}
.y50{bottom:772.226667pt;}
.y96{bottom:772.848000pt;}
.yf8{bottom:776.761333pt;}
.y5{bottom:780.240000pt;}
.y2c{bottom:785.320000pt;}
.y72{bottom:786.362667pt;}
.yb5{bottom:788.981333pt;}
.y4f{bottom:790.292000pt;}
.y95{bottom:790.913333pt;}
.yd5{bottom:794.697333pt;}
.yf7{bottom:794.826667pt;}
.y71{bottom:804.428000pt;}
.yb4{bottom:807.048000pt;}
.y4e{bottom:808.357333pt;}
.y94{bottom:808.978667pt;}
.yf6{bottom:812.892000pt;}
.y4{bottom:820.656000pt;}
.y70{bottom:822.493333pt;}
.y4d{bottom:826.424000pt;}
.yf5{bottom:830.957333pt;}
.y2b{bottom:831.149333pt;}
.yb3{bottom:837.068000pt;}
.y93{bottom:837.953333pt;}
.y3{bottom:839.253333pt;}
.yd4{bottom:840.217333pt;}
.y4c{bottom:844.489333pt;}
.y91{bottom:846.185333pt;}
.y2a{bottom:849.216000pt;}
.y90{bottom:854.912000pt;}
.y8d{bottom:855.640000pt;}
.y2{bottom:857.849333pt;}
.yd3{bottom:858.282667pt;}
.y6f{bottom:860.912000pt;}
.y4b{bottom:862.554667pt;}
.yf4{bottom:863.428000pt;}
.y8f{bottom:863.640000pt;}
.y92{bottom:869.458667pt;}
.yb2{bottom:869.537333pt;}
.y8e{bottom:872.366667pt;}
.y29{bottom:879.236000pt;}
.y4a{bottom:880.620000pt;}
.y115{bottom:885.346667pt;}
.yd2{bottom:886.661333pt;}
.y1{bottom:887.073333pt;}
.y6e{bottom:888.372000pt;}
.y28{bottom:897.301333pt;}
.y49{bottom:898.685333pt;}
.y8c{bottom:899.862667pt;}
.yf3{bottom:909.257333pt;}
.yb1{bottom:915.368000pt;}
.yd1{bottom:916.024000pt;}
.y48{bottom:916.750667pt;}
.y8b{bottom:917.928000pt;}
.y27{bottom:927.322667pt;}
.y47{bottom:942.120000pt;}
.y26{bottom:945.388000pt;}
.h9{height:1.221819pt;}
.ha{height:29.925069pt;}
.h3{height:37.193707pt;}
.h4{height:39.850400pt;}
.h7{height:40.727307pt;}
.hc{height:41.018216pt;}
.h5{height:43.636400pt;}
.h2{height:47.820800pt;}
.hb{height:56.496486pt;}
.h6{height:57.384800pt;}
.h1{height:64.913535pt;}
.h8{height:103.040486pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:94.869333pt;}
.xb{left:96.000000pt;}
.xc{left:98.950667pt;}
.x39{left:103.273333pt;}
.xf{left:105.020000pt;}
.x3{left:113.533333pt;}
.x14{left:114.481333pt;}
.xa{left:118.581333pt;}
.x2c{left:123.620000pt;}
.x13{left:126.561333pt;}
.x9{left:132.364000pt;}
.x1{left:144.242667pt;}
.x8{left:152.289333pt;}
.x37{left:154.020000pt;}
.x2d{left:167.737333pt;}
.x2b{left:172.388000pt;}
.x23{left:187.458667pt;}
.x10{left:208.320000pt;}
.x12{left:223.960000pt;}
.x1e{left:244.616000pt;}
.x22{left:250.293333pt;}
.x16{left:254.333333pt;}
.x1d{left:271.737333pt;}
.x15{left:280.878667pt;}
.x36{left:309.890667pt;}
.x2e{left:325.836000pt;}
.x27{left:329.302667pt;}
.x28{left:332.161333pt;}
.x24{left:335.889333pt;}
.x2{left:341.377333pt;}
.x38{left:347.329333pt;}
.x6{left:356.082667pt;}
.x2f{left:357.352000pt;}
.x30{left:362.200000pt;}
.x5{left:363.237333pt;}
.x4{left:374.249333pt;}
.x7{left:378.776000pt;}
.x31{left:385.634667pt;}
.x17{left:402.064000pt;}
.xd{left:404.364000pt;}
.x1f{left:419.669333pt;}
.x18{left:427.296000pt;}
.x32{left:429.380000pt;}
.x11{left:436.418667pt;}
.x33{left:452.882667pt;}
.x34{left:478.850667pt;}
.x35{left:486.122667pt;}
.x29{left:512.016000pt;}
.x25{left:514.016000pt;}
.x2a{left:534.965333pt;}
.x21{left:544.986667pt;}
.x1a{left:553.006667pt;}
.x19{left:564.824000pt;}
.x20{left:567.602667pt;}
.x26{left:580.278667pt;}
.x1c{left:705.424000pt;}
.x1b{left:713.746667pt;}
}




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