
    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_ea299a4720bf7835aae7af08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_0d8ed62505a501d5ef723477.woff')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_f3207dca6ef046c0f6c96f15.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_c128f65577e9a4e4b7600836.woff')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_09ebe68d8ccf2d43bd460512.woff')format("woff");}.ff5{font-family:ff5;line-height:1.274414;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_0ef2194db1402a7c3bb0f8c5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026367;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_e4cde00e2ff506ff88826bf4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.926000;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_3648adbf958f0ca84b263e66.woff')format("woff");}.ff8{font-family:ff8;line-height:1.020996;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_02be0d55c5d6ad8499eaeb5e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_06c82e78088109096d2c7650.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936523;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_a1f98e90a55b9ef3f8cff129.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_f0a2ed53e2078f57497c7bc8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.926000;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_1cbeb9191cd85d3cb040c394.woff')format("woff");}.ffd{font-family:ffd;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b7a9696a80929e8e4bcf301f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7de71e714efc48979a447277.woff')format("woff");}.fff{font-family:fff;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.265625px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.234375px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.055125px;}
.ls3{letter-spacing:0.068531px;}
.ls0{letter-spacing:0.068554px;}
.ls2{letter-spacing:0.068576px;}
.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;}
}
.ws5{word-spacing:-40.031998px;}
.ws1{word-spacing:-36.845507px;}
.ws9{word-spacing:-30.023999px;}
.ws0{word-spacing:-20.015999px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:272.732465px;}
.ws7{word-spacing:359.420250px;}
.ws6{word-spacing:388.796240px;}
.ws4{word-spacing:400.820183px;}
.ws3{word-spacing:1206.367993px;}
._4{margin-left:-12.220322px;}
._3{margin-left:-7.992941px;}
._6{margin-left:-6.625133px;}
._5{margin-left:-5.327841px;}
._2{margin-left:-4.104037px;}
._0{margin-left:-2.917081px;}
._1{margin-left:-1.296541px;}
._7{width:1.294749px;}
.fc7{color:rgb(24,54,145);}
.fc6{color:rgb(150,152,150);}
.fc4{color:rgb(0,134,179);}
.fc3{color:rgb(167,29,93);}
.fc5{color:rgb(0,136,204);}
.fc2{color:rgb(121,93,163);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:61.199999px;}
.fs1{font-size:71.999997px;}
.fs5{font-size:89.999996px;}
.fs4{font-size:107.999996px;}
.fs2{font-size:125.999995px;}
.fs0{font-size:161.999993px;}
.y0{bottom:0.000000px;}
.yac{bottom:12.392567px;}
.y60{bottom:13.517567px;}
.y136{bottom:16.892567px;}
.y137{bottom:17.208974px;}
.yc7{bottom:18.017567px;}
.yc8{bottom:18.333973px;}
.y15{bottom:21.374999px;}
.yb0{bottom:22.499999px;}
.y8b{bottom:27.017567px;}
.y5f{bottom:38.267566px;}
.yab{bottom:41.958973px;}
.y1{bottom:42.237453px;}
.yaa{bottom:42.767566px;}
.y14{bottom:46.124998px;}
.yc6{bottom:46.458972px;}
.y26{bottom:47.249998px;}
.yc5{bottom:47.267566px;}
.y8a{bottom:52.892566px;}
.y135{bottom:61.892565px;}
.y5e{bottom:63.017565px;}
.y25{bottom:71.999997px;}
.y89{bottom:77.642565px;}
.y142{bottom:83.267565px;}
.y143{bottom:83.583971px;}
.y1b{bottom:86.130019px;}
.y5d{bottom:88.892564px;}
.y166{bottom:96.749996px;}
.y9b{bottom:97.874996px;}
.y88{bottom:103.517564px;}
.y5c{bottom:113.642563px;}
.y165{bottom:121.499995px;}
.y9a{bottom:122.624995px;}
.y134{bottom:122.642563px;}
.ya9{bottom:124.380017px;}
.y1a{bottom:124.892563px;}
.yc4{bottom:127.755017px;}
.y87{bottom:128.267563px;}
.y113{bottom:130.517563px;}
.y114{bottom:130.833969px;}
.y16f{bottom:131.130017px;}
.yf7{bottom:136.755017px;}
.y5b{bottom:139.517562px;}
.y34{bottom:145.142562px;}
.y35{bottom:145.458968px;}
.y99{bottom:147.374994px;}
.y160{bottom:148.499994px;}
.y132{bottom:151.892562px;}
.y133{bottom:152.208968px;}
.y18{bottom:153.017562px;}
.y19{bottom:153.333968px;}
.y141{bottom:158.642561px;}
.y112{bottom:158.958968px;}
.y111{bottom:159.767561px;}
.y5a{bottom:164.267561px;}
.y16e{bottom:168.767561px;}
.y159{bottom:169.892561px;}
.y15a{bottom:170.208967px;}
.y98{bottom:173.249993px;}
.y33{bottom:173.583967px;}
.y32{bottom:174.392561px;}
.y86{bottom:178.892561px;}
.y131{bottom:180.333967px;}
.y130{bottom:181.142560px;}
.ya8{bottom:187.892560px;}
.y110{bottom:188.208966px;}
.y59{bottom:189.017560px;}
.y97{bottom:197.999992px;}
.y16c{bottom:198.017560px;}
.y16d{bottom:198.333966px;}
.y158{bottom:199.142560px;}
.ydb{bottom:202.517560px;}
.ydc{bottom:202.833966px;}
.y85{bottom:203.642560px;}
.yf6{bottom:203.958966px;}
.y12e{bottom:209.267559px;}
.y12f{bottom:209.583966px;}
.y58{bottom:214.892559px;}
.ya7{bottom:216.017559px;}
.y96{bottom:222.749991px;}
.yde{bottom:223.874991px;}
.y16b{bottom:226.142559px;}
.y156{bottom:227.267559px;}
.y157{bottom:227.583965px;}
.y84{bottom:229.517558px;}
.yf5{bottom:232.083965px;}
.yf4{bottom:232.892558px;}
.y17{bottom:233.505013px;}
.y140{bottom:235.142558px;}
.y12d{bottom:237.708964px;}
.y12c{bottom:238.517558px;}
.y57{bottom:239.642558px;}
.yda{bottom:247.517558px;}
.y95{bottom:248.624990px;}
.y83{bottom:254.267557px;}
.y31{bottom:254.880012px;}
.y169{bottom:255.392557px;}
.y16a{bottom:255.708964px;}
.y155{bottom:256.517557px;}
.yf2{bottom:261.017557px;}
.yf3{bottom:261.333963px;}
.y13e{bottom:263.267557px;}
.y13f{bottom:263.583963px;}
.y56{bottom:265.517557px;}
.y10f{bottom:268.380011px;}
.ya6{bottom:271.142557px;}
.y16{bottom:272.267557px;}
.y94{bottom:273.374989px;}
.y82{bottom:279.017556px;}
.y12b{bottom:281.267556px;}
.y168{bottom:283.833962px;}
.y167{bottom:284.642556px;}
.y55{bottom:290.267556px;}
.y30{bottom:292.517556px;}
.yc3{bottom:296.505010px;}
.y147{bottom:298.124988px;}
.y93{bottom:299.249988px;}
.y154{bottom:299.267556px;}
.y81{bottom:304.892555px;}
.yd9{bottom:309.392555px;}
.y54{bottom:315.017555px;}
.yf0{bottom:318.392555px;}
.yf1{bottom:318.708961px;}
.y92{bottom:323.999987px;}
.y80{bottom:329.642554px;}
.y10e{bottom:331.892554px;}
.y129{bottom:334.142554px;}
.y12a{bottom:334.458960px;}
.yc2{bottom:335.267554px;}
.yd8{bottom:337.517554px;}
.y53{bottom:340.892554px;}
.ya5{bottom:342.017554px;}
.y13d{bottom:343.755008px;}
.yee{bottom:347.642554px;}
.yef{bottom:347.958960px;}
.y91{bottom:348.749985px;}
.y152{bottom:352.142553px;}
.y153{bottom:352.458960px;}
.y13{bottom:352.755008px;}
.y7f{bottom:354.392553px;}
.y10d{bottom:361.142553px;}
.y127{bottom:363.392553px;}
.y128{bottom:363.708959px;}
.y164{bottom:365.130007px;}
.y52{bottom:365.642553px;}
.yd7{bottom:366.767553px;}
.ya3{bottom:370.142553px;}
.ya4{bottom:370.458959px;}
.y2f{bottom:373.005007px;}
.y90{bottom:374.624984px;}
.yed{bottom:376.083959px;}
.yec{bottom:376.892552px;}
.y7e{bottom:380.267552px;}
.y150{bottom:381.392552px;}
.y151{bottom:381.708958px;}
.y51{bottom:390.392552px;}
.y126{bottom:391.833958px;}
.y125{bottom:392.642552px;}
.y8f{bottom:399.374983px;}
.ya1{bottom:399.392551px;}
.ya2{bottom:399.708958px;}
.y7d{bottom:405.017551px;}
.yeb{bottom:405.333957px;}
.yc1{bottom:415.755005px;}
.y12{bottom:416.267551px;}
.y10b{bottom:419.642551px;}
.y10c{bottom:419.958957px;}
.yd6{bottom:421.892550px;}
.y146{bottom:424.124982px;}
.y8e{bottom:425.249982px;}
.ya0{bottom:428.642550px;}
.y7c{bottom:430.892550px;}
.yea{bottom:433.458956px;}
.ye9{bottom:434.267550px;}
.y2e{bottom:436.517550px;}
.y50{bottom:441.017550px;}
.y11{bottom:444.392549px;}
.y10a{bottom:449.208956px;}
.y8d{bottom:449.999981px;}
.y109{bottom:450.017549px;}
.y7b{bottom:455.642549px;}
.y14e{bottom:456.767549px;}
.y14f{bottom:457.083955px;}
.ye7{bottom:462.392549px;}
.ye8{bottom:462.708955px;}
.y4f{bottom:466.892549px;}
.y124{bottom:473.130003px;}
.y10{bottom:473.642548px;}
.y145{bottom:474.749980px;}
.yc0{bottom:479.267548px;}
.y7a{bottom:480.392548px;}
.y14c{bottom:486.017548px;}
.y14d{bottom:486.333954px;}
.y4e{bottom:491.642548px;}
.ye6{bottom:491.958954px;}
.yd5{bottom:500.642547px;}
.y79{bottom:506.267547px;}
.y9f{bottom:509.130001px;}
.y123{bottom:510.767547px;}
.y4d{bottom:516.392546px;}
.y2d{bottom:517.005001px;}
.yf{bottom:528.767546px;}
.y108{bottom:530.505001px;}
.y78{bottom:531.017546px;}
.y4c{bottom:542.267545px;}
.yd4{bottom:543.392545px;}
.y122{bottom:553.517545px;}
.y77{bottom:556.892545px;}
.y163{bottom:558.017545px;}
.ybf{bottom:559.754999px;}
.y14b{bottom:566.504999px;}
.y4b{bottom:567.017544px;}
.y107{bottom:568.142544px;}
.ye5{bottom:572.129999px;}
.y76{bottom:581.642544px;}
.y161{bottom:586.142544px;}
.y162{bottom:586.458950px;}
.yd3{bottom:587.267544px;}
.y4a{bottom:592.892543px;}
.y9e{bottom:597.392543px;}
.ye{bottom:598.517543px;}
.y14a{bottom:604.142543px;}
.y2c{bottom:606.392543px;}
.y121{bottom:606.708949px;}
.y120{bottom:607.517543px;}
.ye4{bottom:610.892543px;}
.y49{bottom:617.642542px;}
.y9d{bottom:626.642542px;}
.yd{bottom:627.767542px;}
.yd2{bottom:630.017542px;}
.y75{bottom:632.267542px;}
.y148{bottom:633.392542px;}
.y149{bottom:633.708948px;}
.y2b{bottom:634.517542px;}
.y11e{bottom:635.642542px;}
.y11f{bottom:635.958948px;}
.y48{bottom:642.392541px;}
.ybe{bottom:648.017541px;}
.ye3{bottom:653.642541px;}
.y74{bottom:657.017541px;}
.y13b{bottom:659.267541px;}
.y13c{bottom:659.583947px;}
.y105{bottom:664.892540px;}
.y106{bottom:665.208947px;}
.y15f{bottom:666.629995px;}
.y47{bottom:668.267540px;}
.y9c{bottom:672.767540px;}
.yd1{bottom:673.892540px;}
.yc{bottom:675.017540px;}
.y2a{bottom:680.958946px;}
.y29{bottom:681.767540px;}
.y73{bottom:682.892540px;}
.y13a{bottom:687.708946px;}
.y139{bottom:688.517539px;}
.y46{bottom:693.017539px;}
.y104{bottom:693.333945px;}
.ybd{bottom:694.142539px;}
.yb{bottom:703.142539px;}
.ye2{bottom:706.517539px;}
.y72{bottom:707.642539px;}
.y27{bottom:709.892538px;}
.y28{bottom:710.208945px;}
.y144{bottom:713.879993px;}
.y11d{bottom:716.129993px;}
.yd0{bottom:716.642538px;}
.y45{bottom:718.892538px;}
.y102{bottom:722.267538px;}
.y103{bottom:722.583944px;}
.ybc{bottom:723.392538px;}
.y138{bottom:731.267538px;}
.ya{bottom:732.392537px;}
.ye1{bottom:736.083944px;}
.ye0{bottom:736.892537px;}
.y44{bottom:743.642537px;}
.ybb{bottom:752.642537px;}
.y8c{bottom:753.254991px;}
.y11c{bottom:754.892537px;}
.y71{bottom:758.267536px;}
.y9{bottom:760.517536px;}
.y43{bottom:768.392536px;}
.yba{bottom:780.767535px;}
.y70{bottom:783.017535px;}
.ydf{bottom:784.142535px;}
.y8{bottom:789.767535px;}
.y24{bottom:790.379990px;}
.y42{bottom:794.267535px;}
.y11b{bottom:797.642535px;}
.y101{bottom:802.754989px;}
.ycf{bottom:804.392534px;}
.y6f{bottom:808.892534px;}
.yb9{bottom:810.017534px;}
.y7{bottom:819.017534px;}
.y6e{bottom:833.642533px;}
.yb8{bottom:839.267533px;}
.y100{bottom:841.517533px;}
.y41{bottom:844.892533px;}
.yce{bottom:846.017533px;}
.y119{bottom:850.517533px;}
.y11a{bottom:850.833939px;}
.y6d{bottom:858.392532px;}
.ydd{bottom:864.629987px;}
.y6{bottom:865.142532px;}
.yb7{bottom:868.517532px;}
.y40{bottom:869.642532px;}
.y23{bottom:879.767531px;}
.y118{bottom:880.083938px;}
.y15e{bottom:882.017531px;}
.y6c{bottom:884.267531px;}
.y3f{bottom:894.392531px;}
.yb6{bottom:897.767531px;}
.ycd{bottom:902.267530px;}
.y22{bottom:907.892530px;}
.y117{bottom:908.208936px;}
.y6b{bottom:909.017530px;}
.y15c{bottom:910.142530px;}
.y15d{bottom:910.458936px;}
.y5{bottom:920.267530px;}
.yb5{bottom:925.892529px;}
.ycc{bottom:931.517529px;}
.y6a{bottom:933.767529px;}
.y21{bottom:937.142529px;}
.yff{bottom:937.458935px;}
.y3e{bottom:945.017529px;}
.yb3{bottom:956.267528px;}
.yb4{bottom:956.583934px;}
.y69{bottom:959.642528px;}
.ycb{bottom:960.767528px;}
.yfd{bottom:966.392528px;}
.yfe{bottom:966.708934px;}
.y3d{bottom:969.767528px;}
.y68{bottom:984.392527px;}
.yb1{bottom:985.517527px;}
.yb2{bottom:985.833933px;}
.y15b{bottom:990.629981px;}
.y4{bottom:991.142527px;}
.yfb{bottom:994.517527px;}
.yfc{bottom:994.833933px;}
.y3c{bottom:995.642527px;}
.y67{bottom:1010.267526px;}
.y20{bottom:1017.629980px;}
.y3b{bottom:1020.392525px;}
.y66{bottom:1035.017525px;}
.yca{bottom:1041.254979px;}
.y3a{bottom:1046.267524px;}
.y3{bottom:1050.767524px;}
.y116{bottom:1056.392524px;}
.y65{bottom:1059.767524px;}
.yaf{bottom:1066.004978px;}
.y39{bottom:1071.017523px;}
.yfa{bottom:1075.004978px;}
.y1f{bottom:1081.142523px;}
.y115{bottom:1084.517523px;}
.y64{bottom:1085.642523px;}
.y38{bottom:1095.767522px;}
.y2{bottom:1099.142522px;}
.y63{bottom:1110.392522px;}
.yf9{bottom:1113.767522px;}
.y37{bottom:1121.642521px;}
.y1e{bottom:1127.267521px;}
.yae{bottom:1129.517521px;}
.y62{bottom:1136.267521px;}
.y36{bottom:1146.392520px;}
.yf8{bottom:1156.517520px;}
.y1c{bottom:1157.642520px;}
.y1d{bottom:1157.958926px;}
.yad{bottom:1158.767520px;}
.yc9{bottom:1159.083926px;}
.y61{bottom:1161.017520px;}
.hd{height:46.676953px;}
.h17{height:46.766601px;}
.h1a{height:49.426171px;}
.h9{height:49.754882px;}
.h18{height:50.083593px;}
.h14{height:51.366373px;}
.h4{height:52.631998px;}
.h15{height:52.874998px;}
.h10{height:52.989257px;}
.h8{height:53.999998px;}
.h7{height:59.526562px;}
.hb{height:62.760937px;}
.h13{height:65.789997px;}
.h6{height:78.749997px;}
.h11{height:78.947997px;}
.hc{height:79.874997px;}
.h5{height:92.105996px;}
.hf{height:103.499996px;}
.ha{height:104.624996px;}
.h3{height:118.421995px;}
.h1c{height:179.999993px;}
.h1b{height:230.624990px;}
.h16{height:331.874986px;}
.h12{height:356.624985px;}
.he{height:467.999981px;}
.h19{height:507.374979px;}
.h2{height:1179.017519px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:807.943325px;}
.w2{width:808.505822px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:6.152343px;}
.x53{left:10.828125px;}
.x3{left:13.833987px;}
.x17{left:15.749999px;}
.x21{left:27.492186px;}
.x42{left:31.499999px;}
.x2{left:35.999999px;}
.x16{left:39.164061px;}
.x1{left:41.624998px;}
.x10{left:46.494139px;}
.xf{left:54.175779px;}
.x1a{left:59.818357px;}
.x31{left:83.759762px;}
.x5d{left:100.529293px;}
.x3d{left:106.523433px;}
.x62{left:109.195308px;}
.x26{left:111.392573px;}
.x35{left:112.851558px;}
.x60{left:143.859369px;}
.x5f{left:153.861322px;}
.x18{left:167.291009px;}
.x32{left:170.578118px;}
.x58{left:172.195305px;}
.x3e{left:180.544914px;}
.x4b{left:183.585930px;}
.x45{left:189.755857px;}
.xa{left:194.167961px;}
.x27{left:198.210929px;}
.x11{left:200.812492px;}
.x54{left:213.468741px;}
.x33{left:227.671866px;}
.x5b{left:229.535147px;}
.x3a{left:250.558583px;}
.x46{left:254.865229px;}
.x44{left:261.808583px;}
.x57{left:268.541010px;}
.x1b{left:271.212885px;}
.xe{left:275.484364px;}
.x28{left:285.029291px;}
.x43{left:287.156238px;}
.x4{left:302.167956px;}
.x22{left:313.435539px;}
.x48{left:318.216789px;}
.xb{left:327.041008px;}
.x5a{left:331.242174px;}
.x12{left:333.685539px;}
.x38{left:346.904288px;}
.x29{left:353.425767px;}
.x1c{left:358.031235px;}
.x15{left:363.533194px;}
.x19{left:369.861318px;}
.x3b{left:373.781234px;}
.x59{left:405.263661px;}
.x5c{left:406.968733px;}
.x6{left:408.603504px;}
.x3f{left:410.080067px;}
.x2a{left:412.611317px;}
.x52{left:421.576160px;}
.x2e{left:423.193347px;}
.x4d{left:434.003888px;}
.x55{left:450.369127px;}
.x4c{left:452.917950px;}
.xc{left:469.124980px;}
.x1d{left:472.482408px;}
.x13{left:475.769511px;}
.x2b{left:481.007792px;}
.x2f{left:482.378886px;}
.x8{left:487.265605px;}
.x56{left:497.882792px;}
.x63{left:519.257791px;}
.x50{left:527.255843px;}
.x36{left:528.644509px;}
.x5{left:531.052718px;}
.x40{left:533.302718px;}
.x2c{left:540.193342px;}
.x5e{left:542.197249px;}
.x61{left:543.621071px;}
.x37{left:545.238259px;}
.x23{left:547.453102px;}
.x4e{left:548.455061px;}
.x47{left:551.056623px;}
.x39{left:552.199196px;}
.x4a{left:554.624977px;}
.x34{left:555.732404px;}
.x1e{left:568.511695px;}
.xd{left:611.208965px;}
.x24{left:615.849589px;}
.x14{left:617.853496px;}
.x49{left:625.359349px;}
.x2d{left:627.011693px;}
.x4f{left:644.484348px;}
.x1f{left:655.330056px;}
.x3c{left:664.066379px;}
.x51{left:703.265596px;}
.x30{left:705.990211px;}
.x41{left:707.220679px;}
.x9{left:713.478492px;}
.x25{left:721.089814px;}
.x20{left:723.726532px;}
@media print{
.v1{vertical-align:-1.125000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.875000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.049000pt;}
.ls3{letter-spacing:0.060917pt;}
.ls0{letter-spacing:0.060937pt;}
.ls2{letter-spacing:0.060957pt;}
.ws5{word-spacing:-35.583999pt;}
.ws1{word-spacing:-32.751562pt;}
.ws9{word-spacing:-26.687999pt;}
.ws0{word-spacing:-17.791999pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:242.428857pt;}
.ws7{word-spacing:319.484667pt;}
.ws6{word-spacing:345.596658pt;}
.ws4{word-spacing:356.284608pt;}
.ws3{word-spacing:1072.327105pt;}
._4{margin-left:-10.862508pt;}
._3{margin-left:-7.104837pt;}
._6{margin-left:-5.889007pt;}
._5{margin-left:-4.735859pt;}
._2{margin-left:-3.648033pt;}
._0{margin-left:-2.592961pt;}
._1{margin-left:-1.152481pt;}
._7{width:1.150888pt;}
.fs3{font-size:54.399999pt;}
.fs1{font-size:63.999997pt;}
.fs5{font-size:79.999997pt;}
.fs4{font-size:95.999996pt;}
.fs2{font-size:111.999995pt;}
.fs0{font-size:143.999994pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:11.015616pt;}
.y60{bottom:12.015615pt;}
.y136{bottom:15.015615pt;}
.y137{bottom:15.296865pt;}
.yc7{bottom:16.015615pt;}
.yc8{bottom:16.296865pt;}
.y15{bottom:18.999999pt;}
.yb0{bottom:19.999999pt;}
.y8b{bottom:24.015615pt;}
.y5f{bottom:34.015615pt;}
.yab{bottom:37.296864pt;}
.y1{bottom:37.544403pt;}
.yaa{bottom:38.015614pt;}
.y14{bottom:40.999998pt;}
.yc6{bottom:41.296864pt;}
.y26{bottom:41.999998pt;}
.yc5{bottom:42.015614pt;}
.y8a{bottom:47.015614pt;}
.y135{bottom:55.015614pt;}
.y5e{bottom:56.015614pt;}
.y25{bottom:63.999997pt;}
.y89{bottom:69.015613pt;}
.y142{bottom:74.015613pt;}
.y143{bottom:74.296863pt;}
.y1b{bottom:76.560017pt;}
.y5d{bottom:79.015613pt;}
.y166{bottom:85.999996pt;}
.y9b{bottom:86.999996pt;}
.y88{bottom:92.015612pt;}
.y5c{bottom:101.015612pt;}
.y165{bottom:107.999995pt;}
.y9a{bottom:108.999995pt;}
.y134{bottom:109.015611pt;}
.ya9{bottom:110.560015pt;}
.y1a{bottom:111.015611pt;}
.yc4{bottom:113.560015pt;}
.y87{bottom:114.015611pt;}
.y113{bottom:116.015611pt;}
.y114{bottom:116.296861pt;}
.y16f{bottom:116.560015pt;}
.yf7{bottom:121.560015pt;}
.y5b{bottom:124.015611pt;}
.y34{bottom:129.015611pt;}
.y35{bottom:129.296861pt;}
.y99{bottom:130.999995pt;}
.y160{bottom:131.999995pt;}
.y132{bottom:135.015610pt;}
.y133{bottom:135.296860pt;}
.y18{bottom:136.015610pt;}
.y19{bottom:136.296860pt;}
.y141{bottom:141.015610pt;}
.y112{bottom:141.296860pt;}
.y111{bottom:142.015610pt;}
.y5a{bottom:146.015610pt;}
.y16e{bottom:150.015610pt;}
.y159{bottom:151.015610pt;}
.y15a{bottom:151.296860pt;}
.y98{bottom:153.999994pt;}
.y33{bottom:154.296860pt;}
.y32{bottom:155.015610pt;}
.y86{bottom:159.015609pt;}
.y131{bottom:160.296859pt;}
.y130{bottom:161.015609pt;}
.ya8{bottom:167.015609pt;}
.y110{bottom:167.296859pt;}
.y59{bottom:168.015609pt;}
.y97{bottom:175.999993pt;}
.y16c{bottom:176.015609pt;}
.y16d{bottom:176.296859pt;}
.y158{bottom:177.015609pt;}
.ydb{bottom:180.015608pt;}
.ydc{bottom:180.296858pt;}
.y85{bottom:181.015608pt;}
.yf6{bottom:181.296858pt;}
.y12e{bottom:186.015608pt;}
.y12f{bottom:186.296858pt;}
.y58{bottom:191.015608pt;}
.ya7{bottom:192.015608pt;}
.y96{bottom:197.999992pt;}
.yde{bottom:198.999992pt;}
.y16b{bottom:201.015608pt;}
.y156{bottom:202.015608pt;}
.y157{bottom:202.296858pt;}
.y84{bottom:204.015607pt;}
.yf5{bottom:206.296857pt;}
.yf4{bottom:207.015607pt;}
.y17{bottom:207.560011pt;}
.y140{bottom:209.015607pt;}
.y12d{bottom:211.296857pt;}
.y12c{bottom:212.015607pt;}
.y57{bottom:213.015607pt;}
.yda{bottom:220.015607pt;}
.y95{bottom:220.999991pt;}
.y83{bottom:226.015607pt;}
.y31{bottom:226.560011pt;}
.y169{bottom:227.015607pt;}
.y16a{bottom:227.296857pt;}
.y155{bottom:228.015606pt;}
.yf2{bottom:232.015606pt;}
.yf3{bottom:232.296856pt;}
.y13e{bottom:234.015606pt;}
.y13f{bottom:234.296856pt;}
.y56{bottom:236.015606pt;}
.y10f{bottom:238.560010pt;}
.ya6{bottom:241.015606pt;}
.y16{bottom:242.015606pt;}
.y94{bottom:242.999990pt;}
.y82{bottom:248.015606pt;}
.y12b{bottom:250.015606pt;}
.y168{bottom:252.296855pt;}
.y167{bottom:253.015605pt;}
.y55{bottom:258.015605pt;}
.y30{bottom:260.015605pt;}
.yc3{bottom:263.560009pt;}
.y147{bottom:264.999989pt;}
.y93{bottom:265.999989pt;}
.y154{bottom:266.015605pt;}
.y81{bottom:271.015605pt;}
.yd9{bottom:275.015605pt;}
.y54{bottom:280.015604pt;}
.yf0{bottom:283.015604pt;}
.yf1{bottom:283.296854pt;}
.y92{bottom:287.999988pt;}
.y80{bottom:293.015604pt;}
.y10e{bottom:295.015604pt;}
.y129{bottom:297.015604pt;}
.y12a{bottom:297.296854pt;}
.yc2{bottom:298.015604pt;}
.yd8{bottom:300.015603pt;}
.y53{bottom:303.015603pt;}
.ya5{bottom:304.015603pt;}
.y13d{bottom:305.560007pt;}
.yee{bottom:309.015603pt;}
.yef{bottom:309.296853pt;}
.y91{bottom:309.999987pt;}
.y152{bottom:313.015603pt;}
.y153{bottom:313.296853pt;}
.y13{bottom:313.560007pt;}
.y7f{bottom:315.015603pt;}
.y10d{bottom:321.015603pt;}
.y127{bottom:323.015603pt;}
.y128{bottom:323.296853pt;}
.y164{bottom:324.560007pt;}
.y52{bottom:325.015602pt;}
.yd7{bottom:326.015602pt;}
.ya3{bottom:329.015602pt;}
.ya4{bottom:329.296852pt;}
.y2f{bottom:331.560006pt;}
.y90{bottom:332.999986pt;}
.yed{bottom:334.296852pt;}
.yec{bottom:335.015602pt;}
.y7e{bottom:338.015602pt;}
.y150{bottom:339.015602pt;}
.y151{bottom:339.296852pt;}
.y51{bottom:347.015602pt;}
.y126{bottom:348.296851pt;}
.y125{bottom:349.015601pt;}
.y8f{bottom:354.999985pt;}
.ya1{bottom:355.015601pt;}
.ya2{bottom:355.296851pt;}
.y7d{bottom:360.015601pt;}
.yeb{bottom:360.296851pt;}
.yc1{bottom:369.560005pt;}
.y12{bottom:370.015601pt;}
.y10b{bottom:373.015600pt;}
.y10c{bottom:373.296850pt;}
.yd6{bottom:375.015600pt;}
.y146{bottom:376.999984pt;}
.y8e{bottom:377.999984pt;}
.ya0{bottom:381.015600pt;}
.y7c{bottom:383.015600pt;}
.yea{bottom:385.296850pt;}
.ye9{bottom:386.015600pt;}
.y2e{bottom:388.015600pt;}
.y50{bottom:392.015600pt;}
.y11{bottom:395.015600pt;}
.y10a{bottom:399.296849pt;}
.y8d{bottom:399.999983pt;}
.y109{bottom:400.015599pt;}
.y7b{bottom:405.015599pt;}
.y14e{bottom:406.015599pt;}
.y14f{bottom:406.296849pt;}
.ye7{bottom:411.015599pt;}
.ye8{bottom:411.296849pt;}
.y4f{bottom:415.015599pt;}
.y124{bottom:420.560003pt;}
.y10{bottom:421.015598pt;}
.y145{bottom:421.999982pt;}
.yc0{bottom:426.015598pt;}
.y7a{bottom:427.015598pt;}
.y14c{bottom:432.015598pt;}
.y14d{bottom:432.296848pt;}
.y4e{bottom:437.015598pt;}
.ye6{bottom:437.296848pt;}
.yd5{bottom:445.015597pt;}
.y79{bottom:450.015597pt;}
.y9f{bottom:452.560001pt;}
.y123{bottom:454.015597pt;}
.y4d{bottom:459.015597pt;}
.y2d{bottom:459.560001pt;}
.yf{bottom:470.015596pt;}
.y108{bottom:471.560000pt;}
.y78{bottom:472.015596pt;}
.y4c{bottom:482.015596pt;}
.yd4{bottom:483.015596pt;}
.y122{bottom:492.015595pt;}
.y77{bottom:495.015595pt;}
.y163{bottom:496.015595pt;}
.ybf{bottom:497.559999pt;}
.y14b{bottom:503.559999pt;}
.y4b{bottom:504.015595pt;}
.y107{bottom:505.015595pt;}
.ye5{bottom:508.559999pt;}
.y76{bottom:517.015594pt;}
.y161{bottom:521.015594pt;}
.y162{bottom:521.296844pt;}
.yd3{bottom:522.015594pt;}
.y4a{bottom:527.015594pt;}
.y9e{bottom:531.015594pt;}
.ye{bottom:532.015594pt;}
.y14a{bottom:537.015594pt;}
.y2c{bottom:539.015594pt;}
.y121{bottom:539.296844pt;}
.y120{bottom:540.015593pt;}
.ye4{bottom:543.015593pt;}
.y49{bottom:549.015593pt;}
.y9d{bottom:557.015593pt;}
.yd{bottom:558.015593pt;}
.yd2{bottom:560.015593pt;}
.y75{bottom:562.015593pt;}
.y148{bottom:563.015593pt;}
.y149{bottom:563.296843pt;}
.y2b{bottom:564.015592pt;}
.y11e{bottom:565.015592pt;}
.y11f{bottom:565.296842pt;}
.y48{bottom:571.015592pt;}
.ybe{bottom:576.015592pt;}
.ye3{bottom:581.015592pt;}
.y74{bottom:584.015592pt;}
.y13b{bottom:586.015592pt;}
.y13c{bottom:586.296842pt;}
.y105{bottom:591.015591pt;}
.y106{bottom:591.296841pt;}
.y15f{bottom:592.559995pt;}
.y47{bottom:594.015591pt;}
.y9c{bottom:598.015591pt;}
.yd1{bottom:599.015591pt;}
.yc{bottom:600.015591pt;}
.y2a{bottom:605.296841pt;}
.y29{bottom:606.015591pt;}
.y73{bottom:607.015591pt;}
.y13a{bottom:611.296841pt;}
.y139{bottom:612.015590pt;}
.y46{bottom:616.015590pt;}
.y104{bottom:616.296840pt;}
.ybd{bottom:617.015590pt;}
.yb{bottom:625.015590pt;}
.ye2{bottom:628.015590pt;}
.y72{bottom:629.015590pt;}
.y27{bottom:631.015590pt;}
.y28{bottom:631.296840pt;}
.y144{bottom:634.559994pt;}
.y11d{bottom:636.559994pt;}
.yd0{bottom:637.015589pt;}
.y45{bottom:639.015589pt;}
.y102{bottom:642.015589pt;}
.y103{bottom:642.296839pt;}
.ybc{bottom:643.015589pt;}
.y138{bottom:650.015589pt;}
.ya{bottom:651.015589pt;}
.ye1{bottom:654.296839pt;}
.ye0{bottom:655.015589pt;}
.y44{bottom:661.015588pt;}
.ybb{bottom:669.015588pt;}
.y8c{bottom:669.559992pt;}
.y11c{bottom:671.015588pt;}
.y71{bottom:674.015588pt;}
.y9{bottom:676.015588pt;}
.y43{bottom:683.015588pt;}
.yba{bottom:694.015587pt;}
.y70{bottom:696.015587pt;}
.ydf{bottom:697.015587pt;}
.y8{bottom:702.015587pt;}
.y24{bottom:702.559991pt;}
.y42{bottom:706.015587pt;}
.y11b{bottom:709.015586pt;}
.y101{bottom:713.559990pt;}
.ycf{bottom:715.015586pt;}
.y6f{bottom:719.015586pt;}
.yb9{bottom:720.015586pt;}
.y7{bottom:728.015586pt;}
.y6e{bottom:741.015585pt;}
.yb8{bottom:746.015585pt;}
.y100{bottom:748.015585pt;}
.y41{bottom:751.015585pt;}
.yce{bottom:752.015585pt;}
.y119{bottom:756.015584pt;}
.y11a{bottom:756.296834pt;}
.y6d{bottom:763.015584pt;}
.ydd{bottom:768.559988pt;}
.y6{bottom:769.015584pt;}
.yb7{bottom:772.015584pt;}
.y40{bottom:773.015584pt;}
.y23{bottom:782.015583pt;}
.y118{bottom:782.296833pt;}
.y15e{bottom:784.015583pt;}
.y6c{bottom:786.015583pt;}
.y3f{bottom:795.015583pt;}
.yb6{bottom:798.015583pt;}
.ycd{bottom:802.015583pt;}
.y22{bottom:807.015582pt;}
.y117{bottom:807.296832pt;}
.y6b{bottom:808.015582pt;}
.y15c{bottom:809.015582pt;}
.y15d{bottom:809.296832pt;}
.y5{bottom:818.015582pt;}
.yb5{bottom:823.015582pt;}
.ycc{bottom:828.015581pt;}
.y6a{bottom:830.015581pt;}
.y21{bottom:833.015581pt;}
.yff{bottom:833.296831pt;}
.y3e{bottom:840.015581pt;}
.yb3{bottom:850.015581pt;}
.yb4{bottom:850.296831pt;}
.y69{bottom:853.015580pt;}
.ycb{bottom:854.015580pt;}
.yfd{bottom:859.015580pt;}
.yfe{bottom:859.296830pt;}
.y3d{bottom:862.015580pt;}
.y68{bottom:875.015580pt;}
.yb1{bottom:876.015579pt;}
.yb2{bottom:876.296829pt;}
.y15b{bottom:880.559983pt;}
.y4{bottom:881.015579pt;}
.yfb{bottom:884.015579pt;}
.yfc{bottom:884.296829pt;}
.y3c{bottom:885.015579pt;}
.y67{bottom:898.015579pt;}
.y20{bottom:904.559982pt;}
.y3b{bottom:907.015578pt;}
.y66{bottom:920.015578pt;}
.yca{bottom:925.559982pt;}
.y3a{bottom:930.015577pt;}
.y3{bottom:934.015577pt;}
.y116{bottom:939.015577pt;}
.y65{bottom:942.015577pt;}
.yaf{bottom:947.559981pt;}
.y39{bottom:952.015576pt;}
.yfa{bottom:955.559980pt;}
.y1f{bottom:961.015576pt;}
.y115{bottom:964.015576pt;}
.y64{bottom:965.015576pt;}
.y38{bottom:974.015575pt;}
.y2{bottom:977.015575pt;}
.y63{bottom:987.015575pt;}
.yf9{bottom:990.015575pt;}
.y37{bottom:997.015574pt;}
.y1e{bottom:1002.015574pt;}
.yae{bottom:1004.015574pt;}
.y62{bottom:1010.015574pt;}
.y36{bottom:1019.015574pt;}
.yf8{bottom:1028.015573pt;}
.y1c{bottom:1029.015573pt;}
.y1d{bottom:1029.296823pt;}
.yad{bottom:1030.015573pt;}
.yc9{bottom:1030.296823pt;}
.y61{bottom:1032.015573pt;}
.hd{height:41.490624pt;}
.h17{height:41.570312pt;}
.h1a{height:43.934374pt;}
.h9{height:44.226562pt;}
.h18{height:44.518749pt;}
.h14{height:45.658998pt;}
.h4{height:46.783998pt;}
.h15{height:46.999998pt;}
.h10{height:47.101562pt;}
.h8{height:47.999998pt;}
.h7{height:52.912499pt;}
.hb{height:55.787499pt;}
.h13{height:58.479998pt;}
.h6{height:69.999997pt;}
.h11{height:70.175997pt;}
.hc{height:70.999997pt;}
.h5{height:81.871997pt;}
.hf{height:91.999996pt;}
.ha{height:92.999996pt;}
.h3{height:105.263996pt;}
.h1c{height:159.999993pt;}
.h1b{height:204.999991pt;}
.h16{height:294.999988pt;}
.h12{height:316.999987pt;}
.he{height:415.999983pt;}
.h19{height:450.999981pt;}
.h2{height:1048.015572pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:718.171845pt;}
.w2{width:718.671842pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:5.468750pt;}
.x53{left:9.625000pt;}
.x3{left:12.296877pt;}
.x17{left:13.999999pt;}
.x21{left:24.437499pt;}
.x42{left:27.999999pt;}
.x2{left:31.999999pt;}
.x16{left:34.812499pt;}
.x1{left:36.999998pt;}
.x10{left:41.328123pt;}
.xf{left:48.156248pt;}
.x1a{left:53.171873pt;}
.x31{left:74.453122pt;}
.x5d{left:89.359371pt;}
.x3d{left:94.687496pt;}
.x62{left:97.062496pt;}
.x26{left:99.015621pt;}
.x35{left:100.312496pt;}
.x60{left:127.874995pt;}
.x5f{left:136.765619pt;}
.x18{left:148.703119pt;}
.x32{left:151.624994pt;}
.x58{left:153.062494pt;}
.x3e{left:160.484368pt;}
.x4b{left:163.187493pt;}
.x45{left:168.671873pt;}
.xa{left:172.593743pt;}
.x27{left:176.187493pt;}
.x11{left:178.499993pt;}
.x54{left:189.749992pt;}
.x33{left:202.374992pt;}
.x5b{left:204.031241pt;}
.x3a{left:222.718741pt;}
.x46{left:226.546871pt;}
.x44{left:232.718740pt;}
.x57{left:238.703120pt;}
.x1b{left:241.078120pt;}
.xe{left:244.874990pt;}
.x28{left:253.359369pt;}
.x43{left:255.249989pt;}
.x4{left:268.593739pt;}
.x22{left:278.609368pt;}
.x48{left:282.859368pt;}
.xb{left:290.703118pt;}
.x5a{left:294.437488pt;}
.x12{left:296.609368pt;}
.x38{left:308.359367pt;}
.x29{left:314.156237pt;}
.x1c{left:318.249987pt;}
.x15{left:323.140617pt;}
.x19{left:328.765616pt;}
.x3b{left:332.249986pt;}
.x59{left:360.234365pt;}
.x5c{left:361.749985pt;}
.x6{left:363.203115pt;}
.x3f{left:364.515615pt;}
.x2a{left:366.765615pt;}
.x52{left:374.734364pt;}
.x2e{left:376.171864pt;}
.x4d{left:385.781234pt;}
.x55{left:400.328113pt;}
.x4c{left:402.593733pt;}
.xc{left:416.999983pt;}
.x1d{left:419.984363pt;}
.x13{left:422.906232pt;}
.x2b{left:427.562482pt;}
.x2f{left:428.781232pt;}
.x8{left:433.124982pt;}
.x56{left:442.562482pt;}
.x63{left:461.562481pt;}
.x50{left:468.671860pt;}
.x36{left:469.906230pt;}
.x5{left:472.046860pt;}
.x40{left:474.046860pt;}
.x2c{left:480.171860pt;}
.x5e{left:481.953110pt;}
.x61{left:483.218730pt;}
.x37{left:484.656230pt;}
.x23{left:486.624980pt;}
.x4e{left:487.515610pt;}
.x47{left:489.828110pt;}
.x39{left:490.843730pt;}
.x4a{left:492.999979pt;}
.x34{left:493.984359pt;}
.x1e{left:505.343729pt;}
.xd{left:543.296857pt;}
.x24{left:547.421857pt;}
.x14{left:549.203107pt;}
.x49{left:555.874977pt;}
.x2d{left:557.343727pt;}
.x4f{left:572.874976pt;}
.x1f{left:582.515606pt;}
.x3c{left:590.281225pt;}
.x51{left:625.124974pt;}
.x30{left:627.546854pt;}
.x41{left:628.640604pt;}
.x9{left:634.203104pt;}
.x25{left:640.968723pt;}
.x20{left:643.312473pt;}
}




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