
    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_61dd1d38a05172f6274ad19a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4bf9c8d4d2318a798f551e86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_0e468d31718ea4fb7ed1842f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_22c10f068dced148534465e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_e24b2c2e496fc265171c41f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_afa137b30b129564f57f3532.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_4115332e28cb6e60ebc93647.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_7e1c8d594810e2f8ffa94dc1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_99e647a4cc39c58249b8cc1b.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_444ce0eb42bfb77f930bb877.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_100782585a8d410832c50e7e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_d014242fc880ac609f15b874.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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.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);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-7.919997px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.094934px;}
.ls8{letter-spacing:0.237796px;}
.ls6{letter-spacing:33.295427px;}
.ls5{letter-spacing:310.289396px;}
.ls3{letter-spacing:336.224386px;}
.ls4{letter-spacing:966.584733px;}
.ls7{letter-spacing:1554.253989px;}
.ls0{letter-spacing:1572.264608px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-45.885778px;}
.ws7{word-spacing:-35.855986px;}
.ws2{word-spacing:-32.418587px;}
.ws8{word-spacing:-19.871992px;}
.wsb{word-spacing:-19.822926px;}
.ws9{word-spacing:-19.799992px;}
.ws6{word-spacing:-19.727992px;}
.ws5{word-spacing:-19.077112px;}
.ws1{word-spacing:-15.011994px;}
.ws0{word-spacing:-13.505755px;}
.ws3{word-spacing:-13.314235px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-5.497353px;}
._13{margin-left:-4.361382px;}
._2{margin-left:-3.195112px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._a{width:2.310731px;}
._7{width:3.846488px;}
._d{width:5.066253px;}
._9{width:6.655072px;}
._b{width:7.785937px;}
._3{width:8.841252px;}
._4{width:10.042566px;}
._c{width:11.573919px;}
._15{width:13.322317px;}
._14{width:14.465906px;}
._6{width:15.505619px;}
._5{width:16.664156px;}
._8{width:17.689345px;}
._33{width:18.689981px;}
._10{width:19.699628px;}
._16{width:21.376437px;}
._19{width:22.444266px;}
._f{width:23.537178px;}
._e{width:24.960711px;}
._27{width:26.132497px;}
._21{width:27.287124px;}
._20{width:28.975344px;}
._1c{width:30.186318px;}
._1d{width:31.203734px;}
._1a{width:32.752175px;}
._32{width:34.074609px;}
._26{width:35.903130px;}
._25{width:36.971774px;}
._29{width:38.412822px;}
._28{width:39.439707px;}
._2f{width:41.360560px;}
._1f{width:42.865094px;}
._1e{width:44.010874px;}
._2c{width:45.104093px;}
._2d{width:46.193459px;}
._2e{width:47.509309px;}
._30{width:53.410178px;}
._31{width:54.482404px;}
._17{width:57.189906px;}
._23{width:59.226549px;}
._12{width:74.629571px;}
._11{width:79.947307px;}
._22{width:105.494291px;}
._2b{width:146.592386px;}
._1b{width:362.482573px;}
._24{width:406.650149px;}
._2a{width:436.026387px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(15,17,21);}
.fc7{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fcd{color:transparent;}
.fc8{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(0,101,204);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs7{font-size:69.119972px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs6{font-size:89.999964px;}
.fs5{font-size:99.359960px;}
.y6{bottom:-10.979990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y2a{bottom:3.059105px;}
.yab{bottom:3.599010px;}
.yb4{bottom:3.599032px;}
.ybb{bottom:3.599078px;}
.ya1{bottom:4.138985px;}
.y84{bottom:4.139154px;}
.y8f{bottom:4.139245px;}
.y9a{bottom:4.139695px;}
.ya7{bottom:4.319030px;}
.y77{bottom:4.319064px;}
.yb0{bottom:4.319076px;}
.yb7{bottom:4.319099px;}
.ya9{bottom:4.499010px;}
.yb2{bottom:4.499032px;}
.y79{bottom:4.499053px;}
.yb9{bottom:4.499078px;}
.y1b{bottom:4.859091px;}
.y11f{bottom:4.860038px;}
.y17{bottom:5.579091px;}
.ya{bottom:33.240287px;}
.y11e{bottom:49.620240px;}
.y8{bottom:54.480278px;}
.y9{bottom:56.460277px;}
.y70{bottom:129.719948px;}
.y10a{bottom:132.059947px;}
.y134{bottom:136.919945px;}
.yce{bottom:138.719945px;}
.ye3{bottom:141.059944px;}
.y11d{bottom:143.219943px;}
.yf4{bottom:147.719941px;}
.y52{bottom:155.459938px;}
.y133{bottom:157.979937px;}
.y99{bottom:158.340240px;}
.y6f{bottom:161.219936px;}
.y109{bottom:163.559935px;}
.yca{bottom:170.219932px;}
.ye2{bottom:172.559931px;}
.y51{bottom:173.639931px;}
.y11c{bottom:174.719930px;}
.yf3{bottom:179.219928px;}
.ycd{bottom:188.219925px;}
.y27{bottom:189.299924px;}
.y98{bottom:190.559924px;}
.y50{bottom:191.639923px;}
.y6e{bottom:192.719923px;}
.yc9{bottom:201.719919px;}
.ye1{bottom:204.059918px;}
.y11b{bottom:206.219918px;}
.y4f{bottom:209.639916px;}
.y108{bottom:213.059915px;}
.y97{bottom:218.639913px;}
.y6d{bottom:224.219910px;}
.y4e{bottom:228.359909px;}
.y132{bottom:228.719909px;}
.yf2{bottom:229.799908px;}
.yc8{bottom:233.219907px;}
.ye0{bottom:235.559906px;}
.y11a{bottom:237.719905px;}
.y107{bottom:244.559902px;}
.y96{bottom:246.899901px;}
.y6c{bottom:255.719898px;}
.y48{bottom:259.679896px;}
.y131{bottom:260.219896px;}
.yc7{bottom:264.719894px;}
.ydf{bottom:267.059893px;}
.y119{bottom:269.219892px;}
.y95{bottom:274.979890px;}
.y47{bottom:275.519890px;}
.y106{bottom:276.059890px;}
.y6b{bottom:287.219885px;}
.y46{bottom:291.539883px;}
.yc6{bottom:296.219882px;}
.yde{bottom:298.559881px;}
.y118{bottom:300.719880px;}
.y94{bottom:303.059879px;}
.y45{bottom:307.559877px;}
.y130{bottom:309.719876px;}
.y44{bottom:323.399871px;}
.ydd{bottom:330.059868px;}
.y93{bottom:331.139868px;}
.y91{bottom:331.319867px;}
.y117{bottom:332.219867px;}
.y6a{bottom:336.719865px;}
.y26{bottom:337.439865px;}
.y43{bottom:339.419864px;}
.y12f{bottom:341.219864px;}
.yc5{bottom:345.719862px;}
.y42{bottom:355.439858px;}
.y105{bottom:357.059857px;}
.y92{bottom:359.399856px;}
.y90{bottom:359.579856px;}
.y129{bottom:363.719855px;}
.y69{bottom:368.219853px;}
.y41{bottom:371.279851px;}
.yf1{bottom:379.559848px;}
.ydc{bottom:380.459848px;}
.y116{bottom:383.519847px;}
.y8e{bottom:384.060600px;}
.y40{bottom:387.299845px;}
.y104{bottom:388.559845px;}
.y12e{bottom:390.719844px;}
.yc4{bottom:395.219842px;}
.y68{bottom:399.719840px;}
.y3f{bottom:403.319839px;}
.y8d{bottom:416.279833px;}
.y3e{bottom:419.159832px;}
.yc3{bottom:426.719829px;}
.yf0{bottom:429.059828px;}
.y67{bottom:431.219828px;}
.y3d{bottom:435.179826px;}
.y103{bottom:438.059825px;}
.y12d{bottom:440.219824px;}
.y8c{bottom:444.359822px;}
.y115{bottom:449.219820px;}
.ydb{bottom:451.019820px;}
.y3c{bottom:451.199820px;}
.y25{bottom:453.899818px;}
.yc2{bottom:458.219817px;}
.yef{bottom:460.559816px;}
.y66{bottom:462.719815px;}
.y3b{bottom:467.039813px;}
.y102{bottom:469.559812px;}
.y12c{bottom:471.719811px;}
.y8b{bottom:472.619811px;}
.y3a{bottom:483.059807px;}
.yc1{bottom:489.719804px;}
.yee{bottom:492.059803px;}
.y65{bottom:494.219802px;}
.y39{bottom:499.079800px;}
.y8a{bottom:500.699800px;}
.y101{bottom:501.059800px;}
.y12b{bottom:503.219799px;}
.y24{bottom:509.159796px;}
.y38{bottom:514.919794px;}
.yc0{bottom:521.219792px;}
.y23{bottom:526.799789px;}
.y89{bottom:528.779788px;}
.y37{bottom:530.939788px;}
.y100{bottom:532.559787px;}
.y12a{bottom:534.719786px;}
.yed{bottom:541.559783px;}
.y64{bottom:543.719783px;}
.y22{bottom:544.619782px;}
.y36{bottom:546.959781px;}
.ybf{bottom:552.719779px;}
.y88{bottom:556.859777px;}
.y86{bottom:557.039777px;}
.y21{bottom:560.999776px;}
.y35{bottom:562.799775px;}
.yff{bottom:564.059774px;}
.y63{bottom:575.219770px;}
.y34{bottom:578.819768px;}
.ybe{bottom:584.219766px;}
.y87{bottom:585.119766px;}
.y85{bottom:585.299766px;}
.yec{bottom:591.059764px;}
.y33{bottom:594.839762px;}
.y62{bottom:606.719757px;}
.y83{bottom:609.780600px;}
.y32{bottom:610.679756px;}
.yfe{bottom:613.559755px;}
.y20{bottom:614.999754px;}
.yda{bottom:615.719754px;}
.yeb{bottom:622.559751px;}
.y31{bottom:626.699749px;}
.ybd{bottom:633.719747px;}
.y61{bottom:638.219745px;}
.y82{bottom:641.999743px;}
.y30{bottom:642.719743px;}
.yfd{bottom:645.059742px;}
.yd9{bottom:647.219741px;}
.yea{bottom:654.059738px;}
.y2f{bottom:658.559737px;}
.y1f{bottom:668.999732px;}
.y60{bottom:669.719732px;}
.y81{bottom:670.259732px;}
.y2e{bottom:674.579730px;}
.yfc{bottom:676.559729px;}
.yd8{bottom:678.719729px;}
.ybc{bottom:684.299726px;}
.y1e{bottom:686.999725px;}
.y2d{bottom:690.599724px;}
.y80{bottom:698.339721px;}
.y5f{bottom:701.219720px;}
.ye9{bottom:703.559719px;}
.y2c{bottom:706.439717px;}
.yfb{bottom:708.059717px;}
.yd7{bottom:710.219716px;}
.y2b{bottom:722.459711px;}
.y7f{bottom:726.419709px;}
.y5e{bottom:732.719707px;}
.y28{bottom:734.159706px;}
.y29{bottom:735.420600px;}
.y1d{bottom:738.479705px;}
.yfa{bottom:739.559704px;}
.yd6{bottom:741.719703px;}
.yb6{bottom:749.280600px;}
.ye8{bottom:753.959698px;}
.y7e{bottom:754.499698px;}
.y114{bottom:761.519695px;}
.y5d{bottom:764.219694px;}
.y16{bottom:766.200600px;}
.y1a{bottom:766.920600px;}
.yf9{bottom:771.059692px;}
.y18{bottom:771.599691px;}
.y19{bottom:771.779691px;}
.y128{bottom:773.219691px;}
.y1c{bottom:774.659690px;}
.yb5{bottom:781.679687px;}
.y7d{bottom:782.759687px;}
.y7b{bottom:782.939687px;}
.yd5{bottom:792.299683px;}
.y15{bottom:793.379683px;}
.y5c{bottom:795.719682px;}
.yb8{bottom:800.940600px;}
.yba{bottom:801.840600px;}
.y127{bottom:804.719678px;}
.yaf{bottom:806.340600px;}
.y7c{bottom:810.839676px;}
.y7a{bottom:811.019676px;}
.y14{bottom:813.359675px;}
.yf8{bottom:820.559672px;}
.ye7{bottom:822.719671px;}
.y113{bottom:831.719667px;}
.y13{bottom:833.159667px;}
.y76{bottom:835.500600px;}
.y126{bottom:836.219666px;}
.yae{bottom:838.739665px;}
.y5b{bottom:845.219662px;}
.yf7{bottom:852.059659px;}
.y12{bottom:853.139659px;}
.ye6{bottom:854.219658px;}
.yd4{bottom:861.059656px;}
.y112{bottom:863.219655px;}
.y78{bottom:863.580600px;}
.yad{bottom:866.819653px;}
.y125{bottom:867.719653px;}
.y75{bottom:868.079653px;}
.y11{bottom:873.119651px;}
.y5a{bottom:876.719649px;}
.yf6{bottom:883.559647px;}
.ye5{bottom:885.719646px;}
.yd3{bottom:892.559643px;}
.y111{bottom:894.719642px;}
.yac{bottom:895.079642px;}
.y124{bottom:899.219640px;}
.y10{bottom:902.099639px;}
.y59{bottom:908.219637px;}
.yb1{bottom:914.340600px;}
.y74{bottom:915.059634px;}
.yb3{bottom:915.240600px;}
.ya6{bottom:919.560600px;}
.yf{bottom:922.079631px;}
.yd2{bottom:924.059630px;}
.y110{bottom:926.219630px;}
.y123{bottom:930.719628px;}
.ye4{bottom:936.299625px;}
.y58{bottom:939.719624px;}
.ye{bottom:942.059623px;}
.ya5{bottom:951.959619px;}
.y10f{bottom:957.719617px;}
.yd{bottom:961.859615px;}
.y122{bottom:962.219615px;}
.y73{bottom:964.559614px;}
.yf5{bottom:966.359613px;}
.y57{bottom:971.219612px;}
.ya8{bottom:971.220600px;}
.yaa{bottom:972.120600px;}
.yd1{bottom:973.559611px;}
.ya3{bottom:980.939608px;}
.yc{bottom:991.559603px;}
.y121{bottom:993.719603px;}
.y72{bottom:996.059602px;}
.y56{bottom:1002.719599px;}
.yd0{bottom:1005.059598px;}
.y10e{bottom:1007.219597px;}
.ya4{bottom:1008.839596px;}
.ya2{bottom:1009.019596px;}
.yb{bottom:1015.499594px;}
.y120{bottom:1025.219590px;}
.ya0{bottom:1033.500600px;}
.y55{bottom:1034.219586px;}
.ycf{bottom:1036.559585px;}
.y71{bottom:1046.459581px;}
.y4c{bottom:1053.839578px;}
.y10d{bottom:1056.719577px;}
.y54{bottom:1065.719574px;}
.y9f{bottom:1065.899574px;}
.ycc{bottom:1068.059573px;}
.y4b{bottom:1075.799570px;}
.y10c{bottom:1088.219565px;}
.y9e{bottom:1093.979562px;}
.y9c{bottom:1094.159562px;}
.y4a{bottom:1109.819556px;}
.y53{bottom:1117.019553px;}
.ycb{bottom:1118.459553px;}
.y10b{bottom:1119.719552px;}
.y9d{bottom:1122.059551px;}
.y9b{bottom:1122.239551px;}
.y49{bottom:1140.599544px;}
.y4d{bottom:1143.659543px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1181.639527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h20{height:3.600000px;}
.h1f{height:4.500000px;}
.h3{height:6.120000px;}
.h10{height:15.840000px;}
.hc{height:21.960000px;}
.h9{height:22.680000px;}
.h19{height:22.860000px;}
.h1b{height:23.040000px;}
.h1d{height:25.020000px;}
.h11{height:36.274204px;}
.hf{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.he{height:39.339828px;}
.h13{height:39.830258px;}
.h12{height:41.314905px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.h21{height:43.536076px;}
.h1c{height:44.819982px;}
.hb{height:47.988262px;}
.hd{height:49.218730px;}
.h22{height:50.027324px;}
.h8{height:51.181151px;}
.h2{height:51.679667px;}
.h1a{height:51.974979px;}
.h7{height:54.140603px;}
.h14{height:57.585914px;}
.h18{height:59.197476px;}
.h1e{height:59.917476px;}
.ha{height:60.465210px;}
.h16{height:61.664038px;}
.h17{height:67.675754px;}
.h15{height:74.714033px;}
.h0{height:1263.000000px;}
.w6{width:3.240000px;}
.w8{width:4.860000px;}
.w15{width:5.040000px;}
.w12{width:7.560000px;}
.wb{width:7.920000px;}
.wa{width:9.540000px;}
.w2{width:10.620000px;}
.w4{width:13.140000px;}
.w3{width:18.900000px;}
.w9{width:53.820000px;}
.w5{width:71.460000px;}
.w14{width:79.920000px;}
.wd{width:98.280000px;}
.w13{width:109.980000px;}
.w11{width:127.080000px;}
.w10{width:150.840000px;}
.wf{width:183.240000px;}
.wc{width:206.820000px;}
.we{width:235.260000px;}
.w7{width:469.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:68.039973px;}
.x12{left:84.060000px;}
.x1a{left:86.759965px;}
.x5{left:93.779962px;}
.x18{left:96.119962px;}
.x13{left:103.139959px;}
.x19{left:104.939869px;}
.x1{left:107.999957px;}
.xa{left:114.480440px;}
.x28{left:116.459953px;}
.x1b{left:123.299951px;}
.x8{left:130.860323px;}
.x35{left:135.000057px;}
.x7{left:141.659943px;}
.x36{left:162.000066px;}
.x34{left:196.380000px;}
.x14{left:207.719917px;}
.x15{left:210.599916px;}
.x1c{left:215.099873px;}
.x1d{left:225.719910px;}
.x37{left:232.198587px;}
.x21{left:233.639907px;}
.x23{left:236.339905px;}
.xf{left:241.560309px;}
.x16{left:243.720000px;}
.x17{left:264.959894px;}
.x27{left:273.059891px;}
.x29{left:280.080000px;}
.x2{left:302.579879px;}
.x2a{left:333.900000px;}
.x1e{left:336.420000px;}
.xe{left:339.120331px;}
.x11{left:340.921144px;}
.xb{left:342.539734px;}
.xc{left:348.839731px;}
.x10{left:352.441141px;}
.x2b{left:364.499854px;}
.x22{left:371.159797px;}
.x9{left:372.419851px;}
.x24{left:388.079619px;}
.xd{left:389.519844px;}
.x6{left:392.219843px;}
.x2f{left:462.780000px;}
.x25{left:493.739803px;}
.x32{left:515.340000px;}
.x31{left:547.740000px;}
.x2d{left:571.320000px;}
.x33{left:636.299745px;}
.x3{left:664.379734px;}
.x26{left:680.760320px;}
.x30{left:698.040000px;}
.x2e{left:718.559713px;}
.x20{left:720.359712px;}
.x2c{left:776.340000px;}
.x38{left:784.979686px;}
.x1f{left:809.100000px;}
.x39{left:811.980000px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.084386pt;}
.ls8{letter-spacing:0.211375pt;}
.ls6{letter-spacing:29.595935pt;}
.ls5{letter-spacing:275.812796pt;}
.ls3{letter-spacing:298.866120pt;}
.ls4{letter-spacing:859.186430pt;}
.ls7{letter-spacing:1381.559101pt;}
.ls0{letter-spacing:1397.568541pt;}
.wsa{word-spacing:-40.787358pt;}
.ws7{word-spacing:-31.871987pt;}
.ws2{word-spacing:-28.816521pt;}
.ws8{word-spacing:-17.663993pt;}
.wsb{word-spacing:-17.620379pt;}
.ws9{word-spacing:-17.599993pt;}
.ws6{word-spacing:-17.535993pt;}
.ws5{word-spacing:-16.957433pt;}
.ws1{word-spacing:-13.343995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws3{word-spacing:-11.834875pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-4.886536pt;}
._13{margin-left:-3.876784pt;}
._2{margin-left:-2.840099pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._a{width:2.053983pt;}
._7{width:3.419101pt;}
._d{width:4.503336pt;}
._9{width:5.915619pt;}
._b{width:6.920833pt;}
._3{width:7.858891pt;}
._4{width:8.926725pt;}
._c{width:10.287928pt;}
._15{width:11.842059pt;}
._14{width:12.858583pt;}
._6{width:13.782773pt;}
._5{width:14.812583pt;}
._8{width:15.723862pt;}
._33{width:16.613317pt;}
._10{width:17.510781pt;}
._16{width:19.001278pt;}
._19{width:19.950459pt;}
._f{width:20.921936pt;}
._e{width:22.187299pt;}
._27{width:23.228886pt;}
._21{width:24.255221pt;}
._20{width:25.755861pt;}
._1c{width:26.832282pt;}
._1d{width:27.736652pt;}
._1a{width:29.113044pt;}
._32{width:30.288541pt;}
._26{width:31.913894pt;}
._25{width:32.863799pt;}
._29{width:34.144731pt;}
._28{width:35.057517pt;}
._2f{width:36.764942pt;}
._1f{width:38.102306pt;}
._1e{width:39.120777pt;}
._2c{width:40.092527pt;}
._2d{width:41.060853pt;}
._2e{width:42.230497pt;}
._30{width:47.475714pt;}
._31{width:48.428803pt;}
._17{width:50.835472pt;}
._23{width:52.645821pt;}
._12{width:66.337397pt;}
._11{width:71.064273pt;}
._22{width:93.772703pt;}
._2b{width:130.304343pt;}
._1b{width:322.206732pt;}
._24{width:361.466799pt;}
._2a{width:387.579011pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs7{font-size:61.439975pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs6{font-size:79.999968pt;}
.fs5{font-size:88.319965pt;}
.y6{bottom:-9.759991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y2a{bottom:2.719204pt;}
.yab{bottom:3.199120pt;}
.yb4{bottom:3.199140pt;}
.ybb{bottom:3.199180pt;}
.ya1{bottom:3.679098pt;}
.y84{bottom:3.679248pt;}
.y8f{bottom:3.679329pt;}
.y9a{bottom:3.679729pt;}
.ya7{bottom:3.839138pt;}
.y77{bottom:3.839168pt;}
.yb0{bottom:3.839178pt;}
.yb7{bottom:3.839199pt;}
.ya9{bottom:3.999120pt;}
.yb2{bottom:3.999140pt;}
.y79{bottom:3.999158pt;}
.yb9{bottom:3.999180pt;}
.y1b{bottom:4.319192pt;}
.y11f{bottom:4.320034pt;}
.y17{bottom:4.959192pt;}
.ya{bottom:29.546922pt;}
.y11e{bottom:44.106880pt;}
.y8{bottom:48.426914pt;}
.y9{bottom:50.186913pt;}
.y70{bottom:115.306621pt;}
.y10a{bottom:117.386620pt;}
.y134{bottom:121.706618pt;}
.yce{bottom:123.306617pt;}
.ye3{bottom:125.386617pt;}
.y11d{bottom:127.306616pt;}
.yf4{bottom:131.306614pt;}
.y52{bottom:138.186611pt;}
.y133{bottom:140.426610pt;}
.y99{bottom:140.746880pt;}
.y6f{bottom:143.306609pt;}
.y109{bottom:145.386609pt;}
.yca{bottom:151.306606pt;}
.ye2{bottom:153.386605pt;}
.y51{bottom:154.346605pt;}
.y11c{bottom:155.306605pt;}
.yf3{bottom:159.306603pt;}
.ycd{bottom:167.306600pt;}
.y27{bottom:168.266599pt;}
.y98{bottom:169.386599pt;}
.y50{bottom:170.346599pt;}
.y6e{bottom:171.306598pt;}
.yc9{bottom:179.306595pt;}
.ye1{bottom:181.386594pt;}
.y11b{bottom:183.306593pt;}
.y4f{bottom:186.346592pt;}
.y108{bottom:189.386591pt;}
.y97{bottom:194.346589pt;}
.y6d{bottom:199.306587pt;}
.y4e{bottom:202.986585pt;}
.y132{bottom:203.306585pt;}
.yf2{bottom:204.266585pt;}
.yc8{bottom:207.306584pt;}
.ye0{bottom:209.386583pt;}
.y11a{bottom:211.306582pt;}
.y107{bottom:217.386580pt;}
.y96{bottom:219.466579pt;}
.y6c{bottom:227.306576pt;}
.y48{bottom:230.826574pt;}
.y131{bottom:231.306574pt;}
.yc7{bottom:235.306573pt;}
.ydf{bottom:237.386572pt;}
.y119{bottom:239.306571pt;}
.y95{bottom:244.426569pt;}
.y47{bottom:244.906569pt;}
.y106{bottom:245.386569pt;}
.y6b{bottom:255.306565pt;}
.y46{bottom:259.146563pt;}
.yc6{bottom:263.306561pt;}
.yde{bottom:265.386561pt;}
.y118{bottom:267.306560pt;}
.y94{bottom:269.386559pt;}
.y45{bottom:273.386557pt;}
.y130{bottom:275.306557pt;}
.y44{bottom:287.466552pt;}
.ydd{bottom:293.386549pt;}
.y93{bottom:294.346549pt;}
.y91{bottom:294.506549pt;}
.y117{bottom:295.306549pt;}
.y6a{bottom:299.306547pt;}
.y26{bottom:299.946547pt;}
.y43{bottom:301.706546pt;}
.y12f{bottom:303.306545pt;}
.yc5{bottom:307.306544pt;}
.y42{bottom:315.946540pt;}
.y105{bottom:317.386540pt;}
.y92{bottom:319.466539pt;}
.y90{bottom:319.626539pt;}
.y129{bottom:323.306537pt;}
.y69{bottom:327.306536pt;}
.y41{bottom:330.026535pt;}
.yf1{bottom:337.386532pt;}
.ydc{bottom:338.186531pt;}
.y116{bottom:340.906530pt;}
.y8e{bottom:341.387200pt;}
.y40{bottom:344.266529pt;}
.y104{bottom:345.386529pt;}
.y12e{bottom:347.306528pt;}
.yc4{bottom:351.306526pt;}
.y68{bottom:355.306525pt;}
.y3f{bottom:358.506523pt;}
.y8d{bottom:370.026519pt;}
.y3e{bottom:372.586518pt;}
.yc3{bottom:379.306515pt;}
.yf0{bottom:381.386514pt;}
.y67{bottom:383.306513pt;}
.y3d{bottom:386.826512pt;}
.y103{bottom:389.386511pt;}
.y12d{bottom:391.306510pt;}
.y8c{bottom:394.986509pt;}
.y115{bottom:399.306507pt;}
.ydb{bottom:400.906506pt;}
.y3c{bottom:401.066506pt;}
.y25{bottom:403.466505pt;}
.yc2{bottom:407.306504pt;}
.yef{bottom:409.386503pt;}
.y66{bottom:411.306502pt;}
.y3b{bottom:415.146501pt;}
.y102{bottom:417.386500pt;}
.y12c{bottom:419.306499pt;}
.y8b{bottom:420.106499pt;}
.y3a{bottom:429.386495pt;}
.yc1{bottom:435.306493pt;}
.yee{bottom:437.386492pt;}
.y65{bottom:439.306491pt;}
.y39{bottom:443.626489pt;}
.y8a{bottom:445.066489pt;}
.y101{bottom:445.386489pt;}
.y12b{bottom:447.306488pt;}
.y24{bottom:452.586486pt;}
.y38{bottom:457.706484pt;}
.yc0{bottom:463.306481pt;}
.y23{bottom:468.266479pt;}
.y89{bottom:470.026479pt;}
.y37{bottom:471.946478pt;}
.y100{bottom:473.386477pt;}
.y12a{bottom:475.306477pt;}
.yed{bottom:481.386474pt;}
.y64{bottom:483.306473pt;}
.y22{bottom:484.106473pt;}
.y36{bottom:486.186472pt;}
.ybf{bottom:491.306470pt;}
.y88{bottom:494.986469pt;}
.y86{bottom:495.146469pt;}
.y21{bottom:498.666467pt;}
.y35{bottom:500.266467pt;}
.yff{bottom:501.386466pt;}
.y63{bottom:511.306462pt;}
.y34{bottom:514.506461pt;}
.ybe{bottom:519.306459pt;}
.y87{bottom:520.106459pt;}
.y85{bottom:520.266459pt;}
.yec{bottom:525.386457pt;}
.y33{bottom:528.746455pt;}
.y62{bottom:539.306451pt;}
.y83{bottom:542.027200pt;}
.y32{bottom:542.826450pt;}
.yfe{bottom:545.386449pt;}
.y20{bottom:546.666448pt;}
.yda{bottom:547.306448pt;}
.yeb{bottom:553.386445pt;}
.y31{bottom:557.066444pt;}
.ybd{bottom:563.306441pt;}
.y61{bottom:567.306440pt;}
.y82{bottom:570.666438pt;}
.y30{bottom:571.306438pt;}
.yfd{bottom:573.386437pt;}
.yd9{bottom:575.306437pt;}
.yea{bottom:581.386434pt;}
.y2f{bottom:585.386433pt;}
.y1f{bottom:594.666429pt;}
.y60{bottom:595.306429pt;}
.y81{bottom:595.786428pt;}
.y2e{bottom:599.626427pt;}
.yfc{bottom:601.386426pt;}
.yd8{bottom:603.306425pt;}
.ybc{bottom:608.266423pt;}
.y1e{bottom:610.666422pt;}
.y2d{bottom:613.866421pt;}
.y80{bottom:620.746418pt;}
.y5f{bottom:623.306417pt;}
.ye9{bottom:625.386417pt;}
.y2c{bottom:627.946415pt;}
.yfb{bottom:629.386415pt;}
.yd7{bottom:631.306414pt;}
.y2b{bottom:642.186410pt;}
.y7f{bottom:645.706408pt;}
.y5e{bottom:651.306406pt;}
.y28{bottom:652.586406pt;}
.y29{bottom:653.707200pt;}
.y1d{bottom:656.426404pt;}
.yfa{bottom:657.386404pt;}
.yd6{bottom:659.306403pt;}
.yb6{bottom:666.027200pt;}
.ye8{bottom:670.186399pt;}
.y7e{bottom:670.666398pt;}
.y114{bottom:676.906396pt;}
.y5d{bottom:679.306395pt;}
.y16{bottom:681.067200pt;}
.y1a{bottom:681.707200pt;}
.yf9{bottom:685.386393pt;}
.y18{bottom:685.866392pt;}
.y19{bottom:686.026392pt;}
.y128{bottom:687.306392pt;}
.y1c{bottom:688.586391pt;}
.yb5{bottom:694.826389pt;}
.y7d{bottom:695.786388pt;}
.y7b{bottom:695.946388pt;}
.yd5{bottom:704.266385pt;}
.y15{bottom:705.226385pt;}
.y5c{bottom:707.306384pt;}
.yb8{bottom:711.947200pt;}
.yba{bottom:712.747200pt;}
.y127{bottom:715.306381pt;}
.yaf{bottom:716.747200pt;}
.y7c{bottom:720.746378pt;}
.y7a{bottom:720.906378pt;}
.y14{bottom:722.986377pt;}
.yf8{bottom:729.386375pt;}
.ye7{bottom:731.306374pt;}
.y113{bottom:739.306371pt;}
.y13{bottom:740.586370pt;}
.y76{bottom:742.667200pt;}
.y126{bottom:743.306369pt;}
.yae{bottom:745.546368pt;}
.y5b{bottom:751.306366pt;}
.yf7{bottom:757.386364pt;}
.y12{bottom:758.346363pt;}
.ye6{bottom:759.306363pt;}
.yd4{bottom:765.386361pt;}
.y112{bottom:767.306360pt;}
.y78{bottom:767.627200pt;}
.yad{bottom:770.506358pt;}
.y125{bottom:771.306358pt;}
.y75{bottom:771.626358pt;}
.y11{bottom:776.106356pt;}
.y5a{bottom:779.306355pt;}
.yf6{bottom:785.386353pt;}
.ye5{bottom:787.306352pt;}
.yd3{bottom:793.386349pt;}
.y111{bottom:795.306349pt;}
.yac{bottom:795.626348pt;}
.y124{bottom:799.306347pt;}
.y10{bottom:801.866346pt;}
.y59{bottom:807.306344pt;}
.yb1{bottom:812.747200pt;}
.y74{bottom:813.386341pt;}
.yb3{bottom:813.547200pt;}
.ya6{bottom:817.387200pt;}
.yf{bottom:819.626339pt;}
.yd2{bottom:821.386338pt;}
.y110{bottom:823.306337pt;}
.y123{bottom:827.306336pt;}
.ye4{bottom:832.266334pt;}
.y58{bottom:835.306333pt;}
.ye{bottom:837.386332pt;}
.ya5{bottom:846.186328pt;}
.y10f{bottom:851.306326pt;}
.yd{bottom:854.986325pt;}
.y122{bottom:855.306325pt;}
.y73{bottom:857.386324pt;}
.yf5{bottom:858.986323pt;}
.y57{bottom:863.306321pt;}
.ya8{bottom:863.307200pt;}
.yaa{bottom:864.107200pt;}
.yd1{bottom:865.386321pt;}
.ya3{bottom:871.946318pt;}
.yc{bottom:881.386314pt;}
.y121{bottom:883.306313pt;}
.y72{bottom:885.386313pt;}
.y56{bottom:891.306310pt;}
.yd0{bottom:893.386309pt;}
.y10e{bottom:895.306309pt;}
.ya4{bottom:896.746308pt;}
.ya2{bottom:896.906308pt;}
.yb{bottom:902.666306pt;}
.y120{bottom:911.306302pt;}
.ya0{bottom:918.667200pt;}
.y55{bottom:919.306299pt;}
.ycf{bottom:921.386298pt;}
.y71{bottom:930.186295pt;}
.y4c{bottom:936.746292pt;}
.y10d{bottom:939.306291pt;}
.y54{bottom:947.306288pt;}
.y9f{bottom:947.466288pt;}
.ycc{bottom:949.386287pt;}
.y4b{bottom:956.266284pt;}
.y10c{bottom:967.306280pt;}
.y9e{bottom:972.426278pt;}
.y9c{bottom:972.586278pt;}
.y4a{bottom:986.506272pt;}
.y53{bottom:992.906270pt;}
.ycb{bottom:994.186269pt;}
.y10b{bottom:995.306269pt;}
.y9d{bottom:997.386268pt;}
.y9b{bottom:997.546268pt;}
.y49{bottom:1013.866261pt;}
.y4d{bottom:1016.586260pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1050.346247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h20{height:3.200000pt;}
.h1f{height:4.000000pt;}
.h3{height:5.440000pt;}
.h10{height:14.080000pt;}
.hc{height:19.520000pt;}
.h9{height:20.160000pt;}
.h19{height:20.320000pt;}
.h1b{height:20.480000pt;}
.h1d{height:22.240000pt;}
.h11{height:32.243737pt;}
.hf{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.he{height:34.968736pt;}
.h13{height:35.404673pt;}
.h12{height:36.724360pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.h21{height:38.698735pt;}
.h1c{height:39.839984pt;}
.hb{height:42.656233pt;}
.hd{height:43.749982pt;}
.h22{height:44.468732pt;}
.h8{height:45.494357pt;}
.h2{height:45.937482pt;}
.h1a{height:46.199982pt;}
.h7{height:48.124981pt;}
.h14{height:51.187480pt;}
.h18{height:52.619979pt;}
.h1e{height:53.259979pt;}
.ha{height:53.746854pt;}
.h16{height:54.812478pt;}
.h17{height:60.156226pt;}
.h15{height:66.412473pt;}
.h0{height:1122.666667pt;}
.w6{width:2.880000pt;}
.w8{width:4.320000pt;}
.w15{width:4.480000pt;}
.w12{width:6.720000pt;}
.wb{width:7.040000pt;}
.wa{width:8.480000pt;}
.w2{width:9.440000pt;}
.w4{width:11.680000pt;}
.w3{width:16.800000pt;}
.w9{width:47.840000pt;}
.w5{width:63.520000pt;}
.w14{width:71.040000pt;}
.wd{width:87.360000pt;}
.w13{width:97.760000pt;}
.w11{width:112.960000pt;}
.w10{width:134.080000pt;}
.wf{width:162.880000pt;}
.wc{width:183.840000pt;}
.we{width:209.120000pt;}
.w7{width:417.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:60.479976pt;}
.x12{left:74.720000pt;}
.x1a{left:77.119969pt;}
.x5{left:83.359967pt;}
.x18{left:85.439966pt;}
.x13{left:91.679963pt;}
.x19{left:93.279884pt;}
.x1{left:95.999962pt;}
.xa{left:101.760391pt;}
.x28{left:103.519959pt;}
.x1b{left:109.599956pt;}
.x8{left:116.320287pt;}
.x35{left:120.000050pt;}
.x7{left:125.919950pt;}
.x36{left:144.000059pt;}
.x34{left:174.560000pt;}
.x14{left:184.639926pt;}
.x15{left:187.199925pt;}
.x1c{left:191.199888pt;}
.x1d{left:200.639920pt;}
.x37{left:206.398744pt;}
.x21{left:207.679917pt;}
.x23{left:210.079916pt;}
.xf{left:214.720274pt;}
.x16{left:216.640000pt;}
.x17{left:235.519906pt;}
.x27{left:242.719903pt;}
.x29{left:248.960000pt;}
.x2{left:268.959892pt;}
.x2a{left:296.800000pt;}
.x1e{left:299.040000pt;}
.xe{left:301.440294pt;}
.x11{left:303.041017pt;}
.xb{left:304.479764pt;}
.xc{left:310.079761pt;}
.x10{left:313.281015pt;}
.x2b{left:323.999870pt;}
.x22{left:329.919819pt;}
.x9{left:331.039868pt;}
.x24{left:344.959662pt;}
.xd{left:346.239862pt;}
.x6{left:348.639861pt;}
.x2f{left:411.360000pt;}
.x25{left:438.879824pt;}
.x32{left:458.080000pt;}
.x31{left:486.880000pt;}
.x2d{left:507.840000pt;}
.x33{left:565.599774pt;}
.x3{left:590.559764pt;}
.x26{left:605.120285pt;}
.x30{left:620.480000pt;}
.x2e{left:638.719745pt;}
.x20{left:640.319744pt;}
.x2c{left:690.080000pt;}
.x38{left:697.759721pt;}
.x1f{left:719.200000pt;}
.x39{left:721.760000pt;}
}




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