
    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_01c4c0a3f623e01d0afd9241.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72d1710c41911b6721226994.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_5151028587e3338dd64789e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f1eaad6d296e337f6d65b18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_dd4cb6902b6a95e64a358da5.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39164bf41a5039c0d18d3faa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_739679ca461f186303bb8b90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_4bb1531984c6d8c90bedb53f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3011e6743cc9ef21f100852b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_817f90b67f03962adec1b175.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.952000px;}
.ls3{letter-spacing:-2.664000px;}
.ls2{letter-spacing:-1.553112px;}
.ls4{letter-spacing:-1.152000px;}
.ls1{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.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;}
}
.wsd{word-spacing:-60.912000px;}
.wsc{word-spacing:-40.608000px;}
.ws14{word-spacing:-23.674464px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.488000px;}
.ws16{word-spacing:-15.336000px;}
.ws10{word-spacing:-10.494000px;}
.ws15{word-spacing:-8.940888px;}
.ws2{word-spacing:-3.960000px;}
.wsf{word-spacing:-0.072000px;}
.ws17{word-spacing:-0.041976px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.288000px;}
.ws18{word-spacing:1.152000px;}
.ws3{word-spacing:13.392000px;}
.ws11{word-spacing:49.392000px;}
.ws19{word-spacing:66.636000px;}
.wse{word-spacing:73.389600px;}
.ws6{word-spacing:322.776000px;}
.ws7{word-spacing:636.408000px;}
.ws8{word-spacing:640.008000px;}
.ws5{word-spacing:927.936000px;}
.ws9{word-spacing:986.040000px;}
.wsa{word-spacing:1000.008000px;}
.ws4{word-spacing:1169.928000px;}
.wsb{word-spacing:1207.584000px;}
._10{margin-left:-20.196000px;}
._4{margin-left:-18.000000px;}
._9{margin-left:-9.554400px;}
._7{margin-left:-8.013600px;}
._a{margin-left:-6.494400px;}
._8{margin-left:-5.464800px;}
._2{margin-left:-3.996000px;}
._1{margin-left:-2.541600px;}
._3{margin-left:-1.252800px;}
._b{width:1.555200px;}
._e{width:2.664000px;}
._0{width:3.938400px;}
._d{width:54.000000px;}
._f{width:56.664000px;}
._19{width:80.085600px;}
._c{width:90.000000px;}
._12{width:136.209600px;}
._13{width:177.696000px;}
._11{width:216.381600px;}
._14{width:231.984000px;}
._5{width:676.296000px;}
._16{width:768.261600px;}
._6{width:1089.072000px;}
._15{width:1131.696000px;}
._17{width:1349.568000px;}
._18{width:1421.640000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:41.976000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y13a{bottom:3.851550px;}
.y131{bottom:44.634150px;}
.y65{bottom:202.002000px;}
.y9d{bottom:216.000000px;}
.y164{bottom:217.231500px;}
.y33{bottom:221.303250px;}
.y1a3{bottom:221.520000px;}
.y54{bottom:224.543550px;}
.y7a{bottom:239.537550px;}
.y9c{bottom:243.000000px;}
.y163{bottom:244.231500px;}
.y32{bottom:248.303250px;}
.y92{bottom:250.200000px;}
.y53{bottom:251.543550px;}
.y143{bottom:260.309250px;}
.yac{bottom:262.445700px;}
.y1a2{bottom:263.514000px;}
.y79{bottom:266.537550px;}
.ye3{bottom:270.000000px;}
.y162{bottom:271.231500px;}
.y31{bottom:275.303250px;}
.y18e{bottom:281.333250px;}
.y142{bottom:287.309250px;}
.y9b{bottom:287.979000px;}
.yab{bottom:289.445700px;}
.y52{bottom:293.537550px;}
.ye2{bottom:297.000000px;}
.y179{bottom:303.336150px;}
.y1a1{bottom:305.508000px;}
.yc0{bottom:305.537550px;}
.y91{bottom:305.543550px;}
.y18d{bottom:308.333250px;}
.y78{bottom:308.531550px;}
.yfd{bottom:311.809500px;}
.y161{bottom:313.225500px;}
.y9a{bottom:314.979000px;}
.yaa{bottom:316.445700px;}
.y30{bottom:317.297250px;}
.y51{bottom:320.537550px;}
.y11e{bottom:324.000000px;}
.y141{bottom:329.303250px;}
.y178{bottom:330.336150px;}
.ybf{bottom:332.537550px;}
.y90{bottom:332.543550px;}
.y18c{bottom:335.333250px;}
.y77{bottom:335.531550px;}
.yfc{bottom:338.809500px;}
.y160{bottom:340.225500px;}
.y99{bottom:341.979000px;}
.y2f{bottom:344.297250px;}
.y110{bottom:344.531550px;}
.y1a0{bottom:347.502000px;}
.y50{bottom:347.537550px;}
.y19f{bottom:350.579550px;}
.y140{bottom:356.303250px;}
.ya9{bottom:358.439700px;}
.ye1{bottom:359.508000px;}
.y8f{bottom:359.543550px;}
.y76{bottom:362.531550px;}
.yfb{bottom:365.809500px;}
.y15f{bottom:367.225500px;}
.y2e{bottom:371.297250px;}
.y11d{bottom:371.519550px;}
.y10f{bottom:371.531550px;}
.y1a8{bottom:372.126000px;}
.y177{bottom:373.086150px;}
.ybe{bottom:374.531550px;}
.y4f{bottom:374.537550px;}
.y18b{bottom:377.327250px;}
.y98{bottom:383.973000px;}
.ya8{bottom:385.439700px;}
.ye0{bottom:386.508000px;}
.y8e{bottom:386.543550px;}
.y75{bottom:389.531550px;}
.y19e{bottom:392.573550px;}
.yfa{bottom:392.809500px;}
.y15e{bottom:394.225500px;}
.y176{bottom:397.584150px;}
.y2d{bottom:398.297250px;}
.y10e{bottom:398.531550px;}
.ybd{bottom:401.531550px;}
.y18a{bottom:404.327250px;}
.y97{bottom:410.973000px;}
.ya7{bottom:412.439700px;}
.ydf{bottom:413.508000px;}
.y8d{bottom:413.543550px;}
.y1a7{bottom:414.120000px;}
.y74{bottom:416.531550px;}
.y19d{bottom:419.573550px;}
.yf9{bottom:419.809500px;}
.y15d{bottom:421.225500px;}
.y175{bottom:422.082150px;}
.y2c{bottom:425.297250px;}
.y10d{bottom:425.531550px;}
.ybc{bottom:428.531550px;}
.y189{bottom:431.327250px;}
.y4e{bottom:434.531550px;}
.y96{bottom:437.973000px;}
.ya6{bottom:439.439700px;}
.yde{bottom:440.508000px;}
.y49{bottom:440.526000px;}
.y8c{bottom:440.543550px;}
.y73{bottom:443.531550px;}
.y19c{bottom:446.573550px;}
.y174{bottom:446.580150px;}
.yf8{bottom:446.809500px;}
.y2b{bottom:452.297250px;}
.y10c{bottom:452.531550px;}
.y1a6{bottom:456.114000px;}
.y21{bottom:458.291250px;}
.y15c{bottom:463.219500px;}
.y95{bottom:464.973000px;}
.ya5{bottom:466.439700px;}
.y11c{bottom:467.525550px;}
.ybb{bottom:470.525550px;}
.y4d{bottom:470.531550px;}
.y173{bottom:471.366150px;}
.y188{bottom:473.321250px;}
.y19b{bottom:473.573550px;}
.yf7{bottom:473.809500px;}
.y2a{bottom:479.297250px;}
.ydd{bottom:482.502000px;}
.y8b{bottom:482.537550px;}
.y20{bottom:485.291250px;}
.y72{bottom:485.525550px;}
.yd2{bottom:487.998300px;}
.y15b{bottom:490.219500px;}
.y48{bottom:491.520000px;}
.y94{bottom:491.973000px;}
.ya4{bottom:493.439700px;}
.y13f{bottom:494.291250px;}
.y10b{bottom:494.525550px;}
.yba{bottom:497.525550px;}
.y4c{bottom:497.531550px;}
.y1a5{bottom:498.108000px;}
.y187{bottom:500.321250px;}
.y29{bottom:506.297250px;}
.y12f{bottom:507.627150px;}
.yd1{bottom:509.400000px;}
.ydc{bottom:509.502000px;}
.y8a{bottom:509.537550px;}
.y1f{bottom:512.291250px;}
.y71{bottom:512.525550px;}
.y19a{bottom:515.567550px;}
.y15a{bottom:517.219500px;}
.y47{bottom:518.520000px;}
.y93{bottom:518.973000px;}
.ya3{bottom:520.439700px;}
.y14e{bottom:520.553250px;}
.y13e{bottom:521.291250px;}
.y10a{bottom:521.525550px;}
.yb9{bottom:524.525550px;}
.yf6{bottom:524.821500px;}
.y186{bottom:527.321250px;}
.y137{bottom:533.700000px;}
.yd0{bottom:536.400000px;}
.ydb{bottom:536.502000px;}
.y89{bottom:536.537550px;}
.y4b{bottom:539.525550px;}
.y1a4{bottom:540.102000px;}
.y12e{bottom:541.800000px;}
.y199{bottom:542.567550px;}
.y159{bottom:544.219500px;}
.y46{bottom:545.520000px;}
.y172{bottom:547.306650px;}
.ya2{bottom:547.439700px;}
.y28{bottom:548.291250px;}
.y109{bottom:548.525550px;}
.y14d{bottom:548.543550px;}
.yb8{bottom:551.525550px;}
.yf5{bottom:551.821500px;}
.y9e{bottom:554.793450px;}
.y136{bottom:555.300000px;}
.ycf{bottom:563.400000px;}
.yda{bottom:563.502000px;}
.y11b{bottom:563.519550px;}
.y88{bottom:563.537550px;}
.y12d{bottom:568.800000px;}
.y185{bottom:569.315250px;}
.y158{bottom:571.219500px;}
.y45{bottom:572.520000px;}
.y27{bottom:575.291250px;}
.y14c{bottom:575.543550px;}
.yb7{bottom:578.525550px;}
.yf4{bottom:578.821500px;}
.y4a{bottom:581.519550px;}
.y198{bottom:584.561550px;}
.y1e{bottom:587.297250px;}
.ya1{bottom:589.433700px;}
.yd9{bottom:590.502000px;}
.y108{bottom:590.519550px;}
.y87{bottom:590.537550px;}
.y12c{bottom:595.800000px;}
.y184{bottom:596.315250px;}
.y44{bottom:599.520000px;}
.y26{bottom:602.291250px;}
.yce{bottom:602.531550px;}
.y14b{bottom:602.543550px;}
.yb6{bottom:605.525550px;}
.y135{bottom:605.531550px;}
.yf3{bottom:605.821500px;}
.y70{bottom:608.519550px;}
.y130{bottom:610.554150px;}
.y197{bottom:611.561550px;}
.y157{bottom:613.213500px;}
.y1d{bottom:614.297250px;}
.y64{bottom:614.531550px;}
.ya0{bottom:616.433700px;}
.y107{bottom:617.519550px;}
.y86{bottom:617.537550px;}
.y12b{bottom:622.800000px;}
.y183{bottom:623.315250px;}
.y43{bottom:626.520000px;}
.y25{bottom:629.291250px;}
.ycd{bottom:629.531550px;}
.y14a{bottom:629.543550px;}
.yd8{bottom:632.514000px;}
.yb5{bottom:632.525550px;}
.y134{bottom:632.531550px;}
.yf2{bottom:632.821500px;}
.y6f{bottom:635.519550px;}
.y196{bottom:638.561550px;}
.y156{bottom:640.213500px;}
.y63{bottom:641.531550px;}
.y9f{bottom:643.433700px;}
.y106{bottom:644.525550px;}
.y11a{bottom:644.537550px;}
.y182{bottom:650.315250px;}
.y42{bottom:653.520000px;}
.y1c{bottom:656.291250px;}
.ycc{bottom:656.531550px;}
.yd7{bottom:659.514000px;}
.yb4{bottom:659.525550px;}
.y85{bottom:659.531550px;}
.yf1{bottom:659.821500px;}
.y195{bottom:665.561550px;}
.y155{bottom:667.213500px;}
.y62{bottom:668.531550px;}
.y105{bottom:671.525550px;}
.y119{bottom:671.537550px;}
.y6e{bottom:677.513550px;}
.y41{bottom:680.520000px;}
.y171{bottom:682.308900px;}
.y1b{bottom:683.291250px;}
.ycb{bottom:683.531550px;}
.yd6{bottom:686.514000px;}
.yb3{bottom:686.525550px;}
.y84{bottom:686.531550px;}
.y181{bottom:692.309250px;}
.yf0{bottom:692.815500px;}
.y154{bottom:694.213500px;}
.yad{bottom:696.414150px;}
.y13d{bottom:698.285250px;}
.y12a{bottom:698.502000px;}
.y104{bottom:698.525550px;}
.y149{bottom:698.537550px;}
.y6d{bottom:704.513550px;}
.y194{bottom:707.555550px;}
.y170{bottom:709.308900px;}
.y1a{bottom:710.291250px;}
.y40{bottom:713.514000px;}
.yb2{bottom:713.525550px;}
.y83{bottom:713.531550px;}
.y180{bottom:719.309250px;}
.y139{bottom:724.668000px;}
.y24{bottom:725.285250px;}
.y132{bottom:725.400000px;}
.y129{bottom:725.502000px;}
.yca{bottom:725.525550px;}
.y148{bottom:725.537550px;}
.y61{bottom:728.525550px;}
.y6c{bottom:731.513550px;}
.yef{bottom:734.809500px;}
.y16f{bottom:736.308900px;}
.y3f{bottom:740.514000px;}
.y82{bottom:740.531550px;}
.y165{bottom:743.796600px;}
.y17f{bottom:746.309250px;}
.y193{bottom:749.549550px;}
.y19{bottom:752.285250px;}
.y128{bottom:752.514000px;}
.yc9{bottom:752.525550px;}
.y147{bottom:752.537550px;}
.y10{bottom:755.279250px;}
.yb1{bottom:755.519550px;}
.y133{bottom:755.525550px;}
.y6b{bottom:758.513550px;}
.yee{bottom:761.809500px;}
.y117{bottom:761.842650px;}
.y60{bottom:764.525550px;}
.y3e{bottom:767.514000px;}
.y103{bottom:767.525550px;}
.y118{bottom:767.531550px;}
.y138{bottom:772.500000px;}
.y192{bottom:776.549550px;}
.y16e{bottom:779.058900px;}
.y18{bottom:779.285250px;}
.y127{bottom:779.514000px;}
.yc8{bottom:779.525550px;}
.y5{bottom:779.596050px;}
.yf{bottom:782.279250px;}
.yb0{bottom:782.519550px;}
.y81{bottom:782.525550px;}
.y6a{bottom:785.513550px;}
.y17e{bottom:788.303250px;}
.y116{bottom:788.400000px;}
.yed{bottom:788.809500px;}
.y5f{bottom:791.525550px;}
.y3d{bottom:794.514000px;}
.y102{bottom:794.525550px;}
.y146{bottom:794.531550px;}
.y16d{bottom:806.058900px;}
.y17{bottom:806.285250px;}
.yc7{bottom:806.525550px;}
.ye{bottom:809.279250px;}
.yaf{bottom:809.519550px;}
.y80{bottom:809.525550px;}
.y69{bottom:812.513550px;}
.y17d{bottom:815.303250px;}
.yec{bottom:815.809500px;}
.y5e{bottom:818.525550px;}
.y191{bottom:818.543550px;}
.y13c{bottom:821.279250px;}
.y126{bottom:821.508000px;}
.y3c{bottom:821.514000px;}
.y101{bottom:821.525550px;}
.y145{bottom:821.531550px;}
.y4{bottom:821.590050px;}
.y115{bottom:824.519550px;}
.y16c{bottom:830.556900px;}
.y16{bottom:833.285250px;}
.yd{bottom:836.279250px;}
.yd5{bottom:836.508000px;}
.yae{bottom:836.519550px;}
.y7f{bottom:836.525550px;}
.y68{bottom:839.513550px;}
.yeb{bottom:842.809500px;}
.y5d{bottom:845.525550px;}
.y13b{bottom:848.279250px;}
.y125{bottom:848.508000px;}
.yc6{bottom:848.519550px;}
.y100{bottom:848.525550px;}
.y144{bottom:848.531550px;}
.y114{bottom:851.519550px;}
.y17c{bottom:857.297250px;}
.y16b{bottom:857.556900px;}
.y23{bottom:860.285250px;}
.y190{bottom:860.537550px;}
.yc{bottom:863.279250px;}
.y3b{bottom:863.508000px;}
.y7e{bottom:863.525550px;}
.y3{bottom:863.584050px;}
.y67{bottom:866.513550px;}
.yea{bottom:869.809500px;}
.y5c{bottom:872.525550px;}
.y15{bottom:875.279250px;}
.yc5{bottom:875.519550px;}
.yff{bottom:875.525550px;}
.y113{bottom:878.519550px;}
.y16a{bottom:882.054900px;}
.y22{bottom:887.285250px;}
.y18f{bottom:887.537550px;}
.yb{bottom:890.279250px;}
.y124{bottom:890.502000px;}
.y3a{bottom:890.508000px;}
.y7d{bottom:890.525550px;}
.ye9{bottom:896.809500px;}
.y17b{bottom:899.291250px;}
.y5b{bottom:899.525550px;}
.y11f{bottom:899.814150px;}
.y14{bottom:902.279250px;}
.yfe{bottom:902.525550px;}
.yc4{bottom:902.531550px;}
.yd4{bottom:905.502000px;}
.y112{bottom:905.519550px;}
.y2{bottom:905.578050px;}
.y169{bottom:909.054900px;}
.y66{bottom:914.519550px;}
.ya{bottom:917.279250px;}
.y123{bottom:917.502000px;}
.y39{bottom:917.508000px;}
.y7c{bottom:917.525550px;}
.y5a{bottom:926.525550px;}
.y13{bottom:929.279250px;}
.yc3{bottom:929.531550px;}
.yd3{bottom:932.502000px;}
.y111{bottom:932.519550px;}
.y168{bottom:933.552900px;}
.ye8{bottom:938.803500px;}
.y17a{bottom:941.285250px;}
.y9{bottom:944.279250px;}
.y122{bottom:944.502000px;}
.y7b{bottom:944.525550px;}
.y1{bottom:947.578050px;}
.y12{bottom:956.279250px;}
.y38{bottom:959.502000px;}
.y59{bottom:959.519550px;}
.y167{bottom:960.552900px;}
.ye7{bottom:965.803500px;}
.y8{bottom:971.279250px;}
.y121{bottom:971.502000px;}
.yc2{bottom:971.525550px;}
.y11{bottom:983.279250px;}
.y166{bottom:985.338900px;}
.y37{bottom:986.502000px;}
.y58{bottom:986.519550px;}
.ye6{bottom:992.803500px;}
.y7{bottom:998.279250px;}
.y120{bottom:998.508000px;}
.yc1{bottom:998.525550px;}
.y150{bottom:1009.314150px;}
.y36{bottom:1013.502000px;}
.y57{bottom:1013.519550px;}
.ye5{bottom:1019.803500px;}
.y14f{bottom:1030.914150px;}
.y35{bottom:1040.502000px;}
.y56{bottom:1040.519550px;}
.y6{bottom:1061.279250px;}
.y34{bottom:1067.502000px;}
.y55{bottom:1067.519550px;}
.ye4{bottom:1067.809500px;}
.y153{bottom:1071.264150px;}
.y152{bottom:1092.864150px;}
.y151{bottom:1114.464150px;}
.hc{height:16.362000px;}
.h6{height:48.761719px;}
.hd{height:49.992188px;}
.hb{height:51.264000px;}
.h8{height:51.408000px;}
.h5{height:52.066406px;}
.h7{height:52.136719px;}
.h9{height:60.759480px;}
.ha{height:63.151781px;}
.h3{height:63.175781px;}
.h2{height:63.351562px;}
.h4{height:78.099609px;}
.h1{height:252.703125px;}
.h0{height:1188.000000px;}
.w1{width:524.398500px;}
.w0{width:918.000000px;}
.x14{left:-361.500000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x23{left:114.756000px;}
.xa{left:126.000000px;}
.x25{left:132.746550px;}
.x1{left:153.000000px;}
.xd{left:169.506000px;}
.xe{left:188.064000px;}
.x1e{left:190.690350px;}
.x6{left:202.500000px;}
.x7{left:216.000000px;}
.x22{left:225.600000px;}
.x8{left:234.000000px;}
.xf{left:243.746100px;}
.x1f{left:261.016350px;}
.x15{left:263.438100px;}
.x9{left:277.506000px;}
.x10{left:344.287350px;}
.x11{left:349.819050px;}
.x20{left:361.373850px;}
.x19{left:391.131450px;}
.x1a{left:461.115450px;}
.xc{left:474.384000px;}
.x1d{left:487.861500px;}
.x12{left:514.624800px;}
.xb{left:520.236000px;}
.x3{left:543.186000px;}
.x1c{left:548.016300px;}
.x13{left:556.500000px;}
.x21{left:580.271850px;}
.x16{left:606.315300px;}
.x2{left:608.562000px;}
.x17{left:631.317300px;}
.x24{left:666.662550px;}
.x18{left:708.805200px;}
.x4{left:724.014000px;}
.x1b{left:1466.016300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.290667pt;}
.ls3{letter-spacing:-2.368000pt;}
.ls2{letter-spacing:-1.380544pt;}
.ls4{letter-spacing:-1.024000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.wsd{word-spacing:-54.144000pt;}
.wsc{word-spacing:-36.096000pt;}
.ws14{word-spacing:-21.043968pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.656000pt;}
.ws16{word-spacing:-13.632000pt;}
.ws10{word-spacing:-9.328000pt;}
.ws15{word-spacing:-7.947456pt;}
.ws2{word-spacing:-3.520000pt;}
.wsf{word-spacing:-0.064000pt;}
.ws17{word-spacing:-0.037312pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.256000pt;}
.ws18{word-spacing:1.024000pt;}
.ws3{word-spacing:11.904000pt;}
.ws11{word-spacing:43.904000pt;}
.ws19{word-spacing:59.232000pt;}
.wse{word-spacing:65.235200pt;}
.ws6{word-spacing:286.912000pt;}
.ws7{word-spacing:565.696000pt;}
.ws8{word-spacing:568.896000pt;}
.ws5{word-spacing:824.832000pt;}
.ws9{word-spacing:876.480000pt;}
.wsa{word-spacing:888.896000pt;}
.ws4{word-spacing:1039.936000pt;}
.wsb{word-spacing:1073.408000pt;}
._10{margin-left:-17.952000pt;}
._4{margin-left:-16.000000pt;}
._9{margin-left:-8.492800pt;}
._7{margin-left:-7.123200pt;}
._a{margin-left:-5.772800pt;}
._8{margin-left:-4.857600pt;}
._2{margin-left:-3.552000pt;}
._1{margin-left:-2.259200pt;}
._3{margin-left:-1.113600pt;}
._b{width:1.382400pt;}
._e{width:2.368000pt;}
._0{width:3.500800pt;}
._d{width:48.000000pt;}
._f{width:50.368000pt;}
._19{width:71.187200pt;}
._c{width:80.000000pt;}
._12{width:121.075200pt;}
._13{width:157.952000pt;}
._11{width:192.339200pt;}
._14{width:206.208000pt;}
._5{width:601.152000pt;}
._16{width:682.899200pt;}
._6{width:968.064000pt;}
._15{width:1005.952000pt;}
._17{width:1199.616000pt;}
._18{width:1263.680000pt;}
.fs3{font-size:37.312000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y13a{bottom:3.423600pt;}
.y131{bottom:39.674800pt;}
.y65{bottom:179.557333pt;}
.y9d{bottom:192.000000pt;}
.y164{bottom:193.094667pt;}
.y33{bottom:196.714000pt;}
.y1a3{bottom:196.906667pt;}
.y54{bottom:199.594267pt;}
.y7a{bottom:212.922267pt;}
.y9c{bottom:216.000000pt;}
.y163{bottom:217.094667pt;}
.y32{bottom:220.714000pt;}
.y92{bottom:222.400000pt;}
.y53{bottom:223.594267pt;}
.y143{bottom:231.386000pt;}
.yac{bottom:233.285067pt;}
.y1a2{bottom:234.234667pt;}
.y79{bottom:236.922267pt;}
.ye3{bottom:240.000000pt;}
.y162{bottom:241.094667pt;}
.y31{bottom:244.714000pt;}
.y18e{bottom:250.074000pt;}
.y142{bottom:255.386000pt;}
.y9b{bottom:255.981333pt;}
.yab{bottom:257.285067pt;}
.y52{bottom:260.922267pt;}
.ye2{bottom:264.000000pt;}
.y179{bottom:269.632133pt;}
.y1a1{bottom:271.562667pt;}
.yc0{bottom:271.588933pt;}
.y91{bottom:271.594267pt;}
.y18d{bottom:274.074000pt;}
.y78{bottom:274.250267pt;}
.yfd{bottom:277.164000pt;}
.y161{bottom:278.422667pt;}
.y9a{bottom:279.981333pt;}
.yaa{bottom:281.285067pt;}
.y30{bottom:282.042000pt;}
.y51{bottom:284.922267pt;}
.y11e{bottom:288.000000pt;}
.y141{bottom:292.714000pt;}
.y178{bottom:293.632133pt;}
.ybf{bottom:295.588933pt;}
.y90{bottom:295.594267pt;}
.y18c{bottom:298.074000pt;}
.y77{bottom:298.250267pt;}
.yfc{bottom:301.164000pt;}
.y160{bottom:302.422667pt;}
.y99{bottom:303.981333pt;}
.y2f{bottom:306.042000pt;}
.y110{bottom:306.250267pt;}
.y1a0{bottom:308.890667pt;}
.y50{bottom:308.922267pt;}
.y19f{bottom:311.626267pt;}
.y140{bottom:316.714000pt;}
.ya9{bottom:318.613067pt;}
.ye1{bottom:319.562667pt;}
.y8f{bottom:319.594267pt;}
.y76{bottom:322.250267pt;}
.yfb{bottom:325.164000pt;}
.y15f{bottom:326.422667pt;}
.y2e{bottom:330.042000pt;}
.y11d{bottom:330.239600pt;}
.y10f{bottom:330.250267pt;}
.y1a8{bottom:330.778667pt;}
.y177{bottom:331.632133pt;}
.ybe{bottom:332.916933pt;}
.y4f{bottom:332.922267pt;}
.y18b{bottom:335.402000pt;}
.y98{bottom:341.309333pt;}
.ya8{bottom:342.613067pt;}
.ye0{bottom:343.562667pt;}
.y8e{bottom:343.594267pt;}
.y75{bottom:346.250267pt;}
.y19e{bottom:348.954267pt;}
.yfa{bottom:349.164000pt;}
.y15e{bottom:350.422667pt;}
.y176{bottom:353.408133pt;}
.y2d{bottom:354.042000pt;}
.y10e{bottom:354.250267pt;}
.ybd{bottom:356.916933pt;}
.y18a{bottom:359.402000pt;}
.y97{bottom:365.309333pt;}
.ya7{bottom:366.613067pt;}
.ydf{bottom:367.562667pt;}
.y8d{bottom:367.594267pt;}
.y1a7{bottom:368.106667pt;}
.y74{bottom:370.250267pt;}
.y19d{bottom:372.954267pt;}
.yf9{bottom:373.164000pt;}
.y15d{bottom:374.422667pt;}
.y175{bottom:375.184133pt;}
.y2c{bottom:378.042000pt;}
.y10d{bottom:378.250267pt;}
.ybc{bottom:380.916933pt;}
.y189{bottom:383.402000pt;}
.y4e{bottom:386.250267pt;}
.y96{bottom:389.309333pt;}
.ya6{bottom:390.613067pt;}
.yde{bottom:391.562667pt;}
.y49{bottom:391.578667pt;}
.y8c{bottom:391.594267pt;}
.y73{bottom:394.250267pt;}
.y19c{bottom:396.954267pt;}
.y174{bottom:396.960133pt;}
.yf8{bottom:397.164000pt;}
.y2b{bottom:402.042000pt;}
.y10c{bottom:402.250267pt;}
.y1a6{bottom:405.434667pt;}
.y21{bottom:407.370000pt;}
.y15c{bottom:411.750667pt;}
.y95{bottom:413.309333pt;}
.ya5{bottom:414.613067pt;}
.y11c{bottom:415.578267pt;}
.ybb{bottom:418.244933pt;}
.y4d{bottom:418.250267pt;}
.y173{bottom:418.992133pt;}
.y188{bottom:420.730000pt;}
.y19b{bottom:420.954267pt;}
.yf7{bottom:421.164000pt;}
.y2a{bottom:426.042000pt;}
.ydd{bottom:428.890667pt;}
.y8b{bottom:428.922267pt;}
.y20{bottom:431.370000pt;}
.y72{bottom:431.578267pt;}
.yd2{bottom:433.776267pt;}
.y15b{bottom:435.750667pt;}
.y48{bottom:436.906667pt;}
.y94{bottom:437.309333pt;}
.ya4{bottom:438.613067pt;}
.y13f{bottom:439.370000pt;}
.y10b{bottom:439.578267pt;}
.yba{bottom:442.244933pt;}
.y4c{bottom:442.250267pt;}
.y1a5{bottom:442.762667pt;}
.y187{bottom:444.730000pt;}
.y29{bottom:450.042000pt;}
.y12f{bottom:451.224133pt;}
.yd1{bottom:452.800000pt;}
.ydc{bottom:452.890667pt;}
.y8a{bottom:452.922267pt;}
.y1f{bottom:455.370000pt;}
.y71{bottom:455.578267pt;}
.y19a{bottom:458.282267pt;}
.y15a{bottom:459.750667pt;}
.y47{bottom:460.906667pt;}
.y93{bottom:461.309333pt;}
.ya3{bottom:462.613067pt;}
.y14e{bottom:462.714000pt;}
.y13e{bottom:463.370000pt;}
.y10a{bottom:463.578267pt;}
.yb9{bottom:466.244933pt;}
.yf6{bottom:466.508000pt;}
.y186{bottom:468.730000pt;}
.y137{bottom:474.400000pt;}
.yd0{bottom:476.800000pt;}
.ydb{bottom:476.890667pt;}
.y89{bottom:476.922267pt;}
.y4b{bottom:479.578267pt;}
.y1a4{bottom:480.090667pt;}
.y12e{bottom:481.600000pt;}
.y199{bottom:482.282267pt;}
.y159{bottom:483.750667pt;}
.y46{bottom:484.906667pt;}
.y172{bottom:486.494800pt;}
.ya2{bottom:486.613067pt;}
.y28{bottom:487.370000pt;}
.y109{bottom:487.578267pt;}
.y14d{bottom:487.594267pt;}
.yb8{bottom:490.244933pt;}
.yf5{bottom:490.508000pt;}
.y9e{bottom:493.149733pt;}
.y136{bottom:493.600000pt;}
.ycf{bottom:500.800000pt;}
.yda{bottom:500.890667pt;}
.y11b{bottom:500.906267pt;}
.y88{bottom:500.922267pt;}
.y12d{bottom:505.600000pt;}
.y185{bottom:506.058000pt;}
.y158{bottom:507.750667pt;}
.y45{bottom:508.906667pt;}
.y27{bottom:511.370000pt;}
.y14c{bottom:511.594267pt;}
.yb7{bottom:514.244933pt;}
.yf4{bottom:514.508000pt;}
.y4a{bottom:516.906267pt;}
.y198{bottom:519.610267pt;}
.y1e{bottom:522.042000pt;}
.ya1{bottom:523.941067pt;}
.yd9{bottom:524.890667pt;}
.y108{bottom:524.906267pt;}
.y87{bottom:524.922267pt;}
.y12c{bottom:529.600000pt;}
.y184{bottom:530.058000pt;}
.y44{bottom:532.906667pt;}
.y26{bottom:535.370000pt;}
.yce{bottom:535.583600pt;}
.y14b{bottom:535.594267pt;}
.yb6{bottom:538.244933pt;}
.y135{bottom:538.250267pt;}
.yf3{bottom:538.508000pt;}
.y70{bottom:540.906267pt;}
.y130{bottom:542.714800pt;}
.y197{bottom:543.610267pt;}
.y157{bottom:545.078667pt;}
.y1d{bottom:546.042000pt;}
.y64{bottom:546.250267pt;}
.ya0{bottom:547.941067pt;}
.y107{bottom:548.906267pt;}
.y86{bottom:548.922267pt;}
.y12b{bottom:553.600000pt;}
.y183{bottom:554.058000pt;}
.y43{bottom:556.906667pt;}
.y25{bottom:559.370000pt;}
.ycd{bottom:559.583600pt;}
.y14a{bottom:559.594267pt;}
.yd8{bottom:562.234667pt;}
.yb5{bottom:562.244933pt;}
.y134{bottom:562.250267pt;}
.yf2{bottom:562.508000pt;}
.y6f{bottom:564.906267pt;}
.y196{bottom:567.610267pt;}
.y156{bottom:569.078667pt;}
.y63{bottom:570.250267pt;}
.y9f{bottom:571.941067pt;}
.y106{bottom:572.911600pt;}
.y11a{bottom:572.922267pt;}
.y182{bottom:578.058000pt;}
.y42{bottom:580.906667pt;}
.y1c{bottom:583.370000pt;}
.ycc{bottom:583.583600pt;}
.yd7{bottom:586.234667pt;}
.yb4{bottom:586.244933pt;}
.y85{bottom:586.250267pt;}
.yf1{bottom:586.508000pt;}
.y195{bottom:591.610267pt;}
.y155{bottom:593.078667pt;}
.y62{bottom:594.250267pt;}
.y105{bottom:596.911600pt;}
.y119{bottom:596.922267pt;}
.y6e{bottom:602.234267pt;}
.y41{bottom:604.906667pt;}
.y171{bottom:606.496800pt;}
.y1b{bottom:607.370000pt;}
.ycb{bottom:607.583600pt;}
.yd6{bottom:610.234667pt;}
.yb3{bottom:610.244933pt;}
.y84{bottom:610.250267pt;}
.y181{bottom:615.386000pt;}
.yf0{bottom:615.836000pt;}
.y154{bottom:617.078667pt;}
.yad{bottom:619.034800pt;}
.y13d{bottom:620.698000pt;}
.y12a{bottom:620.890667pt;}
.y104{bottom:620.911600pt;}
.y149{bottom:620.922267pt;}
.y6d{bottom:626.234267pt;}
.y194{bottom:628.938267pt;}
.y170{bottom:630.496800pt;}
.y1a{bottom:631.370000pt;}
.y40{bottom:634.234667pt;}
.yb2{bottom:634.244933pt;}
.y83{bottom:634.250267pt;}
.y180{bottom:639.386000pt;}
.y139{bottom:644.149333pt;}
.y24{bottom:644.698000pt;}
.y132{bottom:644.800000pt;}
.y129{bottom:644.890667pt;}
.yca{bottom:644.911600pt;}
.y148{bottom:644.922267pt;}
.y61{bottom:647.578267pt;}
.y6c{bottom:650.234267pt;}
.yef{bottom:653.164000pt;}
.y16f{bottom:654.496800pt;}
.y3f{bottom:658.234667pt;}
.y82{bottom:658.250267pt;}
.y165{bottom:661.152533pt;}
.y17f{bottom:663.386000pt;}
.y193{bottom:666.266267pt;}
.y19{bottom:668.698000pt;}
.y128{bottom:668.901333pt;}
.yc9{bottom:668.911600pt;}
.y147{bottom:668.922267pt;}
.y10{bottom:671.359333pt;}
.yb1{bottom:671.572933pt;}
.y133{bottom:671.578267pt;}
.y6b{bottom:674.234267pt;}
.yee{bottom:677.164000pt;}
.y117{bottom:677.193467pt;}
.y60{bottom:679.578267pt;}
.y3e{bottom:682.234667pt;}
.y103{bottom:682.244933pt;}
.y118{bottom:682.250267pt;}
.y138{bottom:686.666667pt;}
.y192{bottom:690.266267pt;}
.y16e{bottom:692.496800pt;}
.y18{bottom:692.698000pt;}
.y127{bottom:692.901333pt;}
.yc8{bottom:692.911600pt;}
.y5{bottom:692.974267pt;}
.yf{bottom:695.359333pt;}
.yb0{bottom:695.572933pt;}
.y81{bottom:695.578267pt;}
.y6a{bottom:698.234267pt;}
.y17e{bottom:700.714000pt;}
.y116{bottom:700.800000pt;}
.yed{bottom:701.164000pt;}
.y5f{bottom:703.578267pt;}
.y3d{bottom:706.234667pt;}
.y102{bottom:706.244933pt;}
.y146{bottom:706.250267pt;}
.y16d{bottom:716.496800pt;}
.y17{bottom:716.698000pt;}
.yc7{bottom:716.911600pt;}
.ye{bottom:719.359333pt;}
.yaf{bottom:719.572933pt;}
.y80{bottom:719.578267pt;}
.y69{bottom:722.234267pt;}
.y17d{bottom:724.714000pt;}
.yec{bottom:725.164000pt;}
.y5e{bottom:727.578267pt;}
.y191{bottom:727.594267pt;}
.y13c{bottom:730.026000pt;}
.y126{bottom:730.229333pt;}
.y3c{bottom:730.234667pt;}
.y101{bottom:730.244933pt;}
.y145{bottom:730.250267pt;}
.y4{bottom:730.302267pt;}
.y115{bottom:732.906267pt;}
.y16c{bottom:738.272800pt;}
.y16{bottom:740.698000pt;}
.yd{bottom:743.359333pt;}
.yd5{bottom:743.562667pt;}
.yae{bottom:743.572933pt;}
.y7f{bottom:743.578267pt;}
.y68{bottom:746.234267pt;}
.yeb{bottom:749.164000pt;}
.y5d{bottom:751.578267pt;}
.y13b{bottom:754.026000pt;}
.y125{bottom:754.229333pt;}
.yc6{bottom:754.239600pt;}
.y100{bottom:754.244933pt;}
.y144{bottom:754.250267pt;}
.y114{bottom:756.906267pt;}
.y17c{bottom:762.042000pt;}
.y16b{bottom:762.272800pt;}
.y23{bottom:764.698000pt;}
.y190{bottom:764.922267pt;}
.yc{bottom:767.359333pt;}
.y3b{bottom:767.562667pt;}
.y7e{bottom:767.578267pt;}
.y3{bottom:767.630267pt;}
.y67{bottom:770.234267pt;}
.yea{bottom:773.164000pt;}
.y5c{bottom:775.578267pt;}
.y15{bottom:778.026000pt;}
.yc5{bottom:778.239600pt;}
.yff{bottom:778.244933pt;}
.y113{bottom:780.906267pt;}
.y16a{bottom:784.048800pt;}
.y22{bottom:788.698000pt;}
.y18f{bottom:788.922267pt;}
.yb{bottom:791.359333pt;}
.y124{bottom:791.557333pt;}
.y3a{bottom:791.562667pt;}
.y7d{bottom:791.578267pt;}
.ye9{bottom:797.164000pt;}
.y17b{bottom:799.370000pt;}
.y5b{bottom:799.578267pt;}
.y11f{bottom:799.834800pt;}
.y14{bottom:802.026000pt;}
.yfe{bottom:802.244933pt;}
.yc4{bottom:802.250267pt;}
.yd4{bottom:804.890667pt;}
.y112{bottom:804.906267pt;}
.y2{bottom:804.958267pt;}
.y169{bottom:808.048800pt;}
.y66{bottom:812.906267pt;}
.ya{bottom:815.359333pt;}
.y123{bottom:815.557333pt;}
.y39{bottom:815.562667pt;}
.y7c{bottom:815.578267pt;}
.y5a{bottom:823.578267pt;}
.y13{bottom:826.026000pt;}
.yc3{bottom:826.250267pt;}
.yd3{bottom:828.890667pt;}
.y111{bottom:828.906267pt;}
.y168{bottom:829.824800pt;}
.ye8{bottom:834.492000pt;}
.y17a{bottom:836.698000pt;}
.y9{bottom:839.359333pt;}
.y122{bottom:839.557333pt;}
.y7b{bottom:839.578267pt;}
.y1{bottom:842.291600pt;}
.y12{bottom:850.026000pt;}
.y38{bottom:852.890667pt;}
.y59{bottom:852.906267pt;}
.y167{bottom:853.824800pt;}
.ye7{bottom:858.492000pt;}
.y8{bottom:863.359333pt;}
.y121{bottom:863.557333pt;}
.yc2{bottom:863.578267pt;}
.y11{bottom:874.026000pt;}
.y166{bottom:875.856800pt;}
.y37{bottom:876.890667pt;}
.y58{bottom:876.906267pt;}
.ye6{bottom:882.492000pt;}
.y7{bottom:887.359333pt;}
.y120{bottom:887.562667pt;}
.yc1{bottom:887.578267pt;}
.y150{bottom:897.168133pt;}
.y36{bottom:900.890667pt;}
.y57{bottom:900.906267pt;}
.ye5{bottom:906.492000pt;}
.y14f{bottom:916.368133pt;}
.y35{bottom:924.890667pt;}
.y56{bottom:924.906267pt;}
.y6{bottom:943.359333pt;}
.y34{bottom:948.890667pt;}
.y55{bottom:948.906267pt;}
.ye4{bottom:949.164000pt;}
.y153{bottom:952.234800pt;}
.y152{bottom:971.434800pt;}
.y151{bottom:990.634800pt;}
.hc{height:14.544000pt;}
.h6{height:43.343750pt;}
.hd{height:44.437500pt;}
.hb{height:45.568000pt;}
.h8{height:45.696000pt;}
.h5{height:46.281250pt;}
.h7{height:46.343750pt;}
.h9{height:54.008427pt;}
.ha{height:56.134917pt;}
.h3{height:56.156250pt;}
.h2{height:56.312500pt;}
.h4{height:69.421875pt;}
.h1{height:224.625000pt;}
.h0{height:1056.000000pt;}
.w1{width:466.132000pt;}
.w0{width:816.000000pt;}
.x14{left:-321.333333pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x23{left:102.005333pt;}
.xa{left:112.000000pt;}
.x25{left:117.996933pt;}
.x1{left:136.000000pt;}
.xd{left:150.672000pt;}
.xe{left:167.168000pt;}
.x1e{left:169.502533pt;}
.x6{left:180.000000pt;}
.x7{left:192.000000pt;}
.x22{left:200.533333pt;}
.x8{left:208.000000pt;}
.xf{left:216.663200pt;}
.x1f{left:232.014533pt;}
.x15{left:234.167200pt;}
.x9{left:246.672000pt;}
.x10{left:306.033200pt;}
.x11{left:310.950267pt;}
.x20{left:321.221200pt;}
.x19{left:347.672400pt;}
.x1a{left:409.880400pt;}
.xc{left:421.674667pt;}
.x1d{left:433.654667pt;}
.x12{left:457.444267pt;}
.xb{left:462.432000pt;}
.x3{left:482.832000pt;}
.x1c{left:487.125600pt;}
.x13{left:494.666667pt;}
.x21{left:515.797200pt;}
.x16{left:538.946933pt;}
.x2{left:540.944000pt;}
.x17{left:561.170933pt;}
.x24{left:592.588933pt;}
.x18{left:630.049067pt;}
.x4{left:643.568000pt;}
.x1b{left:1303.125600pt;}
}




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