
    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_7d80d6ce28d9b6e699216512.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_f6daab555c13c4c4ad44f1cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_c5519c826821be5691457998.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_3cefef4a4ae4d0d8a82eca57.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_ad60f792731498b9bafda1e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_8b120ea95663169c131ec4ac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_040482d2c3d6bc6c9fb16561.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187012;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_85189b7200f2042a62bbba7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_db0df22d2ef873a9be28d5f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7a89f9adfc2886c4fbe056ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_35d89afafff1fcb4085e02eb.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.199232px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.103183px;}
.ls15{letter-spacing:-3.208058px;}
.ls17{letter-spacing:-0.712338px;}
.ls12{letter-spacing:-0.706037px;}
.ls16{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.096000px;}
.ls7{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.312000px;}
.ls13{letter-spacing:0.396705px;}
.ls3{letter-spacing:0.408000px;}
.ls8{letter-spacing:0.516000px;}
.ls6{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.957563px;}
.lsf{letter-spacing:1.335299px;}
.ls11{letter-spacing:2.400000px;}
.lsb{letter-spacing:4.800000px;}
.ls9{letter-spacing:8.400000px;}
.ls4{letter-spacing:13.380000px;}
.lse{letter-spacing:14.400000px;}
.ls0{letter-spacing:28.800000px;}
.ls10{letter-spacing:31.200000px;}
.lsc{letter-spacing:35.700000px;}
.ls5{letter-spacing:53.700000px;}
.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;}
}
.ws2{word-spacing:-18.408000px;}
.ws1{word-spacing:-18.312000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.472000px;}
.wsd{word-spacing:-14.100000px;}
.ws5{word-spacing:-14.016000px;}
.ws4{word-spacing:-13.500000px;}
.wse{word-spacing:-13.404000px;}
.wsc{word-spacing:-11.905319px;}
.ws6{word-spacing:-9.747799px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:12.846206px;}
.ws7{word-spacing:16.154432px;}
.ws9{word-spacing:17.019323px;}
.wsa{word-spacing:27.552600px;}
._10{margin-left:-28.758000px;}
._21{margin-left:-3.225890px;}
._20{margin-left:-2.103842px;}
._0{margin-left:-1.008000px;}
._1{width:1.224000px;}
._2{width:2.430000px;}
._8{width:3.960000px;}
._9{width:5.022000px;}
._6{width:6.798000px;}
._5{width:7.848000px;}
._7{width:9.000000px;}
._17{width:10.206000px;}
._4{width:11.304000px;}
._a{width:12.312000px;}
._3{width:13.392000px;}
._12{width:14.832000px;}
._b{width:15.846000px;}
._19{width:16.980000px;}
._1b{width:19.560000px;}
._1d{width:20.688000px;}
._e{width:22.176000px;}
._c{width:23.616000px;}
._d{width:24.840000px;}
._18{width:26.250000px;}
._11{width:27.984000px;}
._f{width:29.088000px;}
._1c{width:30.168000px;}
._1a{width:31.392000px;}
._22{width:32.466000px;}
._15{width:34.200000px;}
._14{width:35.280000px;}
._13{width:36.360000px;}
._23{width:37.383842px;}
._26{width:39.224158px;}
._1f{width:40.896000px;}
._1e{width:42.264000px;}
._16{width:53.700000px;}
._24{width:54.864000px;}
._25{width:56.088000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.368441px;}
.fs6{font-size:35.064025px;}
.fs3{font-size:36.000000px;}
.fs9{font-size:42.824888px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:97.693517px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:0.518496px;}
.ya4{bottom:0.524012px;}
.yac{bottom:0.529528px;}
.ya9{bottom:0.551592px;}
.yfa{bottom:2.115855px;}
.yfc{bottom:3.561690px;}
.yfe{bottom:3.566979px;}
.y102{bottom:3.568741px;}
.yb6{bottom:5.813777px;}
.yb4{bottom:7.688639px;}
.y69{bottom:9.000000px;}
.y107{bottom:12.570000px;}
.y6c{bottom:12.585000px;}
.y12e{bottom:12.615000px;}
.yf2{bottom:14.085000px;}
.y104{bottom:14.145000px;}
.yb3{bottom:18.297954px;}
.yb2{bottom:28.908373px;}
.y106{bottom:29.385000px;}
.y6b{bottom:29.415000px;}
.y68{bottom:31.500000px;}
.yb1{bottom:39.517689px;}
.yf1{bottom:45.585000px;}
.y2{bottom:46.537500px;}
.yb0{bottom:50.128107px;}
.y12c{bottom:54.600000px;}
.y1{bottom:67.837500px;}
.yf0{bottom:77.085000px;}
.y2b{bottom:88.537500px;}
.ya2{bottom:88.837500px;}
.y4a{bottom:91.537500px;}
.ya1{bottom:91.837500px;}
.y2a{bottom:105.337500px;}
.y49{bottom:105.637500px;}
.ya0{bottom:105.937500px;}
.y129{bottom:106.237500px;}
.yf6{bottom:108.337500px;}
.y48{bottom:108.637500px;}
.y9f{bottom:108.937500px;}
.yf8{bottom:118.845000px;}
.yf5{bottom:122.137500px;}
.y29{bottom:122.437500px;}
.y47{bottom:122.737500px;}
.yf4{bottom:125.137500px;}
.y28{bottom:125.437500px;}
.y46{bottom:125.737500px;}
.y82{bottom:135.337500px;}
.yf3{bottom:139.537500px;}
.y27{bottom:139.837500px;}
.y64{bottom:140.137500px;}
.y45{bottom:142.837500px;}
.y9e{bottom:156.930000px;}
.y44{bottom:157.245000px;}
.y81{bottom:157.830000px;}
.y9d{bottom:173.745000px;}
.yce{bottom:176.145000px;}
.y9c{bottom:176.745000px;}
.y80{bottom:180.375000px;}
.y43{bottom:188.175000px;}
.y9b{bottom:191.175000px;}
.y116{bottom:194.175000px;}
.ycd{bottom:198.675000px;}
.y7f{bottom:202.875000px;}
.y42{bottom:210.675000px;}
.y115{bottom:216.675000px;}
.ycc{bottom:221.175000px;}
.y25{bottom:222.675000px;}
.yef{bottom:224.490000px;}
.y7e{bottom:225.375000px;}
.y26{bottom:227.175000px;}
.y9a{bottom:228.075000px;}
.y114{bottom:239.175000px;}
.y41{bottom:242.175000px;}
.ycb{bottom:243.675000px;}
.y7d{bottom:247.875000px;}
.y98{bottom:250.575000px;}
.y24{bottom:253.875000px;}
.y99{bottom:255.075000px;}
.y67{bottom:261.345000px;}
.y113{bottom:261.675000px;}
.y40{bottom:264.675000px;}
.y7c{bottom:265.290000px;}
.yca{bottom:266.175000px;}
.y12b{bottom:269.745000px;}
.y128{bottom:270.375000px;}
.y97{bottom:273.075000px;}
.y112{bottom:284.175000px;}
.y23{bottom:285.375000px;}
.yc9{bottom:288.675000px;}
.y7b{bottom:291.075000px;}
.y127{bottom:292.575000px;}
.y66{bottom:292.845000px;}
.y3f{bottom:294.675000px;}
.y96{bottom:295.575000px;}
.y111{bottom:306.675000px;}
.y22{bottom:307.875000px;}
.y3e{bottom:316.875000px;}
.yc7{bottom:320.175000px;}
.yc8{bottom:324.675000px;}
.y95{bottom:327.075000px;}
.y138{bottom:330.075000px;}
.y21{bottom:330.375000px;}
.yee{bottom:333.075000px;}
.y110{bottom:336.975000px;}
.yc6{bottom:342.675000px;}
.y94{bottom:349.620000px;}
.y20{bottom:352.920000px;}
.yed{bottom:355.620000px;}
.y10f{bottom:359.220000px;}
.y137{bottom:359.820000px;}
.yc5{bottom:364.320000px;}
.y93{bottom:372.105000px;}
.y1f{bottom:375.420000px;}
.y136{bottom:376.620000px;}
.yec{bottom:378.105000px;}
.yc4{bottom:385.920000px;}
.y92{bottom:394.620000px;}
.y1e{bottom:397.905000px;}
.y135{bottom:398.820000px;}
.yeb{bottom:400.620000px;}
.yc3{bottom:407.820000px;}
.y1d{bottom:420.420000px;}
.yea{bottom:423.120000px;}
.y91{bottom:426.120000px;}
.yc2{bottom:429.720000px;}
.y63{bottom:443.820000px;}
.ye9{bottom:445.620000px;}
.y1c{bottom:451.920000px;}
.yc1{bottom:452.205000px;}
.y90{bottom:456.120000px;}
.y62{bottom:466.320000px;}
.ye8{bottom:468.120000px;}
.y1b{bottom:474.420000px;}
.ybf{bottom:474.705000px;}
.y8f{bottom:478.320000px;}
.yc0{bottom:479.205000px;}
.y61{bottom:488.820000px;}
.ye7{bottom:490.620000px;}
.y7a{bottom:496.905000px;}
.ybe{bottom:497.220000px;}
.y1a{bottom:505.905000px;}
.y125{bottom:511.005000px;}
.y60{bottom:511.320000px;}
.ye6{bottom:513.120000px;}
.y126{bottom:515.550000px;}
.y79{bottom:519.450000px;}
.y19{bottom:528.450000px;}
.ybd{bottom:528.750000px;}
.y124{bottom:533.550000px;}
.y5f{bottom:533.850000px;}
.ye5{bottom:535.650000px;}
.y78{bottom:541.950000px;}
.ybc{bottom:551.250000px;}
.y123{bottom:555.150000px;}
.y5e{bottom:556.350000px;}
.ye4{bottom:558.150000px;}
.y18{bottom:559.950000px;}
.y77{bottom:564.450000px;}
.ybb{bottom:573.750000px;}
.y122{bottom:576.750000px;}
.y5d{bottom:578.850000px;}
.y17{bottom:582.450000px;}
.y10e{bottom:583.350000px;}
.y76{bottom:586.950000px;}
.y3d{bottom:588.150000px;}
.ye3{bottom:589.650000px;}
.yba{bottom:596.250000px;}
.y121{bottom:598.350000px;}
.y5c{bottom:601.350000px;}
.y16{bottom:604.950000px;}
.y3b{bottom:610.650000px;}
.ye2{bottom:612.150000px;}
.y3c{bottom:615.150000px;}
.y75{bottom:618.450000px;}
.yb9{bottom:618.750000px;}
.y120{bottom:619.950000px;}
.y5b{bottom:623.850000px;}
.y3a{bottom:633.150000px;}
.ye1{bottom:634.650000px;}
.y15{bottom:636.450000px;}
.y74{bottom:640.950000px;}
.y11f{bottom:641.550000px;}
.y5a{bottom:646.350000px;}
.yb8{bottom:649.050000px;}
.y39{bottom:655.650000px;}
.y11e{bottom:663.150000px;}
.y73{bottom:663.450000px;}
.ydf{bottom:666.150000px;}
.y14{bottom:667.950000px;}
.y10d{bottom:668.850000px;}
.ye0{bottom:670.650000px;}
.yb7{bottom:671.250000px;}
.y8e{bottom:674.250000px;}
.y59{bottom:676.650000px;}
.y38{bottom:678.150000px;}
.yaf{bottom:681.721968px;}
.y11d{bottom:684.780000px;}
.y72{bottom:685.995000px;}
.ya3{bottom:686.489373px;}
.yde{bottom:688.695000px;}
.y13{bottom:690.495000px;}
.y10c{bottom:691.380000px;}
.y8d{bottom:696.795000px;}
.y58{bottom:698.895000px;}
.y37{bottom:700.695000px;}
.y11c{bottom:706.380000px;}
.ydd{bottom:711.195000px;}
.y12{bottom:712.995000px;}
.y10b{bottom:713.895000px;}
.y71{bottom:717.495000px;}
.y134{bottom:718.095000px;}
.y8c{bottom:719.280000px;}
.y36{bottom:723.195000px;}
.y11b{bottom:727.995000px;}
.ydb{bottom:733.695000px;}
.y10a{bottom:736.380000px;}
.ydc{bottom:738.195000px;}
.y70{bottom:739.995000px;}
.y133{bottom:740.580000px;}
.y8b{bottom:741.780000px;}
.y11{bottom:744.495000px;}
.y34{bottom:745.695000px;}
.y11a{bottom:749.595000px;}
.y35{bottom:750.195000px;}
.yda{bottom:756.195000px;}
.y109{bottom:758.880000px;}
.y6f{bottom:762.480000px;}
.y132{bottom:763.095000px;}
.y10{bottom:766.995000px;}
.y32{bottom:768.195000px;}
.y119{bottom:772.080000px;}
.y33{bottom:772.695000px;}
.y8a{bottom:773.295000px;}
.yd9{bottom:777.795000px;}
.ya7{bottom:779.083976px;}
.y108{bottom:781.395000px;}
.y6e{bottom:784.995000px;}
.y131{bottom:785.580000px;}
.yaa{bottom:789.423012px;}
.y30{bottom:790.695000px;}
.y31{bottom:795.195000px;}
.yf{bottom:798.495000px;}
.y105{bottom:798.810000px;}
.yd8{bottom:800.295000px;}
.y118{bottom:802.380000px;}
.y89{bottom:804.795000px;}
.y6d{bottom:807.495000px;}
.y130{bottom:808.080000px;}
.y2f{bottom:821.295000px;}
.yae{bottom:823.643764px;}
.y117{bottom:824.580000px;}
.y6a{bottom:824.910000px;}
.y88{bottom:827.295000px;}
.yb5{bottom:827.637288px;}
.ye{bottom:829.980000px;}
.y12f{bottom:830.580000px;}
.yd6{bottom:831.795000px;}
.ya8{bottom:833.451064px;}
.yd7{bottom:836.295000px;}
.yad{bottom:838.249913px;}
.yf7{bottom:841.380000px;}
.y12d{bottom:848.010000px;}
.y87{bottom:849.825000px;}
.yd{bottom:852.525000px;}
.y2e{bottom:853.125000px;}
.yd5{bottom:854.325000px;}
.y65{bottom:867.525000px;}
.yab{bottom:875.118305px;}
.yd4{bottom:875.925000px;}
.y86{bottom:881.325000px;}
.yc{bottom:884.025000px;}
.y12a{bottom:890.625000px;}
.y101{bottom:896.942522px;}
.yd3{bottom:897.525000px;}
.y2d{bottom:903.825000px;}
.yb{bottom:906.525000px;}
.y57{bottom:908.325000px;}
.y103{bottom:914.780932px;}
.yd2{bottom:919.125000px;}
.y2c{bottom:926.025000px;}
.y56{bottom:926.325000px;}
.ya{bottom:929.025000px;}
.yd1{bottom:940.725000px;}
.y55{bottom:948.825000px;}
.y9{bottom:951.525000px;}
.yfd{bottom:969.706742px;}
.y54{bottom:971.325000px;}
.y85{bottom:975.825000px;}
.ya5{bottom:981.774084px;}
.y8{bottom:983.025000px;}
.y53{bottom:993.825000px;}
.y7{bottom:1013.625000px;}
.y51{bottom:1016.325000px;}
.y52{bottom:1020.870000px;}
.y100{bottom:1023.221984px;}
.y50{bottom:1038.870000px;}
.y6{bottom:1044.870000px;}
.y4f{bottom:1061.370000px;}
.y84{bottom:1070.370000px;}
.yff{bottom:1075.636980px;}
.y5{bottom:1076.370000px;}
.yd0{bottom:1083.870000px;}
.y4e{bottom:1092.870000px;}
.ycf{bottom:1106.370000px;}
.y4{bottom:1107.870000px;}
.y4d{bottom:1115.370000px;}
.yfb{bottom:1129.150457px;}
.y4c{bottom:1137.870000px;}
.y3{bottom:1139.955000px;}
.y83{bottom:1142.370000px;}
.yf9{bottom:1158.049502px;}
.y4b{bottom:1160.370000px;}
.hf{height:10.609757px;}
.h18{height:12.464850px;}
.h1b{height:13.918442px;}
.h1a{height:13.918443px;}
.he{height:25.785000px;}
.h14{height:30.230537px;}
.h1c{height:31.198600px;}
.h7{height:32.572266px;}
.h10{height:36.570682px;}
.h13{height:37.563548px;}
.h12{height:37.673866px;}
.h1d{height:42.585000px;}
.hc{height:42.607500px;}
.h6{height:43.429688px;}
.h19{height:44.665020px;}
.h8{height:48.858398px;}
.h9{height:52.242188px;}
.h4{height:52.488281px;}
.h11{height:60.213962px;}
.h2{height:61.031250px;}
.h3{height:65.144531px;}
.h15{height:67.832119px;}
.h1{height:70.664062px;}
.h16{height:94.485000px;}
.hb{height:108.574219px;}
.hd{height:169.230000px;}
.h1e{height:287.130000px;}
.ha{height:310.230000px;}
.h17{height:336.375000px;}
.h5{height:1262.988660px;}
.h0{height:1263.000000px;}
.wb{width:11.600572px;}
.wa{width:11.627945px;}
.wc{width:11.874299px;}
.wf{width:17.401621px;}
.w9{width:25.335123px;}
.we{width:30.341052px;}
.w8{width:31.408590px;}
.w13{width:48.626334px;}
.w12{width:60.375062px;}
.w11{width:60.419250px;}
.w10{width:80.604366px;}
.wd{width:180.244091px;}
.w5{width:327.102000px;}
.w4{width:327.105000px;}
.w3{width:327.120000px;}
.w7{width:654.207000px;}
.w6{width:654.225000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:15.567431px;}
.x4e{left:53.992500px;}
.x50{left:57.600000px;}
.x42{left:59.400000px;}
.x21{left:60.900000px;}
.x43{left:72.900000px;}
.x20{left:82.837500px;}
.x1f{left:100.837500px;}
.x51{left:102.045000px;}
.x41{left:113.137500px;}
.x4f{left:117.937500px;}
.x1b{left:119.437500px;}
.x2{left:127.537500px;}
.x7{left:132.037500px;}
.x28{left:136.537500px;}
.x3{left:138.337500px;}
.x8{left:148.837500px;}
.x1c{left:163.537500px;}
.xf{left:193.556250px;}
.x10{left:199.575000px;}
.x37{left:213.056250px;}
.x31{left:220.511241px;}
.x38{left:225.075000px;}
.x35{left:233.756250px;}
.x47{left:237.375000px;}
.x36{left:245.775000px;}
.x34{left:251.475000px;}
.xa{left:266.175000px;}
.x1d{left:267.967500px;}
.x14{left:274.875000px;}
.x52{left:296.505000px;}
.x4c{left:311.520000px;}
.x53{left:318.405000px;}
.x4a{left:328.601250px;}
.x4b{left:340.620000px;}
.x49{left:342.120000px;}
.x6{left:343.620000px;}
.x4{left:350.201250px;}
.x5{left:356.205000px;}
.x26{left:361.620000px;}
.x1a{left:366.405000px;}
.x11{left:406.886250px;}
.x12{left:412.905000px;}
.xd{left:441.731250px;}
.x1e{left:446.550000px;}
.xe{left:447.750000px;}
.x30{left:461.431962px;}
.x23{left:463.631250px;}
.xb{left:469.331250px;}
.xc{left:475.350000px;}
.x17{left:477.131250px;}
.x18{left:483.150000px;}
.x27{left:490.050000px;}
.x2f{left:496.534778px;}
.x22{left:511.057500px;}
.x25{left:521.550000px;}
.x15{left:527.531250px;}
.x16{left:533.550000px;}
.x3a{left:540.176250px;}
.x44{left:549.476250px;}
.x29{left:551.937226px;}
.x2a{left:557.499369px;}
.x45{left:561.495000px;}
.x2e{left:562.776836px;}
.x2d{left:572.269706px;}
.x19{left:574.095000px;}
.x24{left:580.380000px;}
.x3d{left:593.154891px;}
.x2c{left:595.492748px;}
.x40{left:599.560399px;}
.x13{left:605.595000px;}
.x39{left:608.295000px;}
.x9{left:613.080000px;}
.x2b{left:623.183023px;}
.x46{left:639.495000px;}
.x3f{left:646.815133px;}
.x48{left:649.980000px;}
.x33{left:689.025000px;}
.x3e{left:690.490633px;}
.x3b{left:695.306250px;}
.x3c{left:707.325000px;}
.x4d{left:747.825000px;}
.x1{left:756.825000px;}
@media print{
.v1{vertical-align:-2.843762pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.980608pt;}
.ls15{letter-spacing:-2.851607pt;}
.ls17{letter-spacing:-0.633189pt;}
.ls12{letter-spacing:-0.627589pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.277333pt;}
.ls13{letter-spacing:0.352626pt;}
.ls3{letter-spacing:0.362667pt;}
.ls8{letter-spacing:0.458667pt;}
.ls6{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.851167pt;}
.lsf{letter-spacing:1.186932pt;}
.ls11{letter-spacing:2.133333pt;}
.lsb{letter-spacing:4.266667pt;}
.ls9{letter-spacing:7.466667pt;}
.ls4{letter-spacing:11.893333pt;}
.lse{letter-spacing:12.800000pt;}
.ls0{letter-spacing:25.600000pt;}
.ls10{letter-spacing:27.733333pt;}
.lsc{letter-spacing:31.733333pt;}
.ls5{letter-spacing:47.733333pt;}
.ws2{word-spacing:-16.362667pt;}
.ws1{word-spacing:-16.277333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.530667pt;}
.wsd{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.458667pt;}
.ws4{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.914667pt;}
.wsc{word-spacing:-10.582506pt;}
.ws6{word-spacing:-8.664710pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:11.418850pt;}
.ws7{word-spacing:14.359496pt;}
.ws9{word-spacing:15.128287pt;}
.wsa{word-spacing:24.491200pt;}
._10{margin-left:-25.562667pt;}
._21{margin-left:-2.867458pt;}
._20{margin-left:-1.870081pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.088000pt;}
._2{width:2.160000pt;}
._8{width:3.520000pt;}
._9{width:4.464000pt;}
._6{width:6.042667pt;}
._5{width:6.976000pt;}
._7{width:8.000000pt;}
._17{width:9.072000pt;}
._4{width:10.048000pt;}
._a{width:10.944000pt;}
._3{width:11.904000pt;}
._12{width:13.184000pt;}
._b{width:14.085333pt;}
._19{width:15.093333pt;}
._1b{width:17.386667pt;}
._1d{width:18.389333pt;}
._e{width:19.712000pt;}
._c{width:20.992000pt;}
._d{width:22.080000pt;}
._18{width:23.333333pt;}
._11{width:24.874667pt;}
._f{width:25.856000pt;}
._1c{width:26.816000pt;}
._1a{width:27.904000pt;}
._22{width:28.858667pt;}
._15{width:30.400000pt;}
._14{width:31.360000pt;}
._13{width:32.320000pt;}
._23{width:33.230081pt;}
._26{width:34.865919pt;}
._1f{width:36.352000pt;}
._1e{width:37.568000pt;}
._16{width:47.733333pt;}
._24{width:48.768000pt;}
._25{width:49.856000pt;}
.fs7{font-size:21.660836pt;}
.fs6{font-size:31.168022pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:38.066567pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:86.838681pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:0.460886pt;}
.ya4{bottom:0.465789pt;}
.yac{bottom:0.470692pt;}
.ya9{bottom:0.490304pt;}
.yfa{bottom:1.880760pt;}
.yfc{bottom:3.165947pt;}
.yfe{bottom:3.170648pt;}
.y102{bottom:3.172214pt;}
.yb6{bottom:5.167802pt;}
.yb4{bottom:6.834346pt;}
.y69{bottom:8.000000pt;}
.y107{bottom:11.173333pt;}
.y6c{bottom:11.186667pt;}
.y12e{bottom:11.213333pt;}
.yf2{bottom:12.520000pt;}
.y104{bottom:12.573333pt;}
.yb3{bottom:16.264848pt;}
.yb2{bottom:25.696332pt;}
.y106{bottom:26.120000pt;}
.y6b{bottom:26.146667pt;}
.y68{bottom:28.000000pt;}
.yb1{bottom:35.126834pt;}
.yf1{bottom:40.520000pt;}
.y2{bottom:41.366667pt;}
.yb0{bottom:44.558318pt;}
.y12c{bottom:48.533333pt;}
.y1{bottom:60.300000pt;}
.yf0{bottom:68.520000pt;}
.y2b{bottom:78.700000pt;}
.ya2{bottom:78.966667pt;}
.y4a{bottom:81.366667pt;}
.ya1{bottom:81.633333pt;}
.y2a{bottom:93.633333pt;}
.y49{bottom:93.900000pt;}
.ya0{bottom:94.166667pt;}
.y129{bottom:94.433333pt;}
.yf6{bottom:96.300000pt;}
.y48{bottom:96.566667pt;}
.y9f{bottom:96.833333pt;}
.yf8{bottom:105.640000pt;}
.yf5{bottom:108.566667pt;}
.y29{bottom:108.833333pt;}
.y47{bottom:109.100000pt;}
.yf4{bottom:111.233333pt;}
.y28{bottom:111.500000pt;}
.y46{bottom:111.766667pt;}
.y82{bottom:120.300000pt;}
.yf3{bottom:124.033333pt;}
.y27{bottom:124.300000pt;}
.y64{bottom:124.566667pt;}
.y45{bottom:126.966667pt;}
.y9e{bottom:139.493333pt;}
.y44{bottom:139.773333pt;}
.y81{bottom:140.293333pt;}
.y9d{bottom:154.440000pt;}
.yce{bottom:156.573333pt;}
.y9c{bottom:157.106667pt;}
.y80{bottom:160.333333pt;}
.y43{bottom:167.266667pt;}
.y9b{bottom:169.933333pt;}
.y116{bottom:172.600000pt;}
.ycd{bottom:176.600000pt;}
.y7f{bottom:180.333333pt;}
.y42{bottom:187.266667pt;}
.y115{bottom:192.600000pt;}
.ycc{bottom:196.600000pt;}
.y25{bottom:197.933333pt;}
.yef{bottom:199.546667pt;}
.y7e{bottom:200.333333pt;}
.y26{bottom:201.933333pt;}
.y9a{bottom:202.733333pt;}
.y114{bottom:212.600000pt;}
.y41{bottom:215.266667pt;}
.ycb{bottom:216.600000pt;}
.y7d{bottom:220.333333pt;}
.y98{bottom:222.733333pt;}
.y24{bottom:225.666667pt;}
.y99{bottom:226.733333pt;}
.y67{bottom:232.306667pt;}
.y113{bottom:232.600000pt;}
.y40{bottom:235.266667pt;}
.y7c{bottom:235.813333pt;}
.yca{bottom:236.600000pt;}
.y12b{bottom:239.773333pt;}
.y128{bottom:240.333333pt;}
.y97{bottom:242.733333pt;}
.y112{bottom:252.600000pt;}
.y23{bottom:253.666667pt;}
.yc9{bottom:256.600000pt;}
.y7b{bottom:258.733333pt;}
.y127{bottom:260.066667pt;}
.y66{bottom:260.306667pt;}
.y3f{bottom:261.933333pt;}
.y96{bottom:262.733333pt;}
.y111{bottom:272.600000pt;}
.y22{bottom:273.666667pt;}
.y3e{bottom:281.666667pt;}
.yc7{bottom:284.600000pt;}
.yc8{bottom:288.600000pt;}
.y95{bottom:290.733333pt;}
.y138{bottom:293.400000pt;}
.y21{bottom:293.666667pt;}
.yee{bottom:296.066667pt;}
.y110{bottom:299.533333pt;}
.yc6{bottom:304.600000pt;}
.y94{bottom:310.773333pt;}
.y20{bottom:313.706667pt;}
.yed{bottom:316.106667pt;}
.y10f{bottom:319.306667pt;}
.y137{bottom:319.840000pt;}
.yc5{bottom:323.840000pt;}
.y93{bottom:330.760000pt;}
.y1f{bottom:333.706667pt;}
.y136{bottom:334.773333pt;}
.yec{bottom:336.093333pt;}
.yc4{bottom:343.040000pt;}
.y92{bottom:350.773333pt;}
.y1e{bottom:353.693333pt;}
.y135{bottom:354.506667pt;}
.yeb{bottom:356.106667pt;}
.yc3{bottom:362.506667pt;}
.y1d{bottom:373.706667pt;}
.yea{bottom:376.106667pt;}
.y91{bottom:378.773333pt;}
.yc2{bottom:381.973333pt;}
.y63{bottom:394.506667pt;}
.ye9{bottom:396.106667pt;}
.y1c{bottom:401.706667pt;}
.yc1{bottom:401.960000pt;}
.y90{bottom:405.440000pt;}
.y62{bottom:414.506667pt;}
.ye8{bottom:416.106667pt;}
.y1b{bottom:421.706667pt;}
.ybf{bottom:421.960000pt;}
.y8f{bottom:425.173333pt;}
.yc0{bottom:425.960000pt;}
.y61{bottom:434.506667pt;}
.ye7{bottom:436.106667pt;}
.y7a{bottom:441.693333pt;}
.ybe{bottom:441.973333pt;}
.y1a{bottom:449.693333pt;}
.y125{bottom:454.226667pt;}
.y60{bottom:454.506667pt;}
.ye6{bottom:456.106667pt;}
.y126{bottom:458.266667pt;}
.y79{bottom:461.733333pt;}
.y19{bottom:469.733333pt;}
.ybd{bottom:470.000000pt;}
.y124{bottom:474.266667pt;}
.y5f{bottom:474.533333pt;}
.ye5{bottom:476.133333pt;}
.y78{bottom:481.733333pt;}
.ybc{bottom:490.000000pt;}
.y123{bottom:493.466667pt;}
.y5e{bottom:494.533333pt;}
.ye4{bottom:496.133333pt;}
.y18{bottom:497.733333pt;}
.y77{bottom:501.733333pt;}
.ybb{bottom:510.000000pt;}
.y122{bottom:512.666667pt;}
.y5d{bottom:514.533333pt;}
.y17{bottom:517.733333pt;}
.y10e{bottom:518.533333pt;}
.y76{bottom:521.733333pt;}
.y3d{bottom:522.800000pt;}
.ye3{bottom:524.133333pt;}
.yba{bottom:530.000000pt;}
.y121{bottom:531.866667pt;}
.y5c{bottom:534.533333pt;}
.y16{bottom:537.733333pt;}
.y3b{bottom:542.800000pt;}
.ye2{bottom:544.133333pt;}
.y3c{bottom:546.800000pt;}
.y75{bottom:549.733333pt;}
.yb9{bottom:550.000000pt;}
.y120{bottom:551.066667pt;}
.y5b{bottom:554.533333pt;}
.y3a{bottom:562.800000pt;}
.ye1{bottom:564.133333pt;}
.y15{bottom:565.733333pt;}
.y74{bottom:569.733333pt;}
.y11f{bottom:570.266667pt;}
.y5a{bottom:574.533333pt;}
.yb8{bottom:576.933333pt;}
.y39{bottom:582.800000pt;}
.y11e{bottom:589.466667pt;}
.y73{bottom:589.733333pt;}
.ydf{bottom:592.133333pt;}
.y14{bottom:593.733333pt;}
.y10d{bottom:594.533333pt;}
.ye0{bottom:596.133333pt;}
.yb7{bottom:596.666667pt;}
.y8e{bottom:599.333333pt;}
.y59{bottom:601.466667pt;}
.y38{bottom:602.800000pt;}
.yaf{bottom:605.975082pt;}
.y11d{bottom:608.693333pt;}
.y72{bottom:609.773333pt;}
.ya3{bottom:610.212776pt;}
.yde{bottom:612.173333pt;}
.y13{bottom:613.773333pt;}
.y10c{bottom:614.560000pt;}
.y8d{bottom:619.373333pt;}
.y58{bottom:621.240000pt;}
.y37{bottom:622.840000pt;}
.y11c{bottom:627.893333pt;}
.ydd{bottom:632.173333pt;}
.y12{bottom:633.773333pt;}
.y10b{bottom:634.573333pt;}
.y71{bottom:637.773333pt;}
.y134{bottom:638.306667pt;}
.y8c{bottom:639.360000pt;}
.y36{bottom:642.840000pt;}
.y11b{bottom:647.106667pt;}
.ydb{bottom:652.173333pt;}
.y10a{bottom:654.560000pt;}
.ydc{bottom:656.173333pt;}
.y70{bottom:657.773333pt;}
.y133{bottom:658.293333pt;}
.y8b{bottom:659.360000pt;}
.y11{bottom:661.773333pt;}
.y34{bottom:662.840000pt;}
.y11a{bottom:666.306667pt;}
.y35{bottom:666.840000pt;}
.yda{bottom:672.173333pt;}
.y109{bottom:674.560000pt;}
.y6f{bottom:677.760000pt;}
.y132{bottom:678.306667pt;}
.y10{bottom:681.773333pt;}
.y32{bottom:682.840000pt;}
.y119{bottom:686.293333pt;}
.y33{bottom:686.840000pt;}
.y8a{bottom:687.373333pt;}
.yd9{bottom:691.373333pt;}
.ya7{bottom:692.519089pt;}
.y108{bottom:694.573333pt;}
.y6e{bottom:697.773333pt;}
.y131{bottom:698.293333pt;}
.yaa{bottom:701.709344pt;}
.y30{bottom:702.840000pt;}
.y31{bottom:706.840000pt;}
.yf{bottom:709.773333pt;}
.y105{bottom:710.053333pt;}
.yd8{bottom:711.373333pt;}
.y118{bottom:713.226667pt;}
.y89{bottom:715.373333pt;}
.y6d{bottom:717.773333pt;}
.y130{bottom:718.293333pt;}
.y2f{bottom:730.040000pt;}
.yae{bottom:732.127790pt;}
.y117{bottom:732.960000pt;}
.y6a{bottom:733.253333pt;}
.y88{bottom:735.373333pt;}
.yb5{bottom:735.677589pt;}
.ye{bottom:737.760000pt;}
.y12f{bottom:738.293333pt;}
.yd6{bottom:739.373333pt;}
.ya8{bottom:740.845390pt;}
.yd7{bottom:743.373333pt;}
.yad{bottom:745.111034pt;}
.yf7{bottom:747.893333pt;}
.y12d{bottom:753.786667pt;}
.y87{bottom:755.400000pt;}
.yd{bottom:757.800000pt;}
.y2e{bottom:758.333333pt;}
.yd5{bottom:759.400000pt;}
.y65{bottom:771.133333pt;}
.yab{bottom:777.882938pt;}
.yd4{bottom:778.600000pt;}
.y86{bottom:783.400000pt;}
.yc{bottom:785.800000pt;}
.y12a{bottom:791.666667pt;}
.y101{bottom:797.282241pt;}
.yd3{bottom:797.800000pt;}
.y2d{bottom:803.400000pt;}
.yb{bottom:805.800000pt;}
.y57{bottom:807.400000pt;}
.y103{bottom:813.138606pt;}
.yd2{bottom:817.000000pt;}
.y2c{bottom:823.133333pt;}
.y56{bottom:823.400000pt;}
.ya{bottom:825.800000pt;}
.yd1{bottom:836.200000pt;}
.y55{bottom:843.400000pt;}
.y9{bottom:845.800000pt;}
.yfd{bottom:861.961549pt;}
.y54{bottom:863.400000pt;}
.y85{bottom:867.400000pt;}
.ya5{bottom:872.688075pt;}
.y8{bottom:873.800000pt;}
.y53{bottom:883.400000pt;}
.y7{bottom:901.000000pt;}
.y51{bottom:903.400000pt;}
.y52{bottom:907.440000pt;}
.y100{bottom:909.530652pt;}
.y50{bottom:923.440000pt;}
.y6{bottom:928.773333pt;}
.y4f{bottom:943.440000pt;}
.y84{bottom:951.440000pt;}
.yff{bottom:956.121760pt;}
.y5{bottom:956.773333pt;}
.yd0{bottom:963.440000pt;}
.y4e{bottom:971.440000pt;}
.ycf{bottom:983.440000pt;}
.y4{bottom:984.773333pt;}
.y4d{bottom:991.440000pt;}
.yfb{bottom:1003.689295pt;}
.y4c{bottom:1011.440000pt;}
.y3{bottom:1013.293333pt;}
.y83{bottom:1015.440000pt;}
.yf9{bottom:1029.377335pt;}
.y4b{bottom:1031.440000pt;}
.hf{height:9.430895pt;}
.h18{height:11.079867pt;}
.h1b{height:12.371948pt;}
.h1a{height:12.371950pt;}
.he{height:22.920000pt;}
.h14{height:26.871589pt;}
.h1c{height:27.732089pt;}
.h7{height:28.953125pt;}
.h10{height:32.507273pt;}
.h13{height:33.389820pt;}
.h12{height:33.487881pt;}
.h1d{height:37.853333pt;}
.hc{height:37.873333pt;}
.h6{height:38.604167pt;}
.h19{height:39.702240pt;}
.h8{height:43.429688pt;}
.h9{height:46.437500pt;}
.h4{height:46.656250pt;}
.h11{height:53.523522pt;}
.h2{height:54.250000pt;}
.h3{height:57.906250pt;}
.h15{height:60.295217pt;}
.h1{height:62.812500pt;}
.h16{height:83.986667pt;}
.hb{height:96.510417pt;}
.hd{height:150.426667pt;}
.h1e{height:255.226667pt;}
.ha{height:275.760000pt;}
.h17{height:299.000000pt;}
.h5{height:1122.656587pt;}
.h0{height:1122.666667pt;}
.wb{width:10.311619pt;}
.wa{width:10.335951pt;}
.wc{width:10.554933pt;}
.wf{width:15.468107pt;}
.w9{width:22.520110pt;}
.we{width:26.969824pt;}
.w8{width:27.918746pt;}
.w13{width:43.223408pt;}
.w12{width:53.666722pt;}
.w11{width:53.706000pt;}
.w10{width:71.648325pt;}
.wd{width:160.216970pt;}
.w5{width:290.757333pt;}
.w4{width:290.760000pt;}
.w3{width:290.773333pt;}
.w7{width:581.517333pt;}
.w6{width:581.533333pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:13.837716pt;}
.x4e{left:47.993333pt;}
.x50{left:51.200000pt;}
.x42{left:52.800000pt;}
.x21{left:54.133333pt;}
.x43{left:64.800000pt;}
.x20{left:73.633333pt;}
.x1f{left:89.633333pt;}
.x51{left:90.706667pt;}
.x41{left:100.566667pt;}
.x4f{left:104.833333pt;}
.x1b{left:106.166667pt;}
.x2{left:113.366667pt;}
.x7{left:117.366667pt;}
.x28{left:121.366667pt;}
.x3{left:122.966667pt;}
.x8{left:132.300000pt;}
.x1c{left:145.366667pt;}
.xf{left:172.050000pt;}
.x10{left:177.400000pt;}
.x37{left:189.383333pt;}
.x31{left:196.009992pt;}
.x38{left:200.066667pt;}
.x35{left:207.783333pt;}
.x47{left:211.000000pt;}
.x36{left:218.466667pt;}
.x34{left:223.533333pt;}
.xa{left:236.600000pt;}
.x1d{left:238.193333pt;}
.x14{left:244.333333pt;}
.x52{left:263.560000pt;}
.x4c{left:276.906667pt;}
.x53{left:283.026667pt;}
.x4a{left:292.090000pt;}
.x4b{left:302.773333pt;}
.x49{left:304.106667pt;}
.x6{left:305.440000pt;}
.x4{left:311.290000pt;}
.x5{left:316.626667pt;}
.x26{left:321.440000pt;}
.x1a{left:325.693333pt;}
.x11{left:361.676667pt;}
.x12{left:367.026667pt;}
.xd{left:392.650000pt;}
.x1e{left:396.933333pt;}
.xe{left:398.000000pt;}
.x30{left:410.161744pt;}
.x23{left:412.116667pt;}
.xb{left:417.183333pt;}
.xc{left:422.533333pt;}
.x17{left:424.116667pt;}
.x18{left:429.466667pt;}
.x27{left:435.600000pt;}
.x2f{left:441.364247pt;}
.x22{left:454.273333pt;}
.x25{left:463.600000pt;}
.x15{left:468.916667pt;}
.x16{left:474.266667pt;}
.x3a{left:480.156667pt;}
.x44{left:488.423333pt;}
.x29{left:490.610868pt;}
.x2a{left:495.554995pt;}
.x45{left:499.106667pt;}
.x2e{left:500.246076pt;}
.x2d{left:508.684183pt;}
.x19{left:510.306667pt;}
.x24{left:515.893333pt;}
.x3d{left:527.248792pt;}
.x2c{left:529.326887pt;}
.x40{left:532.942577pt;}
.x13{left:538.306667pt;}
.x39{left:540.706667pt;}
.x9{left:544.960000pt;}
.x2b{left:553.940465pt;}
.x46{left:568.440000pt;}
.x3f{left:574.946785pt;}
.x48{left:577.760000pt;}
.x33{left:612.466667pt;}
.x3e{left:613.769452pt;}
.x3b{left:618.050000pt;}
.x3c{left:628.733333pt;}
.x4d{left:664.733333pt;}
.x1{left:672.733333pt;}
}




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