
    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_a0a0312f72b777256ab96ad3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8cd872e877362e776557040.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_461ae48d5e2b2ef93c822fa4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_d7b99374126bdc8611003593.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_217d586b04e4f3df76c24605.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a237c2954e37d3e0d90503b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_29802cab60f07755240030f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_9c04a7325fc8da4f2b3fd77a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.975400px;}
.v2{vertical-align:27.972000px;}
.v1{vertical-align:29.970000px;}
.ls4{letter-spacing:-3.106224px;}
.ls5{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.839520px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:4.057200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.117500px;}
.ws11{word-spacing:-10.494000px;}
.ws1d{word-spacing:-7.387776px;}
.ws1f{word-spacing:-4.620000px;}
.ws2d{word-spacing:-3.960000px;}
.wsd{word-spacing:-3.168000px;}
.wsb{word-spacing:-2.880000px;}
.ws14{word-spacing:-2.592000px;}
.wsf{word-spacing:-2.520000px;}
.wsc{word-spacing:-1.728000px;}
.ws24{word-spacing:-1.584000px;}
.ws18{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.080000px;}
.ws10{word-spacing:-0.864000px;}
.ws26{word-spacing:-0.792000px;}
.ws7{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.792000px;}
.ws28{word-spacing:0.839520px;}
.ws15{word-spacing:0.936000px;}
.ws16{word-spacing:1.152000px;}
.ws29{word-spacing:1.296000px;}
.ws27{word-spacing:1.440000px;}
.ws1b{word-spacing:1.584000px;}
.ws22{word-spacing:1.728000px;}
.ws13{word-spacing:1.944000px;}
.ws9{word-spacing:2.448000px;}
.ws4{word-spacing:2.664000px;}
.ws12{word-spacing:2.736000px;}
.ws21{word-spacing:2.808000px;}
.ws1c{word-spacing:2.952000px;}
.wsa{word-spacing:3.384000px;}
.ws20{word-spacing:3.672000px;}
.ws2a{word-spacing:3.888000px;}
.wse{word-spacing:4.032000px;}
.ws5{word-spacing:5.328000px;}
.ws23{word-spacing:5.688000px;}
.ws1a{word-spacing:8.352000px;}
.ws19{word-spacing:9.576000px;}
._17{margin-left:-10.084200px;}
._16{margin-left:-8.788200px;}
._b{margin-left:-7.768800px;}
._1{margin-left:-5.763000px;}
._10{margin-left:-4.727400px;}
._0{margin-left:-3.600600px;}
._3{margin-left:-2.541600px;}
._2{margin-left:-1.303200px;}
._8{width:1.296000px;}
._5{width:2.520000px;}
._6{width:4.384800px;}
._7{width:5.601600px;}
._9{width:6.653400px;}
._a{width:7.954200px;}
._11{width:9.192600px;}
._f{width:10.195200px;}
._14{width:11.448000px;}
._e{width:68.964000px;}
._4{width:83.952000px;}
._15{width:130.536000px;}
._13{width:144.780000px;}
._c{width:165.096000px;}
._12{width:173.580000px;}
._d{width:177.822000px;}
.fc2{color:rgb(152,150,150);}
.fc1{color:rgb(158,156,157);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:41.976000px;}
.fs7{font-size:48.972000px;}
.fs4{font-size:52.470000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fsa{font-size:90.000000px;}
.fs1{font-size:102.000000px;}
.fs3{font-size:132.000000px;}
.fs0{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:78.331500px;}
.y16a{bottom:106.299150px;}
.y58{bottom:106.299300px;}
.y19e{bottom:106.299450px;}
.ydd{bottom:106.975050px;}
.y1e3{bottom:108.987150px;}
.y12f{bottom:109.054950px;}
.y7e{bottom:109.055100px;}
.y1b4{bottom:109.171350px;}
.y95{bottom:109.409250px;}
.y1de{bottom:111.113100px;}
.y112{bottom:112.630650px;}
.y143{bottom:114.192750px;}
.y183{bottom:115.549350px;}
.ya7{bottom:119.617050px;}
.y1d7{bottom:121.154550px;}
.y102{bottom:125.302650px;}
.y1b3{bottom:125.371350px;}
.y1e2{bottom:126.987150px;}
.y17d{bottom:128.799150px;}
.y57{bottom:128.799300px;}
.y111{bottom:128.830650px;}
.y1dd{bottom:129.113100px;}
.ydc{bottom:129.475050px;}
.y12e{bottom:131.554950px;}
.y7d{bottom:131.555100px;}
.y182{bottom:131.749350px;}
.y94{bottom:131.909250px;}
.y142{bottom:136.692750px;}
.ya6{bottom:137.617050px;}
.y101{bottom:141.502650px;}
.y1b2{bottom:141.571350px;}
.y1e1{bottom:143.187150px;}
.y1d6{bottom:143.654550px;}
.y211{bottom:143.810700px;}
.y18f{bottom:144.250050px;}
.y1dc{bottom:145.313100px;}
.y181{bottom:147.949350px;}
.y17f{bottom:151.299150px;}
.y87{bottom:151.299300px;}
.ydb{bottom:151.975050px;}
.ya5{bottom:153.817050px;}
.y12d{bottom:154.054950px;}
.y7c{bottom:154.055100px;}
.y93{bottom:154.409250px;}
.y100{bottom:157.702650px;}
.y141{bottom:159.192750px;}
.y1e0{bottom:159.387150px;}
.yfa{bottom:160.255800px;}
.y18e{bottom:160.450050px;}
.y1db{bottom:161.513100px;}
.y210{bottom:161.810700px;}
.ya4{bottom:170.017050px;}
.yde{bottom:171.348300px;}
.y1e9{bottom:172.865850px;}
.y17e{bottom:173.799150px;}
.yda{bottom:174.475050px;}
.y1df{bottom:175.587150px;}
.y12c{bottom:176.554950px;}
.y7b{bottom:176.555100px;}
.y18d{bottom:176.650050px;}
.y1da{bottom:177.713100px;}
.y20f{bottom:178.010700px;}
.yf9{bottom:182.755800px;}
.y1ee{bottom:185.522550px;}
.ya3{bottom:186.217050px;}
.y1d5{bottom:188.654550px;}
.y1e8{bottom:190.865850px;}
.y20e{bottom:194.210700px;}
.yd9{bottom:196.975050px;}
.y180{bottom:198.972900px;}
.y14b{bottom:199.054950px;}
.y7a{bottom:199.055100px;}
.y92{bottom:199.409250px;}
.y1ed{bottom:203.522550px;}
.y140{bottom:204.192750px;}
.yf8{bottom:205.255800px;}
.y1e7{bottom:207.065850px;}
.y20d{bottom:210.410700px;}
.yd8{bottom:219.475050px;}
.y1ec{bottom:219.722550px;}
.y12b{bottom:221.554950px;}
.y91{bottom:221.909250px;}
.y1e6{bottom:223.265850px;}
.y192{bottom:223.974450px;}
.y20c{bottom:226.610700px;}
.y13f{bottom:226.692750px;}
.yf7{bottom:227.755800px;}
.y1d4{bottom:233.654550px;}
.y1eb{bottom:235.922550px;}
.y1e5{bottom:239.465850px;}
.y191{bottom:240.174450px;}
.yd7{bottom:241.975050px;}
.y12a{bottom:244.054950px;}
.y79{bottom:244.055100px;}
.y90{bottom:244.409250px;}
.y205{bottom:247.983900px;}
.y13e{bottom:249.192750px;}
.yf6{bottom:250.255800px;}
.y1ea{bottom:252.122550px;}
.y1e4{bottom:255.665850px;}
.y190{bottom:256.374600px;}
.y1a1{bottom:259.053150px;}
.y17c{bottom:263.897550px;}
.yd6{bottom:264.475050px;}
.y204{bottom:265.983900px;}
.y129{bottom:266.554950px;}
.y78{bottom:266.555100px;}
.y8f{bottom:266.909250px;}
.yf5{bottom:272.755800px;}
.y1af{bottom:272.932950px;}
.y1a0{bottom:275.253300px;}
.y1d3{bottom:278.654550px;}
.y1f4{bottom:279.873750px;}
.y203{bottom:282.183900px;}
.yd5{bottom:286.975050px;}
.y128{bottom:289.054950px;}
.y86{bottom:289.055100px;}
.y8e{bottom:289.409250px;}
.y19f{bottom:291.453300px;}
.y56{bottom:292.055100px;}
.y1ff{bottom:292.629600px;}
.y13d{bottom:294.192750px;}
.yf4{bottom:295.255800px;}
.y1ae{bottom:295.432950px;}
.y1f3{bottom:297.873750px;}
.y202{bottom:298.383900px;}
.yd4{bottom:309.475050px;}
.y1fe{bottom:310.629600px;}
.y127{bottom:311.554950px;}
.y77{bottom:311.555100px;}
.y8d{bottom:311.909250px;}
.y1f2{bottom:314.073750px;}
.y55{bottom:314.555100px;}
.y201{bottom:314.583900px;}
.y13c{bottom:316.692750px;}
.yf3{bottom:317.755800px;}
.y1d2{bottom:323.654550px;}
.y1fd{bottom:326.829600px;}
.y1f1{bottom:330.273750px;}
.y200{bottom:330.783900px;}
.yd3{bottom:331.975050px;}
.y126{bottom:334.054950px;}
.y76{bottom:334.055100px;}
.y8c{bottom:334.409250px;}
.y13b{bottom:339.192750px;}
.yf2{bottom:340.255800px;}
.y1ad{bottom:340.432950px;}
.y1fc{bottom:343.029600px;}
.y1d1{bottom:346.154550px;}
.y1f0{bottom:346.473750px;}
.yb1{bottom:346.656450px;}
.yd2{bottom:354.475050px;}
.y14a{bottom:356.554950px;}
.y75{bottom:356.555100px;}
.y8b{bottom:356.909250px;}
.y1fb{bottom:359.229600px;}
.y54{bottom:359.555100px;}
.y1ef{bottom:362.673750px;}
.yf1{bottom:362.755800px;}
.y1ac{bottom:362.932950px;}
.yb0{bottom:364.656450px;}
.y26{bottom:368.654700px;}
.y1fa{bottom:375.429600px;}
.y125{bottom:379.054950px;}
.y85{bottom:379.055100px;}
.y169{bottom:379.345050px;}
.yaf{bottom:380.856450px;}
.y53{bottom:382.055100px;}
.y13a{bottom:384.192750px;}
.yf0{bottom:385.255800px;}
.y1ab{bottom:385.432950px;}
.y14e{bottom:387.688500px;}
.y1d0{bottom:391.154550px;}
.y25{bottom:391.154700px;}
.yac{bottom:393.428250px;}
.yae{bottom:397.056450px;}
.yd1{bottom:399.475050px;}
.y124{bottom:401.554950px;}
.y74{bottom:401.555100px;}
.y168{bottom:401.845050px;}
.y8a{bottom:401.909250px;}
.y14d{bottom:403.888500px;}
.y52{bottom:404.555100px;}
.y139{bottom:406.692750px;}
.yef{bottom:407.755800px;}
.y1aa{bottom:407.932950px;}
.yab{bottom:411.428250px;}
.yad{bottom:413.256450px;}
.y24{bottom:413.654700px;}
.y8{bottom:416.748750px;}
.y110{bottom:419.829450px;}
.y14c{bottom:420.088500px;}
.yd0{bottom:421.975050px;}
.y123{bottom:424.054950px;}
.y73{bottom:424.055100px;}
.y167{bottom:424.345050px;}
.y89{bottom:424.409250px;}
.y51{bottom:427.055100px;}
.yaa{bottom:427.628100px;}
.y138{bottom:429.192750px;}
.yee{bottom:430.255800px;}
.y10f{bottom:436.029300px;}
.y1cf{bottom:436.154550px;}
.ya9{bottom:443.828250px;}
.y122{bottom:446.554950px;}
.y72{bottom:446.555100px;}
.y88{bottom:446.909250px;}
.y7{bottom:447.348750px;}
.y50{bottom:449.555100px;}
.y137{bottom:451.692750px;}
.yed{bottom:452.755800px;}
.y1a9{bottom:452.932950px;}
.y1ce{bottom:458.654550px;}
.y18{bottom:458.654700px;}
.ya8{bottom:460.028250px;}
.ycf{bottom:466.975050px;}
.y121{bottom:469.054950px;}
.y84{bottom:469.055100px;}
.y166{bottom:469.345050px;}
.y4f{bottom:472.055100px;}
.y217{bottom:473.338350px;}
.y136{bottom:474.192750px;}
.yec{bottom:475.255800px;}
.y1a8{bottom:475.432950px;}
.y6{bottom:477.948750px;}
.y23{bottom:481.154700px;}
.y1f9{bottom:487.412250px;}
.yce{bottom:489.475050px;}
.y216{bottom:491.338350px;}
.y120{bottom:491.554950px;}
.y71{bottom:491.555100px;}
.y165{bottom:491.845050px;}
.y4e{bottom:494.555100px;}
.y135{bottom:496.692750px;}
.yeb{bottom:497.755800px;}
.y1a7{bottom:497.932950px;}
.y1cd{bottom:503.654550px;}
.y17{bottom:503.654700px;}
.y1f8{bottom:505.412250px;}
.y215{bottom:507.538350px;}
.y97{bottom:511.859700px;}
.ycd{bottom:511.975050px;}
.y99{bottom:512.300550px;}
.y11f{bottom:514.054950px;}
.y70{bottom:514.055100px;}
.y164{bottom:514.345050px;}
.y4d{bottom:517.055100px;}
.y134{bottom:519.192750px;}
.yea{bottom:519.724200px;}
.y16c{bottom:520.009800px;}
.y1a6{bottom:520.432950px;}
.y1f7{bottom:521.612250px;}
.y214{bottom:523.738350px;}
.y1cc{bottom:526.154550px;}
.y96{bottom:528.059700px;}
.y98{bottom:528.500550px;}
.ycc{bottom:534.475050px;}
.y149{bottom:536.554950px;}
.y6f{bottom:536.555100px;}
.y1f6{bottom:537.812250px;}
.y4c{bottom:539.555100px;}
.y213{bottom:539.938350px;}
.y133{bottom:541.692750px;}
.ye9{bottom:542.224200px;}
.y3a{bottom:542.854950px;}
.y1a5{bottom:542.932950px;}
.y16{bottom:548.654700px;}
.y9e{bottom:550.373850px;}
.y1f5{bottom:554.012250px;}
.y212{bottom:556.138350px;}
.ycb{bottom:556.975050px;}
.y11e{bottom:559.054950px;}
.y83{bottom:559.055100px;}
.y163{bottom:559.345050px;}
.y1b7{bottom:560.943000px;}
.y132{bottom:564.192750px;}
.ye8{bottom:564.724200px;}
.y39{bottom:565.354950px;}
.y1a4{bottom:565.432950px;}
.y5{bottom:569.748750px;}
.y1cb{bottom:571.154550px;}
.y22{bottom:571.154700px;}
.y9d{bottom:572.873850px;}
.y1b6{bottom:577.143000px;}
.yca{bottom:579.475050px;}
.y11d{bottom:581.554950px;}
.y6e{bottom:581.555100px;}
.y162{bottom:581.845050px;}
.y4b{bottom:584.555100px;}
.ye7{bottom:587.224200px;}
.y1a3{bottom:587.932950px;}
.y1b5{bottom:593.343000px;}
.y1ca{bottom:593.654550px;}
.y15{bottom:593.654700px;}
.y9c{bottom:595.373850px;}
.yb7{bottom:598.784550px;}
.y4{bottom:600.348750px;}
.y18c{bottom:604.054800px;}
.y148{bottom:604.054950px;}
.y6d{bottom:604.055100px;}
.y161{bottom:604.345050px;}
.y131{bottom:609.192750px;}
.ye6{bottom:609.724200px;}
.y38{bottom:610.354950px;}
.y1a2{bottom:610.432950px;}
.y1d9{bottom:616.414200px;}
.yb6{bottom:616.784550px;}
.yc9{bottom:624.475050px;}
.y18b{bottom:626.554800px;}
.y11c{bottom:626.554950px;}
.y6c{bottom:626.555100px;}
.y160{bottom:626.845050px;}
.y4a{bottom:629.555100px;}
.y130{bottom:631.692750px;}
.ye5{bottom:632.224200px;}
.y37{bottom:632.854950px;}
.yb5{bottom:632.984550px;}
.y1c9{bottom:638.654550px;}
.y14{bottom:638.654700px;}
.y9b{bottom:640.373850px;}
.yc8{bottom:646.975050px;}
.y18a{bottom:649.054800px;}
.y11b{bottom:649.054950px;}
.y6b{bottom:649.055100px;}
.yb4{bottom:649.184550px;}
.y15f{bottom:649.345050px;}
.y49{bottom:652.055100px;}
.ye4{bottom:654.724200px;}
.y36{bottom:655.354950px;}
.y20b{bottom:656.172900px;}
.y21{bottom:661.154700px;}
.y9a{bottom:662.873850px;}
.y145{bottom:664.322550px;}
.yb3{bottom:665.384550px;}
.y189{bottom:671.554800px;}
.y11a{bottom:671.554950px;}
.y6a{bottom:671.555100px;}
.y15e{bottom:671.845050px;}
.y20a{bottom:674.172900px;}
.y48{bottom:674.555100px;}
.y1b1{bottom:674.938350px;}
.ye3{bottom:677.224200px;}
.y35{bottom:677.854950px;}
.y144{bottom:680.522550px;}
.yb2{bottom:681.584550px;}
.y1c8{bottom:683.654550px;}
.y13{bottom:683.654700px;}
.y209{bottom:690.372900px;}
.y1b0{bottom:691.138350px;}
.yc7{bottom:691.975050px;}
.y3{bottom:692.148750px;}
.y188{bottom:694.054800px;}
.y119{bottom:694.054950px;}
.y82{bottom:694.055100px;}
.y47{bottom:697.055100px;}
.y34{bottom:700.354950px;}
.y1c7{bottom:706.154550px;}
.y20{bottom:706.154700px;}
.y1d8{bottom:706.414200px;}
.y208{bottom:706.572900px;}
.y187{bottom:716.554800px;}
.y118{bottom:716.554950px;}
.y69{bottom:716.555100px;}
.y15d{bottom:716.845050px;}
.y46{bottom:719.555100px;}
.ye2{bottom:722.224200px;}
.y2{bottom:722.748750px;}
.y207{bottom:722.772900px;}
.y12{bottom:728.654700px;}
.ya0{bottom:733.402800px;}
.yc6{bottom:736.975050px;}
.y206{bottom:738.972900px;}
.y186{bottom:739.054800px;}
.y117{bottom:739.054950px;}
.y68{bottom:739.055100px;}
.y15c{bottom:739.345050px;}
.ye1{bottom:744.724200px;}
.y33{bottom:745.354950px;}
.y9f{bottom:749.602800px;}
.y1c6{bottom:751.154550px;}
.yc5{bottom:759.475050px;}
.y17b{bottom:761.554800px;}
.y116{bottom:761.554950px;}
.y67{bottom:761.555100px;}
.y15b{bottom:761.845050px;}
.y45{bottom:764.555100px;}
.ye0{bottom:767.224200px;}
.y32{bottom:767.854950px;}
.y1c5{bottom:773.654550px;}
.y11{bottom:773.654700px;}
.y17a{bottom:784.054800px;}
.y147{bottom:784.054950px;}
.y81{bottom:784.055100px;}
.y44{bottom:787.055100px;}
.ydf{bottom:789.724200px;}
.y1b9{bottom:790.261350px;}
.y31{bottom:790.354950px;}
.y1f{bottom:796.154700px;}
.yc4{bottom:804.475050px;}
.y179{bottom:806.554800px;}
.y115{bottom:806.554950px;}
.y66{bottom:806.555100px;}
.y15a{bottom:806.845050px;}
.y30{bottom:812.854950px;}
.y1c4{bottom:818.654550px;}
.y10{bottom:818.654700px;}
.yc3{bottom:826.975050px;}
.y178{bottom:829.054800px;}
.y10e{bottom:829.054950px;}
.y65{bottom:829.055100px;}
.y159{bottom:829.345050px;}
.y43{bottom:832.055100px;}
.y1{bottom:832.548750px;}
.yfe{bottom:833.697750px;}
.y1c3{bottom:841.154550px;}
.y1e{bottom:841.154700px;}
.y16b{bottom:847.411350px;}
.yc2{bottom:849.475050px;}
.yfd{bottom:849.897750px;}
.y185{bottom:851.554800px;}
.y10d{bottom:851.554950px;}
.y64{bottom:851.555100px;}
.y158{bottom:851.845050px;}
.y42{bottom:854.555100px;}
.yff{bottom:857.530950px;}
.y2f{bottom:857.854950px;}
.y1c2{bottom:863.654550px;}
.yf{bottom:863.654700px;}
.yfc{bottom:866.097750px;}
.yc1{bottom:871.975050px;}
.ya2{bottom:873.730950px;}
.y177{bottom:874.054800px;}
.y10c{bottom:874.054950px;}
.y63{bottom:874.055100px;}
.y41{bottom:877.055100px;}
.y2e{bottom:880.354950px;}
.yfb{bottom:882.297750px;}
.y1d{bottom:886.154700px;}
.ya1{bottom:889.930950px;}
.y19d{bottom:896.537550px;}
.y176{bottom:896.554800px;}
.y146{bottom:896.554950px;}
.y62{bottom:896.555100px;}
.y157{bottom:896.845050px;}
.y2d{bottom:902.854950px;}
.y1c1{bottom:908.654550px;}
.ye{bottom:908.654700px;}
.yc0{bottom:916.975050px;}
.y19c{bottom:919.037550px;}
.y175{bottom:919.054800px;}
.y10b{bottom:919.054950px;}
.y61{bottom:919.055100px;}
.y156{bottom:919.345050px;}
.y40{bottom:922.055100px;}
.y1c0{bottom:931.154550px;}
.y1c{bottom:931.154700px;}
.ybf{bottom:939.475050px;}
.y19b{bottom:941.537550px;}
.y174{bottom:941.554800px;}
.y10a{bottom:941.554950px;}
.y80{bottom:941.555100px;}
.y3f{bottom:944.555100px;}
.y2c{bottom:947.854950px;}
.y1bf{bottom:953.654550px;}
.yd{bottom:953.654700px;}
.ybe{bottom:961.975050px;}
.y19a{bottom:964.037550px;}
.y173{bottom:964.054800px;}
.y109{bottom:964.054950px;}
.y60{bottom:964.055100px;}
.y155{bottom:964.345050px;}
.y3e{bottom:967.055100px;}
.y2b{bottom:970.354950px;}
.y1be{bottom:976.154550px;}
.y1b{bottom:976.154700px;}
.ybd{bottom:984.475050px;}
.y199{bottom:986.537550px;}
.y172{bottom:986.554800px;}
.y108{bottom:986.554950px;}
.y5f{bottom:986.555100px;}
.y154{bottom:986.845050px;}
.y3d{bottom:989.555100px;}
.y2a{bottom:992.854950px;}
.yc{bottom:998.654700px;}
.ybc{bottom:1006.975050px;}
.y198{bottom:1009.037550px;}
.y171{bottom:1009.054800px;}
.y114{bottom:1009.054950px;}
.y5e{bottom:1009.055100px;}
.y153{bottom:1009.345050px;}
.y29{bottom:1015.354950px;}
.y1bd{bottom:1021.154550px;}
.y1a{bottom:1021.154700px;}
.ybb{bottom:1029.475050px;}
.y197{bottom:1031.537550px;}
.y170{bottom:1031.554800px;}
.y107{bottom:1031.554950px;}
.y5d{bottom:1031.555100px;}
.y152{bottom:1031.845050px;}
.y28{bottom:1037.854950px;}
.yb{bottom:1043.654700px;}
.yba{bottom:1051.975050px;}
.y196{bottom:1054.037550px;}
.y16f{bottom:1054.054800px;}
.y106{bottom:1054.054950px;}
.y7f{bottom:1054.055100px;}
.y151{bottom:1054.345050px;}
.y3c{bottom:1057.055100px;}
.y1bc{bottom:1066.154550px;}
.y19{bottom:1066.154700px;}
.yb9{bottom:1074.475050px;}
.y16e{bottom:1076.554800px;}
.y113{bottom:1076.554950px;}
.y5c{bottom:1076.555100px;}
.y150{bottom:1076.845050px;}
.y1bb{bottom:1088.654550px;}
.y195{bottom:1099.037550px;}
.y184{bottom:1099.054800px;}
.y105{bottom:1099.054950px;}
.y5b{bottom:1099.055100px;}
.y3b{bottom:1100.555100px;}
.y27{bottom:1104.454950px;}
.yb8{bottom:1119.475050px;}
.y194{bottom:1121.537550px;}
.y16d{bottom:1121.554800px;}
.y104{bottom:1121.554950px;}
.y5a{bottom:1121.555100px;}
.y14f{bottom:1121.845050px;}
.y1b8{bottom:1132.544700px;}
.y1ba{bottom:1133.654550px;}
.ya{bottom:1133.654700px;}
.y193{bottom:1144.037550px;}
.y103{bottom:1144.054950px;}
.y59{bottom:1144.055100px;}
.hd{height:37.494141px;}
.hf{height:38.340000px;}
.h10{height:38.448000px;}
.he{height:47.381836px;}
.h11{height:49.289062px;}
.h8{height:49.992188px;}
.h5{height:51.264000px;}
.ha{height:52.646484px;}
.h12{height:53.120845px;}
.h13{height:53.121445px;}
.hc{height:57.503906px;}
.h7{height:63.175781px;}
.h9{height:66.401807px;}
.h4{height:70.822266px;}
.hb{height:76.009351px;}
.h3{height:89.499023px;}
.h14{height:93.984000px;}
.h6{height:115.822266px;}
.h2{height:137.478516px;}
.h15{height:173.733398px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:104.173200px;}
.x26{left:105.242550px;}
.x9{left:106.299150px;}
.xb{left:110.551200px;}
.x25{left:158.917350px;}
.x22{left:162.637800px;}
.x23{left:173.267700px;}
.x24{left:200.905500px;}
.x17{left:239.173200px;}
.xe{left:247.958700px;}
.x3{left:287.492550px;}
.x5{left:297.409950px;}
.x6{left:318.987900px;}
.x2{left:327.946500px;}
.x1a{left:337.081650px;}
.x19{left:345.090750px;}
.x1{left:355.734900px;}
.x4{left:370.784700px;}
.x7{left:391.914300px;}
.x12{left:397.559100px;}
.x1b{left:408.826800px;}
.x11{left:422.362200px;}
.x18{left:427.322850px;}
.x1c{left:446.456700px;}
.x16{left:499.606350px;}
.xf{left:520.866150px;}
.x13{left:604.488150px;}
.xd{left:632.128800px;}
.x1f{left:647.112000px;}
.xc{left:677.599050px;}
.x14{left:681.277200px;}
.x21{left:684.263250px;}
.x1d{left:685.746450px;}
.x20{left:734.637750px;}
.x15{left:736.008900px;}
.x1e{left:759.614100px;}
.x10{left:769.334400px;}
.xa{left:777.974250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.311467pt;}
.v2{vertical-align:24.864000pt;}
.v1{vertical-align:26.640000pt;}
.ls4{letter-spacing:-2.761088pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.746240pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:3.606400pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.660000pt;}
.ws11{word-spacing:-9.328000pt;}
.ws1d{word-spacing:-6.566912pt;}
.ws1f{word-spacing:-4.106667pt;}
.ws2d{word-spacing:-3.520000pt;}
.wsd{word-spacing:-2.816000pt;}
.wsb{word-spacing:-2.560000pt;}
.ws14{word-spacing:-2.304000pt;}
.wsf{word-spacing:-2.240000pt;}
.wsc{word-spacing:-1.536000pt;}
.ws24{word-spacing:-1.408000pt;}
.ws18{word-spacing:-1.344000pt;}
.ws17{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws26{word-spacing:-0.704000pt;}
.ws7{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.704000pt;}
.ws28{word-spacing:0.746240pt;}
.ws15{word-spacing:0.832000pt;}
.ws16{word-spacing:1.024000pt;}
.ws29{word-spacing:1.152000pt;}
.ws27{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.408000pt;}
.ws22{word-spacing:1.536000pt;}
.ws13{word-spacing:1.728000pt;}
.ws9{word-spacing:2.176000pt;}
.ws4{word-spacing:2.368000pt;}
.ws12{word-spacing:2.432000pt;}
.ws21{word-spacing:2.496000pt;}
.ws1c{word-spacing:2.624000pt;}
.wsa{word-spacing:3.008000pt;}
.ws20{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.456000pt;}
.wse{word-spacing:3.584000pt;}
.ws5{word-spacing:4.736000pt;}
.ws23{word-spacing:5.056000pt;}
.ws1a{word-spacing:7.424000pt;}
.ws19{word-spacing:8.512000pt;}
._17{margin-left:-8.963733pt;}
._16{margin-left:-7.811733pt;}
._b{margin-left:-6.905600pt;}
._1{margin-left:-5.122667pt;}
._10{margin-left:-4.202133pt;}
._0{margin-left:-3.200533pt;}
._3{margin-left:-2.259200pt;}
._2{margin-left:-1.158400pt;}
._8{width:1.152000pt;}
._5{width:2.240000pt;}
._6{width:3.897600pt;}
._7{width:4.979200pt;}
._9{width:5.914133pt;}
._a{width:7.070400pt;}
._11{width:8.171200pt;}
._f{width:9.062400pt;}
._14{width:10.176000pt;}
._e{width:61.301333pt;}
._4{width:74.624000pt;}
._15{width:116.032000pt;}
._13{width:128.693333pt;}
._c{width:146.752000pt;}
._12{width:154.293333pt;}
._d{width:158.064000pt;}
.fs9{font-size:37.312000pt;}
.fs7{font-size:43.530667pt;}
.fs4{font-size:46.640000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fsa{font-size:80.000000pt;}
.fs1{font-size:90.666667pt;}
.fs3{font-size:117.333333pt;}
.fs0{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:69.628000pt;}
.y16a{bottom:94.488133pt;}
.y58{bottom:94.488267pt;}
.y19e{bottom:94.488400pt;}
.ydd{bottom:95.088933pt;}
.y1e3{bottom:96.877467pt;}
.y12f{bottom:96.937733pt;}
.y7e{bottom:96.937867pt;}
.y1b4{bottom:97.041200pt;}
.y95{bottom:97.252667pt;}
.y1de{bottom:98.767200pt;}
.y112{bottom:100.116133pt;}
.y143{bottom:101.504667pt;}
.y183{bottom:102.710533pt;}
.ya7{bottom:106.326267pt;}
.y1d7{bottom:107.692933pt;}
.y102{bottom:111.380133pt;}
.y1b3{bottom:111.441200pt;}
.y1e2{bottom:112.877467pt;}
.y17d{bottom:114.488133pt;}
.y57{bottom:114.488267pt;}
.y111{bottom:114.516133pt;}
.y1dd{bottom:114.767200pt;}
.ydc{bottom:115.088933pt;}
.y12e{bottom:116.937733pt;}
.y7d{bottom:116.937867pt;}
.y182{bottom:117.110533pt;}
.y94{bottom:117.252667pt;}
.y142{bottom:121.504667pt;}
.ya6{bottom:122.326267pt;}
.y101{bottom:125.780133pt;}
.y1b2{bottom:125.841200pt;}
.y1e1{bottom:127.277467pt;}
.y1d6{bottom:127.692933pt;}
.y211{bottom:127.831733pt;}
.y18f{bottom:128.222267pt;}
.y1dc{bottom:129.167200pt;}
.y181{bottom:131.510533pt;}
.y17f{bottom:134.488133pt;}
.y87{bottom:134.488267pt;}
.ydb{bottom:135.088933pt;}
.ya5{bottom:136.726267pt;}
.y12d{bottom:136.937733pt;}
.y7c{bottom:136.937867pt;}
.y93{bottom:137.252667pt;}
.y100{bottom:140.180133pt;}
.y141{bottom:141.504667pt;}
.y1e0{bottom:141.677467pt;}
.yfa{bottom:142.449600pt;}
.y18e{bottom:142.622267pt;}
.y1db{bottom:143.567200pt;}
.y210{bottom:143.831733pt;}
.ya4{bottom:151.126267pt;}
.yde{bottom:152.309600pt;}
.y1e9{bottom:153.658533pt;}
.y17e{bottom:154.488133pt;}
.yda{bottom:155.088933pt;}
.y1df{bottom:156.077467pt;}
.y12c{bottom:156.937733pt;}
.y7b{bottom:156.937867pt;}
.y18d{bottom:157.022267pt;}
.y1da{bottom:157.967200pt;}
.y20f{bottom:158.231733pt;}
.yf9{bottom:162.449600pt;}
.y1ee{bottom:164.908933pt;}
.ya3{bottom:165.526267pt;}
.y1d5{bottom:167.692933pt;}
.y1e8{bottom:169.658533pt;}
.y20e{bottom:172.631733pt;}
.yd9{bottom:175.088933pt;}
.y180{bottom:176.864800pt;}
.y14b{bottom:176.937733pt;}
.y7a{bottom:176.937867pt;}
.y92{bottom:177.252667pt;}
.y1ed{bottom:180.908933pt;}
.y140{bottom:181.504667pt;}
.yf8{bottom:182.449600pt;}
.y1e7{bottom:184.058533pt;}
.y20d{bottom:187.031733pt;}
.yd8{bottom:195.088933pt;}
.y1ec{bottom:195.308933pt;}
.y12b{bottom:196.937733pt;}
.y91{bottom:197.252667pt;}
.y1e6{bottom:198.458533pt;}
.y192{bottom:199.088400pt;}
.y20c{bottom:201.431733pt;}
.y13f{bottom:201.504667pt;}
.yf7{bottom:202.449600pt;}
.y1d4{bottom:207.692933pt;}
.y1eb{bottom:209.708933pt;}
.y1e5{bottom:212.858533pt;}
.y191{bottom:213.488400pt;}
.yd7{bottom:215.088933pt;}
.y12a{bottom:216.937733pt;}
.y79{bottom:216.937867pt;}
.y90{bottom:217.252667pt;}
.y205{bottom:220.430133pt;}
.y13e{bottom:221.504667pt;}
.yf6{bottom:222.449600pt;}
.y1ea{bottom:224.108933pt;}
.y1e4{bottom:227.258533pt;}
.y190{bottom:227.888533pt;}
.y1a1{bottom:230.269467pt;}
.y17c{bottom:234.575600pt;}
.yd6{bottom:235.088933pt;}
.y204{bottom:236.430133pt;}
.y129{bottom:236.937733pt;}
.y78{bottom:236.937867pt;}
.y8f{bottom:237.252667pt;}
.yf5{bottom:242.449600pt;}
.y1af{bottom:242.607067pt;}
.y1a0{bottom:244.669600pt;}
.y1d3{bottom:247.692933pt;}
.y1f4{bottom:248.776667pt;}
.y203{bottom:250.830133pt;}
.yd5{bottom:255.088933pt;}
.y128{bottom:256.937733pt;}
.y86{bottom:256.937867pt;}
.y8e{bottom:257.252667pt;}
.y19f{bottom:259.069600pt;}
.y56{bottom:259.604533pt;}
.y1ff{bottom:260.115200pt;}
.y13d{bottom:261.504667pt;}
.yf4{bottom:262.449600pt;}
.y1ae{bottom:262.607067pt;}
.y1f3{bottom:264.776667pt;}
.y202{bottom:265.230133pt;}
.yd4{bottom:275.088933pt;}
.y1fe{bottom:276.115200pt;}
.y127{bottom:276.937733pt;}
.y77{bottom:276.937867pt;}
.y8d{bottom:277.252667pt;}
.y1f2{bottom:279.176667pt;}
.y55{bottom:279.604533pt;}
.y201{bottom:279.630133pt;}
.y13c{bottom:281.504667pt;}
.yf3{bottom:282.449600pt;}
.y1d2{bottom:287.692933pt;}
.y1fd{bottom:290.515200pt;}
.y1f1{bottom:293.576667pt;}
.y200{bottom:294.030133pt;}
.yd3{bottom:295.088933pt;}
.y126{bottom:296.937733pt;}
.y76{bottom:296.937867pt;}
.y8c{bottom:297.252667pt;}
.y13b{bottom:301.504667pt;}
.yf2{bottom:302.449600pt;}
.y1ad{bottom:302.607067pt;}
.y1fc{bottom:304.915200pt;}
.y1d1{bottom:307.692933pt;}
.y1f0{bottom:307.976667pt;}
.yb1{bottom:308.139067pt;}
.yd2{bottom:315.088933pt;}
.y14a{bottom:316.937733pt;}
.y75{bottom:316.937867pt;}
.y8b{bottom:317.252667pt;}
.y1fb{bottom:319.315200pt;}
.y54{bottom:319.604533pt;}
.y1ef{bottom:322.376667pt;}
.yf1{bottom:322.449600pt;}
.y1ac{bottom:322.607067pt;}
.yb0{bottom:324.139067pt;}
.y26{bottom:327.693067pt;}
.y1fa{bottom:333.715200pt;}
.y125{bottom:336.937733pt;}
.y85{bottom:336.937867pt;}
.y169{bottom:337.195600pt;}
.yaf{bottom:338.539067pt;}
.y53{bottom:339.604533pt;}
.y13a{bottom:341.504667pt;}
.yf0{bottom:342.449600pt;}
.y1ab{bottom:342.607067pt;}
.y14e{bottom:344.612000pt;}
.y1d0{bottom:347.692933pt;}
.y25{bottom:347.693067pt;}
.yac{bottom:349.714000pt;}
.yae{bottom:352.939067pt;}
.yd1{bottom:355.088933pt;}
.y124{bottom:356.937733pt;}
.y74{bottom:356.937867pt;}
.y168{bottom:357.195600pt;}
.y8a{bottom:357.252667pt;}
.y14d{bottom:359.012000pt;}
.y52{bottom:359.604533pt;}
.y139{bottom:361.504667pt;}
.yef{bottom:362.449600pt;}
.y1aa{bottom:362.607067pt;}
.yab{bottom:365.714000pt;}
.yad{bottom:367.339067pt;}
.y24{bottom:367.693067pt;}
.y8{bottom:370.443333pt;}
.y110{bottom:373.181733pt;}
.y14c{bottom:373.412000pt;}
.yd0{bottom:375.088933pt;}
.y123{bottom:376.937733pt;}
.y73{bottom:376.937867pt;}
.y167{bottom:377.195600pt;}
.y89{bottom:377.252667pt;}
.y51{bottom:379.604533pt;}
.yaa{bottom:380.113867pt;}
.y138{bottom:381.504667pt;}
.yee{bottom:382.449600pt;}
.y10f{bottom:387.581600pt;}
.y1cf{bottom:387.692933pt;}
.ya9{bottom:394.514000pt;}
.y122{bottom:396.937733pt;}
.y72{bottom:396.937867pt;}
.y88{bottom:397.252667pt;}
.y7{bottom:397.643333pt;}
.y50{bottom:399.604533pt;}
.y137{bottom:401.504667pt;}
.yed{bottom:402.449600pt;}
.y1a9{bottom:402.607067pt;}
.y1ce{bottom:407.692933pt;}
.y18{bottom:407.693067pt;}
.ya8{bottom:408.914000pt;}
.ycf{bottom:415.088933pt;}
.y121{bottom:416.937733pt;}
.y84{bottom:416.937867pt;}
.y166{bottom:417.195600pt;}
.y4f{bottom:419.604533pt;}
.y217{bottom:420.745200pt;}
.y136{bottom:421.504667pt;}
.yec{bottom:422.449600pt;}
.y1a8{bottom:422.607067pt;}
.y6{bottom:424.843333pt;}
.y23{bottom:427.693067pt;}
.y1f9{bottom:433.255333pt;}
.yce{bottom:435.088933pt;}
.y216{bottom:436.745200pt;}
.y120{bottom:436.937733pt;}
.y71{bottom:436.937867pt;}
.y165{bottom:437.195600pt;}
.y4e{bottom:439.604533pt;}
.y135{bottom:441.504667pt;}
.yeb{bottom:442.449600pt;}
.y1a7{bottom:442.607067pt;}
.y1cd{bottom:447.692933pt;}
.y17{bottom:447.693067pt;}
.y1f8{bottom:449.255333pt;}
.y215{bottom:451.145200pt;}
.y97{bottom:454.986400pt;}
.ycd{bottom:455.088933pt;}
.y99{bottom:455.378267pt;}
.y11f{bottom:456.937733pt;}
.y70{bottom:456.937867pt;}
.y164{bottom:457.195600pt;}
.y4d{bottom:459.604533pt;}
.y134{bottom:461.504667pt;}
.yea{bottom:461.977067pt;}
.y16c{bottom:462.230933pt;}
.y1a6{bottom:462.607067pt;}
.y1f7{bottom:463.655333pt;}
.y214{bottom:465.545200pt;}
.y1cc{bottom:467.692933pt;}
.y96{bottom:469.386400pt;}
.y98{bottom:469.778267pt;}
.ycc{bottom:475.088933pt;}
.y149{bottom:476.937733pt;}
.y6f{bottom:476.937867pt;}
.y1f6{bottom:478.055333pt;}
.y4c{bottom:479.604533pt;}
.y213{bottom:479.945200pt;}
.y133{bottom:481.504667pt;}
.ye9{bottom:481.977067pt;}
.y3a{bottom:482.537733pt;}
.y1a5{bottom:482.607067pt;}
.y16{bottom:487.693067pt;}
.y9e{bottom:489.221200pt;}
.y1f5{bottom:492.455333pt;}
.y212{bottom:494.345200pt;}
.ycb{bottom:495.088933pt;}
.y11e{bottom:496.937733pt;}
.y83{bottom:496.937867pt;}
.y163{bottom:497.195600pt;}
.y1b7{bottom:498.616000pt;}
.y132{bottom:501.504667pt;}
.ye8{bottom:501.977067pt;}
.y39{bottom:502.537733pt;}
.y1a4{bottom:502.607067pt;}
.y5{bottom:506.443333pt;}
.y1cb{bottom:507.692933pt;}
.y22{bottom:507.693067pt;}
.y9d{bottom:509.221200pt;}
.y1b6{bottom:513.016000pt;}
.yca{bottom:515.088933pt;}
.y11d{bottom:516.937733pt;}
.y6e{bottom:516.937867pt;}
.y162{bottom:517.195600pt;}
.y4b{bottom:519.604533pt;}
.ye7{bottom:521.977067pt;}
.y1a3{bottom:522.607067pt;}
.y1b5{bottom:527.416000pt;}
.y1ca{bottom:527.692933pt;}
.y15{bottom:527.693067pt;}
.y9c{bottom:529.221200pt;}
.yb7{bottom:532.252933pt;}
.y4{bottom:533.643333pt;}
.y18c{bottom:536.937600pt;}
.y148{bottom:536.937733pt;}
.y6d{bottom:536.937867pt;}
.y161{bottom:537.195600pt;}
.y131{bottom:541.504667pt;}
.ye6{bottom:541.977067pt;}
.y38{bottom:542.537733pt;}
.y1a2{bottom:542.607067pt;}
.y1d9{bottom:547.923733pt;}
.yb6{bottom:548.252933pt;}
.yc9{bottom:555.088933pt;}
.y18b{bottom:556.937600pt;}
.y11c{bottom:556.937733pt;}
.y6c{bottom:556.937867pt;}
.y160{bottom:557.195600pt;}
.y4a{bottom:559.604533pt;}
.y130{bottom:561.504667pt;}
.ye5{bottom:561.977067pt;}
.y37{bottom:562.537733pt;}
.yb5{bottom:562.652933pt;}
.y1c9{bottom:567.692933pt;}
.y14{bottom:567.693067pt;}
.y9b{bottom:569.221200pt;}
.yc8{bottom:575.088933pt;}
.y18a{bottom:576.937600pt;}
.y11b{bottom:576.937733pt;}
.y6b{bottom:576.937867pt;}
.yb4{bottom:577.052933pt;}
.y15f{bottom:577.195600pt;}
.y49{bottom:579.604533pt;}
.ye4{bottom:581.977067pt;}
.y36{bottom:582.537733pt;}
.y20b{bottom:583.264800pt;}
.y21{bottom:587.693067pt;}
.y9a{bottom:589.221200pt;}
.y145{bottom:590.508933pt;}
.yb3{bottom:591.452933pt;}
.y189{bottom:596.937600pt;}
.y11a{bottom:596.937733pt;}
.y6a{bottom:596.937867pt;}
.y15e{bottom:597.195600pt;}
.y20a{bottom:599.264800pt;}
.y48{bottom:599.604533pt;}
.y1b1{bottom:599.945200pt;}
.ye3{bottom:601.977067pt;}
.y35{bottom:602.537733pt;}
.y144{bottom:604.908933pt;}
.yb2{bottom:605.852933pt;}
.y1c8{bottom:607.692933pt;}
.y13{bottom:607.693067pt;}
.y209{bottom:613.664800pt;}
.y1b0{bottom:614.345200pt;}
.yc7{bottom:615.088933pt;}
.y3{bottom:615.243333pt;}
.y188{bottom:616.937600pt;}
.y119{bottom:616.937733pt;}
.y82{bottom:616.937867pt;}
.y47{bottom:619.604533pt;}
.y34{bottom:622.537733pt;}
.y1c7{bottom:627.692933pt;}
.y20{bottom:627.693067pt;}
.y1d8{bottom:627.923733pt;}
.y208{bottom:628.064800pt;}
.y187{bottom:636.937600pt;}
.y118{bottom:636.937733pt;}
.y69{bottom:636.937867pt;}
.y15d{bottom:637.195600pt;}
.y46{bottom:639.604533pt;}
.ye2{bottom:641.977067pt;}
.y2{bottom:642.443333pt;}
.y207{bottom:642.464800pt;}
.y12{bottom:647.693067pt;}
.ya0{bottom:651.913600pt;}
.yc6{bottom:655.088933pt;}
.y206{bottom:656.864800pt;}
.y186{bottom:656.937600pt;}
.y117{bottom:656.937733pt;}
.y68{bottom:656.937867pt;}
.y15c{bottom:657.195600pt;}
.ye1{bottom:661.977067pt;}
.y33{bottom:662.537733pt;}
.y9f{bottom:666.313600pt;}
.y1c6{bottom:667.692933pt;}
.yc5{bottom:675.088933pt;}
.y17b{bottom:676.937600pt;}
.y116{bottom:676.937733pt;}
.y67{bottom:676.937867pt;}
.y15b{bottom:677.195600pt;}
.y45{bottom:679.604533pt;}
.ye0{bottom:681.977067pt;}
.y32{bottom:682.537733pt;}
.y1c5{bottom:687.692933pt;}
.y11{bottom:687.693067pt;}
.y17a{bottom:696.937600pt;}
.y147{bottom:696.937733pt;}
.y81{bottom:696.937867pt;}
.y44{bottom:699.604533pt;}
.ydf{bottom:701.977067pt;}
.y1b9{bottom:702.454533pt;}
.y31{bottom:702.537733pt;}
.y1f{bottom:707.693067pt;}
.yc4{bottom:715.088933pt;}
.y179{bottom:716.937600pt;}
.y115{bottom:716.937733pt;}
.y66{bottom:716.937867pt;}
.y15a{bottom:717.195600pt;}
.y30{bottom:722.537733pt;}
.y1c4{bottom:727.692933pt;}
.y10{bottom:727.693067pt;}
.yc3{bottom:735.088933pt;}
.y178{bottom:736.937600pt;}
.y10e{bottom:736.937733pt;}
.y65{bottom:736.937867pt;}
.y159{bottom:737.195600pt;}
.y43{bottom:739.604533pt;}
.y1{bottom:740.043333pt;}
.yfe{bottom:741.064667pt;}
.y1c3{bottom:747.692933pt;}
.y1e{bottom:747.693067pt;}
.y16b{bottom:753.254533pt;}
.yc2{bottom:755.088933pt;}
.yfd{bottom:755.464667pt;}
.y185{bottom:756.937600pt;}
.y10d{bottom:756.937733pt;}
.y64{bottom:756.937867pt;}
.y158{bottom:757.195600pt;}
.y42{bottom:759.604533pt;}
.yff{bottom:762.249733pt;}
.y2f{bottom:762.537733pt;}
.y1c2{bottom:767.692933pt;}
.yf{bottom:767.693067pt;}
.yfc{bottom:769.864667pt;}
.yc1{bottom:775.088933pt;}
.ya2{bottom:776.649733pt;}
.y177{bottom:776.937600pt;}
.y10c{bottom:776.937733pt;}
.y63{bottom:776.937867pt;}
.y41{bottom:779.604533pt;}
.y2e{bottom:782.537733pt;}
.yfb{bottom:784.264667pt;}
.y1d{bottom:787.693067pt;}
.ya1{bottom:791.049733pt;}
.y19d{bottom:796.922267pt;}
.y176{bottom:796.937600pt;}
.y146{bottom:796.937733pt;}
.y62{bottom:796.937867pt;}
.y157{bottom:797.195600pt;}
.y2d{bottom:802.537733pt;}
.y1c1{bottom:807.692933pt;}
.ye{bottom:807.693067pt;}
.yc0{bottom:815.088933pt;}
.y19c{bottom:816.922267pt;}
.y175{bottom:816.937600pt;}
.y10b{bottom:816.937733pt;}
.y61{bottom:816.937867pt;}
.y156{bottom:817.195600pt;}
.y40{bottom:819.604533pt;}
.y1c0{bottom:827.692933pt;}
.y1c{bottom:827.693067pt;}
.ybf{bottom:835.088933pt;}
.y19b{bottom:836.922267pt;}
.y174{bottom:836.937600pt;}
.y10a{bottom:836.937733pt;}
.y80{bottom:836.937867pt;}
.y3f{bottom:839.604533pt;}
.y2c{bottom:842.537733pt;}
.y1bf{bottom:847.692933pt;}
.yd{bottom:847.693067pt;}
.ybe{bottom:855.088933pt;}
.y19a{bottom:856.922267pt;}
.y173{bottom:856.937600pt;}
.y109{bottom:856.937733pt;}
.y60{bottom:856.937867pt;}
.y155{bottom:857.195600pt;}
.y3e{bottom:859.604533pt;}
.y2b{bottom:862.537733pt;}
.y1be{bottom:867.692933pt;}
.y1b{bottom:867.693067pt;}
.ybd{bottom:875.088933pt;}
.y199{bottom:876.922267pt;}
.y172{bottom:876.937600pt;}
.y108{bottom:876.937733pt;}
.y5f{bottom:876.937867pt;}
.y154{bottom:877.195600pt;}
.y3d{bottom:879.604533pt;}
.y2a{bottom:882.537733pt;}
.yc{bottom:887.693067pt;}
.ybc{bottom:895.088933pt;}
.y198{bottom:896.922267pt;}
.y171{bottom:896.937600pt;}
.y114{bottom:896.937733pt;}
.y5e{bottom:896.937867pt;}
.y153{bottom:897.195600pt;}
.y29{bottom:902.537733pt;}
.y1bd{bottom:907.692933pt;}
.y1a{bottom:907.693067pt;}
.ybb{bottom:915.088933pt;}
.y197{bottom:916.922267pt;}
.y170{bottom:916.937600pt;}
.y107{bottom:916.937733pt;}
.y5d{bottom:916.937867pt;}
.y152{bottom:917.195600pt;}
.y28{bottom:922.537733pt;}
.yb{bottom:927.693067pt;}
.yba{bottom:935.088933pt;}
.y196{bottom:936.922267pt;}
.y16f{bottom:936.937600pt;}
.y106{bottom:936.937733pt;}
.y7f{bottom:936.937867pt;}
.y151{bottom:937.195600pt;}
.y3c{bottom:939.604533pt;}
.y1bc{bottom:947.692933pt;}
.y19{bottom:947.693067pt;}
.yb9{bottom:955.088933pt;}
.y16e{bottom:956.937600pt;}
.y113{bottom:956.937733pt;}
.y5c{bottom:956.937867pt;}
.y150{bottom:957.195600pt;}
.y1bb{bottom:967.692933pt;}
.y195{bottom:976.922267pt;}
.y184{bottom:976.937600pt;}
.y105{bottom:976.937733pt;}
.y5b{bottom:976.937867pt;}
.y3b{bottom:978.271200pt;}
.y27{bottom:981.737733pt;}
.yb8{bottom:995.088933pt;}
.y194{bottom:996.922267pt;}
.y16d{bottom:996.937600pt;}
.y104{bottom:996.937733pt;}
.y5a{bottom:996.937867pt;}
.y14f{bottom:997.195600pt;}
.y1b8{bottom:1006.706400pt;}
.y1ba{bottom:1007.692933pt;}
.ya{bottom:1007.693067pt;}
.y193{bottom:1016.922267pt;}
.y103{bottom:1016.937733pt;}
.y59{bottom:1016.937867pt;}
.hd{height:33.328125pt;}
.hf{height:34.080000pt;}
.h10{height:34.176000pt;}
.he{height:42.117188pt;}
.h11{height:43.812500pt;}
.h8{height:44.437500pt;}
.h5{height:45.568000pt;}
.ha{height:46.796875pt;}
.h12{height:47.218529pt;}
.h13{height:47.219062pt;}
.hc{height:51.114583pt;}
.h7{height:56.156250pt;}
.h9{height:59.023828pt;}
.h4{height:62.953125pt;}
.hb{height:67.563867pt;}
.h3{height:79.554688pt;}
.h14{height:83.541333pt;}
.h6{height:102.953125pt;}
.h2{height:122.203125pt;}
.h15{height:154.429688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:92.598400pt;}
.x26{left:93.548933pt;}
.x9{left:94.488133pt;}
.xb{left:98.267733pt;}
.x25{left:141.259867pt;}
.x22{left:144.566933pt;}
.x23{left:154.015733pt;}
.x24{left:178.582667pt;}
.x17{left:212.598400pt;}
.xe{left:220.407733pt;}
.x3{left:255.548933pt;}
.x5{left:264.364400pt;}
.x6{left:283.544800pt;}
.x2{left:291.508000pt;}
.x1a{left:299.628133pt;}
.x19{left:306.747333pt;}
.x1{left:316.208800pt;}
.x4{left:329.586400pt;}
.x7{left:348.368267pt;}
.x12{left:353.385867pt;}
.x1b{left:363.401600pt;}
.x11{left:375.433067pt;}
.x18{left:379.842533pt;}
.x1c{left:396.850400pt;}
.x16{left:444.094533pt;}
.xf{left:462.992133pt;}
.x13{left:537.322800pt;}
.xd{left:561.892267pt;}
.x1f{left:575.210667pt;}
.xc{left:602.310267pt;}
.x14{left:605.579733pt;}
.x21{left:608.234000pt;}
.x1d{left:609.552400pt;}
.x20{left:653.011333pt;}
.x15{left:654.230133pt;}
.x1e{left:675.212533pt;}
.x10{left:683.852800pt;}
.xa{left:691.532667pt;}
}




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