
    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_148762b33471fc13dfaa631e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_f82b85e518179fda9a9c2c31.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f13768e6f222cd445aa2a92f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3c1175e60d823e22d11d04b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_3122d47e218c2b5df146583d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_cf28817957130cd44c54177d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_767a80e0e56238f95b5f9907.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3656e46b56c4b4e1186cf51a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_994e60357cfb56ee5e6347a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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);}
.v1{vertical-align:-92.880000px;}
.v2{vertical-align:-9.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:9.360000px;}
.ls5e{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-1.062000px;}
.ls5f{letter-spacing:-0.900000px;}
.ls34{letter-spacing:-0.876000px;}
.ls3b{letter-spacing:-0.666000px;}
.ls31{letter-spacing:-0.612000px;}
.ls42{letter-spacing:-0.428400px;}
.ls47{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.350400px;}
.ls12{letter-spacing:-0.341400px;}
.ls55{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.161400px;}
.ls33{letter-spacing:-0.154800px;}
.ls11{letter-spacing:-0.037440px;}
.ls19{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.008640px;}
.ls36{letter-spacing:0.021600px;}
.ls1{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.037440px;}
.ls21{letter-spacing:0.053280px;}
.ls26{letter-spacing:0.082560px;}
.ls24{letter-spacing:0.106560px;}
.ls59{letter-spacing:0.118080px;}
.ls28{letter-spacing:0.154800px;}
.ls25{letter-spacing:0.155520px;}
.ls1a{letter-spacing:0.270720px;}
.ls4d{letter-spacing:0.291600px;}
.ls27{letter-spacing:0.300240px;}
.ls5a{letter-spacing:0.321840px;}
.ls20{letter-spacing:0.331920px;}
.lsf{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.428400px;}
.lsc{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.720000px;}
.ls5c{letter-spacing:1.260000px;}
.ls2d{letter-spacing:2.520000px;}
.lsa{letter-spacing:2.700000px;}
.ls3e{letter-spacing:3.240000px;}
.ls30{letter-spacing:3.558000px;}
.ls32{letter-spacing:3.624000px;}
.ls2c{letter-spacing:3.636000px;}
.ls3a{letter-spacing:3.708000px;}
.ls3f{letter-spacing:3.960000px;}
.ls35{letter-spacing:3.978000px;}
.ls40{letter-spacing:4.020000px;}
.ls2e{letter-spacing:4.068000px;}
.ls3d{letter-spacing:4.122000px;}
.ls5d{letter-spacing:4.140000px;}
.ls38{letter-spacing:4.212000px;}
.ls3c{letter-spacing:4.296000px;}
.ls2f{letter-spacing:4.356000px;}
.ls41{letter-spacing:4.386000px;}
.ls39{letter-spacing:4.500000px;}
.ls16{letter-spacing:4.860000px;}
.lse{letter-spacing:5.580000px;}
.ls22{letter-spacing:6.660000px;}
.ls15{letter-spacing:7.020000px;}
.ls14{letter-spacing:7.740000px;}
.ls51{letter-spacing:8.460000px;}
.ls48{letter-spacing:12.780000px;}
.ls50{letter-spacing:13.500000px;}
.ls46{letter-spacing:14.940000px;}
.lsb{letter-spacing:15.660000px;}
.ls9{letter-spacing:17.100000px;}
.ls1b{letter-spacing:17.820000px;}
.ls1c{letter-spacing:18.540000px;}
.ls4f{letter-spacing:19.260000px;}
.ls17{letter-spacing:19.980000px;}
.ls53{letter-spacing:20.700000px;}
.ls1f{letter-spacing:21.780000px;}
.ls2b{letter-spacing:23.580000px;}
.ls2a{letter-spacing:24.300000px;}
.ls56{letter-spacing:25.740000px;}
.ls58{letter-spacing:25.920000px;}
.ls5b{letter-spacing:26.460000px;}
.ls10{letter-spacing:27.180000px;}
.ls1e{letter-spacing:27.540000px;}
.ls29{letter-spacing:29.340000px;}
.lsd{letter-spacing:30.060000px;}
.ls44{letter-spacing:34.380000px;}
.ls7{letter-spacing:35.820000px;}
.ls57{letter-spacing:37.260000px;}
.ls49{letter-spacing:41.044320px;}
.ls4e{letter-spacing:41.764320px;}
.ls43{letter-spacing:45.900000px;}
.ls45{letter-spacing:49.500000px;}
.ls4a{letter-spacing:53.100000px;}
.ls4b{letter-spacing:53.280000px;}
.ls6{letter-spacing:53.820000px;}
.ls54{letter-spacing:62.460000px;}
.ls5{letter-spacing:788.400000px;}
.ls0{letter-spacing:830.160000px;}
.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;}
}
.ws0{word-spacing:-25.759440px;}
.wse{word-spacing:-25.416000px;}
.wsd{word-spacing:-25.128000px;}
.ws14{word-spacing:-25.038000px;}
.wsb{word-spacing:-24.696000px;}
.ws11{word-spacing:-24.684000px;}
.wsf{word-spacing:-24.618000px;}
.wsc{word-spacing:-23.580000px;}
.ws5{word-spacing:-21.420000px;}
.ws25{word-spacing:-21.401400px;}
.ws24{word-spacing:-21.351600px;}
.ws8{word-spacing:-21.088080px;}
.ws15{word-spacing:-21.081600px;}
.ws2{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.031920px;}
.ws7{word-spacing:-21.022560px;}
.ws12{word-spacing:-20.905200px;}
.ws16{word-spacing:-20.898600px;}
.ws9{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.709600px;}
.ws22{word-spacing:-20.700000px;}
.ws10{word-spacing:-20.448000px;}
.ws13{word-spacing:-20.184000px;}
.ws23{word-spacing:-19.998000px;}
.ws26{word-spacing:-19.980000px;}
.ws1a{word-spacing:-19.440000px;}
.ws21{word-spacing:-19.326000px;}
.ws1c{word-spacing:-19.236000px;}
.ws17{word-spacing:-19.152000px;}
.ws1d{word-spacing:-19.062000px;}
.ws20{word-spacing:-18.960000px;}
.ws1f{word-spacing:-18.900000px;}
.ws1b{word-spacing:-18.648000px;}
.ws1e{word-spacing:-18.180000px;}
.ws1{word-spacing:-18.000000px;}
.ws19{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws18{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._37{margin-left:-9.710400px;}
._36{margin-left:-8.453760px;}
._38{margin-left:-7.348080px;}
._2c{margin-left:-6.201360px;}
._24{margin-left:-5.138640px;}
._16{margin-left:-3.674160px;}
._12{margin-left:-2.514240px;}
._2{margin-left:-1.296000px;}
._0{width:1.470240px;}
._1{width:3.051840px;}
._14{width:4.116240px;}
._13{width:5.812560px;}
._10{width:6.907680px;}
._5{width:8.877600px;}
._6{width:10.128240px;}
._22{width:12.030720px;}
._23{width:13.595760px;}
._d{width:14.657760px;}
._31{width:15.869520px;}
._26{width:17.074800px;}
._7{width:18.111600px;}
._27{width:19.375200px;}
._33{width:22.156080px;}
._11{width:23.340960px;}
._8{width:24.377760px;}
._21{width:26.198640px;}
._c{width:28.000080px;}
._1c{width:29.263680px;}
._a{width:30.410640px;}
._b{width:31.538160px;}
._17{width:32.568480px;}
._3b{width:33.597120px;}
._18{width:34.608480px;}
._25{width:35.856960px;}
._29{width:37.234080px;}
._2e{width:39.255840px;}
._2f{width:40.339680px;}
._30{width:42.356880px;}
._2d{width:43.431840px;}
._1d{width:45.152640px;}
._20{width:46.668960px;}
._32{width:48.522240px;}
._3c{width:50.220000px;}
._9{width:52.261200px;}
._e{width:53.861760px;}
._f{width:57.228720px;}
._19{width:59.291520px;}
._3e{width:60.407520px;}
._3f{width:62.140080px;}
._2a{width:64.527840px;}
._2b{width:65.992320px;}
._35{width:67.003200px;}
._34{width:68.025360px;}
._3a{width:72.141840px;}
._39{width:73.573920px;}
._1e{width:74.889360px;}
._1f{width:75.984480px;}
._28{width:80.818560px;}
._1a{width:81.946080px;}
._1b{width:83.261520px;}
._15{width:84.492720px;}
._4{width:103.109760px;}
._3{width:104.120640px;}
._3d{width:2151.606240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:8.625000px;}
.y3f{bottom:8.640000px;}
.y4e{bottom:8.670000px;}
.y48{bottom:8.820000px;}
.y5e{bottom:10.800000px;}
.y5a{bottom:12.240000px;}
.y5c{bottom:12.420000px;}
.y6e{bottom:12.450000px;}
.y7{bottom:20.160000px;}
.y41{bottom:27.360000px;}
.y71{bottom:30.090000px;}
.y43{bottom:36.360000px;}
.y4d{bottom:36.390000px;}
.y47{bottom:36.540000px;}
.y45{bottom:36.570000px;}
.y59{bottom:38.160000px;}
.y62{bottom:38.340000px;}
.y6d{bottom:38.370000px;}
.y40{bottom:55.260000px;}
.y70{bottom:55.830000px;}
.y3d{bottom:55.980000px;}
.y36{bottom:56.685000px;}
.y6{bottom:59.400000px;}
.y69{bottom:64.080000px;}
.y64{bottom:64.125000px;}
.y42{bottom:64.260000px;}
.y6c{bottom:64.290000px;}
.y3a{bottom:65.685000px;}
.y58{bottom:67.320000px;}
.y57{bottom:68.760000px;}
.y67{bottom:68.940000px;}
.y61{bottom:69.165000px;}
.y5d{bottom:72.360000px;}
.y6f{bottom:81.750000px;}
.y3c{bottom:83.700000px;}
.y35{bottom:84.405000px;}
.y68{bottom:90.000000px;}
.y6b{bottom:90.030000px;}
.y63{bottom:90.045000px;}
.y39{bottom:93.405000px;}
.y56{bottom:94.500000px;}
.y66{bottom:94.860000px;}
.y60{bottom:94.905000px;}
.y55{bottom:98.280000px;}
.y5{bottom:106.560000px;}
.y34{bottom:121.125000px;}
.y23{bottom:141.696000px;}
.y32{bottom:142.056000px;}
.y87{bottom:153.030000px;}
.y7b{bottom:154.290000px;}
.y84{bottom:155.190000px;}
.y22{bottom:178.050000px;}
.y30{bottom:178.410000px;}
.y53{bottom:188.490000px;}
.y86{bottom:189.210000px;}
.y7a{bottom:190.470000px;}
.y83{bottom:191.370000px;}
.y21{bottom:214.230000px;}
.y2f{bottom:214.590000px;}
.y85{bottom:220.530000px;}
.y52{bottom:224.670000px;}
.y79{bottom:226.650000px;}
.y82{bottom:227.730000px;}
.y20{bottom:250.410000px;}
.y2e{bottom:250.770000px;}
.y78{bottom:262.830000px;}
.y81{bottom:263.910000px;}
.y51{bottom:264.090000px;}
.y1f{bottom:286.950000px;}
.y77{bottom:299.010000px;}
.y80{bottom:300.090000px;}
.y50{bottom:303.330000px;}
.y1e{bottom:323.310000px;}
.y88{bottom:323.490000px;}
.y76{bottom:335.370000px;}
.y7f{bottom:336.270000px;}
.y4f{bottom:342.570000px;}
.y1d{bottom:359.490000px;}
.y4c{bottom:362.205000px;}
.y7e{bottom:372.675000px;}
.y75{bottom:374.835000px;}
.y74{bottom:395.175000px;}
.y1c{bottom:395.715000px;}
.y7d{bottom:408.855000px;}
.y4b{bottom:418.395000px;}
.y1b{bottom:431.895000px;}
.y7c{bottom:439.995000px;}
.y4a{bottom:447.015000px;}
.y73{bottom:451.875000px;}
.y1a{bottom:468.255000px;}
.y49{bottom:503.355000px;}
.y19{bottom:504.435000px;}
.y72{bottom:508.575000px;}
.y18{bottom:540.615000px;}
.y46{bottom:559.515000px;}
.y17{bottom:576.795000px;}
.y2d{bottom:612.795000px;}
.y16{bottom:613.155000px;}
.y44{bottom:615.855000px;}
.y6a{bottom:621.795000px;}
.y2c{bottom:649.005000px;}
.y15{bottom:649.365000px;}
.y3b{bottom:672.225000px;}
.y33{bottom:672.240000px;}
.y2b{bottom:685.185000px;}
.y14{bottom:685.545000px;}
.y13{bottom:721.365000px;}
.y31{bottom:721.725000px;}
.y65{bottom:726.945000px;}
.y3e{bottom:756.285000px;}
.y12{bottom:757.545000px;}
.y2a{bottom:757.905000px;}
.y37{bottom:784.740000px;}
.y11{bottom:794.265000px;}
.y10{bottom:830.445000px;}
.y5f{bottom:840.165000px;}
.yf{bottom:866.265000px;}
.y29{bottom:866.625000px;}
.ye{bottom:902.850000px;}
.yd{bottom:939.210000px;}
.y54{bottom:953.610000px;}
.yc{bottom:975.030000px;}
.y28{bottom:975.390000px;}
.y5b{bottom:1009.950000px;}
.yb{bottom:1011.210000px;}
.y27{bottom:1011.570000px;}
.ya{bottom:1047.390000px;}
.y26{bottom:1047.750000px;}
.y9{bottom:1083.750000px;}
.y25{bottom:1084.110000px;}
.y8{bottom:1119.930000px;}
.y24{bottom:1120.290000px;}
.y4{bottom:1159.740000px;}
.y3{bottom:1183.680000px;}
.y2{bottom:1206.900000px;}
.y1{bottom:1228.320000px;}
.h8{height:27.705000px;}
.ha{height:27.720000px;}
.hf{height:27.885000px;}
.h14{height:54.885000px;}
.h17{height:55.245000px;}
.he{height:55.425000px;}
.h10{height:55.461000px;}
.hd{height:55.605000px;}
.hc{height:55.650000px;}
.h12{height:58.651172px;}
.h13{height:64.411172px;}
.h5{height:72.846211px;}
.h6{height:74.244727px;}
.h2{height:82.676953px;}
.hb{height:83.340000px;}
.h3{height:84.034336px;}
.h4{height:84.898125px;}
.h16{height:103.530000px;}
.h11{height:111.765000px;}
.h9{height:111.780000px;}
.h15{height:111.802500px;}
.h7{height:140.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:29.700000px;}
.w14{width:29.736000px;}
.w1f{width:30.240000px;}
.w1c{width:30.405000px;}
.w20{width:30.780000px;}
.w13{width:31.140000px;}
.we{width:31.305000px;}
.w16{width:31.665000px;}
.w1b{width:33.285000px;}
.w23{width:35.625000px;}
.w17{width:35.661000px;}
.w15{width:35.805000px;}
.w22{width:35.856000px;}
.wf{width:37.605000px;}
.w1a{width:37.620000px;}
.w11{width:37.800000px;}
.w10{width:37.821000px;}
.w18{width:39.945000px;}
.w1e{width:41.040000px;}
.w1d{width:41.061000px;}
.w19{width:52.905000px;}
.wc{width:64.101000px;}
.w24{width:66.045000px;}
.w8{width:68.940000px;}
.wa{width:70.185000px;}
.wd{width:70.911000px;}
.w12{width:76.860000px;}
.w2{width:89.811000px;}
.w4{width:90.885000px;}
.w9{width:100.836000px;}
.wb{width:102.045000px;}
.w5{width:108.201000px;}
.w6{width:170.490000px;}
.w7{width:237.795000px;}
.w3{width:518.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x4f{left:-1.800000px;}
.x0{left:0.000000px;}
.x51{left:1.260000px;}
.x46{left:3.240000px;}
.x3f{left:5.025000px;}
.x5b{left:6.660000px;}
.x1d{left:7.731000px;}
.x4b{left:8.805000px;}
.x2c{left:9.885000px;}
.x1e{left:11.151000px;}
.x24{left:12.240000px;}
.x34{left:13.665000px;}
.x32{left:15.480000px;}
.x52{left:16.740000px;}
.x25{left:17.820000px;}
.x39{left:18.885000px;}
.x63{left:20.145000px;}
.x36{left:21.240000px;}
.x33{left:23.760000px;}
.x2f{left:26.490000px;}
.x2a{left:29.700000px;}
.x37{left:32.220000px;}
.x35{left:34.365000px;}
.x30{left:35.445000px;}
.x38{left:37.245000px;}
.x1f{left:40.305000px;}
.x31{left:43.545000px;}
.x23{left:45.360000px;}
.x27{left:62.640000px;}
.x29{left:96.105000px;}
.x3{left:127.656000px;}
.x11{left:129.636000px;}
.x14{left:137.736000px;}
.x6{left:153.390000px;}
.x1{left:157.890000px;}
.x15{left:159.690000px;}
.x5{left:168.870000px;}
.x10{left:176.250000px;}
.xf{left:180.750000px;}
.x1b{left:184.170000px;}
.x18{left:198.390000px;}
.xa{left:200.910000px;}
.x65{left:203.430000px;}
.x21{left:209.010000px;}
.x3e{left:210.645000px;}
.x20{left:218.925000px;}
.x3c{left:220.350000px;}
.x7{left:223.950000px;}
.x17{left:233.130000px;}
.x40{left:243.585000px;}
.x54{left:245.385000px;}
.x3a{left:246.990000px;}
.x12{left:261.930000px;}
.x55{left:277.245000px;}
.x41{left:282.645000px;}
.x2{left:296.355000px;}
.xc{left:303.915000px;}
.x56{left:319.755000px;}
.x42{left:321.915000px;}
.x26{left:328.035000px;}
.x1c{left:329.115000px;}
.xb{left:332.535000px;}
.x66{left:341.715000px;}
.x4{left:356.295000px;}
.x9{left:358.275000px;}
.x43{left:361.335000px;}
.x57{left:362.415000px;}
.xd{left:378.075000px;}
.x58{left:394.275000px;}
.x2b{left:397.695000px;}
.x53{left:400.575000px;}
.x3d{left:406.515000px;}
.xe{left:425.415000px;}
.x59{left:426.675000px;}
.x13{left:427.755000px;}
.x44{left:439.815000px;}
.x16{left:445.755000px;}
.x69{left:447.375000px;}
.x5a{left:459.435000px;}
.x45{left:472.575000px;}
.x8{left:478.515000px;}
.x5c{left:490.575000px;}
.x28{left:499.260000px;}
.x47{left:503.760000px;}
.x67{left:505.005000px;}
.x5d{left:527.880000px;}
.x48{left:541.020000px;}
.x5e{left:561.180000px;}
.x2d{left:570.180000px;}
.x49{left:574.320000px;}
.x5f{left:598.620000px;}
.x4a{left:611.580000px;}
.x60{left:635.880000px;}
.x4c{left:649.020000px;}
.x2e{left:672.960000px;}
.x4d{left:686.460000px;}
.x1a{left:701.970000px;}
.x61{left:710.610000px;}
.x4e{left:723.750000px;}
.x22{left:737.790000px;}
.x62{left:752.010000px;}
.x19{left:755.070000px;}
.x50{left:765.150000px;}
.x68{left:772.710000px;}
.x64{left:840.030000px;}
.x3b{left:1127.190000px;}
@media print{
.v1{vertical-align:-82.560000pt;}
.v2{vertical-align:-8.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:8.320000pt;}
.ls5e{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.944000pt;}
.ls5f{letter-spacing:-0.800000pt;}
.ls34{letter-spacing:-0.778667pt;}
.ls3b{letter-spacing:-0.592000pt;}
.ls31{letter-spacing:-0.544000pt;}
.ls42{letter-spacing:-0.380800pt;}
.ls47{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.311467pt;}
.ls12{letter-spacing:-0.303467pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.143467pt;}
.ls33{letter-spacing:-0.137600pt;}
.ls11{letter-spacing:-0.033280pt;}
.ls19{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.007680pt;}
.ls36{letter-spacing:0.019200pt;}
.ls1{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.033280pt;}
.ls21{letter-spacing:0.047360pt;}
.ls26{letter-spacing:0.073387pt;}
.ls24{letter-spacing:0.094720pt;}
.ls59{letter-spacing:0.104960pt;}
.ls28{letter-spacing:0.137600pt;}
.ls25{letter-spacing:0.138240pt;}
.ls1a{letter-spacing:0.240640pt;}
.ls4d{letter-spacing:0.259200pt;}
.ls27{letter-spacing:0.266880pt;}
.ls5a{letter-spacing:0.286080pt;}
.ls20{letter-spacing:0.295040pt;}
.lsf{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.380800pt;}
.lsc{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls5c{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:2.240000pt;}
.lsa{letter-spacing:2.400000pt;}
.ls3e{letter-spacing:2.880000pt;}
.ls30{letter-spacing:3.162667pt;}
.ls32{letter-spacing:3.221333pt;}
.ls2c{letter-spacing:3.232000pt;}
.ls3a{letter-spacing:3.296000pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls35{letter-spacing:3.536000pt;}
.ls40{letter-spacing:3.573333pt;}
.ls2e{letter-spacing:3.616000pt;}
.ls3d{letter-spacing:3.664000pt;}
.ls5d{letter-spacing:3.680000pt;}
.ls38{letter-spacing:3.744000pt;}
.ls3c{letter-spacing:3.818667pt;}
.ls2f{letter-spacing:3.872000pt;}
.ls41{letter-spacing:3.898667pt;}
.ls39{letter-spacing:4.000000pt;}
.ls16{letter-spacing:4.320000pt;}
.lse{letter-spacing:4.960000pt;}
.ls22{letter-spacing:5.920000pt;}
.ls15{letter-spacing:6.240000pt;}
.ls14{letter-spacing:6.880000pt;}
.ls51{letter-spacing:7.520000pt;}
.ls48{letter-spacing:11.360000pt;}
.ls50{letter-spacing:12.000000pt;}
.ls46{letter-spacing:13.280000pt;}
.lsb{letter-spacing:13.920000pt;}
.ls9{letter-spacing:15.200000pt;}
.ls1b{letter-spacing:15.840000pt;}
.ls1c{letter-spacing:16.480000pt;}
.ls4f{letter-spacing:17.120000pt;}
.ls17{letter-spacing:17.760000pt;}
.ls53{letter-spacing:18.400000pt;}
.ls1f{letter-spacing:19.360000pt;}
.ls2b{letter-spacing:20.960000pt;}
.ls2a{letter-spacing:21.600000pt;}
.ls56{letter-spacing:22.880000pt;}
.ls58{letter-spacing:23.040000pt;}
.ls5b{letter-spacing:23.520000pt;}
.ls10{letter-spacing:24.160000pt;}
.ls1e{letter-spacing:24.480000pt;}
.ls29{letter-spacing:26.080000pt;}
.lsd{letter-spacing:26.720000pt;}
.ls44{letter-spacing:30.560000pt;}
.ls7{letter-spacing:31.840000pt;}
.ls57{letter-spacing:33.120000pt;}
.ls49{letter-spacing:36.483840pt;}
.ls4e{letter-spacing:37.123840pt;}
.ls43{letter-spacing:40.800000pt;}
.ls45{letter-spacing:44.000000pt;}
.ls4a{letter-spacing:47.200000pt;}
.ls4b{letter-spacing:47.360000pt;}
.ls6{letter-spacing:47.840000pt;}
.ls54{letter-spacing:55.520000pt;}
.ls5{letter-spacing:700.800000pt;}
.ls0{letter-spacing:737.920000pt;}
.ws0{word-spacing:-22.897280pt;}
.wse{word-spacing:-22.592000pt;}
.wsd{word-spacing:-22.336000pt;}
.ws14{word-spacing:-22.256000pt;}
.wsb{word-spacing:-21.952000pt;}
.ws11{word-spacing:-21.941333pt;}
.wsf{word-spacing:-21.882667pt;}
.wsc{word-spacing:-20.960000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws25{word-spacing:-19.023467pt;}
.ws24{word-spacing:-18.979200pt;}
.ws8{word-spacing:-18.744960pt;}
.ws15{word-spacing:-18.739200pt;}
.ws2{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.695040pt;}
.ws7{word-spacing:-18.686720pt;}
.ws12{word-spacing:-18.582400pt;}
.ws16{word-spacing:-18.576533pt;}
.ws9{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.408533pt;}
.ws22{word-spacing:-18.400000pt;}
.ws10{word-spacing:-18.176000pt;}
.ws13{word-spacing:-17.941333pt;}
.ws23{word-spacing:-17.776000pt;}
.ws26{word-spacing:-17.760000pt;}
.ws1a{word-spacing:-17.280000pt;}
.ws21{word-spacing:-17.178667pt;}
.ws1c{word-spacing:-17.098667pt;}
.ws17{word-spacing:-17.024000pt;}
.ws1d{word-spacing:-16.944000pt;}
.ws20{word-spacing:-16.853333pt;}
.ws1f{word-spacing:-16.800000pt;}
.ws1b{word-spacing:-16.576000pt;}
.ws1e{word-spacing:-16.160000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws19{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._37{margin-left:-8.631467pt;}
._36{margin-left:-7.514453pt;}
._38{margin-left:-6.531627pt;}
._2c{margin-left:-5.512320pt;}
._24{margin-left:-4.567680pt;}
._16{margin-left:-3.265920pt;}
._12{margin-left:-2.234880pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.306880pt;}
._1{width:2.712747pt;}
._14{width:3.658880pt;}
._13{width:5.166720pt;}
._10{width:6.140160pt;}
._5{width:7.891200pt;}
._6{width:9.002880pt;}
._22{width:10.693973pt;}
._23{width:12.085120pt;}
._d{width:13.029120pt;}
._31{width:14.106240pt;}
._26{width:15.177600pt;}
._7{width:16.099200pt;}
._27{width:17.222400pt;}
._33{width:19.694293pt;}
._11{width:20.747520pt;}
._8{width:21.669120pt;}
._21{width:23.287680pt;}
._c{width:24.888960pt;}
._1c{width:26.012160pt;}
._a{width:27.031680pt;}
._b{width:28.033920pt;}
._17{width:28.949760pt;}
._3b{width:29.864107pt;}
._18{width:30.763093pt;}
._25{width:31.872853pt;}
._29{width:33.096960pt;}
._2e{width:34.894080pt;}
._2f{width:35.857493pt;}
._30{width:37.650560pt;}
._2d{width:38.606080pt;}
._1d{width:40.135680pt;}
._20{width:41.483520pt;}
._32{width:43.130880pt;}
._3c{width:44.640000pt;}
._9{width:46.454400pt;}
._e{width:47.877120pt;}
._f{width:50.869973pt;}
._19{width:52.703573pt;}
._3e{width:53.695573pt;}
._3f{width:55.235627pt;}
._2a{width:57.358080pt;}
._2b{width:58.659840pt;}
._35{width:59.558400pt;}
._34{width:60.466987pt;}
._3a{width:64.126080pt;}
._39{width:65.399040pt;}
._1e{width:66.568320pt;}
._1f{width:67.541760pt;}
._28{width:71.838720pt;}
._1a{width:72.840960pt;}
._1b{width:74.010240pt;}
._15{width:75.104640pt;}
._4{width:91.653120pt;}
._3{width:92.551680pt;}
._3d{width:1912.538880pt;}
.fs1{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:7.666667pt;}
.y3f{bottom:7.680000pt;}
.y4e{bottom:7.706667pt;}
.y48{bottom:7.840000pt;}
.y5e{bottom:9.600000pt;}
.y5a{bottom:10.880000pt;}
.y5c{bottom:11.040000pt;}
.y6e{bottom:11.066667pt;}
.y7{bottom:17.920000pt;}
.y41{bottom:24.320000pt;}
.y71{bottom:26.746667pt;}
.y43{bottom:32.320000pt;}
.y4d{bottom:32.346667pt;}
.y47{bottom:32.480000pt;}
.y45{bottom:32.506667pt;}
.y59{bottom:33.920000pt;}
.y62{bottom:34.080000pt;}
.y6d{bottom:34.106667pt;}
.y40{bottom:49.120000pt;}
.y70{bottom:49.626667pt;}
.y3d{bottom:49.760000pt;}
.y36{bottom:50.386667pt;}
.y6{bottom:52.800000pt;}
.y69{bottom:56.960000pt;}
.y64{bottom:57.000000pt;}
.y42{bottom:57.120000pt;}
.y6c{bottom:57.146667pt;}
.y3a{bottom:58.386667pt;}
.y58{bottom:59.840000pt;}
.y57{bottom:61.120000pt;}
.y67{bottom:61.280000pt;}
.y61{bottom:61.480000pt;}
.y5d{bottom:64.320000pt;}
.y6f{bottom:72.666667pt;}
.y3c{bottom:74.400000pt;}
.y35{bottom:75.026667pt;}
.y68{bottom:80.000000pt;}
.y6b{bottom:80.026667pt;}
.y63{bottom:80.040000pt;}
.y39{bottom:83.026667pt;}
.y56{bottom:84.000000pt;}
.y66{bottom:84.320000pt;}
.y60{bottom:84.360000pt;}
.y55{bottom:87.360000pt;}
.y5{bottom:94.720000pt;}
.y34{bottom:107.666667pt;}
.y23{bottom:125.952000pt;}
.y32{bottom:126.272000pt;}
.y87{bottom:136.026667pt;}
.y7b{bottom:137.146667pt;}
.y84{bottom:137.946667pt;}
.y22{bottom:158.266667pt;}
.y30{bottom:158.586667pt;}
.y53{bottom:167.546667pt;}
.y86{bottom:168.186667pt;}
.y7a{bottom:169.306667pt;}
.y83{bottom:170.106667pt;}
.y21{bottom:190.426667pt;}
.y2f{bottom:190.746667pt;}
.y85{bottom:196.026667pt;}
.y52{bottom:199.706667pt;}
.y79{bottom:201.466667pt;}
.y82{bottom:202.426667pt;}
.y20{bottom:222.586667pt;}
.y2e{bottom:222.906667pt;}
.y78{bottom:233.626667pt;}
.y81{bottom:234.586667pt;}
.y51{bottom:234.746667pt;}
.y1f{bottom:255.066667pt;}
.y77{bottom:265.786667pt;}
.y80{bottom:266.746667pt;}
.y50{bottom:269.626667pt;}
.y1e{bottom:287.386667pt;}
.y88{bottom:287.546667pt;}
.y76{bottom:298.106667pt;}
.y7f{bottom:298.906667pt;}
.y4f{bottom:304.506667pt;}
.y1d{bottom:319.546667pt;}
.y4c{bottom:321.960000pt;}
.y7e{bottom:331.266667pt;}
.y75{bottom:333.186667pt;}
.y74{bottom:351.266667pt;}
.y1c{bottom:351.746667pt;}
.y7d{bottom:363.426667pt;}
.y4b{bottom:371.906667pt;}
.y1b{bottom:383.906667pt;}
.y7c{bottom:391.106667pt;}
.y4a{bottom:397.346667pt;}
.y73{bottom:401.666667pt;}
.y1a{bottom:416.226667pt;}
.y49{bottom:447.426667pt;}
.y19{bottom:448.386667pt;}
.y72{bottom:452.066667pt;}
.y18{bottom:480.546667pt;}
.y46{bottom:497.346667pt;}
.y17{bottom:512.706667pt;}
.y2d{bottom:544.706667pt;}
.y16{bottom:545.026667pt;}
.y44{bottom:547.426667pt;}
.y6a{bottom:552.706667pt;}
.y2c{bottom:576.893333pt;}
.y15{bottom:577.213333pt;}
.y3b{bottom:597.533333pt;}
.y33{bottom:597.546667pt;}
.y2b{bottom:609.053333pt;}
.y14{bottom:609.373333pt;}
.y13{bottom:641.213333pt;}
.y31{bottom:641.533333pt;}
.y65{bottom:646.173333pt;}
.y3e{bottom:672.253333pt;}
.y12{bottom:673.373333pt;}
.y2a{bottom:673.693333pt;}
.y37{bottom:697.546667pt;}
.y11{bottom:706.013333pt;}
.y10{bottom:738.173333pt;}
.y5f{bottom:746.813333pt;}
.yf{bottom:770.013333pt;}
.y29{bottom:770.333333pt;}
.ye{bottom:802.533333pt;}
.yd{bottom:834.853333pt;}
.y54{bottom:847.653333pt;}
.yc{bottom:866.693333pt;}
.y28{bottom:867.013333pt;}
.y5b{bottom:897.733333pt;}
.yb{bottom:898.853333pt;}
.y27{bottom:899.173333pt;}
.ya{bottom:931.013333pt;}
.y26{bottom:931.333333pt;}
.y9{bottom:963.333333pt;}
.y25{bottom:963.653333pt;}
.y8{bottom:995.493333pt;}
.y24{bottom:995.813333pt;}
.y4{bottom:1030.880000pt;}
.y3{bottom:1052.160000pt;}
.y2{bottom:1072.800000pt;}
.y1{bottom:1091.840000pt;}
.h8{height:24.626667pt;}
.ha{height:24.640000pt;}
.hf{height:24.786667pt;}
.h14{height:48.786667pt;}
.h17{height:49.106667pt;}
.he{height:49.266667pt;}
.h10{height:49.298667pt;}
.hd{height:49.426667pt;}
.hc{height:49.466667pt;}
.h12{height:52.134375pt;}
.h13{height:57.254375pt;}
.h5{height:64.752187pt;}
.h6{height:65.995312pt;}
.h2{height:73.490625pt;}
.hb{height:74.080000pt;}
.h3{height:74.697187pt;}
.h4{height:75.465000pt;}
.h16{height:92.026667pt;}
.h11{height:99.346667pt;}
.h9{height:99.360000pt;}
.h15{height:99.380000pt;}
.h7{height:124.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:26.400000pt;}
.w14{width:26.432000pt;}
.w1f{width:26.880000pt;}
.w1c{width:27.026667pt;}
.w20{width:27.360000pt;}
.w13{width:27.680000pt;}
.we{width:27.826667pt;}
.w16{width:28.146667pt;}
.w1b{width:29.586667pt;}
.w23{width:31.666667pt;}
.w17{width:31.698667pt;}
.w15{width:31.826667pt;}
.w22{width:31.872000pt;}
.wf{width:33.426667pt;}
.w1a{width:33.440000pt;}
.w11{width:33.600000pt;}
.w10{width:33.618667pt;}
.w18{width:35.506667pt;}
.w1e{width:36.480000pt;}
.w1d{width:36.498667pt;}
.w19{width:47.026667pt;}
.wc{width:56.978667pt;}
.w24{width:58.706667pt;}
.w8{width:61.280000pt;}
.wa{width:62.386667pt;}
.wd{width:63.032000pt;}
.w12{width:68.320000pt;}
.w2{width:79.832000pt;}
.w4{width:80.786667pt;}
.w9{width:89.632000pt;}
.wb{width:90.706667pt;}
.w5{width:96.178667pt;}
.w6{width:151.546667pt;}
.w7{width:211.373333pt;}
.w3{width:460.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x4f{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x51{left:1.120000pt;}
.x46{left:2.880000pt;}
.x3f{left:4.466667pt;}
.x5b{left:5.920000pt;}
.x1d{left:6.872000pt;}
.x4b{left:7.826667pt;}
.x2c{left:8.786667pt;}
.x1e{left:9.912000pt;}
.x24{left:10.880000pt;}
.x34{left:12.146667pt;}
.x32{left:13.760000pt;}
.x52{left:14.880000pt;}
.x25{left:15.840000pt;}
.x39{left:16.786667pt;}
.x63{left:17.906667pt;}
.x36{left:18.880000pt;}
.x33{left:21.120000pt;}
.x2f{left:23.546667pt;}
.x2a{left:26.400000pt;}
.x37{left:28.640000pt;}
.x35{left:30.546667pt;}
.x30{left:31.506667pt;}
.x38{left:33.106667pt;}
.x1f{left:35.826667pt;}
.x31{left:38.706667pt;}
.x23{left:40.320000pt;}
.x27{left:55.680000pt;}
.x29{left:85.426667pt;}
.x3{left:113.472000pt;}
.x11{left:115.232000pt;}
.x14{left:122.432000pt;}
.x6{left:136.346667pt;}
.x1{left:140.346667pt;}
.x15{left:141.946667pt;}
.x5{left:150.106667pt;}
.x10{left:156.666667pt;}
.xf{left:160.666667pt;}
.x1b{left:163.706667pt;}
.x18{left:176.346667pt;}
.xa{left:178.586667pt;}
.x65{left:180.826667pt;}
.x21{left:185.786667pt;}
.x3e{left:187.240000pt;}
.x20{left:194.600000pt;}
.x3c{left:195.866667pt;}
.x7{left:199.066667pt;}
.x17{left:207.226667pt;}
.x40{left:216.520000pt;}
.x54{left:218.120000pt;}
.x3a{left:219.546667pt;}
.x12{left:232.826667pt;}
.x55{left:246.440000pt;}
.x41{left:251.240000pt;}
.x2{left:263.426667pt;}
.xc{left:270.146667pt;}
.x56{left:284.226667pt;}
.x42{left:286.146667pt;}
.x26{left:291.586667pt;}
.x1c{left:292.546667pt;}
.xb{left:295.586667pt;}
.x66{left:303.746667pt;}
.x4{left:316.706667pt;}
.x9{left:318.466667pt;}
.x43{left:321.186667pt;}
.x57{left:322.146667pt;}
.xd{left:336.066667pt;}
.x58{left:350.466667pt;}
.x2b{left:353.506667pt;}
.x53{left:356.066667pt;}
.x3d{left:361.346667pt;}
.xe{left:378.146667pt;}
.x59{left:379.266667pt;}
.x13{left:380.226667pt;}
.x44{left:390.946667pt;}
.x16{left:396.226667pt;}
.x69{left:397.666667pt;}
.x5a{left:408.386667pt;}
.x45{left:420.066667pt;}
.x8{left:425.346667pt;}
.x5c{left:436.066667pt;}
.x28{left:443.786667pt;}
.x47{left:447.786667pt;}
.x67{left:448.893333pt;}
.x5d{left:469.226667pt;}
.x48{left:480.906667pt;}
.x5e{left:498.826667pt;}
.x2d{left:506.826667pt;}
.x49{left:510.506667pt;}
.x5f{left:532.106667pt;}
.x4a{left:543.626667pt;}
.x60{left:565.226667pt;}
.x4c{left:576.906667pt;}
.x2e{left:598.186667pt;}
.x4d{left:610.186667pt;}
.x1a{left:623.973333pt;}
.x61{left:631.653333pt;}
.x4e{left:643.333333pt;}
.x22{left:655.813333pt;}
.x62{left:668.453333pt;}
.x19{left:671.173333pt;}
.x50{left:680.133333pt;}
.x68{left:686.853333pt;}
.x64{left:746.693333pt;}
.x3b{left:1001.946667pt;}
}




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