
    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_0dfc98d959c6d4c0e046e798.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_6c1520a6196ff1779ffa693a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.372070;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_255d62cd5b9533f676eac2e7.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_7cd0086f79f436c38eb6541e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a336f915f263c6c84f3ffc49.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bd92eb414b400a8532fedded.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_92176c7e578665885b4e5ad9.woff')format("woff");}.ff9{font-family:ff9;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:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.513600px;}
.lse{letter-spacing:0.924000px;}
.lsf{letter-spacing:0.978000px;}
.ls8{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls7{letter-spacing:64.170720px;}
.lsb{letter-spacing:201.204000px;}
.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;}
.ws1{word-spacing:-17.712000px;}
.wse{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.918000px;}
.wsa{word-spacing:-15.864000px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.093600px;}
.ws4{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.274000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.152000px;}
._0{width:1.195200px;}
._2{width:3.007200px;}
._b{width:4.436640px;}
._3{width:6.155280px;}
._c{width:7.217280px;}
._7{width:8.831520px;}
._6{width:10.039680px;}
._a{width:11.604960px;}
._e{width:12.767040px;}
._8{width:13.804560px;}
._4{width:16.613280px;}
._5{width:18.304800px;}
._d{width:19.550880px;}
._11{width:20.676960px;}
._f{width:21.872160px;}
._12{width:23.790000px;}
._10{width:24.979680px;}
._16{width:26.055360px;}
._17{width:27.510480px;}
._9{width:201.204000px;}
._14{width:551.693280px;}
._13{width:576.371280px;}
._15{width:700.706640px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y18e{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y108{bottom:3.240000px;}
.ydf{bottom:3.420000px;}
.y104{bottom:3.600000px;}
.ye3{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y107{bottom:11.880000px;}
.ydd{bottom:12.060000px;}
.y103{bottom:12.240000px;}
.ye1{bottom:12.420000px;}
.yde{bottom:20.520000px;}
.yf2{bottom:20.700000px;}
.y19f{bottom:20.730000px;}
.ye6{bottom:20.880000px;}
.ye2{bottom:21.060000px;}
.y174{bottom:21.105000px;}
.y4{bottom:24.120000px;}
.y186{bottom:29.160000px;}
.y187{bottom:37.800000px;}
.y16e{bottom:58.680000px;}
.yd8{bottom:59.940000px;}
.y1b8{bottom:61.020000px;}
.yac{bottom:61.560000px;}
.y105{bottom:73.980000px;}
.y83{bottom:74.520000px;}
.y16d{bottom:75.780000px;}
.yd7{bottom:77.580000px;}
.y44{bottom:77.760000px;}
.y1b7{bottom:78.300000px;}
.yab{bottom:78.840000px;}
.y137{bottom:91.260000px;}
.y82{bottom:91.800000px;}
.y16c{bottom:93.060000px;}
.yd6{bottom:94.860000px;}
.y43{bottom:95.040000px;}
.y1b6{bottom:95.580000px;}
.y1bc{bottom:95.760000px;}
.yaa{bottom:96.120000px;}
.y136{bottom:108.576000px;}
.y81{bottom:109.116000px;}
.y16b{bottom:110.376000px;}
.yd5{bottom:112.176000px;}
.y42{bottom:112.356000px;}
.y1b5{bottom:112.896000px;}
.y102{bottom:113.076000px;}
.ya9{bottom:113.436000px;}
.y135{bottom:126.036000px;}
.y80{bottom:126.396000px;}
.y16a{bottom:127.656000px;}
.yd4{bottom:129.456000px;}
.y41{bottom:129.636000px;}
.y1b4{bottom:130.176000px;}
.ya8{bottom:130.356000px;}
.yb2{bottom:130.716000px;}
.y134{bottom:143.316000px;}
.y7f{bottom:143.496000px;}
.y169{bottom:144.936000px;}
.yd3{bottom:146.736000px;}
.y40{bottom:146.916000px;}
.y1b3{bottom:147.276000px;}
.ya7{bottom:147.816000px;}
.y101{bottom:151.950000px;}
.y133{bottom:160.590000px;}
.y7e{bottom:160.770000px;}
.y168{bottom:161.670000px;}
.y198{bottom:162.030000px;}
.yd2{bottom:163.830000px;}
.y3f{bottom:164.010000px;}
.y1b2{bottom:164.550000px;}
.ya6{bottom:165.090000px;}
.y132{bottom:177.870000px;}
.y7d{bottom:178.050000px;}
.y197{bottom:179.310000px;}
.yd1{bottom:181.110000px;}
.y3e{bottom:181.290000px;}
.y1b1{bottom:181.830000px;}
.ya5{bottom:182.370000px;}
.y167{bottom:183.450000px;}
.y100{bottom:193.530000px;}
.y131{bottom:195.150000px;}
.y7c{bottom:195.330000px;}
.y196{bottom:196.590000px;}
.yd0{bottom:198.390000px;}
.y3d{bottom:198.570000px;}
.y1b0{bottom:199.110000px;}
.yb1{bottom:199.290000px;}
.ya4{bottom:199.650000px;}
.y166{bottom:207.930000px;}
.yff{bottom:210.810000px;}
.y130{bottom:212.430000px;}
.y7b{bottom:212.610000px;}
.y195{bottom:213.870000px;}
.ycf{bottom:215.670000px;}
.y3c{bottom:215.850000px;}
.y1af{bottom:216.390000px;}
.ya3{bottom:216.930000px;}
.y165{bottom:225.030000px;}
.yfe{bottom:228.090000px;}
.y12f{bottom:229.530000px;}
.y7a{bottom:229.890000px;}
.y194{bottom:231.150000px;}
.yce{bottom:232.950000px;}
.y3b{bottom:233.130000px;}
.y1ae{bottom:233.670000px;}
.ya2{bottom:234.030000px;}
.y164{bottom:242.310000px;}
.yfd{bottom:245.010000px;}
.y12e{bottom:246.450000px;}
.y79{bottom:246.990000px;}
.y193{bottom:248.070000px;}
.ycd{bottom:250.050000px;}
.y3a{bottom:250.230000px;}
.y1ad{bottom:250.770000px;}
.y1bb{bottom:250.950000px;}
.ya1{bottom:251.310000px;}
.y163{bottom:259.230000px;}
.yfc{bottom:262.650000px;}
.y12d{bottom:264.090000px;}
.y78{bottom:264.270000px;}
.y192{bottom:265.530000px;}
.ycc{bottom:267.330000px;}
.y39{bottom:267.510000px;}
.y1ac{bottom:268.050000px;}
.ya0{bottom:268.590000px;}
.y162{bottom:276.870000px;}
.yfb{bottom:279.930000px;}
.y12c{bottom:281.370000px;}
.y77{bottom:281.550000px;}
.y191{bottom:282.450000px;}
.ycb{bottom:284.610000px;}
.y38{bottom:284.790000px;}
.y1ab{bottom:285.330000px;}
.y9f{bottom:285.870000px;}
.y161{bottom:294.150000px;}
.yfa{bottom:297.030000px;}
.y76{bottom:298.470000px;}
.y12b{bottom:298.650000px;}
.y190{bottom:299.730000px;}
.y37{bottom:301.710000px;}
.yca{bottom:301.890000px;}
.y1aa{bottom:302.250000px;}
.y9e{bottom:303.150000px;}
.y160{bottom:311.430000px;}
.yf9{bottom:314.310000px;}
.y12a{bottom:315.930000px;}
.y75{bottom:316.110000px;}
.yc9{bottom:319.170000px;}
.y36{bottom:319.350000px;}
.y1a9{bottom:319.530000px;}
.y9d{bottom:320.430000px;}
.y18f{bottom:321.510000px;}
.y15f{bottom:328.530000px;}
.yf8{bottom:331.590000px;}
.y129{bottom:333.030000px;}
.y74{bottom:333.210000px;}
.yc8{bottom:336.450000px;}
.y35{bottom:336.630000px;}
.y1a8{bottom:337.170000px;}
.y9c{bottom:337.530000px;}
.y18d{bottom:343.290000px;}
.y15e{bottom:345.810000px;}
.yf7{bottom:348.870000px;}
.y128{bottom:350.310000px;}
.y73{bottom:350.490000px;}
.yc7{bottom:353.550000px;}
.y34{bottom:353.730000px;}
.y1a7{bottom:354.270000px;}
.y9b{bottom:354.810000px;}
.y15d{bottom:363.135000px;}
.y18c{bottom:364.935000px;}
.yf6{bottom:366.195000px;}
.y127{bottom:367.635000px;}
.y72{bottom:367.815000px;}
.yc6{bottom:370.875000px;}
.y33{bottom:371.055000px;}
.y1a6{bottom:371.595000px;}
.y9a{bottom:372.135000px;}
.y15c{bottom:380.415000px;}
.yf5{bottom:382.935000px;}
.y126{bottom:384.555000px;}
.y71{bottom:385.095000px;}
.y18b{bottom:386.715000px;}
.yc5{bottom:388.155000px;}
.y32{bottom:388.335000px;}
.y1a5{bottom:388.875000px;}
.y99{bottom:389.415000px;}
.y15b{bottom:397.335000px;}
.y70{bottom:402.015000px;}
.yc4{bottom:405.435000px;}
.y31{bottom:405.615000px;}
.y1a4{bottom:406.155000px;}
.y98{bottom:406.695000px;}
.y18a{bottom:408.495000px;}
.y15a{bottom:418.935000px;}
.y6f{bottom:419.655000px;}
.yf4{bottom:421.995000px;}
.yc3{bottom:422.715000px;}
.y30{bottom:422.895000px;}
.y125{bottom:423.435000px;}
.y97{bottom:423.975000px;}
.y189{bottom:430.275000px;}
.y6e{bottom:436.755000px;}
.yc2{bottom:439.995000px;}
.y2f{bottom:440.175000px;}
.y1ba{bottom:440.715000px;}
.y96{bottom:441.075000px;}
.y159{bottom:443.415000px;}
.y188{bottom:452.055000px;}
.y6d{bottom:454.035000px;}
.yc1{bottom:457.095000px;}
.y2e{bottom:457.275000px;}
.y95{bottom:458.355000px;}
.y158{bottom:460.695000px;}
.yf3{bottom:461.055000px;}
.y1a3{bottom:461.955000px;}
.y124{bottom:462.495000px;}
.y6c{bottom:471.315000px;}
.y185{bottom:473.835000px;}
.yc0{bottom:474.375000px;}
.y2d{bottom:474.555000px;}
.y94{bottom:475.635000px;}
.y157{bottom:477.795000px;}
.y1a2{bottom:483.735000px;}
.y6b{bottom:488.595000px;}
.y2c{bottom:491.475000px;}
.ybf{bottom:491.655000px;}
.y93{bottom:492.915000px;}
.y156{bottom:494.715000px;}
.yf1{bottom:499.935000px;}
.y123{bottom:501.555000px;}
.y6a{bottom:505.875000px;}
.ybe{bottom:508.935000px;}
.y2b{bottom:509.115000px;}
.y92{bottom:510.195000px;}
.y155{bottom:512.355000px;}
.y1a1{bottom:522.795000px;}
.y69{bottom:523.155000px;}
.ybd{bottom:526.215000px;}
.y2a{bottom:526.395000px;}
.y91{bottom:526.935000px;}
.yb0{bottom:527.295000px;}
.y154{bottom:529.635000px;}
.y184{bottom:532.695000px;}
.y68{bottom:540.255000px;}
.y122{bottom:540.435000px;}
.yf0{bottom:541.695000px;}
.y29{bottom:543.495000px;}
.y90{bottom:544.575000px;}
.y153{bottom:546.915000px;}
.y183{bottom:549.795000px;}
.y67{bottom:557.535000px;}
.yef{bottom:558.795000px;}
.ybc{bottom:560.595000px;}
.y28{bottom:560.775000px;}
.y1a0{bottom:561.675000px;}
.y8f{bottom:561.855000px;}
.y152{bottom:564.195000px;}
.y182{bottom:567.075000px;}
.y66{bottom:574.815000px;}
.yee{bottom:575.715000px;}
.ybb{bottom:577.875000px;}
.y27{bottom:578.055000px;}
.y8e{bottom:579.135000px;}
.y151{bottom:581.295000px;}
.y181{bottom:584.355000px;}
.y65{bottom:592.095000px;}
.yed{bottom:593.355000px;}
.yba{bottom:595.155000px;}
.y26{bottom:595.335000px;}
.yaf{bottom:596.055000px;}
.y8d{bottom:596.415000px;}
.y150{bottom:598.575000px;}
.y121{bottom:599.295000px;}
.y19e{bottom:600.735000px;}
.y180{bottom:601.275000px;}
.y64{bottom:609.015000px;}
.yec{bottom:610.635000px;}
.y25{bottom:612.255000px;}
.yb9{bottom:612.435000px;}
.y8c{bottom:613.335000px;}
.yae{bottom:613.695000px;}
.y14f{bottom:615.885000px;}
.y120{bottom:616.605000px;}
.y17f{bottom:618.945000px;}
.y63{bottom:626.685000px;}
.yeb{bottom:627.945000px;}
.yb8{bottom:629.745000px;}
.y24{bottom:629.925000px;}
.y8b{bottom:630.825000px;}
.y14e{bottom:633.165000px;}
.y11f{bottom:633.885000px;}
.y17e{bottom:636.225000px;}
.y62{bottom:643.785000px;}
.yea{bottom:645.225000px;}
.yb7{bottom:646.845000px;}
.y23{bottom:647.025000px;}
.y8a{bottom:648.105000px;}
.y14d{bottom:650.085000px;}
.y11e{bottom:650.805000px;}
.y17d{bottom:653.325000px;}
.y19d{bottom:659.625000px;}
.y61{bottom:662.145000px;}
.ye9{bottom:662.325000px;}
.yb6{bottom:664.125000px;}
.y22{bottom:664.305000px;}
.y89{bottom:665.385000px;}
.y11d{bottom:668.445000px;}
.y17c{bottom:670.605000px;}
.y14c{bottom:671.685000px;}
.y19c{bottom:676.905000px;}
.ye8{bottom:679.605000px;}
.y60{bottom:680.505000px;}
.yb5{bottom:681.045000px;}
.y21{bottom:681.585000px;}
.y88{bottom:682.665000px;}
.y11c{bottom:685.725000px;}
.y17b{bottom:687.885000px;}
.y14b{bottom:693.465000px;}
.y19b{bottom:693.825000px;}
.yb4{bottom:694.905000px;}
.ye7{bottom:696.885000px;}
.y20{bottom:698.865000px;}
.y1b9{bottom:699.585000px;}
.y87{bottom:699.945000px;}
.y11b{bottom:702.825000px;}
.y17a{bottom:705.165000px;}
.y19a{bottom:707.685000px;}
.ye5{bottom:713.805000px;}
.y14a{bottom:715.245000px;}
.y1f{bottom:716.145000px;}
.y5f{bottom:716.865000px;}
.y86{bottom:717.225000px;}
.y11a{bottom:720.105000px;}
.y179{bottom:722.445000px;}
.y1e{bottom:733.425000px;}
.y5e{bottom:734.325000px;}
.y149{bottom:737.025000px;}
.y119{bottom:737.385000px;}
.y178{bottom:739.725000px;}
.y1d{bottom:750.525000px;}
.y5d{bottom:751.605000px;}
.ye4{bottom:752.685000px;}
.y118{bottom:754.665000px;}
.y177{bottom:756.465000px;}
.y1c{bottom:767.805000px;}
.y5c{bottom:768.885000px;}
.y117{bottom:771.585000px;}
.y148{bottom:778.605000px;}
.y1b{bottom:785.085000px;}
.y5b{bottom:786.165000px;}
.ye0{bottom:791.745000px;}
.y176{bottom:795.525000px;}
.y147{bottom:795.885000px;}
.y1a{bottom:802.365000px;}
.y5a{bottom:803.445000px;}
.y116{bottom:810.465000px;}
.y146{bottom:813.165000px;}
.y175{bottom:817.305000px;}
.y19{bottom:819.645000px;}
.y59{bottom:820.725000px;}
.y145{bottom:830.085000px;}
.ydc{bottom:830.805000px;}
.y18{bottom:836.925000px;}
.y58{bottom:837.825000px;}
.y144{bottom:847.545000px;}
.y115{bottom:849.525000px;}
.y17{bottom:854.025000px;}
.y57{bottom:855.105000px;}
.y173{bottom:856.185000px;}
.y143{bottom:864.825000px;}
.y16{bottom:870.945000px;}
.y56{bottom:872.385000px;}
.y142{bottom:882.150000px;}
.y114{bottom:888.630000px;}
.y55{bottom:889.710000px;}
.y15{bottom:890.250000px;}
.y172{bottom:895.290000px;}
.y141{bottom:899.430000px;}
.yad{bottom:906.630000px;}
.y54{bottom:906.990000px;}
.y14{bottom:908.070000px;}
.y140{bottom:916.710000px;}
.y53{bottom:923.730000px;}
.y85{bottom:924.090000px;}
.y13{bottom:925.350000px;}
.y113{bottom:930.210000px;}
.y13f{bottom:933.990000px;}
.y171{bottom:934.350000px;}
.y52{bottom:941.370000px;}
.y12{bottom:942.630000px;}
.y112{bottom:947.490000px;}
.y13e{bottom:951.090000px;}
.y51{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.y111{bottom:964.590000px;}
.y13d{bottom:968.370000px;}
.y50{bottom:975.930000px;}
.y10{bottom:977.190000px;}
.y110{bottom:981.510000px;}
.y13c{bottom:985.290000px;}
.ydb{bottom:992.850000px;}
.y4f{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.y10f{bottom:999.150000px;}
.y13b{bottom:1007.070000px;}
.y4e{bottom:1010.490000px;}
.ye{bottom:1013.910000px;}
.y10e{bottom:1016.430000px;}
.y170{bottom:1027.230000px;}
.y4d{bottom:1027.590000px;}
.y13a{bottom:1028.850000px;}
.yd{bottom:1031.190000px;}
.y10d{bottom:1033.710000px;}
.y4c{bottom:1044.510000px;}
.y84{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.y139{bottom:1050.450000px;}
.y10c{bottom:1050.990000px;}
.yda{bottom:1061.790000px;}
.y4b{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y10b{bottom:1068.090000px;}
.y138{bottom:1072.230000px;}
.y199{bottom:1079.070000px;}
.y4a{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y10a{bottom:1085.370000px;}
.y49{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y109{bottom:1102.290000px;}
.yb3{bottom:1113.630000px;}
.y48{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y16f{bottom:1130.730000px;}
.y47{bottom:1131.090000px;}
.y106{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.yd9{bottom:1165.320000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.he{height:17.100000px;}
.h10{height:17.136000px;}
.hd{height:17.280000px;}
.ha{height:34.380000px;}
.hb{height:34.560000px;}
.hc{height:34.596000px;}
.h9{height:41.726953px;}
.h11{height:42.164648px;}
.hf{height:51.660000px;}
.h3{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.614102px;}
.h7{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h5{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:50.940000px;}
.w1e{width:72.936000px;}
.w13{width:74.880000px;}
.w18{width:75.960000px;}
.we{width:77.040000px;}
.w9{width:77.580000px;}
.w4{width:80.460000px;}
.w36{width:81.396000px;}
.w35{width:87.660000px;}
.w29{width:91.836000px;}
.w33{width:98.136000px;}
.w1a{width:102.996000px;}
.w39{width:114.516000px;}
.wf{width:115.056000px;}
.w30{width:115.236000px;}
.w1d{width:117.180000px;}
.w22{width:118.656000px;}
.w2f{width:122.436000px;}
.w34{width:123.156000px;}
.w2e{width:128.160000px;}
.w26{width:129.816000px;}
.wb{width:130.716000px;}
.w38{width:131.436000px;}
.w2d{width:132.696000px;}
.w32{width:133.560000px;}
.w15{width:133.596000px;}
.w19{width:133.776000px;}
.wa{width:134.496000px;}
.w6{width:135.036000px;}
.w5{width:137.376000px;}
.w2c{width:138.096000px;}
.w2b{width:139.716000px;}
.w14{width:141.336000px;}
.w1c{width:141.696000px;}
.wd{width:144.936000px;}
.w3b{width:149.796000px;}
.w10{width:155.010000px;}
.w25{width:169.590000px;}
.w37{width:174.810000px;}
.w3{width:177.870000px;}
.w8{width:183.990000px;}
.w12{width:187.410000px;}
.w1f{width:188.130000px;}
.w2a{width:188.490000px;}
.w3a{width:207.930000px;}
.w16{width:223.455000px;}
.w28{width:227.550000px;}
.w11{width:241.455000px;}
.w17{width:241.950000px;}
.w31{width:245.235000px;}
.w2{width:247.575000px;}
.w7{width:251.715000px;}
.w1b{width:258.375000px;}
.w27{width:272.775000px;}
.w23{width:275.475000px;}
.wc{width:285.915000px;}
.w20{width:335.595000px;}
.w24{width:444.345000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:1.440000px;}
.x33{left:2.520000px;}
.x1a{left:3.600000px;}
.x48{left:4.860000px;}
.x4b{left:6.300000px;}
.x35{left:7.740000px;}
.x25{left:8.820000px;}
.x2d{left:10.080000px;}
.x18{left:11.520000px;}
.x36{left:13.500000px;}
.x20{left:14.580000px;}
.x57{left:15.660000px;}
.x1c{left:17.640000px;}
.x22{left:19.620000px;}
.x3f{left:21.600000px;}
.x1e{left:23.400000px;}
.x53{left:24.840000px;}
.x2c{left:25.920000px;}
.x17{left:27.360000px;}
.x28{left:28.980000px;}
.x4d{left:30.240000px;}
.x24{left:31.500000px;}
.x1d{left:32.760000px;}
.x73{left:34.200000px;}
.x31{left:35.280000px;}
.x2f{left:37.440000px;}
.x54{left:38.520000px;}
.x5f{left:39.636000px;}
.x6e{left:40.680000px;}
.x38{left:41.940000px;}
.x49{left:44.100000px;}
.x52{left:45.216000px;}
.x75{left:47.160000px;}
.x1f{left:48.240000px;}
.x15{left:49.500000px;}
.x23{left:51.660000px;}
.x12{left:52.920000px;}
.x5{left:54.000000px;}
.x37{left:56.196000px;}
.x42{left:57.420000px;}
.x7e{left:59.040000px;}
.x60{left:61.416000px;}
.x5e{left:63.000000px;}
.x56{left:64.836000px;}
.x40{left:68.616000px;}
.x67{left:72.540000px;}
.x27{left:73.800000px;}
.x64{left:74.916000px;}
.x32{left:76.536000px;}
.x34{left:78.876000px;}
.xe{left:81.000000px;}
.x26{left:82.296000px;}
.x21{left:83.916000px;}
.x7d{left:85.356000px;}
.x80{left:86.616000px;}
.x4c{left:89.676000px;}
.x44{left:90.756000px;}
.x77{left:92.376000px;}
.x13{left:93.816000px;}
.x29{left:95.796000px;}
.x59{left:97.056000px;}
.x65{left:100.110000px;}
.x3e{left:101.370000px;}
.x55{left:105.840000px;}
.xf{left:108.036000px;}
.x4a{left:110.730000px;}
.x3a{left:112.890000px;}
.x7f{left:115.410000px;}
.xc{left:121.176000px;}
.x61{left:135.750000px;}
.x68{left:162.390000px;}
.x70{left:194.790000px;}
.x6{left:204.870000px;}
.x81{left:210.450000px;}
.xa{left:213.870000px;}
.x11{left:218.730000px;}
.x83{left:230.070000px;}
.x7{left:234.570000px;}
.x76{left:235.650000px;}
.x66{left:254.010000px;}
.x3{left:256.710000px;}
.x39{left:265.890000px;}
.x6f{left:267.510000px;}
.x2{left:268.770000px;}
.x4e{left:278.715000px;}
.x58{left:280.515000px;}
.x8{left:282.495000px;}
.x43{left:295.815000px;}
.xd{left:297.975000px;}
.x14{left:302.835000px;}
.x78{left:303.915000px;}
.x2a{left:306.795000px;}
.x6b{left:311.295000px;}
.x5a{left:313.635000px;}
.x6c{left:328.035000px;}
.x71{left:335.055000px;}
.x9{left:340.995000px;}
.x1{left:360.075000px;}
.x84{left:363.855000px;}
.x62{left:390.675000px;}
.xb{left:407.775000px;}
.x79{left:439.635000px;}
.x63{left:443.955000px;}
.x5b{left:457.485000px;}
.x72{left:469.905000px;}
.x85{left:480.525000px;}
.x16{left:482.865000px;}
.x45{left:486.105000px;}
.x3b{left:488.445000px;}
.x2b{left:492.945000px;}
.x69{left:519.225000px;}
.x4f{left:523.005000px;}
.x7a{left:539.925000px;}
.x6d{left:557.745000px;}
.x46{left:563.145000px;}
.x19{left:565.665000px;}
.x3c{left:567.825000px;}
.x2e{left:572.685000px;}
.x5c{left:577.005000px;}
.x50{left:601.125000px;}
.x5d{left:652.290000px;}
.x7b{left:665.430000px;}
.x3d{left:685.230000px;}
.x6a{left:690.990000px;}
.x1b{left:705.390000px;}
.x47{left:706.830000px;}
.x30{left:709.530000px;}
.x74{left:725.010000px;}
.x51{left:737.250000px;}
.x7c{left:755.250000px;}
.x10{left:775.050000px;}
.x82{left:799.890000px;}
.x86{left:812.130000px;}
.x4{left:821.160000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.456533pt;}
.lse{letter-spacing:0.821333pt;}
.lsf{letter-spacing:0.869333pt;}
.ls8{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls7{letter-spacing:57.040640pt;}
.lsb{letter-spacing:178.848000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.240000pt;}
.wsb{word-spacing:-14.149333pt;}
.wsa{word-spacing:-14.101333pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.416533pt;}
.ws4{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.688000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.062400pt;}
._2{width:2.673067pt;}
._b{width:3.943680pt;}
._3{width:5.471360pt;}
._c{width:6.415360pt;}
._7{width:7.850240pt;}
._6{width:8.924160pt;}
._a{width:10.315520pt;}
._e{width:11.348480pt;}
._8{width:12.270720pt;}
._4{width:14.767360pt;}
._5{width:16.270933pt;}
._d{width:17.378560pt;}
._11{width:18.379520pt;}
._f{width:19.441920pt;}
._12{width:21.146667pt;}
._10{width:22.204160pt;}
._16{width:23.160320pt;}
._17{width:24.453760pt;}
._9{width:178.848000pt;}
._14{width:490.394027pt;}
._13{width:512.330027pt;}
._15{width:622.850347pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y18e{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.880000pt;}
.ydf{bottom:3.040000pt;}
.y104{bottom:3.200000pt;}
.ye3{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y107{bottom:10.560000pt;}
.ydd{bottom:10.720000pt;}
.y103{bottom:10.880000pt;}
.ye1{bottom:11.040000pt;}
.yde{bottom:18.240000pt;}
.yf2{bottom:18.400000pt;}
.y19f{bottom:18.426667pt;}
.ye6{bottom:18.560000pt;}
.ye2{bottom:18.720000pt;}
.y174{bottom:18.760000pt;}
.y4{bottom:21.440000pt;}
.y186{bottom:25.920000pt;}
.y187{bottom:33.600000pt;}
.y16e{bottom:52.160000pt;}
.yd8{bottom:53.280000pt;}
.y1b8{bottom:54.240000pt;}
.yac{bottom:54.720000pt;}
.y105{bottom:65.760000pt;}
.y83{bottom:66.240000pt;}
.y16d{bottom:67.360000pt;}
.yd7{bottom:68.960000pt;}
.y44{bottom:69.120000pt;}
.y1b7{bottom:69.600000pt;}
.yab{bottom:70.080000pt;}
.y137{bottom:81.120000pt;}
.y82{bottom:81.600000pt;}
.y16c{bottom:82.720000pt;}
.yd6{bottom:84.320000pt;}
.y43{bottom:84.480000pt;}
.y1b6{bottom:84.960000pt;}
.y1bc{bottom:85.120000pt;}
.yaa{bottom:85.440000pt;}
.y136{bottom:96.512000pt;}
.y81{bottom:96.992000pt;}
.y16b{bottom:98.112000pt;}
.yd5{bottom:99.712000pt;}
.y42{bottom:99.872000pt;}
.y1b5{bottom:100.352000pt;}
.y102{bottom:100.512000pt;}
.ya9{bottom:100.832000pt;}
.y135{bottom:112.032000pt;}
.y80{bottom:112.352000pt;}
.y16a{bottom:113.472000pt;}
.yd4{bottom:115.072000pt;}
.y41{bottom:115.232000pt;}
.y1b4{bottom:115.712000pt;}
.ya8{bottom:115.872000pt;}
.yb2{bottom:116.192000pt;}
.y134{bottom:127.392000pt;}
.y7f{bottom:127.552000pt;}
.y169{bottom:128.832000pt;}
.yd3{bottom:130.432000pt;}
.y40{bottom:130.592000pt;}
.y1b3{bottom:130.912000pt;}
.ya7{bottom:131.392000pt;}
.y101{bottom:135.066667pt;}
.y133{bottom:142.746667pt;}
.y7e{bottom:142.906667pt;}
.y168{bottom:143.706667pt;}
.y198{bottom:144.026667pt;}
.yd2{bottom:145.626667pt;}
.y3f{bottom:145.786667pt;}
.y1b2{bottom:146.266667pt;}
.ya6{bottom:146.746667pt;}
.y132{bottom:158.106667pt;}
.y7d{bottom:158.266667pt;}
.y197{bottom:159.386667pt;}
.yd1{bottom:160.986667pt;}
.y3e{bottom:161.146667pt;}
.y1b1{bottom:161.626667pt;}
.ya5{bottom:162.106667pt;}
.y167{bottom:163.066667pt;}
.y100{bottom:172.026667pt;}
.y131{bottom:173.466667pt;}
.y7c{bottom:173.626667pt;}
.y196{bottom:174.746667pt;}
.yd0{bottom:176.346667pt;}
.y3d{bottom:176.506667pt;}
.y1b0{bottom:176.986667pt;}
.yb1{bottom:177.146667pt;}
.ya4{bottom:177.466667pt;}
.y166{bottom:184.826667pt;}
.yff{bottom:187.386667pt;}
.y130{bottom:188.826667pt;}
.y7b{bottom:188.986667pt;}
.y195{bottom:190.106667pt;}
.ycf{bottom:191.706667pt;}
.y3c{bottom:191.866667pt;}
.y1af{bottom:192.346667pt;}
.ya3{bottom:192.826667pt;}
.y165{bottom:200.026667pt;}
.yfe{bottom:202.746667pt;}
.y12f{bottom:204.026667pt;}
.y7a{bottom:204.346667pt;}
.y194{bottom:205.466667pt;}
.yce{bottom:207.066667pt;}
.y3b{bottom:207.226667pt;}
.y1ae{bottom:207.706667pt;}
.ya2{bottom:208.026667pt;}
.y164{bottom:215.386667pt;}
.yfd{bottom:217.786667pt;}
.y12e{bottom:219.066667pt;}
.y79{bottom:219.546667pt;}
.y193{bottom:220.506667pt;}
.ycd{bottom:222.266667pt;}
.y3a{bottom:222.426667pt;}
.y1ad{bottom:222.906667pt;}
.y1bb{bottom:223.066667pt;}
.ya1{bottom:223.386667pt;}
.y163{bottom:230.426667pt;}
.yfc{bottom:233.466667pt;}
.y12d{bottom:234.746667pt;}
.y78{bottom:234.906667pt;}
.y192{bottom:236.026667pt;}
.ycc{bottom:237.626667pt;}
.y39{bottom:237.786667pt;}
.y1ac{bottom:238.266667pt;}
.ya0{bottom:238.746667pt;}
.y162{bottom:246.106667pt;}
.yfb{bottom:248.826667pt;}
.y12c{bottom:250.106667pt;}
.y77{bottom:250.266667pt;}
.y191{bottom:251.066667pt;}
.ycb{bottom:252.986667pt;}
.y38{bottom:253.146667pt;}
.y1ab{bottom:253.626667pt;}
.y9f{bottom:254.106667pt;}
.y161{bottom:261.466667pt;}
.yfa{bottom:264.026667pt;}
.y76{bottom:265.306667pt;}
.y12b{bottom:265.466667pt;}
.y190{bottom:266.426667pt;}
.y37{bottom:268.186667pt;}
.yca{bottom:268.346667pt;}
.y1aa{bottom:268.666667pt;}
.y9e{bottom:269.466667pt;}
.y160{bottom:276.826667pt;}
.yf9{bottom:279.386667pt;}
.y12a{bottom:280.826667pt;}
.y75{bottom:280.986667pt;}
.yc9{bottom:283.706667pt;}
.y36{bottom:283.866667pt;}
.y1a9{bottom:284.026667pt;}
.y9d{bottom:284.826667pt;}
.y18f{bottom:285.786667pt;}
.y15f{bottom:292.026667pt;}
.yf8{bottom:294.746667pt;}
.y129{bottom:296.026667pt;}
.y74{bottom:296.186667pt;}
.yc8{bottom:299.066667pt;}
.y35{bottom:299.226667pt;}
.y1a8{bottom:299.706667pt;}
.y9c{bottom:300.026667pt;}
.y18d{bottom:305.146667pt;}
.y15e{bottom:307.386667pt;}
.yf7{bottom:310.106667pt;}
.y128{bottom:311.386667pt;}
.y73{bottom:311.546667pt;}
.yc7{bottom:314.266667pt;}
.y34{bottom:314.426667pt;}
.y1a7{bottom:314.906667pt;}
.y9b{bottom:315.386667pt;}
.y15d{bottom:322.786667pt;}
.y18c{bottom:324.386667pt;}
.yf6{bottom:325.506667pt;}
.y127{bottom:326.786667pt;}
.y72{bottom:326.946667pt;}
.yc6{bottom:329.666667pt;}
.y33{bottom:329.826667pt;}
.y1a6{bottom:330.306667pt;}
.y9a{bottom:330.786667pt;}
.y15c{bottom:338.146667pt;}
.yf5{bottom:340.386667pt;}
.y126{bottom:341.826667pt;}
.y71{bottom:342.306667pt;}
.y18b{bottom:343.746667pt;}
.yc5{bottom:345.026667pt;}
.y32{bottom:345.186667pt;}
.y1a5{bottom:345.666667pt;}
.y99{bottom:346.146667pt;}
.y15b{bottom:353.186667pt;}
.y70{bottom:357.346667pt;}
.yc4{bottom:360.386667pt;}
.y31{bottom:360.546667pt;}
.y1a4{bottom:361.026667pt;}
.y98{bottom:361.506667pt;}
.y18a{bottom:363.106667pt;}
.y15a{bottom:372.386667pt;}
.y6f{bottom:373.026667pt;}
.yf4{bottom:375.106667pt;}
.yc3{bottom:375.746667pt;}
.y30{bottom:375.906667pt;}
.y125{bottom:376.386667pt;}
.y97{bottom:376.866667pt;}
.y189{bottom:382.466667pt;}
.y6e{bottom:388.226667pt;}
.yc2{bottom:391.106667pt;}
.y2f{bottom:391.266667pt;}
.y1ba{bottom:391.746667pt;}
.y96{bottom:392.066667pt;}
.y159{bottom:394.146667pt;}
.y188{bottom:401.826667pt;}
.y6d{bottom:403.586667pt;}
.yc1{bottom:406.306667pt;}
.y2e{bottom:406.466667pt;}
.y95{bottom:407.426667pt;}
.y158{bottom:409.506667pt;}
.yf3{bottom:409.826667pt;}
.y1a3{bottom:410.626667pt;}
.y124{bottom:411.106667pt;}
.y6c{bottom:418.946667pt;}
.y185{bottom:421.186667pt;}
.yc0{bottom:421.666667pt;}
.y2d{bottom:421.826667pt;}
.y94{bottom:422.786667pt;}
.y157{bottom:424.706667pt;}
.y1a2{bottom:429.986667pt;}
.y6b{bottom:434.306667pt;}
.y2c{bottom:436.866667pt;}
.ybf{bottom:437.026667pt;}
.y93{bottom:438.146667pt;}
.y156{bottom:439.746667pt;}
.yf1{bottom:444.386667pt;}
.y123{bottom:445.826667pt;}
.y6a{bottom:449.666667pt;}
.ybe{bottom:452.386667pt;}
.y2b{bottom:452.546667pt;}
.y92{bottom:453.506667pt;}
.y155{bottom:455.426667pt;}
.y1a1{bottom:464.706667pt;}
.y69{bottom:465.026667pt;}
.ybd{bottom:467.746667pt;}
.y2a{bottom:467.906667pt;}
.y91{bottom:468.386667pt;}
.yb0{bottom:468.706667pt;}
.y154{bottom:470.786667pt;}
.y184{bottom:473.506667pt;}
.y68{bottom:480.226667pt;}
.y122{bottom:480.386667pt;}
.yf0{bottom:481.506667pt;}
.y29{bottom:483.106667pt;}
.y90{bottom:484.066667pt;}
.y153{bottom:486.146667pt;}
.y183{bottom:488.706667pt;}
.y67{bottom:495.586667pt;}
.yef{bottom:496.706667pt;}
.ybc{bottom:498.306667pt;}
.y28{bottom:498.466667pt;}
.y1a0{bottom:499.266667pt;}
.y8f{bottom:499.426667pt;}
.y152{bottom:501.506667pt;}
.y182{bottom:504.066667pt;}
.y66{bottom:510.946667pt;}
.yee{bottom:511.746667pt;}
.ybb{bottom:513.666667pt;}
.y27{bottom:513.826667pt;}
.y8e{bottom:514.786667pt;}
.y151{bottom:516.706667pt;}
.y181{bottom:519.426667pt;}
.y65{bottom:526.306667pt;}
.yed{bottom:527.426667pt;}
.yba{bottom:529.026667pt;}
.y26{bottom:529.186667pt;}
.yaf{bottom:529.826667pt;}
.y8d{bottom:530.146667pt;}
.y150{bottom:532.066667pt;}
.y121{bottom:532.706667pt;}
.y19e{bottom:533.986667pt;}
.y180{bottom:534.466667pt;}
.y64{bottom:541.346667pt;}
.yec{bottom:542.786667pt;}
.y25{bottom:544.226667pt;}
.yb9{bottom:544.386667pt;}
.y8c{bottom:545.186667pt;}
.yae{bottom:545.506667pt;}
.y14f{bottom:547.453333pt;}
.y120{bottom:548.093333pt;}
.y17f{bottom:550.173333pt;}
.y63{bottom:557.053333pt;}
.yeb{bottom:558.173333pt;}
.yb8{bottom:559.773333pt;}
.y24{bottom:559.933333pt;}
.y8b{bottom:560.733333pt;}
.y14e{bottom:562.813333pt;}
.y11f{bottom:563.453333pt;}
.y17e{bottom:565.533333pt;}
.y62{bottom:572.253333pt;}
.yea{bottom:573.533333pt;}
.yb7{bottom:574.973333pt;}
.y23{bottom:575.133333pt;}
.y8a{bottom:576.093333pt;}
.y14d{bottom:577.853333pt;}
.y11e{bottom:578.493333pt;}
.y17d{bottom:580.733333pt;}
.y19d{bottom:586.333333pt;}
.y61{bottom:588.573333pt;}
.ye9{bottom:588.733333pt;}
.yb6{bottom:590.333333pt;}
.y22{bottom:590.493333pt;}
.y89{bottom:591.453333pt;}
.y11d{bottom:594.173333pt;}
.y17c{bottom:596.093333pt;}
.y14c{bottom:597.053333pt;}
.y19c{bottom:601.693333pt;}
.ye8{bottom:604.093333pt;}
.y60{bottom:604.893333pt;}
.yb5{bottom:605.373333pt;}
.y21{bottom:605.853333pt;}
.y88{bottom:606.813333pt;}
.y11c{bottom:609.533333pt;}
.y17b{bottom:611.453333pt;}
.y14b{bottom:616.413333pt;}
.y19b{bottom:616.733333pt;}
.yb4{bottom:617.693333pt;}
.ye7{bottom:619.453333pt;}
.y20{bottom:621.213333pt;}
.y1b9{bottom:621.853333pt;}
.y87{bottom:622.173333pt;}
.y11b{bottom:624.733333pt;}
.y17a{bottom:626.813333pt;}
.y19a{bottom:629.053333pt;}
.ye5{bottom:634.493333pt;}
.y14a{bottom:635.773333pt;}
.y1f{bottom:636.573333pt;}
.y5f{bottom:637.213333pt;}
.y86{bottom:637.533333pt;}
.y11a{bottom:640.093333pt;}
.y179{bottom:642.173333pt;}
.y1e{bottom:651.933333pt;}
.y5e{bottom:652.733333pt;}
.y149{bottom:655.133333pt;}
.y119{bottom:655.453333pt;}
.y178{bottom:657.533333pt;}
.y1d{bottom:667.133333pt;}
.y5d{bottom:668.093333pt;}
.ye4{bottom:669.053333pt;}
.y118{bottom:670.813333pt;}
.y177{bottom:672.413333pt;}
.y1c{bottom:682.493333pt;}
.y5c{bottom:683.453333pt;}
.y117{bottom:685.853333pt;}
.y148{bottom:692.093333pt;}
.y1b{bottom:697.853333pt;}
.y5b{bottom:698.813333pt;}
.ye0{bottom:703.773333pt;}
.y176{bottom:707.133333pt;}
.y147{bottom:707.453333pt;}
.y1a{bottom:713.213333pt;}
.y5a{bottom:714.173333pt;}
.y116{bottom:720.413333pt;}
.y146{bottom:722.813333pt;}
.y175{bottom:726.493333pt;}
.y19{bottom:728.573333pt;}
.y59{bottom:729.533333pt;}
.y145{bottom:737.853333pt;}
.ydc{bottom:738.493333pt;}
.y18{bottom:743.933333pt;}
.y58{bottom:744.733333pt;}
.y144{bottom:753.373333pt;}
.y115{bottom:755.133333pt;}
.y17{bottom:759.133333pt;}
.y57{bottom:760.093333pt;}
.y173{bottom:761.053333pt;}
.y143{bottom:768.733333pt;}
.y16{bottom:774.173333pt;}
.y56{bottom:775.453333pt;}
.y142{bottom:784.133333pt;}
.y114{bottom:789.893333pt;}
.y55{bottom:790.853333pt;}
.y15{bottom:791.333333pt;}
.y172{bottom:795.813333pt;}
.y141{bottom:799.493333pt;}
.yad{bottom:805.893333pt;}
.y54{bottom:806.213333pt;}
.y14{bottom:807.173333pt;}
.y140{bottom:814.853333pt;}
.y53{bottom:821.093333pt;}
.y85{bottom:821.413333pt;}
.y13{bottom:822.533333pt;}
.y113{bottom:826.853333pt;}
.y13f{bottom:830.213333pt;}
.y171{bottom:830.533333pt;}
.y52{bottom:836.773333pt;}
.y12{bottom:837.893333pt;}
.y112{bottom:842.213333pt;}
.y13e{bottom:845.413333pt;}
.y51{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.y111{bottom:857.413333pt;}
.y13d{bottom:860.773333pt;}
.y50{bottom:867.493333pt;}
.y10{bottom:868.613333pt;}
.y110{bottom:872.453333pt;}
.y13c{bottom:875.813333pt;}
.ydb{bottom:882.533333pt;}
.y4f{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.y10f{bottom:888.133333pt;}
.y13b{bottom:895.173333pt;}
.y4e{bottom:898.213333pt;}
.ye{bottom:901.253333pt;}
.y10e{bottom:903.493333pt;}
.y170{bottom:913.093333pt;}
.y4d{bottom:913.413333pt;}
.y13a{bottom:914.533333pt;}
.yd{bottom:916.613333pt;}
.y10d{bottom:918.853333pt;}
.y4c{bottom:928.453333pt;}
.y84{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.y139{bottom:933.733333pt;}
.y10c{bottom:934.213333pt;}
.yda{bottom:943.813333pt;}
.y4b{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y10b{bottom:949.413333pt;}
.y138{bottom:953.093333pt;}
.y199{bottom:959.173333pt;}
.y4a{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y10a{bottom:964.773333pt;}
.y49{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y109{bottom:979.813333pt;}
.yb3{bottom:989.893333pt;}
.y48{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y16f{bottom:1005.093333pt;}
.y47{bottom:1005.413333pt;}
.y106{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.yd9{bottom:1035.840000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.he{height:15.200000pt;}
.h10{height:15.232000pt;}
.hd{height:15.360000pt;}
.ha{height:30.560000pt;}
.hb{height:30.720000pt;}
.hc{height:30.752000pt;}
.h9{height:37.090625pt;}
.h11{height:37.479688pt;}
.hf{height:45.920000pt;}
.h3{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.990313pt;}
.h7{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h5{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:45.280000pt;}
.w1e{width:64.832000pt;}
.w13{width:66.560000pt;}
.w18{width:67.520000pt;}
.we{width:68.480000pt;}
.w9{width:68.960000pt;}
.w4{width:71.520000pt;}
.w36{width:72.352000pt;}
.w35{width:77.920000pt;}
.w29{width:81.632000pt;}
.w33{width:87.232000pt;}
.w1a{width:91.552000pt;}
.w39{width:101.792000pt;}
.wf{width:102.272000pt;}
.w30{width:102.432000pt;}
.w1d{width:104.160000pt;}
.w22{width:105.472000pt;}
.w2f{width:108.832000pt;}
.w34{width:109.472000pt;}
.w2e{width:113.920000pt;}
.w26{width:115.392000pt;}
.wb{width:116.192000pt;}
.w38{width:116.832000pt;}
.w2d{width:117.952000pt;}
.w32{width:118.720000pt;}
.w15{width:118.752000pt;}
.w19{width:118.912000pt;}
.wa{width:119.552000pt;}
.w6{width:120.032000pt;}
.w5{width:122.112000pt;}
.w2c{width:122.752000pt;}
.w2b{width:124.192000pt;}
.w14{width:125.632000pt;}
.w1c{width:125.952000pt;}
.wd{width:128.832000pt;}
.w3b{width:133.152000pt;}
.w10{width:137.786667pt;}
.w25{width:150.746667pt;}
.w37{width:155.386667pt;}
.w3{width:158.106667pt;}
.w8{width:163.546667pt;}
.w12{width:166.586667pt;}
.w1f{width:167.226667pt;}
.w2a{width:167.546667pt;}
.w3a{width:184.826667pt;}
.w16{width:198.626667pt;}
.w28{width:202.266667pt;}
.w11{width:214.626667pt;}
.w17{width:215.066667pt;}
.w31{width:217.986667pt;}
.w2{width:220.066667pt;}
.w7{width:223.746667pt;}
.w1b{width:229.666667pt;}
.w27{width:242.466667pt;}
.w23{width:244.866667pt;}
.wc{width:254.146667pt;}
.w20{width:298.306667pt;}
.w24{width:394.973333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:1.280000pt;}
.x33{left:2.240000pt;}
.x1a{left:3.200000pt;}
.x48{left:4.320000pt;}
.x4b{left:5.600000pt;}
.x35{left:6.880000pt;}
.x25{left:7.840000pt;}
.x2d{left:8.960000pt;}
.x18{left:10.240000pt;}
.x36{left:12.000000pt;}
.x20{left:12.960000pt;}
.x57{left:13.920000pt;}
.x1c{left:15.680000pt;}
.x22{left:17.440000pt;}
.x3f{left:19.200000pt;}
.x1e{left:20.800000pt;}
.x53{left:22.080000pt;}
.x2c{left:23.040000pt;}
.x17{left:24.320000pt;}
.x28{left:25.760000pt;}
.x4d{left:26.880000pt;}
.x24{left:28.000000pt;}
.x1d{left:29.120000pt;}
.x73{left:30.400000pt;}
.x31{left:31.360000pt;}
.x2f{left:33.280000pt;}
.x54{left:34.240000pt;}
.x5f{left:35.232000pt;}
.x6e{left:36.160000pt;}
.x38{left:37.280000pt;}
.x49{left:39.200000pt;}
.x52{left:40.192000pt;}
.x75{left:41.920000pt;}
.x1f{left:42.880000pt;}
.x15{left:44.000000pt;}
.x23{left:45.920000pt;}
.x12{left:47.040000pt;}
.x5{left:48.000000pt;}
.x37{left:49.952000pt;}
.x42{left:51.040000pt;}
.x7e{left:52.480000pt;}
.x60{left:54.592000pt;}
.x5e{left:56.000000pt;}
.x56{left:57.632000pt;}
.x40{left:60.992000pt;}
.x67{left:64.480000pt;}
.x27{left:65.600000pt;}
.x64{left:66.592000pt;}
.x32{left:68.032000pt;}
.x34{left:70.112000pt;}
.xe{left:72.000000pt;}
.x26{left:73.152000pt;}
.x21{left:74.592000pt;}
.x7d{left:75.872000pt;}
.x80{left:76.992000pt;}
.x4c{left:79.712000pt;}
.x44{left:80.672000pt;}
.x77{left:82.112000pt;}
.x13{left:83.392000pt;}
.x29{left:85.152000pt;}
.x59{left:86.272000pt;}
.x65{left:88.986667pt;}
.x3e{left:90.106667pt;}
.x55{left:94.080000pt;}
.xf{left:96.032000pt;}
.x4a{left:98.426667pt;}
.x3a{left:100.346667pt;}
.x7f{left:102.586667pt;}
.xc{left:107.712000pt;}
.x61{left:120.666667pt;}
.x68{left:144.346667pt;}
.x70{left:173.146667pt;}
.x6{left:182.106667pt;}
.x81{left:187.066667pt;}
.xa{left:190.106667pt;}
.x11{left:194.426667pt;}
.x83{left:204.506667pt;}
.x7{left:208.506667pt;}
.x76{left:209.466667pt;}
.x66{left:225.786667pt;}
.x3{left:228.186667pt;}
.x39{left:236.346667pt;}
.x6f{left:237.786667pt;}
.x2{left:238.906667pt;}
.x4e{left:247.746667pt;}
.x58{left:249.346667pt;}
.x8{left:251.106667pt;}
.x43{left:262.946667pt;}
.xd{left:264.866667pt;}
.x14{left:269.186667pt;}
.x78{left:270.146667pt;}
.x2a{left:272.706667pt;}
.x6b{left:276.706667pt;}
.x5a{left:278.786667pt;}
.x6c{left:291.586667pt;}
.x71{left:297.826667pt;}
.x9{left:303.106667pt;}
.x1{left:320.066667pt;}
.x84{left:323.426667pt;}
.x62{left:347.266667pt;}
.xb{left:362.466667pt;}
.x79{left:390.786667pt;}
.x63{left:394.626667pt;}
.x5b{left:406.653333pt;}
.x72{left:417.693333pt;}
.x85{left:427.133333pt;}
.x16{left:429.213333pt;}
.x45{left:432.093333pt;}
.x3b{left:434.173333pt;}
.x2b{left:438.173333pt;}
.x69{left:461.533333pt;}
.x4f{left:464.893333pt;}
.x7a{left:479.933333pt;}
.x6d{left:495.773333pt;}
.x46{left:500.573333pt;}
.x19{left:502.813333pt;}
.x3c{left:504.733333pt;}
.x2e{left:509.053333pt;}
.x5c{left:512.893333pt;}
.x50{left:534.333333pt;}
.x5d{left:579.813333pt;}
.x7b{left:591.493333pt;}
.x3d{left:609.093333pt;}
.x6a{left:614.213333pt;}
.x1b{left:627.013333pt;}
.x47{left:628.293333pt;}
.x30{left:630.693333pt;}
.x74{left:644.453333pt;}
.x51{left:655.333333pt;}
.x7c{left:671.333333pt;}
.x10{left:688.933333pt;}
.x82{left:711.013333pt;}
.x86{left:721.893333pt;}
.x4{left:729.920000pt;}
}




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