
    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_7b7de7d233494abad7f4a314.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_db7b4a61e18416b0f23cd5cf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d55c8d6142028822f2757f13.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b4b3c52c8b2505b1c3e5cf75.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f299d402cd539df131703b78.woff')format("woff");}.ff5{font-family:ff5;line-height:0.998047;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_a245f3a11e45811a57c65506.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_44b84264e1658358eaf9763f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_f5346b16dc4256712ce51c06.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_e937a412526b3f622b9337bd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_6f9a9ea1f54421b77cc3de45.woff')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_833f6bb440eae32372360fbf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_16b4de462b3f71f0caedb8a9.woff')format("woff");}.fff{font-family:fff;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a694124d39dcd93e1b66f961.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_937e0f1c69e3a0d44ab1d39c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2c20b9ab5c52c960741c3477.woff')format("woff");}.ff14{font-family:ff14;line-height:0.937988;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls17{letter-spacing:-1.740000px;}
.ls11{letter-spacing:-1.596000px;}
.lsc{letter-spacing:-1.482000px;}
.lsb{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.961323px;}
.lse{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.780000px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.690000px;}
.ls1c{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.906500px;}
.ls10{letter-spacing:1.944000px;}
.ls2{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls18{letter-spacing:2.164500px;}
.ls0{letter-spacing:2.250000px;}
.ls1b{letter-spacing:2.310000px;}
.ls7{letter-spacing:2.322000px;}
.ls19{letter-spacing:2.370000px;}
.ls1d{letter-spacing:2.400000px;}
.ls6{letter-spacing:2.430000px;}
.ls16{letter-spacing:3.018000px;}
.ls8{letter-spacing:4.779000px;}
.ls1f{letter-spacing:15.387000px;}
.ls1e{letter-spacing:46.887000px;}
.ls15{letter-spacing:64.887000px;}
.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:-61.663798px;}
.ws6{word-spacing:-25.926000px;}
.wsc{word-spacing:-17.643000px;}
.ws3{word-spacing:-16.875000px;}
.wse{word-spacing:-16.789500px;}
.ws5{word-spacing:-16.146000px;}
.wsf{word-spacing:-16.107000px;}
.ws4{word-spacing:-15.354000px;}
.wsd{word-spacing:-14.775000px;}
.ws0{word-spacing:-14.625000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.221000px;}
.wsb{word-spacing:-12.885000px;}
.ws10{word-spacing:-12.375000px;}
.wsa{word-spacing:-10.125000px;}
.ws7{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-10.545600px;}
._1b{margin-left:-7.666500px;}
._9{margin-left:-6.237600px;}
._a{margin-left:-4.574700px;}
._b{margin-left:-3.056550px;}
._0{margin-left:-1.755000px;}
._4{width:1.696500px;}
._3{width:2.866500px;}
._7{width:3.978000px;}
._6{width:5.589000px;}
._14{width:7.022850px;}
._5{width:8.122500px;}
._27{width:10.354950px;}
._2{width:11.407500px;}
._1{width:13.338000px;}
._e{width:16.655550px;}
._f{width:17.696400px;}
._d{width:20.299500px;}
._c{width:21.484050px;}
._19{width:22.533450px;}
._17{width:25.211100px;}
._18{width:26.773950px;}
._16{width:29.615550px;}
._15{width:30.754050px;}
._11{width:34.237050px;}
._10{width:35.582550px;}
._25{width:44.516100px;}
._13{width:53.289000px;}
._12{width:58.397550px;}
._21{width:62.419500px;}
._20{width:71.721000px;}
._24{width:75.055500px;}
._1f{width:76.401000px;}
._1d{width:89.914500px;}
._1c{width:94.419000px;}
._26{width:160.114500px;}
._22{width:178.483500px;}
._23{width:188.194500px;}
._1e{width:247.352550px;}
._1a{width:310.225500px;}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs3{font-size:61.663798px;}
.fs4{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.367500px;}
.y4b{bottom:3.375000px;}
.ybf{bottom:3.390000px;}
.y46{bottom:3.405000px;}
.ya0{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yd9{bottom:4.515000px;}
.yce{bottom:4.537500px;}
.y49{bottom:11.250000px;}
.ye{bottom:11.295000px;}
.yd2{bottom:12.412500px;}
.yc{bottom:13.500000px;}
.y1b{bottom:14.670000px;}
.y4{bottom:15.750000px;}
.yc1{bottom:20.250000px;}
.y45{bottom:20.280000px;}
.ya7{bottom:21.375000px;}
.ya2{bottom:21.405000px;}
.y9e{bottom:21.420000px;}
.y4a{bottom:22.500000px;}
.ycd{bottom:22.537500px;}
.y90{bottom:22.545000px;}
.y18{bottom:23.625000px;}
.y48{bottom:25.875000px;}
.y5{bottom:30.375000px;}
.yb{bottom:30.405000px;}
.y3{bottom:36.037500px;}
.yd5{bottom:38.250000px;}
.yba{bottom:38.280000px;}
.y44{bottom:38.295000px;}
.ycc{bottom:39.405000px;}
.y93{bottom:39.412500px;}
.y8e{bottom:39.420000px;}
.y17{bottom:40.545000px;}
.ya{bottom:46.155000px;}
.y2{bottom:52.912500px;}
.yb9{bottom:55.155000px;}
.y43{bottom:55.200000px;}
.ybc{bottom:55.215000px;}
.y16{bottom:60.795000px;}
.y42{bottom:72.075000px;}
.y9{bottom:73.185000px;}
.y15{bottom:73.200000px;}
.y14{bottom:86.700000px;}
.y41{bottom:90.105000px;}
.y8{bottom:93.435000px;}
.y13{bottom:101.325000px;}
.y40{bottom:106.980000px;}
.y7{bottom:110.355000px;}
.ycb{bottom:113.700000px;}
.y12{bottom:120.495000px;}
.y3f{bottom:123.855000px;}
.y56{bottom:123.862500px;}
.y92{bottom:124.987500px;}
.yd1{bottom:131.737500px;}
.y55{bottom:141.862500px;}
.y3e{bottom:141.900000px;}
.y95{bottom:142.987500px;}
.yf0{bottom:146.362500px;}
.y11{bottom:146.370000px;}
.ycf{bottom:149.737500px;}
.y54{bottom:158.745000px;}
.y3d{bottom:158.775000px;}
.y94{bottom:161.025000px;}
.yef{bottom:163.275000px;}
.y2c{bottom:167.775000px;}
.yaf{bottom:170.025000px;}
.y10{bottom:171.150000px;}
.y53{bottom:175.650000px;}
.y3c{bottom:175.695000px;}
.y111{bottom:177.900000px;}
.y8d{bottom:179.025000px;}
.yee{bottom:181.275000px;}
.y2b{bottom:182.445000px;}
.yca{bottom:185.775000px;}
.yae{bottom:186.900000px;}
.y52{bottom:193.650000px;}
.y3b{bottom:193.680000px;}
.y110{bottom:194.775000px;}
.y91{bottom:197.025000px;}
.yed{bottom:198.150000px;}
.yad{bottom:200.400000px;}
.y2a{bottom:200.430000px;}
.yc9{bottom:203.820000px;}
.y3a{bottom:210.555000px;}
.y51{bottom:210.570000px;}
.y10f{bottom:212.820000px;}
.y8f{bottom:215.070000px;}
.y29{bottom:217.350000px;}
.yc7{bottom:221.820000px;}
.y50{bottom:227.445000px;}
.y39{bottom:227.475000px;}
.y10e{bottom:229.695000px;}
.y8c{bottom:233.070000px;}
.y28{bottom:235.350000px;}
.yc8{bottom:239.820000px;}
.y38{bottom:245.475000px;}
.y10d{bottom:246.600000px;}
.yec{bottom:249.975000px;}
.y27{bottom:252.225000px;}
.y8b{bottom:254.475000px;}
.yc6{bottom:257.850000px;}
.y4f{bottom:262.350000px;}
.y37{bottom:262.395000px;}
.y10c{bottom:264.600000px;}
.yeb{bottom:266.850000px;}
.y26{bottom:270.270000px;}
.y8a{bottom:271.350000px;}
.y4e{bottom:279.225000px;}
.y36{bottom:279.270000px;}
.y10b{bottom:281.475000px;}
.yea{bottom:284.895000px;}
.y25{bottom:287.145000px;}
.y89{bottom:289.380000px;}
.yc5{bottom:296.130000px;}
.y4d{bottom:297.255000px;}
.y35{bottom:297.300000px;}
.y10a{bottom:298.395000px;}
.ye9{bottom:301.770000px;}
.y24{bottom:305.175000px;}
.y88{bottom:306.255000px;}
.y4c{bottom:314.130000px;}
.y34{bottom:314.175000px;}
.y109{bottom:316.380000px;}
.ye8{bottom:318.645000px;}
.y23{bottom:322.050000px;}
.y87{bottom:323.130000px;}
.y47{bottom:327.675000px;}
.y33{bottom:331.050000px;}
.y108{bottom:333.300000px;}
.ye7{bottom:336.675000px;}
.y22{bottom:340.080000px;}
.y86{bottom:341.175000px;}
.yc4{bottom:345.675000px;}
.y32{bottom:349.080000px;}
.y107{bottom:350.175000px;}
.ye6{bottom:353.550000px;}
.y21{bottom:356.955000px;}
.y85{bottom:358.050000px;}
.y1c{bottom:364.800000px;}
.y31{bottom:365.955000px;}
.y106{bottom:368.205000px;}
.ye5{bottom:370.455000px;}
.y84{bottom:374.955000px;}
.y20{bottom:374.970000px;}
.yc3{bottom:380.580000px;}
.y30{bottom:382.875000px;}
.y105{bottom:385.080000px;}
.ye4{bottom:388.455000px;}
.y1f{bottom:391.875000px;}
.y83{bottom:392.970000px;}
.y2f{bottom:400.875000px;}
.y104{bottom:401.955000px;}
.ye3{bottom:405.330000px;}
.y82{bottom:409.875000px;}
.yc2{bottom:415.500000px;}
.y2e{bottom:417.750000px;}
.y1e{bottom:418.875000px;}
.y103{bottom:420.000000px;}
.ye2{bottom:422.250000px;}
.y81{bottom:426.750000px;}
.y2d{bottom:434.655000px;}
.y102{bottom:436.875000px;}
.y1d{bottom:436.905000px;}
.ye1{bottom:440.250000px;}
.y80{bottom:444.750000px;}
.yc0{bottom:451.530000px;}
.y101{bottom:453.795000px;}
.ye0{bottom:457.170000px;}
.y7f{bottom:461.655000px;}
.ydf{bottom:470.670000px;}
.y100{bottom:471.780000px;}
.y7e{bottom:478.530000px;}
.ybe{bottom:486.405000px;}
.yff{bottom:488.655000px;}
.y7d{bottom:497.700000px;}
.yfe{bottom:505.575000px;}
.yac{bottom:507.825000px;}
.y7c{bottom:514.575000px;}
.ybd{bottom:521.325000px;}
.yfd{bottom:523.575000px;}
.yab{bottom:524.700000px;}
.y7b{bottom:532.575000px;}
.yfc{bottom:540.495000px;}
.yaa{bottom:541.605000px;}
.y7a{bottom:550.620000px;}
.yfb{bottom:557.370000px;}
.ya9{bottom:559.620000px;}
.y79{bottom:567.495000px;}
.ybb{bottom:574.230000px;}
.yfa{bottom:575.355000px;}
.ya8{bottom:576.495000px;}
.y78{bottom:584.400000px;}
.ya4{bottom:591.150000px;}
.yf9{bottom:592.275000px;}
.y77{bottom:602.400000px;}
.ya6{bottom:609.150000px;}
.y76{bottom:620.445000px;}
.ya5{bottom:627.195000px;}
.y75{bottom:638.445000px;}
.yb8{bottom:644.070000px;}
.ya1{bottom:645.195000px;}
.y74{bottom:656.445000px;}
.yf8{bottom:660.975000px;}
.ya3{bottom:663.225000px;}
.y73{bottom:675.600000px;}
.yf7{bottom:678.975000px;}
.y9d{bottom:681.225000px;}
.y72{bottom:692.475000px;}
.yf6{bottom:695.850000px;}
.y9f{bottom:699.225000px;}
.y71{bottom:709.395000px;}
.yf5{bottom:712.770000px;}
.yb7{bottom:713.880000px;}
.y9c{bottom:717.255000px;}
.y70{bottom:728.505000px;}
.yf4{bottom:730.755000px;}
.y9b{bottom:738.630000px;}
.y6f{bottom:746.550000px;}
.yf3{bottom:747.675000px;}
.yb6{bottom:748.800000px;}
.y9a{bottom:755.550000px;}
.y6e{bottom:764.550000px;}
.y99{bottom:773.550000px;}
.yde{bottom:776.925000px;}
.y6d{bottom:782.550000px;}
.yb5{bottom:788.205000px;}
.y98{bottom:790.455000px;}
.ydd{bottom:793.830000px;}
.y6c{bottom:799.455000px;}
.yb4{bottom:805.080000px;}
.y97{bottom:807.330000px;}
.ydc{bottom:811.830000px;}
.y1a{bottom:812.955000px;}
.y6b{bottom:816.330000px;}
.y96{bottom:820.830000px;}
.yb3{bottom:823.080000px;}
.ydb{bottom:828.750000px;}
.y6a{bottom:834.375000px;}
.yb2{bottom:840.000000px;}
.yf{bottom:842.250000px;}
.yda{bottom:843.375000px;}
.y69{bottom:851.250000px;}
.yb1{bottom:856.875000px;}
.y68{bottom:868.125000px;}
.yb0{bottom:870.420000px;}
.y67{bottom:886.170000px;}
.yd8{bottom:895.155000px;}
.y66{bottom:903.045000px;}
.y65{bottom:919.950000px;}
.y64{bottom:937.950000px;}
.yd7{bottom:948.075000px;}
.y63{bottom:954.870000px;}
.y62{bottom:971.745000px;}
.y61{bottom:989.745000px;}
.yd6{bottom:1001.025000px;}
.yf2{bottom:1006.650000px;}
.y60{bottom:1011.150000px;}
.y5f{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.yd4{bottom:1035.945000px;}
.y5e{bottom:1041.570000px;}
.y6{bottom:1053.945000px;}
.y5d{bottom:1058.445000px;}
.y5c{bottom:1075.320000px;}
.yd3{bottom:1088.850000px;}
.yf1{bottom:1093.350000px;}
.y5b{bottom:1097.850000px;}
.y5a{bottom:1110.225000px;}
.y59{bottom:1127.130000px;}
.y58{bottom:1145.130000px;}
.y57{bottom:1162.050000px;}
.y1{bottom:1193.550000px;}
.h23{height:16.875000px;}
.h26{height:16.897500px;}
.h21{height:16.912500px;}
.hd{height:25.912500px;}
.h1f{height:28.278809px;}
.h17{height:29.287500px;}
.h15{height:29.953125px;}
.h2a{height:33.750000px;}
.h2b{height:33.787500px;}
.h27{height:34.875000px;}
.h25{height:34.897500px;}
.h24{height:34.912500px;}
.h9{height:37.125000px;}
.h1c{height:39.832031px;}
.h1d{height:40.847168px;}
.h6{height:41.275635px;}
.h20{height:42.589600px;}
.h10{height:43.075195px;}
.h16{height:43.453125px;}
.hb{height:43.875000px;}
.h4{height:44.503418px;}
.h31{height:46.218809px;}
.h1e{height:46.278809px;}
.h30{height:46.338809px;}
.h32{height:46.398809px;}
.h2f{height:46.458809px;}
.h1b{height:47.074219px;}
.h1a{height:49.234131px;}
.h3{height:49.537500px;}
.h2{height:50.273438px;}
.he{height:50.625000px;}
.h2d{height:51.772500px;}
.h29{height:51.787500px;}
.h2e{height:51.825000px;}
.h5{height:51.968611px;}
.h22{height:52.912500px;}
.h2c{height:52.950000px;}
.h14{height:53.709961px;}
.ha{height:54.000000px;}
.h12{height:58.185791px;}
.h13{height:59.899658px;}
.h11{height:64.237500px;}
.h8{height:67.137451px;}
.h28{height:68.700000px;}
.h18{height:69.114990px;}
.hc{height:71.613281px;}
.h7{height:121.612500px;}
.hf{height:185.775000px;}
.h19{height:448.155000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w3{width:74.362500px;}
.w15{width:112.650000px;}
.w10{width:136.312500px;}
.wf{width:137.400000px;}
.wd{width:146.437500px;}
.wb{width:147.562500px;}
.w9{width:148.687500px;}
.wa{width:149.812500px;}
.we{width:150.930000px;}
.w4{width:152.055000px;}
.wc{width:156.555000px;}
.w11{width:168.975000px;}
.w14{width:193.725000px;}
.w13{width:193.770000px;}
.w7{width:223.020000px;}
.w12{width:245.550000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w2{width:674.745000px;}
.w6{width:747.945000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3c{left:-695.032500px;}
.x0{left:0.000000px;}
.x30{left:6.750000px;}
.xa{left:7.875000px;}
.x3{left:9.037500px;}
.x17{left:12.420000px;}
.x14{left:31.537500px;}
.x2{left:72.075000px;}
.x7{left:73.237500px;}
.x1{left:81.112487px;}
.x1a{left:82.237487px;}
.x38{left:83.362487px;}
.x2e{left:84.487487px;}
.x23{left:90.112487px;}
.x3d{left:94.612487px;}
.x8{left:97.987500px;}
.x13{left:101.362500px;}
.x35{left:103.649987px;}
.x41{left:108.149987px;}
.x18{left:135.187487px;}
.x10{left:149.812500px;}
.x3e{left:156.554987px;}
.x19{left:162.224987px;}
.x12{left:171.187500px;}
.x11{left:207.262500px;}
.x15{left:214.012500px;}
.x25{left:220.800000px;}
.x1c{left:223.050000px;}
.x9{left:225.300000px;}
.xd{left:290.625000px;}
.x16{left:296.250000px;}
.x34{left:305.249987px;}
.x2c{left:315.419987px;}
.x39{left:319.920000px;}
.x1b{left:323.279987px;}
.x24{left:326.654987px;}
.x22{left:337.949987px;}
.x2d{left:340.199987px;}
.x37{left:341.324987px;}
.xb{left:345.780000px;}
.x2f{left:346.949987px;}
.x21{left:351.449987px;}
.x2a{left:360.449987px;}
.x31{left:363.825000px;}
.xc{left:364.950000px;}
.x1d{left:372.870000px;}
.xf{left:373.957500px;}
.x26{left:378.495000px;}
.x36{left:389.729987px;}
.x3f{left:447.194987px;}
.xe{left:453.945000px;}
.x32{left:500.145000px;}
.x4{left:505.800000px;}
.x3a{left:513.675000px;}
.x1e{left:522.675000px;}
.x27{left:526.050000px;}
.x5{left:533.955000px;}
.x2b{left:651.074987px;}
.x20{left:667.994987px;}
.x33{left:670.245000px;}
.x1f{left:671.370000px;}
.x28{left:673.620000px;}
.x40{left:682.619987px;}
.x29{left:699.524987px;}
.x3b{left:708.525000px;}
.x6{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls17{letter-spacing:-1.546667pt;}
.ls11{letter-spacing:-1.418667pt;}
.lsc{letter-spacing:-1.317333pt;}
.lsb{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.854509pt;}
.lse{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.613333pt;}
.ls1c{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls10{letter-spacing:1.728000pt;}
.ls2{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls18{letter-spacing:1.924000pt;}
.ls0{letter-spacing:2.000000pt;}
.ls1b{letter-spacing:2.053333pt;}
.ls7{letter-spacing:2.064000pt;}
.ls19{letter-spacing:2.106667pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls6{letter-spacing:2.160000pt;}
.ls16{letter-spacing:2.682667pt;}
.ls8{letter-spacing:4.248000pt;}
.ls1f{letter-spacing:13.677333pt;}
.ls1e{letter-spacing:41.677333pt;}
.ls15{letter-spacing:57.677333pt;}
.ws2{word-spacing:-54.812265pt;}
.ws6{word-spacing:-23.045333pt;}
.wsc{word-spacing:-15.682667pt;}
.ws3{word-spacing:-15.000000pt;}
.wse{word-spacing:-14.924000pt;}
.ws5{word-spacing:-14.352000pt;}
.wsf{word-spacing:-14.317333pt;}
.ws4{word-spacing:-13.648000pt;}
.wsd{word-spacing:-13.133333pt;}
.ws0{word-spacing:-13.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.453333pt;}
.ws10{word-spacing:-11.000000pt;}
.wsa{word-spacing:-9.000000pt;}
.ws7{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-9.373867pt;}
._1b{margin-left:-6.814667pt;}
._9{margin-left:-5.544533pt;}
._a{margin-left:-4.066400pt;}
._b{margin-left:-2.716933pt;}
._0{margin-left:-1.560000pt;}
._4{width:1.508000pt;}
._3{width:2.548000pt;}
._7{width:3.536000pt;}
._6{width:4.968000pt;}
._14{width:6.242533pt;}
._5{width:7.220000pt;}
._27{width:9.204400pt;}
._2{width:10.140000pt;}
._1{width:11.856000pt;}
._e{width:14.804933pt;}
._f{width:15.730133pt;}
._d{width:18.044000pt;}
._c{width:19.096933pt;}
._19{width:20.029733pt;}
._17{width:22.409867pt;}
._18{width:23.799067pt;}
._16{width:26.324933pt;}
._15{width:27.336933pt;}
._11{width:30.432933pt;}
._10{width:31.628933pt;}
._25{width:39.569867pt;}
._13{width:47.368000pt;}
._12{width:51.908933pt;}
._21{width:55.484000pt;}
._20{width:63.752000pt;}
._24{width:66.716000pt;}
._1f{width:67.912000pt;}
._1d{width:79.924000pt;}
._1c{width:83.928000pt;}
._26{width:142.324000pt;}
._22{width:158.652000pt;}
._23{width:167.284000pt;}
._1e{width:219.868933pt;}
._1a{width:275.756000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs3{font-size:54.812265pt;}
.fs4{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:2.993333pt;}
.y4b{bottom:3.000000pt;}
.ybf{bottom:3.013333pt;}
.y46{bottom:3.026667pt;}
.ya0{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yd9{bottom:4.013333pt;}
.yce{bottom:4.033333pt;}
.y49{bottom:10.000000pt;}
.ye{bottom:10.040000pt;}
.yd2{bottom:11.033333pt;}
.yc{bottom:12.000000pt;}
.y1b{bottom:13.040000pt;}
.y4{bottom:14.000000pt;}
.yc1{bottom:18.000000pt;}
.y45{bottom:18.026667pt;}
.ya7{bottom:19.000000pt;}
.ya2{bottom:19.026667pt;}
.y9e{bottom:19.040000pt;}
.y4a{bottom:20.000000pt;}
.ycd{bottom:20.033333pt;}
.y90{bottom:20.040000pt;}
.y18{bottom:21.000000pt;}
.y48{bottom:23.000000pt;}
.y5{bottom:27.000000pt;}
.yb{bottom:27.026667pt;}
.y3{bottom:32.033333pt;}
.yd5{bottom:34.000000pt;}
.yba{bottom:34.026667pt;}
.y44{bottom:34.040000pt;}
.ycc{bottom:35.026667pt;}
.y93{bottom:35.033333pt;}
.y8e{bottom:35.040000pt;}
.y17{bottom:36.040000pt;}
.ya{bottom:41.026667pt;}
.y2{bottom:47.033333pt;}
.yb9{bottom:49.026667pt;}
.y43{bottom:49.066667pt;}
.ybc{bottom:49.080000pt;}
.y16{bottom:54.040000pt;}
.y42{bottom:64.066667pt;}
.y9{bottom:65.053333pt;}
.y15{bottom:65.066667pt;}
.y14{bottom:77.066667pt;}
.y41{bottom:80.093333pt;}
.y8{bottom:83.053333pt;}
.y13{bottom:90.066667pt;}
.y40{bottom:95.093333pt;}
.y7{bottom:98.093333pt;}
.ycb{bottom:101.066667pt;}
.y12{bottom:107.106667pt;}
.y3f{bottom:110.093333pt;}
.y56{bottom:110.100000pt;}
.y92{bottom:111.100000pt;}
.yd1{bottom:117.100000pt;}
.y55{bottom:126.100000pt;}
.y3e{bottom:126.133333pt;}
.y95{bottom:127.100000pt;}
.yf0{bottom:130.100000pt;}
.y11{bottom:130.106667pt;}
.ycf{bottom:133.100000pt;}
.y54{bottom:141.106667pt;}
.y3d{bottom:141.133333pt;}
.y94{bottom:143.133333pt;}
.yef{bottom:145.133333pt;}
.y2c{bottom:149.133333pt;}
.yaf{bottom:151.133333pt;}
.y10{bottom:152.133333pt;}
.y53{bottom:156.133333pt;}
.y3c{bottom:156.173333pt;}
.y111{bottom:158.133333pt;}
.y8d{bottom:159.133333pt;}
.yee{bottom:161.133333pt;}
.y2b{bottom:162.173333pt;}
.yca{bottom:165.133333pt;}
.yae{bottom:166.133333pt;}
.y52{bottom:172.133333pt;}
.y3b{bottom:172.160000pt;}
.y110{bottom:173.133333pt;}
.y91{bottom:175.133333pt;}
.yed{bottom:176.133333pt;}
.yad{bottom:178.133333pt;}
.y2a{bottom:178.160000pt;}
.yc9{bottom:181.173333pt;}
.y3a{bottom:187.160000pt;}
.y51{bottom:187.173333pt;}
.y10f{bottom:189.173333pt;}
.y8f{bottom:191.173333pt;}
.y29{bottom:193.200000pt;}
.yc7{bottom:197.173333pt;}
.y50{bottom:202.173333pt;}
.y39{bottom:202.200000pt;}
.y10e{bottom:204.173333pt;}
.y8c{bottom:207.173333pt;}
.y28{bottom:209.200000pt;}
.yc8{bottom:213.173333pt;}
.y38{bottom:218.200000pt;}
.y10d{bottom:219.200000pt;}
.yec{bottom:222.200000pt;}
.y27{bottom:224.200000pt;}
.y8b{bottom:226.200000pt;}
.yc6{bottom:229.200000pt;}
.y4f{bottom:233.200000pt;}
.y37{bottom:233.240000pt;}
.y10c{bottom:235.200000pt;}
.yeb{bottom:237.200000pt;}
.y26{bottom:240.240000pt;}
.y8a{bottom:241.200000pt;}
.y4e{bottom:248.200000pt;}
.y36{bottom:248.240000pt;}
.y10b{bottom:250.200000pt;}
.yea{bottom:253.240000pt;}
.y25{bottom:255.240000pt;}
.y89{bottom:257.226667pt;}
.yc5{bottom:263.226667pt;}
.y4d{bottom:264.226667pt;}
.y35{bottom:264.266667pt;}
.y10a{bottom:265.240000pt;}
.ye9{bottom:268.240000pt;}
.y24{bottom:271.266667pt;}
.y88{bottom:272.226667pt;}
.y4c{bottom:279.226667pt;}
.y34{bottom:279.266667pt;}
.y109{bottom:281.226667pt;}
.ye8{bottom:283.240000pt;}
.y23{bottom:286.266667pt;}
.y87{bottom:287.226667pt;}
.y47{bottom:291.266667pt;}
.y33{bottom:294.266667pt;}
.y108{bottom:296.266667pt;}
.ye7{bottom:299.266667pt;}
.y22{bottom:302.293333pt;}
.y86{bottom:303.266667pt;}
.yc4{bottom:307.266667pt;}
.y32{bottom:310.293333pt;}
.y107{bottom:311.266667pt;}
.ye6{bottom:314.266667pt;}
.y21{bottom:317.293333pt;}
.y85{bottom:318.266667pt;}
.y1c{bottom:324.266667pt;}
.y31{bottom:325.293333pt;}
.y106{bottom:327.293333pt;}
.ye5{bottom:329.293333pt;}
.y84{bottom:333.293333pt;}
.y20{bottom:333.306667pt;}
.yc3{bottom:338.293333pt;}
.y30{bottom:340.333333pt;}
.y105{bottom:342.293333pt;}
.ye4{bottom:345.293333pt;}
.y1f{bottom:348.333333pt;}
.y83{bottom:349.306667pt;}
.y2f{bottom:356.333333pt;}
.y104{bottom:357.293333pt;}
.ye3{bottom:360.293333pt;}
.y82{bottom:364.333333pt;}
.yc2{bottom:369.333333pt;}
.y2e{bottom:371.333333pt;}
.y1e{bottom:372.333333pt;}
.y103{bottom:373.333333pt;}
.ye2{bottom:375.333333pt;}
.y81{bottom:379.333333pt;}
.y2d{bottom:386.360000pt;}
.y102{bottom:388.333333pt;}
.y1d{bottom:388.360000pt;}
.ye1{bottom:391.333333pt;}
.y80{bottom:395.333333pt;}
.yc0{bottom:401.360000pt;}
.y101{bottom:403.373333pt;}
.ye0{bottom:406.373333pt;}
.y7f{bottom:410.360000pt;}
.ydf{bottom:418.373333pt;}
.y100{bottom:419.360000pt;}
.y7e{bottom:425.360000pt;}
.ybe{bottom:432.360000pt;}
.yff{bottom:434.360000pt;}
.y7d{bottom:442.400000pt;}
.yfe{bottom:449.400000pt;}
.yac{bottom:451.400000pt;}
.y7c{bottom:457.400000pt;}
.ybd{bottom:463.400000pt;}
.yfd{bottom:465.400000pt;}
.yab{bottom:466.400000pt;}
.y7b{bottom:473.400000pt;}
.yfc{bottom:480.440000pt;}
.yaa{bottom:481.426667pt;}
.y7a{bottom:489.440000pt;}
.yfb{bottom:495.440000pt;}
.ya9{bottom:497.440000pt;}
.y79{bottom:504.440000pt;}
.ybb{bottom:510.426667pt;}
.yfa{bottom:511.426667pt;}
.ya8{bottom:512.440000pt;}
.y78{bottom:519.466667pt;}
.ya4{bottom:525.466667pt;}
.yf9{bottom:526.466667pt;}
.y77{bottom:535.466667pt;}
.ya6{bottom:541.466667pt;}
.y76{bottom:551.506667pt;}
.ya5{bottom:557.506667pt;}
.y75{bottom:567.506667pt;}
.yb8{bottom:572.506667pt;}
.ya1{bottom:573.506667pt;}
.y74{bottom:583.506667pt;}
.yf8{bottom:587.533333pt;}
.ya3{bottom:589.533333pt;}
.y73{bottom:600.533333pt;}
.yf7{bottom:603.533333pt;}
.y9d{bottom:605.533333pt;}
.y72{bottom:615.533333pt;}
.yf6{bottom:618.533333pt;}
.y9f{bottom:621.533333pt;}
.y71{bottom:630.573333pt;}
.yf5{bottom:633.573333pt;}
.yb7{bottom:634.560000pt;}
.y9c{bottom:637.560000pt;}
.y70{bottom:647.560000pt;}
.yf4{bottom:649.560000pt;}
.y9b{bottom:656.560000pt;}
.y6f{bottom:663.600000pt;}
.yf3{bottom:664.600000pt;}
.yb6{bottom:665.600000pt;}
.y9a{bottom:671.600000pt;}
.y6e{bottom:679.600000pt;}
.y99{bottom:687.600000pt;}
.yde{bottom:690.600000pt;}
.y6d{bottom:695.600000pt;}
.yb5{bottom:700.626667pt;}
.y98{bottom:702.626667pt;}
.ydd{bottom:705.626667pt;}
.y6c{bottom:710.626667pt;}
.yb4{bottom:715.626667pt;}
.y97{bottom:717.626667pt;}
.ydc{bottom:721.626667pt;}
.y1a{bottom:722.626667pt;}
.y6b{bottom:725.626667pt;}
.y96{bottom:729.626667pt;}
.yb3{bottom:731.626667pt;}
.ydb{bottom:736.666667pt;}
.y6a{bottom:741.666667pt;}
.yb2{bottom:746.666667pt;}
.yf{bottom:748.666667pt;}
.yda{bottom:749.666667pt;}
.y69{bottom:756.666667pt;}
.yb1{bottom:761.666667pt;}
.y68{bottom:771.666667pt;}
.yb0{bottom:773.706667pt;}
.y67{bottom:787.706667pt;}
.yd8{bottom:795.693333pt;}
.y66{bottom:802.706667pt;}
.y65{bottom:817.733333pt;}
.y64{bottom:833.733333pt;}
.yd7{bottom:842.733333pt;}
.y63{bottom:848.773333pt;}
.y62{bottom:863.773333pt;}
.y61{bottom:879.773333pt;}
.yd6{bottom:889.800000pt;}
.yf2{bottom:894.800000pt;}
.y60{bottom:898.800000pt;}
.y5f{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.yd4{bottom:920.840000pt;}
.y5e{bottom:925.840000pt;}
.y6{bottom:936.840000pt;}
.y5d{bottom:940.840000pt;}
.y5c{bottom:955.840000pt;}
.yd3{bottom:967.866667pt;}
.yf1{bottom:971.866667pt;}
.y5b{bottom:975.866667pt;}
.y5a{bottom:986.866667pt;}
.y59{bottom:1001.893333pt;}
.y58{bottom:1017.893333pt;}
.y57{bottom:1032.933333pt;}
.y1{bottom:1060.933333pt;}
.h23{height:15.000000pt;}
.h26{height:15.020000pt;}
.h21{height:15.033333pt;}
.hd{height:23.033333pt;}
.h1f{height:25.136719pt;}
.h17{height:26.033333pt;}
.h15{height:26.625000pt;}
.h2a{height:30.000000pt;}
.h2b{height:30.033333pt;}
.h27{height:31.000000pt;}
.h25{height:31.020000pt;}
.h24{height:31.033333pt;}
.h9{height:33.000000pt;}
.h1c{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h6{height:36.689453pt;}
.h20{height:37.857422pt;}
.h10{height:38.289062pt;}
.h16{height:38.625000pt;}
.hb{height:39.000000pt;}
.h4{height:39.558594pt;}
.h31{height:41.083385pt;}
.h1e{height:41.136719pt;}
.h30{height:41.190052pt;}
.h32{height:41.243385pt;}
.h2f{height:41.296719pt;}
.h1b{height:41.843750pt;}
.h1a{height:43.763672pt;}
.h3{height:44.033333pt;}
.h2{height:44.687500pt;}
.he{height:45.000000pt;}
.h2d{height:46.020000pt;}
.h29{height:46.033333pt;}
.h2e{height:46.066667pt;}
.h5{height:46.194321pt;}
.h22{height:47.033333pt;}
.h2c{height:47.066667pt;}
.h14{height:47.742188pt;}
.ha{height:48.000000pt;}
.h12{height:51.720703pt;}
.h13{height:53.244141pt;}
.h11{height:57.100000pt;}
.h8{height:59.677734pt;}
.h28{height:61.066667pt;}
.h18{height:61.435547pt;}
.hc{height:63.656250pt;}
.h7{height:108.100000pt;}
.hf{height:165.133333pt;}
.h19{height:398.360000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w3{width:66.100000pt;}
.w15{width:100.133333pt;}
.w10{width:121.166667pt;}
.wf{width:122.133333pt;}
.wd{width:130.166667pt;}
.wb{width:131.166667pt;}
.w9{width:132.166667pt;}
.wa{width:133.166667pt;}
.we{width:134.160000pt;}
.w4{width:135.160000pt;}
.wc{width:139.160000pt;}
.w11{width:150.200000pt;}
.w14{width:172.200000pt;}
.w13{width:172.240000pt;}
.w7{width:198.240000pt;}
.w12{width:218.266667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w2{width:599.773333pt;}
.w6{width:664.840000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3c{left:-617.806667pt;}
.x0{left:0.000000pt;}
.x30{left:6.000000pt;}
.xa{left:7.000000pt;}
.x3{left:8.033333pt;}
.x17{left:11.040000pt;}
.x14{left:28.033333pt;}
.x2{left:64.066667pt;}
.x7{left:65.100000pt;}
.x1{left:72.099988pt;}
.x1a{left:73.099988pt;}
.x38{left:74.099988pt;}
.x2e{left:75.099988pt;}
.x23{left:80.099988pt;}
.x3d{left:84.099988pt;}
.x8{left:87.100000pt;}
.x13{left:90.100000pt;}
.x35{left:92.133322pt;}
.x41{left:96.133322pt;}
.x18{left:120.166655pt;}
.x10{left:133.166667pt;}
.x3e{left:139.159988pt;}
.x19{left:144.199988pt;}
.x12{left:152.166667pt;}
.x11{left:184.233333pt;}
.x15{left:190.233333pt;}
.x25{left:196.266667pt;}
.x1c{left:198.266667pt;}
.x9{left:200.266667pt;}
.xd{left:258.333333pt;}
.x16{left:263.333333pt;}
.x34{left:271.333322pt;}
.x2c{left:280.373322pt;}
.x39{left:284.373333pt;}
.x1b{left:287.359988pt;}
.x24{left:290.359988pt;}
.x22{left:300.399988pt;}
.x2d{left:302.399988pt;}
.x37{left:303.399988pt;}
.xb{left:307.360000pt;}
.x2f{left:308.399988pt;}
.x21{left:312.399988pt;}
.x2a{left:320.399988pt;}
.x31{left:323.400000pt;}
.xc{left:324.400000pt;}
.x1d{left:331.440000pt;}
.xf{left:332.406667pt;}
.x26{left:336.440000pt;}
.x36{left:346.426655pt;}
.x3f{left:397.506655pt;}
.xe{left:403.506667pt;}
.x32{left:444.573333pt;}
.x4{left:449.600000pt;}
.x3a{left:456.600000pt;}
.x1e{left:464.600000pt;}
.x27{left:467.600000pt;}
.x5{left:474.626667pt;}
.x2b{left:578.733322pt;}
.x20{left:593.773322pt;}
.x33{left:595.773333pt;}
.x1f{left:596.773333pt;}
.x28{left:598.773333pt;}
.x40{left:606.773322pt;}
.x29{left:621.799988pt;}
.x3b{left:629.800000pt;}
.x6{left:663.840000pt;}
}




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