
    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_451b7739a0a72cc7b4ce7e14.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8486a3b1c4be502e92c3a221.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_5b82d4bd37d0df31f89fd4a7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_6e09290b5b311d9454c3c473.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_59010bcaf65a9ed064c5b27c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ded14a993813fdd9ee4a813c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d8c20e0914983d67c809495e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d1551ef52d0a7ab0dd70fce3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909180;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_2513543219f29b3ae35fb335.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_46c124ce04257cc5c83f5694.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_cafac082e1dcab76d8b4b1ab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.926270;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;}
.m6{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,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);}
.m9{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-36.719985px;}
.v9{vertical-align:-15.119994px;}
.v5{vertical-align:-5.759998px;}
.v1{vertical-align:-4.319998px;}
.v8{vertical-align:-2.879999px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.879999px;}
.v4{vertical-align:5.759998px;}
.v2{vertical-align:37.439985px;}
.v7{vertical-align:51.119980px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.034423px;}
.lsd{letter-spacing:0.034519px;}
.ls4{letter-spacing:0.060584px;}
.ls7{letter-spacing:0.062743px;}
.ls1{letter-spacing:0.063403px;}
.lse{letter-spacing:0.068862px;}
.lsa{letter-spacing:0.417900px;}
.lsb{letter-spacing:0.426960px;}
.ls2{letter-spacing:33.366111px;}
.ls3{letter-spacing:42.981703px;}
.ls6{letter-spacing:82.269027px;}
.ls5{letter-spacing:183.262187px;}
.ls9{letter-spacing:381.283047px;}
.ls0{letter-spacing:1615.922293px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.462730px;}
.ws6{word-spacing:-32.399987px;}
.wsc{word-spacing:-19.038232px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.623396px;}
.ws3{word-spacing:-16.559993px;}
.ws2{word-spacing:-15.839994px;}
.ws4{word-spacing:-15.011994px;}
.ws7{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.410715px;}
.wsd{word-spacing:-12.203995px;}
.wse{word-spacing:-12.059995px;}
.wsb{word-spacing:-11.246396px;}
.wsa{word-spacing:-9.187196px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-5.736504px;}
._11{margin-left:-4.067545px;}
._3{margin-left:-3.022773px;}
._1{margin-left:-1.750293px;}
._0{width:1.152887px;}
._6{width:2.577342px;}
._10{width:3.868612px;}
._7{width:5.028633px;}
._8{width:6.100599px;}
._d{width:7.120043px;}
._18{width:8.490154px;}
._5{width:10.413147px;}
._4{width:11.542534px;}
._4d{width:12.545188px;}
._9{width:13.574583px;}
._14{width:14.682281px;}
._15{width:15.803101px;}
._4b{width:16.847820px;}
._1c{width:19.393697px;}
._1d{width:20.849610px;}
._b{width:21.961012px;}
._c{width:23.262972px;}
._19{width:24.576819px;}
._1a{width:25.590940px;}
._a{width:30.873070px;}
._4c{width:32.021717px;}
._17{width:33.741089px;}
._16{width:34.808621px;}
._4e{width:38.248475px;}
._4f{width:42.389287px;}
._f{width:43.485931px;}
._12{width:49.196514px;}
._13{width:50.667470px;}
._41{width:59.758690px;}
._e{width:66.013474px;}
._35{width:67.927017px;}
._2d{width:72.329254px;}
._34{width:73.558453px;}
._37{width:75.740407px;}
._36{width:77.118353px;}
._1f{width:83.779954px;}
._27{width:84.807312px;}
._22{width:85.912960px;}
._3e{width:88.018471px;}
._3f{width:89.619922px;}
._3d{width:91.545707px;}
._3c{width:92.988586px;}
._39{width:94.356793px;}
._3b{width:95.817459px;}
._4a{width:96.931074px;}
._49{width:98.216848px;}
._48{width:99.377971px;}
._2c{width:113.561492px;}
._24{width:115.454673px;}
._20{width:118.214576px;}
._44{width:119.862749px;}
._2f{width:121.553287px;}
._29{width:123.110884px;}
._30{width:124.864386px;}
._28{width:126.149693px;}
._21{width:127.695343px;}
._43{width:139.016258px;}
._32{width:140.825159px;}
._46{width:144.660749px;}
._3a{width:152.827763px;}
._33{width:154.178550px;}
._2e{width:156.844274px;}
._31{width:158.955810px;}
._47{width:174.278687px;}
._25{width:186.925100px;}
._2b{width:209.987021px;}
._40{width:243.531139px;}
._26{width:269.005627px;}
._45{width:270.732790px;}
._23{width:308.965494px;}
._42{width:310.692578px;}
._1e{width:348.925283px;}
._38{width:357.313027px;}
._2a{width:492.872068px;}
._1b{width:2297.626217px;}
.fce{color:rgb(88,88,88);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(237,0,0);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs6{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:63.359975px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs8{font-size:84.239966px;}
.y5{bottom:-14.039994px;}
.y0{bottom:0.000000px;}
.y95{bottom:2.159635px;}
.y100{bottom:2.699663px;}
.y102{bottom:2.699686px;}
.y104{bottom:2.699705px;}
.y106{bottom:2.699717px;}
.y1d{bottom:2.699742px;}
.y110{bottom:2.699805px;}
.y10e{bottom:2.699808px;}
.y121{bottom:2.699811px;}
.y11f{bottom:2.699815px;}
.y127{bottom:2.699837px;}
.y4d{bottom:2.699926px;}
.yfc{bottom:2.879616px;}
.yfe{bottom:2.879639px;}
.y10a{bottom:2.879802px;}
.y10c{bottom:2.879809px;}
.y129{bottom:2.879881px;}
.y44{bottom:3.059610px;}
.y125{bottom:3.059830px;}
.y11d{bottom:3.239857px;}
.y112{bottom:3.599819px;}
.y115{bottom:3.599828px;}
.y118{bottom:3.599838px;}
.y11b{bottom:3.599848px;}
.y4b{bottom:3.959577px;}
.ya{bottom:3.959980px;}
.yfa{bottom:4.139593px;}
.yd9{bottom:4.319685px;}
.ydc{bottom:4.319702px;}
.ydf{bottom:4.319718px;}
.ye1{bottom:4.319735px;}
.ye4{bottom:4.319751px;}
.y108{bottom:4.319773px;}
.yc1{bottom:4.319817px;}
.yc4{bottom:4.319834px;}
.yed{bottom:4.319838px;}
.yc7{bottom:4.319855px;}
.yca{bottom:4.319876px;}
.ycd{bottom:4.319896px;}
.yf2{bottom:4.319905px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.260000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.299979px;}
.y139{bottom:102.059959px;}
.y16c{bottom:113.219955px;}
.y93{bottom:116.099954px;}
.y53{bottom:116.459953px;}
.y18f{bottom:116.999953px;}
.y15d{bottom:124.919950px;}
.y87{bottom:128.519949px;}
.y52{bottom:130.319948px;}
.y180{bottom:137.699945px;}
.y138{bottom:143.459943px;}
.y51{bottom:144.179942px;}
.y6f{bottom:149.219940px;}
.y16b{bottom:154.619938px;}
.y150{bottom:154.799938px;}
.y92{bottom:157.499937px;}
.yae{bottom:157.859937px;}
.y50{bottom:158.039937px;}
.y6a{bottom:162.539935px;}
.y28{bottom:164.879934px;}
.y4f{bottom:171.719931px;}
.y91{bottom:178.199929px;}
.y17f{bottom:179.099928px;}
.y15c{bottom:181.259927px;}
.y4c{bottom:183.060000px;}
.y86{bottom:184.859926px;}
.y4e{bottom:185.759926px;}
.y16a{bottom:196.019922px;}
.y14f{bottom:196.199922px;}
.y42{bottom:199.079920px;}
.yad{bottom:199.259920px;}
.y69{bottom:203.939918px;}
.y90{bottom:208.079917px;}
.ycf{bottom:216.359913px;}
.y41{bottom:219.599912px;}
.y17e{bottom:220.319912px;}
.y18e{bottom:220.499912px;}
.y15b{bottom:222.659911px;}
.y85{bottom:226.259909px;}
.y8f{bottom:228.779908px;}
.yf8{bottom:229.139908px;}
.yf1{bottom:232.920000px;}
.yce{bottom:237.059905px;}
.yf0{bottom:237.239905px;}
.y14e{bottom:237.599905px;}
.y40{bottom:239.579904px;}
.yac{bottom:240.659904px;}
.y17d{bottom:241.199904px;}
.y68{bottom:245.339902px;}
.y146{bottom:249.119900px;}
.yf7{bottom:249.839900px;}
.y169{bottom:252.359899px;}
.ycc{bottom:254.880000px;}
.ycb{bottom:259.199896px;}
.y17c{bottom:261.899895px;}
.y15a{bottom:264.059894px;}
.y84{bottom:267.659893px;}
.y3f{bottom:277.379889px;}
.y14d{bottom:278.999888px;}
.yab{bottom:282.059887px;}
.y67{bottom:286.739885px;}
.y27{bottom:287.279885px;}
.y83{bottom:288.359885px;}
.y145{bottom:290.519884px;}
.y168{bottom:293.759882px;}
.y3e{bottom:294.659882px;}
.y128{bottom:295.740000px;}
.y17b{bottom:303.299879px;}
.y159{bottom:305.459878px;}
.yc9{bottom:306.360000px;}
.y82{bottom:309.059876px;}
.yc8{bottom:310.679876px;}
.y3d{bottom:311.939875px;}
.yef{bottom:318.779872px;}
.y14c{bottom:320.399872px;}
.yaa{bottom:323.459871px;}
.y66{bottom:328.319869px;}
.y3c{bottom:329.219868px;}
.y137{bottom:329.759868px;}
.y144{bottom:331.919867px;}
.y167{bottom:335.159866px;}
.y17a{bottom:344.699862px;}
.y3b{bottom:346.499861px;}
.y81{bottom:350.459860px;}
.y11c{bottom:354.240000px;}
.yc6{bottom:358.740000px;}
.yee{bottom:360.179856px;}
.y158{bottom:361.799855px;}
.yc5{bottom:363.059855px;}
.y3a{bottom:363.599855px;}
.ya9{bottom:364.859854px;}
.y18d{bottom:365.399854px;}
.y143{bottom:373.319851px;}
.y14b{bottom:376.919849px;}
.y11a{bottom:377.640000px;}
.y39{bottom:380.879848px;}
.y119{bottom:381.239848px;}
.y26{bottom:382.499847px;}
.y65{bottom:384.659846px;}
.y179{bottom:386.099846px;}
.y166{bottom:391.679843px;}
.y80{bottom:391.859843px;}
.y38{bottom:398.159841px;}
.yec{bottom:400.500000px;}
.y117{bottom:401.580000px;}
.y157{bottom:403.199839px;}
.y116{bottom:405.179838px;}
.y126{bottom:405.720000px;}
.ya8{bottom:406.439837px;}
.y136{bottom:406.799837px;}
.yc3{bottom:410.760000px;}
.y142{bottom:414.719834px;}
.yc2{bottom:415.079834px;}
.y37{bottom:415.439834px;}
.y14a{bottom:418.319833px;}
.y124{bottom:421.560000px;}
.yeb{bottom:424.079830px;}
.y64{bottom:425.879830px;}
.y114{bottom:425.880000px;}
.y25{bottom:426.239830px;}
.y178{bottom:427.499829px;}
.y113{bottom:429.479828px;}
.y36{bottom:432.719827px;}
.y165{bottom:433.079827px;}
.y7f{bottom:433.259827px;}
.y123{bottom:439.019824px;}
.y24{bottom:441.539823px;}
.y156{bottom:444.599822px;}
.yea{bottom:446.219822px;}
.ya7{bottom:447.839821px;}
.y122{bottom:447.840000px;}
.y135{bottom:448.199821px;}
.y111{bottom:449.640000px;}
.y35{bottom:449.999820px;}
.yc0{bottom:451.980000px;}
.y141{bottom:456.119818px;}
.y23{bottom:456.839817px;}
.y11e{bottom:459.000000px;}
.y149{bottom:459.719816px;}
.ye9{bottom:466.919813px;}
.y34{bottom:467.099813px;}
.y63{bottom:467.279813px;}
.y177{bottom:468.899812px;}
.y120{bottom:468.900000px;}
.y22{bottom:470.879812px;}
.y164{bottom:474.479810px;}
.y7e{bottom:474.659810px;}
.ybf{bottom:475.559810px;}
.y10b{bottom:475.560000px;}
.y10d{bottom:477.720000px;}
.y33{bottom:484.379806px;}
.y10f{bottom:485.820000px;}
.y155{bottom:485.999806px;}
.ya6{bottom:489.239804px;}
.y134{bottom:489.599804px;}
.y109{bottom:493.020000px;}
.y163{bottom:495.179802px;}
.ye8{bottom:497.339801px;}
.ybe{bottom:500.219800px;}
.y148{bottom:501.119800px;}
.y32{bottom:501.659799px;}
.y62{bottom:508.679797px;}
.y176{bottom:510.299796px;}
.y140{bottom:512.459795px;}
.y21{bottom:513.359795px;}
.y7d{bottom:516.059794px;}
.ye7{bottom:518.039793px;}
.ybd{bottom:518.219793px;}
.y31{bottom:518.939792px;}
.y154{bottom:527.399789px;}
.ya5{bottom:530.639788px;}
.y133{bottom:530.999788px;}
.y161{bottom:536.579785px;}
.y30{bottom:537.659785px;}
.ye6{bottom:538.919784px;}
.y162{bottom:543.419783px;}
.y61{bottom:550.079780px;}
.y175{bottom:551.699779px;}
.y13f{bottom:553.859778px;}
.y2f{bottom:554.939778px;}
.y20{bottom:555.839778px;}
.y7c{bottom:557.459777px;}
.y190{bottom:558.539777px;}
.ybc{bottom:559.619776px;}
.y107{bottom:564.300000px;}
.y153{bottom:568.799772px;}
.ya4{bottom:572.039771px;}
.y132{bottom:572.399771px;}
.y18c{bottom:572.579771px;}
.y2e{bottom:573.659771px;}
.y160{bottom:577.979769px;}
.ye5{bottom:580.319768px;}
.y152{bottom:589.499764px;}
.y2d{bottom:590.939764px;}
.y60{bottom:591.479763px;}
.y174{bottom:593.099763px;}
.y18b{bottom:593.279763px;}
.y1f{bottom:598.499761px;}
.y15f{bottom:598.679761px;}
.y7b{bottom:598.859760px;}
.ybb{bottom:601.019760px;}
.yf6{bottom:606.779757px;}
.y2c{bottom:608.219757px;}
.y13e{bottom:610.199756px;}
.ya3{bottom:613.439755px;}
.y131{bottom:613.799754px;}
.y1e{bottom:613.979754px;}
.ye3{bottom:618.660000px;}
.ye2{bottom:622.979751px;}
.y151{bottom:625.319750px;}
.y2b{bottom:625.499750px;}
.y5f{bottom:632.879747px;}
.y15e{bottom:634.319746px;}
.y173{bottom:634.499746px;}
.y18a{bottom:634.679746px;}
.y7a{bottom:640.259744px;}
.yf5{bottom:640.799744px;}
.y29{bottom:641.339743px;}
.yba{bottom:642.419743px;}
.y2a{bottom:642.599743px;}
.y1c{bottom:642.600000px;}
.y13d{bottom:651.599739px;}
.ya2{bottom:654.839738px;}
.y130{bottom:655.199738px;}
.ye0{bottom:658.800000px;}
.yf4{bottom:661.499735px;}
.yb9{bottom:663.119735px;}
.y1a{bottom:668.879732px;}
.y1b{bottom:669.059732px;}
.y5e{bottom:674.279730px;}
.y172{bottom:675.899730px;}
.y189{bottom:676.079730px;}
.y79{bottom:681.659727px;}
.yb8{bottom:683.819726px;}
.yf3{bottom:690.479724px;}
.y13c{bottom:692.999723px;}
.ya1{bottom:696.239722px;}
.y12f{bottom:696.599721px;}
.y19{bottom:698.399721px;}
.yde{bottom:700.200000px;}
.ydd{bottom:704.519718px;}
.y105{bottom:705.600000px;}
.y5d{bottom:715.679714px;}
.y188{bottom:717.479713px;}
.y18{bottom:721.259711px;}
.y78{bottom:723.059711px;}
.yb7{bottom:725.219710px;}
.y103{bottom:735.300000px;}
.ya0{bottom:737.639705px;}
.y147{bottom:737.999705px;}
.y12e{bottom:738.179705px;}
.ydb{bottom:741.420000px;}
.y17{bottom:742.319703px;}
.yda{bottom:745.739702px;}
.y13b{bottom:749.339700px;}
.y187{bottom:758.879696px;}
.y16{bottom:763.379695px;}
.y77{bottom:764.459694px;}
.yb6{bottom:766.619693px;}
.y5c{bottom:772.379691px;}
.y9f{bottom:779.039688px;}
.y12d{bottom:779.399688px;}
.y8e{bottom:782.279687px;}
.y101{bottom:782.280000px;}
.yd8{bottom:782.640000px;}
.y15{bottom:784.439686px;}
.y13a{bottom:790.739684px;}
.y186{bottom:800.099680px;}
.y14{bottom:803.159679px;}
.y76{bottom:805.859678px;}
.yd7{bottom:806.219678px;}
.y8d{bottom:806.399677px;}
.yb5{bottom:808.019677px;}
.y5b{bottom:813.779674px;}
.y9e{bottom:820.439672px;}
.y12c{bottom:820.799672px;}
.y13{bottom:822.599671px;}
.y8c{bottom:823.679671px;}
.yd6{bottom:826.919669px;}
.yb4{bottom:828.899668px;}
.yff{bottom:840.780000px;}
.y9d{bottom:841.139664px;}
.y185{bottom:841.499663px;}
.y12{bottom:842.939663px;}
.yd5{bottom:844.739662px;}
.y75{bottom:847.259661px;}
.y5a{bottom:855.179658px;}
.y9c{bottom:861.839655px;}
.y8b{bottom:862.199655px;}
.y10{bottom:863.639655px;}
.yd4{bottom:865.439654px;}
.y171{bottom:868.139653px;}
.y11{bottom:869.579652px;}
.y184{bottom:882.899647px;}
.yf{bottom:884.339646px;}
.yd3{bottom:886.139646px;}
.y74{bottom:888.659645px;}
.yb2{bottom:889.739644px;}
.yb3{bottom:892.799643px;}
.y59{bottom:896.579641px;}
.yfd{bottom:899.100000px;}
.y9b{bottom:899.819640px;}
.yb0{bottom:903.419639px;}
.y8a{bottom:903.599639px;}
.yaf{bottom:904.139638px;}
.ye{bottom:905.039638px;}
.y9a{bottom:905.759638px;}
.y170{bottom:909.539636px;}
.y94{bottom:910.080000px;}
.yb1{bottom:914.759634px;}
.y97{bottom:915.479634px;}
.y99{bottom:922.319631px;}
.yd{bottom:925.739630px;}
.yd2{bottom:927.539629px;}
.y98{bottom:928.259629px;}
.y73{bottom:930.059628px;}
.y183{bottom:930.239628px;}
.y58{bottom:937.979625px;}
.y89{bottom:944.999622px;}
.yc{bottom:946.439621px;}
.y96{bottom:949.319620px;}
.y16f{bottom:950.939620px;}
.yfb{bottom:957.600000px;}
.y12b{bottom:965.699614px;}
.yd1{bottom:968.939612px;}
.y43{bottom:971.280000px;}
.y182{bottom:971.639611px;}
.y57{bottom:979.379608px;}
.y49{bottom:980.639608px;}
.y72{bottom:986.399605px;}
.yd0{bottom:989.639604px;}
.y16e{bottom:992.339603px;}
.y48{bottom:999.539600px;}
.y56{bottom:1000.079600px;}
.y12a{bottom:1007.099597px;}
.y181{bottom:1013.039595px;}
.yf9{bottom:1013.400000px;}
.y47{bottom:1018.619593px;}
.y71{bottom:1027.799589px;}
.y88{bottom:1033.739587px;}
.y16d{bottom:1033.919586px;}
.y55{bottom:1035.719586px;}
.y46{bottom:1037.519585px;}
.y4a{bottom:1052.640000px;}
.y6e{bottom:1054.259578px;}
.y45{bottom:1056.599577px;}
.y54{bottom:1062.359575px;}
.y4{bottom:1082.699567px;}
.y70{bottom:1083.959566px;}
.y6d{bottom:1085.399566px;}
.y6c{bottom:1102.679559px;}
.y6{bottom:1112.399555px;}
.y3{bottom:1114.019554px;}
.y6b{bottom:1119.959552px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:0.720000px;}
.h19{height:10.440000px;}
.h25{height:13.680000px;}
.h2a{height:13.860000px;}
.h10{height:14.040000px;}
.h27{height:14.760000px;}
.h2b{height:15.840000px;}
.h29{height:16.020000px;}
.h28{height:16.380000px;}
.h15{height:17.820000px;}
.h6{height:18.720000px;}
.h20{height:20.340000px;}
.h21{height:20.520000px;}
.h23{height:21.240000px;}
.h1b{height:29.015848px;}
.h1a{height:29.464441px;}
.ha{height:32.693893px;}
.h2c{height:33.518307px;}
.h11{height:33.706744px;}
.h17{height:33.730299px;}
.h18{height:35.143580px;}
.h1e{height:36.068540px;}
.h4{height:36.597642px;}
.h13{height:36.624009px;}
.h26{height:36.729477px;}
.h5{height:37.520493px;}
.h12{height:39.339828px;}
.h22{height:40.501390px;}
.h7{height:40.647288px;}
.h1{height:41.522679px;}
.hd{height:44.024045px;}
.he{height:44.149201px;}
.h16{height:44.893107px;}
.h2{height:46.025138px;}
.hc{height:46.158732px;}
.h14{height:47.282676px;}
.h8{height:48.796855px;}
.h2d{height:49.992168px;}
.h9{height:50.027324px;}
.h1d{height:50.800761px;}
.hb{height:52.453104px;}
.h1c{height:53.680760px;}
.h24{height:57.297985px;}
.hf{height:82.333092px;}
.h1f{height:101.147303px;}
.h0{height:1188.000000px;}
.wb{width:0.720000px;}
.w25{width:2.160000px;}
.w28{width:2.340000px;}
.w1f{width:2.520000px;}
.w22{width:2.700000px;}
.w38{width:2.880000px;}
.w1d{width:3.060000px;}
.w36{width:3.420000px;}
.w7{width:3.600000px;}
.w34{width:3.960000px;}
.w26{width:4.140000px;}
.w18{width:4.320000px;}
.w16{width:4.680000px;}
.w9{width:5.040000px;}
.w35{width:5.220000px;}
.w1b{width:5.400000px;}
.w29{width:6.120000px;}
.w2a{width:6.300000px;}
.w27{width:6.480000px;}
.w3c{width:6.660000px;}
.w3{width:6.840000px;}
.w5{width:7.020000px;}
.wa{width:7.200000px;}
.w2{width:7.560000px;}
.w39{width:7.920000px;}
.w6{width:8.280000px;}
.w19{width:8.640000px;}
.wd{width:9.000000px;}
.w2d{width:10.980000px;}
.w2f{width:11.340000px;}
.w32{width:12.240000px;}
.w2e{width:12.600000px;}
.w37{width:13.140000px;}
.w30{width:13.320000px;}
.w31{width:13.500000px;}
.we{width:17.280000px;}
.w13{width:17.640000px;}
.w2b{width:17.820000px;}
.w12{width:18.180000px;}
.w14{width:19.620000px;}
.w10{width:20.340000px;}
.wf{width:20.520000px;}
.w11{width:20.700000px;}
.w2c{width:20.880000px;}
.w3a{width:21.600000px;}
.w3b{width:21.780000px;}
.w3d{width:21.960000px;}
.w15{width:24.660000px;}
.w20{width:32.400000px;}
.w24{width:33.300000px;}
.w21{width:35.100000px;}
.w23{width:39.060000px;}
.w33{width:44.640000px;}
.w1e{width:45.180000px;}
.w1c{width:45.540000px;}
.wc{width:62.820000px;}
.w8{width:92.340000px;}
.w17{width:100.620000px;}
.w4{width:113.760000px;}
.w1a{width:144.900000px;}
.w1{width:577.440000px;}
.w0{width:918.000000px;}
.x2c{left:-4.680271px;}
.x0{left:0.000000px;}
.x5{left:76.139970px;}
.x20{left:91.979963px;}
.x1{left:98.999960px;}
.x6{left:102.239959px;}
.x9{left:103.319959px;}
.x1e{left:104.759958px;}
.x30{left:107.999957px;}
.x1b{left:116.100000px;}
.x22{left:117.179953px;}
.x1d{left:120.779880px;}
.x18{left:125.279950px;}
.x7c{left:128.700000px;}
.x7d{left:134.820000px;}
.xa{left:136.259910px;}
.x15{left:144.719942px;}
.x13{left:146.519905px;}
.x1f{left:158.759936px;}
.xaf{left:162.000038px;}
.x21{left:164.879934px;}
.xb2{left:171.898603px;}
.x35{left:176.939929px;}
.x41{left:179.460000px;}
.x3a{left:182.159927px;}
.x36{left:187.559925px;}
.x3f{left:189.179924px;}
.x33{left:190.980000px;}
.x37{left:192.779923px;}
.x34{left:197.460000px;}
.x3b{left:200.159920px;}
.x38{left:204.839918px;}
.x7e{left:205.920000px;}
.x7f{left:210.060000px;}
.x27{left:213.480000px;}
.x80{left:216.180000px;}
.x55{left:217.260000px;}
.x19{left:221.039912px;}
.x1a{left:224.099910px;}
.x3d{left:228.059909px;}
.x1c{left:229.860000px;}
.x64{left:234.720000px;}
.xc{left:242.999903px;}
.x42{left:244.260000px;}
.x65{left:252.000000px;}
.x43{left:261.540000px;}
.x9d{left:264.599894px;}
.x99{left:265.860000px;}
.x3c{left:268.199893px;}
.x9f{left:270.540000px;}
.x9a{left:271.980000px;}
.x23{left:273.959875px;}
.x9e{left:275.760000px;}
.x14{left:278.452345px;}
.xb{left:281.339719px;}
.x81{left:287.460000px;}
.x82{left:291.600000px;}
.x2{left:293.579883px;}
.x83{left:297.720000px;}
.x28{left:298.799880px;}
.x2d{left:300.780000px;}
.x24{left:303.659879px;}
.x17{left:306.172193px;}
.x29{left:312.479800px;}
.x73{left:315.180000px;}
.x8a{left:317.700000px;}
.x44{left:318.960000px;}
.x66{left:320.400000px;}
.x8b{left:328.680000px;}
.x56{left:331.920000px;}
.x40{left:335.339866px;}
.x45{left:339.300000px;}
.xa4{left:342.180000px;}
.x25{left:348.659861px;}
.x16{left:350.819338px;}
.x57{left:352.260000px;}
.x8c{left:361.980000px;}
.x67{left:364.500000px;}
.x63{left:365.579712px;}
.xd{left:368.099853px;}
.x79{left:372.060000px;}
.xe{left:374.219850px;}
.x84{left:379.080000px;}
.x8d{left:382.860000px;}
.x46{left:384.300000px;}
.xa5{left:389.160000px;}
.x2e{left:393.120000px;}
.x77{left:397.080000px;}
.x2f{left:398.159841px;}
.x7{left:402.839839px;}
.x47{left:404.640000px;}
.x7a{left:406.980000px;}
.x7b{left:409.320000px;}
.xa6{left:410.760000px;}
.x2a{left:415.259834px;}
.x58{left:418.680000px;}
.xa7{left:421.740000px;}
.xa8{left:425.880000px;}
.x8e{left:428.220000px;}
.x68{left:429.300000px;}
.xa9{left:432.000000px;}
.x78{left:442.260000px;}
.x48{left:447.840000px;}
.x69{left:449.640000px;}
.x94{left:450.720000px;}
.x59{left:453.060000px;}
.x95{left:456.120000px;}
.x85{left:458.460000px;}
.x74{left:460.080000px;}
.x8f{left:462.420000px;}
.xaa{left:464.400000px;}
.x75{left:465.480000px;}
.x49{left:468.180000px;}
.x5a{left:471.240000px;}
.xf{left:478.259809px;}
.x90{left:483.300000px;}
.x10{left:484.379806px;}
.xab{left:492.480000px;}
.x6a{left:494.820000px;}
.x91{left:496.800000px;}
.xac{left:499.140000px;}
.x96{left:500.760000px;}
.xad{left:503.100000px;}
.xae{left:509.220000px;}
.x76{left:511.020000px;}
.x4a{left:513.180000px;}
.xa3{left:514.980000px;}
.x92{left:517.500000px;}
.xa2{left:527.939789px;}
.x4b{left:531.360000px;}
.x5b{left:534.420000px;}
.x86{left:540.000000px;}
.x31{left:549.719780px;}
.x5c{left:551.700000px;}
.x6b{left:559.260000px;}
.x32{left:561.059776px;}
.xa0{left:563.040000px;}
.x93{left:564.120000px;}
.x9b{left:567.000000px;}
.xa1{left:570.060000px;}
.xb3{left:572.399771px;}
.x97{left:573.660000px;}
.x6c{left:576.540000px;}
.x4c{left:578.700000px;}
.x9c{left:584.640000px;}
.x98{left:591.480000px;}
.x4d{left:595.980000px;}
.x5d{left:602.100000px;}
.x87{left:615.240000px;}
.x5e{left:621.360000px;}
.x6d{left:624.240000px;}
.x4e{left:644.040000px;}
.x4f{left:663.300000px;}
.x11{left:669.239732px;}
.xb0{left:671.219732px;}
.x12{left:674.999730px;}
.x3{left:676.440000px;}
.x2b{left:682.200000px;}
.xb1{left:683.459727px;}
.x5f{left:687.060000px;}
.x6e{left:688.500000px;}
.x88{left:696.780000px;}
.xb4{left:701.099720px;}
.x89{left:702.900000px;}
.x6f{left:706.140000px;}
.x50{left:709.200000px;}
.xb5{left:713.339715px;}
.x72{left:720.539712px;}
.x60{left:723.600000px;}
.x51{left:726.840000px;}
.x4{left:746.639701px;}
.x61{left:747.900000px;}
.x70{left:754.020000px;}
.x62{left:763.380000px;}
.x3e{left:770.399692px;}
.x52{left:775.080000px;}
.x39{left:778.679689px;}
.x71{left:790.200000px;}
.x53{left:799.380000px;}
.x54{left:814.860000px;}
.x8{left:835.020000px;}
.x26{left:836.999665px;}
@media print{
.v3{vertical-align:-32.639987pt;}
.v9{vertical-align:-13.439995pt;}
.v5{vertical-align:-5.119998pt;}
.v1{vertical-align:-3.839998pt;}
.v8{vertical-align:-2.559999pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.559999pt;}
.v4{vertical-align:5.119998pt;}
.v2{vertical-align:33.279987pt;}
.v7{vertical-align:45.439982pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.030598pt;}
.lsd{letter-spacing:0.030684pt;}
.ls4{letter-spacing:0.053853pt;}
.ls7{letter-spacing:0.055772pt;}
.ls1{letter-spacing:0.056358pt;}
.lse{letter-spacing:0.061211pt;}
.lsa{letter-spacing:0.371467pt;}
.lsb{letter-spacing:0.379520pt;}
.ls2{letter-spacing:29.658765pt;}
.ls3{letter-spacing:38.205958pt;}
.ls6{letter-spacing:73.128024pt;}
.ls5{letter-spacing:162.899721pt;}
.ls9{letter-spacing:338.918264pt;}
.ls0{letter-spacing:1436.375372pt;}
.ws5{word-spacing:-28.855760pt;}
.ws6{word-spacing:-28.799988pt;}
.wsc{word-spacing:-16.922873pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.776352pt;}
.ws3{word-spacing:-14.719994pt;}
.ws2{word-spacing:-14.079994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws7{word-spacing:-13.279995pt;}
.ws8{word-spacing:-11.920635pt;}
.wsd{word-spacing:-10.847996pt;}
.wse{word-spacing:-10.719996pt;}
.wsb{word-spacing:-9.996796pt;}
.wsa{word-spacing:-8.166397pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-5.099115pt;}
._11{margin-left:-3.615596pt;}
._3{margin-left:-2.686909pt;}
._1{margin-left:-1.555816pt;}
._0{width:1.024788pt;}
._6{width:2.290970pt;}
._10{width:3.438766pt;}
._7{width:4.469896pt;}
._8{width:5.422754pt;}
._d{width:6.328927pt;}
._18{width:7.546803pt;}
._5{width:9.256131pt;}
._4{width:10.260030pt;}
._4d{width:11.151278pt;}
._9{width:12.066296pt;}
._14{width:13.050916pt;}
._15{width:14.047201pt;}
._4b{width:14.975840pt;}
._1c{width:17.238842pt;}
._1d{width:18.532986pt;}
._b{width:19.520899pt;}
._c{width:20.678197pt;}
._19{width:21.846062pt;}
._1a{width:22.747502pt;}
._a{width:27.442728pt;}
._4c{width:28.463749pt;}
._17{width:29.992079pt;}
._16{width:30.940996pt;}
._4e{width:33.998645pt;}
._4f{width:37.679366pt;}
._f{width:38.654160pt;}
._12{width:43.730234pt;}
._13{width:45.037751pt;}
._41{width:53.118836pt;}
._e{width:58.678643pt;}
._35{width:60.379571pt;}
._2d{width:64.292670pt;}
._34{width:65.385292pt;}
._37{width:67.324806pt;}
._36{width:68.549647pt;}
._1f{width:74.471070pt;}
._27{width:75.384277pt;}
._22{width:76.367075pt;}
._3e{width:78.238640pt;}
._3f{width:79.662153pt;}
._3d{width:81.373962pt;}
._3c{width:82.656521pt;}
._39{width:83.872705pt;}
._3b{width:85.171075pt;}
._4a{width:86.160954pt;}
._49{width:87.303864pt;}
._48{width:88.335974pt;}
._2c{width:100.943548pt;}
._24{width:102.626376pt;}
._20{width:105.079623pt;}
._44{width:106.544666pt;}
._2f{width:108.047366pt;}
._29{width:109.431897pt;}
._30{width:110.990565pt;}
._28{width:112.133061pt;}
._21{width:113.506971pt;}
._43{width:123.570007pt;}
._32{width:125.177919pt;}
._46{width:128.587333pt;}
._3a{width:135.846900pt;}
._33{width:137.047600pt;}
._2e{width:139.417133pt;}
._31{width:141.294054pt;}
._47{width:154.914388pt;}
._25{width:166.155644pt;}
._2b{width:186.655130pt;}
._40{width:216.472123pt;}
._26{width:239.116113pt;}
._45{width:240.651369pt;}
._23{width:274.635995pt;}
._42{width:276.171181pt;}
._1e{width:310.155807pt;}
._38{width:317.611579pt;}
._2a{width:438.108505pt;}
._1b{width:2042.334415pt;}
.fs6{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:56.319977pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs8{font-size:74.879970pt;}
.y5{bottom:-12.479995pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:1.919676pt;}
.y100{bottom:2.399700pt;}
.y102{bottom:2.399721pt;}
.y104{bottom:2.399738pt;}
.y106{bottom:2.399748pt;}
.y1d{bottom:2.399771pt;}
.y110{bottom:2.399826pt;}
.y10e{bottom:2.399829pt;}
.y121{bottom:2.399832pt;}
.y11f{bottom:2.399836pt;}
.y127{bottom:2.399855pt;}
.y4d{bottom:2.399934pt;}
.yfc{bottom:2.559658pt;}
.yfe{bottom:2.559679pt;}
.y10a{bottom:2.559824pt;}
.y10c{bottom:2.559830pt;}
.y129{bottom:2.559894pt;}
.y44{bottom:2.719654pt;}
.y125{bottom:2.719849pt;}
.y11d{bottom:2.879873pt;}
.y112{bottom:3.199839pt;}
.y115{bottom:3.199847pt;}
.y118{bottom:3.199856pt;}
.y11b{bottom:3.199864pt;}
.y4b{bottom:3.519624pt;}
.ya{bottom:3.519982pt;}
.yfa{bottom:3.679638pt;}
.yd9{bottom:3.839720pt;}
.ydc{bottom:3.839735pt;}
.ydf{bottom:3.839750pt;}
.ye1{bottom:3.839764pt;}
.ye4{bottom:3.839778pt;}
.y108{bottom:3.839798pt;}
.yc1{bottom:3.839838pt;}
.yc4{bottom:3.839852pt;}
.yed{bottom:3.839856pt;}
.yc7{bottom:3.839871pt;}
.yca{bottom:3.839890pt;}
.ycd{bottom:3.839908pt;}
.yf2{bottom:3.839916pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:41.120000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:45.599982pt;}
.y139{bottom:90.719964pt;}
.y16c{bottom:100.639960pt;}
.y93{bottom:103.199959pt;}
.y53{bottom:103.519959pt;}
.y18f{bottom:103.999958pt;}
.y15d{bottom:111.039956pt;}
.y87{bottom:114.239954pt;}
.y52{bottom:115.839954pt;}
.y180{bottom:122.399951pt;}
.y138{bottom:127.519949pt;}
.y51{bottom:128.159949pt;}
.y6f{bottom:132.639947pt;}
.y16b{bottom:137.439945pt;}
.y150{bottom:137.599945pt;}
.y92{bottom:139.999944pt;}
.yae{bottom:140.319944pt;}
.y50{bottom:140.479944pt;}
.y6a{bottom:144.479942pt;}
.y28{bottom:146.559941pt;}
.y4f{bottom:152.639939pt;}
.y91{bottom:158.399937pt;}
.y17f{bottom:159.199936pt;}
.y15c{bottom:161.119936pt;}
.y4c{bottom:162.720000pt;}
.y86{bottom:164.319934pt;}
.y4e{bottom:165.119934pt;}
.y16a{bottom:174.239930pt;}
.y14f{bottom:174.399930pt;}
.y42{bottom:176.959929pt;}
.yad{bottom:177.119929pt;}
.y69{bottom:181.279927pt;}
.y90{bottom:184.959926pt;}
.ycf{bottom:192.319923pt;}
.y41{bottom:195.199922pt;}
.y17e{bottom:195.839922pt;}
.y18e{bottom:195.999922pt;}
.y15b{bottom:197.919921pt;}
.y85{bottom:201.119920pt;}
.y8f{bottom:203.359919pt;}
.yf8{bottom:203.679919pt;}
.yf1{bottom:207.040000pt;}
.yce{bottom:210.719916pt;}
.yf0{bottom:210.879916pt;}
.y14e{bottom:211.199916pt;}
.y40{bottom:212.959915pt;}
.yac{bottom:213.919914pt;}
.y17d{bottom:214.399914pt;}
.y68{bottom:218.079913pt;}
.y146{bottom:221.439911pt;}
.yf7{bottom:222.079911pt;}
.y169{bottom:224.319910pt;}
.ycc{bottom:226.560000pt;}
.ycb{bottom:230.399908pt;}
.y17c{bottom:232.799907pt;}
.y15a{bottom:234.719906pt;}
.y84{bottom:237.919905pt;}
.y3f{bottom:246.559901pt;}
.y14d{bottom:247.999901pt;}
.yab{bottom:250.719900pt;}
.y67{bottom:254.879898pt;}
.y27{bottom:255.359898pt;}
.y83{bottom:256.319897pt;}
.y145{bottom:258.239897pt;}
.y168{bottom:261.119896pt;}
.y3e{bottom:261.919895pt;}
.y128{bottom:262.880000pt;}
.y17b{bottom:269.599892pt;}
.y159{bottom:271.519891pt;}
.yc9{bottom:272.320000pt;}
.y82{bottom:274.719890pt;}
.yc8{bottom:276.159890pt;}
.y3d{bottom:277.279889pt;}
.yef{bottom:283.359887pt;}
.y14c{bottom:284.799886pt;}
.yaa{bottom:287.519885pt;}
.y66{bottom:291.839883pt;}
.y3c{bottom:292.639883pt;}
.y137{bottom:293.119883pt;}
.y144{bottom:295.039882pt;}
.y167{bottom:297.919881pt;}
.y17a{bottom:306.399877pt;}
.y3b{bottom:307.999877pt;}
.y81{bottom:311.519875pt;}
.y11c{bottom:314.880000pt;}
.yc6{bottom:318.880000pt;}
.yee{bottom:320.159872pt;}
.y158{bottom:321.599871pt;}
.yc5{bottom:322.719871pt;}
.y3a{bottom:323.199871pt;}
.ya9{bottom:324.319870pt;}
.y18d{bottom:324.799870pt;}
.y143{bottom:331.839867pt;}
.y14b{bottom:335.039866pt;}
.y11a{bottom:335.680000pt;}
.y39{bottom:338.559865pt;}
.y119{bottom:338.879864pt;}
.y26{bottom:339.999864pt;}
.y65{bottom:341.919863pt;}
.y179{bottom:343.199863pt;}
.y166{bottom:348.159861pt;}
.y80{bottom:348.319861pt;}
.y38{bottom:353.919858pt;}
.yec{bottom:356.000000pt;}
.y117{bottom:356.960000pt;}
.y157{bottom:358.399857pt;}
.y116{bottom:360.159856pt;}
.y126{bottom:360.640000pt;}
.ya8{bottom:361.279855pt;}
.y136{bottom:361.599855pt;}
.yc3{bottom:365.120000pt;}
.y142{bottom:368.639853pt;}
.yc2{bottom:368.959852pt;}
.y37{bottom:369.279852pt;}
.y14a{bottom:371.839851pt;}
.y124{bottom:374.720000pt;}
.yeb{bottom:376.959849pt;}
.y64{bottom:378.559849pt;}
.y114{bottom:378.560000pt;}
.y25{bottom:378.879848pt;}
.y178{bottom:379.999848pt;}
.y113{bottom:381.759847pt;}
.y36{bottom:384.639846pt;}
.y165{bottom:384.959846pt;}
.y7f{bottom:385.119846pt;}
.y123{bottom:390.239844pt;}
.y24{bottom:392.479843pt;}
.y156{bottom:395.199842pt;}
.yea{bottom:396.639841pt;}
.ya7{bottom:398.079841pt;}
.y122{bottom:398.080000pt;}
.y135{bottom:398.399841pt;}
.y111{bottom:399.680000pt;}
.y35{bottom:399.999840pt;}
.yc0{bottom:401.760000pt;}
.y141{bottom:405.439838pt;}
.y23{bottom:406.079838pt;}
.y11e{bottom:408.000000pt;}
.y149{bottom:408.639837pt;}
.ye9{bottom:415.039834pt;}
.y34{bottom:415.199834pt;}
.y63{bottom:415.359834pt;}
.y177{bottom:416.799833pt;}
.y120{bottom:416.800000pt;}
.y22{bottom:418.559833pt;}
.y164{bottom:421.759831pt;}
.y7e{bottom:421.919831pt;}
.ybf{bottom:422.719831pt;}
.y10b{bottom:422.720000pt;}
.y10d{bottom:424.640000pt;}
.y33{bottom:430.559828pt;}
.y10f{bottom:431.840000pt;}
.y155{bottom:431.999827pt;}
.ya6{bottom:434.879826pt;}
.y134{bottom:435.199826pt;}
.y109{bottom:438.240000pt;}
.y163{bottom:440.159824pt;}
.ye8{bottom:442.079823pt;}
.ybe{bottom:444.639822pt;}
.y148{bottom:445.439822pt;}
.y32{bottom:445.919822pt;}
.y62{bottom:452.159819pt;}
.y176{bottom:453.599819pt;}
.y140{bottom:455.519818pt;}
.y21{bottom:456.319817pt;}
.y7d{bottom:458.719817pt;}
.ye7{bottom:460.479816pt;}
.ybd{bottom:460.639816pt;}
.y31{bottom:461.279815pt;}
.y154{bottom:468.799812pt;}
.ya5{bottom:471.679811pt;}
.y133{bottom:471.999811pt;}
.y161{bottom:476.959809pt;}
.y30{bottom:477.919809pt;}
.ye6{bottom:479.039808pt;}
.y162{bottom:483.039807pt;}
.y61{bottom:488.959804pt;}
.y175{bottom:490.399804pt;}
.y13f{bottom:492.319803pt;}
.y2f{bottom:493.279803pt;}
.y20{bottom:494.079802pt;}
.y7c{bottom:495.519802pt;}
.y190{bottom:496.479801pt;}
.ybc{bottom:497.439801pt;}
.y107{bottom:501.600000pt;}
.y153{bottom:505.599798pt;}
.ya4{bottom:508.479797pt;}
.y132{bottom:508.799796pt;}
.y18c{bottom:508.959796pt;}
.y2e{bottom:509.919796pt;}
.y160{bottom:513.759794pt;}
.ye5{bottom:515.839794pt;}
.y152{bottom:523.999790pt;}
.y2d{bottom:525.279790pt;}
.y60{bottom:525.759790pt;}
.y174{bottom:527.199789pt;}
.y18b{bottom:527.359789pt;}
.y1f{bottom:531.999787pt;}
.y15f{bottom:532.159787pt;}
.y7b{bottom:532.319787pt;}
.ybb{bottom:534.239786pt;}
.yf6{bottom:539.359784pt;}
.y2c{bottom:540.639784pt;}
.y13e{bottom:542.399783pt;}
.ya3{bottom:545.279782pt;}
.y131{bottom:545.599782pt;}
.y1e{bottom:545.759782pt;}
.ye3{bottom:549.920000pt;}
.ye2{bottom:553.759778pt;}
.y151{bottom:555.839778pt;}
.y2b{bottom:555.999778pt;}
.y5f{bottom:562.559775pt;}
.y15e{bottom:563.839774pt;}
.y173{bottom:563.999774pt;}
.y18a{bottom:564.159774pt;}
.y7a{bottom:569.119772pt;}
.yf5{bottom:569.599772pt;}
.y29{bottom:570.079772pt;}
.yba{bottom:571.039772pt;}
.y2a{bottom:571.199772pt;}
.y1c{bottom:571.200000pt;}
.y13d{bottom:579.199768pt;}
.ya2{bottom:582.079767pt;}
.y130{bottom:582.399767pt;}
.ye0{bottom:585.600000pt;}
.yf4{bottom:587.999765pt;}
.yb9{bottom:589.439764pt;}
.y1a{bottom:594.559762pt;}
.y1b{bottom:594.719762pt;}
.y5e{bottom:599.359760pt;}
.y172{bottom:600.799760pt;}
.y189{bottom:600.959760pt;}
.y79{bottom:605.919758pt;}
.yb8{bottom:607.839757pt;}
.yf3{bottom:613.759754pt;}
.y13c{bottom:615.999754pt;}
.ya1{bottom:618.879752pt;}
.y12f{bottom:619.199752pt;}
.y19{bottom:620.799752pt;}
.yde{bottom:622.400000pt;}
.ydd{bottom:626.239750pt;}
.y105{bottom:627.200000pt;}
.y5d{bottom:636.159746pt;}
.y188{bottom:637.759745pt;}
.y18{bottom:641.119744pt;}
.y78{bottom:642.719743pt;}
.yb7{bottom:644.639742pt;}
.y103{bottom:653.600000pt;}
.ya0{bottom:655.679738pt;}
.y147{bottom:655.999738pt;}
.y12e{bottom:656.159738pt;}
.ydb{bottom:659.040000pt;}
.y17{bottom:659.839736pt;}
.yda{bottom:662.879735pt;}
.y13b{bottom:666.079734pt;}
.y187{bottom:674.559730pt;}
.y16{bottom:678.559729pt;}
.y77{bottom:679.519728pt;}
.yb6{bottom:681.439727pt;}
.y5c{bottom:686.559725pt;}
.y9f{bottom:692.479723pt;}
.y12d{bottom:692.799723pt;}
.y8e{bottom:695.359722pt;}
.y101{bottom:695.360000pt;}
.yd8{bottom:695.680000pt;}
.y15{bottom:697.279721pt;}
.y13a{bottom:702.879719pt;}
.y186{bottom:711.199716pt;}
.y14{bottom:713.919714pt;}
.y76{bottom:716.319713pt;}
.yd7{bottom:716.639713pt;}
.y8d{bottom:716.799713pt;}
.yb5{bottom:718.239713pt;}
.y5b{bottom:723.359711pt;}
.y9e{bottom:729.279708pt;}
.y12c{bottom:729.599708pt;}
.y13{bottom:731.199708pt;}
.y8c{bottom:732.159707pt;}
.yd6{bottom:735.039706pt;}
.yb4{bottom:736.799705pt;}
.yff{bottom:747.360000pt;}
.y9d{bottom:747.679701pt;}
.y185{bottom:747.999701pt;}
.y12{bottom:749.279700pt;}
.yd5{bottom:750.879700pt;}
.y75{bottom:753.119699pt;}
.y5a{bottom:760.159696pt;}
.y9c{bottom:766.079694pt;}
.y8b{bottom:766.399693pt;}
.y10{bottom:767.679693pt;}
.yd4{bottom:769.279692pt;}
.y171{bottom:771.679691pt;}
.y11{bottom:772.959691pt;}
.y184{bottom:784.799686pt;}
.yf{bottom:786.079686pt;}
.yd3{bottom:787.679685pt;}
.y74{bottom:789.919684pt;}
.yb2{bottom:790.879684pt;}
.yb3{bottom:793.599683pt;}
.y59{bottom:796.959681pt;}
.yfd{bottom:799.200000pt;}
.y9b{bottom:799.839680pt;}
.yb0{bottom:803.039679pt;}
.y8a{bottom:803.199679pt;}
.yaf{bottom:803.679679pt;}
.ye{bottom:804.479678pt;}
.y9a{bottom:805.119678pt;}
.y170{bottom:808.479677pt;}
.y94{bottom:808.960000pt;}
.yb1{bottom:813.119675pt;}
.y97{bottom:813.759674pt;}
.y99{bottom:819.839672pt;}
.yd{bottom:822.879671pt;}
.yd2{bottom:824.479670pt;}
.y98{bottom:825.119670pt;}
.y73{bottom:826.719669pt;}
.y183{bottom:826.879669pt;}
.y58{bottom:833.759666pt;}
.y89{bottom:839.999664pt;}
.yc{bottom:841.279663pt;}
.y96{bottom:843.839662pt;}
.y16f{bottom:845.279662pt;}
.yfb{bottom:851.200000pt;}
.y12b{bottom:858.399657pt;}
.yd1{bottom:861.279655pt;}
.y43{bottom:863.360000pt;}
.y182{bottom:863.679655pt;}
.y57{bottom:870.559652pt;}
.y49{bottom:871.679651pt;}
.y72{bottom:876.799649pt;}
.yd0{bottom:879.679648pt;}
.y16e{bottom:882.079647pt;}
.y48{bottom:888.479645pt;}
.y56{bottom:888.959644pt;}
.y12a{bottom:895.199642pt;}
.y181{bottom:900.479640pt;}
.yf9{bottom:900.800000pt;}
.y47{bottom:905.439638pt;}
.y71{bottom:913.599635pt;}
.y88{bottom:918.879632pt;}
.y16d{bottom:919.039632pt;}
.y55{bottom:920.639632pt;}
.y46{bottom:922.239631pt;}
.y4a{bottom:935.680000pt;}
.y6e{bottom:937.119625pt;}
.y45{bottom:939.199624pt;}
.y54{bottom:944.319622pt;}
.y4{bottom:962.399615pt;}
.y70{bottom:963.519615pt;}
.y6d{bottom:964.799614pt;}
.y6c{bottom:980.159608pt;}
.y6{bottom:988.799604pt;}
.y3{bottom:990.239604pt;}
.y6b{bottom:995.519602pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:0.640000pt;}
.h19{height:9.280000pt;}
.h25{height:12.160000pt;}
.h2a{height:12.320000pt;}
.h10{height:12.480000pt;}
.h27{height:13.120000pt;}
.h2b{height:14.080000pt;}
.h29{height:14.240000pt;}
.h28{height:14.560000pt;}
.h15{height:15.840000pt;}
.h6{height:16.640000pt;}
.h20{height:18.080000pt;}
.h21{height:18.240000pt;}
.h23{height:18.880000pt;}
.h1b{height:25.791865pt;}
.h1a{height:26.190615pt;}
.ha{height:29.061238pt;}
.h2c{height:29.794051pt;}
.h11{height:29.961551pt;}
.h17{height:29.982488pt;}
.h18{height:31.238738pt;}
.h1e{height:32.060925pt;}
.h4{height:32.531237pt;}
.h13{height:32.554674pt;}
.h26{height:32.648424pt;}
.h5{height:33.351549pt;}
.h12{height:34.968736pt;}
.h22{height:36.001236pt;}
.h7{height:36.130923pt;}
.h1{height:36.909048pt;}
.hd{height:39.132484pt;}
.he{height:39.243734pt;}
.h16{height:39.904984pt;}
.h2{height:40.911234pt;}
.hc{height:41.029984pt;}
.h14{height:42.029046pt;}
.h8{height:43.374983pt;}
.h2d{height:44.437482pt;}
.h9{height:44.468732pt;}
.h1d{height:45.156232pt;}
.hb{height:46.624981pt;}
.h1c{height:47.716231pt;}
.h24{height:50.931542pt;}
.hf{height:73.184971pt;}
.h1f{height:89.908714pt;}
.h0{height:1056.000000pt;}
.wb{width:0.640000pt;}
.w25{width:1.920000pt;}
.w28{width:2.080000pt;}
.w1f{width:2.240000pt;}
.w22{width:2.400000pt;}
.w38{width:2.560000pt;}
.w1d{width:2.720000pt;}
.w36{width:3.040000pt;}
.w7{width:3.200000pt;}
.w34{width:3.520000pt;}
.w26{width:3.680000pt;}
.w18{width:3.840000pt;}
.w16{width:4.160000pt;}
.w9{width:4.480000pt;}
.w35{width:4.640000pt;}
.w1b{width:4.800000pt;}
.w29{width:5.440000pt;}
.w2a{width:5.600000pt;}
.w27{width:5.760000pt;}
.w3c{width:5.920000pt;}
.w3{width:6.080000pt;}
.w5{width:6.240000pt;}
.wa{width:6.400000pt;}
.w2{width:6.720000pt;}
.w39{width:7.040000pt;}
.w6{width:7.360000pt;}
.w19{width:7.680000pt;}
.wd{width:8.000000pt;}
.w2d{width:9.760000pt;}
.w2f{width:10.080000pt;}
.w32{width:10.880000pt;}
.w2e{width:11.200000pt;}
.w37{width:11.680000pt;}
.w30{width:11.840000pt;}
.w31{width:12.000000pt;}
.we{width:15.360000pt;}
.w13{width:15.680000pt;}
.w2b{width:15.840000pt;}
.w12{width:16.160000pt;}
.w14{width:17.440000pt;}
.w10{width:18.080000pt;}
.wf{width:18.240000pt;}
.w11{width:18.400000pt;}
.w2c{width:18.560000pt;}
.w3a{width:19.200000pt;}
.w3b{width:19.360000pt;}
.w3d{width:19.520000pt;}
.w15{width:21.920000pt;}
.w20{width:28.800000pt;}
.w24{width:29.600000pt;}
.w21{width:31.200000pt;}
.w23{width:34.720000pt;}
.w33{width:39.680000pt;}
.w1e{width:40.160000pt;}
.w1c{width:40.480000pt;}
.wc{width:55.840000pt;}
.w8{width:82.080000pt;}
.w17{width:89.440000pt;}
.w4{width:101.120000pt;}
.w1a{width:128.800000pt;}
.w1{width:513.280000pt;}
.w0{width:816.000000pt;}
.x2c{left:-4.160241pt;}
.x0{left:0.000000pt;}
.x5{left:67.679973pt;}
.x20{left:81.759967pt;}
.x1{left:87.999965pt;}
.x6{left:90.879964pt;}
.x9{left:91.839963pt;}
.x1e{left:93.119963pt;}
.x30{left:95.999962pt;}
.x1b{left:103.200000pt;}
.x22{left:104.159958pt;}
.x1d{left:107.359894pt;}
.x18{left:111.359955pt;}
.x7c{left:114.400000pt;}
.x7d{left:119.840000pt;}
.xa{left:121.119920pt;}
.x15{left:128.639949pt;}
.x13{left:130.239915pt;}
.x1f{left:141.119944pt;}
.xaf{left:144.000033pt;}
.x21{left:146.559941pt;}
.xb2{left:152.798758pt;}
.x35{left:157.279937pt;}
.x41{left:159.520000pt;}
.x3a{left:161.919935pt;}
.x36{left:166.719933pt;}
.x3f{left:168.159933pt;}
.x33{left:169.760000pt;}
.x37{left:171.359931pt;}
.x34{left:175.520000pt;}
.x3b{left:177.919929pt;}
.x38{left:182.079927pt;}
.x7e{left:183.040000pt;}
.x7f{left:186.720000pt;}
.x27{left:189.760000pt;}
.x80{left:192.160000pt;}
.x55{left:193.120000pt;}
.x19{left:196.479921pt;}
.x1a{left:199.199920pt;}
.x3d{left:202.719919pt;}
.x1c{left:204.320000pt;}
.x64{left:208.640000pt;}
.xc{left:215.999914pt;}
.x42{left:217.120000pt;}
.x65{left:224.000000pt;}
.x43{left:232.480000pt;}
.x9d{left:235.199906pt;}
.x99{left:236.320000pt;}
.x3c{left:238.399905pt;}
.x9f{left:240.480000pt;}
.x9a{left:241.760000pt;}
.x23{left:243.519889pt;}
.x9e{left:245.120000pt;}
.x14{left:247.513196pt;}
.xb{left:250.079750pt;}
.x81{left:255.520000pt;}
.x82{left:259.200000pt;}
.x2{left:260.959896pt;}
.x83{left:264.640000pt;}
.x28{left:265.599894pt;}
.x2d{left:267.360000pt;}
.x24{left:269.919892pt;}
.x17{left:272.153061pt;}
.x29{left:277.759822pt;}
.x73{left:280.160000pt;}
.x8a{left:282.400000pt;}
.x44{left:283.520000pt;}
.x66{left:284.800000pt;}
.x8b{left:292.160000pt;}
.x56{left:295.040000pt;}
.x40{left:298.079881pt;}
.x45{left:301.600000pt;}
.xa4{left:304.160000pt;}
.x25{left:309.919876pt;}
.x16{left:311.839412pt;}
.x57{left:313.120000pt;}
.x8c{left:321.760000pt;}
.x67{left:324.000000pt;}
.x63{left:324.959744pt;}
.xd{left:327.199869pt;}
.x79{left:330.720000pt;}
.xe{left:332.639867pt;}
.x84{left:336.960000pt;}
.x8d{left:340.320000pt;}
.x46{left:341.600000pt;}
.xa5{left:345.920000pt;}
.x2e{left:349.440000pt;}
.x77{left:352.960000pt;}
.x2f{left:353.919858pt;}
.x7{left:358.079857pt;}
.x47{left:359.680000pt;}
.x7a{left:361.760000pt;}
.x7b{left:363.840000pt;}
.xa6{left:365.120000pt;}
.x2a{left:369.119852pt;}
.x58{left:372.160000pt;}
.xa7{left:374.880000pt;}
.xa8{left:378.560000pt;}
.x8e{left:380.640000pt;}
.x68{left:381.600000pt;}
.xa9{left:384.000000pt;}
.x78{left:393.120000pt;}
.x48{left:398.080000pt;}
.x69{left:399.680000pt;}
.x94{left:400.640000pt;}
.x59{left:402.720000pt;}
.x95{left:405.440000pt;}
.x85{left:407.520000pt;}
.x74{left:408.960000pt;}
.x8f{left:411.040000pt;}
.xaa{left:412.800000pt;}
.x75{left:413.760000pt;}
.x49{left:416.160000pt;}
.x5a{left:418.880000pt;}
.xf{left:425.119830pt;}
.x90{left:429.600000pt;}
.x10{left:430.559828pt;}
.xab{left:437.760000pt;}
.x6a{left:439.840000pt;}
.x91{left:441.600000pt;}
.xac{left:443.680000pt;}
.x96{left:445.120000pt;}
.xad{left:447.200000pt;}
.xae{left:452.640000pt;}
.x76{left:454.240000pt;}
.x4a{left:456.160000pt;}
.xa3{left:457.760000pt;}
.x92{left:460.000000pt;}
.xa2{left:469.279812pt;}
.x4b{left:472.320000pt;}
.x5b{left:475.040000pt;}
.x86{left:480.000000pt;}
.x31{left:488.639805pt;}
.x5c{left:490.400000pt;}
.x6b{left:497.120000pt;}
.x32{left:498.719801pt;}
.xa0{left:500.480000pt;}
.x93{left:501.440000pt;}
.x9b{left:504.000000pt;}
.xa1{left:506.720000pt;}
.xb3{left:508.799796pt;}
.x97{left:509.920000pt;}
.x6c{left:512.480000pt;}
.x4c{left:514.400000pt;}
.x9c{left:519.680000pt;}
.x98{left:525.760000pt;}
.x4d{left:529.760000pt;}
.x5d{left:535.200000pt;}
.x87{left:546.880000pt;}
.x5e{left:552.320000pt;}
.x6d{left:554.880000pt;}
.x4e{left:572.480000pt;}
.x4f{left:589.600000pt;}
.x11{left:594.879762pt;}
.xb0{left:596.639761pt;}
.x12{left:599.999760pt;}
.x3{left:601.280000pt;}
.x2b{left:606.400000pt;}
.xb1{left:607.519757pt;}
.x5f{left:610.720000pt;}
.x6e{left:612.000000pt;}
.x88{left:619.360000pt;}
.xb4{left:623.199751pt;}
.x89{left:624.800000pt;}
.x6f{left:627.680000pt;}
.x50{left:630.400000pt;}
.xb5{left:634.079746pt;}
.x72{left:640.479744pt;}
.x60{left:643.200000pt;}
.x51{left:646.080000pt;}
.x4{left:663.679735pt;}
.x61{left:664.800000pt;}
.x70{left:670.240000pt;}
.x62{left:678.560000pt;}
.x3e{left:684.799726pt;}
.x52{left:688.960000pt;}
.x39{left:692.159723pt;}
.x71{left:702.400000pt;}
.x53{left:710.560000pt;}
.x54{left:724.320000pt;}
.x8{left:742.240000pt;}
.x26{left:743.999702pt;}
}




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