
    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_6fc8775e83d9be1fc5bc29f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_70fd6d7bca18bbef74b29e3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_8efa1e92bce33591168e0d2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_2374694997ef9f5ec0053ee9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_7850d78fdf3f8a8922aa133d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_d77aad472c3cb7e2a568a223.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_fccb51c01fc73d9e4c0455e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934000;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_dcdaa7a1bdf3140936200194.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.419400px;}
.ls4{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.620000px;}
.ls8{letter-spacing:1.771800px;}
.lsb{letter-spacing:2.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws25{word-spacing:-16.680000px;}
.ws73{word-spacing:-16.632000px;}
.ws3d{word-spacing:-16.092000px;}
.ws0{word-spacing:-13.344000px;}
.ws12{word-spacing:-12.096000px;}
.ws2f{word-spacing:-3.132000px;}
.ws2d{word-spacing:-3.078000px;}
.ws69{word-spacing:-3.024000px;}
.ws80{word-spacing:-2.862000px;}
.ws77{word-spacing:-2.700000px;}
.ws5d{word-spacing:-2.646000px;}
.wse{word-spacing:-2.592000px;}
.ws6d{word-spacing:-2.538000px;}
.ws3a{word-spacing:-2.484000px;}
.wsc0{word-spacing:-2.448000px;}
.ws7f{word-spacing:-2.376000px;}
.ws31{word-spacing:-2.268000px;}
.ws68{word-spacing:-2.214000px;}
.ws5f{word-spacing:-2.160000px;}
.ws96{word-spacing:-2.052000px;}
.wsa6{word-spacing:-1.944000px;}
.ws1d{word-spacing:-1.932000px;}
.wsbe{word-spacing:-1.872000px;}
.ws99{word-spacing:-1.836000px;}
.ws78{word-spacing:-1.782000px;}
.ws34{word-spacing:-1.728000px;}
.ws29{word-spacing:-1.674000px;}
.ws27{word-spacing:-1.620000px;}
.ws1e{word-spacing:-1.596000px;}
.ws7b{word-spacing:-1.566000px;}
.ws39{word-spacing:-1.512000px;}
.ws82{word-spacing:-1.458000px;}
.ws20{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.404000px;}
.ws1b{word-spacing:-1.386000px;}
.ws3c{word-spacing:-1.350000px;}
.ws6c{word-spacing:-1.296000px;}
.ws74{word-spacing:-1.242000px;}
.wsbc{word-spacing:-1.200000px;}
.ws79{word-spacing:-1.134000px;}
.ws40{word-spacing:-1.080000px;}
.ws5c{word-spacing:-1.026000px;}
.ws89{word-spacing:-0.918000px;}
.ws32{word-spacing:-0.864000px;}
.wsf{word-spacing:-0.816000px;}
.ws30{word-spacing:-0.756000px;}
.ws2{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.702000px;}
.wsbb{word-spacing:-0.672000px;}
.ws3b{word-spacing:-0.648000px;}
.ws3f{word-spacing:-0.594000px;}
.ws93{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.486000px;}
.ws3{word-spacing:-0.480000px;}
.ws76{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.420000px;}
.ws2e{word-spacing:-0.378000px;}
.ws88{word-spacing:-0.270000px;}
.ws9f{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.210000px;}
.ws28{word-spacing:-0.162000px;}
.ws1{word-spacing:0.000000px;}
.wsa8{word-spacing:0.054000px;}
.wsba{word-spacing:0.096000px;}
.ws59{word-spacing:0.108000px;}
.ws24{word-spacing:0.126000px;}
.wsb3{word-spacing:0.270000px;}
.ws9e{word-spacing:0.324000px;}
.ws1f{word-spacing:0.336000px;}
.ws36{word-spacing:0.378000px;}
.ws33{word-spacing:0.432000px;}
.ws2a{word-spacing:0.486000px;}
.wsa4{word-spacing:0.540000px;}
.ws8{word-spacing:0.576000px;}
.ws50{word-spacing:0.594000px;}
.ws4d{word-spacing:0.648000px;}
.ws53{word-spacing:0.702000px;}
.ws14{word-spacing:0.798000px;}
.ws3e{word-spacing:0.810000px;}
.ws64{word-spacing:0.864000px;}
.wsa3{word-spacing:0.918000px;}
.ws2c{word-spacing:0.972000px;}
.ws4f{word-spacing:1.080000px;}
.ws71{word-spacing:1.134000px;}
.ws10{word-spacing:1.152000px;}
.ws7e{word-spacing:1.188000px;}
.ws23{word-spacing:1.218000px;}
.ws49{word-spacing:1.242000px;}
.ws61{word-spacing:1.296000px;}
.ws21{word-spacing:1.344000px;}
.ws87{word-spacing:1.350000px;}
.ws19{word-spacing:1.386000px;}
.ws7d{word-spacing:1.404000px;}
.ws35{word-spacing:1.458000px;}
.wsab{word-spacing:1.512000px;}
.ws63{word-spacing:1.566000px;}
.ws4e{word-spacing:1.674000px;}
.ws16{word-spacing:1.722000px;}
.ws42{word-spacing:1.728000px;}
.ws85{word-spacing:1.782000px;}
.ws5a{word-spacing:1.890000px;}
.ws18{word-spacing:1.932000px;}
.ws54{word-spacing:1.944000px;}
.wsc{word-spacing:1.968000px;}
.ws44{word-spacing:2.106000px;}
.wsd{word-spacing:2.160000px;}
.ws86{word-spacing:2.214000px;}
.wsb5{word-spacing:2.268000px;}
.ws66{word-spacing:2.322000px;}
.ws6e{word-spacing:2.376000px;}
.ws17{word-spacing:2.394000px;}
.ws4b{word-spacing:2.484000px;}
.ws8b{word-spacing:2.592000px;}
.ws26{word-spacing:2.646000px;}
.ws8a{word-spacing:2.700000px;}
.wsa1{word-spacing:2.754000px;}
.ws70{word-spacing:2.808000px;}
.ws1c{word-spacing:2.856000px;}
.wsaa{word-spacing:2.862000px;}
.wsb7{word-spacing:2.880000px;}
.ws97{word-spacing:2.916000px;}
.ws43{word-spacing:2.970000px;}
.ws72{word-spacing:3.024000px;}
.ws5b{word-spacing:3.078000px;}
.ws46{word-spacing:3.132000px;}
.wsac{word-spacing:3.186000px;}
.ws8c{word-spacing:3.240000px;}
.wsb4{word-spacing:3.348000px;}
.ws95{word-spacing:3.402000px;}
.wsc2{word-spacing:3.552000px;}
.ws57{word-spacing:3.618000px;}
.ws41{word-spacing:3.672000px;}
.wsad{word-spacing:3.726000px;}
.wsc1{word-spacing:3.792000px;}
.ws58{word-spacing:3.834000px;}
.ws4c{word-spacing:3.888000px;}
.wsa2{word-spacing:3.942000px;}
.ws55{word-spacing:3.996000px;}
.ws90{word-spacing:4.104000px;}
.ws56{word-spacing:4.158000px;}
.ws60{word-spacing:4.212000px;}
.ws92{word-spacing:4.320000px;}
.ws62{word-spacing:4.374000px;}
.ws37{word-spacing:4.482000px;}
.ws52{word-spacing:4.698000px;}
.ws22{word-spacing:4.704000px;}
.ws7{word-spacing:4.896000px;}
.wsa5{word-spacing:5.022000px;}
.ws9{word-spacing:5.184000px;}
.ws84{word-spacing:5.238000px;}
.wsb1{word-spacing:5.292000px;}
.ws98{word-spacing:5.346000px;}
.ws6f{word-spacing:5.400000px;}
.ws5e{word-spacing:5.508000px;}
.ws2b{word-spacing:5.670000px;}
.ws94{word-spacing:5.724000px;}
.ws83{word-spacing:5.940000px;}
.ws51{word-spacing:5.994000px;}
.ws6a{word-spacing:6.102000px;}
.wsa{word-spacing:6.144000px;}
.ws48{word-spacing:6.264000px;}
.wsa9{word-spacing:6.534000px;}
.wsb2{word-spacing:6.588000px;}
.wsb9{word-spacing:6.672000px;}
.ws9a{word-spacing:6.696000px;}
.ws6b{word-spacing:6.750000px;}
.ws75{word-spacing:7.074000px;}
.wsb8{word-spacing:7.104000px;}
.ws7c{word-spacing:7.182000px;}
.wsaf{word-spacing:7.236000px;}
.ws81{word-spacing:7.344000px;}
.wsa7{word-spacing:7.398000px;}
.ws8d{word-spacing:7.506000px;}
.ws5{word-spacing:7.680000px;}
.ws6{word-spacing:7.824000px;}
.wsb{word-spacing:7.920000px;}
.ws8e{word-spacing:7.938000px;}
.wsb6{word-spacing:8.154000px;}
.ws4{word-spacing:8.160000px;}
.ws7a{word-spacing:8.208000px;}
.ws1a{word-spacing:8.280000px;}
.ws9d{word-spacing:8.316000px;}
.ws9b{word-spacing:8.370000px;}
.wsae{word-spacing:8.424000px;}
.ws91{word-spacing:8.478000px;}
.ws65{word-spacing:8.856000px;}
.wsb0{word-spacing:8.910000px;}
.ws9c{word-spacing:9.072000px;}
.ws4a{word-spacing:9.234000px;}
.ws13{word-spacing:9.300000px;}
.ws38{word-spacing:11.610000px;}
.ws8f{word-spacing:11.718000px;}
.wsbd{word-spacing:11.856000px;}
.wsa0{word-spacing:14.094000px;}
.wsbf{word-spacing:14.256000px;}
._0{margin-left:-1080.526200px;}
._f{margin-left:-19.386000px;}
._14{margin-left:-14.321400px;}
._13{margin-left:-12.915000px;}
._3{margin-left:-10.656000px;}
._12{margin-left:-7.396800px;}
._c{margin-left:-6.300000px;}
._8{margin-left:-4.416000px;}
._b{margin-left:-3.300000px;}
._2{margin-left:-2.268000px;}
._1{margin-left:-1.260000px;}
._9{width:1.226400px;}
._4{width:2.268000px;}
._7{width:3.393600px;}
._a{width:4.397400px;}
._e{width:5.407200px;}
._5{width:6.494400px;}
._6{width:8.222400px;}
._11{width:9.343800px;}
._d{width:10.395000px;}
._10{width:11.647800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(101,98,99);}
.fc0{color:rgb(79,76,77);}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:32.113500px;}
.y22{bottom:45.347700px;}
.y24{bottom:45.684450px;}
.y1{bottom:46.513500px;}
.y58{bottom:47.229150px;}
.y7c{bottom:116.373600px;}
.ya3{bottom:117.599100px;}
.yf7{bottom:118.262400px;}
.y21{bottom:124.098750px;}
.yb1{bottom:125.335350px;}
.yf6{bottom:134.762400px;}
.y7b{bottom:135.873600px;}
.ya2{bottom:137.099100px;}
.y20{bottom:139.098750px;}
.yb0{bottom:147.587250px;}
.y57{bottom:148.830300px;}
.yf5{bottom:151.262400px;}
.y7a{bottom:155.373600px;}
.ya1{bottom:156.599100px;}
.y56{bottom:160.830300px;}
.y1f{bottom:162.602850px;}
.yaf{bottom:165.587250px;}
.y79{bottom:174.873600px;}
.ya0{bottom:176.099100px;}
.y55{bottom:181.334250px;}
.yae{bottom:187.839300px;}
.y54{bottom:193.334250px;}
.y78{bottom:194.373600px;}
.y9f{bottom:195.599100px;}
.yf4{bottom:200.762400px;}
.y53{bottom:205.334250px;}
.yad{bottom:210.091200px;}
.y77{bottom:213.873600px;}
.y9e{bottom:215.099100px;}
.yf3{bottom:217.262400px;}
.y52{bottom:217.334250px;}
.y1e{bottom:221.622450px;}
.y51{bottom:229.334250px;}
.yd1{bottom:229.766100px;}
.yac{bottom:232.343100px;}
.y76{bottom:233.373600px;}
.yf2{bottom:233.762400px;}
.y9d{bottom:234.599100px;}
.y1d{bottom:236.622450px;}
.y50{bottom:241.334250px;}
.yd0{bottom:247.766100px;}
.yf1{bottom:250.262400px;}
.yab{bottom:250.343100px;}
.y1c{bottom:251.622450px;}
.y75{bottom:252.873600px;}
.y4f{bottom:253.334250px;}
.y9c{bottom:254.099100px;}
.y4e{bottom:265.334250px;}
.y1b{bottom:266.622450px;}
.yf0{bottom:266.762400px;}
.ycf{bottom:270.018000px;}
.y74{bottom:272.373600px;}
.yaa{bottom:272.595150px;}
.y9b{bottom:273.599100px;}
.y4d{bottom:277.334250px;}
.y1a{bottom:281.622450px;}
.yef{bottom:283.262400px;}
.yce{bottom:288.018000px;}
.y4c{bottom:289.334250px;}
.ya9{bottom:290.595150px;}
.y73{bottom:291.873600px;}
.y9a{bottom:293.099100px;}
.y19{bottom:296.622450px;}
.y4b{bottom:301.334250px;}
.ycd{bottom:310.269900px;}
.y72{bottom:311.373600px;}
.y18{bottom:311.622450px;}
.y99{bottom:312.599100px;}
.ya8{bottom:312.847200px;}
.y4a{bottom:313.334250px;}
.yee{bottom:324.022200px;}
.y49{bottom:325.334250px;}
.y17{bottom:326.622450px;}
.ya5{bottom:330.873600px;}
.y98{bottom:332.099100px;}
.ycc{bottom:332.521950px;}
.ya7{bottom:335.099100px;}
.yed{bottom:340.522200px;}
.y16{bottom:341.622450px;}
.y48{bottom:345.838200px;}
.y71{bottom:350.373600px;}
.y97{bottom:351.599100px;}
.ya6{bottom:353.099100px;}
.ycb{bottom:354.773850px;}
.y15{bottom:356.622450px;}
.yec{bottom:357.022200px;}
.y47{bottom:360.838200px;}
.ya4{bottom:369.873600px;}
.y96{bottom:371.099100px;}
.y14{bottom:371.622450px;}
.yeb{bottom:373.522200px;}
.yca{bottom:377.025900px;}
.y13{bottom:386.622450px;}
.y70{bottom:389.373600px;}
.yea{bottom:390.022200px;}
.y95{bottom:390.599100px;}
.yc9{bottom:395.025900px;}
.y46{bottom:397.098000px;}
.y12{bottom:401.622450px;}
.ye9{bottom:406.522200px;}
.y6f{bottom:408.873600px;}
.y45{bottom:409.098000px;}
.y94{bottom:410.099100px;}
.y11{bottom:416.622450px;}
.yc8{bottom:417.277800px;}
.ye8{bottom:423.022200px;}
.y6e{bottom:428.373600px;}
.y93{bottom:429.599100px;}
.y44{bottom:429.601950px;}
.y10{bottom:431.622450px;}
.yc7{bottom:439.529850px;}
.y43{bottom:441.601950px;}
.yf{bottom:446.622450px;}
.y6d{bottom:447.873600px;}
.y92{bottom:449.099100px;}
.y42{bottom:453.601950px;}
.yc6{bottom:457.529850px;}
.ye{bottom:461.622450px;}
.ye7{bottom:463.782000px;}
.y41{bottom:465.601950px;}
.y6c{bottom:467.373600px;}
.y91{bottom:468.599100px;}
.yc5{bottom:475.529850px;}
.yd{bottom:476.622450px;}
.y40{bottom:477.601950px;}
.ye6{bottom:480.282000px;}
.y6b{bottom:486.873600px;}
.y90{bottom:488.099100px;}
.y3f{bottom:489.601950px;}
.yc{bottom:491.622450px;}
.ye5{bottom:496.782000px;}
.yc4{bottom:497.781750px;}
.y3e{bottom:501.601950px;}
.y6a{bottom:506.373600px;}
.y8f{bottom:507.599100px;}
.ye4{bottom:513.282000px;}
.y3d{bottom:513.601950px;}
.yb{bottom:515.126400px;}
.yc3{bottom:515.781750px;}
.y3c{bottom:525.601950px;}
.y69{bottom:525.873600px;}
.y8e{bottom:527.099100px;}
.ye3{bottom:529.782000px;}
.y3b{bottom:537.601950px;}
.yc2{bottom:538.033650px;}
.y68{bottom:545.373600px;}
.ye2{bottom:546.282000px;}
.y8d{bottom:546.599100px;}
.y3a{bottom:549.601950px;}
.yc1{bottom:556.033650px;}
.y39{bottom:561.601950px;}
.ye1{bottom:562.782000px;}
.y67{bottom:564.873600px;}
.y8c{bottom:566.099100px;}
.y38{bottom:573.601950px;}
.ya{bottom:574.146000px;}
.yc0{bottom:578.285700px;}
.ye0{bottom:579.282000px;}
.y66{bottom:584.373600px;}
.y8b{bottom:585.599100px;}
.y37{bottom:594.105900px;}
.ybf{bottom:596.285700px;}
.y9{bottom:598.146000px;}
.y65{bottom:603.873600px;}
.y8a{bottom:605.099100px;}
.y36{bottom:609.105900px;}
.ybe{bottom:618.537750px;}
.ydf{bottom:620.041800px;}
.y8{bottom:622.146000px;}
.y64{bottom:623.373600px;}
.y89{bottom:624.599100px;}
.ybd{bottom:636.537750px;}
.yde{bottom:636.541800px;}
.y63{bottom:642.873600px;}
.y88{bottom:644.099100px;}
.y35{bottom:645.365700px;}
.ydd{bottom:653.041800px;}
.y34{bottom:657.365700px;}
.ybc{bottom:658.789650px;}
.y62{bottom:662.373600px;}
.y87{bottom:663.599100px;}
.y7{bottom:667.405950px;}
.ydc{bottom:669.541800px;}
.ybb{bottom:676.789650px;}
.y33{bottom:677.869650px;}
.y61{bottom:681.873600px;}
.y86{bottom:683.099100px;}
.ydb{bottom:686.041800px;}
.y32{bottom:689.869650px;}
.y6{bottom:694.405950px;}
.yba{bottom:694.789650px;}
.y60{bottom:701.373600px;}
.y31{bottom:701.869650px;}
.yda{bottom:702.541800px;}
.y85{bottom:702.599100px;}
.y30{bottom:713.869650px;}
.yb9{bottom:717.041550px;}
.yd9{bottom:719.041800px;}
.y5f{bottom:720.873600px;}
.y5{bottom:721.405950px;}
.y84{bottom:722.099100px;}
.y2f{bottom:725.869650px;}
.yb8{bottom:735.041550px;}
.y2e{bottom:737.869650px;}
.y5e{bottom:740.373600px;}
.y83{bottom:741.599100px;}
.y2d{bottom:749.869650px;}
.y4{bottom:754.405950px;}
.yb7{bottom:757.293600px;}
.yd8{bottom:759.801750px;}
.y5d{bottom:759.873600px;}
.y82{bottom:761.099100px;}
.y2c{bottom:761.869650px;}
.y2b{bottom:773.869650px;}
.yb6{bottom:775.293600px;}
.yd7{bottom:776.301600px;}
.y5c{bottom:779.373600px;}
.y81{bottom:780.599100px;}
.y2a{bottom:785.869650px;}
.y3{bottom:787.405950px;}
.yd6{bottom:792.801600px;}
.yb5{bottom:797.545650px;}
.y29{bottom:797.869650px;}
.y5b{bottom:798.873600px;}
.y80{bottom:800.099100px;}
.yd5{bottom:809.301600px;}
.y28{bottom:809.869650px;}
.y5a{bottom:818.373600px;}
.y7f{bottom:819.599100px;}
.yb4{bottom:819.797550px;}
.y27{bottom:821.869650px;}
.yd4{bottom:825.801600px;}
.y7e{bottom:839.099100px;}
.yb3{bottom:842.049600px;}
.yd3{bottom:842.301600px;}
.y26{bottom:842.373600px;}
.y25{bottom:857.373600px;}
.y7d{bottom:858.599100px;}
.yd2{bottom:858.801600px;}
.yb2{bottom:860.049600px;}
.y23{bottom:926.327700px;}
.y59{bottom:926.327850px;}
.h7{height:30.618000px;}
.h9{height:30.702000px;}
.h2{height:34.992000px;}
.h6{height:35.088000px;}
.ha{height:39.366000px;}
.hb{height:39.474000px;}
.h8{height:43.860000px;}
.h5{height:52.488000px;}
.h4{height:70.176000px;}
.h3{height:92.106000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:62.360100px;}
.x9{left:65.714700px;}
.x5{left:80.205750px;}
.x7{left:85.039350px;}
.x6{left:107.019750px;}
.x13{left:219.903750px;}
.x14{left:221.440050px;}
.x15{left:237.027300px;}
.x3{left:238.110300px;}
.x1d{left:246.051750px;}
.x12{left:260.631450px;}
.xc{left:262.071750px;}
.x1a{left:277.335150px;}
.xb{left:281.775150px;}
.x17{left:292.359300px;}
.xd{left:327.074400px;}
.x20{left:339.662700px;}
.x10{left:360.841350px;}
.x18{left:363.601950px;}
.x2{left:394.823850px;}
.xe{left:401.810250px;}
.x1f{left:409.021800px;}
.x1c{left:416.954550px;}
.x26{left:425.053050px;}
.x8{left:436.889700px;}
.x19{left:439.429350px;}
.x1e{left:444.217350px;}
.x25{left:451.752450px;}
.x22{left:455.017500px;}
.x1b{left:457.777350px;}
.x23{left:481.488600px;}
.xa{left:485.141850px;}
.xf{left:501.180750px;}
.x21{left:507.106200px;}
.x11{left:508.955850px;}
.x24{left:513.888000px;}
.x16{left:515.436600px;}
.x1{left:636.732300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.372800pt;}
.ls4{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.574933pt;}
.lsb{letter-spacing:1.920000pt;}
.ws25{word-spacing:-14.826667pt;}
.ws73{word-spacing:-14.784000pt;}
.ws3d{word-spacing:-14.304000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws12{word-spacing:-10.752000pt;}
.ws2f{word-spacing:-2.784000pt;}
.ws2d{word-spacing:-2.736000pt;}
.ws69{word-spacing:-2.688000pt;}
.ws80{word-spacing:-2.544000pt;}
.ws77{word-spacing:-2.400000pt;}
.ws5d{word-spacing:-2.352000pt;}
.wse{word-spacing:-2.304000pt;}
.ws6d{word-spacing:-2.256000pt;}
.ws3a{word-spacing:-2.208000pt;}
.wsc0{word-spacing:-2.176000pt;}
.ws7f{word-spacing:-2.112000pt;}
.ws31{word-spacing:-2.016000pt;}
.ws68{word-spacing:-1.968000pt;}
.ws5f{word-spacing:-1.920000pt;}
.ws96{word-spacing:-1.824000pt;}
.wsa6{word-spacing:-1.728000pt;}
.ws1d{word-spacing:-1.717333pt;}
.wsbe{word-spacing:-1.664000pt;}
.ws99{word-spacing:-1.632000pt;}
.ws78{word-spacing:-1.584000pt;}
.ws34{word-spacing:-1.536000pt;}
.ws29{word-spacing:-1.488000pt;}
.ws27{word-spacing:-1.440000pt;}
.ws1e{word-spacing:-1.418667pt;}
.ws7b{word-spacing:-1.392000pt;}
.ws39{word-spacing:-1.344000pt;}
.ws82{word-spacing:-1.296000pt;}
.ws20{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.248000pt;}
.ws1b{word-spacing:-1.232000pt;}
.ws3c{word-spacing:-1.200000pt;}
.ws6c{word-spacing:-1.152000pt;}
.ws74{word-spacing:-1.104000pt;}
.wsbc{word-spacing:-1.066667pt;}
.ws79{word-spacing:-1.008000pt;}
.ws40{word-spacing:-0.960000pt;}
.ws5c{word-spacing:-0.912000pt;}
.ws89{word-spacing:-0.816000pt;}
.ws32{word-spacing:-0.768000pt;}
.wsf{word-spacing:-0.725333pt;}
.ws30{word-spacing:-0.672000pt;}
.ws2{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.624000pt;}
.wsbb{word-spacing:-0.597333pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws3f{word-spacing:-0.528000pt;}
.ws93{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.432000pt;}
.ws3{word-spacing:-0.426667pt;}
.ws76{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws2e{word-spacing:-0.336000pt;}
.ws88{word-spacing:-0.240000pt;}
.ws9f{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.186667pt;}
.ws28{word-spacing:-0.144000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.048000pt;}
.wsba{word-spacing:0.085333pt;}
.ws59{word-spacing:0.096000pt;}
.ws24{word-spacing:0.112000pt;}
.wsb3{word-spacing:0.240000pt;}
.ws9e{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.298667pt;}
.ws36{word-spacing:0.336000pt;}
.ws33{word-spacing:0.384000pt;}
.ws2a{word-spacing:0.432000pt;}
.wsa4{word-spacing:0.480000pt;}
.ws8{word-spacing:0.512000pt;}
.ws50{word-spacing:0.528000pt;}
.ws4d{word-spacing:0.576000pt;}
.ws53{word-spacing:0.624000pt;}
.ws14{word-spacing:0.709333pt;}
.ws3e{word-spacing:0.720000pt;}
.ws64{word-spacing:0.768000pt;}
.wsa3{word-spacing:0.816000pt;}
.ws2c{word-spacing:0.864000pt;}
.ws4f{word-spacing:0.960000pt;}
.ws71{word-spacing:1.008000pt;}
.ws10{word-spacing:1.024000pt;}
.ws7e{word-spacing:1.056000pt;}
.ws23{word-spacing:1.082667pt;}
.ws49{word-spacing:1.104000pt;}
.ws61{word-spacing:1.152000pt;}
.ws21{word-spacing:1.194667pt;}
.ws87{word-spacing:1.200000pt;}
.ws19{word-spacing:1.232000pt;}
.ws7d{word-spacing:1.248000pt;}
.ws35{word-spacing:1.296000pt;}
.wsab{word-spacing:1.344000pt;}
.ws63{word-spacing:1.392000pt;}
.ws4e{word-spacing:1.488000pt;}
.ws16{word-spacing:1.530667pt;}
.ws42{word-spacing:1.536000pt;}
.ws85{word-spacing:1.584000pt;}
.ws5a{word-spacing:1.680000pt;}
.ws18{word-spacing:1.717333pt;}
.ws54{word-spacing:1.728000pt;}
.wsc{word-spacing:1.749333pt;}
.ws44{word-spacing:1.872000pt;}
.wsd{word-spacing:1.920000pt;}
.ws86{word-spacing:1.968000pt;}
.wsb5{word-spacing:2.016000pt;}
.ws66{word-spacing:2.064000pt;}
.ws6e{word-spacing:2.112000pt;}
.ws17{word-spacing:2.128000pt;}
.ws4b{word-spacing:2.208000pt;}
.ws8b{word-spacing:2.304000pt;}
.ws26{word-spacing:2.352000pt;}
.ws8a{word-spacing:2.400000pt;}
.wsa1{word-spacing:2.448000pt;}
.ws70{word-spacing:2.496000pt;}
.ws1c{word-spacing:2.538667pt;}
.wsaa{word-spacing:2.544000pt;}
.wsb7{word-spacing:2.560000pt;}
.ws97{word-spacing:2.592000pt;}
.ws43{word-spacing:2.640000pt;}
.ws72{word-spacing:2.688000pt;}
.ws5b{word-spacing:2.736000pt;}
.ws46{word-spacing:2.784000pt;}
.wsac{word-spacing:2.832000pt;}
.ws8c{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.976000pt;}
.ws95{word-spacing:3.024000pt;}
.wsc2{word-spacing:3.157333pt;}
.ws57{word-spacing:3.216000pt;}
.ws41{word-spacing:3.264000pt;}
.wsad{word-spacing:3.312000pt;}
.wsc1{word-spacing:3.370667pt;}
.ws58{word-spacing:3.408000pt;}
.ws4c{word-spacing:3.456000pt;}
.wsa2{word-spacing:3.504000pt;}
.ws55{word-spacing:3.552000pt;}
.ws90{word-spacing:3.648000pt;}
.ws56{word-spacing:3.696000pt;}
.ws60{word-spacing:3.744000pt;}
.ws92{word-spacing:3.840000pt;}
.ws62{word-spacing:3.888000pt;}
.ws37{word-spacing:3.984000pt;}
.ws52{word-spacing:4.176000pt;}
.ws22{word-spacing:4.181333pt;}
.ws7{word-spacing:4.352000pt;}
.wsa5{word-spacing:4.464000pt;}
.ws9{word-spacing:4.608000pt;}
.ws84{word-spacing:4.656000pt;}
.wsb1{word-spacing:4.704000pt;}
.ws98{word-spacing:4.752000pt;}
.ws6f{word-spacing:4.800000pt;}
.ws5e{word-spacing:4.896000pt;}
.ws2b{word-spacing:5.040000pt;}
.ws94{word-spacing:5.088000pt;}
.ws83{word-spacing:5.280000pt;}
.ws51{word-spacing:5.328000pt;}
.ws6a{word-spacing:5.424000pt;}
.wsa{word-spacing:5.461333pt;}
.ws48{word-spacing:5.568000pt;}
.wsa9{word-spacing:5.808000pt;}
.wsb2{word-spacing:5.856000pt;}
.wsb9{word-spacing:5.930667pt;}
.ws9a{word-spacing:5.952000pt;}
.ws6b{word-spacing:6.000000pt;}
.ws75{word-spacing:6.288000pt;}
.wsb8{word-spacing:6.314667pt;}
.ws7c{word-spacing:6.384000pt;}
.wsaf{word-spacing:6.432000pt;}
.ws81{word-spacing:6.528000pt;}
.wsa7{word-spacing:6.576000pt;}
.ws8d{word-spacing:6.672000pt;}
.ws5{word-spacing:6.826667pt;}
.ws6{word-spacing:6.954667pt;}
.wsb{word-spacing:7.040000pt;}
.ws8e{word-spacing:7.056000pt;}
.wsb6{word-spacing:7.248000pt;}
.ws4{word-spacing:7.253333pt;}
.ws7a{word-spacing:7.296000pt;}
.ws1a{word-spacing:7.360000pt;}
.ws9d{word-spacing:7.392000pt;}
.ws9b{word-spacing:7.440000pt;}
.wsae{word-spacing:7.488000pt;}
.ws91{word-spacing:7.536000pt;}
.ws65{word-spacing:7.872000pt;}
.wsb0{word-spacing:7.920000pt;}
.ws9c{word-spacing:8.064000pt;}
.ws4a{word-spacing:8.208000pt;}
.ws13{word-spacing:8.266667pt;}
.ws38{word-spacing:10.320000pt;}
.ws8f{word-spacing:10.416000pt;}
.wsbd{word-spacing:10.538667pt;}
.wsa0{word-spacing:12.528000pt;}
.wsbf{word-spacing:12.672000pt;}
._0{margin-left:-960.467733pt;}
._f{margin-left:-17.232000pt;}
._14{margin-left:-12.730133pt;}
._13{margin-left:-11.480000pt;}
._3{margin-left:-9.472000pt;}
._12{margin-left:-6.574933pt;}
._c{margin-left:-5.600000pt;}
._8{margin-left:-3.925333pt;}
._b{margin-left:-2.933333pt;}
._2{margin-left:-2.016000pt;}
._1{margin-left:-1.120000pt;}
._9{width:1.090133pt;}
._4{width:2.016000pt;}
._7{width:3.016533pt;}
._a{width:3.908800pt;}
._e{width:4.806400pt;}
._5{width:5.772800pt;}
._6{width:7.308800pt;}
._11{width:8.305600pt;}
._d{width:9.240000pt;}
._10{width:10.353600pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:28.545333pt;}
.y22{bottom:40.309067pt;}
.y24{bottom:40.608400pt;}
.y1{bottom:41.345333pt;}
.y58{bottom:41.981467pt;}
.y7c{bottom:103.443200pt;}
.ya3{bottom:104.532533pt;}
.yf7{bottom:105.122133pt;}
.y21{bottom:110.310000pt;}
.yb1{bottom:111.409200pt;}
.yf6{bottom:119.788800pt;}
.y7b{bottom:120.776533pt;}
.ya2{bottom:121.865867pt;}
.y20{bottom:123.643333pt;}
.yb0{bottom:131.188667pt;}
.y57{bottom:132.293600pt;}
.yf5{bottom:134.455467pt;}
.y7a{bottom:138.109867pt;}
.ya1{bottom:139.199200pt;}
.y56{bottom:142.960267pt;}
.y1f{bottom:144.535867pt;}
.yaf{bottom:147.188667pt;}
.y79{bottom:155.443200pt;}
.ya0{bottom:156.532533pt;}
.y55{bottom:161.186000pt;}
.yae{bottom:166.968267pt;}
.y54{bottom:171.852667pt;}
.y78{bottom:172.776533pt;}
.y9f{bottom:173.865867pt;}
.yf4{bottom:178.455467pt;}
.y53{bottom:182.519333pt;}
.yad{bottom:186.747733pt;}
.y77{bottom:190.109867pt;}
.y9e{bottom:191.199200pt;}
.yf3{bottom:193.122133pt;}
.y52{bottom:193.186000pt;}
.y1e{bottom:196.997733pt;}
.y51{bottom:203.852667pt;}
.yd1{bottom:204.236533pt;}
.yac{bottom:206.527200pt;}
.y76{bottom:207.443200pt;}
.yf2{bottom:207.788800pt;}
.y9d{bottom:208.532533pt;}
.y1d{bottom:210.331067pt;}
.y50{bottom:214.519333pt;}
.yd0{bottom:220.236533pt;}
.yf1{bottom:222.455467pt;}
.yab{bottom:222.527200pt;}
.y1c{bottom:223.664400pt;}
.y75{bottom:224.776533pt;}
.y4f{bottom:225.186000pt;}
.y9c{bottom:225.865867pt;}
.y4e{bottom:235.852667pt;}
.y1b{bottom:236.997733pt;}
.yf0{bottom:237.122133pt;}
.ycf{bottom:240.016000pt;}
.y74{bottom:242.109867pt;}
.yaa{bottom:242.306800pt;}
.y9b{bottom:243.199200pt;}
.y4d{bottom:246.519333pt;}
.y1a{bottom:250.331067pt;}
.yef{bottom:251.788800pt;}
.yce{bottom:256.016000pt;}
.y4c{bottom:257.186000pt;}
.ya9{bottom:258.306800pt;}
.y73{bottom:259.443200pt;}
.y9a{bottom:260.532533pt;}
.y19{bottom:263.664400pt;}
.y4b{bottom:267.852667pt;}
.ycd{bottom:275.795467pt;}
.y72{bottom:276.776533pt;}
.y18{bottom:276.997733pt;}
.y99{bottom:277.865867pt;}
.ya8{bottom:278.086400pt;}
.y4a{bottom:278.519333pt;}
.yee{bottom:288.019733pt;}
.y49{bottom:289.186000pt;}
.y17{bottom:290.331067pt;}
.ya5{bottom:294.109867pt;}
.y98{bottom:295.199200pt;}
.ycc{bottom:295.575067pt;}
.ya7{bottom:297.865867pt;}
.yed{bottom:302.686400pt;}
.y16{bottom:303.664400pt;}
.y48{bottom:307.411733pt;}
.y71{bottom:311.443200pt;}
.y97{bottom:312.532533pt;}
.ya6{bottom:313.865867pt;}
.ycb{bottom:315.354533pt;}
.y15{bottom:316.997733pt;}
.yec{bottom:317.353067pt;}
.y47{bottom:320.745067pt;}
.ya4{bottom:328.776533pt;}
.y96{bottom:329.865867pt;}
.y14{bottom:330.331067pt;}
.yeb{bottom:332.019733pt;}
.yca{bottom:335.134133pt;}
.y13{bottom:343.664400pt;}
.y70{bottom:346.109867pt;}
.yea{bottom:346.686400pt;}
.y95{bottom:347.199200pt;}
.yc9{bottom:351.134133pt;}
.y46{bottom:352.976000pt;}
.y12{bottom:356.997733pt;}
.ye9{bottom:361.353067pt;}
.y6f{bottom:363.443200pt;}
.y45{bottom:363.642667pt;}
.y94{bottom:364.532533pt;}
.y11{bottom:370.331067pt;}
.yc8{bottom:370.913600pt;}
.ye8{bottom:376.019733pt;}
.y6e{bottom:380.776533pt;}
.y93{bottom:381.865867pt;}
.y44{bottom:381.868400pt;}
.y10{bottom:383.664400pt;}
.yc7{bottom:390.693200pt;}
.y43{bottom:392.535067pt;}
.yf{bottom:396.997733pt;}
.y6d{bottom:398.109867pt;}
.y92{bottom:399.199200pt;}
.y42{bottom:403.201733pt;}
.yc6{bottom:406.693200pt;}
.ye{bottom:410.331067pt;}
.ye7{bottom:412.250667pt;}
.y41{bottom:413.868400pt;}
.y6c{bottom:415.443200pt;}
.y91{bottom:416.532533pt;}
.yc5{bottom:422.693200pt;}
.yd{bottom:423.664400pt;}
.y40{bottom:424.535067pt;}
.ye6{bottom:426.917333pt;}
.y6b{bottom:432.776533pt;}
.y90{bottom:433.865867pt;}
.y3f{bottom:435.201733pt;}
.yc{bottom:436.997733pt;}
.ye5{bottom:441.584000pt;}
.yc4{bottom:442.472667pt;}
.y3e{bottom:445.868400pt;}
.y6a{bottom:450.109867pt;}
.y8f{bottom:451.199200pt;}
.ye4{bottom:456.250667pt;}
.y3d{bottom:456.535067pt;}
.yb{bottom:457.890133pt;}
.yc3{bottom:458.472667pt;}
.y3c{bottom:467.201733pt;}
.y69{bottom:467.443200pt;}
.y8e{bottom:468.532533pt;}
.ye3{bottom:470.917333pt;}
.y3b{bottom:477.868400pt;}
.yc2{bottom:478.252133pt;}
.y68{bottom:484.776533pt;}
.ye2{bottom:485.584000pt;}
.y8d{bottom:485.865867pt;}
.y3a{bottom:488.535067pt;}
.yc1{bottom:494.252133pt;}
.y39{bottom:499.201733pt;}
.ye1{bottom:500.250667pt;}
.y67{bottom:502.109867pt;}
.y8c{bottom:503.199200pt;}
.y38{bottom:509.868400pt;}
.ya{bottom:510.352000pt;}
.yc0{bottom:514.031733pt;}
.ye0{bottom:514.917333pt;}
.y66{bottom:519.443200pt;}
.y8b{bottom:520.532533pt;}
.y37{bottom:528.094133pt;}
.ybf{bottom:530.031733pt;}
.y9{bottom:531.685333pt;}
.y65{bottom:536.776533pt;}
.y8a{bottom:537.865867pt;}
.y36{bottom:541.427467pt;}
.ybe{bottom:549.811333pt;}
.ydf{bottom:551.148267pt;}
.y8{bottom:553.018667pt;}
.y64{bottom:554.109867pt;}
.y89{bottom:555.199200pt;}
.ybd{bottom:565.811333pt;}
.yde{bottom:565.814933pt;}
.y63{bottom:571.443200pt;}
.y88{bottom:572.532533pt;}
.y35{bottom:573.658400pt;}
.ydd{bottom:580.481600pt;}
.y34{bottom:584.325067pt;}
.ybc{bottom:585.590800pt;}
.y62{bottom:588.776533pt;}
.y87{bottom:589.865867pt;}
.y7{bottom:593.249733pt;}
.ydc{bottom:595.148267pt;}
.ybb{bottom:601.590800pt;}
.y33{bottom:602.550800pt;}
.y61{bottom:606.109867pt;}
.y86{bottom:607.199200pt;}
.ydb{bottom:609.814933pt;}
.y32{bottom:613.217467pt;}
.y6{bottom:617.249733pt;}
.yba{bottom:617.590800pt;}
.y60{bottom:623.443200pt;}
.y31{bottom:623.884133pt;}
.yda{bottom:624.481600pt;}
.y85{bottom:624.532533pt;}
.y30{bottom:634.550800pt;}
.yb9{bottom:637.370267pt;}
.yd9{bottom:639.148267pt;}
.y5f{bottom:640.776533pt;}
.y5{bottom:641.249733pt;}
.y84{bottom:641.865867pt;}
.y2f{bottom:645.217467pt;}
.yb8{bottom:653.370267pt;}
.y2e{bottom:655.884133pt;}
.y5e{bottom:658.109867pt;}
.y83{bottom:659.199200pt;}
.y2d{bottom:666.550800pt;}
.y4{bottom:670.583067pt;}
.yb7{bottom:673.149867pt;}
.yd8{bottom:675.379333pt;}
.y5d{bottom:675.443200pt;}
.y82{bottom:676.532533pt;}
.y2c{bottom:677.217467pt;}
.y2b{bottom:687.884133pt;}
.yb6{bottom:689.149867pt;}
.yd7{bottom:690.045867pt;}
.y5c{bottom:692.776533pt;}
.y81{bottom:693.865867pt;}
.y2a{bottom:698.550800pt;}
.y3{bottom:699.916400pt;}
.yd6{bottom:704.712533pt;}
.yb5{bottom:708.929467pt;}
.y29{bottom:709.217467pt;}
.y5b{bottom:710.109867pt;}
.y80{bottom:711.199200pt;}
.yd5{bottom:719.379200pt;}
.y28{bottom:719.884133pt;}
.y5a{bottom:727.443200pt;}
.y7f{bottom:728.532533pt;}
.yb4{bottom:728.708933pt;}
.y27{bottom:730.550800pt;}
.yd4{bottom:734.045867pt;}
.y7e{bottom:745.865867pt;}
.yb3{bottom:748.488533pt;}
.yd3{bottom:748.712533pt;}
.y26{bottom:748.776533pt;}
.y25{bottom:762.109867pt;}
.y7d{bottom:763.199200pt;}
.yd2{bottom:763.379200pt;}
.yb2{bottom:764.488533pt;}
.y23{bottom:823.402400pt;}
.y59{bottom:823.402533pt;}
.h7{height:27.216000pt;}
.h9{height:27.290667pt;}
.h2{height:31.104000pt;}
.h6{height:31.189333pt;}
.ha{height:34.992000pt;}
.hb{height:35.088000pt;}
.h8{height:38.986667pt;}
.h5{height:46.656000pt;}
.h4{height:62.378667pt;}
.h3{height:81.872000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:55.431200pt;}
.x9{left:58.413067pt;}
.x5{left:71.294000pt;}
.x7{left:75.590533pt;}
.x6{left:95.128667pt;}
.x13{left:195.470000pt;}
.x14{left:196.835600pt;}
.x15{left:210.690933pt;}
.x3{left:211.653600pt;}
.x1d{left:218.712667pt;}
.x12{left:231.672400pt;}
.xc{left:232.952667pt;}
.x1a{left:246.520133pt;}
.xb{left:250.466800pt;}
.x17{left:259.874933pt;}
.xd{left:290.732800pt;}
.x20{left:301.922400pt;}
.x10{left:320.747867pt;}
.x18{left:323.201733pt;}
.x2{left:350.954533pt;}
.xe{left:357.164667pt;}
.x1f{left:363.574933pt;}
.x1c{left:370.626267pt;}
.x26{left:377.824933pt;}
.x8{left:388.346400pt;}
.x19{left:390.603867pt;}
.x1e{left:394.859867pt;}
.x25{left:401.557733pt;}
.x22{left:404.460000pt;}
.x1b{left:406.913200pt;}
.x23{left:427.989867pt;}
.xa{left:431.237200pt;}
.xf{left:445.494000pt;}
.x21{left:450.761067pt;}
.x11{left:452.405200pt;}
.x24{left:456.789333pt;}
.x16{left:458.165867pt;}
.x1{left:565.984267pt;}
}




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