
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_df03dea2c68dca1efee2f811.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_9fd1f87cca65454d99a30a49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_215430ff86cc4816e5379b0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_0bd91d9147621a4d4ecba9ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_0ce4824f087ece76f8ed2693.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.137667;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_ca55cff4e7cb44eb71641711.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_77e17baca296308a5db224e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_a634dd39419050299fffabd4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.883000;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_e54945a67f7baca7c14d43d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_39527cd8d7ec6144116ee78e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls11{letter-spacing:-1.197000px;}
.lsd{letter-spacing:-0.819000px;}
.ls8{letter-spacing:-0.693000px;}
.ls14{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.441000px;}
.lsa{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.315000px;}
.lse{letter-spacing:-0.189000px;}
.ls12{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.189000px;}
.ls4{letter-spacing:0.315000px;}
.ls9{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.567000px;}
.ls13{letter-spacing:1.701000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws60{word-spacing:-13.980000px;}
.ws61{word-spacing:-13.005000px;}
.ws5e{word-spacing:-1.701000px;}
.ws9{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.377000px;}
.ws68{word-spacing:-1.071000px;}
.ws43{word-spacing:-0.945000px;}
.ws32{word-spacing:-0.567000px;}
.ws27{word-spacing:-0.504000px;}
.ws45{word-spacing:-0.378000px;}
.ws11{word-spacing:-0.315000px;}
.ws6d{word-spacing:-0.216000px;}
.ws4f{word-spacing:-0.189000px;}
.ws12{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws30{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws5c{word-spacing:0.126000px;}
.wsa{word-spacing:0.180000px;}
.ws4a{word-spacing:0.189000px;}
.ws16{word-spacing:0.315000px;}
.ws17{word-spacing:0.378000px;}
.ws18{word-spacing:0.441000px;}
.ws52{word-spacing:0.630000px;}
.ws24{word-spacing:0.693000px;}
.ws54{word-spacing:0.819000px;}
.ws22{word-spacing:1.008000px;}
.ws6b{word-spacing:1.134000px;}
.ws56{word-spacing:1.197000px;}
.ws5a{word-spacing:1.260000px;}
.ws40{word-spacing:1.638000px;}
.ws42{word-spacing:1.701000px;}
.ws8{word-spacing:1.920000px;}
.wsc{word-spacing:2.400000px;}
.ws4e{word-spacing:2.646000px;}
.ws1f{word-spacing:2.709000px;}
.ws57{word-spacing:2.772000px;}
.ws1e{word-spacing:2.835000px;}
.ws67{word-spacing:2.898000px;}
.ws65{word-spacing:2.940000px;}
.ws3c{word-spacing:3.528000px;}
.ws47{word-spacing:3.969000px;}
.ws36{word-spacing:4.032000px;}
.ws37{word-spacing:4.095000px;}
.ws25{word-spacing:4.158000px;}
.ws39{word-spacing:4.347000px;}
.ws1c{word-spacing:4.473000px;}
.ws44{word-spacing:4.662000px;}
.ws19{word-spacing:4.914000px;}
.wsb{word-spacing:4.920000px;}
.ws41{word-spacing:5.040000px;}
.ws53{word-spacing:5.103000px;}
.ws23{word-spacing:5.355000px;}
.wsd{word-spacing:5.400000px;}
.ws66{word-spacing:5.796000px;}
.ws20{word-spacing:5.859000px;}
.wse{word-spacing:5.880000px;}
.ws34{word-spacing:5.922000px;}
.ws6a{word-spacing:6.237000px;}
.ws35{word-spacing:6.426000px;}
.ws3a{word-spacing:7.119000px;}
.ws64{word-spacing:7.260000px;}
.ws55{word-spacing:7.308000px;}
.ws58{word-spacing:8.190000px;}
.ws2a{word-spacing:9.261000px;}
.ws3d{word-spacing:9.576000px;}
.ws15{word-spacing:9.765000px;}
.ws1b{word-spacing:10.080000px;}
.ws28{word-spacing:10.395000px;}
.ws4c{word-spacing:10.584000px;}
.ws2c{word-spacing:10.710000px;}
.ws51{word-spacing:10.899000px;}
.ws59{word-spacing:11.088000px;}
.ws2d{word-spacing:11.151000px;}
.ws4d{word-spacing:11.277000px;}
.ws6c{word-spacing:11.340000px;}
.ws48{word-spacing:12.285000px;}
.ws5b{word-spacing:12.474000px;}
.ws13{word-spacing:12.663000px;}
.ws29{word-spacing:12.726000px;}
.ws1d{word-spacing:13.671000px;}
.ws2f{word-spacing:13.923000px;}
.ws3b{word-spacing:13.986000px;}
.ws3e{word-spacing:14.490000px;}
.ws2e{word-spacing:14.931000px;}
.ws4b{word-spacing:15.120000px;}
.ws3f{word-spacing:15.246000px;}
.ws69{word-spacing:15.498000px;}
.ws31{word-spacing:16.002000px;}
.ws21{word-spacing:16.128000px;}
.ws46{word-spacing:17.073000px;}
.ws50{word-spacing:17.262000px;}
.ws1a{word-spacing:17.514000px;}
.ws49{word-spacing:19.593000px;}
.ws10{word-spacing:19.971000px;}
.ws5d{word-spacing:22.302000px;}
.wsf{word-spacing:22.428000px;}
.ws26{word-spacing:25.515000px;}
.ws33{word-spacing:27.279000px;}
.ws2b{word-spacing:34.902000px;}
.ws14{word-spacing:46.872000px;}
.ws62{word-spacing:227.770200px;}
.ws6{word-spacing:364.686000px;}
.ws7{word-spacing:364.686600px;}
.ws38{word-spacing:6194.160000px;}
.ws5f{word-spacing:6199.128000px;}
.ws5{word-spacing:6201.864000px;}
._1c{margin-left:-15.433805px;}
._20{margin-left:-14.190902px;}
._1f{margin-left:-12.919198px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.004098px;}
._5{width:1.686000px;}
._6{width:3.378000px;}
._9{width:4.617302px;}
._d{width:6.053702px;}
._e{width:7.093800px;}
._1b{width:8.121298px;}
._b{width:9.177600px;}
._c{width:10.222195px;}
._11{width:11.292014px;}
._14{width:13.890898px;}
._19{width:15.121805px;}
._15{width:16.335007px;}
._10{width:17.950798px;}
._1a{width:19.083602px;}
._7{width:20.107505px;}
._8{width:21.344098px;}
._f{width:22.478400px;}
._a{width:23.917198px;}
._16{width:26.289900px;}
._13{width:27.998105px;}
._12{width:29.735400px;}
._1d{width:31.445700px;}
._18{width:32.575205px;}
._17{width:34.036210px;}
._21{width:36.132900px;}
._22{width:55.303800px;}
._1e{width:679.218902px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.ya6{bottom:47.834700px;}
.ya5{bottom:62.834700px;}
.y19c{bottom:95.839950px;}
.y79{bottom:95.860950px;}
.y112{bottom:95.913450px;}
.yc9{bottom:95.929200px;}
.y32{bottom:95.939700px;}
.ya3{bottom:95.944950px;}
.yf2{bottom:95.950200px;}
.y1a8{bottom:95.981700px;}
.y4e{bottom:96.065700px;}
.y19b{bottom:116.834700px;}
.y78{bottom:116.855700px;}
.y184{bottom:116.905950px;}
.y111{bottom:116.908200px;}
.yc8{bottom:116.923950px;}
.y31{bottom:116.934450px;}
.ya2{bottom:116.939700px;}
.yf1{bottom:116.944950px;}
.y1a7{bottom:116.976450px;}
.y4d{bottom:117.060450px;}
.y77{bottom:137.850450px;}
.y110{bottom:137.902950px;}
.y183{bottom:137.905200px;}
.yc7{bottom:137.918700px;}
.y30{bottom:137.929200px;}
.ya1{bottom:137.934450px;}
.yf0{bottom:137.939700px;}
.y1a6{bottom:137.971200px;}
.y4c{bottom:138.055200px;}
.y19a{bottom:158.834700px;}
.y76{bottom:158.845200px;}
.y15d{bottom:158.866200px;}
.y182{bottom:158.904450px;}
.yc6{bottom:158.913450px;}
.y2f{bottom:158.923950px;}
.ya0{bottom:158.929200px;}
.yef{bottom:158.934450px;}
.y1a5{bottom:158.965950px;}
.y4b{bottom:159.049950px;}
.y75{bottom:179.839950px;}
.y15c{bottom:179.865450px;}
.y181{bottom:179.903700px;}
.y10f{bottom:179.908200px;}
.y9f{bottom:179.923950px;}
.yee{bottom:179.929200px;}
.y1a4{bottom:179.960700px;}
.y4a{bottom:180.044700px;}
.y13a{bottom:180.081450px;}
.y74{bottom:200.834700px;}
.y15b{bottom:200.864700px;}
.y10e{bottom:200.902950px;}
.y9e{bottom:200.918700px;}
.yed{bottom:200.923950px;}
.y2e{bottom:200.929200px;}
.y1a3{bottom:200.955450px;}
.y49{bottom:201.039450px;}
.y139{bottom:201.076200px;}
.y15a{bottom:221.863950px;}
.y10d{bottom:221.897700px;}
.yc5{bottom:221.913450px;}
.yec{bottom:221.918700px;}
.y2d{bottom:221.923950px;}
.y1a2{bottom:221.950200px;}
.y199{bottom:221.965950px;}
.y138{bottom:222.070950px;}
.y73{bottom:242.834700px;}
.y10c{bottom:242.892450px;}
.y180{bottom:242.901450px;}
.yc4{bottom:242.908200px;}
.yeb{bottom:242.913450px;}
.y2c{bottom:242.918700px;}
.y9d{bottom:242.923950px;}
.y1a1{bottom:242.944950px;}
.y198{bottom:242.960700px;}
.y48{bottom:243.044700px;}
.y137{bottom:243.065700px;}
.y72{bottom:263.834700px;}
.y159{bottom:263.862450px;}
.y10b{bottom:263.887200px;}
.y17f{bottom:263.900700px;}
.yc3{bottom:263.902950px;}
.y2b{bottom:263.913450px;}
.y9c{bottom:263.918700px;}
.y1a0{bottom:263.939700px;}
.y197{bottom:263.955450px;}
.y47{bottom:264.039450px;}
.y136{bottom:264.060450px;}
.y158{bottom:284.861700px;}
.y10a{bottom:284.881950px;}
.yc2{bottom:284.897700px;}
.y17e{bottom:284.899950px;}
.y2a{bottom:284.908200px;}
.y9b{bottom:284.913450px;}
.yea{bottom:284.918700px;}
.y19f{bottom:284.934450px;}
.y196{bottom:284.950200px;}
.y46{bottom:285.034200px;}
.y135{bottom:285.055200px;}
.y157{bottom:305.860950px;}
.y109{bottom:305.876700px;}
.yc1{bottom:305.892450px;}
.y17d{bottom:305.899200px;}
.y29{bottom:305.902950px;}
.y9a{bottom:305.908200px;}
.ye9{bottom:305.913450px;}
.y19e{bottom:305.929200px;}
.y195{bottom:305.944950px;}
.y45{bottom:306.028950px;}
.y134{bottom:306.049950px;}
.y156{bottom:326.860200px;}
.y108{bottom:326.871450px;}
.yc0{bottom:326.887200px;}
.y28{bottom:326.897700px;}
.y17c{bottom:326.898450px;}
.y99{bottom:326.902950px;}
.ye8{bottom:326.908200px;}
.y19d{bottom:326.923950px;}
.y194{bottom:326.939700px;}
.y71{bottom:326.976450px;}
.y44{bottom:327.023700px;}
.y133{bottom:327.044700px;}
.y155{bottom:347.859450px;}
.y107{bottom:347.866200px;}
.ybf{bottom:347.881950px;}
.y27{bottom:347.892450px;}
.y98{bottom:347.897700px;}
.ye7{bottom:347.902950px;}
.y193{bottom:347.934450px;}
.y70{bottom:347.971200px;}
.y43{bottom:348.018450px;}
.y132{bottom:348.039450px;}
.y7{bottom:352.018200px;}
.y154{bottom:368.858700px;}
.y106{bottom:368.860950px;}
.ybe{bottom:368.876700px;}
.y26{bottom:368.887200px;}
.y97{bottom:368.892450px;}
.y17b{bottom:368.896950px;}
.ye6{bottom:368.897700px;}
.y192{bottom:368.929200px;}
.y6f{bottom:368.965950px;}
.y42{bottom:369.013200px;}
.y131{bottom:369.034200px;}
.y9{bottom:381.914100px;}
.ybd{bottom:389.871450px;}
.y25{bottom:389.881950px;}
.y96{bottom:389.887200px;}
.ye5{bottom:389.892450px;}
.y17a{bottom:389.896200px;}
.y191{bottom:389.923950px;}
.y6e{bottom:389.960700px;}
.y41{bottom:390.007950px;}
.y130{bottom:390.028950px;}
.y153{bottom:410.857200px;}
.ybc{bottom:410.866200px;}
.y24{bottom:410.876700px;}
.y95{bottom:410.881950px;}
.ye4{bottom:410.887200px;}
.y179{bottom:410.895450px;}
.y190{bottom:410.918700px;}
.y6d{bottom:410.955450px;}
.y40{bottom:411.002700px;}
.y12f{bottom:411.023700px;}
.y152{bottom:431.856450px;}
.ybb{bottom:431.860950px;}
.y94{bottom:431.876700px;}
.ye3{bottom:431.881950px;}
.y18f{bottom:431.913450px;}
.y3f{bottom:431.997450px;}
.y12e{bottom:432.018450px;}
.y6{bottom:445.018200px;}
.yba{bottom:452.855700px;}
.y93{bottom:452.871450px;}
.ye2{bottom:452.876700px;}
.y23{bottom:452.881950px;}
.y178{bottom:452.893950px;}
.y18e{bottom:452.908200px;}
.y6c{bottom:452.960700px;}
.y3e{bottom:452.992200px;}
.y12d{bottom:453.013200px;}
.yb9{bottom:473.850450px;}
.y151{bottom:473.854950px;}
.y92{bottom:473.866200px;}
.ye1{bottom:473.871450px;}
.y22{bottom:473.876700px;}
.y177{bottom:473.893200px;}
.y18d{bottom:473.902950px;}
.y6b{bottom:473.955450px;}
.y3d{bottom:473.986950px;}
.y12c{bottom:474.007950px;}
.yb8{bottom:494.845200px;}
.y150{bottom:494.854200px;}
.y91{bottom:494.860950px;}
.ye0{bottom:494.866200px;}
.y21{bottom:494.871450px;}
.y176{bottom:494.892450px;}
.y18c{bottom:494.897700px;}
.y6a{bottom:494.950200px;}
.y3c{bottom:494.981700px;}
.yb7{bottom:515.839950px;}
.y90{bottom:515.855700px;}
.y20{bottom:515.866200px;}
.y175{bottom:515.891700px;}
.y18b{bottom:515.892450px;}
.y69{bottom:515.944950px;}
.y3b{bottom:515.976450px;}
.y12b{bottom:516.013200px;}
.yb6{bottom:536.834700px;}
.y8f{bottom:536.850450px;}
.y14f{bottom:536.852700px;}
.y1f{bottom:536.860950px;}
.ydf{bottom:536.871450px;}
.y18a{bottom:536.887200px;}
.y174{bottom:536.890950px;}
.y68{bottom:536.939700px;}
.y3a{bottom:536.971200px;}
.y12a{bottom:537.007950px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y8e{bottom:557.845200px;}
.y14e{bottom:557.851950px;}
.y1e{bottom:557.855700px;}
.yde{bottom:557.866200px;}
.y189{bottom:557.881950px;}
.y173{bottom:557.890200px;}
.y67{bottom:557.934450px;}
.y39{bottom:557.965950px;}
.y129{bottom:558.002700px;}
.yb5{bottom:578.834700px;}
.y8d{bottom:578.839950px;}
.y1d{bottom:578.850450px;}
.ydd{bottom:578.860950px;}
.y188{bottom:578.876700px;}
.y66{bottom:578.929200px;}
.y38{bottom:578.960700px;}
.y128{bottom:578.997450px;}
.y8c{bottom:599.834700px;}
.y1c{bottom:599.845200px;}
.y14d{bottom:599.850450px;}
.ydc{bottom:599.855700px;}
.y187{bottom:599.871450px;}
.y172{bottom:599.888700px;}
.y65{bottom:599.923950px;}
.y37{bottom:599.955450px;}
.y127{bottom:599.992200px;}
.y1b{bottom:620.839950px;}
.y14c{bottom:620.849700px;}
.y186{bottom:620.866200px;}
.y171{bottom:620.887950px;}
.y64{bottom:620.918700px;}
.y126{bottom:620.986950px;}
.y4{bottom:631.018200px;}
.y1a{bottom:641.834700px;}
.y14b{bottom:641.848950px;}
.ydb{bottom:641.860950px;}
.y170{bottom:641.887200px;}
.y63{bottom:641.913450px;}
.y36{bottom:641.960700px;}
.y125{bottom:641.981700px;}
.y8b{bottom:662.834700px;}
.y14a{bottom:662.848200px;}
.yda{bottom:662.855700px;}
.y16f{bottom:662.886450px;}
.y62{bottom:662.908200px;}
.yb4{bottom:662.923950px;}
.y35{bottom:662.955450px;}
.y124{bottom:662.976450px;}
.y105{bottom:663.028950px;}
.y19{bottom:683.834700px;}
.y149{bottom:683.847450px;}
.yd9{bottom:683.850450px;}
.y16e{bottom:683.885700px;}
.y61{bottom:683.902950px;}
.yb3{bottom:683.918700px;}
.y34{bottom:683.950200px;}
.y123{bottom:683.971200px;}
.y104{bottom:684.023700px;}
.y18{bottom:704.834700px;}
.yd8{bottom:704.845200px;}
.y148{bottom:704.846700px;}
.y16d{bottom:704.884950px;}
.y60{bottom:704.897700px;}
.yb2{bottom:704.913450px;}
.y33{bottom:704.944950px;}
.y122{bottom:704.965950px;}
.y103{bottom:705.018450px;}
.yd7{bottom:725.839950px;}
.y16c{bottom:725.884200px;}
.y5f{bottom:725.892450px;}
.yb1{bottom:725.908200px;}
.y8a{bottom:725.939700px;}
.y121{bottom:725.960700px;}
.y102{bottom:726.013200px;}
.yd6{bottom:746.834700px;}
.y147{bottom:746.845200px;}
.yb0{bottom:746.902950px;}
.y89{bottom:746.934450px;}
.y120{bottom:746.955450px;}
.y101{bottom:747.007950px;}
.y3{bottom:751.738650px;}
.y146{bottom:767.844450px;}
.y16b{bottom:767.882700px;}
.y5e{bottom:767.897700px;}
.y88{bottom:767.929200px;}
.y100{bottom:768.002700px;}
.y17{bottom:788.834700px;}
.y145{bottom:788.843700px;}
.y16a{bottom:788.881950px;}
.y5d{bottom:788.892450px;}
.y87{bottom:788.923950px;}
.y11f{bottom:788.960700px;}
.yff{bottom:788.997450px;}
.y2{bottom:791.931000px;}
.y16{bottom:809.834700px;}
.y144{bottom:809.842950px;}
.y169{bottom:809.881200px;}
.y5c{bottom:809.887200px;}
.y86{bottom:809.918700px;}
.y11e{bottom:809.955450px;}
.yfe{bottom:809.992200px;}
.y15{bottom:830.834700px;}
.y168{bottom:830.880450px;}
.y5b{bottom:830.881950px;}
.y85{bottom:830.913450px;}
.y11d{bottom:830.950200px;}
.yfd{bottom:830.986950px;}
.y14{bottom:851.834700px;}
.y143{bottom:851.841450px;}
.y5a{bottom:851.876700px;}
.y167{bottom:851.879700px;}
.yaf{bottom:851.892450px;}
.y84{bottom:851.908200px;}
.yfc{bottom:851.981700px;}
.yd5{bottom:851.992200px;}
.y1{bottom:859.112850px;}
.y13{bottom:872.834700px;}
.y142{bottom:872.840700px;}
.y59{bottom:872.871450px;}
.y166{bottom:872.878950px;}
.yae{bottom:872.887200px;}
.y11c{bottom:872.955450px;}
.yd4{bottom:872.986950px;}
.y12{bottom:893.834700px;}
.y141{bottom:893.839950px;}
.y58{bottom:893.866200px;}
.yad{bottom:893.881950px;}
.y83{bottom:893.913450px;}
.y11b{bottom:893.950200px;}
.yd3{bottom:893.981700px;}
.yfb{bottom:893.986950px;}
.y11{bottom:914.834700px;}
.y140{bottom:914.839200px;}
.y57{bottom:914.860950px;}
.yac{bottom:914.876700px;}
.y165{bottom:914.877450px;}
.y82{bottom:914.908200px;}
.y11a{bottom:914.944950px;}
.yd2{bottom:914.976450px;}
.yfa{bottom:914.981700px;}
.y10{bottom:935.834700px;}
.y13f{bottom:935.838450px;}
.y56{bottom:935.855700px;}
.yab{bottom:935.871450px;}
.y164{bottom:935.876700px;}
.y81{bottom:935.902950px;}
.y119{bottom:935.939700px;}
.yd1{bottom:935.971200px;}
.yf9{bottom:935.976450px;}
.yf{bottom:956.834700px;}
.y13e{bottom:956.837700px;}
.y55{bottom:956.850450px;}
.yaa{bottom:956.866200px;}
.y163{bottom:956.875950px;}
.y80{bottom:956.897700px;}
.y118{bottom:956.934450px;}
.yd0{bottom:956.965950px;}
.yf8{bottom:956.971200px;}
.y185{bottom:977.834700px;}
.y54{bottom:977.845200px;}
.ya9{bottom:977.860950px;}
.y162{bottom:977.875200px;}
.y7f{bottom:977.892450px;}
.ycf{bottom:977.960700px;}
.yf7{bottom:977.965950px;}
.y13d{bottom:998.836200px;}
.ya8{bottom:998.855700px;}
.y7e{bottom:998.887200px;}
.y117{bottom:998.939700px;}
.yce{bottom:998.955450px;}
.ye{bottom:1007.834700px;}
.y13c{bottom:1019.835450px;}
.y53{bottom:1019.850450px;}
.y161{bottom:1019.873700px;}
.y7d{bottom:1019.881950px;}
.y116{bottom:1019.934450px;}
.ycd{bottom:1019.950200px;}
.yf6{bottom:1019.971200px;}
.yd{bottom:1034.834700px;}
.y13b{bottom:1040.834700px;}
.y52{bottom:1040.845200px;}
.y160{bottom:1040.872950px;}
.y7c{bottom:1040.876700px;}
.y115{bottom:1040.929200px;}
.ycc{bottom:1040.944950px;}
.yf5{bottom:1040.965950px;}
.yc{bottom:1061.834700px;}
.y51{bottom:1061.839950px;}
.y7b{bottom:1061.871450px;}
.y15f{bottom:1061.872200px;}
.y114{bottom:1061.923950px;}
.ycb{bottom:1061.939700px;}
.yf4{bottom:1061.960700px;}
.y50{bottom:1082.834700px;}
.y7a{bottom:1082.866200px;}
.y15e{bottom:1082.871450px;}
.y113{bottom:1082.918700px;}
.yca{bottom:1082.934450px;}
.yf3{bottom:1082.955450px;}
.yb{bottom:1092.394200px;}
.y4f{bottom:1187.834100px;}
.ya4{bottom:1187.834700px;}
.h8{height:44.400000px;}
.hb{height:45.171000px;}
.he{height:46.614000px;}
.hc{height:50.526000px;}
.h7{height:51.768000px;}
.ha{height:54.840000px;}
.h9{height:71.040000px;}
.hd{height:71.041800px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x9{left:177.437550px;}
.x8{left:201.812550px;}
.x2{left:223.228350px;}
.xa{left:247.562550px;}
.x5{left:467.717100px;}
.xb{left:484.710750px;}
.x6{left:977.952750px;}
.xc{left:979.675800px;}
.xd{left:1029.790800px;}
.x7{left:1360.630500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls11{letter-spacing:-1.064000pt;}
.lsd{letter-spacing:-0.728000pt;}
.ls8{letter-spacing:-0.616000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.392000pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.280000pt;}
.lse{letter-spacing:-0.168000pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.168000pt;}
.ls4{letter-spacing:0.280000pt;}
.ls9{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.504000pt;}
.ls13{letter-spacing:1.512000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws60{word-spacing:-12.426667pt;}
.ws61{word-spacing:-11.560000pt;}
.ws5e{word-spacing:-1.512000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.224000pt;}
.ws68{word-spacing:-0.952000pt;}
.ws43{word-spacing:-0.840000pt;}
.ws32{word-spacing:-0.504000pt;}
.ws27{word-spacing:-0.448000pt;}
.ws45{word-spacing:-0.336000pt;}
.ws11{word-spacing:-0.280000pt;}
.ws6d{word-spacing:-0.192000pt;}
.ws4f{word-spacing:-0.168000pt;}
.ws12{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws30{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws5c{word-spacing:0.112000pt;}
.wsa{word-spacing:0.160000pt;}
.ws4a{word-spacing:0.168000pt;}
.ws16{word-spacing:0.280000pt;}
.ws17{word-spacing:0.336000pt;}
.ws18{word-spacing:0.392000pt;}
.ws52{word-spacing:0.560000pt;}
.ws24{word-spacing:0.616000pt;}
.ws54{word-spacing:0.728000pt;}
.ws22{word-spacing:0.896000pt;}
.ws6b{word-spacing:1.008000pt;}
.ws56{word-spacing:1.064000pt;}
.ws5a{word-spacing:1.120000pt;}
.ws40{word-spacing:1.456000pt;}
.ws42{word-spacing:1.512000pt;}
.ws8{word-spacing:1.706667pt;}
.wsc{word-spacing:2.133333pt;}
.ws4e{word-spacing:2.352000pt;}
.ws1f{word-spacing:2.408000pt;}
.ws57{word-spacing:2.464000pt;}
.ws1e{word-spacing:2.520000pt;}
.ws67{word-spacing:2.576000pt;}
.ws65{word-spacing:2.613333pt;}
.ws3c{word-spacing:3.136000pt;}
.ws47{word-spacing:3.528000pt;}
.ws36{word-spacing:3.584000pt;}
.ws37{word-spacing:3.640000pt;}
.ws25{word-spacing:3.696000pt;}
.ws39{word-spacing:3.864000pt;}
.ws1c{word-spacing:3.976000pt;}
.ws44{word-spacing:4.144000pt;}
.ws19{word-spacing:4.368000pt;}
.wsb{word-spacing:4.373333pt;}
.ws41{word-spacing:4.480000pt;}
.ws53{word-spacing:4.536000pt;}
.ws23{word-spacing:4.760000pt;}
.wsd{word-spacing:4.800000pt;}
.ws66{word-spacing:5.152000pt;}
.ws20{word-spacing:5.208000pt;}
.wse{word-spacing:5.226667pt;}
.ws34{word-spacing:5.264000pt;}
.ws6a{word-spacing:5.544000pt;}
.ws35{word-spacing:5.712000pt;}
.ws3a{word-spacing:6.328000pt;}
.ws64{word-spacing:6.453333pt;}
.ws55{word-spacing:6.496000pt;}
.ws58{word-spacing:7.280000pt;}
.ws2a{word-spacing:8.232000pt;}
.ws3d{word-spacing:8.512000pt;}
.ws15{word-spacing:8.680000pt;}
.ws1b{word-spacing:8.960000pt;}
.ws28{word-spacing:9.240000pt;}
.ws4c{word-spacing:9.408000pt;}
.ws2c{word-spacing:9.520000pt;}
.ws51{word-spacing:9.688000pt;}
.ws59{word-spacing:9.856000pt;}
.ws2d{word-spacing:9.912000pt;}
.ws4d{word-spacing:10.024000pt;}
.ws6c{word-spacing:10.080000pt;}
.ws48{word-spacing:10.920000pt;}
.ws5b{word-spacing:11.088000pt;}
.ws13{word-spacing:11.256000pt;}
.ws29{word-spacing:11.312000pt;}
.ws1d{word-spacing:12.152000pt;}
.ws2f{word-spacing:12.376000pt;}
.ws3b{word-spacing:12.432000pt;}
.ws3e{word-spacing:12.880000pt;}
.ws2e{word-spacing:13.272000pt;}
.ws4b{word-spacing:13.440000pt;}
.ws3f{word-spacing:13.552000pt;}
.ws69{word-spacing:13.776000pt;}
.ws31{word-spacing:14.224000pt;}
.ws21{word-spacing:14.336000pt;}
.ws46{word-spacing:15.176000pt;}
.ws50{word-spacing:15.344000pt;}
.ws1a{word-spacing:15.568000pt;}
.ws49{word-spacing:17.416000pt;}
.ws10{word-spacing:17.752000pt;}
.ws5d{word-spacing:19.824000pt;}
.wsf{word-spacing:19.936000pt;}
.ws26{word-spacing:22.680000pt;}
.ws33{word-spacing:24.248000pt;}
.ws2b{word-spacing:31.024000pt;}
.ws14{word-spacing:41.664000pt;}
.ws62{word-spacing:202.462400pt;}
.ws6{word-spacing:324.165333pt;}
.ws7{word-spacing:324.165867pt;}
.ws38{word-spacing:5505.920000pt;}
.ws5f{word-spacing:5510.336000pt;}
.ws5{word-spacing:5512.768000pt;}
._1c{margin-left:-13.718938pt;}
._20{margin-left:-12.614135pt;}
._1f{margin-left:-11.483731pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.892531pt;}
._5{width:1.498667pt;}
._6{width:3.002667pt;}
._9{width:4.104269pt;}
._d{width:5.381069pt;}
._e{width:6.305600pt;}
._1b{width:7.218931pt;}
._b{width:8.157867pt;}
._c{width:9.086396pt;}
._11{width:10.037346pt;}
._14{width:12.347465pt;}
._19{width:13.441604pt;}
._15{width:14.520006pt;}
._10{width:15.956265pt;}
._1a{width:16.963202pt;}
._7{width:17.873338pt;}
._8{width:18.972531pt;}
._f{width:19.980800pt;}
._a{width:21.259731pt;}
._16{width:23.368800pt;}
._13{width:24.887204pt;}
._12{width:26.431467pt;}
._1d{width:27.951733pt;}
._18{width:28.955738pt;}
._17{width:30.254409pt;}
._21{width:32.118133pt;}
._22{width:49.158933pt;}
._1e{width:603.750135pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.ya6{bottom:42.519733pt;}
.ya5{bottom:55.853067pt;}
.y19c{bottom:85.191067pt;}
.y79{bottom:85.209733pt;}
.y112{bottom:85.256400pt;}
.yc9{bottom:85.270400pt;}
.y32{bottom:85.279733pt;}
.ya3{bottom:85.284400pt;}
.yf2{bottom:85.289067pt;}
.y1a8{bottom:85.317067pt;}
.y4e{bottom:85.391733pt;}
.y19b{bottom:103.853067pt;}
.y78{bottom:103.871733pt;}
.y184{bottom:103.916400pt;}
.y111{bottom:103.918400pt;}
.yc8{bottom:103.932400pt;}
.y31{bottom:103.941733pt;}
.ya2{bottom:103.946400pt;}
.yf1{bottom:103.951067pt;}
.y1a7{bottom:103.979067pt;}
.y4d{bottom:104.053733pt;}
.y77{bottom:122.533733pt;}
.y110{bottom:122.580400pt;}
.y183{bottom:122.582400pt;}
.yc7{bottom:122.594400pt;}
.y30{bottom:122.603733pt;}
.ya1{bottom:122.608400pt;}
.yf0{bottom:122.613067pt;}
.y1a6{bottom:122.641067pt;}
.y4c{bottom:122.715733pt;}
.y19a{bottom:141.186400pt;}
.y76{bottom:141.195733pt;}
.y15d{bottom:141.214400pt;}
.y182{bottom:141.248400pt;}
.yc6{bottom:141.256400pt;}
.y2f{bottom:141.265733pt;}
.ya0{bottom:141.270400pt;}
.yef{bottom:141.275067pt;}
.y1a5{bottom:141.303067pt;}
.y4b{bottom:141.377733pt;}
.y75{bottom:159.857733pt;}
.y15c{bottom:159.880400pt;}
.y181{bottom:159.914400pt;}
.y10f{bottom:159.918400pt;}
.y9f{bottom:159.932400pt;}
.yee{bottom:159.937067pt;}
.y1a4{bottom:159.965067pt;}
.y4a{bottom:160.039733pt;}
.y13a{bottom:160.072400pt;}
.y74{bottom:178.519733pt;}
.y15b{bottom:178.546400pt;}
.y10e{bottom:178.580400pt;}
.y9e{bottom:178.594400pt;}
.yed{bottom:178.599067pt;}
.y2e{bottom:178.603733pt;}
.y1a3{bottom:178.627067pt;}
.y49{bottom:178.701733pt;}
.y139{bottom:178.734400pt;}
.y15a{bottom:197.212400pt;}
.y10d{bottom:197.242400pt;}
.yc5{bottom:197.256400pt;}
.yec{bottom:197.261067pt;}
.y2d{bottom:197.265733pt;}
.y1a2{bottom:197.289067pt;}
.y199{bottom:197.303067pt;}
.y138{bottom:197.396400pt;}
.y73{bottom:215.853067pt;}
.y10c{bottom:215.904400pt;}
.y180{bottom:215.912400pt;}
.yc4{bottom:215.918400pt;}
.yeb{bottom:215.923067pt;}
.y2c{bottom:215.927733pt;}
.y9d{bottom:215.932400pt;}
.y1a1{bottom:215.951067pt;}
.y198{bottom:215.965067pt;}
.y48{bottom:216.039733pt;}
.y137{bottom:216.058400pt;}
.y72{bottom:234.519733pt;}
.y159{bottom:234.544400pt;}
.y10b{bottom:234.566400pt;}
.y17f{bottom:234.578400pt;}
.yc3{bottom:234.580400pt;}
.y2b{bottom:234.589733pt;}
.y9c{bottom:234.594400pt;}
.y1a0{bottom:234.613067pt;}
.y197{bottom:234.627067pt;}
.y47{bottom:234.701733pt;}
.y136{bottom:234.720400pt;}
.y158{bottom:253.210400pt;}
.y10a{bottom:253.228400pt;}
.yc2{bottom:253.242400pt;}
.y17e{bottom:253.244400pt;}
.y2a{bottom:253.251733pt;}
.y9b{bottom:253.256400pt;}
.yea{bottom:253.261067pt;}
.y19f{bottom:253.275067pt;}
.y196{bottom:253.289067pt;}
.y46{bottom:253.363733pt;}
.y135{bottom:253.382400pt;}
.y157{bottom:271.876400pt;}
.y109{bottom:271.890400pt;}
.yc1{bottom:271.904400pt;}
.y17d{bottom:271.910400pt;}
.y29{bottom:271.913733pt;}
.y9a{bottom:271.918400pt;}
.ye9{bottom:271.923067pt;}
.y19e{bottom:271.937067pt;}
.y195{bottom:271.951067pt;}
.y45{bottom:272.025733pt;}
.y134{bottom:272.044400pt;}
.y156{bottom:290.542400pt;}
.y108{bottom:290.552400pt;}
.yc0{bottom:290.566400pt;}
.y28{bottom:290.575733pt;}
.y17c{bottom:290.576400pt;}
.y99{bottom:290.580400pt;}
.ye8{bottom:290.585067pt;}
.y19d{bottom:290.599067pt;}
.y194{bottom:290.613067pt;}
.y71{bottom:290.645733pt;}
.y44{bottom:290.687733pt;}
.y133{bottom:290.706400pt;}
.y155{bottom:309.208400pt;}
.y107{bottom:309.214400pt;}
.ybf{bottom:309.228400pt;}
.y27{bottom:309.237733pt;}
.y98{bottom:309.242400pt;}
.ye7{bottom:309.247067pt;}
.y193{bottom:309.275067pt;}
.y70{bottom:309.307733pt;}
.y43{bottom:309.349733pt;}
.y132{bottom:309.368400pt;}
.y7{bottom:312.905067pt;}
.y154{bottom:327.874400pt;}
.y106{bottom:327.876400pt;}
.ybe{bottom:327.890400pt;}
.y26{bottom:327.899733pt;}
.y97{bottom:327.904400pt;}
.y17b{bottom:327.908400pt;}
.ye6{bottom:327.909067pt;}
.y192{bottom:327.937067pt;}
.y6f{bottom:327.969733pt;}
.y42{bottom:328.011733pt;}
.y131{bottom:328.030400pt;}
.y9{bottom:339.479200pt;}
.ybd{bottom:346.552400pt;}
.y25{bottom:346.561733pt;}
.y96{bottom:346.566400pt;}
.ye5{bottom:346.571067pt;}
.y17a{bottom:346.574400pt;}
.y191{bottom:346.599067pt;}
.y6e{bottom:346.631733pt;}
.y41{bottom:346.673733pt;}
.y130{bottom:346.692400pt;}
.y153{bottom:365.206400pt;}
.ybc{bottom:365.214400pt;}
.y24{bottom:365.223733pt;}
.y95{bottom:365.228400pt;}
.ye4{bottom:365.233067pt;}
.y179{bottom:365.240400pt;}
.y190{bottom:365.261067pt;}
.y6d{bottom:365.293733pt;}
.y40{bottom:365.335733pt;}
.y12f{bottom:365.354400pt;}
.y152{bottom:383.872400pt;}
.ybb{bottom:383.876400pt;}
.y94{bottom:383.890400pt;}
.ye3{bottom:383.895067pt;}
.y18f{bottom:383.923067pt;}
.y3f{bottom:383.997733pt;}
.y12e{bottom:384.016400pt;}
.y6{bottom:395.571733pt;}
.yba{bottom:402.538400pt;}
.y93{bottom:402.552400pt;}
.ye2{bottom:402.557067pt;}
.y23{bottom:402.561733pt;}
.y178{bottom:402.572400pt;}
.y18e{bottom:402.585067pt;}
.y6c{bottom:402.631733pt;}
.y3e{bottom:402.659733pt;}
.y12d{bottom:402.678400pt;}
.yb9{bottom:421.200400pt;}
.y151{bottom:421.204400pt;}
.y92{bottom:421.214400pt;}
.ye1{bottom:421.219067pt;}
.y22{bottom:421.223733pt;}
.y177{bottom:421.238400pt;}
.y18d{bottom:421.247067pt;}
.y6b{bottom:421.293733pt;}
.y3d{bottom:421.321733pt;}
.y12c{bottom:421.340400pt;}
.yb8{bottom:439.862400pt;}
.y150{bottom:439.870400pt;}
.y91{bottom:439.876400pt;}
.ye0{bottom:439.881067pt;}
.y21{bottom:439.885733pt;}
.y176{bottom:439.904400pt;}
.y18c{bottom:439.909067pt;}
.y6a{bottom:439.955733pt;}
.y3c{bottom:439.983733pt;}
.yb7{bottom:458.524400pt;}
.y90{bottom:458.538400pt;}
.y20{bottom:458.547733pt;}
.y175{bottom:458.570400pt;}
.y18b{bottom:458.571067pt;}
.y69{bottom:458.617733pt;}
.y3b{bottom:458.645733pt;}
.y12b{bottom:458.678400pt;}
.yb6{bottom:477.186400pt;}
.y8f{bottom:477.200400pt;}
.y14f{bottom:477.202400pt;}
.y1f{bottom:477.209733pt;}
.ydf{bottom:477.219067pt;}
.y18a{bottom:477.233067pt;}
.y174{bottom:477.236400pt;}
.y68{bottom:477.279733pt;}
.y3a{bottom:477.307733pt;}
.y12a{bottom:477.340400pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y8e{bottom:495.862400pt;}
.y14e{bottom:495.868400pt;}
.y1e{bottom:495.871733pt;}
.yde{bottom:495.881067pt;}
.y189{bottom:495.895067pt;}
.y173{bottom:495.902400pt;}
.y67{bottom:495.941733pt;}
.y39{bottom:495.969733pt;}
.y129{bottom:496.002400pt;}
.yb5{bottom:514.519733pt;}
.y8d{bottom:514.524400pt;}
.y1d{bottom:514.533733pt;}
.ydd{bottom:514.543067pt;}
.y188{bottom:514.557067pt;}
.y66{bottom:514.603733pt;}
.y38{bottom:514.631733pt;}
.y128{bottom:514.664400pt;}
.y8c{bottom:533.186400pt;}
.y1c{bottom:533.195733pt;}
.y14d{bottom:533.200400pt;}
.ydc{bottom:533.205067pt;}
.y187{bottom:533.219067pt;}
.y172{bottom:533.234400pt;}
.y65{bottom:533.265733pt;}
.y37{bottom:533.293733pt;}
.y127{bottom:533.326400pt;}
.y1b{bottom:551.857733pt;}
.y14c{bottom:551.866400pt;}
.y186{bottom:551.881067pt;}
.y171{bottom:551.900400pt;}
.y64{bottom:551.927733pt;}
.y126{bottom:551.988400pt;}
.y4{bottom:560.905067pt;}
.y1a{bottom:570.519733pt;}
.y14b{bottom:570.532400pt;}
.ydb{bottom:570.543067pt;}
.y170{bottom:570.566400pt;}
.y63{bottom:570.589733pt;}
.y36{bottom:570.631733pt;}
.y125{bottom:570.650400pt;}
.y8b{bottom:589.186400pt;}
.y14a{bottom:589.198400pt;}
.yda{bottom:589.205067pt;}
.y16f{bottom:589.232400pt;}
.y62{bottom:589.251733pt;}
.yb4{bottom:589.265733pt;}
.y35{bottom:589.293733pt;}
.y124{bottom:589.312400pt;}
.y105{bottom:589.359067pt;}
.y19{bottom:607.853067pt;}
.y149{bottom:607.864400pt;}
.yd9{bottom:607.867067pt;}
.y16e{bottom:607.898400pt;}
.y61{bottom:607.913733pt;}
.yb3{bottom:607.927733pt;}
.y34{bottom:607.955733pt;}
.y123{bottom:607.974400pt;}
.y104{bottom:608.021067pt;}
.y18{bottom:626.519733pt;}
.yd8{bottom:626.529067pt;}
.y148{bottom:626.530400pt;}
.y16d{bottom:626.564400pt;}
.y60{bottom:626.575733pt;}
.yb2{bottom:626.589733pt;}
.y33{bottom:626.617733pt;}
.y122{bottom:626.636400pt;}
.y103{bottom:626.683067pt;}
.yd7{bottom:645.191067pt;}
.y16c{bottom:645.230400pt;}
.y5f{bottom:645.237733pt;}
.yb1{bottom:645.251733pt;}
.y8a{bottom:645.279733pt;}
.y121{bottom:645.298400pt;}
.y102{bottom:645.345067pt;}
.yd6{bottom:663.853067pt;}
.y147{bottom:663.862400pt;}
.yb0{bottom:663.913733pt;}
.y89{bottom:663.941733pt;}
.y120{bottom:663.960400pt;}
.y101{bottom:664.007067pt;}
.y3{bottom:668.212133pt;}
.y146{bottom:682.528400pt;}
.y16b{bottom:682.562400pt;}
.y5e{bottom:682.575733pt;}
.y88{bottom:682.603733pt;}
.y100{bottom:682.669067pt;}
.y17{bottom:701.186400pt;}
.y145{bottom:701.194400pt;}
.y16a{bottom:701.228400pt;}
.y5d{bottom:701.237733pt;}
.y87{bottom:701.265733pt;}
.y11f{bottom:701.298400pt;}
.yff{bottom:701.331067pt;}
.y2{bottom:703.938667pt;}
.y16{bottom:719.853067pt;}
.y144{bottom:719.860400pt;}
.y169{bottom:719.894400pt;}
.y5c{bottom:719.899733pt;}
.y86{bottom:719.927733pt;}
.y11e{bottom:719.960400pt;}
.yfe{bottom:719.993067pt;}
.y15{bottom:738.519733pt;}
.y168{bottom:738.560400pt;}
.y5b{bottom:738.561733pt;}
.y85{bottom:738.589733pt;}
.y11d{bottom:738.622400pt;}
.yfd{bottom:738.655067pt;}
.y14{bottom:757.186400pt;}
.y143{bottom:757.192400pt;}
.y5a{bottom:757.223733pt;}
.y167{bottom:757.226400pt;}
.yaf{bottom:757.237733pt;}
.y84{bottom:757.251733pt;}
.yfc{bottom:757.317067pt;}
.yd5{bottom:757.326400pt;}
.y1{bottom:763.655867pt;}
.y13{bottom:775.853067pt;}
.y142{bottom:775.858400pt;}
.y59{bottom:775.885733pt;}
.y166{bottom:775.892400pt;}
.yae{bottom:775.899733pt;}
.y11c{bottom:775.960400pt;}
.yd4{bottom:775.988400pt;}
.y12{bottom:794.519733pt;}
.y141{bottom:794.524400pt;}
.y58{bottom:794.547733pt;}
.yad{bottom:794.561733pt;}
.y83{bottom:794.589733pt;}
.y11b{bottom:794.622400pt;}
.yd3{bottom:794.650400pt;}
.yfb{bottom:794.655067pt;}
.y11{bottom:813.186400pt;}
.y140{bottom:813.190400pt;}
.y57{bottom:813.209733pt;}
.yac{bottom:813.223733pt;}
.y165{bottom:813.224400pt;}
.y82{bottom:813.251733pt;}
.y11a{bottom:813.284400pt;}
.yd2{bottom:813.312400pt;}
.yfa{bottom:813.317067pt;}
.y10{bottom:831.853067pt;}
.y13f{bottom:831.856400pt;}
.y56{bottom:831.871733pt;}
.yab{bottom:831.885733pt;}
.y164{bottom:831.890400pt;}
.y81{bottom:831.913733pt;}
.y119{bottom:831.946400pt;}
.yd1{bottom:831.974400pt;}
.yf9{bottom:831.979067pt;}
.yf{bottom:850.519733pt;}
.y13e{bottom:850.522400pt;}
.y55{bottom:850.533733pt;}
.yaa{bottom:850.547733pt;}
.y163{bottom:850.556400pt;}
.y80{bottom:850.575733pt;}
.y118{bottom:850.608400pt;}
.yd0{bottom:850.636400pt;}
.yf8{bottom:850.641067pt;}
.y185{bottom:869.186400pt;}
.y54{bottom:869.195733pt;}
.ya9{bottom:869.209733pt;}
.y162{bottom:869.222400pt;}
.y7f{bottom:869.237733pt;}
.ycf{bottom:869.298400pt;}
.yf7{bottom:869.303067pt;}
.y13d{bottom:887.854400pt;}
.ya8{bottom:887.871733pt;}
.y7e{bottom:887.899733pt;}
.y117{bottom:887.946400pt;}
.yce{bottom:887.960400pt;}
.ye{bottom:895.853067pt;}
.y13c{bottom:906.520400pt;}
.y53{bottom:906.533733pt;}
.y161{bottom:906.554400pt;}
.y7d{bottom:906.561733pt;}
.y116{bottom:906.608400pt;}
.ycd{bottom:906.622400pt;}
.yf6{bottom:906.641067pt;}
.yd{bottom:919.853067pt;}
.y13b{bottom:925.186400pt;}
.y52{bottom:925.195733pt;}
.y160{bottom:925.220400pt;}
.y7c{bottom:925.223733pt;}
.y115{bottom:925.270400pt;}
.ycc{bottom:925.284400pt;}
.yf5{bottom:925.303067pt;}
.yc{bottom:943.853067pt;}
.y51{bottom:943.857733pt;}
.y7b{bottom:943.885733pt;}
.y15f{bottom:943.886400pt;}
.y114{bottom:943.932400pt;}
.ycb{bottom:943.946400pt;}
.yf4{bottom:943.965067pt;}
.y50{bottom:962.519733pt;}
.y7a{bottom:962.547733pt;}
.y15e{bottom:962.552400pt;}
.y113{bottom:962.594400pt;}
.yca{bottom:962.608400pt;}
.yf3{bottom:962.627067pt;}
.yb{bottom:971.017067pt;}
.y4f{bottom:1055.852533pt;}
.ya4{bottom:1055.853067pt;}
.h8{height:39.466667pt;}
.hb{height:40.152000pt;}
.he{height:41.434667pt;}
.hc{height:44.912000pt;}
.h7{height:46.016000pt;}
.ha{height:48.746667pt;}
.h9{height:63.146667pt;}
.hd{height:63.148267pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x9{left:157.722267pt;}
.x8{left:179.388933pt;}
.x2{left:198.425200pt;}
.xa{left:220.055600pt;}
.x5{left:415.748533pt;}
.xb{left:430.854000pt;}
.x6{left:869.291333pt;}
.xc{left:870.822933pt;}
.xd{left:915.369600pt;}
.x7{left:1209.449333pt;}
}




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