
    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_c160f15c74c3801fca860363.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_97437253cdf4bd265bd58ed8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_2a745255dd0b3312db06b7cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_a35287107fa346eaccd7761b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139000;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_c1a56738bf04f89b17f1cb9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_29dc559ff1b63ce36ad24c4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_28b0be5163b7d619f98ec937.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_f8d2d95393295603b6b5160e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123000;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_b60991cbdaabfb70ef60bab9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.062000;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_e79825543d393615edfe3fb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.123000;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_da95eedc0d791fe6ce227a59.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.062000;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_485d9946f12af33bf145abdb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_59596ef7bb710eb4160801f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:63.924247px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-42.698677px;}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws7{word-spacing:-15.001902px;}
.ws5{word-spacing:-12.083053px;}
.ws6{word-spacing:-10.504681px;}
.ws4{word-spacing:-6.996050px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-1.003805px;}
._27{width:1.279638px;}
._17{width:2.514601px;}
._6{width:4.056208px;}
._18{width:5.351580px;}
._1a{width:6.382310px;}
._0{width:7.683077px;}
._13{width:9.018190px;}
._1{width:10.413149px;}
._1d{width:12.363948px;}
._b{width:14.209989px;}
._2{width:15.256457px;}
._5{width:17.960909px;}
._a{width:19.631875px;}
._11{width:21.064444px;}
._c{width:23.048821px;}
._7{width:24.583884px;}
._21{width:26.434293px;}
._23{width:27.588285px;}
._25{width:28.719555px;}
._10{width:29.943227px;}
._3{width:31.675630px;}
._e{width:32.793365px;}
._2d{width:33.852022px;}
._28{width:34.927405px;}
._35{width:36.464952px;}
._24{width:38.180529px;}
._2a{width:39.464438px;}
._37{width:40.516286px;}
._26{width:41.865073px;}
._f{width:43.089006px;}
._22{width:44.296328px;}
._30{width:45.424548px;}
._8{width:46.666519px;}
._1e{width:48.237803px;}
._2e{width:49.472249px;}
._14{width:51.509877px;}
._39{width:53.635793px;}
._2c{width:54.746777px;}
._1b{width:56.405401px;}
._12{width:57.438494px;}
._20{width:58.915849px;}
._36{width:59.925950px;}
._d{width:61.067107px;}
._29{width:62.822862px;}
._1f{width:64.227009px;}
._9{width:66.314082px;}
._2b{width:67.998389px;}
._3b{width:69.826156px;}
._3d{width:70.915292px;}
._38{width:72.106320px;}
._3a{width:74.764370px;}
._32{width:77.060056px;}
._3c{width:78.080909px;}
._2f{width:79.926305px;}
._16{width:81.229005px;}
._4{width:83.137811px;}
._33{width:85.028492px;}
._3f{width:87.097835px;}
._45{width:89.747387px;}
._15{width:91.129429px;}
._34{width:92.961899px;}
._31{width:96.095230px;}
._19{width:109.398923px;}
._46{width:114.591084px;}
._40{width:115.654649px;}
._43{width:118.247880px;}
._42{width:119.802711px;}
._44{width:126.018854px;}
._41{width:158.489914px;}
._47{width:434.793091px;}
._3e{width:507.843948px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs6{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fsa{font-size:42.016355px;}
.fs8{font-size:42.018724px;}
.fs4{font-size:48.018688px;}
.fs3{font-size:54.020354px;}
.fs9{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y165{bottom:5.908244px;}
.y164{bottom:15.825087px;}
.yd9{bottom:20.414341px;}
.y160{bottom:20.655020px;}
.y163{bottom:25.741929px;}
.y15e{bottom:26.805576px;}
.y162{bottom:35.658772px;}
.yfb{bottom:35.775476px;}
.y15d{bottom:45.161507px;}
.y161{bottom:45.575614px;}
.y15f{bottom:46.034751px;}
.yda{bottom:47.246832px;}
.y2b{bottom:49.737528px;}
.y2d{bottom:53.900827px;}
.yfa{bottom:58.283957px;}
.y6f{bottom:60.888333px;}
.y15c{bottom:62.299846px;}
.y2a{bottom:72.246009px;}
.y2c{bottom:76.409308px;}
.yf9{bottom:80.792437px;}
.y6e{bottom:83.396814px;}
.y29{bottom:94.754489px;}
.yf8{bottom:103.300918px;}
.y6d{bottom:105.905295px;}
.y28{bottom:117.262970px;}
.y53{bottom:117.276976px;}
.yf7{bottom:125.809399px;}
.y6c{bottom:128.413775px;}
.y13e{bottom:129.983436px;}
.y166{bottom:135.166209px;}
.y27{bottom:139.771451px;}
.y52{bottom:142.036305px;}
.yf6{bottom:148.317879px;}
.y6b{bottom:150.922256px;}
.y89{bottom:151.452061px;}
.y13d{bottom:152.491917px;}
.yf5{bottom:154.845298px;}
.y26{bottom:162.279931px;}
.y6a{bottom:173.430737px;}
.y88{bottom:173.960541px;}
.y13c{bottom:175.000398px;}
.yf4{bottom:177.353779px;}
.y4f{bottom:183.587927px;}
.y25{bottom:184.788412px;}
.y16d{bottom:189.169004px;}
.y69{bottom:195.939217px;}
.y87{bottom:196.469022px;}
.y13b{bottom:197.508878px;}
.yf3{bottom:199.862259px;}
.y16c{bottom:203.174456px;}
.y4e{bottom:206.096408px;}
.y24{bottom:207.296893px;}
.y16b{bottom:217.179907px;}
.y68{bottom:218.447698px;}
.y86{bottom:218.977503px;}
.yfe{bottom:219.144480px;}
.y13a{bottom:220.017359px;}
.yf2{bottom:222.370740px;}
.y4d{bottom:228.604889px;}
.y23{bottom:229.805373px;}
.y16a{bottom:231.185359px;}
.y85{bottom:241.485983px;}
.y139{bottom:242.525840px;}
.yfd{bottom:243.903809px;}
.yf1{bottom:244.879221px;}
.ya4{bottom:245.589576px;}
.y4c{bottom:251.113369px;}
.y22{bottom:252.313854px;}
.y168{bottom:258.771180px;}
.y84{bottom:263.994464px;}
.y138{bottom:265.034320px;}
.ya3{bottom:268.098057px;}
.y4b{bottom:273.621850px;}
.y21{bottom:274.822335px;}
.y83{bottom:286.502945px;}
.y137{bottom:287.542801px;}
.ya2{bottom:290.606538px;}
.y4a{bottom:296.130331px;}
.y20{bottom:297.330815px;}
.y82{bottom:309.011425px;}
.y136{bottom:310.051282px;}
.ya1{bottom:313.115018px;}
.y49{bottom:318.638811px;}
.y1f{bottom:319.839296px;}
.y81{bottom:331.519906px;}
.y135{bottom:332.559762px;}
.ya0{bottom:335.623499px;}
.y124{bottom:339.220176px;}
.y48{bottom:341.147292px;}
.y1e{bottom:342.347777px;}
.y16e{bottom:352.706609px;}
.y80{bottom:354.028387px;}
.y134{bottom:355.068243px;}
.y9f{bottom:358.131980px;}
.y123{bottom:361.728657px;}
.y47{bottom:363.655773px;}
.y7f{bottom:376.536867px;}
.y133{bottom:377.576724px;}
.y9e{bottom:380.640460px;}
.y122{bottom:384.237137px;}
.y46{bottom:386.164253px;}
.y169{bottom:386.626903px;}
.y51{bottom:387.589775px;}
.y7e{bottom:399.045348px;}
.y132{bottom:400.085204px;}
.y9d{bottom:403.148941px;}
.y121{bottom:406.745618px;}
.y45{bottom:408.672734px;}
.y167{bottom:418.111854px;}
.y7d{bottom:421.553829px;}
.y131{bottom:422.593685px;}
.y9c{bottom:425.657422px;}
.y120{bottom:429.254099px;}
.y44{bottom:431.181215px;}
.y1d{bottom:431.406301px;}
.y7c{bottom:444.062309px;}
.y130{bottom:445.102166px;}
.y9b{bottom:448.165902px;}
.y11f{bottom:451.762579px;}
.y43{bottom:453.689695px;}
.y1c{bottom:453.914782px;}
.y7b{bottom:466.570790px;}
.y12f{bottom:467.610646px;}
.y9a{bottom:470.674383px;}
.y11e{bottom:474.271060px;}
.y42{bottom:476.198176px;}
.y1b{bottom:476.423262px;}
.y15b{bottom:485.815655px;}
.y7a{bottom:489.079271px;}
.y12e{bottom:490.119127px;}
.y99{bottom:493.182864px;}
.y11d{bottom:496.779541px;}
.y41{bottom:498.706657px;}
.y1a{bottom:498.931743px;}
.y15a{bottom:508.324135px;}
.y79{bottom:511.587751px;}
.y98{bottom:515.691344px;}
.y11c{bottom:519.288021px;}
.y40{bottom:521.215137px;}
.y19{bottom:521.440224px;}
.y159{bottom:530.832616px;}
.y78{bottom:534.096232px;}
.y12d{bottom:535.136088px;}
.y97{bottom:538.199825px;}
.y11b{bottom:541.796502px;}
.y3f{bottom:543.723618px;}
.y18{bottom:543.948704px;}
.y158{bottom:553.341097px;}
.y77{bottom:556.604713px;}
.y12c{bottom:557.644569px;}
.y96{bottom:560.708306px;}
.y11a{bottom:564.304983px;}
.y3e{bottom:566.232099px;}
.y17{bottom:566.457185px;}
.y157{bottom:575.849577px;}
.y76{bottom:579.113193px;}
.y12b{bottom:580.153050px;}
.y95{bottom:583.216786px;}
.y119{bottom:586.813463px;}
.y3d{bottom:588.740579px;}
.y16{bottom:588.965666px;}
.yc0{bottom:590.239176px;}
.ydb{bottom:596.616606px;}
.y156{bottom:598.358058px;}
.y75{bottom:601.621674px;}
.y12a{bottom:602.661530px;}
.y94{bottom:605.725267px;}
.y118{bottom:609.321944px;}
.y3c{bottom:611.249060px;}
.y15{bottom:611.474146px;}
.ybf{bottom:612.747657px;}
.y155{bottom:620.866539px;}
.y74{bottom:624.130155px;}
.y129{bottom:625.170011px;}
.y93{bottom:628.233748px;}
.y117{bottom:631.830425px;}
.y3b{bottom:633.757541px;}
.y14{bottom:633.982627px;}
.ybe{bottom:635.256138px;}
.y154{bottom:643.375019px;}
.y73{bottom:646.638635px;}
.y128{bottom:647.678492px;}
.y92{bottom:650.742228px;}
.yd8{bottom:653.562123px;}
.y116{bottom:654.338905px;}
.y3a{bottom:656.266021px;}
.y13{bottom:656.491108px;}
.ybd{bottom:657.764618px;}
.y153{bottom:665.883500px;}
.y72{bottom:669.147116px;}
.y127{bottom:670.186972px;}
.y91{bottom:673.250709px;}
.yd7{bottom:676.070603px;}
.y115{bottom:676.847386px;}
.y39{bottom:678.774502px;}
.y12{bottom:678.999588px;}
.ybc{bottom:680.273099px;}
.y70{bottom:681.841354px;}
.y152{bottom:688.391981px;}
.y71{bottom:691.655597px;}
.y126{bottom:692.695453px;}
.y90{bottom:695.759190px;}
.yd6{bottom:698.579084px;}
.y114{bottom:699.355867px;}
.y38{bottom:701.282983px;}
.y11{bottom:701.508069px;}
.ybb{bottom:702.781580px;}
.y151{bottom:710.900461px;}
.y67{bottom:714.164077px;}
.y125{bottom:715.203934px;}
.y8f{bottom:718.267670px;}
.yd5{bottom:721.087565px;}
.y113{bottom:721.864347px;}
.y37{bottom:723.791463px;}
.y10{bottom:724.016550px;}
.yba{bottom:725.290060px;}
.yfc{bottom:731.697136px;}
.y150{bottom:733.408942px;}
.y66{bottom:736.672558px;}
.y8e{bottom:740.776151px;}
.yd4{bottom:743.596045px;}
.y112{bottom:744.372828px;}
.y36{bottom:746.299944px;}
.yf{bottom:746.525030px;}
.yb9{bottom:747.798541px;}
.yf0{bottom:747.828162px;}
.y14f{bottom:755.917423px;}
.y65{bottom:759.181039px;}
.y8d{bottom:763.284632px;}
.y13f{bottom:763.522128px;}
.yd3{bottom:766.104526px;}
.y111{bottom:766.881309px;}
.y35{bottom:768.808425px;}
.ye{bottom:769.033511px;}
.yb8{bottom:770.307022px;}
.yef{bottom:770.336642px;}
.y14e{bottom:778.425903px;}
.y64{bottom:781.689519px;}
.y8c{bottom:785.793112px;}
.yd2{bottom:788.613007px;}
.y110{bottom:789.389789px;}
.y34{bottom:791.316905px;}
.yd{bottom:791.541992px;}
.yb7{bottom:792.815502px;}
.yee{bottom:792.845123px;}
.y14d{bottom:800.934384px;}
.y63{bottom:804.198000px;}
.y8b{bottom:808.301593px;}
.yd1{bottom:811.121487px;}
.y10f{bottom:811.898270px;}
.y33{bottom:813.825386px;}
.yc{bottom:814.050472px;}
.yb6{bottom:815.323983px;}
.yed{bottom:815.353604px;}
.y14c{bottom:823.442865px;}
.y62{bottom:826.706481px;}
.y8a{bottom:830.810074px;}
.yd0{bottom:833.629968px;}
.y10e{bottom:834.406751px;}
.y32{bottom:836.333867px;}
.yb{bottom:836.558953px;}
.yb5{bottom:837.832464px;}
.yec{bottom:837.862084px;}
.y61{bottom:849.214961px;}
.ycf{bottom:856.138448px;}
.y10d{bottom:856.915231px;}
.y31{bottom:858.842347px;}
.ya{bottom:859.067434px;}
.yb4{bottom:860.340944px;}
.yeb{bottom:860.370565px;}
.y14b{bottom:868.459826px;}
.ya7{bottom:871.250315px;}
.y60{bottom:871.723442px;}
.yce{bottom:878.646929px;}
.y10c{bottom:879.423712px;}
.y30{bottom:881.350828px;}
.y9{bottom:881.575914px;}
.yb3{bottom:882.849425px;}
.yea{bottom:882.879046px;}
.y14a{bottom:890.968307px;}
.y5f{bottom:894.231923px;}
.ya6{bottom:896.009644px;}
.ycd{bottom:901.155410px;}
.y10b{bottom:901.932193px;}
.y2f{bottom:903.859308px;}
.yb2{bottom:905.357906px;}
.ye9{bottom:905.387526px;}
.y149{bottom:913.476787px;}
.y5e{bottom:916.740403px;}
.ya5{bottom:920.768973px;}
.ycc{bottom:923.663890px;}
.y10a{bottom:924.440673px;}
.y50{bottom:925.392417px;}
.y2e{bottom:926.367789px;}
.yb1{bottom:927.866386px;}
.ye8{bottom:927.896007px;}
.y148{bottom:935.985268px;}
.y5d{bottom:939.248884px;}
.ycb{bottom:946.172371px;}
.y109{bottom:946.949154px;}
.yb0{bottom:950.374867px;}
.ye7{bottom:950.404488px;}
.y147{bottom:958.493749px;}
.y5c{bottom:961.757364px;}
.yca{bottom:968.680852px;}
.y108{bottom:969.457635px;}
.yaf{bottom:972.883348px;}
.ye6{bottom:972.912968px;}
.y5b{bottom:984.265845px;}
.yc9{bottom:991.189332px;}
.y107{bottom:991.966115px;}
.y8{bottom:991.971468px;}
.yae{bottom:995.391828px;}
.ye5{bottom:995.421449px;}
.y146{bottom:1003.510710px;}
.y5a{bottom:1006.774326px;}
.yc8{bottom:1013.697813px;}
.y106{bottom:1014.474596px;}
.y7{bottom:1014.479949px;}
.yad{bottom:1017.900309px;}
.ye4{bottom:1017.929930px;}
.y145{bottom:1026.019191px;}
.y59{bottom:1029.282806px;}
.yc7{bottom:1036.206294px;}
.y105{bottom:1036.983077px;}
.y6{bottom:1036.988430px;}
.yac{bottom:1040.408790px;}
.ye3{bottom:1040.438410px;}
.y144{bottom:1048.527671px;}
.y58{bottom:1051.791287px;}
.yc6{bottom:1058.714774px;}
.y104{bottom:1059.491557px;}
.y5{bottom:1059.496910px;}
.yab{bottom:1062.917270px;}
.ye2{bottom:1062.946891px;}
.y143{bottom:1071.036152px;}
.y57{bottom:1074.299768px;}
.yc5{bottom:1081.223255px;}
.y103{bottom:1082.000038px;}
.y4{bottom:1082.005391px;}
.yaa{bottom:1085.425751px;}
.ye1{bottom:1085.455372px;}
.y142{bottom:1093.544633px;}
.y56{bottom:1096.808248px;}
.yc4{bottom:1103.731736px;}
.y102{bottom:1104.508519px;}
.ya9{bottom:1107.934232px;}
.ye0{bottom:1107.963852px;}
.y141{bottom:1116.053113px;}
.y55{bottom:1119.316729px;}
.yc3{bottom:1126.240216px;}
.y101{bottom:1127.016999px;}
.ya8{bottom:1130.442712px;}
.ydf{bottom:1130.472333px;}
.y3{bottom:1139.147004px;}
.y54{bottom:1141.825210px;}
.yc2{bottom:1148.748697px;}
.y100{bottom:1149.525480px;}
.yde{bottom:1152.980814px;}
.y140{bottom:1161.070075px;}
.y2{bottom:1168.408029px;}
.ydc{bottom:1170.281805px;}
.yc1{bottom:1171.257178px;}
.yff{bottom:1172.033961px;}
.ydd{bottom:1175.489294px;}
.hf{height:15.033783px;}
.he{height:22.779139px;}
.h11{height:24.216929px;}
.h14{height:34.201313px;}
.h12{height:34.203241px;}
.ha{height:39.087212px;}
.hb{height:43.972568px;}
.h8{height:47.267809px;}
.h13{height:48.846194px;}
.hd{height:53.125866px;}
.h10{height:53.639998px;}
.h9{height:53.719820px;}
.h4{height:54.643748px;}
.h7{height:57.745506px;}
.h5{height:58.801424px;}
.h6{height:59.638470px;}
.h3{height:69.553366px;}
.hc{height:121.669753px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.552352px;}
.xe{left:53.391773px;}
.x1{left:56.160618px;}
.x7{left:71.600029px;}
.x6{left:89.324989px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x2{left:356.015789px;}
.x4{left:464.800938px;}
.x5{left:492.848615px;}
.xa{left:496.419632px;}
.x9{left:618.659038px;}
.x8{left:620.563834px;}
.xd{left:775.399538px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:56.821553pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-37.954380pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws7{word-spacing:-13.335024pt;}
.ws5{word-spacing:-10.740492pt;}
.ws6{word-spacing:-9.337494pt;}
.ws4{word-spacing:-6.218711pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-0.892271pt;}
._27{width:1.137456pt;}
._17{width:2.235201pt;}
._6{width:3.605518pt;}
._18{width:4.756960pt;}
._1a{width:5.673165pt;}
._0{width:6.829402pt;}
._13{width:8.016169pt;}
._1{width:9.256132pt;}
._1d{width:10.990176pt;}
._b{width:12.631102pt;}
._2{width:13.561295pt;}
._5{width:15.965252pt;}
._a{width:17.450555pt;}
._11{width:18.723951pt;}
._c{width:20.487841pt;}
._7{width:21.852341pt;}
._21{width:23.497149pt;}
._23{width:24.522920pt;}
._25{width:25.528493pt;}
._10{width:26.616202pt;}
._3{width:28.156115pt;}
._e{width:29.149658pt;}
._2d{width:30.090686pt;}
._28{width:31.046582pt;}
._35{width:32.413291pt;}
._24{width:33.938248pt;}
._2a{width:35.079500pt;}
._37{width:36.014476pt;}
._26{width:37.213398pt;}
._f{width:38.301339pt;}
._22{width:39.374514pt;}
._30{width:40.377376pt;}
._8{width:41.481350pt;}
._1e{width:42.878047pt;}
._2e{width:43.975333pt;}
._14{width:45.786557pt;}
._39{width:47.676261pt;}
._2c{width:48.663802pt;}
._1b{width:50.138134pt;}
._12{width:51.056439pt;}
._20{width:52.369644pt;}
._36{width:53.267511pt;}
._d{width:54.281873pt;}
._29{width:55.842544pt;}
._1f{width:57.090675pt;}
._9{width:58.945851pt;}
._2b{width:60.443012pt;}
._3b{width:62.067694pt;}
._3d{width:63.035815pt;}
._38{width:64.094507pt;}
._3a{width:66.457217pt;}
._32{width:68.497828pt;}
._3c{width:69.405253pt;}
._2f{width:71.045604pt;}
._16{width:72.203560pt;}
._4{width:73.900276pt;}
._33{width:75.580882pt;}
._3f{width:77.420298pt;}
._45{width:79.775455pt;}
._15{width:81.003937pt;}
._34{width:82.632799pt;}
._31{width:85.417982pt;}
._19{width:97.243487pt;}
._46{width:101.858742pt;}
._40{width:102.804133pt;}
._43{width:105.109227pt;}
._42{width:106.491299pt;}
._44{width:112.016759pt;}
._41{width:140.879923pt;}
._47{width:386.482748pt;}
._3e{width:451.416843pt;}
.fs6{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fsa{font-size:37.347871pt;}
.fs8{font-size:37.349977pt;}
.fs4{font-size:42.683279pt;}
.fs3{font-size:48.018092pt;}
.fs9{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y165{bottom:5.251773pt;}
.y164{bottom:14.066744pt;}
.yd9{bottom:18.146081pt;}
.y160{bottom:18.360018pt;}
.y163{bottom:22.881715pt;}
.y15e{bottom:23.827178pt;}
.y162{bottom:31.696686pt;}
.yfb{bottom:31.800423pt;}
.y15d{bottom:40.143562pt;}
.y161{bottom:40.511657pt;}
.y15f{bottom:40.919779pt;}
.yda{bottom:41.997184pt;}
.y2b{bottom:44.211136pt;}
.y2d{bottom:47.911846pt;}
.yfa{bottom:51.807961pt;}
.y6f{bottom:54.122963pt;}
.y15c{bottom:55.377641pt;}
.y2a{bottom:64.218674pt;}
.y2c{bottom:67.919385pt;}
.yf9{bottom:71.815500pt;}
.y6e{bottom:74.130501pt;}
.y29{bottom:84.226213pt;}
.yf8{bottom:91.823038pt;}
.y6d{bottom:94.138040pt;}
.y28{bottom:104.233751pt;}
.y53{bottom:104.246201pt;}
.yf7{bottom:111.830576pt;}
.y6c{bottom:114.145578pt;}
.y13e{bottom:115.540832pt;}
.y166{bottom:120.147742pt;}
.y27{bottom:124.241290pt;}
.y52{bottom:126.254493pt;}
.yf6{bottom:131.838115pt;}
.y6b{bottom:134.153116pt;}
.y89{bottom:134.624054pt;}
.y13d{bottom:135.548371pt;}
.yf5{bottom:137.640265pt;}
.y26{bottom:144.248828pt;}
.y6a{bottom:154.160655pt;}
.y88{bottom:154.631592pt;}
.y13c{bottom:155.555909pt;}
.yf4{bottom:157.647803pt;}
.y4f{bottom:163.189269pt;}
.y25{bottom:164.256366pt;}
.y16d{bottom:168.150226pt;}
.y69{bottom:174.168193pt;}
.y87{bottom:174.639131pt;}
.y13b{bottom:175.563447pt;}
.yf3{bottom:177.655342pt;}
.y16c{bottom:180.599516pt;}
.y4e{bottom:183.196807pt;}
.y24{bottom:184.263905pt;}
.y16b{bottom:193.048806pt;}
.y68{bottom:194.175731pt;}
.y86{bottom:194.646669pt;}
.yfe{bottom:194.795093pt;}
.y13a{bottom:195.570986pt;}
.yf2{bottom:197.662880pt;}
.y4d{bottom:203.204345pt;}
.y23{bottom:204.271443pt;}
.y16a{bottom:205.498097pt;}
.y85{bottom:214.654207pt;}
.y139{bottom:215.578524pt;}
.yfd{bottom:216.803386pt;}
.yf1{bottom:217.670418pt;}
.ya4{bottom:218.301846pt;}
.y4c{bottom:223.211884pt;}
.y22{bottom:224.278981pt;}
.y168{bottom:230.018827pt;}
.y84{bottom:234.661746pt;}
.y138{bottom:235.586063pt;}
.ya3{bottom:238.309384pt;}
.y4b{bottom:243.219422pt;}
.y21{bottom:244.286520pt;}
.y83{bottom:254.669284pt;}
.y137{bottom:255.593601pt;}
.ya2{bottom:258.316922pt;}
.y4a{bottom:263.226961pt;}
.y20{bottom:264.294058pt;}
.y82{bottom:274.676822pt;}
.y136{bottom:275.601139pt;}
.ya1{bottom:278.324461pt;}
.y49{bottom:283.234499pt;}
.y1f{bottom:284.301596pt;}
.y81{bottom:294.684361pt;}
.y135{bottom:295.608678pt;}
.ya0{bottom:298.331999pt;}
.y124{bottom:301.529045pt;}
.y48{bottom:303.242037pt;}
.y1e{bottom:304.309135pt;}
.y16e{bottom:313.516985pt;}
.y80{bottom:314.691899pt;}
.y134{bottom:315.616216pt;}
.y9f{bottom:318.339537pt;}
.y123{bottom:321.536584pt;}
.y47{bottom:323.249576pt;}
.y7f{bottom:334.699438pt;}
.y133{bottom:335.623754pt;}
.y9e{bottom:338.347076pt;}
.y122{bottom:341.544122pt;}
.y46{bottom:343.257114pt;}
.y169{bottom:343.668358pt;}
.y51{bottom:344.524244pt;}
.y7e{bottom:354.706976pt;}
.y132{bottom:355.631293pt;}
.y9d{bottom:358.354614pt;}
.y121{bottom:361.551660pt;}
.y45{bottom:363.264652pt;}
.y167{bottom:371.654981pt;}
.y7d{bottom:374.714514pt;}
.y131{bottom:375.638831pt;}
.y9c{bottom:378.362153pt;}
.y120{bottom:381.559199pt;}
.y44{bottom:383.272191pt;}
.y1d{bottom:383.472268pt;}
.y7c{bottom:394.722053pt;}
.y130{bottom:395.646369pt;}
.y9b{bottom:398.369691pt;}
.y11f{bottom:401.566737pt;}
.y43{bottom:403.279729pt;}
.y1c{bottom:403.479806pt;}
.y7b{bottom:414.729591pt;}
.y12f{bottom:415.653908pt;}
.y9a{bottom:418.377229pt;}
.y11e{bottom:421.574276pt;}
.y42{bottom:423.287267pt;}
.y1b{bottom:423.487344pt;}
.y15b{bottom:431.836138pt;}
.y7a{bottom:434.737129pt;}
.y12e{bottom:435.661446pt;}
.y99{bottom:438.384768pt;}
.y11d{bottom:441.581814pt;}
.y41{bottom:443.294806pt;}
.y1a{bottom:443.494883pt;}
.y15a{bottom:451.843676pt;}
.y79{bottom:454.744668pt;}
.y98{bottom:458.392306pt;}
.y11c{bottom:461.589352pt;}
.y40{bottom:463.302344pt;}
.y19{bottom:463.502421pt;}
.y159{bottom:471.851214pt;}
.y78{bottom:474.752206pt;}
.y12d{bottom:475.676523pt;}
.y97{bottom:478.399844pt;}
.y11b{bottom:481.596891pt;}
.y3f{bottom:483.309883pt;}
.y18{bottom:483.509959pt;}
.y158{bottom:491.858753pt;}
.y77{bottom:494.759745pt;}
.y12c{bottom:495.684061pt;}
.y96{bottom:498.407383pt;}
.y11a{bottom:501.604429pt;}
.y3e{bottom:503.317421pt;}
.y17{bottom:503.517498pt;}
.y157{bottom:511.866291pt;}
.y76{bottom:514.767283pt;}
.y12b{bottom:515.691600pt;}
.y95{bottom:518.414921pt;}
.y119{bottom:521.611967pt;}
.y3d{bottom:523.324959pt;}
.y16{bottom:523.525036pt;}
.yc0{bottom:524.657046pt;}
.ydb{bottom:530.325872pt;}
.y156{bottom:531.873829pt;}
.y75{bottom:534.774821pt;}
.y12a{bottom:535.699138pt;}
.y94{bottom:538.422459pt;}
.y118{bottom:541.619506pt;}
.y3c{bottom:543.332498pt;}
.y15{bottom:543.532574pt;}
.ybf{bottom:544.664584pt;}
.y155{bottom:551.881368pt;}
.y74{bottom:554.782360pt;}
.y129{bottom:555.706676pt;}
.y93{bottom:558.429998pt;}
.y117{bottom:561.627044pt;}
.y3b{bottom:563.340036pt;}
.y14{bottom:563.540113pt;}
.ybe{bottom:564.672122pt;}
.y154{bottom:571.888906pt;}
.y73{bottom:574.789898pt;}
.y128{bottom:575.714215pt;}
.y92{bottom:578.437536pt;}
.yd8{bottom:580.944109pt;}
.y116{bottom:581.634582pt;}
.y3a{bottom:583.347574pt;}
.y13{bottom:583.547651pt;}
.ybd{bottom:584.679661pt;}
.y153{bottom:591.896444pt;}
.y72{bottom:594.797436pt;}
.y127{bottom:595.721753pt;}
.y91{bottom:598.445075pt;}
.yd7{bottom:600.951647pt;}
.y115{bottom:601.642121pt;}
.y39{bottom:603.355113pt;}
.y12{bottom:603.555190pt;}
.ybc{bottom:604.687199pt;}
.y70{bottom:606.081204pt;}
.y152{bottom:611.903983pt;}
.y71{bottom:614.804975pt;}
.y126{bottom:615.729291pt;}
.y90{bottom:618.452613pt;}
.yd6{bottom:620.959186pt;}
.y114{bottom:621.649659pt;}
.y38{bottom:623.362651pt;}
.y11{bottom:623.562728pt;}
.ybb{bottom:624.694737pt;}
.y151{bottom:631.911521pt;}
.y67{bottom:634.812513pt;}
.y125{bottom:635.736830pt;}
.y8f{bottom:638.460151pt;}
.yd5{bottom:640.966724pt;}
.y113{bottom:641.657198pt;}
.y37{bottom:643.370190pt;}
.y10{bottom:643.570266pt;}
.yba{bottom:644.702276pt;}
.yfc{bottom:650.397455pt;}
.y150{bottom:651.919060pt;}
.y66{bottom:654.820051pt;}
.y8e{bottom:658.467690pt;}
.yd4{bottom:660.974262pt;}
.y112{bottom:661.664736pt;}
.y36{bottom:663.377728pt;}
.yf{bottom:663.577805pt;}
.yb9{bottom:664.709814pt;}
.yf0{bottom:664.736144pt;}
.y14f{bottom:671.926598pt;}
.y65{bottom:674.827590pt;}
.y8d{bottom:678.475228pt;}
.y13f{bottom:678.686336pt;}
.yd3{bottom:680.981801pt;}
.y111{bottom:681.672274pt;}
.y35{bottom:683.385266pt;}
.ye{bottom:683.585343pt;}
.yb8{bottom:684.717353pt;}
.yef{bottom:684.743682pt;}
.y14e{bottom:691.934136pt;}
.y64{bottom:694.835128pt;}
.y8c{bottom:698.482766pt;}
.yd2{bottom:700.989339pt;}
.y110{bottom:701.679813pt;}
.y34{bottom:703.392805pt;}
.yd{bottom:703.592881pt;}
.yb7{bottom:704.724891pt;}
.yee{bottom:704.751221pt;}
.y14d{bottom:711.941675pt;}
.y63{bottom:714.842667pt;}
.y8b{bottom:718.490305pt;}
.yd1{bottom:720.996877pt;}
.y10f{bottom:721.687351pt;}
.y33{bottom:723.400343pt;}
.yc{bottom:723.600420pt;}
.yb6{bottom:724.732429pt;}
.yed{bottom:724.758759pt;}
.y14c{bottom:731.949213pt;}
.y62{bottom:734.850205pt;}
.y8a{bottom:738.497843pt;}
.yd0{bottom:741.004416pt;}
.y10e{bottom:741.694889pt;}
.y32{bottom:743.407881pt;}
.yb{bottom:743.607958pt;}
.yb5{bottom:744.739968pt;}
.yec{bottom:744.766297pt;}
.y61{bottom:754.857743pt;}
.ycf{bottom:761.011954pt;}
.y10d{bottom:761.702428pt;}
.y31{bottom:763.415420pt;}
.ya{bottom:763.615497pt;}
.yb4{bottom:764.747506pt;}
.yeb{bottom:764.773836pt;}
.y14b{bottom:771.964290pt;}
.ya7{bottom:774.444725pt;}
.y60{bottom:774.865282pt;}
.yce{bottom:781.019493pt;}
.y10c{bottom:781.709966pt;}
.y30{bottom:783.422958pt;}
.y9{bottom:783.623035pt;}
.yb3{bottom:784.755044pt;}
.yea{bottom:784.781374pt;}
.y14a{bottom:791.971828pt;}
.y5f{bottom:794.872820pt;}
.ya6{bottom:796.453017pt;}
.ycd{bottom:801.027031pt;}
.y10b{bottom:801.717505pt;}
.y2f{bottom:803.430496pt;}
.yb2{bottom:804.762583pt;}
.ye9{bottom:804.788912pt;}
.y149{bottom:811.979366pt;}
.y5e{bottom:814.880358pt;}
.ya5{bottom:818.461309pt;}
.ycc{bottom:821.034569pt;}
.y10a{bottom:821.725043pt;}
.y50{bottom:822.571037pt;}
.y2e{bottom:823.438035pt;}
.yb1{bottom:824.770121pt;}
.ye8{bottom:824.796451pt;}
.y148{bottom:831.986905pt;}
.y5d{bottom:834.887897pt;}
.ycb{bottom:841.042108pt;}
.y109{bottom:841.732581pt;}
.yb0{bottom:844.777660pt;}
.ye7{bottom:844.803989pt;}
.y147{bottom:851.994443pt;}
.y5c{bottom:854.895435pt;}
.yca{bottom:861.049646pt;}
.y108{bottom:861.740120pt;}
.yaf{bottom:864.785198pt;}
.ye6{bottom:864.811527pt;}
.y5b{bottom:874.902973pt;}
.yc9{bottom:881.057184pt;}
.y107{bottom:881.747658pt;}
.y8{bottom:881.752416pt;}
.yae{bottom:884.792736pt;}
.ye5{bottom:884.819066pt;}
.y146{bottom:892.009520pt;}
.y5a{bottom:894.910512pt;}
.yc8{bottom:901.064723pt;}
.y106{bottom:901.755196pt;}
.y7{bottom:901.759955pt;}
.yad{bottom:904.800275pt;}
.ye4{bottom:904.826604pt;}
.y145{bottom:912.017058pt;}
.y59{bottom:914.918050pt;}
.yc7{bottom:921.072261pt;}
.y105{bottom:921.762735pt;}
.y6{bottom:921.767493pt;}
.yac{bottom:924.807813pt;}
.ye3{bottom:924.834143pt;}
.y144{bottom:932.024597pt;}
.y58{bottom:934.925589pt;}
.yc6{bottom:941.079800pt;}
.y104{bottom:941.770273pt;}
.y5{bottom:941.775031pt;}
.yab{bottom:944.815351pt;}
.ye2{bottom:944.841681pt;}
.y143{bottom:952.032135pt;}
.y57{bottom:954.933127pt;}
.yc5{bottom:961.087338pt;}
.y103{bottom:961.777811pt;}
.y4{bottom:961.782570pt;}
.yaa{bottom:964.822890pt;}
.ye1{bottom:964.849219pt;}
.y142{bottom:972.039673pt;}
.y56{bottom:974.940665pt;}
.yc4{bottom:981.094876pt;}
.y102{bottom:981.785350pt;}
.ya9{bottom:984.830428pt;}
.ye0{bottom:984.856758pt;}
.y141{bottom:992.047212pt;}
.y55{bottom:994.948204pt;}
.yc3{bottom:1001.102415pt;}
.y101{bottom:1001.792888pt;}
.ya8{bottom:1004.837966pt;}
.ydf{bottom:1004.864296pt;}
.y3{bottom:1012.575115pt;}
.y54{bottom:1014.955742pt;}
.yc2{bottom:1021.109953pt;}
.y100{bottom:1021.800427pt;}
.yde{bottom:1024.871834pt;}
.y140{bottom:1032.062289pt;}
.y2{bottom:1038.584915pt;}
.ydc{bottom:1040.250494pt;}
.yc1{bottom:1041.117491pt;}
.yff{bottom:1041.807965pt;}
.ydd{bottom:1044.879373pt;}
.hf{height:13.363363pt;}
.he{height:20.248123pt;}
.h11{height:21.526159pt;}
.h14{height:30.401167pt;}
.h12{height:30.402881pt;}
.ha{height:34.744189pt;}
.hb{height:39.086727pt;}
.h8{height:42.015831pt;}
.h13{height:43.418839pt;}
.hd{height:47.222992pt;}
.h10{height:47.679998pt;}
.h9{height:47.750951pt;}
.h4{height:48.572220pt;}
.h7{height:51.329339pt;}
.h5{height:52.267933pt;}
.h6{height:53.011974pt;}
.h3{height:61.825214pt;}
.hc{height:108.150892pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.713202pt;}
.xe{left:47.459354pt;}
.x1{left:49.920549pt;}
.x7{left:63.644470pt;}
.x6{left:79.399990pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x2{left:316.458479pt;}
.x4{left:413.156389pt;}
.x5{left:438.087658pt;}
.xa{left:441.261895pt;}
.x9{left:549.919145pt;}
.x8{left:551.612297pt;}
.xd{left:689.244034pt;}
}




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