
    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_0fb5df1cf46329f4f9ae3ca7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9e74cf1908558e4e7ccc214.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f3a10eed6f5ff42f1f600cc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051758;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_fb107980ab7593dd28721bc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3271be2e61f6eabdca73ed5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_4b02ec226d2f8d979b09bcae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94f08f85ffea64636ae522e2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_769dac7ece129aa55c37f48c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_d812af7bca1f7b40ba590502.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_15bdb1d4e430c1a61aa9da2d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_66f9c21cd953eee104b10e8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_d5959cf39a49e19264b8d03e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_15bdb1d4e430c1a61aa9da2d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_890a3bb502c7d1131e0bbf31.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_daad827f77d19aa7cd4a4812.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_39aee9f86f3b64b4056d7828.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1691fa0c413868d1b115717c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_04f2b231dd5aa0419af55aae.woff2')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_e9e75412e4f6d07f36ab25a4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c3b89565e59609ba03855c75.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;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:ff15;src:url('chunks/assets/font_8e38c9e6c7c27cc91ae0994d.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m4{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-2.689200px;}
.lsb{letter-spacing:-1.972080px;}
.ls11{letter-spacing:-1.254960px;}
.lse{letter-spacing:-0.896400px;}
.ls13{letter-spacing:-0.776880px;}
.ls10{letter-spacing:-0.657360px;}
.ls1b{letter-spacing:-0.597600px;}
.lsf{letter-spacing:-0.537840px;}
.ls8{letter-spacing:-0.358560px;}
.ls5{letter-spacing:-0.337680px;}
.ls3{letter-spacing:-0.241200px;}
.lsa{letter-spacing:-0.179280px;}
.ls19{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.011671px;}
.ls1e{letter-spacing:0.018292px;}
.ls7{letter-spacing:0.119520px;}
.ls21{letter-spacing:0.122947px;}
.ls22{letter-spacing:0.160080px;}
.ls1a{letter-spacing:0.179280px;}
.ls1d{letter-spacing:0.187140px;}
.ls23{letter-spacing:0.189300px;}
.ls2{letter-spacing:0.192960px;}
.ls12{letter-spacing:0.239040px;}
.lsd{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.358560px;}
.ls4{letter-spacing:0.385920px;}
.ls18{letter-spacing:1.613520px;}
.ls20{letter-spacing:1.630201px;}
.ls1c{letter-spacing:1.774872px;}
.ls14{letter-spacing:2.330640px;}
.ls15{letter-spacing:3.047760px;}
.ls1f{letter-spacing:3.071042px;}
.ls16{letter-spacing:5.258880px;}
.ls24{letter-spacing:7.393746px;}
.ls17{letter-spacing:13.147200px;}
.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;}
}
.wsc{word-spacing:-15.298560px;}
.wsf{word-spacing:-15.059520px;}
.ws24{word-spacing:-14.940012px;}
.ws1{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.880240px;}
.wse{word-spacing:-14.760720px;}
.ws1c{word-spacing:-14.342400px;}
.ws16{word-spacing:-14.282640px;}
.ws1e{word-spacing:-13.147200px;}
.ws23{word-spacing:-12.060010px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.818800px;}
.ws2{word-spacing:-9.720000px;}
.ws1d{word-spacing:-5.258880px;}
.ws1f{word-spacing:-1.613520px;}
.ws8{word-spacing:-0.385920px;}
.wsa{word-spacing:-0.358560px;}
.ws14{word-spacing:-0.298800px;}
.ws1a{word-spacing:-0.239040px;}
.ws7{word-spacing:-0.192960px;}
.ws21{word-spacing:-0.179280px;}
.wsb{word-spacing:-0.119520px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:0.059760px;}
.ws20{word-spacing:0.119520px;}
.ws17{word-spacing:0.179280px;}
.ws9{word-spacing:0.337680px;}
.ws10{word-spacing:0.358560px;}
.ws3{word-spacing:0.378580px;}
.ws18{word-spacing:0.537840px;}
.ws22{word-spacing:0.597600px;}
.ws1b{word-spacing:0.776880px;}
.ws15{word-spacing:0.896400px;}
.ws6{word-spacing:1.099584px;}
.ws19{word-spacing:1.254960px;}
.ws12{word-spacing:1.972080px;}
.ws13{word-spacing:2.689200px;}
._15{margin-left:-13.398376px;}
._3{margin-left:-6.958209px;}
._4{margin-left:-5.267525px;}
._12{margin-left:-3.645974px;}
._b{margin-left:-2.266312px;}
._0{margin-left:-1.224138px;}
._2{width:1.018298px;}
._5{width:2.174965px;}
._9{width:3.216334px;}
._6{width:4.233578px;}
._7{width:5.469620px;}
._a{width:6.972988px;}
._f{width:8.063657px;}
._e{width:9.100963px;}
._d{width:10.214191px;}
._c{width:11.541977px;}
._8{width:13.255913px;}
._11{width:16.362434px;}
._10{width:17.687478px;}
._14{width:18.925287px;}
._16{width:20.167884px;}
._13{width:27.973776px;}
._1{width:1896.961578px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:48.240039px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:59.760048px;}
.fs1{font-size:63.360000px;}
.fs6{font-size:63.360051px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y98{bottom:62.775600px;}
.y4{bottom:62.940900px;}
.y15a{bottom:62.940950px;}
.yb1{bottom:109.992030px;}
.y101{bottom:111.336840px;}
.y195{bottom:116.941594px;}
.y155{bottom:118.547220px;}
.yd8{bottom:118.566840px;}
.y94{bottom:119.181240px;}
.y80{bottom:120.722100px;}
.y3b{bottom:123.962100px;}
.y11a{bottom:124.796820px;}
.yb0{bottom:127.277610px;}
.y100{bottom:128.622420px;}
.y194{bottom:134.221607px;}
.y154{bottom:135.832800px;}
.yd7{bottom:135.852420px;}
.y7f{bottom:137.822100px;}
.y3a{bottom:141.242100px;}
.y119{bottom:142.082400px;}
.yaf{bottom:144.383910px;}
.yff{bottom:145.908000px;}
.y193{bottom:151.501621px;}
.yd6{bottom:152.958720px;}
.y153{bottom:153.118380px;}
.y7e{bottom:155.102100px;}
.y39{bottom:158.342100px;}
.y118{bottom:159.367980px;}
.yae{bottom:161.669490px;}
.yfe{bottom:163.193580px;}
.y192{bottom:168.781635px;}
.yd5{bottom:170.244300px;}
.y152{bottom:170.403960px;}
.y7d{bottom:172.382100px;}
.y38{bottom:175.622100px;}
.y117{bottom:176.653560px;}
.yfd{bottom:177.237180px;}
.yad{bottom:178.955070px;}
.y191{bottom:186.061649px;}
.y151{bottom:187.510260px;}
.yd4{bottom:187.529880px;}
.y7c{bottom:189.662100px;}
.y37{bottom:192.902100px;}
.y116{bottom:193.939140px;}
.yac{bottom:196.240650px;}
.y190{bottom:203.341663px;}
.y150{bottom:204.795840px;}
.yd3{bottom:204.815460px;}
.y7b{bottom:206.942100px;}
.y36{bottom:210.182100px;}
.y115{bottom:211.045440px;}
.yab{bottom:213.526230px;}
.y18f{bottom:220.441676px;}
.y14f{bottom:222.081420px;}
.yd2{bottom:222.101040px;}
.y35{bottom:227.462100px;}
.y114{bottom:228.331020px;}
.yaa{bottom:230.632530px;}
.y18e{bottom:237.721690px;}
.yd1{bottom:239.207340px;}
.y14e{bottom:239.367000px;}
.y7a{bottom:241.322100px;}
.y34{bottom:244.742100px;}
.y113{bottom:245.616600px;}
.ya9{bottom:247.918110px;}
.y18d{bottom:255.001704px;}
.y6d{bottom:255.002400px;}
.yd0{bottom:256.492920px;}
.y14d{bottom:256.652580px;}
.y12e{bottom:257.420160px;}
.y33{bottom:261.842100px;}
.y112{bottom:262.902180px;}
.ya8{bottom:265.203690px;}
.y18c{bottom:272.281718px;}
.y6c{bottom:272.282400px;}
.y19b{bottom:272.461718px;}
.ycf{bottom:273.778500px;}
.y14c{bottom:273.938160px;}
.y12d{bottom:274.705740px;}
.y32{bottom:279.122100px;}
.y111{bottom:280.187760px;}
.ya7{bottom:282.489270px;}
.yce{bottom:287.822100px;}
.y18b{bottom:289.561732px;}
.y6b{bottom:289.562400px;}
.y19a{bottom:289.741732px;}
.y14b{bottom:291.044460px;}
.y12c{bottom:291.991320px;}
.y31{bottom:296.402100px;}
.y110{bottom:297.294060px;}
.ya6{bottom:299.774850px;}
.y18a{bottom:306.841745px;}
.y6a{bottom:306.842400px;}
.y199{bottom:307.021746px;}
.y14a{bottom:308.330040px;}
.y12b{bottom:309.276900px;}
.y30{bottom:313.682100px;}
.y10f{bottom:314.579640px;}
.ya5{bottom:317.060430px;}
.y189{bottom:323.941759px;}
.y69{bottom:323.942400px;}
.y198{bottom:324.121759px;}
.y149{bottom:325.615620px;}
.y12a{bottom:326.562480px;}
.y2f{bottom:330.962100px;}
.y10e{bottom:331.865220px;}
.y188{bottom:341.221773px;}
.y68{bottom:341.222400px;}
.y197{bottom:341.401773px;}
.y148{bottom:342.901200px;}
.y129{bottom:343.848060px;}
.y2e{bottom:348.242100px;}
.y10d{bottom:349.150800px;}
.ya4{bottom:351.437370px;}
.y187{bottom:358.501787px;}
.y67{bottom:358.502400px;}
.y196{bottom:358.681787px;}
.y147{bottom:360.186780px;}
.y128{bottom:360.954360px;}
.y2d{bottom:365.342100px;}
.y10c{bottom:366.436380px;}
.y186{bottom:375.781801px;}
.y66{bottom:375.782400px;}
.y146{bottom:377.472360px;}
.y127{bottom:378.239940px;}
.y2c{bottom:382.622100px;}
.y10b{bottom:383.721960px;}
.y185{bottom:393.061814px;}
.y65{bottom:393.062400px;}
.y145{bottom:394.578660px;}
.y126{bottom:395.525520px;}
.y2b{bottom:399.902100px;}
.y10a{bottom:400.828260px;}
.y184{bottom:410.341828px;}
.y64{bottom:410.342400px;}
.y144{bottom:411.864240px;}
.y125{bottom:412.811100px;}
.y2a{bottom:417.182100px;}
.y109{bottom:418.113840px;}
.y183{bottom:427.441842px;}
.y63{bottom:427.442400px;}
.y143{bottom:429.149820px;}
.y124{bottom:430.096680px;}
.y29{bottom:434.462100px;}
.y108{bottom:435.399420px;}
.y182{bottom:444.721856px;}
.y62{bottom:444.722400px;}
.y142{bottom:446.435400px;}
.y123{bottom:447.202980px;}
.y28{bottom:451.562100px;}
.y107{bottom:452.685000px;}
.y181{bottom:462.001870px;}
.y61{bottom:462.002400px;}
.y141{bottom:463.720980px;}
.y122{bottom:464.488560px;}
.y27{bottom:468.842100px;}
.y106{bottom:469.970580px;}
.y140{bottom:477.585300px;}
.y180{bottom:479.281883px;}
.y60{bottom:479.282400px;}
.y121{bottom:481.774140px;}
.y26{bottom:486.122100px;}
.y105{bottom:487.256160px;}
.y17f{bottom:496.561897px;}
.y5f{bottom:496.562400px;}
.y120{bottom:499.059720px;}
.y25{bottom:503.402100px;}
.y104{bottom:504.362460px;}
.y17e{bottom:513.661911px;}
.y5e{bottom:513.662400px;}
.y11f{bottom:516.345300px;}
.y24{bottom:520.682100px;}
.y103{bottom:521.648040px;}
.y17d{bottom:530.941925px;}
.y5d{bottom:530.942400px;}
.y11e{bottom:533.630880px;}
.y102{bottom:535.691640px;}
.y23{bottom:537.962100px;}
.y17c{bottom:548.221939px;}
.y5c{bottom:548.222400px;}
.y11d{bottom:550.737180px;}
.y22{bottom:555.062100px;}
.y79{bottom:556.322100px;}
.y17b{bottom:565.501952px;}
.y5b{bottom:565.502400px;}
.y11c{bottom:568.022760px;}
.y21{bottom:572.342100px;}
.y78{bottom:573.602100px;}
.y11b{bottom:582.066360px;}
.yfc{bottom:582.604200px;}
.y17a{bottom:582.781966px;}
.y5a{bottom:582.782400px;}
.y20{bottom:589.622100px;}
.y77{bottom:590.882100px;}
.yfb{bottom:599.889780px;}
.y179{bottom:600.061980px;}
.y59{bottom:600.062400px;}
.y1f{bottom:606.902100px;}
.y76{bottom:607.982100px;}
.yfa{bottom:616.996080px;}
.y178{bottom:617.161994px;}
.y58{bottom:617.162400px;}
.y1e{bottom:624.182100px;}
.y75{bottom:625.262100px;}
.y13f{bottom:626.626740px;}
.yf9{bottom:634.281660px;}
.y177{bottom:634.442008px;}
.y57{bottom:634.442400px;}
.y1d{bottom:641.462100px;}
.y74{bottom:642.542100px;}
.y13e{bottom:643.912320px;}
.yf8{bottom:651.567240px;}
.y176{bottom:651.722021px;}
.y56{bottom:651.722400px;}
.y1c{bottom:658.562100px;}
.y73{bottom:659.822100px;}
.y13d{bottom:661.197900px;}
.yf7{bottom:668.852820px;}
.y175{bottom:669.002035px;}
.y1b{bottom:675.842100px;}
.y72{bottom:677.102100px;}
.y13c{bottom:678.483480px;}
.yf6{bottom:686.138400px;}
.y174{bottom:686.282049px;}
.y55{bottom:686.282400px;}
.y1a{bottom:693.122100px;}
.y71{bottom:694.382100px;}
.y13b{bottom:695.589780px;}
.yf5{bottom:703.423980px;}
.y173{bottom:703.562063px;}
.y54{bottom:703.562400px;}
.y19{bottom:710.402100px;}
.y70{bottom:711.482100px;}
.y13a{bottom:712.875360px;}
.ycd{bottom:720.364980px;}
.yf4{bottom:720.530280px;}
.y172{bottom:720.662077px;}
.y53{bottom:720.662400px;}
.y18{bottom:727.682100px;}
.y6f{bottom:728.762100px;}
.y139{bottom:730.160940px;}
.ycc{bottom:737.650560px;}
.yf3{bottom:737.815860px;}
.y171{bottom:737.942090px;}
.y52{bottom:737.942400px;}
.y17{bottom:744.962100px;}
.y6e{bottom:746.042100px;}
.y138{bottom:747.446520px;}
.ycb{bottom:754.936140px;}
.yf2{bottom:755.101440px;}
.y170{bottom:755.222104px;}
.y51{bottom:755.222400px;}
.y16{bottom:762.062100px;}
.y137{bottom:764.732100px;}
.yca{bottom:772.221720px;}
.yf1{bottom:772.387020px;}
.y16f{bottom:772.502118px;}
.y50{bottom:772.502400px;}
.y136{bottom:781.838400px;}
.yc9{bottom:789.507300px;}
.yf0{bottom:789.672600px;}
.y16e{bottom:789.782132px;}
.y4f{bottom:789.782400px;}
.y15{bottom:796.622400px;}
.y135{bottom:799.123980px;}
.yc8{bottom:806.613600px;}
.yef{bottom:806.778900px;}
.y93{bottom:806.779800px;}
.y16d{bottom:806.882146px;}
.y4e{bottom:806.882400px;}
.y14{bottom:813.902400px;}
.y134{bottom:816.409560px;}
.yc7{bottom:823.899180px;}
.yee{bottom:824.064480px;}
.y92{bottom:824.065380px;}
.y16c{bottom:824.162159px;}
.y4d{bottom:824.162400px;}
.y13{bottom:831.182400px;}
.y133{bottom:833.695140px;}
.yc6{bottom:841.184760px;}
.yed{bottom:841.350060px;}
.y91{bottom:841.350960px;}
.y16b{bottom:841.442173px;}
.y4c{bottom:841.442400px;}
.y12{bottom:848.282400px;}
.y132{bottom:850.980720px;}
.yc5{bottom:858.470340px;}
.yec{bottom:858.635640px;}
.y90{bottom:858.636540px;}
.y16a{bottom:858.722187px;}
.y4b{bottom:858.722400px;}
.y11{bottom:865.562400px;}
.y131{bottom:868.266300px;}
.yc4{bottom:875.755920px;}
.yeb{bottom:875.921220px;}
.y8f{bottom:875.922120px;}
.y169{bottom:876.002201px;}
.y4a{bottom:876.002400px;}
.y10{bottom:882.842400px;}
.y130{bottom:885.372600px;}
.yc3{bottom:893.041500px;}
.yea{bottom:893.206800px;}
.y8e{bottom:893.207700px;}
.y168{bottom:893.282215px;}
.y49{bottom:893.282400px;}
.y12f{bottom:899.416200px;}
.yf{bottom:900.122400px;}
.yc2{bottom:910.147800px;}
.ye9{bottom:910.313100px;}
.y8d{bottom:910.314000px;}
.y167{bottom:910.382228px;}
.y48{bottom:910.382400px;}
.ye{bottom:917.402400px;}
.yc1{bottom:927.433380px;}
.ye8{bottom:927.598680px;}
.y8c{bottom:927.599580px;}
.y166{bottom:927.662242px;}
.y47{bottom:927.662400px;}
.yd{bottom:934.682400px;}
.yc0{bottom:944.718960px;}
.ya3{bottom:944.719710px;}
.ye7{bottom:944.884260px;}
.y8b{bottom:944.885160px;}
.y165{bottom:944.942256px;}
.y46{bottom:944.942400px;}
.yc{bottom:951.782400px;}
.ybf{bottom:962.004540px;}
.ya2{bottom:962.005290px;}
.ye6{bottom:962.169840px;}
.y8a{bottom:962.170740px;}
.y164{bottom:962.222270px;}
.y45{bottom:962.222400px;}
.yb{bottom:969.062400px;}
.ybe{bottom:979.290120px;}
.ya1{bottom:979.290870px;}
.ye5{bottom:979.455420px;}
.y89{bottom:979.456320px;}
.y163{bottom:979.502284px;}
.y44{bottom:979.502400px;}
.ya{bottom:986.342400px;}
.ybd{bottom:996.575700px;}
.ya0{bottom:996.576450px;}
.ye4{bottom:996.741000px;}
.y88{bottom:996.741900px;}
.y162{bottom:996.782297px;}
.y43{bottom:996.782400px;}
.y9{bottom:1003.622400px;}
.ybc{bottom:1013.682000px;}
.y9f{bottom:1013.682750px;}
.ye3{bottom:1013.847300px;}
.y87{bottom:1013.848200px;}
.y161{bottom:1013.882311px;}
.y42{bottom:1013.882400px;}
.ybb{bottom:1030.967580px;}
.y9e{bottom:1030.968330px;}
.ye2{bottom:1031.132880px;}
.y86{bottom:1031.133780px;}
.y160{bottom:1031.162325px;}
.y41{bottom:1031.162400px;}
.y8{bottom:1038.182400px;}
.yba{bottom:1048.253160px;}
.y9d{bottom:1048.253910px;}
.ye1{bottom:1048.418460px;}
.y85{bottom:1048.419360px;}
.y15f{bottom:1048.442339px;}
.y40{bottom:1048.442400px;}
.y7{bottom:1055.282400px;}
.yb9{bottom:1065.538740px;}
.y9c{bottom:1065.539490px;}
.ye0{bottom:1065.704040px;}
.y84{bottom:1065.704940px;}
.y15e{bottom:1065.722353px;}
.y3f{bottom:1065.722400px;}
.y6{bottom:1072.562400px;}
.yb8{bottom:1082.824320px;}
.y9b{bottom:1082.825070px;}
.ydf{bottom:1082.989620px;}
.y83{bottom:1082.990520px;}
.y15d{bottom:1083.002366px;}
.y3e{bottom:1083.002400px;}
.yb7{bottom:1100.109900px;}
.y9a{bottom:1100.110650px;}
.yde{bottom:1100.275200px;}
.y82{bottom:1100.276100px;}
.y15c{bottom:1100.282380px;}
.y3d{bottom:1100.282400px;}
.y5{bottom:1109.102400px;}
.yb6{bottom:1117.216200px;}
.y99{bottom:1117.216950px;}
.ydd{bottom:1117.381500px;}
.y15b{bottom:1117.382394px;}
.y3c{bottom:1117.382400px;}
.yb5{bottom:1134.845040px;}
.ydc{bottom:1135.010340px;}
.y159{bottom:1135.022408px;}
.yb4{bottom:1152.850620px;}
.y97{bottom:1152.851520px;}
.ydb{bottom:1153.015920px;}
.y81{bottom:1153.016820px;}
.y3{bottom:1153.022400px;}
.y158{bottom:1153.022422px;}
.yb3{bottom:1170.856200px;}
.y96{bottom:1170.857100px;}
.yda{bottom:1171.021500px;}
.y2{bottom:1171.022400px;}
.y157{bottom:1171.022437px;}
.yb2{bottom:1188.856200px;}
.y95{bottom:1188.857100px;}
.yd9{bottom:1189.021500px;}
.y1{bottom:1189.022400px;}
.y156{bottom:1189.022451px;}
.h9{height:33.518320px;}
.h7{height:40.501406px;}
.h10{height:40.501439px;}
.hc{height:41.493516px;}
.hb{height:41.522695px;}
.h1{height:42.327773px;}
.hd{height:42.327807px;}
.ha{height:44.024062px;}
.h5{height:52.435898px;}
.hf{height:52.435940px;}
.h6{height:54.993722px;}
.h4{height:54.994922px;}
.h2{height:55.594687px;}
.he{height:55.594732px;}
.h3{height:64.899844px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380150px;}
.x16{left:113.570980px;}
.x8{left:129.779850px;}
.x7{left:136.438687px;}
.x5{left:143.993847px;}
.x6{left:151.553808px;}
.x11{left:158.058589px;}
.x3{left:180.900150px;}
.xb{left:183.643407px;}
.xe{left:199.492980px;}
.xf{left:215.957508px;}
.x13{left:228.479828px;}
.xa{left:240.471131px;}
.x9{left:247.131632px;}
.xc{left:251.285505px;}
.x4{left:302.760150px;}
.x15{left:379.250525px;}
.x2{left:438.660300px;}
.x12{left:642.661607px;}
.x14{left:658.980000px;}
.xd{left:661.199654px;}
.x10{left:770.955051px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-2.390400pt;}
.lsb{letter-spacing:-1.752960pt;}
.ls11{letter-spacing:-1.115520pt;}
.lse{letter-spacing:-0.796800pt;}
.ls13{letter-spacing:-0.690560pt;}
.ls10{letter-spacing:-0.584320pt;}
.ls1b{letter-spacing:-0.531200pt;}
.lsf{letter-spacing:-0.478080pt;}
.ls8{letter-spacing:-0.318720pt;}
.ls5{letter-spacing:-0.300160pt;}
.ls3{letter-spacing:-0.214400pt;}
.lsa{letter-spacing:-0.159360pt;}
.ls19{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010374pt;}
.ls1e{letter-spacing:0.016259pt;}
.ls7{letter-spacing:0.106240pt;}
.ls21{letter-spacing:0.109286pt;}
.ls22{letter-spacing:0.142293pt;}
.ls1a{letter-spacing:0.159360pt;}
.ls1d{letter-spacing:0.166347pt;}
.ls23{letter-spacing:0.168267pt;}
.ls2{letter-spacing:0.171520pt;}
.ls12{letter-spacing:0.212480pt;}
.lsd{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.318720pt;}
.ls4{letter-spacing:0.343040pt;}
.ls18{letter-spacing:1.434240pt;}
.ls20{letter-spacing:1.449068pt;}
.ls1c{letter-spacing:1.577664pt;}
.ls14{letter-spacing:2.071680pt;}
.ls15{letter-spacing:2.709120pt;}
.ls1f{letter-spacing:2.729816pt;}
.ls16{letter-spacing:4.674560pt;}
.ls24{letter-spacing:6.572219pt;}
.ls17{letter-spacing:11.686400pt;}
.wsc{word-spacing:-13.598720pt;}
.wsf{word-spacing:-13.386240pt;}
.ws24{word-spacing:-13.280011pt;}
.ws1{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.226880pt;}
.wse{word-spacing:-13.120640pt;}
.ws1c{word-spacing:-12.748800pt;}
.ws16{word-spacing:-12.695680pt;}
.ws1e{word-spacing:-11.686400pt;}
.ws23{word-spacing:-10.720009pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.505600pt;}
.ws2{word-spacing:-8.640000pt;}
.ws1d{word-spacing:-4.674560pt;}
.ws1f{word-spacing:-1.434240pt;}
.ws8{word-spacing:-0.343040pt;}
.wsa{word-spacing:-0.318720pt;}
.ws14{word-spacing:-0.265600pt;}
.ws1a{word-spacing:-0.212480pt;}
.ws7{word-spacing:-0.171520pt;}
.ws21{word-spacing:-0.159360pt;}
.wsb{word-spacing:-0.106240pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:0.053120pt;}
.ws20{word-spacing:0.106240pt;}
.ws17{word-spacing:0.159360pt;}
.ws9{word-spacing:0.300160pt;}
.ws10{word-spacing:0.318720pt;}
.ws3{word-spacing:0.336515pt;}
.ws18{word-spacing:0.478080pt;}
.ws22{word-spacing:0.531200pt;}
.ws1b{word-spacing:0.690560pt;}
.ws15{word-spacing:0.796800pt;}
.ws6{word-spacing:0.977408pt;}
.ws19{word-spacing:1.115520pt;}
.ws12{word-spacing:1.752960pt;}
.ws13{word-spacing:2.390400pt;}
._15{margin-left:-11.909667pt;}
._3{margin-left:-6.185075pt;}
._4{margin-left:-4.682244pt;}
._12{margin-left:-3.240866pt;}
._b{margin-left:-2.014499pt;}
._0{margin-left:-1.088123pt;}
._2{width:0.905154pt;}
._5{width:1.933302pt;}
._9{width:2.858964pt;}
._6{width:3.763180pt;}
._7{width:4.861884pt;}
._a{width:6.198212pt;}
._f{width:7.167695pt;}
._e{width:8.089745pt;}
._d{width:9.079281pt;}
._c{width:10.259535pt;}
._8{width:11.783034pt;}
._11{width:14.544386pt;}
._10{width:15.722203pt;}
._14{width:16.822477pt;}
._16{width:17.927008pt;}
._13{width:24.865578pt;}
._1{width:1686.188070pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:42.880034pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.120042pt;}
.fs1{font-size:56.320000pt;}
.fs6{font-size:56.320045pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:55.800533pt;}
.y4{bottom:55.947467pt;}
.y15a{bottom:55.947511pt;}
.yb1{bottom:97.770693pt;}
.y101{bottom:98.966080pt;}
.y195{bottom:103.948083pt;}
.y155{bottom:105.375307pt;}
.yd8{bottom:105.392747pt;}
.y94{bottom:105.938880pt;}
.y80{bottom:107.308533pt;}
.y3b{bottom:110.188533pt;}
.y11a{bottom:110.930507pt;}
.yb0{bottom:113.135653pt;}
.y100{bottom:114.331040pt;}
.y194{bottom:119.308095pt;}
.y154{bottom:120.740267pt;}
.yd7{bottom:120.757707pt;}
.y7f{bottom:122.508533pt;}
.y3a{bottom:125.548533pt;}
.y119{bottom:126.295467pt;}
.yaf{bottom:128.341253pt;}
.yff{bottom:129.696000pt;}
.y193{bottom:134.668108pt;}
.yd6{bottom:135.963307pt;}
.y153{bottom:136.105227pt;}
.y7e{bottom:137.868533pt;}
.y39{bottom:140.748533pt;}
.y118{bottom:141.660427pt;}
.yae{bottom:143.706213pt;}
.yfe{bottom:145.060960pt;}
.y192{bottom:150.028120pt;}
.yd5{bottom:151.328267pt;}
.y152{bottom:151.470187pt;}
.y7d{bottom:153.228533pt;}
.y38{bottom:156.108533pt;}
.y117{bottom:157.025387pt;}
.yfd{bottom:157.544160pt;}
.yad{bottom:159.071173pt;}
.y191{bottom:165.388132pt;}
.y151{bottom:166.675787pt;}
.yd4{bottom:166.693227pt;}
.y7c{bottom:168.588533pt;}
.y37{bottom:171.468533pt;}
.y116{bottom:172.390347pt;}
.yac{bottom:174.436133pt;}
.y190{bottom:180.748145pt;}
.y150{bottom:182.040747pt;}
.yd3{bottom:182.058187pt;}
.y7b{bottom:183.948533pt;}
.y36{bottom:186.828533pt;}
.y115{bottom:187.595947pt;}
.yab{bottom:189.801093pt;}
.y18f{bottom:195.948157pt;}
.y14f{bottom:197.405707pt;}
.yd2{bottom:197.423147pt;}
.y35{bottom:202.188533pt;}
.y114{bottom:202.960907pt;}
.yaa{bottom:205.006693pt;}
.y18e{bottom:211.308169pt;}
.yd1{bottom:212.628747pt;}
.y14e{bottom:212.770667pt;}
.y7a{bottom:214.508533pt;}
.y34{bottom:217.548533pt;}
.y113{bottom:218.325867pt;}
.ya9{bottom:220.371653pt;}
.y18d{bottom:226.668181pt;}
.y6d{bottom:226.668800pt;}
.yd0{bottom:227.993707pt;}
.y14d{bottom:228.135627pt;}
.y12e{bottom:228.817920pt;}
.y33{bottom:232.748533pt;}
.y112{bottom:233.690827pt;}
.ya8{bottom:235.736613pt;}
.y18c{bottom:242.028194pt;}
.y6c{bottom:242.028800pt;}
.y19b{bottom:242.188194pt;}
.ycf{bottom:243.358667pt;}
.y14c{bottom:243.500587pt;}
.y12d{bottom:244.182880pt;}
.y32{bottom:248.108533pt;}
.y111{bottom:249.055787pt;}
.ya7{bottom:251.101573pt;}
.yce{bottom:255.841867pt;}
.y18b{bottom:257.388206pt;}
.y6b{bottom:257.388800pt;}
.y19a{bottom:257.548206pt;}
.y14b{bottom:258.706187pt;}
.y12c{bottom:259.547840pt;}
.y31{bottom:263.468533pt;}
.y110{bottom:264.261387pt;}
.ya6{bottom:266.466533pt;}
.y18a{bottom:272.748218pt;}
.y6a{bottom:272.748800pt;}
.y199{bottom:272.908218pt;}
.y14a{bottom:274.071147pt;}
.y12b{bottom:274.912800pt;}
.y30{bottom:278.828533pt;}
.y10f{bottom:279.626347pt;}
.ya5{bottom:281.831493pt;}
.y189{bottom:287.948230pt;}
.y69{bottom:287.948800pt;}
.y198{bottom:288.108230pt;}
.y149{bottom:289.436107pt;}
.y12a{bottom:290.277760pt;}
.y2f{bottom:294.188533pt;}
.y10e{bottom:294.991307pt;}
.y188{bottom:303.308243pt;}
.y68{bottom:303.308800pt;}
.y197{bottom:303.468243pt;}
.y148{bottom:304.801067pt;}
.y129{bottom:305.642720pt;}
.y2e{bottom:309.548533pt;}
.y10d{bottom:310.356267pt;}
.ya4{bottom:312.388773pt;}
.y187{bottom:318.668255pt;}
.y67{bottom:318.668800pt;}
.y196{bottom:318.828255pt;}
.y147{bottom:320.166027pt;}
.y128{bottom:320.848320pt;}
.y2d{bottom:324.748533pt;}
.y10c{bottom:325.721227pt;}
.y186{bottom:334.028267pt;}
.y66{bottom:334.028800pt;}
.y146{bottom:335.530987pt;}
.y127{bottom:336.213280pt;}
.y2c{bottom:340.108533pt;}
.y10b{bottom:341.086187pt;}
.y185{bottom:349.388280pt;}
.y65{bottom:349.388800pt;}
.y145{bottom:350.736587pt;}
.y126{bottom:351.578240pt;}
.y2b{bottom:355.468533pt;}
.y10a{bottom:356.291787pt;}
.y184{bottom:364.748292pt;}
.y64{bottom:364.748800pt;}
.y144{bottom:366.101547pt;}
.y125{bottom:366.943200pt;}
.y2a{bottom:370.828533pt;}
.y109{bottom:371.656747pt;}
.y183{bottom:379.948304pt;}
.y63{bottom:379.948800pt;}
.y143{bottom:381.466507pt;}
.y124{bottom:382.308160pt;}
.y29{bottom:386.188533pt;}
.y108{bottom:387.021707pt;}
.y182{bottom:395.308316pt;}
.y62{bottom:395.308800pt;}
.y142{bottom:396.831467pt;}
.y123{bottom:397.513760pt;}
.y28{bottom:401.388533pt;}
.y107{bottom:402.386667pt;}
.y181{bottom:410.668329pt;}
.y61{bottom:410.668800pt;}
.y141{bottom:412.196427pt;}
.y122{bottom:412.878720pt;}
.y27{bottom:416.748533pt;}
.y106{bottom:417.751627pt;}
.y140{bottom:424.520267pt;}
.y180{bottom:426.028341pt;}
.y60{bottom:426.028800pt;}
.y121{bottom:428.243680pt;}
.y26{bottom:432.108533pt;}
.y105{bottom:433.116587pt;}
.y17f{bottom:441.388353pt;}
.y5f{bottom:441.388800pt;}
.y120{bottom:443.608640pt;}
.y25{bottom:447.468533pt;}
.y104{bottom:448.322187pt;}
.y17e{bottom:456.588365pt;}
.y5e{bottom:456.588800pt;}
.y11f{bottom:458.973600pt;}
.y24{bottom:462.828533pt;}
.y103{bottom:463.687147pt;}
.y17d{bottom:471.948378pt;}
.y5d{bottom:471.948800pt;}
.y11e{bottom:474.338560pt;}
.y102{bottom:476.170347pt;}
.y23{bottom:478.188533pt;}
.y17c{bottom:487.308390pt;}
.y5c{bottom:487.308800pt;}
.y11d{bottom:489.544160pt;}
.y22{bottom:493.388533pt;}
.y79{bottom:494.508533pt;}
.y17b{bottom:502.668402pt;}
.y5b{bottom:502.668800pt;}
.y11c{bottom:504.909120pt;}
.y21{bottom:508.748533pt;}
.y78{bottom:509.868533pt;}
.y11b{bottom:517.392320pt;}
.yfc{bottom:517.870400pt;}
.y17a{bottom:518.028414pt;}
.y5a{bottom:518.028800pt;}
.y20{bottom:524.108533pt;}
.y77{bottom:525.228533pt;}
.yfb{bottom:533.235360pt;}
.y179{bottom:533.388427pt;}
.y59{bottom:533.388800pt;}
.y1f{bottom:539.468533pt;}
.y76{bottom:540.428533pt;}
.yfa{bottom:548.440960pt;}
.y178{bottom:548.588439pt;}
.y58{bottom:548.588800pt;}
.y1e{bottom:554.828533pt;}
.y75{bottom:555.788533pt;}
.y13f{bottom:557.001547pt;}
.yf9{bottom:563.805920pt;}
.y177{bottom:563.948451pt;}
.y57{bottom:563.948800pt;}
.y1d{bottom:570.188533pt;}
.y74{bottom:571.148533pt;}
.y13e{bottom:572.366507pt;}
.yf8{bottom:579.170880pt;}
.y176{bottom:579.308463pt;}
.y56{bottom:579.308800pt;}
.y1c{bottom:585.388533pt;}
.y73{bottom:586.508533pt;}
.y13d{bottom:587.731467pt;}
.yf7{bottom:594.535840pt;}
.y175{bottom:594.668476pt;}
.y1b{bottom:600.748533pt;}
.y72{bottom:601.868533pt;}
.y13c{bottom:603.096427pt;}
.yf6{bottom:609.900800pt;}
.y174{bottom:610.028488pt;}
.y55{bottom:610.028800pt;}
.y1a{bottom:616.108533pt;}
.y71{bottom:617.228533pt;}
.y13b{bottom:618.302027pt;}
.yf5{bottom:625.265760pt;}
.y173{bottom:625.388500pt;}
.y54{bottom:625.388800pt;}
.y19{bottom:631.468533pt;}
.y70{bottom:632.428533pt;}
.y13a{bottom:633.666987pt;}
.ycd{bottom:640.324427pt;}
.yf4{bottom:640.471360pt;}
.y172{bottom:640.588512pt;}
.y53{bottom:640.588800pt;}
.y18{bottom:646.828533pt;}
.y6f{bottom:647.788533pt;}
.y139{bottom:649.031947pt;}
.ycc{bottom:655.689387pt;}
.yf3{bottom:655.836320pt;}
.y171{bottom:655.948525pt;}
.y52{bottom:655.948800pt;}
.y17{bottom:662.188533pt;}
.y6e{bottom:663.148533pt;}
.y138{bottom:664.396907pt;}
.ycb{bottom:671.054347pt;}
.yf2{bottom:671.201280pt;}
.y170{bottom:671.308537pt;}
.y51{bottom:671.308800pt;}
.y16{bottom:677.388533pt;}
.y137{bottom:679.761867pt;}
.yca{bottom:686.419307pt;}
.yf1{bottom:686.566240pt;}
.y16f{bottom:686.668549pt;}
.y50{bottom:686.668800pt;}
.y136{bottom:694.967467pt;}
.yc9{bottom:701.784267pt;}
.yf0{bottom:701.931200pt;}
.y16e{bottom:702.028562pt;}
.y4f{bottom:702.028800pt;}
.y15{bottom:708.108800pt;}
.y135{bottom:710.332427pt;}
.yc8{bottom:716.989867pt;}
.yef{bottom:717.136800pt;}
.y93{bottom:717.137600pt;}
.y16d{bottom:717.228574pt;}
.y4e{bottom:717.228800pt;}
.y14{bottom:723.468800pt;}
.y134{bottom:725.697387pt;}
.yc7{bottom:732.354827pt;}
.yee{bottom:732.501760pt;}
.y92{bottom:732.502560pt;}
.y16c{bottom:732.588586pt;}
.y4d{bottom:732.588800pt;}
.y13{bottom:738.828800pt;}
.y133{bottom:741.062347pt;}
.yc6{bottom:747.719787pt;}
.yed{bottom:747.866720pt;}
.y91{bottom:747.867520pt;}
.y16b{bottom:747.948598pt;}
.y4c{bottom:747.948800pt;}
.y12{bottom:754.028800pt;}
.y132{bottom:756.427307pt;}
.yc5{bottom:763.084747pt;}
.yec{bottom:763.231680pt;}
.y90{bottom:763.232480pt;}
.y16a{bottom:763.308611pt;}
.y4b{bottom:763.308800pt;}
.y11{bottom:769.388800pt;}
.y131{bottom:771.792267pt;}
.yc4{bottom:778.449707pt;}
.yeb{bottom:778.596640pt;}
.y8f{bottom:778.597440pt;}
.y169{bottom:778.668623pt;}
.y4a{bottom:778.668800pt;}
.y10{bottom:784.748800pt;}
.y130{bottom:786.997867pt;}
.yc3{bottom:793.814667pt;}
.yea{bottom:793.961600pt;}
.y8e{bottom:793.962400pt;}
.y168{bottom:794.028635pt;}
.y49{bottom:794.028800pt;}
.y12f{bottom:799.481067pt;}
.yf{bottom:800.108800pt;}
.yc2{bottom:809.020267pt;}
.ye9{bottom:809.167200pt;}
.y8d{bottom:809.168000pt;}
.y167{bottom:809.228647pt;}
.y48{bottom:809.228800pt;}
.ye{bottom:815.468800pt;}
.yc1{bottom:824.385227pt;}
.ye8{bottom:824.532160pt;}
.y8c{bottom:824.532960pt;}
.y166{bottom:824.588660pt;}
.y47{bottom:824.588800pt;}
.yd{bottom:830.828800pt;}
.yc0{bottom:839.750187pt;}
.ya3{bottom:839.750853pt;}
.ye7{bottom:839.897120pt;}
.y8b{bottom:839.897920pt;}
.y165{bottom:839.948672pt;}
.y46{bottom:839.948800pt;}
.yc{bottom:846.028800pt;}
.ybf{bottom:855.115147pt;}
.ya2{bottom:855.115813pt;}
.ye6{bottom:855.262080pt;}
.y8a{bottom:855.262880pt;}
.y164{bottom:855.308684pt;}
.y45{bottom:855.308800pt;}
.yb{bottom:861.388800pt;}
.ybe{bottom:870.480107pt;}
.ya1{bottom:870.480773pt;}
.ye5{bottom:870.627040pt;}
.y89{bottom:870.627840pt;}
.y163{bottom:870.668697pt;}
.y44{bottom:870.668800pt;}
.ya{bottom:876.748800pt;}
.ybd{bottom:885.845067pt;}
.ya0{bottom:885.845733pt;}
.ye4{bottom:885.992000pt;}
.y88{bottom:885.992800pt;}
.y162{bottom:886.028709pt;}
.y43{bottom:886.028800pt;}
.y9{bottom:892.108800pt;}
.ybc{bottom:901.050667pt;}
.y9f{bottom:901.051333pt;}
.ye3{bottom:901.197600pt;}
.y87{bottom:901.198400pt;}
.y161{bottom:901.228721pt;}
.y42{bottom:901.228800pt;}
.ybb{bottom:916.415627pt;}
.y9e{bottom:916.416293pt;}
.ye2{bottom:916.562560pt;}
.y86{bottom:916.563360pt;}
.y160{bottom:916.588733pt;}
.y41{bottom:916.588800pt;}
.y8{bottom:922.828800pt;}
.yba{bottom:931.780587pt;}
.y9d{bottom:931.781253pt;}
.ye1{bottom:931.927520pt;}
.y85{bottom:931.928320pt;}
.y15f{bottom:931.948746pt;}
.y40{bottom:931.948800pt;}
.y7{bottom:938.028800pt;}
.yb9{bottom:947.145547pt;}
.y9c{bottom:947.146213pt;}
.ye0{bottom:947.292480pt;}
.y84{bottom:947.293280pt;}
.y15e{bottom:947.308758pt;}
.y3f{bottom:947.308800pt;}
.y6{bottom:953.388800pt;}
.yb8{bottom:962.510507pt;}
.y9b{bottom:962.511173pt;}
.ydf{bottom:962.657440pt;}
.y83{bottom:962.658240pt;}
.y15d{bottom:962.668770pt;}
.y3e{bottom:962.668800pt;}
.yb7{bottom:977.875467pt;}
.y9a{bottom:977.876133pt;}
.yde{bottom:978.022400pt;}
.y82{bottom:978.023200pt;}
.y15c{bottom:978.028782pt;}
.y3d{bottom:978.028800pt;}
.y5{bottom:985.868800pt;}
.yb6{bottom:993.081067pt;}
.y99{bottom:993.081733pt;}
.ydd{bottom:993.228000pt;}
.y15b{bottom:993.228795pt;}
.y3c{bottom:993.228800pt;}
.yb5{bottom:1008.751147pt;}
.ydc{bottom:1008.898080pt;}
.y159{bottom:1008.908807pt;}
.yb4{bottom:1024.756107pt;}
.y97{bottom:1024.756907pt;}
.ydb{bottom:1024.903040pt;}
.y81{bottom:1024.903840pt;}
.y3{bottom:1024.908800pt;}
.y158{bottom:1024.908820pt;}
.yb3{bottom:1040.761067pt;}
.y96{bottom:1040.761867pt;}
.yda{bottom:1040.908000pt;}
.y2{bottom:1040.908800pt;}
.y157{bottom:1040.908833pt;}
.yb2{bottom:1056.761067pt;}
.y95{bottom:1056.761867pt;}
.yd9{bottom:1056.908000pt;}
.y1{bottom:1056.908800pt;}
.y156{bottom:1056.908846pt;}
.h9{height:29.794062pt;}
.h7{height:36.001250pt;}
.h10{height:36.001279pt;}
.hc{height:36.883125pt;}
.hb{height:36.909063pt;}
.h1{height:37.624687pt;}
.hd{height:37.624718pt;}
.ha{height:39.132500pt;}
.h5{height:46.609688pt;}
.hf{height:46.609725pt;}
.h6{height:48.883308pt;}
.h4{height:48.884375pt;}
.h2{height:49.417500pt;}
.he{height:49.417540pt;}
.h3{height:57.688750pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560133pt;}
.x16{left:100.951983pt;}
.x8{left:115.359867pt;}
.x7{left:121.278833pt;}
.x5{left:127.994530pt;}
.x6{left:134.714496pt;}
.x11{left:140.496523pt;}
.x3{left:160.800133pt;}
.xb{left:163.238584pt;}
.xe{left:177.327093pt;}
.xf{left:191.962229pt;}
.x13{left:203.093180pt;}
.xa{left:213.752116pt;}
.x9{left:219.672562pt;}
.xc{left:223.364893pt;}
.x4{left:269.120133pt;}
.x15{left:337.111578pt;}
.x2{left:389.920267pt;}
.x12{left:571.254761pt;}
.x14{left:585.760000pt;}
.xd{left:587.733026pt;}
.x10{left:685.293378pt;}
}




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