
    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_e1e46734e4f8169d023c3bcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_fd9b32b6de73720a651fc7e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_445068ab5c926b7252ab8c9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.764160;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_4a28b489c34b52b911c63d09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_6db4447d0ad0b3025cd171a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_b0d8a78f4a6c4e8c7014a1e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b77b52330e683b54684d33cf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2f4bdf6ab500efe8d8caa47.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_f64e9a6ff270d4069b058943.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d5ddffaf8f452602ce2b7f98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_1ee576d5ef4bd99aea23f2d7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7b7d0692c967d8eb62d92d64.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bfbb48276c9cf3aefb2edad4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928711;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:fff;src:url('chunks/assets/font_84371a9a24aa68c1b1972936.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.630000px;}
.ls1a{letter-spacing:-0.579000px;}
.ls22{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.266400px;}
.ls16{letter-spacing:-0.132600px;}
.ls10{letter-spacing:-0.115800px;}
.ls20{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.025200px;}
.ls7{letter-spacing:0.060480px;}
.ls8{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.064080px;}
.lse{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.132480px;}
.ls1e{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.185760px;}
.ls2{letter-spacing:0.189600px;}
.lsc{letter-spacing:0.205200px;}
.lsd{letter-spacing:0.209520px;}
.ls3{letter-spacing:0.256200px;}
.ls21{letter-spacing:0.313800px;}
.ls1d{letter-spacing:8.064000px;}
.ls15{letter-spacing:45.665280px;}
.ls1c{letter-spacing:49.961280px;}
.ls17{letter-spacing:56.465280px;}
.ls12{letter-spacing:59.321280px;}
.ls4{letter-spacing:60.489360px;}
.ls19{letter-spacing:67.241280px;}
.ls18{letter-spacing:78.065280px;}
.ls14{letter-spacing:78.761280px;}
.ls5{letter-spacing:86.549760px;}
.ls6{letter-spacing:106.685760px;}
.lsf{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.240000px;}
.ws1{word-spacing:-45.966240px;}
.wsc{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.563840px;}
.ws2{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.861040px;}
.ws7{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.389960px;}
.ws8{word-spacing:-10.902240px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:43.326000px;}
._1{margin-left:-19.460160px;}
._b{margin-left:-12.871440px;}
._a{margin-left:-11.811840px;}
._8{margin-left:-10.539720px;}
._c{margin-left:-9.470880px;}
._d{margin-left:-8.117280px;}
._4{margin-left:-6.374880px;}
._9{margin-left:-4.866720px;}
._3{margin-left:-3.858480px;}
._2{margin-left:-2.851920px;}
._5{margin-left:-1.845360px;}
._6{width:1.195200px;}
._0{width:2.270640px;}
._11{width:3.395280px;}
._e{width:4.504320px;}
._f{width:5.958480px;}
._14{width:7.485120px;}
._13{width:8.958960px;}
._12{width:10.200960px;}
._15{width:11.260800px;}
._16{width:12.371760px;}
._1a{width:13.666080px;}
._29{width:14.994720px;}
._19{width:16.295040px;}
._1b{width:18.272880px;}
._17{width:19.607040px;}
._18{width:21.054960px;}
._1f{width:22.124160px;}
._1e{width:23.837040px;}
._1d{width:25.171200px;}
._2a{width:27.025920px;}
._1c{width:28.946880px;}
._2d{width:30.072960px;}
._2e{width:31.322160px;}
._26{width:36.763200px;}
._27{width:37.823040px;}
._7{width:60.716160px;}
._2c{width:78.361920px;}
._2b{width:79.876080px;}
._23{width:88.032960px;}
._22{width:89.291520px;}
._20{width:247.671360px;}
._21{width:248.986800px;}
._25{width:270.183600px;}
._24{width:271.451520px;}
._10{width:849.185760px;}
._28{width:955.740000px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(146,208,80);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y11{bottom:4.500000px;}
.yd{bottom:10.620000px;}
.y17{bottom:12.780000px;}
.y16{bottom:32.760000px;}
.y3{bottom:57.060000px;}
.yc{bottom:66.420000px;}
.y1{bottom:74.880000px;}
.y12e{bottom:117.180000px;}
.yb{bottom:122.220000px;}
.ye4{bottom:129.240000px;}
.yba{bottom:129.960000px;}
.y12d{bottom:138.960000px;}
.y94{bottom:143.100000px;}
.yf9{bottom:147.996000px;}
.ye3{bottom:151.410000px;}
.yb9{bottom:151.590000px;}
.ydb{bottom:153.210000px;}
.y12c{bottom:160.770000px;}
.y93{bottom:164.910000px;}
.yf8{bottom:169.590000px;}
.y7b{bottom:171.930000px;}
.yb8{bottom:173.370000px;}
.yda{bottom:174.810000px;}
.y10e{bottom:177.510000px;}
.ya{bottom:178.200000px;}
.y12b{bottom:182.550000px;}
.y92{bottom:186.510000px;}
.yf7{bottom:191.370000px;}
.y7a{bottom:193.530000px;}
.yd9{bottom:196.590000px;}
.y10d{bottom:199.470000px;}
.y12a{bottom:203.430000px;}
.y91{bottom:208.290000px;}
.ye2{bottom:212.430000px;}
.yb7{bottom:213.150000px;}
.y79{bottom:215.310000px;}
.yd8{bottom:218.370000px;}
.y129{bottom:223.230000px;}
.y10c{bottom:233.130000px;}
.y9{bottom:234.000000px;}
.yb6{bottom:234.930000px;}
.y78{bottom:237.090000px;}
.yd7{bottom:240.150000px;}
.y128{bottom:243.030000px;}
.y14{bottom:246.990000px;}
.y90{bottom:248.070000px;}
.ye1{bottom:251.130000px;}
.yf6{bottom:255.090000px;}
.yb5{bottom:256.530000px;}
.y77{bottom:258.870000px;}
.y57{bottom:261.930000px;}
.y127{bottom:262.830000px;}
.y13{bottom:263.370000px;}
.y10b{bottom:266.970000px;}
.y8f{bottom:269.850000px;}
.yb4{bottom:278.310000px;}
.yd6{bottom:279.750000px;}
.y76{bottom:280.470000px;}
.y126{bottom:282.450000px;}
.y12{bottom:284.250000px;}
.ye0{bottom:285.870000px;}
.y8e{bottom:291.450000px;}
.y56{bottom:295.590000px;}
.y10a{bottom:297.390000px;}
.yb3{bottom:300.090000px;}
.yd5{bottom:301.530000px;}
.yf5{bottom:301.710000px;}
.y75{bottom:302.250000px;}
.y125{bottom:302.970000px;}
.y10{bottom:305.130000px;}
.y8d{bottom:313.230000px;}
.y55{bottom:315.750000px;}
.yb2{bottom:321.870000px;}
.yd4{bottom:323.310000px;}
.y74{bottom:324.030000px;}
.y124{bottom:324.750000px;}
.y8c{bottom:335.010000px;}
.y54{bottom:335.910000px;}
.yf4{bottom:336.450000px;}
.y13f{bottom:338.790000px;}
.yb1{bottom:343.470000px;}
.yf{bottom:344.190000px;}
.y73{bottom:345.810000px;}
.y53{bottom:356.070000px;}
.y8b{bottom:356.790000px;}
.y123{bottom:364.530000px;}
.yb0{bottom:365.250000px;}
.y72{bottom:367.590000px;}
.y52{bottom:376.230000px;}
.y13e{bottom:377.310000px;}
.ye{bottom:377.850000px;}
.y8a{bottom:378.390000px;}
.y122{bottom:386.130000px;}
.yaf{bottom:387.030000px;}
.y71{bottom:389.190000px;}
.y8{bottom:393.555000px;}
.y51{bottom:396.435000px;}
.y13d{bottom:399.315000px;}
.y109{bottom:400.035000px;}
.y89{bottom:400.395000px;}
.y121{bottom:407.955000px;}
.y33{bottom:409.395000px;}
.y70{bottom:411.015000px;}
.yd3{bottom:414.075000px;}
.y50{bottom:416.595000px;}
.y13c{bottom:421.275000px;}
.yae{bottom:426.855000px;}
.y120{bottom:429.735000px;}
.y108{bottom:433.875000px;}
.yd2{bottom:435.855000px;}
.y4f{bottom:436.755000px;}
.y88{bottom:439.995000px;}
.y13b{bottom:443.235000px;}
.y32{bottom:445.215000px;}
.yad{bottom:448.455000px;}
.y6f{bottom:450.795000px;}
.y11f{bottom:451.515000px;}
.y107{bottom:455.835000px;}
.y4e{bottom:456.735000px;}
.yd1{bottom:457.455000px;}
.y87{bottom:461.775000px;}
.yac{bottom:470.235000px;}
.y6e{bottom:472.575000px;}
.y4d{bottom:476.895000px;}
.y31{bottom:477.255000px;}
.yd0{bottom:479.235000px;}
.y86{bottom:483.555000px;}
.y13a{bottom:484.455000px;}
.y106{bottom:489.495000px;}
.yab{bottom:492.015000px;}
.y11e{bottom:493.455000px;}
.y6d{bottom:494.175000px;}
.y4c{bottom:497.055000px;}
.y85{bottom:505.155000px;}
.y30{bottom:506.055000px;}
.yaa{bottom:513.795000px;}
.y6c{bottom:515.955000px;}
.y4b{bottom:517.215000px;}
.ycf{bottom:521.175000px;}
.y105{bottom:523.335000px;}
.y139{bottom:524.235000px;}
.y2f{bottom:525.855000px;}
.y84{bottom:526.935000px;}
.y6b{bottom:537.735000px;}
.y11d{bottom:542.235000px;}
.y138{bottom:546.015000px;}
.ya9{bottom:553.395000px;}
.y104{bottom:553.755000px;}
.y2e{bottom:554.655000px;}
.y4a{bottom:556.995000px;}
.y6a{bottom:559.515000px;}
.y83{bottom:562.215000px;}
.y137{bottom:567.615000px;}
.yce{bottom:568.335000px;}
.ya8{bottom:575.175000px;}
.y69{bottom:581.115000px;}
.y11c{bottom:581.835000px;}
.y2d{bottom:583.455000px;}
.ycd{bottom:588.495000px;}
.y136{bottom:589.395000px;}
.y49{bottom:595.155000px;}
.ya7{bottom:596.955000px;}
.y68{bottom:602.895000px;}
.y11b{bottom:603.615000px;}
.ycc{bottom:608.655000px;}
.y135{bottom:611.175000px;}
.y2c{bottom:612.075000px;}
.y48{bottom:616.215000px;}
.ya6{bottom:618.735000px;}
.y67{bottom:624.675000px;}
.y11a{bottom:625.395000px;}
.ycb{bottom:628.815000px;}
.y134{bottom:632.955000px;}
.y47{bottom:637.095000px;}
.ya5{bottom:640.335000px;}
.y2b{bottom:640.875000px;}
.yca{bottom:649.005000px;}
.y133{bottom:654.765000px;}
.y46{bottom:658.185000px;}
.y2a{bottom:660.705000px;}
.ya4{bottom:662.145000px;}
.y66{bottom:664.485000px;}
.y119{bottom:667.365000px;}
.yc9{bottom:669.165000px;}
.y7{bottom:672.945000px;}
.y45{bottom:679.245000px;}
.y29{bottom:680.505000px;}
.ya3{bottom:683.925000px;}
.y65{bottom:686.085000px;}
.ydf{bottom:686.625000px;}
.yc8{bottom:689.325000px;}
.y132{bottom:696.705000px;}
.y44{bottom:700.305000px;}
.ya2{bottom:705.705000px;}
.y64{bottom:707.865000px;}
.y28{bottom:709.125000px;}
.yc7{bottom:709.485000px;}
.y6{bottom:710.205000px;}
.y118{bottom:716.145000px;}
.y43{bottom:721.185000px;}
.yde{bottom:727.485000px;}
.y63{bottom:729.645000px;}
.yf3{bottom:730.005000px;}
.y27{bottom:737.925000px;}
.y42{bottom:742.245000px;}
.ya1{bottom:745.485000px;}
.yc6{bottom:749.085000px;}
.yf2{bottom:751.965000px;}
.y26{bottom:757.725000px;}
.y117{bottom:759.705000px;}
.y41{bottom:763.305000px;}
.ya0{bottom:767.085000px;}
.yc5{bottom:770.865000px;}
.y62{bottom:771.585000px;}
.yf1{bottom:773.925000px;}
.y116{bottom:781.305000px;}
.y40{bottom:784.365000px;}
.y25{bottom:786.525000px;}
.y9f{bottom:788.865000px;}
.yc4{bottom:792.645000px;}
.yf0{bottom:795.885000px;}
.y115{bottom:803.085000px;}
.y3f{bottom:805.425000px;}
.y9e{bottom:810.645000px;}
.yc3{bottom:814.425000px;}
.y24{bottom:815.325000px;}
.yef{bottom:817.845000px;}
.y61{bottom:820.365000px;}
.y114{bottom:824.865000px;}
.y3e{bottom:826.305000px;}
.y103{bottom:827.745000px;}
.y9d{bottom:832.425000px;}
.y23{bottom:834.945000px;}
.yc2{bottom:836.025000px;}
.y113{bottom:846.645000px;}
.y3d{bottom:847.365000px;}
.y102{bottom:849.345000px;}
.y22{bottom:854.745000px;}
.yc1{bottom:857.805000px;}
.y60{bottom:863.025000px;}
.y3c{bottom:868.425000px;}
.y101{bottom:871.125000px;}
.y131{bottom:872.025000px;}
.y9c{bottom:874.365000px;}
.y21{bottom:874.545000px;}
.yee{bottom:879.765000px;}
.y5f{bottom:884.805000px;}
.y112{bottom:888.585000px;}
.y3b{bottom:889.485000px;}
.y100{bottom:892.950000px;}
.y130{bottom:893.850000px;}
.y20{bottom:894.390000px;}
.yc0{bottom:897.630000px;}
.ydd{bottom:899.790000px;}
.yed{bottom:901.770000px;}
.y3a{bottom:910.410000px;}
.yff{bottom:914.730000px;}
.y12f{bottom:915.630000px;}
.ybf{bottom:919.410000px;}
.y1f{bottom:923.010000px;}
.y9b{bottom:923.190000px;}
.yec{bottom:923.730000px;}
.y5e{bottom:927.510000px;}
.y39{bottom:931.470000px;}
.y111{bottom:937.410000px;}
.y9a{bottom:944.790000px;}
.yeb{bottom:945.690000px;}
.ydc{bottom:948.570000px;}
.y5d{bottom:949.290000px;}
.y1e{bottom:951.810000px;}
.yfe{bottom:952.890000px;}
.ybe{bottom:959.010000px;}
.y82{bottom:962.790000px;}
.y99{bottom:966.570000px;}
.y5c{bottom:971.070000px;}
.y38{bottom:972.150000px;}
.yfd{bottom:973.050000px;}
.y1d{bottom:980.610000px;}
.ybd{bottom:980.790000px;}
.y81{bottom:984.570000px;}
.yea{bottom:985.650000px;}
.y98{bottom:988.350000px;}
.y5b{bottom:992.850000px;}
.yfc{bottom:993.030000px;}
.ybc{bottom:1002.570000px;}
.y80{bottom:1006.350000px;}
.ye9{bottom:1007.610000px;}
.y1c{bottom:1009.410000px;}
.y97{bottom:1010.130000px;}
.y37{bottom:1011.930000px;}
.yfb{bottom:1013.190000px;}
.y5a{bottom:1014.630000px;}
.y110{bottom:1024.350000px;}
.y7f{bottom:1028.130000px;}
.ye8{bottom:1029.570000px;}
.y96{bottom:1031.730000px;}
.yfa{bottom:1033.350000px;}
.y36{bottom:1033.530000px;}
.y59{bottom:1036.230000px;}
.y1b{bottom:1038.210000px;}
.ybb{bottom:1044.510000px;}
.y7e{bottom:1049.730000px;}
.y95{bottom:1053.510000px;}
.y10f{bottom:1066.290000px;}
.ye7{bottom:1069.530000px;}
.y7d{bottom:1071.510000px;}
.y35{bottom:1073.310000px;}
.y1a{bottom:1074.030000px;}
.y58{bottom:1081.230000px;}
.ye6{bottom:1091.670000px;}
.y7c{bottom:1093.290000px;}
.y5{bottom:1105.530000px;}
.y34{bottom:1112.910000px;}
.ye5{bottom:1113.630000px;}
.y19{bottom:1115.070000px;}
.y18{bottom:1135.230000px;}
.y4{bottom:1139.220000px;}
.y15{bottom:1151.640000px;}
.h2{height:19.980000px;}
.hb{height:20.160000px;}
.h8{height:37.260000px;}
.hd{height:43.681992px;}
.h3{height:51.677227px;}
.h12{height:53.302500px;}
.h4{height:57.280781px;}
.hc{height:58.140000px;}
.h17{height:59.439023px;}
.he{height:63.344531px;}
.h5{height:65.884219px;}
.hf{height:67.824844px;}
.h11{height:68.956875px;}
.h10{height:69.086250px;}
.h15{height:70.628906px;}
.h13{height:70.664062px;}
.h16{height:71.613281px;}
.h7{height:72.007031px;}
.h14{height:75.093750px;}
.ha{height:145.069805px;}
.h9{height:279.390000px;}
.h6{height:377.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:84.096000px;}
.w7{width:265.530000px;}
.w8{width:290.370000px;}
.w3{width:324.030000px;}
.w2{width:352.695000px;}
.w9{width:397.695000px;}
.w5{width:656.205000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xa{left:97.416000px;}
.xd{left:105.330000px;}
.x1{left:107.676000px;}
.x11{left:120.635987px;}
.xf{left:124.595987px;}
.x5{left:128.916000px;}
.x12{left:130.535987px;}
.x10{left:135.035987px;}
.x14{left:162.029987px;}
.x13{left:178.409987px;}
.x18{left:188.669987px;}
.xe{left:219.630000px;}
.x1b{left:269.505000px;}
.x1d{left:274.034987px;}
.x4{left:277.605000px;}
.xb{left:281.199000px;}
.x1a{left:295.994987px;}
.x1f{left:303.914987px;}
.x17{left:368.534987px;}
.xc{left:387.795000px;}
.x8{left:434.055000px;}
.x15{left:446.474987px;}
.x16{left:451.514987px;}
.x3{left:460.365000px;}
.x6{left:513.114000px;}
.x9{left:518.865000px;}
.x19{left:599.504987px;}
.x1c{left:707.009987px;}
.x7{left:713.664000px;}
.x1e{left:733.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.560000pt;}
.ls1a{letter-spacing:-0.514667pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.236800pt;}
.ls16{letter-spacing:-0.117867pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls20{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.022400pt;}
.ls7{letter-spacing:0.053760pt;}
.ls8{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.056960pt;}
.lse{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.117760pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.165120pt;}
.ls2{letter-spacing:0.168533pt;}
.lsc{letter-spacing:0.182400pt;}
.lsd{letter-spacing:0.186240pt;}
.ls3{letter-spacing:0.227733pt;}
.ls21{letter-spacing:0.278933pt;}
.ls1d{letter-spacing:7.168000pt;}
.ls15{letter-spacing:40.591360pt;}
.ls1c{letter-spacing:44.410027pt;}
.ls17{letter-spacing:50.191360pt;}
.ls12{letter-spacing:52.730027pt;}
.ls4{letter-spacing:53.768320pt;}
.ls19{letter-spacing:59.770027pt;}
.ls18{letter-spacing:69.391360pt;}
.ls14{letter-spacing:70.010027pt;}
.ls5{letter-spacing:76.933120pt;}
.ls6{letter-spacing:94.831787pt;}
.lsf{letter-spacing:754.831787pt;}
.wsb{word-spacing:-58.880000pt;}
.ws1{word-spacing:-40.858880pt;}
.wsc{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.723413pt;}
.ws2{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.209813pt;}
.ws7{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.902187pt;}
.ws8{word-spacing:-9.690880pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:38.512000pt;}
._1{margin-left:-17.297920pt;}
._b{margin-left:-11.441280pt;}
._a{margin-left:-10.499413pt;}
._8{margin-left:-9.368640pt;}
._c{margin-left:-8.418560pt;}
._d{margin-left:-7.215360pt;}
._4{margin-left:-5.666560pt;}
._9{margin-left:-4.325973pt;}
._3{margin-left:-3.429760pt;}
._2{margin-left:-2.535040pt;}
._5{margin-left:-1.640320pt;}
._6{width:1.062400pt;}
._0{width:2.018347pt;}
._11{width:3.018027pt;}
._e{width:4.003840pt;}
._f{width:5.296427pt;}
._14{width:6.653440pt;}
._13{width:7.963520pt;}
._12{width:9.067520pt;}
._15{width:10.009600pt;}
._16{width:10.997120pt;}
._1a{width:12.147627pt;}
._29{width:13.328640pt;}
._19{width:14.484480pt;}
._1b{width:16.242560pt;}
._17{width:17.428480pt;}
._18{width:18.715520pt;}
._1f{width:19.665920pt;}
._1e{width:21.188480pt;}
._1d{width:22.374400pt;}
._2a{width:24.023040pt;}
._1c{width:25.730560pt;}
._2d{width:26.731520pt;}
._2e{width:27.841920pt;}
._26{width:32.678400pt;}
._27{width:33.620480pt;}
._7{width:53.969920pt;}
._2c{width:69.655040pt;}
._2b{width:71.000960pt;}
._23{width:78.251520pt;}
._22{width:79.370240pt;}
._20{width:220.152320pt;}
._21{width:221.321600pt;}
._25{width:240.163200pt;}
._24{width:241.290240pt;}
._10{width:754.831787pt;}
._28{width:849.546667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y11{bottom:4.000000pt;}
.yd{bottom:9.440000pt;}
.y17{bottom:11.360000pt;}
.y16{bottom:29.120000pt;}
.y3{bottom:50.720000pt;}
.yc{bottom:59.040000pt;}
.y1{bottom:66.560000pt;}
.y12e{bottom:104.160000pt;}
.yb{bottom:108.640000pt;}
.ye4{bottom:114.880000pt;}
.yba{bottom:115.520000pt;}
.y12d{bottom:123.520000pt;}
.y94{bottom:127.200000pt;}
.yf9{bottom:131.552000pt;}
.ye3{bottom:134.586667pt;}
.yb9{bottom:134.746667pt;}
.ydb{bottom:136.186667pt;}
.y12c{bottom:142.906667pt;}
.y93{bottom:146.586667pt;}
.yf8{bottom:150.746667pt;}
.y7b{bottom:152.826667pt;}
.yb8{bottom:154.106667pt;}
.yda{bottom:155.386667pt;}
.y10e{bottom:157.786667pt;}
.ya{bottom:158.400000pt;}
.y12b{bottom:162.266667pt;}
.y92{bottom:165.786667pt;}
.yf7{bottom:170.106667pt;}
.y7a{bottom:172.026667pt;}
.yd9{bottom:174.746667pt;}
.y10d{bottom:177.306667pt;}
.y12a{bottom:180.826667pt;}
.y91{bottom:185.146667pt;}
.ye2{bottom:188.826667pt;}
.yb7{bottom:189.466667pt;}
.y79{bottom:191.386667pt;}
.yd8{bottom:194.106667pt;}
.y129{bottom:198.426667pt;}
.y10c{bottom:207.226667pt;}
.y9{bottom:208.000000pt;}
.yb6{bottom:208.826667pt;}
.y78{bottom:210.746667pt;}
.yd7{bottom:213.466667pt;}
.y128{bottom:216.026667pt;}
.y14{bottom:219.546667pt;}
.y90{bottom:220.506667pt;}
.ye1{bottom:223.226667pt;}
.yf6{bottom:226.746667pt;}
.yb5{bottom:228.026667pt;}
.y77{bottom:230.106667pt;}
.y57{bottom:232.826667pt;}
.y127{bottom:233.626667pt;}
.y13{bottom:234.106667pt;}
.y10b{bottom:237.306667pt;}
.y8f{bottom:239.866667pt;}
.yb4{bottom:247.386667pt;}
.yd6{bottom:248.666667pt;}
.y76{bottom:249.306667pt;}
.y126{bottom:251.066667pt;}
.y12{bottom:252.666667pt;}
.ye0{bottom:254.106667pt;}
.y8e{bottom:259.066667pt;}
.y56{bottom:262.746667pt;}
.y10a{bottom:264.346667pt;}
.yb3{bottom:266.746667pt;}
.yd5{bottom:268.026667pt;}
.yf5{bottom:268.186667pt;}
.y75{bottom:268.666667pt;}
.y125{bottom:269.306667pt;}
.y10{bottom:271.226667pt;}
.y8d{bottom:278.426667pt;}
.y55{bottom:280.666667pt;}
.yb2{bottom:286.106667pt;}
.yd4{bottom:287.386667pt;}
.y74{bottom:288.026667pt;}
.y124{bottom:288.666667pt;}
.y8c{bottom:297.786667pt;}
.y54{bottom:298.586667pt;}
.yf4{bottom:299.066667pt;}
.y13f{bottom:301.146667pt;}
.yb1{bottom:305.306667pt;}
.yf{bottom:305.946667pt;}
.y73{bottom:307.386667pt;}
.y53{bottom:316.506667pt;}
.y8b{bottom:317.146667pt;}
.y123{bottom:324.026667pt;}
.yb0{bottom:324.666667pt;}
.y72{bottom:326.746667pt;}
.y52{bottom:334.426667pt;}
.y13e{bottom:335.386667pt;}
.ye{bottom:335.866667pt;}
.y8a{bottom:336.346667pt;}
.y122{bottom:343.226667pt;}
.yaf{bottom:344.026667pt;}
.y71{bottom:345.946667pt;}
.y8{bottom:349.826667pt;}
.y51{bottom:352.386667pt;}
.y13d{bottom:354.946667pt;}
.y109{bottom:355.586667pt;}
.y89{bottom:355.906667pt;}
.y121{bottom:362.626667pt;}
.y33{bottom:363.906667pt;}
.y70{bottom:365.346667pt;}
.yd3{bottom:368.066667pt;}
.y50{bottom:370.306667pt;}
.y13c{bottom:374.466667pt;}
.yae{bottom:379.426667pt;}
.y120{bottom:381.986667pt;}
.y108{bottom:385.666667pt;}
.yd2{bottom:387.426667pt;}
.y4f{bottom:388.226667pt;}
.y88{bottom:391.106667pt;}
.y13b{bottom:393.986667pt;}
.y32{bottom:395.746667pt;}
.yad{bottom:398.626667pt;}
.y6f{bottom:400.706667pt;}
.y11f{bottom:401.346667pt;}
.y107{bottom:405.186667pt;}
.y4e{bottom:405.986667pt;}
.yd1{bottom:406.626667pt;}
.y87{bottom:410.466667pt;}
.yac{bottom:417.986667pt;}
.y6e{bottom:420.066667pt;}
.y4d{bottom:423.906667pt;}
.y31{bottom:424.226667pt;}
.yd0{bottom:425.986667pt;}
.y86{bottom:429.826667pt;}
.y13a{bottom:430.626667pt;}
.y106{bottom:435.106667pt;}
.yab{bottom:437.346667pt;}
.y11e{bottom:438.626667pt;}
.y6d{bottom:439.266667pt;}
.y4c{bottom:441.826667pt;}
.y85{bottom:449.026667pt;}
.y30{bottom:449.826667pt;}
.yaa{bottom:456.706667pt;}
.y6c{bottom:458.626667pt;}
.y4b{bottom:459.746667pt;}
.ycf{bottom:463.266667pt;}
.y105{bottom:465.186667pt;}
.y139{bottom:465.986667pt;}
.y2f{bottom:467.426667pt;}
.y84{bottom:468.386667pt;}
.y6b{bottom:477.986667pt;}
.y11d{bottom:481.986667pt;}
.y138{bottom:485.346667pt;}
.ya9{bottom:491.906667pt;}
.y104{bottom:492.226667pt;}
.y2e{bottom:493.026667pt;}
.y4a{bottom:495.106667pt;}
.y6a{bottom:497.346667pt;}
.y83{bottom:499.746667pt;}
.y137{bottom:504.546667pt;}
.yce{bottom:505.186667pt;}
.ya8{bottom:511.266667pt;}
.y69{bottom:516.546667pt;}
.y11c{bottom:517.186667pt;}
.y2d{bottom:518.626667pt;}
.ycd{bottom:523.106667pt;}
.y136{bottom:523.906667pt;}
.y49{bottom:529.026667pt;}
.ya7{bottom:530.626667pt;}
.y68{bottom:535.906667pt;}
.y11b{bottom:536.546667pt;}
.ycc{bottom:541.026667pt;}
.y135{bottom:543.266667pt;}
.y2c{bottom:544.066667pt;}
.y48{bottom:547.746667pt;}
.ya6{bottom:549.986667pt;}
.y67{bottom:555.266667pt;}
.y11a{bottom:555.906667pt;}
.ycb{bottom:558.946667pt;}
.y134{bottom:562.626667pt;}
.y47{bottom:566.306667pt;}
.ya5{bottom:569.186667pt;}
.y2b{bottom:569.666667pt;}
.yca{bottom:576.893333pt;}
.y133{bottom:582.013333pt;}
.y46{bottom:585.053333pt;}
.y2a{bottom:587.293333pt;}
.ya4{bottom:588.573333pt;}
.y66{bottom:590.653333pt;}
.y119{bottom:593.213333pt;}
.yc9{bottom:594.813333pt;}
.y7{bottom:598.173333pt;}
.y45{bottom:603.773333pt;}
.y29{bottom:604.893333pt;}
.ya3{bottom:607.933333pt;}
.y65{bottom:609.853333pt;}
.ydf{bottom:610.333333pt;}
.yc8{bottom:612.733333pt;}
.y132{bottom:619.293333pt;}
.y44{bottom:622.493333pt;}
.ya2{bottom:627.293333pt;}
.y64{bottom:629.213333pt;}
.y28{bottom:630.333333pt;}
.yc7{bottom:630.653333pt;}
.y6{bottom:631.293333pt;}
.y118{bottom:636.573333pt;}
.y43{bottom:641.053333pt;}
.yde{bottom:646.653333pt;}
.y63{bottom:648.573333pt;}
.yf3{bottom:648.893333pt;}
.y27{bottom:655.933333pt;}
.y42{bottom:659.773333pt;}
.ya1{bottom:662.653333pt;}
.yc6{bottom:665.853333pt;}
.yf2{bottom:668.413333pt;}
.y26{bottom:673.533333pt;}
.y117{bottom:675.293333pt;}
.y41{bottom:678.493333pt;}
.ya0{bottom:681.853333pt;}
.yc5{bottom:685.213333pt;}
.y62{bottom:685.853333pt;}
.yf1{bottom:687.933333pt;}
.y116{bottom:694.493333pt;}
.y40{bottom:697.213333pt;}
.y25{bottom:699.133333pt;}
.y9f{bottom:701.213333pt;}
.yc4{bottom:704.573333pt;}
.yf0{bottom:707.453333pt;}
.y115{bottom:713.853333pt;}
.y3f{bottom:715.933333pt;}
.y9e{bottom:720.573333pt;}
.yc3{bottom:723.933333pt;}
.y24{bottom:724.733333pt;}
.yef{bottom:726.973333pt;}
.y61{bottom:729.213333pt;}
.y114{bottom:733.213333pt;}
.y3e{bottom:734.493333pt;}
.y103{bottom:735.773333pt;}
.y9d{bottom:739.933333pt;}
.y23{bottom:742.173333pt;}
.yc2{bottom:743.133333pt;}
.y113{bottom:752.573333pt;}
.y3d{bottom:753.213333pt;}
.y102{bottom:754.973333pt;}
.y22{bottom:759.773333pt;}
.yc1{bottom:762.493333pt;}
.y60{bottom:767.133333pt;}
.y3c{bottom:771.933333pt;}
.y101{bottom:774.333333pt;}
.y131{bottom:775.133333pt;}
.y9c{bottom:777.213333pt;}
.y21{bottom:777.373333pt;}
.yee{bottom:782.013333pt;}
.y5f{bottom:786.493333pt;}
.y112{bottom:789.853333pt;}
.y3b{bottom:790.653333pt;}
.y100{bottom:793.733333pt;}
.y130{bottom:794.533333pt;}
.y20{bottom:795.013333pt;}
.yc0{bottom:797.893333pt;}
.ydd{bottom:799.813333pt;}
.yed{bottom:801.573333pt;}
.y3a{bottom:809.253333pt;}
.yff{bottom:813.093333pt;}
.y12f{bottom:813.893333pt;}
.ybf{bottom:817.253333pt;}
.y1f{bottom:820.453333pt;}
.y9b{bottom:820.613333pt;}
.yec{bottom:821.093333pt;}
.y5e{bottom:824.453333pt;}
.y39{bottom:827.973333pt;}
.y111{bottom:833.253333pt;}
.y9a{bottom:839.813333pt;}
.yeb{bottom:840.613333pt;}
.ydc{bottom:843.173333pt;}
.y5d{bottom:843.813333pt;}
.y1e{bottom:846.053333pt;}
.yfe{bottom:847.013333pt;}
.ybe{bottom:852.453333pt;}
.y82{bottom:855.813333pt;}
.y99{bottom:859.173333pt;}
.y5c{bottom:863.173333pt;}
.y38{bottom:864.133333pt;}
.yfd{bottom:864.933333pt;}
.y1d{bottom:871.653333pt;}
.ybd{bottom:871.813333pt;}
.y81{bottom:875.173333pt;}
.yea{bottom:876.133333pt;}
.y98{bottom:878.533333pt;}
.y5b{bottom:882.533333pt;}
.yfc{bottom:882.693333pt;}
.ybc{bottom:891.173333pt;}
.y80{bottom:894.533333pt;}
.ye9{bottom:895.653333pt;}
.y1c{bottom:897.253333pt;}
.y97{bottom:897.893333pt;}
.y37{bottom:899.493333pt;}
.yfb{bottom:900.613333pt;}
.y5a{bottom:901.893333pt;}
.y110{bottom:910.533333pt;}
.y7f{bottom:913.893333pt;}
.ye8{bottom:915.173333pt;}
.y96{bottom:917.093333pt;}
.yfa{bottom:918.533333pt;}
.y36{bottom:918.693333pt;}
.y59{bottom:921.093333pt;}
.y1b{bottom:922.853333pt;}
.ybb{bottom:928.453333pt;}
.y7e{bottom:933.093333pt;}
.y95{bottom:936.453333pt;}
.y10f{bottom:947.813333pt;}
.ye7{bottom:950.693333pt;}
.y7d{bottom:952.453333pt;}
.y35{bottom:954.053333pt;}
.y1a{bottom:954.693333pt;}
.y58{bottom:961.093333pt;}
.ye6{bottom:970.373333pt;}
.y7c{bottom:971.813333pt;}
.y5{bottom:982.693333pt;}
.y34{bottom:989.253333pt;}
.ye5{bottom:989.893333pt;}
.y19{bottom:991.173333pt;}
.y18{bottom:1009.093333pt;}
.y4{bottom:1012.640000pt;}
.y15{bottom:1023.680000pt;}
.h2{height:17.760000pt;}
.hb{height:17.920000pt;}
.h8{height:33.120000pt;}
.hd{height:38.828437pt;}
.h3{height:45.935313pt;}
.h12{height:47.380000pt;}
.h4{height:50.916250pt;}
.hc{height:51.680000pt;}
.h17{height:52.834688pt;}
.he{height:56.306250pt;}
.h5{height:58.563750pt;}
.hf{height:60.288750pt;}
.h11{height:61.295000pt;}
.h10{height:61.410000pt;}
.h15{height:62.781250pt;}
.h13{height:62.812500pt;}
.h16{height:63.656250pt;}
.h7{height:64.006250pt;}
.h14{height:66.750000pt;}
.ha{height:128.950937pt;}
.h9{height:248.346667pt;}
.h6{height:335.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:74.752000pt;}
.w7{width:236.026667pt;}
.w8{width:258.106667pt;}
.w3{width:288.026667pt;}
.w2{width:313.506667pt;}
.w9{width:353.506667pt;}
.w5{width:583.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xa{left:86.592000pt;}
.xd{left:93.626667pt;}
.x1{left:95.712000pt;}
.x11{left:107.231988pt;}
.xf{left:110.751988pt;}
.x5{left:114.592000pt;}
.x12{left:116.031988pt;}
.x10{left:120.031988pt;}
.x14{left:144.026655pt;}
.x13{left:158.586655pt;}
.x18{left:167.706655pt;}
.xe{left:195.226667pt;}
.x1b{left:239.560000pt;}
.x1d{left:243.586655pt;}
.x4{left:246.760000pt;}
.xb{left:249.954667pt;}
.x1a{left:263.106655pt;}
.x1f{left:270.146655pt;}
.x17{left:327.586655pt;}
.xc{left:344.706667pt;}
.x8{left:385.826667pt;}
.x15{left:396.866655pt;}
.x16{left:401.346655pt;}
.x3{left:409.213333pt;}
.x6{left:456.101333pt;}
.x9{left:461.213333pt;}
.x19{left:532.893322pt;}
.x1c{left:628.453322pt;}
.x7{left:634.368000pt;}
.x1e{left:651.973322pt;}
}




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