
    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_aac5f121a808e6443753a6b6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_831f2911141f0ffe62aa9c2e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6ddf2e2386f65f83a14c0aec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4e27f09206f59e3ddc23c6f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5be9429f56f25c9ea87fcd82.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d03368688bd879f53156b38f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a03761e3ab571ce349346d23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.513600px;}
.ls22{letter-spacing:0.900000px;}
.ls7{letter-spacing:5.220000px;}
.ls0{letter-spacing:10.980000px;}
.ls20{letter-spacing:11.466720px;}
.ls14{letter-spacing:13.260000px;}
.ls18{letter-spacing:14.700000px;}
.ls1e{letter-spacing:16.506720px;}
.lsd{letter-spacing:33.960000px;}
.ls1f{letter-spacing:41.706720px;}
.ls6{letter-spacing:46.026720px;}
.lse{letter-spacing:46.146720px;}
.ls1c{letter-spacing:108.900000px;}
.ls17{letter-spacing:116.820000px;}
.ls12{letter-spacing:229.836000px;}
.ls13{letter-spacing:267.996000px;}
.ls4{letter-spacing:511.356000px;}
.ls2{letter-spacing:532.956000px;}
.ls1a{letter-spacing:634.620000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.220000px;}
.ws11{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws4{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-1.226880px;}
._0{width:1.066800px;}
._1{width:2.361360px;}
._b{width:3.427440px;}
._7{width:5.028720px;}
._3{width:6.991920px;}
._16{width:8.002080px;}
._5{width:9.023760px;}
._4{width:10.062720px;}
._14{width:11.653200px;}
._c{width:12.857280px;}
._1a{width:13.890480px;}
._18{width:16.839600px;}
._13{width:18.386160px;}
._2{width:19.840320px;}
._20{width:21.624240px;}
._1d{width:22.837200px;}
._d{width:24.669360px;}
._9{width:26.037600px;}
._8{width:27.139920px;}
._a{width:28.785120px;}
._17{width:29.880000px;}
._15{width:31.387440px;}
._6{width:32.441760px;}
._23{width:33.585120px;}
._28{width:34.772880px;}
._27{width:35.787360px;}
._22{width:37.000320px;}
._2c{width:38.067120px;}
._2d{width:39.284640px;}
._26{width:40.548720px;}
._2b{width:42.105600px;}
._1f{width:43.291440px;}
._1e{width:44.521200px;}
._12{width:46.493280px;}
._11{width:47.936400px;}
._29{width:49.968240px;}
._2e{width:51.752160px;}
._21{width:53.135520px;}
._2f{width:54.799920px;}
._19{width:57.557760px;}
._1c{width:59.879520px;}
._1b{width:60.964080px;}
._f{width:62.807760px;}
._10{width:64.182240px;}
._30{width:69.569520px;}
._24{width:78.166080px;}
._2a{width:79.190880px;}
._36{width:102.731040px;}
._33{width:108.344880px;}
._25{width:142.932480px;}
._32{width:236.702880px;}
._31{width:291.660000px;}
._35{width:302.229120px;}
._34{width:328.748640px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.240000px;}
.y168{bottom:3.270000px;}
.y18f{bottom:3.285000px;}
.y81{bottom:3.960000px;}
.y7f{bottom:4.140000px;}
.yc9{bottom:5.040000px;}
.ycd{bottom:5.085000px;}
.yd3{bottom:5.220000px;}
.yca{bottom:5.580000px;}
.ycb{bottom:8.280000px;}
.y130{bottom:11.700000px;}
.y79{bottom:11.880000px;}
.yad{bottom:11.925000px;}
.y105{bottom:13.500000px;}
.y186{bottom:14.760000px;}
.y126{bottom:20.340000px;}
.y133{bottom:20.514000px;}
.y76{bottom:20.520000px;}
.yac{bottom:20.565000px;}
.y78{bottom:29.160000px;}
.y125{bottom:37.620000px;}
.y132{bottom:37.794000px;}
.y75{bottom:37.800000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y196{bottom:124.596000px;}
.y7c{bottom:124.776000px;}
.y104{bottom:127.296000px;}
.y1a5{bottom:129.996000px;}
.y162{bottom:130.356000px;}
.y31{bottom:130.536000px;}
.yd5{bottom:131.076000px;}
.y195{bottom:131.256000px;}
.y131{bottom:131.796000px;}
.y153{bottom:136.296000px;}
.y3e{bottom:141.876000px;}
.y30{bottom:146.736000px;}
.y1a4{bottom:147.096000px;}
.y161{bottom:147.636000px;}
.ya7{bottom:151.050000px;}
.yd4{bottom:152.670000px;}
.y152{bottom:153.570000px;}
.y194{bottom:154.110000px;}
.y2f{bottom:158.610000px;}
.y3d{bottom:159.150000px;}
.y1a3{bottom:164.370000px;}
.y160{bottom:164.910000px;}
.ya6{bottom:168.330000px;}
.y103{bottom:169.050000px;}
.y151{bottom:170.850000px;}
.yd2{bottom:174.270000px;}
.y3c{bottom:176.430000px;}
.y193{bottom:176.970000px;}
.y1a2{bottom:181.650000px;}
.y15f{bottom:182.190000px;}
.y12f{bottom:184.350000px;}
.ya5{bottom:185.610000px;}
.y102{bottom:186.330000px;}
.y150{bottom:187.950000px;}
.y3b{bottom:193.710000px;}
.yd1{bottom:196.050000px;}
.y1a1{bottom:198.930000px;}
.y15e{bottom:199.290000px;}
.y192{bottom:199.830000px;}
.ya4{bottom:202.710000px;}
.y14f{bottom:205.230000px;}
.y3a{bottom:210.990000px;}
.y1a0{bottom:216.210000px;}
.y15d{bottom:216.570000px;}
.yd0{bottom:217.650000px;}
.y12e{bottom:219.450000px;}
.ya3{bottom:219.990000px;}
.y101{bottom:220.890000px;}
.y14e{bottom:222.510000px;}
.y191{bottom:222.690000px;}
.y39{bottom:228.090000px;}
.y7b{bottom:228.270000px;}
.y19f{bottom:233.490000px;}
.y15c{bottom:233.850000px;}
.ya2{bottom:237.270000px;}
.y100{bottom:238.170000px;}
.ycf{bottom:239.430000px;}
.y14d{bottom:239.790000px;}
.y38{bottom:245.370000px;}
.y2e{bottom:250.230000px;}
.y19e{bottom:250.590000px;}
.y15b{bottom:251.130000px;}
.ya1{bottom:254.550000px;}
.y12d{bottom:254.730000px;}
.yff{bottom:255.270000px;}
.y14c{bottom:257.070000px;}
.yce{bottom:261.030000px;}
.y37{bottom:262.650000px;}
.y190{bottom:262.830000px;}
.y15a{bottom:265.890000px;}
.y2d{bottom:266.070000px;}
.y19d{bottom:267.870000px;}
.ya0{bottom:271.830000px;}
.yfe{bottom:272.550000px;}
.y12c{bottom:272.730000px;}
.y14b{bottom:274.350000px;}
.y7a{bottom:277.410000px;}
.y36{bottom:279.930000px;}
.ycc{bottom:282.810000px;}
.y2c{bottom:282.990000px;}
.y159{bottom:283.890000px;}
.y19c{bottom:285.150000px;}
.y18e{bottom:285.690000px;}
.y9f{bottom:289.155000px;}
.yfd{bottom:289.875000px;}
.y14a{bottom:291.495000px;}
.y74{bottom:295.455000px;}
.y35{bottom:297.255000px;}
.y2b{bottom:298.695000px;}
.y158{bottom:301.935000px;}
.y19b{bottom:302.475000px;}
.yc8{bottom:304.455000px;}
.y9e{bottom:306.255000px;}
.yfc{bottom:307.155000px;}
.y12b{bottom:308.055000px;}
.y18d{bottom:308.595000px;}
.y149{bottom:308.775000px;}
.y2a{bottom:314.535000px;}
.y19a{bottom:319.755000px;}
.y157{bottom:319.935000px;}
.y9d{bottom:323.535000px;}
.yfb{bottom:324.435000px;}
.y148{bottom:326.055000px;}
.yc7{bottom:329.295000px;}
.y18c{bottom:331.455000px;}
.y29{bottom:331.635000px;}
.y199{bottom:337.035000px;}
.y156{bottom:337.935000px;}
.y9c{bottom:340.815000px;}
.yfa{bottom:341.715000px;}
.y12a{bottom:343.335000px;}
.yc6{bottom:346.575000px;}
.y34{bottom:348.915000px;}
.y73{bottom:351.255000px;}
.y198{bottom:354.135000px;}
.y18b{bottom:354.315000px;}
.y155{bottom:355.935000px;}
.y9b{bottom:358.095000px;}
.yf9{bottom:358.815000px;}
.y147{bottom:360.615000px;}
.y129{bottom:361.335000px;}
.y28{bottom:366.195000px;}
.y72{bottom:368.535000px;}
.y197{bottom:371.415000px;}
.y9a{bottom:372.855000px;}
.y154{bottom:373.935000px;}
.yf8{bottom:376.095000px;}
.y18a{bottom:377.175000px;}
.y146{bottom:377.895000px;}
.yc5{bottom:381.135000px;}
.y27{bottom:383.475000px;}
.y71{bottom:388.695000px;}
.y99{bottom:392.475000px;}
.yf7{bottom:393.375000px;}
.y61{bottom:394.815000px;}
.y145{bottom:394.995000px;}
.y128{bottom:396.615000px;}
.yc4{bottom:398.415000px;}
.y189{bottom:400.035000px;}
.y26{bottom:400.755000px;}
.y70{bottom:405.975000px;}
.yf6{bottom:410.655000px;}
.y60{bottom:411.915000px;}
.y98{bottom:412.095000px;}
.y144{bottom:412.275000px;}
.y127{bottom:414.615000px;}
.yc3{bottom:415.515000px;}
.y25{bottom:417.855000px;}
.y188{bottom:422.895000px;}
.y6f{bottom:423.255000px;}
.yf5{bottom:427.935000px;}
.y5f{bottom:429.195000px;}
.y143{bottom:429.555000px;}
.y97{bottom:431.715000px;}
.y124{bottom:432.615000px;}
.yc2{bottom:432.795000px;}
.y24{bottom:435.135000px;}
.y6e{bottom:440.355000px;}
.yf4{bottom:445.215000px;}
.y185{bottom:445.755000px;}
.y5e{bottom:446.475000px;}
.y142{bottom:446.835000px;}
.yc1{bottom:450.075000px;}
.y96{bottom:451.515000px;}
.y23{bottom:452.415000px;}
.y6d{bottom:457.635000px;}
.yf3{bottom:462.315000px;}
.y5d{bottom:463.755000px;}
.y141{bottom:464.115000px;}
.yc0{bottom:467.355000px;}
.y187{bottom:468.615000px;}
.y22{bottom:469.695000px;}
.y95{bottom:471.135000px;}
.y6c{bottom:474.915000px;}
.yf2{bottom:479.595000px;}
.y5c{bottom:481.035000px;}
.y140{bottom:481.215000px;}
.ybf{bottom:484.635000px;}
.y21{bottom:486.975000px;}
.y123{bottom:488.235000px;}
.y94{bottom:490.755000px;}
.y6b{bottom:492.195000px;}
.y184{bottom:492.555000px;}
.yf1{bottom:496.875000px;}
.y5b{bottom:498.315000px;}
.y13f{bottom:498.495000px;}
.ybe{bottom:501.915000px;}
.y20{bottom:504.255000px;}
.y122{bottom:505.515000px;}
.y6a{bottom:509.475000px;}
.y183{bottom:509.835000px;}
.yf0{bottom:514.155000px;}
.y5a{bottom:515.595000px;}
.y13e{bottom:515.775000px;}
.ybd{bottom:519.015000px;}
.y1f{bottom:521.355000px;}
.y93{bottom:526.035000px;}
.y69{bottom:526.755000px;}
.y182{bottom:527.115000px;}
.yef{bottom:531.435000px;}
.y13d{bottom:533.235000px;}
.y59{bottom:535.575000px;}
.ybc{bottom:536.295000px;}
.y1e{bottom:538.635000px;}
.y121{bottom:540.075000px;}
.y68{bottom:543.855000px;}
.y167{bottom:544.395000px;}
.yee{bottom:548.745000px;}
.y58{bottom:552.885000px;}
.ybb{bottom:553.605000px;}
.y1d{bottom:555.945000px;}
.y13c{bottom:556.125000px;}
.y120{bottom:557.385000px;}
.y181{bottom:560.805000px;}
.y67{bottom:561.165000px;}
.y92{bottom:564.585000px;}
.yed{bottom:565.845000px;}
.y166{bottom:567.285000px;}
.yba{bottom:570.885000px;}
.y57{bottom:572.865000px;}
.y1c{bottom:573.225000px;}
.y11f{bottom:574.485000px;}
.y180{bottom:578.085000px;}
.y66{bottom:578.445000px;}
.y13b{bottom:578.985000px;}
.yec{bottom:583.125000px;}
.yb9{bottom:588.165000px;}
.y56{bottom:590.145000px;}
.y1b{bottom:590.505000px;}
.y11e{bottom:591.765000px;}
.y17f{bottom:595.365000px;}
.y65{bottom:595.725000px;}
.y91{bottom:598.965000px;}
.yeb{bottom:600.405000px;}
.y13a{bottom:601.845000px;}
.yb8{bottom:605.445000px;}
.y55{bottom:607.425000px;}
.y1a{bottom:607.785000px;}
.y11d{bottom:609.045000px;}
.y17e{bottom:612.645000px;}
.y64{bottom:613.005000px;}
.y90{bottom:616.245000px;}
.yea{bottom:617.685000px;}
.yb7{bottom:622.545000px;}
.y139{bottom:624.705000px;}
.y19{bottom:624.885000px;}
.y11c{bottom:626.325000px;}
.y54{bottom:627.405000px;}
.y17d{bottom:629.745000px;}
.y63{bottom:630.285000px;}
.y8f{bottom:633.525000px;}
.ye9{bottom:634.965000px;}
.yb6{bottom:639.825000px;}
.y18{bottom:642.165000px;}
.y11b{bottom:643.605000px;}
.y53{bottom:644.685000px;}
.y17c{bottom:647.025000px;}
.y62{bottom:647.385000px;}
.y138{bottom:647.565000px;}
.y8e{bottom:650.805000px;}
.ye8{bottom:652.065000px;}
.yb5{bottom:657.105000px;}
.y17{bottom:659.445000px;}
.y11a{bottom:660.705000px;}
.y52{bottom:661.965000px;}
.y17b{bottom:664.305000px;}
.y8d{bottom:667.905000px;}
.ye7{bottom:669.345000px;}
.y137{bottom:670.425000px;}
.yb4{bottom:674.385000px;}
.y16{bottom:676.725000px;}
.y119{bottom:677.985000px;}
.y17a{bottom:681.585000px;}
.y51{bottom:681.945000px;}
.y8c{bottom:685.185000px;}
.ye6{bottom:686.625000px;}
.yb3{bottom:691.665000px;}
.y136{bottom:693.285000px;}
.y15{bottom:694.005000px;}
.y118{bottom:695.265000px;}
.y179{bottom:698.865000px;}
.y8b{bottom:702.465000px;}
.ye5{bottom:703.905000px;}
.yb2{bottom:708.945000px;}
.y165{bottom:710.565000px;}
.y33{bottom:711.105000px;}
.y117{bottom:712.545000px;}
.y135{bottom:716.145000px;}
.y50{bottom:716.505000px;}
.y8a{bottom:719.745000px;}
.ye4{bottom:721.185000px;}
.yb1{bottom:726.045000px;}
.y14{bottom:728.385000px;}
.y116{bottom:729.825000px;}
.y178{bottom:733.245000px;}
.y4f{bottom:733.605000px;}
.ye3{bottom:735.945000px;}
.y89{bottom:737.025000px;}
.y134{bottom:739.005000px;}
.yb0{bottom:740.805000px;}
.y13{bottom:745.665000px;}
.y115{bottom:747.105000px;}
.y177{bottom:750.525000px;}
.y164{bottom:750.705000px;}
.y4e{bottom:750.885000px;}
.y88{bottom:754.305000px;}
.ye2{bottom:757.545000px;}
.yaf{bottom:760.605000px;}
.y12{bottom:762.945000px;}
.y114{bottom:764.205000px;}
.y176{bottom:767.805000px;}
.y4d{bottom:768.165000px;}
.y87{bottom:771.405000px;}
.ye1{bottom:779.325000px;}
.y11{bottom:780.225000px;}
.yae{bottom:780.405000px;}
.y113{bottom:781.485000px;}
.y175{bottom:785.085000px;}
.y4c{bottom:785.445000px;}
.y86{bottom:788.685000px;}
.y163{bottom:790.845000px;}
.y10{bottom:797.505000px;}
.y112{bottom:798.765000px;}
.yab{bottom:800.025000px;}
.ye0{bottom:800.925000px;}
.y174{bottom:802.365000px;}
.y4b{bottom:802.725000px;}
.y85{bottom:805.965000px;}
.yf{bottom:814.650000px;}
.y111{bottom:816.090000px;}
.y173{bottom:819.690000px;}
.y4a{bottom:820.050000px;}
.y84{bottom:823.290000px;}
.ye{bottom:831.930000px;}
.y110{bottom:833.370000px;}
.yaa{bottom:835.350000px;}
.ydf{bottom:836.250000px;}
.y172{bottom:836.790000px;}
.y49{bottom:837.150000px;}
.y83{bottom:840.570000px;}
.yd{bottom:849.210000px;}
.y10f{bottom:850.650000px;}
.y171{bottom:854.070000px;}
.y48{bottom:854.430000px;}
.ya9{bottom:854.970000px;}
.y82{bottom:855.330000px;}
.yde{bottom:857.850000px;}
.yc{bottom:866.490000px;}
.y10e{bottom:867.750000px;}
.y170{bottom:871.350000px;}
.y47{bottom:871.710000px;}
.ya8{bottom:874.770000px;}
.y80{bottom:874.950000px;}
.ydd{bottom:879.630000px;}
.yb{bottom:883.770000px;}
.y10d{bottom:885.030000px;}
.y16f{bottom:888.630000px;}
.y46{bottom:888.990000px;}
.y7e{bottom:894.570000px;}
.y10c{bottom:899.790000px;}
.ya{bottom:901.050000px;}
.ydc{bottom:901.230000px;}
.y16e{bottom:905.910000px;}
.y45{bottom:906.270000px;}
.y7d{bottom:914.190000px;}
.y9{bottom:918.150000px;}
.y10b{bottom:919.410000px;}
.ydb{bottom:923.010000px;}
.y44{bottom:923.550000px;}
.y8{bottom:935.430000px;}
.y10a{bottom:939.210000px;}
.y16d{bottom:940.290000px;}
.y43{bottom:940.650000px;}
.yda{bottom:944.610000px;}
.y7{bottom:952.710000px;}
.y16c{bottom:957.570000px;}
.y42{bottom:957.930000px;}
.y109{bottom:958.830000px;}
.yd9{bottom:966.210000px;}
.y6{bottom:969.990000px;}
.y16b{bottom:974.850000px;}
.y5{bottom:987.270000px;}
.yd8{bottom:987.990000px;}
.y16a{bottom:992.310000px;}
.y108{bottom:993.930000px;}
.y4{bottom:1004.550000px;}
.yd7{bottom:1009.590000px;}
.y107{bottom:1013.730000px;}
.y32{bottom:1021.650000px;}
.yd6{bottom:1031.370000px;}
.y169{bottom:1032.270000px;}
.y106{bottom:1033.350000px;}
.y3{bottom:1038.930000px;}
.y41{bottom:1081.080000px;}
.y40{bottom:1100.880000px;}
.y3f{bottom:1119.960000px;}
.h19{height:17.100000px;}
.h1a{height:17.280000px;}
.hc{height:17.316000px;}
.he{height:18.900000px;}
.h10{height:19.080000px;}
.h12{height:20.880000px;}
.h14{height:20.916000px;}
.h15{height:21.060000px;}
.h17{height:34.380000px;}
.hf{height:34.416000px;}
.hd{height:34.560000px;}
.h11{height:34.596000px;}
.h16{height:37.800000px;}
.h1b{height:40.140000px;}
.h1d{height:41.756133px;}
.h7{height:51.519375px;}
.h18{height:51.660000px;}
.hb{height:51.840000px;}
.h5{height:52.998047px;}
.h13{height:54.421875px;}
.h8{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h1c{height:61.423863px;}
.h9{height:62.211094px;}
.h6{height:62.327813px;}
.h1{height:70.664062px;}
.ha{height:74.004654px;}
.h0{height:1188.000000px;}
.w36{width:25.956000px;}
.w31{width:30.960000px;}
.w2a{width:30.996000px;}
.w2e{width:33.480000px;}
.w2c{width:33.660000px;}
.w1e{width:38.520000px;}
.w25{width:38.700000px;}
.w35{width:38.880000px;}
.w38{width:39.420000px;}
.w23{width:40.356000px;}
.w24{width:40.500000px;}
.w1f{width:41.400000px;}
.w20{width:41.436000px;}
.w21{width:41.580000px;}
.w22{width:45.720000px;}
.w37{width:47.520000px;}
.w1d{width:49.320000px;}
.w1a{width:52.200000px;}
.w1c{width:55.296000px;}
.w29{width:57.960000px;}
.w30{width:58.140000px;}
.w12{width:63.000000px;}
.w15{width:63.180000px;}
.w17{width:64.620000px;}
.w2d{width:69.480000px;}
.w2b{width:69.660000px;}
.w32{width:69.696000px;}
.w3{width:73.656000px;}
.w27{width:76.500000px;}
.w14{width:84.240000px;}
.w11{width:84.456000px;}
.wa{width:86.220000px;}
.w6{width:86.400000px;}
.wb{width:92.160000px;}
.wf{width:95.220000px;}
.wc{width:97.236000px;}
.w8{width:104.400000px;}
.w9{width:104.436000px;}
.we{width:107.856000px;}
.w28{width:119.736000px;}
.w2f{width:119.916000px;}
.w4{width:126.000000px;}
.w5{width:129.996000px;}
.wd{width:135.756000px;}
.w16{width:137.700000px;}
.w18{width:137.880000px;}
.w2{width:140.580000px;}
.w7{width:140.616000px;}
.w26{width:143.496000px;}
.w1b{width:183.420000px;}
.w34{width:190.290000px;}
.w10{width:204.150000px;}
.w13{width:204.375000px;}
.w19{width:213.690000px;}
.w33{width:483.555000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x6d{left:-1.440000px;}
.x0{left:0.000000px;}
.x59{left:1.080000px;}
.x39{left:3.420000px;}
.x3b{left:5.400000px;}
.x14{left:7.740000px;}
.x53{left:9.180000px;}
.x26{left:11.340000px;}
.x1a{left:13.320000px;}
.x3e{left:14.580000px;}
.x1b{left:15.840000px;}
.x2f{left:17.094000px;}
.x3f{left:18.360000px;}
.x60{left:20.205000px;}
.x67{left:21.240000px;}
.x2c{left:22.320000px;}
.x71{left:23.400000px;}
.x3d{left:24.660000px;}
.x21{left:26.280000px;}
.x24{left:28.080000px;}
.x1e{left:29.340000px;}
.x28{left:30.420000px;}
.x4d{left:32.400000px;}
.x4c{left:33.480000px;}
.x2b{left:35.094000px;}
.x29{left:36.714000px;}
.x43{left:38.340000px;}
.x2a{left:40.860000px;}
.x68{left:41.970000px;}
.x19{left:43.200000px;}
.x4e{left:44.820000px;}
.x35{left:46.440000px;}
.x36{left:49.710000px;}
.x1f{left:51.660000px;}
.x20{left:53.670000px;}
.x5f{left:55.794000px;}
.x1d{left:62.814000px;}
.x61{left:69.114000px;}
.x44{left:86.250000px;}
.x6b{left:89.460000px;}
.x40{left:92.160000px;}
.x2{left:106.415986px;}
.xe{left:108.215986px;}
.x4{left:109.835986px;}
.x10{left:111.455986px;}
.x75{left:112.715986px;}
.x69{left:113.975986px;}
.x46{left:118.296000px;}
.x23{left:120.456000px;}
.x9{left:131.075986px;}
.x3{left:133.595986px;}
.x6{left:139.535986px;}
.x2d{left:140.796000px;}
.xf{left:160.409986px;}
.x76{left:165.774000px;}
.xd{left:168.689986px;}
.x45{left:208.289986px;}
.x6c{left:210.270000px;}
.x5{left:212.969986px;}
.x7{left:222.149986px;}
.x25{left:225.570000px;}
.x6a{left:231.869986px;}
.x2e{left:233.670000px;}
.x15{left:249.150000px;}
.x47{left:256.890000px;}
.x22{left:268.769986px;}
.x12{left:279.929986px;}
.x54{left:284.249986px;}
.x55{left:290.730000px;}
.x41{left:297.255000px;}
.x6e{left:301.395000px;}
.x8{left:319.214986px;}
.x16{left:323.535000px;}
.x27{left:330.915000px;}
.x56{left:347.115000px;}
.x48{left:354.855000px;}
.x6f{left:372.135000px;}
.x42{left:382.215000px;}
.x57{left:397.515000px;}
.x70{left:414.615000px;}
.x58{left:437.295000px;}
.x1{left:449.174986px;}
.x17{left:450.255000px;}
.x13{left:458.174986px;}
.x50{left:465.375000px;}
.x72{left:468.255000px;}
.x38{left:471.135000px;}
.x32{left:477.615000px;}
.x11{left:479.414986px;}
.xc{left:485.174986px;}
.x64{left:488.415000px;}
.xa{left:490.214986px;}
.x49{left:497.085000px;}
.x62{left:499.964986px;}
.x7a{left:512.204986px;}
.x30{left:521.564986px;}
.xb{left:539.204986px;}
.x5a{left:564.945000px;}
.x18{left:580.965000px;}
.x4f{left:589.964986px;}
.x37{left:606.164986px;}
.x63{left:608.324986px;}
.x5b{left:611.745000px;}
.x33{left:614.085000px;}
.x65{left:632.625000px;}
.x4a{left:635.685000px;}
.x77{left:640.185000px;}
.x31{left:647.564986px;}
.x5c{left:654.405000px;}
.x1c{left:668.085000px;}
.x3a{left:676.005000px;}
.x51{left:679.785000px;}
.x5d{left:695.850000px;}
.x78{left:707.550000px;}
.x34{left:722.670000px;}
.x66{left:730.590000px;}
.x4b{left:733.650000px;}
.x5e{left:738.510000px;}
.x73{left:750.930000px;}
.x79{left:756.150000px;}
.x3c{left:761.190000px;}
.x52{left:777.750000px;}
.x74{left:793.590000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.456533pt;}
.ls22{letter-spacing:0.800000pt;}
.ls7{letter-spacing:4.640000pt;}
.ls0{letter-spacing:9.760000pt;}
.ls20{letter-spacing:10.192640pt;}
.ls14{letter-spacing:11.786667pt;}
.ls18{letter-spacing:13.066667pt;}
.ls1e{letter-spacing:14.672640pt;}
.lsd{letter-spacing:30.186667pt;}
.ls1f{letter-spacing:37.072640pt;}
.ls6{letter-spacing:40.912640pt;}
.lse{letter-spacing:41.019307pt;}
.ls1c{letter-spacing:96.800000pt;}
.ls17{letter-spacing:103.840000pt;}
.ls12{letter-spacing:204.298667pt;}
.ls13{letter-spacing:238.218667pt;}
.ls4{letter-spacing:454.538667pt;}
.ls2{letter-spacing:473.738667pt;}
.ls1a{letter-spacing:564.106667pt;}
.wsb{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws4{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-1.090560pt;}
._0{width:0.948267pt;}
._1{width:2.098987pt;}
._b{width:3.046613pt;}
._7{width:4.469973pt;}
._3{width:6.215040pt;}
._16{width:7.112960pt;}
._5{width:8.021120pt;}
._4{width:8.944640pt;}
._14{width:10.358400pt;}
._c{width:11.428693pt;}
._1a{width:12.347093pt;}
._18{width:14.968533pt;}
._13{width:16.343253pt;}
._2{width:17.635840pt;}
._20{width:19.221547pt;}
._1d{width:20.299733pt;}
._d{width:21.928320pt;}
._9{width:23.144533pt;}
._8{width:24.124373pt;}
._a{width:25.586773pt;}
._17{width:26.560000pt;}
._15{width:27.899947pt;}
._6{width:28.837120pt;}
._23{width:29.853440pt;}
._28{width:30.909227pt;}
._27{width:31.810987pt;}
._22{width:32.889173pt;}
._2c{width:33.837440pt;}
._2d{width:34.919680pt;}
._26{width:36.043307pt;}
._2b{width:37.427200pt;}
._1f{width:38.481280pt;}
._1e{width:39.574400pt;}
._12{width:41.327360pt;}
._11{width:42.610133pt;}
._29{width:44.416213pt;}
._2e{width:46.001920pt;}
._21{width:47.231573pt;}
._2f{width:48.711040pt;}
._19{width:51.162453pt;}
._1c{width:53.226240pt;}
._1b{width:54.190293pt;}
._f{width:55.829120pt;}
._10{width:57.050880pt;}
._30{width:61.839573pt;}
._24{width:69.480960pt;}
._2a{width:70.391893pt;}
._36{width:91.316480pt;}
._33{width:96.306560pt;}
._25{width:127.051093pt;}
._32{width:210.402560pt;}
._31{width:259.253333pt;}
._35{width:268.648107pt;}
._34{width:292.221013pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.880000pt;}
.y168{bottom:2.906667pt;}
.y18f{bottom:2.920000pt;}
.y81{bottom:3.520000pt;}
.y7f{bottom:3.680000pt;}
.yc9{bottom:4.480000pt;}
.ycd{bottom:4.520000pt;}
.yd3{bottom:4.640000pt;}
.yca{bottom:4.960000pt;}
.ycb{bottom:7.360000pt;}
.y130{bottom:10.400000pt;}
.y79{bottom:10.560000pt;}
.yad{bottom:10.600000pt;}
.y105{bottom:12.000000pt;}
.y186{bottom:13.120000pt;}
.y126{bottom:18.080000pt;}
.y133{bottom:18.234667pt;}
.y76{bottom:18.240000pt;}
.yac{bottom:18.280000pt;}
.y78{bottom:25.920000pt;}
.y125{bottom:33.440000pt;}
.y132{bottom:33.594667pt;}
.y75{bottom:33.600000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y196{bottom:110.752000pt;}
.y7c{bottom:110.912000pt;}
.y104{bottom:113.152000pt;}
.y1a5{bottom:115.552000pt;}
.y162{bottom:115.872000pt;}
.y31{bottom:116.032000pt;}
.yd5{bottom:116.512000pt;}
.y195{bottom:116.672000pt;}
.y131{bottom:117.152000pt;}
.y153{bottom:121.152000pt;}
.y3e{bottom:126.112000pt;}
.y30{bottom:130.432000pt;}
.y1a4{bottom:130.752000pt;}
.y161{bottom:131.232000pt;}
.ya7{bottom:134.266667pt;}
.yd4{bottom:135.706667pt;}
.y152{bottom:136.506667pt;}
.y194{bottom:136.986667pt;}
.y2f{bottom:140.986667pt;}
.y3d{bottom:141.466667pt;}
.y1a3{bottom:146.106667pt;}
.y160{bottom:146.586667pt;}
.ya6{bottom:149.626667pt;}
.y103{bottom:150.266667pt;}
.y151{bottom:151.866667pt;}
.yd2{bottom:154.906667pt;}
.y3c{bottom:156.826667pt;}
.y193{bottom:157.306667pt;}
.y1a2{bottom:161.466667pt;}
.y15f{bottom:161.946667pt;}
.y12f{bottom:163.866667pt;}
.ya5{bottom:164.986667pt;}
.y102{bottom:165.626667pt;}
.y150{bottom:167.066667pt;}
.y3b{bottom:172.186667pt;}
.yd1{bottom:174.266667pt;}
.y1a1{bottom:176.826667pt;}
.y15e{bottom:177.146667pt;}
.y192{bottom:177.626667pt;}
.ya4{bottom:180.186667pt;}
.y14f{bottom:182.426667pt;}
.y3a{bottom:187.546667pt;}
.y1a0{bottom:192.186667pt;}
.y15d{bottom:192.506667pt;}
.yd0{bottom:193.466667pt;}
.y12e{bottom:195.066667pt;}
.ya3{bottom:195.546667pt;}
.y101{bottom:196.346667pt;}
.y14e{bottom:197.786667pt;}
.y191{bottom:197.946667pt;}
.y39{bottom:202.746667pt;}
.y7b{bottom:202.906667pt;}
.y19f{bottom:207.546667pt;}
.y15c{bottom:207.866667pt;}
.ya2{bottom:210.906667pt;}
.y100{bottom:211.706667pt;}
.ycf{bottom:212.826667pt;}
.y14d{bottom:213.146667pt;}
.y38{bottom:218.106667pt;}
.y2e{bottom:222.426667pt;}
.y19e{bottom:222.746667pt;}
.y15b{bottom:223.226667pt;}
.ya1{bottom:226.266667pt;}
.y12d{bottom:226.426667pt;}
.yff{bottom:226.906667pt;}
.y14c{bottom:228.506667pt;}
.yce{bottom:232.026667pt;}
.y37{bottom:233.466667pt;}
.y190{bottom:233.626667pt;}
.y15a{bottom:236.346667pt;}
.y2d{bottom:236.506667pt;}
.y19d{bottom:238.106667pt;}
.ya0{bottom:241.626667pt;}
.yfe{bottom:242.266667pt;}
.y12c{bottom:242.426667pt;}
.y14b{bottom:243.866667pt;}
.y7a{bottom:246.586667pt;}
.y36{bottom:248.826667pt;}
.ycc{bottom:251.386667pt;}
.y2c{bottom:251.546667pt;}
.y159{bottom:252.346667pt;}
.y19c{bottom:253.466667pt;}
.y18e{bottom:253.946667pt;}
.y9f{bottom:257.026667pt;}
.yfd{bottom:257.666667pt;}
.y14a{bottom:259.106667pt;}
.y74{bottom:262.626667pt;}
.y35{bottom:264.226667pt;}
.y2b{bottom:265.506667pt;}
.y158{bottom:268.386667pt;}
.y19b{bottom:268.866667pt;}
.yc8{bottom:270.626667pt;}
.y9e{bottom:272.226667pt;}
.yfc{bottom:273.026667pt;}
.y12b{bottom:273.826667pt;}
.y18d{bottom:274.306667pt;}
.y149{bottom:274.466667pt;}
.y2a{bottom:279.586667pt;}
.y19a{bottom:284.226667pt;}
.y157{bottom:284.386667pt;}
.y9d{bottom:287.586667pt;}
.yfb{bottom:288.386667pt;}
.y148{bottom:289.826667pt;}
.yc7{bottom:292.706667pt;}
.y18c{bottom:294.626667pt;}
.y29{bottom:294.786667pt;}
.y199{bottom:299.586667pt;}
.y156{bottom:300.386667pt;}
.y9c{bottom:302.946667pt;}
.yfa{bottom:303.746667pt;}
.y12a{bottom:305.186667pt;}
.yc6{bottom:308.066667pt;}
.y34{bottom:310.146667pt;}
.y73{bottom:312.226667pt;}
.y198{bottom:314.786667pt;}
.y18b{bottom:314.946667pt;}
.y155{bottom:316.386667pt;}
.y9b{bottom:318.306667pt;}
.yf9{bottom:318.946667pt;}
.y147{bottom:320.546667pt;}
.y129{bottom:321.186667pt;}
.y28{bottom:325.506667pt;}
.y72{bottom:327.586667pt;}
.y197{bottom:330.146667pt;}
.y9a{bottom:331.426667pt;}
.y154{bottom:332.386667pt;}
.yf8{bottom:334.306667pt;}
.y18a{bottom:335.266667pt;}
.y146{bottom:335.906667pt;}
.yc5{bottom:338.786667pt;}
.y27{bottom:340.866667pt;}
.y71{bottom:345.506667pt;}
.y99{bottom:348.866667pt;}
.yf7{bottom:349.666667pt;}
.y61{bottom:350.946667pt;}
.y145{bottom:351.106667pt;}
.y128{bottom:352.546667pt;}
.yc4{bottom:354.146667pt;}
.y189{bottom:355.586667pt;}
.y26{bottom:356.226667pt;}
.y70{bottom:360.866667pt;}
.yf6{bottom:365.026667pt;}
.y60{bottom:366.146667pt;}
.y98{bottom:366.306667pt;}
.y144{bottom:366.466667pt;}
.y127{bottom:368.546667pt;}
.yc3{bottom:369.346667pt;}
.y25{bottom:371.426667pt;}
.y188{bottom:375.906667pt;}
.y6f{bottom:376.226667pt;}
.yf5{bottom:380.386667pt;}
.y5f{bottom:381.506667pt;}
.y143{bottom:381.826667pt;}
.y97{bottom:383.746667pt;}
.y124{bottom:384.546667pt;}
.yc2{bottom:384.706667pt;}
.y24{bottom:386.786667pt;}
.y6e{bottom:391.426667pt;}
.yf4{bottom:395.746667pt;}
.y185{bottom:396.226667pt;}
.y5e{bottom:396.866667pt;}
.y142{bottom:397.186667pt;}
.yc1{bottom:400.066667pt;}
.y96{bottom:401.346667pt;}
.y23{bottom:402.146667pt;}
.y6d{bottom:406.786667pt;}
.yf3{bottom:410.946667pt;}
.y5d{bottom:412.226667pt;}
.y141{bottom:412.546667pt;}
.yc0{bottom:415.426667pt;}
.y187{bottom:416.546667pt;}
.y22{bottom:417.506667pt;}
.y95{bottom:418.786667pt;}
.y6c{bottom:422.146667pt;}
.yf2{bottom:426.306667pt;}
.y5c{bottom:427.586667pt;}
.y140{bottom:427.746667pt;}
.ybf{bottom:430.786667pt;}
.y21{bottom:432.866667pt;}
.y123{bottom:433.986667pt;}
.y94{bottom:436.226667pt;}
.y6b{bottom:437.506667pt;}
.y184{bottom:437.826667pt;}
.yf1{bottom:441.666667pt;}
.y5b{bottom:442.946667pt;}
.y13f{bottom:443.106667pt;}
.ybe{bottom:446.146667pt;}
.y20{bottom:448.226667pt;}
.y122{bottom:449.346667pt;}
.y6a{bottom:452.866667pt;}
.y183{bottom:453.186667pt;}
.yf0{bottom:457.026667pt;}
.y5a{bottom:458.306667pt;}
.y13e{bottom:458.466667pt;}
.ybd{bottom:461.346667pt;}
.y1f{bottom:463.426667pt;}
.y93{bottom:467.586667pt;}
.y69{bottom:468.226667pt;}
.y182{bottom:468.546667pt;}
.yef{bottom:472.386667pt;}
.y13d{bottom:473.986667pt;}
.y59{bottom:476.066667pt;}
.ybc{bottom:476.706667pt;}
.y1e{bottom:478.786667pt;}
.y121{bottom:480.066667pt;}
.y68{bottom:483.426667pt;}
.y167{bottom:483.906667pt;}
.yee{bottom:487.773333pt;}
.y58{bottom:491.453333pt;}
.ybb{bottom:492.093333pt;}
.y1d{bottom:494.173333pt;}
.y13c{bottom:494.333333pt;}
.y120{bottom:495.453333pt;}
.y181{bottom:498.493333pt;}
.y67{bottom:498.813333pt;}
.y92{bottom:501.853333pt;}
.yed{bottom:502.973333pt;}
.y166{bottom:504.253333pt;}
.yba{bottom:507.453333pt;}
.y57{bottom:509.213333pt;}
.y1c{bottom:509.533333pt;}
.y11f{bottom:510.653333pt;}
.y180{bottom:513.853333pt;}
.y66{bottom:514.173333pt;}
.y13b{bottom:514.653333pt;}
.yec{bottom:518.333333pt;}
.yb9{bottom:522.813333pt;}
.y56{bottom:524.573333pt;}
.y1b{bottom:524.893333pt;}
.y11e{bottom:526.013333pt;}
.y17f{bottom:529.213333pt;}
.y65{bottom:529.533333pt;}
.y91{bottom:532.413333pt;}
.yeb{bottom:533.693333pt;}
.y13a{bottom:534.973333pt;}
.yb8{bottom:538.173333pt;}
.y55{bottom:539.933333pt;}
.y1a{bottom:540.253333pt;}
.y11d{bottom:541.373333pt;}
.y17e{bottom:544.573333pt;}
.y64{bottom:544.893333pt;}
.y90{bottom:547.773333pt;}
.yea{bottom:549.053333pt;}
.yb7{bottom:553.373333pt;}
.y139{bottom:555.293333pt;}
.y19{bottom:555.453333pt;}
.y11c{bottom:556.733333pt;}
.y54{bottom:557.693333pt;}
.y17d{bottom:559.773333pt;}
.y63{bottom:560.253333pt;}
.y8f{bottom:563.133333pt;}
.ye9{bottom:564.413333pt;}
.yb6{bottom:568.733333pt;}
.y18{bottom:570.813333pt;}
.y11b{bottom:572.093333pt;}
.y53{bottom:573.053333pt;}
.y17c{bottom:575.133333pt;}
.y62{bottom:575.453333pt;}
.y138{bottom:575.613333pt;}
.y8e{bottom:578.493333pt;}
.ye8{bottom:579.613333pt;}
.yb5{bottom:584.093333pt;}
.y17{bottom:586.173333pt;}
.y11a{bottom:587.293333pt;}
.y52{bottom:588.413333pt;}
.y17b{bottom:590.493333pt;}
.y8d{bottom:593.693333pt;}
.ye7{bottom:594.973333pt;}
.y137{bottom:595.933333pt;}
.yb4{bottom:599.453333pt;}
.y16{bottom:601.533333pt;}
.y119{bottom:602.653333pt;}
.y17a{bottom:605.853333pt;}
.y51{bottom:606.173333pt;}
.y8c{bottom:609.053333pt;}
.ye6{bottom:610.333333pt;}
.yb3{bottom:614.813333pt;}
.y136{bottom:616.253333pt;}
.y15{bottom:616.893333pt;}
.y118{bottom:618.013333pt;}
.y179{bottom:621.213333pt;}
.y8b{bottom:624.413333pt;}
.ye5{bottom:625.693333pt;}
.yb2{bottom:630.173333pt;}
.y165{bottom:631.613333pt;}
.y33{bottom:632.093333pt;}
.y117{bottom:633.373333pt;}
.y135{bottom:636.573333pt;}
.y50{bottom:636.893333pt;}
.y8a{bottom:639.773333pt;}
.ye4{bottom:641.053333pt;}
.yb1{bottom:645.373333pt;}
.y14{bottom:647.453333pt;}
.y116{bottom:648.733333pt;}
.y178{bottom:651.773333pt;}
.y4f{bottom:652.093333pt;}
.ye3{bottom:654.173333pt;}
.y89{bottom:655.133333pt;}
.y134{bottom:656.893333pt;}
.yb0{bottom:658.493333pt;}
.y13{bottom:662.813333pt;}
.y115{bottom:664.093333pt;}
.y177{bottom:667.133333pt;}
.y164{bottom:667.293333pt;}
.y4e{bottom:667.453333pt;}
.y88{bottom:670.493333pt;}
.ye2{bottom:673.373333pt;}
.yaf{bottom:676.093333pt;}
.y12{bottom:678.173333pt;}
.y114{bottom:679.293333pt;}
.y176{bottom:682.493333pt;}
.y4d{bottom:682.813333pt;}
.y87{bottom:685.693333pt;}
.ye1{bottom:692.733333pt;}
.y11{bottom:693.533333pt;}
.yae{bottom:693.693333pt;}
.y113{bottom:694.653333pt;}
.y175{bottom:697.853333pt;}
.y4c{bottom:698.173333pt;}
.y86{bottom:701.053333pt;}
.y163{bottom:702.973333pt;}
.y10{bottom:708.893333pt;}
.y112{bottom:710.013333pt;}
.yab{bottom:711.133333pt;}
.ye0{bottom:711.933333pt;}
.y174{bottom:713.213333pt;}
.y4b{bottom:713.533333pt;}
.y85{bottom:716.413333pt;}
.yf{bottom:724.133333pt;}
.y111{bottom:725.413333pt;}
.y173{bottom:728.613333pt;}
.y4a{bottom:728.933333pt;}
.y84{bottom:731.813333pt;}
.ye{bottom:739.493333pt;}
.y110{bottom:740.773333pt;}
.yaa{bottom:742.533333pt;}
.ydf{bottom:743.333333pt;}
.y172{bottom:743.813333pt;}
.y49{bottom:744.133333pt;}
.y83{bottom:747.173333pt;}
.yd{bottom:754.853333pt;}
.y10f{bottom:756.133333pt;}
.y171{bottom:759.173333pt;}
.y48{bottom:759.493333pt;}
.ya9{bottom:759.973333pt;}
.y82{bottom:760.293333pt;}
.yde{bottom:762.533333pt;}
.yc{bottom:770.213333pt;}
.y10e{bottom:771.333333pt;}
.y170{bottom:774.533333pt;}
.y47{bottom:774.853333pt;}
.ya8{bottom:777.573333pt;}
.y80{bottom:777.733333pt;}
.ydd{bottom:781.893333pt;}
.yb{bottom:785.573333pt;}
.y10d{bottom:786.693333pt;}
.y16f{bottom:789.893333pt;}
.y46{bottom:790.213333pt;}
.y7e{bottom:795.173333pt;}
.y10c{bottom:799.813333pt;}
.ya{bottom:800.933333pt;}
.ydc{bottom:801.093333pt;}
.y16e{bottom:805.253333pt;}
.y45{bottom:805.573333pt;}
.y7d{bottom:812.613333pt;}
.y9{bottom:816.133333pt;}
.y10b{bottom:817.253333pt;}
.ydb{bottom:820.453333pt;}
.y44{bottom:820.933333pt;}
.y8{bottom:831.493333pt;}
.y10a{bottom:834.853333pt;}
.y16d{bottom:835.813333pt;}
.y43{bottom:836.133333pt;}
.yda{bottom:839.653333pt;}
.y7{bottom:846.853333pt;}
.y16c{bottom:851.173333pt;}
.y42{bottom:851.493333pt;}
.y109{bottom:852.293333pt;}
.yd9{bottom:858.853333pt;}
.y6{bottom:862.213333pt;}
.y16b{bottom:866.533333pt;}
.y5{bottom:877.573333pt;}
.yd8{bottom:878.213333pt;}
.y16a{bottom:882.053333pt;}
.y108{bottom:883.493333pt;}
.y4{bottom:892.933333pt;}
.yd7{bottom:897.413333pt;}
.y107{bottom:901.093333pt;}
.y32{bottom:908.133333pt;}
.yd6{bottom:916.773333pt;}
.y169{bottom:917.573333pt;}
.y106{bottom:918.533333pt;}
.y3{bottom:923.493333pt;}
.y41{bottom:960.960000pt;}
.y40{bottom:978.560000pt;}
.y3f{bottom:995.520000pt;}
.h19{height:15.200000pt;}
.h1a{height:15.360000pt;}
.hc{height:15.392000pt;}
.he{height:16.800000pt;}
.h10{height:16.960000pt;}
.h12{height:18.560000pt;}
.h14{height:18.592000pt;}
.h15{height:18.720000pt;}
.h17{height:30.560000pt;}
.hf{height:30.592000pt;}
.hd{height:30.720000pt;}
.h11{height:30.752000pt;}
.h16{height:33.600000pt;}
.h1b{height:35.680000pt;}
.h1d{height:37.116563pt;}
.h7{height:45.795000pt;}
.h18{height:45.920000pt;}
.hb{height:46.080000pt;}
.h5{height:47.109375pt;}
.h13{height:48.375000pt;}
.h8{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h1c{height:54.598989pt;}
.h9{height:55.298750pt;}
.h6{height:55.402500pt;}
.h1{height:62.812500pt;}
.ha{height:65.781915pt;}
.h0{height:1056.000000pt;}
.w36{width:23.072000pt;}
.w31{width:27.520000pt;}
.w2a{width:27.552000pt;}
.w2e{width:29.760000pt;}
.w2c{width:29.920000pt;}
.w1e{width:34.240000pt;}
.w25{width:34.400000pt;}
.w35{width:34.560000pt;}
.w38{width:35.040000pt;}
.w23{width:35.872000pt;}
.w24{width:36.000000pt;}
.w1f{width:36.800000pt;}
.w20{width:36.832000pt;}
.w21{width:36.960000pt;}
.w22{width:40.640000pt;}
.w37{width:42.240000pt;}
.w1d{width:43.840000pt;}
.w1a{width:46.400000pt;}
.w1c{width:49.152000pt;}
.w29{width:51.520000pt;}
.w30{width:51.680000pt;}
.w12{width:56.000000pt;}
.w15{width:56.160000pt;}
.w17{width:57.440000pt;}
.w2d{width:61.760000pt;}
.w2b{width:61.920000pt;}
.w32{width:61.952000pt;}
.w3{width:65.472000pt;}
.w27{width:68.000000pt;}
.w14{width:74.880000pt;}
.w11{width:75.072000pt;}
.wa{width:76.640000pt;}
.w6{width:76.800000pt;}
.wb{width:81.920000pt;}
.wf{width:84.640000pt;}
.wc{width:86.432000pt;}
.w8{width:92.800000pt;}
.w9{width:92.832000pt;}
.we{width:95.872000pt;}
.w28{width:106.432000pt;}
.w2f{width:106.592000pt;}
.w4{width:112.000000pt;}
.w5{width:115.552000pt;}
.wd{width:120.672000pt;}
.w16{width:122.400000pt;}
.w18{width:122.560000pt;}
.w2{width:124.960000pt;}
.w7{width:124.992000pt;}
.w26{width:127.552000pt;}
.w1b{width:163.040000pt;}
.w34{width:169.146667pt;}
.w10{width:181.466667pt;}
.w13{width:181.666667pt;}
.w19{width:189.946667pt;}
.w33{width:429.826667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x6d{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x59{left:0.960000pt;}
.x39{left:3.040000pt;}
.x3b{left:4.800000pt;}
.x14{left:6.880000pt;}
.x53{left:8.160000pt;}
.x26{left:10.080000pt;}
.x1a{left:11.840000pt;}
.x3e{left:12.960000pt;}
.x1b{left:14.080000pt;}
.x2f{left:15.194667pt;}
.x3f{left:16.320000pt;}
.x60{left:17.960000pt;}
.x67{left:18.880000pt;}
.x2c{left:19.840000pt;}
.x71{left:20.800000pt;}
.x3d{left:21.920000pt;}
.x21{left:23.360000pt;}
.x24{left:24.960000pt;}
.x1e{left:26.080000pt;}
.x28{left:27.040000pt;}
.x4d{left:28.800000pt;}
.x4c{left:29.760000pt;}
.x2b{left:31.194667pt;}
.x29{left:32.634667pt;}
.x43{left:34.080000pt;}
.x2a{left:36.320000pt;}
.x68{left:37.306667pt;}
.x19{left:38.400000pt;}
.x4e{left:39.840000pt;}
.x35{left:41.280000pt;}
.x36{left:44.186667pt;}
.x1f{left:45.920000pt;}
.x20{left:47.706667pt;}
.x5f{left:49.594667pt;}
.x1d{left:55.834667pt;}
.x61{left:61.434667pt;}
.x44{left:76.666667pt;}
.x6b{left:79.520000pt;}
.x40{left:81.920000pt;}
.x2{left:94.591988pt;}
.xe{left:96.191988pt;}
.x4{left:97.631988pt;}
.x10{left:99.071988pt;}
.x75{left:100.191988pt;}
.x69{left:101.311988pt;}
.x46{left:105.152000pt;}
.x23{left:107.072000pt;}
.x9{left:116.511988pt;}
.x3{left:118.751988pt;}
.x6{left:124.031988pt;}
.x2d{left:125.152000pt;}
.xf{left:142.586655pt;}
.x76{left:147.354667pt;}
.xd{left:149.946655pt;}
.x45{left:185.146655pt;}
.x6c{left:186.906667pt;}
.x5{left:189.306655pt;}
.x7{left:197.466655pt;}
.x25{left:200.506667pt;}
.x6a{left:206.106655pt;}
.x2e{left:207.706667pt;}
.x15{left:221.466667pt;}
.x47{left:228.346667pt;}
.x22{left:238.906655pt;}
.x12{left:248.826655pt;}
.x54{left:252.666655pt;}
.x55{left:258.426667pt;}
.x41{left:264.226667pt;}
.x6e{left:267.906667pt;}
.x8{left:283.746655pt;}
.x16{left:287.586667pt;}
.x27{left:294.146667pt;}
.x56{left:308.546667pt;}
.x48{left:315.426667pt;}
.x6f{left:330.786667pt;}
.x42{left:339.746667pt;}
.x57{left:353.346667pt;}
.x70{left:368.546667pt;}
.x58{left:388.706667pt;}
.x1{left:399.266655pt;}
.x17{left:400.226667pt;}
.x13{left:407.266655pt;}
.x50{left:413.666667pt;}
.x72{left:416.226667pt;}
.x38{left:418.786667pt;}
.x32{left:424.546667pt;}
.x11{left:426.146655pt;}
.xc{left:431.266655pt;}
.x64{left:434.146667pt;}
.xa{left:435.746655pt;}
.x49{left:441.853333pt;}
.x62{left:444.413321pt;}
.x7a{left:455.293321pt;}
.x30{left:463.613321pt;}
.xb{left:479.293321pt;}
.x5a{left:502.173333pt;}
.x18{left:516.413333pt;}
.x4f{left:524.413321pt;}
.x37{left:538.813321pt;}
.x63{left:540.733321pt;}
.x5b{left:543.773333pt;}
.x33{left:545.853333pt;}
.x65{left:562.333333pt;}
.x4a{left:565.053333pt;}
.x77{left:569.053333pt;}
.x31{left:575.613321pt;}
.x5c{left:581.693333pt;}
.x1c{left:593.853333pt;}
.x3a{left:600.893333pt;}
.x51{left:604.253333pt;}
.x5d{left:618.533333pt;}
.x78{left:628.933333pt;}
.x34{left:642.373333pt;}
.x66{left:649.413333pt;}
.x4b{left:652.133333pt;}
.x5e{left:656.453333pt;}
.x73{left:667.493333pt;}
.x79{left:672.133333pt;}
.x3c{left:676.613333pt;}
.x52{left:691.333333pt;}
.x74{left:705.413333pt;}
}




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