
    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_a57aeb0e65a88f624c7bf317.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.824000;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_62c5f2f3cc82f368c426cc1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_90ca8f230d9d03fed26dd554.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_fff6ec2473aaef8b22a716ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d0a2ba23ffdc6570f37fbeb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_324fa33bfe2243e9824821fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_25060462ec4e0358a803718f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_57a1931225433d95a2ad6537.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.083400px;}
.lse{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls6{letter-spacing:0.078600px;}
.lsb{letter-spacing:0.209400px;}
.ls9{letter-spacing:0.211680px;}
.lsf{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.385800px;}
.ls11{letter-spacing:0.540000px;}
.ls12{letter-spacing:1.080000px;}
.ls0{letter-spacing:12.888000px;}
.ls10{letter-spacing:44.586720px;}
.lsd{letter-spacing:78.426720px;}
.ls4{letter-spacing:100.746720px;}
.lsa{letter-spacing:143.009280px;}
.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;}
}
.ws0{word-spacing:-18.611400px;}
.ws8{word-spacing:-14.958600px;}
.ws5{word-spacing:-14.572800px;}
.ws9{word-spacing:-13.356600px;}
.ws2{word-spacing:-13.160400px;}
.ws7{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.111200px;}
.wsa{word-spacing:-13.063800px;}
.ws1{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:145.832040px;}
._11{margin-left:-3.934561px;}
._6{margin-left:-2.750400px;}
._0{margin-left:-1.134000px;}
._3{width:1.246801px;}
._5{width:2.648155px;}
._4{width:4.019755px;}
._1{width:5.166588px;}
._2{width:6.228257px;}
._7{width:7.589400px;}
._a{width:8.844600px;}
._f{width:10.039560px;}
._d{width:11.593201px;}
._10{width:14.452965px;}
._9{width:15.972591px;}
._8{width:17.270401px;}
._1c{width:18.698895px;}
._14{width:19.955359px;}
._e{width:21.931920px;}
._b{width:23.434199px;}
._c{width:24.451212px;}
._13{width:26.116078px;}
._12{width:27.190800px;}
._18{width:33.107040px;}
._23{width:34.429919px;}
._1f{width:37.409760px;}
._17{width:44.230559px;}
._27{width:47.688480px;}
._2a{width:50.258160px;}
._1e{width:62.337839px;}
._15{width:64.660320px;}
._16{width:72.727920px;}
._26{width:80.504879px;}
._2b{width:86.831280px;}
._1b{width:104.520240px;}
._24{width:120.954240px;}
._29{width:129.978000px;}
._21{width:157.885920px;}
._25{width:167.268240px;}
._19{width:172.586880px;}
._28{width:177.726240px;}
._22{width:226.609920px;}
._20{width:228.940560px;}
._1a{width:234.677520px;}
._1d{width:257.027760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:45.360000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:7.740000px;}
.yc5{bottom:7.920000px;}
.yc7{bottom:25.380000px;}
.yc4{bottom:25.560000px;}
.yf2{bottom:25.605000px;}
.y2{bottom:73.296000px;}
.y29{bottom:74.196000px;}
.y1{bottom:106.776000px;}
.y13e{bottom:112.536000px;}
.yde{bottom:113.256000px;}
.y17b{bottom:115.596000px;}
.ya1{bottom:119.916000px;}
.y91{bottom:128.016000px;}
.y51{bottom:132.156000px;}
.y17a{bottom:133.236000px;}
.yf8{bottom:135.396000px;}
.ya0{bottom:137.376000px;}
.y161{bottom:141.336000px;}
.y18e{bottom:142.236000px;}
.y11d{bottom:144.396000px;}
.y90{bottom:145.656000px;}
.y13d{bottom:147.996000px;}
.ydd{bottom:148.896000px;}
.y50{bottom:149.796000px;}
.yf7{bottom:153.030000px;}
.y27{bottom:155.190000px;}
.y79{bottom:155.370000px;}
.y160{bottom:158.970000px;}
.ybd{bottom:159.870000px;}
.y13c{bottom:165.630000px;}
.y4f{bottom:167.430000px;}
.y26{bottom:172.830000px;}
.y78{bottom:173.010000px;}
.ybc{bottom:177.510000px;}
.y8f{bottom:177.690000px;}
.y11c{bottom:179.850000px;}
.ydc{bottom:184.530000px;}
.y15f{bottom:185.610000px;}
.y18d{bottom:186.330000px;}
.yf6{bottom:188.490000px;}
.y25{bottom:190.470000px;}
.y77{bottom:190.650000px;}
.ybb{bottom:195.150000px;}
.y11b{bottom:197.490000px;}
.y13b{bottom:201.270000px;}
.ydb{bottom:202.170000px;}
.y4e{bottom:202.890000px;}
.y15e{bottom:203.250000px;}
.y179{bottom:203.970000px;}
.yf5{bottom:206.130000px;}
.y24{bottom:208.110000px;}
.yba{bottom:212.790000px;}
.y13a{bottom:218.910000px;}
.y4d{bottom:220.530000px;}
.y178{bottom:221.610000px;}
.yf4{bottom:223.770000px;}
.y76{bottom:225.750000px;}
.y15d{bottom:229.710000px;}
.y18c{bottom:230.610000px;}
.y11a{bottom:233.130000px;}
.y23{bottom:234.570000px;}
.yda{bottom:237.630000px;}
.y4c{bottom:238.170000px;}
.yb9{bottom:239.250000px;}
.y9f{bottom:243.390000px;}
.y15c{bottom:247.350000px;}
.y177{bottom:248.070000px;}
.y18b{bottom:248.250000px;}
.yf3{bottom:250.230000px;}
.y119{bottom:250.770000px;}
.y75{bottom:252.390000px;}
.y139{bottom:254.370000px;}
.yd9{bottom:255.270000px;}
.y4b{bottom:255.810000px;}
.y176{bottom:265.710000px;}
.y9e{bottom:269.850000px;}
.y22{bottom:270.210000px;}
.y138{bottom:272.010000px;}
.yd8{bottom:272.910000px;}
.y4a{bottom:273.270000px;}
.y15b{bottom:274.170000px;}
.y18a{bottom:274.710000px;}
.yb8{bottom:274.890000px;}
.yf1{bottom:283.170000px;}
.y118{bottom:286.230000px;}
.y21{bottom:287.850000px;}
.y137{bottom:289.650000px;}
.y175{bottom:292.350000px;}
.yb7{bottom:292.530000px;}
.y49{bottom:299.910000px;}
.y117{bottom:303.870000px;}
.y20{bottom:305.310000px;}
.y74{bottom:305.490000px;}
.yd7{bottom:308.415000px;}
.yb6{bottom:310.035000px;}
.y136{bottom:316.155000px;}
.y116{bottom:321.555000px;}
.y15a{bottom:322.455000px;}
.y1f{bottom:322.995000px;}
.y73{bottom:323.175000px;}
.yd6{bottom:326.055000px;}
.yf0{bottom:328.215000px;}
.y48{bottom:335.415000px;}
.y174{bottom:336.495000px;}
.y159{bottom:340.095000px;}
.y1e{bottom:340.635000px;}
.y72{bottom:340.815000px;}
.yd5{bottom:343.695000px;}
.yb5{bottom:345.675000px;}
.y115{bottom:348.015000px;}
.y135{bottom:351.795000px;}
.y47{bottom:353.055000px;}
.y173{bottom:354.135000px;}
.yd4{bottom:361.335000px;}
.yb4{bottom:363.315000px;}
.y158{bottom:366.915000px;}
.y1d{bottom:367.275000px;}
.y134{bottom:369.435000px;}
.y46{bottom:370.695000px;}
.y172{bottom:371.775000px;}
.yef{bottom:373.035000px;}
.y71{bottom:376.275000px;}
.y189{bottom:380.775000px;}
.yb3{bottom:380.955000px;}
.y114{bottom:383.655000px;}
.y45{bottom:388.335000px;}
.y70{bottom:393.915000px;}
.yd3{bottom:396.795000px;}
.y171{bottom:398.235000px;}
.y188{bottom:398.415000px;}
.y113{bottom:401.295000px;}
.y157{bottom:403.995000px;}
.y133{bottom:404.895000px;}
.y6f{bottom:411.555000px;}
.yd2{bottom:414.435000px;}
.y1c{bottom:415.695000px;}
.y170{bottom:415.875000px;}
.yb2{bottom:416.415000px;}
.yee{bottom:418.035000px;}
.y156{bottom:421.635000px;}
.y132{bottom:422.535000px;}
.y44{bottom:423.795000px;}
.y187{bottom:424.875000px;}
.y6e{bottom:429.015000px;}
.yd1{bottom:432.075000px;}
.y1b{bottom:433.695000px;}
.yb1{bottom:434.055000px;}
.y112{bottom:436.755000px;}
.y155{bottom:439.275000px;}
.y43{bottom:441.435000px;}
.y16f{bottom:442.515000px;}
.y9d{bottom:447.015000px;}
.yd0{bottom:449.535000px;}
.yb0{bottom:451.695000px;}
.y111{bottom:454.395000px;}
.y131{bottom:458.175000px;}
.y42{bottom:459.075000px;}
.y16e{bottom:460.155000px;}
.yed{bottom:462.855000px;}
.y6d{bottom:464.655000px;}
.y154{bottom:466.095000px;}
.yaf{bottom:469.155000px;}
.y1a{bottom:470.595000px;}
.y130{bottom:475.815000px;}
.ycf{bottom:476.175000px;}
.y41{bottom:476.535000px;}
.y6c{bottom:482.295000px;}
.y16d{bottom:486.615000px;}
.y19{bottom:488.235000px;}
.y110{bottom:490.035000px;}
.y6b{bottom:499.935000px;}
.y12f{bottom:502.275000px;}
.y153{bottom:503.355000px;}
.y16c{bottom:504.255000px;}
.yae{bottom:504.795000px;}
.y18{bottom:505.875000px;}
.y10f{bottom:507.675000px;}
.yec{bottom:507.855000px;}
.yce{bottom:511.635000px;}
.y40{bottom:512.175000px;}
.y6a{bottom:517.395000px;}
.y16b{bottom:521.895000px;}
.yad{bottom:522.435000px;}
.y17{bottom:523.515000px;}
.y10e{bottom:525.135000px;}
.ycd{bottom:529.275000px;}
.y3f{bottom:529.815000px;}
.y186{bottom:530.715000px;}
.y69{bottom:535.035000px;}
.y12e{bottom:537.915000px;}
.y16{bottom:540.975000px;}
.ycc{bottom:546.915000px;}
.y3e{bottom:547.455000px;}
.y16a{bottom:548.355000px;}
.y10d{bottom:551.775000px;}
.y9c{bottom:553.035000px;}
.yac{bottom:554.475000px;}
.y12d{bottom:555.555000px;}
.y15{bottom:558.615000px;}
.y3d{bottom:564.915000px;}
.y8e{bottom:565.995000px;}
.y152{bottom:569.415000px;}
.y68{bottom:570.495000px;}
.y9b{bottom:570.675000px;}
.ycb{bottom:573.735000px;}
.yeb{bottom:574.095000px;}
.y185{bottom:574.995000px;}
.y14{bottom:576.255000px;}
.y3c{bottom:582.555000px;}
.y8d{bottom:583.665000px;}
.y151{bottom:586.905000px;}
.y10c{bottom:587.265000px;}
.y67{bottom:588.165000px;}
.y12c{bottom:591.045000px;}
.yea{bottom:591.765000px;}
.y169{bottom:592.665000px;}
.y13{bottom:593.745000px;}
.y3b{bottom:600.225000px;}
.y8c{bottom:601.305000px;}
.y10b{bottom:604.905000px;}
.y66{bottom:605.805000px;}
.y12b{bottom:608.685000px;}
.y168{bottom:610.305000px;}
.y12{bottom:611.385000px;}
.y150{bottom:613.545000px;}
.y184{bottom:619.125000px;}
.yca{bottom:619.485000px;}
.y65{bottom:623.445000px;}
.y3a{bottom:626.685000px;}
.ye9{bottom:627.405000px;}
.y11{bottom:629.025000px;}
.y8b{bottom:636.765000px;}
.y10a{bottom:640.545000px;}
.y64{bottom:640.905000px;}
.y12a{bottom:644.325000px;}
.ye8{bottom:645.045000px;}
.y10{bottom:646.665000px;}
.y14f{bottom:649.005000px;}
.y9a{bottom:649.905000px;}
.y8a{bottom:654.405000px;}
.y109{bottom:658.185000px;}
.y63{bottom:658.545000px;}
.y129{bottom:661.965000px;}
.y39{bottom:662.325000px;}
.ye7{bottom:662.505000px;}
.y183{bottom:663.405000px;}
.yf{bottom:664.125000px;}
.yc9{bottom:664.485000px;}
.y14e{bottom:666.645000px;}
.y89{bottom:672.045000px;}
.y128{bottom:679.425000px;}
.y38{bottom:679.965000px;}
.y167{bottom:680.865000px;}
.y182{bottom:681.045000px;}
.y14d{bottom:684.285000px;}
.y62{bottom:685.005000px;}
.y99{bottom:685.545000px;}
.y88{bottom:689.505000px;}
.ye{bottom:690.945000px;}
.y108{bottom:693.645000px;}
.y37{bottom:697.425000px;}
.ye6{bottom:698.145000px;}
.y166{bottom:698.505000px;}
.y98{bottom:703.185000px;}
.y127{bottom:706.065000px;}
.y181{bottom:707.505000px;}
.yc8{bottom:709.305000px;}
.y14c{bottom:710.925000px;}
.y107{bottom:711.285000px;}
.y36{bottom:715.065000px;}
.ye5{bottom:715.785000px;}
.y61{bottom:720.645000px;}
.y87{bottom:725.145000px;}
.y106{bottom:728.925000px;}
.y35{bottom:732.705000px;}
.ye4{bottom:733.245000px;}
.y60{bottom:738.285000px;}
.yd{bottom:739.365000px;}
.y126{bottom:741.525000px;}
.y86{bottom:742.785000px;}
.y14b{bottom:746.385000px;}
.y180{bottom:751.605000px;}
.yc6{bottom:754.305000px;}
.y105{bottom:755.385000px;}
.y5f{bottom:755.925000px;}
.y125{bottom:759.165000px;}
.y85{bottom:760.245000px;}
.y14a{bottom:764.025000px;}
.y34{bottom:768.165000px;}
.ye3{bottom:768.885000px;}
.y165{bottom:769.245000px;}
.y5e{bottom:773.565000px;}
.yc{bottom:774.825000px;}
.y84{bottom:777.885000px;}
.y149{bottom:781.665000px;}
.y97{bottom:782.745000px;}
.y33{bottom:785.805000px;}
.y124{bottom:785.985000px;}
.ye2{bottom:786.525000px;}
.y164{bottom:786.885000px;}
.y104{bottom:791.025000px;}
.y17f{bottom:795.885000px;}
.yc3{bottom:799.125000px;}
.y5d{bottom:800.205000px;}
.y32{bottom:803.445000px;}
.ye1{bottom:804.165000px;}
.y148{bottom:808.125000px;}
.y103{bottom:808.665000px;}
.yb{bottom:810.465000px;}
.y83{bottom:813.525000px;}
.y31{bottom:821.085000px;}
.ye0{bottom:830.625000px;}
.y96{bottom:830.985000px;}
.y82{bottom:831.165000px;}
.y123{bottom:831.705000px;}
.y30{bottom:838.545000px;}
.y17e{bottom:839.985000px;}
.y147{bottom:843.765000px;}
.yc1{bottom:844.125000px;}
.y5c{bottom:848.625000px;}
.ya{bottom:849.885000px;}
.y163{bottom:857.625000px;}
.y146{bottom:861.450000px;}
.y102{bottom:861.810000px;}
.y5b{bottom:866.310000px;}
.y9{bottom:867.570000px;}
.y2f{bottom:874.230000px;}
.y162{bottom:875.310000px;}
.y122{bottom:876.750000px;}
.y145{bottom:879.090000px;}
.y101{bottom:879.450000px;}
.y8{bottom:881.250000px;}
.yab{bottom:883.950000px;}
.y17d{bottom:884.310000px;}
.y2e{bottom:891.870000px;}
.y81{bottom:892.770000px;}
.yaa{bottom:901.410000px;}
.y5a{bottom:901.770000px;}
.y17c{bottom:901.950000px;}
.y7{bottom:902.670000px;}
.y144{bottom:905.550000px;}
.yc0{bottom:910.410000px;}
.y100{bottom:914.910000px;}
.ya9{bottom:919.050000px;}
.y59{bottom:919.410000px;}
.y6{bottom:920.310000px;}
.y121{bottom:921.570000px;}
.y2d{bottom:923.910000px;}
.ybf{bottom:928.050000px;}
.y80{bottom:928.410000px;}
.yff{bottom:932.550000px;}
.y58{bottom:937.050000px;}
.y143{bottom:941.370000px;}
.ya8{bottom:945.510000px;}
.y7f{bottom:946.050000px;}
.yfe{bottom:950.190000px;}
.y5{bottom:952.350000px;}
.ydf{bottom:954.690000px;}
.ybe{bottom:963.510000px;}
.y7e{bottom:963.690000px;}
.y120{bottom:966.570000px;}
.y4{bottom:971.610000px;}
.y57{bottom:972.510000px;}
.yfd{bottom:976.830000px;}
.ya7{bottom:981.150000px;}
.y142{bottom:989.790000px;}
.y56{bottom:990.150000px;}
.ya6{bottom:998.790000px;}
.y7d{bottom:999.150000px;}
.y141{bottom:1007.430000px;}
.y55{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.y11f{bottom:1011.390000px;}
.yfc{bottom:1012.290000px;}
.ya5{bottom:1016.430000px;}
.y7c{bottom:1016.790000px;}
.y54{bottom:1025.430000px;}
.yfb{bottom:1029.930000px;}
.y7b{bottom:1034.430000px;}
.y140{bottom:1042.890000px;}
.yfa{bottom:1047.570000px;}
.y53{bottom:1051.890000px;}
.y7a{bottom:1052.070000px;}
.y11e{bottom:1056.390000px;}
.y13f{bottom:1060.530000px;}
.y95{bottom:1060.890000px;}
.ya4{bottom:1069.530000px;}
.yf9{bottom:1074.390000px;}
.y94{bottom:1078.530000px;}
.ya3{bottom:1087.170000px;}
.y52{bottom:1087.530000px;}
.y93{bottom:1096.170000px;}
.y2c{bottom:1105.170000px;}
.y92{bottom:1113.810000px;}
.ya2{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.496000px;}
.h2{height:27.684000px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.he{height:44.100000px;}
.hd{height:44.280000px;}
.hf{height:44.316000px;}
.h7{height:50.597578px;}
.h8{height:51.998203px;}
.h9{height:56.084062px;}
.h5{height:57.636562px;}
.h10{height:61.423863px;}
.ha{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:108.756000px;}
.w4{width:109.476000px;}
.w8{width:117.000000px;}
.w9{width:124.596000px;}
.w3{width:128.016000px;}
.wb{width:139.320000px;}
.w10{width:142.236000px;}
.wf{width:143.316000px;}
.wd{width:145.116000px;}
.w7{width:150.150000px;}
.w11{width:157.350000px;}
.we{width:164.730000px;}
.w5{width:167.610000px;}
.w6{width:197.670000px;}
.wc{width:208.470000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:70.739987px;}
.x7{left:79.019987px;}
.x4{left:87.335987px;}
.x10{left:96.156000px;}
.x8{left:116.495987px;}
.x18{left:121.175987px;}
.x5{left:122.615987px;}
.xa{left:144.575987px;}
.xc{left:197.490000px;}
.x2{left:210.989987px;}
.x11{left:214.050000px;}
.xd{left:307.695000px;}
.x12{left:339.375000px;}
.x15{left:380.235000px;}
.x13{left:448.845000px;}
.xe{left:476.025000px;}
.x16{left:524.265000px;}
.x14{left:588.885000px;}
.x6{left:649.229987px;}
.x17{left:667.230000px;}
.xf{left:674.430000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.074133pt;}
.lse{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls6{letter-spacing:0.069867pt;}
.lsb{letter-spacing:0.186133pt;}
.ls9{letter-spacing:0.188160pt;}
.lsf{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.342933pt;}
.ls11{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls0{letter-spacing:11.456000pt;}
.ls10{letter-spacing:39.632640pt;}
.lsd{letter-spacing:69.712640pt;}
.ls4{letter-spacing:89.552640pt;}
.lsa{letter-spacing:127.119360pt;}
.ws0{word-spacing:-16.543467pt;}
.ws8{word-spacing:-13.296533pt;}
.ws5{word-spacing:-12.953600pt;}
.ws9{word-spacing:-11.872533pt;}
.ws2{word-spacing:-11.698133pt;}
.ws7{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.654400pt;}
.wsa{word-spacing:-11.612267pt;}
.ws1{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:129.628480pt;}
._11{margin-left:-3.497388pt;}
._6{margin-left:-2.444800pt;}
._0{margin-left:-1.008000pt;}
._3{width:1.108268pt;}
._5{width:2.353916pt;}
._4{width:3.573116pt;}
._1{width:4.592522pt;}
._2{width:5.536229pt;}
._7{width:6.746134pt;}
._a{width:7.861866pt;}
._f{width:8.924054pt;}
._d{width:10.305068pt;}
._10{width:12.847080pt;}
._9{width:14.197859pt;}
._8{width:15.351468pt;}
._1c{width:16.621240pt;}
._14{width:17.738097pt;}
._e{width:19.495040pt;}
._b{width:20.830399pt;}
._c{width:21.734410pt;}
._13{width:23.214292pt;}
._12{width:24.169600pt;}
._18{width:29.428480pt;}
._23{width:30.604372pt;}
._1f{width:33.253120pt;}
._17{width:39.316052pt;}
._27{width:42.389760pt;}
._2a{width:44.673920pt;}
._1e{width:55.411412pt;}
._15{width:57.475840pt;}
._16{width:64.647040pt;}
._26{width:71.559892pt;}
._2b{width:77.183360pt;}
._1b{width:92.906880pt;}
._24{width:107.514880pt;}
._29{width:115.536000pt;}
._21{width:140.343040pt;}
._25{width:148.682880pt;}
._19{width:153.410560pt;}
._28{width:157.978880pt;}
._22{width:201.431040pt;}
._20{width:203.502720pt;}
._1a{width:208.602240pt;}
._1d{width:228.469120pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:40.320000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:6.880000pt;}
.yc5{bottom:7.040000pt;}
.yc7{bottom:22.560000pt;}
.yc4{bottom:22.720000pt;}
.yf2{bottom:22.760000pt;}
.y2{bottom:65.152000pt;}
.y29{bottom:65.952000pt;}
.y1{bottom:94.912000pt;}
.y13e{bottom:100.032000pt;}
.yde{bottom:100.672000pt;}
.y17b{bottom:102.752000pt;}
.ya1{bottom:106.592000pt;}
.y91{bottom:113.792000pt;}
.y51{bottom:117.472000pt;}
.y17a{bottom:118.432000pt;}
.yf8{bottom:120.352000pt;}
.ya0{bottom:122.112000pt;}
.y161{bottom:125.632000pt;}
.y18e{bottom:126.432000pt;}
.y11d{bottom:128.352000pt;}
.y90{bottom:129.472000pt;}
.y13d{bottom:131.552000pt;}
.ydd{bottom:132.352000pt;}
.y50{bottom:133.152000pt;}
.yf7{bottom:136.026667pt;}
.y27{bottom:137.946667pt;}
.y79{bottom:138.106667pt;}
.y160{bottom:141.306667pt;}
.ybd{bottom:142.106667pt;}
.y13c{bottom:147.226667pt;}
.y4f{bottom:148.826667pt;}
.y26{bottom:153.626667pt;}
.y78{bottom:153.786667pt;}
.ybc{bottom:157.786667pt;}
.y8f{bottom:157.946667pt;}
.y11c{bottom:159.866667pt;}
.ydc{bottom:164.026667pt;}
.y15f{bottom:164.986667pt;}
.y18d{bottom:165.626667pt;}
.yf6{bottom:167.546667pt;}
.y25{bottom:169.306667pt;}
.y77{bottom:169.466667pt;}
.ybb{bottom:173.466667pt;}
.y11b{bottom:175.546667pt;}
.y13b{bottom:178.906667pt;}
.ydb{bottom:179.706667pt;}
.y4e{bottom:180.346667pt;}
.y15e{bottom:180.666667pt;}
.y179{bottom:181.306667pt;}
.yf5{bottom:183.226667pt;}
.y24{bottom:184.986667pt;}
.yba{bottom:189.146667pt;}
.y13a{bottom:194.586667pt;}
.y4d{bottom:196.026667pt;}
.y178{bottom:196.986667pt;}
.yf4{bottom:198.906667pt;}
.y76{bottom:200.666667pt;}
.y15d{bottom:204.186667pt;}
.y18c{bottom:204.986667pt;}
.y11a{bottom:207.226667pt;}
.y23{bottom:208.506667pt;}
.yda{bottom:211.226667pt;}
.y4c{bottom:211.706667pt;}
.yb9{bottom:212.666667pt;}
.y9f{bottom:216.346667pt;}
.y15c{bottom:219.866667pt;}
.y177{bottom:220.506667pt;}
.y18b{bottom:220.666667pt;}
.yf3{bottom:222.426667pt;}
.y119{bottom:222.906667pt;}
.y75{bottom:224.346667pt;}
.y139{bottom:226.106667pt;}
.yd9{bottom:226.906667pt;}
.y4b{bottom:227.386667pt;}
.y176{bottom:236.186667pt;}
.y9e{bottom:239.866667pt;}
.y22{bottom:240.186667pt;}
.y138{bottom:241.786667pt;}
.yd8{bottom:242.586667pt;}
.y4a{bottom:242.906667pt;}
.y15b{bottom:243.706667pt;}
.y18a{bottom:244.186667pt;}
.yb8{bottom:244.346667pt;}
.yf1{bottom:251.706667pt;}
.y118{bottom:254.426667pt;}
.y21{bottom:255.866667pt;}
.y137{bottom:257.466667pt;}
.y175{bottom:259.866667pt;}
.yb7{bottom:260.026667pt;}
.y49{bottom:266.586667pt;}
.y117{bottom:270.106667pt;}
.y20{bottom:271.386667pt;}
.y74{bottom:271.546667pt;}
.yd7{bottom:274.146667pt;}
.yb6{bottom:275.586667pt;}
.y136{bottom:281.026667pt;}
.y116{bottom:285.826667pt;}
.y15a{bottom:286.626667pt;}
.y1f{bottom:287.106667pt;}
.y73{bottom:287.266667pt;}
.yd6{bottom:289.826667pt;}
.yf0{bottom:291.746667pt;}
.y48{bottom:298.146667pt;}
.y174{bottom:299.106667pt;}
.y159{bottom:302.306667pt;}
.y1e{bottom:302.786667pt;}
.y72{bottom:302.946667pt;}
.yd5{bottom:305.506667pt;}
.yb5{bottom:307.266667pt;}
.y115{bottom:309.346667pt;}
.y135{bottom:312.706667pt;}
.y47{bottom:313.826667pt;}
.y173{bottom:314.786667pt;}
.yd4{bottom:321.186667pt;}
.yb4{bottom:322.946667pt;}
.y158{bottom:326.146667pt;}
.y1d{bottom:326.466667pt;}
.y134{bottom:328.386667pt;}
.y46{bottom:329.506667pt;}
.y172{bottom:330.466667pt;}
.yef{bottom:331.586667pt;}
.y71{bottom:334.466667pt;}
.y189{bottom:338.466667pt;}
.yb3{bottom:338.626667pt;}
.y114{bottom:341.026667pt;}
.y45{bottom:345.186667pt;}
.y70{bottom:350.146667pt;}
.yd3{bottom:352.706667pt;}
.y171{bottom:353.986667pt;}
.y188{bottom:354.146667pt;}
.y113{bottom:356.706667pt;}
.y157{bottom:359.106667pt;}
.y133{bottom:359.906667pt;}
.y6f{bottom:365.826667pt;}
.yd2{bottom:368.386667pt;}
.y1c{bottom:369.506667pt;}
.y170{bottom:369.666667pt;}
.yb2{bottom:370.146667pt;}
.yee{bottom:371.586667pt;}
.y156{bottom:374.786667pt;}
.y132{bottom:375.586667pt;}
.y44{bottom:376.706667pt;}
.y187{bottom:377.666667pt;}
.y6e{bottom:381.346667pt;}
.yd1{bottom:384.066667pt;}
.y1b{bottom:385.506667pt;}
.yb1{bottom:385.826667pt;}
.y112{bottom:388.226667pt;}
.y155{bottom:390.466667pt;}
.y43{bottom:392.386667pt;}
.y16f{bottom:393.346667pt;}
.y9d{bottom:397.346667pt;}
.yd0{bottom:399.586667pt;}
.yb0{bottom:401.506667pt;}
.y111{bottom:403.906667pt;}
.y131{bottom:407.266667pt;}
.y42{bottom:408.066667pt;}
.y16e{bottom:409.026667pt;}
.yed{bottom:411.426667pt;}
.y6d{bottom:413.026667pt;}
.y154{bottom:414.306667pt;}
.yaf{bottom:417.026667pt;}
.y1a{bottom:418.306667pt;}
.y130{bottom:422.946667pt;}
.ycf{bottom:423.266667pt;}
.y41{bottom:423.586667pt;}
.y6c{bottom:428.706667pt;}
.y16d{bottom:432.546667pt;}
.y19{bottom:433.986667pt;}
.y110{bottom:435.586667pt;}
.y6b{bottom:444.386667pt;}
.y12f{bottom:446.466667pt;}
.y153{bottom:447.426667pt;}
.y16c{bottom:448.226667pt;}
.yae{bottom:448.706667pt;}
.y18{bottom:449.666667pt;}
.y10f{bottom:451.266667pt;}
.yec{bottom:451.426667pt;}
.yce{bottom:454.786667pt;}
.y40{bottom:455.266667pt;}
.y6a{bottom:459.906667pt;}
.y16b{bottom:463.906667pt;}
.yad{bottom:464.386667pt;}
.y17{bottom:465.346667pt;}
.y10e{bottom:466.786667pt;}
.ycd{bottom:470.466667pt;}
.y3f{bottom:470.946667pt;}
.y186{bottom:471.746667pt;}
.y69{bottom:475.586667pt;}
.y12e{bottom:478.146667pt;}
.y16{bottom:480.866667pt;}
.ycc{bottom:486.146667pt;}
.y3e{bottom:486.626667pt;}
.y16a{bottom:487.426667pt;}
.y10d{bottom:490.466667pt;}
.y9c{bottom:491.586667pt;}
.yac{bottom:492.866667pt;}
.y12d{bottom:493.826667pt;}
.y15{bottom:496.546667pt;}
.y3d{bottom:502.146667pt;}
.y8e{bottom:503.106667pt;}
.y152{bottom:506.146667pt;}
.y68{bottom:507.106667pt;}
.y9b{bottom:507.266667pt;}
.ycb{bottom:509.986667pt;}
.yeb{bottom:510.306667pt;}
.y185{bottom:511.106667pt;}
.y14{bottom:512.226667pt;}
.y3c{bottom:517.826667pt;}
.y8d{bottom:518.813333pt;}
.y151{bottom:521.693333pt;}
.y10c{bottom:522.013333pt;}
.y67{bottom:522.813333pt;}
.y12c{bottom:525.373333pt;}
.yea{bottom:526.013333pt;}
.y169{bottom:526.813333pt;}
.y13{bottom:527.773333pt;}
.y3b{bottom:533.533333pt;}
.y8c{bottom:534.493333pt;}
.y10b{bottom:537.693333pt;}
.y66{bottom:538.493333pt;}
.y12b{bottom:541.053333pt;}
.y168{bottom:542.493333pt;}
.y12{bottom:543.453333pt;}
.y150{bottom:545.373333pt;}
.y184{bottom:550.333333pt;}
.yca{bottom:550.653333pt;}
.y65{bottom:554.173333pt;}
.y3a{bottom:557.053333pt;}
.ye9{bottom:557.693333pt;}
.y11{bottom:559.133333pt;}
.y8b{bottom:566.013333pt;}
.y10a{bottom:569.373333pt;}
.y64{bottom:569.693333pt;}
.y12a{bottom:572.733333pt;}
.ye8{bottom:573.373333pt;}
.y10{bottom:574.813333pt;}
.y14f{bottom:576.893333pt;}
.y9a{bottom:577.693333pt;}
.y8a{bottom:581.693333pt;}
.y109{bottom:585.053333pt;}
.y63{bottom:585.373333pt;}
.y129{bottom:588.413333pt;}
.y39{bottom:588.733333pt;}
.ye7{bottom:588.893333pt;}
.y183{bottom:589.693333pt;}
.yf{bottom:590.333333pt;}
.yc9{bottom:590.653333pt;}
.y14e{bottom:592.573333pt;}
.y89{bottom:597.373333pt;}
.y128{bottom:603.933333pt;}
.y38{bottom:604.413333pt;}
.y167{bottom:605.213333pt;}
.y182{bottom:605.373333pt;}
.y14d{bottom:608.253333pt;}
.y62{bottom:608.893333pt;}
.y99{bottom:609.373333pt;}
.y88{bottom:612.893333pt;}
.ye{bottom:614.173333pt;}
.y108{bottom:616.573333pt;}
.y37{bottom:619.933333pt;}
.ye6{bottom:620.573333pt;}
.y166{bottom:620.893333pt;}
.y98{bottom:625.053333pt;}
.y127{bottom:627.613333pt;}
.y181{bottom:628.893333pt;}
.yc8{bottom:630.493333pt;}
.y14c{bottom:631.933333pt;}
.y107{bottom:632.253333pt;}
.y36{bottom:635.613333pt;}
.ye5{bottom:636.253333pt;}
.y61{bottom:640.573333pt;}
.y87{bottom:644.573333pt;}
.y106{bottom:647.933333pt;}
.y35{bottom:651.293333pt;}
.ye4{bottom:651.773333pt;}
.y60{bottom:656.253333pt;}
.yd{bottom:657.213333pt;}
.y126{bottom:659.133333pt;}
.y86{bottom:660.253333pt;}
.y14b{bottom:663.453333pt;}
.y180{bottom:668.093333pt;}
.yc6{bottom:670.493333pt;}
.y105{bottom:671.453333pt;}
.y5f{bottom:671.933333pt;}
.y125{bottom:674.813333pt;}
.y85{bottom:675.773333pt;}
.y14a{bottom:679.133333pt;}
.y34{bottom:682.813333pt;}
.ye3{bottom:683.453333pt;}
.y165{bottom:683.773333pt;}
.y5e{bottom:687.613333pt;}
.yc{bottom:688.733333pt;}
.y84{bottom:691.453333pt;}
.y149{bottom:694.813333pt;}
.y97{bottom:695.773333pt;}
.y33{bottom:698.493333pt;}
.y124{bottom:698.653333pt;}
.ye2{bottom:699.133333pt;}
.y164{bottom:699.453333pt;}
.y104{bottom:703.133333pt;}
.y17f{bottom:707.453333pt;}
.yc3{bottom:710.333333pt;}
.y5d{bottom:711.293333pt;}
.y32{bottom:714.173333pt;}
.ye1{bottom:714.813333pt;}
.y148{bottom:718.333333pt;}
.y103{bottom:718.813333pt;}
.yb{bottom:720.413333pt;}
.y83{bottom:723.133333pt;}
.y31{bottom:729.853333pt;}
.ye0{bottom:738.333333pt;}
.y96{bottom:738.653333pt;}
.y82{bottom:738.813333pt;}
.y123{bottom:739.293333pt;}
.y30{bottom:745.373333pt;}
.y17e{bottom:746.653333pt;}
.y147{bottom:750.013333pt;}
.yc1{bottom:750.333333pt;}
.y5c{bottom:754.333333pt;}
.ya{bottom:755.453333pt;}
.y163{bottom:762.333333pt;}
.y146{bottom:765.733333pt;}
.y102{bottom:766.053333pt;}
.y5b{bottom:770.053333pt;}
.y9{bottom:771.173333pt;}
.y2f{bottom:777.093333pt;}
.y162{bottom:778.053333pt;}
.y122{bottom:779.333333pt;}
.y145{bottom:781.413333pt;}
.y101{bottom:781.733333pt;}
.y8{bottom:783.333333pt;}
.yab{bottom:785.733333pt;}
.y17d{bottom:786.053333pt;}
.y2e{bottom:792.773333pt;}
.y81{bottom:793.573333pt;}
.yaa{bottom:801.253333pt;}
.y5a{bottom:801.573333pt;}
.y17c{bottom:801.733333pt;}
.y7{bottom:802.373333pt;}
.y144{bottom:804.933333pt;}
.yc0{bottom:809.253333pt;}
.y100{bottom:813.253333pt;}
.ya9{bottom:816.933333pt;}
.y59{bottom:817.253333pt;}
.y6{bottom:818.053333pt;}
.y121{bottom:819.173333pt;}
.y2d{bottom:821.253333pt;}
.ybf{bottom:824.933333pt;}
.y80{bottom:825.253333pt;}
.yff{bottom:828.933333pt;}
.y58{bottom:832.933333pt;}
.y143{bottom:836.773333pt;}
.ya8{bottom:840.453333pt;}
.y7f{bottom:840.933333pt;}
.yfe{bottom:844.613333pt;}
.y5{bottom:846.533333pt;}
.ydf{bottom:848.613333pt;}
.ybe{bottom:856.453333pt;}
.y7e{bottom:856.613333pt;}
.y120{bottom:859.173333pt;}
.y4{bottom:863.653333pt;}
.y57{bottom:864.453333pt;}
.yfd{bottom:868.293333pt;}
.ya7{bottom:872.133333pt;}
.y142{bottom:879.813333pt;}
.y56{bottom:880.133333pt;}
.ya6{bottom:887.813333pt;}
.y7d{bottom:888.133333pt;}
.y141{bottom:895.493333pt;}
.y55{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.y11f{bottom:899.013333pt;}
.yfc{bottom:899.813333pt;}
.ya5{bottom:903.493333pt;}
.y7c{bottom:903.813333pt;}
.y54{bottom:911.493333pt;}
.yfb{bottom:915.493333pt;}
.y7b{bottom:919.493333pt;}
.y140{bottom:927.013333pt;}
.yfa{bottom:931.173333pt;}
.y53{bottom:935.013333pt;}
.y7a{bottom:935.173333pt;}
.y11e{bottom:939.013333pt;}
.y13f{bottom:942.693333pt;}
.y95{bottom:943.013333pt;}
.ya4{bottom:950.693333pt;}
.yf9{bottom:955.013333pt;}
.y94{bottom:958.693333pt;}
.ya3{bottom:966.373333pt;}
.y52{bottom:966.693333pt;}
.y93{bottom:974.373333pt;}
.y2c{bottom:982.373333pt;}
.y92{bottom:990.053333pt;}
.ya2{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.552000pt;}
.h2{height:24.608000pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.he{height:39.200000pt;}
.hd{height:39.360000pt;}
.hf{height:39.392000pt;}
.h7{height:44.975625pt;}
.h8{height:46.220625pt;}
.h9{height:49.852500pt;}
.h5{height:51.232500pt;}
.h10{height:54.598989pt;}
.ha{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:96.672000pt;}
.w4{width:97.312000pt;}
.w8{width:104.000000pt;}
.w9{width:110.752000pt;}
.w3{width:113.792000pt;}
.wb{width:123.840000pt;}
.w10{width:126.432000pt;}
.wf{width:127.392000pt;}
.wd{width:128.992000pt;}
.w7{width:133.466667pt;}
.w11{width:139.866667pt;}
.we{width:146.426667pt;}
.w5{width:148.986667pt;}
.w6{width:175.706667pt;}
.wc{width:185.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:62.879988pt;}
.x7{left:70.239988pt;}
.x4{left:77.631988pt;}
.x10{left:85.472000pt;}
.x8{left:103.551988pt;}
.x18{left:107.711988pt;}
.x5{left:108.991988pt;}
.xa{left:128.511988pt;}
.xc{left:175.546667pt;}
.x2{left:187.546655pt;}
.x11{left:190.266667pt;}
.xd{left:273.506667pt;}
.x12{left:301.666667pt;}
.x15{left:337.986667pt;}
.x13{left:398.973333pt;}
.xe{left:423.133333pt;}
.x16{left:466.013333pt;}
.x14{left:523.453333pt;}
.x6{left:577.093322pt;}
.x17{left:593.093333pt;}
.xf{left:599.493333pt;}
.x3{left:711.493322pt;}
}




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