
    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_2462cfc1ba417c302b9e7cfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709000;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_735aa6b21801deecaa0a89cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_a175897fb4cbefca787a6f78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945000;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_4f5b2421036503af5ef341eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_e9ad607f5d6b08f3cc071040.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.553000;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_eb242ab796c40145125a2176.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881000;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_805da2673e690e6b2055490a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_e699adcd0cac66417d969dd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.590000;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;}
.m3{transform:matrix(0.247035,0.000000,-0.038389,0.247035,0,0);-ms-transform:matrix(0.247035,0.000000,-0.038389,0.247035,0,0);-webkit-transform:matrix(0.247035,0.000000,-0.038389,0.247035,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);}
.m5{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.955200px;}
.ls2{letter-spacing:12.000000px;}
.lsa{letter-spacing:14.880000px;}
.lsd{letter-spacing:15.018000px;}
.ls3{letter-spacing:15.969600px;}
.lsb{letter-spacing:16.248000px;}
.ls6{letter-spacing:16.434000px;}
.ls5{letter-spacing:18.192000px;}
.ls9{letter-spacing:18.360000px;}
.ls10{letter-spacing:19.518000px;}
.ls11{letter-spacing:19.980000px;}
.ls0{letter-spacing:21.072000px;}
.lsc{letter-spacing:21.510000px;}
.ls8{letter-spacing:24.408000px;}
.ls7{letter-spacing:28.194000px;}
.lse{letter-spacing:30.036000px;}
.lsf{letter-spacing:32.184000px;}
.ls1{letter-spacing:32.334000px;}
.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;}
}
.ws9f{word-spacing:-12.955200px;}
.wsa2{word-spacing:-12.000000px;}
.ws93{word-spacing:-1.602000px;}
.ws77{word-spacing:-1.296000px;}
.ws94{word-spacing:-1.224000px;}
.wsb1{word-spacing:-0.955200px;}
.ws19{word-spacing:-0.612000px;}
.ws96{word-spacing:-0.408000px;}
.ws97{word-spacing:-0.186000px;}
.ws1f{word-spacing:-0.138000px;}
.ws66{word-spacing:-0.120000px;}
.ws3d{word-spacing:-0.102000px;}
.ws3e{word-spacing:-0.060000px;}
.ws4a{word-spacing:-0.009600px;}
.ws4b{word-spacing:-0.004800px;}
.ws48{word-spacing:0.000000px;}
.ws6b{word-spacing:0.018000px;}
.ws16{word-spacing:0.054000px;}
.ws88{word-spacing:0.066000px;}
.ws83{word-spacing:0.360000px;}
.ws56{word-spacing:0.462000px;}
.ws75{word-spacing:0.648000px;}
.ws21{word-spacing:0.702000px;}
.ws71{word-spacing:0.750000px;}
.ws5b{word-spacing:0.786000px;}
.ws57{word-spacing:0.870000px;}
.wsac{word-spacing:0.921600px;}
.ws20{word-spacing:0.972000px;}
.ws7f{word-spacing:1.008000px;}
.ws8d{word-spacing:1.026000px;}
.ws68{word-spacing:1.242000px;}
.ws69{word-spacing:1.248000px;}
.ws54{word-spacing:1.434000px;}
.ws92{word-spacing:1.464000px;}
.ws70{word-spacing:1.518000px;}
.ws32{word-spacing:1.722000px;}
.ws38{word-spacing:1.740000px;}
.ws42{word-spacing:1.771200px;}
.ws1c{word-spacing:1.824000px;}
.wsab{word-spacing:1.958400px;}
.wsb7{word-spacing:2.198400px;}
.ws9a{word-spacing:2.454000px;}
.ws78{word-spacing:2.628000px;}
.ws13{word-spacing:2.676000px;}
.ws30{word-spacing:2.760000px;}
.ws8e{word-spacing:2.898000px;}
.ws76{word-spacing:2.964000px;}
.ws85{word-spacing:3.120000px;}
.ws60{word-spacing:3.174000px;}
.ws50{word-spacing:3.186000px;}
.ws4f{word-spacing:3.192000px;}
.ws14{word-spacing:3.240000px;}
.wsb4{word-spacing:3.273600px;}
.ws65{word-spacing:3.360000px;}
.ws53{word-spacing:3.612000px;}
.wsa0{word-spacing:3.614400px;}
.ws23{word-spacing:3.702000px;}
.ws2a{word-spacing:3.924000px;}
.ws59{word-spacing:3.936000px;}
.ws46{word-spacing:3.969600px;}
.ws4d{word-spacing:3.972000px;}
.wsb6{word-spacing:4.022400px;}
.ws7d{word-spacing:4.056000px;}
.ws5c{word-spacing:4.110000px;}
.ws45{word-spacing:4.382400px;}
.ws36{word-spacing:4.500000px;}
.ws64{word-spacing:4.518000px;}
.ws9d{word-spacing:4.531200px;}
.wsae{word-spacing:4.689600px;}
.ws34{word-spacing:4.824000px;}
.ws90{word-spacing:4.860000px;}
.ws25{word-spacing:4.980000px;}
.ws8a{word-spacing:5.028000px;}
.ws40{word-spacing:5.064000px;}
.ws3a{word-spacing:5.100000px;}
.wsa4{word-spacing:5.112000px;}
.ws22{word-spacing:5.202000px;}
.ws99{word-spacing:5.304000px;}
.ws31{word-spacing:5.334000px;}
.ws2d{word-spacing:5.352000px;}
.ws55{word-spacing:5.472000px;}
.wsa5{word-spacing:5.673600px;}
.wsa7{word-spacing:5.779200px;}
.ws2{word-spacing:5.968800px;}
.ws6e{word-spacing:6.054000px;}
.wsa6{word-spacing:6.086400px;}
.wsb0{word-spacing:6.153600px;}
.ws3c{word-spacing:6.306000px;}
.ws3b{word-spacing:6.510000px;}
.ws84{word-spacing:6.936000px;}
.ws15{word-spacing:7.248000px;}
.ws12{word-spacing:7.260000px;}
.wsa9{word-spacing:7.430400px;}
.ws62{word-spacing:7.452000px;}
.ws2e{word-spacing:7.554000px;}
.ws6c{word-spacing:7.824000px;}
.ws8f{word-spacing:7.842000px;}
.ws61{word-spacing:8.082000px;}
.ws24{word-spacing:8.388000px;}
.ws67{word-spacing:8.406000px;}
.ws26{word-spacing:8.628000px;}
.ws27{word-spacing:8.658000px;}
.ws9b{word-spacing:8.748000px;}
.ws1d{word-spacing:8.778000px;}
.ws29{word-spacing:9.102000px;}
.ws7c{word-spacing:9.222000px;}
.ws58{word-spacing:9.324000px;}
.ws5f{word-spacing:9.408000px;}
.ws44{word-spacing:9.547200px;}
.ws18{word-spacing:9.822000px;}
.ws1e{word-spacing:10.038000px;}
.ws81{word-spacing:10.158000px;}
.ws5d{word-spacing:10.398000px;}
.ws37{word-spacing:10.758000px;}
.ws35{word-spacing:10.878000px;}
.ws89{word-spacing:10.992000px;}
.wsb2{word-spacing:10.996800px;}
.ws52{word-spacing:11.010000px;}
.ws1a{word-spacing:11.406000px;}
.ws2c{word-spacing:11.490000px;}
.ws51{word-spacing:11.712000px;}
.ws98{word-spacing:11.862000px;}
.ws7e{word-spacing:12.444000px;}
.wsa8{word-spacing:12.475200px;}
.wsad{word-spacing:12.873600px;}
.ws7a{word-spacing:12.888000px;}
.ws72{word-spacing:12.936000px;}
.ws7b{word-spacing:12.954000px;}
.ws39{word-spacing:13.110000px;}
.ws43{word-spacing:13.123200px;}
.ws5e{word-spacing:13.194000px;}
.wsb3{word-spacing:13.363200px;}
.ws1b{word-spacing:13.398000px;}
.ws8b{word-spacing:13.686000px;}
.ws6a{word-spacing:13.740000px;}
.ws63{word-spacing:14.424000px;}
.ws3f{word-spacing:14.454000px;}
.ws74{word-spacing:14.490000px;}
.ws2b{word-spacing:14.574000px;}
.ws6d{word-spacing:15.036000px;}
.ws4{word-spacing:15.060000px;}
.ws9c{word-spacing:15.120000px;}
.wsa3{word-spacing:15.307200px;}
.ws5a{word-spacing:15.408000px;}
.ws95{word-spacing:15.480000px;}
.wsa1{word-spacing:15.566400px;}
.ws82{word-spacing:15.852000px;}
.ws47{word-spacing:15.921600px;}
.ws86{word-spacing:15.954000px;}
.ws4e{word-spacing:16.464000px;}
.ws9e{word-spacing:16.483200px;}
.ws3{word-spacing:16.560000px;}
.wsaf{word-spacing:16.641600px;}
.ws5{word-spacing:16.848000px;}
.ws6f{word-spacing:17.184000px;}
.ws41{word-spacing:17.334000px;}
.ws79{word-spacing:17.628000px;}
.wsf{word-spacing:18.504000px;}
.ws80{word-spacing:18.732000px;}
.ws28{word-spacing:19.092000px;}
.ws33{word-spacing:19.230000px;}
.wsaa{word-spacing:19.382400px;}
.ws11{word-spacing:19.920000px;}
.ws87{word-spacing:20.064000px;}
.ws7{word-spacing:20.448000px;}
.wse{word-spacing:20.736000px;}
.wsd{word-spacing:21.006000px;}
.wsc{word-spacing:21.012000px;}
.ws9{word-spacing:22.716000px;}
.ws6{word-spacing:23.364000px;}
.ws2f{word-spacing:23.730000px;}
.ws17{word-spacing:25.056000px;}
.ws8{word-spacing:25.170000px;}
.ws73{word-spacing:26.730000px;}
.ws0{word-spacing:27.888000px;}
.ws1{word-spacing:27.896400px;}
.wsb{word-spacing:30.450000px;}
.wsa{word-spacing:30.540000px;}
.ws91{word-spacing:32.082000px;}
.wsb5{word-spacing:36.700800px;}
.ws10{word-spacing:37.626000px;}
.ws49{word-spacing:69.652800px;}
.ws4c{word-spacing:92.990400px;}
.ws8c{word-spacing:845.472000px;}
._13{margin-left:-2037.187200px;}
._11{width:5.745600px;}
._5{width:11.995200px;}
._a{width:15.969600px;}
._10{width:22.089600px;}
._12{width:24.000000px;}
._0{width:60.000000px;}
._6{width:73.660800px;}
._e{width:90.590400px;}
._8{width:97.665600px;}
._2{width:102.984000px;}
._3{width:149.654400px;}
._4{width:287.832000px;}
._9{width:295.848000px;}
._7{width:314.520000px;}
._b{width:359.822400px;}
._d{width:403.737600px;}
._c{width:465.081600px;}
._1{width:625.800000px;}
._f{width:1135.056000px;}
.fc1{color:rgb(0,0,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.720153px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:64.311450px;}
.y63{bottom:65.813100px;}
.y8a{bottom:68.062500px;}
.y62{bottom:80.813100px;}
.ybd{bottom:80.982450px;}
.y89{bottom:85.312500px;}
.ybc{bottom:97.653450px;}
.y88{bottom:102.562500px;}
.y4b{bottom:113.812500px;}
.yba{bottom:114.321750px;}
.ybb{bottom:118.321050px;}
.y87{bottom:119.812500px;}
.y55{bottom:128.812500px;}
.y4a{bottom:130.312500px;}
.yb9{bottom:130.992750px;}
.y86{bottom:137.062500px;}
.y54{bottom:143.812500px;}
.y49{bottom:146.812500px;}
.yb8{bottom:147.663750px;}
.y85{bottom:154.312500px;}
.y53{bottom:158.812500px;}
.y47{bottom:163.312500px;}
.yb7{bottom:164.334750px;}
.y48{bottom:167.309700px;}
.y84{bottom:171.562500px;}
.y52{bottom:173.812500px;}
.y51{bottom:178.687500px;}
.y46{bottom:179.812500px;}
.yb4{bottom:181.001400px;}
.yb6{bottom:181.005750px;}
.yb5{bottom:185.002950px;}
.y50{bottom:188.812500px;}
.y45{bottom:196.312500px;}
.yb3{bottom:197.672400px;}
.y4e{bottom:203.812500px;}
.y83{bottom:206.062500px;}
.y4f{bottom:208.687500px;}
.y44{bottom:212.812500px;}
.yb2{bottom:214.343400px;}
.y4d{bottom:218.812500px;}
.y82{bottom:223.312500px;}
.y4c{bottom:223.687500px;}
.y43{bottom:229.312500px;}
.yb1{bottom:231.014400px;}
.y81{bottom:240.562500px;}
.y42{bottom:245.812500px;}
.yb0{bottom:247.685400px;}
.y80{bottom:257.812500px;}
.y41{bottom:262.312500px;}
.yaf{bottom:264.356400px;}
.y33{bottom:265.312500px;}
.y7f{bottom:275.062500px;}
.y40{bottom:278.812500px;}
.yae{bottom:281.027400px;}
.y32{bottom:281.812500px;}
.y7e{bottom:292.312500px;}
.y3f{bottom:295.312500px;}
.yad{bottom:297.698400px;}
.y31{bottom:298.312500px;}
.y7d{bottom:309.562500px;}
.y3e{bottom:311.812500px;}
.yaa{bottom:314.368800px;}
.yac{bottom:314.369400px;}
.y30{bottom:314.812500px;}
.yab{bottom:318.366450px;}
.y7c{bottom:326.812500px;}
.y3d{bottom:328.312500px;}
.ya7{bottom:331.039350px;}
.ya8{bottom:331.039800px;}
.y2f{bottom:331.312500px;}
.ya9{bottom:335.037000px;}
.y7a{bottom:344.062500px;}
.y3c{bottom:344.812500px;}
.ya5{bottom:347.709150px;}
.ya6{bottom:347.710350px;}
.y7b{bottom:348.059700px;}
.y2e{bottom:356.812500px;}
.y3b{bottom:361.312500px;}
.ya4{bottom:364.380150px;}
.y3a{bottom:377.812500px;}
.y79{bottom:378.562500px;}
.ya2{bottom:381.048900px;}
.ya3{bottom:381.051150px;}
.y2d{bottom:391.312500px;}
.y39{bottom:394.312500px;}
.y78{bottom:395.812500px;}
.ya1{bottom:397.719900px;}
.y2c{bottom:407.812500px;}
.y38{bottom:410.812500px;}
.y77{bottom:413.062500px;}
.ya0{bottom:414.390900px;}
.y2b{bottom:424.312500px;}
.y37{bottom:427.312500px;}
.y76{bottom:430.312500px;}
.y9f{bottom:431.061900px;}
.y2a{bottom:440.812500px;}
.y36{bottom:443.812500px;}
.y75{bottom:447.562500px;}
.y9e{bottom:447.732900px;}
.y29{bottom:457.312500px;}
.y35{bottom:460.312500px;}
.y9c{bottom:464.399700px;}
.y74{bottom:464.812500px;}
.y9d{bottom:468.400650px;}
.y27{bottom:473.812500px;}
.y34{bottom:476.812500px;}
.y28{bottom:477.809700px;}
.y9b{bottom:481.070700px;}
.y73{bottom:482.062500px;}
.y26{bottom:490.312500px;}
.y9a{bottom:497.741700px;}
.y72{bottom:499.312500px;}
.y25{bottom:506.812500px;}
.y99{bottom:514.412700px;}
.y61{bottom:515.813100px;}
.y71{bottom:516.562500px;}
.y24{bottom:523.312500px;}
.y98{bottom:531.083700px;}
.y70{bottom:533.812500px;}
.y6f{bottom:533.812650px;}
.y22{bottom:539.812500px;}
.y60{bottom:540.187500px;}
.y23{bottom:543.809700px;}
.y97{bottom:547.754700px;}
.y6e{bottom:551.062650px;}
.y5f{bottom:555.187500px;}
.y21{bottom:556.312500px;}
.y96{bottom:564.425700px;}
.y6d{bottom:568.312650px;}
.y5e{bottom:570.187500px;}
.y1f{bottom:572.812500px;}
.y20{bottom:576.809700px;}
.y95{bottom:581.096700px;}
.y5d{bottom:585.187500px;}
.y6c{bottom:585.562650px;}
.y1e{bottom:589.312500px;}
.y92{bottom:597.766500px;}
.y94{bottom:597.767100px;}
.y5c{bottom:600.187500px;}
.y93{bottom:601.764150px;}
.y6b{bottom:602.812650px;}
.y1d{bottom:605.812500px;}
.y91{bottom:614.437500px;}
.y5b{bottom:615.187500px;}
.y6a{bottom:620.062650px;}
.y1c{bottom:622.312500px;}
.y5a{bottom:630.187500px;}
.y90{bottom:631.125000px;}
.y69{bottom:637.312650px;}
.y1b{bottom:638.812500px;}
.y8f{bottom:647.812500px;}
.y59{bottom:654.187500px;}
.y68{bottom:654.562650px;}
.y1a{bottom:655.312500px;}
.y8e{bottom:664.500000px;}
.y58{bottom:669.187500px;}
.y18{bottom:671.812500px;}
.y67{bottom:671.812650px;}
.y19{bottom:675.809700px;}
.y8d{bottom:681.187500px;}
.y17{bottom:688.312500px;}
.y66{bottom:689.062650px;}
.y57{bottom:691.312500px;}
.y8c{bottom:697.875000px;}
.yf5{bottom:701.051850px;}
.ydb{bottom:701.062650px;}
.y16{bottom:704.812500px;}
.y56{bottom:706.312500px;}
.y65{bottom:706.312650px;}
.yda{bottom:714.562650px;}
.yf4{bottom:715.268250px;}
.y8b{bottom:723.562500px;}
.y64{bottom:723.562650px;}
.yd9{bottom:728.062650px;}
.yf3{bottom:729.484650px;}
.yd8{bottom:741.562650px;}
.yf2{bottom:743.701050px;}
.y15{bottom:752.812650px;}
.yf1{bottom:757.917450px;}
.y14{bottom:769.312650px;}
.yf0{bottom:772.133850px;}
.ybf{bottom:773.062650px;}
.yd7{bottom:773.812500px;}
.y13{bottom:785.812650px;}
.yef{bottom:786.350250px;}
.yd6{bottom:790.312500px;}
.yee{bottom:800.566650px;}
.y12{bottom:802.312650px;}
.yd5{bottom:806.812500px;}
.yed{bottom:814.783050px;}
.y11{bottom:818.812650px;}
.yd4{bottom:823.312500px;}
.yec{bottom:828.999450px;}
.y10{bottom:835.312650px;}
.yd3{bottom:839.812500px;}
.yeb{bottom:843.215850px;}
.yf{bottom:851.812650px;}
.yd2{bottom:856.312500px;}
.yea{bottom:857.432250px;}
.ye{bottom:868.312650px;}
.ye9{bottom:871.648650px;}
.yd0{bottom:872.812650px;}
.yd1{bottom:876.809700px;}
.yd{bottom:884.812650px;}
.ye8{bottom:885.865050px;}
.ycf{bottom:889.312650px;}
.ye7{bottom:900.081450px;}
.yc{bottom:901.312650px;}
.yce{bottom:905.812650px;}
.ye6{bottom:914.297850px;}
.yb{bottom:917.812650px;}
.ycd{bottom:922.312650px;}
.ycb{bottom:922.312800px;}
.ycc{bottom:926.309700px;}
.ye5{bottom:928.514250px;}
.ya{bottom:934.312650px;}
.yca{bottom:938.812800px;}
.ye4{bottom:942.730650px;}
.y9{bottom:950.812650px;}
.yc9{bottom:955.312800px;}
.ye3{bottom:956.947050px;}
.y8{bottom:967.312650px;}
.ye2{bottom:971.163450px;}
.yc8{bottom:971.812800px;}
.ye1{bottom:985.396650px;}
.yc7{bottom:988.312800px;}
.ye0{bottom:999.629850px;}
.y5{bottom:1003.311900px;}
.y7{bottom:1003.312500px;}
.yc6{bottom:1004.812800px;}
.y6{bottom:1010.812500px;}
.ydf{bottom:1013.863050px;}
.yc5{bottom:1021.312800px;}
.y3{bottom:1024.312500px;}
.yde{bottom:1028.096250px;}
.y4{bottom:1031.812650px;}
.yc3{bottom:1034.437500px;}
.yc4{bottom:1037.808300px;}
.yc2{bottom:1037.812650px;}
.ydd{bottom:1042.329450px;}
.yc1{bottom:1054.312650px;}
.ydc{bottom:1056.562650px;}
.y2{bottom:1061.812200px;}
.y1{bottom:1087.312500px;}
.yf6{bottom:1092.551850px;}
.yc0{bottom:1092.562650px;}
.h9{height:21.810000px;}
.h6{height:26.172000px;}
.hb{height:28.353000px;}
.h3{height:32.715000px;}
.ha{height:34.896000px;}
.h7{height:40.925383px;}
.h8{height:41.460000px;}
.h4{height:42.480000px;}
.h5{height:43.620000px;}
.h2{height:52.344000px;}
.h1{height:58.044000px;}
.h0{height:1161.000000px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.x13{left:54.984300px;}
.x24{left:58.980600px;}
.x3d{left:60.984300px;}
.x20{left:72.984300px;}
.x21{left:76.980600px;}
.x1{left:84.251400px;}
.x3{left:87.852300px;}
.x12{left:144.984450px;}
.xc{left:161.377950px;}
.x19{left:172.923750px;}
.x39{left:175.060950px;}
.x38{left:177.430350px;}
.x3a{left:180.685950px;}
.x1a{left:182.379900px;}
.x3b{left:234.912150px;}
.x22{left:247.649550px;}
.x23{left:252.149850px;}
.xd{left:290.845050px;}
.xe{left:296.838750px;}
.x16{left:299.998500px;}
.x4{left:302.797650px;}
.x28{left:309.925200px;}
.x5{left:312.166350px;}
.x17{left:319.178100px;}
.x29{left:320.945100px;}
.x2{left:370.011000px;}
.x1b{left:379.118700px;}
.x14{left:385.216500px;}
.x1c{left:388.361700px;}
.x15{left:395.026350px;}
.x3c{left:404.529300px;}
.x27{left:405.858300px;}
.x18{left:409.796100px;}
.x1d{left:450.983700px;}
.x3e{left:456.984300px;}
.x26{left:462.987450px;}
.x1e{left:468.983700px;}
.x6{left:472.104600px;}
.x7{left:478.098300px;}
.xf{left:491.750550px;}
.x10{left:497.744250px;}
.x30{left:500.125800px;}
.x31{left:503.875950px;}
.x32{left:515.415900px;}
.x37{left:543.882150px;}
.x8{left:615.033000px;}
.x9{left:621.026700px;}
.x35{left:648.984000px;}
.x36{left:661.972800px;}
.x2e{left:666.981900px;}
.x2f{left:675.322200px;}
.x33{left:692.850900px;}
.x2c{left:695.219850px;}
.x11{left:698.683500px;}
.x2d{left:703.560000px;}
.x34{left:705.814050px;}
.x2a{left:744.580950px;}
.x2b{left:761.618100px;}
.xa{left:766.979250px;}
.xb{left:773.728950px;}
.x25{left:777.911850px;}
.x3f{left:792.986700px;}
.x1f{left:805.764750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.849067pt;}
.ls2{letter-spacing:10.666667pt;}
.lsa{letter-spacing:13.226667pt;}
.lsd{letter-spacing:13.349333pt;}
.ls3{letter-spacing:14.195200pt;}
.lsb{letter-spacing:14.442667pt;}
.ls6{letter-spacing:14.608000pt;}
.ls5{letter-spacing:16.170667pt;}
.ls9{letter-spacing:16.320000pt;}
.ls10{letter-spacing:17.349333pt;}
.ls11{letter-spacing:17.760000pt;}
.ls0{letter-spacing:18.730667pt;}
.lsc{letter-spacing:19.120000pt;}
.ls8{letter-spacing:21.696000pt;}
.ls7{letter-spacing:25.061333pt;}
.lse{letter-spacing:26.698667pt;}
.lsf{letter-spacing:28.608000pt;}
.ls1{letter-spacing:28.741333pt;}
.ws9f{word-spacing:-11.515733pt;}
.wsa2{word-spacing:-10.666667pt;}
.ws93{word-spacing:-1.424000pt;}
.ws77{word-spacing:-1.152000pt;}
.ws94{word-spacing:-1.088000pt;}
.wsb1{word-spacing:-0.849067pt;}
.ws19{word-spacing:-0.544000pt;}
.ws96{word-spacing:-0.362667pt;}
.ws97{word-spacing:-0.165333pt;}
.ws1f{word-spacing:-0.122667pt;}
.ws66{word-spacing:-0.106667pt;}
.ws3d{word-spacing:-0.090667pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws4a{word-spacing:-0.008533pt;}
.ws4b{word-spacing:-0.004267pt;}
.ws48{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.016000pt;}
.ws16{word-spacing:0.048000pt;}
.ws88{word-spacing:0.058667pt;}
.ws83{word-spacing:0.320000pt;}
.ws56{word-spacing:0.410667pt;}
.ws75{word-spacing:0.576000pt;}
.ws21{word-spacing:0.624000pt;}
.ws71{word-spacing:0.666667pt;}
.ws5b{word-spacing:0.698667pt;}
.ws57{word-spacing:0.773333pt;}
.wsac{word-spacing:0.819200pt;}
.ws20{word-spacing:0.864000pt;}
.ws7f{word-spacing:0.896000pt;}
.ws8d{word-spacing:0.912000pt;}
.ws68{word-spacing:1.104000pt;}
.ws69{word-spacing:1.109333pt;}
.ws54{word-spacing:1.274667pt;}
.ws92{word-spacing:1.301333pt;}
.ws70{word-spacing:1.349333pt;}
.ws32{word-spacing:1.530667pt;}
.ws38{word-spacing:1.546667pt;}
.ws42{word-spacing:1.574400pt;}
.ws1c{word-spacing:1.621333pt;}
.wsab{word-spacing:1.740800pt;}
.wsb7{word-spacing:1.954133pt;}
.ws9a{word-spacing:2.181333pt;}
.ws78{word-spacing:2.336000pt;}
.ws13{word-spacing:2.378667pt;}
.ws30{word-spacing:2.453333pt;}
.ws8e{word-spacing:2.576000pt;}
.ws76{word-spacing:2.634667pt;}
.ws85{word-spacing:2.773333pt;}
.ws60{word-spacing:2.821333pt;}
.ws50{word-spacing:2.832000pt;}
.ws4f{word-spacing:2.837333pt;}
.ws14{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.909867pt;}
.ws65{word-spacing:2.986667pt;}
.ws53{word-spacing:3.210667pt;}
.wsa0{word-spacing:3.212800pt;}
.ws23{word-spacing:3.290667pt;}
.ws2a{word-spacing:3.488000pt;}
.ws59{word-spacing:3.498667pt;}
.ws46{word-spacing:3.528533pt;}
.ws4d{word-spacing:3.530667pt;}
.wsb6{word-spacing:3.575467pt;}
.ws7d{word-spacing:3.605333pt;}
.ws5c{word-spacing:3.653333pt;}
.ws45{word-spacing:3.895467pt;}
.ws36{word-spacing:4.000000pt;}
.ws64{word-spacing:4.016000pt;}
.ws9d{word-spacing:4.027733pt;}
.wsae{word-spacing:4.168533pt;}
.ws34{word-spacing:4.288000pt;}
.ws90{word-spacing:4.320000pt;}
.ws25{word-spacing:4.426667pt;}
.ws8a{word-spacing:4.469333pt;}
.ws40{word-spacing:4.501333pt;}
.ws3a{word-spacing:4.533333pt;}
.wsa4{word-spacing:4.544000pt;}
.ws22{word-spacing:4.624000pt;}
.ws99{word-spacing:4.714667pt;}
.ws31{word-spacing:4.741333pt;}
.ws2d{word-spacing:4.757333pt;}
.ws55{word-spacing:4.864000pt;}
.wsa5{word-spacing:5.043200pt;}
.wsa7{word-spacing:5.137067pt;}
.ws2{word-spacing:5.305600pt;}
.ws6e{word-spacing:5.381333pt;}
.wsa6{word-spacing:5.410133pt;}
.wsb0{word-spacing:5.469867pt;}
.ws3c{word-spacing:5.605333pt;}
.ws3b{word-spacing:5.786667pt;}
.ws84{word-spacing:6.165333pt;}
.ws15{word-spacing:6.442667pt;}
.ws12{word-spacing:6.453333pt;}
.wsa9{word-spacing:6.604800pt;}
.ws62{word-spacing:6.624000pt;}
.ws2e{word-spacing:6.714667pt;}
.ws6c{word-spacing:6.954667pt;}
.ws8f{word-spacing:6.970667pt;}
.ws61{word-spacing:7.184000pt;}
.ws24{word-spacing:7.456000pt;}
.ws67{word-spacing:7.472000pt;}
.ws26{word-spacing:7.669333pt;}
.ws27{word-spacing:7.696000pt;}
.ws9b{word-spacing:7.776000pt;}
.ws1d{word-spacing:7.802667pt;}
.ws29{word-spacing:8.090667pt;}
.ws7c{word-spacing:8.197333pt;}
.ws58{word-spacing:8.288000pt;}
.ws5f{word-spacing:8.362667pt;}
.ws44{word-spacing:8.486400pt;}
.ws18{word-spacing:8.730667pt;}
.ws1e{word-spacing:8.922667pt;}
.ws81{word-spacing:9.029333pt;}
.ws5d{word-spacing:9.242667pt;}
.ws37{word-spacing:9.562667pt;}
.ws35{word-spacing:9.669333pt;}
.ws89{word-spacing:9.770667pt;}
.wsb2{word-spacing:9.774933pt;}
.ws52{word-spacing:9.786667pt;}
.ws1a{word-spacing:10.138667pt;}
.ws2c{word-spacing:10.213333pt;}
.ws51{word-spacing:10.410667pt;}
.ws98{word-spacing:10.544000pt;}
.ws7e{word-spacing:11.061333pt;}
.wsa8{word-spacing:11.089067pt;}
.wsad{word-spacing:11.443200pt;}
.ws7a{word-spacing:11.456000pt;}
.ws72{word-spacing:11.498667pt;}
.ws7b{word-spacing:11.514667pt;}
.ws39{word-spacing:11.653333pt;}
.ws43{word-spacing:11.665067pt;}
.ws5e{word-spacing:11.728000pt;}
.wsb3{word-spacing:11.878400pt;}
.ws1b{word-spacing:11.909333pt;}
.ws8b{word-spacing:12.165333pt;}
.ws6a{word-spacing:12.213333pt;}
.ws63{word-spacing:12.821333pt;}
.ws3f{word-spacing:12.848000pt;}
.ws74{word-spacing:12.880000pt;}
.ws2b{word-spacing:12.954667pt;}
.ws6d{word-spacing:13.365333pt;}
.ws4{word-spacing:13.386667pt;}
.ws9c{word-spacing:13.440000pt;}
.wsa3{word-spacing:13.606400pt;}
.ws5a{word-spacing:13.696000pt;}
.ws95{word-spacing:13.760000pt;}
.wsa1{word-spacing:13.836800pt;}
.ws82{word-spacing:14.090667pt;}
.ws47{word-spacing:14.152533pt;}
.ws86{word-spacing:14.181333pt;}
.ws4e{word-spacing:14.634667pt;}
.ws9e{word-spacing:14.651733pt;}
.ws3{word-spacing:14.720000pt;}
.wsaf{word-spacing:14.792533pt;}
.ws5{word-spacing:14.976000pt;}
.ws6f{word-spacing:15.274667pt;}
.ws41{word-spacing:15.408000pt;}
.ws79{word-spacing:15.669333pt;}
.wsf{word-spacing:16.448000pt;}
.ws80{word-spacing:16.650667pt;}
.ws28{word-spacing:16.970667pt;}
.ws33{word-spacing:17.093333pt;}
.wsaa{word-spacing:17.228800pt;}
.ws11{word-spacing:17.706667pt;}
.ws87{word-spacing:17.834667pt;}
.ws7{word-spacing:18.176000pt;}
.wse{word-spacing:18.432000pt;}
.wsd{word-spacing:18.672000pt;}
.wsc{word-spacing:18.677333pt;}
.ws9{word-spacing:20.192000pt;}
.ws6{word-spacing:20.768000pt;}
.ws2f{word-spacing:21.093333pt;}
.ws17{word-spacing:22.272000pt;}
.ws8{word-spacing:22.373333pt;}
.ws73{word-spacing:23.760000pt;}
.ws0{word-spacing:24.789333pt;}
.ws1{word-spacing:24.796800pt;}
.wsb{word-spacing:27.066667pt;}
.wsa{word-spacing:27.146667pt;}
.ws91{word-spacing:28.517333pt;}
.wsb5{word-spacing:32.622933pt;}
.ws10{word-spacing:33.445333pt;}
.ws49{word-spacing:61.913600pt;}
.ws4c{word-spacing:82.658133pt;}
.ws8c{word-spacing:751.530667pt;}
._13{margin-left:-1810.833067pt;}
._11{width:5.107200pt;}
._5{width:10.662400pt;}
._a{width:14.195200pt;}
._10{width:19.635200pt;}
._12{width:21.333333pt;}
._0{width:53.333333pt;}
._6{width:65.476267pt;}
._e{width:80.524800pt;}
._8{width:86.813867pt;}
._2{width:91.541333pt;}
._3{width:133.026133pt;}
._4{width:255.850667pt;}
._9{width:262.976000pt;}
._7{width:279.573333pt;}
._b{width:319.842133pt;}
._d{width:358.877867pt;}
._c{width:413.405867pt;}
._1{width:556.266667pt;}
._f{width:1008.938667pt;}
.fs6{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.973469pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:57.165733pt;}
.y63{bottom:58.500533pt;}
.y8a{bottom:60.500000pt;}
.y62{bottom:71.833867pt;}
.ybd{bottom:71.984400pt;}
.y89{bottom:75.833333pt;}
.ybc{bottom:86.803067pt;}
.y88{bottom:91.166667pt;}
.y4b{bottom:101.166667pt;}
.yba{bottom:101.619333pt;}
.ybb{bottom:105.174267pt;}
.y87{bottom:106.500000pt;}
.y55{bottom:114.500000pt;}
.y4a{bottom:115.833333pt;}
.yb9{bottom:116.438000pt;}
.y86{bottom:121.833333pt;}
.y54{bottom:127.833333pt;}
.y49{bottom:130.500000pt;}
.yb8{bottom:131.256667pt;}
.y85{bottom:137.166667pt;}
.y53{bottom:141.166667pt;}
.y47{bottom:145.166667pt;}
.yb7{bottom:146.075333pt;}
.y48{bottom:148.719733pt;}
.y84{bottom:152.500000pt;}
.y52{bottom:154.500000pt;}
.y51{bottom:158.833333pt;}
.y46{bottom:159.833333pt;}
.yb4{bottom:160.890133pt;}
.yb6{bottom:160.894000pt;}
.yb5{bottom:164.447067pt;}
.y50{bottom:167.833333pt;}
.y45{bottom:174.500000pt;}
.yb3{bottom:175.708800pt;}
.y4e{bottom:181.166667pt;}
.y83{bottom:183.166667pt;}
.y4f{bottom:185.500000pt;}
.y44{bottom:189.166667pt;}
.yb2{bottom:190.527467pt;}
.y4d{bottom:194.500000pt;}
.y82{bottom:198.500000pt;}
.y4c{bottom:198.833333pt;}
.y43{bottom:203.833333pt;}
.yb1{bottom:205.346133pt;}
.y81{bottom:213.833333pt;}
.y42{bottom:218.500000pt;}
.yb0{bottom:220.164800pt;}
.y80{bottom:229.166667pt;}
.y41{bottom:233.166667pt;}
.yaf{bottom:234.983467pt;}
.y33{bottom:235.833333pt;}
.y7f{bottom:244.500000pt;}
.y40{bottom:247.833333pt;}
.yae{bottom:249.802133pt;}
.y32{bottom:250.500000pt;}
.y7e{bottom:259.833333pt;}
.y3f{bottom:262.500000pt;}
.yad{bottom:264.620800pt;}
.y31{bottom:265.166667pt;}
.y7d{bottom:275.166667pt;}
.y3e{bottom:277.166667pt;}
.yaa{bottom:279.438933pt;}
.yac{bottom:279.439467pt;}
.y30{bottom:279.833333pt;}
.yab{bottom:282.992400pt;}
.y7c{bottom:290.500000pt;}
.y3d{bottom:291.833333pt;}
.ya7{bottom:294.257200pt;}
.ya8{bottom:294.257600pt;}
.y2f{bottom:294.500000pt;}
.ya9{bottom:297.810667pt;}
.y7a{bottom:305.833333pt;}
.y3c{bottom:306.500000pt;}
.ya5{bottom:309.074800pt;}
.ya6{bottom:309.075867pt;}
.y7b{bottom:309.386400pt;}
.y2e{bottom:317.166667pt;}
.y3b{bottom:321.166667pt;}
.ya4{bottom:323.893467pt;}
.y3a{bottom:335.833333pt;}
.y79{bottom:336.500000pt;}
.ya2{bottom:338.710133pt;}
.ya3{bottom:338.712133pt;}
.y2d{bottom:347.833333pt;}
.y39{bottom:350.500000pt;}
.y78{bottom:351.833333pt;}
.ya1{bottom:353.528800pt;}
.y2c{bottom:362.500000pt;}
.y38{bottom:365.166667pt;}
.y77{bottom:367.166667pt;}
.ya0{bottom:368.347467pt;}
.y2b{bottom:377.166667pt;}
.y37{bottom:379.833333pt;}
.y76{bottom:382.500000pt;}
.y9f{bottom:383.166133pt;}
.y2a{bottom:391.833333pt;}
.y36{bottom:394.500000pt;}
.y75{bottom:397.833333pt;}
.y9e{bottom:397.984800pt;}
.y29{bottom:406.500000pt;}
.y35{bottom:409.166667pt;}
.y9c{bottom:412.799733pt;}
.y74{bottom:413.166667pt;}
.y9d{bottom:416.356133pt;}
.y27{bottom:421.166667pt;}
.y34{bottom:423.833333pt;}
.y28{bottom:424.719733pt;}
.y9b{bottom:427.618400pt;}
.y73{bottom:428.500000pt;}
.y26{bottom:435.833333pt;}
.y9a{bottom:442.437067pt;}
.y72{bottom:443.833333pt;}
.y25{bottom:450.500000pt;}
.y99{bottom:457.255733pt;}
.y61{bottom:458.500533pt;}
.y71{bottom:459.166667pt;}
.y24{bottom:465.166667pt;}
.y98{bottom:472.074400pt;}
.y70{bottom:474.500000pt;}
.y6f{bottom:474.500133pt;}
.y22{bottom:479.833333pt;}
.y60{bottom:480.166667pt;}
.y23{bottom:483.386400pt;}
.y97{bottom:486.893067pt;}
.y6e{bottom:489.833467pt;}
.y5f{bottom:493.500000pt;}
.y21{bottom:494.500000pt;}
.y96{bottom:501.711733pt;}
.y6d{bottom:505.166800pt;}
.y5e{bottom:506.833333pt;}
.y1f{bottom:509.166667pt;}
.y20{bottom:512.719733pt;}
.y95{bottom:516.530400pt;}
.y5d{bottom:520.166667pt;}
.y6c{bottom:520.500133pt;}
.y1e{bottom:523.833333pt;}
.y92{bottom:531.348000pt;}
.y94{bottom:531.348533pt;}
.y5c{bottom:533.500000pt;}
.y93{bottom:534.901467pt;}
.y6b{bottom:535.833467pt;}
.y1d{bottom:538.500000pt;}
.y91{bottom:546.166667pt;}
.y5b{bottom:546.833333pt;}
.y6a{bottom:551.166800pt;}
.y1c{bottom:553.166667pt;}
.y5a{bottom:560.166667pt;}
.y90{bottom:561.000000pt;}
.y69{bottom:566.500133pt;}
.y1b{bottom:567.833333pt;}
.y8f{bottom:575.833333pt;}
.y59{bottom:581.500000pt;}
.y68{bottom:581.833467pt;}
.y1a{bottom:582.500000pt;}
.y8e{bottom:590.666667pt;}
.y58{bottom:594.833333pt;}
.y18{bottom:597.166667pt;}
.y67{bottom:597.166800pt;}
.y19{bottom:600.719733pt;}
.y8d{bottom:605.500000pt;}
.y17{bottom:611.833333pt;}
.y66{bottom:612.500133pt;}
.y57{bottom:614.500000pt;}
.y8c{bottom:620.333333pt;}
.yf5{bottom:623.157200pt;}
.ydb{bottom:623.166800pt;}
.y16{bottom:626.500000pt;}
.y56{bottom:627.833333pt;}
.y65{bottom:627.833467pt;}
.yda{bottom:635.166800pt;}
.yf4{bottom:635.794000pt;}
.y8b{bottom:643.166667pt;}
.y64{bottom:643.166800pt;}
.yd9{bottom:647.166800pt;}
.yf3{bottom:648.430800pt;}
.yd8{bottom:659.166800pt;}
.yf2{bottom:661.067600pt;}
.y15{bottom:669.166800pt;}
.yf1{bottom:673.704400pt;}
.y14{bottom:683.833467pt;}
.yf0{bottom:686.341200pt;}
.ybf{bottom:687.166800pt;}
.yd7{bottom:687.833333pt;}
.y13{bottom:698.500133pt;}
.yef{bottom:698.978000pt;}
.yd6{bottom:702.500000pt;}
.yee{bottom:711.614800pt;}
.y12{bottom:713.166800pt;}
.yd5{bottom:717.166667pt;}
.yed{bottom:724.251600pt;}
.y11{bottom:727.833467pt;}
.yd4{bottom:731.833333pt;}
.yec{bottom:736.888400pt;}
.y10{bottom:742.500133pt;}
.yd3{bottom:746.500000pt;}
.yeb{bottom:749.525200pt;}
.yf{bottom:757.166800pt;}
.yd2{bottom:761.166667pt;}
.yea{bottom:762.162000pt;}
.ye{bottom:771.833467pt;}
.ye9{bottom:774.798800pt;}
.yd0{bottom:775.833467pt;}
.yd1{bottom:779.386400pt;}
.yd{bottom:786.500133pt;}
.ye8{bottom:787.435600pt;}
.ycf{bottom:790.500133pt;}
.ye7{bottom:800.072400pt;}
.yc{bottom:801.166800pt;}
.yce{bottom:805.166800pt;}
.ye6{bottom:812.709200pt;}
.yb{bottom:815.833467pt;}
.ycd{bottom:819.833467pt;}
.ycb{bottom:819.833600pt;}
.ycc{bottom:823.386400pt;}
.ye5{bottom:825.346000pt;}
.ya{bottom:830.500133pt;}
.yca{bottom:834.500267pt;}
.ye4{bottom:837.982800pt;}
.y9{bottom:845.166800pt;}
.yc9{bottom:849.166933pt;}
.ye3{bottom:850.619600pt;}
.y8{bottom:859.833467pt;}
.ye2{bottom:863.256400pt;}
.yc8{bottom:863.833600pt;}
.ye1{bottom:875.908133pt;}
.yc7{bottom:878.500267pt;}
.ye0{bottom:888.559867pt;}
.y5{bottom:891.832800pt;}
.y7{bottom:891.833333pt;}
.yc6{bottom:893.166933pt;}
.y6{bottom:898.500000pt;}
.ydf{bottom:901.211600pt;}
.yc5{bottom:907.833600pt;}
.y3{bottom:910.500000pt;}
.yde{bottom:913.863333pt;}
.y4{bottom:917.166800pt;}
.yc3{bottom:919.500000pt;}
.yc4{bottom:922.496267pt;}
.yc2{bottom:922.500133pt;}
.ydd{bottom:926.515067pt;}
.yc1{bottom:937.166800pt;}
.ydc{bottom:939.166800pt;}
.y2{bottom:943.833067pt;}
.y1{bottom:966.500000pt;}
.yf6{bottom:971.157200pt;}
.yc0{bottom:971.166800pt;}
.h9{height:19.386667pt;}
.h6{height:23.264000pt;}
.hb{height:25.202667pt;}
.h3{height:29.080000pt;}
.ha{height:31.018667pt;}
.h7{height:36.378118pt;}
.h8{height:36.853333pt;}
.h4{height:37.760000pt;}
.h5{height:38.773333pt;}
.h2{height:46.528000pt;}
.h1{height:51.594667pt;}
.h0{height:1032.000000pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.x13{left:48.874933pt;}
.x24{left:52.427200pt;}
.x3d{left:54.208267pt;}
.x20{left:64.874933pt;}
.x21{left:68.427200pt;}
.x1{left:74.890133pt;}
.x3{left:78.090933pt;}
.x12{left:128.875067pt;}
.xc{left:143.447067pt;}
.x19{left:153.710000pt;}
.x39{left:155.609733pt;}
.x38{left:157.715867pt;}
.x3a{left:160.609733pt;}
.x1a{left:162.115467pt;}
.x3b{left:208.810800pt;}
.x22{left:220.132933pt;}
.x23{left:224.133200pt;}
.xd{left:258.528933pt;}
.xe{left:263.856667pt;}
.x16{left:266.665333pt;}
.x4{left:269.153467pt;}
.x28{left:275.489067pt;}
.x5{left:277.481200pt;}
.x17{left:283.713867pt;}
.x29{left:285.284533pt;}
.x2{left:328.898667pt;}
.x1b{left:336.994400pt;}
.x14{left:342.414667pt;}
.x1c{left:345.210400pt;}
.x15{left:351.134533pt;}
.x3c{left:359.581600pt;}
.x27{left:360.762933pt;}
.x18{left:364.263200pt;}
.x1d{left:400.874400pt;}
.x3e{left:406.208267pt;}
.x26{left:411.544400pt;}
.x1e{left:416.874400pt;}
.x6{left:419.648533pt;}
.x7{left:424.976267pt;}
.xf{left:437.111600pt;}
.x10{left:442.439333pt;}
.x30{left:444.556267pt;}
.x31{left:447.889733pt;}
.x32{left:458.147467pt;}
.x37{left:483.450800pt;}
.x8{left:546.696000pt;}
.x9{left:552.023733pt;}
.x35{left:576.874667pt;}
.x36{left:588.420267pt;}
.x2e{left:592.872800pt;}
.x2f{left:600.286400pt;}
.x33{left:615.867467pt;}
.x2c{left:617.973200pt;}
.x11{left:621.052000pt;}
.x2d{left:625.386667pt;}
.x34{left:627.390267pt;}
.x2a{left:661.849733pt;}
.x2b{left:676.993867pt;}
.xa{left:681.759333pt;}
.xb{left:687.759067pt;}
.x25{left:691.477200pt;}
.x3f{left:704.877067pt;}
.x1f{left:716.235333pt;}
}




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