
    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_a4143ccd0b9240d2c725a44f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_76200013d542b3d23da44bf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_5e3664e35a42e106b45bd460.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_fe2d532bfc57e2fe8a201767.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_dad6b93662b13137b59d0de7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_6baab77bb062723543501bc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_fbe098861943b522865fd59f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m6{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;}
.v1{vertical-align:17.981873px;}
.ls3{letter-spacing:-1.848000px;}
.ls5{letter-spacing:-1.800000px;}
.ls1{letter-spacing:-0.924660px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180600px;}
.ls4{letter-spacing:23.423415px;}
.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;}
}
.ws9b{word-spacing:-17.280000px;}
.ws17{word-spacing:-15.240000px;}
.ws2{word-spacing:-14.915340px;}
.ws3{word-spacing:-14.580600px;}
.ws4{word-spacing:-14.400000px;}
.ws50{word-spacing:-13.992000px;}
.wsaf{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.ws9c{word-spacing:-12.192000px;}
.ws16{word-spacing:-9.906000px;}
.wsae{word-spacing:-7.744572px;}
.ws27{word-spacing:-3.299400px;}
.ws6a{word-spacing:-3.059400px;}
.ws28{word-spacing:-2.940000px;}
.ws91{word-spacing:-2.861460px;}
.ws45{word-spacing:-2.820000px;}
.ws6d{word-spacing:-2.760600px;}
.ws87{word-spacing:-2.700000px;}
.ws53{word-spacing:-2.460000px;}
.ws22{word-spacing:-2.399400px;}
.ws6{word-spacing:-2.340000px;}
.ws49{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.160000px;}
.wse{word-spacing:-2.100000px;}
.ws24{word-spacing:-1.920000px;}
.ws68{word-spacing:-1.800000px;}
.ws3c{word-spacing:-1.740600px;}
.wsd{word-spacing:-1.680000px;}
.ws60{word-spacing:-1.619400px;}
.ws66{word-spacing:-1.560000px;}
.ws84{word-spacing:-1.512000px;}
.ws36{word-spacing:-1.499400px;}
.ws63{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.320000px;}
.ws2f{word-spacing:-1.260000px;}
.wsa4{word-spacing:-1.248000px;}
.ws30{word-spacing:-1.140000px;}
.wsa7{word-spacing:-1.056000px;}
.ws6c{word-spacing:-1.020000px;}
.ws4c{word-spacing:-0.960600px;}
.ws96{word-spacing:-0.918000px;}
.ws92{word-spacing:-0.719400px;}
.ws77{word-spacing:-0.660000px;}
.wsa3{word-spacing:-0.575520px;}
.ws15{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.420000px;}
.ws43{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws47{word-spacing:0.060600px;}
.ws13{word-spacing:0.240000px;}
.ws64{word-spacing:0.300000px;}
.ws23{word-spacing:0.360000px;}
.ws6e{word-spacing:0.480000px;}
.wsad{word-spacing:0.816000px;}
.ws8e{word-spacing:0.864540px;}
.ws38{word-spacing:0.960600px;}
.ws57{word-spacing:1.020000px;}
.ws8b{word-spacing:1.080000px;}
.ws54{word-spacing:1.080600px;}
.ws4e{word-spacing:1.140000px;}
.ws33{word-spacing:1.200000px;}
.wsaa{word-spacing:1.248000px;}
.ws35{word-spacing:1.260000px;}
.wsa6{word-spacing:1.295520px;}
.wsa8{word-spacing:1.344000px;}
.ws51{word-spacing:1.379400px;}
.ws3e{word-spacing:1.499400px;}
.wsa{word-spacing:1.560000px;}
.ws3d{word-spacing:1.619400px;}
.wsf{word-spacing:1.800000px;}
.ws3a{word-spacing:1.860600px;}
.ws48{word-spacing:1.980000px;}
.ws39{word-spacing:2.040000px;}
.ws18{word-spacing:2.100000px;}
.ws41{word-spacing:2.160000px;}
.ws81{word-spacing:2.220000px;}
.ws8a{word-spacing:2.322000px;}
.ws4d{word-spacing:2.340000px;}
.ws32{word-spacing:2.460000px;}
.ws8c{word-spacing:2.484540px;}
.wsa5{word-spacing:2.496000px;}
.ws94{word-spacing:2.538000px;}
.wsab{word-spacing:2.543520px;}
.ws8d{word-spacing:2.646000px;}
.ws2a{word-spacing:2.760600px;}
.ws8{word-spacing:2.880000px;}
.ws86{word-spacing:2.916000px;}
.ws9a{word-spacing:2.940000px;}
.ws20{word-spacing:3.059400px;}
.ws99{word-spacing:3.120000px;}
.ws82{word-spacing:3.240000px;}
.ws97{word-spacing:3.294000px;}
.ws12{word-spacing:3.299400px;}
.ws37{word-spacing:3.420600px;}
.ws9{word-spacing:3.600000px;}
.ws75{word-spacing:3.660000px;}
.ws8f{word-spacing:3.671460px;}
.ws76{word-spacing:3.720000px;}
.ws95{word-spacing:3.780540px;}
.ws26{word-spacing:3.900000px;}
.ws4b{word-spacing:4.020000px;}
.ws42{word-spacing:4.140000px;}
.ws5b{word-spacing:4.200600px;}
.wsa2{word-spacing:4.320000px;}
.wsc{word-spacing:4.380000px;}
.ws90{word-spacing:4.428000px;}
.ws3f{word-spacing:4.560000px;}
.wsa1{word-spacing:4.656000px;}
.ws65{word-spacing:4.680000px;}
.ws31{word-spacing:4.739400px;}
.ws83{word-spacing:4.859400px;}
.ws72{word-spacing:4.920000px;}
.ws1e{word-spacing:4.979400px;}
.ws52{word-spacing:5.040000px;}
.ws2e{word-spacing:5.100600px;}
.ws5{word-spacing:5.160000px;}
.wsa0{word-spacing:5.280000px;}
.ws61{word-spacing:5.400000px;}
.ws7d{word-spacing:5.700000px;}
.ws7e{word-spacing:5.759400px;}
.ws1b{word-spacing:5.880600px;}
.ws4f{word-spacing:5.940000px;}
.ws5d{word-spacing:6.000600px;}
.ws9e{word-spacing:6.048480px;}
.ws11{word-spacing:6.060000px;}
.ws1a{word-spacing:6.120600px;}
.wsb{word-spacing:6.180000px;}
.ws10{word-spacing:6.240000px;}
.ws19{word-spacing:6.360000px;}
.wsa9{word-spacing:6.384000px;}
.ws2c{word-spacing:6.539400px;}
.ws5c{word-spacing:6.600000px;}
.ws74{word-spacing:6.659400px;}
.ws7f{word-spacing:6.780600px;}
.ws70{word-spacing:6.900600px;}
.ws34{word-spacing:7.140000px;}
.ws80{word-spacing:7.200000px;}
.wsac{word-spacing:7.295520px;}
.ws44{word-spacing:7.319400px;}
.ws85{word-spacing:7.397460px;}
.ws98{word-spacing:7.439400px;}
.ws2b{word-spacing:7.680600px;}
.ws89{word-spacing:7.722540px;}
.ws5e{word-spacing:7.740000px;}
.ws9f{word-spacing:7.776000px;}
.ws29{word-spacing:7.800000px;}
.ws73{word-spacing:7.920000px;}
.ws1d{word-spacing:7.980000px;}
.ws2d{word-spacing:8.099400px;}
.ws55{word-spacing:8.160000px;}
.ws1c{word-spacing:8.219400px;}
.ws58{word-spacing:8.460600px;}
.ws7{word-spacing:8.520000px;}
.ws67{word-spacing:8.940000px;}
.ws21{word-spacing:9.240600px;}
.ws46{word-spacing:9.420000px;}
.ws6b{word-spacing:9.540000px;}
.ws59{word-spacing:9.600000px;}
.ws3b{word-spacing:9.840000px;}
.ws88{word-spacing:10.152000px;}
.ws5f{word-spacing:10.260600px;}
.ws14{word-spacing:10.320000px;}
.ws69{word-spacing:10.679400px;}
.ws93{word-spacing:10.740000px;}
.ws4a{word-spacing:11.100000px;}
.ws7c{word-spacing:11.160000px;}
.ws71{word-spacing:11.280000px;}
.ws7b{word-spacing:11.640000px;}
.ws5a{word-spacing:12.479400px;}
.ws79{word-spacing:14.700000px;}
.ws6f{word-spacing:15.300000px;}
.ws7a{word-spacing:19.140000px;}
._16{margin-left:-41.997610px;}
._18{margin-left:-13.022614px;}
._15{margin-left:-11.367569px;}
._11{margin-left:-9.838785px;}
._17{margin-left:-8.219998px;}
._e{margin-left:-6.744016px;}
._10{margin-left:-5.017149px;}
._b{margin-left:-3.884395px;}
._c{margin-left:-2.288395px;}
._d{margin-left:-1.065590px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._f{width:6.054019px;}
._14{width:7.422010px;}
._13{width:8.637615px;}
._12{width:10.002000px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc7{color:rgb(112,111,111);}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599920px;}
.fs10{font-size:31.482000px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fsf{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y23{bottom:35.529000px;}
.y22{bottom:36.291450px;}
.y69{bottom:37.366950px;}
.y21{bottom:45.087021px;}
.y20{bottom:57.074989px;}
.y1f{bottom:69.062956px;}
.y91{bottom:72.867147px;}
.y106{bottom:74.651253px;}
.y68{bottom:74.825397px;}
.ye0{bottom:78.831745px;}
.y1e{bottom:81.050924px;}
.yb4{bottom:82.723503px;}
.yd2{bottom:87.607349px;}
.y90{bottom:90.867147px;}
.y1d{bottom:91.294610px;}
.y105{bottom:92.651253px;}
.y67{bottom:92.825397px;}
.y40{bottom:94.894352px;}
.ydf{bottom:96.831745px;}
.yb3{bottom:100.723503px;}
.yd1{bottom:105.607349px;}
.y8f{bottom:108.867153px;}
.y104{bottom:110.651253px;}
.y1c{bottom:110.703701px;}
.y66{bottom:110.825397px;}
.y3f{bottom:112.594345px;}
.yde{bottom:114.831745px;}
.yb2{bottom:118.723503px;}
.yd0{bottom:123.607349px;}
.y8e{bottom:126.867153px;}
.y103{bottom:128.651253px;}
.y3e{bottom:130.294354px;}
.ydd{bottom:132.831745px;}
.yb1{bottom:136.723503px;}
.y65{bottom:137.329413px;}
.ycf{bottom:141.607349px;}
.y8d{bottom:144.867153px;}
.y102{bottom:146.651253px;}
.y3d{bottom:147.994354px;}
.yb0{bottom:154.723503px;}
.ydc{bottom:155.083649px;}
.y64{bottom:159.079353px;}
.yce{bottom:159.607349px;}
.y8c{bottom:162.867153px;}
.y101{bottom:164.651253px;}
.y3c{bottom:165.694352px;}
.y1b{bottom:167.091548px;}
.yaf{bottom:172.723503px;}
.ydb{bottom:173.083649px;}
.y1a{bottom:176.077238px;}
.ycd{bottom:177.607361px;}
.y8b{bottom:180.867153px;}
.y100{bottom:182.651253px;}
.y3b{bottom:183.394352px;}
.y19{bottom:184.322930px;}
.yae{bottom:190.723503px;}
.yda{bottom:191.083649px;}
.y18{bottom:191.807482px;}
.ycc{bottom:195.607361px;}
.y8a{bottom:198.867142px;}
.y17{bottom:199.302604px;}
.yff{bottom:200.651253px;}
.y3a{bottom:201.094345px;}
.y16{bottom:206.797727px;}
.y63{bottom:208.467155px;}
.yd9{bottom:209.083649px;}
.yad{bottom:212.975395px;}
.ycb{bottom:213.607361px;}
.y15{bottom:214.282278px;}
.y89{bottom:216.867142px;}
.y39{bottom:218.794350px;}
.y14{bottom:221.777401px;}
.y62{bottom:226.467142px;}
.yd8{bottom:227.083649px;}
.yac{bottom:230.975395px;}
.yfe{bottom:231.407249px;}
.yca{bottom:231.607361px;}
.y88{bottom:234.867142px;}
.y13{bottom:237.190502px;}
.y61{bottom:244.167142px;}
.y38{bottom:244.998359px;}
.yfd{bottom:247.607259px;}
.yab{bottom:248.975395px;}
.yc9{bottom:249.607361px;}
.y87{bottom:252.867142px;}
.yd7{bottom:253.587593px;}
.y60{bottom:261.867142px;}
.yfc{bottom:263.807259px;}
.y37{bottom:266.748299px;}
.yaa{bottom:266.975395px;}
.yc8{bottom:267.607361px;}
.y86{bottom:270.867142px;}
.y5f{bottom:279.567146px;}
.yfb{bottom:280.007240px;}
.ya9{bottom:284.975395px;}
.yc7{bottom:285.607361px;}
.y85{bottom:288.867142px;}
.yfa{bottom:296.207245px;}
.y5e{bottom:297.267150px;}
.y13a{bottom:298.732658px;}
.y12{bottom:300.851473px;}
.ya8{bottom:302.975395px;}
.yc6{bottom:303.607361px;}
.y84{bottom:306.867142px;}
.y5d{bottom:314.967160px;}
.y36{bottom:316.136100px;}
.ya7{bottom:320.975395px;}
.yc5{bottom:321.607361px;}
.y83{bottom:324.867142px;}
.yf9{bottom:325.163109px;}
.y139{bottom:327.082612px;}
.y5c{bottom:332.667160px;}
.y35{bottom:334.136100px;}
.ya6{bottom:338.975395px;}
.y82{bottom:342.867142px;}
.yf8{bottom:343.163109px;}
.y138{bottom:343.432732px;}
.yc4{bottom:343.859253px;}
.y5b{bottom:350.367142px;}
.ya5{bottom:356.975395px;}
.y137{bottom:359.782717px;}
.y81{bottom:360.867142px;}
.yf7{bottom:361.163109px;}
.yc3{bottom:361.859253px;}
.y124{bottom:364.612198px;}
.y5a{bottom:368.067133px;}
.y34{bottom:369.143852px;}
.ya4{bottom:374.975395px;}
.yd6{bottom:374.975418px;}
.y136{bottom:376.132702px;}
.y80{bottom:378.867142px;}
.y123{bottom:379.012207px;}
.yc2{bottom:379.859253px;}
.y59{bottom:385.767133px;}
.y33{bottom:387.143829px;}
.yf6{bottom:391.918945px;}
.y135{bottom:392.482687px;}
.ya3{bottom:392.975418px;}
.y122{bottom:393.412216px;}
.y7f{bottom:396.867142px;}
.yc1{bottom:397.859253px;}
.y58{bottom:403.467133px;}
.y32{bottom:405.143829px;}
.y121{bottom:407.812180px;}
.yf5{bottom:408.118973px;}
.y134{bottom:408.832672px;}
.ya2{bottom:410.975418px;}
.y7e{bottom:414.867142px;}
.yc0{bottom:420.111282px;}
.y57{bottom:421.167160px;}
.y120{bottom:422.212189px;}
.y31{bottom:423.143829px;}
.yf4{bottom:424.318954px;}
.y133{bottom:425.182663px;}
.ya1{bottom:428.975418px;}
.y7d{bottom:432.867142px;}
.y11f{bottom:436.612198px;}
.ybf{bottom:438.111282px;}
.y56{bottom:438.867169px;}
.yf3{bottom:440.518936px;}
.y30{bottom:441.143829px;}
.y11{bottom:446.324508px;}
.ya0{bottom:446.975418px;}
.y7c{bottom:450.867142px;}
.y11e{bottom:451.012207px;}
.ybe{bottom:456.111282px;}
.y55{bottom:456.567169px;}
.yf2{bottom:456.718964px;}
.y2f{bottom:459.143829px;}
.y9f{bottom:464.975418px;}
.y11d{bottom:465.412216px;}
.y7b{bottom:468.867142px;}
.y10{bottom:469.433588px;}
.y54{bottom:474.267150px;}
.y132{bottom:474.792618px;}
.y2e{bottom:477.143829px;}
.ybd{bottom:478.363220px;}
.y11c{bottom:479.812180px;}
.yf{bottom:481.421556px;}
.y9e{bottom:482.975418px;}
.yf1{bottom:485.674942px;}
.y7a{bottom:486.867142px;}
.y53{bottom:491.967160px;}
.y11b{bottom:494.212189px;}
.y2d{bottom:495.143829px;}
.ybc{bottom:496.363220px;}
.y9d{bottom:500.975418px;}
.y131{bottom:503.142471px;}
.yf0{bottom:503.674942px;}
.ye{bottom:504.752636px;}
.y79{bottom:504.867142px;}
.y11a{bottom:508.612198px;}
.y52{bottom:509.667160px;}
.y2c{bottom:513.143829px;}
.ybb{bottom:514.363220px;}
.yd{bottom:516.740603px;}
.y9c{bottom:518.975418px;}
.y130{bottom:519.492663px;}
.yef{bottom:521.674942px;}
.y78{bottom:522.867142px;}
.y119{bottom:523.012207px;}
.y51{bottom:527.367169px;}
.yc{bottom:528.728571px;}
.y2b{bottom:531.143829px;}
.y12f{bottom:535.842648px;}
.yba{bottom:536.615250px;}
.y9b{bottom:536.975418px;}
.y118{bottom:537.412216px;}
.yb{bottom:540.716539px;}
.y77{bottom:540.867142px;}
.y50{bottom:545.067169px;}
.y2a{bottom:549.143829px;}
.y117{bottom:551.812180px;}
.y12e{bottom:552.192633px;}
.yee{bottom:552.430800px;}
.ya{bottom:552.704506px;}
.yb9{bottom:554.615250px;}
.y9a{bottom:554.975418px;}
.y76{bottom:558.867142px;}
.y4f{bottom:562.767160px;}
.y9{bottom:564.692474px;}
.y116{bottom:566.212189px;}
.y29{bottom:567.143829px;}
.y12d{bottom:568.542618px;}
.yed{bottom:568.630792px;}
.yb8{bottom:572.615250px;}
.y99{bottom:572.975418px;}
.y8{bottom:576.669870px;}
.y75{bottom:576.867142px;}
.y4e{bottom:580.467160px;}
.y115{bottom:580.612198px;}
.yec{bottom:584.830792px;}
.y12c{bottom:584.892471px;}
.y28{bottom:589.395905px;}
.yb7{bottom:590.615250px;}
.y98{bottom:590.975418px;}
.y74{bottom:594.867142px;}
.y114{bottom:595.012207px;}
.y4d{bottom:598.167160px;}
.yeb{bottom:601.030792px;}
.y97{bottom:608.975418px;}
.y113{bottom:609.412216px;}
.y73{bottom:612.867142px;}
.y4c{bottom:615.867142px;}
.yea{bottom:617.230820px;}
.y112{bottom:623.812180px;}
.y96{bottom:626.975418px;}
.y72{bottom:630.867142px;}
.y7{bottom:632.539719px;}
.ye9{bottom:633.430800px;}
.y4b{bottom:633.567169px;}
.y111{bottom:638.212189px;}
.y12b{bottom:638.754318px;}
.y95{bottom:644.975418px;}
.y71{bottom:648.867142px;}
.y6{bottom:649.020532px;}
.y4a{bottom:651.267133px;}
.y110{bottom:652.612198px;}
.ye8{bottom:662.386780px;}
.y94{bottom:662.975418px;}
.y5{bottom:665.501344px;}
.y70{bottom:666.867142px;}
.y10f{bottom:667.012207px;}
.y12a{bottom:667.104378px;}
.y49{bottom:668.967133px;}
.ye7{bottom:680.386780px;}
.yd5{bottom:680.975418px;}
.y10e{bottom:681.412216px;}
.y4{bottom:683.282439px;}
.y129{bottom:683.454363px;}
.y6f{bottom:684.867142px;}
.y48{bottom:686.667160px;}
.y93{bottom:689.479340px;}
.y27{bottom:692.435257px;}
.y10d{bottom:695.812180px;}
.ye6{bottom:698.386780px;}
.yd4{bottom:698.975418px;}
.y128{bottom:699.804348px;}
.y6e{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.y47{bottom:704.367142px;}
.y10c{bottom:710.212189px;}
.y127{bottom:716.154333px;}
.yb6{bottom:720.867142px;}
.y6d{bottom:720.867188px;}
.y26{bottom:720.935257px;}
.y46{bottom:722.067169px;}
.y10b{bottom:724.612198px;}
.y2{bottom:725.240326px;}
.yd3{bottom:725.479340px;}
.ye5{bottom:729.142639px;}
.y126{bottom:732.504318px;}
.y92{bottom:738.867142px;}
.y6c{bottom:738.867188px;}
.y10a{bottom:739.012207px;}
.y45{bottom:739.767133px;}
.ye4{bottom:745.342648px;}
.y125{bottom:748.854309px;}
.y25{bottom:749.435257px;}
.y109{bottom:753.412216px;}
.yb5{bottom:756.867142px;}
.y6b{bottom:756.867188px;}
.y44{bottom:757.467133px;}
.ye3{bottom:761.542648px;}
.y108{bottom:767.812180px;}
.y6a{bottom:774.867188px;}
.y43{bottom:775.167114px;}
.ye2{bottom:777.742676px;}
.y24{bottom:788.565125px;}
.y107{bottom:790.716156px;}
.y42{bottom:792.867188px;}
.ye1{bottom:793.942657px;}
.y41{bottom:833.260803px;}
.h7{height:21.933541px;}
.h6{height:25.066904px;}
.h9{height:28.200267px;}
.h5{height:31.333630px;}
.hd{height:34.359000px;}
.h4{height:34.466993px;}
.h8{height:35.093665px;}
.h18{height:40.446000px;}
.h17{height:41.561891px;}
.h16{height:42.288000px;}
.h3{height:43.867081px;}
.h13{height:46.224000px;}
.h15{height:47.574000px;}
.h14{height:48.780000px;}
.h10{height:51.360000px;}
.h11{height:52.860000px;}
.hc{height:56.496000px;}
.he{height:60.732000px;}
.h12{height:61.632000px;}
.hf{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x6{left:80.787449px;}
.xd{left:87.686851px;}
.x7{left:93.543303px;}
.xe{left:95.669249px;}
.x2{left:104.878859px;}
.x8{left:148.296455px;}
.xc{left:209.234550px;}
.xf{left:212.598450px;}
.x4{left:308.653166px;}
.xa{left:445.146606px;}
.x5{left:523.054504px;}
.xb{left:526.917755px;}
.x9{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.983887pt;}
.ls3{letter-spacing:-1.642667pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls1{letter-spacing:-0.821920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160533pt;}
.ls4{letter-spacing:20.820813pt;}
.ws9b{word-spacing:-15.360000pt;}
.ws17{word-spacing:-13.546667pt;}
.ws2{word-spacing:-13.258080pt;}
.ws3{word-spacing:-12.960533pt;}
.ws4{word-spacing:-12.800000pt;}
.ws50{word-spacing:-12.437333pt;}
.wsaf{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.ws9c{word-spacing:-10.837333pt;}
.ws16{word-spacing:-8.805333pt;}
.wsae{word-spacing:-6.884064pt;}
.ws27{word-spacing:-2.932800pt;}
.ws6a{word-spacing:-2.719467pt;}
.ws28{word-spacing:-2.613333pt;}
.ws91{word-spacing:-2.543520pt;}
.ws45{word-spacing:-2.506667pt;}
.ws6d{word-spacing:-2.453867pt;}
.ws87{word-spacing:-2.400000pt;}
.ws53{word-spacing:-2.186667pt;}
.ws22{word-spacing:-2.132800pt;}
.ws6{word-spacing:-2.080000pt;}
.ws49{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.920000pt;}
.wse{word-spacing:-1.866667pt;}
.ws24{word-spacing:-1.706667pt;}
.ws68{word-spacing:-1.600000pt;}
.ws3c{word-spacing:-1.547200pt;}
.wsd{word-spacing:-1.493333pt;}
.ws60{word-spacing:-1.439467pt;}
.ws66{word-spacing:-1.386667pt;}
.ws84{word-spacing:-1.344000pt;}
.ws36{word-spacing:-1.332800pt;}
.ws63{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.173333pt;}
.ws2f{word-spacing:-1.120000pt;}
.wsa4{word-spacing:-1.109333pt;}
.ws30{word-spacing:-1.013333pt;}
.wsa7{word-spacing:-0.938667pt;}
.ws6c{word-spacing:-0.906667pt;}
.ws4c{word-spacing:-0.853867pt;}
.ws96{word-spacing:-0.816000pt;}
.ws92{word-spacing:-0.639467pt;}
.ws77{word-spacing:-0.586667pt;}
.wsa3{word-spacing:-0.511573pt;}
.ws15{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.373333pt;}
.ws43{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053867pt;}
.ws13{word-spacing:0.213333pt;}
.ws64{word-spacing:0.266667pt;}
.ws23{word-spacing:0.320000pt;}
.ws6e{word-spacing:0.426667pt;}
.wsad{word-spacing:0.725333pt;}
.ws8e{word-spacing:0.768480pt;}
.ws38{word-spacing:0.853867pt;}
.ws57{word-spacing:0.906667pt;}
.ws8b{word-spacing:0.960000pt;}
.ws54{word-spacing:0.960533pt;}
.ws4e{word-spacing:1.013333pt;}
.ws33{word-spacing:1.066667pt;}
.wsaa{word-spacing:1.109333pt;}
.ws35{word-spacing:1.120000pt;}
.wsa6{word-spacing:1.151573pt;}
.wsa8{word-spacing:1.194667pt;}
.ws51{word-spacing:1.226133pt;}
.ws3e{word-spacing:1.332800pt;}
.wsa{word-spacing:1.386667pt;}
.ws3d{word-spacing:1.439467pt;}
.wsf{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.653867pt;}
.ws48{word-spacing:1.760000pt;}
.ws39{word-spacing:1.813333pt;}
.ws18{word-spacing:1.866667pt;}
.ws41{word-spacing:1.920000pt;}
.ws81{word-spacing:1.973333pt;}
.ws8a{word-spacing:2.064000pt;}
.ws4d{word-spacing:2.080000pt;}
.ws32{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.208480pt;}
.wsa5{word-spacing:2.218667pt;}
.ws94{word-spacing:2.256000pt;}
.wsab{word-spacing:2.260907pt;}
.ws8d{word-spacing:2.352000pt;}
.ws2a{word-spacing:2.453867pt;}
.ws8{word-spacing:2.560000pt;}
.ws86{word-spacing:2.592000pt;}
.ws9a{word-spacing:2.613333pt;}
.ws20{word-spacing:2.719467pt;}
.ws99{word-spacing:2.773333pt;}
.ws82{word-spacing:2.880000pt;}
.ws97{word-spacing:2.928000pt;}
.ws12{word-spacing:2.932800pt;}
.ws37{word-spacing:3.040533pt;}
.ws9{word-spacing:3.200000pt;}
.ws75{word-spacing:3.253333pt;}
.ws8f{word-spacing:3.263520pt;}
.ws76{word-spacing:3.306667pt;}
.ws95{word-spacing:3.360480pt;}
.ws26{word-spacing:3.466667pt;}
.ws4b{word-spacing:3.573333pt;}
.ws42{word-spacing:3.680000pt;}
.ws5b{word-spacing:3.733867pt;}
.wsa2{word-spacing:3.840000pt;}
.wsc{word-spacing:3.893333pt;}
.ws90{word-spacing:3.936000pt;}
.ws3f{word-spacing:4.053333pt;}
.wsa1{word-spacing:4.138667pt;}
.ws65{word-spacing:4.160000pt;}
.ws31{word-spacing:4.212800pt;}
.ws83{word-spacing:4.319467pt;}
.ws72{word-spacing:4.373333pt;}
.ws1e{word-spacing:4.426133pt;}
.ws52{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.533867pt;}
.ws5{word-spacing:4.586667pt;}
.wsa0{word-spacing:4.693333pt;}
.ws61{word-spacing:4.800000pt;}
.ws7d{word-spacing:5.066667pt;}
.ws7e{word-spacing:5.119467pt;}
.ws1b{word-spacing:5.227200pt;}
.ws4f{word-spacing:5.280000pt;}
.ws5d{word-spacing:5.333867pt;}
.ws9e{word-spacing:5.376427pt;}
.ws11{word-spacing:5.386667pt;}
.ws1a{word-spacing:5.440533pt;}
.wsb{word-spacing:5.493333pt;}
.ws10{word-spacing:5.546667pt;}
.ws19{word-spacing:5.653333pt;}
.wsa9{word-spacing:5.674667pt;}
.ws2c{word-spacing:5.812800pt;}
.ws5c{word-spacing:5.866667pt;}
.ws74{word-spacing:5.919467pt;}
.ws7f{word-spacing:6.027200pt;}
.ws70{word-spacing:6.133867pt;}
.ws34{word-spacing:6.346667pt;}
.ws80{word-spacing:6.400000pt;}
.wsac{word-spacing:6.484907pt;}
.ws44{word-spacing:6.506133pt;}
.ws85{word-spacing:6.575520pt;}
.ws98{word-spacing:6.612800pt;}
.ws2b{word-spacing:6.827200pt;}
.ws89{word-spacing:6.864480pt;}
.ws5e{word-spacing:6.880000pt;}
.ws9f{word-spacing:6.912000pt;}
.ws29{word-spacing:6.933333pt;}
.ws73{word-spacing:7.040000pt;}
.ws1d{word-spacing:7.093333pt;}
.ws2d{word-spacing:7.199467pt;}
.ws55{word-spacing:7.253333pt;}
.ws1c{word-spacing:7.306133pt;}
.ws58{word-spacing:7.520533pt;}
.ws7{word-spacing:7.573333pt;}
.ws67{word-spacing:7.946667pt;}
.ws21{word-spacing:8.213867pt;}
.ws46{word-spacing:8.373333pt;}
.ws6b{word-spacing:8.480000pt;}
.ws59{word-spacing:8.533333pt;}
.ws3b{word-spacing:8.746667pt;}
.ws88{word-spacing:9.024000pt;}
.ws5f{word-spacing:9.120533pt;}
.ws14{word-spacing:9.173333pt;}
.ws69{word-spacing:9.492800pt;}
.ws93{word-spacing:9.546667pt;}
.ws4a{word-spacing:9.866667pt;}
.ws7c{word-spacing:9.920000pt;}
.ws71{word-spacing:10.026667pt;}
.ws7b{word-spacing:10.346667pt;}
.ws5a{word-spacing:11.092800pt;}
.ws79{word-spacing:13.066667pt;}
.ws6f{word-spacing:13.600000pt;}
.ws7a{word-spacing:17.013333pt;}
._16{margin-left:-37.331209pt;}
._18{margin-left:-11.575657pt;}
._15{margin-left:-10.104506pt;}
._11{margin-left:-8.745587pt;}
._17{margin-left:-7.306665pt;}
._e{margin-left:-5.994681pt;}
._10{margin-left:-4.459688pt;}
._b{margin-left:-3.452796pt;}
._c{margin-left:-2.034129pt;}
._d{margin-left:-0.947191pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._f{width:5.381350pt;}
._14{width:6.597342pt;}
._13{width:7.677880pt;}
._12{width:8.890667pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fs4{font-size:26.311040pt;}
.fs10{font-size:27.984000pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fsf{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y23{bottom:31.581333pt;}
.y22{bottom:32.259066pt;}
.y69{bottom:33.215067pt;}
.y21{bottom:40.077352pt;}
.y20{bottom:50.733323pt;}
.y1f{bottom:61.389294pt;}
.y91{bottom:64.770798pt;}
.y106{bottom:66.356669pt;}
.y68{bottom:66.511464pt;}
.ye0{bottom:70.072662pt;}
.y1e{bottom:72.045266pt;}
.yb4{bottom:73.532003pt;}
.yd2{bottom:77.873199pt;}
.y90{bottom:80.770798pt;}
.y1d{bottom:81.150765pt;}
.y105{bottom:82.356669pt;}
.y67{bottom:82.511464pt;}
.y40{bottom:84.350535pt;}
.ydf{bottom:86.072662pt;}
.yb3{bottom:89.532003pt;}
.yd1{bottom:93.873199pt;}
.y8f{bottom:96.770803pt;}
.y104{bottom:98.356669pt;}
.y1c{bottom:98.403290pt;}
.y66{bottom:98.511464pt;}
.y3f{bottom:100.083862pt;}
.yde{bottom:102.072662pt;}
.yb2{bottom:105.532003pt;}
.yd0{bottom:109.873199pt;}
.y8e{bottom:112.770803pt;}
.y103{bottom:114.356669pt;}
.y3e{bottom:115.817204pt;}
.ydd{bottom:118.072662pt;}
.yb1{bottom:121.532003pt;}
.y65{bottom:122.070590pt;}
.ycf{bottom:125.873199pt;}
.y8d{bottom:128.770803pt;}
.y102{bottom:130.356669pt;}
.y3d{bottom:131.550537pt;}
.yb0{bottom:137.532003pt;}
.ydc{bottom:137.852132pt;}
.y64{bottom:141.403870pt;}
.yce{bottom:141.873199pt;}
.y8c{bottom:144.770803pt;}
.y101{bottom:146.356669pt;}
.y3c{bottom:147.283868pt;}
.y1b{bottom:148.525821pt;}
.yaf{bottom:153.532003pt;}
.ydb{bottom:153.852132pt;}
.y1a{bottom:156.513101pt;}
.ycd{bottom:157.873210pt;}
.y8b{bottom:160.770803pt;}
.y100{bottom:162.356669pt;}
.y3b{bottom:163.017202pt;}
.y19{bottom:163.842605pt;}
.yae{bottom:169.532003pt;}
.yda{bottom:169.852132pt;}
.y18{bottom:170.495539pt;}
.ycc{bottom:173.873210pt;}
.y8a{bottom:176.770793pt;}
.y17{bottom:177.157870pt;}
.yff{bottom:178.356669pt;}
.y3a{bottom:178.750529pt;}
.y16{bottom:183.820202pt;}
.y63{bottom:185.304138pt;}
.yd9{bottom:185.852132pt;}
.yad{bottom:189.311462pt;}
.ycb{bottom:189.873210pt;}
.y15{bottom:190.473136pt;}
.y89{bottom:192.770793pt;}
.y39{bottom:194.483866pt;}
.y14{bottom:197.135467pt;}
.y62{bottom:201.304126pt;}
.yd8{bottom:201.852132pt;}
.yac{bottom:205.311462pt;}
.yfe{bottom:205.695333pt;}
.yca{bottom:205.873210pt;}
.y88{bottom:208.770793pt;}
.y13{bottom:210.836002pt;}
.y61{bottom:217.037459pt;}
.y38{bottom:217.776319pt;}
.yfd{bottom:220.095341pt;}
.yab{bottom:221.311462pt;}
.yc9{bottom:221.873210pt;}
.y87{bottom:224.770793pt;}
.yd7{bottom:225.411194pt;}
.y60{bottom:232.770793pt;}
.yfc{bottom:234.495341pt;}
.y37{bottom:237.109599pt;}
.yaa{bottom:237.311462pt;}
.yc8{bottom:237.873210pt;}
.y86{bottom:240.770793pt;}
.y5f{bottom:248.504130pt;}
.yfb{bottom:248.895325pt;}
.ya9{bottom:253.311462pt;}
.yc7{bottom:253.873210pt;}
.y85{bottom:256.770793pt;}
.yfa{bottom:263.295329pt;}
.y5e{bottom:264.237467pt;}
.y13a{bottom:265.540141pt;}
.y12{bottom:267.423531pt;}
.ya8{bottom:269.311462pt;}
.yc6{bottom:269.873210pt;}
.y84{bottom:272.770793pt;}
.y5d{bottom:279.970809pt;}
.y36{bottom:281.009867pt;}
.ya7{bottom:285.311462pt;}
.yc5{bottom:285.873210pt;}
.y83{bottom:288.770793pt;}
.yf9{bottom:289.033875pt;}
.y139{bottom:290.740100pt;}
.y5c{bottom:295.704142pt;}
.y35{bottom:297.009867pt;}
.ya6{bottom:301.311462pt;}
.y82{bottom:304.770793pt;}
.yf8{bottom:305.033875pt;}
.y138{bottom:305.273540pt;}
.yc4{bottom:305.652669pt;}
.y5b{bottom:311.437459pt;}
.ya5{bottom:317.311462pt;}
.y137{bottom:319.806860pt;}
.y81{bottom:320.770793pt;}
.yf7{bottom:321.033875pt;}
.yc3{bottom:321.652669pt;}
.y124{bottom:324.099731pt;}
.y5a{bottom:327.170785pt;}
.y34{bottom:328.127869pt;}
.ya4{bottom:333.311462pt;}
.yd6{bottom:333.311483pt;}
.y136{bottom:334.340180pt;}
.y80{bottom:336.770793pt;}
.y123{bottom:336.899740pt;}
.yc2{bottom:337.652669pt;}
.y59{bottom:342.904118pt;}
.y33{bottom:344.127848pt;}
.yf6{bottom:348.372396pt;}
.y135{bottom:348.873500pt;}
.ya3{bottom:349.311483pt;}
.y122{bottom:349.699748pt;}
.y7f{bottom:352.770793pt;}
.yc1{bottom:353.652669pt;}
.y58{bottom:358.637451pt;}
.y32{bottom:360.127848pt;}
.y121{bottom:362.499715pt;}
.yf5{bottom:362.772420pt;}
.y134{bottom:363.406820pt;}
.ya2{bottom:365.311483pt;}
.y7e{bottom:368.770793pt;}
.yc0{bottom:373.432251pt;}
.y57{bottom:374.370809pt;}
.y120{bottom:375.299723pt;}
.y31{bottom:376.127848pt;}
.yf4{bottom:377.172404pt;}
.y133{bottom:377.940145pt;}
.ya1{bottom:381.311483pt;}
.y7d{bottom:384.770793pt;}
.y11f{bottom:388.099731pt;}
.ybf{bottom:389.432251pt;}
.y56{bottom:390.104150pt;}
.yf3{bottom:391.572388pt;}
.y30{bottom:392.127848pt;}
.y11{bottom:396.732896pt;}
.ya0{bottom:397.311483pt;}
.y7c{bottom:400.770793pt;}
.y11e{bottom:400.899740pt;}
.ybe{bottom:405.432251pt;}
.y55{bottom:405.837484pt;}
.yf2{bottom:405.972412pt;}
.y2f{bottom:408.127848pt;}
.y9f{bottom:413.311483pt;}
.y11d{bottom:413.699748pt;}
.y7b{bottom:416.770793pt;}
.y10{bottom:417.274301pt;}
.y54{bottom:421.570800pt;}
.y132{bottom:422.037882pt;}
.y2e{bottom:424.127848pt;}
.ybd{bottom:425.211751pt;}
.y11c{bottom:426.499715pt;}
.yf{bottom:427.930272pt;}
.y9e{bottom:429.311483pt;}
.yf1{bottom:431.711060pt;}
.y7a{bottom:432.770793pt;}
.y53{bottom:437.304142pt;}
.y11b{bottom:439.299723pt;}
.y2d{bottom:440.127848pt;}
.ybc{bottom:441.211751pt;}
.y9d{bottom:445.311483pt;}
.y131{bottom:447.237752pt;}
.yf0{bottom:447.711060pt;}
.ye{bottom:448.669010pt;}
.y79{bottom:448.770793pt;}
.y11a{bottom:452.099731pt;}
.y52{bottom:453.037476pt;}
.y2c{bottom:456.127848pt;}
.ybb{bottom:457.211751pt;}
.yd{bottom:459.324981pt;}
.y9c{bottom:461.311483pt;}
.y130{bottom:461.771256pt;}
.yef{bottom:463.711060pt;}
.y78{bottom:464.770793pt;}
.y119{bottom:464.899740pt;}
.y51{bottom:468.770817pt;}
.yc{bottom:469.980952pt;}
.y2b{bottom:472.127848pt;}
.y12f{bottom:476.304576pt;}
.yba{bottom:476.991333pt;}
.y9b{bottom:477.311483pt;}
.y118{bottom:477.699748pt;}
.yb{bottom:480.636923pt;}
.y77{bottom:480.770793pt;}
.y50{bottom:484.504150pt;}
.y2a{bottom:488.127848pt;}
.y117{bottom:490.499715pt;}
.y12e{bottom:490.837896pt;}
.yee{bottom:491.049600pt;}
.ya{bottom:491.292894pt;}
.yb9{bottom:492.991333pt;}
.y9a{bottom:493.311483pt;}
.y76{bottom:496.770793pt;}
.y4f{bottom:500.237476pt;}
.y9{bottom:501.948866pt;}
.y116{bottom:503.299723pt;}
.y29{bottom:504.127848pt;}
.y12d{bottom:505.371216pt;}
.yed{bottom:505.449593pt;}
.yb8{bottom:508.991333pt;}
.y99{bottom:509.311483pt;}
.y8{bottom:512.595440pt;}
.y75{bottom:512.770793pt;}
.y4e{bottom:515.970809pt;}
.y115{bottom:516.099731pt;}
.yec{bottom:519.849593pt;}
.y12c{bottom:519.904419pt;}
.y28{bottom:523.907471pt;}
.yb7{bottom:524.991333pt;}
.y98{bottom:525.311483pt;}
.y74{bottom:528.770793pt;}
.y114{bottom:528.899740pt;}
.y4d{bottom:531.704142pt;}
.yeb{bottom:534.249593pt;}
.y97{bottom:541.311483pt;}
.y113{bottom:541.699748pt;}
.y73{bottom:544.770793pt;}
.y4c{bottom:547.437459pt;}
.yea{bottom:548.649618pt;}
.y112{bottom:554.499715pt;}
.y96{bottom:557.311483pt;}
.y72{bottom:560.770793pt;}
.y7{bottom:562.257528pt;}
.ye9{bottom:563.049600pt;}
.y4b{bottom:563.170817pt;}
.y111{bottom:567.299723pt;}
.y12b{bottom:567.781616pt;}
.y95{bottom:573.311483pt;}
.y71{bottom:576.770793pt;}
.y6{bottom:576.907139pt;}
.y4a{bottom:578.904118pt;}
.y110{bottom:580.099731pt;}
.ye8{bottom:588.788249pt;}
.y94{bottom:589.311483pt;}
.y5{bottom:591.556750pt;}
.y70{bottom:592.770793pt;}
.y10f{bottom:592.899740pt;}
.y12a{bottom:592.981670pt;}
.y49{bottom:594.637451pt;}
.ye7{bottom:604.788249pt;}
.yd5{bottom:605.311483pt;}
.y10e{bottom:605.699748pt;}
.y4{bottom:607.362168pt;}
.y129{bottom:607.514990pt;}
.y6f{bottom:608.770793pt;}
.y48{bottom:610.370809pt;}
.y93{bottom:612.870524pt;}
.y27{bottom:615.498006pt;}
.y10d{bottom:618.499715pt;}
.ye6{bottom:620.788249pt;}
.yd4{bottom:621.311483pt;}
.y128{bottom:622.048310pt;}
.y6e{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.y47{bottom:626.104126pt;}
.y10c{bottom:631.299723pt;}
.y127{bottom:636.581630pt;}
.yb6{bottom:640.770793pt;}
.y6d{bottom:640.770833pt;}
.y26{bottom:640.831340pt;}
.y46{bottom:641.837484pt;}
.y10b{bottom:644.099731pt;}
.y2{bottom:644.658067pt;}
.yd3{bottom:644.870524pt;}
.ye5{bottom:648.126790pt;}
.y126{bottom:651.114950pt;}
.y92{bottom:656.770793pt;}
.y6c{bottom:656.770833pt;}
.y10a{bottom:656.899740pt;}
.y45{bottom:657.570785pt;}
.ye4{bottom:662.526799pt;}
.y125{bottom:665.648275pt;}
.y25{bottom:666.164673pt;}
.y109{bottom:669.699748pt;}
.yb5{bottom:672.770793pt;}
.y6b{bottom:672.770833pt;}
.y44{bottom:673.304118pt;}
.ye3{bottom:676.926799pt;}
.y108{bottom:682.499715pt;}
.y6a{bottom:688.770833pt;}
.y43{bottom:689.037435pt;}
.ye2{bottom:691.326823pt;}
.y24{bottom:700.946777pt;}
.y107{bottom:702.858805pt;}
.y42{bottom:704.770833pt;}
.ye1{bottom:705.726807pt;}
.y41{bottom:740.676270pt;}
.h7{height:19.496481pt;}
.h6{height:22.281692pt;}
.h9{height:25.066904pt;}
.h5{height:27.852115pt;}
.hd{height:30.541333pt;}
.h4{height:30.637327pt;}
.h8{height:31.194369pt;}
.h18{height:35.952000pt;}
.h17{height:36.943903pt;}
.h16{height:37.589333pt;}
.h3{height:38.992961pt;}
.h13{height:41.088000pt;}
.h15{height:42.288000pt;}
.h14{height:43.360000pt;}
.h10{height:45.653333pt;}
.h11{height:46.986667pt;}
.hc{height:50.218667pt;}
.he{height:53.984000pt;}
.h12{height:54.784000pt;}
.hf{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x6{left:71.811066pt;}
.xd{left:77.943868pt;}
.x7{left:83.149602pt;}
.xe{left:85.039332pt;}
.x2{left:93.225653pt;}
.x8{left:131.819071pt;}
.xc{left:185.986267pt;}
.xf{left:188.976400pt;}
.x4{left:274.358370pt;}
.xa{left:395.685872pt;}
.x5{left:464.937337pt;}
.xb{left:468.371338pt;}
.x9{left:487.527059pt;}
}




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