
    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_06cf63cd131102d04f3d39be.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ed0bc88cb92b37cc2aa8d05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_84e877f6c5067e47bdf8a827.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_6b9cffe63d87a899e22cd6c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_72fe5c44dfd475735c7fdeb6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_95b28936671185aa253858af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_67ab7be996e8f2e7a274dfc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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_e1d13c7900bd1abafa4236d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_a9a0c9495adad74698bf1f0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_1ff39aa54b2b61e374f0d064.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_9bf0b7f88e82e802a9e2b89d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.044000;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_f2963e66691684ef8c263dbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.044000;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_533107b2f4eb6d2321dd51bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_80553139eb8843e21a74c069.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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;}
.v3{vertical-align:15.984600px;}
.v2{vertical-align:19.979400px;}
.v1{vertical-align:23.976000px;}
.ls1d{letter-spacing:-3.552000px;}
.ls15{letter-spacing:-2.970000px;}
.ls14{letter-spacing:-2.100000px;}
.ls2{letter-spacing:-1.632000px;}
.ls1{letter-spacing:-1.224000px;}
.lsa{letter-spacing:-1.200000px;}
.ls19{letter-spacing:-1.140000px;}
.ls1b{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.840000px;}
.ls17{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.252000px;}
.ls13{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.960000px;}
.ls8{letter-spacing:1.200000px;}
.ls0{letter-spacing:1.350000px;}
.ls12{letter-spacing:1.944000px;}
.ls11{letter-spacing:2.322000px;}
.lsc{letter-spacing:17.340000px;}
.lse{letter-spacing:27.960000px;}
.ls9{letter-spacing:747.154800px;}
.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;}
}
.ws14{word-spacing:-60.000000px;}
.ws3d{word-spacing:-59.880000px;}
.ws3b{word-spacing:-59.400000px;}
.ws2a{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.777600px;}
.ws7{word-spacing:-15.000000px;}
.ws3c{word-spacing:-14.880000px;}
.ws29{word-spacing:-14.760000px;}
.ws3e{word-spacing:-13.860000px;}
.ws2f{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.960000px;}
.ws4c{word-spacing:-12.480000px;}
.ws1{word-spacing:-12.096000px;}
.ws3{word-spacing:-12.000000px;}
.ws53{word-spacing:-11.520000px;}
.ws5c{word-spacing:-11.040000px;}
.ws30{word-spacing:-10.530000px;}
.ws19{word-spacing:-10.500000px;}
.ws8{word-spacing:-8.745000px;}
.ws58{word-spacing:-8.448000px;}
.ws57{word-spacing:-6.996000px;}
.ws20{word-spacing:-5.760000px;}
.ws3a{word-spacing:-3.564000px;}
.ws1b{word-spacing:-3.120000px;}
.ws11{word-spacing:-2.880000px;}
.ws43{word-spacing:-2.220000px;}
.ws38{word-spacing:-2.100000px;}
.ws25{word-spacing:-1.920000px;}
.ws44{word-spacing:-1.860000px;}
.ws50{word-spacing:-1.296000px;}
.ws13{word-spacing:-1.285200px;}
.ws15{word-spacing:-1.200000px;}
.ws59{word-spacing:-0.960000px;}
.wsf{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.600000px;}
.ws4f{word-spacing:-0.480000px;}
.ws9{word-spacing:-0.408000px;}
.ws4b{word-spacing:-0.180000px;}
.ws46{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.041976px;}
.wsb{word-spacing:0.000000px;}
.ws45{word-spacing:0.120000px;}
.wsd{word-spacing:0.162000px;}
.ws2c{word-spacing:0.240000px;}
.wsc{word-spacing:0.252000px;}
.ws24{word-spacing:0.480000px;}
.ws6{word-spacing:0.486000px;}
.ws12{word-spacing:0.540000px;}
.ws3f{word-spacing:0.600000px;}
.ws33{word-spacing:0.720000px;}
.ws23{word-spacing:0.840000px;}
.ws21{word-spacing:0.918000px;}
.ws4e{word-spacing:0.960000px;}
.ws48{word-spacing:1.140000px;}
.ws1a{word-spacing:1.200000px;}
.ws1e{word-spacing:1.380000px;}
.wse{word-spacing:1.512000px;}
.wsa{word-spacing:1.632000px;}
.ws4a{word-spacing:1.680000px;}
.ws47{word-spacing:1.800000px;}
.ws37{word-spacing:2.100000px;}
.ws2e{word-spacing:2.322000px;}
.ws39{word-spacing:2.754000px;}
.ws36{word-spacing:3.960000px;}
.ws5a{word-spacing:3.984000px;}
.ws10{word-spacing:4.500000px;}
.ws42{word-spacing:4.800000px;}
.ws52{word-spacing:4.848000px;}
.ws55{word-spacing:5.184000px;}
.ws5b{word-spacing:6.576000px;}
.ws2d{word-spacing:6.600000px;}
.ws1f{word-spacing:6.960000px;}
.ws40{word-spacing:7.380000px;}
.ws56{word-spacing:7.632000px;}
.ws41{word-spacing:7.740000px;}
.ws31{word-spacing:8.400000px;}
.ws35{word-spacing:8.580000px;}
.ws54{word-spacing:9.120000px;}
.ws34{word-spacing:9.960000px;}
.ws51{word-spacing:10.560000px;}
.ws32{word-spacing:11.160000px;}
.ws4d{word-spacing:13.968000px;}
.ws1d{word-spacing:14.220000px;}
.ws5d{word-spacing:16.512000px;}
.ws2b{word-spacing:17.280000px;}
.ws27{word-spacing:17.340000px;}
.ws17{word-spacing:17.700000px;}
.ws16{word-spacing:17.940000px;}
.ws26{word-spacing:20.880000px;}
.ws49{word-spacing:37.260000px;}
.ws1c{word-spacing:51.480000px;}
.ws18{word-spacing:1003.296000px;}
._2a{margin-left:-12.000000px;}
._24{margin-left:-10.223400px;}
._3{margin-left:-8.537400px;}
._14{margin-left:-6.412200px;}
._5{margin-left:-5.089800px;}
._2{margin-left:-3.600600px;}
._1{margin-left:-2.182800px;}
._0{margin-left:-1.111800px;}
._4{width:1.275000px;}
._7{width:3.244800px;}
._8{width:4.364400px;}
._9{width:5.407200px;}
._b{width:6.624000px;}
._a{width:7.974000px;}
._d{width:9.192000px;}
._e{width:10.524000px;}
._c{width:12.384000px;}
._11{width:13.554000px;}
._29{width:14.867400px;}
._f{width:16.524000px;}
._10{width:18.192000px;}
._27{width:19.482000px;}
._13{width:21.150000px;}
._1c{width:22.272000px;}
._12{width:23.382000px;}
._2c{width:24.442200px;}
._23{width:25.482000px;}
._15{width:26.520000px;}
._1a{width:27.708000px;}
._26{width:29.418000px;}
._25{width:30.492000px;}
._6{width:32.015400px;}
._17{width:33.180000px;}
._2b{width:34.809600px;}
._18{width:36.540000px;}
._19{width:43.200000px;}
._16{width:46.500000px;}
._1b{width:51.474000px;}
._28{width:53.371200px;}
._1d{width:126.366600px;}
._1f{width:897.498000px;}
._1e{width:940.212000px;}
._21{width:981.540000px;}
._22{width:1254.330000px;}
._20{width:1544.716800px;}
.fc1{color:rgb(32,59,28);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fsa{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:64.634850px;}
.y2a{bottom:76.648200px;}
.y28{bottom:77.231700px;}
.y25{bottom:131.811000px;}
.y6d{bottom:131.811150px;}
.y24{bottom:149.811000px;}
.y6c{bottom:149.811150px;}
.y23{bottom:167.811000px;}
.y6b{bottom:167.811150px;}
.y22{bottom:185.811000px;}
.y6a{bottom:185.811150px;}
.y21{bottom:203.811000px;}
.y6e{bottom:203.811150px;}
.y20{bottom:221.811000px;}
.y69{bottom:221.811150px;}
.y9e{bottom:236.882250px;}
.y1f{bottom:239.811000px;}
.y68{bottom:239.811150px;}
.y9d{bottom:254.877750px;}
.y1e{bottom:257.811000px;}
.y67{bottom:257.811150px;}
.ya8{bottom:261.457350px;}
.y9c{bottom:272.873250px;}
.y1d{bottom:275.811000px;}
.y66{bottom:275.811150px;}
.ya7{bottom:279.452850px;}
.y9b{bottom:290.868750px;}
.y1c{bottom:293.811000px;}
.y65{bottom:293.811150px;}
.ya6{bottom:297.448350px;}
.y4c{bottom:310.847250px;}
.y1b{bottom:311.811000px;}
.y64{bottom:311.811150px;}
.ya5{bottom:315.443850px;}
.y1a{bottom:329.811000px;}
.y63{bottom:329.811150px;}
.ya4{bottom:333.439350px;}
.y19{bottom:347.811000px;}
.y62{bottom:347.811150px;}
.ya3{bottom:351.434850px;}
.ya2{bottom:356.257200px;}
.y18{bottom:365.811000px;}
.y61{bottom:365.811150px;}
.ya1{bottom:374.252700px;}
.y17{bottom:383.811000px;}
.y60{bottom:383.811150px;}
.ya0{bottom:392.248200px;}
.y16{bottom:401.811000px;}
.y5f{bottom:401.811150px;}
.y9f{bottom:410.243700px;}
.y15{bottom:419.811000px;}
.y5e{bottom:419.811150px;}
.y14{bottom:437.811000px;}
.y5d{bottom:437.811150px;}
.y13{bottom:455.811000px;}
.y5c{bottom:455.811150px;}
.yc2{bottom:472.847250px;}
.y12{bottom:473.811000px;}
.y5b{bottom:473.811150px;}
.y11{bottom:491.811000px;}
.y5a{bottom:491.811150px;}
.y26{bottom:509.811000px;}
.y59{bottom:509.811150px;}
.y10{bottom:527.811000px;}
.y58{bottom:527.811150px;}
.y4b{bottom:545.811000px;}
.y57{bottom:545.811150px;}
.ya9{bottom:562.847250px;}
.y4a{bottom:563.811000px;}
.y56{bottom:563.811150px;}
.y49{bottom:581.811000px;}
.y55{bottom:581.811150px;}
.yf{bottom:599.811000px;}
.y54{bottom:599.811150px;}
.y48{bottom:617.811000px;}
.y53{bottom:617.811150px;}
.ye{bottom:635.811000px;}
.y52{bottom:635.811150px;}
.y47{bottom:653.811000px;}
.y51{bottom:653.811150px;}
.y46{bottom:671.811000px;}
.y50{bottom:671.811150px;}
.y45{bottom:689.811000px;}
.y4f{bottom:689.811150px;}
.y44{bottom:707.811000px;}
.y4e{bottom:707.811150px;}
.yd{bottom:707.824500px;}
.y43{bottom:725.811000px;}
.y4d{bottom:725.811150px;}
.yc{bottom:725.820000px;}
.y42{bottom:743.811000px;}
.yc1{bottom:743.811150px;}
.yb{bottom:743.815500px;}
.ya{bottom:761.811000px;}
.yc0{bottom:761.811150px;}
.y95{bottom:776.447100px;}
.y41{bottom:779.811000px;}
.ybf{bottom:779.811150px;}
.y94{bottom:791.378100px;}
.y9{bottom:797.811000px;}
.ybe{bottom:797.811150px;}
.y93{bottom:806.477100px;}
.y40{bottom:815.811000px;}
.ybd{bottom:815.811150px;}
.y92{bottom:821.240100px;}
.y3f{bottom:833.811000px;}
.ybc{bottom:833.811150px;}
.y91{bottom:834.743100px;}
.y8c{bottom:849.674100px;}
.y3e{bottom:851.811000px;}
.ybb{bottom:851.811150px;}
.y8{bottom:852.279750px;}
.y8b{bottom:863.177100px;}
.y3d{bottom:869.811000px;}
.yba{bottom:869.811150px;}
.y8a{bottom:876.680100px;}
.y90{bottom:885.836100px;}
.y3c{bottom:887.811000px;}
.yb9{bottom:887.811150px;}
.y89{bottom:890.183100px;}
.y7{bottom:900.042150px;}
.y8f{bottom:900.777600px;}
.y88{bottom:903.686100px;}
.y3b{bottom:905.811000px;}
.yb8{bottom:905.811150px;}
.y8e{bottom:914.280600px;}
.y87{bottom:917.189100px;}
.y3a{bottom:923.811000px;}
.yb7{bottom:923.811150px;}
.y6{bottom:927.042150px;}
.y8d{bottom:929.222100px;}
.y86{bottom:930.692100px;}
.y39{bottom:941.811000px;}
.yb6{bottom:941.811150px;}
.y85{bottom:944.184600px;}
.y5{bottom:954.042150px;}
.y81{bottom:959.126100px;}
.y38{bottom:959.811000px;}
.yb5{bottom:959.811150px;}
.y84{bottom:969.752100px;}
.y4{bottom:972.042150px;}
.y80{bottom:972.629100px;}
.y37{bottom:977.811000px;}
.yb4{bottom:977.811150px;}
.y83{bottom:984.693600px;}
.y7f{bottom:986.132100px;}
.y36{bottom:995.811000px;}
.yb3{bottom:995.811150px;}
.y82{bottom:998.196600px;}
.y7e{bottom:999.635100px;}
.y3{bottom:1008.040650px;}
.y7d{bottom:1013.148600px;}
.y35{bottom:1013.811000px;}
.yb2{bottom:1013.811150px;}
.y7c{bottom:1028.079600px;}
.y34{bottom:1031.811000px;}
.yb1{bottom:1031.811150px;}
.y77{bottom:1032.416100px;}
.y7b{bottom:1041.582600px;}
.y76{bottom:1045.919100px;}
.y2{bottom:1047.639300px;}
.y33{bottom:1049.811000px;}
.yb0{bottom:1049.811150px;}
.y9a{bottom:1052.971050px;}
.y7a{bottom:1056.524100px;}
.y75{bottom:1059.422100px;}
.y32{bottom:1067.811000px;}
.yaf{bottom:1067.811150px;}
.y79{bottom:1071.465600px;}
.y74{bottom:1072.925100px;}
.y1{bottom:1078.239300px;}
.y78{bottom:1084.968600px;}
.y31{bottom:1085.811000px;}
.yae{bottom:1085.811150px;}
.y73{bottom:1086.428100px;}
.y99{bottom:1087.975050px;}
.y72{bottom:1099.931100px;}
.y30{bottom:1103.811000px;}
.yad{bottom:1103.811150px;}
.y98{bottom:1105.975050px;}
.y71{bottom:1115.250600px;}
.y2f{bottom:1121.811000px;}
.yac{bottom:1121.811150px;}
.y97{bottom:1123.975050px;}
.y2e{bottom:1139.811000px;}
.yab{bottom:1139.811150px;}
.y70{bottom:1141.922250px;}
.y96{bottom:1154.730900px;}
.y2d{bottom:1157.811000px;}
.yaa{bottom:1157.811150px;}
.y6f{bottom:1159.917750px;}
.y2b{bottom:1193.649450px;}
.y2c{bottom:1193.653500px;}
.y27{bottom:1193.816550px;}
.hd{height:28.464844px;}
.hc{height:30.013200px;}
.h5{height:33.328125px;}
.h4{height:33.348000px;}
.hb{height:35.730000px;}
.h10{height:36.180539px;}
.he{height:36.852539px;}
.hf{height:36.894539px;}
.h8{height:39.258000px;}
.h11{height:40.664062px;}
.h12{height:42.117188px;}
.h13{height:42.117787px;}
.h6{height:42.122588px;}
.h7{height:47.381836px;}
.ha{height:52.646484px;}
.h3{height:63.175781px;}
.h9{height:73.705078px;}
.h2{height:89.499023px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x15{left:79.085850px;}
.x1a{left:91.832850px;}
.x11{left:93.543300px;}
.xa{left:110.551200px;}
.xc{left:127.561050px;}
.x12{left:136.068300px;}
.x14{left:217.087350px;}
.x2{left:278.712450px;}
.x3{left:330.392100px;}
.x4{left:422.677200px;}
.xb{left:437.847450px;}
.x8{left:440.082600px;}
.x9{left:457.092600px;}
.xd{left:474.092250px;}
.x5{left:477.771150px;}
.xe{left:491.102250px;}
.x13{left:499.623300px;}
.x16{left:506.719350px;}
.x17{left:508.315350px;}
.x18{left:510.005850px;}
.x1b{left:513.302850px;}
.x1e{left:519.277350px;}
.x1d{left:522.353850px;}
.x1f{left:551.207850px;}
.x1c{left:566.821350px;}
.x19{left:581.374350px;}
.x6{left:595.540200px;}
.x7{left:652.225050px;}
.xf{left:708.979500px;}
.x10{left:762.922650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208533pt;}
.v2{vertical-align:17.759467pt;}
.v1{vertical-align:21.312000pt;}
.ls1d{letter-spacing:-3.157333pt;}
.ls15{letter-spacing:-2.640000pt;}
.ls14{letter-spacing:-1.866667pt;}
.ls2{letter-spacing:-1.450667pt;}
.ls1{letter-spacing:-1.088000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls19{letter-spacing:-1.013333pt;}
.ls1b{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.746667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.224000pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls8{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.200000pt;}
.ls12{letter-spacing:1.728000pt;}
.ls11{letter-spacing:2.064000pt;}
.lsc{letter-spacing:15.413333pt;}
.lse{letter-spacing:24.853333pt;}
.ls9{letter-spacing:664.137600pt;}
.ws14{word-spacing:-53.333333pt;}
.ws3d{word-spacing:-53.226667pt;}
.ws3b{word-spacing:-52.800000pt;}
.ws2a{word-spacing:-48.000000pt;}
.ws2{word-spacing:-14.024533pt;}
.ws7{word-spacing:-13.333333pt;}
.ws3c{word-spacing:-13.226667pt;}
.ws29{word-spacing:-13.120000pt;}
.ws3e{word-spacing:-12.320000pt;}
.ws2f{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.520000pt;}
.ws4c{word-spacing:-11.093333pt;}
.ws1{word-spacing:-10.752000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws53{word-spacing:-10.240000pt;}
.ws5c{word-spacing:-9.813333pt;}
.ws30{word-spacing:-9.360000pt;}
.ws19{word-spacing:-9.333333pt;}
.ws8{word-spacing:-7.773333pt;}
.ws58{word-spacing:-7.509333pt;}
.ws57{word-spacing:-6.218667pt;}
.ws20{word-spacing:-5.120000pt;}
.ws3a{word-spacing:-3.168000pt;}
.ws1b{word-spacing:-2.773333pt;}
.ws11{word-spacing:-2.560000pt;}
.ws43{word-spacing:-1.973333pt;}
.ws38{word-spacing:-1.866667pt;}
.ws25{word-spacing:-1.706667pt;}
.ws44{word-spacing:-1.653333pt;}
.ws50{word-spacing:-1.152000pt;}
.ws13{word-spacing:-1.142400pt;}
.ws15{word-spacing:-1.066667pt;}
.ws59{word-spacing:-0.853333pt;}
.wsf{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.533333pt;}
.ws4f{word-spacing:-0.426667pt;}
.ws9{word-spacing:-0.362667pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws46{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.037312pt;}
.wsb{word-spacing:0.000000pt;}
.ws45{word-spacing:0.106667pt;}
.wsd{word-spacing:0.144000pt;}
.ws2c{word-spacing:0.213333pt;}
.wsc{word-spacing:0.224000pt;}
.ws24{word-spacing:0.426667pt;}
.ws6{word-spacing:0.432000pt;}
.ws12{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.533333pt;}
.ws33{word-spacing:0.640000pt;}
.ws23{word-spacing:0.746667pt;}
.ws21{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws48{word-spacing:1.013333pt;}
.ws1a{word-spacing:1.066667pt;}
.ws1e{word-spacing:1.226667pt;}
.wse{word-spacing:1.344000pt;}
.wsa{word-spacing:1.450667pt;}
.ws4a{word-spacing:1.493333pt;}
.ws47{word-spacing:1.600000pt;}
.ws37{word-spacing:1.866667pt;}
.ws2e{word-spacing:2.064000pt;}
.ws39{word-spacing:2.448000pt;}
.ws36{word-spacing:3.520000pt;}
.ws5a{word-spacing:3.541333pt;}
.ws10{word-spacing:4.000000pt;}
.ws42{word-spacing:4.266667pt;}
.ws52{word-spacing:4.309333pt;}
.ws55{word-spacing:4.608000pt;}
.ws5b{word-spacing:5.845333pt;}
.ws2d{word-spacing:5.866667pt;}
.ws1f{word-spacing:6.186667pt;}
.ws40{word-spacing:6.560000pt;}
.ws56{word-spacing:6.784000pt;}
.ws41{word-spacing:6.880000pt;}
.ws31{word-spacing:7.466667pt;}
.ws35{word-spacing:7.626667pt;}
.ws54{word-spacing:8.106667pt;}
.ws34{word-spacing:8.853333pt;}
.ws51{word-spacing:9.386667pt;}
.ws32{word-spacing:9.920000pt;}
.ws4d{word-spacing:12.416000pt;}
.ws1d{word-spacing:12.640000pt;}
.ws5d{word-spacing:14.677333pt;}
.ws2b{word-spacing:15.360000pt;}
.ws27{word-spacing:15.413333pt;}
.ws17{word-spacing:15.733333pt;}
.ws16{word-spacing:15.946667pt;}
.ws26{word-spacing:18.560000pt;}
.ws49{word-spacing:33.120000pt;}
.ws1c{word-spacing:45.760000pt;}
.ws18{word-spacing:891.818667pt;}
._2a{margin-left:-10.666667pt;}
._24{margin-left:-9.087467pt;}
._3{margin-left:-7.588800pt;}
._14{margin-left:-5.699733pt;}
._5{margin-left:-4.524267pt;}
._2{margin-left:-3.200533pt;}
._1{margin-left:-1.940267pt;}
._0{margin-left:-0.988267pt;}
._4{width:1.133333pt;}
._7{width:2.884267pt;}
._8{width:3.879467pt;}
._9{width:4.806400pt;}
._b{width:5.888000pt;}
._a{width:7.088000pt;}
._d{width:8.170667pt;}
._e{width:9.354667pt;}
._c{width:11.008000pt;}
._11{width:12.048000pt;}
._29{width:13.215467pt;}
._f{width:14.688000pt;}
._10{width:16.170667pt;}
._27{width:17.317333pt;}
._13{width:18.800000pt;}
._1c{width:19.797333pt;}
._12{width:20.784000pt;}
._2c{width:21.726400pt;}
._23{width:22.650667pt;}
._15{width:23.573333pt;}
._1a{width:24.629333pt;}
._26{width:26.149333pt;}
._25{width:27.104000pt;}
._6{width:28.458133pt;}
._17{width:29.493333pt;}
._2b{width:30.941867pt;}
._18{width:32.480000pt;}
._19{width:38.400000pt;}
._16{width:41.333333pt;}
._1b{width:45.754667pt;}
._28{width:47.441067pt;}
._1d{width:112.325867pt;}
._1f{width:797.776000pt;}
._1e{width:835.744000pt;}
._21{width:872.480000pt;}
._22{width:1114.960000pt;}
._20{width:1373.081600pt;}
.fsb{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fsa{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:57.453200pt;}
.y2a{bottom:68.131733pt;}
.y28{bottom:68.650400pt;}
.y25{bottom:117.165333pt;}
.y6d{bottom:117.165467pt;}
.y24{bottom:133.165333pt;}
.y6c{bottom:133.165467pt;}
.y23{bottom:149.165333pt;}
.y6b{bottom:149.165467pt;}
.y22{bottom:165.165333pt;}
.y6a{bottom:165.165467pt;}
.y21{bottom:181.165333pt;}
.y6e{bottom:181.165467pt;}
.y20{bottom:197.165333pt;}
.y69{bottom:197.165467pt;}
.y9e{bottom:210.562000pt;}
.y1f{bottom:213.165333pt;}
.y68{bottom:213.165467pt;}
.y9d{bottom:226.558000pt;}
.y1e{bottom:229.165333pt;}
.y67{bottom:229.165467pt;}
.ya8{bottom:232.406533pt;}
.y9c{bottom:242.554000pt;}
.y1d{bottom:245.165333pt;}
.y66{bottom:245.165467pt;}
.ya7{bottom:248.402533pt;}
.y9b{bottom:258.550000pt;}
.y1c{bottom:261.165333pt;}
.y65{bottom:261.165467pt;}
.ya6{bottom:264.398533pt;}
.y4c{bottom:276.308667pt;}
.y1b{bottom:277.165333pt;}
.y64{bottom:277.165467pt;}
.ya5{bottom:280.394533pt;}
.y1a{bottom:293.165333pt;}
.y63{bottom:293.165467pt;}
.ya4{bottom:296.390533pt;}
.y19{bottom:309.165333pt;}
.y62{bottom:309.165467pt;}
.ya3{bottom:312.386533pt;}
.ya2{bottom:316.673067pt;}
.y18{bottom:325.165333pt;}
.y61{bottom:325.165467pt;}
.ya1{bottom:332.669067pt;}
.y17{bottom:341.165333pt;}
.y60{bottom:341.165467pt;}
.ya0{bottom:348.665067pt;}
.y16{bottom:357.165333pt;}
.y5f{bottom:357.165467pt;}
.y9f{bottom:364.661067pt;}
.y15{bottom:373.165333pt;}
.y5e{bottom:373.165467pt;}
.y14{bottom:389.165333pt;}
.y5d{bottom:389.165467pt;}
.y13{bottom:405.165333pt;}
.y5c{bottom:405.165467pt;}
.yc2{bottom:420.308667pt;}
.y12{bottom:421.165333pt;}
.y5b{bottom:421.165467pt;}
.y11{bottom:437.165333pt;}
.y5a{bottom:437.165467pt;}
.y26{bottom:453.165333pt;}
.y59{bottom:453.165467pt;}
.y10{bottom:469.165333pt;}
.y58{bottom:469.165467pt;}
.y4b{bottom:485.165333pt;}
.y57{bottom:485.165467pt;}
.ya9{bottom:500.308667pt;}
.y4a{bottom:501.165333pt;}
.y56{bottom:501.165467pt;}
.y49{bottom:517.165333pt;}
.y55{bottom:517.165467pt;}
.yf{bottom:533.165333pt;}
.y54{bottom:533.165467pt;}
.y48{bottom:549.165333pt;}
.y53{bottom:549.165467pt;}
.ye{bottom:565.165333pt;}
.y52{bottom:565.165467pt;}
.y47{bottom:581.165333pt;}
.y51{bottom:581.165467pt;}
.y46{bottom:597.165333pt;}
.y50{bottom:597.165467pt;}
.y45{bottom:613.165333pt;}
.y4f{bottom:613.165467pt;}
.y44{bottom:629.165333pt;}
.y4e{bottom:629.165467pt;}
.yd{bottom:629.177333pt;}
.y43{bottom:645.165333pt;}
.y4d{bottom:645.165467pt;}
.yc{bottom:645.173333pt;}
.y42{bottom:661.165333pt;}
.yc1{bottom:661.165467pt;}
.yb{bottom:661.169333pt;}
.ya{bottom:677.165333pt;}
.yc0{bottom:677.165467pt;}
.y95{bottom:690.175200pt;}
.y41{bottom:693.165333pt;}
.ybf{bottom:693.165467pt;}
.y94{bottom:703.447200pt;}
.y9{bottom:709.165333pt;}
.ybe{bottom:709.165467pt;}
.y93{bottom:716.868533pt;}
.y40{bottom:725.165333pt;}
.ybd{bottom:725.165467pt;}
.y92{bottom:729.991200pt;}
.y3f{bottom:741.165333pt;}
.ybc{bottom:741.165467pt;}
.y91{bottom:741.993867pt;}
.y8c{bottom:755.265867pt;}
.y3e{bottom:757.165333pt;}
.ybb{bottom:757.165467pt;}
.y8{bottom:757.582000pt;}
.y8b{bottom:767.268533pt;}
.y3d{bottom:773.165333pt;}
.yba{bottom:773.165467pt;}
.y8a{bottom:779.271200pt;}
.y90{bottom:787.409867pt;}
.y3c{bottom:789.165333pt;}
.yb9{bottom:789.165467pt;}
.y89{bottom:791.273867pt;}
.y7{bottom:800.037467pt;}
.y8f{bottom:800.691200pt;}
.y88{bottom:803.276533pt;}
.y3b{bottom:805.165333pt;}
.yb8{bottom:805.165467pt;}
.y8e{bottom:812.693867pt;}
.y87{bottom:815.279200pt;}
.y3a{bottom:821.165333pt;}
.yb7{bottom:821.165467pt;}
.y6{bottom:824.037467pt;}
.y8d{bottom:825.975200pt;}
.y86{bottom:827.281867pt;}
.y39{bottom:837.165333pt;}
.yb6{bottom:837.165467pt;}
.y85{bottom:839.275200pt;}
.y5{bottom:848.037467pt;}
.y81{bottom:852.556533pt;}
.y38{bottom:853.165333pt;}
.yb5{bottom:853.165467pt;}
.y84{bottom:862.001867pt;}
.y4{bottom:864.037467pt;}
.y80{bottom:864.559200pt;}
.y37{bottom:869.165333pt;}
.yb4{bottom:869.165467pt;}
.y83{bottom:875.283200pt;}
.y7f{bottom:876.561867pt;}
.y36{bottom:885.165333pt;}
.yb3{bottom:885.165467pt;}
.y82{bottom:887.285867pt;}
.y7e{bottom:888.564533pt;}
.y3{bottom:896.036133pt;}
.y7d{bottom:900.576533pt;}
.y35{bottom:901.165333pt;}
.yb2{bottom:901.165467pt;}
.y7c{bottom:913.848533pt;}
.y34{bottom:917.165333pt;}
.yb1{bottom:917.165467pt;}
.y77{bottom:917.703200pt;}
.y7b{bottom:925.851200pt;}
.y76{bottom:929.705867pt;}
.y2{bottom:931.234933pt;}
.y33{bottom:933.165333pt;}
.yb0{bottom:933.165467pt;}
.y9a{bottom:935.974267pt;}
.y7a{bottom:939.132533pt;}
.y75{bottom:941.708533pt;}
.y32{bottom:949.165333pt;}
.yaf{bottom:949.165467pt;}
.y79{bottom:952.413867pt;}
.y74{bottom:953.711200pt;}
.y1{bottom:958.434933pt;}
.y78{bottom:964.416533pt;}
.y31{bottom:965.165333pt;}
.yae{bottom:965.165467pt;}
.y73{bottom:965.713867pt;}
.y99{bottom:967.088933pt;}
.y72{bottom:977.716533pt;}
.y30{bottom:981.165333pt;}
.yad{bottom:981.165467pt;}
.y98{bottom:983.088933pt;}
.y71{bottom:991.333867pt;}
.y2f{bottom:997.165333pt;}
.yac{bottom:997.165467pt;}
.y97{bottom:999.088933pt;}
.y2e{bottom:1013.165333pt;}
.yab{bottom:1013.165467pt;}
.y70{bottom:1015.042000pt;}
.y96{bottom:1026.427467pt;}
.y2d{bottom:1029.165333pt;}
.yaa{bottom:1029.165467pt;}
.y6f{bottom:1031.038000pt;}
.y2b{bottom:1061.021733pt;}
.y2c{bottom:1061.025333pt;}
.y27{bottom:1061.170267pt;}
.hd{height:25.302083pt;}
.hc{height:26.678400pt;}
.h5{height:29.625000pt;}
.h4{height:29.642667pt;}
.hb{height:31.760000pt;}
.h10{height:32.160479pt;}
.he{height:32.757812pt;}
.hf{height:32.795146pt;}
.h8{height:34.896000pt;}
.h11{height:36.145833pt;}
.h12{height:37.437500pt;}
.h13{height:37.438033pt;}
.h6{height:37.442300pt;}
.h7{height:42.117188pt;}
.ha{height:46.796875pt;}
.h3{height:56.156250pt;}
.h9{height:65.515625pt;}
.h2{height:79.554688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x15{left:70.298533pt;}
.x1a{left:81.629200pt;}
.x11{left:83.149600pt;}
.xa{left:98.267733pt;}
.xc{left:113.387600pt;}
.x12{left:120.949600pt;}
.x14{left:192.966533pt;}
.x2{left:247.744400pt;}
.x3{left:293.681867pt;}
.x4{left:375.713067pt;}
.xb{left:389.197733pt;}
.x8{left:391.184533pt;}
.x9{left:406.304533pt;}
.xd{left:421.415333pt;}
.x5{left:424.685467pt;}
.xe{left:436.535333pt;}
.x13{left:444.109600pt;}
.x16{left:450.417200pt;}
.x17{left:451.835867pt;}
.x18{left:453.338533pt;}
.x1b{left:456.269200pt;}
.x1e{left:461.579867pt;}
.x1d{left:464.314533pt;}
.x1f{left:489.962533pt;}
.x1c{left:503.841200pt;}
.x19{left:516.777200pt;}
.x6{left:529.369067pt;}
.x7{left:579.755600pt;}
.xf{left:630.204000pt;}
.x10{left:678.153467pt;}
}




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