
    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_4492c797bc6442e444f34492.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_505481d2a2d6bafc26e2930d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_13c360c9747e7d584dc82eae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_3135677372cfde96db7c4f95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_175db9bb625a993cee775338.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_8588216c84019d55e7c180a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_93a9c74892d5de23043892f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c81d777c633fb38fef83ecbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.213000;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_6e139e5acb5a9e136dc7e42d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.212000;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_7aeff3f1886e46440219376a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_f4475e181eb94877895e4dfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_4973b8e326c160a7749392ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.799000;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:ffe;src:url('chunks/assets/font_24c0022f5ade64218226a975.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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:fff;src:url('chunks/assets/font_73fd20bbb08ee50fcb32511e.woff2')format("woff");}.fff{font-family:fff;line-height:0.716000;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:ff10;src:url('chunks/assets/font_c3480428bd8ac81c24e8615b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.834000;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:ff11;src:url('chunks/assets/font_e64c8378265004b54003efd9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.737000;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:ff12;src:url('chunks/assets/font_985cedb41232e0b6af6ddb20.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;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:ff13;src:url('chunks/assets/font_42d22f7fe8bede8929230464.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.680176;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:ff14;src:url('chunks/assets/font_3097ed51805fc029b40c83ab.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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);}
.v5{vertical-align:-66.350916px;}
.v1{vertical-align:-20.400000px;}
.v3{vertical-align:-15.000000px;}
.v4{vertical-align:-6.012000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.000000px;}
.v2{vertical-align:24.000000px;}
.ls15{letter-spacing:-12.750000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.007800px;}
.ls12{letter-spacing:0.010200px;}
.lsf{letter-spacing:0.012284px;}
.ls10{letter-spacing:0.017021px;}
.lse{letter-spacing:0.018284px;}
.ls8{letter-spacing:0.019751px;}
.lsb{letter-spacing:0.024487px;}
.ls6{letter-spacing:0.840000px;}
.ls5{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.210200px;}
.lsc{letter-spacing:2.990239px;}
.ls11{letter-spacing:2.996239px;}
.ls0{letter-spacing:3.990000px;}
.lsa{letter-spacing:10.879128px;}
.lsd{letter-spacing:13.270183px;}
.ls9{letter-spacing:15.269932px;}
.ls14{letter-spacing:15.708000px;}
.ls1{letter-spacing:27.307200px;}
.ls2{letter-spacing:53.015400px;}
.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;}
}
.ws7{word-spacing:-16.416000px;}
.ws1e{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.544000px;}
.ws3{word-spacing:-12.750000px;}
.ws1f{word-spacing:-12.474000px;}
.ws8{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws6{word-spacing:-11.520000px;}
.ws1d{word-spacing:-11.340000px;}
.ws1a{word-spacing:-10.500000px;}
.wsf{word-spacing:-10.302000px;}
.ws0{word-spacing:-9.996000px;}
.ws40{word-spacing:-9.792000px;}
.ws4{word-spacing:-8.925000px;}
.ws29{word-spacing:-7.500000px;}
.ws21{word-spacing:-4.020000px;}
.ws27{word-spacing:-2.820000px;}
.ws1b{word-spacing:-2.700000px;}
.ws1c{word-spacing:-2.580000px;}
.ws48{word-spacing:-2.448000px;}
.ws37{word-spacing:-2.280000px;}
.ws36{word-spacing:-1.800000px;}
.ws23{word-spacing:-1.740000px;}
.ws20{word-spacing:-1.200000px;}
.ws32{word-spacing:-1.080000px;}
.ws4c{word-spacing:-0.918000px;}
.ws11{word-spacing:-0.780000px;}
.ws4b{word-spacing:-0.714000px;}
.ws9{word-spacing:-0.570000px;}
.ws28{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.ws4e{word-spacing:0.306000px;}
.ws3f{word-spacing:0.480000px;}
.ws35{word-spacing:0.540000px;}
.ws25{word-spacing:0.660000px;}
.ws3c{word-spacing:0.720000px;}
.wsb{word-spacing:0.780000px;}
.ws38{word-spacing:1.440000px;}
.ws4d{word-spacing:1.530000px;}
.ws45{word-spacing:1.581000px;}
.ws46{word-spacing:1.785000px;}
.ws26{word-spacing:1.980000px;}
.ws3e{word-spacing:2.040000px;}
.wsd{word-spacing:2.340000px;}
.ws14{word-spacing:2.460000px;}
.ws33{word-spacing:3.000000px;}
.ws10{word-spacing:3.009000px;}
.ws42{word-spacing:4.029000px;}
.ws17{word-spacing:4.080000px;}
.ws3a{word-spacing:4.380000px;}
.ws31{word-spacing:4.500000px;}
.ws49{word-spacing:4.539000px;}
.ws47{word-spacing:4.641000px;}
.ws24{word-spacing:4.680000px;}
.wsc{word-spacing:4.800000px;}
.wse{word-spacing:5.700000px;}
.ws19{word-spacing:5.880000px;}
.ws39{word-spacing:6.240000px;}
.ws18{word-spacing:6.900000px;}
.ws2e{word-spacing:7.038000px;}
.ws2f{word-spacing:7.191000px;}
.ws15{word-spacing:7.200000px;}
.ws3b{word-spacing:7.560000px;}
.ws30{word-spacing:7.680000px;}
.ws12{word-spacing:8.460000px;}
.ws2c{word-spacing:8.760000px;}
.ws4a{word-spacing:8.823000px;}
.ws2a{word-spacing:8.940000px;}
.ws22{word-spacing:9.600000px;}
.ws2b{word-spacing:11.160000px;}
.ws41{word-spacing:12.750000px;}
.ws34{word-spacing:14.160000px;}
.ws3d{word-spacing:14.520000px;}
.ws44{word-spacing:14.586000px;}
.ws13{word-spacing:15.900000px;}
.ws16{word-spacing:20.580000px;}
.ws43{word-spacing:54.468000px;}
._10{margin-left:-70.498800px;}
._20{margin-left:-13.718400px;}
._1f{margin-left:-11.781600px;}
._19{margin-left:-7.800000px;}
._f{margin-left:-6.229800px;}
._0{margin-left:-4.622700px;}
._c{margin-left:-3.551400px;}
._9{margin-left:-2.172000px;}
._1{margin-left:-1.071000px;}
._5{width:1.182000px;}
._7{width:2.730000px;}
._3{width:4.260000px;}
._2{width:5.364000px;}
._12{width:6.582000px;}
._8{width:7.758000px;}
._6{width:9.162000px;}
._b{width:10.260000px;}
._e{width:11.269800px;}
._4{width:12.324000px;}
._14{width:13.416000px;}
._1e{width:14.611500px;}
._d{width:16.038000px;}
._1d{width:17.064000px;}
._15{width:18.066000px;}
._16{width:19.158000px;}
._13{width:20.358000px;}
._23{width:21.425100px;}
._1c{width:22.932000px;}
._1a{width:24.252000px;}
._1b{width:25.434000px;}
._a{width:28.962000px;}
._17{width:30.612000px;}
._18{width:37.994400px;}
._11{width:54.417000px;}
._22{width:70.107600px;}
._21{width:71.641800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887800px;}
.fs4{font-size:35.700000px;}
.fsa{font-size:41.842800px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:59.775600px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:26.601300px;}
.y30{bottom:60.997650px;}
.y16{bottom:110.551050px;}
.y57{bottom:115.651350px;}
.y56{bottom:124.299150px;}
.yb0{bottom:129.736650px;}
.y123{bottom:130.458900px;}
.y15{bottom:130.651050px;}
.y12{bottom:143.049150px;}
.yaf{bottom:144.736650px;}
.y122{bottom:145.458900px;}
.ye2{bottom:148.298100px;}
.y14{bottom:155.551050px;}
.yae{bottom:159.736650px;}
.y121{bottom:160.458900px;}
.y11{bottom:161.799150px;}
.y13{bottom:170.551050px;}
.yad{bottom:174.736650px;}
.y120{bottom:175.458900px;}
.y10{bottom:180.549150px;}
.ye1{bottom:181.298100px;}
.yac{bottom:189.736650px;}
.y11f{bottom:190.458900px;}
.ye0{bottom:196.298100px;}
.yf{bottom:199.299150px;}
.yab{bottom:204.736650px;}
.y11e{bottom:205.458900px;}
.ydf{bottom:211.298100px;}
.ye{bottom:218.049150px;}
.yaa{bottom:219.736650px;}
.y11d{bottom:220.458900px;}
.yde{bottom:226.298100px;}
.ya9{bottom:234.736650px;}
.y11c{bottom:235.458900px;}
.yd{bottom:236.799150px;}
.ydd{bottom:241.298100px;}
.ya8{bottom:249.736650px;}
.y11b{bottom:250.458900px;}
.yc{bottom:255.549150px;}
.ydc{bottom:256.298100px;}
.ya7{bottom:264.736650px;}
.y11a{bottom:265.458900px;}
.ydb{bottom:271.298100px;}
.yb{bottom:274.299150px;}
.ya6{bottom:279.736650px;}
.y119{bottom:280.458900px;}
.yda{bottom:286.298100px;}
.ya{bottom:293.049150px;}
.ya5{bottom:294.736650px;}
.y118{bottom:295.458900px;}
.yd9{bottom:301.298100px;}
.ya4{bottom:309.736650px;}
.y117{bottom:310.458900px;}
.y9{bottom:311.799150px;}
.yd8{bottom:316.298100px;}
.ya3{bottom:324.736650px;}
.y116{bottom:325.458900px;}
.y8{bottom:330.549150px;}
.yd7{bottom:331.298100px;}
.ya2{bottom:339.736650px;}
.y115{bottom:340.458900px;}
.yd6{bottom:346.298100px;}
.y7{bottom:349.299150px;}
.ya1{bottom:354.736650px;}
.y114{bottom:355.458900px;}
.yd5{bottom:361.298100px;}
.y6{bottom:368.049150px;}
.ya0{bottom:369.736650px;}
.y113{bottom:370.458900px;}
.yd4{bottom:376.298100px;}
.y9f{bottom:384.736650px;}
.y112{bottom:385.458900px;}
.y5{bottom:386.799150px;}
.y9e{bottom:399.736650px;}
.y111{bottom:400.458900px;}
.y4{bottom:405.549150px;}
.yd3{bottom:409.298100px;}
.y9d{bottom:414.736650px;}
.y110{bottom:415.458900px;}
.y55{bottom:424.299150px;}
.y125{bottom:427.458900px;}
.y9c{bottom:429.736650px;}
.y10f{bottom:430.458900px;}
.y124{bottom:442.458900px;}
.y54{bottom:443.049150px;}
.y9b{bottom:444.736650px;}
.y10e{bottom:445.458900px;}
.yd2{bottom:446.799150px;}
.y2a{bottom:458.112750px;}
.y9a{bottom:459.736650px;}
.y10d{bottom:460.458900px;}
.y53{bottom:461.799150px;}
.y99{bottom:474.736650px;}
.y10c{bottom:475.458900px;}
.y29{bottom:476.862750px;}
.y52{bottom:480.549150px;}
.y98{bottom:489.736650px;}
.y10b{bottom:490.458900px;}
.yd1{bottom:494.799150px;}
.y51{bottom:499.299150px;}
.y97{bottom:504.736650px;}
.y10a{bottom:505.458900px;}
.yd0{bottom:509.799150px;}
.y28{bottom:513.612600px;}
.y50{bottom:518.049150px;}
.y96{bottom:519.736650px;}
.y109{bottom:520.458900px;}
.ycf{bottom:524.799150px;}
.y27{bottom:532.362600px;}
.y95{bottom:534.736650px;}
.y108{bottom:535.458900px;}
.y4f{bottom:536.799150px;}
.yce{bottom:539.799150px;}
.y68{bottom:549.211800px;}
.y94{bottom:549.736650px;}
.y107{bottom:550.458900px;}
.y26{bottom:551.112600px;}
.ycd{bottom:554.799150px;}
.y4e{bottom:555.549150px;}
.y67{bottom:564.211800px;}
.y93{bottom:564.736650px;}
.y106{bottom:565.458900px;}
.ycc{bottom:569.799150px;}
.y25{bottom:569.862600px;}
.y4d{bottom:574.299150px;}
.y66{bottom:579.211800px;}
.y92{bottom:579.736650px;}
.y105{bottom:580.458900px;}
.ycb{bottom:584.799150px;}
.y24{bottom:588.612600px;}
.y4c{bottom:593.049150px;}
.y65{bottom:594.211800px;}
.y91{bottom:594.736650px;}
.y104{bottom:595.458900px;}
.yca{bottom:599.799150px;}
.y23{bottom:607.362600px;}
.y64{bottom:609.211800px;}
.y90{bottom:609.736650px;}
.y103{bottom:610.458900px;}
.y4b{bottom:611.799150px;}
.y63{bottom:624.211800px;}
.y8f{bottom:624.736650px;}
.y102{bottom:625.458900px;}
.y22{bottom:626.112600px;}
.y4a{bottom:630.549150px;}
.yc9{bottom:632.799150px;}
.y62{bottom:639.211800px;}
.y8e{bottom:639.736650px;}
.y101{bottom:640.458900px;}
.y21{bottom:644.862600px;}
.yc8{bottom:647.799150px;}
.y49{bottom:649.299150px;}
.y61{bottom:654.211800px;}
.y8d{bottom:654.736650px;}
.y100{bottom:655.458900px;}
.yc7{bottom:662.799150px;}
.y20{bottom:663.612600px;}
.y48{bottom:668.049150px;}
.y60{bottom:669.211800px;}
.y8c{bottom:669.736650px;}
.yff{bottom:670.458900px;}
.yc6{bottom:677.799150px;}
.y1f{bottom:682.362600px;}
.y5f{bottom:684.211800px;}
.y8b{bottom:684.736650px;}
.yfe{bottom:685.458900px;}
.y47{bottom:686.799150px;}
.yc5{bottom:692.799150px;}
.y5e{bottom:699.211800px;}
.y8a{bottom:699.736650px;}
.yfd{bottom:700.458900px;}
.y1e{bottom:701.112750px;}
.y46{bottom:705.549150px;}
.yc4{bottom:707.799150px;}
.y69{bottom:711.294000px;}
.y5d{bottom:714.211800px;}
.y89{bottom:714.736650px;}
.yfc{bottom:715.458900px;}
.y1d{bottom:719.862750px;}
.y45{bottom:724.299150px;}
.y88{bottom:729.736650px;}
.yfb{bottom:730.458900px;}
.y1c{bottom:738.612750px;}
.yc3{bottom:740.799150px;}
.y44{bottom:743.049150px;}
.y6d{bottom:743.414550px;}
.y87{bottom:744.736650px;}
.yfa{bottom:745.458900px;}
.yc2{bottom:755.799150px;}
.y1b{bottom:757.362750px;}
.y6c{bottom:758.414550px;}
.y86{bottom:759.736650px;}
.yf9{bottom:760.458900px;}
.y43{bottom:761.799150px;}
.yc1{bottom:770.799150px;}
.y6b{bottom:773.414550px;}
.y85{bottom:774.736650px;}
.yf8{bottom:775.458900px;}
.y1a{bottom:776.112600px;}
.y42{bottom:780.549150px;}
.yc0{bottom:785.799150px;}
.y6a{bottom:788.414550px;}
.y84{bottom:789.736650px;}
.yf7{bottom:790.458900px;}
.y19{bottom:794.862600px;}
.y41{bottom:799.299150px;}
.ybf{bottom:800.799150px;}
.y82{bottom:804.736650px;}
.yf6{bottom:805.458900px;}
.y18{bottom:813.612600px;}
.ybe{bottom:815.799150px;}
.y40{bottom:818.049150px;}
.y81{bottom:819.736650px;}
.yf5{bottom:820.458900px;}
.ybd{bottom:830.799150px;}
.y17{bottom:832.362600px;}
.y80{bottom:834.736650px;}
.yf4{bottom:835.458900px;}
.y3f{bottom:836.799150px;}
.ybc{bottom:845.799150px;}
.y7f{bottom:849.736650px;}
.yf3{bottom:850.458900px;}
.y83{bottom:853.486650px;}
.y3e{bottom:855.549150px;}
.ybb{bottom:860.799150px;}
.y7e{bottom:864.736650px;}
.yf2{bottom:865.458900px;}
.y3d{bottom:874.299150px;}
.yba{bottom:875.799150px;}
.y2c{bottom:877.628400px;}
.y7d{bottom:879.736650px;}
.yf1{bottom:880.458900px;}
.yb9{bottom:890.799150px;}
.y2b{bottom:892.628400px;}
.y3c{bottom:893.049150px;}
.y7c{bottom:894.736650px;}
.yf0{bottom:895.458900px;}
.yb8{bottom:905.799150px;}
.y7b{bottom:909.736650px;}
.yef{bottom:910.458900px;}
.y3b{bottom:911.799150px;}
.yb7{bottom:920.799150px;}
.y7a{bottom:924.736650px;}
.yee{bottom:925.458900px;}
.y3a{bottom:930.549150px;}
.yb6{bottom:935.799150px;}
.y2f{bottom:936.206700px;}
.y79{bottom:939.736650px;}
.yed{bottom:940.458900px;}
.y39{bottom:949.299150px;}
.yb5{bottom:950.799150px;}
.y78{bottom:954.736650px;}
.yec{bottom:955.458900px;}
.yb4{bottom:965.799150px;}
.y38{bottom:968.049150px;}
.y77{bottom:969.736650px;}
.yeb{bottom:970.458900px;}
.y2e{bottom:980.043300px;}
.y76{bottom:984.736650px;}
.yea{bottom:985.458900px;}
.y37{bottom:986.799150px;}
.yb3{bottom:998.799150px;}
.y75{bottom:999.736650px;}
.ye9{bottom:1000.458900px;}
.y36{bottom:1005.549150px;}
.y2d{bottom:1007.043300px;}
.yb2{bottom:1013.799150px;}
.y74{bottom:1014.736650px;}
.ye8{bottom:1015.458900px;}
.y35{bottom:1024.299150px;}
.y59{bottom:1028.004000px;}
.yb1{bottom:1028.799150px;}
.y73{bottom:1029.736650px;}
.ye7{bottom:1030.458900px;}
.y5c{bottom:1032.862800px;}
.y58{bottom:1037.904300px;}
.y34{bottom:1043.049150px;}
.y72{bottom:1044.736650px;}
.y5b{bottom:1045.399800px;}
.ye6{bottom:1045.458900px;}
.y71{bottom:1059.736650px;}
.ye5{bottom:1060.458900px;}
.y33{bottom:1061.799150px;}
.y70{bottom:1074.736650px;}
.y1{bottom:1075.294050px;}
.ye4{bottom:1075.458900px;}
.y32{bottom:1080.549150px;}
.y6e{bottom:1086.818700px;}
.y6f{bottom:1089.736650px;}
.ye3{bottom:1090.458900px;}
.y3{bottom:1109.543850px;}
.y31{bottom:1125.713100px;}
.y2{bottom:1126.032000px;}
.h13{height:2.391024px;}
.h8{height:24.787793px;}
.h12{height:27.643500px;}
.h14{height:29.415488px;}
.h15{height:29.421488px;}
.h18{height:35.411133px;}
.h7{height:35.436035px;}
.h6{height:36.855469px;}
.h10{height:41.660156px;}
.h4{height:41.689453px;}
.h3{height:48.297000px;}
.h16{height:49.113000px;}
.h17{height:49.992188px;}
.he{height:50.439000px;}
.h11{height:53.162109px;}
.h2{height:55.404000px;}
.ha{height:57.780000px;}
.h9{height:59.340000px;}
.hc{height:64.446000px;}
.hf{height:64.680000px;}
.h5{height:71.208000px;}
.hd{height:72.000000px;}
.hb{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:258.058500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.321150px;}
.x2{left:76.535400px;}
.x1{left:85.181850px;}
.x4{left:90.972600px;}
.x8{left:93.543300px;}
.x5{left:97.795200px;}
.x15{left:102.047250px;}
.xf{left:111.856650px;}
.xb{left:133.672500px;}
.xe{left:147.711150px;}
.xd{left:178.938150px;}
.x12{left:242.494650px;}
.x11{left:283.437150px;}
.x10{left:312.967650px;}
.x3{left:459.850350px;}
.x9{left:476.220450px;}
.x14{left:484.724400px;}
.x7{left:665.721300px;}
.x13{left:721.641750px;}
.xa{left:727.697850px;}
.x6{left:755.658750px;}
@media print{
.v5{vertical-align:-58.978592pt;}
.v1{vertical-align:-18.133333pt;}
.v3{vertical-align:-13.333333pt;}
.v4{vertical-align:-5.344000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.333333pt;}
.v2{vertical-align:21.333333pt;}
.ls15{letter-spacing:-11.333333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.006933pt;}
.ls12{letter-spacing:0.009067pt;}
.lsf{letter-spacing:0.010919pt;}
.ls10{letter-spacing:0.015130pt;}
.lse{letter-spacing:0.016253pt;}
.ls8{letter-spacing:0.017556pt;}
.lsb{letter-spacing:0.021766pt;}
.ls6{letter-spacing:0.746667pt;}
.ls5{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.075733pt;}
.lsc{letter-spacing:2.657990pt;}
.ls11{letter-spacing:2.663324pt;}
.ls0{letter-spacing:3.546667pt;}
.lsa{letter-spacing:9.670336pt;}
.lsd{letter-spacing:11.795718pt;}
.ls9{letter-spacing:13.573273pt;}
.ls14{letter-spacing:13.962667pt;}
.ls1{letter-spacing:24.273067pt;}
.ls2{letter-spacing:47.124800pt;}
.ws7{word-spacing:-14.592000pt;}
.ws1e{word-spacing:-14.400000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.928000pt;}
.ws3{word-spacing:-11.333333pt;}
.ws1f{word-spacing:-11.088000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws1d{word-spacing:-10.080000pt;}
.ws1a{word-spacing:-9.333333pt;}
.wsf{word-spacing:-9.157333pt;}
.ws0{word-spacing:-8.885333pt;}
.ws40{word-spacing:-8.704000pt;}
.ws4{word-spacing:-7.933333pt;}
.ws29{word-spacing:-6.666667pt;}
.ws21{word-spacing:-3.573333pt;}
.ws27{word-spacing:-2.506667pt;}
.ws1b{word-spacing:-2.400000pt;}
.ws1c{word-spacing:-2.293333pt;}
.ws48{word-spacing:-2.176000pt;}
.ws37{word-spacing:-2.026667pt;}
.ws36{word-spacing:-1.600000pt;}
.ws23{word-spacing:-1.546667pt;}
.ws20{word-spacing:-1.066667pt;}
.ws32{word-spacing:-0.960000pt;}
.ws4c{word-spacing:-0.816000pt;}
.ws11{word-spacing:-0.693333pt;}
.ws4b{word-spacing:-0.634667pt;}
.ws9{word-spacing:-0.506667pt;}
.ws28{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.272000pt;}
.ws3f{word-spacing:0.426667pt;}
.ws35{word-spacing:0.480000pt;}
.ws25{word-spacing:0.586667pt;}
.ws3c{word-spacing:0.640000pt;}
.wsb{word-spacing:0.693333pt;}
.ws38{word-spacing:1.280000pt;}
.ws4d{word-spacing:1.360000pt;}
.ws45{word-spacing:1.405333pt;}
.ws46{word-spacing:1.586667pt;}
.ws26{word-spacing:1.760000pt;}
.ws3e{word-spacing:1.813333pt;}
.wsd{word-spacing:2.080000pt;}
.ws14{word-spacing:2.186667pt;}
.ws33{word-spacing:2.666667pt;}
.ws10{word-spacing:2.674667pt;}
.ws42{word-spacing:3.581333pt;}
.ws17{word-spacing:3.626667pt;}
.ws3a{word-spacing:3.893333pt;}
.ws31{word-spacing:4.000000pt;}
.ws49{word-spacing:4.034667pt;}
.ws47{word-spacing:4.125333pt;}
.ws24{word-spacing:4.160000pt;}
.wsc{word-spacing:4.266667pt;}
.wse{word-spacing:5.066667pt;}
.ws19{word-spacing:5.226667pt;}
.ws39{word-spacing:5.546667pt;}
.ws18{word-spacing:6.133333pt;}
.ws2e{word-spacing:6.256000pt;}
.ws2f{word-spacing:6.392000pt;}
.ws15{word-spacing:6.400000pt;}
.ws3b{word-spacing:6.720000pt;}
.ws30{word-spacing:6.826667pt;}
.ws12{word-spacing:7.520000pt;}
.ws2c{word-spacing:7.786667pt;}
.ws4a{word-spacing:7.842667pt;}
.ws2a{word-spacing:7.946667pt;}
.ws22{word-spacing:8.533333pt;}
.ws2b{word-spacing:9.920000pt;}
.ws41{word-spacing:11.333333pt;}
.ws34{word-spacing:12.586667pt;}
.ws3d{word-spacing:12.906667pt;}
.ws44{word-spacing:12.965333pt;}
.ws13{word-spacing:14.133333pt;}
.ws16{word-spacing:18.293333pt;}
.ws43{word-spacing:48.416000pt;}
._10{margin-left:-62.665600pt;}
._20{margin-left:-12.194133pt;}
._1f{margin-left:-10.472533pt;}
._19{margin-left:-6.933333pt;}
._f{margin-left:-5.537600pt;}
._0{margin-left:-4.109067pt;}
._c{margin-left:-3.156800pt;}
._9{margin-left:-1.930667pt;}
._1{margin-left:-0.952000pt;}
._5{width:1.050667pt;}
._7{width:2.426667pt;}
._3{width:3.786667pt;}
._2{width:4.768000pt;}
._12{width:5.850667pt;}
._8{width:6.896000pt;}
._6{width:8.144000pt;}
._b{width:9.120000pt;}
._e{width:10.017600pt;}
._4{width:10.954667pt;}
._14{width:11.925333pt;}
._1e{width:12.988000pt;}
._d{width:14.256000pt;}
._1d{width:15.168000pt;}
._15{width:16.058667pt;}
._16{width:17.029333pt;}
._13{width:18.096000pt;}
._23{width:19.044533pt;}
._1c{width:20.384000pt;}
._1a{width:21.557333pt;}
._1b{width:22.608000pt;}
._a{width:25.744000pt;}
._17{width:27.210667pt;}
._18{width:33.772800pt;}
._11{width:48.370667pt;}
._22{width:62.317867pt;}
._21{width:63.681600pt;}
.fsb{font-size:26.566933pt;}
.fs4{font-size:31.733333pt;}
.fsa{font-size:37.193600pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.133867pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:23.645600pt;}
.y30{bottom:54.220133pt;}
.y16{bottom:98.267600pt;}
.y57{bottom:102.801200pt;}
.y56{bottom:110.488133pt;}
.yb0{bottom:115.321467pt;}
.y123{bottom:115.963467pt;}
.y15{bottom:116.134267pt;}
.y12{bottom:127.154800pt;}
.yaf{bottom:128.654800pt;}
.y122{bottom:129.296800pt;}
.ye2{bottom:131.820533pt;}
.y14{bottom:138.267600pt;}
.yae{bottom:141.988133pt;}
.y121{bottom:142.630133pt;}
.y11{bottom:143.821467pt;}
.y13{bottom:151.600933pt;}
.yad{bottom:155.321467pt;}
.y120{bottom:155.963467pt;}
.y10{bottom:160.488133pt;}
.ye1{bottom:161.153867pt;}
.yac{bottom:168.654800pt;}
.y11f{bottom:169.296800pt;}
.ye0{bottom:174.487200pt;}
.yf{bottom:177.154800pt;}
.yab{bottom:181.988133pt;}
.y11e{bottom:182.630133pt;}
.ydf{bottom:187.820533pt;}
.ye{bottom:193.821467pt;}
.yaa{bottom:195.321467pt;}
.y11d{bottom:195.963467pt;}
.yde{bottom:201.153867pt;}
.ya9{bottom:208.654800pt;}
.y11c{bottom:209.296800pt;}
.yd{bottom:210.488133pt;}
.ydd{bottom:214.487200pt;}
.ya8{bottom:221.988133pt;}
.y11b{bottom:222.630133pt;}
.yc{bottom:227.154800pt;}
.ydc{bottom:227.820533pt;}
.ya7{bottom:235.321467pt;}
.y11a{bottom:235.963467pt;}
.ydb{bottom:241.153867pt;}
.yb{bottom:243.821467pt;}
.ya6{bottom:248.654800pt;}
.y119{bottom:249.296800pt;}
.yda{bottom:254.487200pt;}
.ya{bottom:260.488133pt;}
.ya5{bottom:261.988133pt;}
.y118{bottom:262.630133pt;}
.yd9{bottom:267.820533pt;}
.ya4{bottom:275.321467pt;}
.y117{bottom:275.963467pt;}
.y9{bottom:277.154800pt;}
.yd8{bottom:281.153867pt;}
.ya3{bottom:288.654800pt;}
.y116{bottom:289.296800pt;}
.y8{bottom:293.821467pt;}
.yd7{bottom:294.487200pt;}
.ya2{bottom:301.988133pt;}
.y115{bottom:302.630133pt;}
.yd6{bottom:307.820533pt;}
.y7{bottom:310.488133pt;}
.ya1{bottom:315.321467pt;}
.y114{bottom:315.963467pt;}
.yd5{bottom:321.153867pt;}
.y6{bottom:327.154800pt;}
.ya0{bottom:328.654800pt;}
.y113{bottom:329.296800pt;}
.yd4{bottom:334.487200pt;}
.y9f{bottom:341.988133pt;}
.y112{bottom:342.630133pt;}
.y5{bottom:343.821467pt;}
.y9e{bottom:355.321467pt;}
.y111{bottom:355.963467pt;}
.y4{bottom:360.488133pt;}
.yd3{bottom:363.820533pt;}
.y9d{bottom:368.654800pt;}
.y110{bottom:369.296800pt;}
.y55{bottom:377.154800pt;}
.y125{bottom:379.963467pt;}
.y9c{bottom:381.988133pt;}
.y10f{bottom:382.630133pt;}
.y124{bottom:393.296800pt;}
.y54{bottom:393.821467pt;}
.y9b{bottom:395.321467pt;}
.y10e{bottom:395.963467pt;}
.yd2{bottom:397.154800pt;}
.y2a{bottom:407.211333pt;}
.y9a{bottom:408.654800pt;}
.y10d{bottom:409.296800pt;}
.y53{bottom:410.488133pt;}
.y99{bottom:421.988133pt;}
.y10c{bottom:422.630133pt;}
.y29{bottom:423.878000pt;}
.y52{bottom:427.154800pt;}
.y98{bottom:435.321467pt;}
.y10b{bottom:435.963467pt;}
.yd1{bottom:439.821467pt;}
.y51{bottom:443.821467pt;}
.y97{bottom:448.654800pt;}
.y10a{bottom:449.296800pt;}
.yd0{bottom:453.154800pt;}
.y28{bottom:456.544533pt;}
.y50{bottom:460.488133pt;}
.y96{bottom:461.988133pt;}
.y109{bottom:462.630133pt;}
.ycf{bottom:466.488133pt;}
.y27{bottom:473.211200pt;}
.y95{bottom:475.321467pt;}
.y108{bottom:475.963467pt;}
.y4f{bottom:477.154800pt;}
.yce{bottom:479.821467pt;}
.y68{bottom:488.188267pt;}
.y94{bottom:488.654800pt;}
.y107{bottom:489.296800pt;}
.y26{bottom:489.877867pt;}
.ycd{bottom:493.154800pt;}
.y4e{bottom:493.821467pt;}
.y67{bottom:501.521600pt;}
.y93{bottom:501.988133pt;}
.y106{bottom:502.630133pt;}
.ycc{bottom:506.488133pt;}
.y25{bottom:506.544533pt;}
.y4d{bottom:510.488133pt;}
.y66{bottom:514.854933pt;}
.y92{bottom:515.321467pt;}
.y105{bottom:515.963467pt;}
.ycb{bottom:519.821467pt;}
.y24{bottom:523.211200pt;}
.y4c{bottom:527.154800pt;}
.y65{bottom:528.188267pt;}
.y91{bottom:528.654800pt;}
.y104{bottom:529.296800pt;}
.yca{bottom:533.154800pt;}
.y23{bottom:539.877867pt;}
.y64{bottom:541.521600pt;}
.y90{bottom:541.988133pt;}
.y103{bottom:542.630133pt;}
.y4b{bottom:543.821467pt;}
.y63{bottom:554.854933pt;}
.y8f{bottom:555.321467pt;}
.y102{bottom:555.963467pt;}
.y22{bottom:556.544533pt;}
.y4a{bottom:560.488133pt;}
.yc9{bottom:562.488133pt;}
.y62{bottom:568.188267pt;}
.y8e{bottom:568.654800pt;}
.y101{bottom:569.296800pt;}
.y21{bottom:573.211200pt;}
.yc8{bottom:575.821467pt;}
.y49{bottom:577.154800pt;}
.y61{bottom:581.521600pt;}
.y8d{bottom:581.988133pt;}
.y100{bottom:582.630133pt;}
.yc7{bottom:589.154800pt;}
.y20{bottom:589.877867pt;}
.y48{bottom:593.821467pt;}
.y60{bottom:594.854933pt;}
.y8c{bottom:595.321467pt;}
.yff{bottom:595.963467pt;}
.yc6{bottom:602.488133pt;}
.y1f{bottom:606.544533pt;}
.y5f{bottom:608.188267pt;}
.y8b{bottom:608.654800pt;}
.yfe{bottom:609.296800pt;}
.y47{bottom:610.488133pt;}
.yc5{bottom:615.821467pt;}
.y5e{bottom:621.521600pt;}
.y8a{bottom:621.988133pt;}
.yfd{bottom:622.630133pt;}
.y1e{bottom:623.211333pt;}
.y46{bottom:627.154800pt;}
.yc4{bottom:629.154800pt;}
.y69{bottom:632.261333pt;}
.y5d{bottom:634.854933pt;}
.y89{bottom:635.321467pt;}
.yfc{bottom:635.963467pt;}
.y1d{bottom:639.878000pt;}
.y45{bottom:643.821467pt;}
.y88{bottom:648.654800pt;}
.yfb{bottom:649.296800pt;}
.y1c{bottom:656.544667pt;}
.yc3{bottom:658.488133pt;}
.y44{bottom:660.488133pt;}
.y6d{bottom:660.812933pt;}
.y87{bottom:661.988133pt;}
.yfa{bottom:662.630133pt;}
.yc2{bottom:671.821467pt;}
.y1b{bottom:673.211333pt;}
.y6c{bottom:674.146267pt;}
.y86{bottom:675.321467pt;}
.yf9{bottom:675.963467pt;}
.y43{bottom:677.154800pt;}
.yc1{bottom:685.154800pt;}
.y6b{bottom:687.479600pt;}
.y85{bottom:688.654800pt;}
.yf8{bottom:689.296800pt;}
.y1a{bottom:689.877867pt;}
.y42{bottom:693.821467pt;}
.yc0{bottom:698.488133pt;}
.y6a{bottom:700.812933pt;}
.y84{bottom:701.988133pt;}
.yf7{bottom:702.630133pt;}
.y19{bottom:706.544533pt;}
.y41{bottom:710.488133pt;}
.ybf{bottom:711.821467pt;}
.y82{bottom:715.321467pt;}
.yf6{bottom:715.963467pt;}
.y18{bottom:723.211200pt;}
.ybe{bottom:725.154800pt;}
.y40{bottom:727.154800pt;}
.y81{bottom:728.654800pt;}
.yf5{bottom:729.296800pt;}
.ybd{bottom:738.488133pt;}
.y17{bottom:739.877867pt;}
.y80{bottom:741.988133pt;}
.yf4{bottom:742.630133pt;}
.y3f{bottom:743.821467pt;}
.ybc{bottom:751.821467pt;}
.y7f{bottom:755.321467pt;}
.yf3{bottom:755.963467pt;}
.y83{bottom:758.654800pt;}
.y3e{bottom:760.488133pt;}
.ybb{bottom:765.154800pt;}
.y7e{bottom:768.654800pt;}
.yf2{bottom:769.296800pt;}
.y3d{bottom:777.154800pt;}
.yba{bottom:778.488133pt;}
.y2c{bottom:780.114133pt;}
.y7d{bottom:781.988133pt;}
.yf1{bottom:782.630133pt;}
.yb9{bottom:791.821467pt;}
.y2b{bottom:793.447467pt;}
.y3c{bottom:793.821467pt;}
.y7c{bottom:795.321467pt;}
.yf0{bottom:795.963467pt;}
.yb8{bottom:805.154800pt;}
.y7b{bottom:808.654800pt;}
.yef{bottom:809.296800pt;}
.y3b{bottom:810.488133pt;}
.yb7{bottom:818.488133pt;}
.y7a{bottom:821.988133pt;}
.yee{bottom:822.630133pt;}
.y3a{bottom:827.154800pt;}
.yb6{bottom:831.821467pt;}
.y2f{bottom:832.183733pt;}
.y79{bottom:835.321467pt;}
.yed{bottom:835.963467pt;}
.y39{bottom:843.821467pt;}
.yb5{bottom:845.154800pt;}
.y78{bottom:848.654800pt;}
.yec{bottom:849.296800pt;}
.yb4{bottom:858.488133pt;}
.y38{bottom:860.488133pt;}
.y77{bottom:861.988133pt;}
.yeb{bottom:862.630133pt;}
.y2e{bottom:871.149600pt;}
.y76{bottom:875.321467pt;}
.yea{bottom:875.963467pt;}
.y37{bottom:877.154800pt;}
.yb3{bottom:887.821467pt;}
.y75{bottom:888.654800pt;}
.ye9{bottom:889.296800pt;}
.y36{bottom:893.821467pt;}
.y2d{bottom:895.149600pt;}
.yb2{bottom:901.154800pt;}
.y74{bottom:901.988133pt;}
.ye8{bottom:902.630133pt;}
.y35{bottom:910.488133pt;}
.y59{bottom:913.781333pt;}
.yb1{bottom:914.488133pt;}
.y73{bottom:915.321467pt;}
.ye7{bottom:915.963467pt;}
.y5c{bottom:918.100267pt;}
.y58{bottom:922.581600pt;}
.y34{bottom:927.154800pt;}
.y72{bottom:928.654800pt;}
.y5b{bottom:929.244267pt;}
.ye6{bottom:929.296800pt;}
.y71{bottom:941.988133pt;}
.ye5{bottom:942.630133pt;}
.y33{bottom:943.821467pt;}
.y70{bottom:955.321467pt;}
.y1{bottom:955.816933pt;}
.ye4{bottom:955.963467pt;}
.y32{bottom:960.488133pt;}
.y6e{bottom:966.061067pt;}
.y6f{bottom:968.654800pt;}
.ye3{bottom:969.296800pt;}
.y3{bottom:986.261200pt;}
.y31{bottom:1000.633867pt;}
.y2{bottom:1000.917333pt;}
.h13{height:2.125355pt;}
.h8{height:22.033594pt;}
.h12{height:24.572000pt;}
.h14{height:26.147101pt;}
.h15{height:26.152434pt;}
.h18{height:31.476562pt;}
.h7{height:31.498698pt;}
.h6{height:32.760417pt;}
.h10{height:37.031250pt;}
.h4{height:37.057292pt;}
.h3{height:42.930667pt;}
.h16{height:43.656000pt;}
.h17{height:44.437500pt;}
.he{height:44.834667pt;}
.h11{height:47.255208pt;}
.h2{height:49.248000pt;}
.ha{height:51.360000pt;}
.h9{height:52.746667pt;}
.hc{height:57.285333pt;}
.hf{height:57.493333pt;}
.h5{height:63.296000pt;}
.hd{height:64.000000pt;}
.hb{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:229.385333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.952133pt;}
.x2{left:68.031467pt;}
.x1{left:75.717200pt;}
.x4{left:80.864533pt;}
.x8{left:83.149600pt;}
.x5{left:86.929067pt;}
.x15{left:90.708667pt;}
.xf{left:99.428133pt;}
.xb{left:118.820000pt;}
.xe{left:131.298800pt;}
.xd{left:159.056133pt;}
.x12{left:215.550800pt;}
.x11{left:251.944133pt;}
.x10{left:278.193467pt;}
.x3{left:408.755867pt;}
.x9{left:423.307067pt;}
.x14{left:430.866133pt;}
.x7{left:591.752267pt;}
.x13{left:641.459333pt;}
.xa{left:646.842533pt;}
.x6{left:671.696667pt;}
}




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