
    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_52b425eee5c11571da256889.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8b9f7e2e86ccf93426819634.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_16e2c35b17c09f8bb45ccfa3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_56ddf91798159d70b3443030.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_5ef695f1b3da8be5dca445cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_3ba63c7301c4021c03e427d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693359;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_7597f3a93118fd1342db333d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_43cd4d52fcc81edcf443e9d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_e683af455a8691ab08a048a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094727;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_8d303754248e4708677eef45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_466dd6bab120d0fd0ea05395.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_c8fb31d7606c9d65a27eb53a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:20.880000px;}
.ls20{letter-spacing:-0.702000px;}
.ls1d{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.434160px;}
.ls18{letter-spacing:-0.378000px;}
.ls13{letter-spacing:-0.361800px;}
.ls12{letter-spacing:-0.358560px;}
.lsa{letter-spacing:-0.270144px;}
.ls22{letter-spacing:-0.209160px;}
.ls7{letter-spacing:-0.192960px;}
.ls9{letter-spacing:-0.183312px;}
.lsc{letter-spacing:-0.179280px;}
.ls14{letter-spacing:-0.105984px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.016200px;}
.ls1b{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.178200px;}
.ls11{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.192960px;}
.lsd{letter-spacing:0.256968px;}
.ls5{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.270144px;}
.lsf{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.324000px;}
.ls21{letter-spacing:0.358560px;}
.ls4{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.361800px;}
.ls2{letter-spacing:0.449280px;}
.ls15{letter-spacing:0.830664px;}
.lse{letter-spacing:1.015920px;}
.ls1a{letter-spacing:2.268000px;}
.ls16{letter-spacing:29.628000px;}
.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:-16.560000px;}
.wse{word-spacing:-16.454016px;}
.ws6{word-spacing:-15.955920px;}
.ws11{word-spacing:-15.298560px;}
.ws7{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.760720px;}
.ws12{word-spacing:-14.730840px;}
.wsb{word-spacing:-14.581440px;}
.wsa{word-spacing:-13.861800px;}
.wsf{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.227408px;}
.ws2{word-spacing:-13.140576px;}
.wsc{word-spacing:-13.138200px;}
.ws10{word-spacing:-13.122000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-3.562416px;}
._2{margin-left:-2.270880px;}
._0{margin-left:-1.254240px;}
._1{width:1.035216px;}
._3{width:2.233872px;}
._4{width:3.606912px;}
._9{width:4.696416px;}
._6{width:6.454080px;}
._5{width:7.709040px;}
._e{width:9.559728px;}
._7{width:10.976544px;}
._8{width:12.131280px;}
._12{width:13.266720px;}
._11{width:15.336144px;}
._15{width:17.460000px;}
._d{width:18.606528px;}
._b{width:19.859616px;}
._c{width:21.075984px;}
._a{width:22.091904px;}
._14{width:23.605200px;}
._13{width:24.621120px;}
._10{width:26.557920px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:5.760000px;}
.fs3{font-size:12.240000px;}
.fs8{font-size:23.760000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.520000px;}
.ya{bottom:3.240000px;}
.y5d{bottom:3.600000px;}
.y34{bottom:3.780000px;}
.y13d{bottom:11.700000px;}
.y139{bottom:11.880000px;}
.y9{bottom:17.100000px;}
.y13c{bottom:20.340000px;}
.y14{bottom:20.520000px;}
.y8{bottom:30.960000px;}
.y13{bottom:37.800000px;}
.y7{bottom:47.700000px;}
.y12{bottom:55.080000px;}
.y11{bottom:56.520000px;}
.yc{bottom:57.096000px;}
.y6{bottom:61.380000px;}
.y5{bottom:78.120000px;}
.y4{bottom:91.980000px;}
.y3{bottom:105.840000px;}
.y31{bottom:228.450000px;}
.y84{bottom:229.350000px;}
.y7b{bottom:232.230000px;}
.ya1{bottom:236.190000px;}
.y92{bottom:237.630000px;}
.yf1{bottom:238.170000px;}
.y9a{bottom:242.490000px;}
.y137{bottom:243.750000px;}
.y83{bottom:246.630000px;}
.y122{bottom:248.610000px;}
.y7a{bottom:249.510000px;}
.yc7{bottom:250.770000px;}
.y30{bottom:250.950000px;}
.y8e{bottom:253.470000px;}
.yf0{bottom:253.830000px;}
.y91{bottom:254.550000px;}
.y99{bottom:259.770000px;}
.y136{bottom:261.030000px;}
.y2f{bottom:263.010000px;}
.y82{bottom:263.910000px;}
.y121{bottom:264.090000px;}
.y5b{bottom:265.170000px;}
.y79{bottom:266.610000px;}
.yc6{bottom:268.050000px;}
.yef{bottom:269.310000px;}
.y90{bottom:270.030000px;}
.ya0{bottom:270.570000px;}
.y8d{bottom:270.750000px;}
.y98{bottom:276.870000px;}
.y135{bottom:278.130000px;}
.y120{bottom:279.570000px;}
.y81{bottom:281.010000px;}
.y78{bottom:283.935000px;}
.yee{bottom:284.835000px;}
.y5a{bottom:285.195000px;}
.yc5{bottom:285.375000px;}
.y9f{bottom:287.895000px;}
.y8c{bottom:288.075000px;}
.y97{bottom:294.195000px;}
.y2e{bottom:295.275000px;}
.y134{bottom:295.455000px;}
.y80{bottom:298.335000px;}
.yed{bottom:300.315000px;}
.y77{bottom:301.215000px;}
.yc4{bottom:302.655000px;}
.y59{bottom:304.995000px;}
.y9e{bottom:305.175000px;}
.y8b{bottom:305.355000px;}
.y11f{bottom:310.755000px;}
.y96{bottom:311.115000px;}
.y2d{bottom:312.375000px;}
.y133{bottom:312.735000px;}
.y7f{bottom:315.255000px;}
.yec{bottom:316.155000px;}
.y76{bottom:318.135000px;}
.yc3{bottom:319.935000px;}
.y8a{bottom:322.455000px;}
.y58{bottom:324.795000px;}
.y11e{bottom:326.235000px;}
.y2c{bottom:329.655000px;}
.y132{bottom:330.015000px;}
.y95{bottom:331.275000px;}
.yeb{bottom:333.435000px;}
.y75{bottom:333.615000px;}
.yc2{bottom:336.855000px;}
.y89{bottom:339.735000px;}
.y11d{bottom:341.715000px;}
.y57{bottom:344.595000px;}
.y2b{bottom:346.935000px;}
.y131{bottom:347.295000px;}
.yea{bottom:350.715000px;}
.yc1{bottom:352.335000px;}
.y9d{bottom:356.655000px;}
.y88{bottom:357.015000px;}
.y11c{bottom:357.195000px;}
.y2a{bottom:364.215000px;}
.y56{bottom:364.395000px;}
.y130{bottom:364.575000px;}
.yc0{bottom:367.815000px;}
.ye9{bottom:367.995000px;}
.y11b{bottom:372.855000px;}
.y87{bottom:373.935000px;}
.y12f{bottom:381.675000px;}
.y55{bottom:384.375000px;}
.ye8{bottom:385.275000px;}
.ybf{bottom:387.795000px;}
.y11a{bottom:388.335000px;}
.y29{bottom:390.315000px;}
.y86{bottom:393.915000px;}
.y12e{bottom:398.955000px;}
.ye7{bottom:402.375000px;}
.y119{bottom:403.815000px;}
.y54{bottom:404.175000px;}
.y28{bottom:407.595000px;}
.ybe{bottom:407.955000px;}
.y12d{bottom:416.235000px;}
.y118{bottom:419.295000px;}
.ye6{bottom:419.655000px;}
.y53{bottom:423.975000px;}
.y27{bottom:424.875000px;}
.ybd{bottom:427.935000px;}
.y12c{bottom:433.515000px;}
.y117{bottom:434.955000px;}
.ye5{bottom:436.935000px;}
.y52{bottom:441.255000px;}
.y26{bottom:442.155000px;}
.ybc{bottom:447.915000px;}
.y116{bottom:450.435000px;}
.y12b{bottom:450.795000px;}
.ye4{bottom:454.215000px;}
.y51{bottom:458.535000px;}
.y25{bottom:459.435000px;}
.y115{bottom:465.915000px;}
.ybb{bottom:467.895000px;}
.ye3{bottom:471.495000px;}
.y12a{bottom:473.295000px;}
.y50{bottom:475.815000px;}
.y24{bottom:476.715000px;}
.y114{bottom:481.395000px;}
.y129{bottom:485.175000px;}
.yba{bottom:488.055000px;}
.ye2{bottom:488.775000px;}
.y4f{bottom:492.915000px;}
.y23{bottom:493.995000px;}
.y113{bottom:497.055000px;}
.y128{bottom:502.455000px;}
.ye1{bottom:505.875000px;}
.yb9{bottom:508.035000px;}
.y22{bottom:511.095000px;}
.y112{bottom:512.535000px;}
.y4e{bottom:512.715000px;}
.y127{bottom:519.735000px;}
.ye0{bottom:523.155000px;}
.yb8{bottom:528.015000px;}
.y21{bottom:528.375000px;}
.y4d{bottom:532.695000px;}
.y126{bottom:537.015000px;}
.ydf{bottom:540.435000px;}
.y111{bottom:543.495000px;}
.y20{bottom:545.655000px;}
.yb7{bottom:547.995000px;}
.y4c{bottom:552.495000px;}
.y125{bottom:554.295000px;}
.yde{bottom:557.715000px;}
.y110{bottom:559.155000px;}
.y1f{bottom:562.935000px;}
.yb6{bottom:568.185000px;}
.y124{bottom:571.425000px;}
.y4b{bottom:572.325000px;}
.y74{bottom:573.585000px;}
.y10f{bottom:574.665000px;}
.ydd{bottom:575.025000px;}
.y1e{bottom:580.245000px;}
.yb5{bottom:588.165000px;}
.y123{bottom:588.705000px;}
.y10e{bottom:590.145000px;}
.y4a{bottom:592.125000px;}
.y73{bottom:595.545000px;}
.y1d{bottom:597.525000px;}
.y10d{bottom:605.625000px;}
.yb4{bottom:608.145000px;}
.ydc{bottom:609.405000px;}
.y49{bottom:611.925000px;}
.y1c{bottom:614.625000px;}
.y72{bottom:617.325000px;}
.y10c{bottom:621.285000px;}
.ydb{bottom:626.685000px;}
.yb3{bottom:628.125000px;}
.y7e{bottom:630.465000px;}
.y1b{bottom:631.905000px;}
.y71{bottom:635.685000px;}
.y10b{bottom:636.765000px;}
.yda{bottom:643.965000px;}
.y7d{bottom:647.385000px;}
.yb2{bottom:648.285000px;}
.y94{bottom:651.525000px;}
.y48{bottom:651.705000px;}
.y10a{bottom:652.245000px;}
.y1a{bottom:654.405000px;}
.y70{bottom:656.025000px;}
.yd9{bottom:661.245000px;}
.y9c{bottom:663.045000px;}
.y19{bottom:666.465000px;}
.y109{bottom:667.725000px;}
.yb1{bottom:668.265000px;}
.y93{bottom:668.445000px;}
.y47{bottom:671.505000px;}
.y6f{bottom:673.665000px;}
.yd8{bottom:678.525000px;}
.y9b{bottom:680.145000px;}
.y108{bottom:683.385000px;}
.y18{bottom:683.745000px;}
.yb0{bottom:688.245000px;}
.y46{bottom:691.305000px;}
.y6e{bottom:692.745000px;}
.yd7{bottom:695.625000px;}
.y107{bottom:698.865000px;}
.y17{bottom:700.845000px;}
.yaf{bottom:708.225000px;}
.y45{bottom:711.105000px;}
.y6d{bottom:711.645000px;}
.yd6{bottom:712.905000px;}
.y106{bottom:714.345000px;}
.y16{bottom:718.845000px;}
.y85{bottom:719.385000px;}
.yae{bottom:728.385000px;}
.y105{bottom:729.825000px;}
.yd5{bottom:730.185000px;}
.y6c{bottom:730.545000px;}
.y44{bottom:731.085000px;}
.y15{bottom:739.545000px;}
.y104{bottom:745.485000px;}
.yd4{bottom:747.465000px;}
.yad{bottom:748.365000px;}
.y6b{bottom:749.625000px;}
.y43{bottom:750.885000px;}
.y10{bottom:756.285000px;}
.y103{bottom:760.965000px;}
.yd3{bottom:764.745000px;}
.yac{bottom:768.345000px;}
.y6a{bottom:768.525000px;}
.y42{bottom:770.685000px;}
.y102{bottom:776.445000px;}
.y13b{bottom:778.785000px;}
.yd2{bottom:782.025000px;}
.y69{bottom:787.605000px;}
.yab{bottom:788.325000px;}
.y41{bottom:790.485000px;}
.y101{bottom:791.925000px;}
.yd1{bottom:799.125000px;}
.y68{bottom:806.505000px;}
.y100{bottom:807.585000px;}
.yaa{bottom:808.305000px;}
.y40{bottom:810.285000px;}
.y13a{bottom:813.165000px;}
.yd0{bottom:816.405000px;}
.yff{bottom:823.065000px;}
.y67{bottom:825.585000px;}
.ya9{bottom:828.465000px;}
.yf{bottom:828.645000px;}
.y3f{bottom:830.265000px;}
.ycf{bottom:833.685000px;}
.yfe{bottom:838.545000px;}
.yb{bottom:843.405000px;}
.y66{bottom:844.485000px;}
.y2{bottom:847.590000px;}
.y138{bottom:847.770000px;}
.ya8{bottom:848.490000px;}
.y3e{bottom:850.110000px;}
.yce{bottom:851.010000px;}
.yfd{bottom:854.070000px;}
.y65{bottom:863.430000px;}
.ycd{bottom:868.290000px;}
.ya7{bottom:868.470000px;}
.yfc{bottom:869.550000px;}
.y3d{bottom:869.910000px;}
.y64{bottom:884.670000px;}
.yfb{bottom:885.210000px;}
.ycc{bottom:885.390000px;}
.ya6{bottom:888.450000px;}
.y3c{bottom:889.710000px;}
.yfa{bottom:900.690000px;}
.ycb{bottom:902.670000px;}
.y63{bottom:904.470000px;}
.ya5{bottom:908.610000px;}
.y3b{bottom:909.510000px;}
.yf9{bottom:916.170000px;}
.yca{bottom:919.950000px;}
.y62{bottom:924.270000px;}
.ya4{bottom:928.590000px;}
.y3a{bottom:929.490000px;}
.yf8{bottom:931.650000px;}
.yc9{bottom:937.230000px;}
.y61{bottom:944.070000px;}
.yf7{bottom:947.310000px;}
.ya3{bottom:948.570000px;}
.y39{bottom:949.290000px;}
.yc8{bottom:954.510000px;}
.yf6{bottom:962.790000px;}
.y60{bottom:963.870000px;}
.yd{bottom:966.930000px;}
.ya2{bottom:968.550000px;}
.y38{bottom:969.090000px;}
.y7c{bottom:971.790000px;}
.yf5{bottom:978.270000px;}
.y5f{bottom:983.850000px;}
.y37{bottom:988.890000px;}
.yf4{bottom:993.750000px;}
.y8f{bottom:997.350000px;}
.y5e{bottom:1003.650000px;}
.y36{bottom:1006.170000px;}
.yf3{bottom:1009.410000px;}
.y35{bottom:1023.450000px;}
.yf2{bottom:1024.890000px;}
.y5c{bottom:1065.210000px;}
.y33{bottom:1067.010000px;}
.y32{bottom:1071.690000px;}
.y1{bottom:1082.850000px;}
.h2{height:4.002188px;}
.h7{height:8.504648px;}
.h9{height:13.860000px;}
.h1c{height:16.509023px;}
.h18{height:18.900000px;}
.h16{height:19.080000px;}
.h14{height:27.014766px;}
.h12{height:28.375312px;}
.ha{height:32.693906px;}
.h1e{height:34.380000px;}
.h1f{height:34.596000px;}
.h4{height:35.120039px;}
.hc{height:37.494141px;}
.h6{height:37.520508px;}
.h1d{height:39.313477px;}
.hf{height:40.501406px;}
.h13{height:41.493516px;}
.h8{height:41.522695px;}
.h5{height:43.105078px;}
.h15{height:44.507812px;}
.h17{height:46.025156px;}
.h11{height:47.230313px;}
.h1a{height:47.276367px;}
.h10{height:48.796875px;}
.hd{height:49.255313px;}
.h1b{height:52.319180px;}
.he{height:53.252930px;}
.h19{height:57.992344px;}
.hb{height:69.120000px;}
.h3{height:117.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:27.000000px;}
.wa{width:36.036000px;}
.w4{width:127.476000px;}
.wb{width:194.070000px;}
.w5{width:204.330000px;}
.w3{width:206.310000px;}
.w6{width:215.850000px;}
.w7{width:270.030000px;}
.w8{width:270.255000px;}
.wc{width:276.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.160000px;}
.x12{left:4.320000px;}
.x2f{left:8.100000px;}
.x9{left:16.020000px;}
.xb{left:19.440000px;}
.x20{left:27.765000px;}
.x15{left:47.730000px;}
.x7{left:84.780000px;}
.x8{left:89.460000px;}
.xa{left:111.420000px;}
.x5{left:122.790000px;}
.xd{left:136.800000px;}
.xe{left:145.440000px;}
.x16{left:148.530000px;}
.x14{left:158.070000px;}
.xc{left:166.860000px;}
.x2{left:177.510000px;}
.xf{left:178.589987px;}
.x11{left:182.910000px;}
.x21{left:184.529987px;}
.x2e{left:186.690000px;}
.x24{left:188.489987px;}
.x28{left:194.069987px;}
.x17{left:195.509987px;}
.x29{left:201.629987px;}
.x26{left:204.149987px;}
.x1{left:205.409987px;}
.x18{left:207.209987px;}
.x23{left:209.909987px;}
.x25{left:211.349987px;}
.x27{left:218.369987px;}
.x2c{left:231.149987px;}
.x22{left:234.209987px;}
.x1c{left:238.889987px;}
.x2d{left:247.349987px;}
.x2a{left:293.294987px;}
.x10{left:327.135000px;}
.x1e{left:346.934987px;}
.x30{left:380.775000px;}
.x1a{left:381.854987px;}
.x4{left:383.835000px;}
.x1d{left:386.534987px;}
.x2b{left:395.714987px;}
.x1b{left:421.454987px;}
.x19{left:446.474987px;}
.x13{left:452.955000px;}
.x6{left:511.305000px;}
.x1f{left:678.345000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.385920pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls13{letter-spacing:-0.321600pt;}
.ls12{letter-spacing:-0.318720pt;}
.lsa{letter-spacing:-0.240128pt;}
.ls22{letter-spacing:-0.185920pt;}
.ls7{letter-spacing:-0.171520pt;}
.ls9{letter-spacing:-0.162944pt;}
.lsc{letter-spacing:-0.159360pt;}
.ls14{letter-spacing:-0.094208pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.014400pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.158400pt;}
.ls11{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.171520pt;}
.lsd{letter-spacing:0.228416pt;}
.ls5{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.240128pt;}
.lsf{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.288000pt;}
.ls21{letter-spacing:0.318720pt;}
.ls4{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.321600pt;}
.ls2{letter-spacing:0.399360pt;}
.ls15{letter-spacing:0.738368pt;}
.lse{letter-spacing:0.903040pt;}
.ls1a{letter-spacing:2.016000pt;}
.ls16{letter-spacing:26.336000pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.625792pt;}
.ws6{word-spacing:-14.183040pt;}
.ws11{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.120640pt;}
.ws12{word-spacing:-13.094080pt;}
.wsb{word-spacing:-12.961280pt;}
.wsa{word-spacing:-12.321600pt;}
.wsf{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.757696pt;}
.ws2{word-spacing:-11.680512pt;}
.wsc{word-spacing:-11.678400pt;}
.ws10{word-spacing:-11.664000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-3.166592pt;}
._2{margin-left:-2.018560pt;}
._0{margin-left:-1.114880pt;}
._1{width:0.920192pt;}
._3{width:1.985664pt;}
._4{width:3.206144pt;}
._9{width:4.174592pt;}
._6{width:5.736960pt;}
._5{width:6.852480pt;}
._e{width:8.497536pt;}
._7{width:9.756928pt;}
._8{width:10.783360pt;}
._12{width:11.792640pt;}
._11{width:13.632128pt;}
._15{width:15.520000pt;}
._d{width:16.539136pt;}
._b{width:17.652992pt;}
._c{width:18.734208pt;}
._a{width:19.637248pt;}
._14{width:20.982400pt;}
._13{width:21.885440pt;}
._10{width:23.607040pt;}
.fs0{font-size:5.120000pt;}
.fs3{font-size:10.880000pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.240000pt;}
.ya{bottom:2.880000pt;}
.y5d{bottom:3.200000pt;}
.y34{bottom:3.360000pt;}
.y13d{bottom:10.400000pt;}
.y139{bottom:10.560000pt;}
.y9{bottom:15.200000pt;}
.y13c{bottom:18.080000pt;}
.y14{bottom:18.240000pt;}
.y8{bottom:27.520000pt;}
.y13{bottom:33.600000pt;}
.y7{bottom:42.400000pt;}
.y12{bottom:48.960000pt;}
.y11{bottom:50.240000pt;}
.yc{bottom:50.752000pt;}
.y6{bottom:54.560000pt;}
.y5{bottom:69.440000pt;}
.y4{bottom:81.760000pt;}
.y3{bottom:94.080000pt;}
.y31{bottom:203.066667pt;}
.y84{bottom:203.866667pt;}
.y7b{bottom:206.426667pt;}
.ya1{bottom:209.946667pt;}
.y92{bottom:211.226667pt;}
.yf1{bottom:211.706667pt;}
.y9a{bottom:215.546667pt;}
.y137{bottom:216.666667pt;}
.y83{bottom:219.226667pt;}
.y122{bottom:220.986667pt;}
.y7a{bottom:221.786667pt;}
.yc7{bottom:222.906667pt;}
.y30{bottom:223.066667pt;}
.y8e{bottom:225.306667pt;}
.yf0{bottom:225.626667pt;}
.y91{bottom:226.266667pt;}
.y99{bottom:230.906667pt;}
.y136{bottom:232.026667pt;}
.y2f{bottom:233.786667pt;}
.y82{bottom:234.586667pt;}
.y121{bottom:234.746667pt;}
.y5b{bottom:235.706667pt;}
.y79{bottom:236.986667pt;}
.yc6{bottom:238.266667pt;}
.yef{bottom:239.386667pt;}
.y90{bottom:240.026667pt;}
.ya0{bottom:240.506667pt;}
.y8d{bottom:240.666667pt;}
.y98{bottom:246.106667pt;}
.y135{bottom:247.226667pt;}
.y120{bottom:248.506667pt;}
.y81{bottom:249.786667pt;}
.y78{bottom:252.386667pt;}
.yee{bottom:253.186667pt;}
.y5a{bottom:253.506667pt;}
.yc5{bottom:253.666667pt;}
.y9f{bottom:255.906667pt;}
.y8c{bottom:256.066667pt;}
.y97{bottom:261.506667pt;}
.y2e{bottom:262.466667pt;}
.y134{bottom:262.626667pt;}
.y80{bottom:265.186667pt;}
.yed{bottom:266.946667pt;}
.y77{bottom:267.746667pt;}
.yc4{bottom:269.026667pt;}
.y59{bottom:271.106667pt;}
.y9e{bottom:271.266667pt;}
.y8b{bottom:271.426667pt;}
.y11f{bottom:276.226667pt;}
.y96{bottom:276.546667pt;}
.y2d{bottom:277.666667pt;}
.y133{bottom:277.986667pt;}
.y7f{bottom:280.226667pt;}
.yec{bottom:281.026667pt;}
.y76{bottom:282.786667pt;}
.yc3{bottom:284.386667pt;}
.y8a{bottom:286.626667pt;}
.y58{bottom:288.706667pt;}
.y11e{bottom:289.986667pt;}
.y2c{bottom:293.026667pt;}
.y132{bottom:293.346667pt;}
.y95{bottom:294.466667pt;}
.yeb{bottom:296.386667pt;}
.y75{bottom:296.546667pt;}
.yc2{bottom:299.426667pt;}
.y89{bottom:301.986667pt;}
.y11d{bottom:303.746667pt;}
.y57{bottom:306.306667pt;}
.y2b{bottom:308.386667pt;}
.y131{bottom:308.706667pt;}
.yea{bottom:311.746667pt;}
.yc1{bottom:313.186667pt;}
.y9d{bottom:317.026667pt;}
.y88{bottom:317.346667pt;}
.y11c{bottom:317.506667pt;}
.y2a{bottom:323.746667pt;}
.y56{bottom:323.906667pt;}
.y130{bottom:324.066667pt;}
.yc0{bottom:326.946667pt;}
.ye9{bottom:327.106667pt;}
.y11b{bottom:331.426667pt;}
.y87{bottom:332.386667pt;}
.y12f{bottom:339.266667pt;}
.y55{bottom:341.666667pt;}
.ye8{bottom:342.466667pt;}
.ybf{bottom:344.706667pt;}
.y11a{bottom:345.186667pt;}
.y29{bottom:346.946667pt;}
.y86{bottom:350.146667pt;}
.y12e{bottom:354.626667pt;}
.ye7{bottom:357.666667pt;}
.y119{bottom:358.946667pt;}
.y54{bottom:359.266667pt;}
.y28{bottom:362.306667pt;}
.ybe{bottom:362.626667pt;}
.y12d{bottom:369.986667pt;}
.y118{bottom:372.706667pt;}
.ye6{bottom:373.026667pt;}
.y53{bottom:376.866667pt;}
.y27{bottom:377.666667pt;}
.ybd{bottom:380.386667pt;}
.y12c{bottom:385.346667pt;}
.y117{bottom:386.626667pt;}
.ye5{bottom:388.386667pt;}
.y52{bottom:392.226667pt;}
.y26{bottom:393.026667pt;}
.ybc{bottom:398.146667pt;}
.y116{bottom:400.386667pt;}
.y12b{bottom:400.706667pt;}
.ye4{bottom:403.746667pt;}
.y51{bottom:407.586667pt;}
.y25{bottom:408.386667pt;}
.y115{bottom:414.146667pt;}
.ybb{bottom:415.906667pt;}
.ye3{bottom:419.106667pt;}
.y12a{bottom:420.706667pt;}
.y50{bottom:422.946667pt;}
.y24{bottom:423.746667pt;}
.y114{bottom:427.906667pt;}
.y129{bottom:431.266667pt;}
.yba{bottom:433.826667pt;}
.ye2{bottom:434.466667pt;}
.y4f{bottom:438.146667pt;}
.y23{bottom:439.106667pt;}
.y113{bottom:441.826667pt;}
.y128{bottom:446.626667pt;}
.ye1{bottom:449.666667pt;}
.yb9{bottom:451.586667pt;}
.y22{bottom:454.306667pt;}
.y112{bottom:455.586667pt;}
.y4e{bottom:455.746667pt;}
.y127{bottom:461.986667pt;}
.ye0{bottom:465.026667pt;}
.yb8{bottom:469.346667pt;}
.y21{bottom:469.666667pt;}
.y4d{bottom:473.506667pt;}
.y126{bottom:477.346667pt;}
.ydf{bottom:480.386667pt;}
.y111{bottom:483.106667pt;}
.y20{bottom:485.026667pt;}
.yb7{bottom:487.106667pt;}
.y4c{bottom:491.106667pt;}
.y125{bottom:492.706667pt;}
.yde{bottom:495.746667pt;}
.y110{bottom:497.026667pt;}
.y1f{bottom:500.386667pt;}
.yb6{bottom:505.053333pt;}
.y124{bottom:507.933333pt;}
.y4b{bottom:508.733333pt;}
.y74{bottom:509.853333pt;}
.y10f{bottom:510.813333pt;}
.ydd{bottom:511.133333pt;}
.y1e{bottom:515.773333pt;}
.yb5{bottom:522.813333pt;}
.y123{bottom:523.293333pt;}
.y10e{bottom:524.573333pt;}
.y4a{bottom:526.333333pt;}
.y73{bottom:529.373333pt;}
.y1d{bottom:531.133333pt;}
.y10d{bottom:538.333333pt;}
.yb4{bottom:540.573333pt;}
.ydc{bottom:541.693333pt;}
.y49{bottom:543.933333pt;}
.y1c{bottom:546.333333pt;}
.y72{bottom:548.733333pt;}
.y10c{bottom:552.253333pt;}
.ydb{bottom:557.053333pt;}
.yb3{bottom:558.333333pt;}
.y7e{bottom:560.413333pt;}
.y1b{bottom:561.693333pt;}
.y71{bottom:565.053333pt;}
.y10b{bottom:566.013333pt;}
.yda{bottom:572.413333pt;}
.y7d{bottom:575.453333pt;}
.yb2{bottom:576.253333pt;}
.y94{bottom:579.133333pt;}
.y48{bottom:579.293333pt;}
.y10a{bottom:579.773333pt;}
.y1a{bottom:581.693333pt;}
.y70{bottom:583.133333pt;}
.yd9{bottom:587.773333pt;}
.y9c{bottom:589.373333pt;}
.y19{bottom:592.413333pt;}
.y109{bottom:593.533333pt;}
.yb1{bottom:594.013333pt;}
.y93{bottom:594.173333pt;}
.y47{bottom:596.893333pt;}
.y6f{bottom:598.813333pt;}
.yd8{bottom:603.133333pt;}
.y9b{bottom:604.573333pt;}
.y108{bottom:607.453333pt;}
.y18{bottom:607.773333pt;}
.yb0{bottom:611.773333pt;}
.y46{bottom:614.493333pt;}
.y6e{bottom:615.773333pt;}
.yd7{bottom:618.333333pt;}
.y107{bottom:621.213333pt;}
.y17{bottom:622.973333pt;}
.yaf{bottom:629.533333pt;}
.y45{bottom:632.093333pt;}
.y6d{bottom:632.573333pt;}
.yd6{bottom:633.693333pt;}
.y106{bottom:634.973333pt;}
.y16{bottom:638.973333pt;}
.y85{bottom:639.453333pt;}
.yae{bottom:647.453333pt;}
.y105{bottom:648.733333pt;}
.yd5{bottom:649.053333pt;}
.y6c{bottom:649.373333pt;}
.y44{bottom:649.853333pt;}
.y15{bottom:657.373333pt;}
.y104{bottom:662.653333pt;}
.yd4{bottom:664.413333pt;}
.yad{bottom:665.213333pt;}
.y6b{bottom:666.333333pt;}
.y43{bottom:667.453333pt;}
.y10{bottom:672.253333pt;}
.y103{bottom:676.413333pt;}
.yd3{bottom:679.773333pt;}
.yac{bottom:682.973333pt;}
.y6a{bottom:683.133333pt;}
.y42{bottom:685.053333pt;}
.y102{bottom:690.173333pt;}
.y13b{bottom:692.253333pt;}
.yd2{bottom:695.133333pt;}
.y69{bottom:700.093333pt;}
.yab{bottom:700.733333pt;}
.y41{bottom:702.653333pt;}
.y101{bottom:703.933333pt;}
.yd1{bottom:710.333333pt;}
.y68{bottom:716.893333pt;}
.y100{bottom:717.853333pt;}
.yaa{bottom:718.493333pt;}
.y40{bottom:720.253333pt;}
.y13a{bottom:722.813333pt;}
.yd0{bottom:725.693333pt;}
.yff{bottom:731.613333pt;}
.y67{bottom:733.853333pt;}
.ya9{bottom:736.413333pt;}
.yf{bottom:736.573333pt;}
.y3f{bottom:738.013333pt;}
.ycf{bottom:741.053333pt;}
.yfe{bottom:745.373333pt;}
.yb{bottom:749.693333pt;}
.y66{bottom:750.653333pt;}
.y2{bottom:753.413333pt;}
.y138{bottom:753.573333pt;}
.ya8{bottom:754.213333pt;}
.y3e{bottom:755.653333pt;}
.yce{bottom:756.453333pt;}
.yfd{bottom:759.173333pt;}
.y65{bottom:767.493333pt;}
.ycd{bottom:771.813333pt;}
.ya7{bottom:771.973333pt;}
.yfc{bottom:772.933333pt;}
.y3d{bottom:773.253333pt;}
.y64{bottom:786.373333pt;}
.yfb{bottom:786.853333pt;}
.ycc{bottom:787.013333pt;}
.ya6{bottom:789.733333pt;}
.y3c{bottom:790.853333pt;}
.yfa{bottom:800.613333pt;}
.ycb{bottom:802.373333pt;}
.y63{bottom:803.973333pt;}
.ya5{bottom:807.653333pt;}
.y3b{bottom:808.453333pt;}
.yf9{bottom:814.373333pt;}
.yca{bottom:817.733333pt;}
.y62{bottom:821.573333pt;}
.ya4{bottom:825.413333pt;}
.y3a{bottom:826.213333pt;}
.yf8{bottom:828.133333pt;}
.yc9{bottom:833.093333pt;}
.y61{bottom:839.173333pt;}
.yf7{bottom:842.053333pt;}
.ya3{bottom:843.173333pt;}
.y39{bottom:843.813333pt;}
.yc8{bottom:848.453333pt;}
.yf6{bottom:855.813333pt;}
.y60{bottom:856.773333pt;}
.yd{bottom:859.493333pt;}
.ya2{bottom:860.933333pt;}
.y38{bottom:861.413333pt;}
.y7c{bottom:863.813333pt;}
.yf5{bottom:869.573333pt;}
.y5f{bottom:874.533333pt;}
.y37{bottom:879.013333pt;}
.yf4{bottom:883.333333pt;}
.y8f{bottom:886.533333pt;}
.y5e{bottom:892.133333pt;}
.y36{bottom:894.373333pt;}
.yf3{bottom:897.253333pt;}
.y35{bottom:909.733333pt;}
.yf2{bottom:911.013333pt;}
.y5c{bottom:946.853333pt;}
.y33{bottom:948.453333pt;}
.y32{bottom:952.613333pt;}
.y1{bottom:962.533333pt;}
.h2{height:3.557500pt;}
.h7{height:7.559687pt;}
.h9{height:12.320000pt;}
.h1c{height:14.674687pt;}
.h18{height:16.800000pt;}
.h16{height:16.960000pt;}
.h14{height:24.013125pt;}
.h12{height:25.222500pt;}
.ha{height:29.061250pt;}
.h1e{height:30.560000pt;}
.h1f{height:30.752000pt;}
.h4{height:31.217812pt;}
.hc{height:33.328125pt;}
.h6{height:33.351562pt;}
.h1d{height:34.945312pt;}
.hf{height:36.001250pt;}
.h13{height:36.883125pt;}
.h8{height:36.909063pt;}
.h5{height:38.315625pt;}
.h15{height:39.562500pt;}
.h17{height:40.911250pt;}
.h11{height:41.982500pt;}
.h1a{height:42.023438pt;}
.h10{height:43.375000pt;}
.hd{height:43.782500pt;}
.h1b{height:46.505938pt;}
.he{height:47.335938pt;}
.h19{height:51.548750pt;}
.hb{height:61.440000pt;}
.h3{height:104.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:24.000000pt;}
.wa{width:32.032000pt;}
.w4{width:113.312000pt;}
.wb{width:172.506667pt;}
.w5{width:181.626667pt;}
.w3{width:183.386667pt;}
.w6{width:191.866667pt;}
.w7{width:240.026667pt;}
.w8{width:240.226667pt;}
.wc{width:245.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.920000pt;}
.x12{left:3.840000pt;}
.x2f{left:7.200000pt;}
.x9{left:14.240000pt;}
.xb{left:17.280000pt;}
.x20{left:24.680000pt;}
.x15{left:42.426667pt;}
.x7{left:75.360000pt;}
.x8{left:79.520000pt;}
.xa{left:99.040000pt;}
.x5{left:109.146667pt;}
.xd{left:121.600000pt;}
.xe{left:129.280000pt;}
.x16{left:132.026667pt;}
.x14{left:140.506667pt;}
.xc{left:148.320000pt;}
.x2{left:157.786667pt;}
.xf{left:158.746655pt;}
.x11{left:162.586667pt;}
.x21{left:164.026655pt;}
.x2e{left:165.946667pt;}
.x24{left:167.546655pt;}
.x28{left:172.506655pt;}
.x17{left:173.786655pt;}
.x29{left:179.226655pt;}
.x26{left:181.466655pt;}
.x1{left:182.586655pt;}
.x18{left:184.186655pt;}
.x23{left:186.586655pt;}
.x25{left:187.866655pt;}
.x27{left:194.106655pt;}
.x2c{left:205.466655pt;}
.x22{left:208.186655pt;}
.x1c{left:212.346655pt;}
.x2d{left:219.866655pt;}
.x2a{left:260.706655pt;}
.x10{left:290.786667pt;}
.x1e{left:308.386655pt;}
.x30{left:338.466667pt;}
.x1a{left:339.426655pt;}
.x4{left:341.186667pt;}
.x1d{left:343.586655pt;}
.x2b{left:351.746655pt;}
.x1b{left:374.626655pt;}
.x19{left:396.866655pt;}
.x13{left:402.626667pt;}
.x6{left:454.493333pt;}
.x1f{left:602.973333pt;}
}




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