
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_655f42800fc7b8b1c534164e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.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_569841b28414d86dfd70990b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_36bc4f0c8d0a360e22261246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e7781a8287601d24df275d70.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ad3686f9611ad3146b08d4bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_80b8134a7234dff0ef1b8284.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.730957;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_38fc6c8a4f8b4f89958b4ae5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_41e61b1b1f6c4c1d392ccfb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.080566;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_696197ada11ee51a6b460d30.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aec5a6e5691ab54e7af48950.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e8b0a73e4df230bbb3842bc8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.fff{font-family:fff;line-height:1.035156;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);}
.v3{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls1e{letter-spacing:-2.160000px;}
.ls1f{letter-spacing:-1.896000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.422000px;}
.ls30{letter-spacing:-1.332000px;}
.ls22{letter-spacing:-1.176000px;}
.ls31{letter-spacing:-1.134000px;}
.ls15{letter-spacing:-0.846000px;}
.ls1d{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.108000px;}
.ls10{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144720px;}
.ls2c{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.900000px;}
.ls27{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.780000px;}
.ls2e{letter-spacing:5.040000px;}
.lsc{letter-spacing:5.189760px;}
.ls19{letter-spacing:10.080000px;}
.ls21{letter-spacing:12.960000px;}
.ls2d{letter-spacing:15.840000px;}
.ls2f{letter-spacing:16.560000px;}
.lse{letter-spacing:16.740000px;}
.lsf{letter-spacing:17.460000px;}
.ls4{letter-spacing:20.340000px;}
.ls26{letter-spacing:23.040000px;}
.ls2a{letter-spacing:39.905280px;}
.ls25{letter-spacing:77.760000px;}
.ls29{letter-spacing:91.440000px;}
.ls0{letter-spacing:197.429760px;}
.ls5{letter-spacing:198.900000px;}
.ls18{letter-spacing:200.340000px;}
.ls2b{letter-spacing:849.185760px;}
.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;}
}
.ws1b{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.145400px;}
.ws15{word-spacing:-16.102200px;}
.ws1a{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.732000px;}
.ws1c{word-spacing:-15.426000px;}
.ws17{word-spacing:-15.384000px;}
.ws19{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.228000px;}
.ws16{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.012000px;}
.ws18{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.664000px;}
.ws13{word-spacing:-14.400000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.654000px;}
.ws3{word-spacing:-12.168000px;}
.ws5{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._1a{margin-left:-5.909280px;}
._f{margin-left:-4.348320px;}
._c{margin-left:-2.970000px;}
._2{margin-left:-1.620000px;}
._1{width:1.022400px;}
._8{width:2.154000px;}
._b{width:3.175200px;}
._7{width:4.224000px;}
._6{width:5.904000px;}
._5{width:7.329600px;}
._4{width:8.418000px;}
._9{width:10.386000px;}
._a{width:11.788800px;}
._20{width:13.458240px;}
._3{width:15.606000px;}
._e{width:17.175600px;}
._1b{width:18.240480px;}
._14{width:19.245600px;}
._10{width:20.624880px;}
._d{width:22.410000px;}
._1d{width:23.479200px;}
._13{width:25.594560px;}
._12{width:26.956800px;}
._1c{width:28.375200px;}
._1e{width:29.694240px;}
._21{width:31.201920px;}
._16{width:35.738640px;}
._15{width:36.840960px;}
._28{width:50.065920px;}
._26{width:52.050960px;}
._23{width:54.514080px;}
._24{width:55.857600px;}
._19{width:70.594560px;}
._11{width:75.179040px;}
._25{width:83.597760px;}
._18{width:84.781440px;}
._17{width:85.841280px;}
._22{width:105.071760px;}
._27{width:128.716560px;}
._0{width:152.778240px;}
._2a{width:195.840000px;}
._29{width:847.596000px;}
._1f{width:948.545760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y14{bottom:1.260000px;}
.y18{bottom:1.440000px;}
.y29{bottom:1.620000px;}
.y27{bottom:2.880000px;}
.y4a{bottom:3.060000px;}
.y90{bottom:3.240000px;}
.y8c{bottom:3.960000px;}
.y37{bottom:4.680000px;}
.y2d{bottom:4.860000px;}
.y87{bottom:5.400000px;}
.y16{bottom:7.200000px;}
.y7{bottom:8.100000px;}
.y1a{bottom:9.180000px;}
.y12{bottom:9.720000px;}
.y8e{bottom:11.880000px;}
.y30{bottom:15.120000px;}
.y39{bottom:15.480000px;}
.y10{bottom:15.660000px;}
.y2b{bottom:18.360000px;}
.y46{bottom:18.390000px;}
.y26{bottom:18.540000px;}
.y96{bottom:20.340000px;}
.y8f{bottom:20.520000px;}
.y9a{bottom:20.565000px;}
.y8b{bottom:22.545000px;}
.y6{bottom:23.610000px;}
.y45{bottom:33.870000px;}
.y25{bottom:34.020000px;}
.y5{bottom:37.110000px;}
.y95{bottom:37.620000px;}
.y93{bottom:37.800000px;}
.y2f{bottom:41.070000px;}
.yf{bottom:41.400000px;}
.y4{bottom:45.210000px;}
.y24{bottom:49.500000px;}
.y44{bottom:49.530000px;}
.y4e{bottom:55.080000px;}
.yb{bottom:55.440000px;}
.y88{bottom:55.620000px;}
.y2{bottom:59.970000px;}
.y23{bottom:64.980000px;}
.y43{bottom:65.010000px;}
.y3{bottom:65.910000px;}
.ya{bottom:68.940000px;}
.y33{bottom:80.460000px;}
.y42{bottom:80.490000px;}
.y22{bottom:80.640000px;}
.y41{bottom:95.970000px;}
.y21{bottom:96.120000px;}
.yf9{bottom:99.900000px;}
.y85{bottom:105.480000px;}
.y48{bottom:109.800000px;}
.yf8{bottom:110.160000px;}
.y20{bottom:111.600000px;}
.y40{bottom:111.630000px;}
.y84{bottom:124.380000px;}
.yc0{bottom:125.460000px;}
.y1f{bottom:127.080000px;}
.y3f{bottom:127.110000px;}
.yf7{bottom:127.440000px;}
.y47{bottom:140.760000px;}
.y32{bottom:142.560000px;}
.y3e{bottom:142.590000px;}
.y1e{bottom:142.785000px;}
.y83{bottom:143.280000px;}
.ybf{bottom:144.540000px;}
.y3a{bottom:144.720000px;}
.y3d{bottom:158.070000px;}
.y1d{bottom:158.265000px;}
.yf6{bottom:161.850000px;}
.y82{bottom:162.390000px;}
.ybe{bottom:163.470000px;}
.y3c{bottom:173.730000px;}
.yf5{bottom:179.130000px;}
.y81{bottom:181.290000px;}
.ybd{bottom:182.370000px;}
.y3b{bottom:189.210000px;}
.yf4{bottom:196.410000px;}
.y80{bottom:200.370000px;}
.ybc{bottom:201.450000px;}
.yf3{bottom:213.690000px;}
.y7f{bottom:219.270000px;}
.ybb{bottom:220.350000px;}
.yf2{bottom:230.970000px;}
.y7e{bottom:238.170000px;}
.yba{bottom:239.430000px;}
.yf1{bottom:248.250000px;}
.y7d{bottom:257.250000px;}
.yb9{bottom:258.330000px;}
.yf0{bottom:265.350000px;}
.y7c{bottom:276.150000px;}
.yb8{bottom:277.230000px;}
.yef{bottom:283.170000px;}
.y7b{bottom:295.230000px;}
.yb7{bottom:296.310000px;}
.yee{bottom:302.070000px;}
.y7a{bottom:314.130000px;}
.yb6{bottom:315.210000px;}
.yed{bottom:320.970000px;}
.y79{bottom:333.030000px;}
.yb5{bottom:334.290000px;}
.yec{bottom:340.050000px;}
.y38{bottom:346.530000px;}
.y78{bottom:352.110000px;}
.yb4{bottom:353.190000px;}
.yeb{bottom:358.950000px;}
.y77{bottom:371.010000px;}
.yb3{bottom:372.270000px;}
.yea{bottom:378.030000px;}
.y76{bottom:390.090000px;}
.yb2{bottom:391.170000px;}
.ye9{bottom:396.930000px;}
.y75{bottom:409.035000px;}
.yb1{bottom:410.115000px;}
.ye8{bottom:415.875000px;}
.y36{bottom:419.655000px;}
.y74{bottom:428.115000px;}
.yb0{bottom:429.195000px;}
.ye7{bottom:434.955000px;}
.y35{bottom:438.915000px;}
.y73{bottom:447.015000px;}
.yaf{bottom:448.095000px;}
.ye6{bottom:453.855000px;}
.y72{bottom:465.915000px;}
.yae{bottom:467.175000px;}
.y34{bottom:469.875000px;}
.ye5{bottom:472.935000px;}
.y31{bottom:473.475000px;}
.y71{bottom:484.995000px;}
.yad{bottom:486.075000px;}
.ye4{bottom:491.835000px;}
.y70{bottom:503.895000px;}
.yac{bottom:504.975000px;}
.ye3{bottom:510.735000px;}
.y6f{bottom:522.975000px;}
.yab{bottom:524.055000px;}
.ye2{bottom:529.815000px;}
.y6e{bottom:541.875000px;}
.yaa{bottom:542.955000px;}
.ye1{bottom:548.715000px;}
.y6d{bottom:560.775000px;}
.ya9{bottom:562.035000px;}
.ye0{bottom:567.795000px;}
.y6c{bottom:579.855000px;}
.ya8{bottom:580.935000px;}
.ydf{bottom:586.695000px;}
.y6b{bottom:598.755000px;}
.ya7{bottom:599.835000px;}
.yde{bottom:605.775000px;}
.y6a{bottom:617.835000px;}
.ya6{bottom:618.915000px;}
.ydd{bottom:624.675000px;}
.y2e{bottom:628.635000px;}
.y69{bottom:636.735000px;}
.ya5{bottom:637.815000px;}
.ydc{bottom:643.575000px;}
.y68{bottom:655.665000px;}
.ya4{bottom:656.925000px;}
.ydb{bottom:662.685000px;}
.y67{bottom:674.745000px;}
.ya3{bottom:675.825000px;}
.yda{bottom:681.585000px;}
.y66{bottom:693.645000px;}
.ya2{bottom:694.725000px;}
.yd9{bottom:700.665000px;}
.y2c{bottom:701.025000px;}
.y65{bottom:712.725000px;}
.ya1{bottom:713.805000px;}
.yd8{bottom:719.565000px;}
.y2a{bottom:720.285000px;}
.y64{bottom:731.625000px;}
.ya0{bottom:732.705000px;}
.yd7{bottom:738.465000px;}
.y63{bottom:750.525000px;}
.y28{bottom:751.245000px;}
.y1c{bottom:755.205000px;}
.yd6{bottom:757.545000px;}
.y62{bottom:769.605000px;}
.y9f{bottom:770.685000px;}
.yd5{bottom:776.445000px;}
.y61{bottom:788.505000px;}
.y9e{bottom:789.225000px;}
.y86{bottom:794.625000px;}
.yd4{bottom:795.525000px;}
.y9d{bottom:804.525000px;}
.y60{bottom:807.585000px;}
.y9c{bottom:810.825000px;}
.yd3{bottom:814.425000px;}
.y5f{bottom:826.485000px;}
.yd2{bottom:833.325000px;}
.y5e{bottom:845.385000px;}
.y9b{bottom:846.105000px;}
.yd1{bottom:852.405000px;}
.y5d{bottom:864.465000px;}
.yd0{bottom:871.305000px;}
.y8a{bottom:879.585000px;}
.y99{bottom:881.385000px;}
.y5c{bottom:883.365000px;}
.ycf{bottom:890.385000px;}
.y5b{bottom:902.490000px;}
.yce{bottom:909.330000px;}
.y98{bottom:916.710000px;}
.y5a{bottom:921.390000px;}
.y1b{bottom:926.070000px;}
.ycd{bottom:928.230000px;}
.y19{bottom:929.850000px;}
.y97{bottom:934.710000px;}
.y59{bottom:940.470000px;}
.ycc{bottom:947.310000px;}
.y17{bottom:952.890000px;}
.y15{bottom:956.670000px;}
.y58{bottom:959.370000px;}
.ycb{bottom:966.210000px;}
.y94{bottom:969.990000px;}
.y57{bottom:978.270000px;}
.y13{bottom:979.890000px;}
.y11{bottom:983.490000px;}
.yca{bottom:985.290000px;}
.y56{bottom:997.350000px;}
.yc9{bottom:1004.190000px;}
.ye{bottom:1013.910000px;}
.y89{bottom:1016.250000px;}
.y92{bottom:1022.370000px;}
.yc8{bottom:1023.090000px;}
.y55{bottom:1035.330000px;}
.yc7{bottom:1042.170000px;}
.y54{bottom:1054.230000px;}
.yc6{bottom:1061.070000px;}
.y53{bottom:1073.130000px;}
.y91{bottom:1074.930000px;}
.yc5{bottom:1080.150000px;}
.y52{bottom:1092.210000px;}
.yd{bottom:1094.550000px;}
.yc4{bottom:1099.050000px;}
.y8d{bottom:1110.210000px;}
.y51{bottom:1111.110000px;}
.yc{bottom:1112.730000px;}
.yc3{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y50{bottom:1130.190000px;}
.yc2{bottom:1134.690000px;}
.yc1{bottom:1144.770000px;}
.y4f{bottom:1149.120000px;}
.y4d{bottom:1168.920000px;}
.y4c{bottom:1189.800000px;}
.y4b{bottom:1191.960000px;}
.y49{bottom:1194.840000px;}
.h12{height:3.600000px;}
.h16{height:3.780000px;}
.h1d{height:3.960000px;}
.h17{height:5.650313px;}
.h8{height:5.729063px;}
.h13{height:5.805000px;}
.h27{height:12.174258px;}
.h26{height:15.120000px;}
.h33{height:17.280000px;}
.h7{height:17.666016px;}
.h5{height:17.956055px;}
.h20{height:19.260000px;}
.h29{height:19.440000px;}
.h18{height:23.040000px;}
.h14{height:23.220000px;}
.h35{height:23.307539px;}
.h3a{height:23.945625px;}
.h3b{height:29.664141px;}
.h10{height:30.420000px;}
.h1e{height:30.960000px;}
.h2d{height:34.380000px;}
.h2e{height:34.560000px;}
.h34{height:34.596000px;}
.h2c{height:36.576000px;}
.h25{height:37.863281px;}
.hb{height:38.812500px;}
.h9{height:40.985156px;}
.h31{height:41.902031px;}
.h28{height:46.445625px;}
.h15{height:47.321367px;}
.h2b{height:47.344922px;}
.h19{height:47.678906px;}
.h32{height:51.660000px;}
.h30{height:51.840000px;}
.h1f{height:52.971680px;}
.h1c{height:52.998047px;}
.h1b{height:54.421875px;}
.h6{height:56.320312px;}
.h2a{height:58.621992px;}
.h2f{height:58.651172px;}
.h11{height:60.226875px;}
.h36{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h38{height:67.824844px;}
.h37{height:69.086250px;}
.h21{height:72.396000px;}
.h23{height:73.116000px;}
.hd{height:73.260000px;}
.h4{height:75.093750px;}
.he{height:77.827148px;}
.h2{height:82.836000px;}
.h39{height:84.898125px;}
.hf{height:90.703125px;}
.h22{height:155.160000px;}
.h1a{height:170.850000px;}
.h24{height:201.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:113.616000px;}
.wf{width:125.820000px;}
.wd{width:126.396000px;}
.wc{width:132.120000px;}
.w10{width:188.850000px;}
.wa{width:212.250000px;}
.w7{width:222.690000px;}
.wb{width:261.390000px;}
.w8{width:261.570000px;}
.w2{width:287.175000px;}
.w3{width:435.135000px;}
.w6{width:499.575000px;}
.w9{width:510.015000px;}
.w5{width:722.265000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x14{left:10.800000px;}
.x21{left:15.300000px;}
.x22{left:18.180000px;}
.x1f{left:19.665000px;}
.x1e{left:21.645000px;}
.x1c{left:27.720000px;}
.x7{left:31.680000px;}
.x1a{left:34.200000px;}
.xb{left:35.640000px;}
.x9{left:45.000000px;}
.x5{left:70.374000px;}
.x25{left:80.145000px;}
.x1{left:84.600000px;}
.x1b{left:107.454000px;}
.x10{left:108.575987px;}
.x29{left:111.995987px;}
.x2{left:117.030000px;}
.x6{left:121.494000px;}
.x13{left:128.196000px;}
.x28{left:138.995987px;}
.x27{left:153.209987px;}
.xa{left:158.394000px;}
.xc{left:192.999000px;}
.x16{left:204.165000px;}
.xe{left:214.605000px;}
.x1d{left:250.230000px;}
.x8{left:361.119000px;}
.x2a{left:369.614987px;}
.x3{left:371.775000px;}
.x20{left:377.355000px;}
.x18{left:383.114987px;}
.x19{left:385.274987px;}
.x11{left:430.094987px;}
.x26{left:446.504987px;}
.x12{left:451.544987px;}
.x23{left:491.685000px;}
.xd{left:584.565000px;}
.x15{left:595.005000px;}
.x24{left:618.405000px;}
.xf{left:636.449987px;}
.x17{left:795.749987px;}
@media print{
.v3{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.ls1f{letter-spacing:-1.685333pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.264000pt;}
.ls30{letter-spacing:-1.184000pt;}
.ls22{letter-spacing:-1.045333pt;}
.ls31{letter-spacing:-1.008000pt;}
.ls15{letter-spacing:-0.752000pt;}
.ls1d{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128640pt;}
.ls2c{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls27{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls2e{letter-spacing:4.480000pt;}
.lsc{letter-spacing:4.613120pt;}
.ls19{letter-spacing:8.960000pt;}
.ls21{letter-spacing:11.520000pt;}
.ls2d{letter-spacing:14.080000pt;}
.ls2f{letter-spacing:14.720000pt;}
.lse{letter-spacing:14.880000pt;}
.lsf{letter-spacing:15.520000pt;}
.ls4{letter-spacing:18.080000pt;}
.ls26{letter-spacing:20.480000pt;}
.ls2a{letter-spacing:35.471360pt;}
.ls25{letter-spacing:69.120000pt;}
.ls29{letter-spacing:81.280000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls5{letter-spacing:176.800000pt;}
.ls18{letter-spacing:178.080000pt;}
.ls2b{letter-spacing:754.831787pt;}
.ws1b{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.351467pt;}
.ws15{word-spacing:-14.313067pt;}
.ws1a{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.984000pt;}
.ws1c{word-spacing:-13.712000pt;}
.ws17{word-spacing:-13.674667pt;}
.ws19{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.536000pt;}
.ws16{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws18{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.034667pt;}
.ws13{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.248000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._1a{margin-left:-5.252693pt;}
._f{margin-left:-3.865173pt;}
._c{margin-left:-2.640000pt;}
._2{margin-left:-1.440000pt;}
._1{width:0.908800pt;}
._8{width:1.914667pt;}
._b{width:2.822400pt;}
._7{width:3.754667pt;}
._6{width:5.248000pt;}
._5{width:6.515200pt;}
._4{width:7.482667pt;}
._9{width:9.232000pt;}
._a{width:10.478933pt;}
._20{width:11.962880pt;}
._3{width:13.872000pt;}
._e{width:15.267200pt;}
._1b{width:16.213760pt;}
._14{width:17.107200pt;}
._10{width:18.333227pt;}
._d{width:19.920000pt;}
._1d{width:20.870400pt;}
._13{width:22.750720pt;}
._12{width:23.961600pt;}
._1c{width:25.222400pt;}
._1e{width:26.394880pt;}
._21{width:27.735040pt;}
._16{width:31.767680pt;}
._15{width:32.747520pt;}
._28{width:44.503040pt;}
._26{width:46.267520pt;}
._23{width:48.456960pt;}
._24{width:49.651200pt;}
._19{width:62.750720pt;}
._11{width:66.825813pt;}
._25{width:74.309120pt;}
._18{width:75.361280pt;}
._17{width:76.303360pt;}
._22{width:93.397120pt;}
._27{width:114.414720pt;}
._0{width:135.802880pt;}
._2a{width:174.080000pt;}
._29{width:753.418667pt;}
._1f{width:843.151787pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y14{bottom:1.120000pt;}
.y18{bottom:1.280000pt;}
.y29{bottom:1.440000pt;}
.y27{bottom:2.560000pt;}
.y4a{bottom:2.720000pt;}
.y90{bottom:2.880000pt;}
.y8c{bottom:3.520000pt;}
.y37{bottom:4.160000pt;}
.y2d{bottom:4.320000pt;}
.y87{bottom:4.800000pt;}
.y16{bottom:6.400000pt;}
.y7{bottom:7.200000pt;}
.y1a{bottom:8.160000pt;}
.y12{bottom:8.640000pt;}
.y8e{bottom:10.560000pt;}
.y30{bottom:13.440000pt;}
.y39{bottom:13.760000pt;}
.y10{bottom:13.920000pt;}
.y2b{bottom:16.320000pt;}
.y46{bottom:16.346667pt;}
.y26{bottom:16.480000pt;}
.y96{bottom:18.080000pt;}
.y8f{bottom:18.240000pt;}
.y9a{bottom:18.280000pt;}
.y8b{bottom:20.040000pt;}
.y6{bottom:20.986667pt;}
.y45{bottom:30.106667pt;}
.y25{bottom:30.240000pt;}
.y5{bottom:32.986667pt;}
.y95{bottom:33.440000pt;}
.y93{bottom:33.600000pt;}
.y2f{bottom:36.506667pt;}
.yf{bottom:36.800000pt;}
.y4{bottom:40.186667pt;}
.y24{bottom:44.000000pt;}
.y44{bottom:44.026667pt;}
.y4e{bottom:48.960000pt;}
.yb{bottom:49.280000pt;}
.y88{bottom:49.440000pt;}
.y2{bottom:53.306667pt;}
.y23{bottom:57.760000pt;}
.y43{bottom:57.786667pt;}
.y3{bottom:58.586667pt;}
.ya{bottom:61.280000pt;}
.y33{bottom:71.520000pt;}
.y42{bottom:71.546667pt;}
.y22{bottom:71.680000pt;}
.y41{bottom:85.306667pt;}
.y21{bottom:85.440000pt;}
.yf9{bottom:88.800000pt;}
.y85{bottom:93.760000pt;}
.y48{bottom:97.600000pt;}
.yf8{bottom:97.920000pt;}
.y20{bottom:99.200000pt;}
.y40{bottom:99.226667pt;}
.y84{bottom:110.560000pt;}
.yc0{bottom:111.520000pt;}
.y1f{bottom:112.960000pt;}
.y3f{bottom:112.986667pt;}
.yf7{bottom:113.280000pt;}
.y47{bottom:125.120000pt;}
.y32{bottom:126.720000pt;}
.y3e{bottom:126.746667pt;}
.y1e{bottom:126.920000pt;}
.y83{bottom:127.360000pt;}
.ybf{bottom:128.480000pt;}
.y3a{bottom:128.640000pt;}
.y3d{bottom:140.506667pt;}
.y1d{bottom:140.680000pt;}
.yf6{bottom:143.866667pt;}
.y82{bottom:144.346667pt;}
.ybe{bottom:145.306667pt;}
.y3c{bottom:154.426667pt;}
.yf5{bottom:159.226667pt;}
.y81{bottom:161.146667pt;}
.ybd{bottom:162.106667pt;}
.y3b{bottom:168.186667pt;}
.yf4{bottom:174.586667pt;}
.y80{bottom:178.106667pt;}
.ybc{bottom:179.066667pt;}
.yf3{bottom:189.946667pt;}
.y7f{bottom:194.906667pt;}
.ybb{bottom:195.866667pt;}
.yf2{bottom:205.306667pt;}
.y7e{bottom:211.706667pt;}
.yba{bottom:212.826667pt;}
.yf1{bottom:220.666667pt;}
.y7d{bottom:228.666667pt;}
.yb9{bottom:229.626667pt;}
.yf0{bottom:235.866667pt;}
.y7c{bottom:245.466667pt;}
.yb8{bottom:246.426667pt;}
.yef{bottom:251.706667pt;}
.y7b{bottom:262.426667pt;}
.yb7{bottom:263.386667pt;}
.yee{bottom:268.506667pt;}
.y7a{bottom:279.226667pt;}
.yb6{bottom:280.186667pt;}
.yed{bottom:285.306667pt;}
.y79{bottom:296.026667pt;}
.yb5{bottom:297.146667pt;}
.yec{bottom:302.266667pt;}
.y38{bottom:308.026667pt;}
.y78{bottom:312.986667pt;}
.yb4{bottom:313.946667pt;}
.yeb{bottom:319.066667pt;}
.y77{bottom:329.786667pt;}
.yb3{bottom:330.906667pt;}
.yea{bottom:336.026667pt;}
.y76{bottom:346.746667pt;}
.yb2{bottom:347.706667pt;}
.ye9{bottom:352.826667pt;}
.y75{bottom:363.586667pt;}
.yb1{bottom:364.546667pt;}
.ye8{bottom:369.666667pt;}
.y36{bottom:373.026667pt;}
.y74{bottom:380.546667pt;}
.yb0{bottom:381.506667pt;}
.ye7{bottom:386.626667pt;}
.y35{bottom:390.146667pt;}
.y73{bottom:397.346667pt;}
.yaf{bottom:398.306667pt;}
.ye6{bottom:403.426667pt;}
.y72{bottom:414.146667pt;}
.yae{bottom:415.266667pt;}
.y34{bottom:417.666667pt;}
.ye5{bottom:420.386667pt;}
.y31{bottom:420.866667pt;}
.y71{bottom:431.106667pt;}
.yad{bottom:432.066667pt;}
.ye4{bottom:437.186667pt;}
.y70{bottom:447.906667pt;}
.yac{bottom:448.866667pt;}
.ye3{bottom:453.986667pt;}
.y6f{bottom:464.866667pt;}
.yab{bottom:465.826667pt;}
.ye2{bottom:470.946667pt;}
.y6e{bottom:481.666667pt;}
.yaa{bottom:482.626667pt;}
.ye1{bottom:487.746667pt;}
.y6d{bottom:498.466667pt;}
.ya9{bottom:499.586667pt;}
.ye0{bottom:504.706667pt;}
.y6c{bottom:515.426667pt;}
.ya8{bottom:516.386667pt;}
.ydf{bottom:521.506667pt;}
.y6b{bottom:532.226667pt;}
.ya7{bottom:533.186667pt;}
.yde{bottom:538.466667pt;}
.y6a{bottom:549.186667pt;}
.ya6{bottom:550.146667pt;}
.ydd{bottom:555.266667pt;}
.y2e{bottom:558.786667pt;}
.y69{bottom:565.986667pt;}
.ya5{bottom:566.946667pt;}
.ydc{bottom:572.066667pt;}
.y68{bottom:582.813333pt;}
.ya4{bottom:583.933333pt;}
.ydb{bottom:589.053333pt;}
.y67{bottom:599.773333pt;}
.ya3{bottom:600.733333pt;}
.yda{bottom:605.853333pt;}
.y66{bottom:616.573333pt;}
.ya2{bottom:617.533333pt;}
.yd9{bottom:622.813333pt;}
.y2c{bottom:623.133333pt;}
.y65{bottom:633.533333pt;}
.ya1{bottom:634.493333pt;}
.yd8{bottom:639.613333pt;}
.y2a{bottom:640.253333pt;}
.y64{bottom:650.333333pt;}
.ya0{bottom:651.293333pt;}
.yd7{bottom:656.413333pt;}
.y63{bottom:667.133333pt;}
.y28{bottom:667.773333pt;}
.y1c{bottom:671.293333pt;}
.yd6{bottom:673.373333pt;}
.y62{bottom:684.093333pt;}
.y9f{bottom:685.053333pt;}
.yd5{bottom:690.173333pt;}
.y61{bottom:700.893333pt;}
.y9e{bottom:701.533333pt;}
.y86{bottom:706.333333pt;}
.yd4{bottom:707.133333pt;}
.y9d{bottom:715.133333pt;}
.y60{bottom:717.853333pt;}
.y9c{bottom:720.733333pt;}
.yd3{bottom:723.933333pt;}
.y5f{bottom:734.653333pt;}
.yd2{bottom:740.733333pt;}
.y5e{bottom:751.453333pt;}
.y9b{bottom:752.093333pt;}
.yd1{bottom:757.693333pt;}
.y5d{bottom:768.413333pt;}
.yd0{bottom:774.493333pt;}
.y8a{bottom:781.853333pt;}
.y99{bottom:783.453333pt;}
.y5c{bottom:785.213333pt;}
.ycf{bottom:791.453333pt;}
.y5b{bottom:802.213333pt;}
.yce{bottom:808.293333pt;}
.y98{bottom:814.853333pt;}
.y5a{bottom:819.013333pt;}
.y1b{bottom:823.173333pt;}
.ycd{bottom:825.093333pt;}
.y19{bottom:826.533333pt;}
.y97{bottom:830.853333pt;}
.y59{bottom:835.973333pt;}
.ycc{bottom:842.053333pt;}
.y17{bottom:847.013333pt;}
.y15{bottom:850.373333pt;}
.y58{bottom:852.773333pt;}
.ycb{bottom:858.853333pt;}
.y94{bottom:862.213333pt;}
.y57{bottom:869.573333pt;}
.y13{bottom:871.013333pt;}
.y11{bottom:874.213333pt;}
.yca{bottom:875.813333pt;}
.y56{bottom:886.533333pt;}
.yc9{bottom:892.613333pt;}
.ye{bottom:901.253333pt;}
.y89{bottom:903.333333pt;}
.y92{bottom:908.773333pt;}
.yc8{bottom:909.413333pt;}
.y55{bottom:920.293333pt;}
.yc7{bottom:926.373333pt;}
.y54{bottom:937.093333pt;}
.yc6{bottom:943.173333pt;}
.y53{bottom:953.893333pt;}
.y91{bottom:955.493333pt;}
.yc5{bottom:960.133333pt;}
.y52{bottom:970.853333pt;}
.yd{bottom:972.933333pt;}
.yc4{bottom:976.933333pt;}
.y8d{bottom:986.853333pt;}
.y51{bottom:987.653333pt;}
.yc{bottom:989.093333pt;}
.yc3{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y50{bottom:1004.613333pt;}
.yc2{bottom:1008.613333pt;}
.yc1{bottom:1017.573333pt;}
.y4f{bottom:1021.440000pt;}
.y4d{bottom:1039.040000pt;}
.y4c{bottom:1057.600000pt;}
.y4b{bottom:1059.520000pt;}
.y49{bottom:1062.080000pt;}
.h12{height:3.200000pt;}
.h16{height:3.360000pt;}
.h1d{height:3.520000pt;}
.h17{height:5.022500pt;}
.h8{height:5.092500pt;}
.h13{height:5.160000pt;}
.h27{height:10.821563pt;}
.h26{height:13.440000pt;}
.h33{height:15.360000pt;}
.h7{height:15.703125pt;}
.h5{height:15.960938pt;}
.h20{height:17.120000pt;}
.h29{height:17.280000pt;}
.h18{height:20.480000pt;}
.h14{height:20.640000pt;}
.h35{height:20.717812pt;}
.h3a{height:21.285000pt;}
.h3b{height:26.368125pt;}
.h10{height:27.040000pt;}
.h1e{height:27.520000pt;}
.h2d{height:30.560000pt;}
.h2e{height:30.720000pt;}
.h34{height:30.752000pt;}
.h2c{height:32.512000pt;}
.h25{height:33.656250pt;}
.hb{height:34.500000pt;}
.h9{height:36.431250pt;}
.h31{height:37.246250pt;}
.h28{height:41.285000pt;}
.h15{height:42.063437pt;}
.h2b{height:42.084375pt;}
.h19{height:42.381250pt;}
.h32{height:45.920000pt;}
.h30{height:46.080000pt;}
.h1f{height:47.085938pt;}
.h1c{height:47.109375pt;}
.h1b{height:48.375000pt;}
.h6{height:50.062500pt;}
.h2a{height:52.108438pt;}
.h2f{height:52.134375pt;}
.h11{height:53.535000pt;}
.h36{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h38{height:60.288750pt;}
.h37{height:61.410000pt;}
.h21{height:64.352000pt;}
.h23{height:64.992000pt;}
.hd{height:65.120000pt;}
.h4{height:66.750000pt;}
.he{height:69.179688pt;}
.h2{height:73.632000pt;}
.h39{height:75.465000pt;}
.hf{height:80.625000pt;}
.h22{height:137.920000pt;}
.h1a{height:151.866667pt;}
.h24{height:179.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:100.992000pt;}
.wf{width:111.840000pt;}
.wd{width:112.352000pt;}
.wc{width:117.440000pt;}
.w10{width:167.866667pt;}
.wa{width:188.666667pt;}
.w7{width:197.946667pt;}
.wb{width:232.346667pt;}
.w8{width:232.506667pt;}
.w2{width:255.266667pt;}
.w3{width:386.786667pt;}
.w6{width:444.066667pt;}
.w9{width:453.346667pt;}
.w5{width:642.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x14{left:9.600000pt;}
.x21{left:13.600000pt;}
.x22{left:16.160000pt;}
.x1f{left:17.480000pt;}
.x1e{left:19.240000pt;}
.x1c{left:24.640000pt;}
.x7{left:28.160000pt;}
.x1a{left:30.400000pt;}
.xb{left:31.680000pt;}
.x9{left:40.000000pt;}
.x5{left:62.554667pt;}
.x25{left:71.240000pt;}
.x1{left:75.200000pt;}
.x1b{left:95.514667pt;}
.x10{left:96.511988pt;}
.x29{left:99.551988pt;}
.x2{left:104.026667pt;}
.x6{left:107.994667pt;}
.x13{left:113.952000pt;}
.x28{left:123.551988pt;}
.x27{left:136.186655pt;}
.xa{left:140.794667pt;}
.xc{left:171.554667pt;}
.x16{left:181.480000pt;}
.xe{left:190.760000pt;}
.x1d{left:222.426667pt;}
.x8{left:320.994667pt;}
.x2a{left:328.546655pt;}
.x3{left:330.466667pt;}
.x20{left:335.426667pt;}
.x18{left:340.546655pt;}
.x19{left:342.466655pt;}
.x11{left:382.306655pt;}
.x26{left:396.893322pt;}
.x12{left:401.373322pt;}
.x23{left:437.053333pt;}
.xd{left:519.613333pt;}
.x15{left:528.893333pt;}
.x24{left:549.693333pt;}
.xf{left:565.733322pt;}
.x17{left:707.333322pt;}
}




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