
    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_5757ad44501300947c156fef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7bc3a0bc3a5161d6f75bcb90.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029297;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_c5e6d7ad6fcdf16f19e2fd9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_6ffacabdb3461ee9ac01f6e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_a60740892dfeddd65e8f14f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_6f24a39fdddb97c37cc5c05d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.841309;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_8c4172bcbe2e2aa7eda9a684.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851074;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_029abdb8eb63b7ecefa2d0b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_34207ad87e5b29cef2abcae1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.000000;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_c63946b72c92d1df409d3cff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675293;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_eac8d5afa2f7afdcf19c22e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_b439bcf6183258192306b516.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.851074;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;}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249549,0.000000,0.000000,0.250000,0,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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:27.352986px;}
.ls1{letter-spacing:61.537330px;}
.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;}
}
.ws1{word-spacing:-76.481654px;}
.ws2{word-spacing:-30.592716px;}
.ws4{word-spacing:-17.373242px;}
.ws3{word-spacing:-13.739649px;}
.ws0{word-spacing:0.000000px;}
._29{margin-left:-9.717803px;}
._26{margin-left:-7.598160px;}
._4{margin-left:-5.910944px;}
._9{margin-left:-4.663774px;}
._1{margin-left:-3.171747px;}
._7{margin-left:-2.158991px;}
._0{margin-left:-1.121285px;}
._2{width:1.718471px;}
._5{width:2.883503px;}
._b{width:3.933211px;}
._a{width:5.219091px;}
._11{width:7.207575px;}
._f{width:8.780291px;}
._d{width:10.142101px;}
._c{width:11.205210px;}
._e{width:12.235363px;}
._10{width:15.150349px;}
._14{width:16.425710px;}
._3{width:17.517954px;}
._17{width:19.514954px;}
._19{width:20.890211px;}
._18{width:22.696898px;}
._1a{width:23.998444px;}
._1c{width:25.138080px;}
._1b{width:26.180604px;}
._16{width:27.809562px;}
._15{width:28.811869px;}
._1e{width:30.241208px;}
._1d{width:31.254785px;}
._13{width:32.611339px;}
._12{width:33.993946px;}
._24{width:36.376890px;}
._25{width:38.357506px;}
._27{width:39.445413px;}
._22{width:41.386391px;}
._28{width:43.528170px;}
._32{width:45.707946px;}
._31{width:46.989763px;}
._8{width:50.200948px;}
._1f{width:55.324332px;}
._20{width:56.462208px;}
._6{width:67.692308px;}
._2c{width:91.581759px;}
._2d{width:92.630335px;}
._2b{width:93.648198px;}
._2e{width:143.600847px;}
._2f{width:144.864590px;}
._21{width:190.840386px;}
._23{width:382.208514px;}
._30{width:482.453606px;}
._2a{width:764.053527px;}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.131360px;}
.fsc{font-size:39.254400px;}
.fs4{font-size:42.000000px;}
.fse{font-size:50.760000px;}
.fsa{font-size:56.174400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:67.683000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:90.016800px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:113.028600px;}
.fs8{font-size:135.366000px;}
.fsb{font-size:157.699200px;}
.fs9{font-size:191.542200px;}
.fs7{font-size:203.048400px;}
.fs6{font-size:338.414400px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.600000px;}
.ya4{bottom:4.680000px;}
.y4b{bottom:4.680600px;}
.y4a{bottom:50.759700px;}
.y2b{bottom:54.540300px;}
.y49{bottom:55.440000px;}
.y5{bottom:66.525004px;}
.y2a{bottom:71.820150px;}
.y29{bottom:89.100000px;}
.y4{bottom:97.125005px;}
.ya2{bottom:109.079700px;}
.y77{bottom:117.720150px;}
.yf5{bottom:119.880150px;}
.y48{bottom:121.140300px;}
.y16d{bottom:121.320750px;}
.ycf{bottom:122.039700px;}
.y141{bottom:122.401200px;}
.ycd{bottom:123.659700px;}
.y47{bottom:125.459700px;}
.y1aa{bottom:126.001050px;}
.ycc{bottom:127.260000px;}
.ya1{bottom:129.599850px;}
.y119{bottom:137.700150px;}
.y76{bottom:138.420150px;}
.y21{bottom:139.264499px;}
.yf4{bottom:140.400300px;}
.y16c{bottom:142.020750px;}
.y140{bottom:142.920750px;}
.ycb{bottom:147.960000px;}
.y46{bottom:149.039700px;}
.ya0{bottom:150.299850px;}
.y1a9{bottom:157.860750px;}
.y118{bottom:158.400150px;}
.y75{bottom:159.120150px;}
.yf3{bottom:161.100300px;}
.y192{bottom:161.460450px;}
.y13f{bottom:163.620750px;}
.yca{bottom:168.480150px;}
.y9f{bottom:170.999850px;}
.y16b{bottom:173.881050px;}
.y117{bottom:179.100150px;}
.y74{bottom:179.640300px;}
.y45{bottom:180.900000px;}
.yf2{bottom:181.800300px;}
.y191{bottom:182.160450px;}
.y13e{bottom:184.320750px;}
.yc9{bottom:189.180150px;}
.y1a8{bottom:189.900450px;}
.y9e{bottom:191.520000px;}
.y16a{bottom:194.581050px;}
.y18{bottom:196.933500px;}
.y116{bottom:199.620300px;}
.y73{bottom:200.340300px;}
.yf1{bottom:202.320450px;}
.y13d{bottom:205.020750px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yc8{bottom:209.880150px;}
.y9d{bottom:212.220000px;}
.y190{bottom:214.020150px;}
.y169{bottom:215.281050px;}
.y44{bottom:215.459700px;}
.y115{bottom:220.320300px;}
.y72{bottom:221.040300px;}
.y1a7{bottom:221.940150px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yf0{bottom:223.020450px;}
.y13c{bottom:225.540900px;}
.yc7{bottom:230.400300px;}
.y1e{bottom:234.718504px;}
.y18f{bottom:234.720150px;}
.y15{bottom:234.733496px;}
.y43{bottom:235.979850px;}
.y168{bottom:235.981050px;}
.y9c{bottom:240.120000px;}
.y114{bottom:241.020300px;}
.y71{bottom:241.740300px;}
.yef{bottom:243.720450px;}
.y13b{bottom:246.240900px;}
.yc6{bottom:251.100300px;}
.y1a6{bottom:253.799850px;}
.y18e{bottom:255.420150px;}
.y42{bottom:256.679850px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y113{bottom:261.540450px;}
.y70{bottom:262.260450px;}
.yee{bottom:264.240000px;}
.y13a{bottom:267.120750px;}
.y167{bottom:267.840750px;}
.yc5{bottom:271.800300px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y41{bottom:277.379850px;}
.y9b{bottom:277.380150px;}
.y112{bottom:282.240450px;}
.yed{bottom:284.940000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a5{bottom:285.659550px;}
.y18d{bottom:287.280450px;}
.y139{bottom:287.640900px;}
.y166{bottom:288.540750px;}
.y6f{bottom:291.420150px;}
.yc4{bottom:292.500300px;}
.y40{bottom:298.079850px;}
.y9a{bottom:298.080150px;}
.y111{bottom:302.940450px;}
.yec{bottom:305.820450px;}
.y18c{bottom:307.980450px;}
.y138{bottom:308.340900px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y6e{bottom:312.120150px;}
.yc3{bottom:313.200300px;}
.y1a4{bottom:317.699850px;}
.y3f{bottom:318.600000px;}
.y99{bottom:318.600300px;}
.y165{bottom:320.581050px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y110{bottom:323.460600px;}
.yeb{bottom:326.340000px;}
.y18b{bottom:328.680450px;}
.y137{bottom:329.040900px;}
.y6d{bottom:332.640300px;}
.yc2{bottom:333.900300px;}
.y3e{bottom:339.300000px;}
.y98{bottom:339.300300px;}
.y164{bottom:341.100600px;}
.y10f{bottom:344.160600px;}
.yf{bottom:348.133500px;}
.y136{bottom:349.561050px;}
.y6c{bottom:353.340300px;}
.y3d{bottom:360.000000px;}
.y97{bottom:360.000300px;}
.y18a{bottom:360.540150px;}
.y163{bottom:361.800600px;}
.y10e{bottom:365.040450px;}
.yc1{bottom:365.760000px;}
.yea{bottom:368.459700px;}
.y135{bottom:370.261050px;}
.y6b{bottom:374.040300px;}
.y1a3{bottom:378.720000px;}
.y3c{bottom:380.520150px;}
.y96{bottom:380.520450px;}
.y189{bottom:381.240150px;}
.y162{bottom:382.500600px;}
.y10d{bottom:385.560600px;}
.yc0{bottom:386.280150px;}
.ye{bottom:386.785499px;}
.y134{bottom:390.961050px;}
.y6a{bottom:394.740300px;}
.ye9{bottom:396.000000px;}
.y3b{bottom:401.220150px;}
.y95{bottom:401.220450px;}
.y188{bottom:401.940150px;}
.y10c{bottom:406.260000px;}
.ybf{bottom:406.980150px;}
.yd{bottom:408.044999px;}
.y133{bottom:411.481200px;}
.y161{bottom:414.360900px;}
.y69{bottom:415.440300px;}
.y1a2{bottom:419.939550px;}
.y3a{bottom:421.920150px;}
.y94{bottom:421.920450px;}
.ybe{bottom:427.860000px;}
.y132{bottom:432.180600px;}
.y187{bottom:433.620000px;}
.y160{bottom:435.060900px;}
.y68{bottom:436.140300px;}
.ye8{bottom:441.720300px;}
.y39{bottom:442.439700px;}
.y93{bottom:442.440000px;}
.y10b{bottom:446.580150px;}
.y186{bottom:454.499850px;}
.y15f{bottom:455.760900px;}
.y67{bottom:456.660450px;}
.ybd{bottom:457.200000px;}
.y1a1{bottom:461.339550px;}
.ye7{bottom:462.240450px;}
.y38{bottom:463.139700px;}
.y92{bottom:463.140000px;}
.y131{bottom:464.220300px;}
.y10a{bottom:467.280150px;}
.y185{bottom:475.199850px;}
.y66{bottom:477.360450px;}
.ye6{bottom:482.940450px;}
.y91{bottom:484.019850px;}
.y130{bottom:484.740450px;}
.y15e{bottom:487.620600px;}
.y109{bottom:487.980150px;}
.y37{bottom:495.180000px;}
.y65{bottom:498.060450px;}
.y1a0{bottom:502.559700px;}
.yc{bottom:502.864502px;}
.ye5{bottom:503.640450px;}
.y90{bottom:504.540000px;}
.y184{bottom:506.880300px;}
.y15d{bottom:508.320600px;}
.y108{bottom:508.680150px;}
.ybc{bottom:513.719700px;}
.y12f{bottom:516.780150px;}
.y64{bottom:518.580000px;}
.yb{bottom:520.864502px;}
.ye4{bottom:524.160000px;}
.y8f{bottom:525.240000px;}
.y183{bottom:527.580300px;}
.y15c{bottom:529.020600px;}
.y107{bottom:529.380150px;}
.y36{bottom:529.560300px;}
.y12e{bottom:537.480150px;}
.ya{bottom:538.864499px;}
.y63{bottom:539.280000px;}
.y19f{bottom:543.779850px;}
.ye3{bottom:544.860000px;}
.ybb{bottom:545.760000px;}
.y182{bottom:548.279700px;}
.y106{bottom:549.900300px;}
.y8e{bottom:554.580000px;}
.y9{bottom:556.864499px;}
.y12d{bottom:558.000300px;}
.y62{bottom:559.980000px;}
.y15b{bottom:560.700450px;}
.y33{bottom:561.419400px;}
.y35{bottom:561.420000px;}
.y34{bottom:567.000000px;}
.y105{bottom:570.600300px;}
.y12c{bottom:578.700300px;}
.y181{bottom:580.320000px;}
.y15a{bottom:581.580300px;}
.y19e{bottom:585.359700px;}
.ye2{bottom:585.360000px;}
.yba{bottom:587.700000px;}
.y61{bottom:588.959850px;}
.y32{bottom:593.459700px;}
.y12b{bottom:599.400300px;}
.y180{bottom:600.840150px;}
.y159{bottom:602.280300px;}
.ye1{bottom:605.880150px;}
.yb9{bottom:608.400000px;}
.y60{bottom:609.659850px;}
.y104{bottom:611.100300px;}
.y8d{bottom:611.280150px;}
.y12a{bottom:619.920450px;}
.y17f{bottom:621.540150px;}
.y158{bottom:622.800450px;}
.yb8{bottom:624.420000px;}
.y31{bottom:625.500000px;}
.y19d{bottom:626.579850px;}
.ye0{bottom:626.580150px;}
.y5f{bottom:630.359850px;}
.y103{bottom:631.620450px;}
.y8c{bottom:631.980150px;}
.y129{bottom:640.620450px;}
.y8{bottom:645.510000px;}
.ydf{bottom:647.280150px;}
.yb7{bottom:650.520000px;}
.y5e{bottom:650.880000px;}
.y102{bottom:652.320450px;}
.y8b{bottom:652.680150px;}
.y17e{bottom:653.579850px;}
.y157{bottom:654.660150px;}
.y30{bottom:658.079400px;}
.y128{bottom:661.320450px;}
.y7{bottom:666.771000px;}
.y19c{bottom:667.800000px;}
.yde{bottom:667.800300px;}
.yb6{bottom:671.040000px;}
.y5d{bottom:671.580000px;}
.y101{bottom:673.019850px;}
.y8a{bottom:673.380150px;}
.y17d{bottom:674.100000px;}
.y156{bottom:675.360150px;}
.ydd{bottom:688.500300px;}
.yb5{bottom:691.740000px;}
.y5c{bottom:692.280000px;}
.y127{bottom:693.180150px;}
.y100{bottom:693.540000px;}
.y89{bottom:693.900300px;}
.y17c{bottom:694.800000px;}
.y155{bottom:696.060150px;}
.y2f{bottom:706.319700px;}
.y19b{bottom:709.200000px;}
.ydc{bottom:709.200300px;}
.yb4{bottom:712.440000px;}
.y5b{bottom:712.980000px;}
.y126{bottom:713.880150px;}
.yff{bottom:714.240000px;}
.y88{bottom:714.600300px;}
.y17b{bottom:715.500000px;}
.y6{bottom:726.298500px;}
.y154{bottom:727.920450px;}
.ydb{bottom:729.900300px;}
.yb3{bottom:732.960000px;}
.y5a{bottom:733.680000px;}
.y125{bottom:734.580150px;}
.yfe{bottom:734.940000px;}
.y17a{bottom:736.020150px;}
.y87{bottom:743.760000px;}
.y153{bottom:748.620450px;}
.y19a{bottom:750.600000px;}
.y3{bottom:752.599495px;}
.yb2{bottom:753.660000px;}
.y59{bottom:754.380000px;}
.y2e{bottom:754.560000px;}
.y124{bottom:755.280150px;}
.yfd{bottom:755.460150px;}
.y86{bottom:764.280150px;}
.y179{bottom:768.059850px;}
.y152{bottom:769.320450px;}
.yda{bottom:770.219850px;}
.yb1{bottom:774.360000px;}
.y58{bottom:775.080000px;}
.y123{bottom:775.800300px;}
.yfc{bottom:776.160150px;}
.y85{bottom:784.980150px;}
.y178{bottom:788.759850px;}
.yd9{bottom:790.919850px;}
.y199{bottom:794.160000px;}
.yb0{bottom:794.880000px;}
.y57{bottom:795.600150px;}
.y122{bottom:796.500300px;}
.yfb{bottom:797.040000px;}
.y151{bottom:801.180150px;}
.y2d{bottom:807.480300px;}
.y177{bottom:809.280000px;}
.yd8{bottom:811.619850px;}
.y84{bottom:814.139850px;}
.yaf{bottom:815.580000px;}
.y56{bottom:816.300150px;}
.y150{bottom:821.880150px;}
.y121{bottom:828.540000px;}
.y176{bottom:829.980000px;}
.yd7{bottom:832.140000px;}
.y83{bottom:834.660000px;}
.yae{bottom:836.280000px;}
.y55{bottom:837.000150px;}
.yfa{bottom:838.980000px;}
.y2c{bottom:839.520000px;}
.y14f{bottom:842.580150px;}
.y120{bottom:849.060150px;}
.y198{bottom:850.680150px;}
.y82{bottom:855.360000px;}
.yad{bottom:856.980000px;}
.y54{bottom:857.519700px;}
.y175{bottom:862.019700px;}
.y14e{bottom:863.100300px;}
.y11f{bottom:869.760150px;}
.y145{bottom:870.299550px;}
.y146{bottom:870.300000px;}
.y197{bottom:871.200300px;}
.yd6{bottom:874.080150px;}
.y81{bottom:876.060000px;}
.yac{bottom:877.680000px;}
.y28{bottom:877.680600px;}
.y53{bottom:878.219700px;}
.y2{bottom:879.369000px;}
.y174{bottom:882.539850px;}
.y14d{bottom:883.800300px;}
.yf9{bottom:884.519700px;}
.y11e{bottom:890.460150px;}
.y196{bottom:892.080150px;}
.y80{bottom:896.580150px;}
.y27{bottom:898.380000px;}
.y52{bottom:898.919700px;}
.yd5{bottom:901.799700px;}
.y173{bottom:903.239850px;}
.yf8{bottom:905.039850px;}
.y11d{bottom:910.980300px;}
.y144{bottom:912.780000px;}
.y14c{bottom:915.840000px;}
.y7f{bottom:917.460000px;}
.yab{bottom:918.900000px;}
.y51{bottom:919.439850px;}
.y172{bottom:923.939850px;}
.yf7{bottom:925.919700px;}
.y26{bottom:927.180000px;}
.yd4{bottom:929.340000px;}
.y14b{bottom:936.360150px;}
.y7e{bottom:938.160000px;}
.yaa{bottom:939.600000px;}
.y50{bottom:940.139850px;}
.y11c{bottom:943.020000px;}
.y143{bottom:944.459850px;}
.y195{bottom:944.460000px;}
.yf6{bottom:946.619700px;}
.y171{bottom:955.799550px;}
.y14a{bottom:957.060150px;}
.ya9{bottom:960.300000px;}
.y4f{bottom:960.839850px;}
.y11b{bottom:963.720000px;}
.y1{bottom:966.726000px;}
.y7d{bottom:967.139850px;}
.yd3{bottom:975.060450px;}
.y142{bottom:976.499550px;}
.y194{bottom:976.499700px;}
.ya8{bottom:981.000000px;}
.y4e{bottom:981.360000px;}
.y7c{bottom:987.839850px;}
.y149{bottom:989.099850px;}
.y11a{bottom:993.060000px;}
.y25{bottom:995.400000px;}
.yd2{bottom:995.580600px;}
.y170{bottom:997.199550px;}
.y193{bottom:997.199700px;}
.ya7{bottom:1001.520000px;}
.y4d{bottom:1002.060000px;}
.y7b{bottom:1008.539850px;}
.y148{bottom:1009.620000px;}
.yd1{bottom:1016.280000px;}
.ya6{bottom:1017.540000px;}
.y16f{bottom:1017.719700px;}
.y7a{bottom:1029.060000px;}
.y147{bottom:1030.320000px;}
.y4c{bottom:1034.460000px;}
.y16e{bottom:1038.419700px;}
.ya5{bottom:1046.700000px;}
.y79{bottom:1049.760000px;}
.yd0{bottom:1059.840000px;}
.ya3{bottom:1065.780000px;}
.y78{bottom:1070.460000px;}
.y24{bottom:1080.720000px;}
.y23{bottom:1101.420000px;}
.y22{bottom:1122.120000px;}
.h1b{height:0.000000px;}
.h1a{height:18.720150px;}
.h18{height:20.519550px;}
.h15{height:20.520150px;}
.h19{height:20.700000px;}
.h12{height:26.312688px;}
.h7{height:32.130000px;}
.h11{height:33.178402px;}
.h13{height:42.903105px;}
.h10{height:45.110984px;}
.h14{height:45.144032px;}
.h6{height:45.900000px;}
.he{height:47.479437px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h9{height:57.206676px;}
.h17{height:59.996549px;}
.h16{height:75.334003px;}
.h5{height:78.030000px;}
.hb{height:90.221968px;}
.hf{height:105.107133px;}
.h4{height:119.055004px;}
.hd{height:127.663625px;}
.hc{height:135.332552px;}
.ha{height:225.554520px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:6.119535px;}
.w7{width:9.000000px;}
.wd{width:9.539655px;}
.w11{width:9.540240px;}
.w4{width:18.000000px;}
.wc{width:35.640300px;}
.w5{width:39.959700px;}
.wf{width:81.900000px;}
.w9{width:95.760300px;}
.w12{width:113.040300px;}
.w8{width:143.459700px;}
.we{width:178.560000px;}
.wa{width:248.400000px;}
.w6{width:292.140000px;}
.w10{width:354.060000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:140.400000px;}
.xf{left:144.720150px;}
.x17{left:148.679850px;}
.x23{left:165.780000px;}
.x12{left:168.300000px;}
.x11{left:176.400000px;}
.x21{left:191.159750px;}
.x4{left:203.484001px;}
.x20{left:238.140629px;}
.xb{left:253.260000px;}
.x18{left:256.320000px;}
.xc{left:258.660000px;}
.x7{left:268.200000px;}
.x5{left:271.260000px;}
.x13{left:293.040000px;}
.x1d{left:328.500596px;}
.x22{left:343.440000px;}
.xd{left:405.720000px;}
.xe{left:411.120000px;}
.x10{left:449.640000px;}
.x3{left:454.959000px;}
.x6{left:458.638981px;}
.x19{left:504.540000px;}
.x1a{left:510.660000px;}
.x1b{left:546.120000px;}
.x14{left:585.180000px;}
.x8{left:610.560000px;}
.x1c{left:637.020000px;}
.x9{left:648.900000px;}
.x15{left:653.040000px;}
.x1f{left:723.960000px;}
.x1e{left:765.360000px;}
.x16{left:796.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:24.313765pt;}
.ls1{letter-spacing:54.699849pt;}
.ws1{word-spacing:-67.983693pt;}
.ws2{word-spacing:-27.193525pt;}
.ws4{word-spacing:-15.442882pt;}
.ws3{word-spacing:-12.213021pt;}
.ws0{word-spacing:0.000000pt;}
._29{margin-left:-8.638047pt;}
._26{margin-left:-6.753920pt;}
._4{margin-left:-5.254172pt;}
._9{margin-left:-4.145577pt;}
._1{margin-left:-2.819330pt;}
._7{margin-left:-1.919103pt;}
._0{margin-left:-0.996698pt;}
._2{width:1.527530pt;}
._5{width:2.563114pt;}
._b{width:3.496187pt;}
._a{width:4.639192pt;}
._11{width:6.406734pt;}
._f{width:7.804703pt;}
._d{width:9.015201pt;}
._c{width:9.960187pt;}
._e{width:10.875878pt;}
._10{width:13.466977pt;}
._14{width:14.600631pt;}
._3{width:15.571515pt;}
._17{width:17.346626pt;}
._19{width:18.569076pt;}
._18{width:20.175020pt;}
._1a{width:21.331950pt;}
._1c{width:22.344960pt;}
._1b{width:23.271648pt;}
._16{width:24.719611pt;}
._15{width:25.610550pt;}
._1e{width:26.881074pt;}
._1d{width:27.782031pt;}
._13{width:28.987857pt;}
._12{width:30.216841pt;}
._24{width:32.335013pt;}
._25{width:34.095561pt;}
._27{width:35.062590pt;}
._22{width:36.787903pt;}
._28{width:38.691707pt;}
._32{width:40.629285pt;}
._31{width:41.768678pt;}
._8{width:44.623065pt;}
._1f{width:49.177184pt;}
._20{width:50.188629pt;}
._6{width:60.170941pt;}
._2c{width:81.406008pt;}
._2d{width:82.338076pt;}
._2b{width:83.242843pt;}
._2e{width:127.645197pt;}
._2f{width:128.768525pt;}
._21{width:169.635899pt;}
._23{width:339.740902pt;}
._30{width:428.847650pt;}
._2a{width:679.158691pt;}
.fsd{font-size:27.672320pt;}
.fsc{font-size:34.892800pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:45.120000pt;}
.fsa{font-size:49.932800pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:60.162667pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:80.014933pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:100.469867pt;}
.fs8{font-size:120.325333pt;}
.fsb{font-size:140.177067pt;}
.fs9{font-size:170.259733pt;}
.fs7{font-size:180.487467pt;}
.fs6{font-size:300.812800pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.200000pt;}
.ya4{bottom:4.160000pt;}
.y4b{bottom:4.160533pt;}
.y4a{bottom:45.119733pt;}
.y2b{bottom:48.480267pt;}
.y49{bottom:49.280000pt;}
.y5{bottom:59.133337pt;}
.y2a{bottom:63.840133pt;}
.y29{bottom:79.200000pt;}
.y4{bottom:86.333337pt;}
.ya2{bottom:96.959733pt;}
.y77{bottom:104.640133pt;}
.yf5{bottom:106.560133pt;}
.y48{bottom:107.680267pt;}
.y16d{bottom:107.840667pt;}
.ycf{bottom:108.479733pt;}
.y141{bottom:108.801067pt;}
.ycd{bottom:109.919733pt;}
.y47{bottom:111.519733pt;}
.y1aa{bottom:112.000933pt;}
.ycc{bottom:113.120000pt;}
.ya1{bottom:115.199867pt;}
.y119{bottom:122.400133pt;}
.y76{bottom:123.040133pt;}
.y21{bottom:123.790666pt;}
.yf4{bottom:124.800267pt;}
.y16c{bottom:126.240667pt;}
.y140{bottom:127.040667pt;}
.ycb{bottom:131.520000pt;}
.y46{bottom:132.479733pt;}
.ya0{bottom:133.599867pt;}
.y1a9{bottom:140.320667pt;}
.y118{bottom:140.800133pt;}
.y75{bottom:141.440133pt;}
.yf3{bottom:143.200267pt;}
.y192{bottom:143.520400pt;}
.y13f{bottom:145.440667pt;}
.yca{bottom:149.760133pt;}
.y9f{bottom:151.999867pt;}
.y16b{bottom:154.560933pt;}
.y117{bottom:159.200133pt;}
.y74{bottom:159.680267pt;}
.y45{bottom:160.800000pt;}
.yf2{bottom:161.600267pt;}
.y191{bottom:161.920400pt;}
.y13e{bottom:163.840667pt;}
.yc9{bottom:168.160133pt;}
.y1a8{bottom:168.800400pt;}
.y9e{bottom:170.240000pt;}
.y16a{bottom:172.960933pt;}
.y18{bottom:175.052000pt;}
.y116{bottom:177.440267pt;}
.y73{bottom:178.080267pt;}
.yf1{bottom:179.840400pt;}
.y13d{bottom:182.240667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yc8{bottom:186.560133pt;}
.y9d{bottom:188.640000pt;}
.y190{bottom:190.240133pt;}
.y169{bottom:191.360933pt;}
.y44{bottom:191.519733pt;}
.y115{bottom:195.840267pt;}
.y72{bottom:196.480267pt;}
.y1a7{bottom:197.280133pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yf0{bottom:198.240400pt;}
.y13c{bottom:200.480800pt;}
.yc7{bottom:204.800267pt;}
.y1e{bottom:208.638670pt;}
.y18f{bottom:208.640133pt;}
.y15{bottom:208.651996pt;}
.y43{bottom:209.759867pt;}
.y168{bottom:209.760933pt;}
.y9c{bottom:213.440000pt;}
.y114{bottom:214.240267pt;}
.y71{bottom:214.880267pt;}
.yef{bottom:216.640400pt;}
.y13b{bottom:218.880800pt;}
.yc6{bottom:223.200267pt;}
.y1a6{bottom:225.599867pt;}
.y18e{bottom:227.040133pt;}
.y42{bottom:228.159867pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y113{bottom:232.480400pt;}
.y70{bottom:233.120400pt;}
.yee{bottom:234.880000pt;}
.y13a{bottom:237.440667pt;}
.y167{bottom:238.080667pt;}
.yc5{bottom:241.600267pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y41{bottom:246.559867pt;}
.y9b{bottom:246.560133pt;}
.y112{bottom:250.880400pt;}
.yed{bottom:253.280000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a5{bottom:253.919600pt;}
.y18d{bottom:255.360400pt;}
.y139{bottom:255.680800pt;}
.y166{bottom:256.480667pt;}
.y6f{bottom:259.040133pt;}
.yc4{bottom:260.000267pt;}
.y40{bottom:264.959867pt;}
.y9a{bottom:264.960133pt;}
.y111{bottom:269.280400pt;}
.yec{bottom:271.840400pt;}
.y18c{bottom:273.760400pt;}
.y138{bottom:274.080800pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y6e{bottom:277.440133pt;}
.yc3{bottom:278.400267pt;}
.y1a4{bottom:282.399867pt;}
.y3f{bottom:283.200000pt;}
.y99{bottom:283.200267pt;}
.y165{bottom:284.960933pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y110{bottom:287.520533pt;}
.yeb{bottom:290.080000pt;}
.y18b{bottom:292.160400pt;}
.y137{bottom:292.480800pt;}
.y6d{bottom:295.680267pt;}
.yc2{bottom:296.800267pt;}
.y3e{bottom:301.600000pt;}
.y98{bottom:301.600267pt;}
.y164{bottom:303.200533pt;}
.y10f{bottom:305.920533pt;}
.yf{bottom:309.452000pt;}
.y136{bottom:310.720933pt;}
.y6c{bottom:314.080267pt;}
.y3d{bottom:320.000000pt;}
.y97{bottom:320.000267pt;}
.y18a{bottom:320.480133pt;}
.y163{bottom:321.600533pt;}
.y10e{bottom:324.480400pt;}
.yc1{bottom:325.120000pt;}
.yea{bottom:327.519733pt;}
.y135{bottom:329.120933pt;}
.y6b{bottom:332.480267pt;}
.y1a3{bottom:336.640000pt;}
.y3c{bottom:338.240133pt;}
.y96{bottom:338.240400pt;}
.y189{bottom:338.880133pt;}
.y162{bottom:340.000533pt;}
.y10d{bottom:342.720533pt;}
.yc0{bottom:343.360133pt;}
.ye{bottom:343.809333pt;}
.y134{bottom:347.520933pt;}
.y6a{bottom:350.880267pt;}
.ye9{bottom:352.000000pt;}
.y3b{bottom:356.640133pt;}
.y95{bottom:356.640400pt;}
.y188{bottom:357.280133pt;}
.y10c{bottom:361.120000pt;}
.ybf{bottom:361.760133pt;}
.yd{bottom:362.706666pt;}
.y133{bottom:365.761067pt;}
.y161{bottom:368.320800pt;}
.y69{bottom:369.280267pt;}
.y1a2{bottom:373.279600pt;}
.y3a{bottom:375.040133pt;}
.y94{bottom:375.040400pt;}
.ybe{bottom:380.320000pt;}
.y132{bottom:384.160533pt;}
.y187{bottom:385.440000pt;}
.y160{bottom:386.720800pt;}
.y68{bottom:387.680267pt;}
.ye8{bottom:392.640267pt;}
.y39{bottom:393.279733pt;}
.y93{bottom:393.280000pt;}
.y10b{bottom:396.960133pt;}
.y186{bottom:403.999867pt;}
.y15f{bottom:405.120800pt;}
.y67{bottom:405.920400pt;}
.ybd{bottom:406.400000pt;}
.y1a1{bottom:410.079600pt;}
.ye7{bottom:410.880400pt;}
.y38{bottom:411.679733pt;}
.y92{bottom:411.680000pt;}
.y131{bottom:412.640267pt;}
.y10a{bottom:415.360133pt;}
.y185{bottom:422.399867pt;}
.y66{bottom:424.320400pt;}
.ye6{bottom:429.280400pt;}
.y91{bottom:430.239867pt;}
.y130{bottom:430.880400pt;}
.y15e{bottom:433.440533pt;}
.y109{bottom:433.760133pt;}
.y37{bottom:440.160000pt;}
.y65{bottom:442.720400pt;}
.y1a0{bottom:446.719733pt;}
.yc{bottom:446.990669pt;}
.ye5{bottom:447.680400pt;}
.y90{bottom:448.480000pt;}
.y184{bottom:450.560267pt;}
.y15d{bottom:451.840533pt;}
.y108{bottom:452.160133pt;}
.ybc{bottom:456.639733pt;}
.y12f{bottom:459.360133pt;}
.y64{bottom:460.960000pt;}
.yb{bottom:462.990669pt;}
.ye4{bottom:465.920000pt;}
.y8f{bottom:466.880000pt;}
.y183{bottom:468.960267pt;}
.y15c{bottom:470.240533pt;}
.y107{bottom:470.560133pt;}
.y36{bottom:470.720267pt;}
.y12e{bottom:477.760133pt;}
.ya{bottom:478.990666pt;}
.y63{bottom:479.360000pt;}
.y19f{bottom:483.359867pt;}
.ye3{bottom:484.320000pt;}
.ybb{bottom:485.120000pt;}
.y182{bottom:487.359733pt;}
.y106{bottom:488.800267pt;}
.y8e{bottom:492.960000pt;}
.y9{bottom:494.990666pt;}
.y12d{bottom:496.000267pt;}
.y62{bottom:497.760000pt;}
.y15b{bottom:498.400400pt;}
.y33{bottom:499.039467pt;}
.y35{bottom:499.040000pt;}
.y34{bottom:504.000000pt;}
.y105{bottom:507.200267pt;}
.y12c{bottom:514.400267pt;}
.y181{bottom:515.840000pt;}
.y15a{bottom:516.960267pt;}
.y19e{bottom:520.319733pt;}
.ye2{bottom:520.320000pt;}
.yba{bottom:522.400000pt;}
.y61{bottom:523.519867pt;}
.y32{bottom:527.519733pt;}
.y12b{bottom:532.800267pt;}
.y180{bottom:534.080133pt;}
.y159{bottom:535.360267pt;}
.ye1{bottom:538.560133pt;}
.yb9{bottom:540.800000pt;}
.y60{bottom:541.919867pt;}
.y104{bottom:543.200267pt;}
.y8d{bottom:543.360133pt;}
.y12a{bottom:551.040400pt;}
.y17f{bottom:552.480133pt;}
.y158{bottom:553.600400pt;}
.yb8{bottom:555.040000pt;}
.y31{bottom:556.000000pt;}
.y19d{bottom:556.959867pt;}
.ye0{bottom:556.960133pt;}
.y5f{bottom:560.319867pt;}
.y103{bottom:561.440400pt;}
.y8c{bottom:561.760133pt;}
.y129{bottom:569.440400pt;}
.y8{bottom:573.786667pt;}
.ydf{bottom:575.360133pt;}
.yb7{bottom:578.240000pt;}
.y5e{bottom:578.560000pt;}
.y102{bottom:579.840400pt;}
.y8b{bottom:580.160133pt;}
.y17e{bottom:580.959867pt;}
.y157{bottom:581.920133pt;}
.y30{bottom:584.959467pt;}
.y128{bottom:587.840400pt;}
.y7{bottom:592.685334pt;}
.y19c{bottom:593.600000pt;}
.yde{bottom:593.600267pt;}
.yb6{bottom:596.480000pt;}
.y5d{bottom:596.960000pt;}
.y101{bottom:598.239867pt;}
.y8a{bottom:598.560133pt;}
.y17d{bottom:599.200000pt;}
.y156{bottom:600.320133pt;}
.ydd{bottom:612.000267pt;}
.yb5{bottom:614.880000pt;}
.y5c{bottom:615.360000pt;}
.y127{bottom:616.160133pt;}
.y100{bottom:616.480000pt;}
.y89{bottom:616.800267pt;}
.y17c{bottom:617.600000pt;}
.y155{bottom:618.720133pt;}
.y2f{bottom:627.839733pt;}
.y19b{bottom:630.400000pt;}
.ydc{bottom:630.400267pt;}
.yb4{bottom:633.280000pt;}
.y5b{bottom:633.760000pt;}
.y126{bottom:634.560133pt;}
.yff{bottom:634.880000pt;}
.y88{bottom:635.200267pt;}
.y17b{bottom:636.000000pt;}
.y6{bottom:645.598667pt;}
.y154{bottom:647.040400pt;}
.ydb{bottom:648.800267pt;}
.yb3{bottom:651.520000pt;}
.y5a{bottom:652.160000pt;}
.y125{bottom:652.960133pt;}
.yfe{bottom:653.280000pt;}
.y17a{bottom:654.240133pt;}
.y87{bottom:661.120000pt;}
.y153{bottom:665.440400pt;}
.y19a{bottom:667.200000pt;}
.y3{bottom:668.977329pt;}
.yb2{bottom:669.920000pt;}
.y59{bottom:670.560000pt;}
.y2e{bottom:670.720000pt;}
.y124{bottom:671.360133pt;}
.yfd{bottom:671.520133pt;}
.y86{bottom:679.360133pt;}
.y179{bottom:682.719867pt;}
.y152{bottom:683.840400pt;}
.yda{bottom:684.639867pt;}
.yb1{bottom:688.320000pt;}
.y58{bottom:688.960000pt;}
.y123{bottom:689.600267pt;}
.yfc{bottom:689.920133pt;}
.y85{bottom:697.760133pt;}
.y178{bottom:701.119867pt;}
.yd9{bottom:703.039867pt;}
.y199{bottom:705.920000pt;}
.yb0{bottom:706.560000pt;}
.y57{bottom:707.200133pt;}
.y122{bottom:708.000267pt;}
.yfb{bottom:708.480000pt;}
.y151{bottom:712.160133pt;}
.y2d{bottom:717.760267pt;}
.y177{bottom:719.360000pt;}
.yd8{bottom:721.439867pt;}
.y84{bottom:723.679867pt;}
.yaf{bottom:724.960000pt;}
.y56{bottom:725.600133pt;}
.y150{bottom:730.560133pt;}
.y121{bottom:736.480000pt;}
.y176{bottom:737.760000pt;}
.yd7{bottom:739.680000pt;}
.y83{bottom:741.920000pt;}
.yae{bottom:743.360000pt;}
.y55{bottom:744.000133pt;}
.yfa{bottom:745.760000pt;}
.y2c{bottom:746.240000pt;}
.y14f{bottom:748.960133pt;}
.y120{bottom:754.720133pt;}
.y198{bottom:756.160133pt;}
.y82{bottom:760.320000pt;}
.yad{bottom:761.760000pt;}
.y54{bottom:762.239733pt;}
.y175{bottom:766.239733pt;}
.y14e{bottom:767.200267pt;}
.y11f{bottom:773.120133pt;}
.y145{bottom:773.599600pt;}
.y146{bottom:773.600000pt;}
.y197{bottom:774.400267pt;}
.yd6{bottom:776.960133pt;}
.y81{bottom:778.720000pt;}
.yac{bottom:780.160000pt;}
.y28{bottom:780.160533pt;}
.y53{bottom:780.639733pt;}
.y2{bottom:781.661334pt;}
.y174{bottom:784.479867pt;}
.y14d{bottom:785.600267pt;}
.yf9{bottom:786.239733pt;}
.y11e{bottom:791.520133pt;}
.y196{bottom:792.960133pt;}
.y80{bottom:796.960133pt;}
.y27{bottom:798.560000pt;}
.y52{bottom:799.039733pt;}
.yd5{bottom:801.599733pt;}
.y173{bottom:802.879867pt;}
.yf8{bottom:804.479867pt;}
.y11d{bottom:809.760267pt;}
.y144{bottom:811.360000pt;}
.y14c{bottom:814.080000pt;}
.y7f{bottom:815.520000pt;}
.yab{bottom:816.800000pt;}
.y51{bottom:817.279867pt;}
.y172{bottom:821.279867pt;}
.yf7{bottom:823.039733pt;}
.y26{bottom:824.160000pt;}
.yd4{bottom:826.080000pt;}
.y14b{bottom:832.320133pt;}
.y7e{bottom:833.920000pt;}
.yaa{bottom:835.200000pt;}
.y50{bottom:835.679867pt;}
.y11c{bottom:838.240000pt;}
.y143{bottom:839.519867pt;}
.y195{bottom:839.520000pt;}
.yf6{bottom:841.439733pt;}
.y171{bottom:849.599600pt;}
.y14a{bottom:850.720133pt;}
.ya9{bottom:853.600000pt;}
.y4f{bottom:854.079867pt;}
.y11b{bottom:856.640000pt;}
.y1{bottom:859.312000pt;}
.y7d{bottom:859.679867pt;}
.yd3{bottom:866.720400pt;}
.y142{bottom:867.999600pt;}
.y194{bottom:867.999733pt;}
.ya8{bottom:872.000000pt;}
.y4e{bottom:872.320000pt;}
.y7c{bottom:878.079867pt;}
.y149{bottom:879.199867pt;}
.y11a{bottom:882.720000pt;}
.y25{bottom:884.800000pt;}
.yd2{bottom:884.960533pt;}
.y170{bottom:886.399600pt;}
.y193{bottom:886.399733pt;}
.ya7{bottom:890.240000pt;}
.y4d{bottom:890.720000pt;}
.y7b{bottom:896.479867pt;}
.y148{bottom:897.440000pt;}
.yd1{bottom:903.360000pt;}
.ya6{bottom:904.480000pt;}
.y16f{bottom:904.639733pt;}
.y7a{bottom:914.720000pt;}
.y147{bottom:915.840000pt;}
.y4c{bottom:919.520000pt;}
.y16e{bottom:923.039733pt;}
.ya5{bottom:930.400000pt;}
.y79{bottom:933.120000pt;}
.yd0{bottom:942.080000pt;}
.ya3{bottom:947.360000pt;}
.y78{bottom:951.520000pt;}
.y24{bottom:960.640000pt;}
.y23{bottom:979.040000pt;}
.y22{bottom:997.440000pt;}
.h1b{height:0.000000pt;}
.h1a{height:16.640133pt;}
.h18{height:18.239600pt;}
.h15{height:18.240133pt;}
.h19{height:18.400000pt;}
.h12{height:23.389056pt;}
.h7{height:28.560000pt;}
.h11{height:29.491913pt;}
.h13{height:38.136094pt;}
.h10{height:40.098652pt;}
.h14{height:40.128029pt;}
.h6{height:40.800000pt;}
.he{height:42.203944pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h9{height:50.850379pt;}
.h17{height:53.330266pt;}
.h16{height:66.963559pt;}
.h5{height:69.360000pt;}
.hb{height:80.197305pt;}
.hf{height:93.428563pt;}
.h4{height:105.826671pt;}
.hd{height:113.478777pt;}
.hc{height:120.295602pt;}
.ha{height:200.492906pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:5.439587pt;}
.w7{width:8.000000pt;}
.wd{width:8.479693pt;}
.w11{width:8.480213pt;}
.w4{width:16.000000pt;}
.wc{width:31.680267pt;}
.w5{width:35.519733pt;}
.wf{width:72.800000pt;}
.w9{width:85.120267pt;}
.w12{width:100.480267pt;}
.w8{width:127.519733pt;}
.we{width:158.720000pt;}
.wa{width:220.800000pt;}
.w6{width:259.680000pt;}
.w10{width:314.720000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:124.800000pt;}
.xf{left:128.640133pt;}
.x17{left:132.159867pt;}
.x23{left:147.360000pt;}
.x12{left:149.600000pt;}
.x11{left:156.800000pt;}
.x21{left:169.919777pt;}
.x4{left:180.874667pt;}
.x20{left:211.680559pt;}
.xb{left:225.120000pt;}
.x18{left:227.840000pt;}
.xc{left:229.920000pt;}
.x7{left:238.400000pt;}
.x5{left:241.120000pt;}
.x13{left:260.480000pt;}
.x1d{left:292.000530pt;}
.x22{left:305.280000pt;}
.xd{left:360.640000pt;}
.xe{left:365.440000pt;}
.x10{left:399.680000pt;}
.x3{left:404.408000pt;}
.x6{left:407.679094pt;}
.x19{left:448.480000pt;}
.x1a{left:453.920000pt;}
.x1b{left:485.440000pt;}
.x14{left:520.160000pt;}
.x8{left:542.720000pt;}
.x1c{left:566.240000pt;}
.x9{left:576.800000pt;}
.x15{left:580.480000pt;}
.x1f{left:643.520000pt;}
.x1e{left:680.320000pt;}
.x16{left:707.840000pt;}
}




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