
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_f2ecc5993eaeb32b171f0a6c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8336a6b7326dff97b1270ea6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bacd21701fa1ce1202e76ec6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6e369e1808e3dbdb6cb1c700.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8944ac0306e9dea2c95f10d5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_819bd9ff3f37467d22810a9e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_83d41c62a8ddb82d8d0f28b1.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_a016ea1eaba192a1222de72d.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.158400px;}
.ls6{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.067200px;}
.ls10{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.048960px;}
.ls16{letter-spacing:-0.018360px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.016560px;}
.ls5{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.045360px;}
.ls8{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls7{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.097560px;}
.ls15{letter-spacing:0.098400px;}
.ls18{letter-spacing:0.127200px;}
.lsd{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199200px;}
.lsf{letter-spacing:0.275400px;}
.ls11{letter-spacing:0.310200px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.lsa{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.353600px;}
.ws10{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.208040px;}
.ws11{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.159200px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.266400px;}
.ws2{word-spacing:-8.553600px;}
.wse{word-spacing:-8.395200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._8{margin-left:-4.211402px;}
._7{margin-left:-3.126000px;}
._f{margin-left:-2.102175px;}
._0{margin-left:-1.080000px;}
._2{width:1.005134px;}
._a{width:2.172212px;}
._9{width:3.607200px;}
._4{width:4.761013px;}
._c{width:6.102960px;}
._3{width:7.578000px;}
._d{width:8.886000px;}
._10{width:10.123681px;}
._e{width:11.422800px;}
._b{width:14.789400px;}
._11{width:16.052521px;}
._16{width:17.146675px;}
._12{width:18.396720px;}
._13{width:19.652895px;}
._1{width:20.718612px;}
._1a{width:21.883883px;}
._15{width:23.326560px;}
._6{width:25.131000px;}
._5{width:26.208000px;}
._14{width:27.367560px;}
._27{width:28.496880px;}
._18{width:33.426720px;}
._1c{width:37.514880px;}
._26{width:43.045920px;}
._25{width:45.631080px;}
._22{width:51.763320px;}
._24{width:63.065880px;}
._19{width:66.432600px;}
._21{width:68.036880px;}
._1f{width:80.560800px;}
._1d{width:82.244160px;}
._1e{width:104.668920px;}
._23{width:105.811200px;}
._1b{width:109.598760px;}
._20{width:161.362080px;}
._17{width:221.061240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y148{bottom:3.330000px;}
.y145{bottom:3.420000px;}
.y15f{bottom:6.300000px;}
.y165{bottom:6.390000px;}
.yc9{bottom:7.830000px;}
.yc4{bottom:7.920000px;}
.y106{bottom:17.550000px;}
.y112{bottom:17.640000px;}
.y144{bottom:20.970000px;}
.y15d{bottom:23.940000px;}
.y15e{bottom:24.030000px;}
.y103{bottom:25.380000px;}
.yfd{bottom:25.470000px;}
.y105{bottom:35.190000px;}
.y113{bottom:35.280000px;}
.y147{bottom:38.520000px;}
.y14d{bottom:38.610000px;}
.y14a{bottom:38.640000px;}
.y15c{bottom:41.580000px;}
.y12d{bottom:43.020000px;}
.ydd{bottom:50.940000px;}
.yd6{bottom:62.490000px;}
.yc6{bottom:62.550000px;}
.y109{bottom:72.270000px;}
.y111{bottom:72.360000px;}
.ydc{bottom:73.080000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y10e{bottom:80.100000px;}
.y108{bottom:89.820000px;}
.ycb{bottom:89.910000px;}
.ydb{bottom:95.130000px;}
.y1{bottom:101.640000px;}
.yff{bottom:107.490000px;}
.yd1{bottom:110.010000px;}
.y10d{bottom:111.900000px;}
.y5a{bottom:115.320000px;}
.yda{bottom:117.180000px;}
.y16d{bottom:117.930000px;}
.ya6{bottom:119.100000px;}
.y19b{bottom:126.120000px;}
.y84{bottom:128.550000px;}
.y1c7{bottom:131.520000px;}
.y16c{bottom:131.970000px;}
.y59{bottom:132.960000px;}
.ya5{bottom:136.740000px;}
.yce{bottom:137.370000px;}
.y29{bottom:141.150000px;}
.y19a{bottom:143.670000px;}
.y16b{bottom:146.010000px;}
.y83{bottom:146.100000px;}
.y142{bottom:147.540000px;}
.y1c6{bottom:149.070000px;}
.ya4{bottom:154.290000px;}
.y110{bottom:156.810000px;}
.y28{bottom:158.790000px;}
.y122{bottom:159.060000px;}
.y16a{bottom:160.140000px;}
.y199{bottom:161.310000px;}
.y82{bottom:163.740000px;}
.yd0{bottom:164.730000px;}
.y141{bottom:165.180000px;}
.y58{bottom:168.510000px;}
.ya3{bottom:171.930000px;}
.y169{bottom:172.290000px;}
.y1c5{bottom:175.710000px;}
.y27{bottom:176.340000px;}
.y198{bottom:178.860000px;}
.y81{bottom:181.290000px;}
.y140{bottom:182.730000px;}
.y10f{bottom:184.170000px;}
.y57{bottom:186.060000px;}
.yf0{bottom:189.480000px;}
.ycf{bottom:192.000000px;}
.y1c4{bottom:193.260000px;}
.y26{bottom:193.890000px;}
.y121{bottom:194.610000px;}
.y1e7{bottom:195.510000px;}
.y197{bottom:196.500000px;}
.y168{bottom:196.590000px;}
.ya2{bottom:198.480000px;}
.y80{bottom:198.930000px;}
.y13f{bottom:200.280000px;}
.y56{bottom:203.700000px;}
.y25{bottom:211.530000px;}
.y120{bottom:212.160000px;}
.y1e6{bottom:213.060000px;}
.y196{bottom:214.050000px;}
.y7f{bottom:216.480000px;}
.y13e{bottom:217.920000px;}
.yca{bottom:219.360000px;}
.y1c3{bottom:220.170000px;}
.y167{bottom:220.980000px;}
.yef{bottom:225.030000px;}
.y24{bottom:229.080000px;}
.y11f{bottom:229.800000px;}
.y55{bottom:230.610000px;}
.y195{bottom:231.600000px;}
.y7e{bottom:234.030000px;}
.y13d{bottom:235.470000px;}
.y10c{bottom:238.800000px;}
.yee{bottom:242.580000px;}
.y166{bottom:245.280000px;}
.y23{bottom:246.720000px;}
.y11e{bottom:247.350000px;}
.y1e5{bottom:248.250000px;}
.y194{bottom:249.240000px;}
.y7d{bottom:251.670000px;}
.y13c{bottom:253.110000px;}
.y22{bottom:264.270000px;}
.y10b{bottom:266.160000px;}
.y193{bottom:266.790000px;}
.y1c2{bottom:268.410000px;}
.y7c{bottom:269.220000px;}
.y164{bottom:269.580000px;}
.ycd{bottom:274.080000px;}
.y1e4{bottom:274.800000px;}
.yed{bottom:278.220000px;}
.y54{bottom:278.850000px;}
.y13b{bottom:279.660000px;}
.y21{bottom:281.820000px;}
.y11d{bottom:282.990000px;}
.y192{bottom:284.430000px;}
.y7b{bottom:286.860000px;}
.y1e3{bottom:292.440000px;}
.y10a{bottom:293.520000px;}
.y163{bottom:293.970000px;}
.y1c1{bottom:295.320000px;}
.y53{bottom:296.400000px;}
.ycc{bottom:301.350000px;}
.y191{bottom:301.980000px;}
.ya1{bottom:304.410000px;}
.y20{bottom:308.730000px;}
.yec{bottom:310.440000px;}
.y13a{bottom:312.240000px;}
.y7a{bottom:313.410000px;}
.y11c{bottom:315.210000px;}
.y162{bottom:318.270000px;}
.y1e2{bottom:318.990000px;}
.y190{bottom:319.530000px;}
.y104{bottom:320.880000px;}
.ya0{bottom:321.960000px;}
.y52{bottom:323.040000px;}
.yc5{bottom:328.710000px;}
.y1c0{bottom:332.400000px;}
.y1e1{bottom:336.540000px;}
.y9f{bottom:339.600000px;}
.y161{bottom:342.660000px;}
.y18f{bottom:346.440000px;}
.y139{bottom:347.790000px;}
.y107{bottom:348.150000px;}
.y79{bottom:348.960000px;}
.y1e0{bottom:354.180000px;}
.yc8{bottom:356.070000px;}
.y1f{bottom:357.330000px;}
.y51{bottom:358.590000px;}
.y1bf{bottom:359.310000px;}
.y138{bottom:365.430000px;}
.y9e{bottom:366.150000px;}
.y78{bottom:366.600000px;}
.y160{bottom:366.960000px;}
.yfe{bottom:375.510000px;}
.y50{bottom:376.140000px;}
.y1df{bottom:380.730000px;}
.y137{bottom:382.980000px;}
.yc7{bottom:383.340000px;}
.y77{bottom:384.150000px;}
.y15b{bottom:391.260000px;}
.y1e{bottom:394.410000px;}
.y4f{bottom:394.590000px;}
.y18e{bottom:394.770000px;}
.y1be{bottom:396.300000px;}
.y1de{bottom:398.370000px;}
.y136{bottom:400.620000px;}
.y76{bottom:401.790000px;}
.y102{bottom:402.870000px;}
.yc3{bottom:410.700000px;}
.y1d{bottom:411.960000px;}
.y4e{bottom:412.140000px;}
.y18d{bottom:412.320000px;}
.y1bd{bottom:413.850000px;}
.y135{bottom:418.170000px;}
.y75{bottom:419.340000px;}
.y1dd{bottom:424.920000px;}
.y1c{bottom:429.510000px;}
.y18c{bottom:429.870000px;}
.y4d{bottom:430.590000px;}
.y134{bottom:435.720000px;}
.y74{bottom:436.890000px;}
.y1bc{bottom:440.760000px;}
.y1dc{bottom:442.470000px;}
.y1b{bottom:447.150000px;}
.y101{bottom:447.780000px;}
.y4c{bottom:448.140000px;}
.y133{bottom:453.360000px;}
.y73{bottom:454.530000px;}
.yc2{bottom:459.390000px;}
.y1a{bottom:464.700000px;}
.y18b{bottom:465.510000px;}
.y1db{bottom:469.110000px;}
.y15a{bottom:472.200000px;}
.y100{bottom:475.170000px;}
.y1bb{bottom:477.870000px;}
.y9d{bottom:481.110000px;}
.y19{bottom:482.370000px;}
.y18a{bottom:483.090000px;}
.y4b{bottom:484.620000px;}
.yc1{bottom:486.330000px;}
.y1da{bottom:486.690000px;}
.y159{bottom:489.750000px;}
.y72{bottom:490.110000px;}
.y18{bottom:499.920000px;}
.y4a{bottom:502.260000px;}
.yfc{bottom:502.440000px;}
.y1d9{bottom:504.330000px;}
.y1ba{bottom:504.780000px;}
.y71{bottom:507.750000px;}
.y9c{bottom:516.750000px;}
.y17{bottom:517.470000px;}
.y189{bottom:518.730000px;}
.y70{bottom:525.300000px;}
.y158{bottom:525.390000px;}
.y49{bottom:528.810000px;}
.y1d8{bottom:530.880000px;}
.y132{bottom:531.240000px;}
.y9b{bottom:534.300000px;}
.yc0{bottom:534.660000px;}
.y16{bottom:535.110000px;}
.y188{bottom:536.280000px;}
.y1b9{bottom:542.040000px;}
.y6f{bottom:542.850000px;}
.y157{bottom:542.940000px;}
.y9a{bottom:551.850000px;}
.ybf{bottom:552.210000px;}
.y15{bottom:552.660000px;}
.y187{bottom:553.830000px;}
.y1d7{bottom:557.430000px;}
.y6e{bottom:560.490000px;}
.y48{bottom:564.360000px;}
.yfb{bottom:568.770000px;}
.y99{bottom:569.490000px;}
.y156{bottom:569.580000px;}
.ybe{bottom:569.760000px;}
.y14{bottom:570.210000px;}
.y186{bottom:571.470000px;}
.y1d6{bottom:575.070000px;}
.y6d{bottom:578.040000px;}
.y47{bottom:581.910000px;}
.y98{bottom:587.040000px;}
.y13{bottom:587.850000px;}
.y185{bottom:589.020000px;}
.y1b8{bottom:590.370000px;}
.y131{bottom:593.790000px;}
.y6c{bottom:595.590000px;}
.ybd{bottom:596.400000px;}
.y46{bottom:600.360000px;}
.y1d5{bottom:601.620000px;}
.yfa{bottom:604.320000px;}
.y97{bottom:604.590000px;}
.y155{bottom:605.130000px;}
.y12{bottom:605.400000px;}
.y184{bottom:606.660000px;}
.y1b7{bottom:607.920000px;}
.y45{bottom:617.910000px;}
.y1d4{bottom:619.260000px;}
.yf9{bottom:621.960000px;}
.y6b{bottom:622.230000px;}
.y154{bottom:622.680000px;}
.y11{bottom:623.040000px;}
.y183{bottom:624.210000px;}
.y1b6{bottom:625.560000px;}
.y96{bottom:631.230000px;}
.ybc{bottom:631.950000px;}
.y44{bottom:636.360000px;}
.yf8{bottom:639.510000px;}
.y153{bottom:640.320000px;}
.y10{bottom:640.590000px;}
.y182{bottom:641.760000px;}
.y1b5{bottom:643.110000px;}
.y1d3{bottom:645.810000px;}
.ybb{bottom:649.590000px;}
.y43{bottom:653.910000px;}
.y130{bottom:656.250000px;}
.yf7{bottom:657.060000px;}
.y6a{bottom:657.780000px;}
.y152{bottom:657.870000px;}
.yf{bottom:658.140000px;}
.y181{bottom:659.400000px;}
.y1b4{bottom:660.660000px;}
.yeb{bottom:662.550000px;}
.y1d2{bottom:663.360000px;}
.y95{bottom:666.780000px;}
.yba{bottom:667.140000px;}
.yf6{bottom:674.700000px;}
.y69{bottom:675.420000px;}
.y151{bottom:675.510000px;}
.y180{bottom:676.950000px;}
.y1b3{bottom:678.300000px;}
.yea{bottom:680.190000px;}
.y94{bottom:684.420000px;}
.yb9{bottom:684.690000px;}
.ye{bottom:685.050000px;}
.y1d1{bottom:690.000000px;}
.y42{bottom:690.360000px;}
.y68{bottom:692.970000px;}
.y17f{bottom:694.590000px;}
.y1b2{bottom:695.850000px;}
.ye9{bottom:697.740000px;}
.yf5{bottom:701.250000px;}
.y93{bottom:701.970000px;}
.yb8{bottom:702.330000px;}
.y1d0{bottom:707.550000px;}
.y41{bottom:708.000000px;}
.y150{bottom:708.450000px;}
.y67{bottom:710.520000px;}
.ye8{bottom:715.290000px;}
.y12f{bottom:718.800000px;}
.y92{bottom:719.520000px;}
.yb7{bottom:719.880000px;}
.y1cf{bottom:725.190000px;}
.y66{bottom:728.160000px;}
.y17e{bottom:730.140000px;}
.y1b1{bottom:731.490000px;}
.ye7{bottom:732.930000px;}
.yd{bottom:733.380000px;}
.yf4{bottom:733.830000px;}
.y40{bottom:734.550000px;}
.y11b{bottom:734.820000px;}
.y65{bottom:745.710000px;}
.y91{bottom:746.160000px;}
.y17d{bottom:747.690000px;}
.y1b0{bottom:749.040000px;}
.ye6{bottom:750.480000px;}
.y1ce{bottom:751.740000px;}
.y11a{bottom:752.370000px;}
.yb6{bottom:755.520000px;}
.y14f{bottom:761.910000px;}
.y64{bottom:763.350000px;}
.y17c{bottom:765.330000px;}
.y1af{bottom:766.590000px;}
.ye5{bottom:768.030000px;}
.yc{bottom:769.200000px;}
.yf3{bottom:769.470000px;}
.y119{bottom:770.010000px;}
.y3f{bottom:770.190000px;}
.yb5{bottom:773.070000px;}
.y1cd{bottom:778.290000px;}
.y12e{bottom:781.260000px;}
.y90{bottom:781.710000px;}
.y1ae{bottom:784.230000px;}
.ye4{bottom:785.670000px;}
.y118{bottom:787.560000px;}
.y3e{bottom:787.740000px;}
.y63{bottom:789.900000px;}
.yb4{bottom:790.620000px;}
.y1cc{bottom:795.930000px;}
.y8f{bottom:799.350000px;}
.y17b{bottom:800.880000px;}
.y1ad{bottom:801.780000px;}
.ye3{bottom:803.220000px;}
.yf2{bottom:805.020000px;}
.yb{bottom:805.200000px;}
.y3d{bottom:805.290000px;}
.yb3{bottom:808.260000px;}
.y14e{bottom:815.460000px;}
.y8e{bottom:816.900000px;}
.y17a{bottom:818.520000px;}
.y1ac{bottom:819.420000px;}
.ye2{bottom:820.860000px;}
.y62{bottom:822.480000px;}
.y117{bottom:822.750000px;}
.y3c{bottom:822.930000px;}
.yb2{bottom:825.810000px;}
.y8d{bottom:834.450000px;}
.y179{bottom:836.070000px;}
.yf1{bottom:837.240000px;}
.y1cb{bottom:840.030000px;}
.y116{bottom:840.300000px;}
.y3b{bottom:840.480000px;}
.y12c{bottom:843.810000px;}
.ya{bottom:844.980000px;}
.y1ab{bottom:846.330000px;}
.y8c{bottom:852.090000px;}
.yb1{bottom:852.450000px;}
.y178{bottom:853.620000px;}
.yd9{bottom:853.800000px;}
.y115{bottom:857.940000px;}
.y61{bottom:858.030000px;}
.y9{bottom:862.980000px;}
.y1ca{bottom:866.670000px;}
.y14c{bottom:868.920000px;}
.y8b{bottom:869.640000px;}
.y177{bottom:871.260000px;}
.y114{bottom:875.490000px;}
.y60{bottom:875.670000px;}
.y3a{bottom:876.030000px;}
.y8{bottom:880.980000px;}
.ye1{bottom:881.160000px;}
.y1aa{bottom:883.320000px;}
.y1c9{bottom:884.220000px;}
.y8a{bottom:887.280000px;}
.yb0{bottom:888.000000px;}
.y176{bottom:888.810000px;}
.y5f{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.y1a9{bottom:900.870000px;}
.y89{bottom:904.830000px;}
.y12b{bottom:906.270000px;}
.y175{bottom:906.450000px;}
.ye0{bottom:908.430000px;}
.y5e{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y7{bottom:913.110000px;}
.yaf{bottom:914.550000px;}
.y1a8{bottom:918.510000px;}
.y88{bottom:922.380000px;}
.y14b{bottom:922.470000px;}
.y174{bottom:924.000000px;}
.y5d{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y6{bottom:931.560000px;}
.ydf{bottom:935.790000px;}
.y1a7{bottom:936.060000px;}
.y173{bottom:941.550000px;}
.y36{bottom:946.410000px;}
.y87{bottom:948.930000px;}
.y5{bottom:950.010000px;}
.yae{bottom:950.190000px;}
.y1a6{bottom:953.700000px;}
.y1c8{bottom:954.960000px;}
.y172{bottom:959.190000px;}
.yde{bottom:963.150000px;}
.y35{bottom:963.960000px;}
.yad{bottom:967.740000px;}
.y1a5{bottom:971.250000px;}
.y12a{bottom:972.600000px;}
.y149{bottom:975.930000px;}
.y171{bottom:976.740000px;}
.y34{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y1a4{bottom:988.800000px;}
.yd5{bottom:990.510000px;}
.yac{bottom:994.290000px;}
.y33{bottom:999.150000px;}
.y1a3{bottom:1006.440000px;}
.y129{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y86{bottom:1017.180000px;}
.yd8{bottom:1017.810000px;}
.y170{bottom:1021.230000px;}
.y1a2{bottom:1024.020000px;}
.y128{bottom:1025.820000px;}
.y146{bottom:1029.510000px;}
.yab{bottom:1029.960000px;}
.y5c{bottom:1034.370000px;}
.y85{bottom:1034.820000px;}
.y1a1{bottom:1041.570000px;}
.y127{bottom:1043.370000px;}
.yd7{bottom:1045.170000px;}
.yaa{bottom:1047.510000px;}
.y5b{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y1a0{bottom:1059.210000px;}
.y126{bottom:1060.920000px;}
.ya9{bottom:1065.150000px;}
.y16f{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.yd4{bottom:1072.530000px;}
.y19f{bottom:1076.760000px;}
.y125{bottom:1078.560000px;}
.y143{bottom:1082.970000px;}
.y16e{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.ya8{bottom:1091.700000px;}
.y19e{bottom:1094.400000px;}
.y124{bottom:1096.110000px;}
.yd3{bottom:1099.890000px;}
.y2e{bottom:1105.110000px;}
.y19d{bottom:1111.950000px;}
.y123{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.yd2{bottom:1127.160000px;}
.ya7{bottom:1127.610000px;}
.y19c{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h24{height:23.580000px;}
.h25{height:23.670000px;}
.h11{height:26.550000px;}
.h14{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h1f{height:35.190000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h26{height:41.661211px;}
.h18{height:44.100000px;}
.h16{height:44.190000px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h20{height:52.740000px;}
.h22{height:52.830000px;}
.h21{height:52.860000px;}
.h19{height:53.910000px;}
.h1c{height:53.940000px;}
.h1d{height:54.000000px;}
.h5{height:54.817383px;}
.h9{height:55.779258px;}
.h23{height:58.770000px;}
.hd{height:59.973223px;}
.h1e{height:61.740000px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h8{height:74.004654px;}
.h13{height:81.210000px;}
.h10{height:81.270000px;}
.h1b{height:98.820000px;}
.h1a{height:108.540000px;}
.h12{height:108.630000px;}
.h17{height:126.210000px;}
.h15{height:135.900000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:78.960000px;}
.we{width:83.430000px;}
.wd{width:83.460000px;}
.w1a{width:83.610000px;}
.w1b{width:84.450000px;}
.w14{width:87.570000px;}
.w12{width:87.660000px;}
.wf{width:89.190000px;}
.wc{width:93.780000px;}
.w16{width:94.410000px;}
.w1d{width:104.130000px;}
.w15{width:105.480000px;}
.w17{width:106.140000px;}
.w10{width:106.560000px;}
.wa{width:108.180000px;}
.w8{width:118.740000px;}
.w19{width:119.880000px;}
.w6{width:123.480000px;}
.w18{width:125.640000px;}
.w1c{width:127.440000px;}
.w3{width:130.440000px;}
.w9{width:143.730000px;}
.w5{width:181.830000px;}
.w4{width:251.550000px;}
.w11{width:269.220000px;}
.wb{width:295.500000px;}
.w7{width:382.710000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x26{left:70.919987px;}
.x24{left:79.469987px;}
.x19{left:84.060000px;}
.x25{left:87.569987px;}
.x4{left:95.039987px;}
.x6{left:102.420000px;}
.x28{left:111.239987px;}
.x5{left:122.039987px;}
.x1f{left:175.620000px;}
.x2{left:202.799987px;}
.x13{left:223.229987px;}
.x8{left:233.220000px;}
.x27{left:268.049987px;}
.x20{left:301.980000px;}
.xc{left:319.709987px;}
.xe{left:339.329987px;}
.x1a{left:353.640000px;}
.x14{left:364.980000px;}
.x21{left:422.580000px;}
.x1b{left:441.660000px;}
.xf{left:452.190000px;}
.x15{left:459.480000px;}
.x9{left:485.130000px;}
.x22{left:507.000000px;}
.x1c{left:520.980000px;}
.x16{left:543.750000px;}
.x10{left:571.740000px;}
.x23{left:592.170000px;}
.x1d{left:608.910000px;}
.x17{left:627.990000px;}
.xa{left:667.320000px;}
.xd{left:707.639987px;}
.x1e{left:714.750000px;}
.x11{left:716.280000px;}
.x18{left:717.900000px;}
.xb{left:720.059987px;}
.x12{left:733.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.140800pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.059733pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.043520pt;}
.ls16{letter-spacing:-0.016320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.014720pt;}
.ls5{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls8{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls7{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.086720pt;}
.ls15{letter-spacing:0.087467pt;}
.ls18{letter-spacing:0.113067pt;}
.lsd{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177067pt;}
.lsf{letter-spacing:0.244800pt;}
.ls11{letter-spacing:0.275733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.lsa{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.869867pt;}
.ws10{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.740480pt;}
.ws11{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.697067pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.236800pt;}
.ws2{word-spacing:-7.603200pt;}
.wse{word-spacing:-7.462400pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._8{margin-left:-3.743468pt;}
._7{margin-left:-2.778666pt;}
._f{margin-left:-1.868600pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.893452pt;}
._a{width:1.930855pt;}
._9{width:3.206400pt;}
._4{width:4.232011pt;}
._c{width:5.424853pt;}
._3{width:6.736000pt;}
._d{width:7.898666pt;}
._10{width:8.998828pt;}
._e{width:10.153600pt;}
._b{width:13.146133pt;}
._11{width:14.268908pt;}
._16{width:15.241489pt;}
._12{width:16.352640pt;}
._13{width:17.469240pt;}
._1{width:18.416544pt;}
._1a{width:19.452340pt;}
._15{width:20.734720pt;}
._6{width:22.338667pt;}
._5{width:23.296000pt;}
._14{width:24.326720pt;}
._27{width:25.330560pt;}
._18{width:29.712640pt;}
._1c{width:33.346560pt;}
._26{width:38.263040pt;}
._25{width:40.560960pt;}
._22{width:46.011840pt;}
._24{width:56.058560pt;}
._19{width:59.051200pt;}
._21{width:60.477227pt;}
._1f{width:71.609600pt;}
._1d{width:73.105920pt;}
._1e{width:93.039040pt;}
._23{width:94.054400pt;}
._1b{width:97.421120pt;}
._20{width:143.432960pt;}
._17{width:196.498880pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:2.960000pt;}
.y145{bottom:3.040000pt;}
.y15f{bottom:5.600000pt;}
.y165{bottom:5.680000pt;}
.yc9{bottom:6.960000pt;}
.yc4{bottom:7.040000pt;}
.y106{bottom:15.600000pt;}
.y112{bottom:15.680000pt;}
.y144{bottom:18.640000pt;}
.y15d{bottom:21.280000pt;}
.y15e{bottom:21.360000pt;}
.y103{bottom:22.560000pt;}
.yfd{bottom:22.640000pt;}
.y105{bottom:31.280000pt;}
.y113{bottom:31.360000pt;}
.y147{bottom:34.240000pt;}
.y14d{bottom:34.320000pt;}
.y14a{bottom:34.346667pt;}
.y15c{bottom:36.960000pt;}
.y12d{bottom:38.240000pt;}
.ydd{bottom:45.280000pt;}
.yd6{bottom:55.546667pt;}
.yc6{bottom:55.600000pt;}
.y109{bottom:64.240000pt;}
.y111{bottom:64.320000pt;}
.ydc{bottom:64.960000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y10e{bottom:71.200000pt;}
.y108{bottom:79.840000pt;}
.ycb{bottom:79.920000pt;}
.ydb{bottom:84.560000pt;}
.y1{bottom:90.346667pt;}
.yff{bottom:95.546667pt;}
.yd1{bottom:97.786667pt;}
.y10d{bottom:99.466667pt;}
.y5a{bottom:102.506667pt;}
.yda{bottom:104.160000pt;}
.y16d{bottom:104.826667pt;}
.ya6{bottom:105.866667pt;}
.y19b{bottom:112.106667pt;}
.y84{bottom:114.266667pt;}
.y1c7{bottom:116.906667pt;}
.y16c{bottom:117.306667pt;}
.y59{bottom:118.186667pt;}
.ya5{bottom:121.546667pt;}
.yce{bottom:122.106667pt;}
.y29{bottom:125.466667pt;}
.y19a{bottom:127.706667pt;}
.y16b{bottom:129.786667pt;}
.y83{bottom:129.866667pt;}
.y142{bottom:131.146667pt;}
.y1c6{bottom:132.506667pt;}
.ya4{bottom:137.146667pt;}
.y110{bottom:139.386667pt;}
.y28{bottom:141.146667pt;}
.y122{bottom:141.386667pt;}
.y16a{bottom:142.346667pt;}
.y199{bottom:143.386667pt;}
.y82{bottom:145.546667pt;}
.yd0{bottom:146.426667pt;}
.y141{bottom:146.826667pt;}
.y58{bottom:149.786667pt;}
.ya3{bottom:152.826667pt;}
.y169{bottom:153.146667pt;}
.y1c5{bottom:156.186667pt;}
.y27{bottom:156.746667pt;}
.y198{bottom:158.986667pt;}
.y81{bottom:161.146667pt;}
.y140{bottom:162.426667pt;}
.y10f{bottom:163.706667pt;}
.y57{bottom:165.386667pt;}
.yf0{bottom:168.426667pt;}
.ycf{bottom:170.666667pt;}
.y1c4{bottom:171.786667pt;}
.y26{bottom:172.346667pt;}
.y121{bottom:172.986667pt;}
.y1e7{bottom:173.786667pt;}
.y197{bottom:174.666667pt;}
.y168{bottom:174.746667pt;}
.ya2{bottom:176.426667pt;}
.y80{bottom:176.826667pt;}
.y13f{bottom:178.026667pt;}
.y56{bottom:181.066667pt;}
.y25{bottom:188.026667pt;}
.y120{bottom:188.586667pt;}
.y1e6{bottom:189.386667pt;}
.y196{bottom:190.266667pt;}
.y7f{bottom:192.426667pt;}
.y13e{bottom:193.706667pt;}
.yca{bottom:194.986667pt;}
.y1c3{bottom:195.706667pt;}
.y167{bottom:196.426667pt;}
.yef{bottom:200.026667pt;}
.y24{bottom:203.626667pt;}
.y11f{bottom:204.266667pt;}
.y55{bottom:204.986667pt;}
.y195{bottom:205.866667pt;}
.y7e{bottom:208.026667pt;}
.y13d{bottom:209.306667pt;}
.y10c{bottom:212.266667pt;}
.yee{bottom:215.626667pt;}
.y166{bottom:218.026667pt;}
.y23{bottom:219.306667pt;}
.y11e{bottom:219.866667pt;}
.y1e5{bottom:220.666667pt;}
.y194{bottom:221.546667pt;}
.y7d{bottom:223.706667pt;}
.y13c{bottom:224.986667pt;}
.y22{bottom:234.906667pt;}
.y10b{bottom:236.586667pt;}
.y193{bottom:237.146667pt;}
.y1c2{bottom:238.586667pt;}
.y7c{bottom:239.306667pt;}
.y164{bottom:239.626667pt;}
.ycd{bottom:243.626667pt;}
.y1e4{bottom:244.266667pt;}
.yed{bottom:247.306667pt;}
.y54{bottom:247.866667pt;}
.y13b{bottom:248.586667pt;}
.y21{bottom:250.506667pt;}
.y11d{bottom:251.546667pt;}
.y192{bottom:252.826667pt;}
.y7b{bottom:254.986667pt;}
.y1e3{bottom:259.946667pt;}
.y10a{bottom:260.906667pt;}
.y163{bottom:261.306667pt;}
.y1c1{bottom:262.506667pt;}
.y53{bottom:263.466667pt;}
.ycc{bottom:267.866667pt;}
.y191{bottom:268.426667pt;}
.ya1{bottom:270.586667pt;}
.y20{bottom:274.426667pt;}
.yec{bottom:275.946667pt;}
.y13a{bottom:277.546667pt;}
.y7a{bottom:278.586667pt;}
.y11c{bottom:280.186667pt;}
.y162{bottom:282.906667pt;}
.y1e2{bottom:283.546667pt;}
.y190{bottom:284.026667pt;}
.y104{bottom:285.226667pt;}
.ya0{bottom:286.186667pt;}
.y52{bottom:287.146667pt;}
.yc5{bottom:292.186667pt;}
.y1c0{bottom:295.466667pt;}
.y1e1{bottom:299.146667pt;}
.y9f{bottom:301.866667pt;}
.y161{bottom:304.586667pt;}
.y18f{bottom:307.946667pt;}
.y139{bottom:309.146667pt;}
.y107{bottom:309.466667pt;}
.y79{bottom:310.186667pt;}
.y1e0{bottom:314.826667pt;}
.yc8{bottom:316.506667pt;}
.y1f{bottom:317.626667pt;}
.y51{bottom:318.746667pt;}
.y1bf{bottom:319.386667pt;}
.y138{bottom:324.826667pt;}
.y9e{bottom:325.466667pt;}
.y78{bottom:325.866667pt;}
.y160{bottom:326.186667pt;}
.yfe{bottom:333.786667pt;}
.y50{bottom:334.346667pt;}
.y1df{bottom:338.426667pt;}
.y137{bottom:340.426667pt;}
.yc7{bottom:340.746667pt;}
.y77{bottom:341.466667pt;}
.y15b{bottom:347.786667pt;}
.y1e{bottom:350.586667pt;}
.y4f{bottom:350.746667pt;}
.y18e{bottom:350.906667pt;}
.y1be{bottom:352.266667pt;}
.y1de{bottom:354.106667pt;}
.y136{bottom:356.106667pt;}
.y76{bottom:357.146667pt;}
.y102{bottom:358.106667pt;}
.yc3{bottom:365.066667pt;}
.y1d{bottom:366.186667pt;}
.y4e{bottom:366.346667pt;}
.y18d{bottom:366.506667pt;}
.y1bd{bottom:367.866667pt;}
.y135{bottom:371.706667pt;}
.y75{bottom:372.746667pt;}
.y1dd{bottom:377.706667pt;}
.y1c{bottom:381.786667pt;}
.y18c{bottom:382.106667pt;}
.y4d{bottom:382.746667pt;}
.y134{bottom:387.306667pt;}
.y74{bottom:388.346667pt;}
.y1bc{bottom:391.786667pt;}
.y1dc{bottom:393.306667pt;}
.y1b{bottom:397.466667pt;}
.y101{bottom:398.026667pt;}
.y4c{bottom:398.346667pt;}
.y133{bottom:402.986667pt;}
.y73{bottom:404.026667pt;}
.yc2{bottom:408.346667pt;}
.y1a{bottom:413.066667pt;}
.y18b{bottom:413.786667pt;}
.y1db{bottom:416.986667pt;}
.y15a{bottom:419.733333pt;}
.y100{bottom:422.373333pt;}
.y1bb{bottom:424.773333pt;}
.y9d{bottom:427.653333pt;}
.y19{bottom:428.773333pt;}
.y18a{bottom:429.413333pt;}
.y4b{bottom:430.773333pt;}
.yc1{bottom:432.293333pt;}
.y1da{bottom:432.613333pt;}
.y159{bottom:435.333333pt;}
.y72{bottom:435.653333pt;}
.y18{bottom:444.373333pt;}
.y4a{bottom:446.453333pt;}
.yfc{bottom:446.613333pt;}
.y1d9{bottom:448.293333pt;}
.y1ba{bottom:448.693333pt;}
.y71{bottom:451.333333pt;}
.y9c{bottom:459.333333pt;}
.y17{bottom:459.973333pt;}
.y189{bottom:461.093333pt;}
.y70{bottom:466.933333pt;}
.y158{bottom:467.013333pt;}
.y49{bottom:470.053333pt;}
.y1d8{bottom:471.893333pt;}
.y132{bottom:472.213333pt;}
.y9b{bottom:474.933333pt;}
.yc0{bottom:475.253333pt;}
.y16{bottom:475.653333pt;}
.y188{bottom:476.693333pt;}
.y1b9{bottom:481.813333pt;}
.y6f{bottom:482.533333pt;}
.y157{bottom:482.613333pt;}
.y9a{bottom:490.533333pt;}
.ybf{bottom:490.853333pt;}
.y15{bottom:491.253333pt;}
.y187{bottom:492.293333pt;}
.y1d7{bottom:495.493333pt;}
.y6e{bottom:498.213333pt;}
.y48{bottom:501.653333pt;}
.yfb{bottom:505.573333pt;}
.y99{bottom:506.213333pt;}
.y156{bottom:506.293333pt;}
.ybe{bottom:506.453333pt;}
.y14{bottom:506.853333pt;}
.y186{bottom:507.973333pt;}
.y1d6{bottom:511.173333pt;}
.y6d{bottom:513.813333pt;}
.y47{bottom:517.253333pt;}
.y98{bottom:521.813333pt;}
.y13{bottom:522.533333pt;}
.y185{bottom:523.573333pt;}
.y1b8{bottom:524.773333pt;}
.y131{bottom:527.813333pt;}
.y6c{bottom:529.413333pt;}
.ybd{bottom:530.133333pt;}
.y46{bottom:533.653333pt;}
.y1d5{bottom:534.773333pt;}
.yfa{bottom:537.173333pt;}
.y97{bottom:537.413333pt;}
.y155{bottom:537.893333pt;}
.y12{bottom:538.133333pt;}
.y184{bottom:539.253333pt;}
.y1b7{bottom:540.373333pt;}
.y45{bottom:549.253333pt;}
.y1d4{bottom:550.453333pt;}
.yf9{bottom:552.853333pt;}
.y6b{bottom:553.093333pt;}
.y154{bottom:553.493333pt;}
.y11{bottom:553.813333pt;}
.y183{bottom:554.853333pt;}
.y1b6{bottom:556.053333pt;}
.y96{bottom:561.093333pt;}
.ybc{bottom:561.733333pt;}
.y44{bottom:565.653333pt;}
.yf8{bottom:568.453333pt;}
.y153{bottom:569.173333pt;}
.y10{bottom:569.413333pt;}
.y182{bottom:570.453333pt;}
.y1b5{bottom:571.653333pt;}
.y1d3{bottom:574.053333pt;}
.ybb{bottom:577.413333pt;}
.y43{bottom:581.253333pt;}
.y130{bottom:583.333333pt;}
.yf7{bottom:584.053333pt;}
.y6a{bottom:584.693333pt;}
.y152{bottom:584.773333pt;}
.yf{bottom:585.013333pt;}
.y181{bottom:586.133333pt;}
.y1b4{bottom:587.253333pt;}
.yeb{bottom:588.933333pt;}
.y1d2{bottom:589.653333pt;}
.y95{bottom:592.693333pt;}
.yba{bottom:593.013333pt;}
.yf6{bottom:599.733333pt;}
.y69{bottom:600.373333pt;}
.y151{bottom:600.453333pt;}
.y180{bottom:601.733333pt;}
.y1b3{bottom:602.933333pt;}
.yea{bottom:604.613333pt;}
.y94{bottom:608.373333pt;}
.yb9{bottom:608.613333pt;}
.ye{bottom:608.933333pt;}
.y1d1{bottom:613.333333pt;}
.y42{bottom:613.653333pt;}
.y68{bottom:615.973333pt;}
.y17f{bottom:617.413333pt;}
.y1b2{bottom:618.533333pt;}
.ye9{bottom:620.213333pt;}
.yf5{bottom:623.333333pt;}
.y93{bottom:623.973333pt;}
.yb8{bottom:624.293333pt;}
.y1d0{bottom:628.933333pt;}
.y41{bottom:629.333333pt;}
.y150{bottom:629.733333pt;}
.y67{bottom:631.573333pt;}
.ye8{bottom:635.813333pt;}
.y12f{bottom:638.933333pt;}
.y92{bottom:639.573333pt;}
.yb7{bottom:639.893333pt;}
.y1cf{bottom:644.613333pt;}
.y66{bottom:647.253333pt;}
.y17e{bottom:649.013333pt;}
.y1b1{bottom:650.213333pt;}
.ye7{bottom:651.493333pt;}
.yd{bottom:651.893333pt;}
.yf4{bottom:652.293333pt;}
.y40{bottom:652.933333pt;}
.y11b{bottom:653.173333pt;}
.y65{bottom:662.853333pt;}
.y91{bottom:663.253333pt;}
.y17d{bottom:664.613333pt;}
.y1b0{bottom:665.813333pt;}
.ye6{bottom:667.093333pt;}
.y1ce{bottom:668.213333pt;}
.y11a{bottom:668.773333pt;}
.yb6{bottom:671.573333pt;}
.y14f{bottom:677.253333pt;}
.y64{bottom:678.533333pt;}
.y17c{bottom:680.293333pt;}
.y1af{bottom:681.413333pt;}
.ye5{bottom:682.693333pt;}
.yc{bottom:683.733333pt;}
.yf3{bottom:683.973333pt;}
.y119{bottom:684.453333pt;}
.y3f{bottom:684.613333pt;}
.yb5{bottom:687.173333pt;}
.y1cd{bottom:691.813333pt;}
.y12e{bottom:694.453333pt;}
.y90{bottom:694.853333pt;}
.y1ae{bottom:697.093333pt;}
.ye4{bottom:698.373333pt;}
.y118{bottom:700.053333pt;}
.y3e{bottom:700.213333pt;}
.y63{bottom:702.133333pt;}
.yb4{bottom:702.773333pt;}
.y1cc{bottom:707.493333pt;}
.y8f{bottom:710.533333pt;}
.y17b{bottom:711.893333pt;}
.y1ad{bottom:712.693333pt;}
.ye3{bottom:713.973333pt;}
.yf2{bottom:715.573333pt;}
.yb{bottom:715.733333pt;}
.y3d{bottom:715.813333pt;}
.yb3{bottom:718.453333pt;}
.y14e{bottom:724.853333pt;}
.y8e{bottom:726.133333pt;}
.y17a{bottom:727.573333pt;}
.y1ac{bottom:728.373333pt;}
.ye2{bottom:729.653333pt;}
.y62{bottom:731.093333pt;}
.y117{bottom:731.333333pt;}
.y3c{bottom:731.493333pt;}
.yb2{bottom:734.053333pt;}
.y8d{bottom:741.733333pt;}
.y179{bottom:743.173333pt;}
.yf1{bottom:744.213333pt;}
.y1cb{bottom:746.693333pt;}
.y116{bottom:746.933333pt;}
.y3b{bottom:747.093333pt;}
.y12c{bottom:750.053333pt;}
.ya{bottom:751.093333pt;}
.y1ab{bottom:752.293333pt;}
.y8c{bottom:757.413333pt;}
.yb1{bottom:757.733333pt;}
.y178{bottom:758.773333pt;}
.yd9{bottom:758.933333pt;}
.y115{bottom:762.613333pt;}
.y61{bottom:762.693333pt;}
.y9{bottom:767.093333pt;}
.y1ca{bottom:770.373333pt;}
.y14c{bottom:772.373333pt;}
.y8b{bottom:773.013333pt;}
.y177{bottom:774.453333pt;}
.y114{bottom:778.213333pt;}
.y60{bottom:778.373333pt;}
.y3a{bottom:778.693333pt;}
.y8{bottom:783.093333pt;}
.ye1{bottom:783.253333pt;}
.y1aa{bottom:785.173333pt;}
.y1c9{bottom:785.973333pt;}
.y8a{bottom:788.693333pt;}
.yb0{bottom:789.333333pt;}
.y176{bottom:790.053333pt;}
.y5f{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.y1a9{bottom:800.773333pt;}
.y89{bottom:804.293333pt;}
.y12b{bottom:805.573333pt;}
.y175{bottom:805.733333pt;}
.ye0{bottom:807.493333pt;}
.y5e{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y7{bottom:811.653333pt;}
.yaf{bottom:812.933333pt;}
.y1a8{bottom:816.453333pt;}
.y88{bottom:819.893333pt;}
.y14b{bottom:819.973333pt;}
.y174{bottom:821.333333pt;}
.y5d{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y6{bottom:828.053333pt;}
.ydf{bottom:831.813333pt;}
.y1a7{bottom:832.053333pt;}
.y173{bottom:836.933333pt;}
.y36{bottom:841.253333pt;}
.y87{bottom:843.493333pt;}
.y5{bottom:844.453333pt;}
.yae{bottom:844.613333pt;}
.y1a6{bottom:847.733333pt;}
.y1c8{bottom:848.853333pt;}
.y172{bottom:852.613333pt;}
.yde{bottom:856.133333pt;}
.y35{bottom:856.853333pt;}
.yad{bottom:860.213333pt;}
.y1a5{bottom:863.333333pt;}
.y12a{bottom:864.533333pt;}
.y149{bottom:867.493333pt;}
.y171{bottom:868.213333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y1a4{bottom:878.933333pt;}
.yd5{bottom:880.453333pt;}
.yac{bottom:883.813333pt;}
.y33{bottom:888.133333pt;}
.y1a3{bottom:894.613333pt;}
.y129{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y86{bottom:904.160000pt;}
.yd8{bottom:904.720000pt;}
.y170{bottom:907.760000pt;}
.y1a2{bottom:910.240000pt;}
.y128{bottom:911.840000pt;}
.y146{bottom:915.120000pt;}
.yab{bottom:915.520000pt;}
.y5c{bottom:919.440000pt;}
.y85{bottom:919.840000pt;}
.y1a1{bottom:925.840000pt;}
.y127{bottom:927.440000pt;}
.yd7{bottom:929.040000pt;}
.yaa{bottom:931.120000pt;}
.y5b{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y1a0{bottom:941.520000pt;}
.y126{bottom:943.040000pt;}
.ya9{bottom:946.800000pt;}
.y16f{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.yd4{bottom:953.360000pt;}
.y19f{bottom:957.120000pt;}
.y125{bottom:958.720000pt;}
.y143{bottom:962.640000pt;}
.y16e{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.ya8{bottom:970.400000pt;}
.y19e{bottom:972.800000pt;}
.y124{bottom:974.320000pt;}
.yd3{bottom:977.680000pt;}
.y2e{bottom:982.320000pt;}
.y19d{bottom:988.400000pt;}
.y123{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.yd2{bottom:1001.920000pt;}
.ya7{bottom:1002.320000pt;}
.y19c{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h24{height:20.960000pt;}
.h25{height:21.040000pt;}
.h11{height:23.600000pt;}
.h14{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h1f{height:31.280000pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h26{height:37.032187pt;}
.h18{height:39.200000pt;}
.h16{height:39.280000pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h20{height:46.880000pt;}
.h22{height:46.960000pt;}
.h21{height:46.986667pt;}
.h19{height:47.920000pt;}
.h1c{height:47.946667pt;}
.h1d{height:48.000000pt;}
.h5{height:48.726562pt;}
.h9{height:49.581562pt;}
.h23{height:52.240000pt;}
.hd{height:53.309531pt;}
.h1e{height:54.880000pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h8{height:65.781915pt;}
.h13{height:72.186667pt;}
.h10{height:72.240000pt;}
.h1b{height:87.840000pt;}
.h1a{height:96.480000pt;}
.h12{height:96.560000pt;}
.h17{height:112.186667pt;}
.h15{height:120.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:70.186667pt;}
.we{width:74.160000pt;}
.wd{width:74.186667pt;}
.w1a{width:74.320000pt;}
.w1b{width:75.066667pt;}
.w14{width:77.840000pt;}
.w12{width:77.920000pt;}
.wf{width:79.280000pt;}
.wc{width:83.360000pt;}
.w16{width:83.920000pt;}
.w1d{width:92.560000pt;}
.w15{width:93.760000pt;}
.w17{width:94.346667pt;}
.w10{width:94.720000pt;}
.wa{width:96.160000pt;}
.w8{width:105.546667pt;}
.w19{width:106.560000pt;}
.w6{width:109.760000pt;}
.w18{width:111.680000pt;}
.w1c{width:113.280000pt;}
.w3{width:115.946667pt;}
.w9{width:127.760000pt;}
.w5{width:161.626667pt;}
.w4{width:223.600000pt;}
.w11{width:239.306667pt;}
.wb{width:262.666667pt;}
.w7{width:340.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x26{left:63.039988pt;}
.x24{left:70.639988pt;}
.x19{left:74.720000pt;}
.x25{left:77.839988pt;}
.x4{left:84.479988pt;}
.x6{left:91.040000pt;}
.x28{left:98.879988pt;}
.x5{left:108.479988pt;}
.x1f{left:156.106667pt;}
.x2{left:180.266655pt;}
.x13{left:198.426655pt;}
.x8{left:207.306667pt;}
.x27{left:238.266655pt;}
.x20{left:268.426667pt;}
.xc{left:284.186655pt;}
.xe{left:301.626655pt;}
.x1a{left:314.346667pt;}
.x14{left:324.426667pt;}
.x21{left:375.626667pt;}
.x1b{left:392.586667pt;}
.xf{left:401.946667pt;}
.x15{left:408.426667pt;}
.x9{left:431.226667pt;}
.x22{left:450.666667pt;}
.x1c{left:463.093333pt;}
.x16{left:483.333333pt;}
.x10{left:508.213333pt;}
.x23{left:526.373333pt;}
.x1d{left:541.253333pt;}
.x17{left:558.213333pt;}
.xa{left:593.173333pt;}
.xd{left:629.013322pt;}
.x1e{left:635.333333pt;}
.x11{left:636.693333pt;}
.x18{left:638.133333pt;}
.xb{left:640.053322pt;}
.x12{left:652.053322pt;}
.x3{left:704.053322pt;}
}




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