
    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_155d7d4b7aacfcc660ef4521.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061035;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_f44699b884f5f34ef36d6845.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_4c1b8a7e6a3d67514115064f.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_355ae135f2a4ef22de6d93c7.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9d879957ce356f3e19fa2354.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c0acd4b237d5a733afd13987.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m2{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:-27.360000px;}
.v4{vertical-align:-16.602282px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.602282px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:49.956417px;}
.ls16{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.094800px;}
.ls13{letter-spacing:-0.074785px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.036000px;}
.lse{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.074785px;}
.ls14{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.440000px;}
.lsc{letter-spacing:2.160000px;}
.ls7{letter-spacing:21.197280px;}
.ls2{letter-spacing:26.820000px;}
.ls11{letter-spacing:254.149532px;}
.ls10{letter-spacing:254.164489px;}
.ls12{letter-spacing:254.194403px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.420000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws11{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.478000px;}
.ws10{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:51.040800px;}
.ws8{word-spacing:51.668995px;}
.wsa{word-spacing:51.728823px;}
.wsd{word-spacing:145.868251px;}
.wsc{word-spacing:146.466531px;}
.wse{word-spacing:146.616101px;}
.wsb{word-spacing:213.765602px;}
.ws7{word-spacing:2564.464954px;}
._14{margin-left:-4.392000px;}
._7{margin-left:-3.096000px;}
._0{margin-left:-1.457280px;}
._1{width:1.244880px;}
._10{width:2.671200px;}
._b{width:3.816000px;}
._5{width:5.112000px;}
._6{width:6.192000px;}
._11{width:7.272000px;}
._f{width:8.496000px;}
._e{width:10.440000px;}
._8{width:11.880000px;}
._9{width:12.996000px;}
._d{width:14.633280px;}
._c{width:15.768000px;}
._15{width:16.920000px;}
._1d{width:18.144000px;}
._1c{width:19.224000px;}
._1a{width:20.520000px;}
._18{width:21.816000px;}
._19{width:22.887120px;}
._1b{width:24.120000px;}
._2{width:25.663680px;}
._a{width:27.216000px;}
._16{width:32.472000px;}
._17{width:33.624000px;}
._1f{width:34.650000px;}
._21{width:36.216000px;}
._22{width:37.224000px;}
._12{width:38.736000px;}
._13{width:39.960000px;}
._20{width:42.390000px;}
._1e{width:51.894000px;}
._24{width:67.680000px;}
._3{width:81.491760px;}
._4{width:82.736640px;}
._2b{width:84.384000px;}
._2c{width:85.392000px;}
._25{width:101.664000px;}
._26{width:103.104000px;}
._23{width:128.808000px;}
._28{width:198.126720px;}
._27{width:199.673280px;}
._29{width:266.400000px;}
._2a{width:267.540000px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs8{font-size:53.845240px;}
.fs7{font-size:53.994810px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.977614px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.092793px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:2.520000px;}
.ya3{bottom:2.880000px;}
.yab{bottom:3.420000px;}
.ya5{bottom:4.320000px;}
.yba{bottom:4.860000px;}
.y9d{bottom:5.608900px;}
.ydf{bottom:6.300000px;}
.y85{bottom:6.723475px;}
.yda{bottom:7.560000px;}
.ya1{bottom:10.620000px;}
.ybe{bottom:10.800000px;}
.yb2{bottom:11.160000px;}
.yb8{bottom:12.600000px;}
.y88{bottom:16.228368px;}
.ycc{bottom:18.000000px;}
.ya2{bottom:18.360000px;}
.yc1{bottom:18.540000px;}
.ya9{bottom:18.900000px;}
.yb6{bottom:20.340000px;}
.yde{bottom:21.780000px;}
.yd8{bottom:23.220000px;}
.ybd{bottom:26.280000px;}
.ya7{bottom:26.640000px;}
.yb0{bottom:26.670000px;}
.yc4{bottom:26.820000px;}
.y9c{bottom:27.670491px;}
.yb7{bottom:28.080000px;}
.yd6{bottom:30.960000px;}
.ycb{bottom:33.480000px;}
.yc7{bottom:33.660000px;}
.yd3{bottom:34.020000px;}
.yc0{bottom:34.200000px;}
.ya8{bottom:34.380000px;}
.yb4{bottom:34.410000px;}
.yad{bottom:34.560000px;}
.yb9{bottom:35.820000px;}
.ydb{bottom:37.440000px;}
.yd7{bottom:38.700000px;}
.yd2{bottom:41.760000px;}
.ybc{bottom:41.940000px;}
.yb1{bottom:42.150000px;}
.yc3{bottom:42.300000px;}
.yca{bottom:49.140000px;}
.yc6{bottom:49.320000px;}
.ybf{bottom:49.680000px;}
.y9b{bottom:49.732082px;}
.yaa{bottom:49.860000px;}
.yb3{bottom:49.890000px;}
.yae{bottom:50.040000px;}
.ydd{bottom:52.920000px;}
.yd9{bottom:54.180000px;}
.y6{bottom:57.420000px;}
.yc9{bottom:64.665000px;}
.ydc{bottom:68.445000px;}
.y9a{bottom:71.606715px;}
.y5{bottom:76.896000px;}
.yc8{bottom:80.145000px;}
.y92{bottom:89.218598px;}
.y4{bottom:96.156000px;}
.y93{bottom:110.008843px;}
.y3{bottom:115.236000px;}
.y8a{bottom:115.991642px;}
.y94{bottom:130.836482px;}
.y2{bottom:134.136000px;}
.y8f{bottom:145.120419px;}
.y91{bottom:149.278460px;}
.y95{bottom:151.626727px;}
.y8d{bottom:153.466424px;}
.y30{bottom:157.350000px;}
.y76{bottom:163.110000px;}
.y8b{bottom:165.955536px;}
.yf2{bottom:168.330000px;}
.y96{bottom:172.416973px;}
.y4c{bottom:176.070000px;}
.y83{bottom:176.610000px;}
.y2f{bottom:178.050000px;}
.y90{bottom:182.587727px;}
.yf1{bottom:189.030000px;}
.ycf{bottom:190.650000px;}
.y8e{bottom:190.888862px;}
.y97{bottom:193.252089px;}
.y75{bottom:194.070000px;}
.y135{bottom:196.230000px;}
.y2e{bottom:198.750000px;}
.y117{bottom:198.930000px;}
.y4b{bottom:207.210000px;}
.y82{bottom:207.570000px;}
.yf0{bottom:209.730000px;}
.y98{bottom:214.042334px;}
.y134{bottom:216.930000px;}
.y2d{bottom:219.450000px;}
.y116{bottom:219.630000px;}
.y8c{bottom:224.213090px;}
.y74{bottom:225.210000px;}
.y87{bottom:227.279271px;}
.yef{bottom:230.430000px;}
.y99{bottom:234.862494px;}
.y133{bottom:237.630000px;}
.y4a{bottom:238.170000px;}
.y81{bottom:238.710000px;}
.y2c{bottom:240.150000px;}
.y115{bottom:240.330000px;}
.yce{bottom:241.590000px;}
.yee{bottom:251.130000px;}
.y73{bottom:256.170000px;}
.y132{bottom:258.330000px;}
.yc5{bottom:260.490000px;}
.y2b{bottom:260.850000px;}
.y114{bottom:261.030000px;}
.y64{bottom:269.310000px;}
.y80{bottom:269.670000px;}
.yed{bottom:271.470000px;}
.y49{bottom:278.310000px;}
.y131{bottom:279.030000px;}
.y2a{bottom:281.550000px;}
.y113{bottom:281.730000px;}
.y72{bottom:287.310000px;}
.yec{bottom:291.090000px;}
.y130{bottom:299.730000px;}
.y63{bottom:300.270000px;}
.y7f{bottom:300.810000px;}
.y29{bottom:302.250000px;}
.y48{bottom:309.270000px;}
.yeb{bottom:311.790000px;}
.y71{bottom:318.315000px;}
.y12f{bottom:320.475000px;}
.y112{bottom:321.915000px;}
.y28{bottom:322.995000px;}
.y62{bottom:331.455000px;}
.y7e{bottom:331.815000px;}
.yea{bottom:332.535000px;}
.y47{bottom:340.455000px;}
.y12e{bottom:341.175000px;}
.y111{bottom:342.615000px;}
.y27{bottom:343.695000px;}
.y70{bottom:349.455000px;}
.ye9{bottom:353.235000px;}
.yc2{bottom:353.955000px;}
.y12d{bottom:361.875000px;}
.y61{bottom:362.415000px;}
.y7d{bottom:362.955000px;}
.y110{bottom:363.315000px;}
.y26{bottom:364.395000px;}
.y46{bottom:371.415000px;}
.ye8{bottom:373.935000px;}
.y6f{bottom:380.415000px;}
.y12c{bottom:382.575000px;}
.y10f{bottom:384.015000px;}
.y25{bottom:385.095000px;}
.y60{bottom:393.555000px;}
.y7c{bottom:393.915000px;}
.ye7{bottom:394.635000px;}
.y12b{bottom:403.275000px;}
.y10e{bottom:404.715000px;}
.y24{bottom:405.795000px;}
.y45{bottom:411.555000px;}
.ye6{bottom:415.335000px;}
.ybb{bottom:417.855000px;}
.y5f{bottom:423.795000px;}
.y12a{bottom:423.975000px;}
.y7b{bottom:425.055000px;}
.y10d{bottom:425.415000px;}
.y23{bottom:426.495000px;}
.ye5{bottom:436.035000px;}
.y44{bottom:442.515000px;}
.y129{bottom:444.675000px;}
.y10c{bottom:446.115000px;}
.y22{bottom:447.195000px;}
.y7a{bottom:452.055000px;}
.y84{bottom:453.030000px;}
.y128{bottom:465.375000px;}
.ye4{bottom:466.455000px;}
.y5e{bottom:466.815000px;}
.y21{bottom:467.895000px;}
.y6e{bottom:472.935000px;}
.y43{bottom:473.655000px;}
.y86{bottom:477.701549px;}
.y89{bottom:478.449413px;}
.y127{bottom:486.075000px;}
.y10b{bottom:487.515000px;}
.y20{bottom:488.595000px;}
.yb5{bottom:496.515000px;}
.y5d{bottom:497.775000px;}
.y42{bottom:504.615000px;}
.y126{bottom:506.775000px;}
.y10a{bottom:508.215000px;}
.y1f{bottom:509.295000px;}
.y6d{bottom:515.775000px;}
.y125{bottom:527.475000px;}
.y5c{bottom:528.735000px;}
.y109{bottom:528.915000px;}
.y1e{bottom:529.995000px;}
.y41{bottom:535.755000px;}
.ye3{bottom:540.435000px;}
.y6c{bottom:546.735000px;}
.yaf{bottom:547.635000px;}
.y124{bottom:548.175000px;}
.y108{bottom:549.615000px;}
.y1d{bottom:550.695000px;}
.y5b{bottom:559.875000px;}
.y40{bottom:566.715000px;}
.y123{bottom:568.905000px;}
.y107{bottom:570.345000px;}
.y1c{bottom:571.425000px;}
.y6b{bottom:577.905000px;}
.y122{bottom:589.605000px;}
.y5a{bottom:590.865000px;}
.y106{bottom:591.045000px;}
.y1b{bottom:592.125000px;}
.y3f{bottom:597.885000px;}
.ye2{bottom:602.385000px;}
.y6a{bottom:608.865000px;}
.y121{bottom:610.305000px;}
.yac{bottom:611.385000px;}
.y105{bottom:611.745000px;}
.y1a{bottom:612.825000px;}
.y59{bottom:631.005000px;}
.y104{bottom:632.445000px;}
.y19{bottom:633.525000px;}
.y3e{bottom:637.845000px;}
.y69{bottom:640.005000px;}
.y120{bottom:651.705000px;}
.y103{bottom:652.965000px;}
.y18{bottom:654.225000px;}
.y58{bottom:661.965000px;}
.ye1{bottom:664.485000px;}
.y3d{bottom:668.985000px;}
.y68{bottom:670.965000px;}
.y11f{bottom:672.405000px;}
.y102{bottom:673.665000px;}
.y17{bottom:674.925000px;}
.ya6{bottom:675.285000px;}
.y11e{bottom:692.745000px;}
.y57{bottom:693.105000px;}
.y101{bottom:694.365000px;}
.y16{bottom:695.625000px;}
.y3c{bottom:699.945000px;}
.y67{bottom:702.105000px;}
.y11d{bottom:712.365000px;}
.y100{bottom:715.065000px;}
.y15{bottom:716.145000px;}
.y56{bottom:724.065000px;}
.ye0{bottom:725.865000px;}
.y3b{bottom:731.085000px;}
.y66{bottom:733.065000px;}
.yff{bottom:735.765000px;}
.y14{bottom:736.845000px;}
.ya4{bottom:739.005000px;}
.y79{bottom:747.825000px;}
.y11c{bottom:753.765000px;}
.y55{bottom:755.205000px;}
.yfe{bottom:756.465000px;}
.y13{bottom:757.545000px;}
.ya0{bottom:757.905000px;}
.y3a{bottom:762.045000px;}
.y65{bottom:764.205000px;}
.y78{bottom:768.525000px;}
.y11b{bottom:774.465000px;}
.yfd{bottom:777.165000px;}
.y12{bottom:778.245000px;}
.y77{bottom:789.225000px;}
.y39{bottom:793.185000px;}
.y54{bottom:795.165000px;}
.yfc{bottom:797.685000px;}
.y9f{bottom:799.665000px;}
.y11{bottom:805.785000px;}
.y11a{bottom:815.865000px;}
.yfb{bottom:817.305000px;}
.y9e{bottom:820.410000px;}
.y38{bottom:824.190000px;}
.y53{bottom:826.350000px;}
.y10{bottom:826.530000px;}
.y119{bottom:836.610000px;}
.yfa{bottom:838.050000px;}
.yd5{bottom:840.390000px;}
.yf{bottom:843.630000px;}
.y37{bottom:855.330000px;}
.y52{bottom:857.310000px;}
.yf9{bottom:858.750000px;}
.ye{bottom:864.330000px;}
.y118{bottom:878.010000px;}
.yf8{bottom:879.090000px;}
.yd{bottom:885.030000px;}
.y36{bottom:886.290000px;}
.y51{bottom:888.450000px;}
.yf7{bottom:898.710000px;}
.yc{bottom:906.990000px;}
.yd4{bottom:912.570000px;}
.y35{bottom:917.430000px;}
.y50{bottom:919.410000px;}
.yd1{bottom:931.470000px;}
.yb{bottom:934.530000px;}
.yf6{bottom:940.110000px;}
.y34{bottom:948.390000px;}
.y4f{bottom:950.550000px;}
.yf5{bottom:960.810000px;}
.ya{bottom:962.250000px;}
.y33{bottom:979.530000px;}
.y4e{bottom:981.510000px;}
.y9{bottom:989.790000px;}
.yf4{bottom:1002.210000px;}
.yd0{bottom:1010.130000px;}
.y32{bottom:1010.490000px;}
.y4d{bottom:1012.650000px;}
.y8{bottom:1017.330000px;}
.yf3{bottom:1022.910000px;}
.y31{bottom:1040.730000px;}
.y7{bottom:1043.610000px;}
.y1{bottom:1118.340000px;}
.h16{height:18.000000px;}
.h14{height:30.960000px;}
.h8{height:43.246406px;}
.h15{height:47.961914px;}
.h12{height:48.405503px;}
.h18{height:48.410156px;}
.h1b{height:50.220000px;}
.hc{height:53.271133px;}
.hf{height:53.768994px;}
.h9{height:54.878906px;}
.h1{height:55.825312px;}
.h2{height:59.383125px;}
.h17{height:63.000000px;}
.h1a{height:63.036000px;}
.h19{height:63.180000px;}
.h3{height:63.949219px;}
.h7{height:64.546875px;}
.he{height:64.630063px;}
.h11{height:64.873699px;}
.h6{height:70.606406px;}
.h1e{height:71.460000px;}
.ha{height:74.820586px;}
.h1c{height:77.940000px;}
.h1f{height:84.456000px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.h1d{height:92.736000px;}
.h13{height:98.361921px;}
.h10{height:254.269216px;}
.hd{height:255.764902px;}
.hb{height:284.176021px;}
.h0{height:1188.000000px;}
.w5{width:139.320000px;}
.w6{width:147.276000px;}
.w3{width:208.996987px;}
.w7{width:418.215000px;}
.w4{width:472.677763px;}
.w2{width:700.402070px;}
.w8{width:705.525000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:2.247289px;}
.x23{left:5.220000px;}
.x28{left:6.840000px;}
.x17{left:9.738216px;}
.x1c{left:12.240000px;}
.x2b{left:14.400000px;}
.x29{left:18.225000px;}
.x26{left:19.485000px;}
.x25{left:21.465000px;}
.x22{left:23.214000px;}
.x2e{left:24.885000px;}
.xe{left:28.240819px;}
.x1e{left:30.645000px;}
.x31{left:33.474000px;}
.x2f{left:34.785000px;}
.x2d{left:36.714000px;}
.x27{left:41.445000px;}
.x32{left:42.885000px;}
.x24{left:47.694000px;}
.x18{left:50.226700px;}
.x2a{left:51.834000px;}
.xd{left:53.709977px;}
.x2c{left:54.945000px;}
.x10{left:112.101789px;}
.x19{left:117.158170px;}
.x1{left:127.655986px;}
.x11{left:128.806564px;}
.xf{left:133.567735px;}
.x14{left:148.470259px;}
.x8{left:155.729986px;}
.x20{left:167.430000px;}
.x3{left:169.049986px;}
.x7{left:170.129986px;}
.x1a{left:182.549986px;}
.x4{left:199.109986px;}
.x15{left:218.885010px;}
.x1d{left:267.330000px;}
.x12{left:269.598615px;}
.x21{left:288.039000px;}
.x16{left:289.299764px;}
.x5{left:292.934986px;}
.x2{left:305.174986px;}
.x30{left:313.239000px;}
.x33{left:327.819000px;}
.x13{left:339.968420px;}
.x9{left:405.614986px;}
.x1f{left:414.975000px;}
.x1b{left:439.094986px;}
.x6{left:480.344986px;}
.xc{left:612.238233px;}
.xa{left:829.769986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-14.757584pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.757584pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:44.405704pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.084267pt;}
.ls13{letter-spacing:-0.066476pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.066476pt;}
.ls14{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls7{letter-spacing:18.842027pt;}
.ls2{letter-spacing:23.840000pt;}
.ls11{letter-spacing:225.910695pt;}
.ls10{letter-spacing:225.923990pt;}
.ls12{letter-spacing:225.950581pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws11{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.869333pt;}
.ws10{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:45.369600pt;}
.ws8{word-spacing:45.927995pt;}
.wsa{word-spacing:45.981176pt;}
.wsd{word-spacing:129.660667pt;}
.wsc{word-spacing:130.192472pt;}
.wse{word-spacing:130.325423pt;}
.wsb{word-spacing:190.013869pt;}
.ws7{word-spacing:2279.524404pt;}
._14{margin-left:-3.904000pt;}
._7{margin-left:-2.752000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.106560pt;}
._10{width:2.374400pt;}
._b{width:3.392000pt;}
._5{width:4.544000pt;}
._6{width:5.504000pt;}
._11{width:6.464000pt;}
._f{width:7.552000pt;}
._e{width:9.280000pt;}
._8{width:10.560000pt;}
._9{width:11.552000pt;}
._d{width:13.007360pt;}
._c{width:14.016000pt;}
._15{width:15.040000pt;}
._1d{width:16.128000pt;}
._1c{width:17.088000pt;}
._1a{width:18.240000pt;}
._18{width:19.392000pt;}
._19{width:20.344107pt;}
._1b{width:21.440000pt;}
._2{width:22.812160pt;}
._a{width:24.192000pt;}
._16{width:28.864000pt;}
._17{width:29.888000pt;}
._1f{width:30.800000pt;}
._21{width:32.192000pt;}
._22{width:33.088000pt;}
._12{width:34.432000pt;}
._13{width:35.520000pt;}
._20{width:37.680000pt;}
._1e{width:46.128000pt;}
._24{width:60.160000pt;}
._3{width:72.437120pt;}
._4{width:73.543680pt;}
._2b{width:75.008000pt;}
._2c{width:75.904000pt;}
._25{width:90.368000pt;}
._26{width:91.648000pt;}
._23{width:114.496000pt;}
._28{width:176.112640pt;}
._27{width:177.487360pt;}
._29{width:236.800000pt;}
._2a{width:237.813333pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:47.862435pt;}
.fs7{font-size:47.995387pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.313435pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.082483pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.240000pt;}
.ya3{bottom:2.560000pt;}
.yab{bottom:3.040000pt;}
.ya5{bottom:3.840000pt;}
.yba{bottom:4.320000pt;}
.y9d{bottom:4.985689pt;}
.ydf{bottom:5.600000pt;}
.y85{bottom:5.976423pt;}
.yda{bottom:6.720000pt;}
.ya1{bottom:9.440000pt;}
.ybe{bottom:9.600000pt;}
.yb2{bottom:9.920000pt;}
.yb8{bottom:11.200000pt;}
.y88{bottom:14.425216pt;}
.ycc{bottom:16.000000pt;}
.ya2{bottom:16.320000pt;}
.yc1{bottom:16.480000pt;}
.ya9{bottom:16.800000pt;}
.yb6{bottom:18.080000pt;}
.yde{bottom:19.360000pt;}
.yd8{bottom:20.640000pt;}
.ybd{bottom:23.360000pt;}
.ya7{bottom:23.680000pt;}
.yb0{bottom:23.706667pt;}
.yc4{bottom:23.840000pt;}
.y9c{bottom:24.595992pt;}
.yb7{bottom:24.960000pt;}
.yd6{bottom:27.520000pt;}
.ycb{bottom:29.760000pt;}
.yc7{bottom:29.920000pt;}
.yd3{bottom:30.240000pt;}
.yc0{bottom:30.400000pt;}
.ya8{bottom:30.560000pt;}
.yb4{bottom:30.586667pt;}
.yad{bottom:30.720000pt;}
.yb9{bottom:31.840000pt;}
.ydb{bottom:33.280000pt;}
.yd7{bottom:34.400000pt;}
.yd2{bottom:37.120000pt;}
.ybc{bottom:37.280000pt;}
.yb1{bottom:37.466667pt;}
.yc3{bottom:37.600000pt;}
.yca{bottom:43.680000pt;}
.yc6{bottom:43.840000pt;}
.ybf{bottom:44.160000pt;}
.y9b{bottom:44.206296pt;}
.yaa{bottom:44.320000pt;}
.yb3{bottom:44.346667pt;}
.yae{bottom:44.480000pt;}
.ydd{bottom:47.040000pt;}
.yd9{bottom:48.160000pt;}
.y6{bottom:51.040000pt;}
.yc9{bottom:57.480000pt;}
.ydc{bottom:60.840000pt;}
.y9a{bottom:63.650413pt;}
.y5{bottom:68.352000pt;}
.yc8{bottom:71.240000pt;}
.y92{bottom:79.305420pt;}
.y4{bottom:85.472000pt;}
.y93{bottom:97.785639pt;}
.y3{bottom:102.432000pt;}
.y8a{bottom:103.103682pt;}
.y94{bottom:116.299095pt;}
.y2{bottom:119.232000pt;}
.y8f{bottom:128.995928pt;}
.y91{bottom:132.691964pt;}
.y95{bottom:134.779313pt;}
.y8d{bottom:136.414599pt;}
.y30{bottom:139.866667pt;}
.y76{bottom:144.986667pt;}
.y8b{bottom:147.516032pt;}
.yf2{bottom:149.626667pt;}
.y96{bottom:153.259531pt;}
.y4c{bottom:156.506667pt;}
.y83{bottom:156.986667pt;}
.y2f{bottom:158.266667pt;}
.y90{bottom:162.300202pt;}
.yf1{bottom:168.026667pt;}
.ycf{bottom:169.466667pt;}
.y8e{bottom:169.678988pt;}
.y97{bottom:171.779635pt;}
.y75{bottom:172.506667pt;}
.y135{bottom:174.426667pt;}
.y2e{bottom:176.666667pt;}
.y117{bottom:176.826667pt;}
.y4b{bottom:184.186667pt;}
.y82{bottom:184.506667pt;}
.yf0{bottom:186.426667pt;}
.y98{bottom:190.259853pt;}
.y134{bottom:192.826667pt;}
.y2d{bottom:195.066667pt;}
.y116{bottom:195.226667pt;}
.y8c{bottom:199.300525pt;}
.y74{bottom:200.186667pt;}
.y87{bottom:202.026019pt;}
.yef{bottom:204.826667pt;}
.y99{bottom:208.766661pt;}
.y133{bottom:211.226667pt;}
.y4a{bottom:211.706667pt;}
.y81{bottom:212.186667pt;}
.y2c{bottom:213.466667pt;}
.y115{bottom:213.626667pt;}
.yce{bottom:214.746667pt;}
.yee{bottom:223.226667pt;}
.y73{bottom:227.706667pt;}
.y132{bottom:229.626667pt;}
.yc5{bottom:231.546667pt;}
.y2b{bottom:231.866667pt;}
.y114{bottom:232.026667pt;}
.y64{bottom:239.386667pt;}
.y80{bottom:239.706667pt;}
.yed{bottom:241.306667pt;}
.y49{bottom:247.386667pt;}
.y131{bottom:248.026667pt;}
.y2a{bottom:250.266667pt;}
.y113{bottom:250.426667pt;}
.y72{bottom:255.386667pt;}
.yec{bottom:258.746667pt;}
.y130{bottom:266.426667pt;}
.y63{bottom:266.906667pt;}
.y7f{bottom:267.386667pt;}
.y29{bottom:268.666667pt;}
.y48{bottom:274.906667pt;}
.yeb{bottom:277.146667pt;}
.y71{bottom:282.946667pt;}
.y12f{bottom:284.866667pt;}
.y112{bottom:286.146667pt;}
.y28{bottom:287.106667pt;}
.y62{bottom:294.626667pt;}
.y7e{bottom:294.946667pt;}
.yea{bottom:295.586667pt;}
.y47{bottom:302.626667pt;}
.y12e{bottom:303.266667pt;}
.y111{bottom:304.546667pt;}
.y27{bottom:305.506667pt;}
.y70{bottom:310.626667pt;}
.ye9{bottom:313.986667pt;}
.yc2{bottom:314.626667pt;}
.y12d{bottom:321.666667pt;}
.y61{bottom:322.146667pt;}
.y7d{bottom:322.626667pt;}
.y110{bottom:322.946667pt;}
.y26{bottom:323.906667pt;}
.y46{bottom:330.146667pt;}
.ye8{bottom:332.386667pt;}
.y6f{bottom:338.146667pt;}
.y12c{bottom:340.066667pt;}
.y10f{bottom:341.346667pt;}
.y25{bottom:342.306667pt;}
.y60{bottom:349.826667pt;}
.y7c{bottom:350.146667pt;}
.ye7{bottom:350.786667pt;}
.y12b{bottom:358.466667pt;}
.y10e{bottom:359.746667pt;}
.y24{bottom:360.706667pt;}
.y45{bottom:365.826667pt;}
.ye6{bottom:369.186667pt;}
.ybb{bottom:371.426667pt;}
.y5f{bottom:376.706667pt;}
.y12a{bottom:376.866667pt;}
.y7b{bottom:377.826667pt;}
.y10d{bottom:378.146667pt;}
.y23{bottom:379.106667pt;}
.ye5{bottom:387.586667pt;}
.y44{bottom:393.346667pt;}
.y129{bottom:395.266667pt;}
.y10c{bottom:396.546667pt;}
.y22{bottom:397.506667pt;}
.y7a{bottom:401.826667pt;}
.y84{bottom:402.693333pt;}
.y128{bottom:413.666667pt;}
.ye4{bottom:414.626667pt;}
.y5e{bottom:414.946667pt;}
.y21{bottom:415.906667pt;}
.y6e{bottom:420.386667pt;}
.y43{bottom:421.026667pt;}
.y86{bottom:424.623600pt;}
.y89{bottom:425.288367pt;}
.y127{bottom:432.066667pt;}
.y10b{bottom:433.346667pt;}
.y20{bottom:434.306667pt;}
.yb5{bottom:441.346667pt;}
.y5d{bottom:442.466667pt;}
.y42{bottom:448.546667pt;}
.y126{bottom:450.466667pt;}
.y10a{bottom:451.746667pt;}
.y1f{bottom:452.706667pt;}
.y6d{bottom:458.466667pt;}
.y125{bottom:468.866667pt;}
.y5c{bottom:469.986667pt;}
.y109{bottom:470.146667pt;}
.y1e{bottom:471.106667pt;}
.y41{bottom:476.226667pt;}
.ye3{bottom:480.386667pt;}
.y6c{bottom:485.986667pt;}
.yaf{bottom:486.786667pt;}
.y124{bottom:487.266667pt;}
.y108{bottom:488.546667pt;}
.y1d{bottom:489.506667pt;}
.y5b{bottom:497.666667pt;}
.y40{bottom:503.746667pt;}
.y123{bottom:505.693333pt;}
.y107{bottom:506.973333pt;}
.y1c{bottom:507.933333pt;}
.y6b{bottom:513.693333pt;}
.y122{bottom:524.093333pt;}
.y5a{bottom:525.213333pt;}
.y106{bottom:525.373333pt;}
.y1b{bottom:526.333333pt;}
.y3f{bottom:531.453333pt;}
.ye2{bottom:535.453333pt;}
.y6a{bottom:541.213333pt;}
.y121{bottom:542.493333pt;}
.yac{bottom:543.453333pt;}
.y105{bottom:543.773333pt;}
.y1a{bottom:544.733333pt;}
.y59{bottom:560.893333pt;}
.y104{bottom:562.173333pt;}
.y19{bottom:563.133333pt;}
.y3e{bottom:566.973333pt;}
.y69{bottom:568.893333pt;}
.y120{bottom:579.293333pt;}
.y103{bottom:580.413333pt;}
.y18{bottom:581.533333pt;}
.y58{bottom:588.413333pt;}
.ye1{bottom:590.653333pt;}
.y3d{bottom:594.653333pt;}
.y68{bottom:596.413333pt;}
.y11f{bottom:597.693333pt;}
.y102{bottom:598.813333pt;}
.y17{bottom:599.933333pt;}
.ya6{bottom:600.253333pt;}
.y11e{bottom:615.773333pt;}
.y57{bottom:616.093333pt;}
.y101{bottom:617.213333pt;}
.y16{bottom:618.333333pt;}
.y3c{bottom:622.173333pt;}
.y67{bottom:624.093333pt;}
.y11d{bottom:633.213333pt;}
.y100{bottom:635.613333pt;}
.y15{bottom:636.573333pt;}
.y56{bottom:643.613333pt;}
.ye0{bottom:645.213333pt;}
.y3b{bottom:649.853333pt;}
.y66{bottom:651.613333pt;}
.yff{bottom:654.013333pt;}
.y14{bottom:654.973333pt;}
.ya4{bottom:656.893333pt;}
.y79{bottom:664.733333pt;}
.y11c{bottom:670.013333pt;}
.y55{bottom:671.293333pt;}
.yfe{bottom:672.413333pt;}
.y13{bottom:673.373333pt;}
.ya0{bottom:673.693333pt;}
.y3a{bottom:677.373333pt;}
.y65{bottom:679.293333pt;}
.y78{bottom:683.133333pt;}
.y11b{bottom:688.413333pt;}
.yfd{bottom:690.813333pt;}
.y12{bottom:691.773333pt;}
.y77{bottom:701.533333pt;}
.y39{bottom:705.053333pt;}
.y54{bottom:706.813333pt;}
.yfc{bottom:709.053333pt;}
.y9f{bottom:710.813333pt;}
.y11{bottom:716.253333pt;}
.y11a{bottom:725.213333pt;}
.yfb{bottom:726.493333pt;}
.y9e{bottom:729.253333pt;}
.y38{bottom:732.613333pt;}
.y53{bottom:734.533333pt;}
.y10{bottom:734.693333pt;}
.y119{bottom:743.653333pt;}
.yfa{bottom:744.933333pt;}
.yd5{bottom:747.013333pt;}
.yf{bottom:749.893333pt;}
.y37{bottom:760.293333pt;}
.y52{bottom:762.053333pt;}
.yf9{bottom:763.333333pt;}
.ye{bottom:768.293333pt;}
.y118{bottom:780.453333pt;}
.yf8{bottom:781.413333pt;}
.yd{bottom:786.693333pt;}
.y36{bottom:787.813333pt;}
.y51{bottom:789.733333pt;}
.yf7{bottom:798.853333pt;}
.yc{bottom:806.213333pt;}
.yd4{bottom:811.173333pt;}
.y35{bottom:815.493333pt;}
.y50{bottom:817.253333pt;}
.yd1{bottom:827.973333pt;}
.yb{bottom:830.693333pt;}
.yf6{bottom:835.653333pt;}
.y34{bottom:843.013333pt;}
.y4f{bottom:844.933333pt;}
.yf5{bottom:854.053333pt;}
.ya{bottom:855.333333pt;}
.y33{bottom:870.693333pt;}
.y4e{bottom:872.453333pt;}
.y9{bottom:879.813333pt;}
.yf4{bottom:890.853333pt;}
.yd0{bottom:897.893333pt;}
.y32{bottom:898.213333pt;}
.y4d{bottom:900.133333pt;}
.y8{bottom:904.293333pt;}
.yf3{bottom:909.253333pt;}
.y31{bottom:925.093333pt;}
.y7{bottom:927.653333pt;}
.y1{bottom:994.080000pt;}
.h16{height:16.000000pt;}
.h14{height:27.520000pt;}
.h8{height:38.441250pt;}
.h15{height:42.632812pt;}
.h12{height:43.027114pt;}
.h18{height:43.031250pt;}
.h1b{height:44.640000pt;}
.hc{height:47.352118pt;}
.hf{height:47.794661pt;}
.h9{height:48.781250pt;}
.h1{height:49.622500pt;}
.h2{height:52.785000pt;}
.h17{height:56.000000pt;}
.h1a{height:56.032000pt;}
.h19{height:56.160000pt;}
.h3{height:56.843750pt;}
.h7{height:57.375000pt;}
.he{height:57.448945pt;}
.h11{height:57.665510pt;}
.h6{height:62.761250pt;}
.h1e{height:63.520000pt;}
.ha{height:66.507188pt;}
.h1c{height:69.280000pt;}
.h1f{height:75.072000pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.h1d{height:82.432000pt;}
.h13{height:87.432818pt;}
.h10{height:226.017081pt;}
.hd{height:227.346579pt;}
.hb{height:252.600908pt;}
.h0{height:1056.000000pt;}
.w5{width:123.840000pt;}
.w6{width:130.912000pt;}
.w3{width:185.775100pt;}
.w7{width:371.746667pt;}
.w4{width:420.158011pt;}
.w2{width:622.579618pt;}
.w8{width:627.133333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.997590pt;}
.x23{left:4.640000pt;}
.x28{left:6.080000pt;}
.x17{left:8.656192pt;}
.x1c{left:10.880000pt;}
.x2b{left:12.800000pt;}
.x29{left:16.200000pt;}
.x26{left:17.320000pt;}
.x25{left:19.080000pt;}
.x22{left:20.634667pt;}
.x2e{left:22.120000pt;}
.xe{left:25.102950pt;}
.x1e{left:27.240000pt;}
.x31{left:29.754667pt;}
.x2f{left:30.920000pt;}
.x2d{left:32.634667pt;}
.x27{left:36.840000pt;}
.x32{left:38.120000pt;}
.x24{left:42.394667pt;}
.x18{left:44.645955pt;}
.x2a{left:46.074667pt;}
.xd{left:47.742202pt;}
.x2c{left:48.840000pt;}
.x10{left:99.646035pt;}
.x19{left:104.140596pt;}
.x1{left:113.471988pt;}
.x11{left:114.494723pt;}
.xf{left:118.726875pt;}
.x14{left:131.973563pt;}
.x8{left:138.426655pt;}
.x20{left:148.826667pt;}
.x3{left:150.266655pt;}
.x7{left:151.226655pt;}
.x1a{left:162.266655pt;}
.x4{left:176.986655pt;}
.x15{left:194.564453pt;}
.x1d{left:237.626667pt;}
.x12{left:239.643213pt;}
.x21{left:256.034667pt;}
.x16{left:257.155345pt;}
.x5{left:260.386655pt;}
.x2{left:271.266655pt;}
.x30{left:278.434667pt;}
.x33{left:291.394667pt;}
.x13{left:302.194151pt;}
.x9{left:360.546655pt;}
.x1f{left:368.866667pt;}
.x1b{left:390.306655pt;}
.x6{left:426.973321pt;}
.xc{left:544.211763pt;}
.xa{left:737.573321pt;}
}




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