
    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_097f316f45e604d2ffe011ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7ca86a39555fcc381e9128c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_91f2ac72fc400c4ea75e354a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_654d37af23e6492673cbf7d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_26bc8bcb729fce9c208c391e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891113;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_cd4794b0bc183fe62aad066a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_2796b1b552051bf05606e1a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.087600px;}
.v1{vertical-align:9.163800px;}
.v2{vertical-align:23.976000px;}
.v4{vertical-align:43.200000px;}
.ls4{letter-spacing:-2.664000px;}
.ls7{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010800px;}
.ls3{letter-spacing:3.481800px;}
.ls1{letter-spacing:198.000000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws6a{word-spacing:-16.344000px;}
.ws65{word-spacing:-15.000000px;}
.ws81{word-spacing:-11.610000px;}
.ws21{word-spacing:-10.494000px;}
.ws86{word-spacing:-5.184000px;}
.ws56{word-spacing:-3.960000px;}
.ws60{word-spacing:-3.672000px;}
.ws26{word-spacing:-3.600000px;}
.ws74{word-spacing:-3.528000px;}
.ws7b{word-spacing:-3.456000px;}
.ws8{word-spacing:-3.384000px;}
.ws73{word-spacing:-3.312000px;}
.ws15{word-spacing:-3.240000px;}
.ws3e{word-spacing:-3.168000px;}
.ws50{word-spacing:-3.096000px;}
.ws72{word-spacing:-3.024000px;}
.ws1{word-spacing:-2.952000px;}
.ws61{word-spacing:-2.808000px;}
.wsf{word-spacing:-2.664000px;}
.ws52{word-spacing:-2.592000px;}
.ws12{word-spacing:-2.520000px;}
.wse{word-spacing:-2.376000px;}
.ws6b{word-spacing:-2.232000px;}
.ws37{word-spacing:-2.160000px;}
.ws6{word-spacing:-2.088000px;}
.ws39{word-spacing:-2.016000px;}
.ws11{word-spacing:-1.872000px;}
.ws48{word-spacing:-1.800000px;}
.ws1d{word-spacing:-1.728000px;}
.ws4e{word-spacing:-1.584000px;}
.ws5f{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.440000px;}
.ws3b{word-spacing:-1.368000px;}
.wsc{word-spacing:-1.296000px;}
.ws30{word-spacing:-1.224000px;}
.ws6e{word-spacing:-1.152000px;}
.ws64{word-spacing:-1.080000px;}
.ws53{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.792000px;}
.ws1c{word-spacing:-0.720000px;}
.ws4d{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.504000px;}
.ws18{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.216000px;}
.ws7a{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws59{word-spacing:0.072000px;}
.ws1a{word-spacing:0.144000px;}
.ws47{word-spacing:0.288000px;}
.ws5a{word-spacing:0.360000px;}
.wsa{word-spacing:0.432000px;}
.ws3f{word-spacing:0.504000px;}
.ws7d{word-spacing:0.576000px;}
.ws2e{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws16{word-spacing:0.792000px;}
.ws34{word-spacing:0.864000px;}
.ws2{word-spacing:0.936000px;}
.ws22{word-spacing:1.008000px;}
.ws5c{word-spacing:1.080000px;}
.ws4b{word-spacing:1.152000px;}
.ws2c{word-spacing:1.224000px;}
.ws66{word-spacing:1.296000px;}
.ws2a{word-spacing:1.368000px;}
.ws4a{word-spacing:1.440000px;}
.ws7c{word-spacing:1.512000px;}
.ws2d{word-spacing:1.584000px;}
.ws49{word-spacing:1.656000px;}
.ws4c{word-spacing:1.800000px;}
.ws43{word-spacing:1.872000px;}
.ws4f{word-spacing:1.944000px;}
.ws41{word-spacing:2.016000px;}
.ws57{word-spacing:2.088000px;}
.ws75{word-spacing:2.160000px;}
.ws23{word-spacing:2.232000px;}
.ws10{word-spacing:2.376000px;}
.ws33{word-spacing:2.448000px;}
.ws27{word-spacing:2.520000px;}
.ws3c{word-spacing:2.592000px;}
.ws25{word-spacing:2.664000px;}
.wsd{word-spacing:2.808000px;}
.ws46{word-spacing:2.880000px;}
.ws3a{word-spacing:2.952000px;}
.ws7e{word-spacing:3.024000px;}
.ws1f{word-spacing:3.096000px;}
.ws76{word-spacing:3.168000px;}
.ws13{word-spacing:3.240000px;}
.ws24{word-spacing:3.312000px;}
.ws5b{word-spacing:3.384000px;}
.ws14{word-spacing:3.456000px;}
.ws55{word-spacing:3.528000px;}
.ws58{word-spacing:3.600000px;}
.ws69{word-spacing:3.672000px;}
.ws20{word-spacing:3.744000px;}
.ws40{word-spacing:3.960000px;}
.ws3{word-spacing:4.032000px;}
.ws6c{word-spacing:4.104000px;}
.ws68{word-spacing:4.176000px;}
.ws7f{word-spacing:4.248000px;}
.ws7{word-spacing:4.320000px;}
.ws5{word-spacing:4.392000px;}
.ws79{word-spacing:4.464000px;}
.ws28{word-spacing:4.536000px;}
.ws3d{word-spacing:4.608000px;}
.ws6d{word-spacing:4.752000px;}
.ws19{word-spacing:4.824000px;}
.ws32{word-spacing:4.896000px;}
.ws5d{word-spacing:5.112000px;}
.ws35{word-spacing:5.472000px;}
.ws78{word-spacing:5.688000px;}
.ws71{word-spacing:5.760000px;}
.ws54{word-spacing:6.048000px;}
.ws36{word-spacing:6.192000px;}
.ws51{word-spacing:6.264000px;}
.ws67{word-spacing:6.336000px;}
.ws62{word-spacing:6.408000px;}
.ws4{word-spacing:6.480000px;}
.ws38{word-spacing:6.624000px;}
.ws63{word-spacing:6.768000px;}
.ws85{word-spacing:8.136000px;}
.ws2b{word-spacing:8.280000px;}
.ws2f{word-spacing:8.352000px;}
.ws42{word-spacing:8.424000px;}
.ws45{word-spacing:8.640000px;}
.ws77{word-spacing:9.432000px;}
.ws6f{word-spacing:9.504000px;}
.ws70{word-spacing:9.720000px;}
.ws84{word-spacing:12.096000px;}
.ws80{word-spacing:34.915200px;}
.ws82{word-spacing:115.597800px;}
.ws83{word-spacing:429.347400px;}
._9{margin-left:-17.656800px;}
._8{margin-left:-15.624000px;}
._3{margin-left:-9.244800px;}
._13{margin-left:-8.092800px;}
._2{margin-left:-6.825600px;}
._6{margin-left:-5.757600px;}
._4{margin-left:-3.910800px;}
._1{margin-left:-2.541600px;}
._0{margin-left:-1.303200px;}
._5{width:1.036800px;}
._e{width:2.253600px;}
._7{width:3.355200px;}
._b{width:4.429800px;}
._d{width:6.067800px;}
._10{width:7.315200px;}
._14{width:8.431200px;}
._15{width:9.928800px;}
._1c{width:55.542600px;}
._1d{width:61.193400px;}
._23{width:71.013600px;}
._39{width:72.394800px;}
._36{width:75.007200px;}
._1e{width:98.538000px;}
._27{width:110.327400px;}
._20{width:114.522600px;}
._1f{width:120.369000px;}
._31{width:128.327400px;}
._22{width:141.821400px;}
._21{width:146.816400px;}
._f{width:162.000000px;}
._16{width:163.296000px;}
._11{width:165.096000px;}
._12{width:198.000000px;}
._26{width:214.582200px;}
._29{width:232.582200px;}
._37{width:240.949200px;}
._24{width:256.939200px;}
._33{width:258.642600px;}
._2c{width:329.428800px;}
._19{width:340.297200px;}
._2d{width:367.346400px;}
._2a{width:378.391800px;}
._2e{width:389.328600px;}
._2f{width:399.325200px;}
._28{width:438.330600px;}
._c{width:446.125200px;}
._18{width:448.409400px;}
._a{width:474.410400px;}
._2b{width:480.342600px;}
._25{width:485.323200px;}
._32{width:537.367200px;}
._30{width:548.321400px;}
._1a{width:674.452200px;}
._1b{width:696.749400px;}
._38{width:788.322000px;}
._17{width:794.953800px;}
._34{width:900.270000px;}
._35{width:920.280000px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:41.732100px;}
.y2e{bottom:85.039350px;}
.y78{bottom:87.724800px;}
.y18{bottom:88.077000px;}
.y6f{bottom:88.716450px;}
.yb4{bottom:95.460000px;}
.y8c{bottom:97.795350px;}
.y37{bottom:98.850150px;}
.y8e{bottom:99.544650px;}
.y7f{bottom:102.276750px;}
.y28{bottom:102.450300px;}
.y83{bottom:105.253200px;}
.y17{bottom:106.077000px;}
.y2d{bottom:106.639350px;}
.y62{bottom:111.039300px;}
.y6e{bottom:121.116450px;}
.y82{bottom:123.253200px;}
.y2c{bottom:128.239350px;}
.y27{bottom:134.850150px;}
.y81{bottom:141.253200px;}
.y61{bottom:143.439300px;}
.y91{bottom:143.581050px;}
.y90{bottom:145.740300px;}
.y3f{bottom:146.250150px;}
.y31{bottom:149.839350px;}
.y34{bottom:152.293650px;}
.y6d{bottom:153.516450px;}
.y8d{bottom:156.162000px;}
.yb3{bottom:159.548850px;}
.y39{bottom:160.443300px;}
.y8f{bottom:166.489800px;}
.y26{bottom:167.250150px;}
.y33{bottom:170.293650px;}
.y30{bottom:171.439350px;}
.y60{bottom:175.839300px;}
.y38{bottom:178.443300px;}
.y3e{bottom:178.650300px;}
.y32{bottom:182.052750px;}
.y6c{bottom:185.916450px;}
.yb2{bottom:191.574900px;}
.y2f{bottom:193.039350px;}
.y25{bottom:199.650300px;}
.y77{bottom:200.098050px;}
.y3d{bottom:211.050150px;}
.y6b{bottom:218.316450px;}
.yb1{bottom:219.828000px;}
.yc9{bottom:232.032600px;}
.y2b{bottom:232.050150px;}
.y92{bottom:236.256000px;}
.y5f{bottom:240.639150px;}
.yb0{bottom:241.428150px;}
.y3c{bottom:243.450300px;}
.y6a{bottom:250.716450px;}
.yaf{bottom:263.028150px;}
.yc8{bottom:264.432750px;}
.y24{bottom:264.450300px;}
.y5e{bottom:273.039300px;}
.y3b{bottom:275.850150px;}
.y69{bottom:283.116450px;}
.yae{bottom:287.508600px;}
.yc7{bottom:296.832600px;}
.y23{bottom:296.850150px;}
.y5d{bottom:305.439300px;}
.y8a{bottom:306.901200px;}
.y3a{bottom:308.250150px;}
.yad{bottom:309.108600px;}
.y68{bottom:315.516450px;}
.y80{bottom:319.127100px;}
.yc6{bottom:329.232600px;}
.y22{bottom:329.250150px;}
.yac{bottom:330.708600px;}
.y5c{bottom:337.839300px;}
.y67{bottom:347.916450px;}
.yab{bottom:355.189050px;}
.yc5{bottom:361.632600px;}
.y21{bottom:361.650300px;}
.y41{bottom:366.238500px;}
.y5b{bottom:370.239300px;}
.yaa{bottom:376.789050px;}
.y7e{bottom:379.443900px;}
.y66{bottom:380.316450px;}
.y40{bottom:384.238500px;}
.yc4{bottom:394.032600px;}
.y20{bottom:394.050150px;}
.y7d{bottom:397.443900px;}
.ya8{bottom:401.269500px;}
.y5a{bottom:402.639150px;}
.y48{bottom:411.450150px;}
.ya7{bottom:412.069500px;}
.y65{bottom:412.716450px;}
.y16{bottom:414.450150px;}
.ya9{bottom:422.869500px;}
.y1f{bottom:426.450150px;}
.y59{bottom:435.039300px;}
.y84{bottom:437.632200px;}
.y42{bottom:445.957800px;}
.y15{bottom:446.850150px;}
.yc3{bottom:458.832600px;}
.y1e{bottom:458.850150px;}
.ya6{bottom:468.659850px;}
.y58{bottom:469.650300px;}
.y14{bottom:479.250300px;}
.y64{bottom:485.235600px;}
.yc2{bottom:491.232600px;}
.y2a{bottom:491.250300px;}
.y63{bottom:507.276750px;}
.y75{bottom:507.960450px;}
.y13{bottom:511.650300px;}
.ya5{bottom:514.243950px;}
.yc1{bottom:523.632600px;}
.y29{bottom:523.650300px;}
.y57{bottom:534.450150px;}
.y74{bottom:540.360450px;}
.y12{bottom:544.050150px;}
.ya4{bottom:546.270000px;}
.yc0{bottom:556.032600px;}
.y10{bottom:556.050150px;}
.y36{bottom:556.977900px;}
.y8b{bottom:557.409000px;}
.y56{bottom:566.850150px;}
.y73{bottom:572.760450px;}
.y47{bottom:573.450150px;}
.y35{bottom:574.977900px;}
.y11{bottom:576.450150px;}
.ya3{bottom:578.296050px;}
.ybf{bottom:588.432600px;}
.y1d{bottom:588.450150px;}
.y55{bottom:599.250300px;}
.y72{bottom:605.160450px;}
.y46{bottom:605.850150px;}
.ya2{bottom:610.401000px;}
.ybe{bottom:620.832600px;}
.y1c{bottom:620.850150px;}
.y54{bottom:631.650300px;}
.y71{bottom:637.560450px;}
.y45{bottom:638.250300px;}
.ya1{bottom:638.654250px;}
.y19{bottom:642.835350px;}
.ybd{bottom:653.232600px;}
.yd{bottom:653.250300px;}
.ya0{bottom:660.254250px;}
.y53{bottom:664.050150px;}
.y70{bottom:669.960450px;}
.y44{bottom:670.650300px;}
.ybc{bottom:685.632600px;}
.yc{bottom:685.650300px;}
.y1b{bottom:685.868400px;}
.y9f{bottom:688.507500px;}
.y52{bottom:696.450150px;}
.y43{bottom:703.050150px;}
.ybb{bottom:718.032600px;}
.yb{bottom:718.050150px;}
.y9e{bottom:720.533550px;}
.y51{bottom:728.850150px;}
.y76{bottom:743.227050px;}
.yba{bottom:750.432600px;}
.ya{bottom:750.450150px;}
.y9d{bottom:752.559450px;}
.y50{bottom:761.250300px;}
.y49{bottom:763.372350px;}
.y9{bottom:782.850150px;}
.y9c{bottom:784.585350px;}
.y4f{bottom:793.650300px;}
.yb9{bottom:815.232600px;}
.y8{bottom:815.250150px;}
.y9b{bottom:816.611400px;}
.y4e{bottom:826.050150px;}
.yb8{bottom:847.632600px;}
.y7{bottom:847.650300px;}
.y9a{bottom:848.637300px;}
.y4d{bottom:858.450300px;}
.yb7{bottom:880.032600px;}
.y6{bottom:880.050150px;}
.y99{bottom:880.663350px;}
.yb6{bottom:912.432750px;}
.y5{bottom:912.450300px;}
.y98{bottom:912.689250px;}
.y4c{bottom:923.250150px;}
.y97{bottom:944.715300px;}
.yb5{bottom:944.832600px;}
.y4{bottom:944.850150px;}
.y7c{bottom:944.850300px;}
.y4b{bottom:955.650300px;}
.y88{bottom:977.232600px;}
.y3{bottom:977.250150px;}
.y7b{bottom:977.250300px;}
.y95{bottom:979.973400px;}
.y4a{bottom:988.050150px;}
.y94{bottom:990.773400px;}
.y96{bottom:1001.573400px;}
.y87{bottom:1009.632600px;}
.y2{bottom:1009.650300px;}
.y86{bottom:1042.032600px;}
.yf{bottom:1042.050150px;}
.y7a{bottom:1042.050300px;}
.y93{bottom:1054.368750px;}
.y89{bottom:1074.432750px;}
.y1a{bottom:1074.450300px;}
.y85{bottom:1106.832600px;}
.y1{bottom:1106.850150px;}
.y79{bottom:1106.850300px;}
.hb{height:36.852539px;}
.h9{height:41.689453px;}
.hc{height:43.794000px;}
.hd{height:49.289062px;}
.h3{height:50.027344px;}
.h8{height:52.646484px;}
.h5{height:52.792969px;}
.ha{height:55.734084px;}
.h7{height:58.392000px;}
.h6{height:61.956769px;}
.h2{height:63.175781px;}
.h4{height:63.351562px;}
.he{height:92.489063px;}
.hf{height:106.375781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x10{left:95.003700px;}
.x4{left:98.858250px;}
.xb{left:108.779550px;}
.xd{left:110.642550px;}
.x7{left:116.202750px;}
.x9{left:141.980250px;}
.x18{left:181.124250px;}
.x39{left:202.370250px;}
.x2e{left:210.065100px;}
.x2f{left:226.430250px;}
.x27{left:227.955150px;}
.x30{left:231.435750px;}
.x2c{left:234.938100px;}
.x28{left:237.429750px;}
.x25{left:240.176400px;}
.x1f{left:241.332150px;}
.x29{left:242.914200px;}
.x33{left:244.092000px;}
.x2a{left:249.919050px;}
.x24{left:255.161700px;}
.x34{left:256.840500px;}
.x38{left:259.090500px;}
.x36{left:263.590500px;}
.x26{left:265.664700px;}
.x23{left:266.921550px;}
.x35{left:268.345350px;}
.x2d{left:279.920550px;}
.x2b{left:287.154000px;}
.x32{left:290.768100px;}
.x17{left:306.672000px;}
.xc{left:346.411350px;}
.x6{left:348.178500px;}
.x19{left:361.292700px;}
.x12{left:375.236100px;}
.x16{left:395.433000px;}
.x14{left:397.589550px;}
.x1a{left:419.403000px;}
.x11{left:422.490600px;}
.xe{left:429.853350px;}
.x31{left:431.618550px;}
.x5{left:437.456700px;}
.x2{left:441.956700px;}
.x8{left:452.001900px;}
.x20{left:471.471000px;}
.xa{left:477.637800px;}
.xf{left:479.025300px;}
.x15{left:484.724400px;}
.x37{left:488.161350px;}
.x1b{left:536.686350px;}
.x22{left:549.857850px;}
.x21{left:551.554200px;}
.x3a{left:552.569250px;}
.x3{left:581.456700px;}
.x13{left:591.762750px;}
.x1c{left:597.985650px;}
.x1d{left:656.095800px;}
.x1e{left:714.206100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.744533pt;}
.v1{vertical-align:8.145600pt;}
.v2{vertical-align:21.312000pt;}
.v4{vertical-align:38.400000pt;}
.ls4{letter-spacing:-2.368000pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009600pt;}
.ls3{letter-spacing:3.094933pt;}
.ls1{letter-spacing:176.000000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws6a{word-spacing:-14.528000pt;}
.ws65{word-spacing:-13.333333pt;}
.ws81{word-spacing:-10.320000pt;}
.ws21{word-spacing:-9.328000pt;}
.ws86{word-spacing:-4.608000pt;}
.ws56{word-spacing:-3.520000pt;}
.ws60{word-spacing:-3.264000pt;}
.ws26{word-spacing:-3.200000pt;}
.ws74{word-spacing:-3.136000pt;}
.ws7b{word-spacing:-3.072000pt;}
.ws8{word-spacing:-3.008000pt;}
.ws73{word-spacing:-2.944000pt;}
.ws15{word-spacing:-2.880000pt;}
.ws3e{word-spacing:-2.816000pt;}
.ws50{word-spacing:-2.752000pt;}
.ws72{word-spacing:-2.688000pt;}
.ws1{word-spacing:-2.624000pt;}
.ws61{word-spacing:-2.496000pt;}
.wsf{word-spacing:-2.368000pt;}
.ws52{word-spacing:-2.304000pt;}
.ws12{word-spacing:-2.240000pt;}
.wse{word-spacing:-2.112000pt;}
.ws6b{word-spacing:-1.984000pt;}
.ws37{word-spacing:-1.920000pt;}
.ws6{word-spacing:-1.856000pt;}
.ws39{word-spacing:-1.792000pt;}
.ws11{word-spacing:-1.664000pt;}
.ws48{word-spacing:-1.600000pt;}
.ws1d{word-spacing:-1.536000pt;}
.ws4e{word-spacing:-1.408000pt;}
.ws5f{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws3b{word-spacing:-1.216000pt;}
.wsc{word-spacing:-1.152000pt;}
.ws30{word-spacing:-1.088000pt;}
.ws6e{word-spacing:-1.024000pt;}
.ws64{word-spacing:-0.960000pt;}
.ws53{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.704000pt;}
.ws1c{word-spacing:-0.640000pt;}
.ws4d{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws18{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws7a{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws59{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws47{word-spacing:0.256000pt;}
.ws5a{word-spacing:0.320000pt;}
.wsa{word-spacing:0.384000pt;}
.ws3f{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.512000pt;}
.ws2e{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws16{word-spacing:0.704000pt;}
.ws34{word-spacing:0.768000pt;}
.ws2{word-spacing:0.832000pt;}
.ws22{word-spacing:0.896000pt;}
.ws5c{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.024000pt;}
.ws2c{word-spacing:1.088000pt;}
.ws66{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.216000pt;}
.ws4a{word-spacing:1.280000pt;}
.ws7c{word-spacing:1.344000pt;}
.ws2d{word-spacing:1.408000pt;}
.ws49{word-spacing:1.472000pt;}
.ws4c{word-spacing:1.600000pt;}
.ws43{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.728000pt;}
.ws41{word-spacing:1.792000pt;}
.ws57{word-spacing:1.856000pt;}
.ws75{word-spacing:1.920000pt;}
.ws23{word-spacing:1.984000pt;}
.ws10{word-spacing:2.112000pt;}
.ws33{word-spacing:2.176000pt;}
.ws27{word-spacing:2.240000pt;}
.ws3c{word-spacing:2.304000pt;}
.ws25{word-spacing:2.368000pt;}
.wsd{word-spacing:2.496000pt;}
.ws46{word-spacing:2.560000pt;}
.ws3a{word-spacing:2.624000pt;}
.ws7e{word-spacing:2.688000pt;}
.ws1f{word-spacing:2.752000pt;}
.ws76{word-spacing:2.816000pt;}
.ws13{word-spacing:2.880000pt;}
.ws24{word-spacing:2.944000pt;}
.ws5b{word-spacing:3.008000pt;}
.ws14{word-spacing:3.072000pt;}
.ws55{word-spacing:3.136000pt;}
.ws58{word-spacing:3.200000pt;}
.ws69{word-spacing:3.264000pt;}
.ws20{word-spacing:3.328000pt;}
.ws40{word-spacing:3.520000pt;}
.ws3{word-spacing:3.584000pt;}
.ws6c{word-spacing:3.648000pt;}
.ws68{word-spacing:3.712000pt;}
.ws7f{word-spacing:3.776000pt;}
.ws7{word-spacing:3.840000pt;}
.ws5{word-spacing:3.904000pt;}
.ws79{word-spacing:3.968000pt;}
.ws28{word-spacing:4.032000pt;}
.ws3d{word-spacing:4.096000pt;}
.ws6d{word-spacing:4.224000pt;}
.ws19{word-spacing:4.288000pt;}
.ws32{word-spacing:4.352000pt;}
.ws5d{word-spacing:4.544000pt;}
.ws35{word-spacing:4.864000pt;}
.ws78{word-spacing:5.056000pt;}
.ws71{word-spacing:5.120000pt;}
.ws54{word-spacing:5.376000pt;}
.ws36{word-spacing:5.504000pt;}
.ws51{word-spacing:5.568000pt;}
.ws67{word-spacing:5.632000pt;}
.ws62{word-spacing:5.696000pt;}
.ws4{word-spacing:5.760000pt;}
.ws38{word-spacing:5.888000pt;}
.ws63{word-spacing:6.016000pt;}
.ws85{word-spacing:7.232000pt;}
.ws2b{word-spacing:7.360000pt;}
.ws2f{word-spacing:7.424000pt;}
.ws42{word-spacing:7.488000pt;}
.ws45{word-spacing:7.680000pt;}
.ws77{word-spacing:8.384000pt;}
.ws6f{word-spacing:8.448000pt;}
.ws70{word-spacing:8.640000pt;}
.ws84{word-spacing:10.752000pt;}
.ws80{word-spacing:31.035733pt;}
.ws82{word-spacing:102.753600pt;}
.ws83{word-spacing:381.642133pt;}
._9{margin-left:-15.694933pt;}
._8{margin-left:-13.888000pt;}
._3{margin-left:-8.217600pt;}
._13{margin-left:-7.193600pt;}
._2{margin-left:-6.067200pt;}
._6{margin-left:-5.117867pt;}
._4{margin-left:-3.476267pt;}
._1{margin-left:-2.259200pt;}
._0{margin-left:-1.158400pt;}
._5{width:0.921600pt;}
._e{width:2.003200pt;}
._7{width:2.982400pt;}
._b{width:3.937600pt;}
._d{width:5.393600pt;}
._10{width:6.502400pt;}
._14{width:7.494400pt;}
._15{width:8.825600pt;}
._1c{width:49.371200pt;}
._1d{width:54.394133pt;}
._23{width:63.123200pt;}
._39{width:64.350933pt;}
._36{width:66.673067pt;}
._1e{width:87.589333pt;}
._27{width:98.068800pt;}
._20{width:101.797867pt;}
._1f{width:106.994667pt;}
._31{width:114.068800pt;}
._22{width:126.063467pt;}
._21{width:130.503467pt;}
._f{width:144.000000pt;}
._16{width:145.152000pt;}
._11{width:146.752000pt;}
._12{width:176.000000pt;}
._26{width:190.739733pt;}
._29{width:206.739733pt;}
._37{width:214.177067pt;}
._24{width:228.390400pt;}
._33{width:229.904533pt;}
._2c{width:292.825600pt;}
._19{width:302.486400pt;}
._2d{width:326.530133pt;}
._2a{width:336.348267pt;}
._2e{width:346.069867pt;}
._2f{width:354.955733pt;}
._28{width:389.627200pt;}
._c{width:396.555733pt;}
._18{width:398.586133pt;}
._a{width:421.698133pt;}
._2b{width:426.971200pt;}
._25{width:431.398400pt;}
._32{width:477.659733pt;}
._30{width:487.396800pt;}
._1a{width:599.513067pt;}
._1b{width:619.332800pt;}
._38{width:700.730667pt;}
._17{width:706.625600pt;}
._34{width:800.240000pt;}
._35{width:818.026667pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:37.095200pt;}
.y2e{bottom:75.590533pt;}
.y78{bottom:77.977600pt;}
.y18{bottom:78.290667pt;}
.y6f{bottom:78.859067pt;}
.yb4{bottom:84.853333pt;}
.y8c{bottom:86.929200pt;}
.y37{bottom:87.866800pt;}
.y8e{bottom:88.484133pt;}
.y7f{bottom:90.912667pt;}
.y28{bottom:91.066933pt;}
.y83{bottom:93.558400pt;}
.y17{bottom:94.290667pt;}
.y2d{bottom:94.790533pt;}
.y62{bottom:98.701600pt;}
.y6e{bottom:107.659067pt;}
.y82{bottom:109.558400pt;}
.y2c{bottom:113.990533pt;}
.y27{bottom:119.866800pt;}
.y81{bottom:125.558400pt;}
.y61{bottom:127.501600pt;}
.y91{bottom:127.627600pt;}
.y90{bottom:129.546933pt;}
.y3f{bottom:130.000133pt;}
.y31{bottom:133.190533pt;}
.y34{bottom:135.372133pt;}
.y6d{bottom:136.459067pt;}
.y8d{bottom:138.810667pt;}
.yb3{bottom:141.821200pt;}
.y39{bottom:142.616267pt;}
.y8f{bottom:147.990933pt;}
.y26{bottom:148.666800pt;}
.y33{bottom:151.372133pt;}
.y30{bottom:152.390533pt;}
.y60{bottom:156.301600pt;}
.y38{bottom:158.616267pt;}
.y3e{bottom:158.800267pt;}
.y32{bottom:161.824667pt;}
.y6c{bottom:165.259067pt;}
.yb2{bottom:170.288800pt;}
.y2f{bottom:171.590533pt;}
.y25{bottom:177.466933pt;}
.y77{bottom:177.864933pt;}
.y3d{bottom:187.600133pt;}
.y6b{bottom:194.059067pt;}
.yb1{bottom:195.402667pt;}
.yc9{bottom:206.251200pt;}
.y2b{bottom:206.266800pt;}
.y92{bottom:210.005333pt;}
.y5f{bottom:213.901467pt;}
.yb0{bottom:214.602800pt;}
.y3c{bottom:216.400267pt;}
.y6a{bottom:222.859067pt;}
.yaf{bottom:233.802800pt;}
.yc8{bottom:235.051333pt;}
.y24{bottom:235.066933pt;}
.y5e{bottom:242.701600pt;}
.y3b{bottom:245.200133pt;}
.y69{bottom:251.659067pt;}
.yae{bottom:255.563200pt;}
.yc7{bottom:263.851200pt;}
.y23{bottom:263.866800pt;}
.y5d{bottom:271.501600pt;}
.y8a{bottom:272.801067pt;}
.y3a{bottom:274.000133pt;}
.yad{bottom:274.763200pt;}
.y68{bottom:280.459067pt;}
.y80{bottom:283.668533pt;}
.yc6{bottom:292.651200pt;}
.y22{bottom:292.666800pt;}
.yac{bottom:293.963200pt;}
.y5c{bottom:300.301600pt;}
.y67{bottom:309.259067pt;}
.yab{bottom:315.723600pt;}
.yc5{bottom:321.451200pt;}
.y21{bottom:321.466933pt;}
.y41{bottom:325.545333pt;}
.y5b{bottom:329.101600pt;}
.yaa{bottom:334.923600pt;}
.y7e{bottom:337.283467pt;}
.y66{bottom:338.059067pt;}
.y40{bottom:341.545333pt;}
.yc4{bottom:350.251200pt;}
.y20{bottom:350.266800pt;}
.y7d{bottom:353.283467pt;}
.ya8{bottom:356.684000pt;}
.y5a{bottom:357.901467pt;}
.y48{bottom:365.733467pt;}
.ya7{bottom:366.284000pt;}
.y65{bottom:366.859067pt;}
.y16{bottom:368.400133pt;}
.ya9{bottom:375.884000pt;}
.y1f{bottom:379.066800pt;}
.y59{bottom:386.701600pt;}
.y84{bottom:389.006400pt;}
.y42{bottom:396.406933pt;}
.y15{bottom:397.200133pt;}
.yc3{bottom:407.851200pt;}
.y1e{bottom:407.866800pt;}
.ya6{bottom:416.586533pt;}
.y58{bottom:417.466933pt;}
.y14{bottom:426.000267pt;}
.y64{bottom:431.320533pt;}
.yc2{bottom:436.651200pt;}
.y2a{bottom:436.666933pt;}
.y63{bottom:450.912667pt;}
.y75{bottom:451.520400pt;}
.y13{bottom:454.800267pt;}
.ya5{bottom:457.105733pt;}
.yc1{bottom:465.451200pt;}
.y29{bottom:465.466933pt;}
.y57{bottom:475.066800pt;}
.y74{bottom:480.320400pt;}
.y12{bottom:483.600133pt;}
.ya4{bottom:485.573333pt;}
.yc0{bottom:494.251200pt;}
.y10{bottom:494.266800pt;}
.y36{bottom:495.091467pt;}
.y8b{bottom:495.474667pt;}
.y56{bottom:503.866800pt;}
.y73{bottom:509.120400pt;}
.y47{bottom:509.733467pt;}
.y35{bottom:511.091467pt;}
.y11{bottom:512.400133pt;}
.ya3{bottom:514.040933pt;}
.ybf{bottom:523.051200pt;}
.y1d{bottom:523.066800pt;}
.y55{bottom:532.666933pt;}
.y72{bottom:537.920400pt;}
.y46{bottom:538.533467pt;}
.ya2{bottom:542.578667pt;}
.ybe{bottom:551.851200pt;}
.y1c{bottom:551.866800pt;}
.y54{bottom:561.466933pt;}
.y71{bottom:566.720400pt;}
.y45{bottom:567.333600pt;}
.ya1{bottom:567.692667pt;}
.y19{bottom:571.409200pt;}
.ybd{bottom:580.651200pt;}
.yd{bottom:580.666933pt;}
.ya0{bottom:586.892667pt;}
.y53{bottom:590.266800pt;}
.y70{bottom:595.520400pt;}
.y44{bottom:596.133600pt;}
.ybc{bottom:609.451200pt;}
.yc{bottom:609.466933pt;}
.y1b{bottom:609.660800pt;}
.y9f{bottom:612.006667pt;}
.y52{bottom:619.066800pt;}
.y43{bottom:624.933467pt;}
.ybb{bottom:638.251200pt;}
.yb{bottom:638.266800pt;}
.y9e{bottom:640.474267pt;}
.y51{bottom:647.866800pt;}
.y76{bottom:660.646267pt;}
.yba{bottom:667.051200pt;}
.ya{bottom:667.066800pt;}
.y9d{bottom:668.941733pt;}
.y50{bottom:676.666933pt;}
.y49{bottom:678.553200pt;}
.y9{bottom:695.866800pt;}
.y9c{bottom:697.409200pt;}
.y4f{bottom:705.466933pt;}
.yb9{bottom:724.651200pt;}
.y8{bottom:724.666800pt;}
.y9b{bottom:725.876800pt;}
.y4e{bottom:734.266800pt;}
.yb8{bottom:753.451200pt;}
.y7{bottom:753.466933pt;}
.y9a{bottom:754.344267pt;}
.y4d{bottom:763.066933pt;}
.yb7{bottom:782.251200pt;}
.y6{bottom:782.266800pt;}
.y99{bottom:782.811867pt;}
.yb6{bottom:811.051333pt;}
.y5{bottom:811.066933pt;}
.y98{bottom:811.279333pt;}
.y4c{bottom:820.666800pt;}
.y97{bottom:839.746933pt;}
.yb5{bottom:839.851200pt;}
.y4{bottom:839.866800pt;}
.y7c{bottom:839.866933pt;}
.y4b{bottom:849.466933pt;}
.y88{bottom:868.651200pt;}
.y3{bottom:868.666800pt;}
.y7b{bottom:868.666933pt;}
.y95{bottom:871.087467pt;}
.y4a{bottom:878.266800pt;}
.y94{bottom:880.687467pt;}
.y96{bottom:890.287467pt;}
.y87{bottom:897.451200pt;}
.y2{bottom:897.466933pt;}
.y86{bottom:926.251200pt;}
.yf{bottom:926.266800pt;}
.y7a{bottom:926.266933pt;}
.y93{bottom:937.216667pt;}
.y89{bottom:955.051333pt;}
.y1a{bottom:955.066933pt;}
.y85{bottom:983.851200pt;}
.y1{bottom:983.866800pt;}
.y79{bottom:983.866933pt;}
.hb{height:32.757812pt;}
.h9{height:37.057292pt;}
.hc{height:38.928000pt;}
.hd{height:43.812500pt;}
.h3{height:44.468750pt;}
.h8{height:46.796875pt;}
.h5{height:46.927083pt;}
.ha{height:49.541408pt;}
.h7{height:51.904000pt;}
.h6{height:55.072683pt;}
.h2{height:56.156250pt;}
.h4{height:56.312500pt;}
.he{height:82.212500pt;}
.hf{height:94.556250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x10{left:84.447733pt;}
.x4{left:87.874000pt;}
.xb{left:96.692933pt;}
.xd{left:98.348933pt;}
.x7{left:103.291333pt;}
.x9{left:126.204667pt;}
.x18{left:160.999333pt;}
.x39{left:179.884667pt;}
.x2e{left:186.724533pt;}
.x2f{left:201.271333pt;}
.x27{left:202.626800pt;}
.x30{left:205.720667pt;}
.x2c{left:208.833867pt;}
.x28{left:211.048667pt;}
.x25{left:213.490133pt;}
.x1f{left:214.517467pt;}
.x29{left:215.923733pt;}
.x33{left:216.970667pt;}
.x2a{left:222.150267pt;}
.x24{left:226.810400pt;}
.x34{left:228.302667pt;}
.x38{left:230.302667pt;}
.x36{left:234.302667pt;}
.x26{left:236.146400pt;}
.x23{left:237.263600pt;}
.x35{left:238.529200pt;}
.x2d{left:248.818267pt;}
.x2b{left:255.248000pt;}
.x32{left:258.460533pt;}
.x17{left:272.597333pt;}
.xc{left:307.921200pt;}
.x6{left:309.492000pt;}
.x19{left:321.149067pt;}
.x12{left:333.543200pt;}
.x16{left:351.496000pt;}
.x14{left:353.412933pt;}
.x1a{left:372.802667pt;}
.x11{left:375.547200pt;}
.xe{left:382.091867pt;}
.x31{left:383.660933pt;}
.x5{left:388.850400pt;}
.x2{left:392.850400pt;}
.x8{left:401.779467pt;}
.x20{left:419.085333pt;}
.xa{left:424.566933pt;}
.xf{left:425.800267pt;}
.x15{left:430.866133pt;}
.x37{left:433.921200pt;}
.x1b{left:477.054533pt;}
.x22{left:488.762533pt;}
.x21{left:490.270400pt;}
.x3a{left:491.172667pt;}
.x3{left:516.850400pt;}
.x13{left:526.011333pt;}
.x1c{left:531.542800pt;}
.x1d{left:583.196267pt;}
.x1e{left:634.849867pt;}
}




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