
    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_55e31dee10a520c73d940134.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2214cbadb42afb7f7d7fe8d0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ddcb27bd822b5c663f891604.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_4dabf42399daa1e6f8966cc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_ae3e7de1e452a808c6c019d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_44b350d49f0817e034cedfef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_f6ae315c5ffabd30b8787063.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_7b55170a1e8a7bdab69794be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_12382f2e94642ad5f3a763bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_9299b076d8b8bb11f457fd5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_47fca70a4026db79d7870f82.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_5dbdaca4e62020400936f92e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_c492c1f287052dfa641dc299.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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_a26f6bcea5df630d5e584e53.woff2')format("woff");}.fff{font-family:fff;line-height:0.957520;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_639b5a87fdf417339b726dc4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_16e4fe20e3c636cfeaf18d81.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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_5b00d3888f74483b03693eb7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.853027;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_a50938e3634c6d4776cd9d77.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973633;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_73782c61dfbd523c8ece8e94.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.770996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v3{vertical-align:15.120000px;}
.ls12{letter-spacing:-1.386000px;}
.ls13{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.234000px;}
.ls6{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.119400px;}
.ls3{letter-spacing:-0.091200px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.234000px;}
.ls11{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.486000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.404000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-54.000000px;}
.ws0{word-spacing:-22.316640px;}
.ws6{word-spacing:-18.954000px;}
.ws5{word-spacing:-18.468000px;}
.ws4{word-spacing:-18.234000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.179040px;}
.ws12{word-spacing:-13.950000px;}
.wse{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.266000px;}
.ws14{word-spacing:-13.194000px;}
.ws8{word-spacing:-13.158000px;}
.wsa{word-spacing:-13.140000px;}
.wsb{word-spacing:-13.014000px;}
.ws1{word-spacing:-12.978000px;}
.wsc{word-spacing:-12.852000px;}
.wsf{word-spacing:-12.834000px;}
.wsd{word-spacing:-12.726000px;}
.ws13{word-spacing:-12.690000px;}
.ws11{word-spacing:-12.564000px;}
.ws10{word-spacing:-12.330000px;}
.ws7{word-spacing:0.000000px;}
._38{margin-left:-3.349200px;}
._35{margin-left:-2.322000px;}
._0{margin-left:-1.263600px;}
._1{width:1.056000px;}
._4{width:2.484000px;}
._5{width:3.672000px;}
._8{width:5.352000px;}
._7{width:6.366000px;}
._9{width:7.380000px;}
._b{width:9.342000px;}
._c{width:11.070000px;}
._33{width:12.474000px;}
._a{width:14.388000px;}
._1e{width:15.558000px;}
._24{width:16.602000px;}
._6{width:18.468000px;}
._2{width:19.769520px;}
._3{width:20.943600px;}
._21{width:22.248000px;}
._20{width:23.328000px;}
._16{width:24.366000px;}
._17{width:25.974000px;}
._1b{width:27.345600px;}
._14{width:28.404000px;}
._13{width:29.646000px;}
._15{width:30.936000px;}
._1f{width:32.054400px;}
._1d{width:33.058800px;}
._18{width:34.290000px;}
._f{width:36.126000px;}
._10{width:37.584000px;}
._29{width:39.020400px;}
._d{width:40.392000px;}
._11{width:41.472000px;}
._e{width:42.558000px;}
._25{width:44.226000px;}
._22{width:46.062000px;}
._2d{width:47.142000px;}
._2c{width:48.297600px;}
._26{width:50.382000px;}
._27{width:51.840000px;}
._28{width:53.190000px;}
._1a{width:55.080000px;}
._12{width:56.214000px;}
._2a{width:58.320000px;}
._2e{width:60.126000px;}
._31{width:61.776000px;}
._32{width:62.964000px;}
._23{width:65.772000px;}
._36{width:67.986000px;}
._37{width:69.096000px;}
._2b{width:80.568000px;}
._19{width:82.857600px;}
._2f{width:84.879600px;}
._30{width:86.292000px;}
._1c{width:89.262000px;}
._34{width:168.978000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:9.360000px;}
.fs3{font-size:12.240000px;}
.fs8{font-size:23.760000px;}
.fsd{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3f{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.520000px;}
.y6{bottom:2.700000px;}
.y89{bottom:2.880000px;}
.y8c{bottom:3.060000px;}
.y10{bottom:3.420000px;}
.y3{bottom:3.960000px;}
.y32{bottom:7.740000px;}
.y3e{bottom:9.180000px;}
.y30{bottom:10.620000px;}
.y12{bottom:14.940000px;}
.y16{bottom:15.120000px;}
.y1d{bottom:16.200000px;}
.y19{bottom:19.620000px;}
.ye{bottom:19.980000px;}
.y1b{bottom:23.760000px;}
.y3d{bottom:30.420000px;}
.y2f{bottom:33.705000px;}
.y3c{bottom:51.840000px;}
.y2e{bottom:56.745000px;}
.y4{bottom:57.780000px;}
.yd{bottom:60.840000px;}
.y2{bottom:74.556000px;}
.y3b{bottom:75.630000px;}
.y2d{bottom:79.785000px;}
.y9{bottom:80.820000px;}
.y8{bottom:91.110000px;}
.y2c{bottom:102.645000px;}
.ye5{bottom:110.916000px;}
.ya3{bottom:111.456000px;}
.y6d{bottom:111.996000px;}
.y91{bottom:112.356000px;}
.yba{bottom:113.616000px;}
.y71{bottom:117.396000px;}
.y2b{bottom:125.685000px;}
.y90{bottom:127.116000px;}
.y39{bottom:130.536000px;}
.ye4{bottom:133.956000px;}
.ya2{bottom:134.496000px;}
.y6c{bottom:135.036000px;}
.y10d{bottom:135.756000px;}
.yb9{bottom:136.656000px;}
.y70{bottom:140.436000px;}
.y8f{bottom:142.416000px;}
.y2a{bottom:148.725000px;}
.y38{bottom:153.390000px;}
.ybb{bottom:154.650000px;}
.yb8{bottom:156.630000px;}
.ye3{bottom:156.990000px;}
.ya1{bottom:157.530000px;}
.y8e{bottom:157.710000px;}
.y6b{bottom:158.070000px;}
.y10c{bottom:159.330000px;}
.y6f{bottom:160.410000px;}
.y29{bottom:171.765000px;}
.y8d{bottom:173.010000px;}
.y37{bottom:176.430000px;}
.ye2{bottom:179.850000px;}
.ya0{bottom:180.570000px;}
.y6a{bottom:181.110000px;}
.y10b{bottom:183.090000px;}
.y8b{bottom:188.310000px;}
.y28{bottom:194.805000px;}
.y36{bottom:199.470000px;}
.ye1{bottom:202.890000px;}
.y9f{bottom:203.610000px;}
.y8a{bottom:203.790000px;}
.y69{bottom:204.150000px;}
.y10a{bottom:206.670000px;}
.y27{bottom:217.845000px;}
.y88{bottom:219.810000px;}
.y35{bottom:222.510000px;}
.ye0{bottom:225.930000px;}
.y9e{bottom:226.470000px;}
.y68{bottom:227.010000px;}
.y109{bottom:227.910000px;}
.y26{bottom:240.705000px;}
.y34{bottom:245.550000px;}
.y87{bottom:248.070000px;}
.y108{bottom:248.610000px;}
.ydf{bottom:248.970000px;}
.y9d{bottom:249.510000px;}
.y67{bottom:250.050000px;}
.y25{bottom:263.745000px;}
.y86{bottom:264.450000px;}
.y33{bottom:268.590000px;}
.yde{bottom:272.010000px;}
.y107{bottom:272.370000px;}
.y9c{bottom:272.550000px;}
.y66{bottom:273.090000px;}
.y31{bottom:281.010000px;}
.y24{bottom:286.785000px;}
.y82{bottom:291.450000px;}
.y85{bottom:293.250000px;}
.ydd{bottom:294.870000px;}
.y9b{bottom:295.590000px;}
.y106{bottom:295.950000px;}
.y65{bottom:296.130000px;}
.y1e{bottom:298.290000px;}
.y23{bottom:309.855000px;}
.y81{bottom:314.490000px;}
.y84{bottom:316.290000px;}
.ydc{bottom:317.910000px;}
.y9a{bottom:318.630000px;}
.y64{bottom:319.170000px;}
.y105{bottom:319.710000px;}
.y22{bottom:332.895000px;}
.y83{bottom:336.315000px;}
.y80{bottom:337.575000px;}
.yb7{bottom:339.195000px;}
.y63{bottom:339.915000px;}
.ydb{bottom:340.995000px;}
.y99{bottom:341.715000px;}
.yc0{bottom:342.075000px;}
.y104{bottom:343.335000px;}
.y21{bottom:355.935000px;}
.y62{bottom:360.075000px;}
.y7f{bottom:360.615000px;}
.yb6{bottom:362.235000px;}
.yda{bottom:364.035000px;}
.y98{bottom:364.575000px;}
.ybf{bottom:365.115000px;}
.y103{bottom:366.915000px;}
.y20{bottom:378.795000px;}
.y7e{bottom:381.315000px;}
.y61{bottom:383.115000px;}
.yb5{bottom:385.275000px;}
.y6e{bottom:385.995000px;}
.yd9{bottom:387.075000px;}
.y97{bottom:387.615000px;}
.ybe{bottom:388.155000px;}
.y102{bottom:390.675000px;}
.y7d{bottom:401.475000px;}
.y1f{bottom:401.835000px;}
.y60{bottom:406.155000px;}
.yb4{bottom:408.315000px;}
.yd8{bottom:410.115000px;}
.y96{bottom:410.655000px;}
.ybd{bottom:411.195000px;}
.y101{bottom:414.255000px;}
.y7c{bottom:424.515000px;}
.y5f{bottom:429.015000px;}
.yb3{bottom:431.355000px;}
.ybc{bottom:431.895000px;}
.yd7{bottom:432.975000px;}
.y95{bottom:433.695000px;}
.yeb{bottom:434.235000px;}
.y100{bottom:438.375000px;}
.y7b{bottom:447.375000px;}
.y5e{bottom:452.055000px;}
.yb2{bottom:454.395000px;}
.y129{bottom:454.575000px;}
.yd6{bottom:456.015000px;}
.y94{bottom:456.735000px;}
.yea{bottom:457.275000px;}
.yff{bottom:462.315000px;}
.y7a{bottom:470.415000px;}
.y5d{bottom:475.095000px;}
.yb1{bottom:477.255000px;}
.y128{bottom:477.615000px;}
.yd5{bottom:479.055000px;}
.y93{bottom:479.595000px;}
.ye9{bottom:480.135000px;}
.yfe{bottom:485.895000px;}
.y79{bottom:493.455000px;}
.y5c{bottom:498.135000px;}
.y92{bottom:499.755000px;}
.yb0{bottom:500.295000px;}
.y127{bottom:500.655000px;}
.yd4{bottom:502.095000px;}
.ye8{bottom:503.175000px;}
.yfd{bottom:509.655000px;}
.y78{bottom:516.855000px;}
.y5b{bottom:521.175000px;}
.y126{bottom:521.355000px;}
.yaf{bottom:523.335000px;}
.yd3{bottom:525.135000px;}
.ye7{bottom:526.215000px;}
.yfc{bottom:533.235000px;}
.y77{bottom:540.255000px;}
.y125{bottom:541.515000px;}
.y5a{bottom:544.215000px;}
.yae{bottom:546.375000px;}
.ye6{bottom:547.095000px;}
.yd2{bottom:548.175000px;}
.yfb{bottom:556.995000px;}
.y76{bottom:563.295000px;}
.y124{bottom:564.555000px;}
.y59{bottom:567.075000px;}
.yad{bottom:569.415000px;}
.yd1{bottom:571.035000px;}
.yfa{bottom:580.575000px;}
.y75{bottom:586.155000px;}
.y123{bottom:587.595000px;}
.y58{bottom:590.115000px;}
.yac{bottom:592.455000px;}
.yd0{bottom:594.075000px;}
.yf9{bottom:604.185000px;}
.y74{bottom:609.225000px;}
.y122{bottom:610.665000px;}
.y57{bottom:613.185000px;}
.yab{bottom:615.345000px;}
.ycf{bottom:617.145000px;}
.y73{bottom:624.525000px;}
.yf8{bottom:627.945000px;}
.y121{bottom:633.705000px;}
.y56{bottom:636.225000px;}
.yaa{bottom:638.385000px;}
.yce{bottom:640.185000px;}
.y72{bottom:644.685000px;}
.yf7{bottom:651.525000px;}
.y120{bottom:654.405000px;}
.y55{bottom:659.265000px;}
.ya9{bottom:661.425000px;}
.ycd{bottom:663.225000px;}
.y11f{bottom:674.565000px;}
.yf6{bottom:675.105000px;}
.y54{bottom:682.125000px;}
.ya8{bottom:684.465000px;}
.ycc{bottom:686.265000px;}
.y11e{bottom:697.605000px;}
.yf5{bottom:698.865000px;}
.ya7{bottom:699.765000px;}
.y53{bottom:705.165000px;}
.ycb{bottom:709.125000px;}
.y1c{bottom:712.545000px;}
.y11d{bottom:720.645000px;}
.yf4{bottom:722.445000px;}
.ya6{bottom:722.805000px;}
.y52{bottom:728.205000px;}
.yca{bottom:732.165000px;}
.y1a{bottom:742.605000px;}
.y11c{bottom:743.505000px;}
.ya5{bottom:745.845000px;}
.yf3{bottom:746.205000px;}
.y51{bottom:751.245000px;}
.yc9{bottom:755.205000px;}
.ya4{bottom:765.825000px;}
.y11b{bottom:766.545000px;}
.yf2{bottom:769.785000px;}
.y50{bottom:774.285000px;}
.yc8{bottom:778.245000px;}
.y11a{bottom:787.425000px;}
.y18{bottom:790.665000px;}
.yf1{bottom:793.365000px;}
.y4f{bottom:797.325000px;}
.yc7{bottom:801.285000px;}
.y119{bottom:807.405000px;}
.yf0{bottom:817.125000px;}
.y4e{bottom:820.185000px;}
.y17{bottom:822.705000px;}
.yc6{bottom:824.145000px;}
.y118{bottom:830.445000px;}
.y15{bottom:839.625000px;}
.yef{bottom:840.705000px;}
.y4d{bottom:843.225000px;}
.yc5{bottom:847.185000px;}
.y117{bottom:853.485000px;}
.yee{bottom:864.330000px;}
.y4c{bottom:866.310000px;}
.y13{bottom:870.270000px;}
.y116{bottom:876.570000px;}
.y11{bottom:884.850000px;}
.yed{bottom:888.090000px;}
.y4b{bottom:889.350000px;}
.yc4{bottom:892.230000px;}
.y115{bottom:897.270000px;}
.yec{bottom:911.670000px;}
.y4a{bottom:912.390000px;}
.yc3{bottom:913.830000px;}
.yf{bottom:915.450000px;}
.y114{bottom:917.430000px;}
.yc{bottom:929.130000px;}
.y49{bottom:935.430000px;}
.yc2{bottom:936.690000px;}
.y113{bottom:940.470000px;}
.yc1{bottom:956.850000px;}
.y48{bottom:958.290000px;}
.y112{bottom:963.510000px;}
.y47{bottom:981.330000px;}
.y111{bottom:986.550000px;}
.y46{bottom:1004.370000px;}
.y110{bottom:1009.410000px;}
.yb{bottom:1013.010000px;}
.y45{bottom:1027.410000px;}
.ya{bottom:1030.110000px;}
.y10f{bottom:1032.450000px;}
.y7{bottom:1046.850000px;}
.y44{bottom:1050.450000px;}
.y10e{bottom:1053.330000px;}
.y3a{bottom:1073.130000px;}
.y43{bottom:1073.490000px;}
.y42{bottom:1096.350000px;}
.y41{bottom:1119.390000px;}
.y40{bottom:1142.460000px;}
.y1{bottom:1192.140000px;}
.y5{bottom:1195.740000px;}
.hc{height:8.289492px;}
.hf{height:13.680000px;}
.h13{height:14.580000px;}
.h2a{height:15.300000px;}
.h2b{height:15.480000px;}
.h16{height:16.920000px;}
.h1f{height:17.280000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h20{height:29.145586px;}
.h1b{height:30.060000px;}
.h11{height:30.600000px;}
.h15{height:30.636000px;}
.h2e{height:31.585078px;}
.h26{height:31.605469px;}
.h18{height:32.040000px;}
.h10{height:32.670352px;}
.h2d{height:36.509766px;}
.h14{height:36.886641px;}
.h17{height:40.472227px;}
.h2c{height:40.816406px;}
.h21{height:40.842773px;}
.h1e{height:40.869141px;}
.h24{height:41.291016px;}
.h27{height:42.366094px;}
.h1c{height:45.199336px;}
.h28{height:45.509766px;}
.h19{height:48.060000px;}
.h12{height:48.761719px;}
.h1a{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h29{height:54.492188px;}
.h23{height:55.054688px;}
.h25{height:55.209375px;}
.h6{height:57.051211px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h22{height:93.816000px;}
.h8{height:108.036000px;}
.h1d{height:414.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:54.180000px;}
.w7{width:76.680000px;}
.w10{width:92.196000px;}
.wd{width:104.220000px;}
.we{width:121.356000px;}
.w6{width:122.751000px;}
.wf{width:122.940000px;}
.w11{width:235.650000px;}
.wb{width:332.175000px;}
.wa{width:356.430000px;}
.wc{width:464.475000px;}
.w5{width:546.375000px;}
.w8{width:616.425000px;}
.w4{width:619.845000px;}
.w9{width:688.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.480000px;}
.xa{left:8.100000px;}
.x6{left:10.800000px;}
.x11{left:16.740000px;}
.x2{left:20.700000px;}
.x1c{left:23.430000px;}
.x1b{left:27.720000px;}
.x21{left:29.160000px;}
.x19{left:30.420000px;}
.x1f{left:31.890000px;}
.x22{left:34.050000px;}
.x24{left:35.820000px;}
.x25{left:36.900000px;}
.x8{left:39.060000px;}
.x1e{left:44.640000px;}
.xe{left:70.590000px;}
.x20{left:96.660000px;}
.x9{left:100.116000px;}
.xc{left:101.376000px;}
.x23{left:105.480000px;}
.x26{left:106.560000px;}
.x1{left:108.035987px;}
.x5{left:109.476000px;}
.x3{left:165.450000px;}
.xb{left:176.790000px;}
.x13{left:211.170000px;}
.x18{left:212.610000px;}
.x12{left:263.910000px;}
.x10{left:325.875000px;}
.x1a{left:333.975000px;}
.x29{left:420.914987px;}
.x16{left:426.854987px;}
.x2a{left:428.114987px;}
.x27{left:430.274987px;}
.x14{left:453.855000px;}
.xd{left:457.815000px;}
.xf{left:462.674987px;}
.x1d{left:549.105000px;}
.x7{left:658.410000px;}
.x17{left:781.349987px;}
.x15{left:782.429987px;}
.x28{left:787.109987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v3{vertical-align:13.440000pt;}
.ls12{letter-spacing:-1.232000pt;}
.ls13{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.208000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.106133pt;}
.ls3{letter-spacing:-0.081067pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.208000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.432000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.248000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws0{word-spacing:-19.837013pt;}
.ws6{word-spacing:-16.848000pt;}
.ws5{word-spacing:-16.416000pt;}
.ws4{word-spacing:-16.208000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.492480pt;}
.ws12{word-spacing:-12.400000pt;}
.wse{word-spacing:-12.192000pt;}
.ws15{word-spacing:-11.792000pt;}
.ws14{word-spacing:-11.728000pt;}
.ws8{word-spacing:-11.696000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.568000pt;}
.ws1{word-spacing:-11.536000pt;}
.wsc{word-spacing:-11.424000pt;}
.wsf{word-spacing:-11.408000pt;}
.wsd{word-spacing:-11.312000pt;}
.ws13{word-spacing:-11.280000pt;}
.ws11{word-spacing:-11.168000pt;}
.ws10{word-spacing:-10.960000pt;}
.ws7{word-spacing:0.000000pt;}
._38{margin-left:-2.977067pt;}
._35{margin-left:-2.064000pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.938667pt;}
._4{width:2.208000pt;}
._5{width:3.264000pt;}
._8{width:4.757333pt;}
._7{width:5.658667pt;}
._9{width:6.560000pt;}
._b{width:8.304000pt;}
._c{width:9.840000pt;}
._33{width:11.088000pt;}
._a{width:12.789333pt;}
._1e{width:13.829333pt;}
._24{width:14.757333pt;}
._6{width:16.416000pt;}
._2{width:17.572907pt;}
._3{width:18.616533pt;}
._21{width:19.776000pt;}
._20{width:20.736000pt;}
._16{width:21.658667pt;}
._17{width:23.088000pt;}
._1b{width:24.307200pt;}
._14{width:25.248000pt;}
._13{width:26.352000pt;}
._15{width:27.498667pt;}
._1f{width:28.492800pt;}
._1d{width:29.385600pt;}
._18{width:30.480000pt;}
._f{width:32.112000pt;}
._10{width:33.408000pt;}
._29{width:34.684800pt;}
._d{width:35.904000pt;}
._11{width:36.864000pt;}
._e{width:37.829333pt;}
._25{width:39.312000pt;}
._22{width:40.944000pt;}
._2d{width:41.904000pt;}
._2c{width:42.931200pt;}
._26{width:44.784000pt;}
._27{width:46.080000pt;}
._28{width:47.280000pt;}
._1a{width:48.960000pt;}
._12{width:49.968000pt;}
._2a{width:51.840000pt;}
._2e{width:53.445333pt;}
._31{width:54.912000pt;}
._32{width:55.968000pt;}
._23{width:58.464000pt;}
._36{width:60.432000pt;}
._37{width:61.418667pt;}
._2b{width:71.616000pt;}
._19{width:73.651200pt;}
._2f{width:75.448533pt;}
._30{width:76.704000pt;}
._1c{width:79.344000pt;}
._34{width:150.202667pt;}
.fsa{font-size:8.320000pt;}
.fs3{font-size:10.880000pt;}
.fs8{font-size:21.120000pt;}
.fsd{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3f{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.240000pt;}
.y6{bottom:2.400000pt;}
.y89{bottom:2.560000pt;}
.y8c{bottom:2.720000pt;}
.y10{bottom:3.040000pt;}
.y3{bottom:3.520000pt;}
.y32{bottom:6.880000pt;}
.y3e{bottom:8.160000pt;}
.y30{bottom:9.440000pt;}
.y12{bottom:13.280000pt;}
.y16{bottom:13.440000pt;}
.y1d{bottom:14.400000pt;}
.y19{bottom:17.440000pt;}
.ye{bottom:17.760000pt;}
.y1b{bottom:21.120000pt;}
.y3d{bottom:27.040000pt;}
.y2f{bottom:29.960000pt;}
.y3c{bottom:46.080000pt;}
.y2e{bottom:50.440000pt;}
.y4{bottom:51.360000pt;}
.yd{bottom:54.080000pt;}
.y2{bottom:66.272000pt;}
.y3b{bottom:67.226667pt;}
.y2d{bottom:70.920000pt;}
.y9{bottom:71.840000pt;}
.y8{bottom:80.986667pt;}
.y2c{bottom:91.240000pt;}
.ye5{bottom:98.592000pt;}
.ya3{bottom:99.072000pt;}
.y6d{bottom:99.552000pt;}
.y91{bottom:99.872000pt;}
.yba{bottom:100.992000pt;}
.y71{bottom:104.352000pt;}
.y2b{bottom:111.720000pt;}
.y90{bottom:112.992000pt;}
.y39{bottom:116.032000pt;}
.ye4{bottom:119.072000pt;}
.ya2{bottom:119.552000pt;}
.y6c{bottom:120.032000pt;}
.y10d{bottom:120.672000pt;}
.yb9{bottom:121.472000pt;}
.y70{bottom:124.832000pt;}
.y8f{bottom:126.592000pt;}
.y2a{bottom:132.200000pt;}
.y38{bottom:136.346667pt;}
.ybb{bottom:137.466667pt;}
.yb8{bottom:139.226667pt;}
.ye3{bottom:139.546667pt;}
.ya1{bottom:140.026667pt;}
.y8e{bottom:140.186667pt;}
.y6b{bottom:140.506667pt;}
.y10c{bottom:141.626667pt;}
.y6f{bottom:142.586667pt;}
.y29{bottom:152.680000pt;}
.y8d{bottom:153.786667pt;}
.y37{bottom:156.826667pt;}
.ye2{bottom:159.866667pt;}
.ya0{bottom:160.506667pt;}
.y6a{bottom:160.986667pt;}
.y10b{bottom:162.746667pt;}
.y8b{bottom:167.386667pt;}
.y28{bottom:173.160000pt;}
.y36{bottom:177.306667pt;}
.ye1{bottom:180.346667pt;}
.y9f{bottom:180.986667pt;}
.y8a{bottom:181.146667pt;}
.y69{bottom:181.466667pt;}
.y10a{bottom:183.706667pt;}
.y27{bottom:193.640000pt;}
.y88{bottom:195.386667pt;}
.y35{bottom:197.786667pt;}
.ye0{bottom:200.826667pt;}
.y9e{bottom:201.306667pt;}
.y68{bottom:201.786667pt;}
.y109{bottom:202.586667pt;}
.y26{bottom:213.960000pt;}
.y34{bottom:218.266667pt;}
.y87{bottom:220.506667pt;}
.y108{bottom:220.986667pt;}
.ydf{bottom:221.306667pt;}
.y9d{bottom:221.786667pt;}
.y67{bottom:222.266667pt;}
.y25{bottom:234.440000pt;}
.y86{bottom:235.066667pt;}
.y33{bottom:238.746667pt;}
.yde{bottom:241.786667pt;}
.y107{bottom:242.106667pt;}
.y9c{bottom:242.266667pt;}
.y66{bottom:242.746667pt;}
.y31{bottom:249.786667pt;}
.y24{bottom:254.920000pt;}
.y82{bottom:259.066667pt;}
.y85{bottom:260.666667pt;}
.ydd{bottom:262.106667pt;}
.y9b{bottom:262.746667pt;}
.y106{bottom:263.066667pt;}
.y65{bottom:263.226667pt;}
.y1e{bottom:265.146667pt;}
.y23{bottom:275.426667pt;}
.y81{bottom:279.546667pt;}
.y84{bottom:281.146667pt;}
.ydc{bottom:282.586667pt;}
.y9a{bottom:283.226667pt;}
.y64{bottom:283.706667pt;}
.y105{bottom:284.186667pt;}
.y22{bottom:295.906667pt;}
.y83{bottom:298.946667pt;}
.y80{bottom:300.066667pt;}
.yb7{bottom:301.506667pt;}
.y63{bottom:302.146667pt;}
.ydb{bottom:303.106667pt;}
.y99{bottom:303.746667pt;}
.yc0{bottom:304.066667pt;}
.y104{bottom:305.186667pt;}
.y21{bottom:316.386667pt;}
.y62{bottom:320.066667pt;}
.y7f{bottom:320.546667pt;}
.yb6{bottom:321.986667pt;}
.yda{bottom:323.586667pt;}
.y98{bottom:324.066667pt;}
.ybf{bottom:324.546667pt;}
.y103{bottom:326.146667pt;}
.y20{bottom:336.706667pt;}
.y7e{bottom:338.946667pt;}
.y61{bottom:340.546667pt;}
.yb5{bottom:342.466667pt;}
.y6e{bottom:343.106667pt;}
.yd9{bottom:344.066667pt;}
.y97{bottom:344.546667pt;}
.ybe{bottom:345.026667pt;}
.y102{bottom:347.266667pt;}
.y7d{bottom:356.866667pt;}
.y1f{bottom:357.186667pt;}
.y60{bottom:361.026667pt;}
.yb4{bottom:362.946667pt;}
.yd8{bottom:364.546667pt;}
.y96{bottom:365.026667pt;}
.ybd{bottom:365.506667pt;}
.y101{bottom:368.226667pt;}
.y7c{bottom:377.346667pt;}
.y5f{bottom:381.346667pt;}
.yb3{bottom:383.426667pt;}
.ybc{bottom:383.906667pt;}
.yd7{bottom:384.866667pt;}
.y95{bottom:385.506667pt;}
.yeb{bottom:385.986667pt;}
.y100{bottom:389.666667pt;}
.y7b{bottom:397.666667pt;}
.y5e{bottom:401.826667pt;}
.yb2{bottom:403.906667pt;}
.y129{bottom:404.066667pt;}
.yd6{bottom:405.346667pt;}
.y94{bottom:405.986667pt;}
.yea{bottom:406.466667pt;}
.yff{bottom:410.946667pt;}
.y7a{bottom:418.146667pt;}
.y5d{bottom:422.306667pt;}
.yb1{bottom:424.226667pt;}
.y128{bottom:424.546667pt;}
.yd5{bottom:425.826667pt;}
.y93{bottom:426.306667pt;}
.ye9{bottom:426.786667pt;}
.yfe{bottom:431.906667pt;}
.y79{bottom:438.626667pt;}
.y5c{bottom:442.786667pt;}
.y92{bottom:444.226667pt;}
.yb0{bottom:444.706667pt;}
.y127{bottom:445.026667pt;}
.yd4{bottom:446.306667pt;}
.ye8{bottom:447.266667pt;}
.yfd{bottom:453.026667pt;}
.y78{bottom:459.426667pt;}
.y5b{bottom:463.266667pt;}
.y126{bottom:463.426667pt;}
.yaf{bottom:465.186667pt;}
.yd3{bottom:466.786667pt;}
.ye7{bottom:467.746667pt;}
.yfc{bottom:473.986667pt;}
.y77{bottom:480.226667pt;}
.y125{bottom:481.346667pt;}
.y5a{bottom:483.746667pt;}
.yae{bottom:485.666667pt;}
.ye6{bottom:486.306667pt;}
.yd2{bottom:487.266667pt;}
.yfb{bottom:495.106667pt;}
.y76{bottom:500.706667pt;}
.y124{bottom:501.826667pt;}
.y59{bottom:504.066667pt;}
.yad{bottom:506.146667pt;}
.yd1{bottom:507.586667pt;}
.yfa{bottom:516.066667pt;}
.y75{bottom:521.026667pt;}
.y123{bottom:522.306667pt;}
.y58{bottom:524.546667pt;}
.yac{bottom:526.626667pt;}
.yd0{bottom:528.066667pt;}
.yf9{bottom:537.053333pt;}
.y74{bottom:541.533333pt;}
.y122{bottom:542.813333pt;}
.y57{bottom:545.053333pt;}
.yab{bottom:546.973333pt;}
.ycf{bottom:548.573333pt;}
.y73{bottom:555.133333pt;}
.yf8{bottom:558.173333pt;}
.y121{bottom:563.293333pt;}
.y56{bottom:565.533333pt;}
.yaa{bottom:567.453333pt;}
.yce{bottom:569.053333pt;}
.y72{bottom:573.053333pt;}
.yf7{bottom:579.133333pt;}
.y120{bottom:581.693333pt;}
.y55{bottom:586.013333pt;}
.ya9{bottom:587.933333pt;}
.ycd{bottom:589.533333pt;}
.y11f{bottom:599.613333pt;}
.yf6{bottom:600.093333pt;}
.y54{bottom:606.333333pt;}
.ya8{bottom:608.413333pt;}
.ycc{bottom:610.013333pt;}
.y11e{bottom:620.093333pt;}
.yf5{bottom:621.213333pt;}
.ya7{bottom:622.013333pt;}
.y53{bottom:626.813333pt;}
.ycb{bottom:630.333333pt;}
.y1c{bottom:633.373333pt;}
.y11d{bottom:640.573333pt;}
.yf4{bottom:642.173333pt;}
.ya6{bottom:642.493333pt;}
.y52{bottom:647.293333pt;}
.yca{bottom:650.813333pt;}
.y1a{bottom:660.093333pt;}
.y11c{bottom:660.893333pt;}
.ya5{bottom:662.973333pt;}
.yf3{bottom:663.293333pt;}
.y51{bottom:667.773333pt;}
.yc9{bottom:671.293333pt;}
.ya4{bottom:680.733333pt;}
.y11b{bottom:681.373333pt;}
.yf2{bottom:684.253333pt;}
.y50{bottom:688.253333pt;}
.yc8{bottom:691.773333pt;}
.y11a{bottom:699.933333pt;}
.y18{bottom:702.813333pt;}
.yf1{bottom:705.213333pt;}
.y4f{bottom:708.733333pt;}
.yc7{bottom:712.253333pt;}
.y119{bottom:717.693333pt;}
.yf0{bottom:726.333333pt;}
.y4e{bottom:729.053333pt;}
.y17{bottom:731.293333pt;}
.yc6{bottom:732.573333pt;}
.y118{bottom:738.173333pt;}
.y15{bottom:746.333333pt;}
.yef{bottom:747.293333pt;}
.y4d{bottom:749.533333pt;}
.yc5{bottom:753.053333pt;}
.y117{bottom:758.653333pt;}
.yee{bottom:768.293333pt;}
.y4c{bottom:770.053333pt;}
.y13{bottom:773.573333pt;}
.y116{bottom:779.173333pt;}
.y11{bottom:786.533333pt;}
.yed{bottom:789.413333pt;}
.y4b{bottom:790.533333pt;}
.yc4{bottom:793.093333pt;}
.y115{bottom:797.573333pt;}
.yec{bottom:810.373333pt;}
.y4a{bottom:811.013333pt;}
.yc3{bottom:812.293333pt;}
.yf{bottom:813.733333pt;}
.y114{bottom:815.493333pt;}
.yc{bottom:825.893333pt;}
.y49{bottom:831.493333pt;}
.yc2{bottom:832.613333pt;}
.y113{bottom:835.973333pt;}
.yc1{bottom:850.533333pt;}
.y48{bottom:851.813333pt;}
.y112{bottom:856.453333pt;}
.y47{bottom:872.293333pt;}
.y111{bottom:876.933333pt;}
.y46{bottom:892.773333pt;}
.y110{bottom:897.253333pt;}
.yb{bottom:900.453333pt;}
.y45{bottom:913.253333pt;}
.ya{bottom:915.653333pt;}
.y10f{bottom:917.733333pt;}
.y7{bottom:930.533333pt;}
.y44{bottom:933.733333pt;}
.y10e{bottom:936.293333pt;}
.y3a{bottom:953.893333pt;}
.y43{bottom:954.213333pt;}
.y42{bottom:974.533333pt;}
.y41{bottom:995.013333pt;}
.y40{bottom:1015.520000pt;}
.y1{bottom:1059.680000pt;}
.y5{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.hf{height:12.160000pt;}
.h13{height:12.960000pt;}
.h2a{height:13.600000pt;}
.h2b{height:13.760000pt;}
.h16{height:15.040000pt;}
.h1f{height:15.360000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h20{height:25.907188pt;}
.h1b{height:26.720000pt;}
.h11{height:27.200000pt;}
.h15{height:27.232000pt;}
.h2e{height:28.075625pt;}
.h26{height:28.093750pt;}
.h18{height:28.480000pt;}
.h10{height:29.040312pt;}
.h2d{height:32.453125pt;}
.h14{height:32.788125pt;}
.h17{height:35.975313pt;}
.h2c{height:36.281250pt;}
.h21{height:36.304688pt;}
.h1e{height:36.328125pt;}
.h24{height:36.703125pt;}
.h27{height:37.658750pt;}
.h1c{height:40.177188pt;}
.h28{height:40.453125pt;}
.h19{height:42.720000pt;}
.h12{height:43.343750pt;}
.h1a{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h29{height:48.437500pt;}
.h23{height:48.937500pt;}
.h25{height:49.075000pt;}
.h6{height:50.712187pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h22{height:83.392000pt;}
.h8{height:96.032000pt;}
.h1d{height:368.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.160000pt;}
.w7{width:68.160000pt;}
.w10{width:81.952000pt;}
.wd{width:92.640000pt;}
.we{width:107.872000pt;}
.w6{width:109.112000pt;}
.wf{width:109.280000pt;}
.w11{width:209.466667pt;}
.wb{width:295.266667pt;}
.wa{width:316.826667pt;}
.wc{width:412.866667pt;}
.w5{width:485.666667pt;}
.w8{width:547.933333pt;}
.w4{width:550.973333pt;}
.w9{width:612.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.760000pt;}
.xa{left:7.200000pt;}
.x6{left:9.600000pt;}
.x11{left:14.880000pt;}
.x2{left:18.400000pt;}
.x1c{left:20.826667pt;}
.x1b{left:24.640000pt;}
.x21{left:25.920000pt;}
.x19{left:27.040000pt;}
.x1f{left:28.346667pt;}
.x22{left:30.266667pt;}
.x24{left:31.840000pt;}
.x25{left:32.800000pt;}
.x8{left:34.720000pt;}
.x1e{left:39.680000pt;}
.xe{left:62.746667pt;}
.x20{left:85.920000pt;}
.x9{left:88.992000pt;}
.xc{left:90.112000pt;}
.x23{left:93.760000pt;}
.x26{left:94.720000pt;}
.x1{left:96.031988pt;}
.x5{left:97.312000pt;}
.x3{left:147.066667pt;}
.xb{left:157.146667pt;}
.x13{left:187.706667pt;}
.x18{left:188.986667pt;}
.x12{left:234.586667pt;}
.x10{left:289.666667pt;}
.x1a{left:296.866667pt;}
.x29{left:374.146655pt;}
.x16{left:379.426655pt;}
.x2a{left:380.546655pt;}
.x27{left:382.466655pt;}
.x14{left:403.426667pt;}
.xd{left:406.946667pt;}
.xf{left:411.266655pt;}
.x1d{left:488.093333pt;}
.x7{left:585.253333pt;}
.x17{left:694.533322pt;}
.x15{left:695.493322pt;}
.x28{left:699.653322pt;}
}




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