
    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_bdd4011304f9663faf8622d0.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_1ff1c9eac1931ec9ef56442e.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_df0aa9e79eb020a2c8bda9e8.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_62e5c0807f45b045c5d7d754.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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c58f075b6b8a21adea2a57ff.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2eebaf84deb3a2f13ccfb133.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_38fc7a2575e85927cefe1682.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f883d0806722d9832bcfda64.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f1f2e613a7e8cc4488116e2a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a27f6e5f66821f222c94136f.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_bdb1b9059a74d59019f748a2.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_89ff4ba0dbad030b3dde6648.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_79ad25c9d9a86a89b4681c87.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2f32580aa64fe6d27c76d4ff.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e5a87e902c6ea194b15378a7.woff')format("woff");}.ff13{font-family:ff13;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,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);}
.m9{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);}
.mb{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);}
.m8{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);}
.mc{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);}
.m7{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);}
.m6{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);}
.ma{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;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010553px;}
.ls1{letter-spacing:0.010641px;}
.ls0{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.073080px;}
.ls7{letter-spacing:0.254220px;}
.ls6{letter-spacing:0.341340px;}
.ls8{letter-spacing:1.336019px;}
.ls9{letter-spacing:1.550219px;}
.ls5{letter-spacing:1.633619px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-18.021275px;}
.ws2{word-spacing:-17.999993px;}
.ws5{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-547.135101px;}
._d{margin-left:-468.836001px;}
._7{margin-left:-388.938941px;}
._2{margin-left:-292.593551px;}
._c{margin-left:-228.794767px;}
._3{margin-left:-218.721581px;}
._a{margin-left:-210.657584px;}
._6{margin-left:-86.608903px;}
._b{margin-left:-68.608591px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._9{margin-left:-16.559201px;}
._1{margin-left:-1.950739px;}
._5{width:1.438370px;}
._13{width:2.788632px;}
._17{width:4.580508px;}
._16{width:5.978672px;}
._18{width:7.286287px;}
._14{width:8.363805px;}
._15{width:9.526723px;}
._1f{width:10.562389px;}
._19{width:11.862720px;}
._1e{width:14.530690px;}
._26{width:15.688327px;}
._28{width:16.732902px;}
._29{width:17.878213px;}
._11{width:19.369145px;}
._10{width:20.847484px;}
._12{width:22.047376px;}
._22{width:23.580996px;}
._24{width:25.584977px;}
._1d{width:26.855990px;}
._1a{width:27.921133px;}
._1b{width:29.265218px;}
._23{width:30.957609px;}
._f{width:32.630109px;}
._e{width:33.687660px;}
._1c{width:35.207928px;}
._27{width:36.745839px;}
._20{width:37.987140px;}
._21{width:39.014815px;}
._33{width:40.302045px;}
._2c{width:41.696023px;}
._2b{width:42.745216px;}
._37{width:43.787955px;}
._25{width:45.070469px;}
._38{width:46.690147px;}
._36{width:48.153809px;}
._44{width:49.354224px;}
._3d{width:50.384176px;}
._2a{width:52.728535px;}
._32{width:53.966531px;}
._3e{width:55.245187px;}
._31{width:56.455297px;}
._2d{width:58.100170px;}
._2e{width:59.290778px;}
._35{width:60.721595px;}
._3f{width:62.100970px;}
._30{width:63.634020px;}
._2f{width:64.803371px;}
._42{width:69.509851px;}
._43{width:71.348646px;}
._39{width:73.831425px;}
._3a{width:78.538446px;}
._3b{width:79.897257px;}
._40{width:86.693450px;}
._41{width:88.118011px;}
._3c{width:103.316625px;}
._34{width:635.347546px;}
.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;}
.fsb{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fsd{font-size:45.359982px;}
.fs6{font-size:48.239981px;}
.fsf{font-size:51.119980px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4f{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y15e{bottom:1.798977px;}
.y164{bottom:1.979183px;}
.y161{bottom:2.159080px;}
.ybe{bottom:3.059035px;}
.yc0{bottom:3.059043px;}
.y103{bottom:3.059100px;}
.y1d{bottom:3.059110px;}
.y107{bottom:3.059165px;}
.y8a{bottom:3.059180px;}
.yf6{bottom:3.059232px;}
.y150{bottom:3.059249px;}
.yf9{bottom:3.059287px;}
.yfb{bottom:3.059297px;}
.yb6{bottom:3.059309px;}
.y10{bottom:3.239055px;}
.y18{bottom:3.599092px;}
.y1b{bottom:3.599096px;}
.y6{bottom:4.138948px;}
.yb8{bottom:4.319309px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y16{bottom:4.859080px;}
.y4a{bottom:6.478948px;}
.y80{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.ybc{bottom:115.680254px;}
.y9d{bottom:116.580253px;}
.y15b{bottom:117.300253px;}
.y12d{bottom:121.440251px;}
.y7b{bottom:121.619951px;}
.y7d{bottom:121.620251px;}
.y3a{bottom:122.339951px;}
.y11a{bottom:122.520251px;}
.ye1{bottom:122.880251px;}
.y169{bottom:124.139950px;}
.y101{bottom:125.220250px;}
.y172{bottom:126.479949px;}
.y48{bottom:133.319947px;}
.ybb{bottom:138.720245px;}
.y9c{bottom:139.620244px;}
.y14e{bottom:141.240244px;}
.y15a{bottom:141.780243px;}
.y39{bottom:143.039943px;}
.y12c{bottom:144.480242px;}
.y7a{bottom:144.659942px;}
.y7c{bottom:144.660242px;}
.y119{bottom:145.560242px;}
.ye0{bottom:146.100242px;}
.y168{bottom:147.179941px;}
.y100{bottom:148.260241px;}
.y171{bottom:148.799940px;}
.y47{bottom:156.359937px;}
.yba{bottom:161.759935px;}
.y9b{bottom:162.659935px;}
.y38{bottom:163.739935px;}
.y14d{bottom:165.719934px;}
.y159{bottom:166.439933px;}
.y12b{bottom:167.519933px;}
.y79{bottom:167.699933px;}
.y118{bottom:167.879933px;}
.ydf{bottom:169.499932px;}
.y167{bottom:170.219932px;}
.y170{bottom:171.119932px;}
.yff{bottom:171.299931px;}
.y46{bottom:179.399928px;}
.yb9{bottom:183.359927px;}
.y37{bottom:184.439926px;}
.y9a{bottom:185.519926px;}
.y14c{bottom:190.199924px;}
.y12a{bottom:190.379924px;}
.y78{bottom:190.559924px;}
.y158{bottom:190.919924px;}
.yde{bottom:192.719923px;}
.y166{bottom:193.259923px;}
.yfe{bottom:194.339922px;}
.y45{bottom:202.259919px;}
.y36{bottom:205.139918px;}
.y99{bottom:208.559917px;}
.y129{bottom:213.419915px;}
.y77{bottom:213.599915px;}
.y117{bottom:213.959914px;}
.yfd{bottom:214.679914px;}
.y14b{bottom:214.859914px;}
.y157{bottom:215.399914px;}
.y16f{bottom:215.579914px;}
.ydd{bottom:216.119914px;}
.yb7{bottom:223.860600px;}
.yb5{bottom:225.120600px;}
.y44{bottom:225.299910px;}
.y35{bottom:225.839910px;}
.y98{bottom:231.599907px;}
.yfc{bottom:235.199906px;}
.y128{bottom:236.459905px;}
.y76{bottom:236.639905px;}
.y116{bottom:237.539905px;}
.y16e{bottom:237.719905px;}
.y165{bottom:239.159904px;}
.y14a{bottom:239.339904px;}
.ydc{bottom:239.519904px;}
.y156{bottom:240.059904px;}
.y34{bottom:246.539901px;}
.yb4{bottom:248.159901px;}
.y43{bottom:248.339901px;}
.y97{bottom:254.639898px;}
.yfa{bottom:255.180600px;}
.y127{bottom:259.499896px;}
.y75{bottom:259.679896px;}
.y115{bottom:260.939896px;}
.ydb{bottom:262.739895px;}
.y149{bottom:263.819894px;}
.y155{bottom:264.539894px;}
.y33{bottom:267.239893px;}
.y42{bottom:271.379891px;}
.y96{bottom:275.699890px;}
.yf8{bottom:278.220600px;}
.y126{bottom:282.539887px;}
.y74{bottom:282.719887px;}
.y16d{bottom:283.979886px;}
.y114{bottom:284.339886px;}
.yda{bottom:286.139886px;}
.y32{bottom:287.939885px;}
.y148{bottom:288.479885px;}
.y154{bottom:289.019884px;}
.y41{bottom:294.419882px;}
.y95{bottom:296.759881px;}
.yf7{bottom:301.079880px;}
.y125{bottom:305.579878px;}
.y73{bottom:305.759878px;}
.y16c{bottom:307.019877px;}
.y113{bottom:307.919877px;}
.y31{bottom:308.639877px;}
.yd9{bottom:309.359876px;}
.y153{bottom:312.239875px;}
.y147{bottom:312.959875px;}
.y40{bottom:317.279873px;}
.y94{bottom:319.799872px;}
.y124{bottom:328.439869px;}
.y72{bottom:328.619869px;}
.y30{bottom:329.339868px;}
.y16b{bottom:330.059868px;}
.y112{bottom:331.319867px;}
.yd8{bottom:332.759867px;}
.y3f{bottom:333.839866px;}
.y152{bottom:334.019866px;}
.y146{bottom:337.619865px;}
.y93{bottom:342.839863px;}
.y2f{bottom:350.039860px;}
.y123{bottom:351.479859px;}
.y71{bottom:351.659859px;}
.y16a{bottom:352.199859px;}
.y3e{bottom:354.539858px;}
.y111{bottom:354.719858px;}
.y151{bottom:355.799858px;}
.yd7{bottom:356.159858px;}
.y145{bottom:362.099855px;}
.yb3{bottom:363.719855px;}
.y92{bottom:365.879854px;}
.y2e{bottom:370.739852px;}
.y122{bottom:374.519850px;}
.y70{bottom:374.699850px;}
.y3d{bottom:375.239850px;}
.y14f{bottom:375.600600px;}
.y110{bottom:378.299849px;}
.yd6{bottom:379.379848px;}
.y144{bottom:386.579845px;}
.y91{bottom:388.919844px;}
.y3c{bottom:395.939842px;}
.y121{bottom:397.559841px;}
.y6f{bottom:397.739841px;}
.y2d{bottom:397.919841px;}
.y10f{bottom:401.699839px;}
.yd5{bottom:402.779839px;}
.y143{bottom:411.239836px;}
.y90{bottom:411.779835px;}
.y3b{bottom:416.639833px;}
.yf5{bottom:416.820600px;}
.y120{bottom:420.599832px;}
.y2c{bottom:420.779832px;}
.y10e{bottom:425.099830px;}
.yd4{bottom:425.999830px;}
.y8f{bottom:434.819826px;}
.y142{bottom:435.719826px;}
.y2b{bottom:436.979825px;}
.yf4{bottom:439.859824px;}
.y2a{bottom:440.759824px;}
.y11f{bottom:443.639823px;}
.y6e{bottom:443.819822px;}
.y10d{bottom:448.679821px;}
.yd3{bottom:449.399820px;}
.y8e{bottom:457.859817px;}
.y141{bottom:460.199816px;}
.y29{bottom:461.279815px;}
.y11e{bottom:466.499813px;}
.y6d{bottom:466.679813px;}
.y10c{bottom:472.079811px;}
.yd2{bottom:472.799811px;}
.yb2{bottom:479.459808px;}
.y8d{bottom:480.899808px;}
.y28{bottom:484.319806px;}
.y140{bottom:484.859806px;}
.y11d{bottom:489.539804px;}
.y6c{bottom:489.719804px;}
.y10b{bottom:495.479802px;}
.yd1{bottom:496.019802px;}
.y8c{bottom:503.939798px;}
.y27{bottom:507.359797px;}
.y13f{bottom:509.339796px;}
.y11c{bottom:512.579795px;}
.y6b{bottom:512.759795px;}
.y199{bottom:513.479795px;}
.y10a{bottom:518.879792px;}
.yd0{bottom:519.419792px;}
.y8b{bottom:526.979789px;}
.y26{bottom:530.399788px;}
.y13e{bottom:533.819786px;}
.y11b{bottom:535.619786px;}
.y6a{bottom:535.799786px;}
.y198{bottom:536.339785px;}
.y163{bottom:540.480600px;}
.y109{bottom:542.099783px;}
.ycf{bottom:542.639783px;}
.y89{bottom:546.780600px;}
.y25{bottom:553.259779px;}
.y13d{bottom:558.479777px;}
.yf3{bottom:558.659777px;}
.y69{bottom:558.839776px;}
.y197{bottom:559.379776px;}
.y162{bottom:563.159775px;}
.y108{bottom:565.139774px;}
.yce{bottom:566.039774px;}
.y24{bottom:576.299769px;}
.yf2{bottom:581.519767px;}
.y68{bottom:581.699767px;}
.y13c{bottom:582.959767px;}
.y106{bottom:585.120600px;}
.ycd{bottom:589.439764px;}
.yb1{bottom:598.439761px;}
.y23{bottom:599.339760px;}
.y18a{bottom:603.659759px;}
.yf1{bottom:604.559758px;}
.y67{bottom:604.739758px;}
.y13b{bottom:607.439757px;}
.y105{bottom:608.159757px;}
.y196{bottom:612.479755px;}
.ycc{bottom:612.659755px;}
.yb0{bottom:621.659751px;}
.y22{bottom:622.379751px;}
.y189{bottom:625.979750px;}
.yf0{bottom:627.599749px;}
.y66{bottom:627.779749px;}
.y13a{bottom:632.099747px;}
.y195{bottom:635.519746px;}
.ycb{bottom:636.059746px;}
.yaf{bottom:645.059742px;}
.y21{bottom:645.419742px;}
.y188{bottom:648.119741px;}
.yef{bottom:650.639740px;}
.y65{bottom:650.819740px;}
.y139{bottom:656.579737px;}
.y194{bottom:658.559737px;}
.yca{bottom:659.279736px;}
.yae{bottom:668.279733px;}
.y20{bottom:668.459733px;}
.y187{bottom:669.899732px;}
.yee{bottom:673.679731px;}
.y64{bottom:673.859730px;}
.y193{bottom:680.159728px;}
.y138{bottom:681.059728px;}
.yc9{bottom:682.679727px;}
.y186{bottom:691.499723px;}
.yad{bottom:691.679723px;}
.y1f{bottom:692.399723px;}
.yed{bottom:696.719721px;}
.y63{bottom:696.899721px;}
.y192{bottom:701.939719px;}
.y137{bottom:705.719718px;}
.yc8{bottom:706.079718px;}
.y185{bottom:713.639715px;}
.yac{bottom:715.079714px;}
.yec{bottom:719.579712px;}
.y62{bottom:719.759712px;}
.y1c{bottom:722.820600px;}
.y191{bottom:724.979710px;}
.y1e{bottom:725.879710px;}
.y104{bottom:726.779709px;}
.yc7{bottom:729.299708px;}
.y136{bottom:730.199708px;}
.y184{bottom:735.959706px;}
.yab{bottom:738.299705px;}
.yeb{bottom:742.619703px;}
.y61{bottom:742.799703px;}
.y102{bottom:746.760600px;}
.y190{bottom:748.019701px;}
.yc6{bottom:752.699699px;}
.y135{bottom:754.679698px;}
.y1a{bottom:756.480600px;}
.y183{bottom:757.199697px;}
.y19{bottom:760.079696px;}
.yaa{bottom:761.699695px;}
.y17{bottom:765.480600px;}
.yea{bottom:765.659694px;}
.y60{bottom:765.839694px;}
.y18f{bottom:769.619692px;}
.yc5{bottom:775.919690px;}
.y182{bottom:777.899689px;}
.y134{bottom:779.339688px;}
.ya9{bottom:784.919686px;}
.ye9{bottom:788.699685px;}
.y5f{bottom:788.879684px;}
.y18e{bottom:791.399683px;}
.y15{bottom:794.460600px;}
.y160{bottom:797.160600px;}
.yc4{bottom:799.319680px;}
.y181{bottom:800.219680px;}
.y133{bottom:803.819678px;}
.ya8{bottom:808.319677px;}
.ye8{bottom:811.739675px;}
.y5e{bottom:811.919675px;}
.y18d{bottom:814.439674px;}
.y14{bottom:817.139673px;}
.y15f{bottom:820.019672px;}
.y180{bottom:822.359671px;}
.yc3{bottom:822.719671px;}
.y132{bottom:828.299669px;}
.ya7{bottom:831.719667px;}
.ye7{bottom:834.779666px;}
.y5d{bottom:834.959666px;}
.y18c{bottom:837.479665px;}
.y11{bottom:839.820600px;}
.y17f{bottom:844.679662px;}
.yc2{bottom:845.759662px;}
.y13{bottom:849.899660px;}
.y131{bottom:852.959659px;}
.ya6{bottom:854.939658px;}
.ye6{bottom:857.639657px;}
.y5c{bottom:857.819657px;}
.y18b{bottom:859.079656px;}
.yf{bottom:859.980600px;}
.y17e{bottom:866.999653px;}
.yc1{bottom:868.799652px;}
.y130{bottom:877.439649px;}
.ya5{bottom:878.339649px;}
.ye5{bottom:880.679648px;}
.y5b{bottom:880.859648px;}
.ybf{bottom:888.780600px;}
.y17d{bottom:889.139644px;}
.ye{bottom:893.639643px;}
.ya4{bottom:901.559639px;}
.y12f{bottom:902.099639px;}
.ye4{bottom:903.719639px;}
.y5a{bottom:903.899638px;}
.ybd{bottom:908.580600px;}
.y17c{bottom:911.459635px;}
.ya3{bottom:924.959630px;}
.y12e{bottom:926.579629px;}
.ye3{bottom:926.759629px;}
.y59{bottom:926.939629px;}
.y17b{bottom:933.599627px;}
.yd{bottom:934.319626px;}
.ya2{bottom:948.359621px;}
.ye2{bottom:949.799620px;}
.y58{bottom:949.979620px;}
.y17a{bottom:955.919618px;}
.ya1{bottom:971.579611px;}
.y88{bottom:972.839611px;}
.y57{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y179{bottom:978.059609px;}
.ya0{bottom:994.979602px;}
.y87{bottom:995.699602px;}
.y56{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y178{bottom:1000.379600px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y9f{bottom:1018.199593px;}
.y86{bottom:1018.739593px;}
.y55{bottom:1018.919592px;}
.y177{bottom:1022.519591px;}
.y9e{bottom:1041.599583px;}
.y85{bottom:1041.779583px;}
.y54{bottom:1041.959583px;}
.y176{bottom:1044.839582px;}
.y4e{bottom:1051.500600px;}
.y15d{bottom:1056.720600px;}
.y84{bottom:1064.819574px;}
.y53{bottom:1064.999574px;}
.y4d{bottom:1066.979573px;}
.y175{bottom:1067.159573px;}
.y15c{bottom:1079.219568px;}
.y4c{bottom:1087.319565px;}
.y83{bottom:1087.859565px;}
.y52{bottom:1088.039565px;}
.y174{bottom:1089.299564px;}
.y4b{bottom:1107.659557px;}
.y82{bottom:1110.719556px;}
.y51{bottom:1110.899556px;}
.y173{bottom:1111.619555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y49{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y81{bottom:1133.759546px;}
.y50{bottom:1133.939546px;}
.y7f{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y7e{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h22{height:12.060000px;}
.hc{height:13.500000px;}
.h17{height:15.120000px;}
.h27{height:15.480000px;}
.h25{height:16.380000px;}
.h2a{height:18.000000px;}
.h2c{height:18.180000px;}
.h2b{height:18.360000px;}
.h14{height:18.720000px;}
.h9{height:18.773430px;}
.h16{height:18.900000px;}
.he{height:20.160000px;}
.h12{height:20.340000px;}
.h5{height:20.520000px;}
.h1f{height:23.760000px;}
.h1{height:24.480000px;}
.h1b{height:25.913662px;}
.h10{height:26.008583px;}
.h1d{height:27.228505px;}
.h28{height:31.585065px;}
.h19{height:32.152136px;}
.hd{height:32.269909px;}
.h24{height:34.307916px;}
.h11{height:36.179986px;}
.h26{height:36.486196px;}
.h29{height:38.664477px;}
.h18{height:40.842757px;}
.h1c{height:43.185920px;}
.h1a{height:45.199318px;}
.h6{height:47.988262px;}
.hf{height:48.164043px;}
.h13{height:48.199199px;}
.h15{height:50.100449px;}
.h21{height:53.999978px;}
.h8{height:54.457009px;}
.h23{height:56.159978px;}
.h2{height:58.861031px;}
.h20{height:63.179975px;}
.ha{height:64.058178px;}
.hb{height:67.696970px;}
.h1e{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w29{width:3.060000px;}
.w2f{width:3.240000px;}
.w2c{width:3.960000px;}
.w1f{width:4.500000px;}
.w2{width:4.680000px;}
.w24{width:4.860000px;}
.w1d{width:5.040000px;}
.w14{width:5.220000px;}
.w28{width:5.400000px;}
.w1a{width:6.480000px;}
.w4{width:7.020000px;}
.w26{width:7.740000px;}
.w37{width:7.920000px;}
.wf{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.we{width:9.540000px;}
.w18{width:10.800000px;}
.w21{width:12.060000px;}
.wd{width:12.240000px;}
.w6{width:12.420000px;}
.w38{width:15.480000px;}
.w36{width:21.600000px;}
.w31{width:22.320000px;}
.w5{width:24.840000px;}
.w34{width:25.920000px;}
.w16{width:39.420000px;}
.w2e{width:42.120000px;}
.w33{width:42.840000px;}
.w1c{width:43.020000px;}
.w2b{width:43.560000px;}
.w19{width:43.920000px;}
.w20{width:51.300000px;}
.w11{width:51.480000px;}
.w12{width:56.340000px;}
.w30{width:68.940000px;}
.w1{width:73.980000px;}
.w15{width:74.880000px;}
.w3{width:77.400000px;}
.w10{width:81.360000px;}
.w2a{width:104.580000px;}
.w25{width:128.880000px;}
.w32{width:129.600000px;}
.wa{width:130.860000px;}
.w27{width:151.200000px;}
.w23{width:152.640000px;}
.w13{width:166.860000px;}
.wc{width:177.480000px;}
.w9{width:178.020000px;}
.w35{width:180.360000px;}
.wb{width:214.740000px;}
.w22{width:260.640000px;}
.w1b{width:273.600000px;}
.w1e{width:275.940000px;}
.w2d{width:276.480000px;}
.w39{width:279.000000px;}
.w17{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x29{left:111.779955px;}
.xb{left:116.100000px;}
.x3d{left:150.300000px;}
.x2f{left:152.100000px;}
.x3e{left:153.540000px;}
.x30{left:158.580000px;}
.x35{left:171.540000px;}
.x43{left:180.180000px;}
.xd{left:181.259878px;}
.x44{left:185.220000px;}
.x22{left:188.460000px;}
.xc{left:206.999917px;}
.x3f{left:222.480000px;}
.xe{left:236.159846px;}
.x1d{left:237.420000px;}
.x23{left:239.940000px;}
.x40{left:244.800000px;}
.x2b{left:249.120000px;}
.x33{left:265.680000px;}
.x1b{left:285.119886px;}
.x1c{left:289.800000px;}
.x24{left:296.280000px;}
.x45{left:365.580000px;}
.xf{left:373.139775px;}
.x41{left:374.400000px;}
.x10{left:395.279746px;}
.xa{left:403.559839px;}
.x42{left:423.360629px;}
.x34{left:427.680000px;}
.x46{left:430.379828px;}
.x2c{left:433.079827px;}
.x1e{left:452.160000px;}
.x25{left:463.140000px;}
.x26{left:468.360000px;}
.x47{left:484.380000px;}
.x11{left:492.479775px;}
.x12{left:505.799767px;}
.x48{left:507.780000px;}
.x32{left:510.840000px;}
.x13{left:519.119758px;}
.x19{left:522.719791px;}
.x20{left:526.672289px;}
.x2d{left:529.010938px;}
.x14{left:532.259750px;}
.x15{left:536.759747px;}
.x27{left:543.240000px;}
.x1{left:549.000000px;}
.x28{left:582.659767px;}
.x2e{left:588.779764px;}
.x16{left:589.859728px;}
.x31{left:597.779762px;}
.x2a{left:600.659760px;}
.x17{left:607.499658px;}
.x36{left:619.920000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x1f{left:629.100000px;}
.x37{left:641.340000px;}
.x4b{left:644.939742px;}
.x39{left:646.020000px;}
.x3a{left:658.080000px;}
.x3b{left:661.140000px;}
.x18{left:664.919734px;}
.x4c{left:666.900000px;}
.x4{left:705.060000px;}
.x5{left:722.340000px;}
.x49{left:733.319707px;}
.x4a{left:734.580000px;}
.x1a{left:738.359705px;}
.x6{left:747.180000px;}
.x7{left:759.600000px;}
.x3c{left:765.540000px;}
.x38{left:769.860000px;}
.x8{left:772.020000px;}
.x21{left:780.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009381pt;}
.ls1{letter-spacing:0.009459pt;}
.ls0{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.064960pt;}
.ls7{letter-spacing:0.225973pt;}
.ls6{letter-spacing:0.303413pt;}
.ls8{letter-spacing:1.187573pt;}
.ls9{letter-spacing:1.377973pt;}
.ls5{letter-spacing:1.452106pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-16.018911pt;}
.ws2{word-spacing:-15.999994pt;}
.ws5{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-486.342312pt;}
._d{margin-left:-416.743112pt;}
._7{margin-left:-345.723503pt;}
._2{margin-left:-260.083157pt;}
._c{margin-left:-203.373126pt;}
._3{margin-left:-194.419183pt;}
._a{margin-left:-187.251186pt;}
._6{margin-left:-76.985691pt;}
._b{margin-left:-60.985414pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._9{margin-left:-14.719290pt;}
._1{margin-left:-1.733990pt;}
._5{width:1.278551pt;}
._13{width:2.478784pt;}
._17{width:4.071563pt;}
._16{width:5.314375pt;}
._18{width:6.476699pt;}
._14{width:7.434494pt;}
._15{width:8.468198pt;}
._1f{width:9.388790pt;}
._19{width:10.544640pt;}
._1e{width:12.916169pt;}
._26{width:13.945179pt;}
._28{width:14.873691pt;}
._29{width:15.891745pt;}
._11{width:17.217017pt;}
._10{width:18.531097pt;}
._12{width:19.597667pt;}
._22{width:20.960885pt;}
._24{width:22.742201pt;}
._1d{width:23.871991pt;}
._1a{width:24.818785pt;}
._1b{width:26.013527pt;}
._23{width:27.517875pt;}
._f{width:29.004542pt;}
._e{width:29.944586pt;}
._1c{width:31.295936pt;}
._27{width:32.662968pt;}
._20{width:33.766346pt;}
._21{width:34.679836pt;}
._33{width:35.824040pt;}
._2c{width:37.063132pt;}
._2b{width:37.995748pt;}
._37{width:38.922627pt;}
._25{width:40.062639pt;}
._38{width:41.502353pt;}
._36{width:42.803386pt;}
._44{width:43.870421pt;}
._3d{width:44.785934pt;}
._2a{width:46.869809pt;}
._32{width:47.970249pt;}
._3e{width:49.106833pt;}
._31{width:50.182486pt;}
._2d{width:51.644595pt;}
._2e{width:52.702914pt;}
._35{width:53.974751pt;}
._3f{width:55.200863pt;}
._30{width:56.563573pt;}
._2f{width:57.602996pt;}
._42{width:61.786534pt;}
._43{width:63.421018pt;}
._39{width:65.627933pt;}
._3a{width:69.811952pt;}
._3b{width:71.019784pt;}
._40{width:77.060844pt;}
._41{width:78.327120pt;}
._3c{width:91.837000pt;}
._34{width:564.753374pt;}
.fs3{font-size:15.999994pt;}
.fsb{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fsd{font-size:40.319984pt;}
.fs6{font-size:42.879983pt;}
.fsf{font-size:45.439982pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4f{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:1.599090pt;}
.y164{bottom:1.759274pt;}
.y161{bottom:1.919182pt;}
.ybe{bottom:2.719143pt;}
.yc0{bottom:2.719150pt;}
.y103{bottom:2.719200pt;}
.y1d{bottom:2.719209pt;}
.y107{bottom:2.719258pt;}
.y8a{bottom:2.719271pt;}
.yf6{bottom:2.719317pt;}
.y150{bottom:2.719332pt;}
.yf9{bottom:2.719367pt;}
.yfb{bottom:2.719375pt;}
.yb6{bottom:2.719386pt;}
.y10{bottom:2.879160pt;}
.y18{bottom:3.199193pt;}
.y1b{bottom:3.199196pt;}
.y6{bottom:3.679065pt;}
.yb8{bottom:3.839386pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y16{bottom:4.319182pt;}
.y4a{bottom:5.759065pt;}
.y80{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.ybc{bottom:102.826892pt;}
.y9d{bottom:103.626892pt;}
.y15b{bottom:104.266892pt;}
.y12d{bottom:107.946890pt;}
.y7b{bottom:108.106623pt;}
.y7d{bottom:108.106890pt;}
.y3a{bottom:108.746623pt;}
.y11a{bottom:108.906890pt;}
.ye1{bottom:109.226890pt;}
.y169{bottom:110.346623pt;}
.y101{bottom:111.306889pt;}
.y172{bottom:112.426622pt;}
.y48{bottom:118.506619pt;}
.ybb{bottom:123.306884pt;}
.y9c{bottom:124.106884pt;}
.y14e{bottom:125.546883pt;}
.y15a{bottom:126.026883pt;}
.y39{bottom:127.146616pt;}
.y12c{bottom:128.426882pt;}
.y7a{bottom:128.586615pt;}
.y7c{bottom:128.586882pt;}
.y119{bottom:129.386882pt;}
.ye0{bottom:129.866881pt;}
.y168{bottom:130.826614pt;}
.y100{bottom:131.786881pt;}
.y171{bottom:132.266614pt;}
.y47{bottom:138.986611pt;}
.yba{bottom:143.786609pt;}
.y9b{bottom:144.586609pt;}
.y38{bottom:145.546608pt;}
.y14d{bottom:147.306608pt;}
.y159{bottom:147.946607pt;}
.y12b{bottom:148.906607pt;}
.y79{bottom:149.066607pt;}
.y118{bottom:149.226607pt;}
.ydf{bottom:150.666606pt;}
.y167{bottom:151.306606pt;}
.y170{bottom:152.106606pt;}
.yff{bottom:152.266606pt;}
.y46{bottom:159.466603pt;}
.yb9{bottom:162.986601pt;}
.y37{bottom:163.946601pt;}
.y9a{bottom:164.906601pt;}
.y14c{bottom:169.066599pt;}
.y12a{bottom:169.226599pt;}
.y78{bottom:169.386599pt;}
.y158{bottom:169.706599pt;}
.yde{bottom:171.306598pt;}
.y166{bottom:171.786598pt;}
.yfe{bottom:172.746598pt;}
.y45{bottom:179.786595pt;}
.y36{bottom:182.346594pt;}
.y99{bottom:185.386593pt;}
.y129{bottom:189.706591pt;}
.y77{bottom:189.866591pt;}
.y117{bottom:190.186591pt;}
.yfd{bottom:190.826590pt;}
.y14b{bottom:190.986590pt;}
.y157{bottom:191.466590pt;}
.y16f{bottom:191.626590pt;}
.ydd{bottom:192.106590pt;}
.yb7{bottom:198.987200pt;}
.yb5{bottom:200.107200pt;}
.y44{bottom:200.266587pt;}
.y35{bottom:200.746586pt;}
.y98{bottom:205.866584pt;}
.yfc{bottom:209.066583pt;}
.y128{bottom:210.186583pt;}
.y76{bottom:210.346583pt;}
.y116{bottom:211.146582pt;}
.y16e{bottom:211.306582pt;}
.y165{bottom:212.586582pt;}
.y14a{bottom:212.746582pt;}
.ydc{bottom:212.906582pt;}
.y156{bottom:213.386581pt;}
.y34{bottom:219.146579pt;}
.yb4{bottom:220.586578pt;}
.y43{bottom:220.746578pt;}
.y97{bottom:226.346576pt;}
.yfa{bottom:226.827200pt;}
.y127{bottom:230.666574pt;}
.y75{bottom:230.826574pt;}
.y115{bottom:231.946574pt;}
.ydb{bottom:233.546573pt;}
.y149{bottom:234.506573pt;}
.y155{bottom:235.146573pt;}
.y33{bottom:237.546572pt;}
.y42{bottom:241.226570pt;}
.y96{bottom:245.066569pt;}
.yf8{bottom:247.307200pt;}
.y126{bottom:251.146566pt;}
.y74{bottom:251.306566pt;}
.y16d{bottom:252.426566pt;}
.y114{bottom:252.746566pt;}
.yda{bottom:254.346565pt;}
.y32{bottom:255.946564pt;}
.y148{bottom:256.426564pt;}
.y154{bottom:256.906564pt;}
.y41{bottom:261.706562pt;}
.y95{bottom:263.786561pt;}
.yf7{bottom:267.626560pt;}
.y125{bottom:271.626558pt;}
.y73{bottom:271.786558pt;}
.y16c{bottom:272.906558pt;}
.y113{bottom:273.706557pt;}
.y31{bottom:274.346557pt;}
.yd9{bottom:274.986557pt;}
.y153{bottom:277.546556pt;}
.y147{bottom:278.186555pt;}
.y40{bottom:282.026554pt;}
.y94{bottom:284.266553pt;}
.y124{bottom:291.946550pt;}
.y72{bottom:292.106550pt;}
.y30{bottom:292.746550pt;}
.y16b{bottom:293.386549pt;}
.y112{bottom:294.506549pt;}
.yd8{bottom:295.786548pt;}
.y3f{bottom:296.746548pt;}
.y152{bottom:296.906548pt;}
.y146{bottom:300.106547pt;}
.y93{bottom:304.746545pt;}
.y2f{bottom:311.146542pt;}
.y123{bottom:312.426542pt;}
.y71{bottom:312.586542pt;}
.y16a{bottom:313.066541pt;}
.y3e{bottom:315.146541pt;}
.y111{bottom:315.306541pt;}
.y151{bottom:316.266540pt;}
.yd7{bottom:316.586540pt;}
.y145{bottom:321.866538pt;}
.yb3{bottom:323.306537pt;}
.y92{bottom:325.226537pt;}
.y2e{bottom:329.546535pt;}
.y122{bottom:332.906534pt;}
.y70{bottom:333.066533pt;}
.y3d{bottom:333.546533pt;}
.y14f{bottom:333.867200pt;}
.y110{bottom:336.266532pt;}
.yd6{bottom:337.226532pt;}
.y144{bottom:343.626529pt;}
.y91{bottom:345.706528pt;}
.y3c{bottom:351.946526pt;}
.y121{bottom:353.386525pt;}
.y6f{bottom:353.546525pt;}
.y2d{bottom:353.706525pt;}
.y10f{bottom:357.066524pt;}
.yd5{bottom:358.026523pt;}
.y143{bottom:365.546520pt;}
.y90{bottom:366.026520pt;}
.y3b{bottom:370.346519pt;}
.yf5{bottom:370.507200pt;}
.y120{bottom:373.866517pt;}
.y2c{bottom:374.026517pt;}
.y10e{bottom:377.866516pt;}
.yd4{bottom:378.666515pt;}
.y8f{bottom:386.506512pt;}
.y142{bottom:387.306512pt;}
.y2b{bottom:388.426511pt;}
.yf4{bottom:390.986510pt;}
.y2a{bottom:391.786510pt;}
.y11f{bottom:394.346509pt;}
.y6e{bottom:394.506509pt;}
.y10d{bottom:398.826507pt;}
.yd3{bottom:399.466507pt;}
.y8e{bottom:406.986504pt;}
.y141{bottom:409.066503pt;}
.y29{bottom:410.026503pt;}
.y11e{bottom:414.666501pt;}
.y6d{bottom:414.826501pt;}
.y10c{bottom:419.626499pt;}
.yd2{bottom:420.266499pt;}
.yb2{bottom:426.186496pt;}
.y8d{bottom:427.466496pt;}
.y28{bottom:430.506494pt;}
.y140{bottom:430.986494pt;}
.y11d{bottom:435.146493pt;}
.y6c{bottom:435.306493pt;}
.y10b{bottom:440.426490pt;}
.yd1{bottom:440.906490pt;}
.y8c{bottom:447.946487pt;}
.y27{bottom:450.986486pt;}
.y13f{bottom:452.746486pt;}
.y11c{bottom:455.626484pt;}
.y6b{bottom:455.786484pt;}
.y199{bottom:456.426484pt;}
.y10a{bottom:461.226482pt;}
.yd0{bottom:461.706482pt;}
.y8b{bottom:468.426479pt;}
.y26{bottom:471.466478pt;}
.y13e{bottom:474.506477pt;}
.y11b{bottom:476.106476pt;}
.y6a{bottom:476.266476pt;}
.y198{bottom:476.746476pt;}
.y163{bottom:480.427200pt;}
.y109{bottom:481.866474pt;}
.ycf{bottom:482.346474pt;}
.y89{bottom:486.027200pt;}
.y25{bottom:491.786470pt;}
.y13d{bottom:496.426468pt;}
.yf3{bottom:496.586468pt;}
.y69{bottom:496.746468pt;}
.y197{bottom:497.226468pt;}
.y162{bottom:500.586466pt;}
.y108{bottom:502.346466pt;}
.yce{bottom:503.146465pt;}
.y24{bottom:512.266462pt;}
.yf2{bottom:516.906460pt;}
.y68{bottom:517.066460pt;}
.y13c{bottom:518.186459pt;}
.y106{bottom:520.107200pt;}
.ycd{bottom:523.946457pt;}
.yb1{bottom:531.946454pt;}
.y23{bottom:532.746454pt;}
.y18a{bottom:536.586452pt;}
.yf1{bottom:537.386452pt;}
.y67{bottom:537.546452pt;}
.y13b{bottom:539.946451pt;}
.y105{bottom:540.586450pt;}
.y196{bottom:544.426449pt;}
.ycc{bottom:544.586449pt;}
.yb0{bottom:552.586446pt;}
.y22{bottom:553.226445pt;}
.y189{bottom:556.426444pt;}
.yf0{bottom:557.866444pt;}
.y66{bottom:558.026443pt;}
.y13a{bottom:561.866442pt;}
.y195{bottom:564.906441pt;}
.ycb{bottom:565.386441pt;}
.yaf{bottom:573.386437pt;}
.y21{bottom:573.706437pt;}
.y188{bottom:576.106436pt;}
.yef{bottom:578.346435pt;}
.y65{bottom:578.506435pt;}
.y139{bottom:583.626433pt;}
.y194{bottom:585.386433pt;}
.yca{bottom:586.026432pt;}
.yae{bottom:594.026429pt;}
.y20{bottom:594.186429pt;}
.y187{bottom:595.466428pt;}
.yee{bottom:598.826427pt;}
.y64{bottom:598.986427pt;}
.y193{bottom:604.586425pt;}
.y138{bottom:605.386425pt;}
.yc9{bottom:606.826424pt;}
.y186{bottom:614.666421pt;}
.yad{bottom:614.826421pt;}
.y1f{bottom:615.466420pt;}
.yed{bottom:619.306419pt;}
.y63{bottom:619.466419pt;}
.y192{bottom:623.946417pt;}
.y137{bottom:627.306416pt;}
.yc8{bottom:627.626416pt;}
.y185{bottom:634.346413pt;}
.yac{bottom:635.626412pt;}
.yec{bottom:639.626411pt;}
.y62{bottom:639.786411pt;}
.y1c{bottom:642.507200pt;}
.y191{bottom:644.426409pt;}
.y1e{bottom:645.226409pt;}
.y104{bottom:646.026408pt;}
.yc7{bottom:648.266407pt;}
.y136{bottom:649.066407pt;}
.y184{bottom:654.186405pt;}
.yab{bottom:656.266404pt;}
.yeb{bottom:660.106403pt;}
.y61{bottom:660.266403pt;}
.y102{bottom:663.787200pt;}
.y190{bottom:664.906401pt;}
.yc6{bottom:669.066399pt;}
.y135{bottom:670.826398pt;}
.y1a{bottom:672.427200pt;}
.y183{bottom:673.066397pt;}
.y19{bottom:675.626396pt;}
.yaa{bottom:677.066396pt;}
.y17{bottom:680.427200pt;}
.yea{bottom:680.586394pt;}
.y60{bottom:680.746394pt;}
.y18f{bottom:684.106393pt;}
.yc5{bottom:689.706391pt;}
.y182{bottom:691.466390pt;}
.y134{bottom:692.746390pt;}
.ya9{bottom:697.706388pt;}
.ye9{bottom:701.066386pt;}
.y5f{bottom:701.226386pt;}
.y18e{bottom:703.466385pt;}
.y15{bottom:706.187200pt;}
.y160{bottom:708.587200pt;}
.yc4{bottom:710.506382pt;}
.y181{bottom:711.306382pt;}
.y133{bottom:714.506381pt;}
.ya8{bottom:718.506379pt;}
.ye8{bottom:721.546378pt;}
.y5e{bottom:721.706378pt;}
.y18d{bottom:723.946377pt;}
.y14{bottom:726.346376pt;}
.y15f{bottom:728.906375pt;}
.y180{bottom:730.986374pt;}
.yc3{bottom:731.306374pt;}
.y132{bottom:736.266372pt;}
.ya7{bottom:739.306371pt;}
.ye7{bottom:742.026370pt;}
.y5d{bottom:742.186370pt;}
.y18c{bottom:744.426369pt;}
.y11{bottom:746.507200pt;}
.y17f{bottom:750.826366pt;}
.yc2{bottom:751.786366pt;}
.y13{bottom:755.466364pt;}
.y131{bottom:758.186363pt;}
.ya6{bottom:759.946363pt;}
.ye6{bottom:762.346362pt;}
.y5c{bottom:762.506362pt;}
.y18b{bottom:763.626361pt;}
.yf{bottom:764.427200pt;}
.y17e{bottom:770.666358pt;}
.yc1{bottom:772.266358pt;}
.y130{bottom:779.946355pt;}
.ya5{bottom:780.746354pt;}
.ye5{bottom:782.826354pt;}
.y5b{bottom:782.986353pt;}
.ybf{bottom:790.027200pt;}
.y17d{bottom:790.346351pt;}
.ye{bottom:794.346349pt;}
.ya4{bottom:801.386346pt;}
.y12f{bottom:801.866346pt;}
.ye4{bottom:803.306345pt;}
.y5a{bottom:803.466345pt;}
.ybd{bottom:807.627200pt;}
.y17c{bottom:810.186343pt;}
.ya3{bottom:822.186338pt;}
.y12e{bottom:823.626337pt;}
.ye3{bottom:823.786337pt;}
.y59{bottom:823.946337pt;}
.y17b{bottom:829.866335pt;}
.yd{bottom:830.506334pt;}
.ya2{bottom:842.986329pt;}
.ye2{bottom:844.266329pt;}
.y58{bottom:844.426329pt;}
.y17a{bottom:849.706327pt;}
.ya1{bottom:863.626321pt;}
.y88{bottom:864.746321pt;}
.y57{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y179{bottom:869.386319pt;}
.ya0{bottom:884.426313pt;}
.y87{bottom:885.066313pt;}
.y56{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y178{bottom:889.226311pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y9f{bottom:905.066305pt;}
.y86{bottom:905.546304pt;}
.y55{bottom:905.706304pt;}
.y177{bottom:908.906303pt;}
.y9e{bottom:925.866296pt;}
.y85{bottom:926.026296pt;}
.y54{bottom:926.186296pt;}
.y176{bottom:928.746295pt;}
.y4e{bottom:934.667200pt;}
.y15d{bottom:939.307200pt;}
.y84{bottom:946.506288pt;}
.y53{bottom:946.666288pt;}
.y4d{bottom:948.426287pt;}
.y175{bottom:948.586287pt;}
.y15c{bottom:959.306283pt;}
.y4c{bottom:966.506280pt;}
.y83{bottom:966.986280pt;}
.y52{bottom:967.146280pt;}
.y174{bottom:968.266279pt;}
.y4b{bottom:984.586273pt;}
.y82{bottom:987.306272pt;}
.y51{bottom:987.466272pt;}
.y173{bottom:988.106271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y49{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y81{bottom:1007.786264pt;}
.y50{bottom:1007.946263pt;}
.y7f{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y7e{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h22{height:10.720000pt;}
.hc{height:12.000000pt;}
.h17{height:13.440000pt;}
.h27{height:13.760000pt;}
.h25{height:14.560000pt;}
.h2a{height:16.000000pt;}
.h2c{height:16.160000pt;}
.h2b{height:16.320000pt;}
.h14{height:16.640000pt;}
.h9{height:16.687493pt;}
.h16{height:16.800000pt;}
.he{height:17.920000pt;}
.h12{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1f{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1b{height:23.034366pt;}
.h10{height:23.118741pt;}
.h1d{height:24.203115pt;}
.h28{height:28.075614pt;}
.h19{height:28.579676pt;}
.hd{height:28.684364pt;}
.h24{height:30.495925pt;}
.h11{height:32.159987pt;}
.h26{height:32.432175pt;}
.h29{height:34.368424pt;}
.h18{height:36.304673pt;}
.h1c{height:38.387485pt;}
.h1a{height:40.177171pt;}
.h6{height:42.656233pt;}
.hf{height:42.812483pt;}
.h13{height:42.843733pt;}
.h15{height:44.533732pt;}
.h21{height:47.999981pt;}
.h8{height:48.406231pt;}
.h23{height:49.919980pt;}
.h2{height:52.320917pt;}
.h20{height:56.159978pt;}
.ha{height:56.940602pt;}
.hb{height:60.175084pt;}
.h1e{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w29{width:2.720000pt;}
.w2f{width:2.880000pt;}
.w2c{width:3.520000pt;}
.w1f{width:4.000000pt;}
.w2{width:4.160000pt;}
.w24{width:4.320000pt;}
.w1d{width:4.480000pt;}
.w14{width:4.640000pt;}
.w28{width:4.800000pt;}
.w1a{width:5.760000pt;}
.w4{width:6.240000pt;}
.w26{width:6.880000pt;}
.w37{width:7.040000pt;}
.wf{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.we{width:8.480000pt;}
.w18{width:9.600000pt;}
.w21{width:10.720000pt;}
.wd{width:10.880000pt;}
.w6{width:11.040000pt;}
.w38{width:13.760000pt;}
.w36{width:19.200000pt;}
.w31{width:19.840000pt;}
.w5{width:22.080000pt;}
.w34{width:23.040000pt;}
.w16{width:35.040000pt;}
.w2e{width:37.440000pt;}
.w33{width:38.080000pt;}
.w1c{width:38.240000pt;}
.w2b{width:38.720000pt;}
.w19{width:39.040000pt;}
.w20{width:45.600000pt;}
.w11{width:45.760000pt;}
.w12{width:50.080000pt;}
.w30{width:61.280000pt;}
.w1{width:65.760000pt;}
.w15{width:66.560000pt;}
.w3{width:68.800000pt;}
.w10{width:72.320000pt;}
.w2a{width:92.960000pt;}
.w25{width:114.560000pt;}
.w32{width:115.200000pt;}
.wa{width:116.320000pt;}
.w27{width:134.400000pt;}
.w23{width:135.680000pt;}
.w13{width:148.320000pt;}
.wc{width:157.760000pt;}
.w9{width:158.240000pt;}
.w35{width:160.320000pt;}
.wb{width:190.880000pt;}
.w22{width:231.680000pt;}
.w1b{width:243.200000pt;}
.w1e{width:245.280000pt;}
.w2d{width:245.760000pt;}
.w39{width:248.000000pt;}
.w17{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x29{left:99.359960pt;}
.xb{left:103.200000pt;}
.x3d{left:133.600000pt;}
.x2f{left:135.200000pt;}
.x3e{left:136.480000pt;}
.x30{left:140.960000pt;}
.x35{left:152.480000pt;}
.x43{left:160.160000pt;}
.xd{left:161.119892pt;}
.x44{left:164.640000pt;}
.x22{left:167.520000pt;}
.xc{left:183.999926pt;}
.x3f{left:197.760000pt;}
.xe{left:209.919863pt;}
.x1d{left:211.040000pt;}
.x23{left:213.280000pt;}
.x40{left:217.600000pt;}
.x2b{left:221.440000pt;}
.x33{left:236.160000pt;}
.x1b{left:253.439899pt;}
.x1c{left:257.600000pt;}
.x24{left:263.360000pt;}
.x45{left:324.960000pt;}
.xf{left:331.679800pt;}
.x41{left:332.800000pt;}
.x10{left:351.359774pt;}
.xa{left:358.719857pt;}
.x42{left:376.320559pt;}
.x34{left:380.160000pt;}
.x46{left:382.559847pt;}
.x2c{left:384.959846pt;}
.x1e{left:401.920000pt;}
.x25{left:411.680000pt;}
.x26{left:416.320000pt;}
.x47{left:430.560000pt;}
.x11{left:437.759800pt;}
.x12{left:449.599793pt;}
.x48{left:451.360000pt;}
.x32{left:454.080000pt;}
.x13{left:461.439785pt;}
.x19{left:464.639814pt;}
.x20{left:468.153146pt;}
.x2d{left:470.231945pt;}
.x14{left:473.119778pt;}
.x15{left:477.119775pt;}
.x27{left:482.880000pt;}
.x1{left:488.000000pt;}
.x28{left:517.919793pt;}
.x2e{left:523.359791pt;}
.x16{left:524.319759pt;}
.x31{left:531.359788pt;}
.x2a{left:533.919786pt;}
.x17{left:539.999696pt;}
.x36{left:551.040000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x1f{left:559.200000pt;}
.x37{left:570.080000pt;}
.x4b{left:573.279771pt;}
.x39{left:574.240000pt;}
.x3a{left:584.960000pt;}
.x3b{left:587.680000pt;}
.x18{left:591.039763pt;}
.x4c{left:592.800000pt;}
.x4{left:626.720000pt;}
.x5{left:642.080000pt;}
.x49{left:651.839739pt;}
.x4a{left:652.960000pt;}
.x1a{left:656.319737pt;}
.x6{left:664.160000pt;}
.x7{left:675.200000pt;}
.x3c{left:680.480000pt;}
.x38{left:684.320000pt;}
.x8{left:686.240000pt;}
.x21{left:693.600000pt;}
}




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