
    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_15c746a748764330a8c1a6e2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_68c53524fd4ba15f9dc17968.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_f9ce02ad60588a35636a3ac8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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_dacfcc37b0aabdf47bd3890f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_7d6dfa480b4ec6cedfcdbcfb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f0e8cc07053fe189d7d37a3a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.230957;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_cf522ea1eac3fcf2c0cf88cb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:81.000000px;}
.ls31{letter-spacing:-4.830000px;}
.lse{letter-spacing:-4.200000px;}
.ls21{letter-spacing:-4.050000px;}
.ls45{letter-spacing:-3.726000px;}
.ls3d{letter-spacing:-3.312000px;}
.ls26{letter-spacing:-2.691000px;}
.ls41{letter-spacing:-2.484000px;}
.ls40{letter-spacing:-2.001000px;}
.ls24{letter-spacing:-1.794000px;}
.ls3f{letter-spacing:-1.725000px;}
.ls43{letter-spacing:-1.650000px;}
.ls25{letter-spacing:-1.518000px;}
.ls2d{letter-spacing:-1.449000px;}
.ls44{letter-spacing:-1.380000px;}
.ls23{letter-spacing:-1.311000px;}
.ls4e{letter-spacing:-1.200000px;}
.ls48{letter-spacing:-1.173000px;}
.ls2f{letter-spacing:-1.104000px;}
.ls30{letter-spacing:-1.035000px;}
.ls22{letter-spacing:-0.966000px;}
.ls4c{letter-spacing:-0.945000px;}
.ls18{letter-spacing:-0.897000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls27{letter-spacing:-0.759000px;}
.ls19{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.621000px;}
.ls37{letter-spacing:-0.483000px;}
.ls3e{letter-spacing:-0.414000px;}
.ls4b{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.276000px;}
.ls5{letter-spacing:-0.138000px;}
.ls2e{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.013800px;}
.ls33{letter-spacing:0.067200px;}
.ls3c{letter-spacing:0.067800px;}
.ls17{letter-spacing:0.138000px;}
.ls38{letter-spacing:0.207000px;}
.ls20{letter-spacing:0.256800px;}
.ls39{letter-spacing:0.414000px;}
.ls34{letter-spacing:0.474000px;}
.ls1e{letter-spacing:0.545400px;}
.ls1{letter-spacing:0.609824px;}
.ls1b{letter-spacing:0.621000px;}
.ls13{letter-spacing:0.759000px;}
.ls3{letter-spacing:0.819000px;}
.ls12{letter-spacing:0.828000px;}
.ls36{letter-spacing:0.832200px;}
.ls2c{letter-spacing:1.035000px;}
.ls10{letter-spacing:1.104000px;}
.ls29{letter-spacing:1.122600px;}
.ls1a{letter-spacing:1.173000px;}
.ls2b{letter-spacing:1.193400px;}
.ls15{letter-spacing:1.194000px;}
.lsa{letter-spacing:1.194600px;}
.lsf{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.377000px;}
.lsb{letter-spacing:1.438200px;}
.ls6{letter-spacing:1.587000px;}
.ls9{letter-spacing:1.726800px;}
.ls16{letter-spacing:2.001000px;}
.lsc{letter-spacing:2.058600px;}
.ls35{letter-spacing:2.122200px;}
.ls3b{letter-spacing:2.238600px;}
.lsd{letter-spacing:3.552000px;}
.ls2a{letter-spacing:4.485000px;}
.ls4{letter-spacing:6.000000px;}
.ls4a{letter-spacing:6.426000px;}
.ls4d{letter-spacing:6.900000px;}
.ls49{letter-spacing:8.820000px;}
.ls42{letter-spacing:468.963600px;}
.ls32{letter-spacing:474.918600px;}
.ls1d{letter-spacing:475.285800px;}
.ls8{letter-spacing:476.245800px;}
.ls0{letter-spacing:953.017800px;}
.ls3a{letter-spacing:958.206600px;}
.ls14{letter-spacing:961.326600px;}
.ls28{letter-spacing:965.376600px;}
.ls46{letter-spacing:967.356600px;}
.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;}
}
.ws36{word-spacing:-26.523000px;}
.ws9{word-spacing:-20.232000px;}
.ws32{word-spacing:-19.425000px;}
.ws34{word-spacing:-17.181000px;}
.ws16{word-spacing:-17.025000px;}
.ws6{word-spacing:-16.875000px;}
.ws1b{word-spacing:-16.422000px;}
.ws2c{word-spacing:-16.353000px;}
.ws2f{word-spacing:-16.215000px;}
.ws17{word-spacing:-16.146000px;}
.ws2b{word-spacing:-16.077000px;}
.ws18{word-spacing:-15.732000px;}
.ws33{word-spacing:-15.663000px;}
.ws20{word-spacing:-15.594000px;}
.ws1a{word-spacing:-15.525000px;}
.ws2d{word-spacing:-15.318000px;}
.ws19{word-spacing:-15.249000px;}
.ws2e{word-spacing:-15.042000px;}
.ws8{word-spacing:-14.162400px;}
.ws2a{word-spacing:-13.731000px;}
.ws37{word-spacing:-13.620000px;}
.ws7{word-spacing:-13.062000px;}
.ws3c{word-spacing:-6.900000px;}
.ws39{word-spacing:-6.426000px;}
.ws2{word-spacing:-6.000000px;}
.wsa{word-spacing:-3.552000px;}
.wsf{word-spacing:-2.001000px;}
.ws4{word-spacing:-1.587000px;}
.ws13{word-spacing:-1.173000px;}
.wsb{word-spacing:-1.104000px;}
.ws21{word-spacing:-1.035000px;}
.wsd{word-spacing:-0.828000px;}
.ws1{word-spacing:-0.819000px;}
.wse{word-spacing:-0.759000px;}
.ws14{word-spacing:-0.621000px;}
.ws29{word-spacing:-0.414000px;}
.ws28{word-spacing:-0.207000px;}
.ws10{word-spacing:-0.138000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.069000px;}
.ws3{word-spacing:0.138000px;}
.wsc{word-spacing:0.276000px;}
.ws3a{word-spacing:0.378000px;}
.ws30{word-spacing:0.414000px;}
.ws27{word-spacing:0.483000px;}
.ws5{word-spacing:0.621000px;}
.ws12{word-spacing:0.690000px;}
.ws1e{word-spacing:0.759000px;}
.ws15{word-spacing:0.828000px;}
.ws11{word-spacing:0.897000px;}
.ws3b{word-spacing:0.945000px;}
.ws1c{word-spacing:0.966000px;}
.ws25{word-spacing:1.035000px;}
.ws24{word-spacing:1.104000px;}
.ws38{word-spacing:1.173000px;}
.ws1f{word-spacing:1.311000px;}
.ws22{word-spacing:1.449000px;}
.ws31{word-spacing:2.484000px;}
.ws1d{word-spacing:2.691000px;}
.ws35{word-spacing:3.726000px;}
.ws26{word-spacing:4.830000px;}
._9{margin-left:-9.098400px;}
._18{margin-left:-7.955100px;}
._e{margin-left:-5.732100px;}
._b{margin-left:-4.501500px;}
._2{margin-left:-3.389400px;}
._a{margin-left:-2.318400px;}
._4{margin-left:-1.026900px;}
._3{width:1.398600px;}
._1{width:2.400000px;}
._8{width:3.813300px;}
._d{width:4.851600px;}
._5{width:5.980200px;}
._6{width:7.281600px;}
._7{width:8.564400px;}
._c{width:9.675000px;}
._11{width:11.013600px;}
._13{width:12.058800px;}
._10{width:13.209300px;}
._f{width:14.616900px;}
._12{width:15.948000px;}
._1c{width:17.250900px;}
._1a{width:18.353400px;}
._16{width:22.220100px;}
._19{width:25.468200px;}
._15{width:26.836800px;}
._17{width:29.740500px;}
._14{width:33.793500px;}
._1b{width:62.938500px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y108{bottom:106.251150px;}
.y6e{bottom:106.264950px;}
.y8d{bottom:106.268400px;}
.y4b{bottom:106.278600px;}
.yaf{bottom:106.295850px;}
.yc9{bottom:106.307850px;}
.yf1{bottom:106.310550px;}
.y22{bottom:106.340550px;}
.y107{bottom:126.675150px;}
.y6d{bottom:126.688950px;}
.y8c{bottom:126.692400px;}
.y4a{bottom:126.702600px;}
.yf0{bottom:126.717300px;}
.yae{bottom:126.719850px;}
.y12a{bottom:126.965850px;}
.y21{bottom:127.092300px;}
.yc8{bottom:147.085500px;}
.yad{bottom:147.092250px;}
.y106{bottom:147.099150px;}
.y6c{bottom:147.112950px;}
.y8b{bottom:147.116400px;}
.yef{bottom:147.124050px;}
.y49{bottom:147.126600px;}
.y129{bottom:147.635850px;}
.y20{bottom:147.844050px;}
.yc7{bottom:167.509500px;}
.yac{bottom:167.516250px;}
.y105{bottom:167.523150px;}
.yee{bottom:167.530800px;}
.y6b{bottom:167.536950px;}
.y8a{bottom:167.540400px;}
.y48{bottom:167.550600px;}
.y128{bottom:168.305850px;}
.y1f{bottom:168.595800px;}
.yc6{bottom:187.933500px;}
.yed{bottom:187.937550px;}
.yab{bottom:187.940250px;}
.y104{bottom:187.947150px;}
.y6a{bottom:187.960950px;}
.y89{bottom:187.964400px;}
.y47{bottom:187.974600px;}
.y1e{bottom:189.347550px;}
.y127{bottom:201.725850px;}
.yec{bottom:208.344300px;}
.yc5{bottom:208.357500px;}
.yaa{bottom:208.364250px;}
.y103{bottom:208.371150px;}
.y69{bottom:208.384950px;}
.y88{bottom:208.388400px;}
.y46{bottom:208.398600px;}
.y1d{bottom:210.099300px;}
.yeb{bottom:228.751050px;}
.y45{bottom:228.771150px;}
.yc4{bottom:228.781500px;}
.ya9{bottom:228.788250px;}
.y102{bottom:228.795150px;}
.y68{bottom:228.808950px;}
.y87{bottom:228.812400px;}
.y1c{bottom:230.851050px;}
.y126{bottom:243.659700px;}
.yea{bottom:249.157800px;}
.y44{bottom:249.195150px;}
.yc3{bottom:249.205500px;}
.ya8{bottom:249.212250px;}
.y101{bottom:249.219150px;}
.y67{bottom:249.232950px;}
.y86{bottom:249.236400px;}
.y1b{bottom:251.602800px;}
.y125{bottom:264.323700px;}
.ye9{bottom:269.564550px;}
.y43{bottom:269.619150px;}
.yc2{bottom:269.629500px;}
.ya7{bottom:269.636250px;}
.y100{bottom:269.643150px;}
.y66{bottom:269.656950px;}
.y85{bottom:269.660400px;}
.y1a{bottom:272.354550px;}
.ye8{bottom:289.971300px;}
.y42{bottom:290.043150px;}
.yc1{bottom:290.053500px;}
.ya6{bottom:290.060250px;}
.yff{bottom:290.067150px;}
.y65{bottom:290.080950px;}
.y19{bottom:293.106300px;}
.y124{bottom:293.492700px;}
.ye7{bottom:310.378050px;}
.y84{bottom:310.463700px;}
.y41{bottom:310.467150px;}
.yc0{bottom:310.477500px;}
.ya5{bottom:310.484250px;}
.yfe{bottom:310.491150px;}
.y64{bottom:310.504950px;}
.y18{bottom:313.858050px;}
.ye6{bottom:330.798150px;}
.y63{bottom:330.870600px;}
.y83{bottom:330.887700px;}
.y40{bottom:330.891150px;}
.ybf{bottom:330.901500px;}
.ya4{bottom:330.908250px;}
.yfd{bottom:330.915150px;}
.y17{bottom:334.609800px;}
.y123{bottom:344.719800px;}
.ye5{bottom:351.204900px;}
.y62{bottom:351.294600px;}
.y82{bottom:351.311700px;}
.y3f{bottom:351.315150px;}
.ybe{bottom:351.325500px;}
.ya3{bottom:351.332250px;}
.yfc{bottom:351.339150px;}
.y16{bottom:355.361550px;}
.y122{bottom:365.385300px;}
.ye4{bottom:371.611650px;}
.y61{bottom:371.718600px;}
.y81{bottom:371.735700px;}
.y3e{bottom:371.739150px;}
.ybd{bottom:371.749500px;}
.ya2{bottom:371.756250px;}
.yfb{bottom:371.763150px;}
.y15{bottom:376.113300px;}
.y121{bottom:386.050800px;}
.ye3{bottom:392.018400px;}
.y60{bottom:392.142600px;}
.y80{bottom:392.159700px;}
.y3d{bottom:392.163150px;}
.ybc{bottom:392.173500px;}
.ya1{bottom:392.180250px;}
.yfa{bottom:392.187150px;}
.y14{bottom:396.865050px;}
.y120{bottom:406.716300px;}
.ye2{bottom:412.425150px;}
.yf9{bottom:412.546050px;}
.y5f{bottom:412.566600px;}
.y7f{bottom:412.583700px;}
.y3c{bottom:412.587150px;}
.ybb{bottom:412.597500px;}
.ya0{bottom:412.604250px;}
.y13{bottom:417.616800px;}
.y11f{bottom:427.381800px;}
.ye1{bottom:432.831900px;}
.y9f{bottom:432.966600px;}
.yf8{bottom:432.970050px;}
.y5e{bottom:432.990600px;}
.y7e{bottom:433.007700px;}
.y3b{bottom:433.011150px;}
.yba{bottom:433.021500px;}
.y12{bottom:438.368550px;}
.y11e{bottom:448.047300px;}
.ye0{bottom:453.238650px;}
.y9e{bottom:453.390600px;}
.yf7{bottom:453.394050px;}
.y5d{bottom:453.414600px;}
.y7d{bottom:453.431700px;}
.y3a{bottom:453.435150px;}
.yb9{bottom:453.445500px;}
.y11{bottom:459.120300px;}
.y11d{bottom:468.712800px;}
.ydf{bottom:473.645400px;}
.y9d{bottom:473.814600px;}
.yf6{bottom:473.818050px;}
.y5c{bottom:473.838600px;}
.y7c{bottom:473.855700px;}
.y39{bottom:473.859150px;}
.yb8{bottom:473.878050px;}
.y10{bottom:479.872050px;}
.y11c{bottom:489.378300px;}
.yde{bottom:494.052150px;}
.yb7{bottom:494.221350px;}
.y9c{bottom:494.238600px;}
.yf5{bottom:494.242050px;}
.y5b{bottom:494.262600px;}
.y7b{bottom:494.279700px;}
.y38{bottom:494.283150px;}
.yf{bottom:500.623800px;}
.y11b{bottom:510.043800px;}
.ydd{bottom:514.458900px;}
.yb6{bottom:514.645350px;}
.y9b{bottom:514.662600px;}
.yf4{bottom:514.666050px;}
.y5a{bottom:514.686600px;}
.y7a{bottom:514.703700px;}
.y37{bottom:514.707150px;}
.ye{bottom:521.375550px;}
.y11a{bottom:530.709300px;}
.ydc{bottom:534.865650px;}
.yb5{bottom:535.069350px;}
.y9a{bottom:535.086600px;}
.yf3{bottom:535.090050px;}
.y36{bottom:535.093350px;}
.y59{bottom:535.110600px;}
.y79{bottom:535.127700px;}
.yd{bottom:542.127300px;}
.y119{bottom:551.374800px;}
.ydb{bottom:555.272400px;}
.yb4{bottom:555.493350px;}
.y99{bottom:555.510600px;}
.yf2{bottom:555.514050px;}
.y35{bottom:555.517350px;}
.y58{bottom:555.534600px;}
.y78{bottom:555.551700px;}
.yc{bottom:562.879050px;}
.yb{bottom:562.880550px;}
.y118{bottom:572.040300px;}
.yda{bottom:575.679150px;}
.yb3{bottom:575.917350px;}
.y98{bottom:575.934600px;}
.y77{bottom:575.938050px;}
.y34{bottom:575.941350px;}
.y57{bottom:575.958600px;}
.y117{bottom:592.705800px;}
.yd9{bottom:596.085900px;}
.yb2{bottom:596.341350px;}
.y97{bottom:596.358600px;}
.y76{bottom:596.362050px;}
.y33{bottom:596.365350px;}
.y56{bottom:596.382600px;}
.y116{bottom:613.371300px;}
.yd8{bottom:616.504950px;}
.yb1{bottom:616.765350px;}
.y96{bottom:616.782600px;}
.y75{bottom:616.786050px;}
.y32{bottom:616.789350px;}
.y55{bottom:616.806600px;}
.ya{bottom:633.129150px;}
.y115{bottom:634.036800px;}
.yd7{bottom:636.911700px;}
.yb0{bottom:637.189350px;}
.y95{bottom:637.206600px;}
.y74{bottom:637.210050px;}
.y31{bottom:637.213350px;}
.y54{bottom:637.230600px;}
.y114{bottom:654.702300px;}
.yd6{bottom:657.318450px;}
.y53{bottom:657.613350px;}
.y94{bottom:657.630600px;}
.y73{bottom:657.634050px;}
.y30{bottom:657.637350px;}
.y9{bottom:660.639150px;}
.y113{bottom:675.367800px;}
.yd5{bottom:677.725200px;}
.y52{bottom:678.037350px;}
.y93{bottom:678.054600px;}
.y72{bottom:678.058050px;}
.y2f{bottom:678.061350px;}
.y8{bottom:688.149150px;}
.y112{bottom:696.033300px;}
.yd4{bottom:698.131950px;}
.y51{bottom:698.461350px;}
.y92{bottom:698.478600px;}
.y71{bottom:698.482050px;}
.y2e{bottom:698.485350px;}
.y111{bottom:716.698800px;}
.yd3{bottom:718.538700px;}
.y50{bottom:718.885350px;}
.y91{bottom:718.902600px;}
.y70{bottom:718.906050px;}
.y2d{bottom:718.909350px;}
.y7{bottom:736.921500px;}
.y110{bottom:737.364300px;}
.yd2{bottom:738.945450px;}
.y4f{bottom:739.309350px;}
.y90{bottom:739.326600px;}
.y6f{bottom:739.330050px;}
.y2c{bottom:739.333350px;}
.y10f{bottom:758.029800px;}
.yd1{bottom:759.352200px;}
.y4e{bottom:759.733350px;}
.y8f{bottom:759.750600px;}
.y2b{bottom:759.754050px;}
.y6{bottom:768.916500px;}
.y10e{bottom:778.708350px;}
.yd0{bottom:779.758950px;}
.y4d{bottom:780.157350px;}
.y8e{bottom:780.174600px;}
.y2a{bottom:780.178050px;}
.y10d{bottom:799.373850px;}
.ycf{bottom:800.165700px;}
.y4c{bottom:800.581350px;}
.y29{bottom:800.598600px;}
.y10c{bottom:820.039350px;}
.yce{bottom:820.572450px;}
.y28{bottom:821.005350px;}
.y5{bottom:830.670150px;}
.y10b{bottom:840.704850px;}
.ycd{bottom:840.979200px;}
.y27{bottom:841.429350px;}
.y4{bottom:852.180150px;}
.y10a{bottom:861.370350px;}
.ycc{bottom:861.388050px;}
.y26{bottom:861.853350px;}
.ycb{bottom:881.790600px;}
.y109{bottom:882.035850px;}
.y3{bottom:882.195150px;}
.y25{bottom:882.277350px;}
.yca{bottom:902.202600px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.ha{height:46.757812px;}
.h15{height:55.488281px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.h12{height:67.179555px;}
.h11{height:67.180155px;}
.h9{height:67.214355px;}
.hb{height:67.227555px;}
.hf{height:67.228155px;}
.h13{height:67.231155px;}
.hc{height:67.365555px;}
.he{height:67.379355px;}
.hd{height:67.420155px;}
.h14{height:67.460955px;}
.h10{height:67.489155px;}
.h2{height:73.059082px;}
.h7{height:77.683594px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h8{height:148.214355px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:82.607700px;}
.x7{left:83.616300px;}
.x1{left:85.039350px;}
.x5{left:98.899800px;}
.x8{left:104.273550px;}
.x6{left:105.679050px;}
.x2{left:232.601400px;}
.x3{left:233.810550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls31{letter-spacing:-4.293333pt;}
.lse{letter-spacing:-3.733333pt;}
.ls21{letter-spacing:-3.600000pt;}
.ls45{letter-spacing:-3.312000pt;}
.ls3d{letter-spacing:-2.944000pt;}
.ls26{letter-spacing:-2.392000pt;}
.ls41{letter-spacing:-2.208000pt;}
.ls40{letter-spacing:-1.778667pt;}
.ls24{letter-spacing:-1.594667pt;}
.ls3f{letter-spacing:-1.533333pt;}
.ls43{letter-spacing:-1.466667pt;}
.ls25{letter-spacing:-1.349333pt;}
.ls2d{letter-spacing:-1.288000pt;}
.ls44{letter-spacing:-1.226667pt;}
.ls23{letter-spacing:-1.165333pt;}
.ls4e{letter-spacing:-1.066667pt;}
.ls48{letter-spacing:-1.042667pt;}
.ls2f{letter-spacing:-0.981333pt;}
.ls30{letter-spacing:-0.920000pt;}
.ls22{letter-spacing:-0.858667pt;}
.ls4c{letter-spacing:-0.840000pt;}
.ls18{letter-spacing:-0.797333pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls27{letter-spacing:-0.674667pt;}
.ls19{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.552000pt;}
.ls37{letter-spacing:-0.429333pt;}
.ls3e{letter-spacing:-0.368000pt;}
.ls4b{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.245333pt;}
.ls5{letter-spacing:-0.122667pt;}
.ls2e{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.012267pt;}
.ls33{letter-spacing:0.059733pt;}
.ls3c{letter-spacing:0.060267pt;}
.ls17{letter-spacing:0.122667pt;}
.ls38{letter-spacing:0.184000pt;}
.ls20{letter-spacing:0.228267pt;}
.ls39{letter-spacing:0.368000pt;}
.ls34{letter-spacing:0.421333pt;}
.ls1e{letter-spacing:0.484800pt;}
.ls1{letter-spacing:0.542066pt;}
.ls1b{letter-spacing:0.552000pt;}
.ls13{letter-spacing:0.674667pt;}
.ls3{letter-spacing:0.728000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls36{letter-spacing:0.739733pt;}
.ls2c{letter-spacing:0.920000pt;}
.ls10{letter-spacing:0.981333pt;}
.ls29{letter-spacing:0.997867pt;}
.ls1a{letter-spacing:1.042667pt;}
.ls2b{letter-spacing:1.060800pt;}
.ls15{letter-spacing:1.061333pt;}
.lsa{letter-spacing:1.061867pt;}
.lsf{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.224000pt;}
.lsb{letter-spacing:1.278400pt;}
.ls6{letter-spacing:1.410667pt;}
.ls9{letter-spacing:1.534933pt;}
.ls16{letter-spacing:1.778667pt;}
.lsc{letter-spacing:1.829867pt;}
.ls35{letter-spacing:1.886400pt;}
.ls3b{letter-spacing:1.989867pt;}
.lsd{letter-spacing:3.157333pt;}
.ls2a{letter-spacing:3.986667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls4a{letter-spacing:5.712000pt;}
.ls4d{letter-spacing:6.133333pt;}
.ls49{letter-spacing:7.840000pt;}
.ls42{letter-spacing:416.856533pt;}
.ls32{letter-spacing:422.149867pt;}
.ls1d{letter-spacing:422.476267pt;}
.ls8{letter-spacing:423.329600pt;}
.ls0{letter-spacing:847.126933pt;}
.ls3a{letter-spacing:851.739200pt;}
.ls14{letter-spacing:854.512533pt;}
.ls28{letter-spacing:858.112533pt;}
.ls46{letter-spacing:859.872533pt;}
.ws36{word-spacing:-23.576000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws32{word-spacing:-17.266667pt;}
.ws34{word-spacing:-15.272000pt;}
.ws16{word-spacing:-15.133333pt;}
.ws6{word-spacing:-15.000000pt;}
.ws1b{word-spacing:-14.597333pt;}
.ws2c{word-spacing:-14.536000pt;}
.ws2f{word-spacing:-14.413333pt;}
.ws17{word-spacing:-14.352000pt;}
.ws2b{word-spacing:-14.290667pt;}
.ws18{word-spacing:-13.984000pt;}
.ws33{word-spacing:-13.922667pt;}
.ws20{word-spacing:-13.861333pt;}
.ws1a{word-spacing:-13.800000pt;}
.ws2d{word-spacing:-13.616000pt;}
.ws19{word-spacing:-13.554667pt;}
.ws2e{word-spacing:-13.370667pt;}
.ws8{word-spacing:-12.588800pt;}
.ws2a{word-spacing:-12.205333pt;}
.ws37{word-spacing:-12.106667pt;}
.ws7{word-spacing:-11.610667pt;}
.ws3c{word-spacing:-6.133333pt;}
.ws39{word-spacing:-5.712000pt;}
.ws2{word-spacing:-5.333333pt;}
.wsa{word-spacing:-3.157333pt;}
.wsf{word-spacing:-1.778667pt;}
.ws4{word-spacing:-1.410667pt;}
.ws13{word-spacing:-1.042667pt;}
.wsb{word-spacing:-0.981333pt;}
.ws21{word-spacing:-0.920000pt;}
.wsd{word-spacing:-0.736000pt;}
.ws1{word-spacing:-0.728000pt;}
.wse{word-spacing:-0.674667pt;}
.ws14{word-spacing:-0.552000pt;}
.ws29{word-spacing:-0.368000pt;}
.ws28{word-spacing:-0.184000pt;}
.ws10{word-spacing:-0.122667pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.061333pt;}
.ws3{word-spacing:0.122667pt;}
.wsc{word-spacing:0.245333pt;}
.ws3a{word-spacing:0.336000pt;}
.ws30{word-spacing:0.368000pt;}
.ws27{word-spacing:0.429333pt;}
.ws5{word-spacing:0.552000pt;}
.ws12{word-spacing:0.613333pt;}
.ws1e{word-spacing:0.674667pt;}
.ws15{word-spacing:0.736000pt;}
.ws11{word-spacing:0.797333pt;}
.ws3b{word-spacing:0.840000pt;}
.ws1c{word-spacing:0.858667pt;}
.ws25{word-spacing:0.920000pt;}
.ws24{word-spacing:0.981333pt;}
.ws38{word-spacing:1.042667pt;}
.ws1f{word-spacing:1.165333pt;}
.ws22{word-spacing:1.288000pt;}
.ws31{word-spacing:2.208000pt;}
.ws1d{word-spacing:2.392000pt;}
.ws35{word-spacing:3.312000pt;}
.ws26{word-spacing:4.293333pt;}
._9{margin-left:-8.087467pt;}
._18{margin-left:-7.071200pt;}
._e{margin-left:-5.095200pt;}
._b{margin-left:-4.001333pt;}
._2{margin-left:-3.012800pt;}
._a{margin-left:-2.060800pt;}
._4{margin-left:-0.912800pt;}
._3{width:1.243200pt;}
._1{width:2.133333pt;}
._8{width:3.389600pt;}
._d{width:4.312533pt;}
._5{width:5.315733pt;}
._6{width:6.472533pt;}
._7{width:7.612800pt;}
._c{width:8.600000pt;}
._11{width:9.789867pt;}
._13{width:10.718933pt;}
._10{width:11.741600pt;}
._f{width:12.992800pt;}
._12{width:14.176000pt;}
._1c{width:15.334133pt;}
._1a{width:16.314133pt;}
._16{width:19.751200pt;}
._19{width:22.638400pt;}
._15{width:23.854933pt;}
._17{width:26.436000pt;}
._14{width:30.038667pt;}
._1b{width:55.945333pt;}
._0{width:514.133333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y108{bottom:94.445467pt;}
.y6e{bottom:94.457733pt;}
.y8d{bottom:94.460800pt;}
.y4b{bottom:94.469867pt;}
.yaf{bottom:94.485200pt;}
.yc9{bottom:94.495867pt;}
.yf1{bottom:94.498267pt;}
.y22{bottom:94.524933pt;}
.y107{bottom:112.600133pt;}
.y6d{bottom:112.612400pt;}
.y8c{bottom:112.615467pt;}
.y4a{bottom:112.624533pt;}
.yf0{bottom:112.637600pt;}
.yae{bottom:112.639867pt;}
.y12a{bottom:112.858533pt;}
.y21{bottom:112.970933pt;}
.yc8{bottom:130.742667pt;}
.yad{bottom:130.748667pt;}
.y106{bottom:130.754800pt;}
.y6c{bottom:130.767067pt;}
.y8b{bottom:130.770133pt;}
.yef{bottom:130.776933pt;}
.y49{bottom:130.779200pt;}
.y129{bottom:131.231867pt;}
.y20{bottom:131.416933pt;}
.yc7{bottom:148.897333pt;}
.yac{bottom:148.903333pt;}
.y105{bottom:148.909467pt;}
.yee{bottom:148.916267pt;}
.y6b{bottom:148.921733pt;}
.y8a{bottom:148.924800pt;}
.y48{bottom:148.933867pt;}
.y128{bottom:149.605200pt;}
.y1f{bottom:149.862933pt;}
.yc6{bottom:167.052000pt;}
.yed{bottom:167.055600pt;}
.yab{bottom:167.058000pt;}
.y104{bottom:167.064133pt;}
.y6a{bottom:167.076400pt;}
.y89{bottom:167.079467pt;}
.y47{bottom:167.088533pt;}
.y1e{bottom:168.308933pt;}
.y127{bottom:179.311867pt;}
.yec{bottom:185.194933pt;}
.yc5{bottom:185.206667pt;}
.yaa{bottom:185.212667pt;}
.y103{bottom:185.218800pt;}
.y69{bottom:185.231067pt;}
.y88{bottom:185.234133pt;}
.y46{bottom:185.243200pt;}
.y1d{bottom:186.754933pt;}
.yeb{bottom:203.334267pt;}
.y45{bottom:203.352133pt;}
.yc4{bottom:203.361333pt;}
.ya9{bottom:203.367333pt;}
.y102{bottom:203.373467pt;}
.y68{bottom:203.385733pt;}
.y87{bottom:203.388800pt;}
.y1c{bottom:205.200933pt;}
.y126{bottom:216.586400pt;}
.yea{bottom:221.473600pt;}
.y44{bottom:221.506800pt;}
.yc3{bottom:221.516000pt;}
.ya8{bottom:221.522000pt;}
.y101{bottom:221.528133pt;}
.y67{bottom:221.540400pt;}
.y86{bottom:221.543467pt;}
.y1b{bottom:223.646933pt;}
.y125{bottom:234.954400pt;}
.ye9{bottom:239.612933pt;}
.y43{bottom:239.661467pt;}
.yc2{bottom:239.670667pt;}
.ya7{bottom:239.676667pt;}
.y100{bottom:239.682800pt;}
.y66{bottom:239.695067pt;}
.y85{bottom:239.698133pt;}
.y1a{bottom:242.092933pt;}
.ye8{bottom:257.752267pt;}
.y42{bottom:257.816133pt;}
.yc1{bottom:257.825333pt;}
.ya6{bottom:257.831333pt;}
.yff{bottom:257.837467pt;}
.y65{bottom:257.849733pt;}
.y19{bottom:260.538933pt;}
.y124{bottom:260.882400pt;}
.ye7{bottom:275.891600pt;}
.y84{bottom:275.967733pt;}
.y41{bottom:275.970800pt;}
.yc0{bottom:275.980000pt;}
.ya5{bottom:275.986000pt;}
.yfe{bottom:275.992133pt;}
.y64{bottom:276.004400pt;}
.y18{bottom:278.984933pt;}
.ye6{bottom:294.042800pt;}
.y63{bottom:294.107200pt;}
.y83{bottom:294.122400pt;}
.y40{bottom:294.125467pt;}
.ybf{bottom:294.134667pt;}
.ya4{bottom:294.140667pt;}
.yfd{bottom:294.146800pt;}
.y17{bottom:297.430933pt;}
.y123{bottom:306.417600pt;}
.ye5{bottom:312.182133pt;}
.y62{bottom:312.261867pt;}
.y82{bottom:312.277067pt;}
.y3f{bottom:312.280133pt;}
.ybe{bottom:312.289333pt;}
.ya3{bottom:312.295333pt;}
.yfc{bottom:312.301467pt;}
.y16{bottom:315.876933pt;}
.y122{bottom:324.786933pt;}
.ye4{bottom:330.321467pt;}
.y61{bottom:330.416533pt;}
.y81{bottom:330.431733pt;}
.y3e{bottom:330.434800pt;}
.ybd{bottom:330.444000pt;}
.ya2{bottom:330.450000pt;}
.yfb{bottom:330.456133pt;}
.y15{bottom:334.322933pt;}
.y121{bottom:343.156267pt;}
.ye3{bottom:348.460800pt;}
.y60{bottom:348.571200pt;}
.y80{bottom:348.586400pt;}
.y3d{bottom:348.589467pt;}
.ybc{bottom:348.598667pt;}
.ya1{bottom:348.604667pt;}
.yfa{bottom:348.610800pt;}
.y14{bottom:352.768933pt;}
.y120{bottom:361.525600pt;}
.ye2{bottom:366.600133pt;}
.yf9{bottom:366.707600pt;}
.y5f{bottom:366.725867pt;}
.y7f{bottom:366.741067pt;}
.y3c{bottom:366.744133pt;}
.ybb{bottom:366.753333pt;}
.ya0{bottom:366.759333pt;}
.y13{bottom:371.214933pt;}
.y11f{bottom:379.894933pt;}
.ye1{bottom:384.739467pt;}
.y9f{bottom:384.859200pt;}
.yf8{bottom:384.862267pt;}
.y5e{bottom:384.880533pt;}
.y7e{bottom:384.895733pt;}
.y3b{bottom:384.898800pt;}
.yba{bottom:384.908000pt;}
.y12{bottom:389.660933pt;}
.y11e{bottom:398.264267pt;}
.ye0{bottom:402.878800pt;}
.y9e{bottom:403.013867pt;}
.yf7{bottom:403.016933pt;}
.y5d{bottom:403.035200pt;}
.y7d{bottom:403.050400pt;}
.y3a{bottom:403.053467pt;}
.yb9{bottom:403.062667pt;}
.y11{bottom:408.106933pt;}
.y11d{bottom:416.633600pt;}
.ydf{bottom:421.018133pt;}
.y9d{bottom:421.168533pt;}
.yf6{bottom:421.171600pt;}
.y5c{bottom:421.189867pt;}
.y7c{bottom:421.205067pt;}
.y39{bottom:421.208133pt;}
.yb8{bottom:421.224933pt;}
.y10{bottom:426.552933pt;}
.y11c{bottom:435.002933pt;}
.yde{bottom:439.157467pt;}
.yb7{bottom:439.307867pt;}
.y9c{bottom:439.323200pt;}
.yf5{bottom:439.326267pt;}
.y5b{bottom:439.344533pt;}
.y7b{bottom:439.359733pt;}
.y38{bottom:439.362800pt;}
.yf{bottom:444.998933pt;}
.y11b{bottom:453.372267pt;}
.ydd{bottom:457.296800pt;}
.yb6{bottom:457.462533pt;}
.y9b{bottom:457.477867pt;}
.yf4{bottom:457.480933pt;}
.y5a{bottom:457.499200pt;}
.y7a{bottom:457.514400pt;}
.y37{bottom:457.517467pt;}
.ye{bottom:463.444933pt;}
.y11a{bottom:471.741600pt;}
.ydc{bottom:475.436133pt;}
.yb5{bottom:475.617200pt;}
.y9a{bottom:475.632533pt;}
.yf3{bottom:475.635600pt;}
.y36{bottom:475.638533pt;}
.y59{bottom:475.653867pt;}
.y79{bottom:475.669067pt;}
.yd{bottom:481.890933pt;}
.y119{bottom:490.110933pt;}
.ydb{bottom:493.575467pt;}
.yb4{bottom:493.771867pt;}
.y99{bottom:493.787200pt;}
.yf2{bottom:493.790267pt;}
.y35{bottom:493.793200pt;}
.y58{bottom:493.808533pt;}
.y78{bottom:493.823733pt;}
.yc{bottom:500.336933pt;}
.yb{bottom:500.338267pt;}
.y118{bottom:508.480267pt;}
.yda{bottom:511.714800pt;}
.yb3{bottom:511.926533pt;}
.y98{bottom:511.941867pt;}
.y77{bottom:511.944933pt;}
.y34{bottom:511.947867pt;}
.y57{bottom:511.963200pt;}
.y117{bottom:526.849600pt;}
.yd9{bottom:529.854133pt;}
.yb2{bottom:530.081200pt;}
.y97{bottom:530.096533pt;}
.y76{bottom:530.099600pt;}
.y33{bottom:530.102533pt;}
.y56{bottom:530.117867pt;}
.y116{bottom:545.218933pt;}
.yd8{bottom:548.004400pt;}
.yb1{bottom:548.235867pt;}
.y96{bottom:548.251200pt;}
.y75{bottom:548.254267pt;}
.y32{bottom:548.257200pt;}
.y55{bottom:548.272533pt;}
.ya{bottom:562.781467pt;}
.y115{bottom:563.588267pt;}
.yd7{bottom:566.143733pt;}
.yb0{bottom:566.390533pt;}
.y95{bottom:566.405867pt;}
.y74{bottom:566.408933pt;}
.y31{bottom:566.411867pt;}
.y54{bottom:566.427200pt;}
.y114{bottom:581.957600pt;}
.yd6{bottom:584.283067pt;}
.y53{bottom:584.545200pt;}
.y94{bottom:584.560533pt;}
.y73{bottom:584.563600pt;}
.y30{bottom:584.566533pt;}
.y9{bottom:587.234800pt;}
.y113{bottom:600.326933pt;}
.yd5{bottom:602.422400pt;}
.y52{bottom:602.699867pt;}
.y93{bottom:602.715200pt;}
.y72{bottom:602.718267pt;}
.y2f{bottom:602.721200pt;}
.y8{bottom:611.688133pt;}
.y112{bottom:618.696267pt;}
.yd4{bottom:620.561733pt;}
.y51{bottom:620.854533pt;}
.y92{bottom:620.869867pt;}
.y71{bottom:620.872933pt;}
.y2e{bottom:620.875867pt;}
.y111{bottom:637.065600pt;}
.yd3{bottom:638.701067pt;}
.y50{bottom:639.009200pt;}
.y91{bottom:639.024533pt;}
.y70{bottom:639.027600pt;}
.y2d{bottom:639.030533pt;}
.y7{bottom:655.041333pt;}
.y110{bottom:655.434933pt;}
.yd2{bottom:656.840400pt;}
.y4f{bottom:657.163867pt;}
.y90{bottom:657.179200pt;}
.y6f{bottom:657.182267pt;}
.y2c{bottom:657.185200pt;}
.y10f{bottom:673.804267pt;}
.yd1{bottom:674.979733pt;}
.y4e{bottom:675.318533pt;}
.y8f{bottom:675.333867pt;}
.y2b{bottom:675.336933pt;}
.y6{bottom:683.481333pt;}
.y10e{bottom:692.185200pt;}
.yd0{bottom:693.119067pt;}
.y4d{bottom:693.473200pt;}
.y8e{bottom:693.488533pt;}
.y2a{bottom:693.491600pt;}
.y10d{bottom:710.554533pt;}
.ycf{bottom:711.258400pt;}
.y4c{bottom:711.627867pt;}
.y29{bottom:711.643200pt;}
.y10c{bottom:728.923867pt;}
.yce{bottom:729.397733pt;}
.y28{bottom:729.782533pt;}
.y5{bottom:738.373467pt;}
.y10b{bottom:747.293200pt;}
.ycd{bottom:747.537067pt;}
.y27{bottom:747.937200pt;}
.y4{bottom:757.493467pt;}
.y10a{bottom:765.662533pt;}
.ycc{bottom:765.678267pt;}
.y26{bottom:766.091867pt;}
.ycb{bottom:783.813867pt;}
.y109{bottom:784.031867pt;}
.y3{bottom:784.173467pt;}
.y25{bottom:784.246533pt;}
.yca{bottom:801.957867pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.ha{height:41.562500pt;}
.h15{height:49.322917pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.h12{height:59.715160pt;}
.h11{height:59.715694pt;}
.h9{height:59.746094pt;}
.hb{height:59.757827pt;}
.hf{height:59.758360pt;}
.h13{height:59.761027pt;}
.hc{height:59.880494pt;}
.he{height:59.892760pt;}
.hd{height:59.929027pt;}
.h14{height:59.965294pt;}
.h10{height:59.990360pt;}
.h2{height:64.941406pt;}
.h7{height:69.052083pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h8{height:131.746094pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:73.429067pt;}
.x7{left:74.325600pt;}
.x1{left:75.590533pt;}
.x5{left:87.910933pt;}
.x8{left:92.687600pt;}
.x6{left:93.936933pt;}
.x2{left:206.756800pt;}
.x3{left:207.831600pt;}
}




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