
    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_566327e9ae92623d9bd7b5cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_84bfebd946d9c1b2a646d1a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_f06736eaa51ceef41ed0e4f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_fe5602fb0c25619eb5a352fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7ef0991ea784d094544a4fe4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8347e4b315af70ca0fdc2041.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_90195836baa72b9569b256d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3057fb23374ed37c7a4bf06b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d24c471ba8958bcc7a795692.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_d6daf6705d983da1cbe8fb04.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.176000px;}
.lsd{letter-spacing:-0.666000px;}
.ls26{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.259800px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.030960px;}
.ls10{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.252720px;}
.ls5{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.336000px;}
.ls1a{letter-spacing:0.341400px;}
.ls23{letter-spacing:0.350400px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.460200px;}
.ls24{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.900000px;}
.ls22{letter-spacing:0.924000px;}
.ls11{letter-spacing:1.080000px;}
.ls7{letter-spacing:6.426720px;}
.ls8{letter-spacing:10.026720px;}
.ls1f{letter-spacing:10.224000px;}
.ls25{letter-spacing:11.466720px;}
.ls14{letter-spacing:15.066720px;}
.ls15{letter-spacing:17.946720px;}
.ls1d{letter-spacing:18.144000px;}
.lsc{letter-spacing:19.386720px;}
.ls20{letter-spacing:20.826720px;}
.ls16{letter-spacing:28.026720px;}
.ls9{letter-spacing:33.066720px;}
.lsa{letter-spacing:36.666720px;}
.ls1e{letter-spacing:37.584000px;}
.ls13{letter-spacing:41.706720px;}
.ls12{letter-spacing:44.586720px;}
.ls2{letter-spacing:44.784000px;}
.ls21{letter-spacing:47.466720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws16{word-spacing:-21.420000px;}
.ws15{word-spacing:-21.410400px;}
.ws11{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.312720px;}
.ws10{word-spacing:-21.060000px;}
.ws12{word-spacing:-20.370960px;}
.wse{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.wsb{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.274000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._5{margin-left:-1477.509120px;}
._3{margin-left:-1449.751680px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._10{margin-left:-14.325600px;}
._f{margin-left:-4.933440px;}
._1b{margin-left:-3.490560px;}
._d{margin-left:-2.485440px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._9{width:2.616240px;}
._a{width:4.081200px;}
._e{width:5.956560px;}
._8{width:7.086240px;}
._7{width:8.522640px;}
._1f{width:9.733680px;}
._c{width:11.178720px;}
._b{width:12.310560px;}
._20{width:13.679760px;}
._16{width:16.484880px;}
._21{width:17.629200px;}
._23{width:24.027360px;}
._22{width:25.109040px;}
._13{width:27.190800px;}
._11{width:32.150880px;}
._14{width:37.170720px;}
._17{width:40.696560px;}
._15{width:47.270160px;}
._19{width:106.459920px;}
._18{width:141.542400px;}
._12{width:175.395600px;}
._1d{width:1991.938560px;}
._1c{width:2371.020000px;}
._1e{width:2501.878560px;}
._1a{width:2564.338560px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs7{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y8e{bottom:-1.764000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.240000px;}
.yc4{bottom:3.345000px;}
.yc0{bottom:3.390000px;}
.yb6{bottom:3.525000px;}
.yb3{bottom:3.570000px;}
.yb0{bottom:3.705000px;}
.yc3{bottom:4.605000px;}
.yb5{bottom:4.785000px;}
.yb2{bottom:4.830000px;}
.yab{bottom:4.965000px;}
.ya5{bottom:5.010000px;}
.ya7{bottom:5.190000px;}
.ya9{bottom:5.325000px;}
.yc9{bottom:5.730000px;}
.y11b{bottom:5.760000px;}
.yba{bottom:5.865000px;}
.ybd{bottom:5.910000px;}
.y12c{bottom:7.665000px;}
.y12a{bottom:7.845000px;}
.y12e{bottom:8.025000px;}
.y151{bottom:8.100000px;}
.y183{bottom:10.800000px;}
.y11f{bottom:11.520000px;}
.y7c{bottom:20.520000px;}
.y78{bottom:20.550000px;}
.y118{bottom:23.760000px;}
.y11a{bottom:25.560000px;}
.y182{bottom:30.600000px;}
.y11e{bottom:31.320000px;}
.y17f{bottom:34.920000px;}
.y7e{bottom:37.620000px;}
.y7b{bottom:37.800000px;}
.y77{bottom:37.830000px;}
.y117{bottom:43.740000px;}
.y119{bottom:45.360000px;}
.y181{bottom:50.394000px;}
.y11d{bottom:51.300000px;}
.y116{bottom:63.540000px;}
.y6{bottom:66.276000px;}
.y180{bottom:70.374000px;}
.y91{bottom:90.900000px;}
.y8c{bottom:94.176000px;}
.y158{bottom:95.976000px;}
.y5a{bottom:104.616000px;}
.y17e{bottom:104.976000px;}
.yf7{bottom:105.876000px;}
.y90{bottom:109.080000px;}
.y128{bottom:110.916000px;}
.y8b{bottom:113.976000px;}
.y59{bottom:124.596000px;}
.y157{bottom:124.776000px;}
.y8f{bottom:125.640000px;}
.yf6{bottom:128.556000px;}
.y8a{bottom:133.776000px;}
.y31{bottom:134.496000px;}
.y127{bottom:139.896000px;}
.y58{bottom:144.396000px;}
.y156{bottom:144.576000px;}
.y8d{bottom:144.900000px;}
.yf5{bottom:151.230000px;}
.y89{bottom:153.750000px;}
.y30{bottom:154.290000px;}
.y126{bottom:159.690000px;}
.y57{bottom:164.190000px;}
.y155{bottom:164.550000px;}
.y88{bottom:173.550000px;}
.ya3{bottom:174.090000px;}
.y2f{bottom:174.270000px;}
.y125{bottom:179.490000px;}
.yf4{bottom:180.030000px;}
.y56{bottom:183.990000px;}
.y154{bottom:184.350000px;}
.y87{bottom:193.350000px;}
.ya2{bottom:193.890000px;}
.y2e{bottom:194.070000px;}
.y153{bottom:199.110000px;}
.y124{bottom:199.290000px;}
.yf3{bottom:202.710000px;}
.y55{bottom:203.790000px;}
.y86{bottom:213.150000px;}
.y2d{bottom:213.870000px;}
.y123{bottom:219.090000px;}
.y152{bottom:220.890000px;}
.yf2{bottom:225.390000px;}
.y54{bottom:232.770000px;}
.y85{bottom:232.950000px;}
.y2c{bottom:233.670000px;}
.y122{bottom:239.070000px;}
.y17d{bottom:239.970000px;}
.ya1{bottom:242.670000px;}
.yf1{bottom:245.190000px;}
.y53{bottom:252.570000px;}
.y121{bottom:258.870000px;}
.y84{bottom:261.930000px;}
.y2b{bottom:262.470000px;}
.yf0{bottom:265.170000px;}
.y17c{bottom:267.330000px;}
.y52{bottom:272.370000px;}
.y150{bottom:272.550000px;}
.y120{bottom:278.670000px;}
.y83{bottom:281.775000px;}
.ya0{bottom:282.315000px;}
.yef{bottom:285.015000px;}
.y2a{bottom:285.195000px;}
.y51{bottom:292.215000px;}
.y14f{bottom:292.395000px;}
.y17b{bottom:294.735000px;}
.y11c{bottom:296.895000px;}
.y82{bottom:301.575000px;}
.y9f{bottom:302.115000px;}
.yee{bottom:304.815000px;}
.y29{bottom:307.695000px;}
.y50{bottom:312.015000px;}
.y14e{bottom:312.195000px;}
.y9e{bottom:318.675000px;}
.y81{bottom:321.375000px;}
.y17a{bottom:321.915000px;}
.yed{bottom:324.615000px;}
.y28{bottom:330.375000px;}
.y4f{bottom:331.995000px;}
.yec{bottom:344.415000px;}
.y80{bottom:345.135000px;}
.y179{bottom:349.275000px;}
.y4e{bottom:351.795000px;}
.y27{bottom:353.055000px;}
.y178{bottom:369.075000px;}
.y4d{bottom:371.595000px;}
.y14d{bottom:371.775000px;}
.y115{bottom:373.035000px;}
.yeb{bottom:373.395000px;}
.y26{bottom:375.735000px;}
.y177{bottom:389.055000px;}
.y4c{bottom:391.395000px;}
.y25{bottom:395.535000px;}
.y7f{bottom:398.955000px;}
.y14c{bottom:400.575000px;}
.yea{bottom:402.195000px;}
.y176{bottom:408.855000px;}
.y4b{bottom:411.195000px;}
.y24{bottom:415.515000px;}
.y14b{bottom:420.375000px;}
.y175{bottom:428.655000px;}
.ye9{bottom:430.995000px;}
.y4a{bottom:431.175000px;}
.y23{bottom:435.315000px;}
.y14a{bottom:440.175000px;}
.y174{bottom:448.455000px;}
.ye8{bottom:450.795000px;}
.y49{bottom:450.975000px;}
.y7d{bottom:452.775000px;}
.y22{bottom:455.115000px;}
.y114{bottom:457.275000px;}
.y149{bottom:459.975000px;}
.y173{bottom:468.255000px;}
.ye7{bottom:470.595000px;}
.y48{bottom:470.775000px;}
.y21{bottom:474.915000px;}
.y113{bottom:477.075000px;}
.y148{bottom:479.955000px;}
.y172{bottom:488.235000px;}
.y47{bottom:490.575000px;}
.y20{bottom:494.715000px;}
.y112{bottom:496.875000px;}
.y7a{bottom:506.415000px;}
.y171{bottom:508.035000px;}
.y147{bottom:508.575000px;}
.y46{bottom:510.375000px;}
.y1f{bottom:514.695000px;}
.y111{bottom:516.855000px;}
.y170{bottom:527.835000px;}
.ye6{bottom:530.175000px;}
.y45{bottom:530.355000px;}
.y146{bottom:531.255000px;}
.y1e{bottom:534.495000px;}
.y110{bottom:536.655000px;}
.y16f{bottom:547.635000px;}
.ye5{bottom:549.975000px;}
.y44{bottom:550.155000px;}
.y145{bottom:553.935000px;}
.y1d{bottom:554.295000px;}
.y12d{bottom:556.560000px;}
.y76{bottom:560.235000px;}
.y10f{bottom:562.035000px;}
.y16e{bottom:567.465000px;}
.ye4{bottom:569.805000px;}
.y43{bottom:569.985000px;}
.y1c{bottom:574.125000px;}
.y144{bottom:576.645000px;}
.y16d{bottom:587.445000px;}
.y9d{bottom:588.705000px;}
.y42{bottom:589.785000px;}
.y1b{bottom:593.925000px;}
.ye3{bottom:598.785000px;}
.y143{bottom:599.325000px;}
.y16c{bottom:607.245000px;}
.y41{bottom:609.585000px;}
.y1a{bottom:613.905000px;}
.y10e{bottom:614.265000px;}
.y9c{bottom:617.505000px;}
.y142{bottom:619.125000px;}
.y75{bottom:619.845000px;}
.y16b{bottom:627.045000px;}
.ye2{bottom:627.585000px;}
.y40{bottom:629.565000px;}
.y19{bottom:633.705000px;}
.y10d{bottom:634.065000px;}
.y9b{bottom:637.305000px;}
.y141{bottom:638.925000px;}
.y16a{bottom:646.845000px;}
.ye1{bottom:647.385000px;}
.y74{bottom:648.645000px;}
.y3f{bottom:649.365000px;}
.y18{bottom:653.505000px;}
.y10c{bottom:653.865000px;}
.y9a{bottom:657.105000px;}
.y140{bottom:658.725000px;}
.y12b{bottom:665.100000px;}
.y169{bottom:666.645000px;}
.ye0{bottom:667.185000px;}
.y73{bottom:668.625000px;}
.y3e{bottom:669.165000px;}
.y10b{bottom:670.425000px;}
.y17{bottom:673.305000px;}
.y99{bottom:673.665000px;}
.yae{bottom:674.280000px;}
.y13f{bottom:678.705000px;}
.yc7{bottom:680.580000px;}
.y168{bottom:686.625000px;}
.y72{bottom:688.425000px;}
.yb9{bottom:688.860000px;}
.y3d{bottom:688.965000px;}
.ycf{bottom:690.660000px;}
.ybb{bottom:691.200000px;}
.yd0{bottom:692.460000px;}
.y16{bottom:693.105000px;}
.ydf{bottom:695.985000px;}
.yc6{bottom:697.320000px;}
.y13e{bottom:698.505000px;}
.y167{bottom:706.425000px;}
.y71{bottom:708.225000px;}
.y3c{bottom:708.765000px;}
.yad{bottom:712.260000px;}
.y15{bottom:713.085000px;}
.y13d{bottom:718.305000px;}
.y10a{bottom:722.445000px;}
.yde{bottom:724.785000px;}
.y166{bottom:726.225000px;}
.y70{bottom:728.025000px;}
.y3b{bottom:728.745000px;}
.yb8{bottom:729.540000px;}
.y14{bottom:732.885000px;}
.y13c{bottom:738.105000px;}
.yc5{bottom:741.600000px;}
.y109{bottom:742.245000px;}
.y165{bottom:746.025000px;}
.ydd{bottom:747.465000px;}
.y6f{bottom:747.825000px;}
.y3a{bottom:748.545000px;}
.yac{bottom:750.780000px;}
.y129{bottom:753.480000px;}
.y13{bottom:754.845000px;}
.yb7{bottom:756.540000px;}
.y13b{bottom:757.905000px;}
.ycd{bottom:758.700000px;}
.y108{bottom:758.805000px;}
.yce{bottom:761.040000px;}
.y164{bottom:765.825000px;}
.y6e{bottom:767.805000px;}
.y39{bottom:768.345000px;}
.yc2{bottom:768.420000px;}
.ydc{bottom:770.145000px;}
.y13a{bottom:777.885000px;}
.y12{bottom:783.825000px;}
.y163{bottom:785.805000px;}
.y6d{bottom:787.605000px;}
.y38{bottom:788.145000px;}
.yaa{bottom:788.760000px;}
.yaf{bottom:788.940000px;}
.ydb{bottom:792.825000px;}
.y139{bottom:797.685000px;}
.y11{bottom:803.625000px;}
.y162{bottom:805.605000px;}
.y6c{bottom:807.405000px;}
.y37{bottom:807.945000px;}
.y107{bottom:810.825000px;}
.yda{bottom:812.625000px;}
.y138{bottom:817.485000px;}
.yc1{bottom:820.620000px;}
.y10{bottom:823.425000px;}
.y161{bottom:825.405000px;}
.ycb{bottom:825.840000px;}
.ya8{bottom:826.560000px;}
.y6b{bottom:827.205000px;}
.y36{bottom:827.925000px;}
.ycc{bottom:828.180000px;}
.yb4{bottom:828.900000px;}
.y106{bottom:830.625000px;}
.yd9{bottom:832.425000px;}
.y137{bottom:837.285000px;}
.yf{bottom:843.225000px;}
.y160{bottom:845.205000px;}
.y6a{bottom:847.005000px;}
.y35{bottom:847.770000px;}
.y105{bottom:850.470000px;}
.yd8{bottom:852.270000px;}
.y136{bottom:857.130000px;}
.ye{bottom:863.070000px;}
.ya6{bottom:864.720000px;}
.y15f{bottom:865.050000px;}
.y69{bottom:867.030000px;}
.y34{bottom:867.570000px;}
.yd7{bottom:872.250000px;}
.ybe{bottom:875.340000px;}
.y135{bottom:877.110000px;}
.ybf{bottom:877.680000px;}
.y104{bottom:879.270000px;}
.y33{bottom:884.130000px;}
.y15e{bottom:885.030000px;}
.yd{bottom:885.210000px;}
.yb1{bottom:885.960000px;}
.y68{bottom:886.830000px;}
.yd6{bottom:892.050000px;}
.yc8{bottom:892.800000px;}
.y134{bottom:893.670000px;}
.yca{bottom:894.780000px;}
.ybc{bottom:896.760000px;}
.y159{bottom:897.480000px;}
.y103{bottom:899.250000px;}
.y15a{bottom:899.280000px;}
.ya4{bottom:902.880000px;}
.y15d{bottom:904.830000px;}
.y67{bottom:906.630000px;}
.yc{bottom:910.230000px;}
.y102{bottom:919.050000px;}
.yd5{bottom:920.850000px;}
.y15c{bottom:924.630000px;}
.y66{bottom:926.430000px;}
.yb{bottom:930.210000px;}
.y98{bottom:933.810000px;}
.y133{bottom:935.430000px;}
.y101{bottom:938.850000px;}
.yd4{bottom:943.350000px;}
.y15b{bottom:944.430000px;}
.ya{bottom:945.330000px;}
.y65{bottom:946.230000px;}
.y100{bottom:958.650000px;}
.y97{bottom:963.690000px;}
.y132{bottom:964.230000px;}
.y64{bottom:966.210000px;}
.y9{bottom:966.570000px;}
.yff{bottom:978.450000px;}
.y131{bottom:984.210000px;}
.y96{bottom:985.650000px;}
.y63{bottom:986.010000px;}
.y8{bottom:989.970000px;}
.yd3{bottom:995.010000px;}
.yfe{bottom:998.430000px;}
.y130{bottom:1004.010000px;}
.y95{bottom:1006.350000px;}
.y62{bottom:1014.810000px;}
.yfd{bottom:1018.230000px;}
.y7{bottom:1021.830000px;}
.y12f{bottom:1023.810000px;}
.y94{bottom:1029.390000px;}
.y61{bottom:1034.610000px;}
.yfc{bottom:1038.030000px;}
.yd2{bottom:1043.610000px;}
.y93{bottom:1052.250000px;}
.y60{bottom:1054.410000px;}
.yfb{bottom:1057.830000px;}
.y5{bottom:1060.170000px;}
.yd1{bottom:1063.410000px;}
.y5f{bottom:1074.390000px;}
.yfa{bottom:1077.630000px;}
.y92{bottom:1083.390000px;}
.y4{bottom:1090.950000px;}
.yf9{bottom:1097.430000px;}
.y5e{bottom:1103.190000px;}
.yf8{bottom:1120.110000px;}
.y3{bottom:1121.730000px;}
.y5d{bottom:1122.990000px;}
.y5c{bottom:1142.820000px;}
.y2{bottom:1152.720000px;}
.y5b{bottom:1162.620000px;}
.y1{bottom:1186.560000px;}
.y32{bottom:1193.220000px;}
.h22{height:2.826563px;}
.hf{height:12.420000px;}
.h1e{height:19.800000px;}
.h20{height:20.160000px;}
.h16{height:20.340000px;}
.h13{height:20.520000px;}
.h10{height:21.960000px;}
.h12{height:22.140000px;}
.h1b{height:24.660000px;}
.h17{height:24.840000px;}
.h1f{height:25.020000px;}
.h14{height:25.560000px;}
.h6{height:38.158594px;}
.h1d{height:43.215117px;}
.he{height:51.660000px;}
.hd{height:51.840000px;}
.hc{height:51.876000px;}
.hb{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h8{height:62.327813px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.h11{height:70.664062px;}
.h1c{height:70.805391px;}
.h1a{height:71.100000px;}
.h9{height:75.093750px;}
.h19{height:77.580000px;}
.h18{height:79.850391px;}
.h15{height:82.676953px;}
.h21{height:84.420000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:3.780000px;}
.w9{width:5.400000px;}
.wc{width:5.760000px;}
.wa{width:5.940000px;}
.w21{width:6.120000px;}
.w22{width:6.300000px;}
.wd{width:11.700000px;}
.w1b{width:15.840000px;}
.w17{width:20.160000px;}
.w1c{width:22.320000px;}
.w28{width:23.220000px;}
.w29{width:24.660000px;}
.w26{width:33.480000px;}
.w1a{width:37.620000px;}
.w19{width:44.820000px;}
.w27{width:45.000000px;}
.we{width:53.460000px;}
.w2a{width:77.580000px;}
.wb{width:77.760000px;}
.w23{width:87.336000px;}
.w13{width:95.760000px;}
.w5{width:101.196000px;}
.w4{width:102.420000px;}
.w7{width:106.380000px;}
.w6{width:124.056000px;}
.w14{width:139.860000px;}
.w10{width:141.300000px;}
.w25{width:177.150000px;}
.w11{width:177.300000px;}
.w15{width:179.640000px;}
.w24{width:180.210000px;}
.w20{width:189.030000px;}
.w1f{width:189.390000px;}
.wf{width:189.900000px;}
.w12{width:197.280000px;}
.w1e{width:205.410000px;}
.w18{width:208.080000px;}
.w2b{width:210.810000px;}
.w1d{width:221.610000px;}
.w3{width:237.630000px;}
.w16{width:267.300000px;}
.w2c{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x39{left:-11.160000px;}
.x34{left:-1.080000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x3e{left:11.880000px;}
.x32{left:16.914000px;}
.x3a{left:41.400000px;}
.x35{left:45.720000px;}
.x1{left:54.179987px;}
.x31{left:58.314000px;}
.xd{left:60.480000px;}
.x2e{left:67.499987px;}
.x5{left:74.339987px;}
.x2d{left:80.999987px;}
.xc{left:85.499987px;}
.x38{left:90.360000px;}
.x3c{left:96.875987px;}
.x36{left:98.280000px;}
.x30{left:106.374000px;}
.x2{left:108.035987px;}
.x6{left:109.116000px;}
.xf{left:129.060000px;}
.x2f{left:138.276000px;}
.x10{left:143.820000px;}
.x43{left:154.260000px;}
.x3b{left:169.560000px;}
.x16{left:179.280000px;}
.x1b{left:184.320000px;}
.x44{left:188.100000px;}
.x4a{left:191.370000px;}
.x11{left:195.300000px;}
.x18{left:197.820000px;}
.x3d{left:223.410000px;}
.x1a{left:250.740000px;}
.x12{left:253.620000px;}
.x13{left:257.580000px;}
.x4b{left:264.810000px;}
.x14{left:266.220000px;}
.x46{left:291.420000px;}
.x19{left:303.840000px;}
.x15{left:306.180000px;}
.x47{left:309.960000px;}
.x3f{left:311.655000px;}
.x1c{left:317.340000px;}
.x17{left:321.660000px;}
.x8{left:347.475000px;}
.x33{left:359.895000px;}
.x48{left:400.680000px;}
.x26{left:439.380000px;}
.x28{left:441.900000px;}
.x4{left:446.474987px;}
.x2b{left:448.200000px;}
.x9{left:450.795000px;}
.x49{left:459.000000px;}
.x2a{left:462.600000px;}
.x2c{left:464.940000px;}
.x29{left:470.160000px;}
.x27{left:473.040000px;}
.x40{left:492.585000px;}
.x24{left:535.500000px;}
.x45{left:547.020000px;}
.xa{left:552.705000px;}
.x37{left:565.305000px;}
.x1d{left:570.420000px;}
.x21{left:574.560000px;}
.x1f{left:585.900000px;}
.x1e{left:605.700000px;}
.x23{left:642.060000px;}
.x41{left:675.900000px;}
.xb{left:677.670000px;}
.x20{left:690.840000px;}
.x42{left:700.740000px;}
.x22{left:709.380000px;}
.x25{left:736.560000px;}
.xe{left:749.129987px;}
.x3{left:773.969987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.045333pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls26{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.027520pt;}
.ls10{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.224640pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.298667pt;}
.ls1a{letter-spacing:0.303467pt;}
.ls23{letter-spacing:0.311467pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.409067pt;}
.ls24{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.960000pt;}
.ls7{letter-spacing:5.712640pt;}
.ls8{letter-spacing:8.912640pt;}
.ls1f{letter-spacing:9.088000pt;}
.ls25{letter-spacing:10.192640pt;}
.ls14{letter-spacing:13.392640pt;}
.ls15{letter-spacing:15.952640pt;}
.ls1d{letter-spacing:16.128000pt;}
.lsc{letter-spacing:17.232640pt;}
.ls20{letter-spacing:18.512640pt;}
.ls16{letter-spacing:24.912640pt;}
.ls9{letter-spacing:29.392640pt;}
.lsa{letter-spacing:32.592640pt;}
.ls1e{letter-spacing:33.408000pt;}
.ls13{letter-spacing:37.072640pt;}
.ls12{letter-spacing:39.632640pt;}
.ls2{letter-spacing:39.808000pt;}
.ls21{letter-spacing:42.192640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws16{word-spacing:-19.040000pt;}
.ws15{word-spacing:-19.031467pt;}
.ws11{word-spacing:-19.023467pt;}
.wsf{word-spacing:-18.944640pt;}
.ws10{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.107520pt;}
.wse{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.wsb{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.688000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._5{margin-left:-1313.341440pt;}
._3{margin-left:-1288.668160pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._10{margin-left:-12.733867pt;}
._f{margin-left:-4.385280pt;}
._1b{margin-left:-3.102720pt;}
._d{margin-left:-2.209280pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._9{width:2.325547pt;}
._a{width:3.627733pt;}
._e{width:5.294720pt;}
._8{width:6.298880pt;}
._7{width:7.575680pt;}
._1f{width:8.652160pt;}
._c{width:9.936640pt;}
._b{width:10.942720pt;}
._20{width:12.159787pt;}
._16{width:14.653227pt;}
._21{width:15.670400pt;}
._23{width:21.357653pt;}
._22{width:22.319147pt;}
._13{width:24.169600pt;}
._11{width:28.578560pt;}
._14{width:33.040640pt;}
._17{width:36.174720pt;}
._15{width:42.017920pt;}
._19{width:94.631040pt;}
._18{width:125.815467pt;}
._12{width:155.907200pt;}
._1d{width:1770.612053pt;}
._1c{width:2107.573333pt;}
._1e{width:2223.892053pt;}
._1a{width:2279.412053pt;}
.fsa{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs7{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y8e{bottom:-1.568000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.880000pt;}
.yc4{bottom:2.973333pt;}
.yc0{bottom:3.013333pt;}
.yb6{bottom:3.133333pt;}
.yb3{bottom:3.173333pt;}
.yb0{bottom:3.293333pt;}
.yc3{bottom:4.093333pt;}
.yb5{bottom:4.253333pt;}
.yb2{bottom:4.293333pt;}
.yab{bottom:4.413333pt;}
.ya5{bottom:4.453333pt;}
.ya7{bottom:4.613333pt;}
.ya9{bottom:4.733333pt;}
.yc9{bottom:5.093333pt;}
.y11b{bottom:5.120000pt;}
.yba{bottom:5.213333pt;}
.ybd{bottom:5.253333pt;}
.y12c{bottom:6.813333pt;}
.y12a{bottom:6.973333pt;}
.y12e{bottom:7.133333pt;}
.y151{bottom:7.200000pt;}
.y183{bottom:9.600000pt;}
.y11f{bottom:10.240000pt;}
.y7c{bottom:18.240000pt;}
.y78{bottom:18.266667pt;}
.y118{bottom:21.120000pt;}
.y11a{bottom:22.720000pt;}
.y182{bottom:27.200000pt;}
.y11e{bottom:27.840000pt;}
.y17f{bottom:31.040000pt;}
.y7e{bottom:33.440000pt;}
.y7b{bottom:33.600000pt;}
.y77{bottom:33.626667pt;}
.y117{bottom:38.880000pt;}
.y119{bottom:40.320000pt;}
.y181{bottom:44.794667pt;}
.y11d{bottom:45.600000pt;}
.y116{bottom:56.480000pt;}
.y6{bottom:58.912000pt;}
.y180{bottom:62.554667pt;}
.y91{bottom:80.800000pt;}
.y8c{bottom:83.712000pt;}
.y158{bottom:85.312000pt;}
.y5a{bottom:92.992000pt;}
.y17e{bottom:93.312000pt;}
.yf7{bottom:94.112000pt;}
.y90{bottom:96.960000pt;}
.y128{bottom:98.592000pt;}
.y8b{bottom:101.312000pt;}
.y59{bottom:110.752000pt;}
.y157{bottom:110.912000pt;}
.y8f{bottom:111.680000pt;}
.yf6{bottom:114.272000pt;}
.y8a{bottom:118.912000pt;}
.y31{bottom:119.552000pt;}
.y127{bottom:124.352000pt;}
.y58{bottom:128.352000pt;}
.y156{bottom:128.512000pt;}
.y8d{bottom:128.800000pt;}
.yf5{bottom:134.426667pt;}
.y89{bottom:136.666667pt;}
.y30{bottom:137.146667pt;}
.y126{bottom:141.946667pt;}
.y57{bottom:145.946667pt;}
.y155{bottom:146.266667pt;}
.y88{bottom:154.266667pt;}
.ya3{bottom:154.746667pt;}
.y2f{bottom:154.906667pt;}
.y125{bottom:159.546667pt;}
.yf4{bottom:160.026667pt;}
.y56{bottom:163.546667pt;}
.y154{bottom:163.866667pt;}
.y87{bottom:171.866667pt;}
.ya2{bottom:172.346667pt;}
.y2e{bottom:172.506667pt;}
.y153{bottom:176.986667pt;}
.y124{bottom:177.146667pt;}
.yf3{bottom:180.186667pt;}
.y55{bottom:181.146667pt;}
.y86{bottom:189.466667pt;}
.y2d{bottom:190.106667pt;}
.y123{bottom:194.746667pt;}
.y152{bottom:196.346667pt;}
.yf2{bottom:200.346667pt;}
.y54{bottom:206.906667pt;}
.y85{bottom:207.066667pt;}
.y2c{bottom:207.706667pt;}
.y122{bottom:212.506667pt;}
.y17d{bottom:213.306667pt;}
.ya1{bottom:215.706667pt;}
.yf1{bottom:217.946667pt;}
.y53{bottom:224.506667pt;}
.y121{bottom:230.106667pt;}
.y84{bottom:232.826667pt;}
.y2b{bottom:233.306667pt;}
.yf0{bottom:235.706667pt;}
.y17c{bottom:237.626667pt;}
.y52{bottom:242.106667pt;}
.y150{bottom:242.266667pt;}
.y120{bottom:247.706667pt;}
.y83{bottom:250.466667pt;}
.ya0{bottom:250.946667pt;}
.yef{bottom:253.346667pt;}
.y2a{bottom:253.506667pt;}
.y51{bottom:259.746667pt;}
.y14f{bottom:259.906667pt;}
.y17b{bottom:261.986667pt;}
.y11c{bottom:263.906667pt;}
.y82{bottom:268.066667pt;}
.y9f{bottom:268.546667pt;}
.yee{bottom:270.946667pt;}
.y29{bottom:273.506667pt;}
.y50{bottom:277.346667pt;}
.y14e{bottom:277.506667pt;}
.y9e{bottom:283.266667pt;}
.y81{bottom:285.666667pt;}
.y17a{bottom:286.146667pt;}
.yed{bottom:288.546667pt;}
.y28{bottom:293.666667pt;}
.y4f{bottom:295.106667pt;}
.yec{bottom:306.146667pt;}
.y80{bottom:306.786667pt;}
.y179{bottom:310.466667pt;}
.y4e{bottom:312.706667pt;}
.y27{bottom:313.826667pt;}
.y178{bottom:328.066667pt;}
.y4d{bottom:330.306667pt;}
.y14d{bottom:330.466667pt;}
.y115{bottom:331.586667pt;}
.yeb{bottom:331.906667pt;}
.y26{bottom:333.986667pt;}
.y177{bottom:345.826667pt;}
.y4c{bottom:347.906667pt;}
.y25{bottom:351.586667pt;}
.y7f{bottom:354.626667pt;}
.y14c{bottom:356.066667pt;}
.yea{bottom:357.506667pt;}
.y176{bottom:363.426667pt;}
.y4b{bottom:365.506667pt;}
.y24{bottom:369.346667pt;}
.y14b{bottom:373.666667pt;}
.y175{bottom:381.026667pt;}
.ye9{bottom:383.106667pt;}
.y4a{bottom:383.266667pt;}
.y23{bottom:386.946667pt;}
.y14a{bottom:391.266667pt;}
.y174{bottom:398.626667pt;}
.ye8{bottom:400.706667pt;}
.y49{bottom:400.866667pt;}
.y7d{bottom:402.466667pt;}
.y22{bottom:404.546667pt;}
.y114{bottom:406.466667pt;}
.y149{bottom:408.866667pt;}
.y173{bottom:416.226667pt;}
.ye7{bottom:418.306667pt;}
.y48{bottom:418.466667pt;}
.y21{bottom:422.146667pt;}
.y113{bottom:424.066667pt;}
.y148{bottom:426.626667pt;}
.y172{bottom:433.986667pt;}
.y47{bottom:436.066667pt;}
.y20{bottom:439.746667pt;}
.y112{bottom:441.666667pt;}
.y7a{bottom:450.146667pt;}
.y171{bottom:451.586667pt;}
.y147{bottom:452.066667pt;}
.y46{bottom:453.666667pt;}
.y1f{bottom:457.506667pt;}
.y111{bottom:459.426667pt;}
.y170{bottom:469.186667pt;}
.ye6{bottom:471.266667pt;}
.y45{bottom:471.426667pt;}
.y146{bottom:472.226667pt;}
.y1e{bottom:475.106667pt;}
.y110{bottom:477.026667pt;}
.y16f{bottom:486.786667pt;}
.ye5{bottom:488.866667pt;}
.y44{bottom:489.026667pt;}
.y145{bottom:492.386667pt;}
.y1d{bottom:492.706667pt;}
.y12d{bottom:494.720000pt;}
.y76{bottom:497.986667pt;}
.y10f{bottom:499.586667pt;}
.y16e{bottom:504.413333pt;}
.ye4{bottom:506.493333pt;}
.y43{bottom:506.653333pt;}
.y1c{bottom:510.333333pt;}
.y144{bottom:512.573333pt;}
.y16d{bottom:522.173333pt;}
.y9d{bottom:523.293333pt;}
.y42{bottom:524.253333pt;}
.y1b{bottom:527.933333pt;}
.ye3{bottom:532.253333pt;}
.y143{bottom:532.733333pt;}
.y16c{bottom:539.773333pt;}
.y41{bottom:541.853333pt;}
.y1a{bottom:545.693333pt;}
.y10e{bottom:546.013333pt;}
.y9c{bottom:548.893333pt;}
.y142{bottom:550.333333pt;}
.y75{bottom:550.973333pt;}
.y16b{bottom:557.373333pt;}
.ye2{bottom:557.853333pt;}
.y40{bottom:559.613333pt;}
.y19{bottom:563.293333pt;}
.y10d{bottom:563.613333pt;}
.y9b{bottom:566.493333pt;}
.y141{bottom:567.933333pt;}
.y16a{bottom:574.973333pt;}
.ye1{bottom:575.453333pt;}
.y74{bottom:576.573333pt;}
.y3f{bottom:577.213333pt;}
.y18{bottom:580.893333pt;}
.y10c{bottom:581.213333pt;}
.y9a{bottom:584.093333pt;}
.y140{bottom:585.533333pt;}
.y12b{bottom:591.200000pt;}
.y169{bottom:592.573333pt;}
.ye0{bottom:593.053333pt;}
.y73{bottom:594.333333pt;}
.y3e{bottom:594.813333pt;}
.y10b{bottom:595.933333pt;}
.y17{bottom:598.493333pt;}
.y99{bottom:598.813333pt;}
.yae{bottom:599.360000pt;}
.y13f{bottom:603.293333pt;}
.yc7{bottom:604.960000pt;}
.y168{bottom:610.333333pt;}
.y72{bottom:611.933333pt;}
.yb9{bottom:612.320000pt;}
.y3d{bottom:612.413333pt;}
.ycf{bottom:613.920000pt;}
.ybb{bottom:614.400000pt;}
.yd0{bottom:615.520000pt;}
.y16{bottom:616.093333pt;}
.ydf{bottom:618.653333pt;}
.yc6{bottom:619.840000pt;}
.y13e{bottom:620.893333pt;}
.y167{bottom:627.933333pt;}
.y71{bottom:629.533333pt;}
.y3c{bottom:630.013333pt;}
.yad{bottom:633.120000pt;}
.y15{bottom:633.853333pt;}
.y13d{bottom:638.493333pt;}
.y10a{bottom:642.173333pt;}
.yde{bottom:644.253333pt;}
.y166{bottom:645.533333pt;}
.y70{bottom:647.133333pt;}
.y3b{bottom:647.773333pt;}
.yb8{bottom:648.480000pt;}
.y14{bottom:651.453333pt;}
.y13c{bottom:656.093333pt;}
.yc5{bottom:659.200000pt;}
.y109{bottom:659.773333pt;}
.y165{bottom:663.133333pt;}
.ydd{bottom:664.413333pt;}
.y6f{bottom:664.733333pt;}
.y3a{bottom:665.373333pt;}
.yac{bottom:667.360000pt;}
.y129{bottom:669.760000pt;}
.y13{bottom:670.973333pt;}
.yb7{bottom:672.480000pt;}
.y13b{bottom:673.693333pt;}
.ycd{bottom:674.400000pt;}
.y108{bottom:674.493333pt;}
.yce{bottom:676.480000pt;}
.y164{bottom:680.733333pt;}
.y6e{bottom:682.493333pt;}
.y39{bottom:682.973333pt;}
.yc2{bottom:683.040000pt;}
.ydc{bottom:684.573333pt;}
.y13a{bottom:691.453333pt;}
.y12{bottom:696.733333pt;}
.y163{bottom:698.493333pt;}
.y6d{bottom:700.093333pt;}
.y38{bottom:700.573333pt;}
.yaa{bottom:701.120000pt;}
.yaf{bottom:701.280000pt;}
.ydb{bottom:704.733333pt;}
.y139{bottom:709.053333pt;}
.y11{bottom:714.333333pt;}
.y162{bottom:716.093333pt;}
.y6c{bottom:717.693333pt;}
.y37{bottom:718.173333pt;}
.y107{bottom:720.733333pt;}
.yda{bottom:722.333333pt;}
.y138{bottom:726.653333pt;}
.yc1{bottom:729.440000pt;}
.y10{bottom:731.933333pt;}
.y161{bottom:733.693333pt;}
.ycb{bottom:734.080000pt;}
.ya8{bottom:734.720000pt;}
.y6b{bottom:735.293333pt;}
.y36{bottom:735.933333pt;}
.ycc{bottom:736.160000pt;}
.yb4{bottom:736.800000pt;}
.y106{bottom:738.333333pt;}
.yd9{bottom:739.933333pt;}
.y137{bottom:744.253333pt;}
.yf{bottom:749.533333pt;}
.y160{bottom:751.293333pt;}
.y6a{bottom:752.893333pt;}
.y35{bottom:753.573333pt;}
.y105{bottom:755.973333pt;}
.yd8{bottom:757.573333pt;}
.y136{bottom:761.893333pt;}
.ye{bottom:767.173333pt;}
.ya6{bottom:768.640000pt;}
.y15f{bottom:768.933333pt;}
.y69{bottom:770.693333pt;}
.y34{bottom:771.173333pt;}
.yd7{bottom:775.333333pt;}
.ybe{bottom:778.080000pt;}
.y135{bottom:779.653333pt;}
.ybf{bottom:780.160000pt;}
.y104{bottom:781.573333pt;}
.y33{bottom:785.893333pt;}
.y15e{bottom:786.693333pt;}
.yd{bottom:786.853333pt;}
.yb1{bottom:787.520000pt;}
.y68{bottom:788.293333pt;}
.yd6{bottom:792.933333pt;}
.yc8{bottom:793.600000pt;}
.y134{bottom:794.373333pt;}
.yca{bottom:795.360000pt;}
.ybc{bottom:797.120000pt;}
.y159{bottom:797.760000pt;}
.y103{bottom:799.333333pt;}
.y15a{bottom:799.360000pt;}
.ya4{bottom:802.560000pt;}
.y15d{bottom:804.293333pt;}
.y67{bottom:805.893333pt;}
.yc{bottom:809.093333pt;}
.y102{bottom:816.933333pt;}
.yd5{bottom:818.533333pt;}
.y15c{bottom:821.893333pt;}
.y66{bottom:823.493333pt;}
.yb{bottom:826.853333pt;}
.y98{bottom:830.053333pt;}
.y133{bottom:831.493333pt;}
.y101{bottom:834.533333pt;}
.yd4{bottom:838.533333pt;}
.y15b{bottom:839.493333pt;}
.ya{bottom:840.293333pt;}
.y65{bottom:841.093333pt;}
.y100{bottom:852.133333pt;}
.y97{bottom:856.613333pt;}
.y132{bottom:857.093333pt;}
.y64{bottom:858.853333pt;}
.y9{bottom:859.173333pt;}
.yff{bottom:869.733333pt;}
.y131{bottom:874.853333pt;}
.y96{bottom:876.133333pt;}
.y63{bottom:876.453333pt;}
.y8{bottom:879.973333pt;}
.yd3{bottom:884.453333pt;}
.yfe{bottom:887.493333pt;}
.y130{bottom:892.453333pt;}
.y95{bottom:894.533333pt;}
.y62{bottom:902.053333pt;}
.yfd{bottom:905.093333pt;}
.y7{bottom:908.293333pt;}
.y12f{bottom:910.053333pt;}
.y94{bottom:915.013333pt;}
.y61{bottom:919.653333pt;}
.yfc{bottom:922.693333pt;}
.yd2{bottom:927.653333pt;}
.y93{bottom:935.333333pt;}
.y60{bottom:937.253333pt;}
.yfb{bottom:940.293333pt;}
.y5{bottom:942.373333pt;}
.yd1{bottom:945.253333pt;}
.y5f{bottom:955.013333pt;}
.yfa{bottom:957.893333pt;}
.y92{bottom:963.013333pt;}
.y4{bottom:969.733333pt;}
.yf9{bottom:975.493333pt;}
.y5e{bottom:980.613333pt;}
.yf8{bottom:995.653333pt;}
.y3{bottom:997.093333pt;}
.y5d{bottom:998.213333pt;}
.y5c{bottom:1015.840000pt;}
.y2{bottom:1024.640000pt;}
.y5b{bottom:1033.440000pt;}
.y1{bottom:1054.720000pt;}
.y32{bottom:1060.640000pt;}
.h22{height:2.512500pt;}
.hf{height:11.040000pt;}
.h1e{height:17.600000pt;}
.h20{height:17.920000pt;}
.h16{height:18.080000pt;}
.h13{height:18.240000pt;}
.h10{height:19.520000pt;}
.h12{height:19.680000pt;}
.h1b{height:21.920000pt;}
.h17{height:22.080000pt;}
.h1f{height:22.240000pt;}
.h14{height:22.720000pt;}
.h6{height:33.918750pt;}
.h1d{height:38.413438pt;}
.he{height:45.920000pt;}
.hd{height:46.080000pt;}
.hc{height:46.112000pt;}
.hb{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h8{height:55.402500pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.h11{height:62.812500pt;}
.h1c{height:62.938125pt;}
.h1a{height:63.200000pt;}
.h9{height:66.750000pt;}
.h19{height:68.960000pt;}
.h18{height:70.978125pt;}
.h15{height:73.490625pt;}
.h21{height:75.040000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:3.360000pt;}
.w9{width:4.800000pt;}
.wc{width:5.120000pt;}
.wa{width:5.280000pt;}
.w21{width:5.440000pt;}
.w22{width:5.600000pt;}
.wd{width:10.400000pt;}
.w1b{width:14.080000pt;}
.w17{width:17.920000pt;}
.w1c{width:19.840000pt;}
.w28{width:20.640000pt;}
.w29{width:21.920000pt;}
.w26{width:29.760000pt;}
.w1a{width:33.440000pt;}
.w19{width:39.840000pt;}
.w27{width:40.000000pt;}
.we{width:47.520000pt;}
.w2a{width:68.960000pt;}
.wb{width:69.120000pt;}
.w23{width:77.632000pt;}
.w13{width:85.120000pt;}
.w5{width:89.952000pt;}
.w4{width:91.040000pt;}
.w7{width:94.560000pt;}
.w6{width:110.272000pt;}
.w14{width:124.320000pt;}
.w10{width:125.600000pt;}
.w25{width:157.466667pt;}
.w11{width:157.600000pt;}
.w15{width:159.680000pt;}
.w24{width:160.186667pt;}
.w20{width:168.026667pt;}
.w1f{width:168.346667pt;}
.wf{width:168.800000pt;}
.w12{width:175.360000pt;}
.w1e{width:182.586667pt;}
.w18{width:184.960000pt;}
.w2b{width:187.386667pt;}
.w1d{width:196.986667pt;}
.w3{width:211.226667pt;}
.w16{width:237.600000pt;}
.w2c{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x39{left:-9.920000pt;}
.x34{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x3e{left:10.560000pt;}
.x32{left:15.034667pt;}
.x3a{left:36.800000pt;}
.x35{left:40.640000pt;}
.x1{left:48.159988pt;}
.x31{left:51.834667pt;}
.xd{left:53.760000pt;}
.x2e{left:59.999988pt;}
.x5{left:66.079988pt;}
.x2d{left:71.999988pt;}
.xc{left:75.999988pt;}
.x38{left:80.320000pt;}
.x3c{left:86.111988pt;}
.x36{left:87.360000pt;}
.x30{left:94.554667pt;}
.x2{left:96.031988pt;}
.x6{left:96.992000pt;}
.xf{left:114.720000pt;}
.x2f{left:122.912000pt;}
.x10{left:127.840000pt;}
.x43{left:137.120000pt;}
.x3b{left:150.720000pt;}
.x16{left:159.360000pt;}
.x1b{left:163.840000pt;}
.x44{left:167.200000pt;}
.x4a{left:170.106667pt;}
.x11{left:173.600000pt;}
.x18{left:175.840000pt;}
.x3d{left:198.586667pt;}
.x1a{left:222.880000pt;}
.x12{left:225.440000pt;}
.x13{left:228.960000pt;}
.x4b{left:235.386667pt;}
.x14{left:236.640000pt;}
.x46{left:259.040000pt;}
.x19{left:270.080000pt;}
.x15{left:272.160000pt;}
.x47{left:275.520000pt;}
.x3f{left:277.026667pt;}
.x1c{left:282.080000pt;}
.x17{left:285.920000pt;}
.x8{left:308.866667pt;}
.x33{left:319.906667pt;}
.x48{left:356.160000pt;}
.x26{left:390.560000pt;}
.x28{left:392.800000pt;}
.x4{left:396.866655pt;}
.x2b{left:398.400000pt;}
.x9{left:400.706667pt;}
.x49{left:408.000000pt;}
.x2a{left:411.200000pt;}
.x2c{left:413.280000pt;}
.x29{left:417.920000pt;}
.x27{left:420.480000pt;}
.x40{left:437.853333pt;}
.x24{left:476.000000pt;}
.x45{left:486.240000pt;}
.xa{left:491.293333pt;}
.x37{left:502.493333pt;}
.x1d{left:507.040000pt;}
.x21{left:510.720000pt;}
.x1f{left:520.800000pt;}
.x1e{left:538.400000pt;}
.x23{left:570.720000pt;}
.x41{left:600.800000pt;}
.xb{left:602.373333pt;}
.x20{left:614.080000pt;}
.x42{left:622.880000pt;}
.x22{left:630.560000pt;}
.x25{left:654.720000pt;}
.xe{left:665.893322pt;}
.x3{left:687.973322pt;}
}




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