
    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_3657da65a18a9937bd338613.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_4c070b9b97f45459accf0405.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_16a244e410055cdbfa3b2fce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_12f435a9a724a3afda580a8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_1f943b8f8ecca88161329b84.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_5eebe1afe6a104ccf4a0da51.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_ac1dbbf738e30da2a0c3add7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8523436404e1a8a98c0db50d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964860;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b249c646a4c0fd1a45deac35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b3f10cf6cd8c711272bf8ea3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_851dd5c5726d609ac76e339f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_42cfaf7c31d157c79d8f8c56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls6{letter-spacing:-2.244000px;}
.ls4{letter-spacing:-2.040000px;}
.ls5{letter-spacing:-1.530000px;}
.ls8{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.096000px;}
.lse{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.326000px;}
.lsb{letter-spacing:1.410000px;}
.lsc{letter-spacing:4.989600px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws4{word-spacing:-17.928000px;}
.ws7a{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.880000px;}
.ws5{word-spacing:-14.700000px;}
.ws7b{word-spacing:-13.392000px;}
.ws7c{word-spacing:-13.230000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.150000px;}
.ws1{word-spacing:-10.896000px;}
.ws2{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws20{word-spacing:-8.675040px;}
.ws6a{word-spacing:-4.920000px;}
.ws19{word-spacing:-3.960000px;}
.ws7e{word-spacing:-3.672000px;}
.ws67{word-spacing:-3.360000px;}
.ws68{word-spacing:-2.820000px;}
.ws36{word-spacing:-2.760000px;}
.ws44{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.646000px;}
.ws48{word-spacing:-2.592000px;}
.ws5d{word-spacing:-2.520000px;}
.ws73{word-spacing:-2.460000px;}
.ws64{word-spacing:-2.280000px;}
.ws4b{word-spacing:-2.220000px;}
.ws60{word-spacing:-2.160000px;}
.ws6b{word-spacing:-2.100000px;}
.ws5c{word-spacing:-1.920000px;}
.ws16{word-spacing:-1.566000px;}
.ws23{word-spacing:-1.560000px;}
.ws2a{word-spacing:-1.500000px;}
.ws7d{word-spacing:-1.458000px;}
.ws3d{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.320000px;}
.ws41{word-spacing:-1.080000px;}
.ws1e{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.840000px;}
.ws37{word-spacing:-0.660000px;}
.ws45{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.510000px;}
.ws50{word-spacing:-0.480000px;}
.ws62{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.300000px;}
.wsc{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.180000px;}
.ws8{word-spacing:0.000000px;}
.ws66{word-spacing:0.060000px;}
.wsb{word-spacing:0.096000px;}
.wsa{word-spacing:0.204000px;}
.ws4c{word-spacing:0.240000px;}
.ws75{word-spacing:0.360000px;}
.ws58{word-spacing:0.480000px;}
.ws47{word-spacing:0.540000px;}
.ws24{word-spacing:0.600000px;}
.wsd{word-spacing:0.691200px;}
.ws15{word-spacing:0.918000px;}
.ws14{word-spacing:0.972000px;}
.ws42{word-spacing:1.080000px;}
.ws5b{word-spacing:1.200000px;}
.ws3e{word-spacing:1.380000px;}
.ws40{word-spacing:1.560000px;}
.ws70{word-spacing:1.800000px;}
.ws54{word-spacing:1.860000px;}
.ws27{word-spacing:1.920000px;}
.ws1d{word-spacing:2.280000px;}
.ws35{word-spacing:2.340000px;}
.ws6e{word-spacing:2.520000px;}
.ws69{word-spacing:2.580000px;}
.ws4f{word-spacing:2.700000px;}
.ws71{word-spacing:2.820000px;}
.ws31{word-spacing:2.880000px;}
.ws30{word-spacing:2.940000px;}
.ws28{word-spacing:3.060000px;}
.ws29{word-spacing:3.120000px;}
.ws25{word-spacing:3.180000px;}
.ws6c{word-spacing:3.360000px;}
.ws21{word-spacing:3.540000px;}
.ws3b{word-spacing:3.600000px;}
.ws26{word-spacing:3.660000px;}
.ws57{word-spacing:3.780000px;}
.ws2f{word-spacing:3.840000px;}
.ws56{word-spacing:3.900000px;}
.ws39{word-spacing:3.960000px;}
.ws79{word-spacing:4.020000px;}
.ws4a{word-spacing:4.200000px;}
.ws49{word-spacing:4.260000px;}
.ws55{word-spacing:4.320000px;}
.ws1c{word-spacing:4.440000px;}
.ws6f{word-spacing:4.800000px;}
.ws53{word-spacing:4.914000px;}
.ws52{word-spacing:4.968000px;}
.ws51{word-spacing:5.022000px;}
.ws2b{word-spacing:5.040000px;}
.ws43{word-spacing:5.100000px;}
.ws4d{word-spacing:5.160000px;}
.ws1a{word-spacing:5.340000px;}
.ws3c{word-spacing:5.760000px;}
.ws7f{word-spacing:6.102000px;}
.ws1b{word-spacing:6.540000px;}
.ws65{word-spacing:6.720000px;}
.ws59{word-spacing:7.080000px;}
.ws5a{word-spacing:7.140000px;}
.ws22{word-spacing:7.800000px;}
.ws32{word-spacing:7.920000px;}
.ws4e{word-spacing:7.980000px;}
.ws13{word-spacing:8.262000px;}
.ws2e{word-spacing:8.760000px;}
.ws72{word-spacing:8.820000px;}
.ws82{word-spacing:8.964000px;}
.ws3a{word-spacing:9.240000px;}
.ws2d{word-spacing:9.360000px;}
.ws34{word-spacing:11.280000px;}
.ws12{word-spacing:11.664000px;}
.ws78{word-spacing:11.700000px;}
.ws6d{word-spacing:12.060000px;}
.ws17{word-spacing:13.230000px;}
.ws18{word-spacing:13.392000px;}
.ws5f{word-spacing:14.460000px;}
.ws5e{word-spacing:14.580000px;}
.ws11{word-spacing:14.796000px;}
.ws38{word-spacing:14.880000px;}
.wse{word-spacing:15.444000px;}
.ws10{word-spacing:18.036000px;}
.ws80{word-spacing:20.142000px;}
.ws81{word-spacing:20.358000px;}
.ws2c{word-spacing:30.540000px;}
.ws76{word-spacing:31.020000px;}
.ws77{word-spacing:31.320000px;}
._11{margin-left:-13.090800px;}
._5{margin-left:-10.590600px;}
._13{margin-left:-8.947800px;}
._7{margin-left:-7.538400px;}
._2{margin-left:-6.089400px;}
._e{margin-left:-4.756800px;}
._3{margin-left:-3.325200px;}
._0{margin-left:-1.948200px;}
._1{width:1.326000px;}
._4{width:2.886600px;}
._f{width:4.474200px;}
._10{width:5.643000px;}
._8{width:7.002600px;}
._9{width:8.449200px;}
._c{width:10.422000px;}
._b{width:11.738400px;}
._d{width:14.412600px;}
._1a{width:16.237800px;}
._19{width:17.253000px;}
._15{width:18.586800px;}
._a{width:19.774800px;}
._17{width:21.060000px;}
._16{width:22.231800px;}
._18{width:23.284800px;}
._12{width:31.278000px;}
._6{width:36.369600px;}
._14{width:43.086000px;}
.fc5{color:rgb(27,53,84);}
.fc4{color:rgb(27,54,84);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(118,176,227);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.040050px;}
.yf{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.ye{bottom:131.601450px;}
.y84{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.yd{bottom:145.997850px;}
.yb0{bottom:154.988850px;}
.y83{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.yc{bottom:160.397850px;}
.yaf{bottom:175.994850px;}
.y82{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.yae{bottom:197.000850px;}
.y81{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y38{bottom:203.456400px;}
.yad{bottom:218.006850px;}
.y80{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y37{bottom:221.451900px;}
.y25{bottom:222.212700px;}
.yac{bottom:239.012850px;}
.y7f{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.y36{bottom:239.447400px;}
.y24{bottom:243.212700px;}
.y92{bottom:253.441050px;}
.y35{bottom:257.442900px;}
.yab{bottom:260.018850px;}
.y7e{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.y34{bottom:275.438400px;}
.yaa{bottom:281.024850px;}
.y7d{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y33{bottom:293.433900px;}
.ya9{bottom:302.030850px;}
.y7c{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y32{bottom:311.429400px;}
.y21{bottom:319.344600px;}
.ya8{bottom:323.036850px;}
.y7b{bottom:323.078700px;}
.y61{bottom:323.078850px;}
.y31{bottom:329.424900px;}
.yd5{bottom:343.856850px;}
.ya7{bottom:344.042850px;}
.y7a{bottom:344.078700px;}
.y60{bottom:344.078850px;}
.y30{bottom:347.420400px;}
.yd4{bottom:364.862850px;}
.ya6{bottom:365.048850px;}
.y79{bottom:365.078700px;}
.y5f{bottom:365.078850px;}
.y2f{bottom:365.415900px;}
.yd3{bottom:385.868850px;}
.ya5{bottom:386.054850px;}
.y78{bottom:386.078700px;}
.y70{bottom:386.078850px;}
.y5e{bottom:399.513600px;}
.y2e{bottom:400.421400px;}
.yd2{bottom:406.874850px;}
.ya4{bottom:407.060850px;}
.y77{bottom:407.078700px;}
.y6f{bottom:407.078850px;}
.y20{bottom:412.627950px;}
.y2d{bottom:418.421400px;}
.yd1{bottom:427.880850px;}
.ya3{bottom:428.066850px;}
.y76{bottom:428.078700px;}
.y91{bottom:428.078850px;}
.y5d{bottom:431.811150px;}
.y2c{bottom:436.421400px;}
.y6e{bottom:441.513600px;}
.yd0{bottom:448.886850px;}
.ya2{bottom:449.072850px;}
.y75{bottom:449.078700px;}
.y90{bottom:449.078850px;}
.y1f{bottom:453.629400px;}
.y2b{bottom:454.421400px;}
.ycf{bottom:469.892850px;}
.y74{bottom:470.078700px;}
.y8f{bottom:470.078850px;}
.y1e{bottom:473.433900px;}
.y6d{bottom:473.811150px;}
.yce{bottom:490.898850px;}
.y73{bottom:491.078700px;}
.y5c{bottom:491.078850px;}
.y1d{bottom:493.238400px;}
.ya1{bottom:505.441050px;}
.ycd{bottom:511.904850px;}
.y72{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.y1c{bottom:513.042900px;}
.y1b{bottom:532.847400px;}
.ycc{bottom:532.910850px;}
.y8c{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.y71{bottom:544.464300px;}
.y1a{bottom:552.651900px;}
.ycb{bottom:553.916850px;}
.y8b{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y19{bottom:572.456400px;}
.yca{bottom:574.922850px;}
.y8a{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.ya0{bottom:580.529400px;}
.y87{bottom:589.915050px;}
.y18{bottom:592.260900px;}
.yc9{bottom:595.928850px;}
.y89{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y86{bottom:609.719550px;}
.y17{bottom:612.065400px;}
.yc8{bottom:616.934850px;}
.y9f{bottom:617.072850px;}
.y56{bottom:617.078850px;}
.y85{bottom:629.524050px;}
.y88{bottom:630.673200px;}
.y16{bottom:631.869900px;}
.yc7{bottom:637.940850px;}
.y9e{bottom:638.072850px;}
.y55{bottom:638.078850px;}
.y15{bottom:651.674400px;}
.yc6{bottom:658.946850px;}
.y9d{bottom:659.072850px;}
.y54{bottom:659.078850px;}
.y14{bottom:671.478900px;}
.yc5{bottom:679.952850px;}
.y53{bottom:680.078850px;}
.y13{bottom:691.283400px;}
.y8e{bottom:699.759300px;}
.yc4{bottom:700.958850px;}
.y52{bottom:701.078850px;}
.y9c{bottom:706.529400px;}
.y12{bottom:711.087900px;}
.y8d{bottom:719.563800px;}
.yc3{bottom:721.964850px;}
.y51{bottom:722.078850px;}
.y11{bottom:742.185300px;}
.yc2{bottom:742.970850px;}
.y9b{bottom:743.060850px;}
.y50{bottom:743.078850px;}
.y6c{bottom:757.441050px;}
.yc1{bottom:763.976850px;}
.y9a{bottom:764.066850px;}
.y4f{bottom:764.078850px;}
.yc0{bottom:784.982850px;}
.y99{bottom:785.072850px;}
.y4e{bottom:785.078850px;}
.ybf{bottom:805.988850px;}
.y4d{bottom:806.078850px;}
.yb{bottom:821.466750px;}
.ybe{bottom:826.994850px;}
.y4c{bottom:827.078850px;}
.y98{bottom:832.529250px;}
.ya{bottom:839.466750px;}
.ybd{bottom:848.000850px;}
.y4b{bottom:848.078850px;}
.y9{bottom:857.466750px;}
.ybc{bottom:869.006850px;}
.y4a{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.ybb{bottom:890.012850px;}
.y49{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.y97{bottom:895.529250px;}
.yba{bottom:911.018850px;}
.y48{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yb9{bottom:932.024850px;}
.y47{bottom:932.078850px;}
.y6b{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.yb8{bottom:953.030850px;}
.y46{bottom:953.078850px;}
.y96{bottom:958.529250px;}
.yb7{bottom:974.036850px;}
.y45{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.yb6{bottom:995.042850px;}
.y44{bottom:995.078850px;}
.yb5{bottom:1016.048850px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y95{bottom:1021.529250px;}
.yb4{bottom:1037.054850px;}
.y42{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yb3{bottom:1058.060850px;}
.y41{bottom:1058.078850px;}
.yb2{bottom:1079.066850px;}
.y40{bottom:1079.078850px;}
.y94{bottom:1084.192950px;}
.yb1{bottom:1100.072850px;}
.y3f{bottom:1100.078850px;}
.y10{bottom:1109.815500px;}
.y93{bottom:1113.696900px;}
.y3e{bottom:1121.078850px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3d{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h11{height:43.899000px;}
.h9{height:45.615234px;}
.hc{height:48.750000px;}
.h10{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.990600px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x5{left:300.189000px;}
.xc{left:317.184000px;}
.x4{left:378.938400px;}
.x9{left:533.344650px;}
.xa{left:687.004650px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls6{letter-spacing:-1.994667pt;}
.ls4{letter-spacing:-1.813333pt;}
.ls5{letter-spacing:-1.360000pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.085333pt;}
.lse{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.178667pt;}
.lsb{letter-spacing:1.253333pt;}
.lsc{letter-spacing:4.435200pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws4{word-spacing:-15.936000pt;}
.ws7a{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.226667pt;}
.ws5{word-spacing:-13.066667pt;}
.ws7b{word-spacing:-11.904000pt;}
.ws7c{word-spacing:-11.760000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws2{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws20{word-spacing:-7.711147pt;}
.ws6a{word-spacing:-4.373333pt;}
.ws19{word-spacing:-3.520000pt;}
.ws7e{word-spacing:-3.264000pt;}
.ws67{word-spacing:-2.986667pt;}
.ws68{word-spacing:-2.506667pt;}
.ws36{word-spacing:-2.453333pt;}
.ws44{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.352000pt;}
.ws48{word-spacing:-2.304000pt;}
.ws5d{word-spacing:-2.240000pt;}
.ws73{word-spacing:-2.186667pt;}
.ws64{word-spacing:-2.026667pt;}
.ws4b{word-spacing:-1.973333pt;}
.ws60{word-spacing:-1.920000pt;}
.ws6b{word-spacing:-1.866667pt;}
.ws5c{word-spacing:-1.706667pt;}
.ws16{word-spacing:-1.392000pt;}
.ws23{word-spacing:-1.386667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws7d{word-spacing:-1.296000pt;}
.ws3d{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.173333pt;}
.ws41{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.746667pt;}
.ws37{word-spacing:-0.586667pt;}
.ws45{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.453333pt;}
.ws50{word-spacing:-0.426667pt;}
.ws62{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.266667pt;}
.wsc{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.160000pt;}
.ws8{word-spacing:0.000000pt;}
.ws66{word-spacing:0.053333pt;}
.wsb{word-spacing:0.085333pt;}
.wsa{word-spacing:0.181333pt;}
.ws4c{word-spacing:0.213333pt;}
.ws75{word-spacing:0.320000pt;}
.ws58{word-spacing:0.426667pt;}
.ws47{word-spacing:0.480000pt;}
.ws24{word-spacing:0.533333pt;}
.wsd{word-spacing:0.614400pt;}
.ws15{word-spacing:0.816000pt;}
.ws14{word-spacing:0.864000pt;}
.ws42{word-spacing:0.960000pt;}
.ws5b{word-spacing:1.066667pt;}
.ws3e{word-spacing:1.226667pt;}
.ws40{word-spacing:1.386667pt;}
.ws70{word-spacing:1.600000pt;}
.ws54{word-spacing:1.653333pt;}
.ws27{word-spacing:1.706667pt;}
.ws1d{word-spacing:2.026667pt;}
.ws35{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.240000pt;}
.ws69{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.400000pt;}
.ws71{word-spacing:2.506667pt;}
.ws31{word-spacing:2.560000pt;}
.ws30{word-spacing:2.613333pt;}
.ws28{word-spacing:2.720000pt;}
.ws29{word-spacing:2.773333pt;}
.ws25{word-spacing:2.826667pt;}
.ws6c{word-spacing:2.986667pt;}
.ws21{word-spacing:3.146667pt;}
.ws3b{word-spacing:3.200000pt;}
.ws26{word-spacing:3.253333pt;}
.ws57{word-spacing:3.360000pt;}
.ws2f{word-spacing:3.413333pt;}
.ws56{word-spacing:3.466667pt;}
.ws39{word-spacing:3.520000pt;}
.ws79{word-spacing:3.573333pt;}
.ws4a{word-spacing:3.733333pt;}
.ws49{word-spacing:3.786667pt;}
.ws55{word-spacing:3.840000pt;}
.ws1c{word-spacing:3.946667pt;}
.ws6f{word-spacing:4.266667pt;}
.ws53{word-spacing:4.368000pt;}
.ws52{word-spacing:4.416000pt;}
.ws51{word-spacing:4.464000pt;}
.ws2b{word-spacing:4.480000pt;}
.ws43{word-spacing:4.533333pt;}
.ws4d{word-spacing:4.586667pt;}
.ws1a{word-spacing:4.746667pt;}
.ws3c{word-spacing:5.120000pt;}
.ws7f{word-spacing:5.424000pt;}
.ws1b{word-spacing:5.813333pt;}
.ws65{word-spacing:5.973333pt;}
.ws59{word-spacing:6.293333pt;}
.ws5a{word-spacing:6.346667pt;}
.ws22{word-spacing:6.933333pt;}
.ws32{word-spacing:7.040000pt;}
.ws4e{word-spacing:7.093333pt;}
.ws13{word-spacing:7.344000pt;}
.ws2e{word-spacing:7.786667pt;}
.ws72{word-spacing:7.840000pt;}
.ws82{word-spacing:7.968000pt;}
.ws3a{word-spacing:8.213333pt;}
.ws2d{word-spacing:8.320000pt;}
.ws34{word-spacing:10.026667pt;}
.ws12{word-spacing:10.368000pt;}
.ws78{word-spacing:10.400000pt;}
.ws6d{word-spacing:10.720000pt;}
.ws17{word-spacing:11.760000pt;}
.ws18{word-spacing:11.904000pt;}
.ws5f{word-spacing:12.853333pt;}
.ws5e{word-spacing:12.960000pt;}
.ws11{word-spacing:13.152000pt;}
.ws38{word-spacing:13.226667pt;}
.wse{word-spacing:13.728000pt;}
.ws10{word-spacing:16.032000pt;}
.ws80{word-spacing:17.904000pt;}
.ws81{word-spacing:18.096000pt;}
.ws2c{word-spacing:27.146667pt;}
.ws76{word-spacing:27.573333pt;}
.ws77{word-spacing:27.840000pt;}
._11{margin-left:-11.636267pt;}
._5{margin-left:-9.413867pt;}
._13{margin-left:-7.953600pt;}
._7{margin-left:-6.700800pt;}
._2{margin-left:-5.412800pt;}
._e{margin-left:-4.228267pt;}
._3{margin-left:-2.955733pt;}
._0{margin-left:-1.731733pt;}
._1{width:1.178667pt;}
._4{width:2.565867pt;}
._f{width:3.977067pt;}
._10{width:5.016000pt;}
._8{width:6.224533pt;}
._9{width:7.510400pt;}
._c{width:9.264000pt;}
._b{width:10.434133pt;}
._d{width:12.811200pt;}
._1a{width:14.433600pt;}
._19{width:15.336000pt;}
._15{width:16.521600pt;}
._a{width:17.577600pt;}
._17{width:18.720000pt;}
._16{width:19.761600pt;}
._18{width:20.697600pt;}
._12{width:27.802667pt;}
._6{width:32.328533pt;}
._14{width:38.298667pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.702267pt;}
.yf{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.ye{bottom:116.979067pt;}
.y84{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.yd{bottom:129.775867pt;}
.yb0{bottom:137.767867pt;}
.y83{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.yc{bottom:142.575867pt;}
.yaf{bottom:156.439867pt;}
.y82{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.yae{bottom:175.111867pt;}
.y81{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y38{bottom:180.850133pt;}
.yad{bottom:193.783867pt;}
.y80{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y37{bottom:196.846133pt;}
.y25{bottom:197.522400pt;}
.yac{bottom:212.455867pt;}
.y7f{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.y36{bottom:212.842133pt;}
.y24{bottom:216.189067pt;}
.y92{bottom:225.280933pt;}
.y35{bottom:228.838133pt;}
.yab{bottom:231.127867pt;}
.y7e{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.y34{bottom:244.834133pt;}
.yaa{bottom:249.799867pt;}
.y7d{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y33{bottom:260.830133pt;}
.ya9{bottom:268.471867pt;}
.y7c{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y32{bottom:276.826133pt;}
.y21{bottom:283.861867pt;}
.ya8{bottom:287.143867pt;}
.y7b{bottom:287.181067pt;}
.y61{bottom:287.181200pt;}
.y31{bottom:292.822133pt;}
.yd5{bottom:305.650533pt;}
.ya7{bottom:305.815867pt;}
.y7a{bottom:305.847733pt;}
.y60{bottom:305.847867pt;}
.y30{bottom:308.818133pt;}
.yd4{bottom:324.322533pt;}
.ya6{bottom:324.487867pt;}
.y79{bottom:324.514400pt;}
.y5f{bottom:324.514533pt;}
.y2f{bottom:324.814133pt;}
.yd3{bottom:342.994533pt;}
.ya5{bottom:343.159867pt;}
.y78{bottom:343.181067pt;}
.y70{bottom:343.181200pt;}
.y5e{bottom:355.123200pt;}
.y2e{bottom:355.930133pt;}
.yd2{bottom:361.666533pt;}
.ya4{bottom:361.831867pt;}
.y77{bottom:361.847733pt;}
.y6f{bottom:361.847867pt;}
.y20{bottom:366.780400pt;}
.y2d{bottom:371.930133pt;}
.yd1{bottom:380.338533pt;}
.ya3{bottom:380.503867pt;}
.y76{bottom:380.514400pt;}
.y91{bottom:380.514533pt;}
.y5d{bottom:383.832133pt;}
.y2c{bottom:387.930133pt;}
.y6e{bottom:392.456533pt;}
.yd0{bottom:399.010533pt;}
.ya2{bottom:399.175867pt;}
.y75{bottom:399.181067pt;}
.y90{bottom:399.181200pt;}
.y1f{bottom:403.226133pt;}
.y2b{bottom:403.930133pt;}
.ycf{bottom:417.682533pt;}
.y74{bottom:417.847733pt;}
.y8f{bottom:417.847867pt;}
.y1e{bottom:420.830133pt;}
.y6d{bottom:421.165467pt;}
.yce{bottom:436.354533pt;}
.y73{bottom:436.514400pt;}
.y5c{bottom:436.514533pt;}
.y1d{bottom:438.434133pt;}
.ya1{bottom:449.280933pt;}
.ycd{bottom:455.026533pt;}
.y72{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.y1c{bottom:456.038133pt;}
.y1b{bottom:473.642133pt;}
.ycc{bottom:473.698533pt;}
.y8c{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.y71{bottom:483.968267pt;}
.y1a{bottom:491.246133pt;}
.ycb{bottom:492.370533pt;}
.y8b{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y19{bottom:508.850133pt;}
.yca{bottom:511.042533pt;}
.y8a{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.ya0{bottom:516.026133pt;}
.y87{bottom:524.368933pt;}
.y18{bottom:526.454133pt;}
.yc9{bottom:529.714533pt;}
.y89{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y86{bottom:541.972933pt;}
.y17{bottom:544.058133pt;}
.yc8{bottom:548.386533pt;}
.y9f{bottom:548.509200pt;}
.y56{bottom:548.514533pt;}
.y85{bottom:559.576933pt;}
.y88{bottom:560.598400pt;}
.y16{bottom:561.662133pt;}
.yc7{bottom:567.058533pt;}
.y9e{bottom:567.175867pt;}
.y55{bottom:567.181200pt;}
.y15{bottom:579.266133pt;}
.yc6{bottom:585.730533pt;}
.y9d{bottom:585.842533pt;}
.y54{bottom:585.847867pt;}
.y14{bottom:596.870133pt;}
.yc5{bottom:604.402533pt;}
.y53{bottom:604.514533pt;}
.y13{bottom:614.474133pt;}
.y8e{bottom:622.008267pt;}
.yc4{bottom:623.074533pt;}
.y52{bottom:623.181200pt;}
.y9c{bottom:628.026133pt;}
.y12{bottom:632.078133pt;}
.y8d{bottom:639.612267pt;}
.yc3{bottom:641.746533pt;}
.y51{bottom:641.847867pt;}
.y11{bottom:659.720267pt;}
.yc2{bottom:660.418533pt;}
.y9b{bottom:660.498533pt;}
.y50{bottom:660.514533pt;}
.y6c{bottom:673.280933pt;}
.yc1{bottom:679.090533pt;}
.y9a{bottom:679.170533pt;}
.y4f{bottom:679.181200pt;}
.yc0{bottom:697.762533pt;}
.y99{bottom:697.842533pt;}
.y4e{bottom:697.847867pt;}
.ybf{bottom:716.434533pt;}
.y4d{bottom:716.514533pt;}
.yb{bottom:730.192667pt;}
.ybe{bottom:735.106533pt;}
.y4c{bottom:735.181200pt;}
.y98{bottom:740.026000pt;}
.ya{bottom:746.192667pt;}
.ybd{bottom:753.778533pt;}
.y4b{bottom:753.847867pt;}
.y9{bottom:762.192667pt;}
.ybc{bottom:772.450533pt;}
.y4a{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.ybb{bottom:791.122533pt;}
.y49{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.y97{bottom:796.026000pt;}
.yba{bottom:809.794533pt;}
.y48{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yb9{bottom:828.466533pt;}
.y47{bottom:828.514533pt;}
.y6b{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.yb8{bottom:847.138533pt;}
.y46{bottom:847.181200pt;}
.y96{bottom:852.026000pt;}
.yb7{bottom:865.810533pt;}
.y45{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.yb6{bottom:884.482533pt;}
.y44{bottom:884.514533pt;}
.yb5{bottom:903.154533pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y95{bottom:908.026000pt;}
.yb4{bottom:921.826533pt;}
.y42{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yb3{bottom:940.498533pt;}
.y41{bottom:940.514533pt;}
.yb2{bottom:959.170533pt;}
.y40{bottom:959.181200pt;}
.y94{bottom:963.727067pt;}
.yb1{bottom:977.842533pt;}
.y3f{bottom:977.847867pt;}
.y10{bottom:986.502667pt;}
.y93{bottom:989.952800pt;}
.y3e{bottom:996.514533pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3d{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h11{height:39.021333pt;}
.h9{height:40.546875pt;}
.hc{height:43.333333pt;}
.h10{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.880533pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x5{left:266.834667pt;}
.xc{left:281.941333pt;}
.x4{left:336.834133pt;}
.x9{left:474.084133pt;}
.xa{left:610.670800pt;}
.x1{left:712.140000pt;}
}




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