
    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_9ee2f967aa2a516fa2ed5a81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_08379696ec7b3ec89324caf8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_867673e3e3412549d6da74ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_d92fc93b7e87b3aeb2998713.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068848;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_3e6c2fda95c0a43b8ab87bb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.768555;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_17cb57899f997ff51da1574a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_01a5014b60e666462564df3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068848;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.134000px;}
.ls16{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-0.984000px;}
.ls12{letter-spacing:-0.870000px;}
.lsd{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.152400px;}
.ls2{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.305280px;}
.ls3{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.328320px;}
.ls17{letter-spacing:0.414600px;}
.ls0{letter-spacing:18.305280px;}
.lsa{letter-spacing:34.841280px;}
.ls8{letter-spacing:44.945280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.240000px;}
.ws0{word-spacing:-33.426720px;}
.ws11{word-spacing:-18.829320px;}
.wse{word-spacing:-18.676920px;}
.ws1{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.wsa{word-spacing:-18.262320px;}
.ws9{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.wsf{word-spacing:-18.000120px;}
.ws13{word-spacing:-17.956920px;}
.wsd{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.544720px;}
.ws12{word-spacing:-17.430720px;}
.ws10{word-spacing:-17.388720px;}
.ws7{word-spacing:-16.506480px;}
.ws8{word-spacing:-15.228000px;}
.ws4{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.042960px;}
._24{margin-left:-4.811040px;}
._10{margin-left:-3.378240px;}
._0{margin-left:-1.803600px;}
._9{width:1.038960px;}
._1{width:2.051520px;}
._11{width:3.084960px;}
._25{width:4.333920px;}
._1f{width:5.431680px;}
._b{width:6.440400px;}
._c{width:7.867440px;}
._f{width:9.214320px;}
._8{width:10.267200px;}
._6{width:11.342160px;}
._7{width:12.786720px;}
._2{width:14.639040px;}
._3{width:16.033920px;}
._21{width:17.150400px;}
._1d{width:19.467120px;}
._d{width:20.998080px;}
._e{width:22.271760px;}
._19{width:23.316480px;}
._18{width:24.722640px;}
._1e{width:26.098560px;}
._5{width:27.423360px;}
._2f{width:28.498320px;}
._4{width:29.756880px;}
._22{width:31.346640px;}
._1c{width:32.472720px;}
._1b{width:33.797520px;}
._2e{width:35.760240px;}
._34{width:37.160640px;}
._2a{width:38.352960px;}
._20{width:39.750480px;}
._14{width:41.891760px;}
._2b{width:43.047120px;}
._15{width:44.874960px;}
._1a{width:46.261440px;}
._28{width:47.640000px;}
._12{width:49.613760px;}
._13{width:50.821200px;}
._30{width:52.793280px;}
._31{width:53.874480px;}
._2d{width:57.628800px;}
._35{width:58.953600px;}
._2c{width:60.543360px;}
._26{width:62.265600px;}
._27{width:63.355680px;}
._29{width:67.381200px;}
._17{width:70.972560px;}
._16{width:72.011520px;}
._23{width:82.387680px;}
._32{width:144.980640px;}
._33{width:146.036400px;}
._a{width:845.741280px;}
.fc2{color:rgb(10,186,240);}
.fc1{color:rgb(69,84,107);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:12.060000px;}
.y9f{bottom:12.240000px;}
.ya1{bottom:12.285000px;}
.y9c{bottom:16.740000px;}
.y1{bottom:60.120000px;}
.y104{bottom:113.040000px;}
.y9a{bottom:115.020000px;}
.ybc{bottom:118.260000px;}
.yd6{bottom:121.140000px;}
.y31{bottom:132.660000px;}
.y103{bottom:134.820000px;}
.y99{bottom:136.800000px;}
.ybb{bottom:140.040000px;}
.yd5{bottom:142.920000px;}
.y87{bottom:150.300000px;}
.y7b{bottom:151.020000px;}
.y30{bottom:154.620000px;}
.y102{bottom:156.600000px;}
.y5a{bottom:157.140000px;}
.y139{bottom:157.680000px;}
.yd4{bottom:164.880000px;}
.y86{bottom:167.580000px;}
.y7a{bottom:172.800000px;}
.y2f{bottom:176.400000px;}
.y98{bottom:176.760000px;}
.y101{bottom:178.380000px;}
.y59{bottom:178.920000px;}
.y138{bottom:179.640000px;}
.yba{bottom:179.820000px;}
.y85{bottom:184.860000px;}
.yd3{bottom:186.660000px;}
.y79{bottom:194.760000px;}
.y2e{bottom:198.180000px;}
.y97{bottom:198.540000px;}
.y100{bottom:200.340000px;}
.y58{bottom:200.880000px;}
.y137{bottom:201.420000px;}
.yb9{bottom:201.600000px;}
.y84{bottom:202.140000px;}
.yd2{bottom:208.440000px;}
.y10d{bottom:213.690000px;}
.y78{bottom:216.570000px;}
.y83{bottom:218.910000px;}
.y2d{bottom:219.990000px;}
.y96{bottom:220.350000px;}
.yff{bottom:222.150000px;}
.y57{bottom:222.690000px;}
.y136{bottom:223.230000px;}
.yb8{bottom:223.590000px;}
.yd1{bottom:230.250000px;}
.y10c{bottom:235.470000px;}
.y77{bottom:238.350000px;}
.y2c{bottom:241.950000px;}
.y95{bottom:242.130000px;}
.yfe{bottom:243.930000px;}
.y56{bottom:244.470000px;}
.y135{bottom:245.010000px;}
.yb7{bottom:245.370000px;}
.y10b{bottom:257.250000px;}
.y76{bottom:260.130000px;}
.y2b{bottom:263.730000px;}
.y94{bottom:264.090000px;}
.y55{bottom:266.250000px;}
.y134{bottom:266.790000px;}
.yb6{bottom:267.150000px;}
.yd0{bottom:270.030000px;}
.y10a{bottom:279.030000px;}
.y75{bottom:282.090000px;}
.yfd{bottom:283.710000px;}
.y2a{bottom:285.510000px;}
.y93{bottom:285.870000px;}
.y54{bottom:288.030000px;}
.y133{bottom:288.750000px;}
.yb5{bottom:288.930000px;}
.ycf{bottom:291.990000px;}
.y109{bottom:300.990000px;}
.yd8{bottom:303.870000px;}
.yfc{bottom:305.490000px;}
.y92{bottom:307.650000px;}
.y53{bottom:309.990000px;}
.y132{bottom:310.530000px;}
.yb4{bottom:310.890000px;}
.yce{bottom:313.770000px;}
.y74{bottom:321.870000px;}
.y108{bottom:322.770000px;}
.yd7{bottom:325.650000px;}
.yfb{bottom:327.450000px;}
.y29{bottom:328.170000px;}
.y52{bottom:331.770000px;}
.y131{bottom:332.490000px;}
.yb3{bottom:332.670000px;}
.ycd{bottom:335.550000px;}
.y73{bottom:343.650000px;}
.y91{bottom:347.430000px;}
.yfa{bottom:349.230000px;}
.y51{bottom:353.550000px;}
.yb2{bottom:354.450000px;}
.y130{bottom:354.630000px;}
.y107{bottom:356.430000px;}
.ycc{bottom:357.330000px;}
.y28{bottom:360.030000px;}
.y72{bottom:365.430000px;}
.ye6{bottom:368.670000px;}
.y90{bottom:369.210000px;}
.yf9{bottom:371.010000px;}
.y50{bottom:375.330000px;}
.yb1{bottom:376.230000px;}
.y12f{bottom:376.410000px;}
.ycb{bottom:379.290000px;}
.y71{bottom:387.210000px;}
.ye5{bottom:390.450000px;}
.y8f{bottom:391.170000px;}
.yf8{bottom:392.790000px;}
.y4f{bottom:397.290000px;}
.y12e{bottom:398.190000px;}
.yca{bottom:401.070000px;}
.y70{bottom:409.170000px;}
.ye4{bottom:412.230000px;}
.y8e{bottom:412.950000px;}
.y27{bottom:413.310000px;}
.yf7{bottom:414.750000px;}
.yb0{bottom:416.010000px;}
.y12d{bottom:419.970000px;}
.yc9{bottom:422.850000px;}
.y6f{bottom:430.950000px;}
.ye3{bottom:434.190000px;}
.y8d{bottom:434.730000px;}
.yf6{bottom:436.530000px;}
.yaf{bottom:437.970000px;}
.y4e{bottom:439.950000px;}
.y12c{bottom:441.930000px;}
.yc8{bottom:444.630000px;}
.y26{bottom:451.335000px;}
.y106{bottom:452.235000px;}
.y6e{bottom:452.775000px;}
.ye2{bottom:456.015000px;}
.yae{bottom:459.795000px;}
.y12b{bottom:463.755000px;}
.y25{bottom:468.615000px;}
.y105{bottom:474.015000px;}
.y6d{bottom:474.555000px;}
.ye1{bottom:477.795000px;}
.yf5{bottom:479.235000px;}
.yc7{bottom:484.455000px;}
.y12a{bottom:485.535000px;}
.y24{bottom:485.895000px;}
.yad{bottom:493.995000px;}
.y4d{bottom:495.795000px;}
.y6c{bottom:496.515000px;}
.y23{bottom:503.175000px;}
.yc6{bottom:506.415000px;}
.y129{bottom:507.315000px;}
.y22{bottom:517.215000px;}
.ye0{bottom:517.575000px;}
.y6b{bottom:518.295000px;}
.yc5{bottom:528.195000px;}
.yac{bottom:528.735000px;}
.y128{bottom:529.095000px;}
.yf4{bottom:535.035000px;}
.y4c{bottom:535.575000px;}
.ydf{bottom:539.535000px;}
.y6a{bottom:540.075000px;}
.y149{bottom:548.895000px;}
.yc4{bottom:549.975000px;}
.y127{bottom:551.055000px;}
.y4b{bottom:557.535000px;}
.yde{bottom:561.315000px;}
.y8c{bottom:561.855000px;}
.yab{bottom:563.655000px;}
.y148{bottom:570.855000px;}
.yc3{bottom:571.755000px;}
.y126{bottom:572.835000px;}
.yf3{bottom:574.995000px;}
.y4a{bottom:579.315000px;}
.y69{bottom:582.735000px;}
.ydd{bottom:583.095000px;}
.y8b{bottom:583.635000px;}
.y147{bottom:592.635000px;}
.yc2{bottom:593.715000px;}
.y125{bottom:594.615000px;}
.yf2{bottom:596.775000px;}
.yaa{bottom:598.395000px;}
.y49{bottom:601.095000px;}
.ydc{bottom:604.875000px;}
.y146{bottom:614.415000px;}
.y68{bottom:614.595000px;}
.yc1{bottom:615.495000px;}
.y124{bottom:616.395000px;}
.yf1{bottom:618.555000px;}
.y48{bottom:622.875000px;}
.y8a{bottom:626.475000px;}
.ydb{bottom:626.655000px;}
.ya9{bottom:633.135000px;}
.y145{bottom:636.195000px;}
.yc0{bottom:637.275000px;}
.y123{bottom:638.355000px;}
.yf0{bottom:640.335000px;}
.y47{bottom:644.655000px;}
.yda{bottom:648.615000px;}
.y144{bottom:657.975000px;}
.y89{bottom:658.155000px;}
.y122{bottom:660.495000px;}
.yef{bottom:662.115000px;}
.y82{bottom:666.615000px;}
.ya8{bottom:668.055000px;}
.y67{bottom:670.395000px;}
.ybf{bottom:679.935000px;}
.y121{bottom:682.305000px;}
.yee{bottom:684.105000px;}
.y46{bottom:684.645000px;}
.y81{bottom:688.425000px;}
.y12{bottom:688.605000px;}
.yd9{bottom:692.205000px;}
.y143{bottom:702.105000px;}
.ya7{bottom:702.825000px;}
.y120{bottom:704.265000px;}
.yed{bottom:705.885000px;}
.y45{bottom:706.425000px;}
.y66{bottom:710.205000px;}
.y11{bottom:710.385000px;}
.y88{bottom:713.985000px;}
.y142{bottom:723.885000px;}
.y11f{bottom:726.045000px;}
.yec{bottom:727.665000px;}
.y44{bottom:728.205000px;}
.y65{bottom:731.985000px;}
.y10{bottom:732.345000px;}
.ybe{bottom:735.765000px;}
.ya6{bottom:737.565000px;}
.y141{bottom:745.845000px;}
.y11e{bottom:747.825000px;}
.yeb{bottom:749.445000px;}
.y43{bottom:749.985000px;}
.y64{bottom:753.765000px;}
.yf{bottom:754.125000px;}
.y140{bottom:767.625000px;}
.y11d{bottom:769.605000px;}
.yea{bottom:771.405000px;}
.y42{bottom:771.765000px;}
.ya5{bottom:772.485000px;}
.y80{bottom:775.725000px;}
.ye{bottom:775.905000px;}
.y13f{bottom:789.405000px;}
.y11c{bottom:791.565000px;}
.y41{bottom:793.725000px;}
.y7f{bottom:797.505000px;}
.yd{bottom:797.685000px;}
.y21{bottom:805.605000px;}
.ya4{bottom:807.225000px;}
.ye9{bottom:810.645000px;}
.y13e{bottom:811.725000px;}
.y11b{bottom:813.345000px;}
.y40{bottom:815.505000px;}
.y7e{bottom:819.285000px;}
.y20{bottom:827.385000px;}
.ye8{bottom:830.445000px;}
.yc{bottom:831.525000px;}
.y13d{bottom:833.505000px;}
.y11a{bottom:835.125000px;}
.y3f{bottom:837.285000px;}
.y7d{bottom:841.065000px;}
.ya3{bottom:841.965000px;}
.ye7{bottom:847.365000px;}
.y1f{bottom:849.165000px;}
.y13c{bottom:855.285000px;}
.y119{bottom:856.905000px;}
.y3e{bottom:859.065000px;}
.y7c{bottom:863.025000px;}
.y1e{bottom:870.945000px;}
.ya2{bottom:876.885000px;}
.y13b{bottom:877.065000px;}
.y118{bottom:878.685000px;}
.y3d{bottom:881.025000px;}
.ybd{bottom:884.805000px;}
.yb{bottom:887.325000px;}
.y1d{bottom:892.905000px;}
.y13a{bottom:899.025000px;}
.y117{bottom:900.645000px;}
.y3c{bottom:902.805000px;}
.ya{bottom:909.105000px;}
.ya0{bottom:911.625000px;}
.y1c{bottom:914.685000px;}
.y63{bottom:920.850000px;}
.y116{bottom:922.470000px;}
.y3b{bottom:924.630000px;}
.y9{bottom:930.930000px;}
.y1b{bottom:936.510000px;}
.y62{bottom:942.630000px;}
.y115{bottom:944.610000px;}
.y3a{bottom:946.410000px;}
.y8{bottom:952.890000px;}
.y1a{bottom:958.290000px;}
.y61{bottom:964.410000px;}
.y114{bottom:966.570000px;}
.y39{bottom:968.190000px;}
.y7{bottom:974.670000px;}
.y19{bottom:980.250000px;}
.y9d{bottom:981.330000px;}
.y60{bottom:986.190000px;}
.y113{bottom:988.710000px;}
.y38{bottom:990.150000px;}
.y6{bottom:996.450000px;}
.y18{bottom:1002.030000px;}
.y5f{bottom:1008.150000px;}
.y112{bottom:1010.670000px;}
.y37{bottom:1011.930000px;}
.y9b{bottom:1016.970000px;}
.y5{bottom:1018.230000px;}
.y17{bottom:1023.810000px;}
.y5e{bottom:1029.930000px;}
.y111{bottom:1032.810000px;}
.y36{bottom:1033.710000px;}
.y4{bottom:1040.010000px;}
.y16{bottom:1045.590000px;}
.y5d{bottom:1051.710000px;}
.y110{bottom:1054.590000px;}
.y35{bottom:1055.490000px;}
.y15{bottom:1067.370000px;}
.y5c{bottom:1073.490000px;}
.y3{bottom:1074.570000px;}
.y10f{bottom:1076.370000px;}
.y34{bottom:1077.450000px;}
.y14{bottom:1089.330000px;}
.y5b{bottom:1095.450000px;}
.y10e{bottom:1098.330000px;}
.y2{bottom:1112.370000px;}
.y33{bottom:1117.230000px;}
.y13{bottom:1131.990000px;}
.y32{bottom:1139.010000px;}
.ha{height:34.020000px;}
.he{height:34.056000px;}
.hd{height:34.200000px;}
.hb{height:47.223633px;}
.hc{height:48.436523px;}
.h8{height:50.220000px;}
.h6{height:53.603086px;}
.h9{height:57.927656px;}
.h2{height:59.415469px;}
.h7{height:64.582031px;}
.h5{height:83.743242px;}
.h4{height:107.851992px;}
.h3{height:161.455078px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:81.000000px;}
.w9{width:89.496000px;}
.w5{width:90.036000px;}
.w7{width:117.720000px;}
.w3{width:118.080000px;}
.w8{width:356.295000px;}
.w4{width:356.835000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.560000px;}
.x2{left:108.035987px;}
.x9{left:135.035987px;}
.xa{left:162.029987px;}
.x6{left:226.110000px;}
.x7{left:582.945000px;}
.x8{left:672.990000px;}
.xb{left:766.949987px;}
.x1{left:776.129987px;}
.x3{left:784.949987px;}
.x4{left:786.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.008000pt;}
.ls16{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.874667pt;}
.ls12{letter-spacing:-0.773333pt;}
.lsd{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls2{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.271360pt;}
.ls3{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.291840pt;}
.ls17{letter-spacing:0.368533pt;}
.ls0{letter-spacing:16.271360pt;}
.lsa{letter-spacing:30.970027pt;}
.ls8{letter-spacing:39.951360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws0{word-spacing:-29.712640pt;}
.ws11{word-spacing:-16.737173pt;}
.wse{word-spacing:-16.601707pt;}
.ws1{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.wsa{word-spacing:-16.233173pt;}
.ws9{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.wsf{word-spacing:-16.000107pt;}
.ws13{word-spacing:-15.961707pt;}
.wsd{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.595307pt;}
.ws12{word-spacing:-15.493973pt;}
.ws10{word-spacing:-15.456640pt;}
.ws7{word-spacing:-14.672427pt;}
.ws8{word-spacing:-13.536000pt;}
.ws4{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.038187pt;}
._24{margin-left:-4.276480pt;}
._10{margin-left:-3.002880pt;}
._0{margin-left:-1.603200pt;}
._9{width:0.923520pt;}
._1{width:1.823573pt;}
._11{width:2.742187pt;}
._25{width:3.852373pt;}
._1f{width:4.828160pt;}
._b{width:5.724800pt;}
._c{width:6.993280pt;}
._f{width:8.190507pt;}
._8{width:9.126400pt;}
._6{width:10.081920pt;}
._7{width:11.365973pt;}
._2{width:13.012480pt;}
._3{width:14.252373pt;}
._21{width:15.244800pt;}
._1d{width:17.304107pt;}
._d{width:18.664960pt;}
._e{width:19.797120pt;}
._19{width:20.725760pt;}
._18{width:21.975680pt;}
._1e{width:23.198720pt;}
._5{width:24.376320pt;}
._2f{width:25.331840pt;}
._4{width:26.450560pt;}
._22{width:27.863680pt;}
._1c{width:28.864640pt;}
._1b{width:30.042240pt;}
._2e{width:31.786880pt;}
._34{width:33.031680pt;}
._2a{width:34.091520pt;}
._20{width:35.333760pt;}
._14{width:37.237120pt;}
._2b{width:38.264107pt;}
._15{width:39.888853pt;}
._1a{width:41.121280pt;}
._28{width:42.346667pt;}
._12{width:44.101120pt;}
._13{width:45.174400pt;}
._30{width:46.927360pt;}
._31{width:47.888427pt;}
._2d{width:51.225600pt;}
._35{width:52.403200pt;}
._2c{width:53.816320pt;}
._26{width:55.347200pt;}
._27{width:56.316160pt;}
._29{width:59.894400pt;}
._17{width:63.086720pt;}
._16{width:64.010240pt;}
._23{width:73.233493pt;}
._32{width:128.871680pt;}
._33{width:129.810133pt;}
._a{width:751.770027pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:10.720000pt;}
.y9f{bottom:10.880000pt;}
.ya1{bottom:10.920000pt;}
.y9c{bottom:14.880000pt;}
.y1{bottom:53.440000pt;}
.y104{bottom:100.480000pt;}
.y9a{bottom:102.240000pt;}
.ybc{bottom:105.120000pt;}
.yd6{bottom:107.680000pt;}
.y31{bottom:117.920000pt;}
.y103{bottom:119.840000pt;}
.y99{bottom:121.600000pt;}
.ybb{bottom:124.480000pt;}
.yd5{bottom:127.040000pt;}
.y87{bottom:133.600000pt;}
.y7b{bottom:134.240000pt;}
.y30{bottom:137.440000pt;}
.y102{bottom:139.200000pt;}
.y5a{bottom:139.680000pt;}
.y139{bottom:140.160000pt;}
.yd4{bottom:146.560000pt;}
.y86{bottom:148.960000pt;}
.y7a{bottom:153.600000pt;}
.y2f{bottom:156.800000pt;}
.y98{bottom:157.120000pt;}
.y101{bottom:158.560000pt;}
.y59{bottom:159.040000pt;}
.y138{bottom:159.680000pt;}
.yba{bottom:159.840000pt;}
.y85{bottom:164.320000pt;}
.yd3{bottom:165.920000pt;}
.y79{bottom:173.120000pt;}
.y2e{bottom:176.160000pt;}
.y97{bottom:176.480000pt;}
.y100{bottom:178.080000pt;}
.y58{bottom:178.560000pt;}
.y137{bottom:179.040000pt;}
.yb9{bottom:179.200000pt;}
.y84{bottom:179.680000pt;}
.yd2{bottom:185.280000pt;}
.y10d{bottom:189.946667pt;}
.y78{bottom:192.506667pt;}
.y83{bottom:194.586667pt;}
.y2d{bottom:195.546667pt;}
.y96{bottom:195.866667pt;}
.yff{bottom:197.466667pt;}
.y57{bottom:197.946667pt;}
.y136{bottom:198.426667pt;}
.yb8{bottom:198.746667pt;}
.yd1{bottom:204.666667pt;}
.y10c{bottom:209.306667pt;}
.y77{bottom:211.866667pt;}
.y2c{bottom:215.066667pt;}
.y95{bottom:215.226667pt;}
.yfe{bottom:216.826667pt;}
.y56{bottom:217.306667pt;}
.y135{bottom:217.786667pt;}
.yb7{bottom:218.106667pt;}
.y10b{bottom:228.666667pt;}
.y76{bottom:231.226667pt;}
.y2b{bottom:234.426667pt;}
.y94{bottom:234.746667pt;}
.y55{bottom:236.666667pt;}
.y134{bottom:237.146667pt;}
.yb6{bottom:237.466667pt;}
.yd0{bottom:240.026667pt;}
.y10a{bottom:248.026667pt;}
.y75{bottom:250.746667pt;}
.yfd{bottom:252.186667pt;}
.y2a{bottom:253.786667pt;}
.y93{bottom:254.106667pt;}
.y54{bottom:256.026667pt;}
.y133{bottom:256.666667pt;}
.yb5{bottom:256.826667pt;}
.ycf{bottom:259.546667pt;}
.y109{bottom:267.546667pt;}
.yd8{bottom:270.106667pt;}
.yfc{bottom:271.546667pt;}
.y92{bottom:273.466667pt;}
.y53{bottom:275.546667pt;}
.y132{bottom:276.026667pt;}
.yb4{bottom:276.346667pt;}
.yce{bottom:278.906667pt;}
.y74{bottom:286.106667pt;}
.y108{bottom:286.906667pt;}
.yd7{bottom:289.466667pt;}
.yfb{bottom:291.066667pt;}
.y29{bottom:291.706667pt;}
.y52{bottom:294.906667pt;}
.y131{bottom:295.546667pt;}
.yb3{bottom:295.706667pt;}
.ycd{bottom:298.266667pt;}
.y73{bottom:305.466667pt;}
.y91{bottom:308.826667pt;}
.yfa{bottom:310.426667pt;}
.y51{bottom:314.266667pt;}
.yb2{bottom:315.066667pt;}
.y130{bottom:315.226667pt;}
.y107{bottom:316.826667pt;}
.ycc{bottom:317.626667pt;}
.y28{bottom:320.026667pt;}
.y72{bottom:324.826667pt;}
.ye6{bottom:327.706667pt;}
.y90{bottom:328.186667pt;}
.yf9{bottom:329.786667pt;}
.y50{bottom:333.626667pt;}
.yb1{bottom:334.426667pt;}
.y12f{bottom:334.586667pt;}
.ycb{bottom:337.146667pt;}
.y71{bottom:344.186667pt;}
.ye5{bottom:347.066667pt;}
.y8f{bottom:347.706667pt;}
.yf8{bottom:349.146667pt;}
.y4f{bottom:353.146667pt;}
.y12e{bottom:353.946667pt;}
.yca{bottom:356.506667pt;}
.y70{bottom:363.706667pt;}
.ye4{bottom:366.426667pt;}
.y8e{bottom:367.066667pt;}
.y27{bottom:367.386667pt;}
.yf7{bottom:368.666667pt;}
.yb0{bottom:369.786667pt;}
.y12d{bottom:373.306667pt;}
.yc9{bottom:375.866667pt;}
.y6f{bottom:383.066667pt;}
.ye3{bottom:385.946667pt;}
.y8d{bottom:386.426667pt;}
.yf6{bottom:388.026667pt;}
.yaf{bottom:389.306667pt;}
.y4e{bottom:391.066667pt;}
.y12c{bottom:392.826667pt;}
.yc8{bottom:395.226667pt;}
.y26{bottom:401.186667pt;}
.y106{bottom:401.986667pt;}
.y6e{bottom:402.466667pt;}
.ye2{bottom:405.346667pt;}
.yae{bottom:408.706667pt;}
.y12b{bottom:412.226667pt;}
.y25{bottom:416.546667pt;}
.y105{bottom:421.346667pt;}
.y6d{bottom:421.826667pt;}
.ye1{bottom:424.706667pt;}
.yf5{bottom:425.986667pt;}
.yc7{bottom:430.626667pt;}
.y12a{bottom:431.586667pt;}
.y24{bottom:431.906667pt;}
.yad{bottom:439.106667pt;}
.y4d{bottom:440.706667pt;}
.y6c{bottom:441.346667pt;}
.y23{bottom:447.266667pt;}
.yc6{bottom:450.146667pt;}
.y129{bottom:450.946667pt;}
.y22{bottom:459.746667pt;}
.ye0{bottom:460.066667pt;}
.y6b{bottom:460.706667pt;}
.yc5{bottom:469.506667pt;}
.yac{bottom:469.986667pt;}
.y128{bottom:470.306667pt;}
.yf4{bottom:475.586667pt;}
.y4c{bottom:476.066667pt;}
.ydf{bottom:479.586667pt;}
.y6a{bottom:480.066667pt;}
.y149{bottom:487.906667pt;}
.yc4{bottom:488.866667pt;}
.y127{bottom:489.826667pt;}
.y4b{bottom:495.586667pt;}
.yde{bottom:498.946667pt;}
.y8c{bottom:499.426667pt;}
.yab{bottom:501.026667pt;}
.y148{bottom:507.426667pt;}
.yc3{bottom:508.226667pt;}
.y126{bottom:509.186667pt;}
.yf3{bottom:511.106667pt;}
.y4a{bottom:514.946667pt;}
.y69{bottom:517.986667pt;}
.ydd{bottom:518.306667pt;}
.y8b{bottom:518.786667pt;}
.y147{bottom:526.786667pt;}
.yc2{bottom:527.746667pt;}
.y125{bottom:528.546667pt;}
.yf2{bottom:530.466667pt;}
.yaa{bottom:531.906667pt;}
.y49{bottom:534.306667pt;}
.ydc{bottom:537.666667pt;}
.y146{bottom:546.146667pt;}
.y68{bottom:546.306667pt;}
.yc1{bottom:547.106667pt;}
.y124{bottom:547.906667pt;}
.yf1{bottom:549.826667pt;}
.y48{bottom:553.666667pt;}
.y8a{bottom:556.866667pt;}
.ydb{bottom:557.026667pt;}
.ya9{bottom:562.786667pt;}
.y145{bottom:565.506667pt;}
.yc0{bottom:566.466667pt;}
.y123{bottom:567.426667pt;}
.yf0{bottom:569.186667pt;}
.y47{bottom:573.026667pt;}
.yda{bottom:576.546667pt;}
.y144{bottom:584.866667pt;}
.y89{bottom:585.026667pt;}
.y122{bottom:587.106667pt;}
.yef{bottom:588.546667pt;}
.y82{bottom:592.546667pt;}
.ya8{bottom:593.826667pt;}
.y67{bottom:595.906667pt;}
.ybf{bottom:604.386667pt;}
.y121{bottom:606.493333pt;}
.yee{bottom:608.093333pt;}
.y46{bottom:608.573333pt;}
.y81{bottom:611.933333pt;}
.y12{bottom:612.093333pt;}
.yd9{bottom:615.293333pt;}
.y143{bottom:624.093333pt;}
.ya7{bottom:624.733333pt;}
.y120{bottom:626.013333pt;}
.yed{bottom:627.453333pt;}
.y45{bottom:627.933333pt;}
.y66{bottom:631.293333pt;}
.y11{bottom:631.453333pt;}
.y88{bottom:634.653333pt;}
.y142{bottom:643.453333pt;}
.y11f{bottom:645.373333pt;}
.yec{bottom:646.813333pt;}
.y44{bottom:647.293333pt;}
.y65{bottom:650.653333pt;}
.y10{bottom:650.973333pt;}
.ybe{bottom:654.013333pt;}
.ya6{bottom:655.613333pt;}
.y141{bottom:662.973333pt;}
.y11e{bottom:664.733333pt;}
.yeb{bottom:666.173333pt;}
.y43{bottom:666.653333pt;}
.y64{bottom:670.013333pt;}
.yf{bottom:670.333333pt;}
.y140{bottom:682.333333pt;}
.y11d{bottom:684.093333pt;}
.yea{bottom:685.693333pt;}
.y42{bottom:686.013333pt;}
.ya5{bottom:686.653333pt;}
.y80{bottom:689.533333pt;}
.ye{bottom:689.693333pt;}
.y13f{bottom:701.693333pt;}
.y11c{bottom:703.613333pt;}
.y41{bottom:705.533333pt;}
.y7f{bottom:708.893333pt;}
.yd{bottom:709.053333pt;}
.y21{bottom:716.093333pt;}
.ya4{bottom:717.533333pt;}
.ye9{bottom:720.573333pt;}
.y13e{bottom:721.533333pt;}
.y11b{bottom:722.973333pt;}
.y40{bottom:724.893333pt;}
.y7e{bottom:728.253333pt;}
.y20{bottom:735.453333pt;}
.ye8{bottom:738.173333pt;}
.yc{bottom:739.133333pt;}
.y13d{bottom:740.893333pt;}
.y11a{bottom:742.333333pt;}
.y3f{bottom:744.253333pt;}
.y7d{bottom:747.613333pt;}
.ya3{bottom:748.413333pt;}
.ye7{bottom:753.213333pt;}
.y1f{bottom:754.813333pt;}
.y13c{bottom:760.253333pt;}
.y119{bottom:761.693333pt;}
.y3e{bottom:763.613333pt;}
.y7c{bottom:767.133333pt;}
.y1e{bottom:774.173333pt;}
.ya2{bottom:779.453333pt;}
.y13b{bottom:779.613333pt;}
.y118{bottom:781.053333pt;}
.y3d{bottom:783.133333pt;}
.ybd{bottom:786.493333pt;}
.yb{bottom:788.733333pt;}
.y1d{bottom:793.693333pt;}
.y13a{bottom:799.133333pt;}
.y117{bottom:800.573333pt;}
.y3c{bottom:802.493333pt;}
.ya{bottom:808.093333pt;}
.ya0{bottom:810.333333pt;}
.y1c{bottom:813.053333pt;}
.y63{bottom:818.533333pt;}
.y116{bottom:819.973333pt;}
.y3b{bottom:821.893333pt;}
.y9{bottom:827.493333pt;}
.y1b{bottom:832.453333pt;}
.y62{bottom:837.893333pt;}
.y115{bottom:839.653333pt;}
.y3a{bottom:841.253333pt;}
.y8{bottom:847.013333pt;}
.y1a{bottom:851.813333pt;}
.y61{bottom:857.253333pt;}
.y114{bottom:859.173333pt;}
.y39{bottom:860.613333pt;}
.y7{bottom:866.373333pt;}
.y19{bottom:871.333333pt;}
.y9d{bottom:872.293333pt;}
.y60{bottom:876.613333pt;}
.y113{bottom:878.853333pt;}
.y38{bottom:880.133333pt;}
.y6{bottom:885.733333pt;}
.y18{bottom:890.693333pt;}
.y5f{bottom:896.133333pt;}
.y112{bottom:898.373333pt;}
.y37{bottom:899.493333pt;}
.y9b{bottom:903.973333pt;}
.y5{bottom:905.093333pt;}
.y17{bottom:910.053333pt;}
.y5e{bottom:915.493333pt;}
.y111{bottom:918.053333pt;}
.y36{bottom:918.853333pt;}
.y4{bottom:924.453333pt;}
.y16{bottom:929.413333pt;}
.y5d{bottom:934.853333pt;}
.y110{bottom:937.413333pt;}
.y35{bottom:938.213333pt;}
.y15{bottom:948.773333pt;}
.y5c{bottom:954.213333pt;}
.y3{bottom:955.173333pt;}
.y10f{bottom:956.773333pt;}
.y34{bottom:957.733333pt;}
.y14{bottom:968.293333pt;}
.y5b{bottom:973.733333pt;}
.y10e{bottom:976.293333pt;}
.y2{bottom:988.773333pt;}
.y33{bottom:993.093333pt;}
.y13{bottom:1006.213333pt;}
.y32{bottom:1012.453333pt;}
.ha{height:30.240000pt;}
.he{height:30.272000pt;}
.hd{height:30.400000pt;}
.hb{height:41.976562pt;}
.hc{height:43.054688pt;}
.h8{height:44.640000pt;}
.h6{height:47.647188pt;}
.h9{height:51.491250pt;}
.h2{height:52.813750pt;}
.h7{height:57.406250pt;}
.h5{height:74.438437pt;}
.h4{height:95.868437pt;}
.h3{height:143.515625pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:72.000000pt;}
.w9{width:79.552000pt;}
.w5{width:80.032000pt;}
.w7{width:104.640000pt;}
.w3{width:104.960000pt;}
.w8{width:316.706667pt;}
.w4{width:317.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.720000pt;}
.x2{left:96.031988pt;}
.x9{left:120.031988pt;}
.xa{left:144.026655pt;}
.x6{left:200.986667pt;}
.x7{left:518.173333pt;}
.x8{left:598.213333pt;}
.xb{left:681.733322pt;}
.x1{left:689.893322pt;}
.x3{left:697.733322pt;}
.x4{left:698.853322pt;}
}




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