
    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_ffebbc07a160386e9c5fd84d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124118;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_4d9c21601ad9cc025a58d18a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149000;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_c7dc8597abe28b0c5384baed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_9f848eb4aaac391fb8b2cf5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_ffb340b675264e90a6381ba2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118000;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_472917e81d05f9be522c7b14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012045;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_0030870868146516b17c3de6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_e68b84783f5619b5ca85bc37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_be87212656cb93ec27df8e5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009118;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_61e0b4a32c84b0f5f97439e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_ffd76315f7c987d7299b9d38.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.009118;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_23ff9232759d64c89ac1df16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914000;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_d716055352cf48f354829528.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_ab5deb83ceccc0667907d2a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.713867;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_a0ce08cfe4fc6ababe74d575.woff2')format("woff");}.fff{font-family:fff;line-height:1.012045;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_00b9613ccc8b0e0621b107c5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.098000;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_6ea6023308da3fce6f094d02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.900000;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_c5bbf54beb5846c2adbdde85.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.012045;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_a1951ea4a63ba0d53e7e668a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.721000;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_775b07ee5c0592847a43533f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.923000;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_b965e48e88030391da4f3ccd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.012045;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:ff16;src:url('chunks/assets/font_5d68b40c021e1f7288c526f8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.012045;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:ff17;src:url('chunks/assets/font_4e33bf3fa46de226da5e67c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.971000;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:ff18;src:url('chunks/assets/font_d2ea7c24fa98c855f104e443.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.923000;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:ff19;src:url('chunks/assets/font_0d384dfb944c0fe7c508deda.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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:ff1a;src:url('chunks/assets/font_39a07e6c8aa1a17d66476784.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.971000;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:ff1b;src:url('chunks/assets/font_d7866feb6c70ffa75d107ac6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.012045;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:ff1c;src:url('chunks/assets/font_dad11d2cf2468d6f4356ffa2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.012045;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:ff1d;src:url('chunks/assets/font_2eedf6b8ab13e3a28468ba10.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.739000;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:ff1e;src:url('chunks/assets/font_827dd18167966718be3d1b8c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.118000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(-0.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-83.229445px;}
.ws3{word-spacing:-80.837239px;}
.ws2{word-spacing:-80.732561px;}
.ws9{word-spacing:-41.822796px;}
.ws4{word-spacing:-41.614722px;}
.ws0{word-spacing:-34.606642px;}
.ws5{word-spacing:-28.452651px;}
.wsa{word-spacing:-16.198602px;}
.ws7{word-spacing:-14.393333px;}
.ws6{word-spacing:-12.660941px;}
.wsb{word-spacing:-9.085758px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-4.895795px;}
._0{margin-left:-3.463801px;}
._1{margin-left:-2.442881px;}
._3{margin-left:-1.013473px;}
._7{width:1.582056px;}
._6{width:2.628909px;}
._a{width:4.783278px;}
._15{width:6.719621px;}
._11{width:8.745328px;}
._1d{width:9.927100px;}
._5{width:10.990983px;}
._1a{width:12.361118px;}
._1e{width:13.378973px;}
._12{width:14.662780px;}
._9{width:15.923383px;}
._8{width:17.400279px;}
._c{width:18.427918px;}
._b{width:19.884546px;}
._16{width:24.123696px;}
._e{width:25.976715px;}
._d{width:27.395321px;}
._19{width:28.777641px;}
._18{width:30.491496px;}
._17{width:32.052301px;}
._1c{width:33.929072px;}
._13{width:36.400291px;}
._14{width:38.093514px;}
._1b{width:39.515929px;}
._20{width:43.672022px;}
._1f{width:45.254665px;}
._10{width:54.097243px;}
._f{width:55.440469px;}
._4{width:61.822838px;}
.fc3{color:rgb(10,74,11);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(36,97,0);}
.fs13{font-size:28.501198px;}
.fs12{font-size:45.428792px;}
.fsf{font-size:63.304707px;}
.fs10{font-size:63.501551px;}
.fs8{font-size:65.939456px;}
.fsc{font-size:70.826047px;}
.fs4{font-size:71.966665px;}
.fs3{font-size:72.236538px;}
.fs9{font-size:80.577480px;}
.fs11{font-size:80.993009px;}
.fsb{font-size:82.600877px;}
.fs7{font-size:83.931123px;}
.fsd{font-size:95.696356px;}
.fs6{font-size:95.940560px;}
.fs1{font-size:122.150066px;}
.fs0{font-size:173.033211px;}
.fsa{font-size:204.775799px;}
.fse{font-size:207.543987px;}
.fs2{font-size:208.073611px;}
.fs5{font-size:208.343398px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.000018px;}
.ye0{bottom:3.087313px;}
.y8f{bottom:3.342457px;}
.y9f{bottom:3.371769px;}
.y8d{bottom:3.401036px;}
.y9d{bottom:3.430348px;}
.y8b{bottom:3.459659px;}
.y9b{bottom:3.488927px;}
.y89{bottom:3.518238px;}
.y91{bottom:3.547550px;}
.y7d{bottom:3.576817px;}
.yd2{bottom:3.979646px;}
.y83{bottom:4.324464px;}
.y95{bottom:4.353776px;}
.y81{bottom:4.383087px;}
.y3f{bottom:4.400050px;}
.y93{bottom:4.412399px;}
.y45{bottom:4.421847px;}
.y7f{bottom:4.441666px;}
.y41{bottom:4.527316px;}
.y47{bottom:4.549200px;}
.y53{bottom:4.560630px;}
.y87{bottom:4.567306px;}
.y99{bottom:4.596617px;}
.y5a{bottom:4.607269px;}
.y85{bottom:4.625885px;}
.y43{bottom:4.654537px;}
.y97{bottom:4.655196px;}
.yd4{bottom:5.207421px;}
.ye2{bottom:6.718146px;}
.y5{bottom:6.758850px;}
.y6e{bottom:8.166209px;}
.y3{bottom:9.773951px;}
.y49{bottom:11.168629px;}
.y4c{bottom:11.277208px;}
.y71{bottom:11.363581px;}
.y1c{bottom:13.305735px;}
.ye3{bottom:16.218546px;}
.ydf{bottom:18.230244px;}
.y59{bottom:28.953723px;}
.y52{bottom:33.333712px;}
.yde{bottom:33.373174px;}
.ydd{bottom:48.516105px;}
.y58{bottom:53.300176px;}
.y51{bottom:62.106793px;}
.ydc{bottom:63.659035px;}
.y2{bottom:69.894687px;}
.y57{bottom:77.646630px;}
.ydb{bottom:78.801966px;}
.y4b{bottom:82.103255px;}
.y70{bottom:83.147064px;}
.y1a{bottom:86.775631px;}
.y50{bottom:90.879875px;}
.yda{bottom:93.944896px;}
.ya4{bottom:97.020321px;}
.y56{bottom:101.993083px;}
.y6c{bottom:104.426802px;}
.yd1{bottom:108.450013px;}
.yd9{bottom:109.087827px;}
.y19{bottom:111.514172px;}
.y4f{bottom:119.652956px;}
.yb5{bottom:120.401084px;}
.ya3{bottom:121.758862px;}
.yd8{bottom:124.230757px;}
.y55{bottom:126.339537px;}
.y6b{bottom:133.663260px;}
.y18{bottom:136.252713px;}
.yd7{bottom:139.373688px;}
.yb4{bottom:145.139625px;}
.ya2{bottom:146.497403px;}
.y4e{bottom:148.426038px;}
.yd6{bottom:154.516618px;}
.y17{bottom:160.991254px;}
.y6a{bottom:162.899718px;}
.yb3{bottom:169.878166px;}
.ya1{bottom:171.005069px;}
.y2b{bottom:180.098974px;}
.y69{bottom:192.136175px;}
.yb2{bottom:194.616707px;}
.y6d{bottom:196.650010px;}
.y2a{bottom:212.708869px;}
.yb1{bottom:219.355248px;}
.y68{bottom:221.372633px;}
.y4{bottom:223.650009px;}
.yb0{bottom:244.093789px;}
.y29{bottom:245.318764px;}
.y67{bottom:250.609091px;}
.y86{bottom:257.850007px;}
.y8e{bottom:261.090007px;}
.yaf{bottom:268.832330px;}
.ye1{bottom:274.050007px;}
.y98{bottom:277.650006px;}
.y28{bottom:277.928659px;}
.y46{bottom:279.450006px;}
.y66{bottom:279.845548px;}
.y9e{bottom:280.890006px;}
.y54{bottom:282.690006px;}
.y3d{bottom:282.710027px;}
.y38{bottom:284.809102px;}
.yae{bottom:293.570871px;}
.y84{bottom:297.450006px;}
.y8c{bottom:300.690005px;}
.yd5{bottom:305.370005px;}
.y65{bottom:309.082006px;}
.y27{bottom:310.538554px;}
.y96{bottom:317.250005px;}
.yad{bottom:318.309413px;}
.y9c{bottom:320.490005px;}
.y44{bottom:320.850005px;}
.y3c{bottom:324.019237px;}
.y37{bottom:326.118265px;}
.y82{bottom:337.410004px;}
.yc6{bottom:337.819418px;}
.y8a{bottom:340.290004px;}
.yac{bottom:343.047954px;}
.y26{bottom:343.148449px;}
.y64{bottom:345.635025px;}
.y16{bottom:353.095159px;}
.y94{bottom:357.210003px;}
.y9a{bottom:360.090003px;}
.y42{bottom:361.890003px;}
.yc5{bottom:362.557959px;}
.y3b{bottom:365.328400px;}
.y36{bottom:367.427428px;}
.yab{bottom:367.786495px;}
.y25{bottom:375.758344px;}
.y80{bottom:377.010002px;}
.y88{bottom:379.890002px;}
.yc4{bottom:387.296500px;}
.yaa{bottom:392.525036px;}
.y92{bottom:396.810001px;}
.y90{bottom:399.690001px;}
.y15{bottom:402.572241px;}
.y40{bottom:403.290001px;}
.y3a{bottom:406.637606px;}
.y24{bottom:408.368239px;}
.y35{bottom:408.736638px;}
.yc3{bottom:412.035041px;}
.y7e{bottom:416.610001px;}
.y7c{bottom:419.490001px;}
.y14{bottom:427.310782px;}
.yc2{bottom:436.773582px;}
.y23{bottom:440.978134px;}
.y48{bottom:441.810000px;}
.y3e{bottom:444.689999px;}
.y39{bottom:447.946770px;}
.y34{bottom:450.045801px;}
.y13{bottom:452.049323px;}
.yc1{bottom:461.512123px;}
.ya9{bottom:465.259392px;}
.ya0{bottom:471.691369px;}
.y22{bottom:473.588029px;}
.yd3{bottom:476.729998px;}
.y12{bottom:476.787864px;}
.yc0{bottom:486.250664px;}
.ya8{bottom:489.997933px;}
.y2c{bottom:492.653184px;}
.y11{bottom:501.526405px;}
.y7b{bottom:505.650731px;}
.y21{bottom:506.197925px;}
.ybf{bottom:510.989206px;}
.y1{bottom:523.169996px;}
.y10{bottom:526.264946px;}
.ybe{bottom:535.727747px;}
.y63{bottom:536.850597px;}
.y20{bottom:538.807820px;}
.y6f{bottom:541.889995px;}
.yf{bottom:551.003487px;}
.y4d{bottom:556.289995px;}
.ybd{bottom:560.466288px;}
.y62{bottom:566.087054px;}
.y1f{bottom:571.417715px;}
.ye{bottom:575.742028px;}
.y33{bottom:577.733754px;}
.ybc{bottom:585.204829px;}
.y79{bottom:594.831683px;}
.y61{bottom:595.323512px;}
.ycf{bottom:598.026319px;}
.y1e{bottom:604.027610px;}
.y32{bottom:606.970212px;}
.ybb{bottom:609.943370px;}
.y78{bottom:619.570224px;}
.yce{bottom:622.764860px;}
.y60{bottom:624.559970px;}
.yd{bottom:625.219111px;}
.yba{bottom:634.681911px;}
.y31{bottom:636.206670px;}
.y1d{bottom:636.637505px;}
.y77{bottom:644.308765px;}
.ycd{bottom:647.503401px;}
.yc{bottom:649.957652px;}
.y5f{bottom:653.796427px;}
.yb9{bottom:659.420452px;}
.y30{bottom:665.443127px;}
.y76{bottom:669.047306px;}
.ycc{bottom:672.241942px;}
.yb{bottom:674.696193px;}
.y5e{bottom:683.032885px;}
.yb8{bottom:684.158993px;}
.y75{bottom:693.785847px;}
.y2f{bottom:694.679585px;}
.ycb{bottom:696.980484px;}
.ya{bottom:699.434734px;}
.y5d{bottom:712.269343px;}
.y74{bottom:718.524388px;}
.yca{bottom:721.719025px;}
.y9{bottom:724.173275px;}
.y1b{bottom:726.209988px;}
.yb7{bottom:734.184050px;}
.y4a{bottom:741.329987px;}
.y73{bottom:743.262929px;}
.yc9{bottom:746.457566px;}
.y5c{bottom:748.822421px;}
.y8{bottom:748.911816px;}
.y2e{bottom:749.586514px;}
.ya6{bottom:749.718078px;}
.yb6{bottom:758.922591px;}
.y72{bottom:768.001471px;}
.yc8{bottom:771.196107px;}
.ya5{bottom:774.456620px;}
.y7{bottom:784.738496px;}
.ya7{bottom:810.422085px;}
.yd0{bottom:811.186185px;}
.y7a{bottom:811.941865px;}
.yc7{bottom:820.162473px;}
.y5b{bottom:820.789086px;}
.y2d{bottom:821.553179px;}
.h23{height:16.199999px;}
.h2a{height:17.999999px;}
.h1f{height:19.799999px;}
.h25{height:24.119999px;}
.h21{height:24.839999px;}
.h11{height:25.199999px;}
.h2b{height:25.936090px;}
.h4{height:30.959999px;}
.h1a{height:33.119999px;}
.h28{height:33.208447px;}
.h29{height:41.340200px;}
.hf{height:47.146711px;}
.h19{height:50.498971px;}
.h24{height:50.801240px;}
.h13{height:51.119998px;}
.h22{height:51.456165px;}
.ha{height:52.559998px;}
.h9{height:54.910565px;}
.h8{height:55.116478px;}
.h20{height:56.910932px;}
.h12{height:57.451743px;}
.h17{height:58.894425px;}
.h26{height:59.205889px;}
.h10{height:59.842891px;}
.he{height:60.010753px;}
.h1e{height:64.698032px;}
.h1b{height:73.220796px;}
.hc{height:87.305910px;}
.h2{height:103.319996px;}
.h5{height:111.767311px;}
.h15{height:122.039995px;}
.h1c{height:123.839995px;}
.h18{height:143.279994px;}
.h3{height:158.325388px;}
.h14{height:163.820639px;}
.h27{height:165.239993px;}
.h1d{height:166.035190px;}
.hd{height:166.458889px;}
.hb{height:166.674719px;}
.h16{height:169.559993px;}
.h7{height:190.179281px;}
.h6{height:893.249963px;}
.h0{height:893.249981px;}
.h1{height:893.250000px;}
.w6{width:7.920000px;}
.w14{width:11.160000px;}
.w7{width:12.239999px;}
.w8{width:13.319999px;}
.w19{width:57.959998px;}
.wf{width:77.039997px;}
.w10{width:94.319996px;}
.w5{width:143.279994px;}
.w11{width:163.439993px;}
.w13{width:168.839993px;}
.w18{width:181.079992px;}
.w17{width:185.039992px;}
.w15{width:195.839992px;}
.w12{width:196.919992px;}
.w16{width:220.679991px;}
.w1b{width:221.759991px;}
.wc{width:254.879989px;}
.w1a{width:340.199986px;}
.w2{width:408.959983px;}
.wd{width:448.919981px;}
.w9{width:457.559981px;}
.w3{width:483.119980px;}
.wa{width:549.359977px;}
.wb{width:553.679977px;}
.we{width:554.399977px;}
.w4{width:631.124974px;}
.w0{width:631.125000px;}
.w1{width:631.500000px;}
.x0{left:0.000000px;}
.x21{left:1.178158px;}
.x7{left:3.245763px;}
.x26{left:20.236887px;}
.x24{left:34.199999px;}
.x19{left:35.533173px;}
.x29{left:37.277084px;}
.x20{left:38.879998px;}
.x1f{left:39.959998px;}
.x1e{left:42.119998px;}
.x25{left:44.279998px;}
.x31{left:45.965608px;}
.x2e{left:47.519998px;}
.x2d{left:48.599998px;}
.x2c{left:50.759998px;}
.x5{left:63.112497px;}
.x1a{left:70.579574px;}
.x3{left:73.439997px;}
.x2b{left:79.559997px;}
.x22{left:81.359997px;}
.x28{left:90.719996px;}
.x32{left:93.626388px;}
.x1{left:110.519995px;}
.x2a{left:115.285798px;}
.x13{left:121.267712px;}
.x23{left:126.774010px;}
.x8{left:130.527095px;}
.x2{left:132.588439px;}
.xd{left:142.088146px;}
.xf{left:145.830553px;}
.x17{left:152.075227px;}
.xc{left:153.842467px;}
.x12{left:155.002086px;}
.x16{left:159.551179px;}
.x15{left:161.344851px;}
.xa{left:162.715310px;}
.x34{left:176.703878px;}
.x18{left:180.116926px;}
.x14{left:183.746584px;}
.x9{left:185.468443px;}
.x11{left:189.228420px;}
.x4{left:191.620143px;}
.xe{left:195.764455px;}
.x35{left:204.716898px;}
.x10{left:212.807342px;}
.xb{left:221.170656px;}
.x33{left:223.511045px;}
.x27{left:235.532663px;}
.x6{left:243.359990px;}
.x1d{left:316.855215px;}
.x30{left:318.959987px;}
.x1c{left:320.544913px;}
.x2f{left:349.919985px;}
.x1b{left:352.151661px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-73.981728pt;}
.ws3{word-spacing:-71.855323pt;}
.ws2{word-spacing:-71.762277pt;}
.ws9{word-spacing:-37.175819pt;}
.ws4{word-spacing:-36.990864pt;}
.ws0{word-spacing:-30.761460pt;}
.ws5{word-spacing:-25.291245pt;}
.wsa{word-spacing:-14.398757pt;}
.ws7{word-spacing:-12.794074pt;}
.ws6{word-spacing:-11.254170pt;}
.wsb{word-spacing:-8.076230pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-4.351817pt;}
._0{margin-left:-3.078934pt;}
._1{margin-left:-2.171450pt;}
._3{margin-left:-0.900865pt;}
._7{width:1.406272pt;}
._6{width:2.336808pt;}
._a{width:4.251803pt;}
._15{width:5.972997pt;}
._11{width:7.773625pt;}
._1d{width:8.824089pt;}
._5{width:9.769763pt;}
._1a{width:10.987660pt;}
._1e{width:11.892421pt;}
._12{width:13.033582pt;}
._9{width:14.154118pt;}
._8{width:15.466915pt;}
._c{width:16.380372pt;}
._b{width:17.675152pt;}
._16{width:21.443285pt;}
._e{width:23.090413pt;}
._d{width:24.351396pt;}
._19{width:25.580126pt;}
._18{width:27.103552pt;}
._17{width:28.490934pt;}
._1c{width:30.159175pt;}
._13{width:32.355814pt;}
._14{width:33.860901pt;}
._1b{width:35.125270pt;}
._20{width:38.819575pt;}
._1f{width:40.226369pt;}
._10{width:48.086438pt;}
._f{width:49.280417pt;}
._4{width:54.953634pt;}
.fs13{font-size:25.334398pt;}
.fs12{font-size:40.381148pt;}
.fsf{font-size:56.270851pt;}
.fs10{font-size:56.445823pt;}
.fs8{font-size:58.612850pt;}
.fsc{font-size:62.956486pt;}
.fs4{font-size:63.970369pt;}
.fs3{font-size:64.210256pt;}
.fs9{font-size:71.624426pt;}
.fs11{font-size:71.993785pt;}
.fsb{font-size:73.423002pt;}
.fs7{font-size:74.605443pt;}
.fsd{font-size:85.063428pt;}
.fs6{font-size:85.280498pt;}
.fs1{font-size:108.577837pt;}
.fs0{font-size:153.807298pt;}
.fsa{font-size:182.022933pt;}
.fse{font-size:184.483544pt;}
.fs2{font-size:184.954321pt;}
.fs5{font-size:185.194132pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.000016pt;}
.ye0{bottom:2.744279pt;}
.y8f{bottom:2.971073pt;}
.y9f{bottom:2.997128pt;}
.y8d{bottom:3.023143pt;}
.y9d{bottom:3.049198pt;}
.y8b{bottom:3.075253pt;}
.y9b{bottom:3.101268pt;}
.y89{bottom:3.127323pt;}
.y91{bottom:3.153378pt;}
.y7d{bottom:3.179393pt;}
.yd2{bottom:3.537463pt;}
.y83{bottom:3.843968pt;}
.y95{bottom:3.870023pt;}
.y81{bottom:3.896077pt;}
.y3f{bottom:3.911156pt;}
.y93{bottom:3.922132pt;}
.y45{bottom:3.930531pt;}
.y7f{bottom:3.948148pt;}
.y41{bottom:4.024281pt;}
.y47{bottom:4.043734pt;}
.y53{bottom:4.053893pt;}
.y87{bottom:4.059827pt;}
.y99{bottom:4.085882pt;}
.y5a{bottom:4.095350pt;}
.y85{bottom:4.111898pt;}
.y43{bottom:4.137366pt;}
.y97{bottom:4.137952pt;}
.yd4{bottom:4.628818pt;}
.ye2{bottom:5.971686pt;}
.y5{bottom:6.007866pt;}
.y6e{bottom:7.258852pt;}
.y3{bottom:8.687957pt;}
.y49{bottom:9.927670pt;}
.y4c{bottom:10.024185pt;}
.y71{bottom:10.100961pt;}
.y1c{bottom:11.827320pt;}
.ye3{bottom:14.416485pt;}
.ydf{bottom:16.204661pt;}
.y59{bottom:25.736642pt;}
.y52{bottom:29.629966pt;}
.yde{bottom:29.665044pt;}
.ydd{bottom:43.125427pt;}
.y58{bottom:47.377934pt;}
.y51{bottom:55.206038pt;}
.ydc{bottom:56.585809pt;}
.y2{bottom:62.128611pt;}
.y57{bottom:69.019226pt;}
.ydb{bottom:70.046192pt;}
.y4b{bottom:72.980671pt;}
.y70{bottom:73.908502pt;}
.y1a{bottom:77.133894pt;}
.y50{bottom:80.782111pt;}
.yda{bottom:83.506575pt;}
.ya4{bottom:86.240285pt;}
.y56{bottom:90.660519pt;}
.y6c{bottom:92.823824pt;}
.yd1{bottom:96.400012pt;}
.yd9{bottom:96.966957pt;}
.y19{bottom:99.123709pt;}
.y4f{bottom:106.358183pt;}
.yb5{bottom:107.023185pt;}
.ya3{bottom:108.230099pt;}
.yd8{bottom:110.427340pt;}
.y55{bottom:112.301811pt;}
.y6b{bottom:118.811787pt;}
.y18{bottom:121.113523pt;}
.yd7{bottom:123.887723pt;}
.yb4{bottom:129.013000pt;}
.ya2{bottom:130.219914pt;}
.y4e{bottom:131.934256pt;}
.yd6{bottom:137.348105pt;}
.y17{bottom:143.103337pt;}
.y6a{bottom:144.799749pt;}
.yb3{bottom:151.002814pt;}
.ya1{bottom:152.004506pt;}
.y2b{bottom:160.087977pt;}
.y69{bottom:170.787712pt;}
.yb2{bottom:172.992628pt;}
.y6d{bottom:174.800009pt;}
.y2a{bottom:189.074550pt;}
.yb1{bottom:194.982443pt;}
.y68{bottom:196.775674pt;}
.y4{bottom:198.800008pt;}
.yb0{bottom:216.972257pt;}
.y29{bottom:218.061123pt;}
.y67{bottom:222.763636pt;}
.y86{bottom:229.200006pt;}
.y8e{bottom:232.080006pt;}
.yaf{bottom:238.962071pt;}
.ye1{bottom:243.600006pt;}
.y98{bottom:246.800006pt;}
.y28{bottom:247.047697pt;}
.y46{bottom:248.400006pt;}
.y66{bottom:248.751599pt;}
.y9e{bottom:249.680006pt;}
.y54{bottom:251.280006pt;}
.y3d{bottom:251.297802pt;}
.y38{bottom:253.163646pt;}
.yae{bottom:260.951886pt;}
.y84{bottom:264.400005pt;}
.y8c{bottom:267.280005pt;}
.yd5{bottom:271.440005pt;}
.y65{bottom:274.739561pt;}
.y27{bottom:276.034270pt;}
.y96{bottom:282.000004pt;}
.yad{bottom:282.941700pt;}
.y9c{bottom:284.880004pt;}
.y44{bottom:285.200004pt;}
.y3c{bottom:288.017100pt;}
.y37{bottom:289.882902pt;}
.y82{bottom:299.920004pt;}
.yc6{bottom:300.283927pt;}
.y8a{bottom:302.480003pt;}
.yac{bottom:304.931514pt;}
.y26{bottom:305.020844pt;}
.y64{bottom:307.231133pt;}
.y16{bottom:313.862363pt;}
.y94{bottom:317.520003pt;}
.y9a{bottom:320.080003pt;}
.y42{bottom:321.680003pt;}
.yc5{bottom:322.273741pt;}
.y3b{bottom:324.736356pt;}
.y36{bottom:326.602158pt;}
.yab{bottom:326.921329pt;}
.y25{bottom:334.007417pt;}
.y80{bottom:335.120002pt;}
.y88{bottom:337.680002pt;}
.yc4{bottom:344.263556pt;}
.yaa{bottom:348.911143pt;}
.y92{bottom:352.720001pt;}
.y90{bottom:355.280001pt;}
.y15{bottom:357.841992pt;}
.y40{bottom:358.480001pt;}
.y3a{bottom:361.455650pt;}
.y24{bottom:362.993990pt;}
.y35{bottom:363.321456pt;}
.yc3{bottom:366.253370pt;}
.y7e{bottom:370.320001pt;}
.y7c{bottom:372.880000pt;}
.y14{bottom:379.831806pt;}
.yc2{bottom:388.243184pt;}
.y23{bottom:391.980564pt;}
.y48{bottom:392.720000pt;}
.y3e{bottom:395.280000pt;}
.y39{bottom:398.174906pt;}
.y34{bottom:400.040712pt;}
.y13{bottom:401.821620pt;}
.yc1{bottom:410.232999pt;}
.ya9{bottom:413.563904pt;}
.ya0{bottom:419.281217pt;}
.y22{bottom:420.967137pt;}
.yd3{bottom:423.759998pt;}
.y12{bottom:423.811435pt;}
.yc0{bottom:432.222813pt;}
.ya8{bottom:435.553719pt;}
.y2c{bottom:437.913942pt;}
.y11{bottom:445.801249pt;}
.y7b{bottom:449.467316pt;}
.y21{bottom:449.953711pt;}
.ybf{bottom:454.212627pt;}
.y1{bottom:465.039997pt;}
.y10{bottom:467.791063pt;}
.ybe{bottom:476.202441pt;}
.y63{bottom:477.200530pt;}
.y20{bottom:478.940284pt;}
.y6f{bottom:481.679996pt;}
.yf{bottom:489.780878pt;}
.y4d{bottom:494.479995pt;}
.ybd{bottom:498.192256pt;}
.y62{bottom:503.188493pt;}
.y1f{bottom:507.926858pt;}
.ye{bottom:511.770692pt;}
.y33{bottom:513.541115pt;}
.ybc{bottom:520.182070pt;}
.y79{bottom:528.739274pt;}
.y61{bottom:529.176455pt;}
.ycf{bottom:531.578950pt;}
.y1e{bottom:536.913431pt;}
.y32{bottom:539.529077pt;}
.ybb{bottom:542.171884pt;}
.y78{bottom:550.729088pt;}
.yce{bottom:553.568765pt;}
.y60{bottom:555.164417pt;}
.yd{bottom:555.750321pt;}
.yba{bottom:564.161699pt;}
.y31{bottom:565.517040pt;}
.y1d{bottom:565.900004pt;}
.y77{bottom:572.718902pt;}
.ycd{bottom:575.558579pt;}
.yc{bottom:577.740135pt;}
.y5f{bottom:581.152380pt;}
.yb9{bottom:586.151513pt;}
.y30{bottom:591.505002pt;}
.y76{bottom:594.708717pt;}
.ycc{bottom:597.548393pt;}
.yb{bottom:599.729949pt;}
.y5e{bottom:607.140342pt;}
.yb8{bottom:608.141327pt;}
.y75{bottom:616.698531pt;}
.y2f{bottom:617.492964pt;}
.ycb{bottom:619.538208pt;}
.ya{bottom:621.719764pt;}
.y5d{bottom:633.128304pt;}
.y74{bottom:638.688345pt;}
.yca{bottom:641.528022pt;}
.y9{bottom:643.709578pt;}
.y1b{bottom:645.519989pt;}
.yb7{bottom:652.608045pt;}
.y4a{bottom:658.959989pt;}
.y73{bottom:660.678160pt;}
.yc9{bottom:663.517836pt;}
.y5c{bottom:665.619930pt;}
.y8{bottom:665.699392pt;}
.y2e{bottom:666.299123pt;}
.ya6{bottom:666.416070pt;}
.yb6{bottom:674.597859pt;}
.y72{bottom:682.667974pt;}
.yc8{bottom:685.507651pt;}
.ya5{bottom:688.405884pt;}
.y7{bottom:697.545330pt;}
.ya7{bottom:720.375187pt;}
.yd0{bottom:721.054386pt;}
.y7a{bottom:721.726103pt;}
.yc7{bottom:729.033309pt;}
.y5b{bottom:729.590299pt;}
.y2d{bottom:730.269492pt;}
.h23{height:14.399999pt;}
.h2a{height:15.999999pt;}
.h1f{height:17.599999pt;}
.h25{height:21.439999pt;}
.h21{height:22.079999pt;}
.h11{height:22.399999pt;}
.h2b{height:23.054302pt;}
.h4{height:27.519999pt;}
.h1a{height:29.439999pt;}
.h28{height:29.518619pt;}
.h29{height:36.746845pt;}
.hf{height:41.908188pt;}
.h19{height:44.887975pt;}
.h24{height:45.156658pt;}
.h13{height:45.439998pt;}
.h22{height:45.738814pt;}
.ha{height:46.719998pt;}
.h9{height:48.809391pt;}
.h8{height:48.992425pt;}
.h20{height:50.587495pt;}
.h12{height:51.068216pt;}
.h17{height:52.350600pt;}
.h26{height:52.627457pt;}
.h10{height:53.193681pt;}
.he{height:53.342892pt;}
.h1e{height:57.509362pt;}
.h1b{height:65.085152pt;}
.hc{height:77.605253pt;}
.h2{height:91.839996pt;}
.h5{height:99.348721pt;}
.h15{height:108.479995pt;}
.h1c{height:110.079995pt;}
.h18{height:127.359995pt;}
.h3{height:140.733678pt;}
.h14{height:145.618346pt;}
.h27{height:146.879994pt;}
.h1d{height:147.586835pt;}
.hd{height:147.963457pt;}
.hb{height:148.155306pt;}
.h16{height:150.719994pt;}
.h7{height:169.048250pt;}
.h6{height:793.999967pt;}
.h0{height:793.999983pt;}
.h1{height:794.000000pt;}
.w6{width:7.040000pt;}
.w14{width:9.920000pt;}
.w7{width:10.880000pt;}
.w8{width:11.840000pt;}
.w19{width:51.519998pt;}
.wf{width:68.479997pt;}
.w10{width:83.839997pt;}
.w5{width:127.359995pt;}
.w11{width:145.279994pt;}
.w13{width:150.079994pt;}
.w18{width:160.959993pt;}
.w17{width:164.479993pt;}
.w15{width:174.079993pt;}
.w12{width:175.039993pt;}
.w16{width:196.159992pt;}
.w1b{width:197.119992pt;}
.wc{width:226.559991pt;}
.w1a{width:302.399987pt;}
.w2{width:363.519985pt;}
.wd{width:399.039983pt;}
.w9{width:406.719983pt;}
.w3{width:429.439982pt;}
.wa{width:488.319980pt;}
.wb{width:492.159979pt;}
.we{width:492.799979pt;}
.w4{width:560.999977pt;}
.w0{width:561.000000pt;}
.w1{width:561.333333pt;}
.x0{left:0.000000pt;}
.x21{left:1.047251pt;}
.x7{left:2.885122pt;}
.x26{left:17.988344pt;}
.x24{left:30.399999pt;}
.x19{left:31.585043pt;}
.x29{left:33.135186pt;}
.x20{left:34.559999pt;}
.x1f{left:35.519999pt;}
.x1e{left:37.439998pt;}
.x25{left:39.359998pt;}
.x31{left:40.858318pt;}
.x2e{left:42.239998pt;}
.x2d{left:43.199998pt;}
.x2c{left:45.119998pt;}
.x5{left:56.099998pt;}
.x1a{left:62.737399pt;}
.x3{left:65.279997pt;}
.x2b{left:70.719997pt;}
.x22{left:72.319997pt;}
.x28{left:80.639997pt;}
.x32{left:83.223456pt;}
.x1{left:98.239996pt;}
.x2a{left:102.476265pt;}
.x13{left:107.793522pt;}
.x23{left:112.688009pt;}
.x8{left:116.024084pt;}
.x2{left:117.856390pt;}
.xd{left:126.300574pt;}
.xf{left:129.627158pt;}
.x17{left:135.177980pt;}
.xc{left:136.748860pt;}
.x12{left:137.779632pt;}
.x16{left:141.823270pt;}
.x15{left:143.417646pt;}
.xa{left:144.635831pt;}
.x34{left:157.070114pt;}
.x18{left:160.103934pt;}
.x14{left:163.330297pt;}
.x9{left:164.860838pt;}
.x11{left:168.203040pt;}
.x4{left:170.329016pt;}
.xe{left:174.012849pt;}
.x35{left:181.970576pt;}
.x10{left:189.162082pt;}
.xb{left:196.596138pt;}
.x33{left:198.676485pt;}
.x27{left:209.362367pt;}
.x6{left:216.319991pt;}
.x1d{left:281.649080pt;}
.x30{left:283.519988pt;}
.x1c{left:284.928811pt;}
.x2f{left:311.039987pt;}
.x1b{left:313.023699pt;}
}




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