
    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_4f97fe60161a24e39f9fdc03.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_a6b40f347a6a99e5092f7b1a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ebb6e8aa6cb9123953a6acc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_56021fd2abae6da3e946ea83.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_446e065800d97417e78b57e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b037c108fdcd1ce7d55c1f9e.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_ee8e928ba6c4edf4c1b26135.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a7a01a3d15c6e01f45573bfa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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_1e8b252eae6fd9575ed9b586.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_620a77c7ec767cc3f18aae59.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.248968,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248968,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248968,0.250000,0.000000,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(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251088,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls19{letter-spacing:-1.500000px;}
.ls21{letter-spacing:-0.984000px;}
.lse{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.516000px;}
.lsb{letter-spacing:-0.492000px;}
.ls12{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.468000px;}
.lsd{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.ls1e{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.339911px;}
.lsf{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.492000px;}
.ls7{letter-spacing:0.516000px;}
.ls11{letter-spacing:0.522000px;}
.ls13{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.984000px;}
.lsa{letter-spacing:1.032000px;}
.ls1d{letter-spacing:1.212000px;}
.ls4{letter-spacing:1.500000px;}
.ls1b{letter-spacing:1.524000px;}
.ls16{letter-spacing:1.908000px;}
.ls15{letter-spacing:1.968000px;}
.ls14{letter-spacing:1.992000px;}
.ls18{letter-spacing:2.028000px;}
.ls20{letter-spacing:3.000000px;}
.ls22{letter-spacing:11.484000px;}
.ls1c{letter-spacing:21.000000px;}
.ls1{letter-spacing:24.000000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws19{word-spacing:-62.543708px;}
.ws15{word-spacing:-19.524000px;}
.ws11{word-spacing:-19.500000px;}
.wsd{word-spacing:-18.984000px;}
.ws5{word-spacing:-18.516000px;}
.ws6{word-spacing:-18.492000px;}
.ws7{word-spacing:-18.468000px;}
.wse{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.976000px;}
.ws3{word-spacing:-17.532000px;}
.ws8{word-spacing:-17.508000px;}
.ws4{word-spacing:-17.484000px;}
.ws16{word-spacing:-17.016000px;}
.ws13{word-spacing:-16.500000px;}
.ws9{word-spacing:-15.660000px;}
.wsc{word-spacing:-15.360000px;}
.wsf{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.820000px;}
.ws14{word-spacing:-14.520000px;}
.wsb{word-spacing:-14.340000px;}
.ws17{word-spacing:-13.511891px;}
.ws18{word-spacing:-13.479410px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-4.494000px;}
._e{margin-left:-3.096000px;}
._1{margin-left:-1.194000px;}
._0{width:1.656000px;}
._8{width:2.772000px;}
._a{width:4.278000px;}
._3{width:5.994000px;}
._4{width:7.044000px;}
._9{width:8.316000px;}
._b{width:9.420000px;}
._f{width:10.518000px;}
._c{width:12.240000px;}
._d{width:14.076000px;}
._7{width:16.026000px;}
._1d{width:17.610000px;}
._1e{width:18.624000px;}
._5{width:20.202000px;}
._6{width:21.960000px;}
._10{width:23.796000px;}
._11{width:25.176000px;}
._14{width:26.334000px;}
._16{width:27.540000px;}
._13{width:28.596000px;}
._12{width:29.634000px;}
._15{width:31.002000px;}
._1f{width:32.088000px;}
._1a{width:33.090000px;}
._1b{width:34.386000px;}
._1c{width:35.592000px;}
._2e{width:36.792000px;}
._2d{width:37.974000px;}
._18{width:39.210000px;}
._19{width:40.620000px;}
._31{width:44.490000px;}
._27{width:45.618000px;}
._28{width:46.728000px;}
._30{width:54.864000px;}
._2f{width:56.058000px;}
._33{width:73.554000px;}
._34{width:74.868000px;}
._23{width:79.452000px;}
._22{width:80.574000px;}
._25{width:85.584000px;}
._24{width:101.994000px;}
._2b{width:138.066000px;}
._26{width:140.922000px;}
._2c{width:157.422000px;}
._2{width:204.150000px;}
._29{width:237.786000px;}
._2a{width:239.376000px;}
._20{width:240.744000px;}
._21{width:243.258000px;}
._32{width:846.450000px;}
._35{width:848.028000px;}
.fc2{color:transparent;}
.fc1{color:rgb(46,83,149);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:48.289603px;}
.fse{font-size:56.425302px;}
.fs7{font-size:59.643408px;}
.fsa{font-size:59.787127px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.543708px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:66.384792px;}
.fsc{font-size:67.982292px;}
.fs5{font-size:71.859528px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:107.789292px;}
.fs8{font-size:107.933011px;}
.y154{bottom:-9.916613px;}
.y0{bottom:0.000000px;}
.y153{bottom:2.119858px;}
.y156{bottom:3.377400px;}
.y16d{bottom:3.569075px;}
.y14c{bottom:3.592979px;}
.y143{bottom:3.622926px;}
.y118{bottom:3.735000px;}
.y115{bottom:3.750000px;}
.y131{bottom:4.110000px;}
.y122{bottom:4.125000px;}
.y130{bottom:4.485000px;}
.y11e{bottom:4.500000px;}
.y139{bottom:4.515000px;}
.y12b{bottom:4.530000px;}
.y151{bottom:5.209817px;}
.y167{bottom:5.268633px;}
.y17f{bottom:5.438588px;}
.y14f{bottom:6.467361px;}
.y184{bottom:8.837702px;}
.y146{bottom:10.743003px;}
.y14a{bottom:10.814862px;}
.y17a{bottom:14.616198px;}
.y148{bottom:16.048630px;}
.y140{bottom:16.931901px;}
.y142{bottom:17.096590px;}
.y158{bottom:19.402075px;}
.y113{bottom:19.875000px;}
.y171{bottom:20.734603px;}
.y166{bottom:21.584384px;}
.y16c{bottom:21.754338px;}
.y17e{bottom:23.453895px;}
.yf2{bottom:24.375000px;}
.yee{bottom:24.405000px;}
.y108{bottom:24.420000px;}
.yf4{bottom:24.735000px;}
.yf0{bottom:24.750000px;}
.y101{bottom:24.780000px;}
.yfd{bottom:24.795000px;}
.y175{bottom:24.983498px;}
.y183{bottom:27.022965px;}
.y179{bottom:32.665497px;}
.y170{bottom:37.050354px;}
.y165{bottom:37.900132px;}
.y16b{bottom:39.633681px;}
.y14e{bottom:40.636566px;}
.y17d{bottom:41.497528px;}
.y174{bottom:43.202751px;}
.y182{bottom:44.896643px;}
.y145{bottom:44.912208px;}
.y178{bottom:50.510847px;}
.y16f{bottom:53.394430px;}
.y164{bottom:54.244209px;}
.y16a{bottom:57.648988px;}
.y17c{bottom:59.342880px;}
.y173{bottom:61.048102px;}
.y181{bottom:62.741994px;}
.y177{bottom:68.526154px;}
.y163{bottom:70.390004px;}
.y169{bottom:75.494339px;}
.y2{bottom:100.162500px;}
.y109{bottom:123.037500px;}
.y1c{bottom:129.787500px;}
.y13a{bottom:132.787500px;}
.yd5{bottom:133.912500px;}
.y70{bottom:135.787500px;}
.y35{bottom:137.662500px;}
.yb7{bottom:139.162500px;}
.y72{bottom:141.787500px;}
.y34{bottom:142.912500px;}
.yc7{bottom:145.162500px;}
.y98{bottom:149.287500px;}
.y82{bottom:151.920000px;}
.ye0{bottom:152.670000px;}
.y48{bottom:153.795000px;}
.y138{bottom:154.905000px;}
.yec{bottom:159.795000px;}
.y107{bottom:164.655000px;}
.y1b{bottom:171.030000px;}
.y5e{bottom:172.170000px;}
.yd4{bottom:175.545000px;}
.y33{bottom:176.295000px;}
.y137{bottom:177.030000px;}
.y6f{bottom:177.045000px;}
.y5d{bottom:177.420000px;}
.yb6{bottom:180.795000px;}
.y71{bottom:183.045000px;}
.yc6{bottom:186.825000px;}
.y97{bottom:187.200000px;}
.ydf{bottom:190.950000px;}
.y81{bottom:193.575000px;}
.y47{bottom:195.075000px;}
.ya7{bottom:196.950000px;}
.yeb{bottom:197.700000px;}
.y136{bottom:198.825000px;}
.y106{bottom:205.950000px;}
.y5c{bottom:206.700000px;}
.y1a{bottom:212.700000px;}
.yd3{bottom:216.825000px;}
.y6e{bottom:218.700000px;}
.y135{bottom:220.950000px;}
.yb5{bottom:222.075000px;}
.y32{bottom:224.700000px;}
.y96{bottom:225.450000px;}
.yc5{bottom:228.075000px;}
.yde{bottom:228.825000px;}
.y80{bottom:234.825000px;}
.yea{bottom:235.575000px;}
.y46{bottom:236.700000px;}
.ya6{bottom:238.200000px;}
.y5b{bottom:241.200000px;}
.y5f{bottom:242.700000px;}
.y134{bottom:243.075000px;}
.y61{bottom:245.325000px;}
.y105{bottom:247.575000px;}
.y19{bottom:253.950000px;}
.yd2{bottom:258.450000px;}
.y6d{bottom:259.950000px;}
.y95{bottom:263.325000px;}
.y133{bottom:265.200000px;}
.y30{bottom:265.950000px;}
.ydd{bottom:266.700000px;}
.yb4{bottom:267.450000px;}
.y161{bottom:267.609711px;}
.yc4{bottom:269.700000px;}
.y31{bottom:271.950000px;}
.ye9{bottom:273.450000px;}
.y5a{bottom:275.700000px;}
.y7f{bottom:276.450000px;}
.y45{bottom:277.950000px;}
.ya5{bottom:279.825000px;}
.y59{bottom:280.950000px;}
.y132{bottom:287.325000px;}
.y160{bottom:287.664487px;}
.y104{bottom:288.825000px;}
.y18{bottom:295.200000px;}
.yd1{bottom:299.700000px;}
.y6c{bottom:301.200000px;}
.yb3{bottom:305.745000px;}
.y15f{bottom:306.699529px;}
.y2f{bottom:307.230000px;}
.y94{bottom:309.120000px;}
.y58{bottom:310.230000px;}
.yc3{bottom:310.995000px;}
.ydc{bottom:312.495000px;}
.yaa{bottom:315.495000px;}
.y7e{bottom:317.745000px;}
.y44{bottom:319.245000px;}
.ye8{bottom:319.620000px;}
.ya4{bottom:321.120000px;}
.y15e{bottom:325.734571px;}
.y103{bottom:330.120000px;}
.y12f{bottom:331.245000px;}
.y17{bottom:336.870000px;}
.yd0{bottom:340.995000px;}
.y6b{bottom:342.870000px;}
.yb2{bottom:343.620000px;}
.y57{bottom:344.745000px;}
.y15d{bottom:344.769612px;}
.y2e{bottom:348.870000px;}
.y56{bottom:349.995000px;}
.y93{bottom:350.745000px;}
.yc2{bottom:352.245000px;}
.y12e{bottom:353.370000px;}
.ydb{bottom:354.120000px;}
.y60{bottom:354.870000px;}
.y7d{bottom:358.995000px;}
.y43{bottom:360.870000px;}
.ya3{bottom:362.745000px;}
.y15c{bottom:363.847143px;}
.ye7{bottom:364.995000px;}
.y13e{bottom:365.258339px;}
.y102{bottom:371.745000px;}
.y12d{bottom:375.495000px;}
.y16{bottom:378.120000px;}
.yb1{bottom:381.495000px;}
.y15b{bottom:382.372312px;}
.ycf{bottom:382.620000px;}
.y55{bottom:383.370000px;}
.y6a{bottom:384.120000px;}
.y2d{bottom:390.120000px;}
.y92{bottom:391.995000px;}
.yc1{bottom:393.870000px;}
.y12c{bottom:397.620000px;}
.yda{bottom:399.495000px;}
.y7c{bottom:400.620000px;}
.y42{bottom:402.120000px;}
.ye6{bottom:402.870000px;}
.ya2{bottom:403.995000px;}
.y13d{bottom:406.622459px;}
.y100{bottom:412.995000px;}
.yb0{bottom:419.370000px;}
.y15{bottom:419.745000px;}
.y69{bottom:425.775000px;}
.yce{bottom:428.025000px;}
.y2c{bottom:431.775000px;}
.y91{bottom:433.275000px;}
.yd9{bottom:437.400000px;}
.y54{bottom:437.775000px;}
.yc0{bottom:439.275000px;}
.ye5{bottom:440.775000px;}
.y12a{bottom:441.525000px;}
.y7b{bottom:441.900000px;}
.y41{bottom:443.775000px;}
.ya1{bottom:445.275000px;}
.yff{bottom:454.650000px;}
.y14{bottom:461.025000px;}
.y129{bottom:463.650000px;}
.yaf{bottom:465.525000px;}
.ycd{bottom:465.900000px;}
.y68{bottom:467.025000px;}
.y2b{bottom:473.025000px;}
.y90{bottom:474.900000px;}
.yd8{bottom:475.275000px;}
.ybf{bottom:477.150000px;}
.y53{bottom:479.025000px;}
.y7a{bottom:483.525000px;}
.y40{bottom:485.025000px;}
.y128{bottom:485.775000px;}
.ya0{bottom:486.900000px;}
.yfe{bottom:495.900000px;}
.y13{bottom:502.275000px;}
.ycc{bottom:503.775000px;}
.y127{bottom:507.900000px;}
.y67{bottom:508.275000px;}
.yae{bottom:510.900000px;}
.yd7{bottom:513.525000px;}
.y2a{bottom:514.275000px;}
.ybe{bottom:515.025000px;}
.y8f{bottom:516.150000px;}
.y52{bottom:520.275000px;}
.y79{bottom:524.775000px;}
.y3f{bottom:526.275000px;}
.y9f{bottom:528.150000px;}
.y126{bottom:529.650000px;}
.yfc{bottom:537.150000px;}
.y12{bottom:543.945000px;}
.yad{bottom:548.820000px;}
.y66{bottom:549.945000px;}
.yd6{bottom:551.445000px;}
.y125{bottom:551.820000px;}
.ybd{bottom:553.320000px;}
.y29{bottom:555.945000px;}
.y8e{bottom:557.820000px;}
.y51{bottom:561.945000px;}
.y78{bottom:566.070000px;}
.y3e{bottom:567.945000px;}
.y9e{bottom:569.820000px;}
.ye4{bottom:573.570000px;}
.y124{bottom:573.945000px;}
.yfb{bottom:578.820000px;}
.y11{bottom:585.195000px;}
.yac{bottom:586.695000px;}
.y65{bottom:591.195000px;}
.y123{bottom:596.070000px;}
.y28{bottom:597.195000px;}
.ybc{bottom:599.070000px;}
.y50{bottom:603.195000px;}
.y8d{bottom:605.070000px;}
.y77{bottom:607.695000px;}
.y3d{bottom:609.195000px;}
.y13b{bottom:609.945000px;}
.y13c{bottom:610.931512px;}
.y9d{bottom:611.070000px;}
.ye3{bottom:611.820000px;}
.y121{bottom:618.195000px;}
.yfa{bottom:620.070000px;}
.y159{bottom:624.195000px;}
.y15a{bottom:625.200385px;}
.y10{bottom:626.445000px;}
.y64{bottom:632.445000px;}
.y27{bottom:638.445000px;}
.y172{bottom:639.476896px;}
.y120{bottom:639.945000px;}
.y176{bottom:642.706044px;}
.y4f{bottom:644.445000px;}
.y168{bottom:647.634783px;}
.y152{bottom:648.010353px;}
.y76{bottom:648.945000px;}
.ye2{bottom:649.695000px;}
.y3c{bottom:650.445000px;}
.y8c{bottom:652.320000px;}
.y155{bottom:654.298057px;}
.yf9{bottom:661.350000px;}
.y11f{bottom:662.100000px;}
.y144{bottom:667.412446px;}
.yf{bottom:668.100000px;}
.y63{bottom:674.100000px;}
.y26{bottom:680.100000px;}
.ybb{bottom:682.350000px;}
.y11d{bottom:684.225000px;}
.y4e{bottom:686.100000px;}
.ye1{bottom:687.600000px;}
.y150{bottom:690.766776px;}
.y3b{bottom:692.100000px;}
.y8b{bottom:693.975000px;}
.y75{bottom:694.350000px;}
.y157{bottom:700.108518px;}
.yf8{bottom:702.975000px;}
.y11c{bottom:706.350000px;}
.ye{bottom:709.350000px;}
.y62{bottom:715.350000px;}
.y25{bottom:721.350000px;}
.y14d{bottom:723.462848px;}
.y4d{bottom:727.350000px;}
.yba{bottom:728.475000px;}
.y14b{bottom:730.289510px;}
.y74{bottom:732.225000px;}
.y3a{bottom:733.350000px;}
.y8a{bottom:735.225000px;}
.ya9{bottom:739.350000px;}
.yf7{bottom:744.225000px;}
.y11b{bottom:748.350000px;}
.y111{bottom:750.225000px;}
.yd{bottom:750.975000px;}
.y149{bottom:753.643862px;}
.yab{bottom:756.975000px;}
.y24{bottom:762.975000px;}
.y141{bottom:768.920012px;}
.y4c{bottom:768.975000px;}
.y73{bottom:770.475000px;}
.yb9{bottom:773.850000px;}
.y39{bottom:774.975000px;}
.y89{bottom:776.475000px;}
.yf6{bottom:785.880000px;}
.y11a{bottom:790.755000px;}
.y110{bottom:791.880000px;}
.yc{bottom:798.270000px;}
.y23{bottom:804.255000px;}
.y147{bottom:806.825901px;}
.y4b{bottom:810.255000px;}
.yb8{bottom:811.755000px;}
.y119{bottom:812.130000px;}
.y38{bottom:816.255000px;}
.y88{bottom:818.130000px;}
.yf5{bottom:827.130000px;}
.y10f{bottom:833.130000px;}
.y162{bottom:836.016550px;}
.y180{bottom:836.696353px;}
.y16e{bottom:836.866319px;}
.ycb{bottom:839.505000px;}
.y17b{bottom:840.775279px;}
.y22{bottom:845.505000px;}
.yb{bottom:851.505000px;}
.y117{bottom:854.145000px;}
.y37{bottom:857.505000px;}
.y87{bottom:859.380000px;}
.y9c{bottom:863.505000px;}
.ya{bottom:866.505000px;}
.yf3{bottom:868.395000px;}
.y10e{bottom:874.395000px;}
.y13f{bottom:880.002847px;}
.yca{bottom:881.130000px;}
.y9{bottom:887.130000px;}
.y21{bottom:893.130000px;}
.y116{bottom:896.550000px;}
.y36{bottom:899.175000px;}
.y9b{bottom:901.425000px;}
.y86{bottom:904.800000px;}
.y8{bottom:907.800000px;}
.yf1{bottom:910.050000px;}
.y10d{bottom:916.050000px;}
.yc9{bottom:922.425000px;}
.y7{bottom:928.425000px;}
.y4a{bottom:934.425000px;}
.y114{bottom:938.550000px;}
.y9a{bottom:939.300000px;}
.y20{bottom:940.425000px;}
.y85{bottom:943.050000px;}
.y6{bottom:949.050000px;}
.yef{bottom:951.300000px;}
.y10c{bottom:957.300000px;}
.yc8{bottom:964.050000px;}
.y5{bottom:970.050000px;}
.y49{bottom:976.050000px;}
.y99{bottom:977.550000px;}
.y112{bottom:980.550000px;}
.y84{bottom:980.925000px;}
.y1f{bottom:982.050000px;}
.yed{bottom:992.925000px;}
.y10b{bottom:998.925000px;}
.y4{bottom:1017.330000px;}
.y83{bottom:1018.830000px;}
.y1e{bottom:1023.330000px;}
.y10a{bottom:1040.205000px;}
.y3{bottom:1058.580000px;}
.y1d{bottom:1064.580000px;}
.ya8{bottom:1070.580000px;}
.y1{bottom:1171.125000px;}
.h2b{height:12.036472px;}
.h2a{height:15.090503px;}
.h27{height:18.144534px;}
.h13{height:20.625000px;}
.h26{height:20.659617px;}
.h16{height:21.000000px;}
.h17{height:21.037500px;}
.h14{height:21.375000px;}
.h15{height:21.412500px;}
.h24{height:25.869433px;}
.h1f{height:28.025228px;}
.h6{height:38.276367px;}
.hf{height:41.250000px;}
.hd{height:41.287500px;}
.he{height:41.625000px;}
.h10{height:41.647500px;}
.h11{height:41.662500px;}
.h5{height:47.109375px;}
.h3{height:48.562500px;}
.h2c{height:50.301676px;}
.h4{height:52.066406px;}
.h12{height:52.912500px;}
.hb{height:54.398438px;}
.h1d{height:56.266012px;}
.h32{height:56.866125px;}
.h7{height:58.886719px;}
.hc{height:59.343750px;}
.h8{height:60.468750px;}
.h20{height:61.070423px;}
.h25{height:61.217581px;}
.h30{height:62.207780px;}
.h29{height:62.697441px;}
.h34{height:63.032331px;}
.ha{height:64.743164px;}
.h1e{height:66.028233px;}
.h21{height:67.188662px;}
.h2f{height:68.513403px;}
.h1c{height:70.526197px;}
.h9{height:70.628906px;}
.h1{height:70.664062px;}
.h2d{height:71.473564px;}
.h19{height:71.613281px;}
.h1b{height:72.420931px;}
.h2{height:72.562500px;}
.h28{height:73.578823px;}
.h18{height:74.004654px;}
.h38{height:76.004208px;}
.h39{height:82.802437px;}
.h35{height:84.162083px;}
.h31{height:85.861641px;}
.h33{height:90.280490px;}
.h37{height:94.189471px;}
.h36{height:97.248675px;}
.h23{height:110.368235px;}
.h22{height:110.515393px;}
.h2e{height:409.049615px;}
.h1a{height:423.318488px;}
.h0{height:1188.000000px;}
.w12{width:25.435478px;}
.wa{width:29.764922px;}
.w11{width:29.945314px;}
.w13{width:40.768922px;}
.w5{width:43.875000px;}
.wd{width:44.196398px;}
.we{width:48.706234px;}
.wf{width:51.051349px;}
.w10{width:53.035678px;}
.wc{width:55.741580px;}
.w19{width:101.905225px;}
.w1a{width:104.499797px;}
.w8{width:105.412500px;}
.w16{width:107.708873px;}
.w18{width:108.255099px;}
.w17{width:109.449967px;}
.w15{width:113.888051px;}
.w14{width:114.946712px;}
.w3{width:116.325000px;}
.wb{width:206.550510px;}
.w6{width:264.495000px;}
.w7{width:297.150000px;}
.w4{width:588.975000px;}
.w9{width:705.300000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:7.875000px;}
.x38{left:10.412428px;}
.x35{left:12.802155px;}
.x3c{left:14.167729px;}
.x36{left:16.045379px;}
.x23{left:17.625000px;}
.x39{left:22.873201px;}
.x42{left:24.750851px;}
.x44{left:26.144864px;}
.x3b{left:27.652675px;}
.x2a{left:30.125708px;}
.x3a{left:32.090758px;}
.x3d{left:33.285628px;}
.x3f{left:36.187451px;}
.x37{left:38.406492px;}
.x28{left:41.159775px;}
.x21{left:52.545000px;}
.x2b{left:68.585593px;}
.x33{left:73.630597px;}
.x1d{left:84.037500px;}
.x24{left:85.162486px;}
.x1f{left:101.332500px;}
.x2{left:106.537486px;}
.xc{left:111.412486px;}
.x34{left:115.253603px;}
.x29{left:120.420685px;}
.x1e{left:128.662500px;}
.x1{left:160.574986px;}
.x2c{left:175.981872px;}
.x11{left:180.074973px;}
.x12{left:186.074986px;}
.x1c{left:222.870000px;}
.x3e{left:287.144994px;}
.x13{left:290.369973px;}
.x14{left:296.369986px;}
.x9{left:333.524973px;}
.xa{left:339.524986px;}
.x26{left:353.496003px;}
.xb{left:376.649986px;}
.x19{left:383.024986px;}
.x1a{left:385.274986px;}
.x8{left:388.274986px;}
.x20{left:393.900000px;}
.x5{left:398.024986px;}
.x4{left:409.694986px;}
.x6{left:415.319986px;}
.x3{left:427.694986px;}
.x7{left:430.694986px;}
.x43{left:474.952736px;}
.x2e{left:494.917504px;}
.x2d{left:496.721437px;}
.x31{left:501.952850px;}
.x32{left:559.859151px;}
.x40{left:577.227805px;}
.x2f{left:587.278955px;}
.xd{left:595.394973px;}
.xe{left:601.379986px;}
.x17{left:611.129973px;}
.x18{left:617.144986px;}
.x27{left:624.590331px;}
.xf{left:634.754973px;}
.x10{left:640.769986px;}
.x41{left:671.323704px;}
.x22{left:691.800000px;}
.x30{left:694.432668px;}
.x15{left:772.829973px;}
.x16{left:778.829986px;}
.x25{left:811.844986px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls21{letter-spacing:-0.874667pt;}
.lse{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.458667pt;}
.lsb{letter-spacing:-0.437333pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.416000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.302144pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.437333pt;}
.ls7{letter-spacing:0.458667pt;}
.ls11{letter-spacing:0.464000pt;}
.ls13{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.874667pt;}
.lsa{letter-spacing:0.917333pt;}
.ls1d{letter-spacing:1.077333pt;}
.ls4{letter-spacing:1.333333pt;}
.ls1b{letter-spacing:1.354667pt;}
.ls16{letter-spacing:1.696000pt;}
.ls15{letter-spacing:1.749333pt;}
.ls14{letter-spacing:1.770667pt;}
.ls18{letter-spacing:1.802667pt;}
.ls20{letter-spacing:2.666667pt;}
.ls22{letter-spacing:10.208000pt;}
.ls1c{letter-spacing:18.666667pt;}
.ls1{letter-spacing:21.333333pt;}
.ws10{word-spacing:-64.000000pt;}
.ws19{word-spacing:-55.594407pt;}
.ws15{word-spacing:-17.354667pt;}
.ws11{word-spacing:-17.333333pt;}
.wsd{word-spacing:-16.874667pt;}
.ws5{word-spacing:-16.458667pt;}
.ws6{word-spacing:-16.437333pt;}
.ws7{word-spacing:-16.416000pt;}
.wse{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.978667pt;}
.ws3{word-spacing:-15.584000pt;}
.ws8{word-spacing:-15.562667pt;}
.ws4{word-spacing:-15.541333pt;}
.ws16{word-spacing:-15.125333pt;}
.ws13{word-spacing:-14.666667pt;}
.ws9{word-spacing:-13.920000pt;}
.wsc{word-spacing:-13.653333pt;}
.wsf{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.173333pt;}
.ws14{word-spacing:-12.906667pt;}
.wsb{word-spacing:-12.746667pt;}
.ws17{word-spacing:-12.010570pt;}
.ws18{word-spacing:-11.981698pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-3.994667pt;}
._e{margin-left:-2.752000pt;}
._1{margin-left:-1.061333pt;}
._0{width:1.472000pt;}
._8{width:2.464000pt;}
._a{width:3.802667pt;}
._3{width:5.328000pt;}
._4{width:6.261333pt;}
._9{width:7.392000pt;}
._b{width:8.373333pt;}
._f{width:9.349333pt;}
._c{width:10.880000pt;}
._d{width:12.512000pt;}
._7{width:14.245333pt;}
._1d{width:15.653333pt;}
._1e{width:16.554667pt;}
._5{width:17.957333pt;}
._6{width:19.520000pt;}
._10{width:21.152000pt;}
._11{width:22.378667pt;}
._14{width:23.408000pt;}
._16{width:24.480000pt;}
._13{width:25.418667pt;}
._12{width:26.341333pt;}
._15{width:27.557333pt;}
._1f{width:28.522667pt;}
._1a{width:29.413333pt;}
._1b{width:30.565333pt;}
._1c{width:31.637333pt;}
._2e{width:32.704000pt;}
._2d{width:33.754667pt;}
._18{width:34.853333pt;}
._19{width:36.106667pt;}
._31{width:39.546667pt;}
._27{width:40.549333pt;}
._28{width:41.536000pt;}
._30{width:48.768000pt;}
._2f{width:49.829333pt;}
._33{width:65.381333pt;}
._34{width:66.549333pt;}
._23{width:70.624000pt;}
._22{width:71.621333pt;}
._25{width:76.074667pt;}
._24{width:90.661333pt;}
._2b{width:122.725333pt;}
._26{width:125.264000pt;}
._2c{width:139.930667pt;}
._2{width:181.466667pt;}
._29{width:211.365333pt;}
._2a{width:212.778667pt;}
._20{width:213.994667pt;}
._21{width:216.229333pt;}
._32{width:752.400000pt;}
._35{width:753.802667pt;}
.fs2{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:42.924091pt;}
.fse{font-size:50.155824pt;}
.fs7{font-size:53.016363pt;}
.fsa{font-size:53.144113pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.594407pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:59.008704pt;}
.fsc{font-size:60.428704pt;}
.fs5{font-size:63.875136pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:95.812704pt;}
.fs8{font-size:95.940454pt;}
.y154{bottom:-8.814767pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:1.884318pt;}
.y156{bottom:3.002133pt;}
.y16d{bottom:3.172511pt;}
.y14c{bottom:3.193759pt;}
.y143{bottom:3.220379pt;}
.y118{bottom:3.320000pt;}
.y115{bottom:3.333333pt;}
.y131{bottom:3.653333pt;}
.y122{bottom:3.666667pt;}
.y130{bottom:3.986667pt;}
.y11e{bottom:4.000000pt;}
.y139{bottom:4.013333pt;}
.y12b{bottom:4.026667pt;}
.y151{bottom:4.630949pt;}
.y167{bottom:4.683229pt;}
.y17f{bottom:4.834300pt;}
.y14f{bottom:5.748765pt;}
.y184{bottom:7.855735pt;}
.y146{bottom:9.549336pt;}
.y14a{bottom:9.613210pt;}
.y17a{bottom:12.992176pt;}
.y148{bottom:14.265449pt;}
.y140{bottom:15.050578pt;}
.y142{bottom:15.196968pt;}
.y158{bottom:17.246289pt;}
.y113{bottom:17.666667pt;}
.y171{bottom:18.430758pt;}
.y166{bottom:19.186119pt;}
.y16c{bottom:19.337190pt;}
.y17e{bottom:20.847907pt;}
.yf2{bottom:21.666667pt;}
.yee{bottom:21.693333pt;}
.y108{bottom:21.706667pt;}
.yf4{bottom:21.986667pt;}
.yf0{bottom:22.000000pt;}
.y101{bottom:22.026667pt;}
.yfd{bottom:22.040000pt;}
.y175{bottom:22.207554pt;}
.y183{bottom:24.020414pt;}
.y179{bottom:29.035997pt;}
.y170{bottom:32.933648pt;}
.y165{bottom:33.689006pt;}
.y16b{bottom:35.229939pt;}
.y14e{bottom:36.121392pt;}
.y17d{bottom:36.886691pt;}
.y174{bottom:38.402445pt;}
.y182{bottom:39.908127pt;}
.y145{bottom:39.921962pt;}
.y178{bottom:44.898531pt;}
.y16f{bottom:47.461716pt;}
.y164{bottom:48.217075pt;}
.y16a{bottom:51.243545pt;}
.y17c{bottom:52.749227pt;}
.y173{bottom:54.264980pt;}
.y181{bottom:55.770662pt;}
.y177{bottom:60.912137pt;}
.y163{bottom:62.568892pt;}
.y169{bottom:67.106079pt;}
.y2{bottom:89.033333pt;}
.y109{bottom:109.366667pt;}
.y1c{bottom:115.366667pt;}
.y13a{bottom:118.033333pt;}
.yd5{bottom:119.033333pt;}
.y70{bottom:120.700000pt;}
.y35{bottom:122.366667pt;}
.yb7{bottom:123.700000pt;}
.y72{bottom:126.033333pt;}
.y34{bottom:127.033333pt;}
.yc7{bottom:129.033333pt;}
.y98{bottom:132.700000pt;}
.y82{bottom:135.040000pt;}
.ye0{bottom:135.706667pt;}
.y48{bottom:136.706667pt;}
.y138{bottom:137.693333pt;}
.yec{bottom:142.040000pt;}
.y107{bottom:146.360000pt;}
.y1b{bottom:152.026667pt;}
.y5e{bottom:153.040000pt;}
.yd4{bottom:156.040000pt;}
.y33{bottom:156.706667pt;}
.y137{bottom:157.360000pt;}
.y6f{bottom:157.373333pt;}
.y5d{bottom:157.706667pt;}
.yb6{bottom:160.706667pt;}
.y71{bottom:162.706667pt;}
.yc6{bottom:166.066667pt;}
.y97{bottom:166.400000pt;}
.ydf{bottom:169.733333pt;}
.y81{bottom:172.066667pt;}
.y47{bottom:173.400000pt;}
.ya7{bottom:175.066667pt;}
.yeb{bottom:175.733333pt;}
.y136{bottom:176.733333pt;}
.y106{bottom:183.066667pt;}
.y5c{bottom:183.733333pt;}
.y1a{bottom:189.066667pt;}
.yd3{bottom:192.733333pt;}
.y6e{bottom:194.400000pt;}
.y135{bottom:196.400000pt;}
.yb5{bottom:197.400000pt;}
.y32{bottom:199.733333pt;}
.y96{bottom:200.400000pt;}
.yc5{bottom:202.733333pt;}
.yde{bottom:203.400000pt;}
.y80{bottom:208.733333pt;}
.yea{bottom:209.400000pt;}
.y46{bottom:210.400000pt;}
.ya6{bottom:211.733333pt;}
.y5b{bottom:214.400000pt;}
.y5f{bottom:215.733333pt;}
.y134{bottom:216.066667pt;}
.y61{bottom:218.066667pt;}
.y105{bottom:220.066667pt;}
.y19{bottom:225.733333pt;}
.yd2{bottom:229.733333pt;}
.y6d{bottom:231.066667pt;}
.y95{bottom:234.066667pt;}
.y133{bottom:235.733333pt;}
.y30{bottom:236.400000pt;}
.ydd{bottom:237.066667pt;}
.yb4{bottom:237.733333pt;}
.y161{bottom:237.875299pt;}
.yc4{bottom:239.733333pt;}
.y31{bottom:241.733333pt;}
.ye9{bottom:243.066667pt;}
.y5a{bottom:245.066667pt;}
.y7f{bottom:245.733333pt;}
.y45{bottom:247.066667pt;}
.ya5{bottom:248.733333pt;}
.y59{bottom:249.733333pt;}
.y132{bottom:255.400000pt;}
.y160{bottom:255.701766pt;}
.y104{bottom:256.733333pt;}
.y18{bottom:262.400000pt;}
.yd1{bottom:266.400000pt;}
.y6c{bottom:267.733333pt;}
.yb3{bottom:271.773333pt;}
.y15f{bottom:272.621804pt;}
.y2f{bottom:273.093333pt;}
.y94{bottom:274.773333pt;}
.y58{bottom:275.760000pt;}
.yc3{bottom:276.440000pt;}
.ydc{bottom:277.773333pt;}
.yaa{bottom:280.440000pt;}
.y7e{bottom:282.440000pt;}
.y44{bottom:283.773333pt;}
.ye8{bottom:284.106667pt;}
.ya4{bottom:285.440000pt;}
.y15e{bottom:289.541841pt;}
.y103{bottom:293.440000pt;}
.y12f{bottom:294.440000pt;}
.y17{bottom:299.440000pt;}
.yd0{bottom:303.106667pt;}
.y6b{bottom:304.773333pt;}
.yb2{bottom:305.440000pt;}
.y57{bottom:306.440000pt;}
.y15d{bottom:306.461878pt;}
.y2e{bottom:310.106667pt;}
.y56{bottom:311.106667pt;}
.y93{bottom:311.773333pt;}
.yc2{bottom:313.106667pt;}
.y12e{bottom:314.106667pt;}
.ydb{bottom:314.773333pt;}
.y60{bottom:315.440000pt;}
.y7d{bottom:319.106667pt;}
.y43{bottom:320.773333pt;}
.ya3{bottom:322.440000pt;}
.y15c{bottom:323.419683pt;}
.ye7{bottom:324.440000pt;}
.y13e{bottom:324.674079pt;}
.y102{bottom:330.440000pt;}
.y12d{bottom:333.773333pt;}
.y16{bottom:336.106667pt;}
.yb1{bottom:339.106667pt;}
.y15b{bottom:339.886499pt;}
.ycf{bottom:340.106667pt;}
.y55{bottom:340.773333pt;}
.y6a{bottom:341.440000pt;}
.y2d{bottom:346.773333pt;}
.y92{bottom:348.440000pt;}
.yc1{bottom:350.106667pt;}
.y12c{bottom:353.440000pt;}
.yda{bottom:355.106667pt;}
.y7c{bottom:356.106667pt;}
.y42{bottom:357.440000pt;}
.ye6{bottom:358.106667pt;}
.ya2{bottom:359.106667pt;}
.y13d{bottom:361.442186pt;}
.y100{bottom:367.106667pt;}
.yb0{bottom:372.773333pt;}
.y15{bottom:373.106667pt;}
.y69{bottom:378.466667pt;}
.yce{bottom:380.466667pt;}
.y2c{bottom:383.800000pt;}
.y91{bottom:385.133333pt;}
.yd9{bottom:388.800000pt;}
.y54{bottom:389.133333pt;}
.yc0{bottom:390.466667pt;}
.ye5{bottom:391.800000pt;}
.y12a{bottom:392.466667pt;}
.y7b{bottom:392.800000pt;}
.y41{bottom:394.466667pt;}
.ya1{bottom:395.800000pt;}
.yff{bottom:404.133333pt;}
.y14{bottom:409.800000pt;}
.y129{bottom:412.133333pt;}
.yaf{bottom:413.800000pt;}
.ycd{bottom:414.133333pt;}
.y68{bottom:415.133333pt;}
.y2b{bottom:420.466667pt;}
.y90{bottom:422.133333pt;}
.yd8{bottom:422.466667pt;}
.ybf{bottom:424.133333pt;}
.y53{bottom:425.800000pt;}
.y7a{bottom:429.800000pt;}
.y40{bottom:431.133333pt;}
.y128{bottom:431.800000pt;}
.ya0{bottom:432.800000pt;}
.yfe{bottom:440.800000pt;}
.y13{bottom:446.466667pt;}
.ycc{bottom:447.800000pt;}
.y127{bottom:451.466667pt;}
.y67{bottom:451.800000pt;}
.yae{bottom:454.133333pt;}
.yd7{bottom:456.466667pt;}
.y2a{bottom:457.133333pt;}
.ybe{bottom:457.800000pt;}
.y8f{bottom:458.800000pt;}
.y52{bottom:462.466667pt;}
.y79{bottom:466.466667pt;}
.y3f{bottom:467.800000pt;}
.y9f{bottom:469.466667pt;}
.y126{bottom:470.800000pt;}
.yfc{bottom:477.466667pt;}
.y12{bottom:483.506667pt;}
.yad{bottom:487.840000pt;}
.y66{bottom:488.840000pt;}
.yd6{bottom:490.173333pt;}
.y125{bottom:490.506667pt;}
.ybd{bottom:491.840000pt;}
.y29{bottom:494.173333pt;}
.y8e{bottom:495.840000pt;}
.y51{bottom:499.506667pt;}
.y78{bottom:503.173333pt;}
.y3e{bottom:504.840000pt;}
.y9e{bottom:506.506667pt;}
.ye4{bottom:509.840000pt;}
.y124{bottom:510.173333pt;}
.yfb{bottom:514.506667pt;}
.y11{bottom:520.173333pt;}
.yac{bottom:521.506667pt;}
.y65{bottom:525.506667pt;}
.y123{bottom:529.840000pt;}
.y28{bottom:530.840000pt;}
.ybc{bottom:532.506667pt;}
.y50{bottom:536.173333pt;}
.y8d{bottom:537.840000pt;}
.y77{bottom:540.173333pt;}
.y3d{bottom:541.506667pt;}
.y13b{bottom:542.173333pt;}
.y13c{bottom:543.050233pt;}
.y9d{bottom:543.173333pt;}
.ye3{bottom:543.840000pt;}
.y121{bottom:549.506667pt;}
.yfa{bottom:551.173333pt;}
.y159{bottom:554.840000pt;}
.y15a{bottom:555.733675pt;}
.y10{bottom:556.840000pt;}
.y64{bottom:562.173333pt;}
.y27{bottom:567.506667pt;}
.y172{bottom:568.423908pt;}
.y120{bottom:568.840000pt;}
.y176{bottom:571.294262pt;}
.y4f{bottom:572.840000pt;}
.y168{bottom:575.675363pt;}
.y152{bottom:576.009203pt;}
.y76{bottom:576.840000pt;}
.ye2{bottom:577.506667pt;}
.y3c{bottom:578.173333pt;}
.y8c{bottom:579.840000pt;}
.y155{bottom:581.598273pt;}
.yf9{bottom:587.866667pt;}
.y11f{bottom:588.533333pt;}
.y144{bottom:593.255508pt;}
.yf{bottom:593.866667pt;}
.y63{bottom:599.200000pt;}
.y26{bottom:604.533333pt;}
.ybb{bottom:606.533333pt;}
.y11d{bottom:608.200000pt;}
.y4e{bottom:609.866667pt;}
.ye1{bottom:611.200000pt;}
.y150{bottom:614.014912pt;}
.y3b{bottom:615.200000pt;}
.y8b{bottom:616.866667pt;}
.y75{bottom:617.200000pt;}
.y157{bottom:622.318683pt;}
.yf8{bottom:624.866667pt;}
.y11c{bottom:627.866667pt;}
.ye{bottom:630.533333pt;}
.y62{bottom:635.866667pt;}
.y25{bottom:641.200000pt;}
.y14d{bottom:643.078087pt;}
.y4d{bottom:646.533333pt;}
.yba{bottom:647.533333pt;}
.y14b{bottom:649.146231pt;}
.y74{bottom:650.866667pt;}
.y3a{bottom:651.866667pt;}
.y8a{bottom:653.533333pt;}
.ya9{bottom:657.200000pt;}
.yf7{bottom:661.533333pt;}
.y11b{bottom:665.200000pt;}
.y111{bottom:666.866667pt;}
.yd{bottom:667.533333pt;}
.y149{bottom:669.905655pt;}
.yab{bottom:672.866667pt;}
.y24{bottom:678.200000pt;}
.y141{bottom:683.484455pt;}
.y4c{bottom:683.533333pt;}
.y73{bottom:684.866667pt;}
.yb9{bottom:687.866667pt;}
.y39{bottom:688.866667pt;}
.y89{bottom:690.200000pt;}
.yf6{bottom:698.560000pt;}
.y11a{bottom:702.893333pt;}
.y110{bottom:703.893333pt;}
.yc{bottom:709.573333pt;}
.y23{bottom:714.893333pt;}
.y147{bottom:717.178579pt;}
.y4b{bottom:720.226667pt;}
.yb8{bottom:721.560000pt;}
.y119{bottom:721.893333pt;}
.y38{bottom:725.560000pt;}
.y88{bottom:727.226667pt;}
.yf5{bottom:735.226667pt;}
.y10f{bottom:740.560000pt;}
.y162{bottom:743.125822pt;}
.y180{bottom:743.730091pt;}
.y16e{bottom:743.881172pt;}
.ycb{bottom:746.226667pt;}
.y17b{bottom:747.355803pt;}
.y22{bottom:751.560000pt;}
.yb{bottom:756.893333pt;}
.y117{bottom:759.240000pt;}
.y37{bottom:762.226667pt;}
.y87{bottom:763.893333pt;}
.y9c{bottom:767.560000pt;}
.ya{bottom:770.226667pt;}
.yf3{bottom:771.906667pt;}
.y10e{bottom:777.240000pt;}
.y13f{bottom:782.224753pt;}
.yca{bottom:783.226667pt;}
.y9{bottom:788.560000pt;}
.y21{bottom:793.893333pt;}
.y116{bottom:796.933333pt;}
.y36{bottom:799.266667pt;}
.y9b{bottom:801.266667pt;}
.y86{bottom:804.266667pt;}
.y8{bottom:806.933333pt;}
.yf1{bottom:808.933333pt;}
.y10d{bottom:814.266667pt;}
.yc9{bottom:819.933333pt;}
.y7{bottom:825.266667pt;}
.y4a{bottom:830.600000pt;}
.y114{bottom:834.266667pt;}
.y9a{bottom:834.933333pt;}
.y20{bottom:835.933333pt;}
.y85{bottom:838.266667pt;}
.y6{bottom:843.600000pt;}
.yef{bottom:845.600000pt;}
.y10c{bottom:850.933333pt;}
.yc8{bottom:856.933333pt;}
.y5{bottom:862.266667pt;}
.y49{bottom:867.600000pt;}
.y99{bottom:868.933333pt;}
.y112{bottom:871.600000pt;}
.y84{bottom:871.933333pt;}
.y1f{bottom:872.933333pt;}
.yed{bottom:882.600000pt;}
.y10b{bottom:887.933333pt;}
.y4{bottom:904.293333pt;}
.y83{bottom:905.626667pt;}
.y1e{bottom:909.626667pt;}
.y10a{bottom:924.626667pt;}
.y3{bottom:940.960000pt;}
.y1d{bottom:946.293333pt;}
.ya8{bottom:951.626667pt;}
.y1{bottom:1041.000000pt;}
.h2b{height:10.699087pt;}
.h2a{height:13.413780pt;}
.h27{height:16.128474pt;}
.h13{height:18.333333pt;}
.h26{height:18.364104pt;}
.h16{height:18.666667pt;}
.h17{height:18.700000pt;}
.h14{height:19.000000pt;}
.h15{height:19.033333pt;}
.h24{height:22.995051pt;}
.h1f{height:24.911314pt;}
.h6{height:34.023438pt;}
.hf{height:36.666667pt;}
.hd{height:36.700000pt;}
.he{height:37.000000pt;}
.h10{height:37.020000pt;}
.h11{height:37.033333pt;}
.h5{height:41.875000pt;}
.h3{height:43.166667pt;}
.h2c{height:44.712601pt;}
.h4{height:46.281250pt;}
.h12{height:47.033333pt;}
.hb{height:48.354167pt;}
.h1d{height:50.014233pt;}
.h32{height:50.547666pt;}
.h7{height:52.343750pt;}
.hc{height:52.750000pt;}
.h8{height:53.750000pt;}
.h20{height:54.284821pt;}
.h25{height:54.415628pt;}
.h30{height:55.295805pt;}
.h29{height:55.731059pt;}
.h34{height:56.028739pt;}
.ha{height:57.549479pt;}
.h1e{height:58.691763pt;}
.h21{height:59.723255pt;}
.h2f{height:60.900803pt;}
.h1c{height:62.689953pt;}
.h9{height:62.781250pt;}
.h1{height:62.812500pt;}
.h2d{height:63.532057pt;}
.h19{height:63.656250pt;}
.h1b{height:64.374161pt;}
.h2{height:64.500000pt;}
.h28{height:65.403399pt;}
.h18{height:65.781915pt;}
.h38{height:67.559296pt;}
.h39{height:73.602167pt;}
.h35{height:74.810741pt;}
.h31{height:76.321459pt;}
.h33{height:80.249324pt;}
.h37{height:83.723975pt;}
.h36{height:86.443267pt;}
.h23{height:98.105098pt;}
.h22{height:98.235905pt;}
.h2e{height:363.599658pt;}
.h1a{height:376.283100pt;}
.h0{height:1056.000000pt;}
.w12{width:22.609314pt;}
.wa{width:26.457708pt;}
.w11{width:26.618057pt;}
.w13{width:36.239042pt;}
.w5{width:39.000000pt;}
.wd{width:39.285687pt;}
.we{width:43.294430pt;}
.wf{width:45.378977pt;}
.w10{width:47.142825pt;}
.wc{width:49.548071pt;}
.w19{width:90.582423pt;}
.w1a{width:92.888709pt;}
.w8{width:93.700000pt;}
.w16{width:95.741221pt;}
.w18{width:96.226755pt;}
.w17{width:97.288860pt;}
.w15{width:101.233823pt;}
.w14{width:102.174856pt;}
.w3{width:103.400000pt;}
.wb{width:183.600453pt;}
.w6{width:235.106667pt;}
.w7{width:264.133333pt;}
.w4{width:523.533333pt;}
.w9{width:626.933333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.000000pt;}
.x38{left:9.255492pt;}
.x35{left:11.379693pt;}
.x3c{left:12.593537pt;}
.x36{left:14.262559pt;}
.x23{left:15.666667pt;}
.x39{left:20.331734pt;}
.x42{left:22.000757pt;}
.x44{left:23.239879pt;}
.x3b{left:24.580155pt;}
.x2a{left:26.778407pt;}
.x3a{left:28.525118pt;}
.x3d{left:29.587225pt;}
.x3f{left:32.166623pt;}
.x37{left:34.139104pt;}
.x28{left:36.586467pt;}
.x21{left:46.706667pt;}
.x2b{left:60.964972pt;}
.x33{left:65.449420pt;}
.x1d{left:74.700000pt;}
.x24{left:75.699988pt;}
.x1f{left:90.073333pt;}
.x2{left:94.699988pt;}
.xc{left:99.033321pt;}
.x34{left:102.447647pt;}
.x29{left:107.040609pt;}
.x1e{left:114.366667pt;}
.x1{left:142.733321pt;}
.x2c{left:156.428330pt;}
.x11{left:160.066642pt;}
.x12{left:165.399988pt;}
.x1c{left:198.106667pt;}
.x3e{left:255.239995pt;}
.x13{left:258.106642pt;}
.x14{left:263.439988pt;}
.x9{left:296.466642pt;}
.xa{left:301.799988pt;}
.x26{left:314.218670pt;}
.xb{left:334.799988pt;}
.x19{left:340.466655pt;}
.x1a{left:342.466655pt;}
.x8{left:345.133321pt;}
.x20{left:350.133333pt;}
.x5{left:353.799988pt;}
.x4{left:364.173321pt;}
.x6{left:369.173321pt;}
.x3{left:380.173321pt;}
.x7{left:382.839988pt;}
.x43{left:422.180210pt;}
.x2e{left:439.926670pt;}
.x2d{left:441.530166pt;}
.x31{left:446.180311pt;}
.x32{left:497.652579pt;}
.x40{left:513.091382pt;}
.x2f{left:522.025738pt;}
.xd{left:529.239976pt;}
.xe{left:534.559988pt;}
.x17{left:543.226642pt;}
.x18{left:548.573321pt;}
.x27{left:555.191405pt;}
.xf{left:564.226642pt;}
.x10{left:569.573321pt;}
.x41{left:596.732181pt;}
.x22{left:614.933333pt;}
.x30{left:617.273483pt;}
.x15{left:686.959976pt;}
.x16{left:692.293321pt;}
.x25{left:721.639988pt;}
}




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