
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a0faa29968db115a4df175b5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a824e3048162ecb9845dab4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_3a48ac90aef1ea43ab5c02f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b7cb1c7095deb81fbcb338f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_32868027fd4b10f97864be2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_65fe13ee465d0b20d7199f68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_c7533986138126b79bf9c94e.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.lsc{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls13{letter-spacing:5.220000px;}
.ls17{letter-spacing:16.506720px;}
.lsf{letter-spacing:43.146720px;}
.lse{letter-spacing:46.026720px;}
.ls10{letter-spacing:49.626720px;}
.lsd{letter-spacing:64.026720px;}
.ls0{letter-spacing:599.885760px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.166000px;}
.wsb{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.ws7{word-spacing:-10.933800px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.ws3{word-spacing:-0.066240px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.015920px;}
._2{width:2.128800px;}
._7{width:3.307680px;}
._6{width:4.590000px;}
._4{width:5.832000px;}
._5{width:7.020000px;}
._8{width:8.069760px;}
._3{width:9.072000px;}
._d{width:10.517760px;}
._c{width:11.832480px;}
._10{width:12.967920px;}
._13{width:16.483680px;}
._b{width:18.226800px;}
._11{width:19.541520px;}
._e{width:21.274560px;}
._12{width:22.350240px;}
._f{width:23.725200px;}
._29{width:24.831120px;}
._14{width:25.866000px;}
._a{width:27.740160px;}
._9{width:28.804320px;}
._22{width:30.238560px;}
._2c{width:31.806720px;}
._17{width:33.107040px;}
._26{width:35.975520px;}
._18{width:39.800160px;}
._28{width:43.326000px;}
._2b{width:44.487360px;}
._2a{width:45.491760px;}
._23{width:54.740160px;}
._1b{width:59.341680px;}
._27{width:64.421280px;}
._16{width:66.632400px;}
._1a{width:67.827600px;}
._21{width:75.715920px;}
._25{width:101.173680px;}
._19{width:113.065920px;}
._1c{width:132.786720px;}
._1f{width:142.766640px;}
._1e{width:143.782560px;}
._1d{width:169.897680px;}
._24{width:207.546480px;}
._15{width:221.291280px;}
._20{width:267.963840px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:1.620000px;}
.y10a{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y4c{bottom:4.500000px;}
.y65{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.yda{bottom:16.560000px;}
.yed{bottom:16.605000px;}
.ye6{bottom:16.740000px;}
.y109{bottom:20.520000px;}
.y110{bottom:20.565000px;}
.y4{bottom:22.710000px;}
.y4b{bottom:23.220000px;}
.yec{bottom:25.785000px;}
.yd9{bottom:25.920000px;}
.y63{bottom:29.874000px;}
.ye0{bottom:35.100000px;}
.yea{bottom:35.145000px;}
.yd8{bottom:35.280000px;}
.y10f{bottom:37.665000px;}
.y112{bottom:37.800000px;}
.y4a{bottom:41.760000px;}
.y57{bottom:42.114000px;}
.y2d{bottom:44.100000px;}
.ydd{bottom:44.460000px;}
.yeb{bottom:44.505000px;}
.y62{bottom:45.354000px;}
.y3{bottom:47.910000px;}
.y56{bottom:50.754000px;}
.ydc{bottom:53.820000px;}
.ydf{bottom:53.865000px;}
.y55{bottom:60.114000px;}
.y49{bottom:60.300000px;}
.y61{bottom:60.834000px;}
.y2c{bottom:66.240000px;}
.y54{bottom:71.814000px;}
.ya{bottom:71.820000px;}
.y48{bottom:77.580000px;}
.y60{bottom:78.654000px;}
.y2b{bottom:80.100000px;}
.y53{bottom:82.254000px;}
.y9{bottom:90.756000px;}
.y52{bottom:92.874000px;}
.y2a{bottom:93.960000px;}
.y5f{bottom:94.134000px;}
.y47{bottom:94.860000px;}
.y51{bottom:104.934000px;}
.y29{bottom:107.820000px;}
.y149{bottom:109.476000px;}
.y5e{bottom:111.954000px;}
.y46{bottom:112.140000px;}
.y50{bottom:116.994000px;}
.yd2{bottom:117.036000px;}
.y9b{bottom:121.356000px;}
.y28{bottom:121.680000px;}
.y119{bottom:122.796000px;}
.y148{bottom:126.576000px;}
.y5d{bottom:127.434000px;}
.y45{bottom:129.420000px;}
.y4d{bottom:131.076000px;}
.yd1{bottom:134.316000px;}
.y27{bottom:135.540000px;}
.y9a{bottom:139.536000px;}
.y118{bottom:141.156000px;}
.y5c{bottom:142.914000px;}
.y147{bottom:143.856000px;}
.yf7{bottom:146.196000px;}
.y44{bottom:146.700000px;}
.y26{bottom:149.400000px;}
.yd0{bottom:152.670000px;}
.y99{bottom:157.890000px;}
.y5b{bottom:158.394000px;}
.y117{bottom:159.510000px;}
.y146{bottom:161.130000px;}
.y25{bottom:163.260000px;}
.yf6{bottom:163.470000px;}
.y43{bottom:163.980000px;}
.ycf{bottom:169.770000px;}
.y5a{bottom:174.054000px;}
.y98{bottom:176.250000px;}
.y116{bottom:176.790000px;}
.y24{bottom:177.120000px;}
.y4f{bottom:178.014000px;}
.y145{bottom:178.410000px;}
.yf5{bottom:180.750000px;}
.y42{bottom:181.080000px;}
.yce{bottom:188.130000px;}
.y59{bottom:189.534000px;}
.y4e{bottom:190.074000px;}
.y23{bottom:190.980000px;}
.y97{bottom:193.530000px;}
.y115{bottom:194.070000px;}
.y144{bottom:195.690000px;}
.y22{bottom:195.840000px;}
.yf4{bottom:198.030000px;}
.y41{bottom:198.360000px;}
.ycd{bottom:205.410000px;}
.y114{bottom:211.170000px;}
.y96{bottom:211.890000px;}
.y143{bottom:212.970000px;}
.yf3{bottom:215.310000px;}
.y40{bottom:215.640000px;}
.y21{bottom:219.960000px;}
.ycc{bottom:223.770000px;}
.y113{bottom:225.930000px;}
.y95{bottom:230.070000px;}
.yf2{bottom:232.410000px;}
.y3f{bottom:232.920000px;}
.ycb{bottom:241.050000px;}
.y20{bottom:244.110000px;}
.y142{bottom:247.350000px;}
.y94{bottom:248.430000px;}
.yf1{bottom:249.690000px;}
.y3e{bottom:250.230000px;}
.yca{bottom:258.330000px;}
.y141{bottom:264.630000px;}
.y93{bottom:266.790000px;}
.yf0{bottom:266.970000px;}
.y3d{bottom:267.330000px;}
.y1f{bottom:268.230000px;}
.yc9{bottom:276.510000px;}
.y111{bottom:278.490000px;}
.y140{bottom:281.910000px;}
.yef{bottom:284.250000px;}
.y3c{bottom:284.610000px;}
.y92{bottom:285.150000px;}
.y1e{bottom:292.350000px;}
.yc8{bottom:293.790000px;}
.y13f{bottom:299.190000px;}
.yee{bottom:301.530000px;}
.y3b{bottom:301.890000px;}
.y91{bottom:302.430000px;}
.yc7{bottom:312.150000px;}
.y1d{bottom:316.470000px;}
.y3a{bottom:319.170000px;}
.y90{bottom:320.610000px;}
.ye9{bottom:325.290000px;}
.yc6{bottom:329.430000px;}
.y10e{bottom:331.050000px;}
.y13e{bottom:333.570000px;}
.y39{bottom:336.090000px;}
.y8f{bottom:338.970000px;}
.y1c{bottom:340.770000px;}
.yc5{bottom:346.755000px;}
.y13d{bottom:350.895000px;}
.y38{bottom:351.570000px;}
.y8e{bottom:357.375000px;}
.y14{bottom:360.975000px;}
.y1b{bottom:364.890000px;}
.yc4{bottom:364.935000px;}
.y37{bottom:367.050000px;}
.y13c{bottom:368.175000px;}
.y8d{bottom:375.735000px;}
.yc3{bottom:382.215000px;}
.y36{bottom:382.710000px;}
.y10d{bottom:383.475000px;}
.y13b{bottom:385.455000px;}
.y1a{bottom:389.010000px;}
.y8c{bottom:393.015000px;}
.ye8{bottom:393.915000px;}
.y35{bottom:398.190000px;}
.yc2{bottom:400.575000px;}
.y13a{bottom:402.735000px;}
.y8b{bottom:410.295000px;}
.y19{bottom:413.130000px;}
.y34{bottom:413.670000px;}
.yc1{bottom:417.855000px;}
.y10c{bottom:418.755000px;}
.y139{bottom:420.015000px;}
.y8a{bottom:427.395000px;}
.y33{bottom:429.150000px;}
.yc0{bottom:436.215000px;}
.y138{bottom:437.115000px;}
.y18{bottom:437.250000px;}
.y89{bottom:444.675000px;}
.y32{bottom:444.810000px;}
.ybf{bottom:453.495000px;}
.y10b{bottom:454.035000px;}
.y137{bottom:454.395000px;}
.y31{bottom:460.290000px;}
.y17{bottom:461.370000px;}
.ye7{bottom:462.495000px;}
.y88{bottom:470.955000px;}
.ybe{bottom:471.675000px;}
.y30{bottom:475.770000px;}
.y16{bottom:485.670000px;}
.y87{bottom:488.235000px;}
.ybd{bottom:488.955000px;}
.y108{bottom:489.315000px;}
.y2f{bottom:491.250000px;}
.y86{bottom:505.515000px;}
.y136{bottom:506.235000px;}
.y2e{bottom:506.955000px;}
.ybc{bottom:507.315000px;}
.y15{bottom:509.835000px;}
.ye5{bottom:512.355000px;}
.y85{bottom:522.795000px;}
.y135{bottom:523.335000px;}
.ybb{bottom:524.595000px;}
.y107{bottom:527.835000px;}
.y84{bottom:539.895000px;}
.y134{bottom:540.615000px;}
.yba{bottom:542.955000px;}
.y106{bottom:544.935000px;}
.y83{bottom:557.175000px;}
.y133{bottom:557.895000px;}
.yb9{bottom:560.055000px;}
.y105{bottom:562.215000px;}
.ye4{bottom:562.395000px;}
.y82{bottom:574.455000px;}
.y132{bottom:575.175000px;}
.yb8{bottom:578.415000px;}
.y104{bottom:579.495000px;}
.y81{bottom:591.735000px;}
.y131{bottom:593.535000px;}
.yb7{bottom:595.695000px;}
.y103{bottom:596.775000px;}
.y80{bottom:609.045000px;}
.y130{bottom:611.925000px;}
.ye3{bottom:612.465000px;}
.yb6{bottom:614.085000px;}
.y12f{bottom:630.105000px;}
.yb5{bottom:631.365000px;}
.y7f{bottom:635.145000px;}
.y102{bottom:648.465000px;}
.yb4{bottom:648.645000px;}
.y7e{bottom:652.425000px;}
.y101{bottom:665.745000px;}
.yb3{bottom:666.825000px;}
.y7d{bottom:669.705000px;}
.y12e{bottom:674.745000px;}
.ye2{bottom:681.045000px;}
.y100{bottom:683.025000px;}
.yb2{bottom:685.185000px;}
.y7c{bottom:686.985000px;}
.y12d{bottom:692.025000px;}
.yff{bottom:700.305000px;}
.yb1{bottom:703.545000px;}
.y7b{bottom:704.265000px;}
.y12c{bottom:709.305000px;}
.yfe{bottom:717.585000px;}
.y7a{bottom:721.545000px;}
.yb0{bottom:721.905000px;}
.y12b{bottom:726.405000px;}
.yfd{bottom:734.865000px;}
.y79{bottom:738.645000px;}
.yaf{bottom:739.185000px;}
.y12a{bottom:743.685000px;}
.ye1{bottom:749.625000px;}
.yfc{bottom:751.965000px;}
.y78{bottom:757.005000px;}
.yae{bottom:757.365000px;}
.y129{bottom:760.965000px;}
.yfb{bottom:769.245000px;}
.yad{bottom:774.645000px;}
.y77{bottom:775.365000px;}
.y128{bottom:778.245000px;}
.yfa{bottom:786.525000px;}
.yac{bottom:793.005000px;}
.y76{bottom:793.725000px;}
.y127{bottom:795.525000px;}
.yf9{bottom:803.805000px;}
.yab{bottom:810.285000px;}
.y75{bottom:812.085000px;}
.y126{bottom:812.805000px;}
.yde{bottom:818.205000px;}
.yf8{bottom:821.085000px;}
.yaa{bottom:827.565000px;}
.y125{bottom:829.905000px;}
.y74{bottom:838.185000px;}
.ya9{bottom:845.745000px;}
.y124{bottom:847.185000px;}
.y73{bottom:855.465000px;}
.ya8{bottom:863.025000px;}
.y123{bottom:864.465000px;}
.y72{bottom:872.790000px;}
.ya7{bottom:881.430000px;}
.y122{bottom:881.790000px;}
.y13{bottom:885.930000px;}
.ydb{bottom:886.830000px;}
.y71{bottom:890.070000px;}
.ya6{bottom:899.790000px;}
.y12{bottom:904.470000px;}
.y70{bottom:907.350000px;}
.y121{bottom:908.070000px;}
.ya5{bottom:917.070000px;}
.y6f{bottom:924.630000px;}
.y120{bottom:926.430000px;}
.y11{bottom:928.590000px;}
.ya4{bottom:935.430000px;}
.y6e{bottom:941.730000px;}
.y11f{bottom:944.610000px;}
.y10{bottom:945.870000px;}
.ya3{bottom:953.610000px;}
.yd7{bottom:955.410000px;}
.yf{bottom:957.930000px;}
.y6d{bottom:959.010000px;}
.y11e{bottom:962.970000px;}
.ya2{bottom:970.890000px;}
.y6c{bottom:976.290000px;}
.y11d{bottom:980.250000px;}
.ye{bottom:985.470000px;}
.ya1{bottom:989.250000px;}
.y6b{bottom:993.570000px;}
.y11c{bottom:998.610000px;}
.ya0{bottom:1007.610000px;}
.yd6{bottom:1008.690000px;}
.yd{bottom:1009.590000px;}
.y6a{bottom:1010.850000px;}
.y11b{bottom:1016.970000px;}
.y9f{bottom:1024.890000px;}
.yd5{bottom:1025.970000px;}
.y14a{bottom:1027.950000px;}
.y69{bottom:1028.130000px;}
.yc{bottom:1033.710000px;}
.y11a{bottom:1034.070000px;}
.y9e{bottom:1041.990000px;}
.yd4{bottom:1043.070000px;}
.y68{bottom:1045.230000px;}
.y9d{bottom:1060.350000px;}
.yd3{bottom:1061.430000px;}
.yb{bottom:1062.330000px;}
.y67{bottom:1062.510000px;}
.y64{bottom:1065.600000px;}
.y9c{bottom:1078.710000px;}
.y66{bottom:1079.790000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1120.110000px;}
.y6{bottom:1122.090000px;}
.y1{bottom:1123.530000px;}
.h11{height:4.021875px;}
.h6{height:5.729063px;}
.h16{height:21.114844px;}
.h15{height:25.136719px;}
.hb{height:27.147656px;}
.h17{height:27.720000px;}
.h10{height:29.158594px;}
.hf{height:29.464453px;}
.h1f{height:34.380000px;}
.h20{height:34.560000px;}
.h13{height:39.471680px;}
.h8{height:40.132617px;}
.h7{height:41.726953px;}
.hd{height:42.164648px;}
.h19{height:43.506914px;}
.h23{height:43.681992px;}
.h12{height:43.822266px;}
.h5{height:46.251562px;}
.ha{height:48.312422px;}
.h1e{height:49.140000px;}
.h1a{height:49.320000px;}
.h1d{height:49.356000px;}
.hc{height:50.035781px;}
.h21{height:51.696000px;}
.h22{height:51.840000px;}
.h9{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h1b{height:67.860000px;}
.h1c{height:67.896000px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:229.170000px;}
.he{height:519.555000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:56.196000px;}
.wd{width:85.500000px;}
.w10{width:100.080000px;}
.w2{width:104.076000px;}
.wa{width:117.540000px;}
.we{width:121.176000px;}
.w5{width:131.940000px;}
.wc{width:144.756000px;}
.wf{width:149.076000px;}
.wb{width:153.570000px;}
.w8{width:162.900000px;}
.w11{width:245.415000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x1c{left:9.900000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.x24{left:22.140000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x26{left:33.660000px;}
.x15{left:37.260000px;}
.x14{left:40.320000px;}
.x13{left:42.480000px;}
.x1a{left:47.340000px;}
.x1b{left:56.700000px;}
.x19{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x7{left:86.435987px;}
.x2b{left:91.835987px;}
.x2{left:95.790000px;}
.x2a{left:96.885000px;}
.x23{left:110.376000px;}
.x1e{left:113.435987px;}
.x2c{left:118.835987px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x25{left:196.590000px;}
.x1f{left:209.370000px;}
.x17{left:218.370000px;}
.x20{left:266.475000px;}
.x27{left:318.495000px;}
.x21{left:384.735000px;}
.xc{left:452.984987px;}
.xb{left:463.604987px;}
.x28{left:468.465000px;}
.x22{left:539.205000px;}
.xa{left:560.804987px;}
.x29{left:569.265000px;}
.xd{left:629.429987px;}
.x9{left:766.049987px;}
.x8{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.lsc{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls13{letter-spacing:4.640000pt;}
.ls17{letter-spacing:14.672640pt;}
.lsf{letter-spacing:38.352640pt;}
.lse{letter-spacing:40.912640pt;}
.ls10{letter-spacing:44.112640pt;}
.lsd{letter-spacing:56.912640pt;}
.ls0{letter-spacing:533.231787pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.592000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws7{word-spacing:-9.718933pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.ws3{word-spacing:-0.058880pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.903040pt;}
._2{width:1.892267pt;}
._7{width:2.940160pt;}
._6{width:4.080000pt;}
._4{width:5.184000pt;}
._5{width:6.240000pt;}
._8{width:7.173120pt;}
._3{width:8.064000pt;}
._d{width:9.349120pt;}
._c{width:10.517760pt;}
._10{width:11.527040pt;}
._13{width:14.652160pt;}
._b{width:16.201600pt;}
._11{width:17.370240pt;}
._e{width:18.910720pt;}
._12{width:19.866880pt;}
._f{width:21.089067pt;}
._29{width:22.072107pt;}
._14{width:22.992000pt;}
._a{width:24.657920pt;}
._9{width:25.603840pt;}
._22{width:26.878720pt;}
._2c{width:28.272640pt;}
._17{width:29.428480pt;}
._26{width:31.978240pt;}
._18{width:35.377920pt;}
._28{width:38.512000pt;}
._2b{width:39.544320pt;}
._2a{width:40.437120pt;}
._23{width:48.657920pt;}
._1b{width:52.748160pt;}
._27{width:57.263360pt;}
._16{width:59.228800pt;}
._1a{width:60.291200pt;}
._21{width:67.303040pt;}
._25{width:89.932160pt;}
._19{width:100.503040pt;}
._1c{width:118.032640pt;}
._1f{width:126.903680pt;}
._1e{width:127.806720pt;}
._1d{width:151.020160pt;}
._24{width:184.485760pt;}
._15{width:196.703360pt;}
._20{width:238.190080pt;}
.fs2{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:1.440000pt;}
.y10a{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y4c{bottom:4.000000pt;}
.y65{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.yda{bottom:14.720000pt;}
.yed{bottom:14.760000pt;}
.ye6{bottom:14.880000pt;}
.y109{bottom:18.240000pt;}
.y110{bottom:18.280000pt;}
.y4{bottom:20.186667pt;}
.y4b{bottom:20.640000pt;}
.yec{bottom:22.920000pt;}
.yd9{bottom:23.040000pt;}
.y63{bottom:26.554667pt;}
.ye0{bottom:31.200000pt;}
.yea{bottom:31.240000pt;}
.yd8{bottom:31.360000pt;}
.y10f{bottom:33.480000pt;}
.y112{bottom:33.600000pt;}
.y4a{bottom:37.120000pt;}
.y57{bottom:37.434667pt;}
.y2d{bottom:39.200000pt;}
.ydd{bottom:39.520000pt;}
.yeb{bottom:39.560000pt;}
.y62{bottom:40.314667pt;}
.y3{bottom:42.586667pt;}
.y56{bottom:45.114667pt;}
.ydc{bottom:47.840000pt;}
.ydf{bottom:47.880000pt;}
.y55{bottom:53.434667pt;}
.y49{bottom:53.600000pt;}
.y61{bottom:54.074667pt;}
.y2c{bottom:58.880000pt;}
.y54{bottom:63.834667pt;}
.ya{bottom:63.840000pt;}
.y48{bottom:68.960000pt;}
.y60{bottom:69.914667pt;}
.y2b{bottom:71.200000pt;}
.y53{bottom:73.114667pt;}
.y9{bottom:80.672000pt;}
.y52{bottom:82.554667pt;}
.y2a{bottom:83.520000pt;}
.y5f{bottom:83.674667pt;}
.y47{bottom:84.320000pt;}
.y51{bottom:93.274667pt;}
.y29{bottom:95.840000pt;}
.y149{bottom:97.312000pt;}
.y5e{bottom:99.514667pt;}
.y46{bottom:99.680000pt;}
.y50{bottom:103.994667pt;}
.yd2{bottom:104.032000pt;}
.y9b{bottom:107.872000pt;}
.y28{bottom:108.160000pt;}
.y119{bottom:109.152000pt;}
.y148{bottom:112.512000pt;}
.y5d{bottom:113.274667pt;}
.y45{bottom:115.040000pt;}
.y4d{bottom:116.512000pt;}
.yd1{bottom:119.392000pt;}
.y27{bottom:120.480000pt;}
.y9a{bottom:124.032000pt;}
.y118{bottom:125.472000pt;}
.y5c{bottom:127.034667pt;}
.y147{bottom:127.872000pt;}
.yf7{bottom:129.952000pt;}
.y44{bottom:130.400000pt;}
.y26{bottom:132.800000pt;}
.yd0{bottom:135.706667pt;}
.y99{bottom:140.346667pt;}
.y5b{bottom:140.794667pt;}
.y117{bottom:141.786667pt;}
.y146{bottom:143.226667pt;}
.y25{bottom:145.120000pt;}
.yf6{bottom:145.306667pt;}
.y43{bottom:145.760000pt;}
.ycf{bottom:150.906667pt;}
.y5a{bottom:154.714667pt;}
.y98{bottom:156.666667pt;}
.y116{bottom:157.146667pt;}
.y24{bottom:157.440000pt;}
.y4f{bottom:158.234667pt;}
.y145{bottom:158.586667pt;}
.yf5{bottom:160.666667pt;}
.y42{bottom:160.960000pt;}
.yce{bottom:167.226667pt;}
.y59{bottom:168.474667pt;}
.y4e{bottom:168.954667pt;}
.y23{bottom:169.760000pt;}
.y97{bottom:172.026667pt;}
.y115{bottom:172.506667pt;}
.y144{bottom:173.946667pt;}
.y22{bottom:174.080000pt;}
.yf4{bottom:176.026667pt;}
.y41{bottom:176.320000pt;}
.ycd{bottom:182.586667pt;}
.y114{bottom:187.706667pt;}
.y96{bottom:188.346667pt;}
.y143{bottom:189.306667pt;}
.yf3{bottom:191.386667pt;}
.y40{bottom:191.680000pt;}
.y21{bottom:195.520000pt;}
.ycc{bottom:198.906667pt;}
.y113{bottom:200.826667pt;}
.y95{bottom:204.506667pt;}
.yf2{bottom:206.586667pt;}
.y3f{bottom:207.040000pt;}
.ycb{bottom:214.266667pt;}
.y20{bottom:216.986667pt;}
.y142{bottom:219.866667pt;}
.y94{bottom:220.826667pt;}
.yf1{bottom:221.946667pt;}
.y3e{bottom:222.426667pt;}
.yca{bottom:229.626667pt;}
.y141{bottom:235.226667pt;}
.y93{bottom:237.146667pt;}
.yf0{bottom:237.306667pt;}
.y3d{bottom:237.626667pt;}
.y1f{bottom:238.426667pt;}
.yc9{bottom:245.786667pt;}
.y111{bottom:247.546667pt;}
.y140{bottom:250.586667pt;}
.yef{bottom:252.666667pt;}
.y3c{bottom:252.986667pt;}
.y92{bottom:253.466667pt;}
.y1e{bottom:259.866667pt;}
.yc8{bottom:261.146667pt;}
.y13f{bottom:265.946667pt;}
.yee{bottom:268.026667pt;}
.y3b{bottom:268.346667pt;}
.y91{bottom:268.826667pt;}
.yc7{bottom:277.466667pt;}
.y1d{bottom:281.306667pt;}
.y3a{bottom:283.706667pt;}
.y90{bottom:284.986667pt;}
.ye9{bottom:289.146667pt;}
.yc6{bottom:292.826667pt;}
.y10e{bottom:294.266667pt;}
.y13e{bottom:296.506667pt;}
.y39{bottom:298.746667pt;}
.y8f{bottom:301.306667pt;}
.y1c{bottom:302.906667pt;}
.yc5{bottom:308.226667pt;}
.y13d{bottom:311.906667pt;}
.y38{bottom:312.506667pt;}
.y8e{bottom:317.666667pt;}
.y14{bottom:320.866667pt;}
.y1b{bottom:324.346667pt;}
.yc4{bottom:324.386667pt;}
.y37{bottom:326.266667pt;}
.y13c{bottom:327.266667pt;}
.y8d{bottom:333.986667pt;}
.yc3{bottom:339.746667pt;}
.y36{bottom:340.186667pt;}
.y10d{bottom:340.866667pt;}
.y13b{bottom:342.626667pt;}
.y1a{bottom:345.786667pt;}
.y8c{bottom:349.346667pt;}
.ye8{bottom:350.146667pt;}
.y35{bottom:353.946667pt;}
.yc2{bottom:356.066667pt;}
.y13a{bottom:357.986667pt;}
.y8b{bottom:364.706667pt;}
.y19{bottom:367.226667pt;}
.y34{bottom:367.706667pt;}
.yc1{bottom:371.426667pt;}
.y10c{bottom:372.226667pt;}
.y139{bottom:373.346667pt;}
.y8a{bottom:379.906667pt;}
.y33{bottom:381.466667pt;}
.yc0{bottom:387.746667pt;}
.y138{bottom:388.546667pt;}
.y18{bottom:388.666667pt;}
.y89{bottom:395.266667pt;}
.y32{bottom:395.386667pt;}
.ybf{bottom:403.106667pt;}
.y10b{bottom:403.586667pt;}
.y137{bottom:403.906667pt;}
.y31{bottom:409.146667pt;}
.y17{bottom:410.106667pt;}
.ye7{bottom:411.106667pt;}
.y88{bottom:418.626667pt;}
.ybe{bottom:419.266667pt;}
.y30{bottom:422.906667pt;}
.y16{bottom:431.706667pt;}
.y87{bottom:433.986667pt;}
.ybd{bottom:434.626667pt;}
.y108{bottom:434.946667pt;}
.y2f{bottom:436.666667pt;}
.y86{bottom:449.346667pt;}
.y136{bottom:449.986667pt;}
.y2e{bottom:450.626667pt;}
.ybc{bottom:450.946667pt;}
.y15{bottom:453.186667pt;}
.ye5{bottom:455.426667pt;}
.y85{bottom:464.706667pt;}
.y135{bottom:465.186667pt;}
.ybb{bottom:466.306667pt;}
.y107{bottom:469.186667pt;}
.y84{bottom:479.906667pt;}
.y134{bottom:480.546667pt;}
.yba{bottom:482.626667pt;}
.y106{bottom:484.386667pt;}
.y83{bottom:495.266667pt;}
.y133{bottom:495.906667pt;}
.yb9{bottom:497.826667pt;}
.y105{bottom:499.746667pt;}
.ye4{bottom:499.906667pt;}
.y82{bottom:510.626667pt;}
.y132{bottom:511.266667pt;}
.yb8{bottom:514.146667pt;}
.y104{bottom:515.106667pt;}
.y81{bottom:525.986667pt;}
.y131{bottom:527.586667pt;}
.yb7{bottom:529.506667pt;}
.y103{bottom:530.466667pt;}
.y80{bottom:541.373333pt;}
.y130{bottom:543.933333pt;}
.ye3{bottom:544.413333pt;}
.yb6{bottom:545.853333pt;}
.y12f{bottom:560.093333pt;}
.yb5{bottom:561.213333pt;}
.y7f{bottom:564.573333pt;}
.y102{bottom:576.413333pt;}
.yb4{bottom:576.573333pt;}
.y7e{bottom:579.933333pt;}
.y101{bottom:591.773333pt;}
.yb3{bottom:592.733333pt;}
.y7d{bottom:595.293333pt;}
.y12e{bottom:599.773333pt;}
.ye2{bottom:605.373333pt;}
.y100{bottom:607.133333pt;}
.yb2{bottom:609.053333pt;}
.y7c{bottom:610.653333pt;}
.y12d{bottom:615.133333pt;}
.yff{bottom:622.493333pt;}
.yb1{bottom:625.373333pt;}
.y7b{bottom:626.013333pt;}
.y12c{bottom:630.493333pt;}
.yfe{bottom:637.853333pt;}
.y7a{bottom:641.373333pt;}
.yb0{bottom:641.693333pt;}
.y12b{bottom:645.693333pt;}
.yfd{bottom:653.213333pt;}
.y79{bottom:656.573333pt;}
.yaf{bottom:657.053333pt;}
.y12a{bottom:661.053333pt;}
.ye1{bottom:666.333333pt;}
.yfc{bottom:668.413333pt;}
.y78{bottom:672.893333pt;}
.yae{bottom:673.213333pt;}
.y129{bottom:676.413333pt;}
.yfb{bottom:683.773333pt;}
.yad{bottom:688.573333pt;}
.y77{bottom:689.213333pt;}
.y128{bottom:691.773333pt;}
.yfa{bottom:699.133333pt;}
.yac{bottom:704.893333pt;}
.y76{bottom:705.533333pt;}
.y127{bottom:707.133333pt;}
.yf9{bottom:714.493333pt;}
.yab{bottom:720.253333pt;}
.y75{bottom:721.853333pt;}
.y126{bottom:722.493333pt;}
.yde{bottom:727.293333pt;}
.yf8{bottom:729.853333pt;}
.yaa{bottom:735.613333pt;}
.y125{bottom:737.693333pt;}
.y74{bottom:745.053333pt;}
.ya9{bottom:751.773333pt;}
.y124{bottom:753.053333pt;}
.y73{bottom:760.413333pt;}
.ya8{bottom:767.133333pt;}
.y123{bottom:768.413333pt;}
.y72{bottom:775.813333pt;}
.ya7{bottom:783.493333pt;}
.y122{bottom:783.813333pt;}
.y13{bottom:787.493333pt;}
.ydb{bottom:788.293333pt;}
.y71{bottom:791.173333pt;}
.ya6{bottom:799.813333pt;}
.y12{bottom:803.973333pt;}
.y70{bottom:806.533333pt;}
.y121{bottom:807.173333pt;}
.ya5{bottom:815.173333pt;}
.y6f{bottom:821.893333pt;}
.y120{bottom:823.493333pt;}
.y11{bottom:825.413333pt;}
.ya4{bottom:831.493333pt;}
.y6e{bottom:837.093333pt;}
.y11f{bottom:839.653333pt;}
.y10{bottom:840.773333pt;}
.ya3{bottom:847.653333pt;}
.yd7{bottom:849.253333pt;}
.yf{bottom:851.493333pt;}
.y6d{bottom:852.453333pt;}
.y11e{bottom:855.973333pt;}
.ya2{bottom:863.013333pt;}
.y6c{bottom:867.813333pt;}
.y11d{bottom:871.333333pt;}
.ye{bottom:875.973333pt;}
.ya1{bottom:879.333333pt;}
.y6b{bottom:883.173333pt;}
.y11c{bottom:887.653333pt;}
.ya0{bottom:895.653333pt;}
.yd6{bottom:896.613333pt;}
.yd{bottom:897.413333pt;}
.y6a{bottom:898.533333pt;}
.y11b{bottom:903.973333pt;}
.y9f{bottom:911.013333pt;}
.yd5{bottom:911.973333pt;}
.y14a{bottom:913.733333pt;}
.y69{bottom:913.893333pt;}
.yc{bottom:918.853333pt;}
.y11a{bottom:919.173333pt;}
.y9e{bottom:926.213333pt;}
.yd4{bottom:927.173333pt;}
.y68{bottom:929.093333pt;}
.y9d{bottom:942.533333pt;}
.yd3{bottom:943.493333pt;}
.yb{bottom:944.293333pt;}
.y67{bottom:944.453333pt;}
.y64{bottom:947.200000pt;}
.y9c{bottom:958.853333pt;}
.y66{bottom:959.813333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.653333pt;}
.y6{bottom:997.413333pt;}
.y1{bottom:998.693333pt;}
.h11{height:3.575000pt;}
.h6{height:5.092500pt;}
.h16{height:18.768750pt;}
.h15{height:22.343750pt;}
.hb{height:24.131250pt;}
.h17{height:24.640000pt;}
.h10{height:25.918750pt;}
.hf{height:26.190625pt;}
.h1f{height:30.560000pt;}
.h20{height:30.720000pt;}
.h13{height:35.085938pt;}
.h8{height:35.673437pt;}
.h7{height:37.090625pt;}
.hd{height:37.479688pt;}
.h19{height:38.672812pt;}
.h23{height:38.828437pt;}
.h12{height:38.953125pt;}
.h5{height:41.112500pt;}
.ha{height:42.944375pt;}
.h1e{height:43.680000pt;}
.h1a{height:43.840000pt;}
.h1d{height:43.872000pt;}
.hc{height:44.476250pt;}
.h21{height:45.952000pt;}
.h22{height:46.080000pt;}
.h9{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h1b{height:60.320000pt;}
.h1c{height:60.352000pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:203.706667pt;}
.he{height:461.826667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:49.952000pt;}
.wd{width:76.000000pt;}
.w10{width:88.960000pt;}
.w2{width:92.512000pt;}
.wa{width:104.480000pt;}
.we{width:107.712000pt;}
.w5{width:117.280000pt;}
.wc{width:128.672000pt;}
.wf{width:132.512000pt;}
.wb{width:136.506667pt;}
.w8{width:144.800000pt;}
.w11{width:218.146667pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x1c{left:8.800000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.x24{left:19.680000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x26{left:29.920000pt;}
.x15{left:33.120000pt;}
.x14{left:35.840000pt;}
.x13{left:37.760000pt;}
.x1a{left:42.080000pt;}
.x1b{left:50.400000pt;}
.x19{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x7{left:76.831988pt;}
.x2b{left:81.631988pt;}
.x2{left:85.146667pt;}
.x2a{left:86.120000pt;}
.x23{left:98.112000pt;}
.x1e{left:100.831988pt;}
.x2c{left:105.631988pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x25{left:174.746667pt;}
.x1f{left:186.106667pt;}
.x17{left:194.106667pt;}
.x20{left:236.866667pt;}
.x27{left:283.106667pt;}
.x21{left:341.986667pt;}
.xc{left:402.653322pt;}
.xb{left:412.093322pt;}
.x28{left:416.413333pt;}
.x22{left:479.293333pt;}
.xa{left:498.493322pt;}
.x29{left:506.013333pt;}
.xd{left:559.493322pt;}
.x9{left:680.933322pt;}
.x8{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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