
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_979e986dd176800554fc4cb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_0d67504a15e55bbe375bcae8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_e53f46f4fb96375d1f557c9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3ed5ce61890180ffe2dc0cfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_fe78789a5d024050bb7bc435.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_597cfe3531501858dc44736e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_7e3f34113758e0efbd006d70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_2fb1ada2d4e903417a1ad346.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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);}
.mb{transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.ls6{letter-spacing:-2.538000px;}
.ls18{letter-spacing:-1.032000px;}
.ls7{letter-spacing:-0.810000px;}
.ls19{letter-spacing:-0.540600px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.333000px;}
.ls1d{letter-spacing:-0.234600px;}
.ls8{letter-spacing:-0.226200px;}
.ls1f{letter-spacing:-0.184800px;}
.lsf{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.016080px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.158400px;}
.ls13{letter-spacing:0.169200px;}
.ls4{letter-spacing:0.169500px;}
.ls1{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.186600px;}
.ls14{letter-spacing:0.220200px;}
.ls1a{letter-spacing:0.339000px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.365862px;}
.lsb{letter-spacing:0.366000px;}
.ls1e{letter-spacing:0.400200px;}
.lsa{letter-spacing:0.411000px;}
.ls20{letter-spacing:0.460200px;}
.ls15{letter-spacing:0.524400px;}
.ls12{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.858000px;}
.lsd{letter-spacing:0.870000px;}
.ls11{letter-spacing:0.882000px;}
.ls17{letter-spacing:0.888000px;}
.ls16{letter-spacing:0.918000px;}
.ls26{letter-spacing:2.530640px;}
.ls1c{letter-spacing:12.720000px;}
.ls23{letter-spacing:23.495407px;}
.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;}
}
.ws2{word-spacing:-18.522000px;}
.ws19{word-spacing:-16.506480px;}
.ws12{word-spacing:-15.858000px;}
.ws14{word-spacing:-15.828000px;}
.ws13{word-spacing:-15.822000px;}
.wsa{word-spacing:-15.810000px;}
.ws7{word-spacing:-15.798000px;}
.ws8{word-spacing:-15.660000px;}
.ws15{word-spacing:-15.612000px;}
.ws11{word-spacing:-15.464400px;}
.ws16{word-spacing:-15.340200px;}
.ws6{word-spacing:-15.306000px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.160200px;}
.ws17{word-spacing:-15.126600px;}
.wsf{word-spacing:-15.109200px;}
.ws1a{word-spacing:-15.098400px;}
.ws18{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.923920px;}
.ws1b{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.607000px;}
.wsd{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.350600px;}
.ws3{word-spacing:-10.213800px;}
.wsb{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._7{margin-left:-4.296240px;}
._6{margin-left:-2.864160px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.851680px;}
._8{width:3.858000px;}
._b{width:4.866240px;}
._d{width:6.166080px;}
._c{width:7.373520px;}
._15{width:8.377200px;}
._f{width:9.399138px;}
._e{width:10.460622px;}
._10{width:11.585640px;}
._12{width:13.390023px;}
._9{width:15.017040px;}
._a{width:16.931520px;}
._11{width:18.764640px;}
._16{width:19.840320px;}
._13{width:22.001500px;}
._14{width:24.109281px;}
._19{width:26.606639px;}
._17{width:28.027440px;}
._18{width:29.461680px;}
._4{width:396.269760px;}
._5{width:978.089760px;}
._3{width:1389.185760px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.405000px;}
.y42{bottom:3.765000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:8.280000px;}
.y4c{bottom:11.160000px;}
.y91{bottom:12.420000px;}
.y58{bottom:17.100000px;}
.y4b{bottom:18.720000px;}
.y41{bottom:20.685000px;}
.y8d{bottom:20.865000px;}
.y4{bottom:21.060000px;}
.y8f{bottom:29.730000px;}
.y57{bottom:35.820000px;}
.y8c{bottom:38.145000px;}
.y95{bottom:38.160000px;}
.y99{bottom:38.340000px;}
.y93{bottom:38.370000px;}
.y3{bottom:44.670000px;}
.y87{bottom:46.785000px;}
.y90{bottom:47.010000px;}
.y40{bottom:47.325000px;}
.y4a{bottom:48.780000px;}
.y88{bottom:55.425000px;}
.y97{bottom:55.440000px;}
.y9b{bottom:55.620000px;}
.y92{bottom:55.650000px;}
.y56{bottom:57.420000px;}
.y7{bottom:57.600000px;}
.y49{bottom:60.480000px;}
.y86{bottom:64.065000px;}
.y3f{bottom:64.425000px;}
.y8b{bottom:72.705000px;}
.y96{bottom:72.720000px;}
.y9a{bottom:72.900000px;}
.y48{bottom:73.440000px;}
.y55{bottom:76.500000px;}
.y3e{bottom:81.705000px;}
.y47{bottom:86.580000px;}
.y8a{bottom:89.985000px;}
.y54{bottom:91.980000px;}
.y94{bottom:94.320000px;}
.y3d{bottom:98.985000px;}
.y59{bottom:102.420000px;}
.y89{bottom:107.265000px;}
.y53{bottom:107.670000px;}
.y46{bottom:108.390000px;}
.y3c{bottom:116.265000px;}
.y43{bottom:116.640000px;}
.y52{bottom:117.030000px;}
.ycc{bottom:124.560000px;}
.y3b{bottom:133.590000px;}
.y51{bottom:135.930000px;}
.ycb{bottom:141.840000px;}
.y3a{bottom:150.870000px;}
.y50{bottom:151.410000px;}
.yca{bottom:159.120000px;}
.y4f{bottom:166.890000px;}
.y39{bottom:167.610000px;}
.y45{bottom:170.490000px;}
.yc9{bottom:176.400000px;}
.y44{bottom:181.110000px;}
.y8e{bottom:181.260000px;}
.y4e{bottom:182.550000px;}
.yc8{bottom:193.860000px;}
.y38{bottom:194.250000px;}
.y4d{bottom:197.670000px;}
.yc7{bottom:210.990000px;}
.y37{bottom:211.530000px;}
.yc6{bottom:228.450000px;}
.y36{bottom:228.810000px;}
.yc5{bottom:245.550000px;}
.y35{bottom:246.090000px;}
.y85{bottom:251.145000px;}
.yc4{bottom:263.010000px;}
.y34{bottom:263.190000px;}
.yc3{bottom:279.750000px;}
.y33{bottom:280.470000px;}
.y32{bottom:297.750000px;}
.y1e{bottom:302.070000px;}
.yc2{bottom:306.390000px;}
.y31{bottom:315.030000px;}
.yc1{bottom:323.670000px;}
.y1d{bottom:326.190000px;}
.y10{bottom:327.645000px;}
.y30{bottom:332.310000px;}
.yc0{bottom:340.950000px;}
.y2f{bottom:349.590000px;}
.y1c{bottom:350.490000px;}
.ybf{bottom:358.230000px;}
.y2e{bottom:366.720000px;}
.y83{bottom:372.645000px;}
.y1b{bottom:374.640000px;}
.ybe{bottom:375.330000px;}
.y2d{bottom:384.000000px;}
.ybd{bottom:392.250000px;}
.y1a{bottom:398.760000px;}
.y2c{bottom:400.920000px;}
.y82{bottom:406.110000px;}
.y81{bottom:413.310000px;}
.ybc{bottom:418.890000px;}
.y19{bottom:422.880000px;}
.y2b{bottom:427.020000px;}
.ybb{bottom:436.170000px;}
.y80{bottom:440.130000px;}
.y2a{bottom:442.680000px;}
.y18{bottom:447.000000px;}
.yba{bottom:453.495000px;}
.y7f{bottom:457.455000px;}
.y29{bottom:458.160000px;}
.yb9{bottom:470.775000px;}
.y17{bottom:471.120000px;}
.y28{bottom:473.640000px;}
.y7e{bottom:474.735000px;}
.yb8{bottom:487.875000px;}
.y27{bottom:489.120000px;}
.y7d{bottom:492.015000px;}
.y16{bottom:495.240000px;}
.y26{bottom:504.780000px;}
.yb7{bottom:505.155000px;}
.y7c{bottom:509.115000px;}
.y15{bottom:519.540000px;}
.y25{bottom:520.260000px;}
.yb6{bottom:522.435000px;}
.y7b{bottom:526.035000px;}
.ye6{bottom:528.015000px;}
.y24{bottom:535.740000px;}
.yb5{bottom:539.355000px;}
.y14{bottom:543.660000px;}
.ye5{bottom:545.115000px;}
.y23{bottom:551.220000px;}
.y7a{bottom:552.675000px;}
.ye4{bottom:562.395000px;}
.yb4{bottom:565.995000px;}
.y22{bottom:566.880000px;}
.y13{bottom:567.780000px;}
.y79{bottom:569.955000px;}
.ye3{bottom:579.675000px;}
.y21{bottom:582.360000px;}
.yb3{bottom:583.275000px;}
.y78{bottom:587.235000px;}
.y12{bottom:591.945000px;}
.ye2{bottom:596.955000px;}
.y20{bottom:597.885000px;}
.yb2{bottom:600.375000px;}
.y77{bottom:604.335000px;}
.y1f{bottom:613.005000px;}
.ye1{bottom:614.235000px;}
.y11{bottom:616.065000px;}
.yb1{bottom:617.655000px;}
.y76{bottom:621.615000px;}
.ye0{bottom:631.335000px;}
.yb0{bottom:634.935000px;}
.y75{bottom:638.535000px;}
.ydf{bottom:648.615000px;}
.yaf{bottom:651.855000px;}
.y74{bottom:665.175000px;}
.yde{bottom:665.895000px;}
.yae{bottom:678.495000px;}
.y73{bottom:682.485000px;}
.ydd{bottom:683.205000px;}
.yad{bottom:695.805000px;}
.y72{bottom:699.765000px;}
.ydc{bottom:700.485000px;}
.yac{bottom:713.085000px;}
.y71{bottom:716.505000px;}
.ydb{bottom:717.765000px;}
.yab{bottom:732.885000px;}
.yda{bottom:734.865000px;}
.y70{bottom:743.145000px;}
.yaa{bottom:749.985000px;}
.yd9{bottom:752.145000px;}
.y6f{bottom:760.425000px;}
.ya9{bottom:769.425000px;}
.y6e{bottom:777.705000px;}
.ya8{bottom:786.525000px;}
.yd8{bottom:786.705000px;}
.y6d{bottom:794.985000px;}
.yd7{bottom:803.985000px;}
.ya7{bottom:805.965000px;}
.y6c{bottom:812.265000px;}
.yd6{bottom:821.265000px;}
.ya6{bottom:823.245000px;}
.y6b{bottom:829.365000px;}
.yd5{bottom:838.365000px;}
.ya5{bottom:842.685000px;}
.y6a{bottom:846.645000px;}
.yd4{bottom:855.645000px;}
.ya4{bottom:862.485000px;}
.y69{bottom:863.925000px;}
.yd3{bottom:872.925000px;}
.ya3{bottom:879.765000px;}
.y68{bottom:881.205000px;}
.yd2{bottom:890.205000px;}
.ya2{bottom:896.505000px;}
.y67{bottom:898.485000px;}
.yd1{bottom:907.485000px;}
.y66{bottom:915.405000px;}
.ya1{bottom:923.190000px;}
.yd0{bottom:924.810000px;}
.ya0{bottom:940.470000px;}
.y65{bottom:941.910000px;}
.yf{bottom:955.950000px;}
.y9f{bottom:957.750000px;}
.y64{bottom:959.190000px;}
.ye{bottom:961.710000px;}
.y9e{bottom:975.030000px;}
.y63{bottom:976.470000px;}
.yd{bottom:979.530000px;}
.y9d{bottom:992.130000px;}
.ycf{bottom:993.390000px;}
.y62{bottom:993.750000px;}
.yc{bottom:997.170000px;}
.y9c{bottom:1009.050000px;}
.y61{bottom:1010.670000px;}
.yb{bottom:1014.810000px;}
.yce{bottom:1020.030000px;}
.ya{bottom:1032.270000px;}
.y98{bottom:1032.630000px;}
.y60{bottom:1037.130000px;}
.y5f{bottom:1054.410000px;}
.y9{bottom:1059.810000px;}
.y5e{bottom:1071.690000px;}
.y8{bottom:1088.250000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.700000px;}
.ycd{bottom:1105.890000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hc{height:4.165313px;}
.h16{height:5.650313px;}
.h1c{height:5.653125px;}
.h1d{height:17.265000px;}
.h7{height:23.632383px;}
.h18{height:27.540000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.hf{height:40.985156px;}
.h11{height:41.080078px;}
.he{height:42.086250px;}
.h10{height:52.971680px;}
.h15{height:54.421875px;}
.h8{height:57.324375px;}
.h17{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:59.439023px;}
.ha{height:60.226875px;}
.h1b{height:61.189805px;}
.h1a{height:62.327813px;}
.h19{height:64.002656px;}
.h3{height:65.884219px;}
.h23{height:67.837500px;}
.h1f{height:69.156000px;}
.h22{height:69.660000px;}
.h24{height:72.090000px;}
.hb{height:72.562500px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h20{height:86.220000px;}
.h21{height:86.385000px;}
.h4{height:117.180000px;}
.h1e{height:120.765000px;}
.h12{height:210.270000px;}
.hd{height:625.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w7{width:200.055000px;}
.w8{width:267.150000px;}
.w9{width:267.360000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:6.876000px;}
.x17{left:8.085000px;}
.x51{left:9.345000px;}
.x49{left:10.965000px;}
.x4{left:12.765000px;}
.x14{left:16.911000px;}
.x5{left:18.885000px;}
.x48{left:20.325000px;}
.x52{left:22.305000px;}
.x15{left:23.391000px;}
.x43{left:25.005000px;}
.x45{left:26.676000px;}
.x22{left:29.151000px;}
.x58{left:31.305000px;}
.x5d{left:32.925000px;}
.x1d{left:34.905000px;}
.x6{left:35.985000px;}
.xe{left:43.731000px;}
.x21{left:47.691000px;}
.xf{left:50.751000px;}
.x55{left:52.416000px;}
.xd{left:55.071000px;}
.x24{left:57.051000px;}
.x18{left:62.130000px;}
.x4a{left:64.296000px;}
.x23{left:66.225000px;}
.x11{left:67.485000px;}
.x40{left:68.760000px;}
.x4d{left:70.560000px;}
.x54{left:72.165000px;}
.x1a{left:74.550000px;}
.x1{left:78.300000px;}
.x13{left:79.545000px;}
.x46{left:81.570000px;}
.x12{left:83.685000px;}
.x5e{left:84.990000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x2c{left:98.316000px;}
.x4e{left:100.260000px;}
.x25{left:102.765000px;}
.x32{left:104.076000px;}
.x20{left:106.725000px;}
.x6a{left:108.036000px;}
.x5a{left:110.010000px;}
.x4f{left:111.240000px;}
.x26{left:113.256000px;}
.x47{left:118.470000px;}
.x5b{left:121.350000px;}
.x10{left:124.545000px;}
.x4c{left:133.560000px;}
.x4b{left:135.750000px;}
.x3e{left:137.190000px;}
.x37{left:140.436000px;}
.x28{left:146.556000px;}
.x56{left:147.630000px;}
.x50{left:155.880000px;}
.x5f{left:162.390000px;}
.x19{left:169.590000px;}
.x3{left:182.385000px;}
.x35{left:187.950000px;}
.x1c{left:194.610000px;}
.x41{left:198.210000px;}
.x1b{left:208.110000px;}
.x1e{left:213.690000px;}
.x16{left:219.105000px;}
.x31{left:222.870000px;}
.x5c{left:224.310000px;}
.x53{left:231.690000px;}
.x2b{left:238.350000px;}
.x44{left:241.950000px;}
.x59{left:244.650000px;}
.x57{left:249.690000px;}
.x70{left:252.390000px;}
.x34{left:256.710000px;}
.x73{left:265.395000px;}
.x78{left:268.995000px;}
.x7e{left:270.075000px;}
.x3f{left:279.435000px;}
.x3c{left:283.395000px;}
.xb{left:311.655000px;}
.x76{left:322.815000px;}
.x63{left:353.055000px;}
.x69{left:358.455000px;}
.xa{left:370.695000px;}
.x60{left:416.775000px;}
.x61{left:418.755000px;}
.x36{left:442.365000px;}
.x79{left:444.705000px;}
.x3d{left:446.685000px;}
.x3b{left:466.845000px;}
.x9{left:467.925000px;}
.x30{left:475.845000px;}
.x6f{left:481.965000px;}
.x1f{left:502.125000px;}
.x2d{left:504.465000px;}
.x2f{left:514.725000px;}
.x75{left:516.525000px;}
.x80{left:531.645000px;}
.x65{left:534.705000px;}
.x7f{left:543.165000px;}
.x42{left:547.320000px;}
.x7c{left:553.965000px;}
.x68{left:560.085000px;}
.x72{left:562.965000px;}
.x77{left:585.825000px;}
.x6e{left:588.885000px;}
.x3a{left:601.845000px;}
.x7a{left:606.525000px;}
.x2e{left:610.125000px;}
.x6b{left:613.365000px;}
.x7d{left:618.585000px;}
.x7b{left:641.670000px;}
.x66{left:656.430000px;}
.x71{left:662.730000px;}
.x64{left:673.710000px;}
.x74{left:683.070000px;}
.x2a{left:699.090000px;}
.x6d{left:705.390000px;}
.x67{left:707.730000px;}
.x62{left:740.670000px;}
.x33{left:744.090000px;}
.x38{left:752.010000px;}
.x6c{left:755.250000px;}
.x29{left:762.450000px;}
.x8{left:766.050000px;}
.x39{left:779.010000px;}
.xc{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.256000pt;}
.ls18{letter-spacing:-0.917333pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls19{letter-spacing:-0.480533pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.296000pt;}
.ls1d{letter-spacing:-0.208533pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls1f{letter-spacing:-0.164267pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.014293pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.140800pt;}
.ls13{letter-spacing:0.150400pt;}
.ls4{letter-spacing:0.150667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.165867pt;}
.ls14{letter-spacing:0.195733pt;}
.ls1a{letter-spacing:0.301334pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.325211pt;}
.lsb{letter-spacing:0.325333pt;}
.ls1e{letter-spacing:0.355733pt;}
.lsa{letter-spacing:0.365333pt;}
.ls20{letter-spacing:0.409067pt;}
.ls15{letter-spacing:0.466133pt;}
.ls12{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.762667pt;}
.lsd{letter-spacing:0.773333pt;}
.ls11{letter-spacing:0.784000pt;}
.ls17{letter-spacing:0.789333pt;}
.ls16{letter-spacing:0.816000pt;}
.ls26{letter-spacing:2.249457pt;}
.ls1c{letter-spacing:11.306667pt;}
.ls23{letter-spacing:20.884806pt;}
.ws2{word-spacing:-16.464000pt;}
.ws19{word-spacing:-14.672427pt;}
.ws12{word-spacing:-14.096000pt;}
.ws14{word-spacing:-14.069333pt;}
.ws13{word-spacing:-14.064000pt;}
.wsa{word-spacing:-14.053333pt;}
.ws7{word-spacing:-14.042667pt;}
.ws8{word-spacing:-13.920000pt;}
.ws15{word-spacing:-13.877333pt;}
.ws11{word-spacing:-13.746133pt;}
.ws16{word-spacing:-13.635733pt;}
.ws6{word-spacing:-13.605333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.475733pt;}
.ws17{word-spacing:-13.445867pt;}
.wsf{word-spacing:-13.430400pt;}
.ws1a{word-spacing:-13.420800pt;}
.ws18{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.265707pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.984000pt;}
.wsd{word-spacing:-12.960000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.200533pt;}
.ws3{word-spacing:-9.078933pt;}
.wsb{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._7{margin-left:-3.818880pt;}
._6{margin-left:-2.545920pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.534827pt;}
._8{width:3.429333pt;}
._b{width:4.325547pt;}
._d{width:5.480960pt;}
._c{width:6.554240pt;}
._15{width:7.446400pt;}
._f{width:8.354790pt;}
._e{width:9.298331pt;}
._10{width:10.298347pt;}
._12{width:11.902243pt;}
._9{width:13.348480pt;}
._a{width:15.050240pt;}
._11{width:16.679680pt;}
._16{width:17.635840pt;}
._13{width:19.556888pt;}
._14{width:21.430472pt;}
._19{width:23.650346pt;}
._17{width:24.913280pt;}
._18{width:26.188160pt;}
._4{width:352.239787pt;}
._5{width:869.413120pt;}
._3{width:1234.831787pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.026667pt;}
.y42{bottom:3.346667pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:7.360000pt;}
.y4c{bottom:9.920000pt;}
.y91{bottom:11.040000pt;}
.y58{bottom:15.200000pt;}
.y4b{bottom:16.640000pt;}
.y41{bottom:18.386667pt;}
.y8d{bottom:18.546667pt;}
.y4{bottom:18.720000pt;}
.y8f{bottom:26.426667pt;}
.y57{bottom:31.840000pt;}
.y8c{bottom:33.906667pt;}
.y95{bottom:33.920000pt;}
.y99{bottom:34.080000pt;}
.y93{bottom:34.106667pt;}
.y3{bottom:39.706667pt;}
.y87{bottom:41.586667pt;}
.y90{bottom:41.786667pt;}
.y40{bottom:42.066667pt;}
.y4a{bottom:43.360000pt;}
.y88{bottom:49.266667pt;}
.y97{bottom:49.280000pt;}
.y9b{bottom:49.440000pt;}
.y92{bottom:49.466667pt;}
.y56{bottom:51.040000pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:53.760000pt;}
.y86{bottom:56.946667pt;}
.y3f{bottom:57.266667pt;}
.y8b{bottom:64.626667pt;}
.y96{bottom:64.640000pt;}
.y9a{bottom:64.800000pt;}
.y48{bottom:65.280000pt;}
.y55{bottom:68.000000pt;}
.y3e{bottom:72.626667pt;}
.y47{bottom:76.960000pt;}
.y8a{bottom:79.986667pt;}
.y54{bottom:81.760000pt;}
.y94{bottom:83.840000pt;}
.y3d{bottom:87.986667pt;}
.y59{bottom:91.040000pt;}
.y89{bottom:95.346667pt;}
.y53{bottom:95.706667pt;}
.y46{bottom:96.346667pt;}
.y3c{bottom:103.346667pt;}
.y43{bottom:103.680000pt;}
.y52{bottom:104.026667pt;}
.ycc{bottom:110.720000pt;}
.y3b{bottom:118.746667pt;}
.y51{bottom:120.826667pt;}
.ycb{bottom:126.080000pt;}
.y3a{bottom:134.106667pt;}
.y50{bottom:134.586667pt;}
.yca{bottom:141.440000pt;}
.y4f{bottom:148.346667pt;}
.y39{bottom:148.986667pt;}
.y45{bottom:151.546667pt;}
.yc9{bottom:156.800000pt;}
.y44{bottom:160.986667pt;}
.y8e{bottom:161.120000pt;}
.y4e{bottom:162.266667pt;}
.yc8{bottom:172.320000pt;}
.y38{bottom:172.666667pt;}
.y4d{bottom:175.706667pt;}
.yc7{bottom:187.546667pt;}
.y37{bottom:188.026667pt;}
.yc6{bottom:203.066667pt;}
.y36{bottom:203.386667pt;}
.yc5{bottom:218.266667pt;}
.y35{bottom:218.746667pt;}
.y85{bottom:223.240000pt;}
.yc4{bottom:233.786667pt;}
.y34{bottom:233.946667pt;}
.yc3{bottom:248.666667pt;}
.y33{bottom:249.306667pt;}
.y32{bottom:264.666667pt;}
.y1e{bottom:268.506667pt;}
.yc2{bottom:272.346667pt;}
.y31{bottom:280.026667pt;}
.yc1{bottom:287.706667pt;}
.y1d{bottom:289.946667pt;}
.y10{bottom:291.240000pt;}
.y30{bottom:295.386667pt;}
.yc0{bottom:303.066667pt;}
.y2f{bottom:310.746667pt;}
.y1c{bottom:311.546667pt;}
.ybf{bottom:318.426667pt;}
.y2e{bottom:325.973333pt;}
.y83{bottom:331.240000pt;}
.y1b{bottom:333.013333pt;}
.ybe{bottom:333.626667pt;}
.y2d{bottom:341.333333pt;}
.ybd{bottom:348.666667pt;}
.y1a{bottom:354.453333pt;}
.y2c{bottom:356.373333pt;}
.y82{bottom:360.986667pt;}
.y81{bottom:367.386667pt;}
.ybc{bottom:372.346667pt;}
.y19{bottom:375.893333pt;}
.y2b{bottom:379.573333pt;}
.ybb{bottom:387.706667pt;}
.y80{bottom:391.226667pt;}
.y2a{bottom:393.493333pt;}
.y18{bottom:397.333333pt;}
.yba{bottom:403.106667pt;}
.y7f{bottom:406.626667pt;}
.y29{bottom:407.253333pt;}
.yb9{bottom:418.466667pt;}
.y17{bottom:418.773333pt;}
.y28{bottom:421.013333pt;}
.y7e{bottom:421.986667pt;}
.yb8{bottom:433.666667pt;}
.y27{bottom:434.773333pt;}
.y7d{bottom:437.346667pt;}
.y16{bottom:440.213333pt;}
.y26{bottom:448.693333pt;}
.yb7{bottom:449.026667pt;}
.y7c{bottom:452.546667pt;}
.y15{bottom:461.813333pt;}
.y25{bottom:462.453333pt;}
.yb6{bottom:464.386667pt;}
.y7b{bottom:467.586667pt;}
.ye6{bottom:469.346667pt;}
.y24{bottom:476.213333pt;}
.yb5{bottom:479.426667pt;}
.y14{bottom:483.253333pt;}
.ye5{bottom:484.546667pt;}
.y23{bottom:489.973333pt;}
.y7a{bottom:491.266667pt;}
.ye4{bottom:499.906667pt;}
.yb4{bottom:503.106667pt;}
.y22{bottom:503.893333pt;}
.y13{bottom:504.693333pt;}
.y79{bottom:506.626667pt;}
.ye3{bottom:515.266667pt;}
.y21{bottom:517.653333pt;}
.yb3{bottom:518.466667pt;}
.y78{bottom:521.986667pt;}
.y12{bottom:526.173333pt;}
.ye2{bottom:530.626667pt;}
.y20{bottom:531.453333pt;}
.yb2{bottom:533.666667pt;}
.y77{bottom:537.186667pt;}
.y1f{bottom:544.893333pt;}
.ye1{bottom:545.986667pt;}
.y11{bottom:547.613333pt;}
.yb1{bottom:549.026667pt;}
.y76{bottom:552.546667pt;}
.ye0{bottom:561.186667pt;}
.yb0{bottom:564.386667pt;}
.y75{bottom:567.586667pt;}
.ydf{bottom:576.546667pt;}
.yaf{bottom:579.426667pt;}
.y74{bottom:591.266667pt;}
.yde{bottom:591.906667pt;}
.yae{bottom:603.106667pt;}
.y73{bottom:606.653333pt;}
.ydd{bottom:607.293333pt;}
.yad{bottom:618.493333pt;}
.y72{bottom:622.013333pt;}
.ydc{bottom:622.653333pt;}
.yac{bottom:633.853333pt;}
.y71{bottom:636.893333pt;}
.ydb{bottom:638.013333pt;}
.yab{bottom:651.453333pt;}
.yda{bottom:653.213333pt;}
.y70{bottom:660.573333pt;}
.yaa{bottom:666.653333pt;}
.yd9{bottom:668.573333pt;}
.y6f{bottom:675.933333pt;}
.ya9{bottom:683.933333pt;}
.y6e{bottom:691.293333pt;}
.ya8{bottom:699.133333pt;}
.yd8{bottom:699.293333pt;}
.y6d{bottom:706.653333pt;}
.yd7{bottom:714.653333pt;}
.ya7{bottom:716.413333pt;}
.y6c{bottom:722.013333pt;}
.yd6{bottom:730.013333pt;}
.ya6{bottom:731.773333pt;}
.y6b{bottom:737.213333pt;}
.yd5{bottom:745.213333pt;}
.ya5{bottom:749.053333pt;}
.y6a{bottom:752.573333pt;}
.yd4{bottom:760.573333pt;}
.ya4{bottom:766.653333pt;}
.y69{bottom:767.933333pt;}
.yd3{bottom:775.933333pt;}
.ya3{bottom:782.013333pt;}
.y68{bottom:783.293333pt;}
.yd2{bottom:791.293333pt;}
.ya2{bottom:796.893333pt;}
.y67{bottom:798.653333pt;}
.yd1{bottom:806.653333pt;}
.y66{bottom:813.693333pt;}
.ya1{bottom:820.613333pt;}
.yd0{bottom:822.053333pt;}
.ya0{bottom:835.973333pt;}
.y65{bottom:837.253333pt;}
.yf{bottom:849.733333pt;}
.y9f{bottom:851.333333pt;}
.y64{bottom:852.613333pt;}
.ye{bottom:854.853333pt;}
.y9e{bottom:866.693333pt;}
.y63{bottom:867.973333pt;}
.yd{bottom:870.693333pt;}
.y9d{bottom:881.893333pt;}
.ycf{bottom:883.013333pt;}
.y62{bottom:883.333333pt;}
.yc{bottom:886.373333pt;}
.y9c{bottom:896.933333pt;}
.y61{bottom:898.373333pt;}
.yb{bottom:902.053333pt;}
.yce{bottom:906.693333pt;}
.ya{bottom:917.573333pt;}
.y98{bottom:917.893333pt;}
.y60{bottom:921.893333pt;}
.y5f{bottom:937.253333pt;}
.y9{bottom:942.053333pt;}
.y5e{bottom:952.613333pt;}
.y8{bottom:967.333333pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.400000pt;}
.ycd{bottom:983.013333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hc{height:3.702500pt;}
.h16{height:5.022500pt;}
.h1c{height:5.025000pt;}
.h1d{height:15.346667pt;}
.h7{height:21.006562pt;}
.h18{height:24.480000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.hf{height:36.431250pt;}
.h11{height:36.515625pt;}
.he{height:37.410000pt;}
.h10{height:47.085938pt;}
.h15{height:48.375000pt;}
.h8{height:50.955000pt;}
.h17{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:52.834688pt;}
.ha{height:53.535000pt;}
.h1b{height:54.390938pt;}
.h1a{height:55.402500pt;}
.h19{height:56.891250pt;}
.h3{height:58.563750pt;}
.h23{height:60.300000pt;}
.h1f{height:61.472000pt;}
.h22{height:61.920000pt;}
.h24{height:64.080000pt;}
.hb{height:64.500000pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h20{height:76.640000pt;}
.h21{height:76.786667pt;}
.h4{height:104.160000pt;}
.h1e{height:107.346667pt;}
.h12{height:186.906667pt;}
.hd{height:556.080000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w7{width:177.826667pt;}
.w8{width:237.466667pt;}
.w9{width:237.653333pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.112000pt;}
.x17{left:7.186667pt;}
.x51{left:8.306667pt;}
.x49{left:9.746667pt;}
.x4{left:11.346667pt;}
.x14{left:15.032000pt;}
.x5{left:16.786667pt;}
.x48{left:18.066667pt;}
.x52{left:19.826667pt;}
.x15{left:20.792000pt;}
.x43{left:22.226667pt;}
.x45{left:23.712000pt;}
.x22{left:25.912000pt;}
.x58{left:27.826667pt;}
.x5d{left:29.266667pt;}
.x1d{left:31.026667pt;}
.x6{left:31.986667pt;}
.xe{left:38.872000pt;}
.x21{left:42.392000pt;}
.xf{left:45.112000pt;}
.x55{left:46.592000pt;}
.xd{left:48.952000pt;}
.x24{left:50.712000pt;}
.x18{left:55.226667pt;}
.x4a{left:57.152000pt;}
.x23{left:58.866667pt;}
.x11{left:59.986667pt;}
.x40{left:61.120000pt;}
.x4d{left:62.720000pt;}
.x54{left:64.146667pt;}
.x1a{left:66.266667pt;}
.x1{left:69.600000pt;}
.x13{left:70.706667pt;}
.x46{left:72.506667pt;}
.x12{left:74.386667pt;}
.x5e{left:75.546667pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x2c{left:87.392000pt;}
.x4e{left:89.120000pt;}
.x25{left:91.346667pt;}
.x32{left:92.512000pt;}
.x20{left:94.866667pt;}
.x6a{left:96.032000pt;}
.x5a{left:97.786667pt;}
.x4f{left:98.880000pt;}
.x26{left:100.672000pt;}
.x47{left:105.306667pt;}
.x5b{left:107.866667pt;}
.x10{left:110.706667pt;}
.x4c{left:118.720000pt;}
.x4b{left:120.666667pt;}
.x3e{left:121.946667pt;}
.x37{left:124.832000pt;}
.x28{left:130.272000pt;}
.x56{left:131.226667pt;}
.x50{left:138.560000pt;}
.x5f{left:144.346667pt;}
.x19{left:150.746667pt;}
.x3{left:162.120000pt;}
.x35{left:167.066667pt;}
.x1c{left:172.986667pt;}
.x41{left:176.186667pt;}
.x1b{left:184.986667pt;}
.x1e{left:189.946667pt;}
.x16{left:194.760000pt;}
.x31{left:198.106667pt;}
.x5c{left:199.386667pt;}
.x53{left:205.946667pt;}
.x2b{left:211.866667pt;}
.x44{left:215.066667pt;}
.x59{left:217.466667pt;}
.x57{left:221.946667pt;}
.x70{left:224.346667pt;}
.x34{left:228.186667pt;}
.x73{left:235.906667pt;}
.x78{left:239.106667pt;}
.x7e{left:240.066667pt;}
.x3f{left:248.386667pt;}
.x3c{left:251.906667pt;}
.xb{left:277.026667pt;}
.x76{left:286.946667pt;}
.x63{left:313.826667pt;}
.x69{left:318.626667pt;}
.xa{left:329.506667pt;}
.x60{left:370.466667pt;}
.x61{left:372.226667pt;}
.x36{left:393.213333pt;}
.x79{left:395.293333pt;}
.x3d{left:397.053333pt;}
.x3b{left:414.973333pt;}
.x9{left:415.933333pt;}
.x30{left:422.973333pt;}
.x6f{left:428.413333pt;}
.x1f{left:446.333333pt;}
.x2d{left:448.413333pt;}
.x2f{left:457.533333pt;}
.x75{left:459.133333pt;}
.x80{left:472.573333pt;}
.x65{left:475.293333pt;}
.x7f{left:482.813333pt;}
.x42{left:486.506667pt;}
.x7c{left:492.413333pt;}
.x68{left:497.853333pt;}
.x72{left:500.413333pt;}
.x77{left:520.733333pt;}
.x6e{left:523.453333pt;}
.x3a{left:534.973333pt;}
.x7a{left:539.133333pt;}
.x2e{left:542.333333pt;}
.x6b{left:545.213333pt;}
.x7d{left:549.853333pt;}
.x7b{left:570.373333pt;}
.x66{left:583.493333pt;}
.x71{left:589.093333pt;}
.x64{left:598.853333pt;}
.x74{left:607.173333pt;}
.x2a{left:621.413333pt;}
.x6d{left:627.013333pt;}
.x67{left:629.093333pt;}
.x62{left:658.373333pt;}
.x33{left:661.413333pt;}
.x38{left:668.453333pt;}
.x6c{left:671.333333pt;}
.x29{left:677.733333pt;}
.x8{left:680.933333pt;}
.x39{left:692.453333pt;}
.xc{left:717.280000pt;}
}




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