
    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_2f069b00d845d35b2a39f8cd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_35f7b722da2b61dead42d3e4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ab63754de18cbcea22c06083.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65bf1014569032f8cca3bc17.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d551c47a52c95e8e6badc835.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_228ae1a99ac3afd6c2b5aaf2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a57c46e28f0b5694a3b237f3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.135742;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_d97c6296dac882c8990614af.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976111;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_35b930e1c0d3dba2369513bd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_84dd1abba3ebaadd383a1750.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.lsd{letter-spacing:-2.940000px;}
.lse{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.816000px;}
.ls6{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025200px;}
.ls13{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.921600px;}
.ls8{letter-spacing:1.200000px;}
.ls11{letter-spacing:3.542400px;}
.ls9{letter-spacing:5.380200px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.ws7e{word-spacing:-16.434000px;}
.ws17{word-spacing:-15.900000px;}
.ws16{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws42{word-spacing:-14.880000px;}
.ws23{word-spacing:-14.700000px;}
.ws3f{word-spacing:-14.280000px;}
.ws3e{word-spacing:-14.100000px;}
.ws43{word-spacing:-13.980000px;}
.ws41{word-spacing:-13.440000px;}
.ws7f{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws4{word-spacing:-12.960000px;}
.ws82{word-spacing:-12.852000px;}
.ws44{word-spacing:-12.690000px;}
.ws81{word-spacing:-12.312000px;}
.ws8{word-spacing:-12.150000px;}
.ws40{word-spacing:-11.940000px;}
.ws7{word-spacing:-11.772000px;}
.ws1{word-spacing:-10.896000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.ws67{word-spacing:-8.675040px;}
.ws7c{word-spacing:-8.220000px;}
.ws68{word-spacing:-7.807536px;}
.ws97{word-spacing:-7.290000px;}
.ws69{word-spacing:-4.980000px;}
.ws78{word-spacing:-3.480000px;}
.ws5d{word-spacing:-3.420000px;}
.ws74{word-spacing:-2.940000px;}
.ws84{word-spacing:-2.214000px;}
.ws73{word-spacing:-2.100000px;}
.ws4e{word-spacing:-2.040000px;}
.ws56{word-spacing:-1.560000px;}
.ws1e{word-spacing:-1.500000px;}
.ws93{word-spacing:-1.350000px;}
.wsb{word-spacing:-1.254000px;}
.ws1c{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.026000px;}
.ws59{word-spacing:-0.900000px;}
.ws4a{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.600000px;}
.ws3d{word-spacing:-0.540000px;}
.ws91{word-spacing:-0.432000px;}
.ws39{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.270000px;}
.ws9f{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.162000px;}
.ws57{word-spacing:-0.120000px;}
.ws76{word-spacing:-0.060000px;}
.ws32{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws70{word-spacing:0.120000px;}
.ws58{word-spacing:0.180000px;}
.wsf{word-spacing:0.270000px;}
.ws5c{word-spacing:0.480000px;}
.ws49{word-spacing:0.540000px;}
.ws45{word-spacing:0.600000px;}
.wsd{word-spacing:0.691200px;}
.ws9c{word-spacing:0.810000px;}
.wsa{word-spacing:0.816000px;}
.ws53{word-spacing:0.900000px;}
.ws1b{word-spacing:1.080000px;}
.ws51{word-spacing:1.260000px;}
.ws95{word-spacing:1.296000px;}
.ws48{word-spacing:1.458000px;}
.ws5e{word-spacing:1.500000px;}
.ws65{word-spacing:1.560000px;}
.ws19{word-spacing:1.620000px;}
.ws89{word-spacing:1.674000px;}
.ws24{word-spacing:1.740000px;}
.ws8e{word-spacing:1.782000px;}
.ws79{word-spacing:1.800000px;}
.ws72{word-spacing:1.980000px;}
.ws9d{word-spacing:1.998000px;}
.ws6d{word-spacing:2.040000px;}
.ws90{word-spacing:2.052000px;}
.ws20{word-spacing:2.100000px;}
.ws2f{word-spacing:2.160000px;}
.ws2d{word-spacing:2.220000px;}
.ws28{word-spacing:2.280000px;}
.ws77{word-spacing:2.340000px;}
.ws54{word-spacing:2.400000px;}
.ws4f{word-spacing:2.520000px;}
.ws88{word-spacing:2.538000px;}
.ws2e{word-spacing:2.700000px;}
.ws9a{word-spacing:2.808000px;}
.ws38{word-spacing:2.820000px;}
.ws66{word-spacing:2.880000px;}
.ws21{word-spacing:3.000000px;}
.ws86{word-spacing:3.132000px;}
.ws35{word-spacing:3.480000px;}
.ws8b{word-spacing:3.510000px;}
.ws6b{word-spacing:3.564000px;}
.ws8f{word-spacing:3.618000px;}
.ws63{word-spacing:3.660000px;}
.ws96{word-spacing:3.672000px;}
.ws64{word-spacing:3.720000px;}
.ws29{word-spacing:3.900000px;}
.ws98{word-spacing:3.942000px;}
.ws27{word-spacing:3.960000px;}
.ws8d{word-spacing:4.104000px;}
.ws25{word-spacing:4.260000px;}
.wsa0{word-spacing:4.482000px;}
.ws7a{word-spacing:4.500000px;}
.ws5b{word-spacing:4.740000px;}
.ws10{word-spacing:4.752000px;}
.ws2a{word-spacing:4.980000px;}
.ws1f{word-spacing:5.040000px;}
.ws5f{word-spacing:5.100000px;}
.ws6c{word-spacing:5.130000px;}
.ws8a{word-spacing:5.184000px;}
.ws92{word-spacing:5.346000px;}
.ws3a{word-spacing:5.400000px;}
.ws83{word-spacing:5.454000px;}
.ws9b{word-spacing:5.562000px;}
.ws99{word-spacing:5.832000px;}
.ws6f{word-spacing:5.940000px;}
.ws6a{word-spacing:5.994000px;}
.ws1d{word-spacing:6.000000px;}
.ws36{word-spacing:6.120000px;}
.ws37{word-spacing:6.180000px;}
.ws26{word-spacing:6.360000px;}
.ws71{word-spacing:6.420000px;}
.ws13{word-spacing:6.480000px;}
.ws52{word-spacing:6.660000px;}
.ws50{word-spacing:6.840000px;}
.ws62{word-spacing:6.900000px;}
.ws31{word-spacing:7.080000px;}
.ws4b{word-spacing:7.320000px;}
.ws75{word-spacing:7.380000px;}
.ws55{word-spacing:7.500000px;}
.ws46{word-spacing:7.560000px;}
.ws8c{word-spacing:7.614000px;}
.ws87{word-spacing:7.668000px;}
.ws34{word-spacing:7.740000px;}
.ws18{word-spacing:7.800000px;}
.ws61{word-spacing:7.860000px;}
.ws30{word-spacing:7.920000px;}
.ws12{word-spacing:7.938000px;}
.ws11{word-spacing:7.992000px;}
.ws22{word-spacing:8.220000px;}
.ws6e{word-spacing:8.640000px;}
.ws5a{word-spacing:8.940000px;}
.ws4d{word-spacing:9.180000px;}
.ws7b{word-spacing:9.420000px;}
.ws2c{word-spacing:9.480000px;}
.ws33{word-spacing:9.840000px;}
.ws9e{word-spacing:9.882000px;}
.wse{word-spacing:10.908000px;}
.ws1a{word-spacing:11.100000px;}
.ws2b{word-spacing:11.940000px;}
.ws7d{word-spacing:12.300000px;}
.ws4c{word-spacing:12.600000px;}
.ws47{word-spacing:12.720000px;}
.ws80{word-spacing:13.878000px;}
.ws85{word-spacing:15.930000px;}
.ws94{word-spacing:15.984000px;}
.ws60{word-spacing:18.360000px;}
._b{margin-left:-10.845600px;}
._15{margin-left:-8.602200px;}
._14{margin-left:-7.521600px;}
._a{margin-left:-5.701800px;}
._e{margin-left:-4.320000px;}
._4{margin-left:-2.841600px;}
._0{margin-left:-1.652400px;}
._1{width:1.173000px;}
._5{width:2.323200px;}
._2{width:3.417000px;}
._6{width:5.244600px;}
._7{width:6.397800px;}
._d{width:7.449000px;}
._8{width:9.186000px;}
._c{width:10.308000px;}
._9{width:11.382000px;}
._f{width:12.636000px;}
._10{width:13.872000px;}
._17{width:15.207000px;}
._11{width:16.926000px;}
._12{width:18.414000px;}
._13{width:20.328000px;}
._19{width:22.960200px;}
._1a{width:24.737400px;}
._18{width:30.056400px;}
._3{width:36.624000px;}
._16{width:43.217400px;}
.fc1{color:rgb(151,22,52);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.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.036150px;}
.y87{bottom:113.078700px;}
.y9e{bottom:113.078850px;}
.y2a{bottom:117.212700px;}
.yd{bottom:117.875550px;}
.yc{bottom:132.275550px;}
.y86{bottom:134.078700px;}
.y6d{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.yb{bottom:146.675550px;}
.y85{bottom:155.078700px;}
.y6c{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.ya{bottom:161.075550px;}
.y84{bottom:176.078700px;}
.y6b{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.ybf{bottom:190.440900px;}
.y83{bottom:197.078700px;}
.y6a{bottom:197.078850px;}
.y38{bottom:199.392600px;}
.y26{bottom:214.944600px;}
.y37{bottom:217.392600px;}
.y82{bottom:218.078700px;}
.y69{bottom:218.078850px;}
.y36{bottom:235.392600px;}
.y81{bottom:239.078700px;}
.y68{bottom:239.078850px;}
.y35{bottom:253.392600px;}
.y80{bottom:260.078700px;}
.y67{bottom:260.078850px;}
.y34{bottom:271.392600px;}
.y7f{bottom:281.078700px;}
.y66{bottom:281.078850px;}
.ybe{bottom:286.529250px;}
.y33{bottom:289.392600px;}
.ya0{bottom:295.440900px;}
.y9d{bottom:295.441050px;}
.y7e{bottom:302.078700px;}
.y65{bottom:302.078850px;}
.y32{bottom:307.392600px;}
.y25{bottom:308.227950px;}
.yc3{bottom:315.513600px;}
.y7d{bottom:323.078700px;}
.y64{bottom:323.078850px;}
.y31{bottom:325.392600px;}
.y24{bottom:328.027950px;}
.yc2{bottom:336.513600px;}
.yaa{bottom:337.441050px;}
.y30{bottom:343.392600px;}
.y7c{bottom:344.078700px;}
.y63{bottom:344.078850px;}
.yc1{bottom:357.513600px;}
.y2f{bottom:361.392600px;}
.y7b{bottom:365.078700px;}
.y62{bottom:365.078850px;}
.y23{bottom:369.087900px;}
.y7a{bottom:386.078700px;}
.y61{bottom:386.078850px;}
.y22{bottom:388.887750px;}
.yc0{bottom:389.811150px;}
.y2e{bottom:396.400500px;}
.y79{bottom:407.078700px;}
.y60{bottom:407.078850px;}
.y21{bottom:408.687900px;}
.ybd{bottom:412.529250px;}
.y2d{bottom:414.400500px;}
.y78{bottom:428.078700px;}
.y5f{bottom:428.078850px;}
.y20{bottom:428.487900px;}
.y2c{bottom:432.400500px;}
.yd0{bottom:441.513450px;}
.y1f{bottom:448.287900px;}
.y77{bottom:449.078700px;}
.y5e{bottom:449.078850px;}
.y2b{bottom:450.400500px;}
.y97{bottom:462.513450px;}
.y1e{bottom:468.087900px;}
.y76{bottom:470.078700px;}
.y5d{bottom:470.078850px;}
.y1d{bottom:487.887750px;}
.y75{bottom:491.078700px;}
.y5c{bottom:491.078850px;}
.y96{bottom:494.811000px;}
.y1c{bottom:507.687900px;}
.y74{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.y1b{bottom:527.487900px;}
.y73{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.ybc{bottom:538.529250px;}
.y1a{bottom:547.287900px;}
.y72{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y90{bottom:565.968600px;}
.y19{bottom:567.087900px;}
.y6f{bottom:567.513600px;}
.ya9{bottom:567.932400px;}
.y71{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y8f{bottom:585.768600px;}
.y18{bottom:586.887750px;}
.ya8{bottom:587.732400px;}
.y95{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y6e{bottom:599.811150px;}
.y8e{bottom:605.568600px;}
.y17{bottom:606.687900px;}
.ya7{bottom:607.532400px;}
.y70{bottom:608.412450px;}
.y94{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.y8d{bottom:625.368600px;}
.y16{bottom:626.487900px;}
.ya6{bottom:627.332400px;}
.y93{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y8c{bottom:645.168600px;}
.y15{bottom:646.287900px;}
.ya5{bottom:647.132400px;}
.ybb{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.y8b{bottom:663.090000px;}
.y14{bottom:666.087900px;}
.y9b{bottom:679.272450px;}
.yba{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.y8a{bottom:682.890000px;}
.y13{bottom:685.887750px;}
.y9a{bottom:699.072450px;}
.yb9{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.y89{bottom:702.690000px;}
.y12{bottom:705.687900px;}
.y99{bottom:718.872450px;}
.ycf{bottom:722.078700px;}
.y51{bottom:722.078850px;}
.y88{bottom:722.490000px;}
.y11{bottom:725.487900px;}
.yb8{bottom:727.529250px;}
.y98{bottom:738.672450px;}
.y50{bottom:743.078850px;}
.y10{bottom:745.287900px;}
.yce{bottom:756.513450px;}
.yb7{bottom:764.078700px;}
.y4f{bottom:764.078850px;}
.yf{bottom:776.385300px;}
.ycd{bottom:777.513450px;}
.y4e{bottom:785.078850px;}
.yb6{bottom:790.529250px;}
.y4d{bottom:806.078850px;}
.ycc{bottom:809.811000px;}
.y9f{bottom:820.441050px;}
.yb5{bottom:827.078700px;}
.y4c{bottom:827.078850px;}
.y4b{bottom:848.078850px;}
.yb4{bottom:853.529250px;}
.y9{bottom:855.666900px;}
.ycb{bottom:869.078700px;}
.y4a{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.yb3{bottom:890.078700px;}
.y49{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.yca{bottom:911.078700px;}
.y48{bottom:911.078850px;}
.yb2{bottom:916.936950px;}
.ya4{bottom:918.121050px;}
.y6{bottom:926.674650px;}
.yc9{bottom:932.078700px;}
.y47{bottom:932.078850px;}
.ya3{bottom:937.920900px;}
.yb1{bottom:946.440900px;}
.y9c{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.yc8{bottom:953.078700px;}
.y46{bottom:953.078850px;}
.ya2{bottom:957.721050px;}
.yc7{bottom:974.078700px;}
.y45{bottom:974.078850px;}
.y92{bottom:977.467950px;}
.ya1{bottom:977.521050px;}
.y4{bottom:983.282550px;}
.yb0{bottom:995.078700px;}
.y44{bottom:995.078850px;}
.y91{bottom:997.267950px;}
.yaf{bottom:1016.078700px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yae{bottom:1037.078700px;}
.y42{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yad{bottom:1058.078700px;}
.y41{bottom:1058.078850px;}
.yd3{bottom:1066.777350px;}
.yc6{bottom:1068.903300px;}
.yac{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.yd2{bottom:1087.777350px;}
.yc5{bottom:1089.903300px;}
.y3f{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.yab{bottom:1111.570800px;}
.yd1{bottom:1120.074900px;}
.y3e{bottom:1121.078850px;}
.yc4{bottom:1122.200850px;}
.y3a{bottom:1155.615300px;}
.y39{bottom:1175.115300px;}
.y3d{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h2{height:38.039062px;}
.h10{height:38.273438px;}
.h6{height:38.531250px;}
.h8{height:41.053711px;}
.hb{height:41.107522px;}
.hf{height:42.793945px;}
.he{height:43.057617px;}
.h9{height:45.615234px;}
.h11{height:45.675024px;}
.ha{height:48.937500px;}
.h12{height:50.176758px;}
.h4{height:51.231050px;}
.h5{height:51.231650px;}
.hd{height:54.375000px;}
.hc{height:54.738281px;}
.h3{height:77.545898px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x5{left:119.496900px;}
.x6{left:120.968250px;}
.x7{left:123.341250px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x3{left:396.050700px;}
.x8{left:568.512600px;}
.x9{left:678.264600px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.lsd{letter-spacing:-2.613333pt;}
.lse{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.725333pt;}
.ls6{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022400pt;}
.ls13{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.819200pt;}
.ls8{letter-spacing:1.066667pt;}
.ls11{letter-spacing:3.148800pt;}
.ls9{letter-spacing:4.782400pt;}
.ls0{letter-spacing:38.383435pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7e{word-spacing:-14.608000pt;}
.ws17{word-spacing:-14.133333pt;}
.ws16{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws42{word-spacing:-13.226667pt;}
.ws23{word-spacing:-13.066667pt;}
.ws3f{word-spacing:-12.693333pt;}
.ws3e{word-spacing:-12.533333pt;}
.ws43{word-spacing:-12.426667pt;}
.ws41{word-spacing:-11.946667pt;}
.ws7f{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.520000pt;}
.ws82{word-spacing:-11.424000pt;}
.ws44{word-spacing:-11.280000pt;}
.ws81{word-spacing:-10.944000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws40{word-spacing:-10.613333pt;}
.ws7{word-spacing:-10.464000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.ws67{word-spacing:-7.711147pt;}
.ws7c{word-spacing:-7.306667pt;}
.ws68{word-spacing:-6.940032pt;}
.ws97{word-spacing:-6.480000pt;}
.ws69{word-spacing:-4.426667pt;}
.ws78{word-spacing:-3.093333pt;}
.ws5d{word-spacing:-3.040000pt;}
.ws74{word-spacing:-2.613333pt;}
.ws84{word-spacing:-1.968000pt;}
.ws73{word-spacing:-1.866667pt;}
.ws4e{word-spacing:-1.813333pt;}
.ws56{word-spacing:-1.386667pt;}
.ws1e{word-spacing:-1.333333pt;}
.ws93{word-spacing:-1.200000pt;}
.wsb{word-spacing:-1.114667pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws15{word-spacing:-0.912000pt;}
.ws59{word-spacing:-0.800000pt;}
.ws4a{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.533333pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws91{word-spacing:-0.384000pt;}
.ws39{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.240000pt;}
.ws9f{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.144000pt;}
.ws57{word-spacing:-0.106667pt;}
.ws76{word-spacing:-0.053333pt;}
.ws32{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws70{word-spacing:0.106667pt;}
.ws58{word-spacing:0.160000pt;}
.wsf{word-spacing:0.240000pt;}
.ws5c{word-spacing:0.426667pt;}
.ws49{word-spacing:0.480000pt;}
.ws45{word-spacing:0.533333pt;}
.wsd{word-spacing:0.614400pt;}
.ws9c{word-spacing:0.720000pt;}
.wsa{word-spacing:0.725333pt;}
.ws53{word-spacing:0.800000pt;}
.ws1b{word-spacing:0.960000pt;}
.ws51{word-spacing:1.120000pt;}
.ws95{word-spacing:1.152000pt;}
.ws48{word-spacing:1.296000pt;}
.ws5e{word-spacing:1.333333pt;}
.ws65{word-spacing:1.386667pt;}
.ws19{word-spacing:1.440000pt;}
.ws89{word-spacing:1.488000pt;}
.ws24{word-spacing:1.546667pt;}
.ws8e{word-spacing:1.584000pt;}
.ws79{word-spacing:1.600000pt;}
.ws72{word-spacing:1.760000pt;}
.ws9d{word-spacing:1.776000pt;}
.ws6d{word-spacing:1.813333pt;}
.ws90{word-spacing:1.824000pt;}
.ws20{word-spacing:1.866667pt;}
.ws2f{word-spacing:1.920000pt;}
.ws2d{word-spacing:1.973333pt;}
.ws28{word-spacing:2.026667pt;}
.ws77{word-spacing:2.080000pt;}
.ws54{word-spacing:2.133333pt;}
.ws4f{word-spacing:2.240000pt;}
.ws88{word-spacing:2.256000pt;}
.ws2e{word-spacing:2.400000pt;}
.ws9a{word-spacing:2.496000pt;}
.ws38{word-spacing:2.506667pt;}
.ws66{word-spacing:2.560000pt;}
.ws21{word-spacing:2.666667pt;}
.ws86{word-spacing:2.784000pt;}
.ws35{word-spacing:3.093333pt;}
.ws8b{word-spacing:3.120000pt;}
.ws6b{word-spacing:3.168000pt;}
.ws8f{word-spacing:3.216000pt;}
.ws63{word-spacing:3.253333pt;}
.ws96{word-spacing:3.264000pt;}
.ws64{word-spacing:3.306667pt;}
.ws29{word-spacing:3.466667pt;}
.ws98{word-spacing:3.504000pt;}
.ws27{word-spacing:3.520000pt;}
.ws8d{word-spacing:3.648000pt;}
.ws25{word-spacing:3.786667pt;}
.wsa0{word-spacing:3.984000pt;}
.ws7a{word-spacing:4.000000pt;}
.ws5b{word-spacing:4.213333pt;}
.ws10{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.426667pt;}
.ws1f{word-spacing:4.480000pt;}
.ws5f{word-spacing:4.533333pt;}
.ws6c{word-spacing:4.560000pt;}
.ws8a{word-spacing:4.608000pt;}
.ws92{word-spacing:4.752000pt;}
.ws3a{word-spacing:4.800000pt;}
.ws83{word-spacing:4.848000pt;}
.ws9b{word-spacing:4.944000pt;}
.ws99{word-spacing:5.184000pt;}
.ws6f{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.328000pt;}
.ws1d{word-spacing:5.333333pt;}
.ws36{word-spacing:5.440000pt;}
.ws37{word-spacing:5.493333pt;}
.ws26{word-spacing:5.653333pt;}
.ws71{word-spacing:5.706667pt;}
.ws13{word-spacing:5.760000pt;}
.ws52{word-spacing:5.920000pt;}
.ws50{word-spacing:6.080000pt;}
.ws62{word-spacing:6.133333pt;}
.ws31{word-spacing:6.293333pt;}
.ws4b{word-spacing:6.506667pt;}
.ws75{word-spacing:6.560000pt;}
.ws55{word-spacing:6.666667pt;}
.ws46{word-spacing:6.720000pt;}
.ws8c{word-spacing:6.768000pt;}
.ws87{word-spacing:6.816000pt;}
.ws34{word-spacing:6.880000pt;}
.ws18{word-spacing:6.933333pt;}
.ws61{word-spacing:6.986667pt;}
.ws30{word-spacing:7.040000pt;}
.ws12{word-spacing:7.056000pt;}
.ws11{word-spacing:7.104000pt;}
.ws22{word-spacing:7.306667pt;}
.ws6e{word-spacing:7.680000pt;}
.ws5a{word-spacing:7.946667pt;}
.ws4d{word-spacing:8.160000pt;}
.ws7b{word-spacing:8.373333pt;}
.ws2c{word-spacing:8.426667pt;}
.ws33{word-spacing:8.746667pt;}
.ws9e{word-spacing:8.784000pt;}
.wse{word-spacing:9.696000pt;}
.ws1a{word-spacing:9.866667pt;}
.ws2b{word-spacing:10.613333pt;}
.ws7d{word-spacing:10.933333pt;}
.ws4c{word-spacing:11.200000pt;}
.ws47{word-spacing:11.306667pt;}
.ws80{word-spacing:12.336000pt;}
.ws85{word-spacing:14.160000pt;}
.ws94{word-spacing:14.208000pt;}
.ws60{word-spacing:16.320000pt;}
._b{margin-left:-9.640533pt;}
._15{margin-left:-7.646400pt;}
._14{margin-left:-6.685867pt;}
._a{margin-left:-5.068267pt;}
._e{margin-left:-3.840000pt;}
._4{margin-left:-2.525867pt;}
._0{margin-left:-1.468800pt;}
._1{width:1.042667pt;}
._5{width:2.065067pt;}
._2{width:3.037333pt;}
._6{width:4.661867pt;}
._7{width:5.686933pt;}
._d{width:6.621333pt;}
._8{width:8.165333pt;}
._c{width:9.162667pt;}
._9{width:10.117333pt;}
._f{width:11.232000pt;}
._10{width:12.330667pt;}
._17{width:13.517333pt;}
._11{width:15.045333pt;}
._12{width:16.368000pt;}
._13{width:18.069333pt;}
._19{width:20.409067pt;}
._1a{width:21.988800pt;}
._18{width:26.716800pt;}
._3{width:32.554667pt;}
._16{width:38.415467pt;}
.fsa{font-size:27.984000pt;}
.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.698800pt;}
.y87{bottom:100.514400pt;}
.y9e{bottom:100.514533pt;}
.y2a{bottom:104.189067pt;}
.yd{bottom:104.778267pt;}
.yc{bottom:117.578267pt;}
.y86{bottom:119.181067pt;}
.y6d{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.yb{bottom:130.378267pt;}
.y85{bottom:137.847733pt;}
.y6c{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.ya{bottom:143.178267pt;}
.y84{bottom:156.514400pt;}
.y6b{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.ybf{bottom:169.280800pt;}
.y83{bottom:175.181067pt;}
.y6a{bottom:175.181200pt;}
.y38{bottom:177.237867pt;}
.y26{bottom:191.061867pt;}
.y37{bottom:193.237867pt;}
.y82{bottom:193.847733pt;}
.y69{bottom:193.847867pt;}
.y36{bottom:209.237867pt;}
.y81{bottom:212.514400pt;}
.y68{bottom:212.514533pt;}
.y35{bottom:225.237867pt;}
.y80{bottom:231.181067pt;}
.y67{bottom:231.181200pt;}
.y34{bottom:241.237867pt;}
.y7f{bottom:249.847733pt;}
.y66{bottom:249.847867pt;}
.ybe{bottom:254.692667pt;}
.y33{bottom:257.237867pt;}
.ya0{bottom:262.614133pt;}
.y9d{bottom:262.614267pt;}
.y7e{bottom:268.514400pt;}
.y65{bottom:268.514533pt;}
.y32{bottom:273.237867pt;}
.y25{bottom:273.980400pt;}
.yc3{bottom:280.456533pt;}
.y7d{bottom:287.181067pt;}
.y64{bottom:287.181200pt;}
.y31{bottom:289.237867pt;}
.y24{bottom:291.580400pt;}
.yc2{bottom:299.123200pt;}
.yaa{bottom:299.947600pt;}
.y30{bottom:305.237867pt;}
.y7c{bottom:305.847733pt;}
.y63{bottom:305.847867pt;}
.yc1{bottom:317.789867pt;}
.y2f{bottom:321.237867pt;}
.y7b{bottom:324.514400pt;}
.y62{bottom:324.514533pt;}
.y23{bottom:328.078133pt;}
.y7a{bottom:343.181067pt;}
.y61{bottom:343.181200pt;}
.y22{bottom:345.678000pt;}
.yc0{bottom:346.498800pt;}
.y2e{bottom:352.356000pt;}
.y79{bottom:361.847733pt;}
.y60{bottom:361.847867pt;}
.y21{bottom:363.278133pt;}
.ybd{bottom:366.692667pt;}
.y2d{bottom:368.356000pt;}
.y78{bottom:380.514400pt;}
.y5f{bottom:380.514533pt;}
.y20{bottom:380.878133pt;}
.y2c{bottom:384.356000pt;}
.yd0{bottom:392.456400pt;}
.y1f{bottom:398.478133pt;}
.y77{bottom:399.181067pt;}
.y5e{bottom:399.181200pt;}
.y2b{bottom:400.356000pt;}
.y97{bottom:411.123067pt;}
.y1e{bottom:416.078133pt;}
.y76{bottom:417.847733pt;}
.y5d{bottom:417.847867pt;}
.y1d{bottom:433.678000pt;}
.y75{bottom:436.514400pt;}
.y5c{bottom:436.514533pt;}
.y96{bottom:439.832000pt;}
.y1c{bottom:451.278133pt;}
.y74{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.y1b{bottom:468.878133pt;}
.y73{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.ybc{bottom:478.692667pt;}
.y1a{bottom:486.478133pt;}
.y72{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y90{bottom:503.083200pt;}
.y19{bottom:504.078133pt;}
.y6f{bottom:504.456533pt;}
.ya9{bottom:504.828800pt;}
.y71{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y8f{bottom:520.683200pt;}
.y18{bottom:521.678000pt;}
.ya8{bottom:522.428800pt;}
.y95{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y6e{bottom:533.165467pt;}
.y8e{bottom:538.283200pt;}
.y17{bottom:539.278133pt;}
.ya7{bottom:540.028800pt;}
.y70{bottom:540.811067pt;}
.y94{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.y8d{bottom:555.883200pt;}
.y16{bottom:556.878133pt;}
.ya6{bottom:557.628800pt;}
.y93{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y8c{bottom:573.483200pt;}
.y15{bottom:574.478133pt;}
.ya5{bottom:575.228800pt;}
.ybb{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.y8b{bottom:589.413333pt;}
.y14{bottom:592.078133pt;}
.y9b{bottom:603.797733pt;}
.yba{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.y8a{bottom:607.013333pt;}
.y13{bottom:609.678000pt;}
.y9a{bottom:621.397733pt;}
.yb9{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.y89{bottom:624.613333pt;}
.y12{bottom:627.278133pt;}
.y99{bottom:638.997733pt;}
.ycf{bottom:641.847733pt;}
.y51{bottom:641.847867pt;}
.y88{bottom:642.213333pt;}
.y11{bottom:644.878133pt;}
.yb8{bottom:646.692667pt;}
.y98{bottom:656.597733pt;}
.y50{bottom:660.514533pt;}
.y10{bottom:662.478133pt;}
.yce{bottom:672.456400pt;}
.yb7{bottom:679.181067pt;}
.y4f{bottom:679.181200pt;}
.yf{bottom:690.120267pt;}
.ycd{bottom:691.123067pt;}
.y4e{bottom:697.847867pt;}
.yb6{bottom:702.692667pt;}
.y4d{bottom:716.514533pt;}
.ycc{bottom:719.832000pt;}
.y9f{bottom:729.280933pt;}
.yb5{bottom:735.181067pt;}
.y4c{bottom:735.181200pt;}
.y4b{bottom:753.847867pt;}
.yb4{bottom:758.692667pt;}
.y9{bottom:760.592800pt;}
.ycb{bottom:772.514400pt;}
.y4a{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.yb3{bottom:791.181067pt;}
.y49{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.yca{bottom:809.847733pt;}
.y48{bottom:809.847867pt;}
.yb2{bottom:815.055067pt;}
.ya4{bottom:816.107600pt;}
.y6{bottom:823.710800pt;}
.yc9{bottom:828.514400pt;}
.y47{bottom:828.514533pt;}
.ya3{bottom:833.707467pt;}
.yb1{bottom:841.280800pt;}
.y9c{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.yc8{bottom:847.181067pt;}
.y46{bottom:847.181200pt;}
.ya2{bottom:851.307600pt;}
.yc7{bottom:865.847733pt;}
.y45{bottom:865.847867pt;}
.y92{bottom:868.860400pt;}
.ya1{bottom:868.907600pt;}
.y4{bottom:874.028933pt;}
.yb0{bottom:884.514400pt;}
.y44{bottom:884.514533pt;}
.y91{bottom:886.460400pt;}
.yaf{bottom:903.181067pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yae{bottom:921.847733pt;}
.y42{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yad{bottom:940.514400pt;}
.y41{bottom:940.514533pt;}
.yd3{bottom:948.246533pt;}
.yc6{bottom:950.136267pt;}
.yac{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.yd2{bottom:966.913200pt;}
.yc5{bottom:968.802933pt;}
.y3f{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.yab{bottom:988.062933pt;}
.yd1{bottom:995.622133pt;}
.y3e{bottom:996.514533pt;}
.yc4{bottom:997.511867pt;}
.y3a{bottom:1027.213600pt;}
.y39{bottom:1044.546933pt;}
.y3d{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h2{height:33.812500pt;}
.h10{height:34.020833pt;}
.h6{height:34.250000pt;}
.h8{height:36.492188pt;}
.hb{height:36.540019pt;}
.hf{height:38.039062pt;}
.he{height:38.273438pt;}
.h9{height:40.546875pt;}
.h11{height:40.600021pt;}
.ha{height:43.500000pt;}
.h12{height:44.601562pt;}
.h4{height:45.538711pt;}
.h5{height:45.539244pt;}
.hd{height:48.333333pt;}
.hc{height:48.656250pt;}
.h3{height:68.929688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x5{left:106.219467pt;}
.x6{left:107.527333pt;}
.x7{left:109.636667pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x3{left:352.045067pt;}
.x8{left:505.344533pt;}
.x9{left:602.901867pt;}
.x1{left:712.311867pt;}
}




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