
    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_06980eb698c3b302381d151f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071000;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_a70c9457c03e830dccebca83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.071000;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_81003f994e13c33aadbe9db2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_f15e3119a84b20258e114f42.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_58d61d297ae7a8f00ddfcd5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095000;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_cf47215f13a0733c2d474748.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;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_846f4a46433f6eae0febbc8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060000;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_5cf805789b349fc6d5108887.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.029000;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_f7cc7668c7c537101687642e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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);}
.v2{vertical-align:-22.770000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.557000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.928800px;}
.ls2{letter-spacing:0.960000px;}
.ls4{letter-spacing:1.734000px;}
.ls6{letter-spacing:4.367400px;}
.ls5{letter-spacing:4.368000px;}
.ls3{letter-spacing:7.910400px;}
.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;}
}
.ws0{word-spacing:-35.466000px;}
.ws3{word-spacing:-30.720000px;}
.ws4{word-spacing:-22.218000px;}
.ws7{word-spacing:-22.080000px;}
.wsb{word-spacing:-21.756000px;}
.ws8{word-spacing:-18.906000px;}
.ws1{word-spacing:-17.094000px;}
.ws5{word-spacing:-16.320000px;}
.ws9{word-spacing:-15.456000px;}
.wsa{word-spacing:-13.209000px;}
.ws6{word-spacing:-12.806400px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-56.580000px;}
._2{margin-left:-35.466000px;}
._a{margin-left:-16.536000px;}
._5{margin-left:-15.402000px;}
._9{margin-left:-10.056000px;}
._b{margin-left:-7.902000px;}
._7{margin-left:-6.816000px;}
._3{margin-left:-5.796000px;}
._8{margin-left:-4.734000px;}
._4{margin-left:-3.360000px;}
._c{margin-left:-2.232000px;}
._0{margin-left:-1.104000px;}
._1{width:1.656000px;}
._6{width:3.072000px;}
._e{width:4.248000px;}
._d{width:5.277000px;}
._11{width:6.375000px;}
._12{width:7.383000px;}
._10{width:8.739000px;}
._f{width:9.753000px;}
._17{width:11.178000px;}
._19{width:12.841800px;}
._18{width:14.028000px;}
._15{width:16.491000px;}
._16{width:20.148000px;}
._13{width:144.504000px;}
.fc5{color:rgb(18,17,16);}
.fc3{color:rgb(184,174,141);}
.fc2{color:rgb(101,98,99);}
.fc4{color:rgb(29,25,26);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:40.020000px;}
.fs2{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fsd{font-size:48.300000px;}
.fsb{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs7{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:138.000000px;}
.fs6{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:77.376150px;}
.y9{bottom:98.759700px;}
.y19b{bottom:106.270050px;}
.y45{bottom:107.331600px;}
.y8{bottom:113.303700px;}
.y116{bottom:126.499200px;}
.ye3{bottom:127.281000px;}
.y159{bottom:127.301250px;}
.y146{bottom:127.311000px;}
.yc7{bottom:127.318500px;}
.ybc{bottom:127.341000px;}
.y86{bottom:127.395750px;}
.y105{bottom:127.441500px;}
.y96{bottom:127.538550px;}
.y148{bottom:127.709850px;}
.y7{bottom:127.847700px;}
.y44{bottom:128.336100px;}
.y16a{bottom:128.383200px;}
.y125{bottom:128.625150px;}
.y19a{bottom:133.956300px;}
.y6{bottom:142.391700px;}
.y147{bottom:142.703850px;}
.y169{bottom:143.377200px;}
.ye2{bottom:148.274250px;}
.y158{bottom:148.294500px;}
.y145{bottom:148.304250px;}
.yc6{bottom:148.311750px;}
.ybb{bottom:148.334250px;}
.y85{bottom:148.389000px;}
.y104{bottom:148.434750px;}
.y43{bottom:149.336100px;}
.y199{bottom:154.949550px;}
.yc{bottom:165.744150px;}
.ye1{bottom:169.267500px;}
.y157{bottom:169.287750px;}
.yc5{bottom:169.305000px;}
.yba{bottom:169.327500px;}
.y84{bottom:169.382250px;}
.y103{bottom:169.428000px;}
.y5d{bottom:173.322600px;}
.yb{bottom:181.944150px;}
.y198{bottom:188.712150px;}
.y156{bottom:190.281000px;}
.yc4{bottom:190.298250px;}
.y144{bottom:190.308000px;}
.yb9{bottom:190.320750px;}
.y83{bottom:190.375500px;}
.y102{bottom:190.421250px;}
.y42{bottom:192.831600px;}
.y5c{bottom:194.327100px;}
.ya{bottom:198.144150px;}
.y197{bottom:209.705400px;}
.ye0{bottom:211.271250px;}
.y155{bottom:211.274250px;}
.yc3{bottom:211.291500px;}
.y143{bottom:211.301250px;}
.y82{bottom:211.368750px;}
.y101{bottom:211.414500px;}
.y41{bottom:213.836100px;}
.y5b{bottom:215.331600px;}
.ydf{bottom:232.264500px;}
.y154{bottom:232.267500px;}
.yc2{bottom:232.284750px;}
.y142{bottom:232.294500px;}
.yb8{bottom:232.324500px;}
.y81{bottom:232.362000px;}
.y100{bottom:232.407750px;}
.y40{bottom:234.836100px;}
.y5a{bottom:236.336100px;}
.y196{bottom:243.481650px;}
.y153{bottom:253.260750px;}
.yc1{bottom:253.278000px;}
.y141{bottom:253.287750px;}
.yb7{bottom:253.317750px;}
.y80{bottom:253.355250px;}
.yff{bottom:253.401000px;}
.yde{bottom:253.472250px;}
.y59{bottom:257.336100px;}
.y195{bottom:264.474900px;}
.yc0{bottom:274.271250px;}
.y140{bottom:274.281000px;}
.yb6{bottom:274.311000px;}
.y7f{bottom:274.348500px;}
.yfe{bottom:274.394250px;}
.ydd{bottom:274.465500px;}
.y3f{bottom:278.331600px;}
.y194{bottom:285.468150px;}
.ybf{bottom:295.264500px;}
.y13f{bottom:295.274250px;}
.yb5{bottom:295.304250px;}
.y7e{bottom:295.341750px;}
.yfd{bottom:295.387500px;}
.ydc{bottom:295.458750px;}
.y3e{bottom:299.336100px;}
.y58{bottom:300.827100px;}
.y193{bottom:306.461400px;}
.y13e{bottom:316.267500px;}
.yb4{bottom:316.297500px;}
.y7d{bottom:316.335000px;}
.yfc{bottom:316.380750px;}
.ydb{bottom:316.452000px;}
.y3d{bottom:320.336100px;}
.y57{bottom:321.831600px;}
.y13d{bottom:337.260750px;}
.y7c{bottom:337.328250px;}
.yda{bottom:337.445250px;}
.y192{bottom:340.224000px;}
.y56{bottom:342.836100px;}
.y152{bottom:349.107600px;}
.yb3{bottom:358.301250px;}
.y7b{bottom:358.321500px;}
.yfb{bottom:358.384500px;}
.yd9{bottom:358.438500px;}
.ybe{bottom:359.979450px;}
.y191{bottom:361.217250px;}
.y3c{bottom:363.827100px;}
.y55{bottom:363.836100px;}
.y151{bottom:364.101600px;}
.y13c{bottom:379.264500px;}
.yb2{bottom:379.294500px;}
.y7a{bottom:379.314750px;}
.yfa{bottom:379.377750px;}
.yd8{bottom:379.431750px;}
.y3b{bottom:384.831600px;}
.y190{bottom:394.980000px;}
.yb1{bottom:400.287750px;}
.yf9{bottom:400.371000px;}
.yd7{bottom:400.425000px;}
.y3a{bottom:405.836100px;}
.y54{bottom:407.331600px;}
.y18f{bottom:415.973250px;}
.y13b{bottom:421.264500px;}
.y79{bottom:421.318500px;}
.yf8{bottom:421.364250px;}
.yd6{bottom:421.418250px;}
.y39{bottom:426.836100px;}
.y53{bottom:428.336100px;}
.yb0{bottom:442.291500px;}
.y78{bottom:442.311750px;}
.yf7{bottom:442.357500px;}
.yd5{bottom:442.411500px;}
.y52{bottom:449.336100px;}
.y18e{bottom:449.756100px;}
.yaf{bottom:463.284750px;}
.y77{bottom:463.305000px;}
.y166{bottom:463.314000px;}
.yd4{bottom:463.404750px;}
.y38{bottom:470.331600px;}
.y18d{bottom:470.749350px;}
.yae{bottom:484.278000px;}
.y76{bottom:484.298250px;}
.y165{bottom:484.307250px;}
.y13a{bottom:484.355250px;}
.yf6{bottom:484.361250px;}
.y37{bottom:491.336100px;}
.y18c{bottom:491.742600px;}
.y51{bottom:492.831600px;}
.yad{bottom:505.271250px;}
.y75{bottom:505.291500px;}
.y164{bottom:505.300500px;}
.y139{bottom:505.348500px;}
.yf5{bottom:505.354500px;}
.yd3{bottom:505.408500px;}
.y36{bottom:512.336100px;}
.y18b{bottom:512.735850px;}
.y50{bottom:513.836100px;}
.y74{bottom:526.284750px;}
.yac{bottom:526.317750px;}
.y138{bottom:526.341750px;}
.yf4{bottom:526.347750px;}
.yd2{bottom:526.401750px;}
.y18a{bottom:533.729100px;}
.y4f{bottom:534.836100px;}
.y73{bottom:547.278000px;}
.y163{bottom:547.304250px;}
.yab{bottom:547.311000px;}
.y137{bottom:547.335000px;}
.yf3{bottom:547.341000px;}
.yd1{bottom:547.395000px;}
.y35{bottom:555.831600px;}
.y189{bottom:567.518700px;}
.y72{bottom:568.271250px;}
.y162{bottom:568.297500px;}
.yaa{bottom:568.304250px;}
.y136{bottom:568.328250px;}
.yf2{bottom:568.334250px;}
.yd0{bottom:568.388250px;}
.y34{bottom:576.836100px;}
.y4e{bottom:578.327100px;}
.y188{bottom:588.511950px;}
.y71{bottom:589.264500px;}
.y161{bottom:589.290750px;}
.ya9{bottom:589.297500px;}
.y135{bottom:589.321500px;}
.yf1{bottom:589.327500px;}
.y124{bottom:589.329750px;}
.ycf{bottom:589.381500px;}
.y33{bottom:597.836100px;}
.y4d{bottom:599.331600px;}
.y187{bottom:609.505200px;}
.y160{bottom:610.284000px;}
.yf0{bottom:610.320750px;}
.y123{bottom:610.323000px;}
.y4c{bottom:620.336100px;}
.y186{bottom:630.498450px;}
.y70{bottom:631.264500px;}
.y95{bottom:631.284750px;}
.ya8{bottom:631.301250px;}
.yef{bottom:631.314000px;}
.y122{bottom:631.316250px;}
.y134{bottom:631.325250px;}
.y115{bottom:631.338000px;}
.yce{bottom:631.385250px;}
.y4b{bottom:641.336100px;}
.y32{bottom:642.827100px;}
.y185{bottom:651.491700px;}
.y94{bottom:652.278000px;}
.y15f{bottom:652.287750px;}
.yee{bottom:652.307250px;}
.y133{bottom:652.318500px;}
.y114{bottom:652.331250px;}
.ycd{bottom:652.378500px;}
.y31{bottom:663.831600px;}
.y184{bottom:672.491700px;}
.y93{bottom:673.271250px;}
.ya7{bottom:673.305000px;}
.y132{bottom:673.311750px;}
.y121{bottom:673.320000px;}
.y150{bottom:673.337250px;}
.ycc{bottom:673.371750px;}
.y4a{bottom:684.831600px;}
.y30{bottom:684.836100px;}
.y183{bottom:693.484950px;}
.y92{bottom:694.264500px;}
.y15e{bottom:694.291500px;}
.ya6{bottom:694.298250px;}
.y131{bottom:694.305000px;}
.yed{bottom:694.311000px;}
.y120{bottom:694.313250px;}
.y14f{bottom:694.330500px;}
.y113{bottom:694.335000px;}
.y6f{bottom:694.347750px;}
.ycb{bottom:694.365000px;}
.y21{bottom:697.792200px;}
.y2f{bottom:705.836100px;}
.y20{bottom:712.417200px;}
.y182{bottom:714.484950px;}
.y91{bottom:715.264500px;}
.y15d{bottom:715.284750px;}
.ya5{bottom:715.291500px;}
.y130{bottom:715.298250px;}
.y11f{bottom:715.306500px;}
.y173{bottom:715.311750px;}
.y14e{bottom:715.323750px;}
.y112{bottom:715.328250px;}
.yca{bottom:715.358250px;}
.y49{bottom:726.836100px;}
.y15c{bottom:736.278000px;}
.ya4{bottom:736.284750px;}
.y12f{bottom:736.291500px;}
.y11e{bottom:736.299750px;}
.y172{bottom:736.305000px;}
.yec{bottom:736.314750px;}
.y14d{bottom:736.317000px;}
.y111{bottom:736.321500px;}
.y6e{bottom:736.351500px;}
.y1f{bottom:742.417200px;}
.y181{bottom:748.240950px;}
.y2e{bottom:750.827100px;}
.y1e{bottom:757.042200px;}
.y15b{bottom:757.271250px;}
.ya3{bottom:757.278000px;}
.y12e{bottom:757.284750px;}
.y171{bottom:757.298250px;}
.yeb{bottom:757.308000px;}
.y14c{bottom:757.310250px;}
.y110{bottom:757.314750px;}
.y6d{bottom:757.344750px;}
.y48{bottom:771.827100px;}
.y2d{bottom:771.831600px;}
.y15a{bottom:778.264500px;}
.ya2{bottom:778.271250px;}
.y12d{bottom:778.278000px;}
.y170{bottom:778.291500px;}
.yea{bottom:778.301250px;}
.y11d{bottom:778.303500px;}
.y10f{bottom:778.308000px;}
.y90{bottom:778.320750px;}
.y6c{bottom:778.338000px;}
.y180{bottom:782.017050px;}
.y1d{bottom:787.042200px;}
.y47{bottom:792.831600px;}
.y2c{bottom:792.836100px;}
.ya1{bottom:799.264500px;}
.y12c{bottom:799.271250px;}
.y16f{bottom:799.284750px;}
.ye9{bottom:799.294500px;}
.y10e{bottom:799.301250px;}
.y8f{bottom:799.314000px;}
.y6b{bottom:799.331250px;}
.y1c{bottom:801.667200px;}
.y17f{bottom:803.010300px;}
.y4{bottom:809.862900px;}
.y2b{bottom:813.836100px;}
.y12b{bottom:820.264500px;}
.y16e{bottom:820.278000px;}
.y10d{bottom:820.294500px;}
.y11c{bottom:820.307250px;}
.y6a{bottom:820.324500px;}
.y126{bottom:822.688050px;}
.y17e{bottom:824.003550px;}
.y168{bottom:826.698150px;}
.y1b{bottom:831.667200px;}
.y46{bottom:834.836100px;}
.ya0{bottom:841.264500px;}
.y16d{bottom:841.271250px;}
.ye8{bottom:841.298250px;}
.y11b{bottom:841.300500px;}
.y69{bottom:841.317750px;}
.y167{bottom:841.692150px;}
.y17d{bottom:844.996800px;}
.y1a{bottom:846.292200px;}
.y2a{bottom:858.822600px;}
.y16c{bottom:862.264500px;}
.ye7{bottom:862.291500px;}
.y11a{bottom:862.293750px;}
.y10c{bottom:862.298250px;}
.y68{bottom:862.311000px;}
.y19{bottom:876.268200px;}
.y17c{bottom:878.759400px;}
.y29{bottom:879.827100px;}
.y16b{bottom:883.264500px;}
.ye6{bottom:883.284750px;}
.y119{bottom:883.287000px;}
.y10b{bottom:883.291500px;}
.y8e{bottom:883.304250px;}
.y18{bottom:891.268200px;}
.y17b{bottom:899.752650px;}
.y28{bottom:900.831600px;}
.ye5{bottom:904.278000px;}
.y14b{bottom:904.280250px;}
.y10a{bottom:904.284750px;}
.y8d{bottom:904.297500px;}
.y67{bottom:904.314750px;}
.y9f{bottom:904.325250px;}
.y17{bottom:905.896200px;}
.y3{bottom:908.494800px;}
.y16{bottom:920.524200px;}
.y27{bottom:921.836100px;}
.ye4{bottom:925.271250px;}
.y14a{bottom:925.273500px;}
.y109{bottom:925.278000px;}
.y8c{bottom:925.290750px;}
.y12a{bottom:925.308000px;}
.y9e{bottom:925.318500px;}
.ybd{bottom:925.325250px;}
.y17a{bottom:933.542400px;}
.y15{bottom:935.152200px;}
.y26{bottom:942.836100px;}
.y2{bottom:944.478300px;}
.y149{bottom:946.266750px;}
.y108{bottom:946.271250px;}
.y8b{bottom:946.284000px;}
.y129{bottom:946.301250px;}
.y9d{bottom:946.311750px;}
.y66{bottom:946.318500px;}
.y14{bottom:949.780200px;}
.y179{bottom:954.535650px;}
.y13{bottom:964.408200px;}
.y107{bottom:967.264500px;}
.y8a{bottom:967.277250px;}
.y128{bottom:967.294500px;}
.y9c{bottom:967.305000px;}
.y65{bottom:967.311750px;}
.y178{bottom:975.528900px;}
.y12{bottom:979.036200px;}
.y1{bottom:980.461800px;}
.y118{bottom:988.270500px;}
.y127{bottom:988.287750px;}
.y9b{bottom:988.298250px;}
.y64{bottom:988.305000px;}
.y11{bottom:993.664200px;}
.y177{bottom:996.522150px;}
.y10{bottom:1008.292200px;}
.y117{bottom:1009.263750px;}
.y106{bottom:1009.264500px;}
.y89{bottom:1009.281000px;}
.y9a{bottom:1009.291500px;}
.y63{bottom:1009.298250px;}
.y176{bottom:1017.515400px;}
.y25{bottom:1018.639800px;}
.yf{bottom:1022.917200px;}
.y88{bottom:1030.274250px;}
.y99{bottom:1030.284750px;}
.y62{bottom:1030.291500px;}
.y175{bottom:1038.515400px;}
.yc9{bottom:1051.267500px;}
.y98{bottom:1051.278000px;}
.y61{bottom:1051.284750px;}
.y174{bottom:1059.508650px;}
.y24{bottom:1062.139800px;}
.yc8{bottom:1072.260750px;}
.y97{bottom:1072.271250px;}
.y60{bottom:1072.278000px;}
.y5f{bottom:1093.271250px;}
.y23{bottom:1105.639800px;}
.y5e{bottom:1114.264500px;}
.ye{bottom:1155.104250px;}
.y87{bottom:1167.154650px;}
.yd{bottom:1169.504250px;}
.y22{bottom:1175.923950px;}
.h4{height:37.590820px;}
.h5{height:42.960938px;}
.he{height:44.472000px;}
.h6{height:48.331055px;}
.hd{height:52.320000px;}
.hf{height:56.856000px;}
.h10{height:56.994000px;}
.h3{height:57.552000px;}
.h11{height:57.864000px;}
.hb{height:57.891000px;}
.ha{height:59.064000px;}
.h9{height:68.016000px;}
.hc{height:73.248000px;}
.h7{height:80.544000px;}
.h2{height:120.336000px;}
.h8{height:130.800000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.358250px;}
.xc{left:87.634200px;}
.x2{left:97.476300px;}
.xd{left:106.299750px;}
.x9{left:132.109350px;}
.x7{left:136.099350px;}
.x4{left:144.006150px;}
.xa{left:165.988350px;}
.xb{left:187.274850px;}
.x8{left:191.494500px;}
.x1{left:255.118050px;}
.x6{left:446.456700px;}
.x5{left:805.747950px;}
@media print{
.v2{vertical-align:-20.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.825600pt;}
.ls2{letter-spacing:0.853333pt;}
.ls4{letter-spacing:1.541333pt;}
.ls6{letter-spacing:3.882133pt;}
.ls5{letter-spacing:3.882667pt;}
.ls3{letter-spacing:7.031467pt;}
.ws0{word-spacing:-31.525333pt;}
.ws3{word-spacing:-27.306667pt;}
.ws4{word-spacing:-19.749333pt;}
.ws7{word-spacing:-19.626667pt;}
.wsb{word-spacing:-19.338667pt;}
.ws8{word-spacing:-16.805333pt;}
.ws1{word-spacing:-15.194667pt;}
.ws5{word-spacing:-14.506667pt;}
.ws9{word-spacing:-13.738667pt;}
.wsa{word-spacing:-11.741333pt;}
.ws6{word-spacing:-11.383467pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-50.293333pt;}
._2{margin-left:-31.525333pt;}
._a{margin-left:-14.698667pt;}
._5{margin-left:-13.690667pt;}
._9{margin-left:-8.938667pt;}
._b{margin-left:-7.024000pt;}
._7{margin-left:-6.058667pt;}
._3{margin-left:-5.152000pt;}
._8{margin-left:-4.208000pt;}
._4{margin-left:-2.986667pt;}
._c{margin-left:-1.984000pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.472000pt;}
._6{width:2.730667pt;}
._e{width:3.776000pt;}
._d{width:4.690667pt;}
._11{width:5.666667pt;}
._12{width:6.562667pt;}
._10{width:7.768000pt;}
._f{width:8.669333pt;}
._17{width:9.936000pt;}
._19{width:11.414933pt;}
._18{width:12.469333pt;}
._15{width:14.658667pt;}
._16{width:17.909333pt;}
._13{width:128.448000pt;}
.fsc{font-size:35.573333pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fsd{font-size:42.933333pt;}
.fsb{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs7{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:122.666667pt;}
.fs6{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:68.778800pt;}
.y9{bottom:87.786400pt;}
.y19b{bottom:94.462267pt;}
.y45{bottom:95.405867pt;}
.y8{bottom:100.714400pt;}
.y116{bottom:112.443733pt;}
.ye3{bottom:113.138667pt;}
.y159{bottom:113.156667pt;}
.y146{bottom:113.165333pt;}
.yc7{bottom:113.172000pt;}
.ybc{bottom:113.192000pt;}
.y86{bottom:113.240667pt;}
.y105{bottom:113.281333pt;}
.y96{bottom:113.367600pt;}
.y148{bottom:113.519867pt;}
.y7{bottom:113.642400pt;}
.y44{bottom:114.076533pt;}
.y16a{bottom:114.118400pt;}
.y125{bottom:114.333467pt;}
.y19a{bottom:119.072267pt;}
.y6{bottom:126.570400pt;}
.y147{bottom:126.847867pt;}
.y169{bottom:127.446400pt;}
.ye2{bottom:131.799333pt;}
.y158{bottom:131.817333pt;}
.y145{bottom:131.826000pt;}
.yc6{bottom:131.832667pt;}
.ybb{bottom:131.852667pt;}
.y85{bottom:131.901333pt;}
.y104{bottom:131.942000pt;}
.y43{bottom:132.743200pt;}
.y199{bottom:137.732933pt;}
.yc{bottom:147.328133pt;}
.ye1{bottom:150.460000pt;}
.y157{bottom:150.478000pt;}
.yc5{bottom:150.493333pt;}
.yba{bottom:150.513333pt;}
.y84{bottom:150.562000pt;}
.y103{bottom:150.602667pt;}
.y5d{bottom:154.064533pt;}
.yb{bottom:161.728133pt;}
.y198{bottom:167.744133pt;}
.y156{bottom:169.138667pt;}
.yc4{bottom:169.154000pt;}
.y144{bottom:169.162667pt;}
.yb9{bottom:169.174000pt;}
.y83{bottom:169.222667pt;}
.y102{bottom:169.263333pt;}
.y42{bottom:171.405867pt;}
.y5c{bottom:172.735200pt;}
.ya{bottom:176.128133pt;}
.y197{bottom:186.404800pt;}
.ye0{bottom:187.796667pt;}
.y155{bottom:187.799333pt;}
.yc3{bottom:187.814667pt;}
.y143{bottom:187.823333pt;}
.y82{bottom:187.883333pt;}
.y101{bottom:187.924000pt;}
.y41{bottom:190.076533pt;}
.y5b{bottom:191.405867pt;}
.ydf{bottom:206.457333pt;}
.y154{bottom:206.460000pt;}
.yc2{bottom:206.475333pt;}
.y142{bottom:206.484000pt;}
.yb8{bottom:206.510667pt;}
.y81{bottom:206.544000pt;}
.y100{bottom:206.584667pt;}
.y40{bottom:208.743200pt;}
.y5a{bottom:210.076533pt;}
.y196{bottom:216.428133pt;}
.y153{bottom:225.120667pt;}
.yc1{bottom:225.136000pt;}
.y141{bottom:225.144667pt;}
.yb7{bottom:225.171333pt;}
.y80{bottom:225.204667pt;}
.yff{bottom:225.245333pt;}
.yde{bottom:225.308667pt;}
.y59{bottom:228.743200pt;}
.y195{bottom:235.088800pt;}
.yc0{bottom:243.796667pt;}
.y140{bottom:243.805333pt;}
.yb6{bottom:243.832000pt;}
.y7f{bottom:243.865333pt;}
.yfe{bottom:243.906000pt;}
.ydd{bottom:243.969333pt;}
.y3f{bottom:247.405867pt;}
.y194{bottom:253.749467pt;}
.ybf{bottom:262.457333pt;}
.y13f{bottom:262.466000pt;}
.yb5{bottom:262.492667pt;}
.y7e{bottom:262.526000pt;}
.yfd{bottom:262.566667pt;}
.ydc{bottom:262.630000pt;}
.y3e{bottom:266.076533pt;}
.y58{bottom:267.401867pt;}
.y193{bottom:272.410133pt;}
.y13e{bottom:281.126667pt;}
.yb4{bottom:281.153333pt;}
.y7d{bottom:281.186667pt;}
.yfc{bottom:281.227333pt;}
.ydb{bottom:281.290667pt;}
.y3d{bottom:284.743200pt;}
.y57{bottom:286.072533pt;}
.y13d{bottom:299.787333pt;}
.y7c{bottom:299.847333pt;}
.yda{bottom:299.951333pt;}
.y192{bottom:302.421333pt;}
.y56{bottom:304.743200pt;}
.y152{bottom:310.317867pt;}
.yb3{bottom:318.490000pt;}
.y7b{bottom:318.508000pt;}
.yfb{bottom:318.564000pt;}
.yd9{bottom:318.612000pt;}
.ybe{bottom:319.981733pt;}
.y191{bottom:321.082000pt;}
.y3c{bottom:323.401867pt;}
.y55{bottom:323.409867pt;}
.y151{bottom:323.645867pt;}
.y13c{bottom:337.124000pt;}
.yb2{bottom:337.150667pt;}
.y7a{bottom:337.168667pt;}
.yfa{bottom:337.224667pt;}
.yd8{bottom:337.272667pt;}
.y3b{bottom:342.072533pt;}
.y190{bottom:351.093333pt;}
.yb1{bottom:355.811333pt;}
.yf9{bottom:355.885333pt;}
.yd7{bottom:355.933333pt;}
.y3a{bottom:360.743200pt;}
.y54{bottom:362.072533pt;}
.y18f{bottom:369.754000pt;}
.y13b{bottom:374.457333pt;}
.y79{bottom:374.505333pt;}
.yf8{bottom:374.546000pt;}
.yd6{bottom:374.594000pt;}
.y39{bottom:379.409867pt;}
.y53{bottom:380.743200pt;}
.yb0{bottom:393.148000pt;}
.y78{bottom:393.166000pt;}
.yf7{bottom:393.206667pt;}
.yd5{bottom:393.254667pt;}
.y52{bottom:399.409867pt;}
.y18e{bottom:399.783200pt;}
.yaf{bottom:411.808667pt;}
.y77{bottom:411.826667pt;}
.y166{bottom:411.834667pt;}
.yd4{bottom:411.915333pt;}
.y38{bottom:418.072533pt;}
.y18d{bottom:418.443867pt;}
.yae{bottom:430.469333pt;}
.y76{bottom:430.487333pt;}
.y165{bottom:430.495333pt;}
.y13a{bottom:430.538000pt;}
.yf6{bottom:430.543333pt;}
.y37{bottom:436.743200pt;}
.y18c{bottom:437.104533pt;}
.y51{bottom:438.072533pt;}
.yad{bottom:449.130000pt;}
.y75{bottom:449.148000pt;}
.y164{bottom:449.156000pt;}
.y139{bottom:449.198667pt;}
.yf5{bottom:449.204000pt;}
.yd3{bottom:449.252000pt;}
.y36{bottom:455.409867pt;}
.y18b{bottom:455.765200pt;}
.y50{bottom:456.743200pt;}
.y74{bottom:467.808667pt;}
.yac{bottom:467.838000pt;}
.y138{bottom:467.859333pt;}
.yf4{bottom:467.864667pt;}
.yd2{bottom:467.912667pt;}
.y18a{bottom:474.425867pt;}
.y4f{bottom:475.409867pt;}
.y73{bottom:486.469333pt;}
.y163{bottom:486.492667pt;}
.yab{bottom:486.498667pt;}
.y137{bottom:486.520000pt;}
.yf3{bottom:486.525333pt;}
.yd1{bottom:486.573333pt;}
.y35{bottom:494.072533pt;}
.y189{bottom:504.461067pt;}
.y72{bottom:505.130000pt;}
.y162{bottom:505.153333pt;}
.yaa{bottom:505.159333pt;}
.y136{bottom:505.180667pt;}
.yf2{bottom:505.186000pt;}
.yd0{bottom:505.234000pt;}
.y34{bottom:512.743200pt;}
.y4e{bottom:514.068533pt;}
.y188{bottom:523.121733pt;}
.y71{bottom:523.790667pt;}
.y161{bottom:523.814000pt;}
.ya9{bottom:523.820000pt;}
.y135{bottom:523.841333pt;}
.yf1{bottom:523.846667pt;}
.y124{bottom:523.848667pt;}
.ycf{bottom:523.894667pt;}
.y33{bottom:531.409867pt;}
.y4d{bottom:532.739200pt;}
.y187{bottom:541.782400pt;}
.y160{bottom:542.474667pt;}
.yf0{bottom:542.507333pt;}
.y123{bottom:542.509333pt;}
.y4c{bottom:551.409867pt;}
.y186{bottom:560.443067pt;}
.y70{bottom:561.124000pt;}
.y95{bottom:561.142000pt;}
.ya8{bottom:561.156667pt;}
.yef{bottom:561.168000pt;}
.y122{bottom:561.170000pt;}
.y134{bottom:561.178000pt;}
.y115{bottom:561.189333pt;}
.yce{bottom:561.231333pt;}
.y4b{bottom:570.076533pt;}
.y32{bottom:571.401867pt;}
.y185{bottom:579.103733pt;}
.y94{bottom:579.802667pt;}
.y15f{bottom:579.811333pt;}
.yee{bottom:579.828667pt;}
.y133{bottom:579.838667pt;}
.y114{bottom:579.850000pt;}
.ycd{bottom:579.892000pt;}
.y31{bottom:590.072533pt;}
.y184{bottom:597.770400pt;}
.y93{bottom:598.463333pt;}
.ya7{bottom:598.493333pt;}
.y132{bottom:598.499333pt;}
.y121{bottom:598.506667pt;}
.y150{bottom:598.522000pt;}
.ycc{bottom:598.552667pt;}
.y4a{bottom:608.739200pt;}
.y30{bottom:608.743200pt;}
.y183{bottom:616.431067pt;}
.y92{bottom:617.124000pt;}
.y15e{bottom:617.148000pt;}
.ya6{bottom:617.154000pt;}
.y131{bottom:617.160000pt;}
.yed{bottom:617.165333pt;}
.y120{bottom:617.167333pt;}
.y14f{bottom:617.182667pt;}
.y113{bottom:617.186667pt;}
.y6f{bottom:617.198000pt;}
.ycb{bottom:617.213333pt;}
.y21{bottom:620.259733pt;}
.y2f{bottom:627.409867pt;}
.y20{bottom:633.259733pt;}
.y182{bottom:635.097733pt;}
.y91{bottom:635.790667pt;}
.y15d{bottom:635.808667pt;}
.ya5{bottom:635.814667pt;}
.y130{bottom:635.820667pt;}
.y11f{bottom:635.828000pt;}
.y173{bottom:635.832667pt;}
.y14e{bottom:635.843333pt;}
.y112{bottom:635.847333pt;}
.yca{bottom:635.874000pt;}
.y49{bottom:646.076533pt;}
.y15c{bottom:654.469333pt;}
.ya4{bottom:654.475333pt;}
.y12f{bottom:654.481333pt;}
.y11e{bottom:654.488667pt;}
.y172{bottom:654.493333pt;}
.yec{bottom:654.502000pt;}
.y14d{bottom:654.504000pt;}
.y111{bottom:654.508000pt;}
.y6e{bottom:654.534667pt;}
.y1f{bottom:659.926400pt;}
.y181{bottom:665.103067pt;}
.y2e{bottom:667.401867pt;}
.y1e{bottom:672.926400pt;}
.y15b{bottom:673.130000pt;}
.ya3{bottom:673.136000pt;}
.y12e{bottom:673.142000pt;}
.y171{bottom:673.154000pt;}
.yeb{bottom:673.162667pt;}
.y14c{bottom:673.164667pt;}
.y110{bottom:673.168667pt;}
.y6d{bottom:673.195333pt;}
.y48{bottom:686.068533pt;}
.y2d{bottom:686.072533pt;}
.y15a{bottom:691.790667pt;}
.ya2{bottom:691.796667pt;}
.y12d{bottom:691.802667pt;}
.y170{bottom:691.814667pt;}
.yea{bottom:691.823333pt;}
.y11d{bottom:691.825333pt;}
.y10f{bottom:691.829333pt;}
.y90{bottom:691.840667pt;}
.y6c{bottom:691.856000pt;}
.y180{bottom:695.126267pt;}
.y1d{bottom:699.593067pt;}
.y47{bottom:704.739200pt;}
.y2c{bottom:704.743200pt;}
.ya1{bottom:710.457333pt;}
.y12c{bottom:710.463333pt;}
.y16f{bottom:710.475333pt;}
.ye9{bottom:710.484000pt;}
.y10e{bottom:710.490000pt;}
.y8f{bottom:710.501333pt;}
.y6b{bottom:710.516667pt;}
.y1c{bottom:712.593067pt;}
.y17f{bottom:713.786933pt;}
.y4{bottom:719.878133pt;}
.y2b{bottom:723.409867pt;}
.y12b{bottom:729.124000pt;}
.y16e{bottom:729.136000pt;}
.y10d{bottom:729.150667pt;}
.y11c{bottom:729.162000pt;}
.y6a{bottom:729.177333pt;}
.y126{bottom:731.278267pt;}
.y17e{bottom:732.447600pt;}
.y168{bottom:734.842800pt;}
.y1b{bottom:739.259733pt;}
.y46{bottom:742.076533pt;}
.ya0{bottom:747.790667pt;}
.y16d{bottom:747.796667pt;}
.ye8{bottom:747.820667pt;}
.y11b{bottom:747.822667pt;}
.y69{bottom:747.838000pt;}
.y167{bottom:748.170800pt;}
.y17d{bottom:751.108267pt;}
.y1a{bottom:752.259733pt;}
.y2a{bottom:763.397867pt;}
.y16c{bottom:766.457333pt;}
.ye7{bottom:766.481333pt;}
.y11a{bottom:766.483333pt;}
.y10c{bottom:766.487333pt;}
.y68{bottom:766.498667pt;}
.y19{bottom:778.905067pt;}
.y17c{bottom:781.119467pt;}
.y29{bottom:782.068533pt;}
.y16b{bottom:785.124000pt;}
.ye6{bottom:785.142000pt;}
.y119{bottom:785.144000pt;}
.y10b{bottom:785.148000pt;}
.y8e{bottom:785.159333pt;}
.y18{bottom:792.238400pt;}
.y17b{bottom:799.780133pt;}
.y28{bottom:800.739200pt;}
.ye5{bottom:803.802667pt;}
.y14b{bottom:803.804667pt;}
.y10a{bottom:803.808667pt;}
.y8d{bottom:803.820000pt;}
.y67{bottom:803.835333pt;}
.y9f{bottom:803.844667pt;}
.y17{bottom:805.241067pt;}
.y3{bottom:807.550933pt;}
.y16{bottom:818.243733pt;}
.y27{bottom:819.409867pt;}
.ye4{bottom:822.463333pt;}
.y14a{bottom:822.465333pt;}
.y109{bottom:822.469333pt;}
.y8c{bottom:822.480667pt;}
.y12a{bottom:822.496000pt;}
.y9e{bottom:822.505333pt;}
.ybd{bottom:822.511333pt;}
.y17a{bottom:829.815467pt;}
.y15{bottom:831.246400pt;}
.y26{bottom:838.076533pt;}
.y2{bottom:839.536267pt;}
.y149{bottom:841.126000pt;}
.y108{bottom:841.130000pt;}
.y8b{bottom:841.141333pt;}
.y129{bottom:841.156667pt;}
.y9d{bottom:841.166000pt;}
.y66{bottom:841.172000pt;}
.y14{bottom:844.249067pt;}
.y179{bottom:848.476133pt;}
.y13{bottom:857.251733pt;}
.y107{bottom:859.790667pt;}
.y8a{bottom:859.802000pt;}
.y128{bottom:859.817333pt;}
.y9c{bottom:859.826667pt;}
.y65{bottom:859.832667pt;}
.y178{bottom:867.136800pt;}
.y12{bottom:870.254400pt;}
.y1{bottom:871.521600pt;}
.y118{bottom:878.462667pt;}
.y127{bottom:878.478000pt;}
.y9b{bottom:878.487333pt;}
.y64{bottom:878.493333pt;}
.y11{bottom:883.257067pt;}
.y177{bottom:885.797467pt;}
.y10{bottom:896.259733pt;}
.y117{bottom:897.123333pt;}
.y106{bottom:897.124000pt;}
.y89{bottom:897.138667pt;}
.y9a{bottom:897.148000pt;}
.y63{bottom:897.154000pt;}
.y176{bottom:904.458133pt;}
.y25{bottom:905.457600pt;}
.yf{bottom:909.259733pt;}
.y88{bottom:915.799333pt;}
.y99{bottom:915.808667pt;}
.y62{bottom:915.814667pt;}
.y175{bottom:923.124800pt;}
.yc9{bottom:934.460000pt;}
.y98{bottom:934.469333pt;}
.y61{bottom:934.475333pt;}
.y174{bottom:941.785467pt;}
.y24{bottom:944.124267pt;}
.yc8{bottom:953.120667pt;}
.y97{bottom:953.130000pt;}
.y60{bottom:953.136000pt;}
.y5f{bottom:971.796667pt;}
.y23{bottom:982.790933pt;}
.y5e{bottom:990.457333pt;}
.ye{bottom:1026.759333pt;}
.y87{bottom:1037.470800pt;}
.yd{bottom:1039.559333pt;}
.y22{bottom:1045.265733pt;}
.h4{height:33.414062pt;}
.h5{height:38.187500pt;}
.he{height:39.530667pt;}
.h6{height:42.960938pt;}
.hd{height:46.506667pt;}
.hf{height:50.538667pt;}
.h10{height:50.661333pt;}
.h3{height:51.157333pt;}
.h11{height:51.434667pt;}
.hb{height:51.458667pt;}
.ha{height:52.501333pt;}
.h9{height:60.458667pt;}
.hc{height:65.109333pt;}
.h7{height:71.594667pt;}
.h2{height:106.965333pt;}
.h8{height:116.266667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.874000pt;}
.xc{left:77.897067pt;}
.x2{left:86.645600pt;}
.xd{left:94.488667pt;}
.x9{left:117.430533pt;}
.x7{left:120.977200pt;}
.x4{left:128.005467pt;}
.xa{left:147.545200pt;}
.xb{left:166.466533pt;}
.x8{left:170.217333pt;}
.x1{left:226.771600pt;}
.x6{left:396.850400pt;}
.x5{left:716.220400pt;}
}




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