
    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_476ec240761e18039c841430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_255f208acf617de2b5b9bd39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_41549ca27442a0df865b6574.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_0c960d37b4889cfffbd8e02c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_621ae51a60ad3b91ad4caf3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_942e95244786e1e2d89ce452.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.764160;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_fd2ab745d0f25e7db4860960.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128906;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_47b85f1cc048ad817b206fdb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_ed9bd0d68d3cc8c208c0f46e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973145;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_a399dff63bc4c9d9d4b4f64e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_476ec240761e18039c841430.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf3dd3d9c3e322e2f0b45d2b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.320000px;}
.ls1{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.990000px;}
.ls2{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.726000px;}
.ls6{letter-spacing:4.884000px;}
.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:-84.000000px;}
.ws26{word-spacing:-16.632000px;}
.ws5{word-spacing:-15.906000px;}
.ws1{word-spacing:-13.014000px;}
.ws2{word-spacing:-11.934000px;}
.ws31{word-spacing:-7.788000px;}
.ws35{word-spacing:-5.082000px;}
.ws1a{word-spacing:-4.884000px;}
.ws23{word-spacing:-3.102000px;}
.ws13{word-spacing:-2.970000px;}
.ws28{word-spacing:-2.904000px;}
.ws6{word-spacing:-2.574000px;}
.ws1b{word-spacing:-1.782000px;}
.ws9{word-spacing:-1.386000px;}
.ws2e{word-spacing:-1.320000px;}
.ws12{word-spacing:-1.122000px;}
.wsf{word-spacing:-0.462000px;}
.ws3{word-spacing:0.000000px;}
.ws27{word-spacing:0.264000px;}
.ws2f{word-spacing:0.330000px;}
.ws7{word-spacing:0.660000px;}
.ws2c{word-spacing:0.726000px;}
.ws10{word-spacing:0.990000px;}
.ws4{word-spacing:1.080000px;}
.ws21{word-spacing:1.188000px;}
.ws16{word-spacing:1.320000px;}
.ws15{word-spacing:2.508000px;}
.ws11{word-spacing:2.772000px;}
.ws1e{word-spacing:2.970000px;}
.ws36{word-spacing:3.300000px;}
.ws22{word-spacing:3.432000px;}
.wsc{word-spacing:3.498000px;}
.ws1c{word-spacing:3.960000px;}
.ws30{word-spacing:4.686000px;}
.ws33{word-spacing:4.884000px;}
.ws29{word-spacing:5.676000px;}
.wsb{word-spacing:6.204000px;}
.ws34{word-spacing:6.336000px;}
.ws25{word-spacing:6.600000px;}
.ws32{word-spacing:6.666000px;}
.ws2d{word-spacing:6.930000px;}
.wsd{word-spacing:7.194000px;}
.ws1f{word-spacing:7.788000px;}
.ws24{word-spacing:8.712000px;}
.ws2a{word-spacing:9.372000px;}
.wse{word-spacing:9.504000px;}
.ws2b{word-spacing:14.454000px;}
.ws1d{word-spacing:16.764000px;}
.ws20{word-spacing:18.480000px;}
.ws19{word-spacing:20.592000px;}
.ws14{word-spacing:83.052000px;}
.ws18{word-spacing:83.160000px;}
.wsa{word-spacing:85.536000px;}
.ws17{word-spacing:88.452000px;}
.ws8{word-spacing:100.224000px;}
._18{margin-left:-9.589800px;}
._1a{margin-left:-8.071800px;}
._12{margin-left:-7.000200px;}
._a{margin-left:-5.823600px;}
._7{margin-left:-4.665600px;}
._5{margin-left:-3.240000px;}
._0{margin-left:-1.798200px;}
._3{width:1.188000px;}
._6{width:2.305800px;}
._e{width:3.306600px;}
._b{width:4.315200px;}
._4{width:5.400000px;}
._2{width:6.982200px;}
._1{width:8.326800px;}
._d{width:9.350400px;}
._c{width:10.876800px;}
._10{width:11.965800px;}
._8{width:13.206600px;}
._f{width:14.777400px;}
._9{width:17.721000px;}
._17{width:19.602000px;}
._11{width:21.529200px;}
._19{width:22.842600px;}
._16{width:24.215400px;}
._14{width:25.489200px;}
._15{width:58.212000px;}
._13{width:85.644000px;}
.fc3{color:rgb(111,116,125);}
.fc2{color:rgb(112,109,110);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(57,53,54);}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:126.000000px;}
.fs4{font-size:690.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:51.608550px;}
.y1f{bottom:62.354850px;}
.y1{bottom:67.808550px;}
.y21{bottom:84.008550px;}
.y129{bottom:127.576950px;}
.y17a{bottom:130.661100px;}
.y6c{bottom:131.707500px;}
.y151{bottom:131.949300px;}
.y99{bottom:131.976300px;}
.y102{bottom:132.029100px;}
.y109{bottom:135.329100px;}
.y14{bottom:136.039200px;}
.yb7{bottom:138.536100px;}
.y128{bottom:148.581450px;}
.y1a2{bottom:148.859100px;}
.y179{bottom:150.164100px;}
.y13{bottom:152.239200px;}
.y6b{bottom:152.712000px;}
.y150{bottom:152.953800px;}
.y98{bottom:152.980800px;}
.y101{bottom:153.033600px;}
.y108{bottom:156.333600px;}
.ydf{bottom:166.651800px;}
.y1a1{bottom:168.362100px;}
.y12{bottom:168.439200px;}
.y127{bottom:169.585950px;}
.y178{bottom:169.667100px;}
.y6a{bottom:173.716500px;}
.y14f{bottom:173.958300px;}
.y97{bottom:173.985300px;}
.y100{bottom:174.038100px;}
.y107{bottom:177.338100px;}
.y11{bottom:184.639200px;}
.yde{bottom:187.656300px;}
.y1a0{bottom:187.865100px;}
.y126{bottom:190.590450px;}
.y69{bottom:194.721000px;}
.y14e{bottom:194.962800px;}
.y96{bottom:194.989800px;}
.yff{bottom:195.042600px;}
.y106{bottom:198.342600px;}
.y10{bottom:200.839200px;}
.y177{bottom:201.924600px;}
.ydd{bottom:208.660800px;}
.y125{bottom:211.594950px;}
.y1be{bottom:211.872600px;}
.y68{bottom:215.725500px;}
.y14d{bottom:215.967300px;}
.y95{bottom:215.994300px;}
.yfe{bottom:216.047100px;}
.y105{bottom:219.347100px;}
.y19f{bottom:220.122600px;}
.y176{bottom:221.427600px;}
.yf{bottom:224.234700px;}
.ydc{bottom:229.665300px;}
.y124{bottom:232.599450px;}
.y1bd{bottom:232.877100px;}
.y67{bottom:236.730000px;}
.y14c{bottom:236.971800px;}
.y94{bottom:236.998800px;}
.y19e{bottom:239.625600px;}
.y104{bottom:240.351600px;}
.ye{bottom:240.434700px;}
.y175{bottom:240.930600px;}
.yfd{bottom:245.549100px;}
.ydb{bottom:250.669800px;}
.y1bc{bottom:252.380100px;}
.y123{bottom:253.603950px;}
.yd{bottom:256.634700px;}
.y66{bottom:257.734500px;}
.y14b{bottom:257.976300px;}
.y93{bottom:258.003300px;}
.y19d{bottom:259.128600px;}
.y103{bottom:261.356100px;}
.yda{bottom:271.674300px;}
.yc{bottom:272.834700px;}
.y174{bottom:273.188100px;}
.y122{bottom:274.608450px;}
.y65{bottom:278.739000px;}
.y14a{bottom:278.980800px;}
.y92{bottom:279.007800px;}
.yfc{bottom:282.360600px;}
.y1bb{bottom:284.637600px;}
.y19c{bottom:291.386100px;}
.yd9{bottom:292.678800px;}
.y173{bottom:292.691100px;}
.y64{bottom:299.743500px;}
.yb{bottom:299.834700px;}
.y149{bottom:299.985300px;}
.y91{bottom:300.012300px;}
.yfb{bottom:303.365100px;}
.y1ba{bottom:304.140600px;}
.y19b{bottom:310.889100px;}
.y172{bottom:312.194100px;}
.y121{bottom:312.616200px;}
.yd8{bottom:313.683300px;}
.ya{bottom:316.034700px;}
.y63{bottom:320.748000px;}
.y148{bottom:320.989800px;}
.y90{bottom:321.016800px;}
.yfa{bottom:324.369600px;}
.y19a{bottom:330.392100px;}
.y9{bottom:332.234700px;}
.yd7{bottom:334.687800px;}
.y1b9{bottom:336.398100px;}
.y62{bottom:341.752500px;}
.y147{bottom:341.994300px;}
.y8f{bottom:342.021300px;}
.y171{bottom:344.451600px;}
.yf9{bottom:345.374100px;}
.y8{bottom:348.434700px;}
.yd6{bottom:355.692300px;}
.y1b8{bottom:355.901100px;}
.y120{bottom:361.907100px;}
.y199{bottom:362.649600px;}
.y61{bottom:362.757000px;}
.y146{bottom:362.998800px;}
.y8e{bottom:363.025800px;}
.y170{bottom:363.954600px;}
.y7{bottom:364.634700px;}
.yf8{bottom:366.378600px;}
.y1b7{bottom:375.404100px;}
.yd5{bottom:376.696800px;}
.y6{bottom:380.834700px;}
.y198{bottom:382.152600px;}
.y11f{bottom:382.911600px;}
.y16f{bottom:383.457600px;}
.y60{bottom:383.761500px;}
.y145{bottom:384.003300px;}
.y8d{bottom:384.030300px;}
.yf7{bottom:387.383100px;}
.y1b6{bottom:394.907100px;}
.yd4{bottom:397.701300px;}
.y197{bottom:401.655600px;}
.y11e{bottom:403.916100px;}
.y5f{bottom:404.766000px;}
.y144{bottom:405.007800px;}
.y8c{bottom:405.034800px;}
.yf6{bottom:408.387600px;}
.y16e{bottom:415.715100px;}
.yd3{bottom:418.705800px;}
.y196{bottom:421.158600px;}
.y11d{bottom:424.920600px;}
.y5e{bottom:425.770500px;}
.y143{bottom:426.012300px;}
.y8b{bottom:426.039300px;}
.y1b5{bottom:427.164600px;}
.yf5{bottom:429.392100px;}
.y16d{bottom:435.218100px;}
.yd2{bottom:439.710300px;}
.y11c{bottom:445.925100px;}
.y1b4{bottom:446.667600px;}
.y5d{bottom:446.775000px;}
.y142{bottom:447.016800px;}
.y8a{bottom:447.043800px;}
.yf4{bottom:450.396600px;}
.y195{bottom:453.416100px;}
.y16c{bottom:454.721100px;}
.yd1{bottom:460.714800px;}
.y1b3{bottom:466.170600px;}
.y11b{bottom:466.929600px;}
.y5c{bottom:467.779500px;}
.y141{bottom:468.021300px;}
.y89{bottom:468.048300px;}
.y3d{bottom:468.626850px;}
.yf3{bottom:471.401100px;}
.y4{bottom:472.320000px;}
.y194{bottom:472.919100px;}
.yd0{bottom:481.719300px;}
.y16b{bottom:486.978600px;}
.y11a{bottom:487.934100px;}
.y5b{bottom:488.784000px;}
.y140{bottom:489.025800px;}
.y88{bottom:489.052800px;}
.yf2{bottom:492.405600px;}
.y193{bottom:492.422100px;}
.y3{bottom:497.826000px;}
.y3c{bottom:498.128850px;}
.y1b2{bottom:498.428100px;}
.ycf{bottom:502.723800px;}
.y16a{bottom:506.481600px;}
.y119{bottom:508.938600px;}
.y5a{bottom:509.788500px;}
.y13f{bottom:510.030300px;}
.y87{bottom:510.057300px;}
.y192{bottom:511.925100px;}
.yf1{bottom:513.410100px;}
.y1b1{bottom:517.931100px;}
.y3b{bottom:519.133350px;}
.yce{bottom:523.728300px;}
.y169{bottom:525.984600px;}
.y118{bottom:529.943100px;}
.y59{bottom:530.793000px;}
.y13e{bottom:531.034800px;}
.y86{bottom:531.061800px;}
.yf0{bottom:534.414600px;}
.yb6{bottom:534.447600px;}
.y1b0{bottom:537.434100px;}
.y3a{bottom:540.137850px;}
.y191{bottom:544.182600px;}
.ycd{bottom:544.732800px;}
.y117{bottom:550.947600px;}
.y58{bottom:551.797500px;}
.y13d{bottom:552.039300px;}
.y85{bottom:552.066300px;}
.yef{bottom:555.419100px;}
.yb5{bottom:555.452100px;}
.y5{bottom:556.803750px;}
.y1af{bottom:556.937100px;}
.y168{bottom:558.242100px;}
.y39{bottom:561.142350px;}
.ycc{bottom:565.737300px;}
.y116{bottom:571.952100px;}
.y57{bottom:572.802000px;}
.y13c{bottom:573.043800px;}
.y84{bottom:573.070800px;}
.yb4{bottom:574.955100px;}
.yee{bottom:576.423600px;}
.y190{bottom:576.440100px;}
.y167{bottom:577.745100px;}
.y38{bottom:582.146850px;}
.ycb{bottom:586.741800px;}
.y1ae{bottom:589.194600px;}
.y115{bottom:592.956600px;}
.y56{bottom:593.806500px;}
.y13b{bottom:594.048300px;}
.y83{bottom:594.075300px;}
.yb3{bottom:594.458100px;}
.y18f{bottom:595.943100px;}
.y166{bottom:597.248100px;}
.yed{bottom:597.428100px;}
.y37{bottom:603.151350px;}
.yca{bottom:607.746300px;}
.y1ad{bottom:608.697600px;}
.yb2{bottom:613.961100px;}
.y55{bottom:614.811000px;}
.y13a{bottom:615.052800px;}
.y82{bottom:615.079800px;}
.y18e{bottom:615.446100px;}
.y165{bottom:616.751100px;}
.yec{bottom:618.432600px;}
.y36{bottom:624.155850px;}
.y1e{bottom:627.705450px;}
.y1ac{bottom:628.200600px;}
.yc9{bottom:628.750800px;}
.yb1{bottom:633.464100px;}
.y114{bottom:634.965600px;}
.y54{bottom:635.815500px;}
.y139{bottom:636.057300px;}
.y81{bottom:636.084300px;}
.yeb{bottom:639.437100px;}
.y35{bottom:645.160350px;}
.y18d{bottom:647.703600px;}
.y164{bottom:649.008600px;}
.yc8{bottom:649.755300px;}
.y1d{bottom:650.208450px;}
.yb0{bottom:652.967100px;}
.y113{bottom:655.970100px;}
.y53{bottom:656.820000px;}
.y138{bottom:657.061800px;}
.y80{bottom:657.088800px;}
.yea{bottom:660.441600px;}
.y34{bottom:666.164850px;}
.y18c{bottom:667.206600px;}
.y163{bottom:668.511600px;}
.yc7{bottom:670.759800px;}
.yaf{bottom:672.470100px;}
.y1c{bottom:672.711450px;}
.y112{bottom:676.974600px;}
.y52{bottom:677.824500px;}
.y137{bottom:678.066300px;}
.y7f{bottom:678.093300px;}
.y1ab{bottom:679.961100px;}
.ye9{bottom:681.446100px;}
.y18b{bottom:686.709600px;}
.y33{bottom:687.169350px;}
.yc6{bottom:691.764300px;}
.yae{bottom:691.973100px;}
.y111{bottom:697.979100px;}
.y51{bottom:698.829000px;}
.y136{bottom:699.070800px;}
.y7e{bottom:699.097800px;}
.y1aa{bottom:699.464100px;}
.y162{bottom:700.769100px;}
.ye8{bottom:702.450600px;}
.y18a{bottom:706.212600px;}
.y32{bottom:708.173850px;}
.yad{bottom:711.476100px;}
.yc5{bottom:712.768800px;}
.y1a9{bottom:718.967100px;}
.y110{bottom:718.983600px;}
.y50{bottom:719.833500px;}
.y135{bottom:720.075300px;}
.y7d{bottom:720.102300px;}
.ye7{bottom:723.455100px;}
.y189{bottom:725.715600px;}
.y1b{bottom:730.327050px;}
.yac{bottom:730.979100px;}
.y161{bottom:733.026600px;}
.yc4{bottom:733.773300px;}
.y1a8{bottom:738.470100px;}
.y4f{bottom:740.838000px;}
.y134{bottom:741.079800px;}
.y7c{bottom:741.106800px;}
.y31{bottom:741.929700px;}
.y10f{bottom:744.228600px;}
.ye6{bottom:744.459600px;}
.yab{bottom:750.482100px;}
.y160{bottom:752.529600px;}
.yc3{bottom:754.777800px;}
.y188{bottom:757.973100px;}
.y1a{bottom:758.834550px;}
.y4e{bottom:761.842500px;}
.y133{bottom:762.084300px;}
.y7b{bottom:762.111300px;}
.y10e{bottom:765.233100px;}
.ye5{bottom:765.464100px;}
.yaa{bottom:769.985100px;}
.y1a7{bottom:770.727600px;}
.yc2{bottom:775.782300px;}
.y187{bottom:777.476100px;}
.y4d{bottom:782.847000px;}
.y132{bottom:783.088800px;}
.y7a{bottom:783.115800px;}
.y15f{bottom:784.787100px;}
.ye4{bottom:786.468600px;}
.ya9{bottom:789.488100px;}
.y1a6{bottom:790.230600px;}
.y10d{bottom:794.735100px;}
.yc1{bottom:796.786800px;}
.y186{bottom:796.979100px;}
.y4c{bottom:803.851500px;}
.y131{bottom:804.093300px;}
.y79{bottom:804.120300px;}
.y15e{bottom:804.290100px;}
.y30{bottom:806.094000px;}
.ye3{bottom:807.473100px;}
.ya8{bottom:808.991100px;}
.y1a5{bottom:809.733600px;}
.y10c{bottom:815.739600px;}
.y19{bottom:817.357200px;}
.yc0{bottom:817.791300px;}
.y15d{bottom:823.793100px;}
.y4b{bottom:824.856000px;}
.y130{bottom:825.097800px;}
.ye2{bottom:828.477600px;}
.ya7{bottom:828.494100px;}
.y185{bottom:829.236600px;}
.y2f{bottom:835.596000px;}
.ybf{bottom:838.795800px;}
.y78{bottom:842.128200px;}
.y10b{bottom:845.241600px;}
.y4a{bottom:845.860500px;}
.y12f{bottom:846.102300px;}
.ya6{bottom:847.997100px;}
.y184{bottom:848.739600px;}
.ye1{bottom:849.482100px;}
.y18{bottom:851.849700px;}
.y15c{bottom:856.050600px;}
.y2e{bottom:856.600500px;}
.ybe{bottom:859.800300px;}
.y1a4{bottom:861.494100px;}
.y10a{bottom:866.246100px;}
.y49{bottom:866.865000px;}
.y12e{bottom:867.106800px;}
.ya5{bottom:867.500100px;}
.y183{bottom:868.242600px;}
.ye0{bottom:870.486600px;}
.y15b{bottom:875.553600px;}
.y2d{bottom:877.605000px;}
.ybd{bottom:880.804800px;}
.y1a3{bottom:880.997100px;}
.y17{bottom:886.342200px;}
.ya4{bottom:887.003100px;}
.y48{bottom:887.869500px;}
.y12d{bottom:888.111300px;}
.y77{bottom:891.491100px;}
.y15a{bottom:895.056600px;}
.y2c{bottom:898.609500px;}
.y182{bottom:900.500100px;}
.ybc{bottom:901.809300px;}
.ya3{bottom:906.506100px;}
.y47{bottom:908.874000px;}
.y12c{bottom:909.115800px;}
.y76{bottom:912.495600px;}
.y2b{bottom:919.614000px;}
.y181{bottom:920.003100px;}
.y16{bottom:920.834700px;}
.ybb{bottom:922.813800px;}
.ya2{bottom:926.009100px;}
.y159{bottom:927.314100px;}
.y46{bottom:929.878500px;}
.y12b{bottom:930.120300px;}
.y75{bottom:933.500100px;}
.y180{bottom:939.506100px;}
.y2a{bottom:940.618500px;}
.yba{bottom:943.818300px;}
.ya1{bottom:945.512100px;}
.y158{bottom:946.817100px;}
.y45{bottom:950.883000px;}
.y74{bottom:954.504600px;}
.y17f{bottom:959.009100px;}
.y29{bottom:961.623000px;}
.ya0{bottom:965.015100px;}
.y157{bottom:966.320100px;}
.y12a{bottom:968.128200px;}
.y44{bottom:971.887500px;}
.yb9{bottom:973.320300px;}
.y73{bottom:975.509100px;}
.y17e{bottom:978.512100px;}
.y28{bottom:982.627500px;}
.y9f{bottom:984.518100px;}
.y15{bottom:991.381650px;}
.y43{bottom:992.892000px;}
.y72{bottom:996.513600px;}
.y156{bottom:998.577600px;}
.y27{bottom:1003.632000px;}
.y9e{bottom:1004.021100px;}
.yb8{bottom:1010.128200px;}
.y17d{bottom:1010.769600px;}
.y42{bottom:1013.896500px;}
.y71{bottom:1017.518100px;}
.y155{bottom:1018.080600px;}
.y9d{bottom:1023.524100px;}
.y26{bottom:1024.636500px;}
.y17c{bottom:1030.272600px;}
.y41{bottom:1034.901000px;}
.y154{bottom:1037.583600px;}
.y70{bottom:1038.522600px;}
.y9c{bottom:1043.027100px;}
.y25{bottom:1045.641000px;}
.y17b{bottom:1049.775600px;}
.y40{bottom:1055.905500px;}
.y153{bottom:1057.086600px;}
.y6f{bottom:1059.527100px;}
.y9b{bottom:1062.530100px;}
.y24{bottom:1066.645500px;}
.y6e{bottom:1080.531600px;}
.y9a{bottom:1082.033100px;}
.y152{bottom:1093.594350px;}
.y3f{bottom:1093.913250px;}
.y23{bottom:1100.401500px;}
.y6d{bottom:1101.536100px;}
.y3e{bottom:1172.644350px;}
.y2{bottom:1187.709900px;}
.y20{bottom:1188.844350px;}
.h2{height:40.842773px;}
.h3{height:45.380859px;}
.h6{height:49.253906px;}
.ha{height:49.918945px;}
.hb{height:54.457031px;}
.he{height:54.726562px;}
.h4{height:58.995117px;}
.hc{height:60.199219px;}
.h5{height:63.533203px;}
.h9{height:68.071289px;}
.hd{height:81.685547px;}
.h8{height:95.299805px;}
.h7{height:466.289062px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:121.500000px;}
.x5{left:124.370100px;}
.x2{left:127.559100px;}
.x17{left:153.068100px;}
.x18{left:170.079600px;}
.x9{left:180.551100px;}
.x1{left:188.802150px;}
.xa{left:209.103600px;}
.xe{left:267.370950px;}
.x14{left:271.305600px;}
.xb{left:297.879450px;}
.x8{left:300.421050px;}
.xf{left:311.677950px;}
.x7{left:313.840050px;}
.x6{left:326.566050px;}
.x10{left:351.772950px;}
.x15{left:355.599600px;}
.xc{left:383.484450px;}
.x11{left:402.933300px;}
.x12{left:407.231100px;}
.x4{left:420.540750px;}
.x3{left:483.213750px;}
.x13{left:734.276700px;}
.xd{left:735.340200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.880000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.645333pt;}
.ls6{letter-spacing:4.341333pt;}
.ws0{word-spacing:-74.666667pt;}
.ws26{word-spacing:-14.784000pt;}
.ws5{word-spacing:-14.138667pt;}
.ws1{word-spacing:-11.568000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws31{word-spacing:-6.922667pt;}
.ws35{word-spacing:-4.517333pt;}
.ws1a{word-spacing:-4.341333pt;}
.ws23{word-spacing:-2.757333pt;}
.ws13{word-spacing:-2.640000pt;}
.ws28{word-spacing:-2.581333pt;}
.ws6{word-spacing:-2.288000pt;}
.ws1b{word-spacing:-1.584000pt;}
.ws9{word-spacing:-1.232000pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws12{word-spacing:-0.997333pt;}
.wsf{word-spacing:-0.410667pt;}
.ws3{word-spacing:0.000000pt;}
.ws27{word-spacing:0.234667pt;}
.ws2f{word-spacing:0.293333pt;}
.ws7{word-spacing:0.586667pt;}
.ws2c{word-spacing:0.645333pt;}
.ws10{word-spacing:0.880000pt;}
.ws4{word-spacing:0.960000pt;}
.ws21{word-spacing:1.056000pt;}
.ws16{word-spacing:1.173333pt;}
.ws15{word-spacing:2.229333pt;}
.ws11{word-spacing:2.464000pt;}
.ws1e{word-spacing:2.640000pt;}
.ws36{word-spacing:2.933333pt;}
.ws22{word-spacing:3.050667pt;}
.wsc{word-spacing:3.109333pt;}
.ws1c{word-spacing:3.520000pt;}
.ws30{word-spacing:4.165333pt;}
.ws33{word-spacing:4.341333pt;}
.ws29{word-spacing:5.045333pt;}
.wsb{word-spacing:5.514667pt;}
.ws34{word-spacing:5.632000pt;}
.ws25{word-spacing:5.866667pt;}
.ws32{word-spacing:5.925333pt;}
.ws2d{word-spacing:6.160000pt;}
.wsd{word-spacing:6.394667pt;}
.ws1f{word-spacing:6.922667pt;}
.ws24{word-spacing:7.744000pt;}
.ws2a{word-spacing:8.330667pt;}
.wse{word-spacing:8.448000pt;}
.ws2b{word-spacing:12.848000pt;}
.ws1d{word-spacing:14.901333pt;}
.ws20{word-spacing:16.426667pt;}
.ws19{word-spacing:18.304000pt;}
.ws14{word-spacing:73.824000pt;}
.ws18{word-spacing:73.920000pt;}
.wsa{word-spacing:76.032000pt;}
.ws17{word-spacing:78.624000pt;}
.ws8{word-spacing:89.088000pt;}
._18{margin-left:-8.524267pt;}
._1a{margin-left:-7.174933pt;}
._12{margin-left:-6.222400pt;}
._a{margin-left:-5.176533pt;}
._7{margin-left:-4.147200pt;}
._5{margin-left:-2.880000pt;}
._0{margin-left:-1.598400pt;}
._3{width:1.056000pt;}
._6{width:2.049600pt;}
._e{width:2.939200pt;}
._b{width:3.835733pt;}
._4{width:4.800000pt;}
._2{width:6.206400pt;}
._1{width:7.401600pt;}
._d{width:8.311467pt;}
._c{width:9.668267pt;}
._10{width:10.636267pt;}
._8{width:11.739200pt;}
._f{width:13.135467pt;}
._9{width:15.752000pt;}
._17{width:17.424000pt;}
._11{width:19.137067pt;}
._19{width:20.304533pt;}
._16{width:21.524800pt;}
._14{width:22.657067pt;}
._15{width:51.744000pt;}
._13{width:76.128000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:112.000000pt;}
.fs4{font-size:613.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:45.874267pt;}
.y1f{bottom:55.426533pt;}
.y1{bottom:60.274267pt;}
.y21{bottom:74.674267pt;}
.y129{bottom:113.401733pt;}
.y17a{bottom:116.143200pt;}
.y6c{bottom:117.073333pt;}
.y151{bottom:117.288267pt;}
.y99{bottom:117.312267pt;}
.y102{bottom:117.359200pt;}
.y109{bottom:120.292533pt;}
.y14{bottom:120.923733pt;}
.yb7{bottom:123.143200pt;}
.y128{bottom:132.072400pt;}
.y1a2{bottom:132.319200pt;}
.y179{bottom:133.479200pt;}
.y13{bottom:135.323733pt;}
.y6b{bottom:135.744000pt;}
.y150{bottom:135.958933pt;}
.y98{bottom:135.982933pt;}
.y101{bottom:136.029867pt;}
.y108{bottom:138.963200pt;}
.ydf{bottom:148.134933pt;}
.y1a1{bottom:149.655200pt;}
.y12{bottom:149.723733pt;}
.y127{bottom:150.743067pt;}
.y178{bottom:150.815200pt;}
.y6a{bottom:154.414667pt;}
.y14f{bottom:154.629600pt;}
.y97{bottom:154.653600pt;}
.y100{bottom:154.700533pt;}
.y107{bottom:157.633867pt;}
.y11{bottom:164.123733pt;}
.yde{bottom:166.805600pt;}
.y1a0{bottom:166.991200pt;}
.y126{bottom:169.413733pt;}
.y69{bottom:173.085333pt;}
.y14e{bottom:173.300267pt;}
.y96{bottom:173.324267pt;}
.yff{bottom:173.371200pt;}
.y106{bottom:176.304533pt;}
.y10{bottom:178.523733pt;}
.y177{bottom:179.488533pt;}
.ydd{bottom:185.476267pt;}
.y125{bottom:188.084400pt;}
.y1be{bottom:188.331200pt;}
.y68{bottom:191.756000pt;}
.y14d{bottom:191.970933pt;}
.y95{bottom:191.994933pt;}
.yfe{bottom:192.041867pt;}
.y105{bottom:194.975200pt;}
.y19f{bottom:195.664533pt;}
.y176{bottom:196.824533pt;}
.yf{bottom:199.319733pt;}
.ydc{bottom:204.146933pt;}
.y124{bottom:206.755067pt;}
.y1bd{bottom:207.001867pt;}
.y67{bottom:210.426667pt;}
.y14c{bottom:210.641600pt;}
.y94{bottom:210.665600pt;}
.y19e{bottom:213.000533pt;}
.y104{bottom:213.645867pt;}
.ye{bottom:213.719733pt;}
.y175{bottom:214.160533pt;}
.yfd{bottom:218.265867pt;}
.ydb{bottom:222.817600pt;}
.y1bc{bottom:224.337867pt;}
.y123{bottom:225.425733pt;}
.yd{bottom:228.119733pt;}
.y66{bottom:229.097333pt;}
.y14b{bottom:229.312267pt;}
.y93{bottom:229.336267pt;}
.y19d{bottom:230.336533pt;}
.y103{bottom:232.316533pt;}
.yda{bottom:241.488267pt;}
.yc{bottom:242.519733pt;}
.y174{bottom:242.833867pt;}
.y122{bottom:244.096400pt;}
.y65{bottom:247.768000pt;}
.y14a{bottom:247.982933pt;}
.y92{bottom:248.006933pt;}
.yfc{bottom:250.987200pt;}
.y1bb{bottom:253.011200pt;}
.y19c{bottom:259.009867pt;}
.yd9{bottom:260.158933pt;}
.y173{bottom:260.169867pt;}
.y64{bottom:266.438667pt;}
.yb{bottom:266.519733pt;}
.y149{bottom:266.653600pt;}
.y91{bottom:266.677600pt;}
.yfb{bottom:269.657867pt;}
.y1ba{bottom:270.347200pt;}
.y19b{bottom:276.345867pt;}
.y172{bottom:277.505867pt;}
.y121{bottom:277.881067pt;}
.yd8{bottom:278.829600pt;}
.ya{bottom:280.919733pt;}
.y63{bottom:285.109333pt;}
.y148{bottom:285.324267pt;}
.y90{bottom:285.348267pt;}
.yfa{bottom:288.328533pt;}
.y19a{bottom:293.681867pt;}
.y9{bottom:295.319733pt;}
.yd7{bottom:297.500267pt;}
.y1b9{bottom:299.020533pt;}
.y62{bottom:303.780000pt;}
.y147{bottom:303.994933pt;}
.y8f{bottom:304.018933pt;}
.y171{bottom:306.179200pt;}
.yf9{bottom:306.999200pt;}
.y8{bottom:309.719733pt;}
.yd6{bottom:316.170933pt;}
.y1b8{bottom:316.356533pt;}
.y120{bottom:321.695200pt;}
.y199{bottom:322.355200pt;}
.y61{bottom:322.450667pt;}
.y146{bottom:322.665600pt;}
.y8e{bottom:322.689600pt;}
.y170{bottom:323.515200pt;}
.y7{bottom:324.119733pt;}
.yf8{bottom:325.669867pt;}
.y1b7{bottom:333.692533pt;}
.yd5{bottom:334.841600pt;}
.y6{bottom:338.519733pt;}
.y198{bottom:339.691200pt;}
.y11f{bottom:340.365867pt;}
.y16f{bottom:340.851200pt;}
.y60{bottom:341.121333pt;}
.y145{bottom:341.336267pt;}
.y8d{bottom:341.360267pt;}
.yf7{bottom:344.340533pt;}
.y1b6{bottom:351.028533pt;}
.yd4{bottom:353.512267pt;}
.y197{bottom:357.027200pt;}
.y11e{bottom:359.036533pt;}
.y5f{bottom:359.792000pt;}
.y144{bottom:360.006933pt;}
.y8c{bottom:360.030933pt;}
.yf6{bottom:363.011200pt;}
.y16e{bottom:369.524533pt;}
.yd3{bottom:372.182933pt;}
.y196{bottom:374.363200pt;}
.y11d{bottom:377.707200pt;}
.y5e{bottom:378.462667pt;}
.y143{bottom:378.677600pt;}
.y8b{bottom:378.701600pt;}
.y1b5{bottom:379.701867pt;}
.yf5{bottom:381.681867pt;}
.y16d{bottom:386.860533pt;}
.yd2{bottom:390.853600pt;}
.y11c{bottom:396.377867pt;}
.y1b4{bottom:397.037867pt;}
.y5d{bottom:397.133333pt;}
.y142{bottom:397.348267pt;}
.y8a{bottom:397.372267pt;}
.yf4{bottom:400.352533pt;}
.y195{bottom:403.036533pt;}
.y16c{bottom:404.196533pt;}
.yd1{bottom:409.524267pt;}
.y1b3{bottom:414.373867pt;}
.y11b{bottom:415.048533pt;}
.y5c{bottom:415.804000pt;}
.y141{bottom:416.018933pt;}
.y89{bottom:416.042933pt;}
.y3d{bottom:416.557200pt;}
.yf3{bottom:419.023200pt;}
.y4{bottom:419.840000pt;}
.y194{bottom:420.372533pt;}
.yd0{bottom:428.194933pt;}
.y16b{bottom:432.869867pt;}
.y11a{bottom:433.719200pt;}
.y5b{bottom:434.474667pt;}
.y140{bottom:434.689600pt;}
.y88{bottom:434.713600pt;}
.yf2{bottom:437.693867pt;}
.y193{bottom:437.708533pt;}
.y3{bottom:442.512000pt;}
.y3c{bottom:442.781200pt;}
.y1b2{bottom:443.047200pt;}
.ycf{bottom:446.865600pt;}
.y16a{bottom:450.205867pt;}
.y119{bottom:452.389867pt;}
.y5a{bottom:453.145333pt;}
.y13f{bottom:453.360267pt;}
.y87{bottom:453.384267pt;}
.y192{bottom:455.044533pt;}
.yf1{bottom:456.364533pt;}
.y1b1{bottom:460.383200pt;}
.y3b{bottom:461.451867pt;}
.yce{bottom:465.536267pt;}
.y169{bottom:467.541867pt;}
.y118{bottom:471.060533pt;}
.y59{bottom:471.816000pt;}
.y13e{bottom:472.030933pt;}
.y86{bottom:472.054933pt;}
.yf0{bottom:475.035200pt;}
.yb6{bottom:475.064533pt;}
.y1b0{bottom:477.719200pt;}
.y3a{bottom:480.122533pt;}
.y191{bottom:483.717867pt;}
.ycd{bottom:484.206933pt;}
.y117{bottom:489.731200pt;}
.y58{bottom:490.486667pt;}
.y13d{bottom:490.701600pt;}
.y85{bottom:490.725600pt;}
.yef{bottom:493.705867pt;}
.yb5{bottom:493.735200pt;}
.y5{bottom:494.936667pt;}
.y1af{bottom:495.055200pt;}
.y168{bottom:496.215200pt;}
.y39{bottom:498.793200pt;}
.ycc{bottom:502.877600pt;}
.y116{bottom:508.401867pt;}
.y57{bottom:509.157333pt;}
.y13c{bottom:509.372267pt;}
.y84{bottom:509.396267pt;}
.yb4{bottom:511.071200pt;}
.yee{bottom:512.376533pt;}
.y190{bottom:512.391200pt;}
.y167{bottom:513.551200pt;}
.y38{bottom:517.463867pt;}
.ycb{bottom:521.548267pt;}
.y1ae{bottom:523.728533pt;}
.y115{bottom:527.072533pt;}
.y56{bottom:527.828000pt;}
.y13b{bottom:528.042933pt;}
.y83{bottom:528.066933pt;}
.yb3{bottom:528.407200pt;}
.y18f{bottom:529.727200pt;}
.y166{bottom:530.887200pt;}
.yed{bottom:531.047200pt;}
.y37{bottom:536.134533pt;}
.yca{bottom:540.218933pt;}
.y1ad{bottom:541.064533pt;}
.yb2{bottom:545.743200pt;}
.y55{bottom:546.498667pt;}
.y13a{bottom:546.713600pt;}
.y82{bottom:546.737600pt;}
.y18e{bottom:547.063200pt;}
.y165{bottom:548.223200pt;}
.yec{bottom:549.717867pt;}
.y36{bottom:554.805200pt;}
.y1e{bottom:557.960400pt;}
.y1ac{bottom:558.400533pt;}
.yc9{bottom:558.889600pt;}
.yb1{bottom:563.079200pt;}
.y114{bottom:564.413867pt;}
.y54{bottom:565.169333pt;}
.y139{bottom:565.384267pt;}
.y81{bottom:565.408267pt;}
.yeb{bottom:568.388533pt;}
.y35{bottom:573.475867pt;}
.y18d{bottom:575.736533pt;}
.y164{bottom:576.896533pt;}
.yc8{bottom:577.560267pt;}
.y1d{bottom:577.963067pt;}
.yb0{bottom:580.415200pt;}
.y113{bottom:583.084533pt;}
.y53{bottom:583.840000pt;}
.y138{bottom:584.054933pt;}
.y80{bottom:584.078933pt;}
.yea{bottom:587.059200pt;}
.y34{bottom:592.146533pt;}
.y18c{bottom:593.072533pt;}
.y163{bottom:594.232533pt;}
.yc7{bottom:596.230933pt;}
.yaf{bottom:597.751200pt;}
.y1c{bottom:597.965733pt;}
.y112{bottom:601.755200pt;}
.y52{bottom:602.510667pt;}
.y137{bottom:602.725600pt;}
.y7f{bottom:602.749600pt;}
.y1ab{bottom:604.409867pt;}
.ye9{bottom:605.729867pt;}
.y18b{bottom:610.408533pt;}
.y33{bottom:610.817200pt;}
.yc6{bottom:614.901600pt;}
.yae{bottom:615.087200pt;}
.y111{bottom:620.425867pt;}
.y51{bottom:621.181333pt;}
.y136{bottom:621.396267pt;}
.y7e{bottom:621.420267pt;}
.y1aa{bottom:621.745867pt;}
.y162{bottom:622.905867pt;}
.ye8{bottom:624.400533pt;}
.y18a{bottom:627.744533pt;}
.y32{bottom:629.487867pt;}
.yad{bottom:632.423200pt;}
.yc5{bottom:633.572267pt;}
.y1a9{bottom:639.081867pt;}
.y110{bottom:639.096533pt;}
.y50{bottom:639.852000pt;}
.y135{bottom:640.066933pt;}
.y7d{bottom:640.090933pt;}
.ye7{bottom:643.071200pt;}
.y189{bottom:645.080533pt;}
.y1b{bottom:649.179600pt;}
.yac{bottom:649.759200pt;}
.y161{bottom:651.579200pt;}
.yc4{bottom:652.242933pt;}
.y1a8{bottom:656.417867pt;}
.y4f{bottom:658.522667pt;}
.y134{bottom:658.737600pt;}
.y7c{bottom:658.761600pt;}
.y31{bottom:659.493067pt;}
.y10f{bottom:661.536533pt;}
.ye6{bottom:661.741867pt;}
.yab{bottom:667.095200pt;}
.y160{bottom:668.915200pt;}
.yc3{bottom:670.913600pt;}
.y188{bottom:673.753867pt;}
.y1a{bottom:674.519600pt;}
.y4e{bottom:677.193333pt;}
.y133{bottom:677.408267pt;}
.y7b{bottom:677.432267pt;}
.y10e{bottom:680.207200pt;}
.ye5{bottom:680.412533pt;}
.yaa{bottom:684.431200pt;}
.y1a7{bottom:685.091200pt;}
.yc2{bottom:689.584267pt;}
.y187{bottom:691.089867pt;}
.y4d{bottom:695.864000pt;}
.y132{bottom:696.078933pt;}
.y7a{bottom:696.102933pt;}
.y15f{bottom:697.588533pt;}
.ye4{bottom:699.083200pt;}
.ya9{bottom:701.767200pt;}
.y1a6{bottom:702.427200pt;}
.y10d{bottom:706.431200pt;}
.yc1{bottom:708.254933pt;}
.y186{bottom:708.425867pt;}
.y4c{bottom:714.534667pt;}
.y131{bottom:714.749600pt;}
.y79{bottom:714.773600pt;}
.y15e{bottom:714.924533pt;}
.y30{bottom:716.528000pt;}
.ye3{bottom:717.753867pt;}
.ya8{bottom:719.103200pt;}
.y1a5{bottom:719.763200pt;}
.y10c{bottom:725.101867pt;}
.y19{bottom:726.539733pt;}
.yc0{bottom:726.925600pt;}
.y15d{bottom:732.260533pt;}
.y4b{bottom:733.205333pt;}
.y130{bottom:733.420267pt;}
.ye2{bottom:736.424533pt;}
.ya7{bottom:736.439200pt;}
.y185{bottom:737.099200pt;}
.y2f{bottom:742.752000pt;}
.ybf{bottom:745.596267pt;}
.y78{bottom:748.558400pt;}
.y10b{bottom:751.325867pt;}
.y4a{bottom:751.876000pt;}
.y12f{bottom:752.090933pt;}
.ya6{bottom:753.775200pt;}
.y184{bottom:754.435200pt;}
.ye1{bottom:755.095200pt;}
.y18{bottom:757.199733pt;}
.y15c{bottom:760.933867pt;}
.y2e{bottom:761.422667pt;}
.ybe{bottom:764.266933pt;}
.y1a4{bottom:765.772533pt;}
.y10a{bottom:769.996533pt;}
.y49{bottom:770.546667pt;}
.y12e{bottom:770.761600pt;}
.ya5{bottom:771.111200pt;}
.y183{bottom:771.771200pt;}
.ye0{bottom:773.765867pt;}
.y15b{bottom:778.269867pt;}
.y2d{bottom:780.093333pt;}
.ybd{bottom:782.937600pt;}
.y1a3{bottom:783.108533pt;}
.y17{bottom:787.859733pt;}
.ya4{bottom:788.447200pt;}
.y48{bottom:789.217333pt;}
.y12d{bottom:789.432267pt;}
.y77{bottom:792.436533pt;}
.y15a{bottom:795.605867pt;}
.y2c{bottom:798.764000pt;}
.y182{bottom:800.444533pt;}
.ybc{bottom:801.608267pt;}
.ya3{bottom:805.783200pt;}
.y47{bottom:807.888000pt;}
.y12c{bottom:808.102933pt;}
.y76{bottom:811.107200pt;}
.y2b{bottom:817.434667pt;}
.y181{bottom:817.780533pt;}
.y16{bottom:818.519733pt;}
.ybb{bottom:820.278933pt;}
.ya2{bottom:823.119200pt;}
.y159{bottom:824.279200pt;}
.y46{bottom:826.558667pt;}
.y12b{bottom:826.773600pt;}
.y75{bottom:829.777867pt;}
.y180{bottom:835.116533pt;}
.y2a{bottom:836.105333pt;}
.yba{bottom:838.949600pt;}
.ya1{bottom:840.455200pt;}
.y158{bottom:841.615200pt;}
.y45{bottom:845.229333pt;}
.y74{bottom:848.448533pt;}
.y17f{bottom:852.452533pt;}
.y29{bottom:854.776000pt;}
.ya0{bottom:857.791200pt;}
.y157{bottom:858.951200pt;}
.y12a{bottom:860.558400pt;}
.y44{bottom:863.900000pt;}
.yb9{bottom:865.173600pt;}
.y73{bottom:867.119200pt;}
.y17e{bottom:869.788533pt;}
.y28{bottom:873.446667pt;}
.y9f{bottom:875.127200pt;}
.y15{bottom:881.228133pt;}
.y43{bottom:882.570667pt;}
.y72{bottom:885.789867pt;}
.y156{bottom:887.624533pt;}
.y27{bottom:892.117333pt;}
.y9e{bottom:892.463200pt;}
.yb8{bottom:897.891733pt;}
.y17d{bottom:898.461867pt;}
.y42{bottom:901.241333pt;}
.y71{bottom:904.460533pt;}
.y155{bottom:904.960533pt;}
.y9d{bottom:909.799200pt;}
.y26{bottom:910.788000pt;}
.y17c{bottom:915.797867pt;}
.y41{bottom:919.912000pt;}
.y154{bottom:922.296533pt;}
.y70{bottom:923.131200pt;}
.y9c{bottom:927.135200pt;}
.y25{bottom:929.458667pt;}
.y17b{bottom:933.133867pt;}
.y40{bottom:938.582667pt;}
.y153{bottom:939.632533pt;}
.y6f{bottom:941.801867pt;}
.y9b{bottom:944.471200pt;}
.y24{bottom:948.129333pt;}
.y6e{bottom:960.472533pt;}
.y9a{bottom:961.807200pt;}
.y152{bottom:972.083867pt;}
.y3f{bottom:972.367333pt;}
.y23{bottom:978.134667pt;}
.y6d{bottom:979.143200pt;}
.y3e{bottom:1042.350533pt;}
.y2{bottom:1055.742133pt;}
.y20{bottom:1056.750533pt;}
.h2{height:36.304688pt;}
.h3{height:40.338542pt;}
.h6{height:43.781250pt;}
.ha{height:44.372396pt;}
.hb{height:48.406250pt;}
.he{height:48.645833pt;}
.h4{height:52.440104pt;}
.hc{height:53.510417pt;}
.h5{height:56.473958pt;}
.h9{height:60.507812pt;}
.hd{height:72.609375pt;}
.h8{height:84.710938pt;}
.h7{height:414.479167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:108.000000pt;}
.x5{left:110.551200pt;}
.x2{left:113.385867pt;}
.x17{left:136.060533pt;}
.x18{left:151.181867pt;}
.x9{left:160.489867pt;}
.x1{left:167.824133pt;}
.xa{left:185.869867pt;}
.xe{left:237.663067pt;}
.x14{left:241.160533pt;}
.xb{left:264.781733pt;}
.x8{left:267.040933pt;}
.xf{left:277.047067pt;}
.x7{left:278.968933pt;}
.x6{left:290.280933pt;}
.x10{left:312.687067pt;}
.x15{left:316.088533pt;}
.xc{left:340.875067pt;}
.x11{left:358.162933pt;}
.x12{left:361.983200pt;}
.x4{left:373.814000pt;}
.x3{left:429.523333pt;}
.x13{left:652.690400pt;}
.xd{left:653.635733pt;}
}




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