
    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_220d8b4ee3a8e48f5b955fd4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_018eab010816cae9ce7bda2d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b89640fb12c17853c401a787.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_edcf8d3ba116031f97868b94.woff')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_0323b01582182e4e8ce51faa.woff')format("woff");}.ffb{font-family:ffb;line-height:0.696777;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_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_a244ce921781d952a223bfab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.939941;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_d2f02d2b6d082da19d1f1564.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_354b2189d2faab6b3c6e922d.woff')format("woff");}.fff{font-family:fff;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9c3f5fee408f2665dd57cebc.woff')format("woff");}.ff10{font-family:ff10;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bdb1b9059a74d59019f748a2.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2b2c14c30ab4a03b7499c5d1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.916992;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_37356489e58f85b5c2de8396.woff')format("woff");}.ff13{font-family:ff13;line-height:0.950684;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_650b3be8700fe4bcfb63f23c.woff')format("woff");}.ff14{font-family:ff14;line-height:0.722656;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_a0a975057cc109e5bfdd4864.woff')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m7{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);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.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.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);}
.m9{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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.093305px;}
.ls5{letter-spacing:0.673843px;}
.ls0{letter-spacing:0.730794px;}
.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;}
}
.ws2{word-spacing:-55.943978px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws5{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._3c{margin-left:-2.721274px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._16{width:2.443806px;}
._f{width:4.004624px;}
._18{width:5.021807px;}
._1c{width:6.127106px;}
._d{width:7.824083px;}
._36{width:8.860233px;}
._10{width:9.877458px;}
._11{width:10.935432px;}
._17{width:11.998308px;}
._1b{width:14.583959px;}
._14{width:15.872276px;}
._32{width:16.980368px;}
._15{width:18.101995px;}
._13{width:19.159895px;}
._12{width:20.236616px;}
._2c{width:21.387311px;}
._1a{width:22.891847px;}
._19{width:23.896881px;}
._21{width:24.913242px;}
._2b{width:26.823892px;}
._28{width:28.004106px;}
._29{width:29.600742px;}
._e{width:30.646567px;}
._1e{width:32.324902px;}
._2d{width:33.411058px;}
._2e{width:34.525300px;}
._24{width:35.556663px;}
._25{width:36.611649px;}
._37{width:38.015015px;}
._27{width:39.036012px;}
._2a{width:40.304918px;}
._2f{width:41.695094px;}
._33{width:42.907225px;}
._34{width:44.463092px;}
._38{width:45.649250px;}
._3a{width:46.847775px;}
._22{width:48.679066px;}
._26{width:50.423925px;}
._23{width:51.559049px;}
._35{width:53.051630px;}
._30{width:54.611852px;}
._31{width:56.737157px;}
._3d{width:58.787390px;}
._3e{width:61.211548px;}
._1f{width:63.988169px;}
._20{width:65.002372px;}
._3b{width:66.764902px;}
._1d{width:68.257216px;}
._39{width:73.967180px;}
._3f{width:110.542974px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsc{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y48{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.059003px;}
.y82{bottom:3.059009px;}
.y11b{bottom:3.059021px;}
.y86{bottom:3.059027px;}
.y89{bottom:3.059034px;}
.y8b{bottom:3.059040px;}
.y8d{bottom:3.059046px;}
.y90{bottom:3.059058px;}
.y92{bottom:3.059064px;}
.y94{bottom:3.059070px;}
.y98{bottom:3.059089px;}
.y9a{bottom:3.059095px;}
.y9c{bottom:3.059101px;}
.ye2{bottom:3.059108px;}
.y1d{bottom:3.059122px;}
.ya2{bottom:3.059126px;}
.ya4{bottom:3.059132px;}
.ya6{bottom:3.059138px;}
.ya8{bottom:3.059144px;}
.yac{bottom:3.059162px;}
.yaf{bottom:3.059217px;}
.yd8{bottom:3.059242px;}
.yb4{bottom:3.059262px;}
.yb2{bottom:3.059264px;}
.yb6{bottom:3.059272px;}
.yb8{bottom:3.059281px;}
.yda{bottom:3.059289px;}
.y10b{bottom:3.059293px;}
.y10d{bottom:3.059300px;}
.y110{bottom:3.059306px;}
.y114{bottom:3.059324px;}
.ydc{bottom:3.059695px;}
.y117{bottom:3.059697px;}
.yde{bottom:3.060003px;}
.y10{bottom:3.239055px;}
.y18{bottom:3.599105px;}
.y1b{bottom:3.599109px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y16{bottom:4.859093px;}
.y43{bottom:6.478948px;}
.y78{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.yc0{bottom:119.100252px;}
.ydf{bottom:119.640252px;}
.y13f{bottom:119.999952px;}
.y150{bottom:121.439951px;}
.y75{bottom:121.620251px;}
.y38{bottom:122.519951px;}
.y119{bottom:126.120250px;}
.y41{bottom:127.199949px;}
.ydd{bottom:139.440240px;}
.ybf{bottom:142.140243px;}
.y13e{bottom:143.039943px;}
.y37{bottom:143.219943px;}
.y118{bottom:143.400243px;}
.y14f{bottom:144.479942px;}
.y74{bottom:144.660242px;}
.y40{bottom:147.899941px;}
.y116{bottom:155.640240px;}
.ydb{bottom:159.420240px;}
.y36{bottom:163.919934px;}
.ybe{bottom:164.999934px;}
.y13d{bottom:166.079934px;}
.y14e{bottom:167.519933px;}
.y73{bottom:167.699933px;}
.y3f{bottom:168.599933px;}
.y115{bottom:174.179930px;}
.y35{bottom:184.619926px;}
.y113{bottom:186.420600px;}
.ybd{bottom:188.039925px;}
.y13c{bottom:189.119924px;}
.y3e{bottom:189.299924px;}
.y14d{bottom:190.379924px;}
.y72{bottom:190.559924px;}
.y112{bottom:204.779918px;}
.y34{bottom:205.319918px;}
.y3d{bottom:209.999916px;}
.ybc{bottom:211.079916px;}
.y13b{bottom:212.159915px;}
.y14c{bottom:213.419915px;}
.y71{bottom:213.599915px;}
.y111{bottom:220.079912px;}
.y33{bottom:226.019910px;}
.y3c{bottom:230.699908px;}
.y10f{bottom:232.500600px;}
.ybb{bottom:234.119906px;}
.y13a{bottom:235.199906px;}
.y10e{bottom:235.559906px;}
.y14b{bottom:236.459905px;}
.y70{bottom:236.639905px;}
.y32{bottom:246.719901px;}
.y10c{bottom:247.800600px;}
.y3b{bottom:251.399899px;}
.yba{bottom:254.459898px;}
.y139{bottom:258.059897px;}
.y14a{bottom:259.499896px;}
.y6f{bottom:259.679896px;}
.y10a{bottom:263.820600px;}
.y3a{bottom:272.099891px;}
.y31{bottom:273.899890px;}
.yb9{bottom:274.979890px;}
.yd9{bottom:275.160600px;}
.y138{bottom:281.099888px;}
.y149{bottom:282.539887px;}
.y6e{bottom:282.719887px;}
.y109{bottom:292.259883px;}
.y39{bottom:292.799883px;}
.yb7{bottom:294.960600px;}
.y30{bottom:296.939881px;}
.y137{bottom:304.139878px;}
.y148{bottom:305.579878px;}
.y6d{bottom:305.759878px;}
.y2f{bottom:312.959875px;}
.y108{bottom:315.299874px;}
.y2e{bottom:316.739873px;}
.yb5{bottom:318.000600px;}
.y136{bottom:327.179869px;}
.y147{bottom:328.439869px;}
.y6c{bottom:328.619869px;}
.y2d{bottom:337.259865px;}
.y107{bottom:337.799865px;}
.yb1{bottom:337.800600px;}
.yf3{bottom:339.599864px;}
.yb3{bottom:342.120600px;}
.y135{bottom:350.219860px;}
.y146{bottom:351.479859px;}
.y6b{bottom:351.659859px;}
.y2c{bottom:360.299856px;}
.yf2{bottom:362.639855px;}
.y134{bottom:373.259851px;}
.y145{bottom:374.519850px;}
.y6a{bottom:374.699850px;}
.y106{bottom:382.799847px;}
.y2b{bottom:383.339847px;}
.yf1{bottom:385.679846px;}
.yd7{bottom:390.720600px;}
.y133{bottom:396.119842px;}
.y144{bottom:397.559841px;}
.y69{bottom:397.739841px;}
.y105{bottom:405.479838px;}
.y2a{bottom:406.379837px;}
.yf0{bottom:408.719837px;}
.y132{bottom:419.159832px;}
.y143{bottom:420.599832px;}
.y68{bottom:420.779832px;}
.y104{bottom:427.979829px;}
.y29{bottom:429.419828px;}
.yef{bottom:431.759827px;}
.y131{bottom:442.199823px;}
.y142{bottom:443.639823px;}
.y67{bottom:443.819822px;}
.y103{bottom:450.479820px;}
.y28{bottom:452.279819px;}
.yb0{bottom:454.440600px;}
.yee{bottom:454.619818px;}
.yae{bottom:454.620600px;}
.y130{bottom:465.239814px;}
.y141{bottom:466.499813px;}
.y66{bottom:466.679813px;}
.y102{bottom:473.159811px;}
.y27{bottom:475.319810px;}
.yed{bottom:477.659809px;}
.y12f{bottom:488.279805px;}
.y140{bottom:489.539804px;}
.y65{bottom:489.719804px;}
.y101{bottom:495.659802px;}
.y26{bottom:498.359801px;}
.yec{bottom:500.699800px;}
.y12e{bottom:511.319795px;}
.yd6{bottom:512.579795px;}
.y64{bottom:512.759795px;}
.y100{bottom:518.159793px;}
.y25{bottom:521.399791px;}
.yeb{bottom:523.739791px;}
.y12d{bottom:534.179786px;}
.yd5{bottom:535.619786px;}
.y63{bottom:535.799786px;}
.yff{bottom:540.839784px;}
.y24{bottom:544.439782px;}
.yea{bottom:546.779781px;}
.y12c{bottom:557.219777px;}
.yd4{bottom:558.659777px;}
.y62{bottom:558.839776px;}
.yfe{bottom:563.339775px;}
.y23{bottom:567.299773px;}
.ye9{bottom:569.819772px;}
.yad{bottom:576.299769px;}
.y12b{bottom:580.259768px;}
.yd3{bottom:581.519767px;}
.y61{bottom:581.699767px;}
.yfd{bottom:585.839766px;}
.y22{bottom:590.339764px;}
.yab{bottom:590.700600px;}
.ye8{bottom:592.679763px;}
.y12a{bottom:603.299759px;}
.yd2{bottom:604.559758px;}
.y60{bottom:604.739758px;}
.yfc{bottom:608.519757px;}
.yaa{bottom:609.059756px;}
.y21{bottom:613.379755px;}
.ye7{bottom:615.719754px;}
.ya9{bottom:624.359750px;}
.y129{bottom:626.339749px;}
.yd1{bottom:627.599749px;}
.y5f{bottom:627.779749px;}
.yfb{bottom:631.019748px;}
.y20{bottom:636.419745px;}
.ya7{bottom:636.780600px;}
.ye6{bottom:638.759744px;}
.y128{bottom:649.199740px;}
.yd0{bottom:650.639740px;}
.y5e{bottom:650.819740px;}
.ya5{bottom:652.080600px;}
.yfa{bottom:653.519739px;}
.y1f{bottom:660.359736px;}
.ye5{bottom:661.799735px;}
.ya3{bottom:667.380600px;}
.y127{bottom:672.239731px;}
.ycf{bottom:673.679731px;}
.y5d{bottom:673.859730px;}
.yf9{bottom:676.199730px;}
.ya1{bottom:682.680600px;}
.ye4{bottom:684.839726px;}
.ya0{bottom:685.739726px;}
.y1c{bottom:690.960600px;}
.y1e{bottom:694.019722px;}
.y126{bottom:695.279722px;}
.yce{bottom:696.719721px;}
.y5c{bottom:696.899721px;}
.yf8{bottom:698.699721px;}
.y9f{bottom:701.219720px;}
.ye3{bottom:707.699717px;}
.y9e{bottom:716.519713px;}
.y125{bottom:718.319713px;}
.ycd{bottom:719.579712px;}
.y5b{bottom:719.759712px;}
.yf7{bottom:721.199712px;}
.y1a{bottom:724.440600px;}
.ye1{bottom:727.680600px;}
.y19{bottom:728.039709px;}
.y9d{bottom:731.819707px;}
.y17{bottom:733.440600px;}
.y124{bottom:741.359703px;}
.ycc{bottom:742.619703px;}
.y5a{bottom:742.799703px;}
.yf6{bottom:743.879702px;}
.y9b{bottom:744.060600px;}
.ye0{bottom:750.539700px;}
.y99{bottom:759.360600px;}
.y15{bottom:762.420600px;}
.y123{bottom:764.399694px;}
.ycb{bottom:765.659694px;}
.y59{bottom:765.839694px;}
.yf5{bottom:766.379693px;}
.y97{bottom:774.840600px;}
.y14{bottom:785.099686px;}
.y122{bottom:787.259685px;}
.yca{bottom:788.699685px;}
.y58{bottom:788.879684px;}
.y96{bottom:793.199683px;}
.y95{bottom:808.499677px;}
.y121{bottom:810.299676px;}
.yf4{bottom:811.559675px;}
.yc9{bottom:811.739675px;}
.y57{bottom:811.919675px;}
.y13{bottom:812.639675px;}
.y93{bottom:820.740600px;}
.y120{bottom:833.339667px;}
.yc8{bottom:834.779666px;}
.y56{bottom:834.959666px;}
.y91{bottom:836.220600px;}
.y11{bottom:843.239663px;}
.y12{bottom:848.459661px;}
.y8f{bottom:851.520600px;}
.y11f{bottom:856.379657px;}
.yc7{bottom:857.639657px;}
.y55{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.y8e{bottom:869.879652px;}
.y11e{bottom:879.419648px;}
.yc6{bottom:880.679648px;}
.y54{bottom:880.859648px;}
.y8c{bottom:882.120600px;}
.ye{bottom:893.639643px;}
.y8a{bottom:897.420600px;}
.y11d{bottom:902.459639px;}
.yc5{bottom:903.719639px;}
.y53{bottom:903.899638px;}
.y88{bottom:912.900600px;}
.y15f{bottom:917.759633px;}
.y11c{bottom:925.319630px;}
.yc4{bottom:926.759629px;}
.y52{bottom:926.939629px;}
.y85{bottom:928.200600px;}
.y87{bottom:931.259627px;}
.yd{bottom:934.319626px;}
.y15e{bottom:940.799624px;}
.y11a{bottom:945.300600px;}
.y84{bottom:946.559621px;}
.yc3{bottom:949.799620px;}
.y51{bottom:949.979620px;}
.y83{bottom:961.859615px;}
.y15d{bottom:963.659615px;}
.yc2{bottom:972.839611px;}
.y50{bottom:973.019611px;}
.y81{bottom:974.100600px;}
.yc{bottom:974.999610px;}
.y156{bottom:986.699605px;}
.y7f{bottom:990.300600px;}
.yc1{bottom:995.699602px;}
.y4f{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y15c{bottom:1004.879598px;}
.y155{bottom:1011.179596px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y7e{bottom:1018.739593px;}
.y4e{bottom:1018.919592px;}
.y15b{bottom:1026.479589px;}
.y154{bottom:1035.659586px;}
.y7d{bottom:1041.779583px;}
.y4d{bottom:1041.959583px;}
.y15a{bottom:1047.899581px;}
.y47{bottom:1051.500600px;}
.y153{bottom:1060.139576px;}
.y7c{bottom:1064.819574px;}
.y4c{bottom:1064.999574px;}
.y46{bottom:1066.979573px;}
.y159{bottom:1069.319572px;}
.y152{bottom:1084.799566px;}
.y45{bottom:1087.319565px;}
.y7b{bottom:1087.859565px;}
.y4b{bottom:1088.039565px;}
.y158{bottom:1090.919564px;}
.y44{bottom:1107.659557px;}
.y151{bottom:1109.279556px;}
.y7a{bottom:1110.719556px;}
.y4a{bottom:1110.899556px;}
.y157{bottom:1112.339555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y42{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y79{bottom:1133.759546px;}
.y49{bottom:1133.939546px;}
.y77{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y76{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h21{height:12.060000px;}
.hb{height:13.500000px;}
.h16{height:15.120000px;}
.h23{height:15.300000px;}
.h24{height:15.480000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1e{height:23.760000px;}
.h1{height:24.480000px;}
.h1a{height:25.913662px;}
.he{height:26.008583px;}
.h1c{height:27.228505px;}
.h25{height:31.585065px;}
.h18{height:32.152136px;}
.hc{height:32.269909px;}
.h10{height:36.179986px;}
.h17{height:40.842757px;}
.h1b{height:43.185920px;}
.h19{height:45.199318px;}
.h6{height:47.988262px;}
.hd{height:48.164043px;}
.h12{height:48.199199px;}
.h14{height:50.100449px;}
.hf{height:50.167949px;}
.h20{height:53.999978px;}
.h8{height:54.457009px;}
.h22{height:56.159978px;}
.h2{height:58.861031px;}
.h1f{height:63.179975px;}
.ha{height:64.058178px;}
.h1d{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w38{width:0.360000px;}
.w18{width:2.160000px;}
.w16{width:2.340000px;}
.w35{width:3.240000px;}
.w48{width:3.600000px;}
.w3b{width:4.140000px;}
.w40{width:4.320000px;}
.w2c{width:4.500000px;}
.w2{width:4.680000px;}
.w28{width:4.860000px;}
.wf{width:5.040000px;}
.w2e{width:6.120000px;}
.w1a{width:6.840000px;}
.w4{width:7.020000px;}
.w1d{width:7.200000px;}
.w14{width:7.740000px;}
.wc{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.w32{width:9.360000px;}
.wb{width:9.540000px;}
.w12{width:10.800000px;}
.wa{width:12.240000px;}
.w6{width:12.420000px;}
.w25{width:13.500000px;}
.w3e{width:14.940000px;}
.w1f{width:15.120000px;}
.w29{width:22.320000px;}
.w19{width:22.500000px;}
.w43{width:24.120000px;}
.w5{width:24.840000px;}
.w22{width:29.700000px;}
.w3c{width:30.600000px;}
.w1e{width:32.220000px;}
.w39{width:34.020000px;}
.w34{width:42.480000px;}
.w20{width:42.660000px;}
.w47{width:43.200000px;}
.w10{width:43.380000px;}
.w2d{width:43.560000px;}
.w21{width:44.100000px;}
.w2b{width:46.800000px;}
.w31{width:48.600000px;}
.w24{width:48.960000px;}
.w44{width:53.280000px;}
.w1b{width:54.360000px;}
.w1c{width:55.800000px;}
.w41{width:57.420000px;}
.w15{width:62.820000px;}
.w2a{width:66.600000px;}
.w26{width:68.400000px;}
.w37{width:68.580000px;}
.w13{width:69.660000px;}
.w3f{width:71.280000px;}
.w1{width:73.980000px;}
.w27{width:76.680000px;}
.w3{width:77.400000px;}
.wd{width:81.360000px;}
.w17{width:90.180000px;}
.w3d{width:97.200000px;}
.w23{width:109.620000px;}
.w42{width:135.720000px;}
.w3a{width:165.240000px;}
.w45{width:168.300000px;}
.w36{width:191.520000px;}
.w33{width:266.040000px;}
.w2f{width:274.320000px;}
.w49{width:277.200000px;}
.w46{width:300.600000px;}
.w30{width:324.000000px;}
.we{width:419.040000px;}
.w9{width:522.540000px;}
.w11{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x21{left:111.779955px;}
.xb{left:116.100000px;}
.xd{left:130.679908px;}
.x4b{left:150.660000px;}
.x2d{left:152.100000px;}
.x4c{left:153.900000px;}
.x61{left:154.980000px;}
.x46{left:157.860000px;}
.x5a{left:165.600000px;}
.x43{left:174.780000px;}
.x3f{left:176.580000px;}
.x28{left:177.840000px;}
.x3a{left:181.800000px;}
.x1d{left:188.100000px;}
.x44{left:198.900000px;}
.xe{left:200.339857px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x3b{left:217.800000px;}
.x24{left:249.120000px;}
.x10{left:259.740421px;}
.x40{left:265.320000px;}
.x29{left:272.520000px;}
.x19{left:282.239887px;}
.x1a{left:286.919885px;}
.x30{left:295.919883px;}
.x3c{left:297.180000px;}
.x2e{left:300.240000px;}
.x38{left:303.840000px;}
.x2f{left:307.440000px;}
.x35{left:311.400000px;}
.x2a{left:335.340000px;}
.x2b{left:339.840000px;}
.x50{left:340.920000px;}
.x4d{left:345.240000px;}
.x36{left:363.600000px;}
.x34{left:367.739849px;}
.x31{left:368.820000px;}
.x3d{left:370.080000px;}
.x33{left:371.159852px;}
.x41{left:373.680000px;}
.x39{left:384.840000px;}
.xa{left:387.899845px;}
.x42{left:396.000000px;}
.x3e{left:399.780000px;}
.x32{left:401.040000px;}
.x37{left:406.260000px;}
.x4a{left:410.760358px;}
.x45{left:427.680000px;}
.x2c{left:430.020000px;}
.x25{left:433.079827px;}
.x5b{left:442.620000px;}
.x23{left:462.600477px;}
.x11{left:493.920784px;}
.x51{left:506.160000px;}
.x12{left:507.240775px;}
.x52{left:510.300000px;}
.x49{left:511.380000px;}
.x53{left:513.540000px;}
.x13{left:520.560767px;}
.x14{left:533.700759px;}
.x15{left:538.200756px;}
.x54{left:544.140000px;}
.x1{left:549.000000px;}
.x26{left:550.250930px;}
.x27{left:588.779764px;}
.x16{left:591.300737px;}
.x22{left:600.659760px;}
.x1e{left:607.140000px;}
.x17{left:608.940666px;}
.x1f{left:612.180000px;}
.x47{left:620.280000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x1b{left:629.100000px;}
.x55{left:646.380000px;}
.x20{left:655.559738px;}
.x18{left:666.359733px;}
.x56{left:687.600000px;}
.x5c{left:693.540000px;}
.x5e{left:695.159722px;}
.x4e{left:698.940000px;}
.x57{left:702.540000px;}
.x4{left:705.060000px;}
.x58{left:707.580000px;}
.x5d{left:717.660000px;}
.x5{left:722.340000px;}
.x5f{left:730.620000px;}
.x60{left:735.660000px;}
.x6{left:747.180000px;}
.x7{left:759.600000px;}
.x4f{left:767.520000px;}
.x8{left:772.020000px;}
.x59{left:778.860000px;}
.x1c{left:780.300000px;}
.x48{left:782.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.082938pt;}
.ls5{letter-spacing:0.598971pt;}
.ls0{letter-spacing:0.649595pt;}
.ws2{word-spacing:-49.727980pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws5{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._3c{margin-left:-2.418910pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._16{width:2.172272pt;}
._f{width:3.559666pt;}
._18{width:4.463829pt;}
._1c{width:5.446317pt;}
._d{width:6.954740pt;}
._36{width:7.875763pt;}
._10{width:8.779963pt;}
._11{width:9.720384pt;}
._17{width:10.665163pt;}
._1b{width:12.963519pt;}
._14{width:14.108690pt;}
._32{width:15.093661pt;}
._15{width:16.090663pt;}
._13{width:17.031018pt;}
._12{width:17.988103pt;}
._2c{width:19.010943pt;}
._1a{width:20.348308pt;}
._19{width:21.241672pt;}
._21{width:22.145104pt;}
._2b{width:23.843460pt;}
._28{width:24.892539pt;}
._29{width:26.311771pt;}
._e{width:27.241393pt;}
._1e{width:28.733246pt;}
._2d{width:29.698719pt;}
._2e{width:30.689156pt;}
._24{width:31.605923pt;}
._25{width:32.543688pt;}
._37{width:33.791124pt;}
._27{width:34.698677pt;}
._2a{width:35.826594pt;}
._2f{width:37.062306pt;}
._33{width:38.139755pt;}
._34{width:39.522749pt;}
._38{width:40.577111pt;}
._3a{width:41.642467pt;}
._22{width:43.270281pt;}
._26{width:44.821267pt;}
._23{width:45.830266pt;}
._35{width:47.157004pt;}
._30{width:48.543868pt;}
._31{width:50.433029pt;}
._3d{width:52.255458pt;}
._3e{width:54.410265pt;}
._1f{width:56.878373pt;}
._20{width:57.779886pt;}
._3b{width:59.346580pt;}
._1d{width:60.673081pt;}
._39{width:65.748604pt;}
._3f{width:98.260422pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsc{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y48{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.719113pt;}
.y82{bottom:2.719119pt;}
.y11b{bottom:2.719129pt;}
.y86{bottom:2.719136pt;}
.y89{bottom:2.719141pt;}
.y8b{bottom:2.719146pt;}
.y8d{bottom:2.719152pt;}
.y90{bottom:2.719163pt;}
.y92{bottom:2.719168pt;}
.y94{bottom:2.719174pt;}
.y98{bottom:2.719190pt;}
.y9a{bottom:2.719196pt;}
.y9c{bottom:2.719201pt;}
.ye2{bottom:2.719207pt;}
.y1d{bottom:2.719220pt;}
.ya2{bottom:2.719223pt;}
.ya4{bottom:2.719228pt;}
.ya6{bottom:2.719234pt;}
.ya8{bottom:2.719239pt;}
.yac{bottom:2.719256pt;}
.yaf{bottom:2.719304pt;}
.yd8{bottom:2.719327pt;}
.yb4{bottom:2.719344pt;}
.yb2{bottom:2.719345pt;}
.yb6{bottom:2.719353pt;}
.yb8{bottom:2.719361pt;}
.yda{bottom:2.719368pt;}
.y10b{bottom:2.719372pt;}
.y10d{bottom:2.719377pt;}
.y110{bottom:2.719383pt;}
.y114{bottom:2.719399pt;}
.ydc{bottom:2.719729pt;}
.y117{bottom:2.719730pt;}
.yde{bottom:2.720003pt;}
.y10{bottom:2.879160pt;}
.y18{bottom:3.199205pt;}
.y1b{bottom:3.199208pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y16{bottom:4.319194pt;}
.y43{bottom:5.759065pt;}
.y78{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.yc0{bottom:105.866891pt;}
.ydf{bottom:106.346891pt;}
.y13f{bottom:106.666624pt;}
.y150{bottom:107.946623pt;}
.y75{bottom:108.106890pt;}
.y38{bottom:108.906623pt;}
.y119{bottom:112.106888pt;}
.y41{bottom:113.066621pt;}
.ydd{bottom:123.946880pt;}
.ybf{bottom:126.346883pt;}
.y13e{bottom:127.146616pt;}
.y37{bottom:127.306616pt;}
.y118{bottom:127.466882pt;}
.y14f{bottom:128.426615pt;}
.y74{bottom:128.586882pt;}
.y40{bottom:131.466614pt;}
.y116{bottom:138.346880pt;}
.ydb{bottom:141.706880pt;}
.y36{bottom:145.706608pt;}
.ybe{bottom:146.666608pt;}
.y13d{bottom:147.626608pt;}
.y14e{bottom:148.906607pt;}
.y73{bottom:149.066607pt;}
.y3f{bottom:149.866607pt;}
.y115{bottom:154.826605pt;}
.y35{bottom:164.106601pt;}
.y113{bottom:165.707200pt;}
.ybd{bottom:167.146600pt;}
.y13c{bottom:168.106599pt;}
.y3e{bottom:168.266599pt;}
.y14d{bottom:169.226599pt;}
.y72{bottom:169.386599pt;}
.y112{bottom:182.026594pt;}
.y34{bottom:182.506594pt;}
.y3d{bottom:186.666592pt;}
.ybc{bottom:187.626592pt;}
.y13b{bottom:188.586591pt;}
.y14c{bottom:189.706591pt;}
.y71{bottom:189.866591pt;}
.y111{bottom:195.626588pt;}
.y33{bottom:200.906586pt;}
.y3c{bottom:205.066585pt;}
.y10f{bottom:206.667200pt;}
.ybb{bottom:208.106583pt;}
.y13a{bottom:209.066583pt;}
.y10e{bottom:209.386583pt;}
.y14b{bottom:210.186583pt;}
.y70{bottom:210.346583pt;}
.y32{bottom:219.306579pt;}
.y10c{bottom:220.267200pt;}
.y3b{bottom:223.466577pt;}
.yba{bottom:226.186576pt;}
.y139{bottom:229.386575pt;}
.y14a{bottom:230.666574pt;}
.y6f{bottom:230.826574pt;}
.y10a{bottom:234.507200pt;}
.y3a{bottom:241.866570pt;}
.y31{bottom:243.466569pt;}
.yb9{bottom:244.426569pt;}
.yd9{bottom:244.587200pt;}
.y138{bottom:249.866567pt;}
.y149{bottom:251.146566pt;}
.y6e{bottom:251.306566pt;}
.y109{bottom:259.786563pt;}
.y39{bottom:260.266563pt;}
.yb7{bottom:262.187200pt;}
.y30{bottom:263.946561pt;}
.y137{bottom:270.346559pt;}
.y148{bottom:271.626558pt;}
.y6d{bottom:271.786558pt;}
.y2f{bottom:278.186555pt;}
.y108{bottom:280.266555pt;}
.y2e{bottom:281.546554pt;}
.yb5{bottom:282.667200pt;}
.y136{bottom:290.826550pt;}
.y147{bottom:291.946550pt;}
.y6c{bottom:292.106550pt;}
.y2d{bottom:299.786547pt;}
.y107{bottom:300.266547pt;}
.yb1{bottom:300.267200pt;}
.yf3{bottom:301.866546pt;}
.yb3{bottom:304.107200pt;}
.y135{bottom:311.306542pt;}
.y146{bottom:312.426542pt;}
.y6b{bottom:312.586542pt;}
.y2c{bottom:320.266539pt;}
.yf2{bottom:322.346538pt;}
.y134{bottom:331.786534pt;}
.y145{bottom:332.906534pt;}
.y6a{bottom:333.066533pt;}
.y106{bottom:340.266531pt;}
.y2b{bottom:340.746530pt;}
.yf1{bottom:342.826530pt;}
.yd7{bottom:347.307200pt;}
.y133{bottom:352.106526pt;}
.y144{bottom:353.386525pt;}
.y69{bottom:353.546525pt;}
.y105{bottom:360.426522pt;}
.y2a{bottom:361.226522pt;}
.yf0{bottom:363.306521pt;}
.y132{bottom:372.586518pt;}
.y143{bottom:373.866517pt;}
.y68{bottom:374.026517pt;}
.y104{bottom:380.426514pt;}
.y29{bottom:381.706514pt;}
.yef{bottom:383.786513pt;}
.y131{bottom:393.066509pt;}
.y142{bottom:394.346509pt;}
.y67{bottom:394.506509pt;}
.y103{bottom:400.426506pt;}
.y28{bottom:402.026506pt;}
.yb0{bottom:403.947200pt;}
.yee{bottom:404.106505pt;}
.yae{bottom:404.107200pt;}
.y130{bottom:413.546501pt;}
.y141{bottom:414.666501pt;}
.y66{bottom:414.826501pt;}
.y102{bottom:420.586498pt;}
.y27{bottom:422.506498pt;}
.yed{bottom:424.586497pt;}
.y12f{bottom:434.026493pt;}
.y140{bottom:435.146493pt;}
.y65{bottom:435.306493pt;}
.y101{bottom:440.586490pt;}
.y26{bottom:442.986489pt;}
.yec{bottom:445.066489pt;}
.y12e{bottom:454.506485pt;}
.yd6{bottom:455.626484pt;}
.y64{bottom:455.786484pt;}
.y100{bottom:460.586482pt;}
.y25{bottom:463.466481pt;}
.yeb{bottom:465.546480pt;}
.y12d{bottom:474.826477pt;}
.yd5{bottom:476.106476pt;}
.y63{bottom:476.266476pt;}
.yff{bottom:480.746474pt;}
.y24{bottom:483.946473pt;}
.yea{bottom:486.026472pt;}
.y12c{bottom:495.306469pt;}
.yd4{bottom:496.586468pt;}
.y62{bottom:496.746468pt;}
.yfe{bottom:500.746466pt;}
.y23{bottom:504.266465pt;}
.ye9{bottom:506.506464pt;}
.yad{bottom:512.266462pt;}
.y12b{bottom:515.786460pt;}
.yd3{bottom:516.906460pt;}
.y61{bottom:517.066460pt;}
.yfd{bottom:520.746458pt;}
.y22{bottom:524.746457pt;}
.yab{bottom:525.067200pt;}
.ye8{bottom:526.826456pt;}
.y12a{bottom:536.266452pt;}
.yd2{bottom:537.386452pt;}
.y60{bottom:537.546452pt;}
.yfc{bottom:540.906450pt;}
.yaa{bottom:541.386450pt;}
.y21{bottom:545.226449pt;}
.ye7{bottom:547.306448pt;}
.ya9{bottom:554.986445pt;}
.y129{bottom:556.746444pt;}
.yd1{bottom:557.866444pt;}
.y5f{bottom:558.026443pt;}
.yfb{bottom:560.906442pt;}
.y20{bottom:565.706440pt;}
.ya7{bottom:566.027200pt;}
.ye6{bottom:567.786440pt;}
.y128{bottom:577.066436pt;}
.yd0{bottom:578.346435pt;}
.y5e{bottom:578.506435pt;}
.ya5{bottom:579.627200pt;}
.yfa{bottom:580.906434pt;}
.y1f{bottom:586.986432pt;}
.ye5{bottom:588.266431pt;}
.ya3{bottom:593.227200pt;}
.y127{bottom:597.546428pt;}
.ycf{bottom:598.826427pt;}
.y5d{bottom:598.986427pt;}
.yf9{bottom:601.066426pt;}
.ya1{bottom:606.827200pt;}
.ye4{bottom:608.746423pt;}
.ya0{bottom:609.546423pt;}
.y1c{bottom:614.187200pt;}
.y1e{bottom:616.906420pt;}
.y126{bottom:618.026419pt;}
.yce{bottom:619.306419pt;}
.y5c{bottom:619.466419pt;}
.yf8{bottom:621.066418pt;}
.y9f{bottom:623.306417pt;}
.ye3{bottom:629.066415pt;}
.y9e{bottom:636.906412pt;}
.y125{bottom:638.506411pt;}
.ycd{bottom:639.626411pt;}
.y5b{bottom:639.786411pt;}
.yf7{bottom:641.066410pt;}
.y1a{bottom:643.947200pt;}
.ye1{bottom:646.827200pt;}
.y19{bottom:647.146408pt;}
.y9d{bottom:650.506406pt;}
.y17{bottom:651.947200pt;}
.y124{bottom:658.986403pt;}
.ycc{bottom:660.106403pt;}
.y5a{bottom:660.266403pt;}
.yf6{bottom:661.226402pt;}
.y9b{bottom:661.387200pt;}
.ye0{bottom:667.146400pt;}
.y99{bottom:674.987200pt;}
.y15{bottom:677.707200pt;}
.y123{bottom:679.466395pt;}
.ycb{bottom:680.586394pt;}
.y59{bottom:680.746394pt;}
.yf5{bottom:681.226394pt;}
.y97{bottom:688.747200pt;}
.y14{bottom:697.866388pt;}
.y122{bottom:699.786387pt;}
.yca{bottom:701.066386pt;}
.y58{bottom:701.226386pt;}
.y96{bottom:705.066385pt;}
.y95{bottom:718.666379pt;}
.y121{bottom:720.266379pt;}
.yf4{bottom:721.386378pt;}
.yc9{bottom:721.546378pt;}
.y57{bottom:721.706378pt;}
.y13{bottom:722.346378pt;}
.y93{bottom:729.547200pt;}
.y120{bottom:740.746370pt;}
.yc8{bottom:742.026370pt;}
.y56{bottom:742.186370pt;}
.y91{bottom:743.307200pt;}
.y11{bottom:749.546367pt;}
.y12{bottom:754.186365pt;}
.y8f{bottom:756.907200pt;}
.y11f{bottom:761.226362pt;}
.yc7{bottom:762.346362pt;}
.y55{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.y8e{bottom:773.226357pt;}
.y11e{bottom:781.706354pt;}
.yc6{bottom:782.826354pt;}
.y54{bottom:782.986353pt;}
.y8c{bottom:784.107200pt;}
.ye{bottom:794.346349pt;}
.y8a{bottom:797.707200pt;}
.y11d{bottom:802.186346pt;}
.yc5{bottom:803.306345pt;}
.y53{bottom:803.466345pt;}
.y88{bottom:811.467200pt;}
.y15f{bottom:815.786340pt;}
.y11c{bottom:822.506338pt;}
.yc4{bottom:823.786337pt;}
.y52{bottom:823.946337pt;}
.y85{bottom:825.067200pt;}
.y87{bottom:827.786336pt;}
.yd{bottom:830.506334pt;}
.y15e{bottom:836.266332pt;}
.y11a{bottom:840.267200pt;}
.y84{bottom:841.386330pt;}
.yc3{bottom:844.266329pt;}
.y51{bottom:844.426329pt;}
.y83{bottom:854.986325pt;}
.y15d{bottom:856.586324pt;}
.yc2{bottom:864.746321pt;}
.y50{bottom:864.906321pt;}
.y81{bottom:865.867200pt;}
.yc{bottom:866.666320pt;}
.y156{bottom:877.066316pt;}
.y7f{bottom:880.267200pt;}
.yc1{bottom:885.066313pt;}
.y4f{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y15c{bottom:893.226309pt;}
.y155{bottom:898.826307pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y7e{bottom:905.546304pt;}
.y4e{bottom:905.706304pt;}
.y15b{bottom:912.426302pt;}
.y154{bottom:920.586298pt;}
.y7d{bottom:926.026296pt;}
.y4d{bottom:926.186296pt;}
.y15a{bottom:931.466294pt;}
.y47{bottom:934.667200pt;}
.y153{bottom:942.346290pt;}
.y7c{bottom:946.506288pt;}
.y4c{bottom:946.666288pt;}
.y46{bottom:948.426287pt;}
.y159{bottom:950.506286pt;}
.y152{bottom:964.266281pt;}
.y45{bottom:966.506280pt;}
.y7b{bottom:966.986280pt;}
.y4b{bottom:967.146280pt;}
.y158{bottom:969.706279pt;}
.y44{bottom:984.586273pt;}
.y151{bottom:986.026272pt;}
.y7a{bottom:987.306272pt;}
.y4a{bottom:987.466272pt;}
.y157{bottom:988.746271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y42{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y79{bottom:1007.786264pt;}
.y49{bottom:1007.946263pt;}
.y77{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y76{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h21{height:10.720000pt;}
.hb{height:12.000000pt;}
.h16{height:13.440000pt;}
.h23{height:13.600000pt;}
.h24{height:13.760000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1e{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1a{height:23.034366pt;}
.he{height:23.118741pt;}
.h1c{height:24.203115pt;}
.h25{height:28.075614pt;}
.h18{height:28.579676pt;}
.hc{height:28.684364pt;}
.h10{height:32.159987pt;}
.h17{height:36.304673pt;}
.h1b{height:38.387485pt;}
.h19{height:40.177171pt;}
.h6{height:42.656233pt;}
.hd{height:42.812483pt;}
.h12{height:42.843733pt;}
.h14{height:44.533732pt;}
.hf{height:44.593732pt;}
.h20{height:47.999981pt;}
.h8{height:48.406231pt;}
.h22{height:49.919980pt;}
.h2{height:52.320917pt;}
.h1f{height:56.159978pt;}
.ha{height:56.940602pt;}
.h1d{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w38{width:0.320000pt;}
.w18{width:1.920000pt;}
.w16{width:2.080000pt;}
.w35{width:2.880000pt;}
.w48{width:3.200000pt;}
.w3b{width:3.680000pt;}
.w40{width:3.840000pt;}
.w2c{width:4.000000pt;}
.w2{width:4.160000pt;}
.w28{width:4.320000pt;}
.wf{width:4.480000pt;}
.w2e{width:5.440000pt;}
.w1a{width:6.080000pt;}
.w4{width:6.240000pt;}
.w1d{width:6.400000pt;}
.w14{width:6.880000pt;}
.wc{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.w32{width:8.320000pt;}
.wb{width:8.480000pt;}
.w12{width:9.600000pt;}
.wa{width:10.880000pt;}
.w6{width:11.040000pt;}
.w25{width:12.000000pt;}
.w3e{width:13.280000pt;}
.w1f{width:13.440000pt;}
.w29{width:19.840000pt;}
.w19{width:20.000000pt;}
.w43{width:21.440000pt;}
.w5{width:22.080000pt;}
.w22{width:26.400000pt;}
.w3c{width:27.200000pt;}
.w1e{width:28.640000pt;}
.w39{width:30.240000pt;}
.w34{width:37.760000pt;}
.w20{width:37.920000pt;}
.w47{width:38.400000pt;}
.w10{width:38.560000pt;}
.w2d{width:38.720000pt;}
.w21{width:39.200000pt;}
.w2b{width:41.600000pt;}
.w31{width:43.200000pt;}
.w24{width:43.520000pt;}
.w44{width:47.360000pt;}
.w1b{width:48.320000pt;}
.w1c{width:49.600000pt;}
.w41{width:51.040000pt;}
.w15{width:55.840000pt;}
.w2a{width:59.200000pt;}
.w26{width:60.800000pt;}
.w37{width:60.960000pt;}
.w13{width:61.920000pt;}
.w3f{width:63.360000pt;}
.w1{width:65.760000pt;}
.w27{width:68.160000pt;}
.w3{width:68.800000pt;}
.wd{width:72.320000pt;}
.w17{width:80.160000pt;}
.w3d{width:86.400000pt;}
.w23{width:97.440000pt;}
.w42{width:120.640000pt;}
.w3a{width:146.880000pt;}
.w45{width:149.600000pt;}
.w36{width:170.240000pt;}
.w33{width:236.480000pt;}
.w2f{width:243.840000pt;}
.w49{width:246.400000pt;}
.w46{width:267.200000pt;}
.w30{width:288.000000pt;}
.we{width:372.480000pt;}
.w9{width:464.480000pt;}
.w11{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x21{left:99.359960pt;}
.xb{left:103.200000pt;}
.xd{left:116.159918pt;}
.x4b{left:133.920000pt;}
.x2d{left:135.200000pt;}
.x4c{left:136.800000pt;}
.x61{left:137.760000pt;}
.x46{left:140.320000pt;}
.x5a{left:147.200000pt;}
.x43{left:155.360000pt;}
.x3f{left:156.960000pt;}
.x28{left:158.080000pt;}
.x3a{left:161.600000pt;}
.x1d{left:167.200000pt;}
.x44{left:176.800000pt;}
.xe{left:178.079873pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x3b{left:193.600000pt;}
.x24{left:221.440000pt;}
.x10{left:230.880374pt;}
.x40{left:235.840000pt;}
.x29{left:242.240000pt;}
.x19{left:250.879900pt;}
.x1a{left:255.039898pt;}
.x30{left:263.039896pt;}
.x3c{left:264.160000pt;}
.x2e{left:266.880000pt;}
.x38{left:270.080000pt;}
.x2f{left:273.280000pt;}
.x35{left:276.800000pt;}
.x2a{left:298.080000pt;}
.x2b{left:302.080000pt;}
.x50{left:303.040000pt;}
.x4d{left:306.880000pt;}
.x36{left:323.200000pt;}
.x34{left:326.879866pt;}
.x31{left:327.840000pt;}
.x3d{left:328.960000pt;}
.x33{left:329.919868pt;}
.x41{left:332.160000pt;}
.x39{left:342.080000pt;}
.xa{left:344.799862pt;}
.x42{left:352.000000pt;}
.x3e{left:355.360000pt;}
.x32{left:356.480000pt;}
.x37{left:361.120000pt;}
.x4a{left:365.120318pt;}
.x45{left:380.160000pt;}
.x2c{left:382.240000pt;}
.x25{left:384.959846pt;}
.x5b{left:393.440000pt;}
.x23{left:411.200424pt;}
.x11{left:439.040697pt;}
.x51{left:449.920000pt;}
.x12{left:450.880689pt;}
.x52{left:453.600000pt;}
.x49{left:454.560000pt;}
.x53{left:456.480000pt;}
.x13{left:462.720681pt;}
.x14{left:474.400675pt;}
.x15{left:478.400672pt;}
.x54{left:483.680000pt;}
.x1{left:488.000000pt;}
.x26{left:489.111938pt;}
.x27{left:523.359791pt;}
.x16{left:525.600655pt;}
.x22{left:533.919786pt;}
.x1e{left:539.680000pt;}
.x17{left:541.280592pt;}
.x1f{left:544.160000pt;}
.x47{left:551.360000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x1b{left:559.200000pt;}
.x55{left:574.560000pt;}
.x20{left:582.719767pt;}
.x18{left:592.319763pt;}
.x56{left:611.200000pt;}
.x5c{left:616.480000pt;}
.x5e{left:617.919753pt;}
.x4e{left:621.280000pt;}
.x57{left:624.480000pt;}
.x4{left:626.720000pt;}
.x58{left:628.960000pt;}
.x5d{left:637.920000pt;}
.x5{left:642.080000pt;}
.x5f{left:649.440000pt;}
.x60{left:653.920000pt;}
.x6{left:664.160000pt;}
.x7{left:675.200000pt;}
.x4f{left:682.240000pt;}
.x8{left:686.240000pt;}
.x59{left:692.320000pt;}
.x1c{left:693.600000pt;}
.x48{left:695.360000pt;}
}




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