
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_424fb588df74df0d17327d9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_2733109c5542f18ab53506f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_d45bcd97084b161348acc5c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_137984a5a2f9a543c456e65c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_6e2c2151de0c0f25d9a2e1d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_2209df74b4aed4f9bb2a3c84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747000;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:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.269400px;}
.ls25{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.223800px;}
.ls1f{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.181200px;}
.ls17{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls1e{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144720px;}
.ls11{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.178560px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.206640px;}
.lsb{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.269400px;}
.ls22{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.439920px;}
.ls10{letter-spacing:0.450720px;}
.lsf{letter-spacing:0.666720px;}
.ls16{letter-spacing:0.900000px;}
.ls1c{letter-spacing:3.029760px;}
.ls24{letter-spacing:3.749760px;}
.ls1b{letter-spacing:5.189760px;}
.ls21{letter-spacing:7.325760px;}
.ls23{letter-spacing:10.949760px;}
.ls19{letter-spacing:21.546720px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.093600px;}
.ws12{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.ws5{word-spacing:-13.626000px;}
.wsd{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.241200px;}
.ws2{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.878800px;}
.wsb{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.800000px;}
.wsf{word-spacing:-9.720000px;}
.wse{word-spacing:-9.715680px;}
.ws4{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-8.297520px;}
._16{margin-left:-7.014720px;}
._17{margin-left:-5.398080px;}
._e{margin-left:-4.062240px;}
._9{margin-left:-3.003120px;}
._0{margin-left:-1.495440px;}
._1{width:1.041120px;}
._2{width:2.137440px;}
._7{width:3.295440px;}
._8{width:5.292000px;}
._6{width:6.480000px;}
._4{width:7.722000px;}
._3{width:8.964000px;}
._5{width:10.692000px;}
._a{width:12.079440px;}
._b{width:13.913040px;}
._f{width:16.130160px;}
._19{width:17.370720px;}
._11{width:19.541520px;}
._14{width:21.394080px;}
._13{width:22.410000px;}
._1a{width:23.479680px;}
._d{width:26.634240px;}
._c{width:27.763200px;}
._12{width:1264.049760px;}
._15{width:1268.219520px;}
._10{width:1413.209760px;}
.fc5{color:rgb(64,67,75);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:12.240000px;}
.fs5{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y75{bottom:-14.400000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.880000px;}
.y79{bottom:3.600000px;}
.y7e{bottom:3.780000px;}
.y74{bottom:6.480000px;}
.y66{bottom:8.820000px;}
.y69{bottom:9.000000px;}
.y70{bottom:9.030000px;}
.y4{bottom:18.000000px;}
.ya{bottom:45.396000px;}
.y32{bottom:45.756000px;}
.y9{bottom:60.336000px;}
.y8{bottom:75.456000px;}
.y7{bottom:90.396000px;}
.y63{bottom:92.556000px;}
.ye3{bottom:95.796000px;}
.y3{bottom:97.950000px;}
.yc3{bottom:100.476000px;}
.y89{bottom:104.796000px;}
.y6{bottom:105.336000px;}
.y62{bottom:110.556000px;}
.ye2{bottom:113.076000px;}
.yc2{bottom:118.476000px;}
.y88{bottom:122.796000px;}
.y61{bottom:128.556000px;}
.ye1{bottom:130.356000px;}
.y2f{bottom:135.756000px;}
.yc1{bottom:136.476000px;}
.y114{bottom:138.456000px;}
.y87{bottom:140.796000px;}
.y60{bottom:146.556000px;}
.ye0{bottom:147.636000px;}
.y2e{bottom:153.750000px;}
.yc0{bottom:154.470000px;}
.y86{bottom:158.790000px;}
.yaa{bottom:159.690000px;}
.y5f{bottom:164.550000px;}
.ydf{bottom:164.910000px;}
.y2d{bottom:171.750000px;}
.ybf{bottom:172.470000px;}
.y85{bottom:176.790000px;}
.yde{bottom:182.010000px;}
.y113{bottom:182.190000px;}
.y5e{bottom:182.550000px;}
.ya9{bottom:186.330000px;}
.y2c{bottom:189.750000px;}
.ybe{bottom:190.470000px;}
.ydd{bottom:199.290000px;}
.y112{bottom:199.470000px;}
.y5d{bottom:200.550000px;}
.y84{bottom:203.430000px;}
.y9a{bottom:203.610000px;}
.ya8{bottom:204.330000px;}
.y2b{bottom:207.750000px;}
.ybd{bottom:208.470000px;}
.ydc{bottom:216.570000px;}
.y111{bottom:216.750000px;}
.y5c{bottom:218.550000px;}
.y99{bottom:221.610000px;}
.ya7{bottom:222.330000px;}
.y2a{bottom:225.750000px;}
.ybc{bottom:226.470000px;}
.ydb{bottom:233.850000px;}
.y110{bottom:234.030000px;}
.y5b{bottom:236.550000px;}
.y98{bottom:239.610000px;}
.y83{bottom:239.970000px;}
.ya6{bottom:240.330000px;}
.y29{bottom:243.750000px;}
.ybb{bottom:244.470000px;}
.yda{bottom:251.130000px;}
.y10f{bottom:251.310000px;}
.y5a{bottom:254.550000px;}
.y82{bottom:256.350000px;}
.y97{bottom:257.610000px;}
.ya5{bottom:258.330000px;}
.y28{bottom:261.795000px;}
.yba{bottom:262.515000px;}
.yd9{bottom:268.455000px;}
.y10e{bottom:268.635000px;}
.y81{bottom:272.055000px;}
.y59{bottom:272.595000px;}
.y96{bottom:275.655000px;}
.ya4{bottom:276.375000px;}
.y27{bottom:279.795000px;}
.y10d{bottom:285.735000px;}
.y80{bottom:287.715000px;}
.yd8{bottom:288.255000px;}
.y58{bottom:290.595000px;}
.y95{bottom:293.655000px;}
.ya3{bottom:294.375000px;}
.y26{bottom:297.795000px;}
.yb9{bottom:297.975000px;}
.y10c{bottom:303.015000px;}
.y7f{bottom:303.375000px;}
.yd7{bottom:308.055000px;}
.y57{bottom:308.595000px;}
.ya2{bottom:309.495000px;}
.y94{bottom:311.655000px;}
.y25{bottom:315.795000px;}
.y7d{bottom:319.035000px;}
.y10b{bottom:320.295000px;}
.y56{bottom:326.595000px;}
.yd6{bottom:327.855000px;}
.yb8{bottom:328.035000px;}
.y93{bottom:329.655000px;}
.ya1{bottom:330.555000px;}
.y24{bottom:333.795000px;}
.y7c{bottom:334.875000px;}
.y10a{bottom:337.575000px;}
.y55{bottom:344.595000px;}
.yd5{bottom:345.135000px;}
.y92{bottom:347.655000px;}
.y7b{bottom:350.535000px;}
.ya0{bottom:352.335000px;}
.y109{bottom:354.855000px;}
.yd4{bottom:362.415000px;}
.y54{bottom:362.595000px;}
.y91{bottom:365.655000px;}
.y7a{bottom:366.195000px;}
.y23{bottom:369.615000px;}
.y108{bottom:372.135000px;}
.yd3{bottom:379.695000px;}
.y53{bottom:380.595000px;}
.y78{bottom:381.855000px;}
.y90{bottom:383.655000px;}
.y107{bottom:389.235000px;}
.y9f{bottom:394.995000px;}
.yd2{bottom:396.795000px;}
.y76{bottom:397.515000px;}
.y52{bottom:398.595000px;}
.y8f{bottom:401.655000px;}
.y106{bottom:406.515000px;}
.y73{bottom:413.175000px;}
.yd1{bottom:414.075000px;}
.y51{bottom:416.595000px;}
.y8e{bottom:419.655000px;}
.y22{bottom:420.915000px;}
.y105{bottom:423.795000px;}
.y9e{bottom:427.935000px;}
.yd0{bottom:431.355000px;}
.y50{bottom:434.595000px;}
.y8d{bottom:437.655000px;}
.y104{bottom:441.075000px;}
.y4f{bottom:452.595000px;}
.y72{bottom:453.495000px;}
.y21{bottom:454.215000px;}
.y9d{bottom:454.935000px;}
.y8c{bottom:455.655000px;}
.y103{bottom:458.355000px;}
.ycf{bottom:466.995000px;}
.y20{bottom:470.595000px;}
.y102{bottom:475.635000px;}
.y71{bottom:483.735000px;}
.y1f{bottom:487.155000px;}
.y4e{bottom:488.595000px;}
.y8b{bottom:490.935000px;}
.y101{bottom:492.735000px;}
.y6f{bottom:498.495000px;}
.yce{bottom:502.995000px;}
.y1e{bottom:503.715000px;}
.y4d{bottom:506.625000px;}
.y100{bottom:510.045000px;}
.y6e{bottom:519.585000px;}
.y1d{bottom:520.125000px;}
.y8a{bottom:521.025000px;}
.y4c{bottom:524.625000px;}
.yff{bottom:527.325000px;}
.y1c{bottom:536.685000px;}
.ycd{bottom:539.025000px;}
.y6d{bottom:540.465000px;}
.y4b{bottom:542.625000px;}
.yfe{bottom:544.605000px;}
.yb7{bottom:546.045000px;}
.y1b{bottom:553.245000px;}
.ycc{bottom:557.025000px;}
.y4a{bottom:560.625000px;}
.y6c{bottom:561.525000px;}
.yfd{bottom:561.885000px;}
.y1a{bottom:569.625000px;}
.yb6{bottom:572.685000px;}
.ycb{bottom:575.025000px;}
.y49{bottom:578.625000px;}
.yfc{bottom:578.985000px;}
.y6b{bottom:582.585000px;}
.y19{bottom:586.185000px;}
.yb5{bottom:590.685000px;}
.yca{bottom:593.025000px;}
.yfb{bottom:596.265000px;}
.y48{bottom:596.625000px;}
.y18{bottom:602.745000px;}
.y6a{bottom:603.465000px;}
.yb4{bottom:608.685000px;}
.yc9{bottom:611.025000px;}
.yfa{bottom:613.545000px;}
.y47{bottom:614.625000px;}
.y17{bottom:619.125000px;}
.y68{bottom:624.525000px;}
.yb3{bottom:626.685000px;}
.yc8{bottom:629.025000px;}
.yf9{bottom:630.825000px;}
.y46{bottom:632.625000px;}
.y16{bottom:635.685000px;}
.yb2{bottom:644.685000px;}
.y67{bottom:645.585000px;}
.yf8{bottom:648.105000px;}
.y45{bottom:650.625000px;}
.y15{bottom:652.245000px;}
.yb1{bottom:662.685000px;}
.yc7{bottom:665.025000px;}
.yf7{bottom:665.385000px;}
.y65{bottom:667.365000px;}
.y14{bottom:668.625000px;}
.yb0{bottom:680.685000px;}
.yf6{bottom:682.485000px;}
.y44{bottom:686.625000px;}
.yaf{bottom:698.685000px;}
.yf5{bottom:699.765000px;}
.yc6{bottom:700.305000px;}
.y13{bottom:701.745000px;}
.y43{bottom:704.625000px;}
.y64{bottom:710.025000px;}
.yae{bottom:716.685000px;}
.yf4{bottom:717.045000px;}
.y42{bottom:722.625000px;}
.yc5{bottom:730.365000px;}
.yf3{bottom:734.325000px;}
.yad{bottom:734.685000px;}
.y41{bottom:740.625000px;}
.y12{bottom:742.065000px;}
.yf2{bottom:751.650000px;}
.y9c{bottom:752.910000px;}
.y40{bottom:758.670000px;}
.y11{bottom:765.510000px;}
.yf1{bottom:768.930000px;}
.yac{bottom:770.010000px;}
.y3f{bottom:776.670000px;}
.y9b{bottom:779.730000px;}
.y10{bottom:784.950000px;}
.yf0{bottom:786.030000px;}
.y3e{bottom:794.670000px;}
.yf{bottom:795.030000px;}
.yab{bottom:800.070000px;}
.yef{bottom:803.310000px;}
.ye{bottom:808.890000px;}
.y3d{bottom:812.670000px;}
.yee{bottom:820.590000px;}
.yd{bottom:827.610000px;}
.y3c{bottom:830.670000px;}
.yed{bottom:837.870000px;}
.y3b{bottom:848.670000px;}
.yc{bottom:851.550000px;}
.yec{bottom:855.150000px;}
.y3a{bottom:866.670000px;}
.yeb{bottom:872.250000px;}
.y39{bottom:884.670000px;}
.yb{bottom:886.110000px;}
.yea{bottom:889.530000px;}
.y38{bottom:902.670000px;}
.y5{bottom:904.830000px;}
.ye9{bottom:906.810000px;}
.y37{bottom:920.670000px;}
.ye8{bottom:924.090000px;}
.y36{bottom:938.670000px;}
.y2{bottom:940.110000px;}
.ye7{bottom:941.370000px;}
.yc4{bottom:948.030000px;}
.y35{bottom:956.670000px;}
.ye6{bottom:958.650000px;}
.y34{bottom:974.670000px;}
.ye5{bottom:975.750000px;}
.y33{bottom:992.700000px;}
.ye4{bottom:993.060000px;}
.y31{bottom:1040.220000px;}
.y1{bottom:1072.980000px;}
.y30{bottom:1076.220000px;}
.h7{height:10.399219px;}
.h15{height:14.940000px;}
.h16{height:15.660000px;}
.h18{height:15.696000px;}
.h17{height:15.840000px;}
.h14{height:18.540000px;}
.h11{height:20.880000px;}
.h12{height:21.060000px;}
.h13{height:21.096000px;}
.ha{height:25.692188px;}
.hc{height:38.100586px;}
.h6{height:40.254961px;}
.h5{height:40.985156px;}
.h1b{height:42.164648px;}
.h1a{height:43.234453px;}
.he{height:43.506914px;}
.hd{height:45.061523px;}
.hf{height:49.868086px;}
.h10{height:50.772656px;}
.h1c{height:53.424000px;}
.h9{height:58.607578px;}
.hb{height:60.082031px;}
.h8{height:64.888594px;}
.h3{height:65.884219px;}
.h19{height:73.722656px;}
.h4{height:110.376000px;}
.h1{height:1105.500000px;}
.h2{height:1105.739908px;}
.h0{height:1105.740000px;}
.w5{width:66.420000px;}
.w4{width:90.576000px;}
.w8{width:109.800000px;}
.w7{width:109.836000px;}
.w6{width:113.976000px;}
.w9{width:116.676000px;}
.wa{width:131.976000px;}
.wc{width:132.120000px;}
.wb{width:132.156000px;}
.w3{width:677.310000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x11{left:8.136000px;}
.x19{left:10.620000px;}
.x13{left:14.040000px;}
.x1d{left:15.120000px;}
.x15{left:19.620000px;}
.x14{left:22.500000px;}
.x17{left:26.100000px;}
.x29{left:37.260000px;}
.x22{left:44.280000px;}
.x1e{left:45.900000px;}
.x21{left:47.340000px;}
.x1f{left:48.780000px;}
.x20{left:51.840000px;}
.x1a{left:54.900000px;}
.x2d{left:59.985000px;}
.x1{left:72.359988px;}
.x2{left:80.496000px;}
.xf{left:84.275988px;}
.x5{left:90.395988px;}
.x31{left:99.395988px;}
.x30{left:150.509988px;}
.x12{left:162.930000px;}
.x2f{left:174.629988px;}
.x16{left:186.330000px;}
.x28{left:189.030000px;}
.x26{left:191.369988px;}
.x6{left:196.049988px;}
.x3{left:200.379000px;}
.x24{left:211.529988px;}
.xb{left:214.949988px;}
.x7{left:247.034988px;}
.xc{left:254.774988px;}
.xa{left:262.694988px;}
.x9{left:279.434988px;}
.x8{left:294.734988px;}
.x18{left:296.175000px;}
.x2a{left:321.015000px;}
.x23{left:376.274988px;}
.x10{left:400.214988px;}
.xd{left:404.024988px;}
.x1b{left:406.005000px;}
.x2b{left:453.165000px;}
.x1c{left:515.805000px;}
.x2c{left:585.150000px;}
.x25{left:603.509988px;}
.x27{left:610.349988px;}
.x4{left:676.224000px;}
.x2e{left:726.089988px;}
.xe{left:735.839988px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.198933pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls17{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128640pt;}
.ls11{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.158720pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.183680pt;}
.lsb{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.239467pt;}
.ls22{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.391040pt;}
.ls10{letter-spacing:0.400640pt;}
.lsf{letter-spacing:0.592640pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:2.693120pt;}
.ls24{letter-spacing:3.333120pt;}
.ls1b{letter-spacing:4.613120pt;}
.ls21{letter-spacing:6.511787pt;}
.ls23{letter-spacing:9.733120pt;}
.ls19{letter-spacing:19.152640pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.416533pt;}
.ws12{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.096533pt;}
.ws14{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.112000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.881067pt;}
.ws2{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.558933pt;}
.wsb{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.600000pt;}
.wsf{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.636160pt;}
.ws4{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-7.375573pt;}
._16{margin-left:-6.235307pt;}
._17{margin-left:-4.798293pt;}
._e{margin-left:-3.610880pt;}
._9{margin-left:-2.669440pt;}
._0{margin-left:-1.329280pt;}
._1{width:0.925440pt;}
._2{width:1.899947pt;}
._7{width:2.929280pt;}
._8{width:4.704000pt;}
._6{width:5.760000pt;}
._4{width:6.864000pt;}
._3{width:7.968000pt;}
._5{width:9.504000pt;}
._a{width:10.737280pt;}
._b{width:12.367147pt;}
._f{width:14.337920pt;}
._19{width:15.440640pt;}
._11{width:17.370240pt;}
._14{width:19.016960pt;}
._13{width:19.920000pt;}
._1a{width:20.870827pt;}
._d{width:23.674880pt;}
._c{width:24.678400pt;}
._12{width:1123.599787pt;}
._15{width:1127.306240pt;}
._10{width:1256.186453pt;}
.fs2{font-size:10.880000pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y75{bottom:-12.800000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.560000pt;}
.y79{bottom:3.200000pt;}
.y7e{bottom:3.360000pt;}
.y74{bottom:5.760000pt;}
.y66{bottom:7.840000pt;}
.y69{bottom:8.000000pt;}
.y70{bottom:8.026667pt;}
.y4{bottom:16.000000pt;}
.ya{bottom:40.352000pt;}
.y32{bottom:40.672000pt;}
.y9{bottom:53.632000pt;}
.y8{bottom:67.072000pt;}
.y7{bottom:80.352000pt;}
.y63{bottom:82.272000pt;}
.ye3{bottom:85.152000pt;}
.y3{bottom:87.066667pt;}
.yc3{bottom:89.312000pt;}
.y89{bottom:93.152000pt;}
.y6{bottom:93.632000pt;}
.y62{bottom:98.272000pt;}
.ye2{bottom:100.512000pt;}
.yc2{bottom:105.312000pt;}
.y88{bottom:109.152000pt;}
.y61{bottom:114.272000pt;}
.ye1{bottom:115.872000pt;}
.y2f{bottom:120.672000pt;}
.yc1{bottom:121.312000pt;}
.y114{bottom:123.072000pt;}
.y87{bottom:125.152000pt;}
.y60{bottom:130.272000pt;}
.ye0{bottom:131.232000pt;}
.y2e{bottom:136.666667pt;}
.yc0{bottom:137.306667pt;}
.y86{bottom:141.146667pt;}
.yaa{bottom:141.946667pt;}
.y5f{bottom:146.266667pt;}
.ydf{bottom:146.586667pt;}
.y2d{bottom:152.666667pt;}
.ybf{bottom:153.306667pt;}
.y85{bottom:157.146667pt;}
.yde{bottom:161.786667pt;}
.y113{bottom:161.946667pt;}
.y5e{bottom:162.266667pt;}
.ya9{bottom:165.626667pt;}
.y2c{bottom:168.666667pt;}
.ybe{bottom:169.306667pt;}
.ydd{bottom:177.146667pt;}
.y112{bottom:177.306667pt;}
.y5d{bottom:178.266667pt;}
.y84{bottom:180.826667pt;}
.y9a{bottom:180.986667pt;}
.ya8{bottom:181.626667pt;}
.y2b{bottom:184.666667pt;}
.ybd{bottom:185.306667pt;}
.ydc{bottom:192.506667pt;}
.y111{bottom:192.666667pt;}
.y5c{bottom:194.266667pt;}
.y99{bottom:196.986667pt;}
.ya7{bottom:197.626667pt;}
.y2a{bottom:200.666667pt;}
.ybc{bottom:201.306667pt;}
.ydb{bottom:207.866667pt;}
.y110{bottom:208.026667pt;}
.y5b{bottom:210.266667pt;}
.y98{bottom:212.986667pt;}
.y83{bottom:213.306667pt;}
.ya6{bottom:213.626667pt;}
.y29{bottom:216.666667pt;}
.ybb{bottom:217.306667pt;}
.yda{bottom:223.226667pt;}
.y10f{bottom:223.386667pt;}
.y5a{bottom:226.266667pt;}
.y82{bottom:227.866667pt;}
.y97{bottom:228.986667pt;}
.ya5{bottom:229.626667pt;}
.y28{bottom:232.706667pt;}
.yba{bottom:233.346667pt;}
.yd9{bottom:238.626667pt;}
.y10e{bottom:238.786667pt;}
.y81{bottom:241.826667pt;}
.y59{bottom:242.306667pt;}
.y96{bottom:245.026667pt;}
.ya4{bottom:245.666667pt;}
.y27{bottom:248.706667pt;}
.y10d{bottom:253.986667pt;}
.y80{bottom:255.746667pt;}
.yd8{bottom:256.226667pt;}
.y58{bottom:258.306667pt;}
.y95{bottom:261.026667pt;}
.ya3{bottom:261.666667pt;}
.y26{bottom:264.706667pt;}
.yb9{bottom:264.866667pt;}
.y10c{bottom:269.346667pt;}
.y7f{bottom:269.666667pt;}
.yd7{bottom:273.826667pt;}
.y57{bottom:274.306667pt;}
.ya2{bottom:275.106667pt;}
.y94{bottom:277.026667pt;}
.y25{bottom:280.706667pt;}
.y7d{bottom:283.586667pt;}
.y10b{bottom:284.706667pt;}
.y56{bottom:290.306667pt;}
.yd6{bottom:291.426667pt;}
.yb8{bottom:291.586667pt;}
.y93{bottom:293.026667pt;}
.ya1{bottom:293.826667pt;}
.y24{bottom:296.706667pt;}
.y7c{bottom:297.666667pt;}
.y10a{bottom:300.066667pt;}
.y55{bottom:306.306667pt;}
.yd5{bottom:306.786667pt;}
.y92{bottom:309.026667pt;}
.y7b{bottom:311.586667pt;}
.ya0{bottom:313.186667pt;}
.y109{bottom:315.426667pt;}
.yd4{bottom:322.146667pt;}
.y54{bottom:322.306667pt;}
.y91{bottom:325.026667pt;}
.y7a{bottom:325.506667pt;}
.y23{bottom:328.546667pt;}
.y108{bottom:330.786667pt;}
.yd3{bottom:337.506667pt;}
.y53{bottom:338.306667pt;}
.y78{bottom:339.426667pt;}
.y90{bottom:341.026667pt;}
.y107{bottom:345.986667pt;}
.y9f{bottom:351.106667pt;}
.yd2{bottom:352.706667pt;}
.y76{bottom:353.346667pt;}
.y52{bottom:354.306667pt;}
.y8f{bottom:357.026667pt;}
.y106{bottom:361.346667pt;}
.y73{bottom:367.266667pt;}
.yd1{bottom:368.066667pt;}
.y51{bottom:370.306667pt;}
.y8e{bottom:373.026667pt;}
.y22{bottom:374.146667pt;}
.y105{bottom:376.706667pt;}
.y9e{bottom:380.386667pt;}
.yd0{bottom:383.426667pt;}
.y50{bottom:386.306667pt;}
.y8d{bottom:389.026667pt;}
.y104{bottom:392.066667pt;}
.y4f{bottom:402.306667pt;}
.y72{bottom:403.106667pt;}
.y21{bottom:403.746667pt;}
.y9d{bottom:404.386667pt;}
.y8c{bottom:405.026667pt;}
.y103{bottom:407.426667pt;}
.ycf{bottom:415.106667pt;}
.y20{bottom:418.306667pt;}
.y102{bottom:422.786667pt;}
.y71{bottom:429.986667pt;}
.y1f{bottom:433.026667pt;}
.y4e{bottom:434.306667pt;}
.y8b{bottom:436.386667pt;}
.y101{bottom:437.986667pt;}
.y6f{bottom:443.106667pt;}
.yce{bottom:447.106667pt;}
.y1e{bottom:447.746667pt;}
.y4d{bottom:450.333333pt;}
.y100{bottom:453.373333pt;}
.y6e{bottom:461.853333pt;}
.y1d{bottom:462.333333pt;}
.y8a{bottom:463.133333pt;}
.y4c{bottom:466.333333pt;}
.yff{bottom:468.733333pt;}
.y1c{bottom:477.053333pt;}
.ycd{bottom:479.133333pt;}
.y6d{bottom:480.413333pt;}
.y4b{bottom:482.333333pt;}
.yfe{bottom:484.093333pt;}
.yb7{bottom:485.373333pt;}
.y1b{bottom:491.773333pt;}
.ycc{bottom:495.133333pt;}
.y4a{bottom:498.333333pt;}
.y6c{bottom:499.133333pt;}
.yfd{bottom:499.453333pt;}
.y1a{bottom:506.333333pt;}
.yb6{bottom:509.053333pt;}
.ycb{bottom:511.133333pt;}
.y49{bottom:514.333333pt;}
.yfc{bottom:514.653333pt;}
.y6b{bottom:517.853333pt;}
.y19{bottom:521.053333pt;}
.yb5{bottom:525.053333pt;}
.yca{bottom:527.133333pt;}
.yfb{bottom:530.013333pt;}
.y48{bottom:530.333333pt;}
.y18{bottom:535.773333pt;}
.y6a{bottom:536.413333pt;}
.yb4{bottom:541.053333pt;}
.yc9{bottom:543.133333pt;}
.yfa{bottom:545.373333pt;}
.y47{bottom:546.333333pt;}
.y17{bottom:550.333333pt;}
.y68{bottom:555.133333pt;}
.yb3{bottom:557.053333pt;}
.yc8{bottom:559.133333pt;}
.yf9{bottom:560.733333pt;}
.y46{bottom:562.333333pt;}
.y16{bottom:565.053333pt;}
.yb2{bottom:573.053333pt;}
.y67{bottom:573.853333pt;}
.yf8{bottom:576.093333pt;}
.y45{bottom:578.333333pt;}
.y15{bottom:579.773333pt;}
.yb1{bottom:589.053333pt;}
.yc7{bottom:591.133333pt;}
.yf7{bottom:591.453333pt;}
.y65{bottom:593.213333pt;}
.y14{bottom:594.333333pt;}
.yb0{bottom:605.053333pt;}
.yf6{bottom:606.653333pt;}
.y44{bottom:610.333333pt;}
.yaf{bottom:621.053333pt;}
.yf5{bottom:622.013333pt;}
.yc6{bottom:622.493333pt;}
.y13{bottom:623.773333pt;}
.y43{bottom:626.333333pt;}
.y64{bottom:631.133333pt;}
.yae{bottom:637.053333pt;}
.yf4{bottom:637.373333pt;}
.y42{bottom:642.333333pt;}
.yc5{bottom:649.213333pt;}
.yf3{bottom:652.733333pt;}
.yad{bottom:653.053333pt;}
.y41{bottom:658.333333pt;}
.y12{bottom:659.613333pt;}
.yf2{bottom:668.133333pt;}
.y9c{bottom:669.253333pt;}
.y40{bottom:674.373333pt;}
.y11{bottom:680.453333pt;}
.yf1{bottom:683.493333pt;}
.yac{bottom:684.453333pt;}
.y3f{bottom:690.373333pt;}
.y9b{bottom:693.093333pt;}
.y10{bottom:697.733333pt;}
.yf0{bottom:698.693333pt;}
.y3e{bottom:706.373333pt;}
.yf{bottom:706.693333pt;}
.yab{bottom:711.173333pt;}
.yef{bottom:714.053333pt;}
.ye{bottom:719.013333pt;}
.y3d{bottom:722.373333pt;}
.yee{bottom:729.413333pt;}
.yd{bottom:735.653333pt;}
.y3c{bottom:738.373333pt;}
.yed{bottom:744.773333pt;}
.y3b{bottom:754.373333pt;}
.yc{bottom:756.933333pt;}
.yec{bottom:760.133333pt;}
.y3a{bottom:770.373333pt;}
.yeb{bottom:775.333333pt;}
.y39{bottom:786.373333pt;}
.yb{bottom:787.653333pt;}
.yea{bottom:790.693333pt;}
.y38{bottom:802.373333pt;}
.y5{bottom:804.293333pt;}
.ye9{bottom:806.053333pt;}
.y37{bottom:818.373333pt;}
.ye8{bottom:821.413333pt;}
.y36{bottom:834.373333pt;}
.y2{bottom:835.653333pt;}
.ye7{bottom:836.773333pt;}
.yc4{bottom:842.693333pt;}
.y35{bottom:850.373333pt;}
.ye6{bottom:852.133333pt;}
.y34{bottom:866.373333pt;}
.ye5{bottom:867.333333pt;}
.y33{bottom:882.400000pt;}
.ye4{bottom:882.720000pt;}
.y31{bottom:924.640000pt;}
.y1{bottom:953.760000pt;}
.y30{bottom:956.640000pt;}
.h7{height:9.243750pt;}
.h15{height:13.280000pt;}
.h16{height:13.920000pt;}
.h18{height:13.952000pt;}
.h17{height:14.080000pt;}
.h14{height:16.480000pt;}
.h11{height:18.560000pt;}
.h12{height:18.720000pt;}
.h13{height:18.752000pt;}
.ha{height:22.837500pt;}
.hc{height:33.867188pt;}
.h6{height:35.782187pt;}
.h5{height:36.431250pt;}
.h1b{height:37.479688pt;}
.h1a{height:38.430625pt;}
.he{height:38.672812pt;}
.hd{height:40.054688pt;}
.hf{height:44.327188pt;}
.h10{height:45.131250pt;}
.h1c{height:47.488000pt;}
.h9{height:52.095625pt;}
.hb{height:53.406250pt;}
.h8{height:57.678750pt;}
.h3{height:58.563750pt;}
.h19{height:65.531250pt;}
.h4{height:98.112000pt;}
.h1{height:982.666667pt;}
.h2{height:982.879919pt;}
.h0{height:982.880000pt;}
.w5{width:59.040000pt;}
.w4{width:80.512000pt;}
.w8{width:97.600000pt;}
.w7{width:97.632000pt;}
.w6{width:101.312000pt;}
.w9{width:103.712000pt;}
.wa{width:117.312000pt;}
.wc{width:117.440000pt;}
.wb{width:117.472000pt;}
.w3{width:602.053333pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x11{left:7.232000pt;}
.x19{left:9.440000pt;}
.x13{left:12.480000pt;}
.x1d{left:13.440000pt;}
.x15{left:17.440000pt;}
.x14{left:20.000000pt;}
.x17{left:23.200000pt;}
.x29{left:33.120000pt;}
.x22{left:39.360000pt;}
.x1e{left:40.800000pt;}
.x21{left:42.080000pt;}
.x1f{left:43.360000pt;}
.x20{left:46.080000pt;}
.x1a{left:48.800000pt;}
.x2d{left:53.320000pt;}
.x1{left:64.319989pt;}
.x2{left:71.552000pt;}
.xf{left:74.911989pt;}
.x5{left:80.351989pt;}
.x31{left:88.351989pt;}
.x30{left:133.786656pt;}
.x12{left:144.826667pt;}
.x2f{left:155.226656pt;}
.x16{left:165.626667pt;}
.x28{left:168.026667pt;}
.x26{left:170.106656pt;}
.x6{left:174.266656pt;}
.x3{left:178.114667pt;}
.x24{left:188.026656pt;}
.xb{left:191.066656pt;}
.x7{left:219.586656pt;}
.xc{left:226.466656pt;}
.xa{left:233.506656pt;}
.x9{left:248.386656pt;}
.x8{left:261.986656pt;}
.x18{left:263.266667pt;}
.x2a{left:285.346667pt;}
.x23{left:334.466656pt;}
.x10{left:355.746656pt;}
.xd{left:359.133323pt;}
.x1b{left:360.893333pt;}
.x2b{left:402.813333pt;}
.x1c{left:458.493333pt;}
.x2c{left:520.133333pt;}
.x25{left:536.453323pt;}
.x27{left:542.533323pt;}
.x4{left:601.088000pt;}
.x2e{left:645.413323pt;}
.xe{left:654.079989pt;}
}




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