
    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_422a1948873ac03fe6847551.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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_c8b8b5bc9a2bb77cd38b2dc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_d3c43cad8717fdfa7b62dacc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bf39587aa261a0a0d64742f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_75bd95667772701df0473aa4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a64aea67d240f548412d7358.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.364258;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a1a9ff63f4fc6153e5a1c808.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf57dbe0ad2fb036c4c67ab2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_be1b6e9545a01ad9f7d5ff74.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v9{vertical-align:-69.120000px;}
.v4{vertical-align:-12.240000px;}
.v2{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v3{vertical-align:20.880000px;}
.v7{vertical-align:40.320000px;}
.v6{vertical-align:46.080000px;}
.v8{vertical-align:62.640000px;}
.ls1e{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.260400px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.013200px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004200px;}
.ls2{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.513600px;}
.lsa{letter-spacing:0.612000px;}
.ls1a{letter-spacing:0.726000px;}
.lsd{letter-spacing:0.900000px;}
.ls17{letter-spacing:3.180960px;}
.ls16{letter-spacing:10.068960px;}
.ls15{letter-spacing:17.279280px;}
.ls14{letter-spacing:20.815200px;}
.ls7{letter-spacing:22.986720px;}
.ls11{letter-spacing:25.866720px;}
.ls12{letter-spacing:29.442720px;}
.ls1d{letter-spacing:33.984000px;}
.ls1c{letter-spacing:53.424000px;}
.ls10{letter-spacing:55.386720px;}
.lse{letter-spacing:64.026720px;}
.ls13{letter-spacing:66.162720px;}
.ls18{letter-spacing:902.496000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws6{word-spacing:-27.000000px;}
.ws7{word-spacing:-21.780000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.225280px;}
.ws4{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.506480px;}
.ws12{word-spacing:-15.406800px;}
.ws8{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws11{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.220000px;}
.wsf{word-spacing:-11.388000px;}
.wsd{word-spacing:-10.446000px;}
.wsc{word-spacing:-9.724200px;}
.wsb{word-spacing:-9.720000px;}
.wse{word-spacing:-9.706800px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-4.239120px;}
._3{margin-left:-2.699760px;}
._2{margin-left:-1.011120px;}
._0{width:1.012080px;}
._1{width:2.026320px;}
._4{width:3.260880px;}
._7{width:4.275840px;}
._8{width:5.286240px;}
._c{width:6.454080px;}
._e{width:7.587360px;}
._a{width:8.605440px;}
._b{width:9.636720px;}
._d{width:10.704240px;}
._5{width:11.832480px;}
._6{width:13.217520px;}
._1a{width:19.362240px;}
._1b{width:20.676960px;}
._10{width:24.855360px;}
._f{width:26.354160px;}
._15{width:30.955680px;}
._14{width:32.150880px;}
._19{width:33.596640px;}
._11{width:42.963840px;}
._12{width:44.430720px;}
._17{width:46.672560px;}
._13{width:53.066880px;}
._16{width:104.062320px;}
._18{width:110.559840px;}
._1c{width:147.308400px;}
.fc2{color:transparent;}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:1.080000px;}
.y38{bottom:2.526000px;}
.ya9{bottom:2.700000px;}
.y8b{bottom:3.240000px;}
.yff{bottom:3.960000px;}
.y4{bottom:6.480000px;}
.y7{bottom:7.020000px;}
.ya8{bottom:12.780000px;}
.yaa{bottom:13.320000px;}
.y37{bottom:42.000000px;}
.y5{bottom:46.440000px;}
.y3{bottom:63.180000px;}
.y7d{bottom:98.136000px;}
.y10c{bottom:101.016000px;}
.y36{bottom:102.816000px;}
.y126{bottom:102.996000px;}
.y96{bottom:111.456000px;}
.y7c{bottom:115.416000px;}
.y10b{bottom:118.296000px;}
.y35{bottom:120.096000px;}
.y125{bottom:120.276000px;}
.ye2{bottom:123.156000px;}
.ybb{bottom:125.676000px;}
.y95{bottom:128.736000px;}
.y7b{bottom:132.696000px;}
.y10a{bottom:135.576000px;}
.y34{bottom:137.376000px;}
.y124{bottom:137.556000px;}
.yba{bottom:139.716000px;}
.ye1{bottom:140.436000px;}
.y94{bottom:142.776000px;}
.y71{bottom:146.196000px;}
.y7a{bottom:146.736000px;}
.yf5{bottom:147.276000px;}
.y109{bottom:149.616000px;}
.y33{bottom:154.650000px;}
.y123{bottom:154.830000px;}
.ye0{bottom:157.710000px;}
.y70{bottom:163.470000px;}
.yf4{bottom:164.550000px;}
.y32{bottom:171.750000px;}
.y122{bottom:172.110000px;}
.ydf{bottom:174.990000px;}
.y11{bottom:179.505000px;}
.y6f{bottom:180.750000px;}
.yf3{bottom:181.830000px;}
.y31{bottom:189.030000px;}
.y121{bottom:189.390000px;}
.yde{bottom:192.090000px;}
.yf2{bottom:195.690000px;}
.y6e{bottom:199.110000px;}
.y30{bottom:206.310000px;}
.y120{bottom:206.490000px;}
.ydd{bottom:209.370000px;}
.y6d{bottom:217.290000px;}
.y2f{bottom:223.590000px;}
.y11f{bottom:223.770000px;}
.ydc{bottom:226.650000px;}
.y6c{bottom:235.650000px;}
.y2e{bottom:240.870000px;}
.y11e{bottom:241.050000px;}
.ydb{bottom:243.930000px;}
.y6b{bottom:252.930000px;}
.y2d{bottom:257.970000px;}
.y11d{bottom:258.330000px;}
.yda{bottom:261.210000px;}
.y6a{bottom:271.290000px;}
.y2c{bottom:275.250000px;}
.y11c{bottom:275.610000px;}
.yd9{bottom:278.490000px;}
.y69{bottom:288.570000px;}
.y2b{bottom:292.530000px;}
.y11b{bottom:292.890000px;}
.yd8{bottom:295.590000px;}
.y68{bottom:306.750000px;}
.y2a{bottom:309.630000px;}
.y11a{bottom:309.990000px;}
.yd7{bottom:312.870000px;}
.y67{bottom:324.030000px;}
.y29{bottom:326.730000px;}
.y119{bottom:327.270000px;}
.yd6{bottom:330.150000px;}
.y66{bottom:342.435000px;}
.y28{bottom:343.875000px;}
.y118{bottom:344.595000px;}
.yd5{bottom:347.475000px;}
.y65{bottom:360.795000px;}
.y27{bottom:360.975000px;}
.y117{bottom:361.875000px;}
.yd4{bottom:364.755000px;}
.y26{bottom:378.075000px;}
.y116{bottom:379.155000px;}
.yd3{bottom:382.035000px;}
.y25{bottom:395.175000px;}
.y115{bottom:396.255000px;}
.yd2{bottom:399.135000px;}
.y24{bottom:412.275000px;}
.y64{bottom:412.455000px;}
.y114{bottom:413.535000px;}
.yd1{bottom:416.415000px;}
.y23{bottom:429.375000px;}
.y63{bottom:429.735000px;}
.y113{bottom:430.815000px;}
.yd0{bottom:433.695000px;}
.y22{bottom:446.475000px;}
.y62{bottom:447.015000px;}
.y112{bottom:448.095000px;}
.yf1{bottom:448.815000px;}
.ycf{bottom:450.975000px;}
.yb9{bottom:455.655000px;}
.y93{bottom:463.215000px;}
.y21{bottom:463.575000px;}
.y61{bottom:464.295000px;}
.y111{bottom:465.375000px;}
.yf0{bottom:466.095000px;}
.yce{bottom:468.255000px;}
.y108{bottom:468.975000px;}
.yb8{bottom:475.455000px;}
.y92{bottom:480.495000px;}
.y20{bottom:480.675000px;}
.y60{bottom:481.575000px;}
.y110{bottom:482.655000px;}
.yef{bottom:483.375000px;}
.ycd{bottom:484.635000px;}
.y107{bottom:486.255000px;}
.yb7{bottom:492.735000px;}
.ycc{bottom:495.975000px;}
.y1f{bottom:497.775000px;}
.y5f{bottom:498.675000px;}
.y10f{bottom:499.755000px;}
.yee{bottom:500.475000px;}
.y106{bottom:503.535000px;}
.yb6{bottom:508.935000px;}
.y91{bottom:513.975000px;}
.y1e{bottom:515.055000px;}
.y5e{bottom:515.955000px;}
.y10e{bottom:517.035000px;}
.yed{bottom:517.755000px;}
.y105{bottom:519.735000px;}
.yb5{bottom:527.295000px;}
.y1d{bottom:532.155000px;}
.y90{bottom:532.335000px;}
.y5d{bottom:533.235000px;}
.y10d{bottom:534.315000px;}
.yec{bottom:535.035000px;}
.y79{bottom:539.715000px;}
.y104{bottom:541.515000px;}
.yb4{bottom:545.835000px;}
.y1c{bottom:549.255000px;}
.y8f{bottom:550.695000px;}
.y5c{bottom:551.595000px;}
.yeb{bottom:552.315000px;}
.y78{bottom:556.995000px;}
.y103{bottom:563.295000px;}
.yb3{bottom:564.195000px;}
.y1b{bottom:566.355000px;}
.y5b{bottom:568.875000px;}
.y8e{bottom:569.235000px;}
.yea{bottom:569.595000px;}
.y77{bottom:574.095000px;}
.yb2{bottom:582.555000px;}
.y1a{bottom:583.455000px;}
.y102{bottom:585.255000px;}
.y5a{bottom:586.155000px;}
.ye9{bottom:586.695000px;}
.y8d{bottom:587.595000px;}
.y76{bottom:588.135000px;}
.y19{bottom:600.555000px;}
.ye8{bottom:600.735000px;}
.yb1{bottom:600.915000px;}
.y59{bottom:603.255000px;}
.y8c{bottom:605.985000px;}
.y101{bottom:607.065000px;}
.y18{bottom:617.685000px;}
.yb0{bottom:619.305000px;}
.y58{bottom:620.565000px;}
.y8a{bottom:624.345000px;}
.y100{bottom:628.845000px;}
.y17{bottom:634.785000px;}
.y57{bottom:637.845000px;}
.yaf{bottom:641.985000px;}
.y89{bottom:647.025000px;}
.yfe{bottom:650.625000px;}
.y16{bottom:651.885000px;}
.y56{bottom:655.125000px;}
.yae{bottom:659.265000px;}
.y88{bottom:664.305000px;}
.y15{bottom:668.985000px;}
.y55{bottom:672.405000px;}
.yad{bottom:676.545000px;}
.yfd{bottom:676.905000px;}
.y87{bottom:681.585000px;}
.y14{bottom:686.085000px;}
.y54{bottom:689.505000px;}
.yac{bottom:693.825000px;}
.yfc{bottom:694.185000px;}
.y86{bottom:698.865000px;}
.y13{bottom:703.185000px;}
.y53{bottom:706.785000px;}
.yab{bottom:710.925000px;}
.yfb{bottom:711.465000px;}
.y85{bottom:715.965000px;}
.y10{bottom:717.045000px;}
.y52{bottom:724.065000px;}
.ya7{bottom:724.965000px;}
.yfa{bottom:725.325000px;}
.y84{bottom:733.245000px;}
.y51{bottom:741.345000px;}
.y83{bottom:750.525000px;}
.y50{bottom:758.625000px;}
.ya6{bottom:764.565000px;}
.y82{bottom:767.805000px;}
.y4f{bottom:775.905000px;}
.ya5{bottom:781.845000px;}
.y81{bottom:785.085000px;}
.y4e{bottom:793.005000px;}
.ya4{bottom:799.125000px;}
.ye7{bottom:802.005000px;}
.y80{bottom:802.365000px;}
.y4d{bottom:810.285000px;}
.ya3{bottom:816.405000px;}
.ye6{bottom:819.285000px;}
.y7f{bottom:819.465000px;}
.y4c{bottom:827.565000px;}
.ya2{bottom:833.505000px;}
.y7e{bottom:833.685000px;}
.ye5{bottom:836.565000px;}
.y4b{bottom:844.845000px;}
.ya1{bottom:850.785000px;}
.ycb{bottom:852.765000px;}
.ye4{bottom:853.845000px;}
.y4a{bottom:862.125000px;}
.ye3{bottom:867.885000px;}
.ya0{bottom:868.065000px;}
.yca{bottom:869.685000px;}
.y49{bottom:879.450000px;}
.y9f{bottom:885.390000px;}
.yc9{bottom:889.710000px;}
.y48{bottom:896.550000px;}
.y9e{bottom:902.670000px;}
.yc8{bottom:905.910000px;}
.y47{bottom:913.830000px;}
.yf{bottom:916.350000px;}
.y9d{bottom:918.870000px;}
.yc7{bottom:924.270000px;}
.y75{bottom:926.970000px;}
.y46{bottom:931.110000px;}
.y9c{bottom:937.230000px;}
.yc6{bottom:942.630000px;}
.y74{bottom:944.250000px;}
.ye{bottom:946.050000px;}
.y45{bottom:948.390000px;}
.yf9{bottom:951.630000px;}
.y9b{bottom:955.590000px;}
.yc5{bottom:960.990000px;}
.y73{bottom:961.530000px;}
.y44{bottom:965.670000px;}
.yf8{bottom:968.910000px;}
.yd{bottom:970.170000px;}
.y9a{bottom:973.950000px;}
.y72{bottom:975.570000px;}
.yc4{bottom:979.350000px;}
.y43{bottom:982.950000px;}
.yf7{bottom:986.190000px;}
.y99{bottom:992.310000px;}
.yc{bottom:995.550000px;}
.yc3{bottom:997.890000px;}
.y42{bottom:1000.050000px;}
.yf6{bottom:1000.230000px;}
.y98{bottom:1010.670000px;}
.yc2{bottom:1016.250000px;}
.y41{bottom:1017.330000px;}
.yb{bottom:1026.690000px;}
.y97{bottom:1029.210000px;}
.y40{bottom:1034.610000px;}
.yc1{bottom:1038.930000px;}
.y3f{bottom:1051.890000px;}
.yc0{bottom:1056.210000px;}
.ya{bottom:1057.650000px;}
.y3e{bottom:1069.170000px;}
.ybf{bottom:1076.010000px;}
.y3d{bottom:1086.270000px;}
.y9{bottom:1088.790000px;}
.ybe{bottom:1095.810000px;}
.y3c{bottom:1103.550000px;}
.ybd{bottom:1115.610000px;}
.y8{bottom:1119.570000px;}
.y3b{bottom:1120.830000px;}
.ybc{bottom:1135.410000px;}
.y3a{bottom:1138.140000px;}
.y6{bottom:1143.540000px;}
.y39{bottom:1155.420000px;}
.y2{bottom:1173.420000px;}
.y1{bottom:1198.980000px;}
.he{height:12.000000px;}
.h14{height:17.100000px;}
.h13{height:17.136000px;}
.h11{height:17.280000px;}
.h18{height:17.316000px;}
.h1a{height:20.700000px;}
.h1c{height:20.736000px;}
.h5{height:25.920000px;}
.h3{height:29.196000px;}
.h15{height:36.360000px;}
.h6{height:44.820000px;}
.h19{height:47.344922px;}
.hf{height:49.898438px;}
.hb{height:58.651172px;}
.h12{height:59.038594px;}
.h1d{height:59.614102px;}
.hc{height:60.226875px;}
.h10{height:61.423863px;}
.hd{height:62.211094px;}
.h2{height:70.664062px;}
.h1b{height:74.004654px;}
.h8{height:82.676953px;}
.h16{height:96.444141px;}
.h4{height:98.051133px;}
.h17{height:98.971172px;}
.h9{height:105.996094px;}
.h7{height:108.843750px;}
.ha{height:193.350000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:21.420000px;}
.w7{width:41.356500px;}
.w12{width:109.620000px;}
.wf{width:110.196000px;}
.w11{width:110.340000px;}
.w10{width:110.376000px;}
.w8{width:113.400000px;}
.wb{width:113.580000px;}
.wa{width:113.940000px;}
.w9{width:114.156000px;}
.we{width:162.570000px;}
.wd{width:230.250000px;}
.w4{width:276.330000px;}
.w6{width:276.555000px;}
.wc{width:688.785000px;}
.w13{width:718.530000px;}
.w2{width:723.210000px;}
.w3{width:727.170000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x26{left:27.000000px;}
.x1e{left:31.680000px;}
.x4a{left:34.785000px;}
.x32{left:36.360000px;}
.x2b{left:40.140000px;}
.x22{left:41.760000px;}
.x2e{left:43.560000px;}
.x20{left:45.540000px;}
.x35{left:49.140000px;}
.x43{left:51.516000px;}
.x49{left:61.596000px;}
.x4b{left:68.430000px;}
.x4{left:82.980000px;}
.x2{left:84.960000px;}
.x42{left:87.300000px;}
.x1{left:91.296000px;}
.x2d{left:101.196000px;}
.x1d{left:102.276000px;}
.x13{left:106.236000px;}
.x7{left:108.936000px;}
.x14{left:111.996000px;}
.x40{left:113.076000px;}
.x2f{left:115.020000px;}
.x4d{left:116.856000px;}
.x8{left:127.476000px;}
.x25{left:136.434000px;}
.x17{left:138.996000px;}
.x4c{left:158.070000px;}
.xc{left:159.510000px;}
.x15{left:165.990000px;}
.x3d{left:170.310000px;}
.x48{left:171.750000px;}
.x29{left:185.790000px;}
.x16{left:192.990000px;}
.x11{left:199.290000px;}
.x30{left:201.105000px;}
.x3a{left:202.350000px;}
.x31{left:204.159000px;}
.x36{left:211.530000px;}
.x1f{left:216.750000px;}
.xa{left:219.450000px;}
.x27{left:225.210000px;}
.x34{left:232.779000px;}
.x9{left:244.650000px;}
.x44{left:250.950000px;}
.xd{left:268.425000px;}
.x2c{left:270.210000px;}
.x2a{left:289.119000px;}
.x19{left:305.355000px;}
.x1b{left:325.875000px;}
.x21{left:331.995000px;}
.x38{left:340.995000px;}
.x3{left:361.515000px;}
.x3b{left:362.955000px;}
.x3e{left:382.215000px;}
.xb{left:385.995000px;}
.x12{left:425.811768px;}
.xe{left:435.855000px;}
.x5{left:440.205000px;}
.x6{left:446.475000px;}
.x10{left:457.275000px;}
.x45{left:473.505000px;}
.x23{left:562.245000px;}
.x46{left:584.925000px;}
.x18{left:653.505000px;}
.x1a{left:670.290000px;}
.x24{left:677.490000px;}
.x47{left:696.210000px;}
.x1c{left:706.470000px;}
.x33{left:724.290000px;}
.x28{left:738.330000px;}
.x39{left:745.890000px;}
.x41{left:752.910000px;}
.x37{left:762.450000px;}
.x3c{left:790.890000px;}
.x3f{left:795.750000px;}
@media print{
.v9{vertical-align:-61.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v3{vertical-align:18.560000pt;}
.v7{vertical-align:35.840000pt;}
.v6{vertical-align:40.960000pt;}
.v8{vertical-align:55.680000pt;}
.ls1e{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.231467pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.011733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003733pt;}
.ls2{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.456533pt;}
.lsa{letter-spacing:0.544000pt;}
.ls1a{letter-spacing:0.645333pt;}
.lsd{letter-spacing:0.800000pt;}
.ls17{letter-spacing:2.827520pt;}
.ls16{letter-spacing:8.950187pt;}
.ls15{letter-spacing:15.359360pt;}
.ls14{letter-spacing:18.502400pt;}
.ls7{letter-spacing:20.432640pt;}
.ls11{letter-spacing:22.992640pt;}
.ls12{letter-spacing:26.171307pt;}
.ls1d{letter-spacing:30.208000pt;}
.ls1c{letter-spacing:47.488000pt;}
.ls10{letter-spacing:49.232640pt;}
.lse{letter-spacing:56.912640pt;}
.ls13{letter-spacing:58.811307pt;}
.ls18{letter-spacing:802.218667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws6{word-spacing:-24.000000pt;}
.ws7{word-spacing:-19.360000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.311360pt;}
.ws4{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.672427pt;}
.ws12{word-spacing:-13.694933pt;}
.ws8{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.640000pt;}
.wsf{word-spacing:-10.122667pt;}
.wsd{word-spacing:-9.285333pt;}
.wsc{word-spacing:-8.643733pt;}
.wsb{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.628267pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-3.768107pt;}
._3{margin-left:-2.399787pt;}
._2{margin-left:-0.898773pt;}
._0{width:0.899627pt;}
._1{width:1.801173pt;}
._4{width:2.898560pt;}
._7{width:3.800747pt;}
._8{width:4.698880pt;}
._c{width:5.736960pt;}
._e{width:6.744320pt;}
._a{width:7.649280pt;}
._b{width:8.565973pt;}
._d{width:9.514880pt;}
._5{width:10.517760pt;}
._6{width:11.748907pt;}
._1a{width:17.210880pt;}
._1b{width:18.379520pt;}
._10{width:22.093653pt;}
._f{width:23.425920pt;}
._15{width:27.516160pt;}
._14{width:28.578560pt;}
._19{width:29.863680pt;}
._11{width:38.190080pt;}
._12{width:39.493973pt;}
._17{width:41.486720pt;}
._13{width:47.170560pt;}
._16{width:92.499840pt;}
._18{width:98.275413pt;}
._1c{width:130.940800pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:0.960000pt;}
.y38{bottom:2.245333pt;}
.ya9{bottom:2.400000pt;}
.y8b{bottom:2.880000pt;}
.yff{bottom:3.520000pt;}
.y4{bottom:5.760000pt;}
.y7{bottom:6.240000pt;}
.ya8{bottom:11.360000pt;}
.yaa{bottom:11.840000pt;}
.y37{bottom:37.333333pt;}
.y5{bottom:41.280000pt;}
.y3{bottom:56.160000pt;}
.y7d{bottom:87.232000pt;}
.y10c{bottom:89.792000pt;}
.y36{bottom:91.392000pt;}
.y126{bottom:91.552000pt;}
.y96{bottom:99.072000pt;}
.y7c{bottom:102.592000pt;}
.y10b{bottom:105.152000pt;}
.y35{bottom:106.752000pt;}
.y125{bottom:106.912000pt;}
.ye2{bottom:109.472000pt;}
.ybb{bottom:111.712000pt;}
.y95{bottom:114.432000pt;}
.y7b{bottom:117.952000pt;}
.y10a{bottom:120.512000pt;}
.y34{bottom:122.112000pt;}
.y124{bottom:122.272000pt;}
.yba{bottom:124.192000pt;}
.ye1{bottom:124.832000pt;}
.y94{bottom:126.912000pt;}
.y71{bottom:129.952000pt;}
.y7a{bottom:130.432000pt;}
.yf5{bottom:130.912000pt;}
.y109{bottom:132.992000pt;}
.y33{bottom:137.466667pt;}
.y123{bottom:137.626667pt;}
.ye0{bottom:140.186667pt;}
.y70{bottom:145.306667pt;}
.yf4{bottom:146.266667pt;}
.y32{bottom:152.666667pt;}
.y122{bottom:152.986667pt;}
.ydf{bottom:155.546667pt;}
.y11{bottom:159.560000pt;}
.y6f{bottom:160.666667pt;}
.yf3{bottom:161.626667pt;}
.y31{bottom:168.026667pt;}
.y121{bottom:168.346667pt;}
.yde{bottom:170.746667pt;}
.yf2{bottom:173.946667pt;}
.y6e{bottom:176.986667pt;}
.y30{bottom:183.386667pt;}
.y120{bottom:183.546667pt;}
.ydd{bottom:186.106667pt;}
.y6d{bottom:193.146667pt;}
.y2f{bottom:198.746667pt;}
.y11f{bottom:198.906667pt;}
.ydc{bottom:201.466667pt;}
.y6c{bottom:209.466667pt;}
.y2e{bottom:214.106667pt;}
.y11e{bottom:214.266667pt;}
.ydb{bottom:216.826667pt;}
.y6b{bottom:224.826667pt;}
.y2d{bottom:229.306667pt;}
.y11d{bottom:229.626667pt;}
.yda{bottom:232.186667pt;}
.y6a{bottom:241.146667pt;}
.y2c{bottom:244.666667pt;}
.y11c{bottom:244.986667pt;}
.yd9{bottom:247.546667pt;}
.y69{bottom:256.506667pt;}
.y2b{bottom:260.026667pt;}
.y11b{bottom:260.346667pt;}
.yd8{bottom:262.746667pt;}
.y68{bottom:272.666667pt;}
.y2a{bottom:275.226667pt;}
.y11a{bottom:275.546667pt;}
.yd7{bottom:278.106667pt;}
.y67{bottom:288.026667pt;}
.y29{bottom:290.426667pt;}
.y119{bottom:290.906667pt;}
.yd6{bottom:293.466667pt;}
.y66{bottom:304.386667pt;}
.y28{bottom:305.666667pt;}
.y118{bottom:306.306667pt;}
.yd5{bottom:308.866667pt;}
.y65{bottom:320.706667pt;}
.y27{bottom:320.866667pt;}
.y117{bottom:321.666667pt;}
.yd4{bottom:324.226667pt;}
.y26{bottom:336.066667pt;}
.y116{bottom:337.026667pt;}
.yd3{bottom:339.586667pt;}
.y25{bottom:351.266667pt;}
.y115{bottom:352.226667pt;}
.yd2{bottom:354.786667pt;}
.y24{bottom:366.466667pt;}
.y64{bottom:366.626667pt;}
.y114{bottom:367.586667pt;}
.yd1{bottom:370.146667pt;}
.y23{bottom:381.666667pt;}
.y63{bottom:381.986667pt;}
.y113{bottom:382.946667pt;}
.yd0{bottom:385.506667pt;}
.y22{bottom:396.866667pt;}
.y62{bottom:397.346667pt;}
.y112{bottom:398.306667pt;}
.yf1{bottom:398.946667pt;}
.ycf{bottom:400.866667pt;}
.yb9{bottom:405.026667pt;}
.y93{bottom:411.746667pt;}
.y21{bottom:412.066667pt;}
.y61{bottom:412.706667pt;}
.y111{bottom:413.666667pt;}
.yf0{bottom:414.306667pt;}
.yce{bottom:416.226667pt;}
.y108{bottom:416.866667pt;}
.yb8{bottom:422.626667pt;}
.y92{bottom:427.106667pt;}
.y20{bottom:427.266667pt;}
.y60{bottom:428.066667pt;}
.y110{bottom:429.026667pt;}
.yef{bottom:429.666667pt;}
.ycd{bottom:430.786667pt;}
.y107{bottom:432.226667pt;}
.yb7{bottom:437.986667pt;}
.ycc{bottom:440.866667pt;}
.y1f{bottom:442.466667pt;}
.y5f{bottom:443.266667pt;}
.y10f{bottom:444.226667pt;}
.yee{bottom:444.866667pt;}
.y106{bottom:447.586667pt;}
.yb6{bottom:452.386667pt;}
.y91{bottom:456.866667pt;}
.y1e{bottom:457.826667pt;}
.y5e{bottom:458.626667pt;}
.y10e{bottom:459.586667pt;}
.yed{bottom:460.226667pt;}
.y105{bottom:461.986667pt;}
.yb5{bottom:468.706667pt;}
.y1d{bottom:473.026667pt;}
.y90{bottom:473.186667pt;}
.y5d{bottom:473.986667pt;}
.y10d{bottom:474.946667pt;}
.yec{bottom:475.586667pt;}
.y79{bottom:479.746667pt;}
.y104{bottom:481.346667pt;}
.yb4{bottom:485.186667pt;}
.y1c{bottom:488.226667pt;}
.y8f{bottom:489.506667pt;}
.y5c{bottom:490.306667pt;}
.yeb{bottom:490.946667pt;}
.y78{bottom:495.106667pt;}
.y103{bottom:500.706667pt;}
.yb3{bottom:501.506667pt;}
.y1b{bottom:503.426667pt;}
.y5b{bottom:505.666667pt;}
.y8e{bottom:505.986667pt;}
.yea{bottom:506.306667pt;}
.y77{bottom:510.306667pt;}
.yb2{bottom:517.826667pt;}
.y1a{bottom:518.626667pt;}
.y102{bottom:520.226667pt;}
.y5a{bottom:521.026667pt;}
.ye9{bottom:521.506667pt;}
.y8d{bottom:522.306667pt;}
.y76{bottom:522.786667pt;}
.y19{bottom:533.826667pt;}
.ye8{bottom:533.986667pt;}
.yb1{bottom:534.146667pt;}
.y59{bottom:536.226667pt;}
.y8c{bottom:538.653333pt;}
.y101{bottom:539.613333pt;}
.y18{bottom:549.053333pt;}
.yb0{bottom:550.493333pt;}
.y58{bottom:551.613333pt;}
.y8a{bottom:554.973333pt;}
.y100{bottom:558.973333pt;}
.y17{bottom:564.253333pt;}
.y57{bottom:566.973333pt;}
.yaf{bottom:570.653333pt;}
.y89{bottom:575.133333pt;}
.yfe{bottom:578.333333pt;}
.y16{bottom:579.453333pt;}
.y56{bottom:582.333333pt;}
.yae{bottom:586.013333pt;}
.y88{bottom:590.493333pt;}
.y15{bottom:594.653333pt;}
.y55{bottom:597.693333pt;}
.yad{bottom:601.373333pt;}
.yfd{bottom:601.693333pt;}
.y87{bottom:605.853333pt;}
.y14{bottom:609.853333pt;}
.y54{bottom:612.893333pt;}
.yac{bottom:616.733333pt;}
.yfc{bottom:617.053333pt;}
.y86{bottom:621.213333pt;}
.y13{bottom:625.053333pt;}
.y53{bottom:628.253333pt;}
.yab{bottom:631.933333pt;}
.yfb{bottom:632.413333pt;}
.y85{bottom:636.413333pt;}
.y10{bottom:637.373333pt;}
.y52{bottom:643.613333pt;}
.ya7{bottom:644.413333pt;}
.yfa{bottom:644.733333pt;}
.y84{bottom:651.773333pt;}
.y51{bottom:658.973333pt;}
.y83{bottom:667.133333pt;}
.y50{bottom:674.333333pt;}
.ya6{bottom:679.613333pt;}
.y82{bottom:682.493333pt;}
.y4f{bottom:689.693333pt;}
.ya5{bottom:694.973333pt;}
.y81{bottom:697.853333pt;}
.y4e{bottom:704.893333pt;}
.ya4{bottom:710.333333pt;}
.ye7{bottom:712.893333pt;}
.y80{bottom:713.213333pt;}
.y4d{bottom:720.253333pt;}
.ya3{bottom:725.693333pt;}
.ye6{bottom:728.253333pt;}
.y7f{bottom:728.413333pt;}
.y4c{bottom:735.613333pt;}
.ya2{bottom:740.893333pt;}
.y7e{bottom:741.053333pt;}
.ye5{bottom:743.613333pt;}
.y4b{bottom:750.973333pt;}
.ya1{bottom:756.253333pt;}
.ycb{bottom:758.013333pt;}
.ye4{bottom:758.973333pt;}
.y4a{bottom:766.333333pt;}
.ye3{bottom:771.453333pt;}
.ya0{bottom:771.613333pt;}
.yca{bottom:773.053333pt;}
.y49{bottom:781.733333pt;}
.y9f{bottom:787.013333pt;}
.yc9{bottom:790.853333pt;}
.y48{bottom:796.933333pt;}
.y9e{bottom:802.373333pt;}
.yc8{bottom:805.253333pt;}
.y47{bottom:812.293333pt;}
.yf{bottom:814.533333pt;}
.y9d{bottom:816.773333pt;}
.yc7{bottom:821.573333pt;}
.y75{bottom:823.973333pt;}
.y46{bottom:827.653333pt;}
.y9c{bottom:833.093333pt;}
.yc6{bottom:837.893333pt;}
.y74{bottom:839.333333pt;}
.ye{bottom:840.933333pt;}
.y45{bottom:843.013333pt;}
.yf9{bottom:845.893333pt;}
.y9b{bottom:849.413333pt;}
.yc5{bottom:854.213333pt;}
.y73{bottom:854.693333pt;}
.y44{bottom:858.373333pt;}
.yf8{bottom:861.253333pt;}
.yd{bottom:862.373333pt;}
.y9a{bottom:865.733333pt;}
.y72{bottom:867.173333pt;}
.yc4{bottom:870.533333pt;}
.y43{bottom:873.733333pt;}
.yf7{bottom:876.613333pt;}
.y99{bottom:882.053333pt;}
.yc{bottom:884.933333pt;}
.yc3{bottom:887.013333pt;}
.y42{bottom:888.933333pt;}
.yf6{bottom:889.093333pt;}
.y98{bottom:898.373333pt;}
.yc2{bottom:903.333333pt;}
.y41{bottom:904.293333pt;}
.yb{bottom:912.613333pt;}
.y97{bottom:914.853333pt;}
.y40{bottom:919.653333pt;}
.yc1{bottom:923.493333pt;}
.y3f{bottom:935.013333pt;}
.yc0{bottom:938.853333pt;}
.ya{bottom:940.133333pt;}
.y3e{bottom:950.373333pt;}
.ybf{bottom:956.453333pt;}
.y3d{bottom:965.573333pt;}
.y9{bottom:967.813333pt;}
.ybe{bottom:974.053333pt;}
.y3c{bottom:980.933333pt;}
.ybd{bottom:991.653333pt;}
.y8{bottom:995.173333pt;}
.y3b{bottom:996.293333pt;}
.ybc{bottom:1009.253333pt;}
.y3a{bottom:1011.680000pt;}
.y6{bottom:1016.480000pt;}
.y39{bottom:1027.040000pt;}
.y2{bottom:1043.040000pt;}
.y1{bottom:1065.760000pt;}
.he{height:10.666667pt;}
.h14{height:15.200000pt;}
.h13{height:15.232000pt;}
.h11{height:15.360000pt;}
.h18{height:15.392000pt;}
.h1a{height:18.400000pt;}
.h1c{height:18.432000pt;}
.h5{height:23.040000pt;}
.h3{height:25.952000pt;}
.h15{height:32.320000pt;}
.h6{height:39.840000pt;}
.h19{height:42.084375pt;}
.hf{height:44.354167pt;}
.hb{height:52.134375pt;}
.h12{height:52.478750pt;}
.h1d{height:52.990313pt;}
.hc{height:53.535000pt;}
.h10{height:54.598989pt;}
.hd{height:55.298750pt;}
.h2{height:62.812500pt;}
.h1b{height:65.781915pt;}
.h8{height:73.490625pt;}
.h16{height:85.728125pt;}
.h4{height:87.156562pt;}
.h17{height:87.974375pt;}
.h9{height:94.218750pt;}
.h7{height:96.750000pt;}
.ha{height:171.866667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:19.040000pt;}
.w7{width:36.761333pt;}
.w12{width:97.440000pt;}
.wf{width:97.952000pt;}
.w11{width:98.080000pt;}
.w10{width:98.112000pt;}
.w8{width:100.800000pt;}
.wb{width:100.960000pt;}
.wa{width:101.280000pt;}
.w9{width:101.472000pt;}
.we{width:144.506667pt;}
.wd{width:204.666667pt;}
.w4{width:245.626667pt;}
.w6{width:245.826667pt;}
.wc{width:612.253333pt;}
.w13{width:638.693333pt;}
.w2{width:642.853333pt;}
.w3{width:646.373333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x26{left:24.000000pt;}
.x1e{left:28.160000pt;}
.x4a{left:30.920000pt;}
.x32{left:32.320000pt;}
.x2b{left:35.680000pt;}
.x22{left:37.120000pt;}
.x2e{left:38.720000pt;}
.x20{left:40.480000pt;}
.x35{left:43.680000pt;}
.x43{left:45.792000pt;}
.x49{left:54.752000pt;}
.x4b{left:60.826667pt;}
.x4{left:73.760000pt;}
.x2{left:75.520000pt;}
.x42{left:77.600000pt;}
.x1{left:81.152000pt;}
.x2d{left:89.952000pt;}
.x1d{left:90.912000pt;}
.x13{left:94.432000pt;}
.x7{left:96.832000pt;}
.x14{left:99.552000pt;}
.x40{left:100.512000pt;}
.x2f{left:102.240000pt;}
.x4d{left:103.872000pt;}
.x8{left:113.312000pt;}
.x25{left:121.274667pt;}
.x17{left:123.552000pt;}
.x4c{left:140.506667pt;}
.xc{left:141.786667pt;}
.x15{left:147.546667pt;}
.x3d{left:151.386667pt;}
.x48{left:152.666667pt;}
.x29{left:165.146667pt;}
.x16{left:171.546667pt;}
.x11{left:177.146667pt;}
.x30{left:178.760000pt;}
.x3a{left:179.866667pt;}
.x31{left:181.474667pt;}
.x36{left:188.026667pt;}
.x1f{left:192.666667pt;}
.xa{left:195.066667pt;}
.x27{left:200.186667pt;}
.x34{left:206.914667pt;}
.x9{left:217.466667pt;}
.x44{left:223.066667pt;}
.xd{left:238.600000pt;}
.x2c{left:240.186667pt;}
.x2a{left:256.994667pt;}
.x19{left:271.426667pt;}
.x1b{left:289.666667pt;}
.x21{left:295.106667pt;}
.x38{left:303.106667pt;}
.x3{left:321.346667pt;}
.x3b{left:322.626667pt;}
.x3e{left:339.746667pt;}
.xb{left:343.106667pt;}
.x12{left:378.499349pt;}
.xe{left:387.426667pt;}
.x5{left:391.293333pt;}
.x6{left:396.866667pt;}
.x10{left:406.466667pt;}
.x45{left:420.893333pt;}
.x23{left:499.773333pt;}
.x46{left:519.933333pt;}
.x18{left:580.893333pt;}
.x1a{left:595.813333pt;}
.x24{left:602.213333pt;}
.x47{left:618.853333pt;}
.x1c{left:627.973333pt;}
.x33{left:643.813333pt;}
.x28{left:656.293333pt;}
.x39{left:663.013333pt;}
.x41{left:669.253333pt;}
.x37{left:677.733333pt;}
.x3c{left:703.013333pt;}
.x3f{left:707.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  