
    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_4b50c7cd047ad2f707f2e905.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930176;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_b568f551ba57179cbf092617.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950195;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_3662761d909b4f29f88d0659.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_17a70d1469e4379659786ebe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882812;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_660afd73d55cdf511e3f92af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_c499dc28bcf8bccf48bc82c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_07b1ecf7ccd357aca7630b26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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_c170ff19939bef7af39527af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_b87285eeb9186630cd3720b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.755371;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_cacc42b301ebd508fb231f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755371;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_c5bcb02207ed642ec674d122.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.931641;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_0946b44dc1616f8c1c4d58f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.755371;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:ffd;src:url('chunks/assets/font_af21295be5400cf35eb0e7f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.753418;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);}
.v2{vertical-align:-5.100000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.595400px;}
.ls10{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.270000px;}
.ls1{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.009000px;}
.ls16{letter-spacing:2.872800px;}
.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;}
}
.ws2{word-spacing:-126.144000px;}
.ws3{word-spacing:-88.300800px;}
.ws11{word-spacing:-23.100000px;}
.ws0{word-spacing:-19.656000px;}
.ws3a{word-spacing:-17.220000px;}
.ws55{word-spacing:-17.100000px;}
.ws3d{word-spacing:-17.040000px;}
.ws15{word-spacing:-16.680000px;}
.ws16{word-spacing:-16.500000px;}
.ws54{word-spacing:-16.260000px;}
.ws14{word-spacing:-16.020000px;}
.ws3c{word-spacing:-15.900000px;}
.ws12{word-spacing:-15.498000px;}
.ws79{word-spacing:-15.336000px;}
.ws13{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.850000px;}
.ws7a{word-spacing:-14.526000px;}
.ws1{word-spacing:-13.759200px;}
.ws3b{word-spacing:-12.054000px;}
.ws26{word-spacing:-4.200000px;}
.ws24{word-spacing:-4.140000px;}
.ws6a{word-spacing:-4.080000px;}
.ws76{word-spacing:-4.020000px;}
.ws7{word-spacing:-3.888000px;}
.wsa{word-spacing:-3.780000px;}
.ws8{word-spacing:-3.726000px;}
.ws45{word-spacing:-3.660000px;}
.ws4a{word-spacing:-3.240000px;}
.ws4b{word-spacing:-3.120000px;}
.ws64{word-spacing:-2.880000px;}
.ws4f{word-spacing:-2.820000px;}
.ws65{word-spacing:-2.760000px;}
.ws51{word-spacing:-2.640000px;}
.ws5a{word-spacing:-2.520000px;}
.ws71{word-spacing:-2.340000px;}
.ws29{word-spacing:-2.220000px;}
.ws5d{word-spacing:-2.160000px;}
.ws37{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.680000px;}
.ws47{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.560000px;}
.ws69{word-spacing:-1.500000px;}
.ws32{word-spacing:-1.320000px;}
.ws43{word-spacing:-1.260000px;}
.ws60{word-spacing:-1.200000px;}
.wsf{word-spacing:-0.972000px;}
.ws68{word-spacing:-0.960000px;}
.ws27{word-spacing:-0.840000px;}
.ws1b{word-spacing:-0.810000px;}
.ws6b{word-spacing:-0.780000px;}
.ws5e{word-spacing:-0.720000px;}
.ws36{word-spacing:-0.660000px;}
.ws41{word-spacing:-0.600000px;}
.ws31{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.300000px;}
.ws1a{word-spacing:-0.270000px;}
.ws33{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws58{word-spacing:0.060000px;}
.ws18{word-spacing:0.162000px;}
.ws22{word-spacing:0.180000px;}
.ws20{word-spacing:0.216000px;}
.ws17{word-spacing:0.252000px;}
.ws10{word-spacing:0.270000px;}
.ws6{word-spacing:0.300000px;}
.ws72{word-spacing:0.360000px;}
.ws25{word-spacing:0.420000px;}
.ws50{word-spacing:0.600000px;}
.ws66{word-spacing:0.660000px;}
.ws42{word-spacing:0.720000px;}
.ws2e{word-spacing:0.780000px;}
.ws5f{word-spacing:0.900000px;}
.wsb{word-spacing:0.918000px;}
.ws57{word-spacing:1.020000px;}
.ws21{word-spacing:1.140000px;}
.ws2d{word-spacing:1.320000px;}
.ws2a{word-spacing:1.680000px;}
.ws19{word-spacing:1.836000px;}
.ws5b{word-spacing:1.860000px;}
.ws34{word-spacing:2.040000px;}
.ws63{word-spacing:2.100000px;}
.ws1f{word-spacing:2.214000px;}
.ws35{word-spacing:2.220000px;}
.ws9{word-spacing:2.430000px;}
.ws28{word-spacing:2.460000px;}
.ws40{word-spacing:2.760000px;}
.ws3f{word-spacing:2.940000px;}
.ws4e{word-spacing:3.000000px;}
.wsc{word-spacing:3.024000px;}
.ws4d{word-spacing:3.060000px;}
.ws7b{word-spacing:3.132000px;}
.ws6e{word-spacing:3.180000px;}
.ws67{word-spacing:3.240000px;}
.ws62{word-spacing:3.300000px;}
.wsd{word-spacing:3.456000px;}
.ws23{word-spacing:3.480000px;}
.ws59{word-spacing:3.900000px;}
.ws38{word-spacing:4.140000px;}
.ws70{word-spacing:4.260000px;}
.wse{word-spacing:4.320000px;}
.ws61{word-spacing:4.440000px;}
.ws49{word-spacing:4.500000px;}
.ws30{word-spacing:4.800000px;}
.ws3e{word-spacing:4.860000px;}
.ws1e{word-spacing:4.968000px;}
.ws4c{word-spacing:5.040000px;}
.ws5c{word-spacing:5.160000px;}
.ws78{word-spacing:5.280000px;}
.ws1d{word-spacing:5.292000px;}
.ws75{word-spacing:5.460000px;}
.ws74{word-spacing:5.640000px;}
.ws48{word-spacing:5.700000px;}
.ws53{word-spacing:6.000000px;}
.ws1c{word-spacing:6.048000px;}
.ws52{word-spacing:6.240000px;}
.ws2f{word-spacing:6.300000px;}
.ws39{word-spacing:6.420000px;}
.ws6d{word-spacing:6.600000px;}
.ws46{word-spacing:6.660000px;}
.ws6c{word-spacing:6.780000px;}
.ws2c{word-spacing:7.020000px;}
.ws73{word-spacing:7.260000px;}
.ws2b{word-spacing:8.340000px;}
.ws77{word-spacing:8.640000px;}
._d{margin-left:-2806.931400px;}
._1{margin-left:-16.698000px;}
._4{margin-left:-4.968000px;}
._c{margin-left:-3.828000px;}
._0{margin-left:-1.862400px;}
._5{width:1.026000px;}
._7{width:2.263800px;}
._8{width:3.676200px;}
._3{width:22.399800px;}
._a{width:86.640000px;}
._2{width:89.856000px;}
._b{width:91.320000px;}
._e{width:92.400000px;}
._9{width:1627.442400px;}
._6{width:1855.412400px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:42.000000px;}
.fs1{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:302.400000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:65.599200px;}
.y71{bottom:108.000000px;}
.y104{bottom:124.200000px;}
.yc4{bottom:126.058350px;}
.yea{bottom:126.130650px;}
.y9a{bottom:126.401700px;}
.y70{bottom:126.854550px;}
.y103{bottom:140.400000px;}
.yc3{bottom:144.116850px;}
.ye9{bottom:144.261450px;}
.y6f{bottom:145.709100px;}
.y99{bottom:153.803400px;}
.ye8{bottom:162.392100px;}
.y6e{bottom:164.563650px;}
.yc2{bottom:171.175350px;}
.y98{bottom:172.204950px;}
.y42{bottom:173.200650px;}
.ye7{bottom:180.522600px;}
.y6d{bottom:183.418200px;}
.y97{bottom:190.606650px;}
.y41{bottom:198.400650px;}
.ye6{bottom:198.653400px;}
.y6c{bottom:202.272750px;}
.y96{bottom:209.008350px;}
.yc1{bottom:213.233850px;}
.y40{bottom:214.600650px;}
.y6b{bottom:221.127300px;}
.ye5{bottom:225.784050px;}
.y95{bottom:227.410050px;}
.y3f{bottom:230.800650px;}
.y6a{bottom:239.981850px;}
.yc0{bottom:240.292200px;}
.y94{bottom:254.811750px;}
.y3e{bottom:256.000650px;}
.ybf{bottom:258.350700px;}
.y69{bottom:258.836400px;}
.y3d{bottom:272.200650px;}
.ybe{bottom:276.409200px;}
.y68{bottom:277.690950px;}
.ye4{bottom:283.514700px;}
.y3c{bottom:288.400650px;}
.ybd{bottom:294.467700px;}
.y67{bottom:296.545650px;}
.y93{bottom:297.213450px;}
.ye3{bottom:301.645500px;}
.y3b{bottom:304.600650px;}
.ybc{bottom:312.526050px;}
.y66{bottom:315.400200px;}
.y92{bottom:315.615000px;}
.ye2{bottom:319.776150px;}
.y3a{bottom:320.800650px;}
.ybb{bottom:330.584550px;}
.y65{bottom:334.254750px;}
.ye1{bottom:337.906800px;}
.y91{bottom:343.016700px;}
.y39{bottom:346.000650px;}
.yba{bottom:348.642900px;}
.y64{bottom:353.109300px;}
.y90{bottom:361.418400px;}
.y38{bottom:362.200650px;}
.ye0{bottom:365.037450px;}
.y63{bottom:371.963850px;}
.yb9{bottom:375.701400px;}
.y37{bottom:378.400650px;}
.y8f{bottom:379.820100px;}
.y62{bottom:390.818400px;}
.y36{bottom:394.600650px;}
.y8e{bottom:407.221800px;}
.y61{bottom:409.672950px;}
.y35{bottom:410.800650px;}
.yb8{bottom:413.259900px;}
.ydf{bottom:422.768100px;}
.y34{bottom:427.000650px;}
.y60{bottom:428.527500px;}
.yb7{bottom:431.318250px;}
.yde{bottom:440.898900px;}
.y33{bottom:443.200650px;}
.y5f{bottom:447.382050px;}
.y8d{bottom:449.623500px;}
.yb6{bottom:458.376750px;}
.ydd{bottom:459.029550px;}
.y32{bottom:459.400650px;}
.y5e{bottom:466.236600px;}
.y31{bottom:475.600650px;}
.y8c{bottom:477.025200px;}
.ydc{bottom:477.160200px;}
.y5d{bottom:485.091150px;}
.y30{bottom:491.800650px;}
.ydb{bottom:495.290850px;}
.y8b{bottom:495.426750px;}
.yb5{bottom:503.435250px;}
.y5c{bottom:503.945700px;}
.y2f{bottom:508.000650px;}
.yda{bottom:513.421500px;}
.y8a{bottom:513.828450px;}
.yb4{bottom:521.493600px;}
.y5b{bottom:522.800250px;}
.y2e{bottom:524.200650px;}
.yb3{bottom:539.552100px;}
.yd9{bottom:540.552300px;}
.y89{bottom:541.230150px;}
.y5a{bottom:541.654800px;}
.y2d{bottom:558.400650px;}
.y59{bottom:560.509350px;}
.yb2{bottom:566.610600px;}
.y2c{bottom:574.600650px;}
.y58{bottom:579.363900px;}
.y88{bottom:583.631850px;}
.yb1{bottom:584.669100px;}
.y2b{bottom:590.800650px;}
.y57{bottom:598.218450px;}
.yd8{bottom:598.282950px;}
.y87{bottom:602.033550px;}
.y102{bottom:606.889200px;}
.y2a{bottom:607.000650px;}
.yb0{bottom:611.727450px;}
.y56{bottom:617.073000px;}
.y29{bottom:623.200650px;}
.y101{bottom:624.889200px;}
.yd7{bottom:625.413600px;}
.y86{bottom:629.435100px;}
.yaf{bottom:629.785950px;}
.y55{bottom:635.927550px;}
.yc{bottom:637.855200px;}
.yd6{bottom:643.544250px;}
.yae{bottom:647.844300px;}
.y28{bottom:657.400650px;}
.y54{bottom:663.782250px;}
.yd5{bottom:670.674900px;}
.y27{bottom:673.600650px;}
.y85{bottom:674.836800px;}
.yad{bottom:674.902800px;}
.y100{bottom:678.889200px;}
.yb{bottom:681.955050px;}
.yd4{bottom:688.805550px;}
.y26{bottom:689.800650px;}
.yff{bottom:696.889200px;}
.ya{bottom:698.155050px;}
.y25{bottom:706.000650px;}
.yd3{bottom:706.936350px;}
.y9{bottom:714.355200px;}
.yfe{bottom:714.889200px;}
.yac{bottom:716.961300px;}
.y24{bottom:722.200650px;}
.y53{bottom:722.236650px;}
.yd2{bottom:725.067000px;}
.y8{bottom:730.555050px;}
.y84{bottom:732.838500px;}
.yfd{bottom:732.889200px;}
.y23{bottom:738.400650px;}
.yd1{bottom:743.197650px;}
.yab{bottom:744.019800px;}
.y52{bottom:748.291200px;}
.yfc{bottom:750.889200px;}
.y83{bottom:751.240200px;}
.y22{bottom:754.600650px;}
.yd0{bottom:761.328300px;}
.yaa{bottom:762.078150px;}
.y51{bottom:765.345900px;}
.yfb{bottom:768.889200px;}
.y82{bottom:769.641900px;}
.y21{bottom:770.800650px;}
.y7{bottom:779.155200px;}
.ycf{bottom:779.458950px;}
.ya9{bottom:780.136650px;}
.y50{bottom:782.400450px;}
.yfa{bottom:786.889200px;}
.y20{bottom:787.000650px;}
.y81{bottom:788.043600px;}
.ya8{bottom:798.195150px;}
.y4f{bottom:799.455000px;}
.y1f{bottom:803.200650px;}
.y6{bottom:804.355200px;}
.yf9{bottom:804.889200px;}
.y80{bottom:806.445150px;}
.yce{bottom:806.589600px;}
.y4e{bottom:816.509550px;}
.y1e{bottom:819.400650px;}
.yf8{bottom:822.889200px;}
.y7f{bottom:824.846850px;}
.ya7{bottom:825.253500px;}
.y5{bottom:829.555050px;}
.y4d{bottom:833.564100px;}
.y1d{bottom:835.600650px;}
.yf7{bottom:840.889200px;}
.y7e{bottom:843.248550px;}
.ya6{bottom:843.312000px;}
.ycd{bottom:848.720400px;}
.y4c{bottom:850.618650px;}
.y1c{bottom:851.800800px;}
.yf6{bottom:858.889200px;}
.ya5{bottom:861.370350px;}
.y7d{bottom:861.650250px;}
.ycc{bottom:866.851050px;}
.y4b{bottom:867.673200px;}
.yf5{bottom:876.889200px;}
.ya4{bottom:879.428850px;}
.y7c{bottom:880.051950px;}
.y1b{bottom:886.000800px;}
.y4{bottom:890.436300px;}
.ycb{bottom:893.981700px;}
.yf4{bottom:894.889200px;}
.ya3{bottom:897.487350px;}
.y7b{bottom:898.453650px;}
.y1a{bottom:904.000800px;}
.y4a{bottom:911.727750px;}
.yf3{bottom:912.889200px;}
.ya2{bottom:915.545700px;}
.y7a{bottom:916.855200px;}
.y19{bottom:922.000800px;}
.y49{bottom:928.782300px;}
.yf2{bottom:930.889200px;}
.y79{bottom:935.256900px;}
.yca{bottom:939.112500px;}
.y18{bottom:940.000800px;}
.ya1{bottom:942.604200px;}
.y48{bottom:945.836850px;}
.yf1{bottom:948.889200px;}
.y78{bottom:953.658600px;}
.yc9{bottom:957.243000px;}
.y17{bottom:958.000800px;}
.y47{bottom:962.891400px;}
.y3{bottom:965.365350px;}
.ye{bottom:965.764200px;}
.yf0{bottom:966.889200px;}
.y77{bottom:972.060300px;}
.yc8{bottom:975.373800px;}
.y46{bottom:979.945950px;}
.ya0{bottom:984.662700px;}
.yef{bottom:984.889200px;}
.y76{bottom:990.462000px;}
.yc7{bottom:993.504450px;}
.y16{bottom:994.000800px;}
.yd{bottom:997.328400px;}
.y9f{bottom:1002.721200px;}
.yee{bottom:1002.889200px;}
.y75{bottom:1008.863550px;}
.y15{bottom:1013.200800px;}
.y45{bottom:1020.400500px;}
.yc6{bottom:1020.635100px;}
.y9e{bottom:1020.779550px;}
.yed{bottom:1020.889200px;}
.y74{bottom:1027.265400px;}
.yf{bottom:1028.901150px;}
.y14{bottom:1034.800800px;}
.yc5{bottom:1038.765900px;}
.y9d{bottom:1038.838050px;}
.yec{bottom:1038.889200px;}
.y44{bottom:1046.455050px;}
.y73{bottom:1054.666950px;}
.y2{bottom:1055.365350px;}
.y13{bottom:1056.400800px;}
.yeb{bottom:1056.889200px;}
.y9c{bottom:1056.896550px;}
.y10{bottom:1060.465350px;}
.y12{bottom:1078.000800px;}
.y11{bottom:1088.022900px;}
.y72{bottom:1097.389200px;}
.y9b{bottom:1098.064200px;}
.y43{bottom:1105.653150px;}
.h6{height:39.999023px;}
.ha{height:40.025391px;}
.hc{height:44.414062px;}
.h9{height:44.443359px;}
.h8{height:44.472656px;}
.hb{height:48.919922px;}
.h5{height:53.332031px;}
.h7{height:53.367188px;}
.h1{height:53.437500px;}
.h4{height:62.220703px;}
.h3{height:76.253906px;}
.h2{height:319.781250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.xc{left:-153.360000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x2{left:109.725000px;}
.xe{left:130.500000px;}
.x11{left:135.000000px;}
.x5{left:174.070650px;}
.x4{left:200.202750px;}
.x1{left:227.728800px;}
.xf{left:233.850000px;}
.x9{left:296.215350px;}
.x8{left:322.765650px;}
.xb{left:337.983450px;}
.x6{left:342.281400px;}
.xa{left:383.425650px;}
.x7{left:401.631900px;}
.x3{left:427.517550px;}
.x10{left:543.157350px;}
@media print{
.v2{vertical-align:-4.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.418133pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.008000pt;}
.ls16{letter-spacing:2.553600pt;}
.ws2{word-spacing:-112.128000pt;}
.ws3{word-spacing:-78.489600pt;}
.ws11{word-spacing:-20.533333pt;}
.ws0{word-spacing:-17.472000pt;}
.ws3a{word-spacing:-15.306667pt;}
.ws55{word-spacing:-15.200000pt;}
.ws3d{word-spacing:-15.146667pt;}
.ws15{word-spacing:-14.826667pt;}
.ws16{word-spacing:-14.666667pt;}
.ws54{word-spacing:-14.453333pt;}
.ws14{word-spacing:-14.240000pt;}
.ws3c{word-spacing:-14.133333pt;}
.ws12{word-spacing:-13.776000pt;}
.ws79{word-spacing:-13.632000pt;}
.ws13{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.200000pt;}
.ws7a{word-spacing:-12.912000pt;}
.ws1{word-spacing:-12.230400pt;}
.ws3b{word-spacing:-10.714667pt;}
.ws26{word-spacing:-3.733333pt;}
.ws24{word-spacing:-3.680000pt;}
.ws6a{word-spacing:-3.626667pt;}
.ws76{word-spacing:-3.573333pt;}
.ws7{word-spacing:-3.456000pt;}
.wsa{word-spacing:-3.360000pt;}
.ws8{word-spacing:-3.312000pt;}
.ws45{word-spacing:-3.253333pt;}
.ws4a{word-spacing:-2.880000pt;}
.ws4b{word-spacing:-2.773333pt;}
.ws64{word-spacing:-2.560000pt;}
.ws4f{word-spacing:-2.506667pt;}
.ws65{word-spacing:-2.453333pt;}
.ws51{word-spacing:-2.346667pt;}
.ws5a{word-spacing:-2.240000pt;}
.ws71{word-spacing:-2.080000pt;}
.ws29{word-spacing:-1.973333pt;}
.ws5d{word-spacing:-1.920000pt;}
.ws37{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.493333pt;}
.ws47{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.386667pt;}
.ws69{word-spacing:-1.333333pt;}
.ws32{word-spacing:-1.173333pt;}
.ws43{word-spacing:-1.120000pt;}
.ws60{word-spacing:-1.066667pt;}
.wsf{word-spacing:-0.864000pt;}
.ws68{word-spacing:-0.853333pt;}
.ws27{word-spacing:-0.746667pt;}
.ws1b{word-spacing:-0.720000pt;}
.ws6b{word-spacing:-0.693333pt;}
.ws5e{word-spacing:-0.640000pt;}
.ws36{word-spacing:-0.586667pt;}
.ws41{word-spacing:-0.533333pt;}
.ws31{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.266667pt;}
.ws1a{word-spacing:-0.240000pt;}
.ws33{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053333pt;}
.ws18{word-spacing:0.144000pt;}
.ws22{word-spacing:0.160000pt;}
.ws20{word-spacing:0.192000pt;}
.ws17{word-spacing:0.224000pt;}
.ws10{word-spacing:0.240000pt;}
.ws6{word-spacing:0.266667pt;}
.ws72{word-spacing:0.320000pt;}
.ws25{word-spacing:0.373333pt;}
.ws50{word-spacing:0.533333pt;}
.ws66{word-spacing:0.586667pt;}
.ws42{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.693333pt;}
.ws5f{word-spacing:0.800000pt;}
.wsb{word-spacing:0.816000pt;}
.ws57{word-spacing:0.906667pt;}
.ws21{word-spacing:1.013333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.493333pt;}
.ws19{word-spacing:1.632000pt;}
.ws5b{word-spacing:1.653333pt;}
.ws34{word-spacing:1.813333pt;}
.ws63{word-spacing:1.866667pt;}
.ws1f{word-spacing:1.968000pt;}
.ws35{word-spacing:1.973333pt;}
.ws9{word-spacing:2.160000pt;}
.ws28{word-spacing:2.186667pt;}
.ws40{word-spacing:2.453333pt;}
.ws3f{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.666667pt;}
.wsc{word-spacing:2.688000pt;}
.ws4d{word-spacing:2.720000pt;}
.ws7b{word-spacing:2.784000pt;}
.ws6e{word-spacing:2.826667pt;}
.ws67{word-spacing:2.880000pt;}
.ws62{word-spacing:2.933333pt;}
.wsd{word-spacing:3.072000pt;}
.ws23{word-spacing:3.093333pt;}
.ws59{word-spacing:3.466667pt;}
.ws38{word-spacing:3.680000pt;}
.ws70{word-spacing:3.786667pt;}
.wse{word-spacing:3.840000pt;}
.ws61{word-spacing:3.946667pt;}
.ws49{word-spacing:4.000000pt;}
.ws30{word-spacing:4.266667pt;}
.ws3e{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.480000pt;}
.ws5c{word-spacing:4.586667pt;}
.ws78{word-spacing:4.693333pt;}
.ws1d{word-spacing:4.704000pt;}
.ws75{word-spacing:4.853333pt;}
.ws74{word-spacing:5.013333pt;}
.ws48{word-spacing:5.066667pt;}
.ws53{word-spacing:5.333333pt;}
.ws1c{word-spacing:5.376000pt;}
.ws52{word-spacing:5.546667pt;}
.ws2f{word-spacing:5.600000pt;}
.ws39{word-spacing:5.706667pt;}
.ws6d{word-spacing:5.866667pt;}
.ws46{word-spacing:5.920000pt;}
.ws6c{word-spacing:6.026667pt;}
.ws2c{word-spacing:6.240000pt;}
.ws73{word-spacing:6.453333pt;}
.ws2b{word-spacing:7.413333pt;}
.ws77{word-spacing:7.680000pt;}
._d{margin-left:-2495.050133pt;}
._1{margin-left:-14.842667pt;}
._4{margin-left:-4.416000pt;}
._c{margin-left:-3.402667pt;}
._0{margin-left:-1.655467pt;}
._5{width:0.912000pt;}
._7{width:2.012267pt;}
._8{width:3.267733pt;}
._3{width:19.910933pt;}
._a{width:77.013333pt;}
._2{width:79.872000pt;}
._b{width:81.173333pt;}
._e{width:82.133333pt;}
._9{width:1446.615467pt;}
._6{width:1649.255467pt;}
.fs9{font-size:37.333333pt;}
.fs1{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:268.800000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:58.310400pt;}
.y71{bottom:96.000000pt;}
.y104{bottom:110.400000pt;}
.yc4{bottom:112.051867pt;}
.yea{bottom:112.116133pt;}
.y9a{bottom:112.357067pt;}
.y70{bottom:112.759600pt;}
.y103{bottom:124.800000pt;}
.yc3{bottom:128.103867pt;}
.ye9{bottom:128.232400pt;}
.y6f{bottom:129.519200pt;}
.y99{bottom:136.714133pt;}
.ye8{bottom:144.348533pt;}
.y6e{bottom:146.278800pt;}
.yc2{bottom:152.155867pt;}
.y98{bottom:153.071067pt;}
.y42{bottom:153.956133pt;}
.ye7{bottom:160.464533pt;}
.y6d{bottom:163.038400pt;}
.y97{bottom:169.428133pt;}
.y41{bottom:176.356133pt;}
.ye6{bottom:176.580800pt;}
.y6c{bottom:179.798000pt;}
.y96{bottom:185.785200pt;}
.yc1{bottom:189.541200pt;}
.y40{bottom:190.756133pt;}
.y6b{bottom:196.557600pt;}
.ye5{bottom:200.696933pt;}
.y95{bottom:202.142267pt;}
.y3f{bottom:205.156133pt;}
.y6a{bottom:213.317200pt;}
.yc0{bottom:213.593067pt;}
.y94{bottom:226.499333pt;}
.y3e{bottom:227.556133pt;}
.ybf{bottom:229.645067pt;}
.y69{bottom:230.076800pt;}
.y3d{bottom:241.956133pt;}
.ybe{bottom:245.697067pt;}
.y68{bottom:246.836400pt;}
.ye4{bottom:252.013067pt;}
.y3c{bottom:256.356133pt;}
.ybd{bottom:261.749067pt;}
.y67{bottom:263.596133pt;}
.y93{bottom:264.189733pt;}
.ye3{bottom:268.129333pt;}
.y3b{bottom:270.756133pt;}
.ybc{bottom:277.800933pt;}
.y66{bottom:280.355733pt;}
.y92{bottom:280.546667pt;}
.ye2{bottom:284.245467pt;}
.y3a{bottom:285.156133pt;}
.ybb{bottom:293.852933pt;}
.y65{bottom:297.115333pt;}
.ye1{bottom:300.361600pt;}
.y91{bottom:304.903733pt;}
.y39{bottom:307.556133pt;}
.yba{bottom:309.904800pt;}
.y64{bottom:313.874933pt;}
.y90{bottom:321.260800pt;}
.y38{bottom:321.956133pt;}
.ye0{bottom:324.477733pt;}
.y63{bottom:330.634533pt;}
.yb9{bottom:333.956800pt;}
.y37{bottom:336.356133pt;}
.y8f{bottom:337.617867pt;}
.y62{bottom:347.394133pt;}
.y36{bottom:350.756133pt;}
.y8e{bottom:361.974933pt;}
.y61{bottom:364.153733pt;}
.y35{bottom:365.156133pt;}
.yb8{bottom:367.342133pt;}
.ydf{bottom:375.793867pt;}
.y34{bottom:379.556133pt;}
.y60{bottom:380.913333pt;}
.yb7{bottom:383.394000pt;}
.yde{bottom:391.910133pt;}
.y33{bottom:393.956133pt;}
.y5f{bottom:397.672933pt;}
.y8d{bottom:399.665333pt;}
.yb6{bottom:407.446000pt;}
.ydd{bottom:408.026267pt;}
.y32{bottom:408.356133pt;}
.y5e{bottom:414.432533pt;}
.y31{bottom:422.756133pt;}
.y8c{bottom:424.022400pt;}
.ydc{bottom:424.142400pt;}
.y5d{bottom:431.192133pt;}
.y30{bottom:437.156133pt;}
.ydb{bottom:440.258533pt;}
.y8b{bottom:440.379333pt;}
.yb5{bottom:447.498000pt;}
.y5c{bottom:447.951733pt;}
.y2f{bottom:451.556133pt;}
.yda{bottom:456.374667pt;}
.y8a{bottom:456.736400pt;}
.yb4{bottom:463.549867pt;}
.y5b{bottom:464.711333pt;}
.y2e{bottom:465.956133pt;}
.yb3{bottom:479.601867pt;}
.yd9{bottom:480.490933pt;}
.y89{bottom:481.093467pt;}
.y5a{bottom:481.470933pt;}
.y2d{bottom:496.356133pt;}
.y59{bottom:498.230533pt;}
.yb2{bottom:503.653867pt;}
.y2c{bottom:510.756133pt;}
.y58{bottom:514.990133pt;}
.y88{bottom:518.783867pt;}
.yb1{bottom:519.705867pt;}
.y2b{bottom:525.156133pt;}
.y57{bottom:531.749733pt;}
.yd8{bottom:531.807067pt;}
.y87{bottom:535.140933pt;}
.y102{bottom:539.457067pt;}
.y2a{bottom:539.556133pt;}
.yb0{bottom:543.757733pt;}
.y56{bottom:548.509333pt;}
.y29{bottom:553.956133pt;}
.y101{bottom:555.457067pt;}
.yd7{bottom:555.923200pt;}
.y86{bottom:559.497867pt;}
.yaf{bottom:559.809733pt;}
.y55{bottom:565.268933pt;}
.yc{bottom:566.982400pt;}
.yd6{bottom:572.039333pt;}
.yae{bottom:575.861600pt;}
.y28{bottom:584.356133pt;}
.y54{bottom:590.028667pt;}
.yd5{bottom:596.155467pt;}
.y27{bottom:598.756133pt;}
.y85{bottom:599.854933pt;}
.yad{bottom:599.913600pt;}
.y100{bottom:603.457067pt;}
.yb{bottom:606.182267pt;}
.yd4{bottom:612.271600pt;}
.y26{bottom:613.156133pt;}
.yff{bottom:619.457067pt;}
.ya{bottom:620.582267pt;}
.y25{bottom:627.556133pt;}
.yd3{bottom:628.387867pt;}
.y9{bottom:634.982400pt;}
.yfe{bottom:635.457067pt;}
.yac{bottom:637.298933pt;}
.y24{bottom:641.956133pt;}
.y53{bottom:641.988133pt;}
.yd2{bottom:644.504000pt;}
.y8{bottom:649.382267pt;}
.y84{bottom:651.412000pt;}
.yfd{bottom:651.457067pt;}
.y23{bottom:656.356133pt;}
.yd1{bottom:660.620133pt;}
.yab{bottom:661.350933pt;}
.y52{bottom:665.147733pt;}
.yfc{bottom:667.457067pt;}
.y83{bottom:667.769067pt;}
.y22{bottom:670.756133pt;}
.yd0{bottom:676.736267pt;}
.yaa{bottom:677.402800pt;}
.y51{bottom:680.307467pt;}
.yfb{bottom:683.457067pt;}
.y82{bottom:684.126133pt;}
.y21{bottom:685.156133pt;}
.y7{bottom:692.582400pt;}
.ycf{bottom:692.852400pt;}
.ya9{bottom:693.454800pt;}
.y50{bottom:695.467067pt;}
.yfa{bottom:699.457067pt;}
.y20{bottom:699.556133pt;}
.y81{bottom:700.483200pt;}
.ya8{bottom:709.506800pt;}
.y4f{bottom:710.626667pt;}
.y1f{bottom:713.956133pt;}
.y6{bottom:714.982400pt;}
.yf9{bottom:715.457067pt;}
.y80{bottom:716.840133pt;}
.yce{bottom:716.968533pt;}
.y4e{bottom:725.786267pt;}
.y1e{bottom:728.356133pt;}
.yf8{bottom:731.457067pt;}
.y7f{bottom:733.197200pt;}
.ya7{bottom:733.558667pt;}
.y5{bottom:737.382267pt;}
.y4d{bottom:740.945867pt;}
.y1d{bottom:742.756133pt;}
.yf7{bottom:747.457067pt;}
.y7e{bottom:749.554267pt;}
.ya6{bottom:749.610667pt;}
.ycd{bottom:754.418133pt;}
.y4c{bottom:756.105467pt;}
.y1c{bottom:757.156267pt;}
.yf6{bottom:763.457067pt;}
.ya5{bottom:765.662533pt;}
.y7d{bottom:765.911333pt;}
.ycc{bottom:770.534267pt;}
.y4b{bottom:771.265067pt;}
.yf5{bottom:779.457067pt;}
.ya4{bottom:781.714533pt;}
.y7c{bottom:782.268400pt;}
.y1b{bottom:787.556267pt;}
.y4{bottom:791.498933pt;}
.ycb{bottom:794.650400pt;}
.yf4{bottom:795.457067pt;}
.ya3{bottom:797.766533pt;}
.y7b{bottom:798.625467pt;}
.y1a{bottom:803.556267pt;}
.y4a{bottom:810.424667pt;}
.yf3{bottom:811.457067pt;}
.ya2{bottom:813.818400pt;}
.y7a{bottom:814.982400pt;}
.y19{bottom:819.556267pt;}
.y49{bottom:825.584267pt;}
.yf2{bottom:827.457067pt;}
.y79{bottom:831.339467pt;}
.yca{bottom:834.766667pt;}
.y18{bottom:835.556267pt;}
.ya1{bottom:837.870400pt;}
.y48{bottom:840.743867pt;}
.yf1{bottom:843.457067pt;}
.y78{bottom:847.696533pt;}
.yc9{bottom:850.882667pt;}
.y17{bottom:851.556267pt;}
.y47{bottom:855.903467pt;}
.y3{bottom:858.102533pt;}
.ye{bottom:858.457067pt;}
.yf0{bottom:859.457067pt;}
.y77{bottom:864.053600pt;}
.yc8{bottom:866.998933pt;}
.y46{bottom:871.063067pt;}
.ya0{bottom:875.255733pt;}
.yef{bottom:875.457067pt;}
.y76{bottom:880.410667pt;}
.yc7{bottom:883.115067pt;}
.y16{bottom:883.556267pt;}
.yd{bottom:886.514133pt;}
.y9f{bottom:891.307733pt;}
.yee{bottom:891.457067pt;}
.y75{bottom:896.767600pt;}
.y15{bottom:900.622933pt;}
.y45{bottom:907.022667pt;}
.yc6{bottom:907.231200pt;}
.y9e{bottom:907.359600pt;}
.yed{bottom:907.457067pt;}
.y74{bottom:913.124800pt;}
.yf{bottom:914.578800pt;}
.y14{bottom:919.822933pt;}
.yc5{bottom:923.347467pt;}
.y9d{bottom:923.411600pt;}
.yec{bottom:923.457067pt;}
.y44{bottom:930.182267pt;}
.y73{bottom:937.481733pt;}
.y2{bottom:938.102533pt;}
.y13{bottom:939.022933pt;}
.yeb{bottom:939.457067pt;}
.y9c{bottom:939.463600pt;}
.y10{bottom:942.635867pt;}
.y12{bottom:958.222933pt;}
.y11{bottom:967.131467pt;}
.y72{bottom:975.457067pt;}
.y9b{bottom:976.057067pt;}
.y43{bottom:982.802800pt;}
.h6{height:35.554688pt;}
.ha{height:35.578125pt;}
.hc{height:39.479167pt;}
.h9{height:39.505208pt;}
.h8{height:39.531250pt;}
.hb{height:43.484375pt;}
.h5{height:47.406250pt;}
.h7{height:47.437500pt;}
.h1{height:47.500000pt;}
.h4{height:55.307292pt;}
.h3{height:67.781250pt;}
.h2{height:284.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.xc{left:-136.320000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x2{left:97.533333pt;}
.xe{left:116.000000pt;}
.x11{left:120.000000pt;}
.x5{left:154.729467pt;}
.x4{left:177.958000pt;}
.x1{left:202.425600pt;}
.xf{left:207.866667pt;}
.x9{left:263.302533pt;}
.x8{left:286.902800pt;}
.xb{left:300.429733pt;}
.x6{left:304.250133pt;}
.xa{left:340.822800pt;}
.x7{left:357.006133pt;}
.x3{left:380.015600pt;}
.x10{left:482.806533pt;}
}




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