
    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_45c6997b420c0756f9e1c7ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_649431057179091f6bf420f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_40384588e9c9f622306c4fc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_cc0c2be06aee51d93a64dfe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_0074767a3585b37a57471e3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_726ad5bce69163974d398460.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_96525e601788319357717efe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_005c09ecda8de9ba631bbd57.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_59ef7cec85880ed4cdf7ea00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_52e09c1555a37186045399ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8577c03182fd370e3e285cdd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6c6954473fcd70cfb960d0d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.538800px;}
.ls7{letter-spacing:-0.496200px;}
.ls19{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.450600px;}
.ls17{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.231600px;}
.ls18{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.159600px;}
.ls2{letter-spacing:0.159840px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.lsa{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls1d{letter-spacing:3.240000px;}
.ls1e{letter-spacing:3.960000px;}
.lsf{letter-spacing:4.680000px;}
.ls20{letter-spacing:5.040000px;}
.ls1f{letter-spacing:8.640000px;}
.ls21{letter-spacing:10.080000px;}
.ls16{letter-spacing:14.040000px;}
.ls1a{letter-spacing:18.000000px;}
.lsb{letter-spacing:19.800000px;}
.ls12{letter-spacing:34.865280px;}
.ls11{letter-spacing:38.465280px;}
.ls10{letter-spacing:39.881280px;}
.ls1c{letter-spacing:39.905280px;}
.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;}
}
.ws13{word-spacing:-66.130800px;}
.ws1{word-spacing:-59.760000px;}
.ws2{word-spacing:-59.528400px;}
.ws3{word-spacing:-48.399600px;}
.ws4{word-spacing:-48.240000px;}
.wse{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.145400px;}
.ws14{word-spacing:-16.102200px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.283800px;}
.ws8{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.700000px;}
.ws11{word-spacing:-11.609400px;}
.wsa{word-spacing:-11.563800px;}
.ws5{word-spacing:-10.440000px;}
.ws9{word-spacing:-0.048240px;}
.wsd{word-spacing:0.000000px;}
._21{margin-left:-9.018000px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._18{margin-left:-4.008960px;}
._6{margin-left:-2.975760px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._15{width:2.022000px;}
._3{width:3.050400px;}
._a{width:4.293600px;}
._11{width:6.246000px;}
._12{width:7.583760px;}
._e{width:9.504000px;}
._d{width:10.584000px;}
._13{width:12.258000px;}
._1a{width:13.472640px;}
._1c{width:15.102720px;}
._14{width:16.128000px;}
._9{width:17.388000px;}
._1b{width:18.523200px;}
._8{width:19.602000px;}
._7{width:20.604000px;}
._1e{width:22.389120px;}
._1d{width:23.647680px;}
._c{width:25.326000px;}
._b{width:26.460000px;}
._20{width:27.710880px;}
._1f{width:28.814400px;}
._19{width:30.271680px;}
._17{width:32.454000px;}
._16{width:33.804000px;}
._10{width:41.742000px;}
._f{width:43.014000px;}
._25{width:48.355200px;}
._24{width:49.547520px;}
._23{width:86.844720px;}
._22{width:136.470720px;}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:2.880000px;}
.ya7{bottom:6.300000px;}
.y2{bottom:6.510000px;}
.y30{bottom:15.300000px;}
.y2d{bottom:18.360000px;}
.y31{bottom:20.160000px;}
.y5{bottom:25.410000px;}
.ya6{bottom:28.080000px;}
.yad{bottom:28.260000px;}
.y8{bottom:28.830000px;}
.y2c{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y2b{bottom:49.500000px;}
.yb2{bottom:49.860000px;}
.ya5{bottom:50.040000px;}
.yb4{bottom:50.085000px;}
.ya{bottom:56.520000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2a{bottom:64.980000px;}
.yb1{bottom:71.640000px;}
.ya4{bottom:71.820000px;}
.yac{bottom:71.865000px;}
.y29{bottom:80.460000px;}
.yb0{bottom:93.600000px;}
.yab{bottom:93.645000px;}
.y28{bottom:95.970000px;}
.y72{bottom:110.376000px;}
.y27{bottom:111.630000px;}
.y71{bottom:114.876000px;}
.yaf{bottom:115.380000px;}
.yaa{bottom:115.605000px;}
.y70{bottom:124.236000px;}
.y26{bottom:127.110000px;}
.y6f{bottom:128.736000px;}
.y41{bottom:130.176000px;}
.ye3{bottom:131.976000px;}
.ya9{bottom:137.385000px;}
.y7d{bottom:137.916000px;}
.y6e{bottom:140.076000px;}
.ye0{bottom:142.416000px;}
.y25{bottom:142.590000px;}
.y7c{bottom:151.770000px;}
.y40{bottom:151.950000px;}
.ye2{bottom:153.930000px;}
.y7b{bottom:156.270000px;}
.y24{bottom:158.070000px;}
.y7a{bottom:165.630000px;}
.ydf{bottom:170.130000px;}
.y23{bottom:173.730000px;}
.y3f{bottom:173.910000px;}
.ye1{bottom:175.710000px;}
.y79{bottom:179.310000px;}
.y78{bottom:183.810000px;}
.y22{bottom:189.210000px;}
.y9a{bottom:193.170000px;}
.y77{bottom:195.330000px;}
.y3e{bottom:195.690000px;}
.y6d{bottom:197.490000px;}
.yde{bottom:197.670000px;}
.y21{bottom:204.690000px;}
.y99{bottom:207.030000px;}
.ydd{bottom:209.190000px;}
.y98{bottom:211.530000px;}
.y3d{bottom:217.470000px;}
.y6c{bottom:219.270000px;}
.y20{bottom:220.170000px;}
.y97{bottom:222.870000px;}
.y1f{bottom:235.830000px;}
.y3c{bottom:239.250000px;}
.ydb{bottom:240.690000px;}
.y6b{bottom:241.230000px;}
.ydc{bottom:246.630000px;}
.yca{bottom:248.070000px;}
.y1e{bottom:251.310000px;}
.y3b{bottom:261.030000px;}
.yda{bottom:262.470000px;}
.y96{bottom:262.830000px;}
.y6a{bottom:263.010000px;}
.y1d{bottom:266.790000px;}
.yc9{bottom:269.850000px;}
.ya8{bottom:270.750000px;}
.y1c{bottom:282.270000px;}
.y3a{bottom:282.990000px;}
.yd9{bottom:284.250000px;}
.y95{bottom:284.610000px;}
.y69{bottom:284.790000px;}
.yc8{bottom:291.810000px;}
.y1b{bottom:297.930000px;}
.y39{bottom:304.770000px;}
.yd8{bottom:306.030000px;}
.y94{bottom:306.390000px;}
.y68{bottom:306.570000px;}
.y1a{bottom:313.410000px;}
.yc7{bottom:313.590000px;}
.y38{bottom:326.550000px;}
.yd7{bottom:327.990000px;}
.y67{bottom:328.350000px;}
.y19{bottom:328.890000px;}
.yc6{bottom:335.370000px;}
.y18{bottom:344.370000px;}
.y37{bottom:348.375000px;}
.yd6{bottom:349.815000px;}
.y93{bottom:350.175000px;}
.y66{bottom:350.355000px;}
.yc5{bottom:357.195000px;}
.y17{bottom:360.075000px;}
.y36{bottom:370.335000px;}
.yd5{bottom:371.595000px;}
.y92{bottom:371.955000px;}
.y65{bottom:372.135000px;}
.y16{bottom:375.555000px;}
.yc4{bottom:379.155000px;}
.y15{bottom:391.035000px;}
.y35{bottom:392.115000px;}
.yd4{bottom:393.375000px;}
.y90{bottom:393.735000px;}
.y64{bottom:393.915000px;}
.y91{bottom:399.675000px;}
.yc3{bottom:400.935000px;}
.y14{bottom:406.515000px;}
.y34{bottom:413.895000px;}
.yd3{bottom:415.155000px;}
.y8f{bottom:415.515000px;}
.y63{bottom:415.695000px;}
.y13{bottom:422.175000px;}
.yc2{bottom:422.715000px;}
.y33{bottom:435.675000px;}
.yd2{bottom:437.115000px;}
.y8e{bottom:437.475000px;}
.y62{bottom:437.655000px;}
.ya3{bottom:442.695000px;}
.yc1{bottom:444.495000px;}
.yd1{bottom:458.895000px;}
.y8c{bottom:459.255000px;}
.y61{bottom:459.435000px;}
.y32{bottom:463.215000px;}
.y8d{bottom:465.195000px;}
.yc0{bottom:466.275000px;}
.yd0{bottom:480.855000px;}
.y8b{bottom:481.035000px;}
.y60{bottom:481.215000px;}
.y2f{bottom:485.355000px;}
.ybf{bottom:488.235000px;}
.ycf{bottom:502.635000px;}
.y8a{bottom:502.815000px;}
.y5f{bottom:502.995000px;}
.ybe{bottom:510.015000px;}
.y12{bottom:522.255000px;}
.yce{bottom:524.415000px;}
.y5e{bottom:524.775000px;}
.y76{bottom:530.715000px;}
.ybd{bottom:531.795000px;}
.ya2{bottom:546.375000px;}
.y89{bottom:546.555000px;}
.y5d{bottom:546.735000px;}
.ybc{bottom:553.575000px;}
.ycd{bottom:568.155000px;}
.y88{bottom:568.335000px;}
.y5c{bottom:568.515000px;}
.ybb{bottom:575.355000px;}
.y86{bottom:590.115000px;}
.y5b{bottom:590.295000px;}
.y87{bottom:596.055000px;}
.y75{bottom:596.235000px;}
.yba{bottom:597.315000px;}
.y85{bottom:611.925000px;}
.y5a{bottom:612.105000px;}
.yb9{bottom:619.125000px;}
.ya0{bottom:633.705000px;}
.y59{bottom:633.885000px;}
.ya1{bottom:639.645000px;}
.yb8{bottom:640.905000px;}
.y9f{bottom:655.485000px;}
.y84{bottom:655.665000px;}
.y58{bottom:655.845000px;}
.yb7{bottom:662.685000px;}
.y83{bottom:677.445000px;}
.y57{bottom:677.625000px;}
.yb6{bottom:684.645000px;}
.y82{bottom:699.225000px;}
.y56{bottom:699.405000px;}
.yb5{bottom:710.205000px;}
.y9e{bottom:721.005000px;}
.y55{bottom:721.185000px;}
.y74{bottom:727.125000px;}
.y81{bottom:742.965000px;}
.y54{bottom:743.145000px;}
.y7f{bottom:764.745000px;}
.y53{bottom:764.925000px;}
.y80{bottom:770.685000px;}
.y9d{bottom:786.525000px;}
.y52{bottom:786.705000px;}
.y51{bottom:808.485000px;}
.y4f{bottom:830.265000px;}
.y50{bottom:836.205000px;}
.yb3{bottom:838.365000px;}
.y7e{bottom:852.045000px;}
.y4e{bottom:852.225000px;}
.y4d{bottom:874.050000px;}
.y4c{bottom:895.830000px;}
.y4b{bottom:917.610000px;}
.y73{bottom:923.550000px;}
.y4a{bottom:939.570000px;}
.y9c{bottom:945.510000px;}
.y48{bottom:961.350000px;}
.y11{bottom:963.330000px;}
.yae{bottom:966.750000px;}
.y49{bottom:967.290000px;}
.y47{bottom:983.130000px;}
.y10{bottom:985.110000px;}
.ycc{bottom:989.070000px;}
.y46{bottom:1004.910000px;}
.yf{bottom:1006.890000px;}
.y45{bottom:1026.690000px;}
.ycb{bottom:1032.630000px;}
.ye{bottom:1034.610000px;}
.y44{bottom:1048.650000px;}
.yd{bottom:1050.630000px;}
.y9b{bottom:1054.590000px;}
.y43{bottom:1070.430000px;}
.yc{bottom:1070.610000px;}
.yb{bottom:1089.510000px;}
.y42{bottom:1092.210000px;}
.y9{bottom:1112.370000px;}
.y1{bottom:1132.350000px;}
.h19{height:21.114844px;}
.hd{height:29.158594px;}
.h15{height:33.683203px;}
.hb{height:34.036523px;}
.h14{height:36.580430px;}
.h13{height:36.900000px;}
.h12{height:37.705078px;}
.h11{height:38.100586px;}
.h1a{height:39.760312px;}
.h9{height:41.691797px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:44.507812px;}
.he{height:46.251562px;}
.h16{height:46.736719px;}
.h1b{height:48.224531px;}
.h6{height:49.255313px;}
.h4{height:50.800781px;}
.h7{height:51.648047px;}
.h18{height:52.918594px;}
.h21{height:53.098594px;}
.hc{height:53.224453px;}
.h17{height:54.596250px;}
.ha{height:54.864844px;}
.h8{height:57.248437px;}
.h2{height:77.436000px;}
.h1c{height:87.300000px;}
.h20{height:109.080000px;}
.h1f{height:109.116000px;}
.h1e{height:130.860000px;}
.h1d{height:152.850000px;}
.hf{height:434.775000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.wc{width:174.420000px;}
.wb{width:174.450000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x41{left:12.960000px;}
.x3f{left:14.400000px;}
.x49{left:16.380000px;}
.x4c{left:18.750000px;}
.x4d{left:20.385000px;}
.x42{left:22.500000px;}
.x4e{left:25.425000px;}
.x46{left:26.505000px;}
.x4b{left:28.650000px;}
.x13{left:29.700000px;}
.x51{left:30.825000px;}
.x43{left:33.300000px;}
.x3d{left:34.605000px;}
.x53{left:35.685000px;}
.x44{left:36.720000px;}
.x35{left:38.340000px;}
.x38{left:40.140000px;}
.x45{left:42.885000px;}
.x47{left:45.225000px;}
.x6{left:46.260000px;}
.x4a{left:48.960000px;}
.x3b{left:53.310000px;}
.x4f{left:54.765000px;}
.x50{left:55.800000px;}
.x39{left:60.660000px;}
.x3e{left:63.225000px;}
.x48{left:65.025000px;}
.x52{left:67.140000px;}
.x2{left:69.294000px;}
.x40{left:72.585000px;}
.x7{left:85.725000px;}
.x36{left:87.114000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x34{left:109.116000px;}
.x1c{left:111.815987px;}
.x55{left:114.875987px;}
.x12{left:116.136000px;}
.x8{left:129.105000px;}
.x20{left:135.035987px;}
.xb{left:139.355987px;}
.x25{left:144.035987px;}
.x54{left:150.509987px;}
.xf{left:154.109987px;}
.x1a{left:161.129987px;}
.x3{left:171.930000px;}
.x30{left:181.829973px;}
.x21{left:189.029987px;}
.x31{left:192.269987px;}
.xd{left:215.849987px;}
.x56{left:232.589973px;}
.x57{left:243.029987px;}
.xe{left:248.249987px;}
.x5b{left:280.514973px;}
.x37{left:284.655000px;}
.x10{left:287.894987px;}
.x5c{left:290.954987px;}
.x1b{left:324.074987px;}
.x23{left:341.174973px;}
.x24{left:346.394987px;}
.x58{left:365.114973px;}
.x2a{left:373.754973px;}
.x59{left:375.554987px;}
.x2b{left:378.974987px;}
.x1d{left:400.754973px;}
.x1e{left:405.974987px;}
.x14{left:413.895000px;}
.x18{left:444.494973px;}
.xc{left:446.474987px;}
.x19{left:449.714987px;}
.x22{left:451.874987px;}
.x3a{left:460.155000px;}
.xa{left:500.684987px;}
.x5a{left:557.204973px;}
.x1f{left:562.424973px;}
.x32{left:564.584973px;}
.x11{left:567.105000px;}
.x33{left:575.024987px;}
.x26{left:576.284973px;}
.x27{left:581.504987px;}
.x5{left:599.865000px;}
.x2e{left:620.744973px;}
.x2f{left:631.184987px;}
.x3c{left:635.685000px;}
.x2c{left:638.024973px;}
.x2d{left:648.464987px;}
.x16{left:674.429973px;}
.x17{left:679.649987px;}
.x28{left:684.509973px;}
.x29{left:689.729987px;}
.x15{left:777.929987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.478933pt;}
.ls7{letter-spacing:-0.441067pt;}
.ls19{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.400533pt;}
.ls17{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.205867pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.141867pt;}
.ls2{letter-spacing:0.142080pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.lsa{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:2.880000pt;}
.ls1e{letter-spacing:3.520000pt;}
.lsf{letter-spacing:4.160000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls16{letter-spacing:12.480000pt;}
.ls1a{letter-spacing:16.000000pt;}
.lsb{letter-spacing:17.600000pt;}
.ls12{letter-spacing:30.991360pt;}
.ls11{letter-spacing:34.191360pt;}
.ls10{letter-spacing:35.450027pt;}
.ls1c{letter-spacing:35.471360pt;}
.ws13{word-spacing:-58.782933pt;}
.ws1{word-spacing:-53.120000pt;}
.ws2{word-spacing:-52.914133pt;}
.ws3{word-spacing:-43.021867pt;}
.ws4{word-spacing:-42.880000pt;}
.wse{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.351467pt;}
.ws14{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws8{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws11{word-spacing:-10.319467pt;}
.wsa{word-spacing:-10.278933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws9{word-spacing:-0.042880pt;}
.wsd{word-spacing:0.000000pt;}
._21{margin-left:-8.016000pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._18{margin-left:-3.563520pt;}
._6{margin-left:-2.645120pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._15{width:1.797333pt;}
._3{width:2.711467pt;}
._a{width:3.816533pt;}
._11{width:5.552000pt;}
._12{width:6.741120pt;}
._e{width:8.448000pt;}
._d{width:9.408000pt;}
._13{width:10.896000pt;}
._1a{width:11.975680pt;}
._1c{width:13.424640pt;}
._14{width:14.336000pt;}
._9{width:15.456000pt;}
._1b{width:16.465067pt;}
._8{width:17.424000pt;}
._7{width:18.314667pt;}
._1e{width:19.901440pt;}
._1d{width:21.020160pt;}
._c{width:22.512000pt;}
._b{width:23.520000pt;}
._20{width:24.631893pt;}
._1f{width:25.612800pt;}
._19{width:26.908160pt;}
._17{width:28.848000pt;}
._16{width:30.048000pt;}
._10{width:37.104000pt;}
._f{width:38.234667pt;}
._25{width:42.982400pt;}
._24{width:44.042240pt;}
._23{width:77.195307pt;}
._22{width:121.307307pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.560000pt;}
.ya7{bottom:5.600000pt;}
.y2{bottom:5.786667pt;}
.y30{bottom:13.600000pt;}
.y2d{bottom:16.320000pt;}
.y31{bottom:17.920000pt;}
.y5{bottom:22.586667pt;}
.ya6{bottom:24.960000pt;}
.yad{bottom:25.120000pt;}
.y8{bottom:25.626667pt;}
.y2c{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y2b{bottom:44.000000pt;}
.yb2{bottom:44.320000pt;}
.ya5{bottom:44.480000pt;}
.yb4{bottom:44.520000pt;}
.ya{bottom:50.240000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2a{bottom:57.760000pt;}
.yb1{bottom:63.680000pt;}
.ya4{bottom:63.840000pt;}
.yac{bottom:63.880000pt;}
.y29{bottom:71.520000pt;}
.yb0{bottom:83.200000pt;}
.yab{bottom:83.240000pt;}
.y28{bottom:85.306667pt;}
.y72{bottom:98.112000pt;}
.y27{bottom:99.226667pt;}
.y71{bottom:102.112000pt;}
.yaf{bottom:102.560000pt;}
.yaa{bottom:102.760000pt;}
.y70{bottom:110.432000pt;}
.y26{bottom:112.986667pt;}
.y6f{bottom:114.432000pt;}
.y41{bottom:115.712000pt;}
.ye3{bottom:117.312000pt;}
.ya9{bottom:122.120000pt;}
.y7d{bottom:122.592000pt;}
.y6e{bottom:124.512000pt;}
.ye0{bottom:126.592000pt;}
.y25{bottom:126.746667pt;}
.y7c{bottom:134.906667pt;}
.y40{bottom:135.066667pt;}
.ye2{bottom:136.826667pt;}
.y7b{bottom:138.906667pt;}
.y24{bottom:140.506667pt;}
.y7a{bottom:147.226667pt;}
.ydf{bottom:151.226667pt;}
.y23{bottom:154.426667pt;}
.y3f{bottom:154.586667pt;}
.ye1{bottom:156.186667pt;}
.y79{bottom:159.386667pt;}
.y78{bottom:163.386667pt;}
.y22{bottom:168.186667pt;}
.y9a{bottom:171.706667pt;}
.y77{bottom:173.626667pt;}
.y3e{bottom:173.946667pt;}
.y6d{bottom:175.546667pt;}
.yde{bottom:175.706667pt;}
.y21{bottom:181.946667pt;}
.y99{bottom:184.026667pt;}
.ydd{bottom:185.946667pt;}
.y98{bottom:188.026667pt;}
.y3d{bottom:193.306667pt;}
.y6c{bottom:194.906667pt;}
.y20{bottom:195.706667pt;}
.y97{bottom:198.106667pt;}
.y1f{bottom:209.626667pt;}
.y3c{bottom:212.666667pt;}
.ydb{bottom:213.946667pt;}
.y6b{bottom:214.426667pt;}
.ydc{bottom:219.226667pt;}
.yca{bottom:220.506667pt;}
.y1e{bottom:223.386667pt;}
.y3b{bottom:232.026667pt;}
.yda{bottom:233.306667pt;}
.y96{bottom:233.626667pt;}
.y6a{bottom:233.786667pt;}
.y1d{bottom:237.146667pt;}
.yc9{bottom:239.866667pt;}
.ya8{bottom:240.666667pt;}
.y1c{bottom:250.906667pt;}
.y3a{bottom:251.546667pt;}
.yd9{bottom:252.666667pt;}
.y95{bottom:252.986667pt;}
.y69{bottom:253.146667pt;}
.yc8{bottom:259.386667pt;}
.y1b{bottom:264.826667pt;}
.y39{bottom:270.906667pt;}
.yd8{bottom:272.026667pt;}
.y94{bottom:272.346667pt;}
.y68{bottom:272.506667pt;}
.y1a{bottom:278.586667pt;}
.yc7{bottom:278.746667pt;}
.y38{bottom:290.266667pt;}
.yd7{bottom:291.546667pt;}
.y67{bottom:291.866667pt;}
.y19{bottom:292.346667pt;}
.yc6{bottom:298.106667pt;}
.y18{bottom:306.106667pt;}
.y37{bottom:309.666667pt;}
.yd6{bottom:310.946667pt;}
.y93{bottom:311.266667pt;}
.y66{bottom:311.426667pt;}
.yc5{bottom:317.506667pt;}
.y17{bottom:320.066667pt;}
.y36{bottom:329.186667pt;}
.yd5{bottom:330.306667pt;}
.y92{bottom:330.626667pt;}
.y65{bottom:330.786667pt;}
.y16{bottom:333.826667pt;}
.yc4{bottom:337.026667pt;}
.y15{bottom:347.586667pt;}
.y35{bottom:348.546667pt;}
.yd4{bottom:349.666667pt;}
.y90{bottom:349.986667pt;}
.y64{bottom:350.146667pt;}
.y91{bottom:355.266667pt;}
.yc3{bottom:356.386667pt;}
.y14{bottom:361.346667pt;}
.y34{bottom:367.906667pt;}
.yd3{bottom:369.026667pt;}
.y8f{bottom:369.346667pt;}
.y63{bottom:369.506667pt;}
.y13{bottom:375.266667pt;}
.yc2{bottom:375.746667pt;}
.y33{bottom:387.266667pt;}
.yd2{bottom:388.546667pt;}
.y8e{bottom:388.866667pt;}
.y62{bottom:389.026667pt;}
.ya3{bottom:393.506667pt;}
.yc1{bottom:395.106667pt;}
.yd1{bottom:407.906667pt;}
.y8c{bottom:408.226667pt;}
.y61{bottom:408.386667pt;}
.y32{bottom:411.746667pt;}
.y8d{bottom:413.506667pt;}
.yc0{bottom:414.466667pt;}
.yd0{bottom:427.426667pt;}
.y8b{bottom:427.586667pt;}
.y60{bottom:427.746667pt;}
.y2f{bottom:431.426667pt;}
.ybf{bottom:433.986667pt;}
.ycf{bottom:446.786667pt;}
.y8a{bottom:446.946667pt;}
.y5f{bottom:447.106667pt;}
.ybe{bottom:453.346667pt;}
.y12{bottom:464.226667pt;}
.yce{bottom:466.146667pt;}
.y5e{bottom:466.466667pt;}
.y76{bottom:471.746667pt;}
.ybd{bottom:472.706667pt;}
.ya2{bottom:485.666667pt;}
.y89{bottom:485.826667pt;}
.y5d{bottom:485.986667pt;}
.ybc{bottom:492.066667pt;}
.ycd{bottom:505.026667pt;}
.y88{bottom:505.186667pt;}
.y5c{bottom:505.346667pt;}
.ybb{bottom:511.426667pt;}
.y86{bottom:524.546667pt;}
.y5b{bottom:524.706667pt;}
.y87{bottom:529.826667pt;}
.y75{bottom:529.986667pt;}
.yba{bottom:530.946667pt;}
.y85{bottom:543.933333pt;}
.y5a{bottom:544.093333pt;}
.yb9{bottom:550.333333pt;}
.ya0{bottom:563.293333pt;}
.y59{bottom:563.453333pt;}
.ya1{bottom:568.573333pt;}
.yb8{bottom:569.693333pt;}
.y9f{bottom:582.653333pt;}
.y84{bottom:582.813333pt;}
.y58{bottom:582.973333pt;}
.yb7{bottom:589.053333pt;}
.y83{bottom:602.173333pt;}
.y57{bottom:602.333333pt;}
.yb6{bottom:608.573333pt;}
.y82{bottom:621.533333pt;}
.y56{bottom:621.693333pt;}
.yb5{bottom:631.293333pt;}
.y9e{bottom:640.893333pt;}
.y55{bottom:641.053333pt;}
.y74{bottom:646.333333pt;}
.y81{bottom:660.413333pt;}
.y54{bottom:660.573333pt;}
.y7f{bottom:679.773333pt;}
.y53{bottom:679.933333pt;}
.y80{bottom:685.053333pt;}
.y9d{bottom:699.133333pt;}
.y52{bottom:699.293333pt;}
.y51{bottom:718.653333pt;}
.y4f{bottom:738.013333pt;}
.y50{bottom:743.293333pt;}
.yb3{bottom:745.213333pt;}
.y7e{bottom:757.373333pt;}
.y4e{bottom:757.533333pt;}
.y4d{bottom:776.933333pt;}
.y4c{bottom:796.293333pt;}
.y4b{bottom:815.653333pt;}
.y73{bottom:820.933333pt;}
.y4a{bottom:835.173333pt;}
.y9c{bottom:840.453333pt;}
.y48{bottom:854.533333pt;}
.y11{bottom:856.293333pt;}
.yae{bottom:859.333333pt;}
.y49{bottom:859.813333pt;}
.y47{bottom:873.893333pt;}
.y10{bottom:875.653333pt;}
.ycc{bottom:879.173333pt;}
.y46{bottom:893.253333pt;}
.yf{bottom:895.013333pt;}
.y45{bottom:912.613333pt;}
.ycb{bottom:917.893333pt;}
.ye{bottom:919.653333pt;}
.y44{bottom:932.133333pt;}
.yd{bottom:933.893333pt;}
.y9b{bottom:937.413333pt;}
.y43{bottom:951.493333pt;}
.yc{bottom:951.653333pt;}
.yb{bottom:968.453333pt;}
.y42{bottom:970.853333pt;}
.y9{bottom:988.773333pt;}
.y1{bottom:1006.533333pt;}
.h19{height:18.768750pt;}
.hd{height:25.918750pt;}
.h15{height:29.940625pt;}
.hb{height:30.254687pt;}
.h14{height:32.515937pt;}
.h13{height:32.800000pt;}
.h12{height:33.515625pt;}
.h11{height:33.867188pt;}
.h1a{height:35.342500pt;}
.h9{height:37.059375pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:39.562500pt;}
.he{height:41.112500pt;}
.h16{height:41.543750pt;}
.h1b{height:42.866250pt;}
.h6{height:43.782500pt;}
.h4{height:45.156250pt;}
.h7{height:45.909375pt;}
.h18{height:47.038750pt;}
.h21{height:47.198750pt;}
.hc{height:47.310625pt;}
.h17{height:48.530000pt;}
.ha{height:48.768750pt;}
.h8{height:50.887500pt;}
.h2{height:68.832000pt;}
.h1c{height:77.600000pt;}
.h20{height:96.960000pt;}
.h1f{height:96.992000pt;}
.h1e{height:116.320000pt;}
.h1d{height:135.866667pt;}
.hf{height:386.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.wc{width:155.040000pt;}
.wb{width:155.066667pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x41{left:11.520000pt;}
.x3f{left:12.800000pt;}
.x49{left:14.560000pt;}
.x4c{left:16.666667pt;}
.x4d{left:18.120000pt;}
.x42{left:20.000000pt;}
.x4e{left:22.600000pt;}
.x46{left:23.560000pt;}
.x4b{left:25.466667pt;}
.x13{left:26.400000pt;}
.x51{left:27.400000pt;}
.x43{left:29.600000pt;}
.x3d{left:30.760000pt;}
.x53{left:31.720000pt;}
.x44{left:32.640000pt;}
.x35{left:34.080000pt;}
.x38{left:35.680000pt;}
.x45{left:38.120000pt;}
.x47{left:40.200000pt;}
.x6{left:41.120000pt;}
.x4a{left:43.520000pt;}
.x3b{left:47.386667pt;}
.x4f{left:48.680000pt;}
.x50{left:49.600000pt;}
.x39{left:53.920000pt;}
.x3e{left:56.200000pt;}
.x48{left:57.800000pt;}
.x52{left:59.680000pt;}
.x2{left:61.594667pt;}
.x40{left:64.520000pt;}
.x7{left:76.200000pt;}
.x36{left:77.434667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x34{left:96.992000pt;}
.x1c{left:99.391988pt;}
.x55{left:102.111988pt;}
.x12{left:103.232000pt;}
.x8{left:114.760000pt;}
.x20{left:120.031988pt;}
.xb{left:123.871988pt;}
.x25{left:128.031988pt;}
.x54{left:133.786655pt;}
.xf{left:136.986655pt;}
.x1a{left:143.226655pt;}
.x3{left:152.826667pt;}
.x30{left:161.626643pt;}
.x21{left:168.026655pt;}
.x31{left:170.906655pt;}
.xd{left:191.866655pt;}
.x56{left:206.746643pt;}
.x57{left:216.026655pt;}
.xe{left:220.666655pt;}
.x5b{left:249.346643pt;}
.x37{left:253.026667pt;}
.x10{left:255.906655pt;}
.x5c{left:258.626655pt;}
.x1b{left:288.066655pt;}
.x23{left:303.266643pt;}
.x24{left:307.906655pt;}
.x58{left:324.546643pt;}
.x2a{left:332.226643pt;}
.x59{left:333.826655pt;}
.x2b{left:336.866655pt;}
.x1d{left:356.226643pt;}
.x1e{left:360.866655pt;}
.x14{left:367.906667pt;}
.x18{left:395.106643pt;}
.xc{left:396.866655pt;}
.x19{left:399.746655pt;}
.x22{left:401.666655pt;}
.x3a{left:409.026667pt;}
.xa{left:445.053322pt;}
.x5a{left:495.293310pt;}
.x1f{left:499.933310pt;}
.x32{left:501.853310pt;}
.x11{left:504.093333pt;}
.x33{left:511.133322pt;}
.x26{left:512.253310pt;}
.x27{left:516.893322pt;}
.x5{left:533.213333pt;}
.x2e{left:551.773310pt;}
.x2f{left:561.053322pt;}
.x3c{left:565.053333pt;}
.x2c{left:567.133310pt;}
.x2d{left:576.413322pt;}
.x16{left:599.493310pt;}
.x17{left:604.133322pt;}
.x28{left:608.453310pt;}
.x29{left:613.093322pt;}
.x15{left:691.493322pt;}
}




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