
    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_5ed0eb952048d77061b3b8e0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_19ef41886b8df2c7aa4f12cf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_fd2394426232b95b882509eb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_3a4dd283aeb51e168c7429ae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;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_6961d7a53b39c42ad382ab49.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_1e31e9410bf1639788e1b4be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_72cc53c5d9a33d87d7ad5af2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:23.382000px;}
.v3{vertical-align:26.472000px;}
.ls1c{letter-spacing:-3.168000px;}
.ls21{letter-spacing:-2.640000px;}
.lse{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.630000px;}
.ls6{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.315000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.315000px;}
.ls20{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.945000px;}
.ls4{letter-spacing:1.224000px;}
.ls18{letter-spacing:1.638000px;}
.ls10{letter-spacing:2.088000px;}
.ls1b{letter-spacing:3.312000px;}
.ls19{letter-spacing:3.780000px;}
.ls0{letter-spacing:4.200000px;}
.ls1a{letter-spacing:5.313600px;}
.ls7{letter-spacing:5.400000px;}
.lsa{letter-spacing:5.616000px;}
.ls1d{letter-spacing:6.000000px;}
.ls5{letter-spacing:6.264000px;}
.ls1{letter-spacing:6.600000px;}
.ls16{letter-spacing:6.930000px;}
.ls9{letter-spacing:7.200000px;}
.ls25{letter-spacing:7.344000px;}
.lsc{letter-spacing:9.009000px;}
.ls17{letter-spacing:10.143000px;}
.ls2{letter-spacing:10.200000px;}
.ls13{letter-spacing:10.458000px;}
.ls1e{letter-spacing:10.956000px;}
.ls26{letter-spacing:19.800000px;}
.ls1f{letter-spacing:25.938000px;}
.ls8{letter-spacing:148.632000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-38.862000px;}
.ws2a{word-spacing:-27.432000px;}
.ws2b{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.ws11{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.512000px;}
.ws16{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.546000px;}
.ws1a{word-spacing:-18.333000px;}
.ws1f{word-spacing:-18.144000px;}
.ws1d{word-spacing:-18.018000px;}
.ws4{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.703000px;}
.ws8{word-spacing:-17.424000px;}
.ws1e{word-spacing:-17.388000px;}
.ws17{word-spacing:-17.073000px;}
.ws0{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.302000px;}
.ws1c{word-spacing:-16.191000px;}
.ws2e{word-spacing:-15.972000px;}
.ws2c{word-spacing:-15.906000px;}
.ws15{word-spacing:-15.876000px;}
.ws2d{word-spacing:-15.642000px;}
.ws19{word-spacing:-15.561000px;}
.ws13{word-spacing:-15.246000px;}
.ws18{word-spacing:-14.931000px;}
.ws2f{word-spacing:-14.820000px;}
.ws5{word-spacing:-14.079000px;}
.ws3{word-spacing:-12.139200px;}
.ws7{word-spacing:-11.856000px;}
.ws1b{word-spacing:-0.693000px;}
.ws6{word-spacing:0.000000px;}
.ws23{word-spacing:295.878000px;}
.ws22{word-spacing:339.702000px;}
.wsb{word-spacing:384.648000px;}
.wse{word-spacing:387.288000px;}
.wsd{word-spacing:421.014000px;}
.wsf{word-spacing:451.440000px;}
.wsc{word-spacing:458.568000px;}
.ws20{word-spacing:520.212000px;}
.ws24{word-spacing:541.398000px;}
.ws27{word-spacing:543.972000px;}
.ws29{word-spacing:552.486000px;}
.ws26{word-spacing:577.764000px;}
.ws28{word-spacing:608.124000px;}
.ws25{word-spacing:615.318000px;}
.ws21{word-spacing:686.532000px;}
._2b{margin-left:-21.840000px;}
._25{margin-left:-20.664000px;}
._20{margin-left:-19.458000px;}
._21{margin-left:-18.180000px;}
._24{margin-left:-16.434000px;}
._10{margin-left:-15.372000px;}
._e{margin-left:-13.968000px;}
._22{margin-left:-12.915000px;}
._2c{margin-left:-11.286000px;}
._6{margin-left:-10.200000px;}
._28{margin-left:-8.781000px;}
._7{margin-left:-7.650000px;}
._5{margin-left:-6.630000px;}
._3{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._2{margin-left:-1.980000px;}
._b{width:1.512000px;}
._4{width:2.700000px;}
._1{width:3.780000px;}
._13{width:5.040000px;}
._f{width:6.408000px;}
._a{width:8.244000px;}
._9{width:9.756000px;}
._8{width:11.592000px;}
._c{width:12.744000px;}
._12{width:13.788000px;}
._23{width:14.967000px;}
._14{width:15.984000px;}
._15{width:17.568000px;}
._d{width:18.612000px;}
._17{width:19.620000px;}
._19{width:20.664000px;}
._16{width:22.608000px;}
._18{width:23.904000px;}
._29{width:29.238000px;}
._2a{width:30.498000px;}
._11{width:56.923200px;}
._1f{width:89.832000px;}
._1e{width:224.928000px;}
._1b{width:241.560000px;}
._1d{width:292.644000px;}
._1c{width:484.374000px;}
._1a{width:487.740000px;}
._27{width:585.024000px;}
._26{width:656.964000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsb{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:76.337550px;}
.y1{bottom:76.340400px;}
.yfc{bottom:140.311500px;}
.y21{bottom:140.314500px;}
.yd1{bottom:143.111400px;}
.y115{bottom:143.504250px;}
.y139{bottom:143.680800px;}
.y156{bottom:143.849250px;}
.y8d{bottom:145.183650px;}
.yec{bottom:145.876350px;}
.y195{bottom:148.150800px;}
.y176{bottom:148.893000px;}
.y46{bottom:149.521350px;}
.y69{bottom:154.900500px;}
.y155{bottom:161.851500px;}
.y114{bottom:162.105000px;}
.yfb{bottom:162.363000px;}
.y20{bottom:162.366000px;}
.y8c{bottom:163.185900px;}
.y138{bottom:164.686800px;}
.yd0{bottom:164.711400px;}
.y194{bottom:170.344800px;}
.y45{bottom:171.715350px;}
.y68{bottom:172.902000px;}
.y1f{bottom:173.311500px;}
.y175{bottom:176.877000px;}
.y113{bottom:180.705750px;}
.y8b{bottom:181.188150px;}
.y137{bottom:185.692800px;}
.ycf{bottom:186.311400px;}
.y154{bottom:188.358750px;}
.y1e{bottom:189.813000px;}
.y193{bottom:192.538800px;}
.yfa{bottom:193.312350px;}
.y44{bottom:193.315350px;}
.y8a{bottom:199.190400px;}
.y112{bottom:199.306500px;}
.y67{bottom:200.886000px;}
.y174{bottom:204.861000px;}
.yaf{bottom:205.611750px;}
.y1d{bottom:206.314500px;}
.y153{bottom:206.361000px;}
.y136{bottom:206.698800px;}
.yce{bottom:207.911400px;}
.y192{bottom:214.732800px;}
.yf9{bottom:214.912350px;}
.y43{bottom:214.915350px;}
.y89{bottom:217.192650px;}
.y111{bottom:217.907250px;}
.y66{bottom:218.887500px;}
.yae{bottom:227.211750px;}
.y135{bottom:227.704800px;}
.y1c{bottom:228.366000px;}
.ycd{bottom:229.511400px;}
.y173{bottom:232.845000px;}
.y152{bottom:232.868250px;}
.y88{bottom:235.194900px;}
.y110{bottom:236.508000px;}
.yf8{bottom:236.512350px;}
.y42{bottom:236.515350px;}
.y191{bottom:236.926800px;}
.y65{bottom:246.871500px;}
.yad{bottom:248.811750px;}
.y151{bottom:250.870500px;}
.ycc{bottom:251.111400px;}
.y87{bottom:253.197150px;}
.y10f{bottom:255.108750px;}
.yf7{bottom:258.112350px;}
.y41{bottom:258.115350px;}
.y190{bottom:259.120800px;}
.y1b{bottom:260.599500px;}
.y64{bottom:264.873000px;}
.y172{bottom:265.779000px;}
.y134{bottom:267.302550px;}
.yac{bottom:270.411750px;}
.y86{bottom:271.199400px;}
.ycb{bottom:272.711400px;}
.y10e{bottom:273.709500px;}
.y150{bottom:277.377750px;}
.yf6{bottom:279.712350px;}
.y40{bottom:279.715350px;}
.y18f{bottom:281.314800px;}
.y1a{bottom:281.893500px;}
.y171{bottom:285.579000px;}
.y133{bottom:285.903300px;}
.y85{bottom:289.201650px;}
.yab{bottom:292.011750px;}
.y10d{bottom:292.310250px;}
.y63{bottom:292.857000px;}
.yca{bottom:294.311400px;}
.y14f{bottom:295.380000px;}
.yf5{bottom:301.312350px;}
.y3f{bottom:301.315350px;}
.y19{bottom:303.187500px;}
.y18e{bottom:303.508800px;}
.y132{bottom:304.504050px;}
.y84{bottom:307.203900px;}
.y62{bottom:310.858500px;}
.y10c{bottom:310.911000px;}
.y14e{bottom:313.382250px;}
.y170{bottom:313.563000px;}
.yaa{bottom:313.611750px;}
.yc9{bottom:315.911400px;}
.yf4{bottom:322.912350px;}
.y3e{bottom:322.915350px;}
.y131{bottom:323.104800px;}
.y18{bottom:324.481500px;}
.y83{bottom:325.206150px;}
.y18d{bottom:325.702800px;}
.y1ca{bottom:326.108550px;}
.y10b{bottom:329.511750px;}
.y1b2{bottom:334.495650px;}
.ya9{bottom:335.211750px;}
.yc8{bottom:337.511400px;}
.y61{bottom:338.842500px;}
.y14d{bottom:339.889500px;}
.y16f{bottom:341.547000px;}
.y82{bottom:343.208400px;}
.y1c9{bottom:344.108550px;}
.yf3{bottom:344.512350px;}
.y3d{bottom:344.515350px;}
.y17{bottom:345.775500px;}
.y18c{bottom:347.896800px;}
.y10a{bottom:348.112500px;}
.ya8{bottom:356.811750px;}
.y14c{bottom:357.891750px;}
.yc7{bottom:359.111400px;}
.y130{bottom:359.692800px;}
.y1c8{bottom:362.108550px;}
.yf2{bottom:366.112350px;}
.yeb{bottom:366.112500px;}
.y3c{bottom:366.115350px;}
.y60{bottom:366.826500px;}
.y16{bottom:367.069500px;}
.y18b{bottom:370.090800px;}
.y1b1{bottom:371.395800px;}
.y16e{bottom:375.715500px;}
.ya7{bottom:378.411750px;}
.y81{bottom:379.208550px;}
.y1c7{bottom:380.108550px;}
.y12f{bottom:380.698800px;}
.yc6{bottom:380.711400px;}
.y14b{bottom:384.399000px;}
.y109{bottom:384.712350px;}
.yf1{bottom:387.712350px;}
.yea{bottom:387.712500px;}
.y3b{bottom:387.715350px;}
.y15{bottom:388.363500px;}
.y1b0{bottom:391.195800px;}
.y18a{bottom:392.284800px;}
.y5f{bottom:394.810500px;}
.ya6{bottom:400.011750px;}
.y80{bottom:400.808550px;}
.y12e{bottom:401.704800px;}
.yc5{bottom:402.311400px;}
.y14a{bottom:402.401250px;}
.y108{bottom:406.312350px;}
.yf0{bottom:409.312350px;}
.ye9{bottom:409.312500px;}
.y3a{bottom:409.315350px;}
.y14{bottom:409.657500px;}
.y1af{bottom:410.995800px;}
.y189{bottom:414.478800px;}
.y16d{bottom:417.253350px;}
.y149{bottom:420.403500px;}
.ya5{bottom:421.611750px;}
.y7f{bottom:422.408550px;}
.y5e{bottom:422.794500px;}
.yc4{bottom:423.911400px;}
.y107{bottom:427.912350px;}
.y1ae{bottom:430.795800px;}
.yef{bottom:430.912350px;}
.ye8{bottom:430.912500px;}
.y39{bottom:430.915350px;}
.y13{bottom:430.981500px;}
.y1c6{bottom:435.008550px;}
.y188{bottom:436.672800px;}
.y16c{bottom:439.447350px;}
.y12d{bottom:440.103750px;}
.y5d{bottom:440.796000px;}
.ya4{bottom:443.211750px;}
.y7e{bottom:444.008550px;}
.yc3{bottom:445.511400px;}
.y1ad{bottom:450.595800px;}
.y12{bottom:452.275500px;}
.yee{bottom:452.512350px;}
.ye7{bottom:452.512500px;}
.y38{bottom:452.515350px;}
.y1c5{bottom:454.808550px;}
.y148{bottom:455.803500px;}
.y5c{bottom:458.797500px;}
.y187{bottom:458.866800px;}
.y12c{bottom:459.003750px;}
.y16b{bottom:461.641350px;}
.ya3{bottom:464.811750px;}
.y7d{bottom:465.608550px;}
.yc2{bottom:467.111400px;}
.y106{bottom:467.498850px;}
.y1ac{bottom:470.395800px;}
.y11{bottom:473.569500px;}
.yed{bottom:474.112350px;}
.ye6{bottom:474.112500px;}
.y37{bottom:474.115350px;}
.y1c4{bottom:474.608550px;}
.y147{bottom:477.403500px;}
.y12b{bottom:477.903750px;}
.y186{bottom:481.060800px;}
.y16a{bottom:483.835350px;}
.y105{bottom:485.800350px;}
.ya2{bottom:486.411750px;}
.y5b{bottom:486.781500px;}
.y7c{bottom:487.208550px;}
.yc1{bottom:488.711400px;}
.y1ab{bottom:490.195800px;}
.y1c3{bottom:494.408550px;}
.y10{bottom:494.863500px;}
.ye5{bottom:495.712500px;}
.y36{bottom:495.715350px;}
.y12a{bottom:496.803750px;}
.y185{bottom:503.254800px;}
.y104{bottom:504.101850px;}
.y5a{bottom:504.783000px;}
.y169{bottom:506.029350px;}
.ya1{bottom:508.011750px;}
.y7b{bottom:508.808550px;}
.y1aa{bottom:509.995800px;}
.yc0{bottom:510.311400px;}
.y1c2{bottom:514.208550px;}
.y129{bottom:515.703750px;}
.yf{bottom:516.157500px;}
.y146{bottom:516.374850px;}
.ye4{bottom:517.312500px;}
.y35{bottom:517.315350px;}
.y103{bottom:522.403350px;}
.y59{bottom:522.784500px;}
.y184{bottom:525.448800px;}
.y168{bottom:528.223350px;}
.ya0{bottom:529.611750px;}
.y1a9{bottom:529.795800px;}
.y7a{bottom:530.408550px;}
.ybf{bottom:531.911400px;}
.y1c1{bottom:534.008550px;}
.y145{bottom:534.377100px;}
.y128{bottom:534.603750px;}
.ye{bottom:537.493500px;}
.ye3{bottom:538.912500px;}
.y34{bottom:538.915350px;}
.y102{bottom:540.704850px;}
.y183{bottom:547.642800px;}
.y1a8{bottom:549.595800px;}
.y167{bottom:550.417350px;}
.y58{bottom:550.768500px;}
.y9f{bottom:551.211750px;}
.y79{bottom:552.008550px;}
.y127{bottom:553.503750px;}
.ybe{bottom:553.511400px;}
.y1c0{bottom:553.808550px;}
.yd{bottom:558.787500px;}
.y101{bottom:559.006350px;}
.ye2{bottom:560.512500px;}
.y33{bottom:560.515350px;}
.y144{bottom:560.884350px;}
.y57{bottom:568.770000px;}
.y1a7{bottom:569.395800px;}
.y182{bottom:569.836800px;}
.y126{bottom:572.403750px;}
.y166{bottom:572.611350px;}
.y9e{bottom:572.811750px;}
.y78{bottom:573.608550px;}
.ybd{bottom:575.111400px;}
.y100{bottom:577.307850px;}
.y143{bottom:578.886600px;}
.yc{bottom:580.081500px;}
.ye1{bottom:582.112500px;}
.y32{bottom:582.115350px;}
.y56{bottom:586.771500px;}
.y1a6{bottom:589.195800px;}
.y125{bottom:591.303750px;}
.y181{bottom:592.030800px;}
.y1bf{bottom:593.408550px;}
.y9d{bottom:594.411750px;}
.y165{bottom:594.805350px;}
.y77{bottom:595.208550px;}
.yff{bottom:595.609350px;}
.ybc{bottom:596.711400px;}
.y142{bottom:596.888850px;}
.yb{bottom:601.375500px;}
.ye0{bottom:603.712500px;}
.y31{bottom:603.715350px;}
.y55{bottom:604.773000px;}
.y1a5{bottom:608.995800px;}
.y124{bottom:610.203750px;}
.y1be{bottom:613.208550px;}
.yfe{bottom:613.910850px;}
.y180{bottom:614.224800px;}
.y141{bottom:614.891100px;}
.y9c{bottom:616.011750px;}
.y76{bottom:616.808550px;}
.y164{bottom:616.999350px;}
.ybb{bottom:618.311400px;}
.ya{bottom:622.669500px;}
.ydf{bottom:625.312500px;}
.y30{bottom:625.315350px;}
.y1a4{bottom:628.795800px;}
.yfd{bottom:632.212350px;}
.y54{bottom:632.757000px;}
.y1bd{bottom:633.008550px;}
.y17f{bottom:636.418800px;}
.y123{bottom:637.608750px;}
.y75{bottom:638.408550px;}
.y163{bottom:639.193350px;}
.yba{bottom:639.911400px;}
.y140{bottom:641.398350px;}
.y9{bottom:643.963500px;}
.yde{bottom:646.912500px;}
.y2f{bottom:646.915350px;}
.y1a3{bottom:648.595800px;}
.y53{bottom:650.758500px;}
.y1bc{bottom:652.808550px;}
.y122{bottom:656.508750px;}
.y9b{bottom:659.211750px;}
.y13f{bottom:659.400600px;}
.y74{bottom:660.008550px;}
.y162{bottom:661.387350px;}
.yb9{bottom:661.511400px;}
.y8{bottom:665.257500px;}
.y17e{bottom:667.122750px;}
.ydd{bottom:668.512500px;}
.y2e{bottom:668.515350px;}
.y1bb{bottom:672.608550px;}
.y121{bottom:675.408750px;}
.y1a2{bottom:676.899600px;}
.y13e{bottom:677.402850px;}
.y52{bottom:678.742500px;}
.y9a{bottom:680.811750px;}
.y73{bottom:681.608550px;}
.yb8{bottom:683.111400px;}
.y161{bottom:683.581350px;}
.y7{bottom:686.551500px;}
.ydc{bottom:690.112500px;}
.y2d{bottom:690.115350px;}
.y1ba{bottom:692.408550px;}
.y120{bottom:694.308750px;}
.y13d{bottom:695.405100px;}
.y51{bottom:696.744000px;}
.y99{bottom:702.411750px;}
.y72{bottom:703.208550px;}
.yb7{bottom:704.711400px;}
.y160{bottom:705.775350px;}
.ydb{bottom:711.712500px;}
.y2c{bottom:711.715350px;}
.y1b9{bottom:712.208550px;}
.y11f{bottom:713.208750px;}
.y13c{bottom:713.407350px;}
.y1a1{bottom:723.203700px;}
.y98{bottom:724.011750px;}
.y71{bottom:724.808550px;}
.y15f{bottom:727.969350px;}
.y50{bottom:730.912500px;}
.y1b8{bottom:732.008550px;}
.y11e{bottom:732.108750px;}
.yda{bottom:733.312500px;}
.y2b{bottom:733.315350px;}
.y17d{bottom:734.605350px;}
.y13b{bottom:739.914600px;}
.y1a0{bottom:743.003700px;}
.y97{bottom:745.611750px;}
.yb6{bottom:747.901350px;}
.y15e{bottom:750.163350px;}
.y1b7{bottom:751.808550px;}
.yd9{bottom:754.912500px;}
.y2a{bottom:754.915350px;}
.y13a{bottom:758.515350px;}
.y17c{bottom:762.589350px;}
.y19f{bottom:762.803700px;}
.yb5{bottom:766.202850px;}
.y70{bottom:768.008550px;}
.y11d{bottom:768.984750px;}
.y1b6{bottom:771.608550px;}
.y4f{bottom:772.354500px;}
.y15d{bottom:772.357350px;}
.yd8{bottom:776.512500px;}
.y29{bottom:776.515350px;}
.y19e{bottom:782.603700px;}
.yb4{bottom:784.504350px;}
.y96{bottom:785.193750px;}
.y6f{bottom:789.608550px;}
.y11c{bottom:789.990750px;}
.y17b{bottom:790.573350px;}
.y1b5{bottom:791.408550px;}
.y6{bottom:794.251500px;}
.y4e{bottom:794.548500px;}
.y15c{bottom:794.551350px;}
.yd7{bottom:798.112500px;}
.y28{bottom:798.115350px;}
.y19d{bottom:802.403700px;}
.yb3{bottom:802.805850px;}
.y95{bottom:803.196000px;}
.y11b{bottom:810.996750px;}
.y6e{bottom:811.208550px;}
.y4d{bottom:816.742500px;}
.y15b{bottom:816.745350px;}
.y17a{bottom:818.557350px;}
.yd6{bottom:819.712500px;}
.y27{bottom:819.715350px;}
.yb2{bottom:821.107350px;}
.y94{bottom:821.198250px;}
.y19c{bottom:822.203700px;}
.y5{bottom:824.851500px;}
.y1b4{bottom:831.008550px;}
.y11a{bottom:832.002750px;}
.y6d{bottom:832.808550px;}
.y179{bottom:838.357350px;}
.y4c{bottom:838.936500px;}
.y15a{bottom:838.939350px;}
.y93{bottom:839.200500px;}
.yd5{bottom:841.312500px;}
.y26{bottom:841.315350px;}
.y19b{bottom:842.003700px;}
.yb1{bottom:847.913850px;}
.y119{bottom:853.008750px;}
.y6c{bottom:854.408550px;}
.y4{bottom:855.451500px;}
.y92{bottom:857.202750px;}
.y4b{bottom:861.130500px;}
.y159{bottom:861.133350px;}
.y19a{bottom:861.803700px;}
.yd4{bottom:862.912500px;}
.y25{bottom:862.915350px;}
.yb0{bottom:866.215350px;}
.y178{bottom:866.341350px;}
.y91{bottom:875.205000px;}
.y6b{bottom:876.008550px;}
.y1b3{bottom:877.808550px;}
.y199{bottom:881.603700px;}
.y4a{bottom:883.324500px;}
.y158{bottom:883.327350px;}
.yd3{bottom:884.512500px;}
.y24{bottom:884.515350px;}
.y118{bottom:892.007250px;}
.y90{bottom:893.207250px;}
.y177{bottom:894.506850px;}
.y6a{bottom:897.608550px;}
.y198{bottom:901.403700px;}
.y49{bottom:905.518500px;}
.y157{bottom:905.521350px;}
.yd2{bottom:906.112500px;}
.y23{bottom:906.115350px;}
.y117{bottom:910.608000px;}
.y3{bottom:910.713000px;}
.y8f{bottom:911.209500px;}
.y48{bottom:927.712500px;}
.y22{bottom:927.715350px;}
.y196{bottom:928.710000px;}
.y2{bottom:928.713000px;}
.y116{bottom:929.208750px;}
.y8e{bottom:929.211750px;}
.y197{bottom:929.707650px;}
.ha{height:30.568359px;}
.h4{height:35.663086px;}
.h3{height:38.645086px;}
.hc{height:40.757812px;}
.h12{height:41.396484px;}
.he{height:45.536133px;}
.hb{height:48.399902px;}
.hd{height:49.675781px;}
.h2{height:50.947266px;}
.hf{height:53.494629px;}
.h10{height:55.478777px;}
.h5{height:56.041992px;}
.h7{height:61.136719px;}
.h8{height:63.154031px;}
.h9{height:63.202031px;}
.h11{height:63.321431px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.xb{left:84.635550px;}
.x1{left:97.795350px;}
.x7{left:106.299300px;}
.x4{left:119.053350px;}
.xa{left:140.317650px;}
.x2{left:143.170350px;}
.x3{left:263.077950px;}
.x8{left:265.431900px;}
.xc{left:300.637050px;}
.xd{left:321.896850px;}
.x9{left:443.735850px;}
.xe{left:521.949450px;}
.x5{left:579.664350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:20.784000pt;}
.v3{vertical-align:23.530667pt;}
.ls1c{letter-spacing:-2.816000pt;}
.ls21{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.280000pt;}
.ls20{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.840000pt;}
.ls4{letter-spacing:1.088000pt;}
.ls18{letter-spacing:1.456000pt;}
.ls10{letter-spacing:1.856000pt;}
.ls1b{letter-spacing:2.944000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1a{letter-spacing:4.723200pt;}
.ls7{letter-spacing:4.800000pt;}
.lsa{letter-spacing:4.992000pt;}
.ls1d{letter-spacing:5.333333pt;}
.ls5{letter-spacing:5.568000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls16{letter-spacing:6.160000pt;}
.ls9{letter-spacing:6.400000pt;}
.ls25{letter-spacing:6.528000pt;}
.lsc{letter-spacing:8.008000pt;}
.ls17{letter-spacing:9.016000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls13{letter-spacing:9.296000pt;}
.ls1e{letter-spacing:9.738667pt;}
.ls26{letter-spacing:17.600000pt;}
.ls1f{letter-spacing:23.056000pt;}
.ls8{letter-spacing:132.117333pt;}
.ws1{word-spacing:-34.544000pt;}
.ws2a{word-spacing:-24.384000pt;}
.ws2b{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws11{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.344000pt;}
.ws16{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.485333pt;}
.ws1a{word-spacing:-16.296000pt;}
.ws1f{word-spacing:-16.128000pt;}
.ws1d{word-spacing:-16.016000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.736000pt;}
.ws8{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.456000pt;}
.ws17{word-spacing:-15.176000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.490667pt;}
.ws1c{word-spacing:-14.392000pt;}
.ws2e{word-spacing:-14.197333pt;}
.ws2c{word-spacing:-14.138667pt;}
.ws15{word-spacing:-14.112000pt;}
.ws2d{word-spacing:-13.904000pt;}
.ws19{word-spacing:-13.832000pt;}
.ws13{word-spacing:-13.552000pt;}
.ws18{word-spacing:-13.272000pt;}
.ws2f{word-spacing:-13.173333pt;}
.ws5{word-spacing:-12.514667pt;}
.ws3{word-spacing:-10.790400pt;}
.ws7{word-spacing:-10.538667pt;}
.ws1b{word-spacing:-0.616000pt;}
.ws6{word-spacing:0.000000pt;}
.ws23{word-spacing:263.002667pt;}
.ws22{word-spacing:301.957333pt;}
.wsb{word-spacing:341.909333pt;}
.wse{word-spacing:344.256000pt;}
.wsd{word-spacing:374.234667pt;}
.wsf{word-spacing:401.280000pt;}
.wsc{word-spacing:407.616000pt;}
.ws20{word-spacing:462.410667pt;}
.ws24{word-spacing:481.242667pt;}
.ws27{word-spacing:483.530667pt;}
.ws29{word-spacing:491.098667pt;}
.ws26{word-spacing:513.568000pt;}
.ws28{word-spacing:540.554667pt;}
.ws25{word-spacing:546.949333pt;}
.ws21{word-spacing:610.250667pt;}
._2b{margin-left:-19.413333pt;}
._25{margin-left:-18.368000pt;}
._20{margin-left:-17.296000pt;}
._21{margin-left:-16.160000pt;}
._24{margin-left:-14.608000pt;}
._10{margin-left:-13.664000pt;}
._e{margin-left:-12.416000pt;}
._22{margin-left:-11.480000pt;}
._2c{margin-left:-10.032000pt;}
._6{margin-left:-9.066667pt;}
._28{margin-left:-7.805333pt;}
._7{margin-left:-6.800000pt;}
._5{margin-left:-5.893333pt;}
._3{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._2{margin-left:-1.760000pt;}
._b{width:1.344000pt;}
._4{width:2.400000pt;}
._1{width:3.360000pt;}
._13{width:4.480000pt;}
._f{width:5.696000pt;}
._a{width:7.328000pt;}
._9{width:8.672000pt;}
._8{width:10.304000pt;}
._c{width:11.328000pt;}
._12{width:12.256000pt;}
._23{width:13.304000pt;}
._14{width:14.208000pt;}
._15{width:15.616000pt;}
._d{width:16.544000pt;}
._17{width:17.440000pt;}
._19{width:18.368000pt;}
._16{width:20.096000pt;}
._18{width:21.248000pt;}
._29{width:25.989333pt;}
._2a{width:27.109333pt;}
._11{width:50.598400pt;}
._1f{width:79.850667pt;}
._1e{width:199.936000pt;}
._1b{width:214.720000pt;}
._1d{width:260.128000pt;}
._1c{width:430.554667pt;}
._1a{width:433.546667pt;}
._27{width:520.021333pt;}
._26{width:583.968000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:67.855600pt;}
.y1{bottom:67.858133pt;}
.yfc{bottom:124.721333pt;}
.y21{bottom:124.724000pt;}
.yd1{bottom:127.210133pt;}
.y115{bottom:127.559333pt;}
.y139{bottom:127.716267pt;}
.y156{bottom:127.866000pt;}
.y8d{bottom:129.052133pt;}
.yec{bottom:129.667867pt;}
.y195{bottom:131.689600pt;}
.y176{bottom:132.349333pt;}
.y46{bottom:132.907867pt;}
.y69{bottom:137.689333pt;}
.y155{bottom:143.868000pt;}
.y114{bottom:144.093333pt;}
.yfb{bottom:144.322667pt;}
.y20{bottom:144.325333pt;}
.y8c{bottom:145.054133pt;}
.y138{bottom:146.388267pt;}
.yd0{bottom:146.410133pt;}
.y194{bottom:151.417600pt;}
.y45{bottom:152.635867pt;}
.y68{bottom:153.690667pt;}
.y1f{bottom:154.054667pt;}
.y175{bottom:157.224000pt;}
.y113{bottom:160.627333pt;}
.y8b{bottom:161.056133pt;}
.y137{bottom:165.060267pt;}
.ycf{bottom:165.610133pt;}
.y154{bottom:167.430000pt;}
.y1e{bottom:168.722667pt;}
.y193{bottom:171.145600pt;}
.yfa{bottom:171.833200pt;}
.y44{bottom:171.835867pt;}
.y8a{bottom:177.058133pt;}
.y112{bottom:177.161333pt;}
.y67{bottom:178.565333pt;}
.y174{bottom:182.098667pt;}
.yaf{bottom:182.766000pt;}
.y1d{bottom:183.390667pt;}
.y153{bottom:183.432000pt;}
.y136{bottom:183.732267pt;}
.yce{bottom:184.810133pt;}
.y192{bottom:190.873600pt;}
.yf9{bottom:191.033200pt;}
.y43{bottom:191.035867pt;}
.y89{bottom:193.060133pt;}
.y111{bottom:193.695333pt;}
.y66{bottom:194.566667pt;}
.yae{bottom:201.966000pt;}
.y135{bottom:202.404267pt;}
.y1c{bottom:202.992000pt;}
.ycd{bottom:204.010133pt;}
.y173{bottom:206.973333pt;}
.y152{bottom:206.994000pt;}
.y88{bottom:209.062133pt;}
.y110{bottom:210.229333pt;}
.yf8{bottom:210.233200pt;}
.y42{bottom:210.235867pt;}
.y191{bottom:210.601600pt;}
.y65{bottom:219.441333pt;}
.yad{bottom:221.166000pt;}
.y151{bottom:222.996000pt;}
.ycc{bottom:223.210133pt;}
.y87{bottom:225.064133pt;}
.y10f{bottom:226.763333pt;}
.yf7{bottom:229.433200pt;}
.y41{bottom:229.435867pt;}
.y190{bottom:230.329600pt;}
.y1b{bottom:231.644000pt;}
.y64{bottom:235.442667pt;}
.y172{bottom:236.248000pt;}
.y134{bottom:237.602267pt;}
.yac{bottom:240.366000pt;}
.y86{bottom:241.066133pt;}
.ycb{bottom:242.410133pt;}
.y10e{bottom:243.297333pt;}
.y150{bottom:246.558000pt;}
.yf6{bottom:248.633200pt;}
.y40{bottom:248.635867pt;}
.y18f{bottom:250.057600pt;}
.y1a{bottom:250.572000pt;}
.y171{bottom:253.848000pt;}
.y133{bottom:254.136267pt;}
.y85{bottom:257.068133pt;}
.yab{bottom:259.566000pt;}
.y10d{bottom:259.831333pt;}
.y63{bottom:260.317333pt;}
.yca{bottom:261.610133pt;}
.y14f{bottom:262.560000pt;}
.yf5{bottom:267.833200pt;}
.y3f{bottom:267.835867pt;}
.y19{bottom:269.500000pt;}
.y18e{bottom:269.785600pt;}
.y132{bottom:270.670267pt;}
.y84{bottom:273.070133pt;}
.y62{bottom:276.318667pt;}
.y10c{bottom:276.365333pt;}
.y14e{bottom:278.562000pt;}
.y170{bottom:278.722667pt;}
.yaa{bottom:278.766000pt;}
.yc9{bottom:280.810133pt;}
.yf4{bottom:287.033200pt;}
.y3e{bottom:287.035867pt;}
.y131{bottom:287.204267pt;}
.y18{bottom:288.428000pt;}
.y83{bottom:289.072133pt;}
.y18d{bottom:289.513600pt;}
.y1ca{bottom:289.874267pt;}
.y10b{bottom:292.899333pt;}
.y1b2{bottom:297.329467pt;}
.ya9{bottom:297.966000pt;}
.yc8{bottom:300.010133pt;}
.y61{bottom:301.193333pt;}
.y14d{bottom:302.124000pt;}
.y16f{bottom:303.597333pt;}
.y82{bottom:305.074133pt;}
.y1c9{bottom:305.874267pt;}
.yf3{bottom:306.233200pt;}
.y3d{bottom:306.235867pt;}
.y17{bottom:307.356000pt;}
.y18c{bottom:309.241600pt;}
.y10a{bottom:309.433333pt;}
.ya8{bottom:317.166000pt;}
.y14c{bottom:318.126000pt;}
.yc7{bottom:319.210133pt;}
.y130{bottom:319.726933pt;}
.y1c8{bottom:321.874267pt;}
.yf2{bottom:325.433200pt;}
.yeb{bottom:325.433333pt;}
.y3c{bottom:325.435867pt;}
.y60{bottom:326.068000pt;}
.y16{bottom:326.284000pt;}
.y18b{bottom:328.969600pt;}
.y1b1{bottom:330.129600pt;}
.y16e{bottom:333.969333pt;}
.ya7{bottom:336.366000pt;}
.y81{bottom:337.074267pt;}
.y1c7{bottom:337.874267pt;}
.y12f{bottom:338.398933pt;}
.yc6{bottom:338.410133pt;}
.y14b{bottom:341.688000pt;}
.y109{bottom:341.966533pt;}
.yf1{bottom:344.633200pt;}
.yea{bottom:344.633333pt;}
.y3b{bottom:344.635867pt;}
.y15{bottom:345.212000pt;}
.y1b0{bottom:347.729600pt;}
.y18a{bottom:348.697600pt;}
.y5f{bottom:350.942667pt;}
.ya6{bottom:355.566000pt;}
.y80{bottom:356.274267pt;}
.y12e{bottom:357.070933pt;}
.yc5{bottom:357.610133pt;}
.y14a{bottom:357.690000pt;}
.y108{bottom:361.166533pt;}
.yf0{bottom:363.833200pt;}
.ye9{bottom:363.833333pt;}
.y3a{bottom:363.835867pt;}
.y14{bottom:364.140000pt;}
.y1af{bottom:365.329600pt;}
.y189{bottom:368.425600pt;}
.y16d{bottom:370.891867pt;}
.y149{bottom:373.692000pt;}
.ya5{bottom:374.766000pt;}
.y7f{bottom:375.474267pt;}
.y5e{bottom:375.817333pt;}
.yc4{bottom:376.810133pt;}
.y107{bottom:380.366533pt;}
.y1ae{bottom:382.929600pt;}
.yef{bottom:383.033200pt;}
.ye8{bottom:383.033333pt;}
.y39{bottom:383.035867pt;}
.y13{bottom:383.094667pt;}
.y1c6{bottom:386.674267pt;}
.y188{bottom:388.153600pt;}
.y16c{bottom:390.619867pt;}
.y12d{bottom:391.203333pt;}
.y5d{bottom:391.818667pt;}
.ya4{bottom:393.966000pt;}
.y7e{bottom:394.674267pt;}
.yc3{bottom:396.010133pt;}
.y1ad{bottom:400.529600pt;}
.y12{bottom:402.022667pt;}
.yee{bottom:402.233200pt;}
.ye7{bottom:402.233333pt;}
.y38{bottom:402.235867pt;}
.y1c5{bottom:404.274267pt;}
.y148{bottom:405.158667pt;}
.y5c{bottom:407.820000pt;}
.y187{bottom:407.881600pt;}
.y12c{bottom:408.003333pt;}
.y16b{bottom:410.347867pt;}
.ya3{bottom:413.166000pt;}
.y7d{bottom:413.874267pt;}
.yc2{bottom:415.210133pt;}
.y106{bottom:415.554533pt;}
.y1ac{bottom:418.129600pt;}
.y11{bottom:420.950667pt;}
.yed{bottom:421.433200pt;}
.ye6{bottom:421.433333pt;}
.y37{bottom:421.435867pt;}
.y1c4{bottom:421.874267pt;}
.y147{bottom:424.358667pt;}
.y12b{bottom:424.803333pt;}
.y186{bottom:427.609600pt;}
.y16a{bottom:430.075867pt;}
.y105{bottom:431.822533pt;}
.ya2{bottom:432.366000pt;}
.y5b{bottom:432.694667pt;}
.y7c{bottom:433.074267pt;}
.yc1{bottom:434.410133pt;}
.y1ab{bottom:435.729600pt;}
.y1c3{bottom:439.474267pt;}
.y10{bottom:439.878667pt;}
.ye5{bottom:440.633333pt;}
.y36{bottom:440.635867pt;}
.y12a{bottom:441.603333pt;}
.y185{bottom:447.337600pt;}
.y104{bottom:448.090533pt;}
.y5a{bottom:448.696000pt;}
.y169{bottom:449.803867pt;}
.ya1{bottom:451.566000pt;}
.y7b{bottom:452.274267pt;}
.y1aa{bottom:453.329600pt;}
.yc0{bottom:453.610133pt;}
.y1c2{bottom:457.074267pt;}
.y129{bottom:458.403333pt;}
.yf{bottom:458.806667pt;}
.y146{bottom:458.999867pt;}
.ye4{bottom:459.833333pt;}
.y35{bottom:459.835867pt;}
.y103{bottom:464.358533pt;}
.y59{bottom:464.697333pt;}
.y184{bottom:467.065600pt;}
.y168{bottom:469.531867pt;}
.ya0{bottom:470.766000pt;}
.y1a9{bottom:470.929600pt;}
.y7a{bottom:471.474267pt;}
.ybf{bottom:472.810133pt;}
.y1c1{bottom:474.674267pt;}
.y145{bottom:475.001867pt;}
.y128{bottom:475.203333pt;}
.ye{bottom:477.772000pt;}
.ye3{bottom:479.033333pt;}
.y34{bottom:479.035867pt;}
.y102{bottom:480.626533pt;}
.y183{bottom:486.793600pt;}
.y1a8{bottom:488.529600pt;}
.y167{bottom:489.259867pt;}
.y58{bottom:489.572000pt;}
.y9f{bottom:489.966000pt;}
.y79{bottom:490.674267pt;}
.y127{bottom:492.003333pt;}
.ybe{bottom:492.010133pt;}
.y1c0{bottom:492.274267pt;}
.yd{bottom:496.700000pt;}
.y101{bottom:496.894533pt;}
.ye2{bottom:498.233333pt;}
.y33{bottom:498.235867pt;}
.y144{bottom:498.563867pt;}
.y57{bottom:505.573333pt;}
.y1a7{bottom:506.129600pt;}
.y182{bottom:506.521600pt;}
.y126{bottom:508.803333pt;}
.y166{bottom:508.987867pt;}
.y9e{bottom:509.166000pt;}
.y78{bottom:509.874267pt;}
.ybd{bottom:511.210133pt;}
.y100{bottom:513.162533pt;}
.y143{bottom:514.565867pt;}
.yc{bottom:515.628000pt;}
.ye1{bottom:517.433333pt;}
.y32{bottom:517.435867pt;}
.y56{bottom:521.574667pt;}
.y1a6{bottom:523.729600pt;}
.y125{bottom:525.603333pt;}
.y181{bottom:526.249600pt;}
.y1bf{bottom:527.474267pt;}
.y9d{bottom:528.366000pt;}
.y165{bottom:528.715867pt;}
.y77{bottom:529.074267pt;}
.yff{bottom:529.430533pt;}
.ybc{bottom:530.410133pt;}
.y142{bottom:530.567867pt;}
.yb{bottom:534.556000pt;}
.ye0{bottom:536.633333pt;}
.y31{bottom:536.635867pt;}
.y55{bottom:537.576000pt;}
.y1a5{bottom:541.329600pt;}
.y124{bottom:542.403333pt;}
.y1be{bottom:545.074267pt;}
.yfe{bottom:545.698533pt;}
.y180{bottom:545.977600pt;}
.y141{bottom:546.569867pt;}
.y9c{bottom:547.566000pt;}
.y76{bottom:548.274267pt;}
.y164{bottom:548.443867pt;}
.ybb{bottom:549.610133pt;}
.ya{bottom:553.484000pt;}
.ydf{bottom:555.833333pt;}
.y30{bottom:555.835867pt;}
.y1a4{bottom:558.929600pt;}
.yfd{bottom:561.966533pt;}
.y54{bottom:562.450667pt;}
.y1bd{bottom:562.674267pt;}
.y17f{bottom:565.705600pt;}
.y123{bottom:566.763333pt;}
.y75{bottom:567.474267pt;}
.y163{bottom:568.171867pt;}
.yba{bottom:568.810133pt;}
.y140{bottom:570.131867pt;}
.y9{bottom:572.412000pt;}
.yde{bottom:575.033333pt;}
.y2f{bottom:575.035867pt;}
.y1a3{bottom:576.529600pt;}
.y53{bottom:578.452000pt;}
.y1bc{bottom:580.274267pt;}
.y122{bottom:583.563333pt;}
.y9b{bottom:585.966000pt;}
.y13f{bottom:586.133867pt;}
.y74{bottom:586.674267pt;}
.y162{bottom:587.899867pt;}
.yb9{bottom:588.010133pt;}
.y8{bottom:591.340000pt;}
.y17e{bottom:592.998000pt;}
.ydd{bottom:594.233333pt;}
.y2e{bottom:594.235867pt;}
.y1bb{bottom:597.874267pt;}
.y121{bottom:600.363333pt;}
.y1a2{bottom:601.688533pt;}
.y13e{bottom:602.135867pt;}
.y52{bottom:603.326667pt;}
.y9a{bottom:605.166000pt;}
.y73{bottom:605.874267pt;}
.yb8{bottom:607.210133pt;}
.y161{bottom:607.627867pt;}
.y7{bottom:610.268000pt;}
.ydc{bottom:613.433333pt;}
.y2d{bottom:613.435867pt;}
.y1ba{bottom:615.474267pt;}
.y120{bottom:617.163333pt;}
.y13d{bottom:618.137867pt;}
.y51{bottom:619.328000pt;}
.y99{bottom:624.366000pt;}
.y72{bottom:625.074267pt;}
.yb7{bottom:626.410133pt;}
.y160{bottom:627.355867pt;}
.ydb{bottom:632.633333pt;}
.y2c{bottom:632.635867pt;}
.y1b9{bottom:633.074267pt;}
.y11f{bottom:633.963333pt;}
.y13c{bottom:634.139867pt;}
.y1a1{bottom:642.847733pt;}
.y98{bottom:643.566000pt;}
.y71{bottom:644.274267pt;}
.y15f{bottom:647.083867pt;}
.y50{bottom:649.700000pt;}
.y1b8{bottom:650.674267pt;}
.y11e{bottom:650.763333pt;}
.yda{bottom:651.833333pt;}
.y2b{bottom:651.835867pt;}
.y17d{bottom:652.982533pt;}
.y13b{bottom:657.701867pt;}
.y1a0{bottom:660.447733pt;}
.y97{bottom:662.766000pt;}
.yb6{bottom:664.801200pt;}
.y15e{bottom:666.811867pt;}
.y1b7{bottom:668.274267pt;}
.yd9{bottom:671.033333pt;}
.y2a{bottom:671.035867pt;}
.y13a{bottom:674.235867pt;}
.y17c{bottom:677.857200pt;}
.y19f{bottom:678.047733pt;}
.yb5{bottom:681.069200pt;}
.y70{bottom:682.674267pt;}
.y11d{bottom:683.542000pt;}
.y1b6{bottom:685.874267pt;}
.y4f{bottom:686.537333pt;}
.y15d{bottom:686.539867pt;}
.yd8{bottom:690.233333pt;}
.y29{bottom:690.235867pt;}
.y19e{bottom:695.647733pt;}
.yb4{bottom:697.337200pt;}
.y96{bottom:697.950000pt;}
.y6f{bottom:701.874267pt;}
.y11c{bottom:702.214000pt;}
.y17b{bottom:702.731867pt;}
.y1b5{bottom:703.474267pt;}
.y6{bottom:706.001333pt;}
.y4e{bottom:706.265333pt;}
.y15c{bottom:706.267867pt;}
.yd7{bottom:709.433333pt;}
.y28{bottom:709.435867pt;}
.y19d{bottom:713.247733pt;}
.yb3{bottom:713.605200pt;}
.y95{bottom:713.952000pt;}
.y11b{bottom:720.886000pt;}
.y6e{bottom:721.074267pt;}
.y4d{bottom:725.993333pt;}
.y15b{bottom:725.995867pt;}
.y17a{bottom:727.606533pt;}
.yd6{bottom:728.633333pt;}
.y27{bottom:728.635867pt;}
.yb2{bottom:729.873200pt;}
.y94{bottom:729.954000pt;}
.y19c{bottom:730.847733pt;}
.y5{bottom:733.201333pt;}
.y1b4{bottom:738.674267pt;}
.y11a{bottom:739.558000pt;}
.y6d{bottom:740.274267pt;}
.y179{bottom:745.206533pt;}
.y4c{bottom:745.721333pt;}
.y15a{bottom:745.723867pt;}
.y93{bottom:745.956000pt;}
.yd5{bottom:747.833333pt;}
.y26{bottom:747.835867pt;}
.y19b{bottom:748.447733pt;}
.yb1{bottom:753.701200pt;}
.y119{bottom:758.230000pt;}
.y6c{bottom:759.474267pt;}
.y4{bottom:760.401333pt;}
.y92{bottom:761.958000pt;}
.y4b{bottom:765.449333pt;}
.y159{bottom:765.451867pt;}
.y19a{bottom:766.047733pt;}
.yd4{bottom:767.033333pt;}
.y25{bottom:767.035867pt;}
.yb0{bottom:769.969200pt;}
.y178{bottom:770.081200pt;}
.y91{bottom:777.960000pt;}
.y6b{bottom:778.674267pt;}
.y1b3{bottom:780.274267pt;}
.y199{bottom:783.647733pt;}
.y4a{bottom:785.177333pt;}
.y158{bottom:785.179867pt;}
.yd3{bottom:786.233333pt;}
.y24{bottom:786.235867pt;}
.y118{bottom:792.895333pt;}
.y90{bottom:793.962000pt;}
.y177{bottom:795.117200pt;}
.y6a{bottom:797.874267pt;}
.y198{bottom:801.247733pt;}
.y49{bottom:804.905333pt;}
.y157{bottom:804.907867pt;}
.yd2{bottom:805.433333pt;}
.y23{bottom:805.435867pt;}
.y117{bottom:809.429333pt;}
.y3{bottom:809.522667pt;}
.y8f{bottom:809.964000pt;}
.y48{bottom:824.633333pt;}
.y22{bottom:824.635867pt;}
.y196{bottom:825.520000pt;}
.y2{bottom:825.522667pt;}
.y116{bottom:825.963333pt;}
.y8e{bottom:825.966000pt;}
.y197{bottom:826.406800pt;}
.ha{height:27.171875pt;}
.h4{height:31.700521pt;}
.h3{height:34.351188pt;}
.hc{height:36.229167pt;}
.h12{height:36.796875pt;}
.he{height:40.476562pt;}
.hb{height:43.022135pt;}
.hd{height:44.156250pt;}
.h2{height:45.286458pt;}
.hf{height:47.550781pt;}
.h10{height:49.314469pt;}
.h5{height:49.815104pt;}
.h7{height:54.343750pt;}
.h8{height:56.136917pt;}
.h9{height:56.179583pt;}
.h11{height:56.285717pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.xb{left:75.231600pt;}
.x1{left:86.929200pt;}
.x7{left:94.488267pt;}
.x4{left:105.825200pt;}
.xa{left:124.726800pt;}
.x2{left:127.262533pt;}
.x3{left:233.847067pt;}
.x8{left:235.939467pt;}
.xc{left:267.232933pt;}
.xd{left:286.130533pt;}
.x9{left:394.431867pt;}
.xe{left:463.955067pt;}
.x5{left:515.257200pt;}
}




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