
    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_ad285340b8e5bd3ed7374acf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b821959700690ee7038eb63.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_ea49f1c85f4829f6ab616555.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_955fcd0b749b62409059289c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_974dac7388f813131cf8bdba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2b8a0b479a155b3b431c9680.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_60e1c584cd26b570b14ed01d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_40d10374910af3064ab6152d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ee94d96d937d53f99ea20bdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060547;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_58985701b4c755d552b4c977.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_facabe4325a98e597e834c2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c04f9910412a7cb0ce14cc02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_5aa71485ffdfd16acbdc15ca.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.700000px;}
.ls5{letter-spacing:-2.520000px;}
.ls12{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.804000px;}
.ls14{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.292200px;}
.lsc{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.900000px;}
.ls11{letter-spacing:12.600000px;}
.ls18{letter-spacing:25.308000px;}
.lsd{letter-spacing:49.788000px;}
.ls17{letter-spacing:52.668000px;}
.lsb{letter-spacing:68.652000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wse{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.798000px;}
.ws13{word-spacing:-12.672000px;}
.wsb{word-spacing:-10.905000px;}
.wsd{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.wsc{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.540000px;}
.ws3{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-4.618320px;}
._a{margin-left:-3.567120px;}
._b{margin-left:-2.524800px;}
._2{margin-left:-1.192320px;}
._0{width:1.315440px;}
._1{width:2.469360px;}
._11{width:3.654720px;}
._d{width:4.698000px;}
._4{width:6.592320px;}
._f{width:7.830000px;}
._10{width:8.974800px;}
._12{width:10.362240px;}
._c{width:11.458080px;}
._25{width:12.488400px;}
._7{width:14.958000px;}
._e{width:16.779360px;}
._6{width:18.216000px;}
._13{width:19.440000px;}
._14{width:20.628000px;}
._15{width:21.854880px;}
._18{width:22.965120px;}
._17{width:24.055920px;}
._1e{width:25.866000px;}
._1d{width:27.598320px;}
._21{width:28.836000px;}
._1f{width:29.970000px;}
._24{width:31.058640px;}
._1a{width:32.508000px;}
._16{width:34.398000px;}
._2b{width:35.802000px;}
._20{width:36.828000px;}
._2f{width:39.188880px;}
._30{width:40.564800px;}
._1b{width:42.228000px;}
._1c{width:43.470000px;}
._28{width:45.324000px;}
._22{width:46.332000px;}
._23{width:47.628000px;}
._27{width:52.639200px;}
._8{width:60.750000px;}
._9{width:66.355200px;}
._29{width:88.128000px;}
._2a{width:89.748000px;}
._2d{width:98.064000px;}
._2c{width:99.144000px;}
._2e{width:140.022000px;}
._19{width:203.904000px;}
._3{width:390.564480px;}
._26{width:1664.520000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,31,95);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y110{bottom:2.865000px;}
.y118{bottom:2.880000px;}
.y112{bottom:3.045000px;}
.y11b{bottom:3.060000px;}
.y115{bottom:3.225000px;}
.y119{bottom:3.240000px;}
.y113{bottom:3.405000px;}
.y11c{bottom:3.420000px;}
.yfa{bottom:5.220000px;}
.yfc{bottom:5.400000px;}
.yff{bottom:5.580000px;}
.yfd{bottom:5.760000px;}
.y2d{bottom:6.120000px;}
.y30{bottom:14.760000px;}
.y130{bottom:20.160000px;}
.y134{bottom:20.340000px;}
.y132{bottom:20.520000px;}
.y135{bottom:20.700000px;}
.y2c{bottom:25.950000px;}
.y2f{bottom:32.760000px;}
.y2b{bottom:54.210000px;}
.y67{bottom:58.500000px;}
.y2a{bottom:72.210000px;}
.y4{bottom:76.860000px;}
.y66{bottom:77.220000px;}
.y29{bottom:90.030000px;}
.ya0{bottom:93.240000px;}
.y1ab{bottom:97.740000px;}
.y4a{bottom:100.980000px;}
.y11f{bottom:102.240000px;}
.y14c{bottom:103.860000px;}
.y63{bottom:104.040000px;}
.y6{bottom:105.120000px;}
.y28{bottom:107.850000px;}
.ycd{bottom:108.900000px;}
.y9f{bottom:111.060000px;}
.y1aa{bottom:115.560000px;}
.y49{bottom:118.800000px;}
.y14b{bottom:121.680000px;}
.y62{bottom:121.860000px;}
.y19{bottom:122.070000px;}
.y27{bottom:125.670000px;}
.ycc{bottom:126.720000px;}
.y11e{bottom:127.080000px;}
.y9e{bottom:129.060000px;}
.y1a9{bottom:133.380000px;}
.y17e{bottom:135.720000px;}
.y48{bottom:136.620000px;}
.y14a{bottom:139.500000px;}
.y26{bottom:143.490000px;}
.ycb{bottom:144.720000px;}
.y18{bottom:144.930000px;}
.y61{bottom:145.620000px;}
.y9d{bottom:146.880000px;}
.y11d{bottom:151.200000px;}
.y17d{bottom:153.540000px;}
.y155{bottom:154.440000px;}
.y47{bottom:154.620000px;}
.y149{bottom:157.500000px;}
.y25{bottom:161.490000px;}
.y60{bottom:163.620000px;}
.y17{bottom:167.790000px;}
.yca{bottom:168.300000px;}
.y1a8{bottom:169.020000px;}
.y9c{bottom:170.460000px;}
.y17c{bottom:171.360000px;}
.y46{bottom:172.440000px;}
.y11a{bottom:173.520000px;}
.y148{bottom:175.320000px;}
.y24{bottom:179.310000px;}
.y5f{bottom:181.440000px;}
.y1a7{bottom:187.020000px;}
.y17b{bottom:189.180000px;}
.y45{bottom:190.260000px;}
.y16{bottom:192.270000px;}
.yc9{bottom:192.420000px;}
.y147{bottom:193.140000px;}
.y9b{bottom:194.580000px;}
.y23{bottom:197.130000px;}
.y117{bottom:198.180000px;}
.y5e{bottom:199.260000px;}
.y1a6{bottom:204.840000px;}
.y17a{bottom:207.210000px;}
.y44{bottom:208.110000px;}
.yc8{bottom:210.270000px;}
.y9a{bottom:212.430000px;}
.y22{bottom:214.950000px;}
.y5d{bottom:217.110000px;}
.y15{bottom:218.010000px;}
.y146{bottom:219.990000px;}
.y1a5{bottom:222.690000px;}
.y116{bottom:222.705000px;}
.y179{bottom:225.030000px;}
.y43{bottom:225.930000px;}
.yc7{bottom:228.090000px;}
.y99{bottom:230.250000px;}
.y21{bottom:232.770000px;}
.y5c{bottom:234.930000px;}
.y145{bottom:237.810000px;}
.y1a4{bottom:240.510000px;}
.y42{bottom:243.750000px;}
.y14{bottom:244.830000px;}
.yc6{bottom:245.910000px;}
.y114{bottom:247.185000px;}
.y98{bottom:248.070000px;}
.y20{bottom:250.590000px;}
.y5b{bottom:252.750000px;}
.y178{bottom:253.290000px;}
.y144{bottom:255.630000px;}
.y1a3{bottom:258.330000px;}
.y41{bottom:261.750000px;}
.y13{bottom:262.695000px;}
.yc5{bottom:263.730000px;}
.y97{bottom:266.070000px;}
.y1f{bottom:268.635000px;}
.y5a{bottom:270.750000px;}
.y111{bottom:271.665000px;}
.y143{bottom:273.630000px;}
.y1a2{bottom:276.330000px;}
.y12{bottom:280.695000px;}
.yc4{bottom:281.730000px;}
.y96{bottom:283.890000px;}
.y177{bottom:284.610000px;}
.y40{bottom:285.510000px;}
.y1e{bottom:286.455000px;}
.y59{bottom:288.570000px;}
.y142{bottom:291.450000px;}
.y1a1{bottom:294.150000px;}
.y10f{bottom:297.045000px;}
.y11{bottom:298.515000px;}
.yc3{bottom:299.550000px;}
.y176{bottom:302.430000px;}
.y3f{bottom:303.330000px;}
.y1d{bottom:304.275000px;}
.y154{bottom:306.390000px;}
.y95{bottom:307.470000px;}
.y141{bottom:309.270000px;}
.y1a0{bottom:311.970000px;}
.y58{bottom:312.330000px;}
.y10{bottom:316.335000px;}
.yc2{bottom:317.370000px;}
.y175{bottom:320.430000px;}
.y3e{bottom:321.150000px;}
.y1c{bottom:322.095000px;}
.y153{bottom:324.210000px;}
.y140{bottom:327.090000px;}
.y19f{bottom:329.790000px;}
.y57{bottom:330.150000px;}
.y94{bottom:333.030000px;}
.yc1{bottom:335.190000px;}
.y10e{bottom:336.630000px;}
.y174{bottom:338.250000px;}
.y3d{bottom:339.150000px;}
.y1b{bottom:339.915000px;}
.y152{bottom:342.030000px;}
.yf{bottom:342.795000px;}
.y13f{bottom:344.910000px;}
.y19e{bottom:347.610000px;}
.y56{bottom:348.150000px;}
.y173{bottom:356.070000px;}
.y3c{bottom:356.970000px;}
.yc0{bottom:358.770000px;}
.y1a{bottom:358.995000px;}
.y151{bottom:359.850000px;}
.ye{bottom:360.615000px;}
.y93{bottom:361.290000px;}
.y13e{bottom:362.910000px;}
.y19d{bottom:365.430000px;}
.y55{bottom:365.970000px;}
.y109{bottom:366.690000px;}
.y172{bottom:373.890000px;}
.y3b{bottom:374.790000px;}
.y150{bottom:377.850000px;}
.y92{bottom:379.290000px;}
.y13d{bottom:380.730000px;}
.ybf{bottom:382.890000px;}
.y19c{bottom:383.430000px;}
.y54{bottom:383.790000px;}
.y108{bottom:384.510000px;}
.y171{bottom:391.710000px;}
.y3a{bottom:392.610000px;}
.y10d{bottom:393.510000px;}
.y91{bottom:398.010000px;}
.ybe{bottom:400.710000px;}
.y19b{bottom:401.250000px;}
.y53{bottom:401.610000px;}
.y107{bottom:402.510000px;}
.y14f{bottom:404.670000px;}
.y13c{bottom:407.190000px;}
.y170{bottom:409.710000px;}
.y39{bottom:410.430000px;}
.y10c{bottom:411.510000px;}
.y90{bottom:415.830000px;}
.ybd{bottom:418.710000px;}
.y19a{bottom:419.070000px;}
.y52{bottom:419.430000px;}
.y106{bottom:420.330000px;}
.y14e{bottom:422.490000px;}
.y16f{bottom:427.530000px;}
.y38{bottom:428.430000px;}
.y10b{bottom:429.330000px;}
.y8f{bottom:433.830000px;}
.y13b{bottom:435.810000px;}
.ybc{bottom:436.530000px;}
.y199{bottom:436.890000px;}
.y51{bottom:437.430000px;}
.y14d{bottom:440.310000px;}
.y16e{bottom:445.395000px;}
.y37{bottom:446.295000px;}
.y105{bottom:446.835000px;}
.y10a{bottom:447.195000px;}
.y8e{bottom:452.595000px;}
.ybb{bottom:454.395000px;}
.y198{bottom:454.755000px;}
.y50{bottom:455.295000px;}
.y16d{bottom:463.215000px;}
.y36{bottom:464.115000px;}
.y13a{bottom:464.835000px;}
.y8d{bottom:470.595000px;}
.y104{bottom:471.675000px;}
.yba{bottom:472.215000px;}
.y197{bottom:472.755000px;}
.y4f{bottom:473.115000px;}
.y35{bottom:481.935000px;}
.y139{bottom:489.135000px;}
.y8c{bottom:489.315000px;}
.y16c{bottom:489.675000px;}
.yb9{bottom:490.215000px;}
.y196{bottom:490.575000px;}
.y4e{bottom:490.935000px;}
.y103{bottom:495.795000px;}
.y34{bottom:499.755000px;}
.y8b{bottom:507.135000px;}
.y195{bottom:508.395000px;}
.y4d{bottom:508.935000px;}
.y138{bottom:511.455000px;}
.yb8{bottom:513.615000px;}
.y16b{bottom:516.855000px;}
.y33{bottom:517.755000px;}
.y102{bottom:518.295000px;}
.y8a{bottom:525.135000px;}
.y194{bottom:526.215000px;}
.y4c{bottom:532.695000px;}
.y16a{bottom:534.855000px;}
.yb7{bottom:537.735000px;}
.y32{bottom:541.155000px;}
.y193{bottom:544.035000px;}
.y137{bottom:544.215000px;}
.y101{bottom:545.115000px;}
.y89{bottom:549.795000px;}
.y4b{bottom:550.515000px;}
.y169{bottom:552.675000px;}
.yb6{bottom:555.555000px;}
.y192{bottom:561.855000px;}
.y31{bottom:569.775000px;}
.y168{bottom:570.495000px;}
.y100{bottom:571.935000px;}
.y88{bottom:573.375000px;}
.yb5{bottom:573.555000px;}
.y136{bottom:577.155000px;}
.y191{bottom:579.855000px;}
.y167{bottom:588.315000px;}
.yb4{bottom:591.375000px;}
.y2e{bottom:596.235000px;}
.y87{bottom:597.495000px;}
.y190{bottom:597.675000px;}
.yfe{bottom:598.755000px;}
.y166{bottom:606.135000px;}
.y133{bottom:609.915000px;}
.yb3{bottom:614.955000px;}
.y86{bottom:615.315000px;}
.y18f{bottom:615.495000px;}
.y165{bottom:624.135000px;}
.yfb{bottom:625.575000px;}
.y85{bottom:633.315000px;}
.yb2{bottom:639.075000px;}
.y164{bottom:641.955000px;}
.y131{bottom:642.855000px;}
.y18e{bottom:651.135000px;}
.yd{bottom:652.755000px;}
.yf9{bottom:653.295000px;}
.y84{bottom:656.715000px;}
.yb1{bottom:656.895000px;}
.y163{bottom:668.415000px;}
.y18d{bottom:669.135000px;}
.yb0{bottom:674.715000px;}
.y12f{bottom:676.545000px;}
.y83{bottom:680.865000px;}
.y18c{bottom:686.985000px;}
.yaf{bottom:692.565000px;}
.yf8{bottom:695.265000px;}
.y162{bottom:695.625000px;}
.y82{bottom:698.865000px;}
.y18b{bottom:704.805000px;}
.yae{bottom:710.565000px;}
.y161{bottom:713.445000px;}
.ye5{bottom:716.325000px;}
.y81{bottom:716.685000px;}
.y12e{bottom:722.085000px;}
.yf7{bottom:722.445000px;}
.y18a{bottom:722.625000px;}
.yad{bottom:728.385000px;}
.y160{bottom:731.265000px;}
.ye4{bottom:734.145000px;}
.y80{bottom:734.505000px;}
.yf6{bottom:740.265000px;}
.y189{bottom:740.445000px;}
.y15f{bottom:749.265000px;}
.yac{bottom:751.965000px;}
.ye3{bottom:752.145000px;}
.y7f{bottom:752.325000px;}
.yf5{bottom:758.085000px;}
.y188{bottom:758.265000px;}
.y15e{bottom:767.085000px;}
.y7e{bottom:770.145000px;}
.ye2{bottom:775.545000px;}
.yf4{bottom:775.905000px;}
.yab{bottom:776.085000px;}
.y187{bottom:776.265000px;}
.y7d{bottom:787.965000px;}
.y12d{bottom:788.145000px;}
.yf3{bottom:793.725000px;}
.yaa{bottom:793.905000px;}
.y186{bottom:794.085000px;}
.y12c{bottom:796.605000px;}
.ye1{bottom:799.665000px;}
.y7c{bottom:805.965000px;}
.ya9{bottom:811.725000px;}
.y185{bottom:811.905000px;}
.ye0{bottom:817.665000px;}
.y7b{bottom:823.785000px;}
.ya8{bottom:829.545000px;}
.y184{bottom:829.725000px;}
.ydf{bottom:835.485000px;}
.y7a{bottom:841.605000px;}
.ya7{bottom:847.365000px;}
.y183{bottom:847.545000px;}
.y12b{bottom:850.245000px;}
.yde{bottom:853.305000px;}
.y79{bottom:859.425000px;}
.yf2{bottom:865.185000px;}
.ya6{bottom:865.365000px;}
.ydd{bottom:871.125000px;}
.y12a{bottom:872.565000px;}
.y78{bottom:877.245000px;}
.y1ac{bottom:880.125000px;}
.ya5{bottom:883.185000px;}
.y182{bottom:883.365000px;}
.ydc{bottom:889.125000px;}
.y77{bottom:895.245000px;}
.y129{bottom:899.385000px;}
.ya4{bottom:901.005000px;}
.y181{bottom:901.185000px;}
.yf1{bottom:906.585000px;}
.ydb{bottom:912.570000px;}
.y76{bottom:913.110000px;}
.y15d{bottom:918.870000px;}
.ya3{bottom:919.050000px;}
.y128{bottom:926.430000px;}
.y75{bottom:930.930000px;}
.yf0{bottom:932.370000px;}
.yda{bottom:936.690000px;}
.y180{bottom:936.870000px;}
.ya2{bottom:942.450000px;}
.y74{bottom:948.750000px;}
.y127{bottom:953.250000px;}
.yd9{bottom:954.690000px;}
.yef{bottom:960.630000px;}
.y15c{bottom:963.690000px;}
.ya1{bottom:966.390000px;}
.y73{bottom:966.750000px;}
.yd8{bottom:972.510000px;}
.y17f{bottom:972.690000px;}
.yee{bottom:978.450000px;}
.y126{bottom:980.070000px;}
.y15b{bottom:981.510000px;}
.yd7{bottom:990.330000px;}
.y72{bottom:990.510000px;}
.yed{bottom:996.270000px;}
.y15a{bottom:999.330000px;}
.y125{bottom:1007.610000px;}
.yd6{bottom:1008.150000px;}
.y71{bottom:1008.330000px;}
.yec{bottom:1014.090000px;}
.y159{bottom:1017.150000px;}
.y70{bottom:1026.150000px;}
.yd5{bottom:1031.730000px;}
.yeb{bottom:1032.090000px;}
.y158{bottom:1034.970000px;}
.y6f{bottom:1043.970000px;}
.yc{bottom:1048.110000px;}
.y124{bottom:1049.550000px;}
.yea{bottom:1049.910000px;}
.y157{bottom:1052.790000px;}
.yd4{bottom:1055.850000px;}
.y6e{bottom:1061.790000px;}
.ye9{bottom:1067.730000px;}
.y156{bottom:1070.790000px;}
.yd3{bottom:1073.670000px;}
.yb{bottom:1074.570000px;}
.y6d{bottom:1079.790000px;}
.ye8{bottom:1085.550000px;}
.y123{bottom:1088.610000px;}
.yd2{bottom:1091.670000px;}
.y6c{bottom:1097.610000px;}
.ye7{bottom:1103.550000px;}
.ya{bottom:1104.450000px;}
.y122{bottom:1106.430000px;}
.yd1{bottom:1109.490000px;}
.y5{bottom:1112.940000px;}
.y6b{bottom:1115.430000px;}
.y121{bottom:1124.250000px;}
.ye6{bottom:1126.950000px;}
.yd0{bottom:1127.310000px;}
.y9{bottom:1132.350000px;}
.y6a{bottom:1133.250000px;}
.y120{bottom:1142.070000px;}
.ycf{bottom:1145.130000px;}
.y69{bottom:1151.100000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.yce{bottom:1168.740000px;}
.y68{bottom:1169.100000px;}
.y2{bottom:1181.520000px;}
.y65{bottom:1183.500000px;}
.y7{bottom:1191.240000px;}
.y64{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h1c{height:24.465000px;}
.h1e{height:24.516000px;}
.h1d{height:24.645000px;}
.h20{height:24.660000px;}
.h1a{height:26.805000px;}
.h23{height:26.820000px;}
.h18{height:26.850000px;}
.h19{height:26.985000px;}
.h21{height:27.022500px;}
.h14{height:30.480469px;}
.h25{height:32.745000px;}
.h24{height:32.760000px;}
.h26{height:32.925000px;}
.h17{height:37.705078px;}
.h13{height:40.843828px;}
.h5{height:47.344922px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.he{height:48.616875px;}
.h1b{height:52.971680px;}
.hb{height:52.998047px;}
.hd{height:54.421875px;}
.h15{height:55.503491px;}
.h11{height:55.785000px;}
.h2{height:58.651172px;}
.h16{height:59.092031px;}
.h1f{height:59.212031px;}
.h22{height:59.272031px;}
.ha{height:60.041250px;}
.h10{height:60.226875px;}
.hf{height:61.189805px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h12{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:382.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w7{width:212.775000px;}
.wb{width:223.035000px;}
.w9{width:255.075000px;}
.wc{width:327.120000px;}
.wa{width:337.920000px;}
.w8{width:358.984500px;}
.w6{width:390.844500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.560000px;}
.x3{left:12.090000px;}
.xb{left:18.358500px;}
.x1{left:54.000000px;}
.x11{left:55.440000px;}
.x6{left:58.320000px;}
.xa{left:69.481500px;}
.x1a{left:71.820000px;}
.x1d{left:75.960000px;}
.x14{left:81.000000px;}
.x9{left:86.400000px;}
.xe{left:95.256000px;}
.x15{left:108.036000px;}
.x1b{left:139.546500px;}
.x18{left:144.766500px;}
.x1e{left:166.005000px;}
.x20{left:176.625000px;}
.x8{left:200.550000px;}
.xc{left:282.315000px;}
.x7{left:356.835000px;}
.x13{left:438.195000px;}
.xf{left:473.505000px;}
.x1c{left:498.540000px;}
.x16{left:500.505000px;}
.x1f{left:503.940000px;}
.x10{left:514.725000px;}
.x17{left:527.505000px;}
.x19{left:535.620000px;}
.x12{left:668.490000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls5{letter-spacing:-2.240000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.259733pt;}
.lsc{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls11{letter-spacing:11.200000pt;}
.ls18{letter-spacing:22.496000pt;}
.lsd{letter-spacing:44.256000pt;}
.ls17{letter-spacing:46.816000pt;}
.lsb{letter-spacing:61.024000pt;}
.ls0{letter-spacing:946.186667pt;}
.wse{word-spacing:-48.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.376000pt;}
.ws13{word-spacing:-11.264000pt;}
.wsb{word-spacing:-9.693333pt;}
.wsd{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.wsc{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.480000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-4.105173pt;}
._a{margin-left:-3.170773pt;}
._b{margin-left:-2.244267pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.169280pt;}
._1{width:2.194987pt;}
._11{width:3.248640pt;}
._d{width:4.176000pt;}
._4{width:5.859840pt;}
._f{width:6.960000pt;}
._10{width:7.977600pt;}
._12{width:9.210880pt;}
._c{width:10.184960pt;}
._25{width:11.100800pt;}
._7{width:13.296000pt;}
._e{width:14.914987pt;}
._6{width:16.192000pt;}
._13{width:17.280000pt;}
._14{width:18.336000pt;}
._15{width:19.426560pt;}
._18{width:20.413440pt;}
._17{width:21.383040pt;}
._1e{width:22.992000pt;}
._1d{width:24.531840pt;}
._21{width:25.632000pt;}
._1f{width:26.640000pt;}
._24{width:27.607680pt;}
._1a{width:28.896000pt;}
._16{width:30.576000pt;}
._2b{width:31.824000pt;}
._20{width:32.736000pt;}
._2f{width:34.834560pt;}
._30{width:36.057600pt;}
._1b{width:37.536000pt;}
._1c{width:38.640000pt;}
._28{width:40.288000pt;}
._22{width:41.184000pt;}
._23{width:42.336000pt;}
._27{width:46.790400pt;}
._8{width:54.000000pt;}
._9{width:58.982400pt;}
._29{width:78.336000pt;}
._2a{width:79.776000pt;}
._2d{width:87.168000pt;}
._2c{width:88.128000pt;}
._2e{width:124.464000pt;}
._19{width:181.248000pt;}
._3{width:347.168427pt;}
._26{width:1479.573333pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:2.546667pt;}
.y118{bottom:2.560000pt;}
.y112{bottom:2.706667pt;}
.y11b{bottom:2.720000pt;}
.y115{bottom:2.866667pt;}
.y119{bottom:2.880000pt;}
.y113{bottom:3.026667pt;}
.y11c{bottom:3.040000pt;}
.yfa{bottom:4.640000pt;}
.yfc{bottom:4.800000pt;}
.yff{bottom:4.960000pt;}
.yfd{bottom:5.120000pt;}
.y2d{bottom:5.440000pt;}
.y30{bottom:13.120000pt;}
.y130{bottom:17.920000pt;}
.y134{bottom:18.080000pt;}
.y132{bottom:18.240000pt;}
.y135{bottom:18.400000pt;}
.y2c{bottom:23.066667pt;}
.y2f{bottom:29.120000pt;}
.y2b{bottom:48.186667pt;}
.y67{bottom:52.000000pt;}
.y2a{bottom:64.186667pt;}
.y4{bottom:68.320000pt;}
.y66{bottom:68.640000pt;}
.y29{bottom:80.026667pt;}
.ya0{bottom:82.880000pt;}
.y1ab{bottom:86.880000pt;}
.y4a{bottom:89.760000pt;}
.y11f{bottom:90.880000pt;}
.y14c{bottom:92.320000pt;}
.y63{bottom:92.480000pt;}
.y6{bottom:93.440000pt;}
.y28{bottom:95.866667pt;}
.ycd{bottom:96.800000pt;}
.y9f{bottom:98.720000pt;}
.y1aa{bottom:102.720000pt;}
.y49{bottom:105.600000pt;}
.y14b{bottom:108.160000pt;}
.y62{bottom:108.320000pt;}
.y19{bottom:108.506667pt;}
.y27{bottom:111.706667pt;}
.ycc{bottom:112.640000pt;}
.y11e{bottom:112.960000pt;}
.y9e{bottom:114.720000pt;}
.y1a9{bottom:118.560000pt;}
.y17e{bottom:120.640000pt;}
.y48{bottom:121.440000pt;}
.y14a{bottom:124.000000pt;}
.y26{bottom:127.546667pt;}
.ycb{bottom:128.640000pt;}
.y18{bottom:128.826667pt;}
.y61{bottom:129.440000pt;}
.y9d{bottom:130.560000pt;}
.y11d{bottom:134.400000pt;}
.y17d{bottom:136.480000pt;}
.y155{bottom:137.280000pt;}
.y47{bottom:137.440000pt;}
.y149{bottom:140.000000pt;}
.y25{bottom:143.546667pt;}
.y60{bottom:145.440000pt;}
.y17{bottom:149.146667pt;}
.yca{bottom:149.600000pt;}
.y1a8{bottom:150.240000pt;}
.y9c{bottom:151.520000pt;}
.y17c{bottom:152.320000pt;}
.y46{bottom:153.280000pt;}
.y11a{bottom:154.240000pt;}
.y148{bottom:155.840000pt;}
.y24{bottom:159.386667pt;}
.y5f{bottom:161.280000pt;}
.y1a7{bottom:166.240000pt;}
.y17b{bottom:168.160000pt;}
.y45{bottom:169.120000pt;}
.y16{bottom:170.906667pt;}
.yc9{bottom:171.040000pt;}
.y147{bottom:171.680000pt;}
.y9b{bottom:172.960000pt;}
.y23{bottom:175.226667pt;}
.y117{bottom:176.160000pt;}
.y5e{bottom:177.120000pt;}
.y1a6{bottom:182.080000pt;}
.y17a{bottom:184.186667pt;}
.y44{bottom:184.986667pt;}
.yc8{bottom:186.906667pt;}
.y9a{bottom:188.826667pt;}
.y22{bottom:191.066667pt;}
.y5d{bottom:192.986667pt;}
.y15{bottom:193.786667pt;}
.y146{bottom:195.546667pt;}
.y1a5{bottom:197.946667pt;}
.y116{bottom:197.960000pt;}
.y179{bottom:200.026667pt;}
.y43{bottom:200.826667pt;}
.yc7{bottom:202.746667pt;}
.y99{bottom:204.666667pt;}
.y21{bottom:206.906667pt;}
.y5c{bottom:208.826667pt;}
.y145{bottom:211.386667pt;}
.y1a4{bottom:213.786667pt;}
.y42{bottom:216.666667pt;}
.y14{bottom:217.626667pt;}
.yc6{bottom:218.586667pt;}
.y114{bottom:219.720000pt;}
.y98{bottom:220.506667pt;}
.y20{bottom:222.746667pt;}
.y5b{bottom:224.666667pt;}
.y178{bottom:225.146667pt;}
.y144{bottom:227.226667pt;}
.y1a3{bottom:229.626667pt;}
.y41{bottom:232.666667pt;}
.y13{bottom:233.506667pt;}
.yc5{bottom:234.426667pt;}
.y97{bottom:236.506667pt;}
.y1f{bottom:238.786667pt;}
.y5a{bottom:240.666667pt;}
.y111{bottom:241.480000pt;}
.y143{bottom:243.226667pt;}
.y1a2{bottom:245.626667pt;}
.y12{bottom:249.506667pt;}
.yc4{bottom:250.426667pt;}
.y96{bottom:252.346667pt;}
.y177{bottom:252.986667pt;}
.y40{bottom:253.786667pt;}
.y1e{bottom:254.626667pt;}
.y59{bottom:256.506667pt;}
.y142{bottom:259.066667pt;}
.y1a1{bottom:261.466667pt;}
.y10f{bottom:264.040000pt;}
.y11{bottom:265.346667pt;}
.yc3{bottom:266.266667pt;}
.y176{bottom:268.826667pt;}
.y3f{bottom:269.626667pt;}
.y1d{bottom:270.466667pt;}
.y154{bottom:272.346667pt;}
.y95{bottom:273.306667pt;}
.y141{bottom:274.906667pt;}
.y1a0{bottom:277.306667pt;}
.y58{bottom:277.626667pt;}
.y10{bottom:281.186667pt;}
.yc2{bottom:282.106667pt;}
.y175{bottom:284.826667pt;}
.y3e{bottom:285.466667pt;}
.y1c{bottom:286.306667pt;}
.y153{bottom:288.186667pt;}
.y140{bottom:290.746667pt;}
.y19f{bottom:293.146667pt;}
.y57{bottom:293.466667pt;}
.y94{bottom:296.026667pt;}
.yc1{bottom:297.946667pt;}
.y10e{bottom:299.226667pt;}
.y174{bottom:300.666667pt;}
.y3d{bottom:301.466667pt;}
.y1b{bottom:302.146667pt;}
.y152{bottom:304.026667pt;}
.yf{bottom:304.706667pt;}
.y13f{bottom:306.586667pt;}
.y19e{bottom:308.986667pt;}
.y56{bottom:309.466667pt;}
.y173{bottom:316.506667pt;}
.y3c{bottom:317.306667pt;}
.yc0{bottom:318.906667pt;}
.y1a{bottom:319.106667pt;}
.y151{bottom:319.866667pt;}
.ye{bottom:320.546667pt;}
.y93{bottom:321.146667pt;}
.y13e{bottom:322.586667pt;}
.y19d{bottom:324.826667pt;}
.y55{bottom:325.306667pt;}
.y109{bottom:325.946667pt;}
.y172{bottom:332.346667pt;}
.y3b{bottom:333.146667pt;}
.y150{bottom:335.866667pt;}
.y92{bottom:337.146667pt;}
.y13d{bottom:338.426667pt;}
.ybf{bottom:340.346667pt;}
.y19c{bottom:340.826667pt;}
.y54{bottom:341.146667pt;}
.y108{bottom:341.786667pt;}
.y171{bottom:348.186667pt;}
.y3a{bottom:348.986667pt;}
.y10d{bottom:349.786667pt;}
.y91{bottom:353.786667pt;}
.ybe{bottom:356.186667pt;}
.y19b{bottom:356.666667pt;}
.y53{bottom:356.986667pt;}
.y107{bottom:357.786667pt;}
.y14f{bottom:359.706667pt;}
.y13c{bottom:361.946667pt;}
.y170{bottom:364.186667pt;}
.y39{bottom:364.826667pt;}
.y10c{bottom:365.786667pt;}
.y90{bottom:369.626667pt;}
.ybd{bottom:372.186667pt;}
.y19a{bottom:372.506667pt;}
.y52{bottom:372.826667pt;}
.y106{bottom:373.626667pt;}
.y14e{bottom:375.546667pt;}
.y16f{bottom:380.026667pt;}
.y38{bottom:380.826667pt;}
.y10b{bottom:381.626667pt;}
.y8f{bottom:385.626667pt;}
.y13b{bottom:387.386667pt;}
.ybc{bottom:388.026667pt;}
.y199{bottom:388.346667pt;}
.y51{bottom:388.826667pt;}
.y14d{bottom:391.386667pt;}
.y16e{bottom:395.906667pt;}
.y37{bottom:396.706667pt;}
.y105{bottom:397.186667pt;}
.y10a{bottom:397.506667pt;}
.y8e{bottom:402.306667pt;}
.ybb{bottom:403.906667pt;}
.y198{bottom:404.226667pt;}
.y50{bottom:404.706667pt;}
.y16d{bottom:411.746667pt;}
.y36{bottom:412.546667pt;}
.y13a{bottom:413.186667pt;}
.y8d{bottom:418.306667pt;}
.y104{bottom:419.266667pt;}
.yba{bottom:419.746667pt;}
.y197{bottom:420.226667pt;}
.y4f{bottom:420.546667pt;}
.y35{bottom:428.386667pt;}
.y139{bottom:434.786667pt;}
.y8c{bottom:434.946667pt;}
.y16c{bottom:435.266667pt;}
.yb9{bottom:435.746667pt;}
.y196{bottom:436.066667pt;}
.y4e{bottom:436.386667pt;}
.y103{bottom:440.706667pt;}
.y34{bottom:444.226667pt;}
.y8b{bottom:450.786667pt;}
.y195{bottom:451.906667pt;}
.y4d{bottom:452.386667pt;}
.y138{bottom:454.626667pt;}
.yb8{bottom:456.546667pt;}
.y16b{bottom:459.426667pt;}
.y33{bottom:460.226667pt;}
.y102{bottom:460.706667pt;}
.y8a{bottom:466.786667pt;}
.y194{bottom:467.746667pt;}
.y4c{bottom:473.506667pt;}
.y16a{bottom:475.426667pt;}
.yb7{bottom:477.986667pt;}
.y32{bottom:481.026667pt;}
.y193{bottom:483.586667pt;}
.y137{bottom:483.746667pt;}
.y101{bottom:484.546667pt;}
.y89{bottom:488.706667pt;}
.y4b{bottom:489.346667pt;}
.y169{bottom:491.266667pt;}
.yb6{bottom:493.826667pt;}
.y192{bottom:499.426667pt;}
.y31{bottom:506.466667pt;}
.y168{bottom:507.106667pt;}
.y100{bottom:508.386667pt;}
.y88{bottom:509.666667pt;}
.yb5{bottom:509.826667pt;}
.y136{bottom:513.026667pt;}
.y191{bottom:515.426667pt;}
.y167{bottom:522.946667pt;}
.yb4{bottom:525.666667pt;}
.y2e{bottom:529.986667pt;}
.y87{bottom:531.106667pt;}
.y190{bottom:531.266667pt;}
.yfe{bottom:532.226667pt;}
.y166{bottom:538.786667pt;}
.y133{bottom:542.146667pt;}
.yb3{bottom:546.626667pt;}
.y86{bottom:546.946667pt;}
.y18f{bottom:547.106667pt;}
.y165{bottom:554.786667pt;}
.yfb{bottom:556.066667pt;}
.y85{bottom:562.946667pt;}
.yb2{bottom:568.066667pt;}
.y164{bottom:570.626667pt;}
.y131{bottom:571.426667pt;}
.y18e{bottom:578.786667pt;}
.yd{bottom:580.226667pt;}
.yf9{bottom:580.706667pt;}
.y84{bottom:583.746667pt;}
.yb1{bottom:583.906667pt;}
.y163{bottom:594.146667pt;}
.y18d{bottom:594.786667pt;}
.yb0{bottom:599.746667pt;}
.y12f{bottom:601.373333pt;}
.y83{bottom:605.213333pt;}
.y18c{bottom:610.653333pt;}
.yaf{bottom:615.613333pt;}
.yf8{bottom:618.013333pt;}
.y162{bottom:618.333333pt;}
.y82{bottom:621.213333pt;}
.y18b{bottom:626.493333pt;}
.yae{bottom:631.613333pt;}
.y161{bottom:634.173333pt;}
.ye5{bottom:636.733333pt;}
.y81{bottom:637.053333pt;}
.y12e{bottom:641.853333pt;}
.yf7{bottom:642.173333pt;}
.y18a{bottom:642.333333pt;}
.yad{bottom:647.453333pt;}
.y160{bottom:650.013333pt;}
.ye4{bottom:652.573333pt;}
.y80{bottom:652.893333pt;}
.yf6{bottom:658.013333pt;}
.y189{bottom:658.173333pt;}
.y15f{bottom:666.013333pt;}
.yac{bottom:668.413333pt;}
.ye3{bottom:668.573333pt;}
.y7f{bottom:668.733333pt;}
.yf5{bottom:673.853333pt;}
.y188{bottom:674.013333pt;}
.y15e{bottom:681.853333pt;}
.y7e{bottom:684.573333pt;}
.ye2{bottom:689.373333pt;}
.yf4{bottom:689.693333pt;}
.yab{bottom:689.853333pt;}
.y187{bottom:690.013333pt;}
.y7d{bottom:700.413333pt;}
.y12d{bottom:700.573333pt;}
.yf3{bottom:705.533333pt;}
.yaa{bottom:705.693333pt;}
.y186{bottom:705.853333pt;}
.y12c{bottom:708.093333pt;}
.ye1{bottom:710.813333pt;}
.y7c{bottom:716.413333pt;}
.ya9{bottom:721.533333pt;}
.y185{bottom:721.693333pt;}
.ye0{bottom:726.813333pt;}
.y7b{bottom:732.253333pt;}
.ya8{bottom:737.373333pt;}
.y184{bottom:737.533333pt;}
.ydf{bottom:742.653333pt;}
.y7a{bottom:748.093333pt;}
.ya7{bottom:753.213333pt;}
.y183{bottom:753.373333pt;}
.y12b{bottom:755.773333pt;}
.yde{bottom:758.493333pt;}
.y79{bottom:763.933333pt;}
.yf2{bottom:769.053333pt;}
.ya6{bottom:769.213333pt;}
.ydd{bottom:774.333333pt;}
.y12a{bottom:775.613333pt;}
.y78{bottom:779.773333pt;}
.y1ac{bottom:782.333333pt;}
.ya5{bottom:785.053333pt;}
.y182{bottom:785.213333pt;}
.ydc{bottom:790.333333pt;}
.y77{bottom:795.773333pt;}
.y129{bottom:799.453333pt;}
.ya4{bottom:800.893333pt;}
.y181{bottom:801.053333pt;}
.yf1{bottom:805.853333pt;}
.ydb{bottom:811.173333pt;}
.y76{bottom:811.653333pt;}
.y15d{bottom:816.773333pt;}
.ya3{bottom:816.933333pt;}
.y128{bottom:823.493333pt;}
.y75{bottom:827.493333pt;}
.yf0{bottom:828.773333pt;}
.yda{bottom:832.613333pt;}
.y180{bottom:832.773333pt;}
.ya2{bottom:837.733333pt;}
.y74{bottom:843.333333pt;}
.y127{bottom:847.333333pt;}
.yd9{bottom:848.613333pt;}
.yef{bottom:853.893333pt;}
.y15c{bottom:856.613333pt;}
.ya1{bottom:859.013333pt;}
.y73{bottom:859.333333pt;}
.yd8{bottom:864.453333pt;}
.y17f{bottom:864.613333pt;}
.yee{bottom:869.733333pt;}
.y126{bottom:871.173333pt;}
.y15b{bottom:872.453333pt;}
.yd7{bottom:880.293333pt;}
.y72{bottom:880.453333pt;}
.yed{bottom:885.573333pt;}
.y15a{bottom:888.293333pt;}
.y125{bottom:895.653333pt;}
.yd6{bottom:896.133333pt;}
.y71{bottom:896.293333pt;}
.yec{bottom:901.413333pt;}
.y159{bottom:904.133333pt;}
.y70{bottom:912.133333pt;}
.yd5{bottom:917.093333pt;}
.yeb{bottom:917.413333pt;}
.y158{bottom:919.973333pt;}
.y6f{bottom:927.973333pt;}
.yc{bottom:931.653333pt;}
.y124{bottom:932.933333pt;}
.yea{bottom:933.253333pt;}
.y157{bottom:935.813333pt;}
.yd4{bottom:938.533333pt;}
.y6e{bottom:943.813333pt;}
.ye9{bottom:949.093333pt;}
.y156{bottom:951.813333pt;}
.yd3{bottom:954.373333pt;}
.yb{bottom:955.173333pt;}
.y6d{bottom:959.813333pt;}
.ye8{bottom:964.933333pt;}
.y123{bottom:967.653333pt;}
.yd2{bottom:970.373333pt;}
.y6c{bottom:975.653333pt;}
.ye7{bottom:980.933333pt;}
.ya{bottom:981.733333pt;}
.y122{bottom:983.493333pt;}
.yd1{bottom:986.213333pt;}
.y5{bottom:989.280000pt;}
.y6b{bottom:991.493333pt;}
.y121{bottom:999.333333pt;}
.ye6{bottom:1001.733333pt;}
.yd0{bottom:1002.053333pt;}
.y9{bottom:1006.533333pt;}
.y6a{bottom:1007.333333pt;}
.y120{bottom:1015.173333pt;}
.ycf{bottom:1017.893333pt;}
.y69{bottom:1023.200000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.yce{bottom:1038.880000pt;}
.y68{bottom:1039.200000pt;}
.y2{bottom:1050.240000pt;}
.y65{bottom:1052.000000pt;}
.y7{bottom:1058.880000pt;}
.y64{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h1c{height:21.746667pt;}
.h1e{height:21.792000pt;}
.h1d{height:21.906667pt;}
.h20{height:21.920000pt;}
.h1a{height:23.826667pt;}
.h23{height:23.840000pt;}
.h18{height:23.866667pt;}
.h19{height:23.986667pt;}
.h21{height:24.020000pt;}
.h14{height:27.093750pt;}
.h25{height:29.106667pt;}
.h24{height:29.120000pt;}
.h26{height:29.266667pt;}
.h17{height:33.515625pt;}
.h13{height:36.305625pt;}
.h5{height:42.084375pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.he{height:43.215000pt;}
.h1b{height:47.085938pt;}
.hb{height:47.109375pt;}
.hd{height:48.375000pt;}
.h15{height:49.336436pt;}
.h11{height:49.586667pt;}
.h2{height:52.134375pt;}
.h16{height:52.526250pt;}
.h1f{height:52.632917pt;}
.h22{height:52.686250pt;}
.ha{height:53.370000pt;}
.h10{height:53.535000pt;}
.hf{height:54.390938pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h12{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:339.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w7{width:189.133333pt;}
.wb{width:198.253333pt;}
.w9{width:226.733333pt;}
.wc{width:290.773333pt;}
.wa{width:300.373333pt;}
.w8{width:319.097333pt;}
.w6{width:347.417333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.720000pt;}
.x3{left:10.746667pt;}
.xb{left:16.318667pt;}
.x1{left:48.000000pt;}
.x11{left:49.280000pt;}
.x6{left:51.840000pt;}
.xa{left:61.761333pt;}
.x1a{left:63.840000pt;}
.x1d{left:67.520000pt;}
.x14{left:72.000000pt;}
.x9{left:76.800000pt;}
.xe{left:84.672000pt;}
.x15{left:96.032000pt;}
.x1b{left:124.041333pt;}
.x18{left:128.681333pt;}
.x1e{left:147.560000pt;}
.x20{left:157.000000pt;}
.x8{left:178.266667pt;}
.xc{left:250.946667pt;}
.x7{left:317.186667pt;}
.x13{left:389.506667pt;}
.xf{left:420.893333pt;}
.x1c{left:443.146667pt;}
.x16{left:444.893333pt;}
.x1f{left:447.946667pt;}
.x10{left:457.533333pt;}
.x17{left:468.893333pt;}
.x19{left:476.106667pt;}
.x12{left:594.213333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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