
    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_a0a34a6b2a38668be78356ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_7b1a851a74233d9dae2594c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_a148f459ab86154f505c5035.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_22a0339dc848fc46b569b850.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996094;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_090966ea88f7f9032af5daad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_2cf1b8b71117a90e3276f9ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996094;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_10338f387ac4daf14be259d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.000000px;}
.v1{vertical-align:27.600000px;}
.lsd{letter-spacing:-0.786000px;}
.ls24{letter-spacing:-0.516000px;}
.ls20{letter-spacing:-0.510000px;}
.ls1f{letter-spacing:-0.438000px;}
.ls17{letter-spacing:-0.420000px;}
.lsb{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.030000px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.lse{letter-spacing:0.096000px;}
.ls15{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.354000px;}
.ls10{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.414000px;}
.ls18{letter-spacing:0.438000px;}
.lsc{letter-spacing:0.460800px;}
.ls4{letter-spacing:0.474000px;}
.ls7{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.534000px;}
.ls29{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.594000px;}
.ls27{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.640800px;}
.ls26{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.690000px;}
.ls28{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.762000px;}
.ls14{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.002000px;}
.ls11{letter-spacing:1.056000px;}
.ls19{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.680000px;}
.ls13{letter-spacing:8.784000px;}
.ls1a{letter-spacing:14.052000px;}
.ls1c{letter-spacing:16.452000px;}
.ls1b{letter-spacing:21.252000px;}
.ls9{letter-spacing:21.984000px;}
.ls1d{letter-spacing:35.652000px;}
.ls0{letter-spacing:91.840800px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-66.000000px;}
.wse{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.336000px;}
.ws14{word-spacing:-18.214537px;}
.ws9{word-spacing:-17.280000px;}
.ws15{word-spacing:-16.842000px;}
.ws19{word-spacing:-16.696659px;}
.ws16{word-spacing:-16.602000px;}
.ws11{word-spacing:-16.320000px;}
.wsf{word-spacing:-16.278000px;}
.ws3{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.642000px;}
.ws12{word-spacing:-15.600000px;}
.ws10{word-spacing:-15.402000px;}
.ws13{word-spacing:-15.330000px;}
.ws18{word-spacing:-15.324000px;}
.wsc{word-spacing:-14.916000px;}
.wsb{word-spacing:-14.886000px;}
.ws7{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.700000px;}
.ws5{word-spacing:-14.400003px;}
.ws0{word-spacing:-13.560000px;}
.wsd{word-spacing:-13.140000px;}
.ws1{word-spacing:-9.964800px;}
.ws2{word-spacing:-8.718000px;}
.wsa{word-spacing:0.000000px;}
._1c{margin-left:-4.296000px;}
._7{margin-left:-2.880000px;}
._1{margin-left:-1.188000px;}
._0{width:1.122000px;}
._4{width:2.292000px;}
._a{width:3.318000px;}
._2{width:4.488000px;}
._5{width:5.898000px;}
._14{width:7.380000px;}
._c{width:8.898000px;}
._b{width:9.960000px;}
._6{width:11.880000px;}
._f{width:13.098000px;}
._18{width:14.226000px;}
._2b{width:15.449730px;}
._d{width:16.758000px;}
._e{width:18.342000px;}
._17{width:20.316000px;}
._9{width:22.056000px;}
._1d{width:23.130000px;}
._8{width:24.180000px;}
._19{width:25.674000px;}
._11{width:27.660000px;}
._10{width:29.460000px;}
._16{width:30.480000px;}
._15{width:31.566000px;}
._26{width:32.760000px;}
._13{width:34.080000px;}
._12{width:35.580000px;}
._1e{width:38.400000px;}
._1b{width:40.656000px;}
._1a{width:41.976000px;}
._2a{width:50.040000px;}
._21{width:57.420000px;}
._24{width:58.560000px;}
._27{width:61.260000px;}
._2c{width:66.198000px;}
._2d{width:67.650000px;}
._20{width:69.774000px;}
._1f{width:70.806000px;}
._28{width:71.886000px;}
._22{width:86.478000px;}
._29{width:101.358000px;}
._23{width:166.320000px;}
._25{width:281.640000px;}
._3{width:612.984000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600000px;}
.fs7{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs9{font-size:69.569413px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.300000px;}
.y2e{bottom:3.315000px;}
.y7{bottom:4.500000px;}
.y5{bottom:4.800000px;}
.yd{bottom:6.000000px;}
.ya1{bottom:7.800000px;}
.yb{bottom:18.345000px;}
.yd6{bottom:22.800000px;}
.y2d{bottom:23.100000px;}
.y4{bottom:24.915000px;}
.y9e{bottom:27.675000px;}
.y2c{bottom:42.600000px;}
.yd5{bottom:42.615000px;}
.ydd{bottom:42.645000px;}
.y3{bottom:45.000000px;}
.y12{bottom:57.037500px;}
.ya{bottom:61.530000px;}
.yd4{bottom:62.100000px;}
.yd9{bottom:62.400000px;}
.y2b{bottom:62.415000px;}
.ydc{bottom:62.445000px;}
.y11{bottom:71.437500px;}
.y9d{bottom:76.005000px;}
.yd3{bottom:81.900000px;}
.y2a{bottom:81.915000px;}
.ydb{bottom:81.945000px;}
.y10{bottom:86.437500px;}
.yd8{bottom:101.700000px;}
.y29{bottom:101.715000px;}
.yf{bottom:104.137500px;}
.y9a{bottom:108.105000px;}
.yc9{bottom:111.637500px;}
.y6c{bottom:113.437500px;}
.y7d{bottom:115.537500px;}
.y96{bottom:118.537500px;}
.y28{bottom:121.245000px;}
.yed{bottom:123.637500px;}
.y99{bottom:124.605000px;}
.yc8{bottom:133.237500px;}
.y6b{bottom:135.037500px;}
.y7c{bottom:137.137500px;}
.y95{bottom:140.137500px;}
.y98{bottom:140.805000px;}
.y27{bottom:141.045000px;}
.yec{bottom:145.237500px;}
.y3a{bottom:150.930000px;}
.yc7{bottom:154.830000px;}
.y6a{bottom:156.930000px;}
.y7b{bottom:158.730000px;}
.y2f{bottom:159.945000px;}
.y26{bottom:160.545000px;}
.y94{bottom:161.730000px;}
.yeb{bottom:166.830000px;}
.y39{bottom:172.575000px;}
.y9c{bottom:172.650000px;}
.y9f{bottom:173.295000px;}
.yc6{bottom:176.475000px;}
.y69{bottom:178.575000px;}
.y25{bottom:180.345000px;}
.y7a{bottom:180.375000px;}
.y93{bottom:183.375000px;}
.yea{bottom:188.475000px;}
.y38{bottom:194.175000px;}
.yc5{bottom:198.075000px;}
.y24{bottom:199.845000px;}
.y68{bottom:200.175000px;}
.y79{bottom:201.975000px;}
.y92{bottom:204.975000px;}
.ye9{bottom:210.075000px;}
.y37{bottom:215.775000px;}
.y23{bottom:219.645000px;}
.yc4{bottom:219.675000px;}
.y9b{bottom:221.055000px;}
.y67{bottom:221.775000px;}
.y78{bottom:223.575000px;}
.y91{bottom:226.575000px;}
.ye8{bottom:231.675000px;}
.y36{bottom:237.375000px;}
.y22{bottom:239.145000px;}
.yc3{bottom:241.275000px;}
.y66{bottom:243.375000px;}
.y77{bottom:245.175000px;}
.y90{bottom:248.175000px;}
.ye7{bottom:253.275000px;}
.y21{bottom:258.945000px;}
.y35{bottom:258.975000px;}
.yc2{bottom:262.875000px;}
.y65{bottom:264.975000px;}
.y76{bottom:266.775000px;}
.y8f{bottom:269.775000px;}
.ye6{bottom:274.875000px;}
.y20{bottom:278.445000px;}
.y34{bottom:280.575000px;}
.yc1{bottom:284.475000px;}
.y64{bottom:286.575000px;}
.y75{bottom:288.375000px;}
.y8e{bottom:291.375000px;}
.ye5{bottom:296.475000px;}
.y1f{bottom:298.290000px;}
.y33{bottom:302.175000px;}
.yc0{bottom:306.075000px;}
.y63{bottom:308.175000px;}
.y74{bottom:309.975000px;}
.y8d{bottom:312.975000px;}
.y1e{bottom:317.790000px;}
.ye4{bottom:318.075000px;}
.y32{bottom:323.775000px;}
.ybf{bottom:327.675000px;}
.y62{bottom:329.775000px;}
.y73{bottom:331.875000px;}
.y8c{bottom:334.575000px;}
.y1d{bottom:337.575000px;}
.ye3{bottom:339.705000px;}
.y31{bottom:347.505000px;}
.ybe{bottom:349.320000px;}
.y61{bottom:351.405000px;}
.y72{bottom:353.505000px;}
.yf4{bottom:355.320000px;}
.y8b{bottom:356.205000px;}
.y1c{bottom:357.075000px;}
.ye2{bottom:361.305000px;}
.y30{bottom:370.905000px;}
.ybd{bottom:371.205000px;}
.y60{bottom:373.005000px;}
.y71{bottom:375.120000px;}
.yf3{bottom:376.905000px;}
.y8a{bottom:377.805000px;}
.ye1{bottom:382.920000px;}
.y1b{bottom:388.905000px;}
.ybc{bottom:392.820000px;}
.y5f{bottom:394.605000px;}
.y70{bottom:396.705000px;}
.yf2{bottom:398.505000px;}
.y89{bottom:399.405000px;}
.ye0{bottom:404.505000px;}
.ybb{bottom:414.405000px;}
.y5e{bottom:416.205000px;}
.y6f{bottom:418.320000px;}
.yf1{bottom:420.120000px;}
.y88{bottom:421.320000px;}
.ydf{bottom:426.405000px;}
.yba{bottom:436.005000px;}
.y5d{bottom:437.820000px;}
.y107{bottom:438.120000px;}
.y6e{bottom:439.905000px;}
.yf0{bottom:441.705000px;}
.y87{bottom:444.705000px;}
.yde{bottom:448.005000px;}
.yb9{bottom:457.605000px;}
.y106{bottom:459.405000px;}
.y5c{bottom:459.705000px;}
.y6d{bottom:461.505000px;}
.yef{bottom:463.320000px;}
.y86{bottom:466.320000px;}
.yda{bottom:466.605000px;}
.yb8{bottom:479.205000px;}
.y105{bottom:481.005000px;}
.y5b{bottom:483.120000px;}
.yee{bottom:484.605000px;}
.y85{bottom:487.905000px;}
.yb7{bottom:500.820000px;}
.y104{bottom:502.620000px;}
.y5a{bottom:504.720000px;}
.y84{bottom:509.550000px;}
.yb6{bottom:522.450000px;}
.y103{bottom:524.250000px;}
.y59{bottom:526.350000px;}
.y83{bottom:531.150000px;}
.yb5{bottom:544.050000px;}
.y102{bottom:546.150000px;}
.y58{bottom:547.950000px;}
.y82{bottom:552.750000px;}
.yb4{bottom:565.650000px;}
.y101{bottom:567.750000px;}
.y57{bottom:569.550000px;}
.y81{bottom:574.350000px;}
.yb3{bottom:587.250000px;}
.y100{bottom:589.350000px;}
.y56{bottom:591.150000px;}
.y80{bottom:595.950000px;}
.yb2{bottom:608.850000px;}
.yff{bottom:610.950000px;}
.y55{bottom:612.750000px;}
.y7f{bottom:617.250000px;}
.yb1{bottom:630.450000px;}
.yfe{bottom:632.550000px;}
.y7e{bottom:633.750000px;}
.y97{bottom:633.900000px;}
.y54{bottom:634.350000px;}
.yb0{bottom:652.050000px;}
.yfd{bottom:654.150000px;}
.y53{bottom:655.950000px;}
.yaf{bottom:673.650000px;}
.yfc{bottom:675.750000px;}
.y52{bottom:677.580000px;}
.yd2{bottom:684.480000px;}
.yae{bottom:695.280000px;}
.yfb{bottom:697.380000px;}
.y51{bottom:699.195000px;}
.yad{bottom:716.880000px;}
.yfa{bottom:718.980000px;}
.y50{bottom:720.780000px;}
.yac{bottom:738.480000px;}
.yf9{bottom:740.595000px;}
.y4f{bottom:742.695000px;}
.ya0{bottom:750.180000px;}
.yab{bottom:760.080000px;}
.yf8{bottom:762.180000px;}
.y4e{bottom:764.280000px;}
.y1a{bottom:766.980000px;}
.yaa{bottom:781.980000px;}
.yd1{bottom:783.480000px;}
.yf7{bottom:783.795000px;}
.y4d{bottom:785.880000px;}
.y19{bottom:786.795000px;}
.ya9{bottom:803.580000px;}
.yf6{bottom:805.380000px;}
.yd0{bottom:807.195000px;}
.y4c{bottom:807.480000px;}
.y18{bottom:808.380000px;}
.ya8{bottom:825.195000px;}
.ycf{bottom:826.980000px;}
.y4b{bottom:829.080000px;}
.y17{bottom:829.995000px;}
.ya7{bottom:846.825000px;}
.yce{bottom:848.625000px;}
.y4a{bottom:850.725000px;}
.y16{bottom:851.625000px;}
.ya6{bottom:868.425000px;}
.ycd{bottom:870.225000px;}
.y49{bottom:872.325000px;}
.y15{bottom:873.225000px;}
.ya5{bottom:890.025000px;}
.ycc{bottom:891.825000px;}
.y48{bottom:893.925000px;}
.y14{bottom:899.625000px;}
.ya4{bottom:911.625000px;}
.ycb{bottom:913.425000px;}
.yf5{bottom:913.725000px;}
.y47{bottom:915.525000px;}
.y13{bottom:923.325000px;}
.ya3{bottom:933.525000px;}
.yca{bottom:935.325000px;}
.y46{bottom:937.125000px;}
.ye{bottom:947.625000px;}
.ya2{bottom:956.925000px;}
.y45{bottom:958.725000px;}
.y8{bottom:967.725000px;}
.y44{bottom:980.325000px;}
.yc{bottom:989.325000px;}
.y43{bottom:1001.925000px;}
.y9{bottom:1009.725000px;}
.y42{bottom:1023.570000px;}
.y41{bottom:1045.155000px;}
.y40{bottom:1066.755000px;}
.y3f{bottom:1088.370000px;}
.y6{bottom:1107.255000px;}
.y3e{bottom:1109.955000px;}
.y2{bottom:1127.955000px;}
.y3d{bottom:1132.755000px;}
.y3c{bottom:1152.870000px;}
.y3b{bottom:1172.955000px;}
.y1{bottom:1193.100000px;}
.h20{height:19.500000px;}
.h5{height:20.100000px;}
.ha{height:20.400000px;}
.hb{height:21.600000px;}
.h1d{height:22.200000px;}
.h15{height:46.376953px;}
.hf{height:47.742188px;}
.h6{height:50.337891px;}
.h17{height:51.014648px;}
.h1f{height:52.417969px;}
.he{height:53.709961px;}
.h24{height:53.773623px;}
.hd{height:55.291992px;}
.h10{height:55.652344px;}
.h18{height:57.717773px;}
.h12{height:58.148789px;}
.h11{height:58.208789px;}
.h13{height:58.268789px;}
.h1e{height:58.662135px;}
.h1c{height:59.677734px;}
.h3{height:60.637500px;}
.h19{height:60.729492px;}
.h1a{height:61.435547px;}
.h2{height:65.645508px;}
.h4{height:67.579102px;}
.h16{height:71.613281px;}
.hc{height:73.722656px;}
.h8{height:97.537500px;}
.h21{height:98.100000px;}
.h23{height:98.437500px;}
.h9{height:102.029297px;}
.h22{height:117.937500px;}
.h7{height:139.537500px;}
.h1b{height:256.500000px;}
.h14{height:373.575000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:17.700000px;}
.w9{width:66.637500px;}
.w3{width:162.345000px;}
.wa{width:188.130000px;}
.w8{width:202.275000px;}
.wb{width:256.005000px;}
.wc{width:262.575000px;}
.w7{width:520.950000px;}
.w4{width:561.195000px;}
.w5{width:571.080000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.xc{left:9.585000px;}
.x1e{left:10.800000px;}
.x7{left:15.900000px;}
.x24{left:63.592500px;}
.x9{left:78.345000px;}
.x2{left:89.437500px;}
.x27{left:99.300000px;}
.x11{left:111.037487px;}
.x1f{left:114.037487px;}
.x22{left:117.337487px;}
.x20{left:121.537487px;}
.x13{left:132.037487px;}
.x8{left:133.230000px;}
.x29{left:143.437487px;}
.xf{left:148.237487px;}
.x3{left:154.537500px;}
.x35{left:171.644987px;}
.x4a{left:174.929987px;}
.xd{left:180.975000px;}
.x2c{left:202.574987px;}
.x5b{left:207.974987px;}
.x2f{left:216.674987px;}
.x52{left:218.174987px;}
.x4d{left:220.874987px;}
.x3b{left:230.174987px;}
.x2d{left:233.774987px;}
.x43{left:236.774987px;}
.x37{left:240.374987px;}
.x4{left:251.775000px;}
.x41{left:256.274987px;}
.x23{left:268.574987px;}
.x39{left:270.374987px;}
.x25{left:278.775000px;}
.x56{left:284.174987px;}
.x36{left:288.374987px;}
.x2e{left:296.219987px;}
.x47{left:302.204987px;}
.x3f{left:308.204987px;}
.x3e{left:311.819987px;}
.x46{left:316.619987px;}
.x32{left:320.219987px;}
.x1b{left:333.074987px;}
.x1c{left:336.344987px;}
.x4e{left:345.119987px;}
.x50{left:348.704987px;}
.x4b{left:355.919987px;}
.x2b{left:370.319987px;}
.x3d{left:372.719987px;}
.x6{left:387.120000px;}
.x15{left:402.494987px;}
.x44{left:412.319987px;}
.x16{left:417.479987px;}
.x1a{left:418.799987px;}
.x51{left:419.849987px;}
.x55{left:427.049987px;}
.x17{left:429.074987px;}
.x42{left:432.149987px;}
.x30{left:433.649987px;}
.x21{left:440.249987px;}
.x57{left:460.049987px;}
.x48{left:462.449987px;}
.x45{left:469.349987px;}
.x5d{left:485.549987px;}
.x19{left:500.969987px;}
.x18{left:505.499987px;}
.x2a{left:509.849987px;}
.x3a{left:516.149987px;}
.x26{left:535.395000px;}
.x4c{left:540.794987px;}
.x58{left:548.279987px;}
.xa{left:562.980000px;}
.x5a{left:564.194987px;}
.x3c{left:574.694987px;}
.x38{left:577.379987px;}
.xe{left:610.395000px;}
.x1d{left:614.595000px;}
.x4f{left:623.579987px;}
.x10{left:624.779987px;}
.x49{left:628.694987px;}
.x12{left:631.379987px;}
.x31{left:636.779987px;}
.x33{left:700.424987px;}
.x40{left:715.124987px;}
.x5e{left:719.324987px;}
.x53{left:723.524987px;}
.x59{left:730.124987px;}
.x5c{left:747.524987px;}
.x28{left:762.824987px;}
.x54{left:790.454987px;}
.x14{left:794.369987px;}
.x34{left:800.069987px;}
.x1{left:803.954987px;}
.xb{left:822.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.333333pt;}
.v1{vertical-align:24.533333pt;}
.lsd{letter-spacing:-0.698667pt;}
.ls24{letter-spacing:-0.458667pt;}
.ls20{letter-spacing:-0.453333pt;}
.ls1f{letter-spacing:-0.389333pt;}
.ls17{letter-spacing:-0.373333pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.026667pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000003pt;}
.lse{letter-spacing:0.085333pt;}
.ls15{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.314667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.368000pt;}
.ls18{letter-spacing:0.389333pt;}
.lsc{letter-spacing:0.409600pt;}
.ls4{letter-spacing:0.421333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.474667pt;}
.ls29{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.528000pt;}
.ls27{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.569600pt;}
.ls26{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.613333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.677333pt;}
.ls14{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.853333pt;}
.ls21{letter-spacing:0.890667pt;}
.ls11{letter-spacing:0.938667pt;}
.ls19{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.493333pt;}
.ls13{letter-spacing:7.808000pt;}
.ls1a{letter-spacing:12.490667pt;}
.ls1c{letter-spacing:14.624000pt;}
.ls1b{letter-spacing:18.890667pt;}
.ls9{letter-spacing:19.541333pt;}
.ls1d{letter-spacing:31.690667pt;}
.ls0{letter-spacing:81.636267pt;}
.ws4{word-spacing:-58.666667pt;}
.wse{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.298667pt;}
.ws14{word-spacing:-16.190700pt;}
.ws9{word-spacing:-15.360000pt;}
.ws15{word-spacing:-14.970667pt;}
.ws19{word-spacing:-14.841475pt;}
.ws16{word-spacing:-14.757333pt;}
.ws11{word-spacing:-14.506667pt;}
.wsf{word-spacing:-14.469333pt;}
.ws3{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.904000pt;}
.ws12{word-spacing:-13.866667pt;}
.ws10{word-spacing:-13.690667pt;}
.ws13{word-spacing:-13.626667pt;}
.ws18{word-spacing:-13.621333pt;}
.wsc{word-spacing:-13.258667pt;}
.wsb{word-spacing:-13.232000pt;}
.ws7{word-spacing:-13.120000pt;}
.ws6{word-spacing:-13.066667pt;}
.ws5{word-spacing:-12.800003pt;}
.ws0{word-spacing:-12.053333pt;}
.wsd{word-spacing:-11.680000pt;}
.ws1{word-spacing:-8.857600pt;}
.ws2{word-spacing:-7.749333pt;}
.wsa{word-spacing:0.000000pt;}
._1c{margin-left:-3.818667pt;}
._7{margin-left:-2.560000pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.997333pt;}
._4{width:2.037333pt;}
._a{width:2.949333pt;}
._2{width:3.989333pt;}
._5{width:5.242667pt;}
._14{width:6.560000pt;}
._c{width:7.909333pt;}
._b{width:8.853333pt;}
._6{width:10.560000pt;}
._f{width:11.642667pt;}
._18{width:12.645333pt;}
._2b{width:13.733093pt;}
._d{width:14.896000pt;}
._e{width:16.304000pt;}
._17{width:18.058667pt;}
._9{width:19.605333pt;}
._1d{width:20.560000pt;}
._8{width:21.493333pt;}
._19{width:22.821333pt;}
._11{width:24.586667pt;}
._10{width:26.186667pt;}
._16{width:27.093333pt;}
._15{width:28.058667pt;}
._26{width:29.120000pt;}
._13{width:30.293333pt;}
._12{width:31.626667pt;}
._1e{width:34.133333pt;}
._1b{width:36.138667pt;}
._1a{width:37.312000pt;}
._2a{width:44.480000pt;}
._21{width:51.040000pt;}
._24{width:52.053333pt;}
._27{width:54.453333pt;}
._2c{width:58.842667pt;}
._2d{width:60.133333pt;}
._20{width:62.021333pt;}
._1f{width:62.938667pt;}
._28{width:63.898667pt;}
._22{width:76.869333pt;}
._29{width:90.096000pt;}
._23{width:147.840000pt;}
._25{width:250.346667pt;}
._3{width:544.874667pt;}
.fs6{font-size:35.200000pt;}
.fs7{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs9{font-size:61.839478pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.933333pt;}
.y2e{bottom:2.946667pt;}
.y7{bottom:4.000000pt;}
.y5{bottom:4.266667pt;}
.yd{bottom:5.333333pt;}
.ya1{bottom:6.933333pt;}
.yb{bottom:16.306667pt;}
.yd6{bottom:20.266667pt;}
.y2d{bottom:20.533333pt;}
.y4{bottom:22.146667pt;}
.y9e{bottom:24.600000pt;}
.y2c{bottom:37.866667pt;}
.yd5{bottom:37.880000pt;}
.ydd{bottom:37.906667pt;}
.y3{bottom:40.000000pt;}
.y12{bottom:50.700000pt;}
.ya{bottom:54.693333pt;}
.yd4{bottom:55.200000pt;}
.yd9{bottom:55.466667pt;}
.y2b{bottom:55.480000pt;}
.ydc{bottom:55.506667pt;}
.y11{bottom:63.500000pt;}
.y9d{bottom:67.560000pt;}
.yd3{bottom:72.800000pt;}
.y2a{bottom:72.813333pt;}
.ydb{bottom:72.840000pt;}
.y10{bottom:76.833333pt;}
.yd8{bottom:90.400000pt;}
.y29{bottom:90.413333pt;}
.yf{bottom:92.566667pt;}
.y9a{bottom:96.093333pt;}
.yc9{bottom:99.233333pt;}
.y6c{bottom:100.833333pt;}
.y7d{bottom:102.700000pt;}
.y96{bottom:105.366667pt;}
.y28{bottom:107.773333pt;}
.yed{bottom:109.900000pt;}
.y99{bottom:110.760000pt;}
.yc8{bottom:118.433333pt;}
.y6b{bottom:120.033333pt;}
.y7c{bottom:121.900000pt;}
.y95{bottom:124.566667pt;}
.y98{bottom:125.160000pt;}
.y27{bottom:125.373333pt;}
.yec{bottom:129.100000pt;}
.y3a{bottom:134.160000pt;}
.yc7{bottom:137.626667pt;}
.y6a{bottom:139.493333pt;}
.y7b{bottom:141.093333pt;}
.y2f{bottom:142.173333pt;}
.y26{bottom:142.706667pt;}
.y94{bottom:143.760000pt;}
.yeb{bottom:148.293333pt;}
.y39{bottom:153.400000pt;}
.y9c{bottom:153.466667pt;}
.y9f{bottom:154.040000pt;}
.yc6{bottom:156.866667pt;}
.y69{bottom:158.733333pt;}
.y25{bottom:160.306667pt;}
.y7a{bottom:160.333333pt;}
.y93{bottom:163.000000pt;}
.yea{bottom:167.533333pt;}
.y38{bottom:172.600000pt;}
.yc5{bottom:176.066667pt;}
.y24{bottom:177.640000pt;}
.y68{bottom:177.933333pt;}
.y79{bottom:179.533333pt;}
.y92{bottom:182.200000pt;}
.ye9{bottom:186.733333pt;}
.y37{bottom:191.800000pt;}
.y23{bottom:195.240000pt;}
.yc4{bottom:195.266667pt;}
.y9b{bottom:196.493333pt;}
.y67{bottom:197.133333pt;}
.y78{bottom:198.733333pt;}
.y91{bottom:201.400000pt;}
.ye8{bottom:205.933333pt;}
.y36{bottom:211.000000pt;}
.y22{bottom:212.573333pt;}
.yc3{bottom:214.466667pt;}
.y66{bottom:216.333333pt;}
.y77{bottom:217.933333pt;}
.y90{bottom:220.600000pt;}
.ye7{bottom:225.133333pt;}
.y21{bottom:230.173333pt;}
.y35{bottom:230.200000pt;}
.yc2{bottom:233.666667pt;}
.y65{bottom:235.533333pt;}
.y76{bottom:237.133333pt;}
.y8f{bottom:239.800000pt;}
.ye6{bottom:244.333333pt;}
.y20{bottom:247.506667pt;}
.y34{bottom:249.400000pt;}
.yc1{bottom:252.866667pt;}
.y64{bottom:254.733333pt;}
.y75{bottom:256.333333pt;}
.y8e{bottom:259.000000pt;}
.ye5{bottom:263.533333pt;}
.y1f{bottom:265.146667pt;}
.y33{bottom:268.600000pt;}
.yc0{bottom:272.066667pt;}
.y63{bottom:273.933333pt;}
.y74{bottom:275.533333pt;}
.y8d{bottom:278.200000pt;}
.y1e{bottom:282.480000pt;}
.ye4{bottom:282.733333pt;}
.y32{bottom:287.800000pt;}
.ybf{bottom:291.266667pt;}
.y62{bottom:293.133333pt;}
.y73{bottom:295.000000pt;}
.y8c{bottom:297.400000pt;}
.y1d{bottom:300.066667pt;}
.ye3{bottom:301.960000pt;}
.y31{bottom:308.893333pt;}
.ybe{bottom:310.506667pt;}
.y61{bottom:312.360000pt;}
.y72{bottom:314.226667pt;}
.yf4{bottom:315.840000pt;}
.y8b{bottom:316.626667pt;}
.y1c{bottom:317.400000pt;}
.ye2{bottom:321.160000pt;}
.y30{bottom:329.693333pt;}
.ybd{bottom:329.960000pt;}
.y60{bottom:331.560000pt;}
.y71{bottom:333.440000pt;}
.yf3{bottom:335.026667pt;}
.y8a{bottom:335.826667pt;}
.ye1{bottom:340.373333pt;}
.y1b{bottom:345.693333pt;}
.ybc{bottom:349.173333pt;}
.y5f{bottom:350.760000pt;}
.y70{bottom:352.626667pt;}
.yf2{bottom:354.226667pt;}
.y89{bottom:355.026667pt;}
.ye0{bottom:359.560000pt;}
.ybb{bottom:368.360000pt;}
.y5e{bottom:369.960000pt;}
.y6f{bottom:371.840000pt;}
.yf1{bottom:373.440000pt;}
.y88{bottom:374.506667pt;}
.ydf{bottom:379.026667pt;}
.yba{bottom:387.560000pt;}
.y5d{bottom:389.173333pt;}
.y107{bottom:389.440000pt;}
.y6e{bottom:391.026667pt;}
.yf0{bottom:392.626667pt;}
.y87{bottom:395.293333pt;}
.yde{bottom:398.226667pt;}
.yb9{bottom:406.760000pt;}
.y106{bottom:408.360000pt;}
.y5c{bottom:408.626667pt;}
.y6d{bottom:410.226667pt;}
.yef{bottom:411.840000pt;}
.y86{bottom:414.506667pt;}
.yda{bottom:414.760000pt;}
.yb8{bottom:425.960000pt;}
.y105{bottom:427.560000pt;}
.y5b{bottom:429.440000pt;}
.yee{bottom:430.760000pt;}
.y85{bottom:433.693333pt;}
.yb7{bottom:445.173333pt;}
.y104{bottom:446.773333pt;}
.y5a{bottom:448.640000pt;}
.y84{bottom:452.933333pt;}
.yb6{bottom:464.400000pt;}
.y103{bottom:466.000000pt;}
.y59{bottom:467.866667pt;}
.y83{bottom:472.133333pt;}
.yb5{bottom:483.600000pt;}
.y102{bottom:485.466667pt;}
.y58{bottom:487.066667pt;}
.y82{bottom:491.333333pt;}
.yb4{bottom:502.800000pt;}
.y101{bottom:504.666667pt;}
.y57{bottom:506.266667pt;}
.y81{bottom:510.533333pt;}
.yb3{bottom:522.000000pt;}
.y100{bottom:523.866667pt;}
.y56{bottom:525.466667pt;}
.y80{bottom:529.733333pt;}
.yb2{bottom:541.200000pt;}
.yff{bottom:543.066667pt;}
.y55{bottom:544.666667pt;}
.y7f{bottom:548.666667pt;}
.yb1{bottom:560.400000pt;}
.yfe{bottom:562.266667pt;}
.y7e{bottom:563.333333pt;}
.y97{bottom:563.466667pt;}
.y54{bottom:563.866667pt;}
.yb0{bottom:579.600000pt;}
.yfd{bottom:581.466667pt;}
.y53{bottom:583.066667pt;}
.yaf{bottom:598.800000pt;}
.yfc{bottom:600.666667pt;}
.y52{bottom:602.293333pt;}
.yd2{bottom:608.426667pt;}
.yae{bottom:618.026667pt;}
.yfb{bottom:619.893333pt;}
.y51{bottom:621.506667pt;}
.yad{bottom:637.226667pt;}
.yfa{bottom:639.093333pt;}
.y50{bottom:640.693333pt;}
.yac{bottom:656.426667pt;}
.yf9{bottom:658.306667pt;}
.y4f{bottom:660.173333pt;}
.ya0{bottom:666.826667pt;}
.yab{bottom:675.626667pt;}
.yf8{bottom:677.493333pt;}
.y4e{bottom:679.360000pt;}
.y1a{bottom:681.760000pt;}
.yaa{bottom:695.093333pt;}
.yd1{bottom:696.426667pt;}
.yf7{bottom:696.706667pt;}
.y4d{bottom:698.560000pt;}
.y19{bottom:699.373333pt;}
.ya9{bottom:714.293333pt;}
.yf6{bottom:715.893333pt;}
.yd0{bottom:717.506667pt;}
.y4c{bottom:717.760000pt;}
.y18{bottom:718.560000pt;}
.ya8{bottom:733.506667pt;}
.ycf{bottom:735.093333pt;}
.y4b{bottom:736.960000pt;}
.y17{bottom:737.773333pt;}
.ya7{bottom:752.733333pt;}
.yce{bottom:754.333333pt;}
.y4a{bottom:756.200000pt;}
.y16{bottom:757.000000pt;}
.ya6{bottom:771.933333pt;}
.ycd{bottom:773.533333pt;}
.y49{bottom:775.400000pt;}
.y15{bottom:776.200000pt;}
.ya5{bottom:791.133333pt;}
.ycc{bottom:792.733333pt;}
.y48{bottom:794.600000pt;}
.y14{bottom:799.666667pt;}
.ya4{bottom:810.333333pt;}
.ycb{bottom:811.933333pt;}
.yf5{bottom:812.200000pt;}
.y47{bottom:813.800000pt;}
.y13{bottom:820.733333pt;}
.ya3{bottom:829.800000pt;}
.yca{bottom:831.400000pt;}
.y46{bottom:833.000000pt;}
.ye{bottom:842.333333pt;}
.ya2{bottom:850.600000pt;}
.y45{bottom:852.200000pt;}
.y8{bottom:860.200000pt;}
.y44{bottom:871.400000pt;}
.yc{bottom:879.400000pt;}
.y43{bottom:890.600000pt;}
.y9{bottom:897.533333pt;}
.y42{bottom:909.840000pt;}
.y41{bottom:929.026667pt;}
.y40{bottom:948.226667pt;}
.y3f{bottom:967.440000pt;}
.y6{bottom:984.226667pt;}
.y3e{bottom:986.626667pt;}
.y2{bottom:1002.626667pt;}
.y3d{bottom:1006.893333pt;}
.y3c{bottom:1024.773333pt;}
.y3b{bottom:1042.626667pt;}
.y1{bottom:1060.533333pt;}
.h20{height:17.333333pt;}
.h5{height:17.866667pt;}
.ha{height:18.133333pt;}
.hb{height:19.200000pt;}
.h1d{height:19.733333pt;}
.h15{height:41.223958pt;}
.hf{height:42.437500pt;}
.h6{height:44.744792pt;}
.h17{height:45.346354pt;}
.h1f{height:46.593750pt;}
.he{height:47.742188pt;}
.h24{height:47.798776pt;}
.hd{height:49.148438pt;}
.h10{height:49.468750pt;}
.h18{height:51.304688pt;}
.h12{height:51.687812pt;}
.h11{height:51.741146pt;}
.h13{height:51.794479pt;}
.h1e{height:52.144120pt;}
.h1c{height:53.046875pt;}
.h3{height:53.900000pt;}
.h19{height:53.981771pt;}
.h1a{height:54.609375pt;}
.h2{height:58.351562pt;}
.h4{height:60.070312pt;}
.h16{height:63.656250pt;}
.hc{height:65.531250pt;}
.h8{height:86.700000pt;}
.h21{height:87.200000pt;}
.h23{height:87.500000pt;}
.h9{height:90.692708pt;}
.h22{height:104.833333pt;}
.h7{height:124.033333pt;}
.h1b{height:228.000000pt;}
.h14{height:332.066667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:15.733333pt;}
.w9{width:59.233333pt;}
.w3{width:144.306667pt;}
.wa{width:167.226667pt;}
.w8{width:179.800000pt;}
.wb{width:227.560000pt;}
.wc{width:233.400000pt;}
.w7{width:463.066667pt;}
.w4{width:498.840000pt;}
.w5{width:507.626667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.xc{left:8.520000pt;}
.x1e{left:9.600000pt;}
.x7{left:14.133333pt;}
.x24{left:56.526667pt;}
.x9{left:69.640000pt;}
.x2{left:79.500000pt;}
.x27{left:88.266667pt;}
.x11{left:98.699988pt;}
.x1f{left:101.366655pt;}
.x22{left:104.299988pt;}
.x20{left:108.033322pt;}
.x13{left:117.366655pt;}
.x8{left:118.426667pt;}
.x29{left:127.499988pt;}
.xf{left:131.766655pt;}
.x3{left:137.366667pt;}
.x35{left:152.573322pt;}
.x4a{left:155.493322pt;}
.xd{left:160.866667pt;}
.x2c{left:180.066655pt;}
.x5b{left:184.866655pt;}
.x2f{left:192.599988pt;}
.x52{left:193.933322pt;}
.x4d{left:196.333322pt;}
.x3b{left:204.599988pt;}
.x2d{left:207.799988pt;}
.x43{left:210.466655pt;}
.x37{left:213.666655pt;}
.x4{left:223.800000pt;}
.x41{left:227.799988pt;}
.x23{left:238.733322pt;}
.x39{left:240.333322pt;}
.x25{left:247.800000pt;}
.x56{left:252.599988pt;}
.x36{left:256.333322pt;}
.x2e{left:263.306655pt;}
.x47{left:268.626655pt;}
.x3f{left:273.959988pt;}
.x3e{left:277.173322pt;}
.x46{left:281.439988pt;}
.x32{left:284.639988pt;}
.x1b{left:296.066655pt;}
.x1c{left:298.973322pt;}
.x4e{left:306.773322pt;}
.x50{left:309.959988pt;}
.x4b{left:316.373322pt;}
.x2b{left:329.173322pt;}
.x3d{left:331.306655pt;}
.x6{left:344.106667pt;}
.x15{left:357.773322pt;}
.x44{left:366.506655pt;}
.x16{left:371.093322pt;}
.x1a{left:372.266655pt;}
.x51{left:373.199988pt;}
.x55{left:379.599988pt;}
.x17{left:381.399988pt;}
.x42{left:384.133322pt;}
.x30{left:385.466655pt;}
.x21{left:391.333322pt;}
.x57{left:408.933322pt;}
.x48{left:411.066655pt;}
.x45{left:417.199988pt;}
.x5d{left:431.599988pt;}
.x19{left:445.306655pt;}
.x18{left:449.333322pt;}
.x2a{left:453.199988pt;}
.x3a{left:458.799988pt;}
.x26{left:475.906667pt;}
.x4c{left:480.706655pt;}
.x58{left:487.359988pt;}
.xa{left:500.426667pt;}
.x5a{left:501.506655pt;}
.x3c{left:510.839988pt;}
.x38{left:513.226655pt;}
.xe{left:542.573333pt;}
.x1d{left:546.306667pt;}
.x4f{left:554.293322pt;}
.x10{left:555.359988pt;}
.x49{left:558.839988pt;}
.x12{left:561.226655pt;}
.x31{left:566.026655pt;}
.x33{left:622.599988pt;}
.x40{left:635.666655pt;}
.x5e{left:639.399988pt;}
.x53{left:643.133322pt;}
.x59{left:648.999988pt;}
.x5c{left:664.466655pt;}
.x28{left:678.066655pt;}
.x54{left:702.626655pt;}
.x14{left:706.106655pt;}
.x34{left:711.173322pt;}
.x1{left:714.626655pt;}
.xb{left:731.440000pt;}
}




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