
    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_cbbf06a5af8be91dcc0bbe6c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6755f9d1c15efd621dce66e3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.738770;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_9c67caf4a0b7a84945c07de7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0bb62b7cc8ebdf09d7a891e5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b77935c7219ca14af78d4d5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_332be5fa520a6fe335830073.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bc6a10b49f589e98a7a1061b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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:-69.120000px;}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.002720px;}
.ls4{letter-spacing:64.002720px;}
.ls3{letter-spacing:201.036000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.251920px;}
._3{width:4.003920px;}
._e{width:5.139360px;}
._12{width:6.155280px;}
._7{width:7.576320px;}
._6{width:8.605440px;}
._9{width:9.767280px;}
._a{width:10.823520px;}
._4{width:11.952000px;}
._5{width:12.973920px;}
._b{width:16.434000px;}
._10{width:17.808480px;}
._c{width:19.780560px;}
._d{width:20.796480px;}
._11{width:21.812400px;}
._15{width:23.724720px;}
._f{width:25.398000px;}
._17{width:26.652960px;}
._13{width:27.728640px;}
._14{width:29.220960px;}
._1e{width:31.015440px;}
._19{width:32.334480px;}
._18{width:33.525360px;}
._16{width:36.334080px;}
._1c{width:140.447280px;}
._8{width:201.036000px;}
._1b{width:211.158480px;}
._1d{width:509.609280px;}
._1a{width:641.820720px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y13c{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:3.420000px;}
.y136{bottom:3.465000px;}
.yd5{bottom:3.594000px;}
.yc2{bottom:3.600000px;}
.y172{bottom:3.774000px;}
.yc0{bottom:3.780000px;}
.y127{bottom:3.810000px;}
.y177{bottom:11.880000px;}
.y169{bottom:12.060000px;}
.y173{bottom:12.414000px;}
.y16e{bottom:12.420000px;}
.y16a{bottom:20.520000px;}
.y171{bottom:21.054000px;}
.y16d{bottom:21.060000px;}
.y5{bottom:38.160000px;}
.y4{bottom:55.800000px;}
.y41{bottom:111.636000px;}
.y1b0{bottom:119.736000px;}
.y8e{bottom:123.516000px;}
.y10c{bottom:123.876000px;}
.yb9{bottom:124.956000px;}
.yd6{bottom:125.496000px;}
.y143{bottom:126.576000px;}
.y174{bottom:126.936000px;}
.y40{bottom:128.916000px;}
.y7c{bottom:136.476000px;}
.y1af{bottom:137.016000px;}
.y8d{bottom:140.796000px;}
.yb8{bottom:142.236000px;}
.y142{bottom:143.856000px;}
.y10b{bottom:145.656000px;}
.y3f{bottom:146.196000px;}
.yd4{bottom:147.276000px;}
.y170{bottom:148.716000px;}
.y7b{bottom:153.750000px;}
.y1ae{bottom:154.290000px;}
.y8c{bottom:158.070000px;}
.yb7{bottom:159.510000px;}
.y141{bottom:161.130000px;}
.y3e{bottom:163.470000px;}
.yd3{bottom:168.870000px;}
.y10a{bottom:170.130000px;}
.y7a{bottom:171.030000px;}
.y1ad{bottom:171.570000px;}
.y95{bottom:174.990000px;}
.y8b{bottom:175.350000px;}
.yb6{bottom:176.790000px;}
.y140{bottom:178.230000px;}
.y3d{bottom:180.750000px;}
.y109{bottom:187.230000px;}
.y16f{bottom:187.770000px;}
.y79{bottom:188.310000px;}
.y1ac{bottom:188.850000px;}
.yd2{bottom:190.650000px;}
.y8a{bottom:192.630000px;}
.yb5{bottom:194.070000px;}
.y13f{bottom:195.510000px;}
.y3c{bottom:197.670000px;}
.y78{bottom:205.590000px;}
.y16c{bottom:209.370000px;}
.y89{bottom:209.730000px;}
.yb4{bottom:211.350000px;}
.y13e{bottom:212.790000px;}
.y3b{bottom:215.130000px;}
.y108{bottom:221.790000px;}
.y77{bottom:222.690000px;}
.y92{bottom:226.650000px;}
.y88{bottom:227.010000px;}
.y1ab{bottom:227.370000px;}
.yb3{bottom:228.450000px;}
.y13d{bottom:230.070000px;}
.yd1{bottom:232.230000px;}
.y3a{bottom:232.410000px;}
.y107{bottom:239.070000px;}
.y76{bottom:239.610000px;}
.y87{bottom:244.290000px;}
.yb2{bottom:245.730000px;}
.y13b{bottom:246.990000px;}
.y16b{bottom:248.430000px;}
.y1aa{bottom:249.150000px;}
.yd0{bottom:249.510000px;}
.y39{bottom:249.690000px;}
.y106{bottom:255.990000px;}
.y75{bottom:257.250000px;}
.y86{bottom:261.570000px;}
.yb1{bottom:263.010000px;}
.ycf{bottom:266.790000px;}
.y38{bottom:266.970000px;}
.y13a{bottom:268.590000px;}
.y168{bottom:270.210000px;}
.y1a9{bottom:270.930000px;}
.y105{bottom:273.630000px;}
.y74{bottom:274.530000px;}
.y85{bottom:278.850000px;}
.yb0{bottom:280.290000px;}
.yce{bottom:283.710000px;}
.y190{bottom:284.070000px;}
.y37{bottom:284.250000px;}
.y139{bottom:290.370000px;}
.y104{bottom:290.730000px;}
.y73{bottom:292.890000px;}
.y84{bottom:296.130000px;}
.yaf{bottom:297.570000px;}
.ycd{bottom:301.350000px;}
.y36{bottom:301.530000px;}
.y103{bottom:308.010000px;}
.y72{bottom:311.070000px;}
.y138{bottom:312.150000px;}
.y1a8{bottom:312.510000px;}
.y83{bottom:313.230000px;}
.yae{bottom:314.850000px;}
.y35{bottom:318.630000px;}
.y102{bottom:325.290000px;}
.y167{bottom:329.070000px;}
.y71{bottom:329.430000px;}
.y1a7{bottom:329.790000px;}
.y1b4{bottom:330.150000px;}
.y82{bottom:330.510000px;}
.yad{bottom:331.950000px;}
.y137{bottom:333.930000px;}
.ycc{bottom:335.730000px;}
.y34{bottom:335.910000px;}
.y101{bottom:342.570000px;}
.y166{bottom:346.350000px;}
.y1a6{bottom:346.710000px;}
.y70{bottom:347.430000px;}
.y81{bottom:347.790000px;}
.yac{bottom:349.230000px;}
.ycb{bottom:353.010000px;}
.y33{bottom:353.190000px;}
.y135{bottom:355.710000px;}
.y100{bottom:359.895000px;}
.y165{bottom:363.675000px;}
.y1a5{bottom:364.215000px;}
.y6f{bottom:365.115000px;}
.yab{bottom:366.555000px;}
.yca{bottom:370.335000px;}
.y32{bottom:370.515000px;}
.yff{bottom:376.995000px;}
.y134{bottom:380.055000px;}
.y164{bottom:380.415000px;}
.y1a4{bottom:381.495000px;}
.y6e{bottom:382.395000px;}
.yaa{bottom:383.835000px;}
.y18f{bottom:387.255000px;}
.yc9{bottom:387.615000px;}
.y31{bottom:387.795000px;}
.yfe{bottom:393.915000px;}
.y133{bottom:397.335000px;}
.y163{bottom:398.055000px;}
.y1a3{bottom:398.775000px;}
.y1b2{bottom:399.315000px;}
.y6d{bottom:399.675000px;}
.ya9{bottom:401.115000px;}
.yc8{bottom:404.895000px;}
.y30{bottom:405.075000px;}
.y132{bottom:414.615000px;}
.y162{bottom:415.335000px;}
.yfd{bottom:415.695000px;}
.y1a2{bottom:416.055000px;}
.y6c{bottom:416.775000px;}
.ya8{bottom:418.215000px;}
.y2f{bottom:421.815000px;}
.yc7{bottom:421.995000px;}
.y131{bottom:431.535000px;}
.y161{bottom:432.615000px;}
.y1a1{bottom:433.335000px;}
.y94{bottom:433.695000px;}
.y6b{bottom:434.055000px;}
.ya7{bottom:435.495000px;}
.yfc{bottom:437.475000px;}
.y18e{bottom:438.915000px;}
.yc6{bottom:439.275000px;}
.y2e{bottom:439.455000px;}
.y130{bottom:448.995000px;}
.y160{bottom:449.895000px;}
.y1a0{bottom:450.615000px;}
.y6a{bottom:451.335000px;}
.ya6{bottom:452.775000px;}
.yc5{bottom:456.195000px;}
.y18d{bottom:456.555000px;}
.y2d{bottom:456.735000px;}
.yfb{bottom:459.255000px;}
.y12f{bottom:466.275000px;}
.y15f{bottom:466.995000px;}
.y19f{bottom:467.355000px;}
.y1b3{bottom:468.255000px;}
.y69{bottom:468.615000px;}
.ya5{bottom:470.055000px;}
.y18c{bottom:473.835000px;}
.y2c{bottom:474.015000px;}
.yc4{bottom:477.975000px;}
.yfa{bottom:481.035000px;}
.y12e{bottom:483.555000px;}
.y15e{bottom:483.915000px;}
.y68{bottom:485.895000px;}
.ya4{bottom:487.335000px;}
.y19e{bottom:489.135000px;}
.y18b{bottom:491.115000px;}
.y2b{bottom:491.295000px;}
.yc3{bottom:499.755000px;}
.y12d{bottom:500.835000px;}
.y15d{bottom:501.555000px;}
.yf9{bottom:502.635000px;}
.y67{bottom:502.995000px;}
.ya3{bottom:504.615000px;}
.y2a{bottom:508.395000px;}
.y19d{bottom:510.915000px;}
.y12c{bottom:518.115000px;}
.y15c{bottom:518.835000px;}
.y66{bottom:520.275000px;}
.yc1{bottom:521.535000px;}
.ya2{bottom:521.715000px;}
.y18a{bottom:525.495000px;}
.y29{bottom:525.675000px;}
.yf8{bottom:527.115000px;}
.y19c{bottom:532.695000px;}
.y12b{bottom:535.395000px;}
.y15b{bottom:536.115000px;}
.y65{bottom:537.555000px;}
.ya1{bottom:538.995000px;}
.y189{bottom:542.775000px;}
.y28{bottom:542.955000px;}
.ybf{bottom:543.135000px;}
.yf7{bottom:544.395000px;}
.y12a{bottom:552.495000px;}
.y15a{bottom:553.395000px;}
.y19b{bottom:554.475000px;}
.y64{bottom:554.835000px;}
.ya0{bottom:556.275000px;}
.y188{bottom:560.055000px;}
.y27{bottom:560.235000px;}
.yf6{bottom:561.495000px;}
.ybd{bottom:564.915000px;}
.y129{bottom:569.415000px;}
.y159{bottom:570.495000px;}
.y91{bottom:571.755000px;}
.y63{bottom:572.115000px;}
.y9f{bottom:573.555000px;}
.y19a{bottom:576.075000px;}
.y26{bottom:577.155000px;}
.y187{bottom:577.335000px;}
.yf5{bottom:578.775000px;}
.y158{bottom:587.775000px;}
.y62{bottom:589.395000px;}
.y9e{bottom:590.835000px;}
.y128{bottom:591.195000px;}
.y186{bottom:594.615000px;}
.y25{bottom:594.795000px;}
.yf4{bottom:595.695000px;}
.y199{bottom:597.855000px;}
.y157{bottom:605.055000px;}
.y61{bottom:606.135000px;}
.y80{bottom:606.495000px;}
.y9d{bottom:608.115000px;}
.y24{bottom:611.895000px;}
.y126{bottom:612.975000px;}
.yf3{bottom:613.335000px;}
.y198{bottom:619.665000px;}
.y156{bottom:622.365000px;}
.y60{bottom:623.805000px;}
.y9c{bottom:625.245000px;}
.y185{bottom:629.025000px;}
.y23{bottom:629.205000px;}
.yf2{bottom:630.645000px;}
.y125{bottom:634.785000px;}
.y155{bottom:639.645000px;}
.y5f{bottom:641.085000px;}
.y197{bottom:641.445000px;}
.y9b{bottom:642.525000px;}
.y184{bottom:646.305000px;}
.y22{bottom:646.485000px;}
.yf1{bottom:647.925000px;}
.y124{bottom:656.385000px;}
.y154{bottom:656.925000px;}
.y5e{bottom:658.365000px;}
.y9a{bottom:659.805000px;}
.y183{bottom:663.585000px;}
.y21{bottom:663.765000px;}
.yf0{bottom:665.025000px;}
.y196{bottom:665.745000px;}
.y153{bottom:674.025000px;}
.ybc{bottom:675.285000px;}
.y5d{bottom:675.645000px;}
.y99{bottom:677.085000px;}
.y123{bottom:678.165000px;}
.y182{bottom:680.865000px;}
.y20{bottom:681.045000px;}
.yef{bottom:682.305000px;}
.y195{bottom:683.025000px;}
.y152{bottom:691.305000px;}
.y5c{bottom:692.925000px;}
.y98{bottom:694.365000px;}
.y181{bottom:698.145000px;}
.y1f{bottom:698.325000px;}
.yee{bottom:699.585000px;}
.y194{bottom:700.305000px;}
.y122{bottom:702.645000px;}
.y151{bottom:708.585000px;}
.y1b1{bottom:709.665000px;}
.y5b{bottom:710.025000px;}
.y97{bottom:711.285000px;}
.y180{bottom:715.065000px;}
.y1e{bottom:715.425000px;}
.yed{bottom:716.865000px;}
.y193{bottom:717.585000px;}
.y121{bottom:719.925000px;}
.y96{bottom:725.145000px;}
.y150{bottom:725.865000px;}
.ybb{bottom:726.945000px;}
.y5a{bottom:727.305000px;}
.y17f{bottom:732.525000px;}
.y1d{bottom:732.705000px;}
.yec{bottom:733.785000px;}
.y192{bottom:734.505000px;}
.y120{bottom:737.025000px;}
.y14f{bottom:743.145000px;}
.y59{bottom:744.585000px;}
.y191{bottom:748.365000px;}
.y17e{bottom:749.445000px;}
.y1c{bottom:749.985000px;}
.y11f{bottom:754.305000px;}
.yeb{bottom:755.385000px;}
.y14e{bottom:759.885000px;}
.y58{bottom:761.505000px;}
.y7f{bottom:761.865000px;}
.y1b{bottom:767.265000px;}
.y11e{bottom:771.585000px;}
.yea{bottom:777.165000px;}
.y57{bottom:779.145000px;}
.y14d{bottom:781.665000px;}
.y17d{bottom:784.005000px;}
.y1a{bottom:784.545000px;}
.y11d{bottom:788.505000px;}
.yba{bottom:795.885000px;}
.y56{bottom:796.245000px;}
.ye9{bottom:798.945000px;}
.y17c{bottom:801.285000px;}
.y19{bottom:801.645000px;}
.y14c{bottom:803.445000px;}
.y11c{bottom:806.145000px;}
.y55{bottom:813.525000px;}
.y18{bottom:818.925000px;}
.ye8{bottom:820.725000px;}
.y17b{bottom:822.885000px;}
.y11b{bottom:823.245000px;}
.y14b{bottom:825.225000px;}
.y54{bottom:830.805000px;}
.y17{bottom:836.205000px;}
.y11a{bottom:840.525000px;}
.ye7{bottom:842.505000px;}
.y17a{bottom:844.665000px;}
.y53{bottom:848.085000px;}
.y14a{bottom:849.525000px;}
.y16{bottom:853.485000px;}
.y119{bottom:857.805000px;}
.y52{bottom:865.365000px;}
.y179{bottom:866.445000px;}
.ye6{bottom:866.805000px;}
.y15{bottom:870.765000px;}
.y118{bottom:875.130000px;}
.y93{bottom:882.330000px;}
.y51{bottom:882.690000px;}
.ye5{bottom:884.130000px;}
.y14{bottom:888.090000px;}
.y178{bottom:888.270000px;}
.y117{bottom:892.050000px;}
.y50{bottom:899.790000px;}
.y149{bottom:901.050000px;}
.ye4{bottom:901.410000px;}
.y13{bottom:905.190000px;}
.y116{bottom:909.690000px;}
.y176{bottom:910.050000px;}
.y7e{bottom:916.710000px;}
.y4f{bottom:917.070000px;}
.ye3{bottom:918.690000px;}
.y12{bottom:922.470000px;}
.y115{bottom:926.790000px;}
.y4e{bottom:934.350000px;}
.ye2{bottom:935.790000px;}
.y11{bottom:939.390000px;}
.y114{bottom:944.070000px;}
.y4d{bottom:951.630000px;}
.ye1{bottom:952.710000px;}
.y148{bottom:953.070000px;}
.y10{bottom:957.750000px;}
.y113{bottom:961.350000px;}
.y90{bottom:968.550000px;}
.y4c{bottom:968.910000px;}
.ye0{bottom:970.350000px;}
.yf{bottom:975.030000px;}
.y112{bottom:978.630000px;}
.y4b{bottom:986.190000px;}
.ydf{bottom:987.630000px;}
.ye{bottom:992.310000px;}
.y111{bottom:995.910000px;}
.y175{bottom:1002.930000px;}
.y4a{bottom:1003.290000px;}
.yde{bottom:1004.910000px;}
.yd{bottom:1009.590000px;}
.y110{bottom:1013.190000px;}
.y7d{bottom:1020.210000px;}
.y49{bottom:1020.570000px;}
.y147{bottom:1021.650000px;}
.ydd{bottom:1022.190000px;}
.yc{bottom:1026.690000px;}
.y10f{bottom:1030.290000px;}
.y48{bottom:1037.850000px;}
.ydc{bottom:1039.290000px;}
.y146{bottom:1043.430000px;}
.yb{bottom:1043.970000px;}
.y10e{bottom:1047.210000px;}
.y47{bottom:1055.130000px;}
.ydb{bottom:1056.570000px;}
.ya{bottom:1061.970000px;}
.y145{bottom:1065.210000px;}
.y10d{bottom:1068.990000px;}
.y46{bottom:1072.410000px;}
.yda{bottom:1073.850000px;}
.y9{bottom:1079.250000px;}
.y8f{bottom:1089.330000px;}
.y45{bottom:1089.690000px;}
.yd9{bottom:1090.770000px;}
.y8{bottom:1096.890000px;}
.y1b5{bottom:1106.430000px;}
.y44{bottom:1106.790000px;}
.yd8{bottom:1112.550000px;}
.y7{bottom:1117.590000px;}
.y43{bottom:1124.070000px;}
.yd7{bottom:1134.180000px;}
.y6{bottom:1138.320000px;}
.y144{bottom:1141.020000px;}
.y42{bottom:1141.380000px;}
.y3{bottom:1161.360000px;}
.y2{bottom:1178.640000px;}
.y1{bottom:1195.920000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.hb{height:34.380000px;}
.hc{height:34.560000px;}
.h6{height:41.726953px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.860000px;}
.w31{width:62.460000px;}
.w13{width:65.340000px;}
.we{width:68.580000px;}
.wd{width:69.480000px;}
.w17{width:69.516000px;}
.w14{width:69.660000px;}
.w30{width:72.000000px;}
.w8{width:72.900000px;}
.wf{width:73.620000px;}
.w9{width:78.480000px;}
.w1a{width:78.660000px;}
.w12{width:83.700000px;}
.w24{width:84.420000px;}
.w33{width:85.176000px;}
.w1d{width:85.536000px;}
.w15{width:89.460000px;}
.wb{width:89.640000px;}
.w5{width:89.820000px;}
.w29{width:90.720000px;}
.w2e{width:91.836000px;}
.w3{width:96.300000px;}
.w2a{width:96.336000px;}
.w37{width:99.936000px;}
.w27{width:101.916000px;}
.w7{width:103.320000px;}
.w2b{width:107.460000px;}
.w20{width:114.300000px;}
.w2f{width:116.676000px;}
.w1e{width:119.160000px;}
.w23{width:125.496000px;}
.w2d{width:127.260000px;}
.w34{width:131.760000px;}
.w28{width:133.956000px;}
.w6{width:135.396000px;}
.w16{width:135.900000px;}
.wc{width:135.936000px;}
.w26{width:138.060000px;}
.w39{width:150.660000px;}
.w19{width:151.770000px;}
.w35{width:152.460000px;}
.w21{width:157.710000px;}
.w25{width:159.150000px;}
.w11{width:168.840000px;}
.w38{width:175.530000px;}
.w4{width:193.530000px;}
.w1b{width:194.070000px;}
.w2c{width:206.670000px;}
.w10{width:207.615000px;}
.wa{width:221.475000px;}
.w36{width:246.810000px;}
.w18{width:248.070000px;}
.w32{width:302.970000px;}
.w22{width:303.330000px;}
.w1f{width:402.915000px;}
.w1c{width:470.235000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x60{left:5.400000px;}
.x68{left:7.380000px;}
.x10{left:9.000000px;}
.x5c{left:11.700000px;}
.x5a{left:12.780000px;}
.x5d{left:14.400000px;}
.x16{left:15.480000px;}
.x12{left:16.740000px;}
.x2b{left:18.360000px;}
.x6a{left:19.440000px;}
.x20{left:20.520000px;}
.x29{left:21.600000px;}
.x18{left:23.040000px;}
.x24{left:25.200000px;}
.x39{left:27.360000px;}
.x31{left:29.340000px;}
.x71{left:30.420000px;}
.x14{left:32.085000px;}
.x34{left:34.380000px;}
.x5f{left:36.000000px;}
.x1c{left:37.260000px;}
.x72{left:39.420000px;}
.x1a{left:40.680000px;}
.x5e{left:42.480000px;}
.x1e{left:44.100000px;}
.x69{left:45.180000px;}
.x3f{left:46.614000px;}
.x76{left:47.880000px;}
.x55{left:49.530000px;}
.x4e{left:51.705000px;}
.x2d{left:53.505000px;}
.x28{left:54.945000px;}
.x54{left:59.085000px;}
.x1d{left:60.300000px;}
.x56{left:63.354000px;}
.x40{left:66.105000px;}
.x41{left:67.854000px;}
.x42{left:69.114000px;}
.x4f{left:71.634000px;}
.x62{left:72.894000px;}
.x33{left:76.860000px;}
.x7b{left:78.114000px;}
.x57{left:82.254000px;}
.x1b{left:89.145000px;}
.x50{left:91.794000px;}
.x32{left:96.345000px;}
.x27{left:97.605000px;}
.x73{left:100.794000px;}
.x38{left:103.185000px;}
.xf{left:106.956000px;}
.x5{left:108.036000px;}
.x7a{left:109.434000px;}
.x6e{left:121.494000px;}
.x75{left:125.634000px;}
.x77{left:130.494000px;}
.xb{left:135.036000px;}
.x74{left:139.674000px;}
.x46{left:157.674000px;}
.x11{left:158.970000px;}
.xc{left:162.030000px;}
.x48{left:165.639000px;}
.x49{left:171.579000px;}
.x4c{left:173.379000px;}
.x2c{left:177.870000px;}
.x47{left:178.959000px;}
.x21{left:182.190000px;}
.x4a{left:203.979000px;}
.x44{left:207.219000px;}
.x7{left:232.950000px;}
.x58{left:247.170000px;}
.x6{left:253.290000px;}
.xe{left:254.370000px;}
.x13{left:257.430000px;}
.x22{left:263.010000px;}
.x1f{left:270.930000px;}
.x61{left:279.075000px;}
.x9{left:283.935000px;}
.x2a{left:288.615000px;}
.x6c{left:290.595000px;}
.x1{left:293.295000px;}
.x43{left:301.215000px;}
.x3b{left:303.915000px;}
.x4b{left:309.135000px;}
.x63{left:311.475000px;}
.x6b{left:317.955000px;}
.x35{left:324.435000px;}
.x59{left:351.255000px;}
.x78{left:355.935000px;}
.x3c{left:357.195000px;}
.x51{left:412.635000px;}
.x8{left:414.975000px;}
.xa{left:432.975000px;}
.x64{left:441.075000px;}
.x3{left:445.395000px;}
.x15{left:453.165000px;}
.x79{left:458.025000px;}
.x2e{left:463.785000px;}
.x2{left:472.965000px;}
.x23{left:486.645000px;}
.x6f{left:499.785000px;}
.x3d{left:511.305000px;}
.x65{left:535.065000px;}
.x52{left:540.285000px;}
.x17{left:545.145000px;}
.x36{left:558.645000px;}
.x25{left:578.445000px;}
.x5b{left:580.425000px;}
.x3e{left:592.125000px;}
.x3a{left:624.885000px;}
.x53{left:627.045000px;}
.x4d{left:628.665000px;}
.x70{left:633.750000px;}
.x2f{left:635.010000px;}
.x66{left:653.910000px;}
.x45{left:667.050000px;}
.xd{left:678.750000px;}
.x19{left:682.890000px;}
.x37{left:696.750000px;}
.x6d{left:707.550000px;}
.x26{left:716.730000px;}
.x30{left:721.050000px;}
.x67{left:728.070000px;}
.x4{left:767.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.891307pt;}
.ls4{letter-spacing:56.891307pt;}
.ls3{letter-spacing:178.698667pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.001707pt;}
._3{width:3.559040pt;}
._e{width:4.568320pt;}
._12{width:5.471360pt;}
._7{width:6.734507pt;}
._6{width:7.649280pt;}
._9{width:8.682027pt;}
._a{width:9.620907pt;}
._4{width:10.624000pt;}
._5{width:11.532373pt;}
._b{width:14.608000pt;}
._10{width:15.829760pt;}
._c{width:17.582720pt;}
._d{width:18.485760pt;}
._11{width:19.388800pt;}
._15{width:21.088640pt;}
._f{width:22.576000pt;}
._17{width:23.691520pt;}
._13{width:24.647680pt;}
._14{width:25.974187pt;}
._1e{width:27.569280pt;}
._19{width:28.741760pt;}
._18{width:29.800320pt;}
._16{width:32.296960pt;}
._1c{width:124.842027pt;}
._8{width:178.698667pt;}
._1b{width:187.696427pt;}
._1d{width:452.986027pt;}
._1a{width:570.507307pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y13c{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:3.040000pt;}
.y136{bottom:3.080000pt;}
.yd5{bottom:3.194667pt;}
.yc2{bottom:3.200000pt;}
.y172{bottom:3.354667pt;}
.yc0{bottom:3.360000pt;}
.y127{bottom:3.386667pt;}
.y177{bottom:10.560000pt;}
.y169{bottom:10.720000pt;}
.y173{bottom:11.034667pt;}
.y16e{bottom:11.040000pt;}
.y16a{bottom:18.240000pt;}
.y171{bottom:18.714667pt;}
.y16d{bottom:18.720000pt;}
.y5{bottom:33.920000pt;}
.y4{bottom:49.600000pt;}
.y41{bottom:99.232000pt;}
.y1b0{bottom:106.432000pt;}
.y8e{bottom:109.792000pt;}
.y10c{bottom:110.112000pt;}
.yb9{bottom:111.072000pt;}
.yd6{bottom:111.552000pt;}
.y143{bottom:112.512000pt;}
.y174{bottom:112.832000pt;}
.y40{bottom:114.592000pt;}
.y7c{bottom:121.312000pt;}
.y1af{bottom:121.792000pt;}
.y8d{bottom:125.152000pt;}
.yb8{bottom:126.432000pt;}
.y142{bottom:127.872000pt;}
.y10b{bottom:129.472000pt;}
.y3f{bottom:129.952000pt;}
.yd4{bottom:130.912000pt;}
.y170{bottom:132.192000pt;}
.y7b{bottom:136.666667pt;}
.y1ae{bottom:137.146667pt;}
.y8c{bottom:140.506667pt;}
.yb7{bottom:141.786667pt;}
.y141{bottom:143.226667pt;}
.y3e{bottom:145.306667pt;}
.yd3{bottom:150.106667pt;}
.y10a{bottom:151.226667pt;}
.y7a{bottom:152.026667pt;}
.y1ad{bottom:152.506667pt;}
.y95{bottom:155.546667pt;}
.y8b{bottom:155.866667pt;}
.yb6{bottom:157.146667pt;}
.y140{bottom:158.426667pt;}
.y3d{bottom:160.666667pt;}
.y109{bottom:166.426667pt;}
.y16f{bottom:166.906667pt;}
.y79{bottom:167.386667pt;}
.y1ac{bottom:167.866667pt;}
.yd2{bottom:169.466667pt;}
.y8a{bottom:171.226667pt;}
.yb5{bottom:172.506667pt;}
.y13f{bottom:173.786667pt;}
.y3c{bottom:175.706667pt;}
.y78{bottom:182.746667pt;}
.y16c{bottom:186.106667pt;}
.y89{bottom:186.426667pt;}
.yb4{bottom:187.866667pt;}
.y13e{bottom:189.146667pt;}
.y3b{bottom:191.226667pt;}
.y108{bottom:197.146667pt;}
.y77{bottom:197.946667pt;}
.y92{bottom:201.466667pt;}
.y88{bottom:201.786667pt;}
.y1ab{bottom:202.106667pt;}
.yb3{bottom:203.066667pt;}
.y13d{bottom:204.506667pt;}
.yd1{bottom:206.426667pt;}
.y3a{bottom:206.586667pt;}
.y107{bottom:212.506667pt;}
.y76{bottom:212.986667pt;}
.y87{bottom:217.146667pt;}
.yb2{bottom:218.426667pt;}
.y13b{bottom:219.546667pt;}
.y16b{bottom:220.826667pt;}
.y1aa{bottom:221.466667pt;}
.yd0{bottom:221.786667pt;}
.y39{bottom:221.946667pt;}
.y106{bottom:227.546667pt;}
.y75{bottom:228.666667pt;}
.y86{bottom:232.506667pt;}
.yb1{bottom:233.786667pt;}
.ycf{bottom:237.146667pt;}
.y38{bottom:237.306667pt;}
.y13a{bottom:238.746667pt;}
.y168{bottom:240.186667pt;}
.y1a9{bottom:240.826667pt;}
.y105{bottom:243.226667pt;}
.y74{bottom:244.026667pt;}
.y85{bottom:247.866667pt;}
.yb0{bottom:249.146667pt;}
.yce{bottom:252.186667pt;}
.y190{bottom:252.506667pt;}
.y37{bottom:252.666667pt;}
.y139{bottom:258.106667pt;}
.y104{bottom:258.426667pt;}
.y73{bottom:260.346667pt;}
.y84{bottom:263.226667pt;}
.yaf{bottom:264.506667pt;}
.ycd{bottom:267.866667pt;}
.y36{bottom:268.026667pt;}
.y103{bottom:273.786667pt;}
.y72{bottom:276.506667pt;}
.y138{bottom:277.466667pt;}
.y1a8{bottom:277.786667pt;}
.y83{bottom:278.426667pt;}
.yae{bottom:279.866667pt;}
.y35{bottom:283.226667pt;}
.y102{bottom:289.146667pt;}
.y167{bottom:292.506667pt;}
.y71{bottom:292.826667pt;}
.y1a7{bottom:293.146667pt;}
.y1b4{bottom:293.466667pt;}
.y82{bottom:293.786667pt;}
.yad{bottom:295.066667pt;}
.y137{bottom:296.826667pt;}
.ycc{bottom:298.426667pt;}
.y34{bottom:298.586667pt;}
.y101{bottom:304.506667pt;}
.y166{bottom:307.866667pt;}
.y1a6{bottom:308.186667pt;}
.y70{bottom:308.826667pt;}
.y81{bottom:309.146667pt;}
.yac{bottom:310.426667pt;}
.ycb{bottom:313.786667pt;}
.y33{bottom:313.946667pt;}
.y135{bottom:316.186667pt;}
.y100{bottom:319.906667pt;}
.y165{bottom:323.266667pt;}
.y1a5{bottom:323.746667pt;}
.y6f{bottom:324.546667pt;}
.yab{bottom:325.826667pt;}
.yca{bottom:329.186667pt;}
.y32{bottom:329.346667pt;}
.yff{bottom:335.106667pt;}
.y134{bottom:337.826667pt;}
.y164{bottom:338.146667pt;}
.y1a4{bottom:339.106667pt;}
.y6e{bottom:339.906667pt;}
.yaa{bottom:341.186667pt;}
.y18f{bottom:344.226667pt;}
.yc9{bottom:344.546667pt;}
.y31{bottom:344.706667pt;}
.yfe{bottom:350.146667pt;}
.y133{bottom:353.186667pt;}
.y163{bottom:353.826667pt;}
.y1a3{bottom:354.466667pt;}
.y1b2{bottom:354.946667pt;}
.y6d{bottom:355.266667pt;}
.ya9{bottom:356.546667pt;}
.yc8{bottom:359.906667pt;}
.y30{bottom:360.066667pt;}
.y132{bottom:368.546667pt;}
.y162{bottom:369.186667pt;}
.yfd{bottom:369.506667pt;}
.y1a2{bottom:369.826667pt;}
.y6c{bottom:370.466667pt;}
.ya8{bottom:371.746667pt;}
.y2f{bottom:374.946667pt;}
.yc7{bottom:375.106667pt;}
.y131{bottom:383.586667pt;}
.y161{bottom:384.546667pt;}
.y1a1{bottom:385.186667pt;}
.y94{bottom:385.506667pt;}
.y6b{bottom:385.826667pt;}
.ya7{bottom:387.106667pt;}
.yfc{bottom:388.866667pt;}
.y18e{bottom:390.146667pt;}
.yc6{bottom:390.466667pt;}
.y2e{bottom:390.626667pt;}
.y130{bottom:399.106667pt;}
.y160{bottom:399.906667pt;}
.y1a0{bottom:400.546667pt;}
.y6a{bottom:401.186667pt;}
.ya6{bottom:402.466667pt;}
.yc5{bottom:405.506667pt;}
.y18d{bottom:405.826667pt;}
.y2d{bottom:405.986667pt;}
.yfb{bottom:408.226667pt;}
.y12f{bottom:414.466667pt;}
.y15f{bottom:415.106667pt;}
.y19f{bottom:415.426667pt;}
.y1b3{bottom:416.226667pt;}
.y69{bottom:416.546667pt;}
.ya5{bottom:417.826667pt;}
.y18c{bottom:421.186667pt;}
.y2c{bottom:421.346667pt;}
.yc4{bottom:424.866667pt;}
.yfa{bottom:427.586667pt;}
.y12e{bottom:429.826667pt;}
.y15e{bottom:430.146667pt;}
.y68{bottom:431.906667pt;}
.ya4{bottom:433.186667pt;}
.y19e{bottom:434.786667pt;}
.y18b{bottom:436.546667pt;}
.y2b{bottom:436.706667pt;}
.yc3{bottom:444.226667pt;}
.y12d{bottom:445.186667pt;}
.y15d{bottom:445.826667pt;}
.yf9{bottom:446.786667pt;}
.y67{bottom:447.106667pt;}
.ya3{bottom:448.546667pt;}
.y2a{bottom:451.906667pt;}
.y19d{bottom:454.146667pt;}
.y12c{bottom:460.546667pt;}
.y15c{bottom:461.186667pt;}
.y66{bottom:462.466667pt;}
.yc1{bottom:463.586667pt;}
.ya2{bottom:463.746667pt;}
.y18a{bottom:467.106667pt;}
.y29{bottom:467.266667pt;}
.yf8{bottom:468.546667pt;}
.y19c{bottom:473.506667pt;}
.y12b{bottom:475.906667pt;}
.y15b{bottom:476.546667pt;}
.y65{bottom:477.826667pt;}
.ya1{bottom:479.106667pt;}
.y189{bottom:482.466667pt;}
.y28{bottom:482.626667pt;}
.ybf{bottom:482.786667pt;}
.yf7{bottom:483.906667pt;}
.y12a{bottom:491.106667pt;}
.y15a{bottom:491.906667pt;}
.y19b{bottom:492.866667pt;}
.y64{bottom:493.186667pt;}
.ya0{bottom:494.466667pt;}
.y188{bottom:497.826667pt;}
.y27{bottom:497.986667pt;}
.yf6{bottom:499.106667pt;}
.ybd{bottom:502.146667pt;}
.y129{bottom:506.146667pt;}
.y159{bottom:507.106667pt;}
.y91{bottom:508.226667pt;}
.y63{bottom:508.546667pt;}
.y9f{bottom:509.826667pt;}
.y19a{bottom:512.066667pt;}
.y26{bottom:513.026667pt;}
.y187{bottom:513.186667pt;}
.yf5{bottom:514.466667pt;}
.y158{bottom:522.466667pt;}
.y62{bottom:523.906667pt;}
.y9e{bottom:525.186667pt;}
.y128{bottom:525.506667pt;}
.y186{bottom:528.546667pt;}
.y25{bottom:528.706667pt;}
.yf4{bottom:529.506667pt;}
.y199{bottom:531.426667pt;}
.y157{bottom:537.826667pt;}
.y61{bottom:538.786667pt;}
.y80{bottom:539.106667pt;}
.y9d{bottom:540.546667pt;}
.y24{bottom:543.906667pt;}
.y126{bottom:544.866667pt;}
.yf3{bottom:545.186667pt;}
.y198{bottom:550.813333pt;}
.y156{bottom:553.213333pt;}
.y60{bottom:554.493333pt;}
.y9c{bottom:555.773333pt;}
.y185{bottom:559.133333pt;}
.y23{bottom:559.293333pt;}
.yf2{bottom:560.573333pt;}
.y125{bottom:564.253333pt;}
.y155{bottom:568.573333pt;}
.y5f{bottom:569.853333pt;}
.y197{bottom:570.173333pt;}
.y9b{bottom:571.133333pt;}
.y184{bottom:574.493333pt;}
.y22{bottom:574.653333pt;}
.yf1{bottom:575.933333pt;}
.y124{bottom:583.453333pt;}
.y154{bottom:583.933333pt;}
.y5e{bottom:585.213333pt;}
.y9a{bottom:586.493333pt;}
.y183{bottom:589.853333pt;}
.y21{bottom:590.013333pt;}
.yf0{bottom:591.133333pt;}
.y196{bottom:591.773333pt;}
.y153{bottom:599.133333pt;}
.ybc{bottom:600.253333pt;}
.y5d{bottom:600.573333pt;}
.y99{bottom:601.853333pt;}
.y123{bottom:602.813333pt;}
.y182{bottom:605.213333pt;}
.y20{bottom:605.373333pt;}
.yef{bottom:606.493333pt;}
.y195{bottom:607.133333pt;}
.y152{bottom:614.493333pt;}
.y5c{bottom:615.933333pt;}
.y98{bottom:617.213333pt;}
.y181{bottom:620.573333pt;}
.y1f{bottom:620.733333pt;}
.yee{bottom:621.853333pt;}
.y194{bottom:622.493333pt;}
.y122{bottom:624.573333pt;}
.y151{bottom:629.853333pt;}
.y1b1{bottom:630.813333pt;}
.y5b{bottom:631.133333pt;}
.y97{bottom:632.253333pt;}
.y180{bottom:635.613333pt;}
.y1e{bottom:635.933333pt;}
.yed{bottom:637.213333pt;}
.y193{bottom:637.853333pt;}
.y121{bottom:639.933333pt;}
.y96{bottom:644.573333pt;}
.y150{bottom:645.213333pt;}
.ybb{bottom:646.173333pt;}
.y5a{bottom:646.493333pt;}
.y17f{bottom:651.133333pt;}
.y1d{bottom:651.293333pt;}
.yec{bottom:652.253333pt;}
.y192{bottom:652.893333pt;}
.y120{bottom:655.133333pt;}
.y14f{bottom:660.573333pt;}
.y59{bottom:661.853333pt;}
.y191{bottom:665.213333pt;}
.y17e{bottom:666.173333pt;}
.y1c{bottom:666.653333pt;}
.y11f{bottom:670.493333pt;}
.yeb{bottom:671.453333pt;}
.y14e{bottom:675.453333pt;}
.y58{bottom:676.893333pt;}
.y7f{bottom:677.213333pt;}
.y1b{bottom:682.013333pt;}
.y11e{bottom:685.853333pt;}
.yea{bottom:690.813333pt;}
.y57{bottom:692.573333pt;}
.y14d{bottom:694.813333pt;}
.y17d{bottom:696.893333pt;}
.y1a{bottom:697.373333pt;}
.y11d{bottom:700.893333pt;}
.yba{bottom:707.453333pt;}
.y56{bottom:707.773333pt;}
.ye9{bottom:710.173333pt;}
.y17c{bottom:712.253333pt;}
.y19{bottom:712.573333pt;}
.y14c{bottom:714.173333pt;}
.y11c{bottom:716.573333pt;}
.y55{bottom:723.133333pt;}
.y18{bottom:727.933333pt;}
.ye8{bottom:729.533333pt;}
.y17b{bottom:731.453333pt;}
.y11b{bottom:731.773333pt;}
.y14b{bottom:733.533333pt;}
.y54{bottom:738.493333pt;}
.y17{bottom:743.293333pt;}
.y11a{bottom:747.133333pt;}
.ye7{bottom:748.893333pt;}
.y17a{bottom:750.813333pt;}
.y53{bottom:753.853333pt;}
.y14a{bottom:755.133333pt;}
.y16{bottom:758.653333pt;}
.y119{bottom:762.493333pt;}
.y52{bottom:769.213333pt;}
.y179{bottom:770.173333pt;}
.ye6{bottom:770.493333pt;}
.y15{bottom:774.013333pt;}
.y118{bottom:777.893333pt;}
.y93{bottom:784.293333pt;}
.y51{bottom:784.613333pt;}
.ye5{bottom:785.893333pt;}
.y14{bottom:789.413333pt;}
.y178{bottom:789.573333pt;}
.y117{bottom:792.933333pt;}
.y50{bottom:799.813333pt;}
.y149{bottom:800.933333pt;}
.ye4{bottom:801.253333pt;}
.y13{bottom:804.613333pt;}
.y116{bottom:808.613333pt;}
.y176{bottom:808.933333pt;}
.y7e{bottom:814.853333pt;}
.y4f{bottom:815.173333pt;}
.ye3{bottom:816.613333pt;}
.y12{bottom:819.973333pt;}
.y115{bottom:823.813333pt;}
.y4e{bottom:830.533333pt;}
.ye2{bottom:831.813333pt;}
.y11{bottom:835.013333pt;}
.y114{bottom:839.173333pt;}
.y4d{bottom:845.893333pt;}
.ye1{bottom:846.853333pt;}
.y148{bottom:847.173333pt;}
.y10{bottom:851.333333pt;}
.y113{bottom:854.533333pt;}
.y90{bottom:860.933333pt;}
.y4c{bottom:861.253333pt;}
.ye0{bottom:862.533333pt;}
.yf{bottom:866.693333pt;}
.y112{bottom:869.893333pt;}
.y4b{bottom:876.613333pt;}
.ydf{bottom:877.893333pt;}
.ye{bottom:882.053333pt;}
.y111{bottom:885.253333pt;}
.y175{bottom:891.493333pt;}
.y4a{bottom:891.813333pt;}
.yde{bottom:893.253333pt;}
.yd{bottom:897.413333pt;}
.y110{bottom:900.613333pt;}
.y7d{bottom:906.853333pt;}
.y49{bottom:907.173333pt;}
.y147{bottom:908.133333pt;}
.ydd{bottom:908.613333pt;}
.yc{bottom:912.613333pt;}
.y10f{bottom:915.813333pt;}
.y48{bottom:922.533333pt;}
.ydc{bottom:923.813333pt;}
.y146{bottom:927.493333pt;}
.yb{bottom:927.973333pt;}
.y10e{bottom:930.853333pt;}
.y47{bottom:937.893333pt;}
.ydb{bottom:939.173333pt;}
.ya{bottom:943.973333pt;}
.y145{bottom:946.853333pt;}
.y10d{bottom:950.213333pt;}
.y46{bottom:953.253333pt;}
.yda{bottom:954.533333pt;}
.y9{bottom:959.333333pt;}
.y8f{bottom:968.293333pt;}
.y45{bottom:968.613333pt;}
.yd9{bottom:969.573333pt;}
.y8{bottom:975.013333pt;}
.y1b5{bottom:983.493333pt;}
.y44{bottom:983.813333pt;}
.yd8{bottom:988.933333pt;}
.y7{bottom:993.413333pt;}
.y43{bottom:999.173333pt;}
.yd7{bottom:1008.160000pt;}
.y6{bottom:1011.840000pt;}
.y144{bottom:1014.240000pt;}
.y42{bottom:1014.560000pt;}
.y3{bottom:1032.320000pt;}
.y2{bottom:1047.680000pt;}
.y1{bottom:1063.040000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.hb{height:30.560000pt;}
.hc{height:30.720000pt;}
.h6{height:37.090625pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.320000pt;}
.w31{width:55.520000pt;}
.w13{width:58.080000pt;}
.we{width:60.960000pt;}
.wd{width:61.760000pt;}
.w17{width:61.792000pt;}
.w14{width:61.920000pt;}
.w30{width:64.000000pt;}
.w8{width:64.800000pt;}
.wf{width:65.440000pt;}
.w9{width:69.760000pt;}
.w1a{width:69.920000pt;}
.w12{width:74.400000pt;}
.w24{width:75.040000pt;}
.w33{width:75.712000pt;}
.w1d{width:76.032000pt;}
.w15{width:79.520000pt;}
.wb{width:79.680000pt;}
.w5{width:79.840000pt;}
.w29{width:80.640000pt;}
.w2e{width:81.632000pt;}
.w3{width:85.600000pt;}
.w2a{width:85.632000pt;}
.w37{width:88.832000pt;}
.w27{width:90.592000pt;}
.w7{width:91.840000pt;}
.w2b{width:95.520000pt;}
.w20{width:101.600000pt;}
.w2f{width:103.712000pt;}
.w1e{width:105.920000pt;}
.w23{width:111.552000pt;}
.w2d{width:113.120000pt;}
.w34{width:117.120000pt;}
.w28{width:119.072000pt;}
.w6{width:120.352000pt;}
.w16{width:120.800000pt;}
.wc{width:120.832000pt;}
.w26{width:122.720000pt;}
.w39{width:133.920000pt;}
.w19{width:134.906667pt;}
.w35{width:135.520000pt;}
.w21{width:140.186667pt;}
.w25{width:141.466667pt;}
.w11{width:150.080000pt;}
.w38{width:156.026667pt;}
.w4{width:172.026667pt;}
.w1b{width:172.506667pt;}
.w2c{width:183.706667pt;}
.w10{width:184.546667pt;}
.wa{width:196.866667pt;}
.w36{width:219.386667pt;}
.w18{width:220.506667pt;}
.w32{width:269.306667pt;}
.w22{width:269.626667pt;}
.w1f{width:358.146667pt;}
.w1c{width:417.986667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x60{left:4.800000pt;}
.x68{left:6.560000pt;}
.x10{left:8.000000pt;}
.x5c{left:10.400000pt;}
.x5a{left:11.360000pt;}
.x5d{left:12.800000pt;}
.x16{left:13.760000pt;}
.x12{left:14.880000pt;}
.x2b{left:16.320000pt;}
.x6a{left:17.280000pt;}
.x20{left:18.240000pt;}
.x29{left:19.200000pt;}
.x18{left:20.480000pt;}
.x24{left:22.400000pt;}
.x39{left:24.320000pt;}
.x31{left:26.080000pt;}
.x71{left:27.040000pt;}
.x14{left:28.520000pt;}
.x34{left:30.560000pt;}
.x5f{left:32.000000pt;}
.x1c{left:33.120000pt;}
.x72{left:35.040000pt;}
.x1a{left:36.160000pt;}
.x5e{left:37.760000pt;}
.x1e{left:39.200000pt;}
.x69{left:40.160000pt;}
.x3f{left:41.434667pt;}
.x76{left:42.560000pt;}
.x55{left:44.026667pt;}
.x4e{left:45.960000pt;}
.x2d{left:47.560000pt;}
.x28{left:48.840000pt;}
.x54{left:52.520000pt;}
.x1d{left:53.600000pt;}
.x56{left:56.314667pt;}
.x40{left:58.760000pt;}
.x41{left:60.314667pt;}
.x42{left:61.434667pt;}
.x4f{left:63.674667pt;}
.x62{left:64.794667pt;}
.x33{left:68.320000pt;}
.x7b{left:69.434667pt;}
.x57{left:73.114667pt;}
.x1b{left:79.240000pt;}
.x50{left:81.594667pt;}
.x32{left:85.640000pt;}
.x27{left:86.760000pt;}
.x73{left:89.594667pt;}
.x38{left:91.720000pt;}
.xf{left:95.072000pt;}
.x5{left:96.032000pt;}
.x7a{left:97.274667pt;}
.x6e{left:107.994667pt;}
.x75{left:111.674667pt;}
.x77{left:115.994667pt;}
.xb{left:120.032000pt;}
.x74{left:124.154667pt;}
.x46{left:140.154667pt;}
.x11{left:141.306667pt;}
.xc{left:144.026667pt;}
.x48{left:147.234667pt;}
.x49{left:152.514667pt;}
.x4c{left:154.114667pt;}
.x2c{left:158.106667pt;}
.x47{left:159.074667pt;}
.x21{left:161.946667pt;}
.x4a{left:181.314667pt;}
.x44{left:184.194667pt;}
.x7{left:207.066667pt;}
.x58{left:219.706667pt;}
.x6{left:225.146667pt;}
.xe{left:226.106667pt;}
.x13{left:228.826667pt;}
.x22{left:233.786667pt;}
.x1f{left:240.826667pt;}
.x61{left:248.066667pt;}
.x9{left:252.386667pt;}
.x2a{left:256.546667pt;}
.x6c{left:258.306667pt;}
.x1{left:260.706667pt;}
.x43{left:267.746667pt;}
.x3b{left:270.146667pt;}
.x4b{left:274.786667pt;}
.x63{left:276.866667pt;}
.x6b{left:282.626667pt;}
.x35{left:288.386667pt;}
.x59{left:312.226667pt;}
.x78{left:316.386667pt;}
.x3c{left:317.506667pt;}
.x51{left:366.786667pt;}
.x8{left:368.866667pt;}
.xa{left:384.866667pt;}
.x64{left:392.066667pt;}
.x3{left:395.906667pt;}
.x15{left:402.813333pt;}
.x79{left:407.133333pt;}
.x2e{left:412.253333pt;}
.x2{left:420.413333pt;}
.x23{left:432.573333pt;}
.x6f{left:444.253333pt;}
.x3d{left:454.493333pt;}
.x65{left:475.613333pt;}
.x52{left:480.253333pt;}
.x17{left:484.573333pt;}
.x36{left:496.573333pt;}
.x25{left:514.173333pt;}
.x5b{left:515.933333pt;}
.x3e{left:526.333333pt;}
.x3a{left:555.453333pt;}
.x53{left:557.373333pt;}
.x4d{left:558.813333pt;}
.x70{left:563.333333pt;}
.x2f{left:564.453333pt;}
.x66{left:581.253333pt;}
.x45{left:592.933333pt;}
.xd{left:603.333333pt;}
.x19{left:607.013333pt;}
.x37{left:619.333333pt;}
.x6d{left:628.933333pt;}
.x26{left:637.093333pt;}
.x30{left:640.933333pt;}
.x67{left:647.173333pt;}
.x4{left:681.893333pt;}
}




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