
    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_b256e961a211b45673d7a790.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b6305511d2d20dd64c72a47e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_8996b6ee6edc1b5bb992cd2e.woff2')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_82040af5ad0338a98fc1efa3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_90e93ea68309a0d8e6c3af6c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3c6c831026a235a0c36b3dff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_594962afd11ef73b56e038d8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b049465eb4a9bae01ab819dc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fc400232712884a3b730d7b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9d4c20a779c09ea94faa8c2f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6e46ba6758d3e74870c74a11.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7115afcc92d7944a2e62bbff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_de4a1e17a37ad0aacdfa7372.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4a6fab4cbe729bafaf43c067.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ed77b4c0c56f894e607ac47e.woff2')format("woff");}.fff{font-family:fff;line-height:1.118652;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:ff10;src:url('chunks/assets/font_2ffd02fe344c681878d7c6fe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-138.240000px;}
.v2{vertical-align:-97.200000px;}
.v3{vertical-align:-82.800000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.135600px;}
.lse{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.828000px;}
.ls4{letter-spacing:620.076000px;}
.ls1{letter-spacing:1380.576000px;}
.ls2{letter-spacing:1389.576000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.836200px;}
.ws6{word-spacing:-9.732960px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.263600px;}
._0{width:1.006560px;}
._8{width:2.536320px;}
._9{width:3.751200px;}
._6{width:5.527200px;}
._5{width:6.600000px;}
._b{width:7.649280px;}
._a{width:8.844960px;}
._f{width:10.722720px;}
._3{width:12.238800px;}
._2{width:13.440000px;}
._4{width:14.688000px;}
._d{width:17.757360px;}
._e{width:19.005840px;}
._c{width:21.095280px;}
._10{width:23.250240px;}
._15{width:33.014880px;}
._14{width:34.063200px;}
._16{width:37.258800px;}
._11{width:40.636800px;}
._12{width:86.592240px;}
._13{width:88.199040px;}
._7{width:606.360000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:167.760000px;}
.y135{bottom:-14.040000px;}
.y159{bottom:-13.890000px;}
.y157{bottom:-13.860000px;}
.y12a{bottom:-13.680000px;}
.y0{bottom:0.000000px;}
.y105{bottom:3.240000px;}
.y106{bottom:3.600000px;}
.y13b{bottom:3.630000px;}
.yeb{bottom:8.460000px;}
.yef{bottom:8.820000px;}
.yed{bottom:40.710000px;}
.y30{bottom:57.456000px;}
.yfe{bottom:114.336000px;}
.y139{bottom:116.676000px;}
.ybb{bottom:117.216000px;}
.y86{bottom:117.396000px;}
.y2e{bottom:120.456000px;}
.y11e{bottom:128.016000px;}
.y1a4{bottom:132.516000px;}
.yba{bottom:133.596000px;}
.y138{bottom:133.776000px;}
.yad{bottom:135.216000px;}
.y85{bottom:138.096000px;}
.ydc{bottom:140.616000px;}
.yfd{bottom:142.776000px;}
.y2d{bottom:144.576000px;}
.y19{bottom:147.276000px;}
.y137{bottom:151.050000px;}
.y84{bottom:154.470000px;}
.yac{bottom:158.970000px;}
.y11d{bottom:165.450000px;}
.y1a3{bottom:165.630000px;}
.ydb{bottom:169.050000px;}
.y16a{bottom:171.750000px;}
.y5c{bottom:173.010000px;}
.y180{bottom:176.790000px;}
.yfc{bottom:180.210000px;}
.yab{bottom:182.730000px;}
.y136{bottom:187.050000px;}
.y18{bottom:189.030000px;}
.y5b{bottom:192.270000px;}
.y2c{bottom:192.990000px;}
.yda{bottom:197.490000px;}
.y1a2{bottom:198.750000px;}
.y169{bottom:200.190000px;}
.y11c{bottom:202.890000px;}
.y134{bottom:204.330000px;}
.yaa{bottom:206.490000px;}
.yfb{bottom:208.650000px;}
.y5a{bottom:212.970000px;}
.y17f{bottom:214.230000px;}
.y2b{bottom:217.110000px;}
.y133{bottom:222.330000px;}
.yd9{bottom:226.110000px;}
.y168{bottom:228.630000px;}
.ya9{bottom:230.430000px;}
.y1a1{bottom:231.870000px;}
.y59{bottom:233.670000px;}
.y17{bottom:236.730000px;}
.yfa{bottom:237.090000px;}
.y11b{bottom:240.330000px;}
.y2a{bottom:241.230000px;}
.y17e{bottom:242.670000px;}
.ya8{bottom:254.190000px;}
.y58{bottom:254.370000px;}
.yd8{bottom:254.550000px;}
.y167{bottom:257.070000px;}
.y132{bottom:257.610000px;}
.yb9{bottom:260.310000px;}
.y1a0{bottom:264.990000px;}
.y29{bottom:265.350000px;}
.yf9{bottom:265.530000px;}
.y17d{bottom:271.110000px;}
.y131{bottom:274.890000px;}
.y57{bottom:275.070000px;}
.yb8{bottom:276.690000px;}
.y83{bottom:276.870000px;}
.y11a{bottom:277.770000px;}
.ya7{bottom:277.950000px;}
.y16{bottom:280.650000px;}
.yd7{bottom:283.035000px;}
.y166{bottom:285.735000px;}
.y28{bottom:289.515000px;}
.yf8{bottom:290.955000px;}
.y130{bottom:292.035000px;}
.y56{bottom:295.815000px;}
.y82{bottom:297.255000px;}
.y19f{bottom:298.155000px;}
.y17c{bottom:299.775000px;}
.ya6{bottom:301.755000px;}
.y12f{bottom:309.315000px;}
.y27{bottom:313.635000px;}
.y165{bottom:314.175000px;}
.y15{bottom:314.355000px;}
.y119{bottom:315.435000px;}
.y55{bottom:316.515000px;}
.y81{bottom:318.315000px;}
.yd6{bottom:320.475000px;}
.ya5{bottom:325.695000px;}
.y12e{bottom:326.595000px;}
.y17b{bottom:328.215000px;}
.y19e{bottom:331.455000px;}
.y54{bottom:337.215000px;}
.y26{bottom:338.655000px;}
.y80{bottom:339.015000px;}
.y164{bottom:342.615000px;}
.y12d{bottom:343.875000px;}
.yd5{bottom:348.915000px;}
.ya4{bottom:349.455000px;}
.y14{bottom:350.895000px;}
.y118{bottom:352.875000px;}
.yf7{bottom:353.955000px;}
.y17a{bottom:356.655000px;}
.y53{bottom:357.915000px;}
.y7f{bottom:359.715000px;}
.y12c{bottom:361.875000px;}
.y19d{bottom:364.575000px;}
.y25{bottom:367.275000px;}
.y163{bottom:371.055000px;}
.ya3{bottom:373.215000px;}
.yd4{bottom:377.355000px;}
.y52{bottom:378.615000px;}
.y12b{bottom:379.875000px;}
.y7e{bottom:380.415000px;}
.y13{bottom:382.215000px;}
.yf6{bottom:382.395000px;}
.y179{bottom:385.095000px;}
.y117{bottom:390.315000px;}
.ya2{bottom:396.975000px;}
.y129{bottom:397.155000px;}
.y19c{bottom:397.695000px;}
.yb7{bottom:397.875000px;}
.y162{bottom:398.955000px;}
.y51{bottom:399.315000px;}
.y7d{bottom:401.115000px;}
.y24{bottom:401.655000px;}
.yd3{bottom:405.795000px;}
.yf5{bottom:410.835000px;}
.yb6{bottom:414.255000px;}
.y161{bottom:414.615000px;}
.y50{bottom:420.015000px;}
.ya1{bottom:420.915000px;}
.y7c{bottom:421.815000px;}
.y178{bottom:422.535000px;}
.y116{bottom:427.755000px;}
.y12{bottom:428.295000px;}
.y19b{bottom:430.815000px;}
.y160{bottom:432.615000px;}
.yd2{bottom:434.235000px;}
.y23{bottom:434.415000px;}
.y4f{bottom:440.715000px;}
.y7b{bottom:442.515000px;}
.ya0{bottom:444.675000px;}
.yf4{bottom:448.275000px;}
.y15f{bottom:449.895000px;}
.y177{bottom:450.975000px;}
.y128{bottom:453.855000px;}
.y22{bottom:458.535000px;}
.y4e{bottom:461.415000px;}
.yd1{bottom:462.675000px;}
.y7a{bottom:463.215000px;}
.y19a{bottom:463.935000px;}
.y115{bottom:465.195000px;}
.y15e{bottom:467.175000px;}
.y9f{bottom:468.435000px;}
.yf3{bottom:476.715000px;}
.y176{bottom:479.415000px;}
.y11{bottom:479.775000px;}
.y4d{bottom:482.115000px;}
.y21{bottom:482.655000px;}
.y79{bottom:483.915000px;}
.y15d{bottom:484.455000px;}
.y127{bottom:490.035000px;}
.yd0{bottom:491.295000px;}
.y9e{bottom:492.195000px;}
.y114{bottom:493.635000px;}
.y199{bottom:497.055000px;}
.y15c{bottom:501.735000px;}
.y4c{bottom:502.815000px;}
.y78{bottom:504.615000px;}
.y20{bottom:506.955000px;}
.yf2{bottom:514.155000px;}
.y9d{bottom:516.135000px;}
.y175{bottom:516.855000px;}
.y15b{bottom:519.015000px;}
.ycf{bottom:519.735000px;}
.y4b{bottom:523.515000px;}
.y77{bottom:525.315000px;}
.y126{bottom:527.655000px;}
.y198{bottom:529.815000px;}
.yec{bottom:529.995000px;}
.y113{bottom:530.535000px;}
.y10{bottom:531.255000px;}
.y1f{bottom:532.875000px;}
.y15a{bottom:536.115000px;}
.yb5{bottom:537.735000px;}
.y9c{bottom:539.895000px;}
.y4a{bottom:544.245000px;}
.y174{bottom:545.325000px;}
.y76{bottom:546.045000px;}
.yf1{bottom:553.245000px;}
.y158{bottom:554.145000px;}
.y125{bottom:556.125000px;}
.yce{bottom:556.665000px;}
.yb4{bottom:558.105000px;}
.y197{bottom:558.825000px;}
.y9b{bottom:563.685000px;}
.y49{bottom:564.945000px;}
.y75{bottom:566.745000px;}
.y1e{bottom:567.285000px;}
.y156{bottom:572.145000px;}
.y173{bottom:573.945000px;}
.yf0{bottom:576.465000px;}
.yf{bottom:582.765000px;}
.y124{bottom:584.565000px;}
.y196{bottom:585.105000px;}
.y48{bottom:585.645000px;}
.y74{bottom:587.445000px;}
.y155{bottom:589.425000px;}
.y112{bottom:596.805000px;}
.yee{bottom:599.685000px;}
.yb3{bottom:599.865000px;}
.y172{bottom:602.385000px;}
.y47{bottom:606.345000px;}
.y154{bottom:607.425000px;}
.y73{bottom:608.145000px;}
.y9a{bottom:611.205000px;}
.ycd{bottom:613.005000px;}
.y195{bottom:619.665000px;}
.yb2{bottom:620.565000px;}
.yea{bottom:622.905000px;}
.y111{bottom:625.245000px;}
.y153{bottom:625.425000px;}
.y46{bottom:627.045000px;}
.y72{bottom:628.845000px;}
.y171{bottom:630.825000px;}
.ye{bottom:634.425000px;}
.y99{bottom:635.145000px;}
.y1d{bottom:636.405000px;}
.y194{bottom:636.945000px;}
.yb1{bottom:641.265000px;}
.y123{bottom:641.445000px;}
.y152{bottom:642.705000px;}
.y45{bottom:647.745000px;}
.ycc{bottom:648.105000px;}
.y71{bottom:649.545000px;}
.y110{bottom:653.685000px;}
.y98{bottom:658.905000px;}
.ye9{bottom:659.265000px;}
.y151{bottom:659.985000px;}
.yb0{bottom:661.605000px;}
.y193{bottom:663.045000px;}
.ycb{bottom:665.385000px;}
.y170{bottom:667.725000px;}
.y44{bottom:668.445000px;}
.y122{bottom:669.885000px;}
.y70{bottom:670.245000px;}
.y1c{bottom:670.785000px;}
.y150{bottom:677.265000px;}
.y192{bottom:680.325000px;}
.y97{bottom:682.665000px;}
.y43{bottom:689.145000px;}
.yd{bottom:690.405000px;}
.y6f{bottom:690.945000px;}
.y10f{bottom:691.125000px;}
.y14f{bottom:694.545000px;}
.ye8{bottom:696.705000px;}
.yca{bottom:699.945000px;}
.y1b{bottom:705.345000px;}
.y96{bottom:706.425000px;}
.y191{bottom:706.605000px;}
.y121{bottom:707.325000px;}
.y42{bottom:709.845000px;}
.y6e{bottom:711.645000px;}
.yc9{bottom:717.225000px;}
.y10e{bottom:719.745000px;}
.y190{bottom:723.885000px;}
.ye7{bottom:725.145000px;}
.y14e{bottom:728.925000px;}
.y95{bottom:730.365000px;}
.y41{bottom:730.545000px;}
.y6d{bottom:732.345000px;}
.y1a{bottom:733.065000px;}
.y16f{bottom:733.965000px;}
.yc8{bottom:734.505000px;}
.y120{bottom:734.865000px;}
.y18f{bottom:741.165000px;}
.yc{bottom:745.665000px;}
.y14d{bottom:746.925000px;}
.y40{bottom:751.245000px;}
.yc7{bottom:751.605000px;}
.y6c{bottom:753.045000px;}
.ye6{bottom:753.585000px;}
.y94{bottom:754.125000px;}
.y10d{bottom:757.185000px;}
.y11f{bottom:757.545000px;}
.y16e{bottom:762.405000px;}
.y14c{bottom:764.925000px;}
.y18e{bottom:767.265000px;}
.yc6{bottom:768.885000px;}
.y3f{bottom:771.945000px;}
.y10c{bottom:772.845000px;}
.y6b{bottom:773.745000px;}
.y93{bottom:777.885000px;}
.ye5{bottom:782.025000px;}
.y14b{bottom:782.205000px;}
.y18d{bottom:784.545000px;}
.yc5{bottom:786.165000px;}
.y10b{bottom:790.845000px;}
.y3e{bottom:792.645000px;}
.y6a{bottom:794.445000px;}
.y14a{bottom:800.205000px;}
.y92{bottom:801.645000px;}
.y18c{bottom:801.825000px;}
.yc4{bottom:803.445000px;}
.yb{bottom:803.625000px;}
.y10a{bottom:808.890000px;}
.y3d{bottom:813.390000px;}
.y69{bottom:815.190000px;}
.y149{bottom:818.250000px;}
.ye4{bottom:818.970000px;}
.y16d{bottom:819.330000px;}
.y91{bottom:825.630000px;}
.y109{bottom:826.890000px;}
.y18b{bottom:828.150000px;}
.yc3{bottom:829.770000px;}
.y3c{bottom:834.090000px;}
.y148{bottom:835.530000px;}
.y68{bottom:835.890000px;}
.ya{bottom:837.465000px;}
.y108{bottom:844.890000px;}
.y18a{bottom:845.430000px;}
.y90{bottom:849.030000px;}
.yaf{bottom:849.390000px;}
.y147{bottom:852.810000px;}
.y3b{bottom:854.790000px;}
.y67{bottom:856.590000px;}
.y16c{bottom:856.770000px;}
.y189{bottom:862.710000px;}
.y107{bottom:862.890000px;}
.y146{bottom:869.910000px;}
.y9{bottom:871.170000px;}
.y8f{bottom:873.150000px;}
.y3a{bottom:875.490000px;}
.y66{bottom:877.290000px;}
.y188{bottom:879.810000px;}
.yc2{bottom:880.890000px;}
.ye3{bottom:885.210000px;}
.y145{bottom:887.190000px;}
.y39{bottom:896.190000px;}
.y8e{bottom:896.910000px;}
.y187{bottom:897.090000px;}
.y65{bottom:897.990000px;}
.yc1{bottom:898.170000px;}
.y104{bottom:898.890000px;}
.y144{bottom:904.470000px;}
.y8{bottom:905.010000px;}
.ye2{bottom:913.650000px;}
.yc0{bottom:915.450000px;}
.y38{bottom:916.890000px;}
.y64{bottom:918.690000px;}
.y8d{bottom:920.850000px;}
.y143{bottom:921.750000px;}
.y186{bottom:923.370000px;}
.y103{bottom:929.490000px;}
.y37{bottom:937.590000px;}
.y7{bottom:938.670000px;}
.y63{bottom:939.390000px;}
.y142{bottom:939.750000px;}
.y185{bottom:940.650000px;}
.ye1{bottom:942.270000px;}
.y8c{bottom:944.610000px;}
.ybf{bottom:946.230000px;}
.y16b{bottom:951.270000px;}
.y141{bottom:957.750000px;}
.y36{bottom:958.290000px;}
.y62{bottom:960.090000px;}
.y102{bottom:965.670000px;}
.y184{bottom:966.930000px;}
.y8b{bottom:968.370000px;}
.y6{bottom:972.330000px;}
.y140{bottom:975.030000px;}
.y35{bottom:978.990000px;}
.ye0{bottom:979.710000px;}
.y61{bottom:980.790000px;}
.y183{bottom:984.210000px;}
.ybe{bottom:985.290000px;}
.y8a{bottom:992.130000px;}
.y13f{bottom:993.030000px;}
.y101{bottom:994.110000px;}
.y34{bottom:999.690000px;}
.y60{bottom:1001.490000px;}
.y5{bottom:1006.170000px;}
.ydf{bottom:1008.150000px;}
.ybd{bottom:1009.410000px;}
.y182{bottom:1010.310000px;}
.y13e{bottom:1011.030000px;}
.y89{bottom:1015.710000px;}
.yae{bottom:1016.070000px;}
.y33{bottom:1020.390000px;}
.y5f{bottom:1022.190000px;}
.y100{bottom:1022.550000px;}
.y181{bottom:1027.590000px;}
.y13d{bottom:1028.310000px;}
.ybc{bottom:1033.530000px;}
.yde{bottom:1036.590000px;}
.y88{bottom:1039.470000px;}
.y4{bottom:1039.830000px;}
.y32{bottom:1041.090000px;}
.y5e{bottom:1042.890000px;}
.y13c{bottom:1045.410000px;}
.yff{bottom:1056.030000px;}
.y31{bottom:1062.510000px;}
.y13a{bottom:1062.690000px;}
.y87{bottom:1063.230000px;}
.y5d{bottom:1063.590000px;}
.ydd{bottom:1065.030000px;}
.y3{bottom:1073.670000px;}
.y2{bottom:1107.330000px;}
.y2f{bottom:1119.960000px;}
.y1{bottom:1141.200000px;}
.h1f{height:17.100000px;}
.h1e{height:17.136000px;}
.h1c{height:17.280000px;}
.h1d{height:17.316000px;}
.h18{height:22.500000px;}
.h1a{height:22.536000px;}
.h15{height:38.158594px;}
.h12{height:53.573906px;}
.h10{height:58.621992px;}
.he{height:58.651172px;}
.h1b{height:59.383125px;}
.hd{height:60.226875px;}
.h17{height:63.949219px;}
.h20{height:64.546875px;}
.hf{height:65.010937px;}
.h2{height:65.884219px;}
.h16{height:66.757500px;}
.h9{height:70.664062px;}
.h11{height:72.562500px;}
.h14{height:74.704922px;}
.hb{height:82.676953px;}
.h13{height:84.898125px;}
.h7{height:86.255508px;}
.h19{height:92.196000px;}
.hc{height:93.983203px;}
.h5{height:98.051133px;}
.h6{height:110.583984px;}
.ha{height:118.008984px;}
.h4{height:123.116836px;}
.h3{height:171.773789px;}
.h8{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:59.220000px;}
.w18{width:59.256000px;}
.w15{width:59.580000px;}
.w13{width:59.616000px;}
.w1c{width:83.160000px;}
.wd{width:83.196000px;}
.w1d{width:83.520000px;}
.w1a{width:83.556000px;}
.w9{width:83.880000px;}
.wa{width:83.916000px;}
.w6{width:89.316000px;}
.w7{width:90.720000px;}
.w14{width:93.060000px;}
.w16{width:93.096000px;}
.w12{width:93.420000px;}
.w19{width:93.456000px;}
.w5{width:100.440000px;}
.w8{width:100.476000px;}
.wb{width:109.440000px;}
.w11{width:152.670000px;}
.w10{width:153.000000px;}
.wf{width:153.030000px;}
.wc{width:238.170000px;}
.w1b{width:611.385000px;}
.we{width:611.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x4f{left:9.180000px;}
.x2d{left:10.260000px;}
.x4e{left:12.780000px;}
.x2a{left:14.400000px;}
.x26{left:17.100000px;}
.x37{left:20.160000px;}
.x39{left:22.140000px;}
.x3b{left:25.200000px;}
.x3c{left:27.360000px;}
.x2c{left:29.340000px;}
.x35{left:33.120000px;}
.x32{left:34.200000px;}
.x3d{left:35.460000px;}
.x43{left:41.616000px;}
.x38{left:50.040000px;}
.x36{left:54.540000px;}
.x46{left:61.380000px;}
.x3a{left:75.240000px;}
.x34{left:83.730000px;}
.x42{left:92.160000px;}
.x9{left:106.415986px;}
.x15{left:108.035986px;}
.xc{left:119.915986px;}
.x1{left:127.655987px;}
.x3f{left:129.455986px;}
.x4{left:132.335987px;}
.x11{left:135.035986px;}
.xa{left:142.595986px;}
.x1c{left:145.475986px;}
.x13{left:164.729986px;}
.x23{left:169.230000px;}
.x44{left:175.710000px;}
.x20{left:177.509986px;}
.x1e{left:189.749986px;}
.x1a{left:191.729986px;}
.xf{left:197.669986px;}
.x2{left:203.069987px;}
.xb{left:226.829986px;}
.x12{left:241.409986px;}
.x40{left:250.949986px;}
.x4a{left:269.130000px;}
.x25{left:270.570000px;}
.x50{left:274.725000px;}
.x59{left:275.805000px;}
.x45{left:286.425000px;}
.x58{left:287.685000px;}
.x51{left:296.175000px;}
.x31{left:298.335000px;}
.x47{left:328.755000px;}
.x18{left:339.014986px;}
.x1d{left:341.894986px;}
.x22{left:348.014986px;}
.xd{left:349.814986px;}
.x52{left:355.755000px;}
.x27{left:360.615000px;}
.x6{left:365.834987px;}
.x41{left:367.454986px;}
.x30{left:374.654986px;}
.x19{left:385.994986px;}
.xe{left:387.254986px;}
.x5{left:393.194987px;}
.x17{left:397.154986px;}
.x33{left:408.675000px;}
.x4b{left:422.175000px;}
.x21{left:430.454986px;}
.x14{left:439.634986px;}
.x1f{left:444.134986px;}
.x3{left:446.504987px;}
.x53{left:449.175000px;}
.x28{left:452.235000px;}
.x1b{left:457.454986px;}
.x8{left:459.074986px;}
.x10{left:466.274986px;}
.x16{left:468.794986px;}
.x48{left:481.755000px;}
.x54{left:508.785000px;}
.x2e{left:521.384986px;}
.x29{left:553.425000px;}
.x4c{left:575.205000px;}
.x55{left:602.205000px;}
.x7{left:615.164986px;}
.x2f{left:618.044986px;}
.x49{left:634.785000px;}
.x2b{left:638.025000px;}
.x56{left:661.785000px;}
.x3e{left:669.704986px;}
.x4d{left:728.250000px;}
.x57{left:755.250000px;}
@media print{
.v1{vertical-align:-122.880000pt;}
.v2{vertical-align:-86.400000pt;}
.v3{vertical-align:-73.600000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.120533pt;}
.lse{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.736000pt;}
.ls4{letter-spacing:551.178667pt;}
.ls1{letter-spacing:1227.178667pt;}
.ls2{letter-spacing:1235.178667pt;}
.wsc{word-spacing:-53.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.521067pt;}
.ws6{word-spacing:-8.651520pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.123200pt;}
._0{width:0.894720pt;}
._8{width:2.254507pt;}
._9{width:3.334400pt;}
._6{width:4.913067pt;}
._5{width:5.866667pt;}
._b{width:6.799360pt;}
._a{width:7.862187pt;}
._f{width:9.531307pt;}
._3{width:10.878933pt;}
._2{width:11.946667pt;}
._4{width:13.056000pt;}
._d{width:15.784320pt;}
._e{width:16.894080pt;}
._c{width:18.751360pt;}
._10{width:20.666880pt;}
._15{width:29.346560pt;}
._14{width:30.278400pt;}
._16{width:33.118933pt;}
._11{width:36.121600pt;}
._12{width:76.970880pt;}
._13{width:78.399147pt;}
._7{width:538.986667pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:149.120000pt;}
.y135{bottom:-12.480000pt;}
.y159{bottom:-12.346667pt;}
.y157{bottom:-12.320000pt;}
.y12a{bottom:-12.160000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.880000pt;}
.y106{bottom:3.200000pt;}
.y13b{bottom:3.226667pt;}
.yeb{bottom:7.520000pt;}
.yef{bottom:7.840000pt;}
.yed{bottom:36.186667pt;}
.y30{bottom:51.072000pt;}
.yfe{bottom:101.632000pt;}
.y139{bottom:103.712000pt;}
.ybb{bottom:104.192000pt;}
.y86{bottom:104.352000pt;}
.y2e{bottom:107.072000pt;}
.y11e{bottom:113.792000pt;}
.y1a4{bottom:117.792000pt;}
.yba{bottom:118.752000pt;}
.y138{bottom:118.912000pt;}
.yad{bottom:120.192000pt;}
.y85{bottom:122.752000pt;}
.ydc{bottom:124.992000pt;}
.yfd{bottom:126.912000pt;}
.y2d{bottom:128.512000pt;}
.y19{bottom:130.912000pt;}
.y137{bottom:134.266667pt;}
.y84{bottom:137.306667pt;}
.yac{bottom:141.306667pt;}
.y11d{bottom:147.066667pt;}
.y1a3{bottom:147.226667pt;}
.ydb{bottom:150.266667pt;}
.y16a{bottom:152.666667pt;}
.y5c{bottom:153.786667pt;}
.y180{bottom:157.146667pt;}
.yfc{bottom:160.186667pt;}
.yab{bottom:162.426667pt;}
.y136{bottom:166.266667pt;}
.y18{bottom:168.026667pt;}
.y5b{bottom:170.906667pt;}
.y2c{bottom:171.546667pt;}
.yda{bottom:175.546667pt;}
.y1a2{bottom:176.666667pt;}
.y169{bottom:177.946667pt;}
.y11c{bottom:180.346667pt;}
.y134{bottom:181.626667pt;}
.yaa{bottom:183.546667pt;}
.yfb{bottom:185.466667pt;}
.y5a{bottom:189.306667pt;}
.y17f{bottom:190.426667pt;}
.y2b{bottom:192.986667pt;}
.y133{bottom:197.626667pt;}
.yd9{bottom:200.986667pt;}
.y168{bottom:203.226667pt;}
.ya9{bottom:204.826667pt;}
.y1a1{bottom:206.106667pt;}
.y59{bottom:207.706667pt;}
.y17{bottom:210.426667pt;}
.yfa{bottom:210.746667pt;}
.y11b{bottom:213.626667pt;}
.y2a{bottom:214.426667pt;}
.y17e{bottom:215.706667pt;}
.ya8{bottom:225.946667pt;}
.y58{bottom:226.106667pt;}
.yd8{bottom:226.266667pt;}
.y167{bottom:228.506667pt;}
.y132{bottom:228.986667pt;}
.yb9{bottom:231.386667pt;}
.y1a0{bottom:235.546667pt;}
.y29{bottom:235.866667pt;}
.yf9{bottom:236.026667pt;}
.y17d{bottom:240.986667pt;}
.y131{bottom:244.346667pt;}
.y57{bottom:244.506667pt;}
.yb8{bottom:245.946667pt;}
.y83{bottom:246.106667pt;}
.y11a{bottom:246.906667pt;}
.ya7{bottom:247.066667pt;}
.y16{bottom:249.466667pt;}
.yd7{bottom:251.586667pt;}
.y166{bottom:253.986667pt;}
.y28{bottom:257.346667pt;}
.yf8{bottom:258.626667pt;}
.y130{bottom:259.586667pt;}
.y56{bottom:262.946667pt;}
.y82{bottom:264.226667pt;}
.y19f{bottom:265.026667pt;}
.y17c{bottom:266.466667pt;}
.ya6{bottom:268.226667pt;}
.y12f{bottom:274.946667pt;}
.y27{bottom:278.786667pt;}
.y165{bottom:279.266667pt;}
.y15{bottom:279.426667pt;}
.y119{bottom:280.386667pt;}
.y55{bottom:281.346667pt;}
.y81{bottom:282.946667pt;}
.yd6{bottom:284.866667pt;}
.ya5{bottom:289.506667pt;}
.y12e{bottom:290.306667pt;}
.y17b{bottom:291.746667pt;}
.y19e{bottom:294.626667pt;}
.y54{bottom:299.746667pt;}
.y26{bottom:301.026667pt;}
.y80{bottom:301.346667pt;}
.y164{bottom:304.546667pt;}
.y12d{bottom:305.666667pt;}
.yd5{bottom:310.146667pt;}
.ya4{bottom:310.626667pt;}
.y14{bottom:311.906667pt;}
.y118{bottom:313.666667pt;}
.yf7{bottom:314.626667pt;}
.y17a{bottom:317.026667pt;}
.y53{bottom:318.146667pt;}
.y7f{bottom:319.746667pt;}
.y12c{bottom:321.666667pt;}
.y19d{bottom:324.066667pt;}
.y25{bottom:326.466667pt;}
.y163{bottom:329.826667pt;}
.ya3{bottom:331.746667pt;}
.yd4{bottom:335.426667pt;}
.y52{bottom:336.546667pt;}
.y12b{bottom:337.666667pt;}
.y7e{bottom:338.146667pt;}
.y13{bottom:339.746667pt;}
.yf6{bottom:339.906667pt;}
.y179{bottom:342.306667pt;}
.y117{bottom:346.946667pt;}
.ya2{bottom:352.866667pt;}
.y129{bottom:353.026667pt;}
.y19c{bottom:353.506667pt;}
.yb7{bottom:353.666667pt;}
.y162{bottom:354.626667pt;}
.y51{bottom:354.946667pt;}
.y7d{bottom:356.546667pt;}
.y24{bottom:357.026667pt;}
.yd3{bottom:360.706667pt;}
.yf5{bottom:365.186667pt;}
.yb6{bottom:368.226667pt;}
.y161{bottom:368.546667pt;}
.y50{bottom:373.346667pt;}
.ya1{bottom:374.146667pt;}
.y7c{bottom:374.946667pt;}
.y178{bottom:375.586667pt;}
.y116{bottom:380.226667pt;}
.y12{bottom:380.706667pt;}
.y19b{bottom:382.946667pt;}
.y160{bottom:384.546667pt;}
.yd2{bottom:385.986667pt;}
.y23{bottom:386.146667pt;}
.y4f{bottom:391.746667pt;}
.y7b{bottom:393.346667pt;}
.ya0{bottom:395.266667pt;}
.yf4{bottom:398.466667pt;}
.y15f{bottom:399.906667pt;}
.y177{bottom:400.866667pt;}
.y128{bottom:403.426667pt;}
.y22{bottom:407.586667pt;}
.y4e{bottom:410.146667pt;}
.yd1{bottom:411.266667pt;}
.y7a{bottom:411.746667pt;}
.y19a{bottom:412.386667pt;}
.y115{bottom:413.506667pt;}
.y15e{bottom:415.266667pt;}
.y9f{bottom:416.386667pt;}
.yf3{bottom:423.746667pt;}
.y176{bottom:426.146667pt;}
.y11{bottom:426.466667pt;}
.y4d{bottom:428.546667pt;}
.y21{bottom:429.026667pt;}
.y79{bottom:430.146667pt;}
.y15d{bottom:430.626667pt;}
.y127{bottom:435.586667pt;}
.yd0{bottom:436.706667pt;}
.y9e{bottom:437.506667pt;}
.y114{bottom:438.786667pt;}
.y199{bottom:441.826667pt;}
.y15c{bottom:445.986667pt;}
.y4c{bottom:446.946667pt;}
.y78{bottom:448.546667pt;}
.y20{bottom:450.626667pt;}
.yf2{bottom:457.026667pt;}
.y9d{bottom:458.786667pt;}
.y175{bottom:459.426667pt;}
.y15b{bottom:461.346667pt;}
.ycf{bottom:461.986667pt;}
.y4b{bottom:465.346667pt;}
.y77{bottom:466.946667pt;}
.y126{bottom:469.026667pt;}
.y198{bottom:470.946667pt;}
.yec{bottom:471.106667pt;}
.y113{bottom:471.586667pt;}
.y10{bottom:472.226667pt;}
.y1f{bottom:473.666667pt;}
.y15a{bottom:476.546667pt;}
.yb5{bottom:477.986667pt;}
.y9c{bottom:479.906667pt;}
.y4a{bottom:483.773333pt;}
.y174{bottom:484.733333pt;}
.y76{bottom:485.373333pt;}
.yf1{bottom:491.773333pt;}
.y158{bottom:492.573333pt;}
.y125{bottom:494.333333pt;}
.yce{bottom:494.813333pt;}
.yb4{bottom:496.093333pt;}
.y197{bottom:496.733333pt;}
.y9b{bottom:501.053333pt;}
.y49{bottom:502.173333pt;}
.y75{bottom:503.773333pt;}
.y1e{bottom:504.253333pt;}
.y156{bottom:508.573333pt;}
.y173{bottom:510.173333pt;}
.yf0{bottom:512.413333pt;}
.yf{bottom:518.013333pt;}
.y124{bottom:519.613333pt;}
.y196{bottom:520.093333pt;}
.y48{bottom:520.573333pt;}
.y74{bottom:522.173333pt;}
.y155{bottom:523.933333pt;}
.y112{bottom:530.493333pt;}
.yee{bottom:533.053333pt;}
.yb3{bottom:533.213333pt;}
.y172{bottom:535.453333pt;}
.y47{bottom:538.973333pt;}
.y154{bottom:539.933333pt;}
.y73{bottom:540.573333pt;}
.y9a{bottom:543.293333pt;}
.ycd{bottom:544.893333pt;}
.y195{bottom:550.813333pt;}
.yb2{bottom:551.613333pt;}
.yea{bottom:553.693333pt;}
.y111{bottom:555.773333pt;}
.y153{bottom:555.933333pt;}
.y46{bottom:557.373333pt;}
.y72{bottom:558.973333pt;}
.y171{bottom:560.733333pt;}
.ye{bottom:563.933333pt;}
.y99{bottom:564.573333pt;}
.y1d{bottom:565.693333pt;}
.y194{bottom:566.173333pt;}
.yb1{bottom:570.013333pt;}
.y123{bottom:570.173333pt;}
.y152{bottom:571.293333pt;}
.y45{bottom:575.773333pt;}
.ycc{bottom:576.093333pt;}
.y71{bottom:577.373333pt;}
.y110{bottom:581.053333pt;}
.y98{bottom:585.693333pt;}
.ye9{bottom:586.013333pt;}
.y151{bottom:586.653333pt;}
.yb0{bottom:588.093333pt;}
.y193{bottom:589.373333pt;}
.ycb{bottom:591.453333pt;}
.y170{bottom:593.533333pt;}
.y44{bottom:594.173333pt;}
.y122{bottom:595.453333pt;}
.y70{bottom:595.773333pt;}
.y1c{bottom:596.253333pt;}
.y150{bottom:602.013333pt;}
.y192{bottom:604.733333pt;}
.y97{bottom:606.813333pt;}
.y43{bottom:612.573333pt;}
.yd{bottom:613.693333pt;}
.y6f{bottom:614.173333pt;}
.y10f{bottom:614.333333pt;}
.y14f{bottom:617.373333pt;}
.ye8{bottom:619.293333pt;}
.yca{bottom:622.173333pt;}
.y1b{bottom:626.973333pt;}
.y96{bottom:627.933333pt;}
.y191{bottom:628.093333pt;}
.y121{bottom:628.733333pt;}
.y42{bottom:630.973333pt;}
.y6e{bottom:632.573333pt;}
.yc9{bottom:637.533333pt;}
.y10e{bottom:639.773333pt;}
.y190{bottom:643.453333pt;}
.ye7{bottom:644.573333pt;}
.y14e{bottom:647.933333pt;}
.y95{bottom:649.213333pt;}
.y41{bottom:649.373333pt;}
.y6d{bottom:650.973333pt;}
.y1a{bottom:651.613333pt;}
.y16f{bottom:652.413333pt;}
.yc8{bottom:652.893333pt;}
.y120{bottom:653.213333pt;}
.y18f{bottom:658.813333pt;}
.yc{bottom:662.813333pt;}
.y14d{bottom:663.933333pt;}
.y40{bottom:667.773333pt;}
.yc7{bottom:668.093333pt;}
.y6c{bottom:669.373333pt;}
.ye6{bottom:669.853333pt;}
.y94{bottom:670.333333pt;}
.y10d{bottom:673.053333pt;}
.y11f{bottom:673.373333pt;}
.y16e{bottom:677.693333pt;}
.y14c{bottom:679.933333pt;}
.y18e{bottom:682.013333pt;}
.yc6{bottom:683.453333pt;}
.y3f{bottom:686.173333pt;}
.y10c{bottom:686.973333pt;}
.y6b{bottom:687.773333pt;}
.y93{bottom:691.453333pt;}
.ye5{bottom:695.133333pt;}
.y14b{bottom:695.293333pt;}
.y18d{bottom:697.373333pt;}
.yc5{bottom:698.813333pt;}
.y10b{bottom:702.973333pt;}
.y3e{bottom:704.573333pt;}
.y6a{bottom:706.173333pt;}
.y14a{bottom:711.293333pt;}
.y92{bottom:712.573333pt;}
.y18c{bottom:712.733333pt;}
.yc4{bottom:714.173333pt;}
.yb{bottom:714.333333pt;}
.y10a{bottom:719.013333pt;}
.y3d{bottom:723.013333pt;}
.y69{bottom:724.613333pt;}
.y149{bottom:727.333333pt;}
.ye4{bottom:727.973333pt;}
.y16d{bottom:728.293333pt;}
.y91{bottom:733.893333pt;}
.y109{bottom:735.013333pt;}
.y18b{bottom:736.133333pt;}
.yc3{bottom:737.573333pt;}
.y3c{bottom:741.413333pt;}
.y148{bottom:742.693333pt;}
.y68{bottom:743.013333pt;}
.ya{bottom:744.413333pt;}
.y108{bottom:751.013333pt;}
.y18a{bottom:751.493333pt;}
.y90{bottom:754.693333pt;}
.yaf{bottom:755.013333pt;}
.y147{bottom:758.053333pt;}
.y3b{bottom:759.813333pt;}
.y67{bottom:761.413333pt;}
.y16c{bottom:761.573333pt;}
.y189{bottom:766.853333pt;}
.y107{bottom:767.013333pt;}
.y146{bottom:773.253333pt;}
.y9{bottom:774.373333pt;}
.y8f{bottom:776.133333pt;}
.y3a{bottom:778.213333pt;}
.y66{bottom:779.813333pt;}
.y188{bottom:782.053333pt;}
.yc2{bottom:783.013333pt;}
.ye3{bottom:786.853333pt;}
.y145{bottom:788.613333pt;}
.y39{bottom:796.613333pt;}
.y8e{bottom:797.253333pt;}
.y187{bottom:797.413333pt;}
.y65{bottom:798.213333pt;}
.yc1{bottom:798.373333pt;}
.y104{bottom:799.013333pt;}
.y144{bottom:803.973333pt;}
.y8{bottom:804.453333pt;}
.ye2{bottom:812.133333pt;}
.yc0{bottom:813.733333pt;}
.y38{bottom:815.013333pt;}
.y64{bottom:816.613333pt;}
.y8d{bottom:818.533333pt;}
.y143{bottom:819.333333pt;}
.y186{bottom:820.773333pt;}
.y103{bottom:826.213333pt;}
.y37{bottom:833.413333pt;}
.y7{bottom:834.373333pt;}
.y63{bottom:835.013333pt;}
.y142{bottom:835.333333pt;}
.y185{bottom:836.133333pt;}
.ye1{bottom:837.573333pt;}
.y8c{bottom:839.653333pt;}
.ybf{bottom:841.093333pt;}
.y16b{bottom:845.573333pt;}
.y141{bottom:851.333333pt;}
.y36{bottom:851.813333pt;}
.y62{bottom:853.413333pt;}
.y102{bottom:858.373333pt;}
.y184{bottom:859.493333pt;}
.y8b{bottom:860.773333pt;}
.y6{bottom:864.293333pt;}
.y140{bottom:866.693333pt;}
.y35{bottom:870.213333pt;}
.ye0{bottom:870.853333pt;}
.y61{bottom:871.813333pt;}
.y183{bottom:874.853333pt;}
.ybe{bottom:875.813333pt;}
.y8a{bottom:881.893333pt;}
.y13f{bottom:882.693333pt;}
.y101{bottom:883.653333pt;}
.y34{bottom:888.613333pt;}
.y60{bottom:890.213333pt;}
.y5{bottom:894.373333pt;}
.ydf{bottom:896.133333pt;}
.ybd{bottom:897.253333pt;}
.y182{bottom:898.053333pt;}
.y13e{bottom:898.693333pt;}
.y89{bottom:902.853333pt;}
.yae{bottom:903.173333pt;}
.y33{bottom:907.013333pt;}
.y5f{bottom:908.613333pt;}
.y100{bottom:908.933333pt;}
.y181{bottom:913.413333pt;}
.y13d{bottom:914.053333pt;}
.ybc{bottom:918.693333pt;}
.yde{bottom:921.413333pt;}
.y88{bottom:923.973333pt;}
.y4{bottom:924.293333pt;}
.y32{bottom:925.413333pt;}
.y5e{bottom:927.013333pt;}
.y13c{bottom:929.253333pt;}
.yff{bottom:938.693333pt;}
.y31{bottom:944.453333pt;}
.y13a{bottom:944.613333pt;}
.y87{bottom:945.093333pt;}
.y5d{bottom:945.413333pt;}
.ydd{bottom:946.693333pt;}
.y3{bottom:954.373333pt;}
.y2{bottom:984.293333pt;}
.y2f{bottom:995.520000pt;}
.y1{bottom:1014.400000pt;}
.h1f{height:15.200000pt;}
.h1e{height:15.232000pt;}
.h1c{height:15.360000pt;}
.h1d{height:15.392000pt;}
.h18{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h15{height:33.918750pt;}
.h12{height:47.621250pt;}
.h10{height:52.108438pt;}
.he{height:52.134375pt;}
.h1b{height:52.785000pt;}
.hd{height:53.535000pt;}
.h17{height:56.843750pt;}
.h20{height:57.375000pt;}
.hf{height:57.787500pt;}
.h2{height:58.563750pt;}
.h16{height:59.340000pt;}
.h9{height:62.812500pt;}
.h11{height:64.500000pt;}
.h14{height:66.404375pt;}
.hb{height:73.490625pt;}
.h13{height:75.465000pt;}
.h7{height:76.671562pt;}
.h19{height:81.952000pt;}
.hc{height:83.540625pt;}
.h5{height:87.156562pt;}
.h6{height:98.296875pt;}
.ha{height:104.896875pt;}
.h4{height:109.437187pt;}
.h3{height:152.687812pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:52.640000pt;}
.w18{width:52.672000pt;}
.w15{width:52.960000pt;}
.w13{width:52.992000pt;}
.w1c{width:73.920000pt;}
.wd{width:73.952000pt;}
.w1d{width:74.240000pt;}
.w1a{width:74.272000pt;}
.w9{width:74.560000pt;}
.wa{width:74.592000pt;}
.w6{width:79.392000pt;}
.w7{width:80.640000pt;}
.w14{width:82.720000pt;}
.w16{width:82.752000pt;}
.w12{width:83.040000pt;}
.w19{width:83.072000pt;}
.w5{width:89.280000pt;}
.w8{width:89.312000pt;}
.wb{width:97.280000pt;}
.w11{width:135.706667pt;}
.w10{width:136.000000pt;}
.wf{width:136.026667pt;}
.wc{width:211.706667pt;}
.w1b{width:543.453333pt;}
.we{width:543.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x4f{left:8.160000pt;}
.x2d{left:9.120000pt;}
.x4e{left:11.360000pt;}
.x2a{left:12.800000pt;}
.x26{left:15.200000pt;}
.x37{left:17.920000pt;}
.x39{left:19.680000pt;}
.x3b{left:22.400000pt;}
.x3c{left:24.320000pt;}
.x2c{left:26.080000pt;}
.x35{left:29.440000pt;}
.x32{left:30.400000pt;}
.x3d{left:31.520000pt;}
.x43{left:36.992000pt;}
.x38{left:44.480000pt;}
.x36{left:48.480000pt;}
.x46{left:54.560000pt;}
.x3a{left:66.880000pt;}
.x34{left:74.426667pt;}
.x42{left:81.920000pt;}
.x9{left:94.591988pt;}
.x15{left:96.031988pt;}
.xc{left:106.591988pt;}
.x1{left:113.471988pt;}
.x3f{left:115.071988pt;}
.x4{left:117.631988pt;}
.x11{left:120.031988pt;}
.xa{left:126.751988pt;}
.x1c{left:129.311988pt;}
.x13{left:146.426655pt;}
.x23{left:150.426667pt;}
.x44{left:156.186667pt;}
.x20{left:157.786655pt;}
.x1e{left:168.666655pt;}
.x1a{left:170.426655pt;}
.xf{left:175.706655pt;}
.x2{left:180.506655pt;}
.xb{left:201.626655pt;}
.x12{left:214.586655pt;}
.x40{left:223.066655pt;}
.x4a{left:239.226667pt;}
.x25{left:240.506667pt;}
.x50{left:244.200000pt;}
.x59{left:245.160000pt;}
.x45{left:254.600000pt;}
.x58{left:255.720000pt;}
.x51{left:263.266667pt;}
.x31{left:265.186667pt;}
.x47{left:292.226667pt;}
.x18{left:301.346655pt;}
.x1d{left:303.906655pt;}
.x22{left:309.346655pt;}
.xd{left:310.946655pt;}
.x52{left:316.226667pt;}
.x27{left:320.546667pt;}
.x6{left:325.186655pt;}
.x41{left:326.626655pt;}
.x30{left:333.026655pt;}
.x19{left:343.106655pt;}
.xe{left:344.226655pt;}
.x5{left:349.506655pt;}
.x17{left:353.026655pt;}
.x33{left:363.266667pt;}
.x4b{left:375.266667pt;}
.x21{left:382.626655pt;}
.x14{left:390.786655pt;}
.x1f{left:394.786655pt;}
.x3{left:396.893322pt;}
.x53{left:399.266667pt;}
.x28{left:401.986667pt;}
.x1b{left:406.626655pt;}
.x8{left:408.066655pt;}
.x10{left:414.466655pt;}
.x16{left:416.706655pt;}
.x48{left:428.226667pt;}
.x54{left:452.253333pt;}
.x2e{left:463.453321pt;}
.x29{left:491.933333pt;}
.x4c{left:511.293333pt;}
.x55{left:535.293333pt;}
.x7{left:546.813321pt;}
.x2f{left:549.373321pt;}
.x49{left:564.253333pt;}
.x2b{left:567.133333pt;}
.x56{left:588.253333pt;}
.x3e{left:595.293321pt;}
.x4d{left:647.333333pt;}
.x57{left:671.333333pt;}
}




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