
    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_c23d283b20019fefae28dff6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_703e7d715895c7ce5ab478d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_566136ce3c65508c27ffb62e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_89bf5e00eadb7634c74150c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_89b5256b9a6a8a99bf0e0d12.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_77aca095b7c84b0a82e3273a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_1262b6cbd81b794aea5bbac9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_87271cc2c62b56e54556f2a7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_6ff7e957c754247ed67e0c0c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.877441;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_9e4572d3e0efc751c25b1de7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m6{transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144230,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173078,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182693,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192307,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,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);}
.m5{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.134000px;}
.ls16{letter-spacing:-0.804000px;}
.ls3{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.498000px;}
.lsc{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.010080px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.031020px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.152400px;}
.ls8{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.438000px;}
.ls0{letter-spacing:0.498240px;}
.ls5{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.536000px;}
.ls19{letter-spacing:1.596000px;}
.ls12{letter-spacing:2.010000px;}
.ls17{letter-spacing:2.328000px;}
.ls1a{letter-spacing:2.934000px;}
.ls11{letter-spacing:5.414540px;}
.ls1c{letter-spacing:13.265280px;}
.lsb{letter-spacing:19.440000px;}
.ls1{letter-spacing:22.440000px;}
.lsf{letter-spacing:33.276000px;}
.ls1d{letter-spacing:188.945280px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws12{word-spacing:-60.480000px;}
.ws3{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.948000px;}
.ws10{word-spacing:-15.633600px;}
.wsb{word-spacing:-15.315600px;}
.wse{word-spacing:-14.841600px;}
.ws7{word-spacing:-14.633400px;}
.wsd{word-spacing:-13.611000px;}
.wsc{word-spacing:-13.305600px;}
.ws11{word-spacing:-13.295520px;}
.ws0{word-spacing:-13.182000px;}
.wsf{word-spacing:-12.501600px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-17.772000px;}
._a{margin-left:-16.560000px;}
._27{margin-left:-8.612679px;}
._1b{margin-left:-5.883360px;}
._d{margin-left:-3.914400px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.379200px;}
._19{width:4.923840px;}
._11{width:6.120000px;}
._10{width:7.128000px;}
._f{width:8.280000px;}
._18{width:9.360000px;}
._1a{width:11.056800px;}
._1e{width:12.513120px;}
._1c{width:14.532480px;}
._24{width:15.540480px;}
._e{width:16.800000px;}
._1d{width:17.951040px;}
._c{width:19.020000px;}
._b{width:20.388000px;}
._12{width:21.612000px;}
._13{width:22.728000px;}
._14{width:24.240000px;}
._21{width:25.611840px;}
._22{width:27.224640px;}
._23{width:28.385280px;}
._28{width:30.067680px;}
._25{width:31.069920px;}
._29{width:32.391360px;}
._2a{width:40.617120px;}
._16{width:50.345520px;}
._17{width:51.721920px;}
._20{width:61.716000px;}
._1f{width:95.916000px;}
._26{width:145.596000px;}
._9{width:380.552160px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._8{width:1301.616000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:30.240000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs4{font-size:83.520000px;}
.yc{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.y35{bottom:3.600000px;}
.yc5{bottom:3.960000px;}
.yc1{bottom:4.320000px;}
.ycd{bottom:4.350000px;}
.yd3{bottom:9.000000px;}
.yc6{bottom:11.880000px;}
.yca{bottom:20.160000px;}
.yc4{bottom:20.880000px;}
.y34{bottom:22.320000px;}
.yd2{bottom:27.000000px;}
.yc9{bottom:37.440000px;}
.ycb{bottom:38.160000px;}
.y33{bottom:41.400000px;}
.y10{bottom:43.560000px;}
.yd0{bottom:45.000000px;}
.yd1{bottom:52.560000px;}
.y32{bottom:60.480000px;}
.yf{bottom:60.840000px;}
.ycf{bottom:68.760000px;}
.y31{bottom:79.200000px;}
.yd{bottom:85.716000px;}
.y30{bottom:98.280000px;}
.yb{bottom:111.996000px;}
.y2f{bottom:117.750000px;}
.y39{bottom:131.076000px;}
.y6a{bottom:132.516000px;}
.yd7{bottom:133.956000px;}
.y2e{bottom:138.630000px;}
.y11b{bottom:143.676000px;}
.ybd{bottom:148.356000px;}
.y38{bottom:149.796000px;}
.yeb{bottom:152.670000px;}
.y96{bottom:153.030000px;}
.y69{bottom:154.470000px;}
.yd6{bottom:155.550000px;}
.y2d{bottom:159.150000px;}
.y11a{bottom:162.390000px;}
.y37{bottom:168.870000px;}
.ybc{bottom:169.950000px;}
.yea{bottom:171.390000px;}
.yd5{bottom:174.630000px;}
.y95{bottom:174.990000px;}
.y68{bottom:176.070000px;}
.y2c{bottom:180.030000px;}
.y119{bottom:181.470000px;}
.y36{bottom:187.950000px;}
.ye9{bottom:190.470000px;}
.ybb{bottom:191.910000px;}
.y94{bottom:196.590000px;}
.y67{bottom:198.075000px;}
.y2b{bottom:200.550000px;}
.y118{bottom:200.595000px;}
.yd4{bottom:203.835000px;}
.y24{bottom:205.635000px;}
.ye8{bottom:209.595000px;}
.yba{bottom:213.555000px;}
.y93{bottom:218.595000px;}
.y117{bottom:219.675000px;}
.y66{bottom:220.035000px;}
.y2a{bottom:221.430000px;}
.ye7{bottom:228.675000px;}
.yb9{bottom:235.515000px;}
.y116{bottom:238.395000px;}
.y92{bottom:240.195000px;}
.y65{bottom:241.635000px;}
.y29{bottom:241.950000px;}
.ye6{bottom:247.395000px;}
.yb8{bottom:257.475000px;}
.y91{bottom:262.155000px;}
.y28{bottom:262.875000px;}
.y64{bottom:263.595000px;}
.ye5{bottom:266.475000px;}
.y115{bottom:276.555000px;}
.yb7{bottom:279.075000px;}
.y27{bottom:283.395000px;}
.y90{bottom:284.115000px;}
.y63{bottom:285.195000px;}
.ye4{bottom:285.555000px;}
.y114{bottom:295.275000px;}
.yb6{bottom:301.035000px;}
.yce{bottom:303.195000px;}
.y26{bottom:304.275000px;}
.y8f{bottom:305.715000px;}
.y62{bottom:307.155000px;}
.y113{bottom:314.355000px;}
.ycc{bottom:321.195000px;}
.yb5{bottom:322.635000px;}
.ye3{bottom:323.385000px;}
.y25{bottom:324.795000px;}
.y8e{bottom:327.705000px;}
.y61{bottom:329.145000px;}
.y112{bottom:333.465000px;}
.yc8{bottom:339.225000px;}
.ye2{bottom:342.465000px;}
.yb4{bottom:344.625000px;}
.y8d{bottom:349.305000px;}
.y60{bottom:350.745000px;}
.y111{bottom:352.185000px;}
.ye1{bottom:361.545000px;}
.yb3{bottom:366.585000px;}
.y8c{bottom:371.265000px;}
.y5f{bottom:372.705000px;}
.ye0{bottom:380.265000px;}
.yb2{bottom:388.185000px;}
.y110{bottom:390.345000px;}
.yc7{bottom:391.785000px;}
.y8b{bottom:393.225000px;}
.y5e{bottom:394.305000px;}
.ydf{bottom:399.345000px;}
.y10f{bottom:409.425000px;}
.yb1{bottom:410.145000px;}
.y8a{bottom:414.825000px;}
.y5d{bottom:416.265000px;}
.yde{bottom:418.425000px;}
.yc3{bottom:427.065000px;}
.y10e{bottom:428.145000px;}
.yb0{bottom:431.745000px;}
.y89{bottom:436.785000px;}
.ydd{bottom:437.145000px;}
.y5c{bottom:438.225000px;}
.y10d{bottom:447.225000px;}
.yaf{bottom:453.750000px;}
.ydc{bottom:456.270000px;}
.y88{bottom:458.790000px;}
.y5b{bottom:459.870000px;}
.yc2{bottom:462.390000px;}
.y10c{bottom:466.350000px;}
.ydb{bottom:475.350000px;}
.yae{bottom:475.710000px;}
.y87{bottom:480.390000px;}
.y5a{bottom:481.830000px;}
.y10b{bottom:485.070000px;}
.yda{bottom:494.070000px;}
.yad{bottom:497.310000px;}
.yc0{bottom:500.190000px;}
.y86{bottom:502.350000px;}
.y59{bottom:503.430000px;}
.y10a{bottom:504.150000px;}
.yd9{bottom:513.150000px;}
.yac{bottom:519.270000px;}
.ybf{bottom:521.070000px;}
.y109{bottom:523.230000px;}
.y85{bottom:523.950000px;}
.y58{bottom:525.390000px;}
.yd8{bottom:532.230000px;}
.yab{bottom:541.230000px;}
.y108{bottom:541.950000px;}
.y84{bottom:545.910000px;}
.y57{bottom:547.350000px;}
.ybe{bottom:552.390000px;}
.y23{bottom:553.110000px;}
.y107{bottom:561.030000px;}
.yaa{bottom:562.830000px;}
.y83{bottom:567.870000px;}
.y56{bottom:568.950000px;}
.y22{bottom:571.830000px;}
.y106{bottom:580.140000px;}
.ya9{bottom:584.820000px;}
.y82{bottom:589.500000px;}
.y21{bottom:590.940000px;}
.y105{bottom:599.220000px;}
.ya8{bottom:606.420000px;}
.y20{bottom:610.020000px;}
.y81{bottom:611.460000px;}
.y55{bottom:612.900000px;}
.y104{bottom:617.940000px;}
.ya7{bottom:628.380000px;}
.y1f{bottom:628.740000px;}
.y80{bottom:633.060000px;}
.y54{bottom:634.500000px;}
.y103{bottom:637.020000px;}
.y1e{bottom:647.820000px;}
.ya6{bottom:650.340000px;}
.y7f{bottom:655.020000px;}
.y102{bottom:656.100000px;}
.y53{bottom:656.460000px;}
.y1d{bottom:666.900000px;}
.ya5{bottom:671.940000px;}
.y101{bottom:674.820000px;}
.y7e{bottom:676.980000px;}
.y52{bottom:678.060000px;}
.y1c{bottom:685.980000px;}
.ya4{bottom:693.900000px;}
.y7d{bottom:698.580000px;}
.y51{bottom:700.020000px;}
.y1b{bottom:704.730000px;}
.y100{bottom:713.010000px;}
.ya3{bottom:715.530000px;}
.y7c{bottom:720.570000px;}
.y50{bottom:722.010000px;}
.y1a{bottom:724.170000px;}
.yff{bottom:732.090000px;}
.ya2{bottom:737.490000px;}
.y7b{bottom:742.170000px;}
.y4f{bottom:743.610000px;}
.y19{bottom:744.330000px;}
.yfe{bottom:750.810000px;}
.ya1{bottom:759.450000px;}
.y18{bottom:763.410000px;}
.y7a{bottom:764.130000px;}
.y4e{bottom:765.570000px;}
.yfd{bottom:769.890000px;}
.ya0{bottom:781.050000px;}
.y17{bottom:782.490000px;}
.y79{bottom:786.090000px;}
.y4d{bottom:787.170000px;}
.yfc{bottom:788.970000px;}
.y16{bottom:801.930000px;}
.y9f{bottom:803.010000px;}
.y78{bottom:807.690000px;}
.y4c{bottom:809.130000px;}
.y9e{bottom:824.610000px;}
.yfb{bottom:826.815000px;}
.y77{bottom:829.695000px;}
.y15{bottom:831.135000px;}
.yfa{bottom:845.895000px;}
.y9d{bottom:846.615000px;}
.y76{bottom:851.655000px;}
.y4b{bottom:852.735000px;}
.y14{bottom:859.215000px;}
.yf9{bottom:864.615000px;}
.y9c{bottom:868.575000px;}
.y75{bottom:873.255000px;}
.y4a{bottom:874.695000px;}
.y13{bottom:879.375000px;}
.yf8{bottom:883.695000px;}
.y9b{bottom:890.175000px;}
.y74{bottom:895.215000px;}
.y49{bottom:896.295000px;}
.yf7{bottom:902.775000px;}
.y12{bottom:903.495000px;}
.y9a{bottom:912.135000px;}
.y73{bottom:916.815000px;}
.y48{bottom:918.255000px;}
.yf6{bottom:921.855000px;}
.y11{bottom:926.535000px;}
.y99{bottom:934.095000px;}
.y72{bottom:938.775000px;}
.y47{bottom:940.215000px;}
.yf5{bottom:940.575000px;}
.ya{bottom:944.895000px;}
.y98{bottom:955.725000px;}
.yf4{bottom:959.685000px;}
.y46{bottom:961.845000px;}
.y9{bottom:962.205000px;}
.y71{bottom:976.245000px;}
.y97{bottom:977.685000px;}
.yf3{bottom:978.765000px;}
.y8{bottom:979.485000px;}
.y45{bottom:983.805000px;}
.y7{bottom:993.525000px;}
.yf2{bottom:997.485000px;}
.y70{bottom:999.285000px;}
.y44{bottom:1005.765000px;}
.yf1{bottom:1016.565000px;}
.y6f{bottom:1021.245000px;}
.y43{bottom:1027.365000px;}
.yf0{bottom:1035.645000px;}
.y6{bottom:1039.245000px;}
.y6e{bottom:1043.205000px;}
.y42{bottom:1049.325000px;}
.yef{bottom:1054.365000px;}
.y5{bottom:1055.085000px;}
.y6d{bottom:1064.805000px;}
.y41{bottom:1070.925000px;}
.y4{bottom:1073.085000px;}
.yee{bottom:1073.445000px;}
.y6c{bottom:1086.810000px;}
.yed{bottom:1092.570000px;}
.y40{bottom:1092.930000px;}
.y3{bottom:1094.010000px;}
.y6b{bottom:1108.410000px;}
.yec{bottom:1111.650000px;}
.y2{bottom:1114.530000px;}
.y3f{bottom:1130.370000px;}
.y1{bottom:1131.450000px;}
.y3e{bottom:1149.090000px;}
.y3d{bottom:1166.370000px;}
.y3c{bottom:1180.410000px;}
.y3b{bottom:1201.290000px;}
.y3a{bottom:1227.600000px;}
.h6{height:8.639850px;}
.he{height:8.640000px;}
.h8{height:15.480000px;}
.h10{height:16.920000px;}
.h12{height:17.280000px;}
.h17{height:17.316000px;}
.hf{height:26.858672px;}
.h15{height:34.560000px;}
.h13{height:34.596000px;}
.h5{height:39.997969px;}
.h1a{height:41.696016px;}
.h7{height:48.013594px;}
.h1c{height:48.418594px;}
.h16{height:51.840000px;}
.h14{height:52.624688px;}
.h4{height:53.067656px;}
.h11{height:53.097188px;}
.h2{height:53.717344px;}
.h19{height:54.734062px;}
.hb{height:58.121719px;}
.h9{height:58.833281px;}
.hd{height:63.175781px;}
.h3{height:63.949219px;}
.h1b{height:65.702812px;}
.ha{height:74.181094px;}
.h18{height:82.440000px;}
.hc{height:341.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:84.996000px;}
.wa{width:99.396000px;}
.w9{width:185.115000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w8{width:500.250000px;}
.w5{width:679.965000px;}
.wc{width:686.085000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x3c{left:10.800000px;}
.x3d{left:20.196000px;}
.x3e{left:24.876000px;}
.x20{left:27.000000px;}
.x3f{left:30.276000px;}
.x42{left:34.959000px;}
.x39{left:42.879000px;}
.x36{left:44.685000px;}
.x3b{left:52.245000px;}
.x21{left:54.765000px;}
.x22{left:55.839000px;}
.x1d{left:60.519000px;}
.x1e{left:66.990000px;}
.x1b{left:70.950000px;}
.x40{left:72.759000px;}
.x41{left:82.839000px;}
.x7{left:106.235987px;}
.x1c{left:114.150000px;}
.x18{left:116.676000px;}
.x23{left:120.669000px;}
.x10{left:121.715987px;}
.x43{left:123.189000px;}
.x24{left:125.349000px;}
.x44{left:127.869000px;}
.xb{left:128.915987px;}
.x17{left:133.271987px;}
.x25{left:134.349000px;}
.x57{left:160.274987px;}
.x26{left:162.069000px;}
.x27{left:166.749000px;}
.x45{left:172.149000px;}
.x28{left:173.589000px;}
.x46{left:176.469000px;}
.x29{left:178.269000px;}
.x15{left:180.794987px;}
.x47{left:185.829000px;}
.x48{left:190.509000px;}
.x19{left:198.834000px;}
.x2a{left:203.874000px;}
.x2b{left:208.554000px;}
.x49{left:215.394000px;}
.x4a{left:220.074000px;}
.x2c{left:221.514000px;}
.x2d{left:226.554000px;}
.x3a{left:227.634000px;}
.x37{left:229.794000px;}
.x4b{left:233.754000px;}
.x38{left:237.354000px;}
.x4c{left:249.234000px;}
.xe{left:250.304987px;}
.x2{left:254.264987px;}
.x2e{left:258.594000px;}
.x2f{left:263.274000px;}
.xf{left:267.224987px;}
.x13{left:270.464987px;}
.x6{left:274.064987px;}
.x12{left:277.664987px;}
.x30{left:279.864000px;}
.xc{left:284.504987px;}
.x56{left:287.384987px;}
.xa{left:304.350000px;}
.x4d{left:314.784000px;}
.x31{left:316.944000px;}
.x4e{left:319.104000px;}
.x32{left:321.624000px;}
.x33{left:323.784000px;}
.x34{left:328.824000px;}
.x14{left:339.984000px;}
.x5{left:354.749987px;}
.x4f{left:356.184000px;}
.x50{left:360.144000px;}
.x35{left:361.224000px;}
.x51{left:369.534000px;}
.xd{left:372.029987px;}
.x52{left:374.214000px;}
.x4{left:379.949987px;}
.x11{left:381.029987px;}
.x53{left:390.414000px;}
.x54{left:395.454000px;}
.x3{left:398.339987px;}
.x55{left:412.374000px;}
.x8{left:446.579987px;}
.x16{left:447.660000px;}
.x1a{left:617.655000px;}
.x1f{left:717.765000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.008000pt;}
.ls16{letter-spacing:-0.714667pt;}
.ls3{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsc{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.008960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.027573pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.135467pt;}
.ls8{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.389333pt;}
.ls0{letter-spacing:0.442880pt;}
.ls5{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.365333pt;}
.ls19{letter-spacing:1.418667pt;}
.ls12{letter-spacing:1.786667pt;}
.ls17{letter-spacing:2.069333pt;}
.ls1a{letter-spacing:2.608000pt;}
.ls11{letter-spacing:4.812925pt;}
.ls1c{letter-spacing:11.791360pt;}
.lsb{letter-spacing:17.280000pt;}
.ls1{letter-spacing:19.946667pt;}
.lsf{letter-spacing:29.578667pt;}
.ls1d{letter-spacing:167.951360pt;}
.ws13{word-spacing:-58.880000pt;}
.ws12{word-spacing:-53.760000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.176000pt;}
.ws10{word-spacing:-13.896533pt;}
.wsb{word-spacing:-13.613867pt;}
.wse{word-spacing:-13.192533pt;}
.ws7{word-spacing:-13.007467pt;}
.wsd{word-spacing:-12.098667pt;}
.wsc{word-spacing:-11.827200pt;}
.ws11{word-spacing:-11.818240pt;}
.ws0{word-spacing:-11.717333pt;}
.wsf{word-spacing:-11.112533pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-15.797333pt;}
._a{margin-left:-14.720000pt;}
._27{margin-left:-7.655714pt;}
._1b{margin-left:-5.229653pt;}
._d{margin-left:-3.479467pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.003733pt;}
._19{width:4.376747pt;}
._11{width:5.440000pt;}
._10{width:6.336000pt;}
._f{width:7.360000pt;}
._18{width:8.320000pt;}
._1a{width:9.828267pt;}
._1e{width:11.122773pt;}
._1c{width:12.917760pt;}
._24{width:13.813760pt;}
._e{width:14.933333pt;}
._1d{width:15.956480pt;}
._c{width:16.906667pt;}
._b{width:18.122667pt;}
._12{width:19.210667pt;}
._13{width:20.202667pt;}
._14{width:21.546667pt;}
._21{width:22.766080pt;}
._22{width:24.199680pt;}
._23{width:25.231360pt;}
._28{width:26.726827pt;}
._25{width:27.617707pt;}
._29{width:28.792320pt;}
._2a{width:36.104107pt;}
._16{width:44.751573pt;}
._17{width:45.975040pt;}
._20{width:54.858667pt;}
._1f{width:85.258667pt;}
._26{width:129.418667pt;}
._9{width:338.268587pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._8{width:1156.992000pt;}
._3{width:1414.378667pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs4{font-size:74.240000pt;}
.yc{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.y35{bottom:3.200000pt;}
.yc5{bottom:3.520000pt;}
.yc1{bottom:3.840000pt;}
.ycd{bottom:3.866667pt;}
.yd3{bottom:8.000000pt;}
.yc6{bottom:10.560000pt;}
.yca{bottom:17.920000pt;}
.yc4{bottom:18.560000pt;}
.y34{bottom:19.840000pt;}
.yd2{bottom:24.000000pt;}
.yc9{bottom:33.280000pt;}
.ycb{bottom:33.920000pt;}
.y33{bottom:36.800000pt;}
.y10{bottom:38.720000pt;}
.yd0{bottom:40.000000pt;}
.yd1{bottom:46.720000pt;}
.y32{bottom:53.760000pt;}
.yf{bottom:54.080000pt;}
.ycf{bottom:61.120000pt;}
.y31{bottom:70.400000pt;}
.yd{bottom:76.192000pt;}
.y30{bottom:87.360000pt;}
.yb{bottom:99.552000pt;}
.y2f{bottom:104.666667pt;}
.y39{bottom:116.512000pt;}
.y6a{bottom:117.792000pt;}
.yd7{bottom:119.072000pt;}
.y2e{bottom:123.226667pt;}
.y11b{bottom:127.712000pt;}
.ybd{bottom:131.872000pt;}
.y38{bottom:133.152000pt;}
.yeb{bottom:135.706667pt;}
.y96{bottom:136.026667pt;}
.y69{bottom:137.306667pt;}
.yd6{bottom:138.266667pt;}
.y2d{bottom:141.466667pt;}
.y11a{bottom:144.346667pt;}
.y37{bottom:150.106667pt;}
.ybc{bottom:151.066667pt;}
.yea{bottom:152.346667pt;}
.yd5{bottom:155.226667pt;}
.y95{bottom:155.546667pt;}
.y68{bottom:156.506667pt;}
.y2c{bottom:160.026667pt;}
.y119{bottom:161.306667pt;}
.y36{bottom:167.066667pt;}
.ye9{bottom:169.306667pt;}
.ybb{bottom:170.586667pt;}
.y94{bottom:174.746667pt;}
.y67{bottom:176.066667pt;}
.y2b{bottom:178.266667pt;}
.y118{bottom:178.306667pt;}
.yd4{bottom:181.186667pt;}
.y24{bottom:182.786667pt;}
.ye8{bottom:186.306667pt;}
.yba{bottom:189.826667pt;}
.y93{bottom:194.306667pt;}
.y117{bottom:195.266667pt;}
.y66{bottom:195.586667pt;}
.y2a{bottom:196.826667pt;}
.ye7{bottom:203.266667pt;}
.yb9{bottom:209.346667pt;}
.y116{bottom:211.906667pt;}
.y92{bottom:213.506667pt;}
.y65{bottom:214.786667pt;}
.y29{bottom:215.066667pt;}
.ye6{bottom:219.906667pt;}
.yb8{bottom:228.866667pt;}
.y91{bottom:233.026667pt;}
.y28{bottom:233.666667pt;}
.y64{bottom:234.306667pt;}
.ye5{bottom:236.866667pt;}
.y115{bottom:245.826667pt;}
.yb7{bottom:248.066667pt;}
.y27{bottom:251.906667pt;}
.y90{bottom:252.546667pt;}
.y63{bottom:253.506667pt;}
.ye4{bottom:253.826667pt;}
.y114{bottom:262.466667pt;}
.yb6{bottom:267.586667pt;}
.yce{bottom:269.506667pt;}
.y26{bottom:270.466667pt;}
.y8f{bottom:271.746667pt;}
.y62{bottom:273.026667pt;}
.y113{bottom:279.426667pt;}
.ycc{bottom:285.506667pt;}
.yb5{bottom:286.786667pt;}
.ye3{bottom:287.453333pt;}
.y25{bottom:288.706667pt;}
.y8e{bottom:291.293333pt;}
.y61{bottom:292.573333pt;}
.y112{bottom:296.413333pt;}
.yc8{bottom:301.533333pt;}
.ye2{bottom:304.413333pt;}
.yb4{bottom:306.333333pt;}
.y8d{bottom:310.493333pt;}
.y60{bottom:311.773333pt;}
.y111{bottom:313.053333pt;}
.ye1{bottom:321.373333pt;}
.yb3{bottom:325.853333pt;}
.y8c{bottom:330.013333pt;}
.y5f{bottom:331.293333pt;}
.ye0{bottom:338.013333pt;}
.yb2{bottom:345.053333pt;}
.y110{bottom:346.973333pt;}
.yc7{bottom:348.253333pt;}
.y8b{bottom:349.533333pt;}
.y5e{bottom:350.493333pt;}
.ydf{bottom:354.973333pt;}
.y10f{bottom:363.933333pt;}
.yb1{bottom:364.573333pt;}
.y8a{bottom:368.733333pt;}
.y5d{bottom:370.013333pt;}
.yde{bottom:371.933333pt;}
.yc3{bottom:379.613333pt;}
.y10e{bottom:380.573333pt;}
.yb0{bottom:383.773333pt;}
.y89{bottom:388.253333pt;}
.ydd{bottom:388.573333pt;}
.y5c{bottom:389.533333pt;}
.y10d{bottom:397.533333pt;}
.yaf{bottom:403.333333pt;}
.ydc{bottom:405.573333pt;}
.y88{bottom:407.813333pt;}
.y5b{bottom:408.773333pt;}
.yc2{bottom:411.013333pt;}
.y10c{bottom:414.533333pt;}
.ydb{bottom:422.533333pt;}
.yae{bottom:422.853333pt;}
.y87{bottom:427.013333pt;}
.y5a{bottom:428.293333pt;}
.y10b{bottom:431.173333pt;}
.yda{bottom:439.173333pt;}
.yad{bottom:442.053333pt;}
.yc0{bottom:444.613333pt;}
.y86{bottom:446.533333pt;}
.y59{bottom:447.493333pt;}
.y10a{bottom:448.133333pt;}
.yd9{bottom:456.133333pt;}
.yac{bottom:461.573333pt;}
.ybf{bottom:463.173333pt;}
.y109{bottom:465.093333pt;}
.y85{bottom:465.733333pt;}
.y58{bottom:467.013333pt;}
.yd8{bottom:473.093333pt;}
.yab{bottom:481.093333pt;}
.y108{bottom:481.733333pt;}
.y84{bottom:485.253333pt;}
.y57{bottom:486.533333pt;}
.ybe{bottom:491.013333pt;}
.y23{bottom:491.653333pt;}
.y107{bottom:498.693333pt;}
.yaa{bottom:500.293333pt;}
.y83{bottom:504.773333pt;}
.y56{bottom:505.733333pt;}
.y22{bottom:508.293333pt;}
.y106{bottom:515.680000pt;}
.ya9{bottom:519.840000pt;}
.y82{bottom:524.000000pt;}
.y21{bottom:525.280000pt;}
.y105{bottom:532.640000pt;}
.ya8{bottom:539.040000pt;}
.y20{bottom:542.240000pt;}
.y81{bottom:543.520000pt;}
.y55{bottom:544.800000pt;}
.y104{bottom:549.280000pt;}
.ya7{bottom:558.560000pt;}
.y1f{bottom:558.880000pt;}
.y80{bottom:562.720000pt;}
.y54{bottom:564.000000pt;}
.y103{bottom:566.240000pt;}
.y1e{bottom:575.840000pt;}
.ya6{bottom:578.080000pt;}
.y7f{bottom:582.240000pt;}
.y102{bottom:583.200000pt;}
.y53{bottom:583.520000pt;}
.y1d{bottom:592.800000pt;}
.ya5{bottom:597.280000pt;}
.y101{bottom:599.840000pt;}
.y7e{bottom:601.760000pt;}
.y52{bottom:602.720000pt;}
.y1c{bottom:609.760000pt;}
.ya4{bottom:616.800000pt;}
.y7d{bottom:620.960000pt;}
.y51{bottom:622.240000pt;}
.y1b{bottom:626.426667pt;}
.y100{bottom:633.786667pt;}
.ya3{bottom:636.026667pt;}
.y7c{bottom:640.506667pt;}
.y50{bottom:641.786667pt;}
.y1a{bottom:643.706667pt;}
.yff{bottom:650.746667pt;}
.ya2{bottom:655.546667pt;}
.y7b{bottom:659.706667pt;}
.y4f{bottom:660.986667pt;}
.y19{bottom:661.626667pt;}
.yfe{bottom:667.386667pt;}
.ya1{bottom:675.066667pt;}
.y18{bottom:678.586667pt;}
.y7a{bottom:679.226667pt;}
.y4e{bottom:680.506667pt;}
.yfd{bottom:684.346667pt;}
.ya0{bottom:694.266667pt;}
.y17{bottom:695.546667pt;}
.y79{bottom:698.746667pt;}
.y4d{bottom:699.706667pt;}
.yfc{bottom:701.306667pt;}
.y16{bottom:712.826667pt;}
.y9f{bottom:713.786667pt;}
.y78{bottom:717.946667pt;}
.y4c{bottom:719.226667pt;}
.y9e{bottom:732.986667pt;}
.yfb{bottom:734.946667pt;}
.y77{bottom:737.506667pt;}
.y15{bottom:738.786667pt;}
.yfa{bottom:751.906667pt;}
.y9d{bottom:752.546667pt;}
.y76{bottom:757.026667pt;}
.y4b{bottom:757.986667pt;}
.y14{bottom:763.746667pt;}
.yf9{bottom:768.546667pt;}
.y9c{bottom:772.066667pt;}
.y75{bottom:776.226667pt;}
.y4a{bottom:777.506667pt;}
.y13{bottom:781.666667pt;}
.yf8{bottom:785.506667pt;}
.y9b{bottom:791.266667pt;}
.y74{bottom:795.746667pt;}
.y49{bottom:796.706667pt;}
.yf7{bottom:802.466667pt;}
.y12{bottom:803.106667pt;}
.y9a{bottom:810.786667pt;}
.y73{bottom:814.946667pt;}
.y48{bottom:816.226667pt;}
.yf6{bottom:819.426667pt;}
.y11{bottom:823.586667pt;}
.y99{bottom:830.306667pt;}
.y72{bottom:834.466667pt;}
.y47{bottom:835.746667pt;}
.yf5{bottom:836.066667pt;}
.ya{bottom:839.906667pt;}
.y98{bottom:849.533333pt;}
.yf4{bottom:853.053333pt;}
.y46{bottom:854.973333pt;}
.y9{bottom:855.293333pt;}
.y71{bottom:867.773333pt;}
.y97{bottom:869.053333pt;}
.yf3{bottom:870.013333pt;}
.y8{bottom:870.653333pt;}
.y45{bottom:874.493333pt;}
.y7{bottom:883.133333pt;}
.yf2{bottom:886.653333pt;}
.y70{bottom:888.253333pt;}
.y44{bottom:894.013333pt;}
.yf1{bottom:903.613333pt;}
.y6f{bottom:907.773333pt;}
.y43{bottom:913.213333pt;}
.yf0{bottom:920.573333pt;}
.y6{bottom:923.773333pt;}
.y6e{bottom:927.293333pt;}
.y42{bottom:932.733333pt;}
.yef{bottom:937.213333pt;}
.y5{bottom:937.853333pt;}
.y6d{bottom:946.493333pt;}
.y41{bottom:951.933333pt;}
.y4{bottom:953.853333pt;}
.yee{bottom:954.173333pt;}
.y6c{bottom:966.053333pt;}
.yed{bottom:971.173333pt;}
.y40{bottom:971.493333pt;}
.y3{bottom:972.453333pt;}
.y6b{bottom:985.253333pt;}
.yec{bottom:988.133333pt;}
.y2{bottom:990.693333pt;}
.y3f{bottom:1004.773333pt;}
.y1{bottom:1005.733333pt;}
.y3e{bottom:1021.413333pt;}
.y3d{bottom:1036.773333pt;}
.y3c{bottom:1049.253333pt;}
.y3b{bottom:1067.813333pt;}
.y3a{bottom:1091.200000pt;}
.h6{height:7.679867pt;}
.he{height:7.680000pt;}
.h8{height:13.760000pt;}
.h10{height:15.040000pt;}
.h12{height:15.360000pt;}
.h17{height:15.392000pt;}
.hf{height:23.874375pt;}
.h15{height:30.720000pt;}
.h13{height:30.752000pt;}
.h5{height:35.553750pt;}
.h1a{height:37.063125pt;}
.h7{height:42.678750pt;}
.h1c{height:43.038750pt;}
.h16{height:46.080000pt;}
.h14{height:46.777500pt;}
.h4{height:47.171250pt;}
.h11{height:47.197500pt;}
.h2{height:47.748750pt;}
.h19{height:48.652500pt;}
.hb{height:51.663750pt;}
.h9{height:52.296250pt;}
.hd{height:56.156250pt;}
.h3{height:56.843750pt;}
.h1b{height:58.402500pt;}
.ha{height:65.938750pt;}
.h18{height:73.280000pt;}
.hc{height:303.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:75.552000pt;}
.wa{width:88.352000pt;}
.w9{width:164.546667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w8{width:444.666667pt;}
.w5{width:604.413333pt;}
.wc{width:609.853333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x3c{left:9.600000pt;}
.x3d{left:17.952000pt;}
.x3e{left:22.112000pt;}
.x20{left:24.000000pt;}
.x3f{left:26.912000pt;}
.x42{left:31.074667pt;}
.x39{left:38.114667pt;}
.x36{left:39.720000pt;}
.x3b{left:46.440000pt;}
.x21{left:48.680000pt;}
.x22{left:49.634667pt;}
.x1d{left:53.794667pt;}
.x1e{left:59.546667pt;}
.x1b{left:63.066667pt;}
.x40{left:64.674667pt;}
.x41{left:73.634667pt;}
.x7{left:94.431988pt;}
.x1c{left:101.466667pt;}
.x18{left:103.712000pt;}
.x23{left:107.261333pt;}
.x10{left:108.191988pt;}
.x43{left:109.501333pt;}
.x24{left:111.421333pt;}
.x44{left:113.661333pt;}
.xb{left:114.591988pt;}
.x17{left:118.463988pt;}
.x25{left:119.421333pt;}
.x57{left:142.466655pt;}
.x26{left:144.061333pt;}
.x27{left:148.221333pt;}
.x45{left:153.021333pt;}
.x28{left:154.301333pt;}
.x46{left:156.861333pt;}
.x29{left:158.461333pt;}
.x15{left:160.706655pt;}
.x47{left:165.181333pt;}
.x48{left:169.341333pt;}
.x19{left:176.741333pt;}
.x2a{left:181.221333pt;}
.x2b{left:185.381333pt;}
.x49{left:191.461333pt;}
.x4a{left:195.621333pt;}
.x2c{left:196.901333pt;}
.x2d{left:201.381333pt;}
.x3a{left:202.341333pt;}
.x37{left:204.261333pt;}
.x4b{left:207.781333pt;}
.x38{left:210.981333pt;}
.x4c{left:221.541333pt;}
.xe{left:222.493322pt;}
.x2{left:226.013322pt;}
.x2e{left:229.861333pt;}
.x2f{left:234.021333pt;}
.xf{left:237.533322pt;}
.x13{left:240.413322pt;}
.x6{left:243.613322pt;}
.x12{left:246.813322pt;}
.x30{left:248.768000pt;}
.xc{left:252.893322pt;}
.x56{left:255.453322pt;}
.xa{left:270.533333pt;}
.x4d{left:279.808000pt;}
.x31{left:281.728000pt;}
.x4e{left:283.648000pt;}
.x32{left:285.888000pt;}
.x33{left:287.808000pt;}
.x34{left:292.288000pt;}
.x14{left:302.208000pt;}
.x5{left:315.333322pt;}
.x4f{left:316.608000pt;}
.x50{left:320.128000pt;}
.x35{left:321.088000pt;}
.x51{left:328.474667pt;}
.xd{left:330.693322pt;}
.x52{left:332.634667pt;}
.x4{left:337.733322pt;}
.x11{left:338.693322pt;}
.x53{left:347.034667pt;}
.x54{left:351.514667pt;}
.x3{left:354.079988pt;}
.x55{left:366.554667pt;}
.x8{left:396.959988pt;}
.x16{left:397.920000pt;}
.x1a{left:549.026667pt;}
.x1f{left:638.013333pt;}
.x1{left:699.493322pt;}
}




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