
    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_72b9b06f9242743ec69aebe9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_94e497a10d33c31def58522c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f2939efd9b054c3a0aa5cbd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4bc8dd1a8e1f95ad09db85c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7dd5a053cf444226c7d41c9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_f89ef4afff5f41a810e62cb4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e847d9b4f8d9661a3b7a018b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_967b4865284edae2c20ae40d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-84.960000px;}
.v4{vertical-align:-83.520000px;}
.v2{vertical-align:-81.360000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lsd{letter-spacing:-3.096000px;}
.ls23{letter-spacing:-1.656000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.296000px;}
.ls3{letter-spacing:-1.182000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.450600px;}
.ls26{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.792000px;}
.ls18{letter-spacing:1.440000px;}
.ls17{letter-spacing:2.160000px;}
.ls1f{letter-spacing:7.200000px;}
.ls21{letter-spacing:9.360000px;}
.lsc{letter-spacing:10.800000px;}
.ls16{letter-spacing:12.240000px;}
.ls20{letter-spacing:20.160000px;}
.ls15{letter-spacing:30.816000px;}
.ls8{letter-spacing:204.456000px;}
.ls0{letter-spacing:998.796000px;}
.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;}
}
.ws15{word-spacing:-72.000000px;}
.ws11{word-spacing:-18.792000px;}
.wse{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.568000px;}
.ws19{word-spacing:-17.496000px;}
.ws17{word-spacing:-17.280000px;}
.ws1c{word-spacing:-17.208000px;}
.ws16{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.704000px;}
.ws14{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.344000px;}
.wsb{word-spacing:-14.904000px;}
.ws1{word-spacing:-13.788240px;}
.ws2{word-spacing:-13.410720px;}
.ws0{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.014640px;}
.ws4{word-spacing:-11.878800px;}
.ws1b{word-spacing:-11.609400px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-10.800000px;}
._1{margin-left:-3.444000px;}
._0{margin-left:-2.342880px;}
._2{margin-left:-1.030320px;}
._3{width:1.072800px;}
._1c{width:2.095200px;}
._7{width:3.113280px;}
._8{width:4.474080px;}
._d{width:5.829120px;}
._e{width:6.925680px;}
._9{width:8.382960px;}
._15{width:9.689040px;}
._11{width:11.539920px;}
._12{width:12.541920px;}
._10{width:13.631280px;}
._a{width:14.688480px;}
._16{width:15.984000px;}
._20{width:16.990320px;}
._f{width:18.149760px;}
._c{width:20.059920px;}
._b{width:21.461760px;}
._17{width:22.507200px;}
._1b{width:23.976000px;}
._18{width:25.272000px;}
._19{width:26.280000px;}
._1f{width:27.294480px;}
._5{width:28.615680px;}
._6{width:29.700000px;}
._14{width:31.212000px;}
._23{width:32.299200px;}
._24{width:33.624000px;}
._1d{width:35.496000px;}
._1e{width:36.792000px;}
._1a{width:38.248800px;}
._21{width:44.136000px;}
._22{width:45.230400px;}
._4{width:74.365680px;}
._25{width:172.776000px;}
.fc1{color:rgb(0,112,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.y4{bottom:5.025000px;}
.y3{bottom:155.025000px;}
.y7{bottom:158.250000px;}
.y55{bottom:178.050000px;}
.y129{bottom:180.570000px;}
.yfd{bottom:182.010000px;}
.yc1{bottom:183.630000px;}
.y7e{bottom:189.750000px;}
.ye3{bottom:198.750000px;}
.y128{bottom:201.270000px;}
.y54{bottom:201.990000px;}
.yfc{bottom:202.710000px;}
.ya7{bottom:204.330000px;}
.y7d{bottom:210.450000px;}
.y2e{bottom:213.330000px;}
.y127{bottom:221.970000px;}
.ye2{bottom:222.510000px;}
.yfb{bottom:223.410000px;}
.ya6{bottom:225.030000px;}
.y53{bottom:225.750000px;}
.y7c{bottom:231.150000px;}
.y2d{bottom:234.030000px;}
.y126{bottom:242.670000px;}
.yfa{bottom:244.110000px;}
.ya5{bottom:245.730000px;}
.ye1{bottom:246.450000px;}
.y52{bottom:249.510000px;}
.y7b{bottom:251.850000px;}
.y2c{bottom:254.730000px;}
.y125{bottom:263.370000px;}
.yf9{bottom:264.810000px;}
.ya4{bottom:266.430000px;}
.ye0{bottom:270.210000px;}
.y144{bottom:272.370000px;}
.y7a{bottom:272.550000px;}
.y51{bottom:273.450000px;}
.y2b{bottom:278.310000px;}
.y124{bottom:284.070000px;}
.yf8{bottom:285.510000px;}
.ya3{bottom:287.130000px;}
.y143{bottom:293.070000px;}
.y79{bottom:293.250000px;}
.ydf{bottom:293.970000px;}
.y50{bottom:297.210000px;}
.y2a{bottom:302.070000px;}
.y123{bottom:304.770000px;}
.yf7{bottom:306.210000px;}
.yc0{bottom:307.650000px;}
.ya2{bottom:307.830000px;}
.y142{bottom:313.770000px;}
.y78{bottom:313.950000px;}
.yde{bottom:317.730000px;}
.y4f{bottom:321.150000px;}
.y122{bottom:325.470000px;}
.y29{bottom:326.010000px;}
.yf6{bottom:326.910000px;}
.ya1{bottom:328.350000px;}
.y141{bottom:334.515000px;}
.y77{bottom:334.695000px;}
.ydd{bottom:341.715000px;}
.y4e{bottom:344.955000px;}
.y121{bottom:346.215000px;}
.yf5{bottom:347.655000px;}
.ybf{bottom:349.095000px;}
.ya0{bottom:349.275000px;}
.y28{bottom:349.815000px;}
.y140{bottom:355.215000px;}
.y76{bottom:355.395000px;}
.ydc{bottom:365.475000px;}
.y15b{bottom:366.735000px;}
.y120{bottom:366.915000px;}
.yf4{bottom:368.175000px;}
.y4d{bottom:368.715000px;}
.ybe{bottom:369.795000px;}
.y9f{bottom:369.975000px;}
.y27{bottom:373.575000px;}
.y13f{bottom:375.915000px;}
.y75{bottom:376.095000px;}
.y11f{bottom:387.615000px;}
.yf3{bottom:389.055000px;}
.ydb{bottom:389.235000px;}
.ybd{bottom:390.495000px;}
.y9e{bottom:390.675000px;}
.y4c{bottom:392.475000px;}
.y13e{bottom:396.615000px;}
.y74{bottom:396.795000px;}
.y26{bottom:397.335000px;}
.y11e{bottom:408.315000px;}
.yf2{bottom:409.755000px;}
.ybc{bottom:411.195000px;}
.y9d{bottom:411.375000px;}
.yda{bottom:412.995000px;}
.y4b{bottom:416.415000px;}
.y13d{bottom:417.315000px;}
.y73{bottom:417.495000px;}
.y25{bottom:421.275000px;}
.y11d{bottom:429.015000px;}
.yf1{bottom:430.455000px;}
.ybb{bottom:431.895000px;}
.y9c{bottom:432.075000px;}
.yd9{bottom:436.935000px;}
.y13c{bottom:438.015000px;}
.y72{bottom:438.195000px;}
.y4a{bottom:440.175000px;}
.y24{bottom:445.035000px;}
.y11c{bottom:449.715000px;}
.yf0{bottom:451.155000px;}
.yba{bottom:452.595000px;}
.y9b{bottom:452.775000px;}
.y13b{bottom:458.715000px;}
.y71{bottom:458.895000px;}
.yd8{bottom:460.695000px;}
.y49{bottom:463.935000px;}
.y23{bottom:468.795000px;}
.y11b{bottom:470.415000px;}
.yef{bottom:471.855000px;}
.yb9{bottom:473.295000px;}
.y9a{bottom:473.475000px;}
.y13a{bottom:479.415000px;}
.y70{bottom:479.595000px;}
.yd7{bottom:484.455000px;}
.y48{bottom:487.695000px;}
.y11a{bottom:491.115000px;}
.yee{bottom:492.555000px;}
.yb8{bottom:493.995000px;}
.y99{bottom:494.175000px;}
.y139{bottom:500.115000px;}
.y6f{bottom:500.295000px;}
.yd6{bottom:508.215000px;}
.y47{bottom:511.635000px;}
.y119{bottom:511.815000px;}
.y22{bottom:512.895000px;}
.yed{bottom:513.255000px;}
.yb7{bottom:514.695000px;}
.y98{bottom:514.875000px;}
.y138{bottom:520.815000px;}
.y6e{bottom:520.995000px;}
.yd5{bottom:532.155000px;}
.y118{bottom:532.515000px;}
.yec{bottom:533.955000px;}
.y46{bottom:535.395000px;}
.y97{bottom:535.575000px;}
.y21{bottom:540.435000px;}
.y137{bottom:541.515000px;}
.y6d{bottom:541.695000px;}
.y117{bottom:553.215000px;}
.yeb{bottom:554.655000px;}
.yd4{bottom:555.915000px;}
.yb6{bottom:556.095000px;}
.y96{bottom:556.275000px;}
.y45{bottom:559.155000px;}
.y20{bottom:560.775000px;}
.y136{bottom:562.035000px;}
.y6c{bottom:562.395000px;}
.y116{bottom:573.915000px;}
.yea{bottom:575.355000px;}
.yb5{bottom:576.795000px;}
.y95{bottom:576.975000px;}
.y1f{bottom:579.675000px;}
.y44{bottom:582.915000px;}
.y6b{bottom:583.095000px;}
.y135{bottom:585.075000px;}
.y115{bottom:594.615000px;}
.ye9{bottom:596.085000px;}
.yb4{bottom:597.525000px;}
.y94{bottom:597.705000px;}
.y1e{bottom:598.785000px;}
.yd3{bottom:600.585000px;}
.y6a{bottom:603.825000px;}
.y43{bottom:606.885000px;}
.y15a{bottom:615.345000px;}
.ye8{bottom:616.785000px;}
.y134{bottom:617.505000px;}
.y1d{bottom:617.685000px;}
.yb3{bottom:618.225000px;}
.y93{bottom:618.405000px;}
.y114{bottom:623.445000px;}
.y69{bottom:624.525000px;}
.yd2{bottom:627.045000px;}
.y42{bottom:630.645000px;}
.y159{bottom:636.225000px;}
.y1c{bottom:636.765000px;}
.ye7{bottom:637.485000px;}
.yb2{bottom:638.925000px;}
.y92{bottom:639.105000px;}
.y133{bottom:641.265000px;}
.y113{bottom:644.145000px;}
.y68{bottom:645.225000px;}
.yd1{bottom:650.805000px;}
.y41{bottom:654.405000px;}
.y1b{bottom:655.665000px;}
.y158{bottom:656.925000px;}
.ye6{bottom:658.185000px;}
.yb1{bottom:659.625000px;}
.y91{bottom:659.805000px;}
.y112{bottom:664.845000px;}
.y132{bottom:665.025000px;}
.y1a{bottom:674.565000px;}
.yd0{bottom:674.745000px;}
.y157{bottom:677.445000px;}
.y40{bottom:678.165000px;}
.yb0{bottom:680.325000px;}
.y90{bottom:680.505000px;}
.y111{bottom:685.545000px;}
.y67{bottom:686.445000px;}
.y131{bottom:688.965000px;}
.ye5{bottom:689.505000px;}
.y19{bottom:693.645000px;}
.y156{bottom:698.145000px;}
.ycf{bottom:698.505000px;}
.yaf{bottom:701.025000px;}
.y8f{bottom:701.205000px;}
.y3f{bottom:701.925000px;}
.y110{bottom:706.245000px;}
.y18{bottom:712.545000px;}
.y130{bottom:712.725000px;}
.y66{bottom:713.265000px;}
.ye4{bottom:713.445000px;}
.y155{bottom:718.845000px;}
.yc2{bottom:721.545000px;}
.yae{bottom:721.725000px;}
.yce{bottom:721.905000px;}
.y8e{bottom:722.085000px;}
.y3e{bottom:725.865000px;}
.y10f{bottom:726.945000px;}
.y17{bottom:731.625000px;}
.y12f{bottom:736.485000px;}
.y65{bottom:737.205000px;}
.y154{bottom:739.545000px;}
.yad{bottom:742.425000px;}
.y8d{bottom:742.785000px;}
.y10e{bottom:747.645000px;}
.y3d{bottom:749.625000px;}
.y16{bottom:750.525000px;}
.y12e{bottom:760.245000px;}
.y64{bottom:760.965000px;}
.yac{bottom:763.125000px;}
.y8c{bottom:763.485000px;}
.ycd{bottom:766.905000px;}
.y10d{bottom:768.345000px;}
.y15{bottom:769.425000px;}
.y3c{bottom:773.385000px;}
.y153{bottom:780.945000px;}
.yab{bottom:783.825000px;}
.y8b{bottom:784.185000px;}
.y63{bottom:784.725000px;}
.y14{bottom:788.505000px;}
.y10c{bottom:789.045000px;}
.ycc{bottom:794.265000px;}
.y3b{bottom:797.145000px;}
.y152{bottom:801.645000px;}
.yaa{bottom:804.525000px;}
.y8a{bottom:804.885000px;}
.y13{bottom:807.405000px;}
.y12d{bottom:807.945000px;}
.y62{bottom:808.665000px;}
.y10b{bottom:809.745000px;}
.ycb{bottom:818.025000px;}
.y3a{bottom:821.085000px;}
.y151{bottom:822.345000px;}
.ya9{bottom:825.225000px;}
.y89{bottom:825.585000px;}
.y12{bottom:826.485000px;}
.y10a{bottom:830.445000px;}
.y12c{bottom:831.705000px;}
.y61{bottom:832.425000px;}
.yca{bottom:841.785000px;}
.y150{bottom:843.045000px;}
.y39{bottom:844.845000px;}
.y88{bottom:846.285000px;}
.y11{bottom:848.085000px;}
.y109{bottom:851.145000px;}
.y12b{bottom:855.465000px;}
.y60{bottom:856.185000px;}
.y14f{bottom:863.790000px;}
.yc9{bottom:865.590000px;}
.ya8{bottom:866.310000px;}
.y87{bottom:866.850000px;}
.y38{bottom:868.650000px;}
.y108{bottom:871.710000px;}
.y10{bottom:872.070000px;}
.y12a{bottom:879.270000px;}
.y5f{bottom:879.990000px;}
.y14e{bottom:884.490000px;}
.y86{bottom:887.550000px;}
.yc8{bottom:889.350000px;}
.y37{bottom:892.410000px;}
.yf{bottom:896.010000px;}
.y107{bottom:900.510000px;}
.y5e{bottom:903.930000px;}
.y14d{bottom:905.370000px;}
.y85{bottom:908.250000px;}
.yc7{bottom:913.290000px;}
.y36{bottom:916.350000px;}
.ye{bottom:919.050000px;}
.y106{bottom:921.210000px;}
.y14c{bottom:926.070000px;}
.y5d{bottom:927.690000px;}
.y84{bottom:928.950000px;}
.yc6{bottom:937.050000px;}
.y35{bottom:940.110000px;}
.y105{bottom:941.910000px;}
.yd{bottom:943.530000px;}
.y14b{bottom:946.770000px;}
.y83{bottom:949.650000px;}
.y5c{bottom:951.450000px;}
.yc5{bottom:960.810000px;}
.y104{bottom:962.610000px;}
.y34{bottom:963.870000px;}
.yc{bottom:967.470000px;}
.y82{bottom:970.350000px;}
.y5b{bottom:975.210000px;}
.y103{bottom:983.310000px;}
.yc4{bottom:984.570000px;}
.y33{bottom:987.630000px;}
.y14a{bottom:988.170000px;}
.y81{bottom:991.050000px;}
.yb{bottom:991.230000px;}
.y5a{bottom:999.150000px;}
.y102{bottom:1004.010000px;}
.y149{bottom:1008.870000px;}
.y80{bottom:1011.750000px;}
.y59{bottom:1022.910000px;}
.y101{bottom:1024.710000px;}
.yc3{bottom:1028.850000px;}
.y148{bottom:1029.570000px;}
.y32{bottom:1032.270000px;}
.y7f{bottom:1032.450000px;}
.ya{bottom:1035.330000px;}
.y100{bottom:1045.410000px;}
.y58{bottom:1046.670000px;}
.y147{bottom:1050.270000px;}
.y31{bottom:1053.150000px;}
.y9{bottom:1061.790000px;}
.yff{bottom:1066.110000px;}
.y57{bottom:1070.430000px;}
.y146{bottom:1070.790000px;}
.y30{bottom:1073.850000px;}
.y8{bottom:1085.730000px;}
.yfe{bottom:1086.630000px;}
.y145{bottom:1093.650000px;}
.y56{bottom:1094.370000px;}
.y2f{bottom:1094.550000px;}
.y6{bottom:1117.050000px;}
.y5{bottom:1122.630000px;}
.y1{bottom:1139.760000px;}
.h2{height:16.380000px;}
.h4{height:19.620000px;}
.h3{height:47.321367px;}
.h5{height:50.229844px;}
.he{height:50.273438px;}
.h7{height:50.312812px;}
.h8{height:58.651172px;}
.h6{height:62.327813px;}
.hb{height:65.010937px;}
.hd{height:70.628906px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.hc{height:74.681367px;}
.hf{height:74.704922px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:32.580000px;}
.w3{width:292.530000px;}
.w2{width:301.890000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.431000px;}
.x1{left:106.605000px;}
.xf{left:108.036000px;}
.x15{left:112.536000px;}
.x7{left:118.116000px;}
.xe{left:162.030000px;}
.x10{left:216.030000px;}
.x11{left:219.810000px;}
.x12{left:232.230000px;}
.x9{left:233.490000px;}
.xd{left:272.235000px;}
.x8{left:283.035000px;}
.xa{left:328.215000px;}
.x6{left:331.815000px;}
.xc{left:394.815000px;}
.x13{left:429.375000px;}
.xb{left:439.995000px;}
.x14{left:444.885000px;}
.x5{left:446.505000px;}
.x3{left:465.240000px;}
.x4{left:758.655000px;}
@media print{
.v6{vertical-align:-75.520000pt;}
.v4{vertical-align:-74.240000pt;}
.v2{vertical-align:-72.320000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsd{letter-spacing:-2.752000pt;}
.ls23{letter-spacing:-1.472000pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls3{letter-spacing:-1.050667pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.400533pt;}
.ls26{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.704000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls21{letter-spacing:8.320000pt;}
.lsc{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls20{letter-spacing:17.920000pt;}
.ls15{letter-spacing:27.392000pt;}
.ls8{letter-spacing:181.738667pt;}
.ls0{letter-spacing:887.818667pt;}
.ws15{word-spacing:-64.000000pt;}
.ws11{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.616000pt;}
.ws19{word-spacing:-15.552000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.296000pt;}
.ws16{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.848000pt;}
.ws14{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.528000pt;}
.wsb{word-spacing:-13.248000pt;}
.ws1{word-spacing:-12.256213pt;}
.ws2{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.679680pt;}
.ws4{word-spacing:-10.558933pt;}
.ws1b{word-spacing:-10.319467pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-9.600000pt;}
._1{margin-left:-3.061333pt;}
._0{margin-left:-2.082560pt;}
._2{margin-left:-0.915840pt;}
._3{width:0.953600pt;}
._1c{width:1.862400pt;}
._7{width:2.767360pt;}
._8{width:3.976960pt;}
._d{width:5.181440pt;}
._e{width:6.156160pt;}
._9{width:7.451520pt;}
._15{width:8.612480pt;}
._11{width:10.257707pt;}
._12{width:11.148373pt;}
._10{width:12.116693pt;}
._a{width:13.056427pt;}
._16{width:14.208000pt;}
._20{width:15.102507pt;}
._f{width:16.133120pt;}
._c{width:17.831040pt;}
._b{width:19.077120pt;}
._17{width:20.006400pt;}
._1b{width:21.312000pt;}
._18{width:22.464000pt;}
._19{width:23.360000pt;}
._1f{width:24.261760pt;}
._5{width:25.436160pt;}
._6{width:26.400000pt;}
._14{width:27.744000pt;}
._23{width:28.710400pt;}
._24{width:29.888000pt;}
._1d{width:31.552000pt;}
._1e{width:32.704000pt;}
._1a{width:33.998933pt;}
._21{width:39.232000pt;}
._22{width:40.204800pt;}
._4{width:66.102827pt;}
._25{width:153.578667pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.y4{bottom:4.466667pt;}
.y3{bottom:137.800000pt;}
.y7{bottom:140.666667pt;}
.y55{bottom:158.266667pt;}
.y129{bottom:160.506667pt;}
.yfd{bottom:161.786667pt;}
.yc1{bottom:163.226667pt;}
.y7e{bottom:168.666667pt;}
.ye3{bottom:176.666667pt;}
.y128{bottom:178.906667pt;}
.y54{bottom:179.546667pt;}
.yfc{bottom:180.186667pt;}
.ya7{bottom:181.626667pt;}
.y7d{bottom:187.066667pt;}
.y2e{bottom:189.626667pt;}
.y127{bottom:197.306667pt;}
.ye2{bottom:197.786667pt;}
.yfb{bottom:198.586667pt;}
.ya6{bottom:200.026667pt;}
.y53{bottom:200.666667pt;}
.y7c{bottom:205.466667pt;}
.y2d{bottom:208.026667pt;}
.y126{bottom:215.706667pt;}
.yfa{bottom:216.986667pt;}
.ya5{bottom:218.426667pt;}
.ye1{bottom:219.066667pt;}
.y52{bottom:221.786667pt;}
.y7b{bottom:223.866667pt;}
.y2c{bottom:226.426667pt;}
.y125{bottom:234.106667pt;}
.yf9{bottom:235.386667pt;}
.ya4{bottom:236.826667pt;}
.ye0{bottom:240.186667pt;}
.y144{bottom:242.106667pt;}
.y7a{bottom:242.266667pt;}
.y51{bottom:243.066667pt;}
.y2b{bottom:247.386667pt;}
.y124{bottom:252.506667pt;}
.yf8{bottom:253.786667pt;}
.ya3{bottom:255.226667pt;}
.y143{bottom:260.506667pt;}
.y79{bottom:260.666667pt;}
.ydf{bottom:261.306667pt;}
.y50{bottom:264.186667pt;}
.y2a{bottom:268.506667pt;}
.y123{bottom:270.906667pt;}
.yf7{bottom:272.186667pt;}
.yc0{bottom:273.466667pt;}
.ya2{bottom:273.626667pt;}
.y142{bottom:278.906667pt;}
.y78{bottom:279.066667pt;}
.yde{bottom:282.426667pt;}
.y4f{bottom:285.466667pt;}
.y122{bottom:289.306667pt;}
.y29{bottom:289.786667pt;}
.yf6{bottom:290.586667pt;}
.ya1{bottom:291.866667pt;}
.y141{bottom:297.346667pt;}
.y77{bottom:297.506667pt;}
.ydd{bottom:303.746667pt;}
.y4e{bottom:306.626667pt;}
.y121{bottom:307.746667pt;}
.yf5{bottom:309.026667pt;}
.ybf{bottom:310.306667pt;}
.ya0{bottom:310.466667pt;}
.y28{bottom:310.946667pt;}
.y140{bottom:315.746667pt;}
.y76{bottom:315.906667pt;}
.ydc{bottom:324.866667pt;}
.y15b{bottom:325.986667pt;}
.y120{bottom:326.146667pt;}
.yf4{bottom:327.266667pt;}
.y4d{bottom:327.746667pt;}
.ybe{bottom:328.706667pt;}
.y9f{bottom:328.866667pt;}
.y27{bottom:332.066667pt;}
.y13f{bottom:334.146667pt;}
.y75{bottom:334.306667pt;}
.y11f{bottom:344.546667pt;}
.yf3{bottom:345.826667pt;}
.ydb{bottom:345.986667pt;}
.ybd{bottom:347.106667pt;}
.y9e{bottom:347.266667pt;}
.y4c{bottom:348.866667pt;}
.y13e{bottom:352.546667pt;}
.y74{bottom:352.706667pt;}
.y26{bottom:353.186667pt;}
.y11e{bottom:362.946667pt;}
.yf2{bottom:364.226667pt;}
.ybc{bottom:365.506667pt;}
.y9d{bottom:365.666667pt;}
.yda{bottom:367.106667pt;}
.y4b{bottom:370.146667pt;}
.y13d{bottom:370.946667pt;}
.y73{bottom:371.106667pt;}
.y25{bottom:374.466667pt;}
.y11d{bottom:381.346667pt;}
.yf1{bottom:382.626667pt;}
.ybb{bottom:383.906667pt;}
.y9c{bottom:384.066667pt;}
.yd9{bottom:388.386667pt;}
.y13c{bottom:389.346667pt;}
.y72{bottom:389.506667pt;}
.y4a{bottom:391.266667pt;}
.y24{bottom:395.586667pt;}
.y11c{bottom:399.746667pt;}
.yf0{bottom:401.026667pt;}
.yba{bottom:402.306667pt;}
.y9b{bottom:402.466667pt;}
.y13b{bottom:407.746667pt;}
.y71{bottom:407.906667pt;}
.yd8{bottom:409.506667pt;}
.y49{bottom:412.386667pt;}
.y23{bottom:416.706667pt;}
.y11b{bottom:418.146667pt;}
.yef{bottom:419.426667pt;}
.yb9{bottom:420.706667pt;}
.y9a{bottom:420.866667pt;}
.y13a{bottom:426.146667pt;}
.y70{bottom:426.306667pt;}
.yd7{bottom:430.626667pt;}
.y48{bottom:433.506667pt;}
.y11a{bottom:436.546667pt;}
.yee{bottom:437.826667pt;}
.yb8{bottom:439.106667pt;}
.y99{bottom:439.266667pt;}
.y139{bottom:444.546667pt;}
.y6f{bottom:444.706667pt;}
.yd6{bottom:451.746667pt;}
.y47{bottom:454.786667pt;}
.y119{bottom:454.946667pt;}
.y22{bottom:455.906667pt;}
.yed{bottom:456.226667pt;}
.yb7{bottom:457.506667pt;}
.y98{bottom:457.666667pt;}
.y138{bottom:462.946667pt;}
.y6e{bottom:463.106667pt;}
.yd5{bottom:473.026667pt;}
.y118{bottom:473.346667pt;}
.yec{bottom:474.626667pt;}
.y46{bottom:475.906667pt;}
.y97{bottom:476.066667pt;}
.y21{bottom:480.386667pt;}
.y137{bottom:481.346667pt;}
.y6d{bottom:481.506667pt;}
.y117{bottom:491.746667pt;}
.yeb{bottom:493.026667pt;}
.yd4{bottom:494.146667pt;}
.yb6{bottom:494.306667pt;}
.y96{bottom:494.466667pt;}
.y45{bottom:497.026667pt;}
.y20{bottom:498.466667pt;}
.y136{bottom:499.586667pt;}
.y6c{bottom:499.906667pt;}
.y116{bottom:510.146667pt;}
.yea{bottom:511.426667pt;}
.yb5{bottom:512.706667pt;}
.y95{bottom:512.866667pt;}
.y1f{bottom:515.266667pt;}
.y44{bottom:518.146667pt;}
.y6b{bottom:518.306667pt;}
.y135{bottom:520.066667pt;}
.y115{bottom:528.546667pt;}
.ye9{bottom:529.853333pt;}
.yb4{bottom:531.133333pt;}
.y94{bottom:531.293333pt;}
.y1e{bottom:532.253333pt;}
.yd3{bottom:533.853333pt;}
.y6a{bottom:536.733333pt;}
.y43{bottom:539.453333pt;}
.y15a{bottom:546.973333pt;}
.ye8{bottom:548.253333pt;}
.y134{bottom:548.893333pt;}
.y1d{bottom:549.053333pt;}
.yb3{bottom:549.533333pt;}
.y93{bottom:549.693333pt;}
.y114{bottom:554.173333pt;}
.y69{bottom:555.133333pt;}
.yd2{bottom:557.373333pt;}
.y42{bottom:560.573333pt;}
.y159{bottom:565.533333pt;}
.y1c{bottom:566.013333pt;}
.ye7{bottom:566.653333pt;}
.yb2{bottom:567.933333pt;}
.y92{bottom:568.093333pt;}
.y133{bottom:570.013333pt;}
.y113{bottom:572.573333pt;}
.y68{bottom:573.533333pt;}
.yd1{bottom:578.493333pt;}
.y41{bottom:581.693333pt;}
.y1b{bottom:582.813333pt;}
.y158{bottom:583.933333pt;}
.ye6{bottom:585.053333pt;}
.yb1{bottom:586.333333pt;}
.y91{bottom:586.493333pt;}
.y112{bottom:590.973333pt;}
.y132{bottom:591.133333pt;}
.y1a{bottom:599.613333pt;}
.yd0{bottom:599.773333pt;}
.y157{bottom:602.173333pt;}
.y40{bottom:602.813333pt;}
.yb0{bottom:604.733333pt;}
.y90{bottom:604.893333pt;}
.y111{bottom:609.373333pt;}
.y67{bottom:610.173333pt;}
.y131{bottom:612.413333pt;}
.ye5{bottom:612.893333pt;}
.y19{bottom:616.573333pt;}
.y156{bottom:620.573333pt;}
.ycf{bottom:620.893333pt;}
.yaf{bottom:623.133333pt;}
.y8f{bottom:623.293333pt;}
.y3f{bottom:623.933333pt;}
.y110{bottom:627.773333pt;}
.y18{bottom:633.373333pt;}
.y130{bottom:633.533333pt;}
.y66{bottom:634.013333pt;}
.ye4{bottom:634.173333pt;}
.y155{bottom:638.973333pt;}
.yc2{bottom:641.373333pt;}
.yae{bottom:641.533333pt;}
.yce{bottom:641.693333pt;}
.y8e{bottom:641.853333pt;}
.y3e{bottom:645.213333pt;}
.y10f{bottom:646.173333pt;}
.y17{bottom:650.333333pt;}
.y12f{bottom:654.653333pt;}
.y65{bottom:655.293333pt;}
.y154{bottom:657.373333pt;}
.yad{bottom:659.933333pt;}
.y8d{bottom:660.253333pt;}
.y10e{bottom:664.573333pt;}
.y3d{bottom:666.333333pt;}
.y16{bottom:667.133333pt;}
.y12e{bottom:675.773333pt;}
.y64{bottom:676.413333pt;}
.yac{bottom:678.333333pt;}
.y8c{bottom:678.653333pt;}
.ycd{bottom:681.693333pt;}
.y10d{bottom:682.973333pt;}
.y15{bottom:683.933333pt;}
.y3c{bottom:687.453333pt;}
.y153{bottom:694.173333pt;}
.yab{bottom:696.733333pt;}
.y8b{bottom:697.053333pt;}
.y63{bottom:697.533333pt;}
.y14{bottom:700.893333pt;}
.y10c{bottom:701.373333pt;}
.ycc{bottom:706.013333pt;}
.y3b{bottom:708.573333pt;}
.y152{bottom:712.573333pt;}
.yaa{bottom:715.133333pt;}
.y8a{bottom:715.453333pt;}
.y13{bottom:717.693333pt;}
.y12d{bottom:718.173333pt;}
.y62{bottom:718.813333pt;}
.y10b{bottom:719.773333pt;}
.ycb{bottom:727.133333pt;}
.y3a{bottom:729.853333pt;}
.y151{bottom:730.973333pt;}
.ya9{bottom:733.533333pt;}
.y89{bottom:733.853333pt;}
.y12{bottom:734.653333pt;}
.y10a{bottom:738.173333pt;}
.y12c{bottom:739.293333pt;}
.y61{bottom:739.933333pt;}
.yca{bottom:748.253333pt;}
.y150{bottom:749.373333pt;}
.y39{bottom:750.973333pt;}
.y88{bottom:752.253333pt;}
.y11{bottom:753.853333pt;}
.y109{bottom:756.573333pt;}
.y12b{bottom:760.413333pt;}
.y60{bottom:761.053333pt;}
.y14f{bottom:767.813333pt;}
.yc9{bottom:769.413333pt;}
.ya8{bottom:770.053333pt;}
.y87{bottom:770.533333pt;}
.y38{bottom:772.133333pt;}
.y108{bottom:774.853333pt;}
.y10{bottom:775.173333pt;}
.y12a{bottom:781.573333pt;}
.y5f{bottom:782.213333pt;}
.y14e{bottom:786.213333pt;}
.y86{bottom:788.933333pt;}
.yc8{bottom:790.533333pt;}
.y37{bottom:793.253333pt;}
.yf{bottom:796.453333pt;}
.y107{bottom:800.453333pt;}
.y5e{bottom:803.493333pt;}
.y14d{bottom:804.773333pt;}
.y85{bottom:807.333333pt;}
.yc7{bottom:811.813333pt;}
.y36{bottom:814.533333pt;}
.ye{bottom:816.933333pt;}
.y106{bottom:818.853333pt;}
.y14c{bottom:823.173333pt;}
.y5d{bottom:824.613333pt;}
.y84{bottom:825.733333pt;}
.yc6{bottom:832.933333pt;}
.y35{bottom:835.653333pt;}
.y105{bottom:837.253333pt;}
.yd{bottom:838.693333pt;}
.y14b{bottom:841.573333pt;}
.y83{bottom:844.133333pt;}
.y5c{bottom:845.733333pt;}
.yc5{bottom:854.053333pt;}
.y104{bottom:855.653333pt;}
.y34{bottom:856.773333pt;}
.yc{bottom:859.973333pt;}
.y82{bottom:862.533333pt;}
.y5b{bottom:866.853333pt;}
.y103{bottom:874.053333pt;}
.yc4{bottom:875.173333pt;}
.y33{bottom:877.893333pt;}
.y14a{bottom:878.373333pt;}
.y81{bottom:880.933333pt;}
.yb{bottom:881.093333pt;}
.y5a{bottom:888.133333pt;}
.y102{bottom:892.453333pt;}
.y149{bottom:896.773333pt;}
.y80{bottom:899.333333pt;}
.y59{bottom:909.253333pt;}
.y101{bottom:910.853333pt;}
.yc3{bottom:914.533333pt;}
.y148{bottom:915.173333pt;}
.y32{bottom:917.573333pt;}
.y7f{bottom:917.733333pt;}
.ya{bottom:920.293333pt;}
.y100{bottom:929.253333pt;}
.y58{bottom:930.373333pt;}
.y147{bottom:933.573333pt;}
.y31{bottom:936.133333pt;}
.y9{bottom:943.813333pt;}
.yff{bottom:947.653333pt;}
.y57{bottom:951.493333pt;}
.y146{bottom:951.813333pt;}
.y30{bottom:954.533333pt;}
.y8{bottom:965.093333pt;}
.yfe{bottom:965.893333pt;}
.y145{bottom:972.133333pt;}
.y56{bottom:972.773333pt;}
.y2f{bottom:972.933333pt;}
.y6{bottom:992.933333pt;}
.y5{bottom:997.893333pt;}
.y1{bottom:1013.120000pt;}
.h2{height:14.560000pt;}
.h4{height:17.440000pt;}
.h3{height:42.063437pt;}
.h5{height:44.648750pt;}
.he{height:44.687500pt;}
.h7{height:44.722500pt;}
.h8{height:52.134375pt;}
.h6{height:55.402500pt;}
.hb{height:57.787500pt;}
.hd{height:62.781250pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.hc{height:66.383438pt;}
.hf{height:66.404375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:28.960000pt;}
.w3{width:260.026667pt;}
.w2{width:268.346667pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.272000pt;}
.x1{left:94.760000pt;}
.xf{left:96.032000pt;}
.x15{left:100.032000pt;}
.x7{left:104.992000pt;}
.xe{left:144.026667pt;}
.x10{left:192.026667pt;}
.x11{left:195.386667pt;}
.x12{left:206.426667pt;}
.x9{left:207.546667pt;}
.xd{left:241.986667pt;}
.x8{left:251.586667pt;}
.xa{left:291.746667pt;}
.x6{left:294.946667pt;}
.xc{left:350.946667pt;}
.x13{left:381.666667pt;}
.xb{left:391.106667pt;}
.x14{left:395.453333pt;}
.x5{left:396.893333pt;}
.x3{left:413.546667pt;}
.x4{left:674.360000pt;}
}




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