
    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_3c60dcb7c3fe0aa3a0343227.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_aa498d27a9affa0141ad08b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a240784a68ccb10ff458f362.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_65f006256af532390307223e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_8b211074e4e4b0a9480706d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_a2a9454f6da01b147498ad9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_350d472e2b7c0dcf23521d27.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_a0bde867545c5e26f06a8f57.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_f7e063093bf7695ac3e98fdf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_236d105089a0eaabeb667536.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0b4b469e840d835ca54e0fab.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_34d0713a5601192c7e1ac2d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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:ffe;src:url('chunks/assets/font_e62a3bcfb1453e429bc69b31.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-81.360000px;}
.v2{vertical-align:-79.920000px;}
.v1{vertical-align:-74.160000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.413400px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.342600px;}
.ls1a{letter-spacing:-0.131400px;}
.ls10{letter-spacing:-0.110400px;}
.ls8{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.041760px;}
.ls19{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.085800px;}
.ls12{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.175200px;}
.ls14{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.274800px;}
.ls1{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.924000px;}
.ls4{letter-spacing:3.780000px;}
.ls20{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.ls3{letter-spacing:304.716000px;}
.ls0{letter-spacing:2154.156000px;}
.ls2{letter-spacing:2255.136000px;}
.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:-66.240000px;}
.ws5{word-spacing:-27.216000px;}
.ws4{word-spacing:-26.496000px;}
.ws7{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.720120px;}
.wsc{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.506480px;}
.wsd{word-spacing:-15.864000px;}
.ws18{word-spacing:-15.606000px;}
.wse{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.115200px;}
.ws12{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws1a{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.898240px;}
.ws14{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.829600px;}
.wsa{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.868760px;}
.ws15{word-spacing:-13.505760px;}
.ws6{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.711360px;}
.ws11{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
._17{margin-left:-2.376000px;}
._2{margin-left:-1.180800px;}
._0{width:1.254960px;}
._b{width:2.390400px;}
._15{width:3.390480px;}
._8{width:4.435680px;}
._7{width:5.483520px;}
._c{width:6.561600px;}
._13{width:7.963920px;}
._14{width:9.308160px;}
._e{width:10.458000px;}
._d{width:11.712960px;}
._11{width:12.967920px;}
._16{width:16.118160px;}
._10{width:18.050160px;}
._f{width:19.182960px;}
._1a{width:20.617200px;}
._19{width:21.931200px;}
._12{width:23.473200px;}
._1d{width:25.218720px;}
._1f{width:26.665920px;}
._1e{width:27.779040px;}
._26{width:28.846080px;}
._5{width:31.626480px;}
._6{width:32.733360px;}
._1b{width:35.377920px;}
._1c{width:36.496560px;}
._a{width:41.652720px;}
._3{width:45.684000px;}
._4{width:46.694400px;}
._28{width:47.750160px;}
._29{width:49.147680px;}
._27{width:50.855760px;}
._22{width:76.134240px;}
._23{width:78.520080px;}
._18{width:144.439920px;}
._24{width:155.017440px;}
._25{width:156.174240px;}
._9{width:172.407600px;}
._21{width:197.686080px;}
._20{width:198.761760px;}
._1{width:392.528400px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:3.240000px;}
.yd2{bottom:3.420000px;}
.yda{bottom:3.600000px;}
.yd4{bottom:3.780000px;}
.yd8{bottom:20.514000px;}
.yd5{bottom:20.700000px;}
.yd9{bottom:20.874000px;}
.yd6{bottom:21.060000px;}
.yb1{bottom:42.945000px;}
.ye5{bottom:44.100000px;}
.ybb{bottom:47.340000px;}
.yc2{bottom:57.930000px;}
.y1{bottom:60.840000px;}
.ydf{bottom:64.440000px;}
.yb7{bottom:71.175000px;}
.yea{bottom:79.020000px;}
.ye3{bottom:80.205000px;}
.yc1{bottom:85.065000px;}
.yb0{bottom:90.210000px;}
.yb6{bottom:98.280000px;}
.ye9{bottom:106.125000px;}
.ye2{bottom:107.310000px;}
.yc0{bottom:112.170000px;}
.y124{bottom:113.076000px;}
.yad{bottom:114.516000px;}
.ybc{bottom:117.105000px;}
.ydb{bottom:117.756000px;}
.y5d{bottom:119.016000px;}
.yba{bottom:119.370000px;}
.yde{bottom:120.705000px;}
.yb5{bottom:125.430000px;}
.y123{bottom:130.356000px;}
.yb2{bottom:130.710000px;}
.yac{bottom:131.436000px;}
.yd7{bottom:135.756000px;}
.y5c{bottom:136.296000px;}
.y14e{bottom:138.816000px;}
.ybf{bottom:139.320000px;}
.y98{bottom:143.136000px;}
.yab{bottom:145.836000px;}
.yb8{bottom:145.980000px;}
.y122{bottom:147.636000px;}
.yb4{bottom:152.535000px;}
.y5b{bottom:153.570000px;}
.y14d{bottom:157.350000px;}
.y97{bottom:160.230000px;}
.y121{bottom:164.910000px;}
.yaf{bottom:168.990000px;}
.y5a{bottom:170.850000px;}
.ye6{bottom:172.365000px;}
.y14c{bottom:176.070000px;}
.y96{bottom:177.510000px;}
.y120{bottom:182.190000px;}
.yb9{bottom:182.370000px;}
.y59{bottom:187.950000px;}
.y95{bottom:194.790000px;}
.y11f{bottom:199.470000px;}
.ye8{bottom:203.295000px;}
.y58{bottom:205.230000px;}
.ye1{bottom:205.635000px;}
.yd3{bottom:206.130000px;}
.y94{bottom:212.070000px;}
.y14b{bottom:213.330000px;}
.ybe{bottom:215.535000px;}
.y11e{bottom:216.570000px;}
.y57{bottom:222.510000px;}
.yd1{bottom:224.130000px;}
.y93{bottom:229.350000px;}
.y14a{bottom:232.050000px;}
.y11d{bottom:233.850000px;}
.ye7{bottom:236.235000px;}
.ye0{bottom:238.575000px;}
.y56{bottom:239.790000px;}
.yb3{bottom:241.845000px;}
.yd0{bottom:245.550000px;}
.y92{bottom:246.270000px;}
.ybd{bottom:248.475000px;}
.y149{bottom:250.590000px;}
.y11c{bottom:251.130000px;}
.y55{bottom:257.070000px;}
.ycf{bottom:263.190000px;}
.y91{bottom:263.370000px;}
.y11b{bottom:268.410000px;}
.y148{bottom:269.310000px;}
.y54{bottom:274.350000px;}
.y90{bottom:281.010000px;}
.y11a{bottom:285.690000px;}
.y147{bottom:287.850000px;}
.y53{bottom:291.450000px;}
.y8f{bottom:298.290000px;}
.y119{bottom:302.790000px;}
.y146{bottom:306.570000px;}
.y52{bottom:308.730000px;}
.y8e{bottom:315.570000px;}
.y118{bottom:320.070000px;}
.y145{bottom:325.110000px;}
.y51{bottom:326.010000px;}
.yce{bottom:332.490000px;}
.y8d{bottom:332.850000px;}
.y117{bottom:337.350000px;}
.y50{bottom:343.290000px;}
.y144{bottom:343.830000px;}
.ye4{bottom:346.860000px;}
.ycd{bottom:346.890000px;}
.y8c{bottom:350.130000px;}
.y116{bottom:354.630000px;}
.y26{bottom:356.430000px;}
.y4f{bottom:360.570000px;}
.y143{bottom:362.550000px;}
.y8b{bottom:367.275000px;}
.y115{bottom:371.955000px;}
.y4e{bottom:377.715000px;}
.y25{bottom:378.975000px;}
.y142{bottom:381.135000px;}
.y8a{bottom:384.555000px;}
.y114{bottom:389.235000px;}
.y4d{bottom:394.995000px;}
.y24{bottom:396.255000px;}
.y141{bottom:399.855000px;}
.y89{bottom:401.835000px;}
.y113{bottom:405.975000px;}
.y4c{bottom:412.275000px;}
.y23{bottom:416.775000px;}
.y140{bottom:418.395000px;}
.y88{bottom:419.115000px;}
.y112{bottom:423.255000px;}
.y4b{bottom:429.555000px;}
.yaa{bottom:435.135000px;}
.y87{bottom:436.395000px;}
.y13f{bottom:437.115000px;}
.y111{bottom:440.895000px;}
.y22{bottom:442.695000px;}
.y4a{bottom:446.835000px;}
.ya9{bottom:452.415000px;}
.y86{bottom:453.495000px;}
.y13e{bottom:455.655000px;}
.y110{bottom:458.175000px;}
.y21{bottom:459.615000px;}
.y49{bottom:464.115000px;}
.ya8{bottom:469.695000px;}
.y85{bottom:470.775000px;}
.y13d{bottom:474.375000px;}
.y10f{bottom:475.455000px;}
.y20{bottom:476.895000px;}
.y48{bottom:481.215000px;}
.ya7{bottom:486.975000px;}
.y84{bottom:488.055000px;}
.y10e{bottom:492.735000px;}
.y13c{bottom:492.915000px;}
.y1f{bottom:494.175000px;}
.y47{bottom:498.495000px;}
.ya6{bottom:504.255000px;}
.y83{bottom:505.335000px;}
.y10d{bottom:509.835000px;}
.y13b{bottom:511.635000px;}
.y46{bottom:515.775000px;}
.y1e{bottom:518.295000px;}
.ya5{bottom:520.995000px;}
.y82{bottom:522.615000px;}
.y10c{bottom:527.115000px;}
.y13a{bottom:530.355000px;}
.y45{bottom:533.055000px;}
.ya4{bottom:535.215000px;}
.yae{bottom:535.500000px;}
.y81{bottom:539.895000px;}
.y1d{bottom:540.255000px;}
.y10b{bottom:544.395000px;}
.y139{bottom:548.895000px;}
.y44{bottom:549.975000px;}
.y80{bottom:556.995000px;}
.y10a{bottom:561.675000px;}
.y1c{bottom:562.215000px;}
.y43{bottom:567.255000px;}
.y138{bottom:567.615000px;}
.y7f{bottom:574.275000px;}
.y109{bottom:578.955000px;}
.y1b{bottom:584.175000px;}
.y42{bottom:585.255000px;}
.y137{bottom:586.155000px;}
.y7e{bottom:591.555000px;}
.y108{bottom:596.235000px;}
.y136{bottom:604.875000px;}
.y1a{bottom:606.135000px;}
.y7d{bottom:608.835000px;}
.y41{bottom:612.975000px;}
.y107{bottom:613.335000px;}
.y135{bottom:623.445000px;}
.ycc{bottom:623.805000px;}
.y7c{bottom:626.145000px;}
.y106{bottom:627.765000px;}
.y19{bottom:628.305000px;}
.y40{bottom:631.545000px;}
.ycb{bottom:641.085000px;}
.y134{bottom:642.165000px;}
.y7b{bottom:643.425000px;}
.y18{bottom:643.605000px;}
.y105{bottom:645.585000px;}
.y3f{bottom:650.265000px;}
.yca{bottom:658.365000px;}
.y7a{bottom:660.525000px;}
.y133{bottom:660.705000px;}
.y17{bottom:660.885000px;}
.y104{bottom:663.585000px;}
.y3e{bottom:668.805000px;}
.yc9{bottom:675.645000px;}
.y79{bottom:677.805000px;}
.y16{bottom:678.165000px;}
.y132{bottom:679.425000px;}
.y103{bottom:681.585000px;}
.y3d{bottom:687.525000px;}
.yc8{bottom:692.925000px;}
.y78{bottom:695.085000px;}
.y15{bottom:695.805000px;}
.y131{bottom:698.145000px;}
.y3c{bottom:706.065000px;}
.yc7{bottom:710.025000px;}
.y77{bottom:712.365000px;}
.y14{bottom:716.505000px;}
.y130{bottom:716.685000px;}
.y102{bottom:720.285000px;}
.y3b{bottom:724.785000px;}
.yc6{bottom:727.305000px;}
.y76{bottom:729.645000px;}
.y12f{bottom:735.405000px;}
.y101{bottom:737.925000px;}
.y3a{bottom:743.505000px;}
.yc5{bottom:744.585000px;}
.y75{bottom:746.925000px;}
.y12e{bottom:753.945000px;}
.y100{bottom:755.205000px;}
.y13{bottom:757.545000px;}
.yc4{bottom:761.505000px;}
.y39{bottom:762.045000px;}
.y74{bottom:764.025000px;}
.yff{bottom:772.665000px;}
.y12{bottom:774.825000px;}
.yc3{bottom:775.725000px;}
.ydd{bottom:775.800000px;}
.y38{bottom:780.765000px;}
.y73{bottom:781.305000px;}
.yfe{bottom:789.945000px;}
.y12d{bottom:791.205000px;}
.y11{bottom:791.745000px;}
.y72{bottom:798.585000px;}
.y37{bottom:799.305000px;}
.yfd{bottom:807.225000px;}
.y10{bottom:808.845000px;}
.y12c{bottom:809.925000px;}
.y71{bottom:815.865000px;}
.y36{bottom:818.025000px;}
.yfc{bottom:824.505000px;}
.yf{bottom:826.485000px;}
.y12b{bottom:828.465000px;}
.y70{bottom:833.145000px;}
.ya3{bottom:835.305000px;}
.y35{bottom:836.565000px;}
.yfb{bottom:841.785000px;}
.y12a{bottom:847.185000px;}
.y6f{bottom:850.245000px;}
.ya2{bottom:852.585000px;}
.y34{bottom:855.285000px;}
.yfa{bottom:856.005000px;}
.ye{bottom:863.385000px;}
.y129{bottom:865.005000px;}
.y6e{bottom:867.525000px;}
.ya1{bottom:869.865000px;}
.y33{bottom:873.825000px;}
.yf9{bottom:874.005000px;}
.y128{bottom:882.690000px;}
.y6d{bottom:884.850000px;}
.ya0{bottom:887.190000px;}
.yf8{bottom:892.050000px;}
.y32{bottom:892.590000px;}
.yd{bottom:894.390000px;}
.y127{bottom:899.790000px;}
.y6c{bottom:902.130000px;}
.y9f{bottom:903.930000px;}
.yf7{bottom:910.050000px;}
.y31{bottom:910.230000px;}
.y126{bottom:917.070000px;}
.y6b{bottom:918.870000px;}
.yc{bottom:925.350000px;}
.y125{bottom:934.350000px;}
.y9e{bottom:936.690000px;}
.y30{bottom:942.990000px;}
.yf6{bottom:948.570000px;}
.y6a{bottom:951.630000px;}
.yb{bottom:953.790000px;}
.y2f{bottom:960.270000px;}
.yf5{bottom:966.210000px;}
.y69{bottom:968.910000px;}
.ya{bottom:971.070000px;}
.y2e{bottom:982.770000px;}
.yf4{bottom:983.490000px;}
.y68{bottom:986.190000px;}
.y9d{bottom:988.350000px;}
.y9{bottom:988.890000px;}
.y2d{bottom:999.870000px;}
.yf3{bottom:1001.130000px;}
.y67{bottom:1003.290000px;}
.y9c{bottom:1005.630000px;}
.y8{bottom:1007.790000px;}
.y2c{bottom:1013.010000px;}
.yf2{bottom:1018.410000px;}
.y66{bottom:1020.570000px;}
.y9b{bottom:1022.910000px;}
.yf1{bottom:1035.690000px;}
.y2b{bottom:1037.130000px;}
.y65{bottom:1037.850000px;}
.y9a{bottom:1040.190000px;}
.yf0{bottom:1052.790000px;}
.y7{bottom:1054.770000px;}
.y64{bottom:1055.130000px;}
.y99{bottom:1056.930000px;}
.y2a{bottom:1069.710000px;}
.yef{bottom:1070.070000px;}
.y6{bottom:1072.050000px;}
.y63{bottom:1072.410000px;}
.yee{bottom:1087.350000px;}
.y5{bottom:1089.330000px;}
.y62{bottom:1089.690000px;}
.y29{bottom:1098.330000px;}
.yed{bottom:1104.630000px;}
.y4{bottom:1106.430000px;}
.y61{bottom:1106.790000px;}
.y28{bottom:1117.590000px;}
.yec{bottom:1118.850000px;}
.y3{bottom:1123.710000px;}
.y60{bottom:1124.070000px;}
.y27{bottom:1134.330000px;}
.yeb{bottom:1136.850000px;}
.y2{bottom:1140.990000px;}
.y5f{bottom:1141.350000px;}
.y5e{bottom:1172.880000px;}
.h16{height:17.100000px;}
.h13{height:17.280000px;}
.h1b{height:17.316000px;}
.h15{height:34.380000px;}
.h14{height:34.560000px;}
.h9{height:39.183750px;}
.hc{height:43.506914px;}
.hd{height:50.597578px;}
.h8{height:53.316562px;}
.h6{height:58.651172px;}
.h12{height:59.038594px;}
.hf{height:59.439023px;}
.h18{height:59.582250px;}
.h3{height:60.226875px;}
.h2{height:62.327813px;}
.h4{height:69.086250px;}
.ha{height:70.664062px;}
.h7{height:75.093750px;}
.hb{height:84.898125px;}
.h5{height:108.843750px;}
.h10{height:110.583984px;}
.h19{height:110.731430px;}
.h1a{height:273.420000px;}
.h17{height:275.580000px;}
.he{height:278.820000px;}
.h11{height:285.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:48.960000px;}
.w8{width:52.020000px;}
.w7{width:54.000000px;}
.wd{width:97.020000px;}
.wb{width:97.200000px;}
.wc{width:97.236000px;}
.wa{width:517.500000px;}
.w9{width:523.080000px;}
.w6{width:535.425000px;}
.w4{width:536.760000px;}
.w3{width:541.080000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x30{left:61.890000px;}
.x2a{left:70.815000px;}
.x1a{left:95.115000px;}
.x23{left:100.296000px;}
.x14{left:102.855000px;}
.x1{left:108.035987px;}
.x13{left:109.260000px;}
.x38{left:131.975987px;}
.x39{left:135.035987px;}
.x19{left:140.865000px;}
.x25{left:149.976000px;}
.x2b{left:151.095000px;}
.x33{left:153.209987px;}
.x1b{left:159.555000px;}
.x31{left:161.610000px;}
.x12{left:164.415000px;}
.xf{left:176.400000px;}
.x16{left:178.560000px;}
.x20{left:181.469987px;}
.x28{left:185.400000px;}
.x2d{left:187.560000px;}
.x10{left:197.025000px;}
.x8{left:204.329987px;}
.x18{left:207.285000px;}
.x2e{left:214.125000px;}
.x2f{left:221.940000px;}
.x1e{left:228.629987px;}
.x11{left:229.680000px;}
.x17{left:235.410000px;}
.x29{left:237.600000px;}
.xe{left:240.869987px;}
.x34{left:251.130000px;}
.xc{left:312.194987px;}
.x35{left:349.095000px;}
.x6{left:350.894987px;}
.xa{left:358.994987px;}
.x9{left:379.154987px;}
.x15{left:384.015000px;}
.x22{left:418.034987px;}
.x1c{left:421.995000px;}
.x5{left:430.094987px;}
.x2c{left:444.030000px;}
.x21{left:446.474987px;}
.x32{left:481.965000px;}
.x3{left:528.224987px;}
.x36{left:544.785000px;}
.x37{left:642.750000px;}
.x4{left:670.289987px;}
.x26{left:686.130000px;}
.x1f{left:707.549987px;}
.x1d{left:709.889987px;}
.xd{left:716.549987px;}
.xb{left:718.889987px;}
.x27{left:740.850000px;}
.x7{left:776.849987px;}
.x2{left:785.129987px;}
@media print{
.v4{vertical-align:-72.320000pt;}
.v2{vertical-align:-71.040000pt;}
.v1{vertical-align:-65.920000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.367467pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.304533pt;}
.ls1a{letter-spacing:-0.116800pt;}
.ls10{letter-spacing:-0.098133pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.037120pt;}
.ls19{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.076267pt;}
.ls12{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.155733pt;}
.ls14{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.244267pt;}
.ls1{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.821333pt;}
.ls4{letter-spacing:3.360000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ls3{letter-spacing:270.858667pt;}
.ls0{letter-spacing:1914.805333pt;}
.ls2{letter-spacing:2004.565333pt;}
.ws1{word-spacing:-58.880000pt;}
.ws5{word-spacing:-24.192000pt;}
.ws4{word-spacing:-23.552000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.640107pt;}
.wsc{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.672427pt;}
.wsd{word-spacing:-14.101333pt;}
.ws18{word-spacing:-13.872000pt;}
.wse{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.435733pt;}
.ws12{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.242880pt;}
.ws14{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.181867pt;}
.wsa{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.327787pt;}
.ws15{word-spacing:-12.005120pt;}
.ws6{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.632320pt;}
.ws11{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
._17{margin-left:-2.112000pt;}
._2{margin-left:-1.049600pt;}
._0{width:1.115520pt;}
._b{width:2.124800pt;}
._15{width:3.013760pt;}
._8{width:3.942827pt;}
._7{width:4.874240pt;}
._c{width:5.832533pt;}
._13{width:7.079040pt;}
._14{width:8.273920pt;}
._e{width:9.296000pt;}
._d{width:10.411520pt;}
._11{width:11.527040pt;}
._16{width:14.327253pt;}
._10{width:16.044587pt;}
._f{width:17.051520pt;}
._1a{width:18.326400pt;}
._19{width:19.494400pt;}
._12{width:20.865067pt;}
._1d{width:22.416640pt;}
._1f{width:23.703040pt;}
._1e{width:24.692480pt;}
._26{width:25.640960pt;}
._5{width:28.112427pt;}
._6{width:29.096320pt;}
._1b{width:31.447040pt;}
._1c{width:32.441387pt;}
._a{width:37.024640pt;}
._3{width:40.608000pt;}
._4{width:41.506133pt;}
._28{width:42.444587pt;}
._29{width:43.686827pt;}
._27{width:45.205120pt;}
._22{width:67.674880pt;}
._23{width:69.795627pt;}
._18{width:128.391040pt;}
._24{width:137.793280pt;}
._25{width:138.821547pt;}
._9{width:153.251200pt;}
._21{width:175.720960pt;}
._20{width:176.677120pt;}
._1{width:348.914133pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:2.880000pt;}
.yd2{bottom:3.040000pt;}
.yda{bottom:3.200000pt;}
.yd4{bottom:3.360000pt;}
.yd8{bottom:18.234667pt;}
.yd5{bottom:18.400000pt;}
.yd9{bottom:18.554667pt;}
.yd6{bottom:18.720000pt;}
.yb1{bottom:38.173333pt;}
.ye5{bottom:39.200000pt;}
.ybb{bottom:42.080000pt;}
.yc2{bottom:51.493333pt;}
.y1{bottom:54.080000pt;}
.ydf{bottom:57.280000pt;}
.yb7{bottom:63.266667pt;}
.yea{bottom:70.240000pt;}
.ye3{bottom:71.293333pt;}
.yc1{bottom:75.613333pt;}
.yb0{bottom:80.186667pt;}
.yb6{bottom:87.360000pt;}
.ye9{bottom:94.333333pt;}
.ye2{bottom:95.386667pt;}
.yc0{bottom:99.706667pt;}
.y124{bottom:100.512000pt;}
.yad{bottom:101.792000pt;}
.ybc{bottom:104.093333pt;}
.ydb{bottom:104.672000pt;}
.y5d{bottom:105.792000pt;}
.yba{bottom:106.106667pt;}
.yde{bottom:107.293333pt;}
.yb5{bottom:111.493333pt;}
.y123{bottom:115.872000pt;}
.yb2{bottom:116.186667pt;}
.yac{bottom:116.832000pt;}
.yd7{bottom:120.672000pt;}
.y5c{bottom:121.152000pt;}
.y14e{bottom:123.392000pt;}
.ybf{bottom:123.840000pt;}
.y98{bottom:127.232000pt;}
.yab{bottom:129.632000pt;}
.yb8{bottom:129.760000pt;}
.y122{bottom:131.232000pt;}
.yb4{bottom:135.586667pt;}
.y5b{bottom:136.506667pt;}
.y14d{bottom:139.866667pt;}
.y97{bottom:142.426667pt;}
.y121{bottom:146.586667pt;}
.yaf{bottom:150.213333pt;}
.y5a{bottom:151.866667pt;}
.ye6{bottom:153.213333pt;}
.y14c{bottom:156.506667pt;}
.y96{bottom:157.786667pt;}
.y120{bottom:161.946667pt;}
.yb9{bottom:162.106667pt;}
.y59{bottom:167.066667pt;}
.y95{bottom:173.146667pt;}
.y11f{bottom:177.306667pt;}
.ye8{bottom:180.706667pt;}
.y58{bottom:182.426667pt;}
.ye1{bottom:182.786667pt;}
.yd3{bottom:183.226667pt;}
.y94{bottom:188.506667pt;}
.y14b{bottom:189.626667pt;}
.ybe{bottom:191.586667pt;}
.y11e{bottom:192.506667pt;}
.y57{bottom:197.786667pt;}
.yd1{bottom:199.226667pt;}
.y93{bottom:203.866667pt;}
.y14a{bottom:206.266667pt;}
.y11d{bottom:207.866667pt;}
.ye7{bottom:209.986667pt;}
.ye0{bottom:212.066667pt;}
.y56{bottom:213.146667pt;}
.yb3{bottom:214.973333pt;}
.yd0{bottom:218.266667pt;}
.y92{bottom:218.906667pt;}
.ybd{bottom:220.866667pt;}
.y149{bottom:222.746667pt;}
.y11c{bottom:223.226667pt;}
.y55{bottom:228.506667pt;}
.ycf{bottom:233.946667pt;}
.y91{bottom:234.106667pt;}
.y11b{bottom:238.586667pt;}
.y148{bottom:239.386667pt;}
.y54{bottom:243.866667pt;}
.y90{bottom:249.786667pt;}
.y11a{bottom:253.946667pt;}
.y147{bottom:255.866667pt;}
.y53{bottom:259.066667pt;}
.y8f{bottom:265.146667pt;}
.y119{bottom:269.146667pt;}
.y146{bottom:272.506667pt;}
.y52{bottom:274.426667pt;}
.y8e{bottom:280.506667pt;}
.y118{bottom:284.506667pt;}
.y145{bottom:288.986667pt;}
.y51{bottom:289.786667pt;}
.yce{bottom:295.546667pt;}
.y8d{bottom:295.866667pt;}
.y117{bottom:299.866667pt;}
.y50{bottom:305.146667pt;}
.y144{bottom:305.626667pt;}
.ye4{bottom:308.320000pt;}
.ycd{bottom:308.346667pt;}
.y8c{bottom:311.226667pt;}
.y116{bottom:315.226667pt;}
.y26{bottom:316.826667pt;}
.y4f{bottom:320.506667pt;}
.y143{bottom:322.266667pt;}
.y8b{bottom:326.466667pt;}
.y115{bottom:330.626667pt;}
.y4e{bottom:335.746667pt;}
.y25{bottom:336.866667pt;}
.y142{bottom:338.786667pt;}
.y8a{bottom:341.826667pt;}
.y114{bottom:345.986667pt;}
.y4d{bottom:351.106667pt;}
.y24{bottom:352.226667pt;}
.y141{bottom:355.426667pt;}
.y89{bottom:357.186667pt;}
.y113{bottom:360.866667pt;}
.y4c{bottom:366.466667pt;}
.y23{bottom:370.466667pt;}
.y140{bottom:371.906667pt;}
.y88{bottom:372.546667pt;}
.y112{bottom:376.226667pt;}
.y4b{bottom:381.826667pt;}
.yaa{bottom:386.786667pt;}
.y87{bottom:387.906667pt;}
.y13f{bottom:388.546667pt;}
.y111{bottom:391.906667pt;}
.y22{bottom:393.506667pt;}
.y4a{bottom:397.186667pt;}
.ya9{bottom:402.146667pt;}
.y86{bottom:403.106667pt;}
.y13e{bottom:405.026667pt;}
.y110{bottom:407.266667pt;}
.y21{bottom:408.546667pt;}
.y49{bottom:412.546667pt;}
.ya8{bottom:417.506667pt;}
.y85{bottom:418.466667pt;}
.y13d{bottom:421.666667pt;}
.y10f{bottom:422.626667pt;}
.y20{bottom:423.906667pt;}
.y48{bottom:427.746667pt;}
.ya7{bottom:432.866667pt;}
.y84{bottom:433.826667pt;}
.y10e{bottom:437.986667pt;}
.y13c{bottom:438.146667pt;}
.y1f{bottom:439.266667pt;}
.y47{bottom:443.106667pt;}
.ya6{bottom:448.226667pt;}
.y83{bottom:449.186667pt;}
.y10d{bottom:453.186667pt;}
.y13b{bottom:454.786667pt;}
.y46{bottom:458.466667pt;}
.y1e{bottom:460.706667pt;}
.ya5{bottom:463.106667pt;}
.y82{bottom:464.546667pt;}
.y10c{bottom:468.546667pt;}
.y13a{bottom:471.426667pt;}
.y45{bottom:473.826667pt;}
.ya4{bottom:475.746667pt;}
.yae{bottom:476.000000pt;}
.y81{bottom:479.906667pt;}
.y1d{bottom:480.226667pt;}
.y10b{bottom:483.906667pt;}
.y139{bottom:487.906667pt;}
.y44{bottom:488.866667pt;}
.y80{bottom:495.106667pt;}
.y10a{bottom:499.266667pt;}
.y1c{bottom:499.746667pt;}
.y43{bottom:504.226667pt;}
.y138{bottom:504.546667pt;}
.y7f{bottom:510.466667pt;}
.y109{bottom:514.626667pt;}
.y1b{bottom:519.266667pt;}
.y42{bottom:520.226667pt;}
.y137{bottom:521.026667pt;}
.y7e{bottom:525.826667pt;}
.y108{bottom:529.986667pt;}
.y136{bottom:537.666667pt;}
.y1a{bottom:538.786667pt;}
.y7d{bottom:541.186667pt;}
.y41{bottom:544.866667pt;}
.y107{bottom:545.186667pt;}
.y135{bottom:554.173333pt;}
.ycc{bottom:554.493333pt;}
.y7c{bottom:556.573333pt;}
.y106{bottom:558.013333pt;}
.y19{bottom:558.493333pt;}
.y40{bottom:561.373333pt;}
.ycb{bottom:569.853333pt;}
.y134{bottom:570.813333pt;}
.y7b{bottom:571.933333pt;}
.y18{bottom:572.093333pt;}
.y105{bottom:573.853333pt;}
.y3f{bottom:578.013333pt;}
.yca{bottom:585.213333pt;}
.y7a{bottom:587.133333pt;}
.y133{bottom:587.293333pt;}
.y17{bottom:587.453333pt;}
.y104{bottom:589.853333pt;}
.y3e{bottom:594.493333pt;}
.yc9{bottom:600.573333pt;}
.y79{bottom:602.493333pt;}
.y16{bottom:602.813333pt;}
.y132{bottom:603.933333pt;}
.y103{bottom:605.853333pt;}
.y3d{bottom:611.133333pt;}
.yc8{bottom:615.933333pt;}
.y78{bottom:617.853333pt;}
.y15{bottom:618.493333pt;}
.y131{bottom:620.573333pt;}
.y3c{bottom:627.613333pt;}
.yc7{bottom:631.133333pt;}
.y77{bottom:633.213333pt;}
.y14{bottom:636.893333pt;}
.y130{bottom:637.053333pt;}
.y102{bottom:640.253333pt;}
.y3b{bottom:644.253333pt;}
.yc6{bottom:646.493333pt;}
.y76{bottom:648.573333pt;}
.y12f{bottom:653.693333pt;}
.y101{bottom:655.933333pt;}
.y3a{bottom:660.893333pt;}
.yc5{bottom:661.853333pt;}
.y75{bottom:663.933333pt;}
.y12e{bottom:670.173333pt;}
.y100{bottom:671.293333pt;}
.y13{bottom:673.373333pt;}
.yc4{bottom:676.893333pt;}
.y39{bottom:677.373333pt;}
.y74{bottom:679.133333pt;}
.yff{bottom:686.813333pt;}
.y12{bottom:688.733333pt;}
.yc3{bottom:689.533333pt;}
.ydd{bottom:689.600000pt;}
.y38{bottom:694.013333pt;}
.y73{bottom:694.493333pt;}
.yfe{bottom:702.173333pt;}
.y12d{bottom:703.293333pt;}
.y11{bottom:703.773333pt;}
.y72{bottom:709.853333pt;}
.y37{bottom:710.493333pt;}
.yfd{bottom:717.533333pt;}
.y10{bottom:718.973333pt;}
.y12c{bottom:719.933333pt;}
.y71{bottom:725.213333pt;}
.y36{bottom:727.133333pt;}
.yfc{bottom:732.893333pt;}
.yf{bottom:734.653333pt;}
.y12b{bottom:736.413333pt;}
.y70{bottom:740.573333pt;}
.ya3{bottom:742.493333pt;}
.y35{bottom:743.613333pt;}
.yfb{bottom:748.253333pt;}
.y12a{bottom:753.053333pt;}
.y6f{bottom:755.773333pt;}
.ya2{bottom:757.853333pt;}
.y34{bottom:760.253333pt;}
.yfa{bottom:760.893333pt;}
.ye{bottom:767.453333pt;}
.y129{bottom:768.893333pt;}
.y6e{bottom:771.133333pt;}
.ya1{bottom:773.213333pt;}
.y33{bottom:776.733333pt;}
.yf9{bottom:776.893333pt;}
.y128{bottom:784.613333pt;}
.y6d{bottom:786.533333pt;}
.ya0{bottom:788.613333pt;}
.yf8{bottom:792.933333pt;}
.y32{bottom:793.413333pt;}
.yd{bottom:795.013333pt;}
.y127{bottom:799.813333pt;}
.y6c{bottom:801.893333pt;}
.y9f{bottom:803.493333pt;}
.yf7{bottom:808.933333pt;}
.y31{bottom:809.093333pt;}
.y126{bottom:815.173333pt;}
.y6b{bottom:816.773333pt;}
.yc{bottom:822.533333pt;}
.y125{bottom:830.533333pt;}
.y9e{bottom:832.613333pt;}
.y30{bottom:838.213333pt;}
.yf6{bottom:843.173333pt;}
.y6a{bottom:845.893333pt;}
.yb{bottom:847.813333pt;}
.y2f{bottom:853.573333pt;}
.yf5{bottom:858.853333pt;}
.y69{bottom:861.253333pt;}
.ya{bottom:863.173333pt;}
.y2e{bottom:873.573333pt;}
.yf4{bottom:874.213333pt;}
.y68{bottom:876.613333pt;}
.y9d{bottom:878.533333pt;}
.y9{bottom:879.013333pt;}
.y2d{bottom:888.773333pt;}
.yf3{bottom:889.893333pt;}
.y67{bottom:891.813333pt;}
.y9c{bottom:893.893333pt;}
.y8{bottom:895.813333pt;}
.y2c{bottom:900.453333pt;}
.yf2{bottom:905.253333pt;}
.y66{bottom:907.173333pt;}
.y9b{bottom:909.253333pt;}
.yf1{bottom:920.613333pt;}
.y2b{bottom:921.893333pt;}
.y65{bottom:922.533333pt;}
.y9a{bottom:924.613333pt;}
.yf0{bottom:935.813333pt;}
.y7{bottom:937.573333pt;}
.y64{bottom:937.893333pt;}
.y99{bottom:939.493333pt;}
.y2a{bottom:950.853333pt;}
.yef{bottom:951.173333pt;}
.y6{bottom:952.933333pt;}
.y63{bottom:953.253333pt;}
.yee{bottom:966.533333pt;}
.y5{bottom:968.293333pt;}
.y62{bottom:968.613333pt;}
.y29{bottom:976.293333pt;}
.yed{bottom:981.893333pt;}
.y4{bottom:983.493333pt;}
.y61{bottom:983.813333pt;}
.y28{bottom:993.413333pt;}
.yec{bottom:994.533333pt;}
.y3{bottom:998.853333pt;}
.y60{bottom:999.173333pt;}
.y27{bottom:1008.293333pt;}
.yeb{bottom:1010.533333pt;}
.y2{bottom:1014.213333pt;}
.y5f{bottom:1014.533333pt;}
.y5e{bottom:1042.560000pt;}
.h16{height:15.200000pt;}
.h13{height:15.360000pt;}
.h1b{height:15.392000pt;}
.h15{height:30.560000pt;}
.h14{height:30.720000pt;}
.h9{height:34.830000pt;}
.hc{height:38.672812pt;}
.hd{height:44.975625pt;}
.h8{height:47.392500pt;}
.h6{height:52.134375pt;}
.h12{height:52.478750pt;}
.hf{height:52.834688pt;}
.h18{height:52.962000pt;}
.h3{height:53.535000pt;}
.h2{height:55.402500pt;}
.h4{height:61.410000pt;}
.ha{height:62.812500pt;}
.h7{height:66.750000pt;}
.hb{height:75.465000pt;}
.h5{height:96.750000pt;}
.h10{height:98.296875pt;}
.h19{height:98.427937pt;}
.h1a{height:243.040000pt;}
.h17{height:244.960000pt;}
.he{height:247.840000pt;}
.h11{height:253.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:43.520000pt;}
.w8{width:46.240000pt;}
.w7{width:48.000000pt;}
.wd{width:86.240000pt;}
.wb{width:86.400000pt;}
.wc{width:86.432000pt;}
.wa{width:460.000000pt;}
.w9{width:464.960000pt;}
.w6{width:475.933333pt;}
.w4{width:477.120000pt;}
.w3{width:480.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x30{left:55.013333pt;}
.x2a{left:62.946667pt;}
.x1a{left:84.546667pt;}
.x23{left:89.152000pt;}
.x14{left:91.426667pt;}
.x1{left:96.031988pt;}
.x13{left:97.120000pt;}
.x38{left:117.311988pt;}
.x39{left:120.031988pt;}
.x19{left:125.213333pt;}
.x25{left:133.312000pt;}
.x2b{left:134.306667pt;}
.x33{left:136.186655pt;}
.x1b{left:141.826667pt;}
.x31{left:143.653333pt;}
.x12{left:146.146667pt;}
.xf{left:156.800000pt;}
.x16{left:158.720000pt;}
.x20{left:161.306655pt;}
.x28{left:164.800000pt;}
.x2d{left:166.720000pt;}
.x10{left:175.133333pt;}
.x8{left:181.626655pt;}
.x18{left:184.253333pt;}
.x2e{left:190.333333pt;}
.x2f{left:197.280000pt;}
.x1e{left:203.226655pt;}
.x11{left:204.160000pt;}
.x17{left:209.253333pt;}
.x29{left:211.200000pt;}
.xe{left:214.106655pt;}
.x34{left:223.226667pt;}
.xc{left:277.506655pt;}
.x35{left:310.306667pt;}
.x6{left:311.906655pt;}
.xa{left:319.106655pt;}
.x9{left:337.026655pt;}
.x15{left:341.346667pt;}
.x22{left:371.586655pt;}
.x1c{left:375.106667pt;}
.x5{left:382.306655pt;}
.x2c{left:394.693333pt;}
.x21{left:396.866655pt;}
.x32{left:428.413333pt;}
.x3{left:469.533322pt;}
.x36{left:484.253333pt;}
.x37{left:571.333333pt;}
.x4{left:595.813322pt;}
.x26{left:609.893333pt;}
.x1f{left:628.933322pt;}
.x1d{left:631.013322pt;}
.xd{left:636.933322pt;}
.xb{left:639.013322pt;}
.x27{left:658.533333pt;}
.x7{left:690.533322pt;}
.x2{left:697.893322pt;}
}




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