
    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_2ff4e2d762591fb132b68c48.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_ef7ea7f768dac05520f573f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.192000;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_7ba8e0dde63c7430cb594702.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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_f12fbaa5e242a400b7d8b6f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858000;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_0cdfb873472321f9ce02df98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.748000;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_da6ec4f5b4fe0c5bee6d05df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983887;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_6590b023b7f82f1b7f340701.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_4875dd5227732bbf490a8ad9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.915039;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_925c3199ca33c2cdfd5c33cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984863;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_aee9d5ddd9456fb298c03419.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_487bf2dbd503444127dfe078.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0247e91976814027829f3a76.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_036832df329d518dc860a6d1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8bbd1afdf75d10e6c7f63e65.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.929688;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_6d771977e5535170448c4351.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.330566;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_f6357497e75f09db710180d8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.677734;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_02d21408591d3e1762fb320e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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;}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,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);}
.m6{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.039360px;}
.ls3{letter-spacing:0.056880px;}
.ls5{letter-spacing:0.072720px;}
.ls2{letter-spacing:0.078052px;}
.ls6{letter-spacing:0.273181px;}
.ls1{letter-spacing:1.017480px;}
.ls8{letter-spacing:18.169644px;}
.ls7{letter-spacing:30.297360px;}
.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;}
}
.ws0{word-spacing:-86.974334px;}
.wsa{word-spacing:-26.621280px;}
.ws1{word-spacing:-24.553142px;}
.ws3{word-spacing:-19.077112px;}
.ws6{word-spacing:-17.210873px;}
.ws9{word-spacing:-15.812640px;}
.ws4{word-spacing:-15.551994px;}
.wsc{word-spacing:-14.220000px;}
.ws5{word-spacing:-13.499995px;}
.ws8{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.410715px;}
.wse{word-spacing:-11.609280px;}
.wsb{word-spacing:-9.000000px;}
.wsd{word-spacing:-7.606080px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-95.876773px;}
._7{margin-left:-94.298351px;}
._12{margin-left:-91.059007px;}
._6{margin-left:-34.654788px;}
._11{margin-left:-31.123648px;}
._10{margin-left:-29.563433px;}
._9{margin-left:-27.984935px;}
._8{margin-left:-17.641957px;}
._a{margin-left:-14.115810px;}
._3{margin-left:-10.909828px;}
._1e{margin-left:-9.245971px;}
._4{margin-left:-7.808188px;}
._1{margin-left:-3.824824px;}
._1b{margin-left:-2.411587px;}
._0{margin-left:-1.323982px;}
._2{width:1.578517px;}
._f{width:2.597844px;}
._b{width:4.314388px;}
._e{width:5.490162px;}
._c{width:6.568323px;}
._16{width:7.993139px;}
._19{width:9.047357px;}
._13{width:10.451788px;}
._14{width:11.527312px;}
._1d{width:13.025520px;}
._15{width:15.403705px;}
._17{width:16.717124px;}
._1c{width:17.869067px;}
._1a{width:18.941040px;}
._1f{width:20.003477px;}
._5{width:23.069846px;}
._18{width:38.886301px;}
.fca{color:rgb(146,208,80);}
.fc9{color:rgb(101,154,0);}
.fc8{color:rgb(101,154,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(101,153,0);}
.fc7{color:rgb(38,38,38);}
.fc6{color:rgb(32,32,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs18{font-size:27.360000px;}
.fsc{font-size:35.999986px;}
.fs11{font-size:36.000000px;}
.fs19{font-size:41.760000px;}
.fs17{font-size:48.000000px;}
.fsd{font-size:48.239981px;}
.fs10{font-size:48.240000px;}
.fsb{font-size:53.999978px;}
.fs12{font-size:56.880000px;}
.fse{font-size:59.759976px;}
.fs7{font-size:65.998174px;}
.fs3{font-size:65.999374px;}
.fsa{font-size:66.239974px;}
.fs16{font-size:66.240000px;}
.fs2{font-size:71.998171px;}
.fsf{font-size:71.999971px;}
.fs9{font-size:85.253966px;}
.fs15{font-size:95.760000px;}
.fs6{font-size:95.997562px;}
.fs13{font-size:108.000000px;}
.fs4{font-size:122.934551px;}
.fs14{font-size:126.000000px;}
.fs5{font-size:143.996342px;}
.fs1{font-size:215.996314px;}
.fs8{font-size:287.994485px;}
.fs0{font-size:884.987646px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.682734px;}
.yc1{bottom:3.900000px;}
.y17{bottom:23.902040px;}
.yc0{bottom:53.999963px;}
.y16{bottom:100.421660px;}
.y64{bottom:119.279952px;}
.y63{bottom:134.399946px;}
.yfd{bottom:134.759700px;}
.ybf{bottom:144.659850px;}
.y15{bottom:147.254941px;}
.y62{bottom:149.699940px;}
.yfc{bottom:150.779700px;}
.ybe{bottom:160.679850px;}
.y61{bottom:164.819934px;}
.yfb{bottom:166.799700px;}
.y14{bottom:174.066530px;}
.ybd{bottom:176.699850px;}
.y60{bottom:179.939928px;}
.yfa{bottom:182.999700px;}
.ybc{bottom:192.719850px;}
.y5f{bottom:194.879922px;}
.y5e{bottom:195.239922px;}
.yf9{bottom:199.019700px;}
.y13{bottom:203.419869px;}
.ybb{bottom:208.739850px;}
.y5d{bottom:210.179916px;}
.y5c{bottom:210.539916px;}
.yf8{bottom:215.039700px;}
.yba{bottom:224.759850px;}
.y5b{bottom:226.919909px;}
.yf7{bottom:231.059700px;}
.yb9{bottom:240.779850px;}
.y5a{bottom:242.039903px;}
.y12{bottom:243.637253px;}
.yf6{bottom:247.079700px;}
.yb8{bottom:256.799850px;}
.y59{bottom:259.499896px;}
.yf5{bottom:263.099700px;}
.yb7{bottom:272.819850px;}
.y58{bottom:274.799890px;}
.yf4{bottom:279.119700px;}
.y11{bottom:283.853886px;}
.yb6{bottom:288.839850px;}
.y57{bottom:289.919884px;}
.yf3{bottom:295.139700px;}
.yb5{bottom:304.859850px;}
.y56{bottom:305.219878px;}
.yf2{bottom:311.159700px;}
.y55{bottom:320.339872px;}
.yb4{bottom:320.879850px;}
.yf1{bottom:327.179700px;}
.y54{bottom:334.019866px;}
.yb3{bottom:337.079850px;}
.yf0{bottom:343.199700px;}
.y53{bottom:345.899862px;}
.yb2{bottom:353.099850px;}
.yef{bottom:359.219700px;}
.y52{bottom:361.019856px;}
.yb1{bottom:369.119850px;}
.yee{bottom:375.239700px;}
.y51{bottom:376.319849px;}
.yb0{bottom:385.139850px;}
.yed{bottom:391.259700px;}
.y50{bottom:391.439843px;}
.yaf{bottom:401.159850px;}
.y4f{bottom:406.559837px;}
.yec{bottom:407.279700px;}
.yae{bottom:417.179850px;}
.y4e{bottom:421.859831px;}
.yeb{bottom:423.299700px;}
.yad{bottom:433.199850px;}
.y4d{bottom:439.319824px;}
.yea{bottom:439.499700px;}
.y1b{bottom:439.892824px;}
.yac{bottom:449.219850px;}
.y4c{bottom:454.439818px;}
.ye9{bottom:455.519700px;}
.y1a{bottom:460.023266px;}
.yab{bottom:465.239850px;}
.y4b{bottom:469.559812px;}
.ye8{bottom:471.539700px;}
.yaa{bottom:481.259850px;}
.y4a{bottom:484.859806px;}
.ye7{bottom:487.559700px;}
.ya9{bottom:497.279700px;}
.y49{bottom:499.979800px;}
.y19{bottom:503.174799px;}
.ye6{bottom:503.579700px;}
.y48{bottom:515.279794px;}
.ya8{bottom:516.359700px;}
.ye5{bottom:519.599700px;}
.y47{bottom:530.399788px;}
.ya7{bottom:535.259700px;}
.ye4{bottom:535.619700px;}
.y46{bottom:545.519782px;}
.ye3{bottom:551.639700px;}
.ya6{bottom:554.339700px;}
.y45{bottom:560.819776px;}
.ye2{bottom:567.659700px;}
.ya5{bottom:573.239700px;}
.y44{bottom:575.939770px;}
.ye1{bottom:583.679700px;}
.y43{bottom:591.059764px;}
.ya4{bottom:592.319700px;}
.ye0{bottom:599.699700px;}
.yf{bottom:605.340958px;}
.y112{bottom:605.459700px;}
.y42{bottom:606.359757px;}
.ya3{bottom:611.039700px;}
.ydf{bottom:615.719700px;}
.y111{bottom:617.519700px;}
.y41{bottom:621.479751px;}
.y9{bottom:625.473350px;}
.ya2{bottom:630.119700px;}
.yde{bottom:631.739700px;}
.y110{bottom:634.799700px;}
.y40{bottom:636.779745px;}
.y10f{bottom:641.639700px;}
.y8{bottom:647.049491px;}
.ydd{bottom:647.759700px;}
.ya1{bottom:649.019700px;}
.y3f{bottom:651.899739px;}
.y10e{bottom:653.699700px;}
.ydc{bottom:663.779700px;}
.y10d{bottom:665.759700px;}
.y3e{bottom:667.019733px;}
.ya0{bottom:667.919700px;}
.y10c{bottom:677.819700px;}
.ydb{bottom:679.799700px;}
.y3d{bottom:682.319727px;}
.y9f{bottom:686.999700px;}
.ye{bottom:688.048825px;}
.y10b{bottom:695.099700px;}
.yda{bottom:695.999700px;}
.y3c{bottom:697.439721px;}
.y10a{bottom:702.119700px;}
.y9e{bottom:707.699700px;}
.y7{bottom:708.181217px;}
.yd9{bottom:712.019700px;}
.y3b{bottom:712.559715px;}
.y109{bottom:714.179700px;}
.y108{bottom:726.239700px;}
.y3a{bottom:727.859709px;}
.yd8{bottom:728.039700px;}
.y9d{bottom:735.239700px;}
.y39{bottom:742.979703px;}
.y107{bottom:743.519700px;}
.yd7{bottom:744.059700px;}
.yd{bottom:749.181300px;}
.y106{bottom:750.359700px;}
.y38{bottom:758.279697px;}
.yd6{bottom:760.079700px;}
.y105{bottom:762.419700px;}
.y9c{bottom:763.679700px;}
.y8b{bottom:765.839694px;}
.y6{bottom:769.313692px;}
.y37{bottom:773.399691px;}
.yd5{bottom:776.099550px;}
.y104{bottom:779.699700px;}
.y8a{bottom:786.539685px;}
.y36{bottom:788.519685px;}
.y103{bottom:788.879700px;}
.yd4{bottom:792.119550px;}
.y9b{bottom:794.639700px;}
.y35{bottom:803.819678px;}
.y89{bottom:807.239677px;}
.yd3{bottom:808.139550px;}
.y102{bottom:808.139700px;}
.yc{bottom:810.313026px;}
.y34{bottom:818.939672px;}
.yd2{bottom:824.159550px;}
.y101{bottom:824.159700px;}
.y9a{bottom:825.779700px;}
.y75{bottom:827.759669px;}
.y88{bottom:827.939669px;}
.y5{bottom:830.445418px;}
.y33{bottom:834.059666px;}
.yd1{bottom:840.179550px;}
.y100{bottom:840.179700px;}
.y87{bottom:848.639661px;}
.y32{bottom:849.359660px;}
.yd0{bottom:856.199550px;}
.yff{bottom:856.199700px;}
.y99{bottom:856.739700px;}
.y74{bottom:860.519656px;}
.y31{bottom:864.479654px;}
.y86{bottom:869.339652px;}
.yb{bottom:871.444751px;}
.ycf{bottom:872.219550px;}
.yfe{bottom:872.219700px;}
.y30{bottom:879.779648px;}
.y73{bottom:883.379647px;}
.y98{bottom:887.879700px;}
.yce{bottom:888.239550px;}
.y85{bottom:890.039644px;}
.y4{bottom:891.577143px;}
.y2f{bottom:894.899642px;}
.ycd{bottom:904.259550px;}
.y72{bottom:906.059638px;}
.y2e{bottom:910.019636px;}
.y84{bottom:910.739636px;}
.y97{bottom:915.959550px;}
.ycc{bottom:920.279550px;}
.y2d{bottom:925.319630px;}
.y71{bottom:928.739629px;}
.y83{bottom:931.439627px;}
.y96{bottom:932.339550px;}
.ya{bottom:932.577227px;}
.ycb{bottom:936.299550px;}
.y2c{bottom:940.259624px;}
.y2b{bottom:940.619624px;}
.y95{bottom:948.719550px;}
.y70{bottom:951.419619px;}
.y82{bottom:952.139619px;}
.yca{bottom:952.499550px;}
.y3{bottom:952.709619px;}
.y2a{bottom:956.819617px;}
.y29{bottom:957.179617px;}
.y94{bottom:964.919550px;}
.yc9{bottom:968.519550px;}
.y81{bottom:972.839611px;}
.y28{bottom:973.559611px;}
.y6f{bottom:973.919610px;}
.y6e{bottom:974.279610px;}
.y93{bottom:981.299550px;}
.yc8{bottom:984.539550px;}
.y27{bottom:988.679605px;}
.y80{bottom:993.539603px;}
.y92{bottom:997.679550px;}
.yc7{bottom:1000.559550px;}
.y26{bottom:1003.979598px;}
.y6d{bottom:1011.359595px;}
.y91{bottom:1014.059550px;}
.y7f{bottom:1014.239594px;}
.yc6{bottom:1016.579550px;}
.y25{bottom:1019.099592px;}
.y10{bottom:1025.741290px;}
.y1{bottom:1029.572588px;}
.y90{bottom:1030.439550px;}
.y6c{bottom:1032.239587px;}
.yc5{bottom:1032.599550px;}
.y24{bottom:1034.219586px;}
.y7e{bottom:1034.939586px;}
.y8f{bottom:1046.999550px;}
.yc4{bottom:1048.619550px;}
.y23{bottom:1049.519580px;}
.y6b{bottom:1052.939579px;}
.y7d{bottom:1055.639578px;}
.y8e{bottom:1063.379550px;}
.yc3{bottom:1064.639550px;}
.y22{bottom:1064.639574px;}
.y6a{bottom:1073.639571px;}
.y7c{bottom:1076.339569px;}
.y8d{bottom:1079.759550px;}
.y21{bottom:1079.939568px;}
.yc2{bottom:1080.659550px;}
.y69{bottom:1094.159562px;}
.y20{bottom:1095.059562px;}
.y7b{bottom:1097.039561px;}
.y1f{bottom:1110.179556px;}
.y68{bottom:1114.499554px;}
.y67{bottom:1114.859554px;}
.y7a{bottom:1117.739553px;}
.y1e{bottom:1125.479550px;}
.y66{bottom:1131.959547px;}
.y79{bottom:1138.439545px;}
.y1d{bottom:1140.779544px;}
.y1c{bottom:1141.139544px;}
.y65{bottom:1145.819542px;}
.y78{bottom:1159.139536px;}
.y77{bottom:1179.839528px;}
.y76{bottom:1199.099520px;}
.y8c{bottom:1199.099550px;}
.y2{bottom:1217.942513px;}
.h1f{height:15.971960px;}
.h23{height:28.535625px;}
.hf{height:35.991197px;}
.h10{height:37.546860px;}
.he{height:37.599594px;}
.h11{height:37.600794px;}
.h1e{height:37.910742px;}
.hd{height:41.370101px;}
.h24{height:43.554375px;}
.h22{height:44.149219px;}
.h13{height:45.782911px;}
.h8{height:47.254692px;}
.h20{height:48.281250px;}
.h12{height:50.312792px;}
.h17{height:50.312812px;}
.hb{height:50.554601px;}
.h4{height:50.555520px;}
.hc{height:50.747323px;}
.h14{height:50.812011px;}
.h18{height:59.324063px;}
.h19{height:59.324662px;}
.h15{height:62.327788px;}
.ha{height:65.304538px;}
.h1d{height:69.086250px;}
.h21{height:69.086850px;}
.h3{height:69.334239px;}
.h7{height:69.886225px;}
.h16{height:70.664034px;}
.h5{height:94.167866px;}
.h1c{height:99.874688px;}
.h6{height:104.829337px;}
.h1a{height:112.640625px;}
.h1b{height:131.414062px;}
.h2{height:165.453176px;}
.h9{height:220.603775px;}
.h1{height:677.900537px;}
.h0{height:1263.000000px;}
.w1{width:6.672001px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:84.959966px;}
.x1b{left:127.979949px;}
.x1e{left:134.999945px;}
.x1c{left:136.979945px;}
.x30{left:138.060501px;}
.x2e{left:148.862247px;}
.x1f{left:158.939936px;}
.x1d{left:160.919936px;}
.x23{left:162.358768px;}
.x4{left:172.885431px;}
.x25{left:184.499541px;}
.x27{left:187.559825px;}
.x29{left:199.979920px;}
.x14{left:243.146003px;}
.x2a{left:247.499901px;}
.x15{left:253.785693px;}
.x1a{left:307.277877px;}
.xe{left:311.096711px;}
.x28{left:312.659875px;}
.x6{left:331.861367px;}
.x9{left:357.255892px;}
.x8{left:371.131352px;}
.x3{left:382.912347px;}
.xc{left:383.918681px;}
.x16{left:394.369342px;}
.x21{left:400.679287px;}
.xa{left:405.154173px;}
.x11{left:414.364334px;}
.x19{left:421.997381px;}
.x10{left:424.198165px;}
.x18{left:428.474829px;}
.x22{left:446.399306px;}
.x13{left:468.309413px;}
.x24{left:476.279809px;}
.x20{left:520.739944px;}
.x7{left:527.815289px;}
.x1{left:531.808287px;}
.x12{left:536.281885px;}
.xf{left:567.758608px;}
.x5{left:592.441263px;}
.x2{left:618.812752px;}
.x17{left:627.688249px;}
.xb{left:654.514073px;}
.xd{left:657.863572px;}
.x2f{left:687.057136px;}
.x2b{left:701.099720px;}
.x26{left:708.659717px;}
.x2d{left:761.628704px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034987pt;}
.ls3{letter-spacing:0.050560pt;}
.ls5{letter-spacing:0.064640pt;}
.ls2{letter-spacing:0.069379pt;}
.ls6{letter-spacing:0.242827pt;}
.ls1{letter-spacing:0.904426pt;}
.ls8{letter-spacing:16.150795pt;}
.ls7{letter-spacing:26.930987pt;}
.ws0{word-spacing:-77.310519pt;}
.wsa{word-spacing:-23.663360pt;}
.ws1{word-spacing:-21.825015pt;}
.ws3{word-spacing:-16.957433pt;}
.ws6{word-spacing:-15.298554pt;}
.ws9{word-spacing:-14.055680pt;}
.ws4{word-spacing:-13.823994pt;}
.wsc{word-spacing:-12.640000pt;}
.ws5{word-spacing:-11.999995pt;}
.ws8{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.920635pt;}
.wse{word-spacing:-10.319360pt;}
.wsb{word-spacing:-8.000000pt;}
.wsd{word-spacing:-6.760960pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-85.223799pt;}
._7{margin-left:-83.820756pt;}
._12{margin-left:-80.941340pt;}
._6{margin-left:-30.804256pt;}
._11{margin-left:-27.665464pt;}
._10{margin-left:-26.278607pt;}
._9{margin-left:-24.875498pt;}
._8{margin-left:-15.681740pt;}
._a{margin-left:-12.547387pt;}
._3{margin-left:-9.697625pt;}
._1e{margin-left:-8.218641pt;}
._4{margin-left:-6.940611pt;}
._1{margin-left:-3.399843pt;}
._1b{margin-left:-2.143633pt;}
._0{margin-left:-1.176873pt;}
._2{width:1.403126pt;}
._f{width:2.309195pt;}
._b{width:3.835011pt;}
._e{width:4.880144pt;}
._c{width:5.838509pt;}
._16{width:7.105012pt;}
._19{width:8.042095pt;}
._13{width:9.290478pt;}
._14{width:10.246499pt;}
._1d{width:11.578240pt;}
._15{width:13.692182pt;}
._17{width:14.859666pt;}
._1c{width:15.883615pt;}
._1a{width:16.836480pt;}
._1f{width:17.780869pt;}
._5{width:20.506530pt;}
._18{width:34.565601pt;}
.fs18{font-size:24.320000pt;}
.fsc{font-size:31.999987pt;}
.fs11{font-size:32.000000pt;}
.fs19{font-size:37.120000pt;}
.fs17{font-size:42.666667pt;}
.fsd{font-size:42.879983pt;}
.fs10{font-size:42.880000pt;}
.fsb{font-size:47.999981pt;}
.fs12{font-size:50.560000pt;}
.fse{font-size:53.119979pt;}
.fs7{font-size:58.665043pt;}
.fs3{font-size:58.666110pt;}
.fsa{font-size:58.879976pt;}
.fs16{font-size:58.880000pt;}
.fs2{font-size:63.998374pt;}
.fsf{font-size:63.999974pt;}
.fs9{font-size:75.781303pt;}
.fs15{font-size:85.120000pt;}
.fs6{font-size:85.331166pt;}
.fs13{font-size:96.000000pt;}
.fs4{font-size:109.275156pt;}
.fs14{font-size:112.000000pt;}
.fs5{font-size:127.996749pt;}
.fs1{font-size:191.996723pt;}
.fs8{font-size:255.995098pt;}
.fs0{font-size:786.655685pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.606874pt;}
.yc1{bottom:3.466667pt;}
.y17{bottom:21.246258pt;}
.yc0{bottom:47.999967pt;}
.y16{bottom:89.263698pt;}
.y64{bottom:106.026624pt;}
.y63{bottom:119.466619pt;}
.yfd{bottom:119.786400pt;}
.ybf{bottom:128.586533pt;}
.y15{bottom:130.893281pt;}
.y62{bottom:133.066613pt;}
.yfc{bottom:134.026400pt;}
.ybe{bottom:142.826533pt;}
.y61{bottom:146.506608pt;}
.yfb{bottom:148.266400pt;}
.y14{bottom:154.725805pt;}
.ybd{bottom:157.066533pt;}
.y60{bottom:159.946603pt;}
.yfa{bottom:162.666400pt;}
.ybc{bottom:171.306533pt;}
.y5f{bottom:173.226597pt;}
.y5e{bottom:173.546597pt;}
.yf9{bottom:176.906400pt;}
.y13{bottom:180.817661pt;}
.ybb{bottom:185.546533pt;}
.y5d{bottom:186.826592pt;}
.y5c{bottom:187.146592pt;}
.yf8{bottom:191.146400pt;}
.yba{bottom:199.786533pt;}
.y5b{bottom:201.706586pt;}
.yf7{bottom:205.386400pt;}
.yb9{bottom:214.026533pt;}
.y5a{bottom:215.146581pt;}
.y12{bottom:216.566447pt;}
.yf6{bottom:219.626400pt;}
.yb8{bottom:228.266533pt;}
.y59{bottom:230.666574pt;}
.yf5{bottom:233.866400pt;}
.yb7{bottom:242.506533pt;}
.y58{bottom:244.266569pt;}
.yf4{bottom:248.106400pt;}
.y11{bottom:252.314566pt;}
.yb6{bottom:256.746533pt;}
.y57{bottom:257.706564pt;}
.yf3{bottom:262.346400pt;}
.yb5{bottom:270.986533pt;}
.y56{bottom:271.306558pt;}
.yf2{bottom:276.586400pt;}
.y55{bottom:284.746553pt;}
.yb4{bottom:285.226533pt;}
.yf1{bottom:290.826400pt;}
.y54{bottom:296.906548pt;}
.yb3{bottom:299.626533pt;}
.yf0{bottom:305.066400pt;}
.y53{bottom:307.466544pt;}
.yb2{bottom:313.866533pt;}
.yef{bottom:319.306400pt;}
.y52{bottom:320.906538pt;}
.yb1{bottom:328.106533pt;}
.yee{bottom:333.546400pt;}
.y51{bottom:334.506533pt;}
.yb0{bottom:342.346533pt;}
.yed{bottom:347.786400pt;}
.y50{bottom:347.946527pt;}
.yaf{bottom:356.586533pt;}
.y4f{bottom:361.386522pt;}
.yec{bottom:362.026400pt;}
.yae{bottom:370.826533pt;}
.y4e{bottom:374.986517pt;}
.yeb{bottom:376.266400pt;}
.yad{bottom:385.066533pt;}
.y4d{bottom:390.506510pt;}
.yea{bottom:390.666400pt;}
.y1b{bottom:391.015844pt;}
.yac{bottom:399.306533pt;}
.y4c{bottom:403.946505pt;}
.ye9{bottom:404.906400pt;}
.y1a{bottom:408.909570pt;}
.yab{bottom:413.546533pt;}
.y4b{bottom:417.386500pt;}
.ye8{bottom:419.146400pt;}
.yaa{bottom:427.786533pt;}
.y4a{bottom:430.986494pt;}
.ye7{bottom:433.386400pt;}
.ya9{bottom:442.026400pt;}
.y49{bottom:444.426489pt;}
.y19{bottom:447.266488pt;}
.ye6{bottom:447.626400pt;}
.y48{bottom:458.026483pt;}
.ya8{bottom:458.986400pt;}
.ye5{bottom:461.866400pt;}
.y47{bottom:471.466478pt;}
.ya7{bottom:475.786400pt;}
.ye4{bottom:476.106400pt;}
.y46{bottom:484.906473pt;}
.ye3{bottom:490.346400pt;}
.ya6{bottom:492.746400pt;}
.y45{bottom:498.506467pt;}
.ye2{bottom:504.586400pt;}
.ya5{bottom:509.546400pt;}
.y44{bottom:511.946462pt;}
.ye1{bottom:518.826400pt;}
.y43{bottom:525.386457pt;}
.ya4{bottom:526.506400pt;}
.ye0{bottom:533.066400pt;}
.yf{bottom:538.080851pt;}
.y112{bottom:538.186400pt;}
.y42{bottom:538.986451pt;}
.ya3{bottom:543.146400pt;}
.ydf{bottom:547.306400pt;}
.y111{bottom:548.906400pt;}
.y41{bottom:552.426446pt;}
.y9{bottom:555.976311pt;}
.ya2{bottom:560.106400pt;}
.yde{bottom:561.546400pt;}
.y110{bottom:564.266400pt;}
.y40{bottom:566.026440pt;}
.y10f{bottom:570.346400pt;}
.y8{bottom:575.155103pt;}
.ydd{bottom:575.786400pt;}
.ya1{bottom:576.906400pt;}
.y3f{bottom:579.466435pt;}
.y10e{bottom:581.066400pt;}
.ydc{bottom:590.026400pt;}
.y10d{bottom:591.786400pt;}
.y3e{bottom:592.906430pt;}
.ya0{bottom:593.706400pt;}
.y10c{bottom:602.506400pt;}
.ydb{bottom:604.266400pt;}
.y3d{bottom:606.506424pt;}
.y9f{bottom:610.666400pt;}
.ye{bottom:611.598955pt;}
.y10b{bottom:617.866400pt;}
.yda{bottom:618.666400pt;}
.y3c{bottom:619.946419pt;}
.y10a{bottom:624.106400pt;}
.y9e{bottom:629.066400pt;}
.y7{bottom:629.494415pt;}
.yd9{bottom:632.906400pt;}
.y3b{bottom:633.386413pt;}
.y109{bottom:634.826400pt;}
.y108{bottom:645.546400pt;}
.y3a{bottom:646.986408pt;}
.yd8{bottom:647.146400pt;}
.y9d{bottom:653.546400pt;}
.y39{bottom:660.426402pt;}
.y107{bottom:660.906400pt;}
.yd7{bottom:661.386400pt;}
.yd{bottom:665.938934pt;}
.y106{bottom:666.986400pt;}
.y38{bottom:674.026397pt;}
.yd6{bottom:675.626400pt;}
.y105{bottom:677.706400pt;}
.y9c{bottom:678.826400pt;}
.y8b{bottom:680.746394pt;}
.y6{bottom:683.834393pt;}
.y37{bottom:687.466392pt;}
.yd5{bottom:689.866267pt;}
.y104{bottom:693.066400pt;}
.y8a{bottom:699.146387pt;}
.y36{bottom:700.906386pt;}
.y103{bottom:701.226400pt;}
.yd4{bottom:704.106267pt;}
.y9b{bottom:706.346400pt;}
.y35{bottom:714.506381pt;}
.y89{bottom:717.546380pt;}
.yd3{bottom:718.346267pt;}
.y102{bottom:718.346400pt;}
.yc{bottom:720.278245pt;}
.y34{bottom:727.946375pt;}
.yd2{bottom:732.586267pt;}
.y101{bottom:732.586400pt;}
.y9a{bottom:734.026400pt;}
.y75{bottom:735.786372pt;}
.y88{bottom:735.946372pt;}
.y5{bottom:738.173705pt;}
.y33{bottom:741.386370pt;}
.yd1{bottom:746.826267pt;}
.y100{bottom:746.826400pt;}
.y87{bottom:754.346365pt;}
.y32{bottom:754.986365pt;}
.yd0{bottom:761.066267pt;}
.yff{bottom:761.066400pt;}
.y99{bottom:761.546400pt;}
.y74{bottom:764.906361pt;}
.y31{bottom:768.426359pt;}
.y86{bottom:772.746358pt;}
.yb{bottom:774.617557pt;}
.ycf{bottom:775.306267pt;}
.yfe{bottom:775.306400pt;}
.y30{bottom:782.026354pt;}
.y73{bottom:785.226353pt;}
.y98{bottom:789.226400pt;}
.yce{bottom:789.546267pt;}
.y85{bottom:791.146350pt;}
.y4{bottom:792.513016pt;}
.y2f{bottom:795.466348pt;}
.ycd{bottom:803.786267pt;}
.y72{bottom:805.386345pt;}
.y2e{bottom:808.906343pt;}
.y84{bottom:809.546343pt;}
.y97{bottom:814.186267pt;}
.ycc{bottom:818.026267pt;}
.y2d{bottom:822.506338pt;}
.y71{bottom:825.546336pt;}
.y83{bottom:827.946335pt;}
.y96{bottom:828.746267pt;}
.ya{bottom:828.957535pt;}
.ycb{bottom:832.266267pt;}
.y2c{bottom:835.786332pt;}
.y2b{bottom:836.106332pt;}
.y95{bottom:843.306267pt;}
.y70{bottom:845.706328pt;}
.y82{bottom:846.346328pt;}
.yca{bottom:846.666267pt;}
.y3{bottom:846.852995pt;}
.y2a{bottom:850.506326pt;}
.y29{bottom:850.826326pt;}
.y94{bottom:857.706267pt;}
.yc9{bottom:860.906267pt;}
.y81{bottom:864.746321pt;}
.y28{bottom:865.386321pt;}
.y6f{bottom:865.706320pt;}
.y6e{bottom:866.026320pt;}
.y93{bottom:872.266267pt;}
.yc8{bottom:875.146267pt;}
.y27{bottom:878.826315pt;}
.y80{bottom:883.146313pt;}
.y92{bottom:886.826267pt;}
.yc7{bottom:889.386267pt;}
.y26{bottom:892.426310pt;}
.y6d{bottom:898.986307pt;}
.y91{bottom:901.386267pt;}
.y7f{bottom:901.546306pt;}
.yc6{bottom:903.626267pt;}
.y25{bottom:905.866304pt;}
.y10{bottom:911.770035pt;}
.y1{bottom:915.175634pt;}
.y90{bottom:915.946267pt;}
.y6c{bottom:917.546300pt;}
.yc5{bottom:917.866267pt;}
.y24{bottom:919.306299pt;}
.y7e{bottom:919.946299pt;}
.y8f{bottom:930.666267pt;}
.yc4{bottom:932.106267pt;}
.y23{bottom:932.906294pt;}
.y6b{bottom:935.946292pt;}
.y7d{bottom:938.346291pt;}
.y8e{bottom:945.226267pt;}
.yc3{bottom:946.346267pt;}
.y22{bottom:946.346288pt;}
.y6a{bottom:954.346285pt;}
.y7c{bottom:956.746284pt;}
.y8d{bottom:959.786267pt;}
.y21{bottom:959.946283pt;}
.yc2{bottom:960.586267pt;}
.y69{bottom:972.586278pt;}
.y20{bottom:973.386277pt;}
.y7b{bottom:975.146277pt;}
.y1f{bottom:986.826272pt;}
.y68{bottom:990.666270pt;}
.y67{bottom:990.986270pt;}
.y7a{bottom:993.546269pt;}
.y1e{bottom:1000.426266pt;}
.y66{bottom:1006.186264pt;}
.y79{bottom:1011.946262pt;}
.y1d{bottom:1014.026261pt;}
.y1c{bottom:1014.346261pt;}
.y65{bottom:1018.506259pt;}
.y78{bottom:1030.346255pt;}
.y77{bottom:1048.746247pt;}
.y76{bottom:1065.866240pt;}
.y8c{bottom:1065.866267pt;}
.y2{bottom:1082.615567pt;}
.h1f{height:14.197298pt;}
.h23{height:25.365000pt;}
.hf{height:31.992175pt;}
.h10{height:33.374987pt;}
.he{height:33.421862pt;}
.h11{height:33.422928pt;}
.h1e{height:33.698437pt;}
.hd{height:36.773423pt;}
.h24{height:38.715000pt;}
.h22{height:39.243750pt;}
.h13{height:40.695921pt;}
.h8{height:42.004171pt;}
.h20{height:42.916667pt;}
.h12{height:44.722482pt;}
.h17{height:44.722500pt;}
.hb{height:44.937423pt;}
.h4{height:44.938240pt;}
.hc{height:45.108732pt;}
.h14{height:45.166232pt;}
.h18{height:52.732500pt;}
.h19{height:52.733033pt;}
.h15{height:55.402478pt;}
.ha{height:58.048478pt;}
.h1d{height:61.410000pt;}
.h21{height:61.410533pt;}
.h3{height:61.630435pt;}
.h7{height:62.121089pt;}
.h16{height:62.812475pt;}
.h5{height:83.704770pt;}
.h1c{height:88.777500pt;}
.h6{height:93.181633pt;}
.h1a{height:100.125000pt;}
.h1b{height:116.812500pt;}
.h2{height:147.069490pt;}
.h9{height:196.092245pt;}
.h1{height:602.578255pt;}
.h0{height:1122.666667pt;}
.w1{width:5.930667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:75.519970pt;}
.x1b{left:113.759954pt;}
.x1e{left:119.999951pt;}
.x1c{left:121.759951pt;}
.x30{left:122.720446pt;}
.x2e{left:132.321997pt;}
.x1f{left:141.279943pt;}
.x1d{left:143.039943pt;}
.x23{left:144.318905pt;}
.x4{left:153.675939pt;}
.x25{left:163.999592pt;}
.x27{left:166.719845pt;}
.x29{left:177.759929pt;}
.x14{left:216.129780pt;}
.x2a{left:219.999912pt;}
.x15{left:225.587283pt;}
.x1a{left:273.135891pt;}
.xe{left:276.530409pt;}
.x28{left:277.919889pt;}
.x6{left:294.987882pt;}
.x9{left:317.560793pt;}
.x8{left:329.894535pt;}
.x3{left:340.366531pt;}
.xc{left:341.261050pt;}
.x16{left:350.550526pt;}
.x21{left:356.159366pt;}
.xa{left:360.137043pt;}
.x11{left:368.323853pt;}
.x19{left:375.108783pt;}
.x10{left:377.065036pt;}
.x18{left:380.866514pt;}
.x22{left:396.799383pt;}
.x13{left:416.275033pt;}
.x24{left:423.359830pt;}
.x20{left:462.879950pt;}
.x7{left:469.169146pt;}
.x1{left:472.718478pt;}
.x12{left:476.695009pt;}
.xf{left:504.674318pt;}
.x5{left:526.614456pt;}
.x2{left:550.055780pt;}
.x17{left:557.945110pt;}
.xb{left:581.790287pt;}
.xd{left:584.767619pt;}
.x2f{left:610.717454pt;}
.x2b{left:623.199751pt;}
.x26{left:629.919748pt;}
.x2d{left:677.003293pt;}
}




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