
    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_0ec5fa2e260d0d71ad734185.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_d74fd5c5a729518211e7ab3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_8ea25788cdfc0fccedd63eed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859375;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_0567b04dfa15654fb3692080.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_ec581efe764e4dcf7410e494.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084473;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_7ab650578b263ad166e4a67a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_614209325e79322b682e0bd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_7fb2cd28d918a89451ce2694.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_ca0cf35febfff93e371e9a51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924805;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_6e0c9d90b518c3b1574b15da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_11d6d398ebf07d688e98ee32.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_ba505b44dd465fe0f18b0a00.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_aec2280a4026f220ef555020.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.961426;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_b4c575174589efc24169f753.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948242;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_e9edb9f569debefd14b84c71.woff2')format("woff");}.fff{font-family:fff;line-height:0.747559;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_edb75f59f82eb87049ac1550.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.852539;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-36.720000px;}
.vb{vertical-align:-29.520000px;}
.v2{vertical-align:-26.640000px;}
.v1{vertical-align:-23.040000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:23.040000px;}
.v3{vertical-align:32.400000px;}
.v7{vertical-align:36.720000px;}
.va{vertical-align:45.360000px;}
.v8{vertical-align:54.000000px;}
.v6{vertical-align:107.460000px;}
.ls16{letter-spacing:-0.497193px;}
.ls24{letter-spacing:-0.370200px;}
.ls11{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.256200px;}
.ls1c{letter-spacing:-0.253200px;}
.ls18{letter-spacing:-0.224400px;}
.ls21{letter-spacing:-0.195600px;}
.ls14{letter-spacing:-0.172800px;}
.ls17{letter-spacing:-0.113234px;}
.ls20{letter-spacing:-0.034560px;}
.ls13{letter-spacing:-0.015840px;}
.ls10{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.017280px;}
.ls23{letter-spacing:0.023040px;}
.ls1d{letter-spacing:0.089400px;}
.ls9{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.147000px;}
.ls3{letter-spacing:0.190200px;}
.lse{letter-spacing:0.193129px;}
.ls4{letter-spacing:0.213120px;}
.ls1a{letter-spacing:0.230400px;}
.ls1b{letter-spacing:0.247800px;}
.ls19{letter-spacing:0.270600px;}
.ls0{letter-spacing:0.275040px;}
.ls7{letter-spacing:0.293760px;}
.ls22{letter-spacing:0.294000px;}
.ls1e{letter-spacing:0.304800px;}
.ls2{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.342600px;}
.ls15{letter-spacing:0.391800px;}
.ls1{letter-spacing:0.521280px;}
.lsf{letter-spacing:0.577663px;}
.lsb{letter-spacing:40.076640px;}
.ls8{letter-spacing:153.000000px;}
.ls6{letter-spacing:309.405600px;}
.ls5{letter-spacing:309.456000px;}
.lsd{letter-spacing:2631.063360px;}
.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;}
}
.ws4{word-spacing:-95.760000px;}
.ws2{word-spacing:-83.466720px;}
.ws9{word-spacing:-60.048000px;}
.ws1{word-spacing:-49.680000px;}
.wse{word-spacing:-40.677240px;}
.ws11{word-spacing:-40.556040px;}
.ws13{word-spacing:-40.533240px;}
.ws12{word-spacing:-40.515840px;}
.wsc{word-spacing:-40.475640px;}
.wsa{word-spacing:-40.285440px;}
.ws1e{word-spacing:-40.089840px;}
.ws14{word-spacing:-40.032240px;}
.ws23{word-spacing:-32.491560px;}
.ws1a{word-spacing:-32.344560px;}
.ws6{word-spacing:-29.196000px;}
.ws5{word-spacing:-29.052000px;}
.ws7{word-spacing:-28.692000px;}
.wsf{word-spacing:-28.062720px;}
.wsb{word-spacing:-26.921520px;}
.ws1b{word-spacing:-25.759440px;}
.ws22{word-spacing:-21.498480px;}
.ws3{word-spacing:-19.439280px;}
.ws1c{word-spacing:-17.237520px;}
.ws18{word-spacing:-2.404800px;}
.ws19{word-spacing:-1.909440px;}
.ws1d{word-spacing:-0.305280px;}
.ws1f{word-spacing:-0.224280px;}
.ws17{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.149760px;}
.ws0{word-spacing:-0.095040px;}
.ws24{word-spacing:-0.072000px;}
.ws25{word-spacing:0.000000px;}
.ws16{word-spacing:0.241920px;}
.ws21{word-spacing:0.603840px;}
.ws20{word-spacing:0.823680px;}
.ws10{word-spacing:1.283760px;}
.ws15{word-spacing:15.050160px;}
.ws8{word-spacing:371.304000px;}
._16{margin-left:-2197.525800px;}
._5{margin-left:-22.518000px;}
._12{margin-left:-17.583480px;}
._13{margin-left:-16.303680px;}
._6{margin-left:-13.860000px;}
._9{margin-left:-8.808480px;}
._11{margin-left:-7.733880px;}
._14{margin-left:-6.492960px;}
._1{margin-left:-5.322240px;}
._d{margin-left:-3.771360px;}
._0{margin-left:-2.700360px;}
._4{margin-left:-1.260000px;}
._3{width:1.260360px;}
._8{width:2.268360px;}
._7{width:3.348000px;}
._10{width:4.602240px;}
._f{width:41.490360px;}
._15{width:43.263360px;}
._2{width:93.240000px;}
._17{width:346.142776px;}
._b{width:506.853893px;}
._c{width:508.233387px;}
._e{width:1044.737280px;}
._18{width:1755.927600px;}
._a{width:3637.105560px;}
.fc4{color:rgb(255,210,0);}
.fc5{color:transparent;}
.fc2{color:rgb(78,167,46);}
.fc1{color:rgb(30,100,200);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:64.080000px;}
.fs9{font-size:72.000000px;}
.fs14{font-size:79.920000px;}
.fse{font-size:82.079927px;}
.fsd{font-size:82.769674px;}
.fs3{font-size:95.040000px;}
.fs6{font-size:95.760000px;}
.fsc{font-size:100.080000px;}
.fs5{font-size:108.000000px;}
.fs11{font-size:120.240000px;}
.fsf{font-size:138.240000px;}
.fs10{font-size:138.384000px;}
.fsa{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fs4{font-size:180.000000px;}
.fsb{font-size:180.144000px;}
.fs13{font-size:239.760000px;}
.fs2{font-size:300.240000px;}
.fs12{font-size:360.000000px;}
.fs1{font-size:900.000000px;}
.fs0{font-size:900.120000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:80.620608px;}
.y99{bottom:80.620671px;}
.y51{bottom:80.620837px;}
.y80{bottom:91.230000px;}
.y75{bottom:91.260000px;}
.y7e{bottom:91.290000px;}
.y73{bottom:91.335000px;}
.y77{bottom:91.365000px;}
.ya4{bottom:106.658568px;}
.y9a{bottom:106.658640px;}
.y52{bottom:106.658855px;}
.y85{bottom:118.620000px;}
.y7a{bottom:177.690000px;}
.y6f{bottom:177.735000px;}
.ya5{bottom:187.703874px;}
.y9b{bottom:187.703946px;}
.y53{bottom:187.704161px;}
.y86{bottom:199.470000px;}
.y79{bottom:206.490000px;}
.y6e{bottom:206.535000px;}
.ya6{bottom:269.094053px;}
.y9c{bottom:269.094125px;}
.y54{bottom:269.094340px;}
.y87{bottom:280.290000px;}
.ya7{bottom:350.139359px;}
.y9d{bottom:350.139431px;}
.y55{bottom:350.139646px;}
.y88{bottom:361.155000px;}
.y8f{bottom:364.860000px;}
.ya8{bottom:431.529538px;}
.y9e{bottom:431.529610px;}
.y56{bottom:431.529825px;}
.y89{bottom:441.975000px;}
.y4f{bottom:465.090000px;}
.y4e{bottom:483.225000px;}
.y60{bottom:509.190000px;}
.ya9{bottom:512.747280px;}
.y9f{bottom:512.747353px;}
.y57{bottom:512.747567px;}
.y8a{bottom:522.825000px;}
.y4d{bottom:528.225000px;}
.y4a{bottom:552.210000px;}
.y4c{bottom:573.225000px;}
.yaa{bottom:593.965023px;}
.ya0{bottom:593.965095px;}
.y58{bottom:593.965310px;}
.y49{bottom:597.210000px;}
.y8b{bottom:603.645000px;}
.y5f{bottom:616.650000px;}
.y4b{bottom:618.225000px;}
.y8c{bottom:684.510000px;}
.y66{bottom:715.290000px;}
.y5e{bottom:724.110000px;}
.y8d{bottom:765.360000px;}
.y65{bottom:796.290000px;}
.y8e{bottom:846.180000px;}
.y64{bottom:877.290000px;}
.y5d{bottom:881.070000px;}
.y63{bottom:958.290000px;}
.y5c{bottom:963.690000px;}
.y5a{bottom:1032.300000px;}
.y48{bottom:1050.150000px;}
.y46{bottom:1055.085000px;}
.y44{bottom:1055.310000px;}
.y47{bottom:1094.250000px;}
.y45{bottom:1099.185000px;}
.y43{bottom:1100.310000px;}
.y5b{bottom:1133.070000px;}
.y83{bottom:1154.490000px;}
.y82{bottom:1198.590000px;}
.ya2{bottom:1226.064739px;}
.y98{bottom:1229.529658px;}
.y6{bottom:1236.960000px;}
.ya1{bottom:1261.545000px;}
.ya{bottom:1353.855000px;}
.yb0{bottom:1369.110000px;}
.yaf{bottom:1389.810000px;}
.y9{bottom:1434.855000px;}
.y8{bottom:1515.855000px;}
.y7{bottom:1596.855000px;}
.yad{bottom:1634.400000px;}
.yae{bottom:1676.415000px;}
.y3{bottom:1700.205000px;}
.yab{bottom:1721.415000px;}
.yac{bottom:1781.790000px;}
.y42{bottom:1856.595000px;}
.y27{bottom:1864.620000px;}
.y22{bottom:1893.030000px;}
.y41{bottom:1897.095000px;}
.y91{bottom:1903.830000px;}
.y26{bottom:1906.770000px;}
.y40{bottom:1937.595000px;}
.y84{bottom:1948.680000px;}
.y90{bottom:1948.830000px;}
.y3f{bottom:1978.095000px;}
.y3e{bottom:2018.595000px;}
.y97{bottom:2022.690000px;}
.y1a{bottom:2040.300000px;}
.y1b{bottom:2040.630000px;}
.y21{bottom:2040.660000px;}
.y3d{bottom:2059.095000px;}
.y3c{bottom:2099.595000px;}
.y3b{bottom:2140.095000px;}
.y3a{bottom:2180.595000px;}
.y20{bottom:2188.260000px;}
.y1d{bottom:2190.090000px;}
.y1c{bottom:2209.425000px;}
.y1f{bottom:2316.570000px;}
.y19{bottom:2326.140000px;}
.y1e{bottom:2361.570000px;}
.y24{bottom:2446.995000px;}
.y18{bottom:2464.845000px;}
.y23{bottom:2480.940000px;}
.y17{bottom:2505.345000px;}
.y25{bottom:2523.390000px;}
.y93{bottom:2541.270000px;}
.y92{bottom:2586.570000px;}
.y34{bottom:2589.150000px;}
.y94{bottom:2630.340000px;}
.y33{bottom:2670.150000px;}
.y32{bottom:2751.150000px;}
.y96{bottom:2773.260000px;}
.y95{bottom:2808.720000px;}
.y31{bottom:2832.150000px;}
.y15{bottom:2854.620000px;}
.y62{bottom:2892.090000px;}
.y30{bottom:2913.150000px;}
.y61{bottom:2937.090000px;}
.y50{bottom:2977.689414px;}
.y59{bottom:2977.854414px;}
.y2f{bottom:2994.150000px;}
.y6b{bottom:3012.225000px;}
.y6a{bottom:3014.385000px;}
.y16{bottom:3043.110000px;}
.y2e{bottom:3075.150000px;}
.y2d{bottom:3156.150000px;}
.y6c{bottom:3216.090000px;}
.y2c{bottom:3237.150000px;}
.y81{bottom:3302.640000px;}
.y76{bottom:3303.720000px;}
.y2b{bottom:3318.150000px;}
.y78{bottom:3324.240000px;}
.y6d{bottom:3325.320000px;}
.y7f{bottom:3339.540000px;}
.y74{bottom:3340.620000px;}
.y7d{bottom:3376.260000px;}
.y72{bottom:3377.340000px;}
.y14{bottom:3396.345000px;}
.y2a{bottom:3399.150000px;}
.y29{bottom:3480.195000px;}
.y7b{bottom:3501.930000px;}
.y70{bottom:3503.055000px;}
.y7c{bottom:3524.970000px;}
.y71{bottom:3526.095000px;}
.y28{bottom:3561.195000px;}
.y4{bottom:3643.275000px;}
.yb{bottom:3643.410000px;}
.y39{bottom:3687.630000px;}
.y38{bottom:3718.950000px;}
.y37{bottom:3751.350000px;}
.y69{bottom:3777.045000px;}
.y36{bottom:3783.750000px;}
.y5{bottom:3788.250000px;}
.y35{bottom:3816.150000px;}
.y68{bottom:3846.705000px;}
.y67{bottom:3957.480000px;}
.y2{bottom:4165.410000px;}
.y11{bottom:4348.515000px;}
.y10{bottom:4377.315000px;}
.y1{bottom:4408.455000px;}
.yc{bottom:4486.350000px;}
.y13{bottom:4549.650000px;}
.y12{bottom:4578.450000px;}
.yf{bottom:4699.470000px;}
.ye{bottom:4728.270000px;}
.yd{bottom:4886.745000px;}
.h24{height:57.164062px;}
.h13{height:59.996899px;}
.h12{height:60.501075px;}
.h25{height:60.855469px;}
.h1c{height:76.028203px;}
.he{height:78.943359px;}
.h5{height:80.329219px;}
.h8{height:82.995117px;}
.ha{height:85.746094px;}
.hb{height:89.564062px;}
.h7{height:93.603516px;}
.h1a{height:95.463984px;}
.h21{height:96.063984px;}
.h1d{height:99.068203px;}
.hf{height:106.835625px;}
.h14{height:116.842500px;}
.hc{height:118.901250px;}
.h9{height:119.015578px;}
.h15{height:119.812500px;}
.h16{height:119.937305px;}
.h1f{height:124.818047px;}
.h6{height:131.572266px;}
.hd{height:131.677523px;}
.h17{height:141.890273px;}
.h19{height:176.893242px;}
.h1e{height:201.780000px;}
.h4{height:218.582930px;}
.h10{height:226.361250px;}
.h18{height:270.527344px;}
.h1b{height:403.380000px;}
.h3{height:657.861328px;}
.h2{height:657.949043px;}
.h23{height:678.538889px;}
.h22{height:678.538970px;}
.h11{height:678.539213px;}
.h20{height:1063.980000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w6{width:173.160000px;}
.w4{width:173.340000px;}
.w5{width:195.480000px;}
.w3{width:886.598597px;}
.w7{width:1327.500000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.xd{left:-1798.995053px;}
.x11{left:-1753.890053px;}
.xc{left:-1750.215053px;}
.x10{left:-1705.110053px;}
.xb{left:-1638.105053px;}
.xa{left:-1515.420053px;}
.xf{left:-1508.655053px;}
.xe{left:-1459.875053px;}
.x22{left:-1102.245053px;}
.x14{left:-1053.615053px;}
.x12{left:-980.025053px;}
.x13{left:-901.440053px;}
.x0{left:0.000000px;}
.x39{left:5.865000px;}
.x45{left:32.250000px;}
.x44{left:73.980000px;}
.x4b{left:97.018212px;}
.x2b{left:102.710381px;}
.x4a{left:202.409588px;}
.x3{left:227.309947px;}
.x6{left:230.909947px;}
.x4{left:236.129947px;}
.x21{left:246.704947px;}
.x7{left:255.704947px;}
.x2a{left:262.953567px;}
.x2{left:273.029947px;}
.x23{left:278.999947px;}
.x1{left:291.569947px;}
.x8{left:316.544947px;}
.x32{left:391.139947px;}
.x24{left:428.324947px;}
.x33{left:513.614947px;}
.x1c{left:676.829947px;}
.x16{left:681.374947px;}
.x1a{left:696.029947px;}
.x18{left:715.244947px;}
.x20{left:721.829947px;}
.x1f{left:750.674947px;}
.x19{left:754.634947px;}
.x17{left:784.544947px;}
.x1d{left:790.454947px;}
.x1e{left:804.809947px;}
.x25{left:850.139947px;}
.x15{left:909.509947px;}
.x1b{left:913.679947px;}
.x34{left:935.714947px;}
.x27{left:964.184947px;}
.x26{left:1471.109947px;}
.x28{left:1483.049947px;}
.x2c{left:1783.886084px;}
.x37{left:1853.969947px;}
.x9{left:1863.614947px;}
.x2d{left:1867.064947px;}
.x2f{left:1898.894947px;}
.x30{left:1900.724947px;}
.x31{left:1954.724947px;}
.x43{left:1973.520000px;}
.x36{left:2082.209947px;}
.x4c{left:2138.039947px;}
.x49{left:2160.464947px;}
.x46{left:2184.689947px;}
.x4f{left:2188.514947px;}
.x38{left:2232.180000px;}
.x3a{left:2255.324947px;}
.x47{left:2292.914947px;}
.x4d{left:2358.719947px;}
.x3b{left:2405.340000px;}
.x3c{left:2427.659947px;}
.x3d{left:2433.599947px;}
.x48{left:2439.464947px;}
.x29{left:2512.241084px;}
.x51{left:2771.024947px;}
.x35{left:2883.989947px;}
.x50{left:2909.489947px;}
.x3e{left:2974.320000px;}
.x3f{left:2997.359947px;}
.x4e{left:3081.209947px;}
.x40{left:3147.300000px;}
.x41{left:3169.694947px;}
.x42{left:3175.634947px;}
.x2e{left:3789.254947px;}
.x5{left:3942.029947px;}
@media print{
.v5{vertical-align:-32.640000pt;}
.vb{vertical-align:-26.240000pt;}
.v2{vertical-align:-23.680000pt;}
.v1{vertical-align:-20.480000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:20.480000pt;}
.v3{vertical-align:28.800000pt;}
.v7{vertical-align:32.640000pt;}
.va{vertical-align:40.320000pt;}
.v8{vertical-align:48.000000pt;}
.v6{vertical-align:95.520000pt;}
.ls16{letter-spacing:-0.441949pt;}
.ls24{letter-spacing:-0.329067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.227733pt;}
.ls1c{letter-spacing:-0.225067pt;}
.ls18{letter-spacing:-0.199467pt;}
.ls21{letter-spacing:-0.173867pt;}
.ls14{letter-spacing:-0.153600pt;}
.ls17{letter-spacing:-0.100652pt;}
.ls20{letter-spacing:-0.030720pt;}
.ls13{letter-spacing:-0.014080pt;}
.ls10{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.015360pt;}
.ls23{letter-spacing:0.020480pt;}
.ls1d{letter-spacing:0.079467pt;}
.ls9{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.130667pt;}
.ls3{letter-spacing:0.169067pt;}
.lse{letter-spacing:0.171670pt;}
.ls4{letter-spacing:0.189440pt;}
.ls1a{letter-spacing:0.204800pt;}
.ls1b{letter-spacing:0.220267pt;}
.ls19{letter-spacing:0.240533pt;}
.ls0{letter-spacing:0.244480pt;}
.ls7{letter-spacing:0.261120pt;}
.ls22{letter-spacing:0.261333pt;}
.ls1e{letter-spacing:0.270933pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.304533pt;}
.ls15{letter-spacing:0.348267pt;}
.ls1{letter-spacing:0.463360pt;}
.lsf{letter-spacing:0.513479pt;}
.lsb{letter-spacing:35.623680pt;}
.ls8{letter-spacing:136.000000pt;}
.ls6{letter-spacing:275.027200pt;}
.ls5{letter-spacing:275.072000pt;}
.lsd{letter-spacing:2338.722987pt;}
.ws4{word-spacing:-85.120000pt;}
.ws2{word-spacing:-74.192640pt;}
.ws9{word-spacing:-53.376000pt;}
.ws1{word-spacing:-44.160000pt;}
.wse{word-spacing:-36.157547pt;}
.ws11{word-spacing:-36.049813pt;}
.ws13{word-spacing:-36.029547pt;}
.ws12{word-spacing:-36.014080pt;}
.wsc{word-spacing:-35.978347pt;}
.wsa{word-spacing:-35.809280pt;}
.ws1e{word-spacing:-35.635413pt;}
.ws14{word-spacing:-35.584213pt;}
.ws23{word-spacing:-28.881387pt;}
.ws1a{word-spacing:-28.750720pt;}
.ws6{word-spacing:-25.952000pt;}
.ws5{word-spacing:-25.824000pt;}
.ws7{word-spacing:-25.504000pt;}
.wsf{word-spacing:-24.944640pt;}
.wsb{word-spacing:-23.930240pt;}
.ws1b{word-spacing:-22.897280pt;}
.ws22{word-spacing:-19.109760pt;}
.ws3{word-spacing:-17.279360pt;}
.ws1c{word-spacing:-15.322240pt;}
.ws18{word-spacing:-2.137600pt;}
.ws19{word-spacing:-1.697280pt;}
.ws1d{word-spacing:-0.271360pt;}
.ws1f{word-spacing:-0.199360pt;}
.ws17{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.133120pt;}
.ws0{word-spacing:-0.084480pt;}
.ws24{word-spacing:-0.064000pt;}
.ws25{word-spacing:0.000000pt;}
.ws16{word-spacing:0.215040pt;}
.ws21{word-spacing:0.536747pt;}
.ws20{word-spacing:0.732160pt;}
.ws10{word-spacing:1.141120pt;}
.ws15{word-spacing:13.377920pt;}
.ws8{word-spacing:330.048000pt;}
._16{margin-left:-1953.356267pt;}
._5{margin-left:-20.016000pt;}
._12{margin-left:-15.629760pt;}
._13{margin-left:-14.492160pt;}
._6{margin-left:-12.320000pt;}
._9{margin-left:-7.829760pt;}
._11{margin-left:-6.874560pt;}
._14{margin-left:-5.771520pt;}
._1{margin-left:-4.730880pt;}
._d{margin-left:-3.352320pt;}
._0{margin-left:-2.400320pt;}
._4{margin-left:-1.120000pt;}
._3{width:1.120320pt;}
._8{width:2.016320pt;}
._7{width:2.976000pt;}
._10{width:4.090880pt;}
._f{width:36.880320pt;}
._15{width:38.456320pt;}
._2{width:82.880000pt;}
._17{width:307.682468pt;}
._b{width:450.536793pt;}
._c{width:451.763011pt;}
._e{width:928.655360pt;}
._18{width:1560.824533pt;}
._a{width:3232.982720pt;}
.fs7{font-size:56.960000pt;}
.fs9{font-size:64.000000pt;}
.fs14{font-size:71.040000pt;}
.fse{font-size:72.959935pt;}
.fsd{font-size:73.573043pt;}
.fs3{font-size:84.480000pt;}
.fs6{font-size:85.120000pt;}
.fsc{font-size:88.960000pt;}
.fs5{font-size:96.000000pt;}
.fs11{font-size:106.880000pt;}
.fsf{font-size:122.880000pt;}
.fs10{font-size:123.008000pt;}
.fsa{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fs4{font-size:160.000000pt;}
.fsb{font-size:160.128000pt;}
.fs13{font-size:213.120000pt;}
.fs2{font-size:266.880000pt;}
.fs12{font-size:320.000000pt;}
.fs1{font-size:800.000000pt;}
.fs0{font-size:800.106667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:71.662763pt;}
.y99{bottom:71.662819pt;}
.y51{bottom:71.662966pt;}
.y80{bottom:81.093333pt;}
.y75{bottom:81.120000pt;}
.y7e{bottom:81.146667pt;}
.y73{bottom:81.186667pt;}
.y77{bottom:81.213333pt;}
.ya4{bottom:94.807616pt;}
.y9a{bottom:94.807680pt;}
.y52{bottom:94.807871pt;}
.y85{bottom:105.440000pt;}
.y7a{bottom:157.946667pt;}
.y6f{bottom:157.986667pt;}
.ya5{bottom:166.847888pt;}
.y9b{bottom:166.847952pt;}
.y53{bottom:166.848143pt;}
.y86{bottom:177.306667pt;}
.y79{bottom:183.546667pt;}
.y6e{bottom:183.586667pt;}
.ya6{bottom:239.194714pt;}
.y9c{bottom:239.194778pt;}
.y54{bottom:239.194969pt;}
.y87{bottom:249.146667pt;}
.ya7{bottom:311.234985pt;}
.y9d{bottom:311.235050pt;}
.y55{bottom:311.235241pt;}
.y88{bottom:321.026667pt;}
.y8f{bottom:324.320000pt;}
.ya8{bottom:383.581811pt;}
.y9e{bottom:383.581876pt;}
.y56{bottom:383.582067pt;}
.y89{bottom:392.866667pt;}
.y4f{bottom:413.413333pt;}
.y4e{bottom:429.533333pt;}
.y60{bottom:452.613333pt;}
.ya9{bottom:455.775360pt;}
.y9f{bottom:455.775425pt;}
.y57{bottom:455.775616pt;}
.y8a{bottom:464.733333pt;}
.y4d{bottom:469.533333pt;}
.y4a{bottom:490.853333pt;}
.y4c{bottom:509.533333pt;}
.yaa{bottom:527.968909pt;}
.ya0{bottom:527.968973pt;}
.y58{bottom:527.969164pt;}
.y49{bottom:530.853333pt;}
.y8b{bottom:536.573333pt;}
.y5f{bottom:548.133333pt;}
.y4b{bottom:549.533333pt;}
.y8c{bottom:608.453333pt;}
.y66{bottom:635.813333pt;}
.y5e{bottom:643.653333pt;}
.y8d{bottom:680.320000pt;}
.y65{bottom:707.813333pt;}
.y8e{bottom:752.160000pt;}
.y64{bottom:779.813333pt;}
.y5d{bottom:783.173333pt;}
.y63{bottom:851.813333pt;}
.y5c{bottom:856.613333pt;}
.y5a{bottom:917.600000pt;}
.y48{bottom:933.466667pt;}
.y46{bottom:937.853333pt;}
.y44{bottom:938.053333pt;}
.y47{bottom:972.666667pt;}
.y45{bottom:977.053333pt;}
.y43{bottom:978.053333pt;}
.y5b{bottom:1007.173333pt;}
.y83{bottom:1026.213333pt;}
.y82{bottom:1065.413333pt;}
.ya2{bottom:1089.835323pt;}
.y98{bottom:1092.915251pt;}
.y6{bottom:1099.520000pt;}
.ya1{bottom:1121.373333pt;}
.ya{bottom:1203.426667pt;}
.yb0{bottom:1216.986667pt;}
.yaf{bottom:1235.386667pt;}
.y9{bottom:1275.426667pt;}
.y8{bottom:1347.426667pt;}
.y7{bottom:1419.426667pt;}
.yad{bottom:1452.800000pt;}
.yae{bottom:1490.146667pt;}
.y3{bottom:1511.293333pt;}
.yab{bottom:1530.146667pt;}
.yac{bottom:1583.813333pt;}
.y42{bottom:1650.306667pt;}
.y27{bottom:1657.440000pt;}
.y22{bottom:1682.693333pt;}
.y41{bottom:1686.306667pt;}
.y91{bottom:1692.293333pt;}
.y26{bottom:1694.906667pt;}
.y40{bottom:1722.306667pt;}
.y84{bottom:1732.160000pt;}
.y90{bottom:1732.293333pt;}
.y3f{bottom:1758.306667pt;}
.y3e{bottom:1794.306667pt;}
.y97{bottom:1797.946667pt;}
.y1a{bottom:1813.600000pt;}
.y1b{bottom:1813.893333pt;}
.y21{bottom:1813.920000pt;}
.y3d{bottom:1830.306667pt;}
.y3c{bottom:1866.306667pt;}
.y3b{bottom:1902.306667pt;}
.y3a{bottom:1938.306667pt;}
.y20{bottom:1945.120000pt;}
.y1d{bottom:1946.746667pt;}
.y1c{bottom:1963.933333pt;}
.y1f{bottom:2059.173333pt;}
.y19{bottom:2067.680000pt;}
.y1e{bottom:2099.173333pt;}
.y24{bottom:2175.106667pt;}
.y18{bottom:2190.973333pt;}
.y23{bottom:2205.280000pt;}
.y17{bottom:2226.973333pt;}
.y25{bottom:2243.013333pt;}
.y93{bottom:2258.906667pt;}
.y92{bottom:2299.173333pt;}
.y34{bottom:2301.466667pt;}
.y94{bottom:2338.080000pt;}
.y33{bottom:2373.466667pt;}
.y32{bottom:2445.466667pt;}
.y96{bottom:2465.120000pt;}
.y95{bottom:2496.640000pt;}
.y31{bottom:2517.466667pt;}
.y15{bottom:2537.440000pt;}
.y62{bottom:2570.746667pt;}
.y30{bottom:2589.466667pt;}
.y61{bottom:2610.746667pt;}
.y50{bottom:2646.835034pt;}
.y59{bottom:2646.981701pt;}
.y2f{bottom:2661.466667pt;}
.y6b{bottom:2677.533333pt;}
.y6a{bottom:2679.453333pt;}
.y16{bottom:2704.986667pt;}
.y2e{bottom:2733.466667pt;}
.y2d{bottom:2805.466667pt;}
.y6c{bottom:2858.746667pt;}
.y2c{bottom:2877.466667pt;}
.y81{bottom:2935.680000pt;}
.y76{bottom:2936.640000pt;}
.y2b{bottom:2949.466667pt;}
.y78{bottom:2954.880000pt;}
.y6d{bottom:2955.840000pt;}
.y7f{bottom:2968.480000pt;}
.y74{bottom:2969.440000pt;}
.y7d{bottom:3001.120000pt;}
.y72{bottom:3002.080000pt;}
.y14{bottom:3018.973333pt;}
.y2a{bottom:3021.466667pt;}
.y29{bottom:3093.506667pt;}
.y7b{bottom:3112.826667pt;}
.y70{bottom:3113.826667pt;}
.y7c{bottom:3133.306667pt;}
.y71{bottom:3134.306667pt;}
.y28{bottom:3165.506667pt;}
.y4{bottom:3238.466667pt;}
.yb{bottom:3238.586667pt;}
.y39{bottom:3277.893333pt;}
.y38{bottom:3305.733333pt;}
.y37{bottom:3334.533333pt;}
.y69{bottom:3357.373333pt;}
.y36{bottom:3363.333333pt;}
.y5{bottom:3367.333333pt;}
.y35{bottom:3392.133333pt;}
.y68{bottom:3419.293333pt;}
.y67{bottom:3517.760000pt;}
.y2{bottom:3702.586667pt;}
.y11{bottom:3865.346667pt;}
.y10{bottom:3890.946667pt;}
.y1{bottom:3918.626667pt;}
.yc{bottom:3987.866667pt;}
.y13{bottom:4044.133333pt;}
.y12{bottom:4069.733333pt;}
.yf{bottom:4177.306667pt;}
.ye{bottom:4202.906667pt;}
.yd{bottom:4343.773333pt;}
.h24{height:50.812500pt;}
.h13{height:53.330577pt;}
.h12{height:53.778733pt;}
.h25{height:54.093750pt;}
.h1c{height:67.580625pt;}
.he{height:70.171875pt;}
.h5{height:71.403750pt;}
.h8{height:73.773438pt;}
.ha{height:76.218750pt;}
.hb{height:79.612500pt;}
.h7{height:83.203125pt;}
.h1a{height:84.856875pt;}
.h21{height:85.390208pt;}
.h1d{height:88.060625pt;}
.hf{height:94.965000pt;}
.h14{height:103.860000pt;}
.hc{height:105.690000pt;}
.h9{height:105.791625pt;}
.h15{height:106.500000pt;}
.h16{height:106.610938pt;}
.h1f{height:110.949375pt;}
.h6{height:116.953125pt;}
.hd{height:117.046688pt;}
.h17{height:126.124688pt;}
.h19{height:157.238437pt;}
.h1e{height:179.360000pt;}
.h4{height:194.295938pt;}
.h10{height:201.210000pt;}
.h18{height:240.468750pt;}
.h1b{height:358.560000pt;}
.h3{height:584.765625pt;}
.h2{height:584.843594pt;}
.h23{height:603.145679pt;}
.h22{height:603.145751pt;}
.h11{height:603.145968pt;}
.h20{height:945.760000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w6{width:153.920000pt;}
.w4{width:154.080000pt;}
.w5{width:173.760000pt;}
.w3{width:788.087641pt;}
.w7{width:1180.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.xd{left:-1599.106714pt;}
.x11{left:-1559.013381pt;}
.xc{left:-1555.746714pt;}
.x10{left:-1515.653381pt;}
.xb{left:-1456.093381pt;}
.xa{left:-1347.040047pt;}
.xf{left:-1341.026714pt;}
.xe{left:-1297.666714pt;}
.x22{left:-979.773381pt;}
.x14{left:-936.546714pt;}
.x12{left:-871.133381pt;}
.x13{left:-801.280047pt;}
.x0{left:0.000000pt;}
.x39{left:5.213333pt;}
.x45{left:28.666667pt;}
.x44{left:65.760000pt;}
.x4b{left:86.238410pt;}
.x2b{left:91.298116pt;}
.x4a{left:179.919634pt;}
.x3{left:202.053286pt;}
.x6{left:205.253286pt;}
.x4{left:209.893286pt;}
.x21{left:219.293286pt;}
.x7{left:227.293286pt;}
.x2a{left:233.736504pt;}
.x2{left:242.693286pt;}
.x23{left:247.999953pt;}
.x1{left:259.173286pt;}
.x8{left:281.373286pt;}
.x32{left:347.679953pt;}
.x24{left:380.733286pt;}
.x33{left:456.546619pt;}
.x1c{left:601.626619pt;}
.x16{left:605.666619pt;}
.x1a{left:618.693286pt;}
.x18{left:635.773286pt;}
.x20{left:641.626619pt;}
.x1f{left:667.266619pt;}
.x19{left:670.786619pt;}
.x17{left:697.373286pt;}
.x1d{left:702.626619pt;}
.x1e{left:715.386619pt;}
.x25{left:755.679953pt;}
.x15{left:808.453286pt;}
.x1b{left:812.159953pt;}
.x34{left:831.746619pt;}
.x27{left:857.053286pt;}
.x26{left:1307.653286pt;}
.x28{left:1318.266619pt;}
.x2c{left:1585.676519pt;}
.x37{left:1647.973286pt;}
.x9{left:1656.546619pt;}
.x2d{left:1659.613286pt;}
.x2f{left:1687.906619pt;}
.x30{left:1689.533286pt;}
.x31{left:1737.533286pt;}
.x43{left:1754.240000pt;}
.x36{left:1850.853286pt;}
.x4c{left:1900.479953pt;}
.x49{left:1920.413286pt;}
.x46{left:1941.946619pt;}
.x4f{left:1945.346619pt;}
.x38{left:1984.160000pt;}
.x3a{left:2004.733286pt;}
.x47{left:2038.146619pt;}
.x4d{left:2096.639953pt;}
.x3b{left:2138.080000pt;}
.x3c{left:2157.919953pt;}
.x3d{left:2163.199953pt;}
.x48{left:2168.413286pt;}
.x29{left:2233.103186pt;}
.x51{left:2463.133286pt;}
.x35{left:2563.546619pt;}
.x50{left:2586.213286pt;}
.x3e{left:2643.840000pt;}
.x3f{left:2664.319953pt;}
.x4e{left:2738.853286pt;}
.x40{left:2797.600000pt;}
.x41{left:2817.506619pt;}
.x42{left:2822.786619pt;}
.x2e{left:3368.226619pt;}
.x5{left:3504.026619pt;}
}




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