
    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_5f3af36aae1947262a9e5dfd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20ea19e03f60cd084acf7bb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_110eb4ad703a2346d793257a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c520f6b2695f6dc0d63f851.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.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_58d8e27d634cfe6ee0afaaec.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v6{vertical-align:-76.308480px;}
.v3{vertical-align:-74.188800px;}
.v4{vertical-align:-27.360000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.208320px;}
.v2{vertical-align:75.579840px;}
.ls4b{letter-spacing:-1.192320px;}
.ls1a{letter-spacing:-1.126080px;}
.ls43{letter-spacing:-0.861120px;}
.ls1c{letter-spacing:-0.728640px;}
.ls18{letter-spacing:-0.596160px;}
.ls1b{letter-spacing:-0.463680px;}
.ls19{letter-spacing:-0.397440px;}
.ls15{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.264960px;}
.ls17{letter-spacing:-0.132480px;}
.ls2a{letter-spacing:-0.059760px;}
.ls14{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.132480px;}
.ls12{letter-spacing:0.162000px;}
.ls24{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.198720px;}
.ls2b{letter-spacing:0.239040px;}
.ls1d{letter-spacing:0.264960px;}
.lsf{letter-spacing:0.331200px;}
.ls13{letter-spacing:0.358560px;}
.ls1e{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.418320px;}
.ls1{letter-spacing:0.662400px;}
.ls8{letter-spacing:0.728640px;}
.ls42{letter-spacing:0.861120px;}
.ls35{letter-spacing:1.059840px;}
.ls2c{letter-spacing:1.457280px;}
.ls47{letter-spacing:1.722240px;}
.ls34{letter-spacing:2.053440px;}
.ls3{letter-spacing:2.185920px;}
.ls4{letter-spacing:2.782080px;}
.ls5{letter-spacing:2.848320px;}
.ls30{letter-spacing:2.980800px;}
.ls11{letter-spacing:3.576960px;}
.ls49{letter-spacing:3.974400px;}
.lsc{letter-spacing:4.305600px;}
.ls3c{letter-spacing:4.835520px;}
.ls7{letter-spacing:5.034240px;}
.ls38{letter-spacing:5.100480px;}
.ls25{letter-spacing:5.564160px;}
.ls2f{letter-spacing:5.630400px;}
.ls20{letter-spacing:5.762880px;}
.ls33{letter-spacing:5.829120px;}
.ls39{letter-spacing:6.160320px;}
.ls46{letter-spacing:6.425280px;}
.lsa{letter-spacing:6.491520px;}
.ls32{letter-spacing:7.220160px;}
.ls41{letter-spacing:7.816320px;}
.ls10{letter-spacing:7.948800px;}
.ls3b{letter-spacing:8.611200px;}
.ls40{letter-spacing:8.677440px;}
.ls23{letter-spacing:9.339840px;}
.ls48{letter-spacing:9.406080px;}
.ls36{letter-spacing:9.936000px;}
.ls28{letter-spacing:10.598400px;}
.ls27{letter-spacing:10.797120px;}
.ls45{letter-spacing:11.393280px;}
.ls26{letter-spacing:11.525760px;}
.ls3e{letter-spacing:13.579200px;}
.ls2d{letter-spacing:13.711680px;}
.ls4a{letter-spacing:14.374080px;}
.ls22{letter-spacing:14.970240px;}
.ls21{letter-spacing:15.102720px;}
.ls9{letter-spacing:16.560000px;}
.ls6{letter-spacing:17.288640px;}
.ls31{letter-spacing:18.017280px;}
.ls3f{letter-spacing:18.348480px;}
.ls3a{letter-spacing:18.745920px;}
.lse{letter-spacing:24.906240px;}
.ls37{letter-spacing:25.899840px;}
.ls3d{letter-spacing:33.120000px;}
.ls2e{letter-spacing:195.871680px;}
.ls44{letter-spacing:196.784640px;}
.lsb{letter-spacing:199.448640px;}
.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;}
}
.ws69{word-spacing:-17.421120px;}
.wsa{word-spacing:-16.891200px;}
.wsb{word-spacing:-16.824960px;}
.ws4{word-spacing:-16.692480px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.427520px;}
.ws1{word-spacing:-16.295040px;}
.ws7{word-spacing:-16.228800px;}
.ws5{word-spacing:-16.162560px;}
.ws6{word-spacing:-15.963840px;}
.ws9{word-spacing:-15.831360px;}
.ws8{word-spacing:-15.433920px;}
.ws0{word-spacing:-15.298560px;}
.ws3c{word-spacing:-15.179040px;}
.ws3b{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.878000px;}
.wsf{word-spacing:-13.608000px;}
.wse{word-spacing:-9.000000px;}
.wsc{word-spacing:-8.136000px;}
.ws63{word-spacing:-0.861120px;}
.ws1a{word-spacing:-0.728640px;}
.ws4c{word-spacing:-0.596160px;}
.ws39{word-spacing:-0.331200px;}
.ws6a{word-spacing:-0.264960px;}
.ws10{word-spacing:-0.179280px;}
.ws13{word-spacing:-0.132480px;}
.ws11{word-spacing:0.000000px;}
.ws46{word-spacing:0.059760px;}
.ws3a{word-spacing:0.132480px;}
.ws5e{word-spacing:0.264960px;}
.ws12{word-spacing:0.331200px;}
.ws4f{word-spacing:0.397440px;}
.ws1f{word-spacing:0.463680px;}
.ws16{word-spacing:0.596160px;}
.ws23{word-spacing:0.728640px;}
.ws75{word-spacing:0.861120px;}
.ws17{word-spacing:1.126080px;}
.ws81{word-spacing:1.192320px;}
.ws56{word-spacing:1.324800px;}
.ws57{word-spacing:1.457280px;}
.ws85{word-spacing:1.788480px;}
.ws7c{word-spacing:1.854720px;}
.ws44{word-spacing:1.972080px;}
.ws15{word-spacing:2.053440px;}
.ws24{word-spacing:2.185920px;}
.ws45{word-spacing:2.390400px;}
.ws14{word-spacing:2.782080px;}
.ws25{word-spacing:2.914560px;}
.ws7f{word-spacing:3.245760px;}
.ws1b{word-spacing:3.444480px;}
.ws1c{word-spacing:3.576960px;}
.ws7d{word-spacing:3.908160px;}
.ws7e{word-spacing:3.974400px;}
.ws2d{word-spacing:4.040640px;}
.ws34{word-spacing:4.173120px;}
.ws33{word-spacing:4.305600px;}
.ws5b{word-spacing:4.438080px;}
.ws1d{word-spacing:4.901760px;}
.ws1e{word-spacing:5.034240px;}
.ws22{word-spacing:5.431680px;}
.ws38{word-spacing:5.630400px;}
.ws3d{word-spacing:5.762880px;}
.ws40{word-spacing:6.160320px;}
.ws27{word-spacing:6.359040px;}
.ws28{word-spacing:6.491520px;}
.ws65{word-spacing:6.822720px;}
.ws60{word-spacing:6.888960px;}
.ws30{word-spacing:7.087680px;}
.ws53{word-spacing:7.220160px;}
.ws48{word-spacing:7.290720px;}
.ws6c{word-spacing:7.617600px;}
.ws35{word-spacing:7.816320px;}
.ws36{word-spacing:7.948800px;}
.ws2f{word-spacing:8.478720px;}
.ws2e{word-spacing:8.611200px;}
.ws72{word-spacing:8.677440px;}
.ws2a{word-spacing:9.207360px;}
.ws29{word-spacing:9.339840px;}
.ws71{word-spacing:9.737280px;}
.ws5c{word-spacing:9.936000px;}
.ws6b{word-spacing:10.068480px;}
.ws49{word-spacing:10.159200px;}
.ws4e{word-spacing:10.664640px;}
.ws5d{word-spacing:10.797120px;}
.ws31{word-spacing:11.393280px;}
.ws4a{word-spacing:11.525760px;}
.ws43{word-spacing:11.593440px;}
.ws80{word-spacing:11.856960px;}
.ws2b{word-spacing:12.121920px;}
.ws4b{word-spacing:12.254400px;}
.ws2c{word-spacing:12.850560px;}
.ws52{word-spacing:12.983040px;}
.ws5a{word-spacing:13.579200px;}
.ws62{word-spacing:13.711680px;}
.ws32{word-spacing:14.241600px;}
.ws83{word-spacing:14.506560px;}
.ws5f{word-spacing:14.771520px;}
.ws3f{word-spacing:14.970240px;}
.ws3e{word-spacing:15.102720px;}
.ws51{word-spacing:15.698880px;}
.ws47{word-spacing:15.896160px;}
.ws82{word-spacing:16.295040px;}
.ws26{word-spacing:16.427520px;}
.ws50{word-spacing:16.560000px;}
.ws41{word-spacing:16.613280px;}
.ws19{word-spacing:17.156160px;}
.ws18{word-spacing:17.288640px;}
.ws42{word-spacing:17.330400px;}
.ws84{word-spacing:17.884800px;}
.ws68{word-spacing:18.017280px;}
.ws70{word-spacing:18.613440px;}
.ws6f{word-spacing:18.745920px;}
.ws61{word-spacing:19.342080px;}
.ws64{word-spacing:19.474560px;}
.ws20{word-spacing:20.004480px;}
.ws21{word-spacing:20.136960px;}
.ws54{word-spacing:20.733120px;}
.ws55{word-spacing:20.865600px;}
.ws4d{word-spacing:21.461760px;}
.ws79{word-spacing:21.594240px;}
.ws58{word-spacing:22.190400px;}
.ws59{word-spacing:22.919040px;}
.ws37{word-spacing:25.038720px;}
.ws6d{word-spacing:25.767360px;}
.ws6e{word-spacing:25.899840px;}
.ws78{word-spacing:27.025920px;}
.ws7b{word-spacing:27.953280px;}
.ws76{word-spacing:28.085760px;}
.ws7a{word-spacing:28.218240px;}
.ws77{word-spacing:29.211840px;}
.ws74{word-spacing:32.391360px;}
.ws73{word-spacing:32.987520px;}
.ws66{word-spacing:39.479040px;}
.ws67{word-spacing:39.942720px;}
._d{margin-left:-11.957760px;}
._7{margin-left:-2.224800px;}
._0{margin-left:-1.135440px;}
._1{width:1.391040px;}
._3{width:2.517120px;}
._5{width:4.512960px;}
._6{width:5.601600px;}
._9{width:6.699600px;}
._a{width:8.478720px;}
._b{width:10.866240px;}
._11{width:11.946240px;}
._c{width:13.415760px;}
._f{width:14.922720px;}
._4{width:18.110880px;}
._8{width:19.408320px;}
._10{width:20.651040px;}
._13{width:33.405840px;}
._12{width:39.471120px;}
._2{width:165.694320px;}
._14{width:182.888640px;}
._e{width:965.975040px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.y0{bottom:0.000000px;}
.y5{bottom:58.688640px;}
.y4{bottom:78.130080px;}
.y3c{bottom:102.420000px;}
.y6d{bottom:111.188160px;}
.yd2{bottom:112.707360px;}
.ya0{bottom:112.930560px;}
.yc8{bottom:113.071680px;}
.y100{bottom:113.950800px;}
.y3b{bottom:117.900000px;}
.y6c{bottom:129.900960px;}
.yd1{bottom:131.602320px;}
.y9f{bottom:131.825520px;}
.yc7{bottom:131.966640px;}
.y3a{bottom:134.640000px;}
.yff{bottom:135.727200px;}
.y39{bottom:145.260000px;}
.y9e{bottom:150.902640px;}
.yc6{bottom:151.043760px;}
.yfe{bottom:157.503600px;}
.y6b{bottom:168.237360px;}
.ye{bottom:169.742880px;}
.y9d{bottom:169.797600px;}
.yc5{bottom:169.938720px;}
.yfd{bottom:179.337600px;}
.y6a{bottom:187.132320px;}
.yd{bottom:188.820000px;}
.y9c{bottom:188.874720px;}
.yc4{bottom:189.015840px;}
.yfc{bottom:201.296160px;}
.y69{bottom:206.027280px;}
.y9b{bottom:207.769680px;}
.y38{bottom:207.864000px;}
.yc3{bottom:207.910800px;}
.yfb{bottom:223.072560px;}
.y68{bottom:225.104400px;}
.y9a{bottom:226.664640px;}
.y37{bottom:226.758960px;}
.yc2{bottom:226.805760px;}
.y67{bottom:243.999360px;}
.yfa{bottom:244.848960px;}
.y99{bottom:245.741760px;}
.y36{bottom:245.836080px;}
.yc1{bottom:245.882880px;}
.y66{bottom:263.076480px;}
.y98{bottom:264.636720px;}
.y35{bottom:264.731040px;}
.yc0{bottom:264.777840px;}
.yf9{bottom:266.625360px;}
.y65{bottom:281.971440px;}
.y97{bottom:283.713840px;}
.y34{bottom:283.808160px;}
.ybf{bottom:283.854960px;}
.yf8{bottom:288.401760px;}
.y64{bottom:300.866400px;}
.y96{bottom:302.608800px;}
.y33{bottom:302.703120px;}
.ybe{bottom:302.749920px;}
.yf7{bottom:310.360320px;}
.y63{bottom:319.943520px;}
.y95{bottom:321.503760px;}
.y32{bottom:321.598080px;}
.ybd{bottom:321.644880px;}
.yf6{bottom:332.136720px;}
.y62{bottom:338.838480px;}
.y94{bottom:340.580880px;}
.y31{bottom:340.675200px;}
.ybc{bottom:340.722000px;}
.yf5{bottom:353.913120px;}
.y61{bottom:357.915600px;}
.y93{bottom:359.475840px;}
.y30{bottom:359.570160px;}
.ybb{bottom:359.616960px;}
.yf4{bottom:375.689520px;}
.y60{bottom:376.810560px;}
.y92{bottom:378.552960px;}
.y2f{bottom:378.647280px;}
.yba{bottom:378.694080px;}
.y5f{bottom:395.887680px;}
.y91{bottom:397.447920px;}
.y2e{bottom:397.542240px;}
.yb9{bottom:397.589040px;}
.yf3{bottom:397.648080px;}
.y5e{bottom:414.782640px;}
.yd0{bottom:416.301840px;}
.y90{bottom:416.525040px;}
.y2d{bottom:416.619360px;}
.yb8{bottom:416.666160px;}
.yf2{bottom:419.424480px;}
.y5d{bottom:433.677600px;}
.ycf{bottom:435.196800px;}
.y8f{bottom:435.420000px;}
.y2c{bottom:435.514320px;}
.yb7{bottom:435.561120px;}
.yf1{bottom:441.200880px;}
.y5c{bottom:452.754720px;}
.yce{bottom:454.091760px;}
.y8e{bottom:454.320000px;}
.y2b{bottom:454.409280px;}
.yb6{bottom:454.456080px;}
.yf0{bottom:462.977280px;}
.y5b{bottom:471.649680px;}
.ycd{bottom:473.168880px;}
.y8d{bottom:473.400000px;}
.y2a{bottom:473.486400px;}
.yb5{bottom:473.533200px;}
.yef{bottom:484.753680px;}
.y5a{bottom:490.726800px;}
.y8c{bottom:492.300000px;}
.y29{bottom:492.381360px;}
.yb4{bottom:492.428160px;}
.yee{bottom:506.712240px;}
.y59{bottom:509.621760px;}
.y8b{bottom:511.380000px;}
.yb3{bottom:511.505280px;}
.yed{bottom:528.488640px;}
.y28{bottom:530.005680px;}
.y8a{bottom:530.397360px;}
.yb2{bottom:530.400240px;}
.y58{bottom:547.229520px;}
.y27{bottom:548.900640px;}
.y89{bottom:549.292320px;}
.yb1{bottom:549.295200px;}
.yec{bottom:550.265040px;}
.y57{bottom:566.124480px;}
.y26{bottom:567.977760px;}
.y88{bottom:568.369440px;}
.yb0{bottom:568.372320px;}
.yeb{bottom:572.041440px;}
.y56{bottom:585.565920px;}
.y25{bottom:586.872720px;}
.y87{bottom:587.264400px;}
.yaf{bottom:587.267280px;}
.yea{bottom:594.000000px;}
.y55{bottom:604.460880px;}
.y24{bottom:606.314160px;}
.y86{bottom:606.341520px;}
.yae{bottom:606.344400px;}
.ye9{bottom:615.783600px;}
.y54{bottom:623.355840px;}
.y23{bottom:625.209120px;}
.y85{bottom:625.236480px;}
.yad{bottom:625.239360px;}
.ye8{bottom:637.560000px;}
.y53{bottom:642.432960px;}
.y22{bottom:644.104080px;}
.y84{bottom:644.131440px;}
.yac{bottom:644.134320px;}
.ye7{bottom:659.354400px;}
.y52{bottom:661.327920px;}
.y21{bottom:663.181200px;}
.y83{bottom:663.208560px;}
.yab{bottom:663.211440px;}
.y51{bottom:680.405040px;}
.ye6{bottom:680.766480px;}
.y20{bottom:682.076160px;}
.y82{bottom:682.103520px;}
.yaa{bottom:682.106400px;}
.y50{bottom:699.300000px;}
.ye5{bottom:700.207920px;}
.y1f{bottom:701.153280px;}
.y81{bottom:701.180640px;}
.ya9{bottom:701.183520px;}
.y4f{bottom:717.968340px;}
.ye4{bottom:719.102880px;}
.y1e{bottom:720.048240px;}
.y80{bottom:720.075600px;}
.ycc{bottom:720.078480px;}
.y4e{bottom:735.253920px;}
.ye3{bottom:738.180000px;}
.y1d{bottom:738.943200px;}
.y7f{bottom:738.970560px;}
.ya8{bottom:738.973440px;}
.y4d{bottom:752.539500px;}
.ye2{bottom:757.080000px;}
.y1c{bottom:757.656000px;}
.ya7{bottom:757.686240px;}
.y7e{bottom:758.047680px;}
.ycb{bottom:758.050560px;}
.y4c{bottom:769.645800px;}
.ye1{bottom:775.980000px;}
.y1b{bottom:776.550960px;}
.ya6{bottom:776.581200px;}
.y7d{bottom:776.942640px;}
.yca{bottom:776.945520px;}
.y4b{bottom:786.931380px;}
.ye0{bottom:795.060000px;}
.y1a{bottom:795.628080px;}
.ya5{bottom:795.658320px;}
.y7c{bottom:796.019760px;}
.yc9{bottom:796.022640px;}
.y4a{bottom:804.216960px;}
.ydf{bottom:813.960000px;}
.y19{bottom:814.887360px;}
.y7b{bottom:814.914720px;}
.ya4{bottom:814.917600px;}
.y49{bottom:821.502540px;}
.yde{bottom:833.040000px;}
.y18{bottom:833.782320px;}
.y7a{bottom:833.809680px;}
.ya3{bottom:833.812560px;}
.y48{bottom:838.788120px;}
.ydd{bottom:851.976720px;}
.y17{bottom:852.859440px;}
.y79{bottom:852.886800px;}
.ya2{bottom:852.889680px;}
.y47{bottom:855.894420px;}
.ydc{bottom:871.053840px;}
.y16{bottom:871.754400px;}
.y78{bottom:871.781760px;}
.ya1{bottom:871.784640px;}
.y46{bottom:873.180000px;}
.ydb{bottom:889.948800px;}
.y15{bottom:890.831520px;}
.y77{bottom:890.858880px;}
.y45{bottom:890.861760px;}
.yda{bottom:908.843760px;}
.y14{bottom:909.726480px;}
.y76{bottom:909.753840px;}
.y44{bottom:909.756720px;}
.yd9{bottom:927.920880px;}
.y13{bottom:928.803600px;}
.y75{bottom:928.830960px;}
.y43{bottom:928.833840px;}
.yd8{bottom:946.815840px;}
.y12{bottom:947.698560px;}
.y74{bottom:947.725920px;}
.y42{bottom:947.728800px;}
.yd7{bottom:965.892960px;}
.y11{bottom:966.245760px;}
.y73{bottom:966.620880px;}
.y41{bottom:966.623760px;}
.yd6{bottom:984.787920px;}
.y10{bottom:985.687200px;}
.y72{bottom:985.698000px;}
.y40{bottom:985.700880px;}
.y103{bottom:995.769360px;}
.yd5{bottom:1003.682880px;}
.ya{bottom:1004.580000px;}
.yf{bottom:1004.582160px;}
.y71{bottom:1004.592960px;}
.y3f{bottom:1004.595840px;}
.yc{bottom:1012.140000px;}
.y102{bottom:1017.910080px;}
.yb{bottom:1023.657120px;}
.y8{bottom:1023.660000px;}
.y70{bottom:1023.670080px;}
.y3e{bottom:1023.672960px;}
.y9{bottom:1031.220000px;}
.y101{bottom:1039.686480px;}
.yd4{bottom:1041.480000px;}
.y6f{bottom:1042.565040px;}
.y7{bottom:1042.567920px;}
.yd3{bottom:1061.100000px;}
.y6{bottom:1061.115120px;}
.y6e{bottom:1061.460000px;}
.y3d{bottom:1061.462880px;}
.y3{bottom:1081.086480px;}
.y2{bottom:1101.240000px;}
.y1{bottom:1120.500000px;}
.h8{height:25.638047px;}
.h9{height:35.332031px;}
.h7{height:40.985156px;}
.h2{height:44.149219px;}
.h1{height:58.621992px;}
.ha{height:58.651172px;}
.hb{height:64.978594px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.h5{height:71.193476px;}
.hc{height:72.090000px;}
.h6{height:140.590778px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x4{left:95.227200px;}
.xb{left:138.960000px;}
.xd{left:246.960000px;}
.x1{left:325.440000px;}
.x5{left:568.280160px;}
.x6{left:579.420000px;}
.x8{left:639.360000px;}
.x7{left:721.800000px;}
.x9{left:727.028640px;}
.xa{left:756.540000px;}
.xc{left:761.715360px;}
.x3{left:808.019280px;}
@media print{
.v6{vertical-align:-67.829760pt;}
.v3{vertical-align:-65.945600pt;}
.v4{vertical-align:-24.320000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.851840pt;}
.v2{vertical-align:67.182080pt;}
.ls4b{letter-spacing:-1.059840pt;}
.ls1a{letter-spacing:-1.000960pt;}
.ls43{letter-spacing:-0.765440pt;}
.ls1c{letter-spacing:-0.647680pt;}
.ls18{letter-spacing:-0.529920pt;}
.ls1b{letter-spacing:-0.412160pt;}
.ls19{letter-spacing:-0.353280pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls2a{letter-spacing:-0.053120pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.117760pt;}
.ls12{letter-spacing:0.144000pt;}
.ls24{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.176640pt;}
.ls2b{letter-spacing:0.212480pt;}
.ls1d{letter-spacing:0.235520pt;}
.lsf{letter-spacing:0.294400pt;}
.ls13{letter-spacing:0.318720pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.371840pt;}
.ls1{letter-spacing:0.588800pt;}
.ls8{letter-spacing:0.647680pt;}
.ls42{letter-spacing:0.765440pt;}
.ls35{letter-spacing:0.942080pt;}
.ls2c{letter-spacing:1.295360pt;}
.ls47{letter-spacing:1.530880pt;}
.ls34{letter-spacing:1.825280pt;}
.ls3{letter-spacing:1.943040pt;}
.ls4{letter-spacing:2.472960pt;}
.ls5{letter-spacing:2.531840pt;}
.ls30{letter-spacing:2.649600pt;}
.ls11{letter-spacing:3.179520pt;}
.ls49{letter-spacing:3.532800pt;}
.lsc{letter-spacing:3.827200pt;}
.ls3c{letter-spacing:4.298240pt;}
.ls7{letter-spacing:4.474880pt;}
.ls38{letter-spacing:4.533760pt;}
.ls25{letter-spacing:4.945920pt;}
.ls2f{letter-spacing:5.004800pt;}
.ls20{letter-spacing:5.122560pt;}
.ls33{letter-spacing:5.181440pt;}
.ls39{letter-spacing:5.475840pt;}
.ls46{letter-spacing:5.711360pt;}
.lsa{letter-spacing:5.770240pt;}
.ls32{letter-spacing:6.417920pt;}
.ls41{letter-spacing:6.947840pt;}
.ls10{letter-spacing:7.065600pt;}
.ls3b{letter-spacing:7.654400pt;}
.ls40{letter-spacing:7.713280pt;}
.ls23{letter-spacing:8.302080pt;}
.ls48{letter-spacing:8.360960pt;}
.ls36{letter-spacing:8.832000pt;}
.ls28{letter-spacing:9.420800pt;}
.ls27{letter-spacing:9.597440pt;}
.ls45{letter-spacing:10.127360pt;}
.ls26{letter-spacing:10.245120pt;}
.ls3e{letter-spacing:12.070400pt;}
.ls2d{letter-spacing:12.188160pt;}
.ls4a{letter-spacing:12.776960pt;}
.ls22{letter-spacing:13.306880pt;}
.ls21{letter-spacing:13.424640pt;}
.ls9{letter-spacing:14.720000pt;}
.ls6{letter-spacing:15.367680pt;}
.ls31{letter-spacing:16.015360pt;}
.ls3f{letter-spacing:16.309760pt;}
.ls3a{letter-spacing:16.663040pt;}
.lse{letter-spacing:22.138880pt;}
.ls37{letter-spacing:23.022080pt;}
.ls3d{letter-spacing:29.440000pt;}
.ls2e{letter-spacing:174.108160pt;}
.ls44{letter-spacing:174.919680pt;}
.lsb{letter-spacing:177.287680pt;}
.ws69{word-spacing:-15.485440pt;}
.wsa{word-spacing:-15.014400pt;}
.wsb{word-spacing:-14.955520pt;}
.ws4{word-spacing:-14.837760pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.602240pt;}
.ws1{word-spacing:-14.484480pt;}
.ws7{word-spacing:-14.425600pt;}
.ws5{word-spacing:-14.366720pt;}
.ws6{word-spacing:-14.190080pt;}
.ws9{word-spacing:-14.072320pt;}
.ws8{word-spacing:-13.719040pt;}
.ws0{word-spacing:-13.598720pt;}
.ws3c{word-spacing:-13.492480pt;}
.ws3b{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.336000pt;}
.wsf{word-spacing:-12.096000pt;}
.wse{word-spacing:-8.000000pt;}
.wsc{word-spacing:-7.232000pt;}
.ws63{word-spacing:-0.765440pt;}
.ws1a{word-spacing:-0.647680pt;}
.ws4c{word-spacing:-0.529920pt;}
.ws39{word-spacing:-0.294400pt;}
.ws6a{word-spacing:-0.235520pt;}
.ws10{word-spacing:-0.159360pt;}
.ws13{word-spacing:-0.117760pt;}
.ws11{word-spacing:0.000000pt;}
.ws46{word-spacing:0.053120pt;}
.ws3a{word-spacing:0.117760pt;}
.ws5e{word-spacing:0.235520pt;}
.ws12{word-spacing:0.294400pt;}
.ws4f{word-spacing:0.353280pt;}
.ws1f{word-spacing:0.412160pt;}
.ws16{word-spacing:0.529920pt;}
.ws23{word-spacing:0.647680pt;}
.ws75{word-spacing:0.765440pt;}
.ws17{word-spacing:1.000960pt;}
.ws81{word-spacing:1.059840pt;}
.ws56{word-spacing:1.177600pt;}
.ws57{word-spacing:1.295360pt;}
.ws85{word-spacing:1.589760pt;}
.ws7c{word-spacing:1.648640pt;}
.ws44{word-spacing:1.752960pt;}
.ws15{word-spacing:1.825280pt;}
.ws24{word-spacing:1.943040pt;}
.ws45{word-spacing:2.124800pt;}
.ws14{word-spacing:2.472960pt;}
.ws25{word-spacing:2.590720pt;}
.ws7f{word-spacing:2.885120pt;}
.ws1b{word-spacing:3.061760pt;}
.ws1c{word-spacing:3.179520pt;}
.ws7d{word-spacing:3.473920pt;}
.ws7e{word-spacing:3.532800pt;}
.ws2d{word-spacing:3.591680pt;}
.ws34{word-spacing:3.709440pt;}
.ws33{word-spacing:3.827200pt;}
.ws5b{word-spacing:3.944960pt;}
.ws1d{word-spacing:4.357120pt;}
.ws1e{word-spacing:4.474880pt;}
.ws22{word-spacing:4.828160pt;}
.ws38{word-spacing:5.004800pt;}
.ws3d{word-spacing:5.122560pt;}
.ws40{word-spacing:5.475840pt;}
.ws27{word-spacing:5.652480pt;}
.ws28{word-spacing:5.770240pt;}
.ws65{word-spacing:6.064640pt;}
.ws60{word-spacing:6.123520pt;}
.ws30{word-spacing:6.300160pt;}
.ws53{word-spacing:6.417920pt;}
.ws48{word-spacing:6.480640pt;}
.ws6c{word-spacing:6.771200pt;}
.ws35{word-spacing:6.947840pt;}
.ws36{word-spacing:7.065600pt;}
.ws2f{word-spacing:7.536640pt;}
.ws2e{word-spacing:7.654400pt;}
.ws72{word-spacing:7.713280pt;}
.ws2a{word-spacing:8.184320pt;}
.ws29{word-spacing:8.302080pt;}
.ws71{word-spacing:8.655360pt;}
.ws5c{word-spacing:8.832000pt;}
.ws6b{word-spacing:8.949760pt;}
.ws49{word-spacing:9.030400pt;}
.ws4e{word-spacing:9.479680pt;}
.ws5d{word-spacing:9.597440pt;}
.ws31{word-spacing:10.127360pt;}
.ws4a{word-spacing:10.245120pt;}
.ws43{word-spacing:10.305280pt;}
.ws80{word-spacing:10.539520pt;}
.ws2b{word-spacing:10.775040pt;}
.ws4b{word-spacing:10.892800pt;}
.ws2c{word-spacing:11.422720pt;}
.ws52{word-spacing:11.540480pt;}
.ws5a{word-spacing:12.070400pt;}
.ws62{word-spacing:12.188160pt;}
.ws32{word-spacing:12.659200pt;}
.ws83{word-spacing:12.894720pt;}
.ws5f{word-spacing:13.130240pt;}
.ws3f{word-spacing:13.306880pt;}
.ws3e{word-spacing:13.424640pt;}
.ws51{word-spacing:13.954560pt;}
.ws47{word-spacing:14.129920pt;}
.ws82{word-spacing:14.484480pt;}
.ws26{word-spacing:14.602240pt;}
.ws50{word-spacing:14.720000pt;}
.ws41{word-spacing:14.767360pt;}
.ws19{word-spacing:15.249920pt;}
.ws18{word-spacing:15.367680pt;}
.ws42{word-spacing:15.404800pt;}
.ws84{word-spacing:15.897600pt;}
.ws68{word-spacing:16.015360pt;}
.ws70{word-spacing:16.545280pt;}
.ws6f{word-spacing:16.663040pt;}
.ws61{word-spacing:17.192960pt;}
.ws64{word-spacing:17.310720pt;}
.ws20{word-spacing:17.781760pt;}
.ws21{word-spacing:17.899520pt;}
.ws54{word-spacing:18.429440pt;}
.ws55{word-spacing:18.547200pt;}
.ws4d{word-spacing:19.077120pt;}
.ws79{word-spacing:19.194880pt;}
.ws58{word-spacing:19.724800pt;}
.ws59{word-spacing:20.372480pt;}
.ws37{word-spacing:22.256640pt;}
.ws6d{word-spacing:22.904320pt;}
.ws6e{word-spacing:23.022080pt;}
.ws78{word-spacing:24.023040pt;}
.ws7b{word-spacing:24.847360pt;}
.ws76{word-spacing:24.965120pt;}
.ws7a{word-spacing:25.082880pt;}
.ws77{word-spacing:25.966080pt;}
.ws74{word-spacing:28.792320pt;}
.ws73{word-spacing:29.322240pt;}
.ws66{word-spacing:35.092480pt;}
.ws67{word-spacing:35.504640pt;}
._d{margin-left:-10.629120pt;}
._7{margin-left:-1.977600pt;}
._0{margin-left:-1.009280pt;}
._1{width:1.236480pt;}
._3{width:2.237440pt;}
._5{width:4.011520pt;}
._6{width:4.979200pt;}
._9{width:5.955200pt;}
._a{width:7.536640pt;}
._b{width:9.658880pt;}
._11{width:10.618880pt;}
._c{width:11.925120pt;}
._f{width:13.264640pt;}
._4{width:16.098560pt;}
._8{width:17.251840pt;}
._10{width:18.356480pt;}
._13{width:29.694080pt;}
._12{width:35.085440pt;}
._2{width:147.283840pt;}
._14{width:162.567680pt;}
._e{width:858.644480pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:52.167680pt;}
.y4{bottom:69.448960pt;}
.y3c{bottom:91.040000pt;}
.y6d{bottom:98.833920pt;}
.yd2{bottom:100.184320pt;}
.ya0{bottom:100.382720pt;}
.yc8{bottom:100.508160pt;}
.y100{bottom:101.289600pt;}
.y3b{bottom:104.800000pt;}
.y6c{bottom:115.467520pt;}
.yd1{bottom:116.979840pt;}
.y9f{bottom:117.178240pt;}
.yc7{bottom:117.303680pt;}
.y3a{bottom:119.680000pt;}
.yff{bottom:120.646400pt;}
.y39{bottom:129.120000pt;}
.y9e{bottom:134.135680pt;}
.yc6{bottom:134.261120pt;}
.yfe{bottom:140.003200pt;}
.y6b{bottom:149.544320pt;}
.ye{bottom:150.882560pt;}
.y9d{bottom:150.931200pt;}
.yc5{bottom:151.056640pt;}
.yfd{bottom:159.411200pt;}
.y6a{bottom:166.339840pt;}
.yd{bottom:167.840000pt;}
.y9c{bottom:167.888640pt;}
.yc4{bottom:168.014080pt;}
.yfc{bottom:178.929920pt;}
.y69{bottom:183.135360pt;}
.y9b{bottom:184.684160pt;}
.y38{bottom:184.768000pt;}
.yc3{bottom:184.809600pt;}
.yfb{bottom:198.286720pt;}
.y68{bottom:200.092800pt;}
.y9a{bottom:201.479680pt;}
.y37{bottom:201.563520pt;}
.yc2{bottom:201.605120pt;}
.y67{bottom:216.888320pt;}
.yfa{bottom:217.643520pt;}
.y99{bottom:218.437120pt;}
.y36{bottom:218.520960pt;}
.yc1{bottom:218.562560pt;}
.y66{bottom:233.845760pt;}
.y98{bottom:235.232640pt;}
.y35{bottom:235.316480pt;}
.yc0{bottom:235.358080pt;}
.yf9{bottom:237.000320pt;}
.y65{bottom:250.641280pt;}
.y97{bottom:252.190080pt;}
.y34{bottom:252.273920pt;}
.ybf{bottom:252.315520pt;}
.yf8{bottom:256.357120pt;}
.y64{bottom:267.436800pt;}
.y96{bottom:268.985600pt;}
.y33{bottom:269.069440pt;}
.ybe{bottom:269.111040pt;}
.yf7{bottom:275.875840pt;}
.y63{bottom:284.394240pt;}
.y95{bottom:285.781120pt;}
.y32{bottom:285.864960pt;}
.ybd{bottom:285.906560pt;}
.yf6{bottom:295.232640pt;}
.y62{bottom:301.189760pt;}
.y94{bottom:302.738560pt;}
.y31{bottom:302.822400pt;}
.ybc{bottom:302.864000pt;}
.yf5{bottom:314.589440pt;}
.y61{bottom:318.147200pt;}
.y93{bottom:319.534080pt;}
.y30{bottom:319.617920pt;}
.ybb{bottom:319.659520pt;}
.yf4{bottom:333.946240pt;}
.y60{bottom:334.942720pt;}
.y92{bottom:336.491520pt;}
.y2f{bottom:336.575360pt;}
.yba{bottom:336.616960pt;}
.y5f{bottom:351.900160pt;}
.y91{bottom:353.287040pt;}
.y2e{bottom:353.370880pt;}
.yb9{bottom:353.412480pt;}
.yf3{bottom:353.464960pt;}
.y5e{bottom:368.695680pt;}
.yd0{bottom:370.046080pt;}
.y90{bottom:370.244480pt;}
.y2d{bottom:370.328320pt;}
.yb8{bottom:370.369920pt;}
.yf2{bottom:372.821760pt;}
.y5d{bottom:385.491200pt;}
.ycf{bottom:386.841600pt;}
.y8f{bottom:387.040000pt;}
.y2c{bottom:387.123840pt;}
.yb7{bottom:387.165440pt;}
.yf1{bottom:392.178560pt;}
.y5c{bottom:402.448640pt;}
.yce{bottom:403.637120pt;}
.y8e{bottom:403.840000pt;}
.y2b{bottom:403.919360pt;}
.yb6{bottom:403.960960pt;}
.yf0{bottom:411.535360pt;}
.y5b{bottom:419.244160pt;}
.ycd{bottom:420.594560pt;}
.y8d{bottom:420.800000pt;}
.y2a{bottom:420.876800pt;}
.yb5{bottom:420.918400pt;}
.yef{bottom:430.892160pt;}
.y5a{bottom:436.201600pt;}
.y8c{bottom:437.600000pt;}
.y29{bottom:437.672320pt;}
.yb4{bottom:437.713920pt;}
.yee{bottom:450.410880pt;}
.y59{bottom:452.997120pt;}
.y8b{bottom:454.560000pt;}
.yb3{bottom:454.671360pt;}
.yed{bottom:469.767680pt;}
.y28{bottom:471.116160pt;}
.y8a{bottom:471.464320pt;}
.yb2{bottom:471.466880pt;}
.y58{bottom:486.426240pt;}
.y27{bottom:487.911680pt;}
.y89{bottom:488.259840pt;}
.yb1{bottom:488.262400pt;}
.yec{bottom:489.124480pt;}
.y57{bottom:503.221760pt;}
.y26{bottom:504.869120pt;}
.y88{bottom:505.217280pt;}
.yb0{bottom:505.219840pt;}
.yeb{bottom:508.481280pt;}
.y56{bottom:520.503040pt;}
.y25{bottom:521.664640pt;}
.y87{bottom:522.012800pt;}
.yaf{bottom:522.015360pt;}
.yea{bottom:528.000000pt;}
.y55{bottom:537.298560pt;}
.y24{bottom:538.945920pt;}
.y86{bottom:538.970240pt;}
.yae{bottom:538.972800pt;}
.ye9{bottom:547.363200pt;}
.y54{bottom:554.094080pt;}
.y23{bottom:555.741440pt;}
.y85{bottom:555.765760pt;}
.yad{bottom:555.768320pt;}
.ye8{bottom:566.720000pt;}
.y53{bottom:571.051520pt;}
.y22{bottom:572.536960pt;}
.y84{bottom:572.561280pt;}
.yac{bottom:572.563840pt;}
.ye7{bottom:586.092800pt;}
.y52{bottom:587.847040pt;}
.y21{bottom:589.494400pt;}
.y83{bottom:589.518720pt;}
.yab{bottom:589.521280pt;}
.y51{bottom:604.804480pt;}
.ye6{bottom:605.125760pt;}
.y20{bottom:606.289920pt;}
.y82{bottom:606.314240pt;}
.yaa{bottom:606.316800pt;}
.y50{bottom:621.600000pt;}
.ye5{bottom:622.407040pt;}
.y1f{bottom:623.247360pt;}
.y81{bottom:623.271680pt;}
.ya9{bottom:623.274240pt;}
.y4f{bottom:638.194080pt;}
.ye4{bottom:639.202560pt;}
.y1e{bottom:640.042880pt;}
.y80{bottom:640.067200pt;}
.ycc{bottom:640.069760pt;}
.y4e{bottom:653.559040pt;}
.ye3{bottom:656.160000pt;}
.y1d{bottom:656.838400pt;}
.y7f{bottom:656.862720pt;}
.ya8{bottom:656.865280pt;}
.y4d{bottom:668.924000pt;}
.ye2{bottom:672.960000pt;}
.y1c{bottom:673.472000pt;}
.ya7{bottom:673.498880pt;}
.y7e{bottom:673.820160pt;}
.ycb{bottom:673.822720pt;}
.y4c{bottom:684.129600pt;}
.ye1{bottom:689.760000pt;}
.y1b{bottom:690.267520pt;}
.ya6{bottom:690.294400pt;}
.y7d{bottom:690.615680pt;}
.yca{bottom:690.618240pt;}
.y4b{bottom:699.494560pt;}
.ye0{bottom:706.720000pt;}
.y1a{bottom:707.224960pt;}
.ya5{bottom:707.251840pt;}
.y7c{bottom:707.573120pt;}
.yc9{bottom:707.575680pt;}
.y4a{bottom:714.859520pt;}
.ydf{bottom:723.520000pt;}
.y19{bottom:724.344320pt;}
.y7b{bottom:724.368640pt;}
.ya4{bottom:724.371200pt;}
.y49{bottom:730.224480pt;}
.yde{bottom:740.480000pt;}
.y18{bottom:741.139840pt;}
.y7a{bottom:741.164160pt;}
.ya3{bottom:741.166720pt;}
.y48{bottom:745.589440pt;}
.ydd{bottom:757.312640pt;}
.y17{bottom:758.097280pt;}
.y79{bottom:758.121600pt;}
.ya2{bottom:758.124160pt;}
.y47{bottom:760.795040pt;}
.ydc{bottom:774.270080pt;}
.y16{bottom:774.892800pt;}
.y78{bottom:774.917120pt;}
.ya1{bottom:774.919680pt;}
.y46{bottom:776.160000pt;}
.ydb{bottom:791.065600pt;}
.y15{bottom:791.850240pt;}
.y77{bottom:791.874560pt;}
.y45{bottom:791.877120pt;}
.yda{bottom:807.861120pt;}
.y14{bottom:808.645760pt;}
.y76{bottom:808.670080pt;}
.y44{bottom:808.672640pt;}
.yd9{bottom:824.818560pt;}
.y13{bottom:825.603200pt;}
.y75{bottom:825.627520pt;}
.y43{bottom:825.630080pt;}
.yd8{bottom:841.614080pt;}
.y12{bottom:842.398720pt;}
.y74{bottom:842.423040pt;}
.y42{bottom:842.425600pt;}
.yd7{bottom:858.571520pt;}
.y11{bottom:858.885120pt;}
.y73{bottom:859.218560pt;}
.y41{bottom:859.221120pt;}
.yd6{bottom:875.367040pt;}
.y10{bottom:876.166400pt;}
.y72{bottom:876.176000pt;}
.y40{bottom:876.178560pt;}
.y103{bottom:885.128320pt;}
.yd5{bottom:892.162560pt;}
.ya{bottom:892.960000pt;}
.yf{bottom:892.961920pt;}
.y71{bottom:892.971520pt;}
.y3f{bottom:892.974080pt;}
.yc{bottom:899.680000pt;}
.y102{bottom:904.808960pt;}
.yb{bottom:909.917440pt;}
.y8{bottom:909.920000pt;}
.y70{bottom:909.928960pt;}
.y3e{bottom:909.931520pt;}
.y9{bottom:916.640000pt;}
.y101{bottom:924.165760pt;}
.yd4{bottom:925.760000pt;}
.y6f{bottom:926.724480pt;}
.y7{bottom:926.727040pt;}
.yd3{bottom:943.200000pt;}
.y6{bottom:943.213440pt;}
.y6e{bottom:943.520000pt;}
.y3d{bottom:943.522560pt;}
.y3{bottom:960.965760pt;}
.y2{bottom:978.880000pt;}
.y1{bottom:996.000000pt;}
.h8{height:22.789375pt;}
.h9{height:31.406250pt;}
.h7{height:36.431250pt;}
.h2{height:39.243750pt;}
.h1{height:52.108438pt;}
.ha{height:52.134375pt;}
.hb{height:57.758750pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.h5{height:63.283090pt;}
.hc{height:64.080000pt;}
.h6{height:124.969580pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x4{left:84.646400pt;}
.xb{left:123.520000pt;}
.xd{left:219.520000pt;}
.x1{left:289.280000pt;}
.x5{left:505.137920pt;}
.x6{left:515.040000pt;}
.x8{left:568.320000pt;}
.x7{left:641.600000pt;}
.x9{left:646.247680pt;}
.xa{left:672.480000pt;}
.xc{left:677.080320pt;}
.x3{left:718.239360pt;}
}




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