
    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_c09c2518ac3ab5729844c719.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1b7a73debe27708e253c6ac8.woff2')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_649e7918ff63be01268b5c2c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0763e99f802c49d5df43d685.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.684082;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_22db58df2e1e8d5eaa0e7e89.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_145e1f164159f248981cad0f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4e6d8ebc2e0e68519204a40a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4dc55b7140fcc2b7746d59c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ee6026a1cb3f66b41976e379.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7227cc75ab6c78585fdc386f.woff2')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;}
.mf{transform:matrix(0.232683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232683,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236694,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.239964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239964,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240434,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m3{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);}
.md{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);}
.m0{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);}
.me{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);}
.m2{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);}
.m1{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);}
.v2{vertical-align:-16.559993px;}
.v3{vertical-align:-15.119994px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.959995px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:6.673257px;}
.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;}
}
.ws5{word-spacing:-32.399987px;}
.ws6{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.559993px;}
.ws4{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.499995px;}
.ws8{word-spacing:-12.059995px;}
.ws9{word-spacing:-9.719996px;}
.ws2{word-spacing:-8.999996px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-3.768896px;}
._0{margin-left:-2.755702px;}
._2{margin-left:-1.430923px;}
._1{width:1.125732px;}
._5{width:2.982252px;}
._11{width:4.108470px;}
._c{width:5.561846px;}
._b{width:6.627702px;}
._a{width:7.895256px;}
._9{width:8.994300px;}
._16{width:10.012476px;}
._6{width:11.058984px;}
._4{width:12.264960px;}
._7{width:13.463329px;}
._10{width:14.866749px;}
._8{width:16.106118px;}
._e{width:18.000111px;}
._d{width:19.822099px;}
._f{width:21.186481px;}
._14{width:22.244847px;}
._15{width:23.245342px;}
._17{width:24.691988px;}
._13{width:27.543509px;}
._12{width:28.745311px;}
._1c{width:111.270620px;}
._1b{width:194.589590px;}
._1a{width:251.484969px;}
._20{width:268.662394px;}
._1d{width:285.595858px;}
._21{width:292.436706px;}
._19{width:296.062771px;}
._22{width:303.555804px;}
._1f{width:345.029070px;}
._23{width:356.064884px;}
._18{width:369.199173px;}
._1e{width:404.162459px;}
.fc8{color:rgb(44,61,80);}
.fc6{color:rgb(0,31,95);}
.fc5{color:rgb(192,0,0);}
.fcb{color:rgb(0,111,192);}
.fca{color:rgb(0,101,204);}
.fc7{color:rgb(226,108,9);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(111,47,159);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs4{font-size:20.879992px;}
.fs9{font-size:27.359989px;}
.fs7{font-size:30.239988px;}
.fsa{font-size:33.119987px;}
.fs6{font-size:35.999986px;}
.fs8{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs5{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.598972px;}
.y6{bottom:3.958909px;}
.y9{bottom:3.958917px;}
.yd{bottom:3.960038px;}
.yc{bottom:51.060240px;}
.y10{bottom:52.319979px;}
.yb{bottom:55.020278px;}
.ye{bottom:56.280277px;}
.y51{bottom:93.360263px;}
.yd0{bottom:106.860257px;}
.y160{bottom:107.760257px;}
.y18e{bottom:108.480257px;}
.y68{bottom:111.360255px;}
.y20a{bottom:113.160255px;}
.y1a7{bottom:115.319954px;}
.y1a1{bottom:118.739953px;}
.yff{bottom:122.700251px;}
.y15f{bottom:125.039950px;}
.y18d{bottom:125.760250px;}
.y1d8{bottom:126.479949px;}
.y209{bottom:127.920249px;}
.ycf{bottom:128.100249px;}
.y67{bottom:128.639949px;}
.y1a0{bottom:132.599947px;}
.y9e{bottom:139.259944px;}
.y12d{bottom:139.440244px;}
.yfe{bottom:142.320243px;}
.y15e{bottom:142.679943px;}
.y208{bottom:144.299942px;}
.yce{bottom:145.379942px;}
.y66{bottom:145.739942px;}
.y1d7{bottom:146.279941px;}
.y18c{bottom:147.000241px;}
.y9d{bottom:155.639938px;}
.y12c{bottom:155.999938px;}
.y207{bottom:159.779936px;}
.y15d{bottom:159.959936px;}
.yfd{bottom:161.759935px;}
.y65{bottom:163.019935px;}
.y18b{bottom:164.279934px;}
.y1d6{bottom:165.359934px;}
.y12b{bottom:170.759932px;}
.y9c{bottom:172.019931px;}
.y15c{bottom:177.239929px;}
.y206{bottom:178.499929px;}
.y64{bottom:180.299928px;}
.yfc{bottom:181.559927px;}
.y18a{bottom:181.739927px;}
.y1d5{bottom:183.719927px;}
.y9b{bottom:188.399925px;}
.ycd{bottom:189.299924px;}
.y12a{bottom:189.659924px;}
.y205{bottom:193.619923px;}
.y15b{bottom:196.859921px;}
.y189{bottom:199.019920px;}
.yfb{bottom:199.919920px;}
.y50{bottom:204.239918px;}
.y9a{bottom:204.959918px;}
.y1d4{bottom:206.939917px;}
.y129{bottom:209.999916px;}
.y63{bottom:210.719916px;}
.ycc{bottom:212.339915px;}
.y4f{bottom:213.419915px;}
.y188{bottom:216.299913px;}
.y15a{bottom:216.659913px;}
.y99{bottom:221.339911px;}
.yfa{bottom:221.699911px;}
.y62{bottom:226.379909px;}
.y1d3{bottom:226.739909px;}
.y128{bottom:228.359909px;}
.ycb{bottom:229.619908px;}
.y204{bottom:230.339908px;}
.y187{bottom:234.299906px;}
.y159{bottom:236.099906px;}
.y98{bottom:237.719905px;}
.yf9{bottom:238.979904px;}
.y61{bottom:241.859903px;}
.y203{bottom:244.379902px;}
.y127{bottom:245.639902px;}
.y1d2{bottom:246.719901px;}
.yca{bottom:250.859900px;}
.y186{bottom:253.019899px;}
.y97{bottom:254.099898px;}
.y158{bottom:254.459898px;}
.y202{bottom:259.859896px;}
.y1d1{bottom:265.799894px;}
.yf8{bottom:266.159894px;}
.y126{bottom:266.879893px;}
.y157{bottom:271.559891px;}
.y60{bottom:272.819891px;}
.y185{bottom:273.899890px;}
.y96{bottom:274.799890px;}
.yc9{bottom:277.139889px;}
.y201{bottom:278.759888px;}
.y4e{bottom:280.739888px;}
.y1d0{bottom:284.159886px;}
.yf7{bottom:285.059886px;}
.y4d{bottom:288.839884px;}
.y5f{bottom:290.099884px;}
.y184{bottom:290.999884px;}
.y156{bottom:292.799883px;}
.yc8{bottom:294.419882px;}
.y125{bottom:295.859882px;}
.y95{bottom:296.579881px;}
.y200{bottom:300.719880px;}
.yf6{bottom:302.339879px;}
.y4c{bottom:304.499878px;}
.y1cf{bottom:307.199877px;}
.y5e{bottom:307.379877px;}
.y155{bottom:310.079876px;}
.y94{bottom:315.479874px;}
.y183{bottom:317.819873px;}
.y1ff{bottom:319.259872px;}
.yf5{bottom:321.779871px;}
.y4b{bottom:323.039871px;}
.yc7{bottom:324.479870px;}
.y5d{bottom:324.659870px;}
.y1ce{bottom:326.999869px;}
.y93{bottom:334.559866px;}
.y182{bottom:335.099866px;}
.y124{bottom:336.539865px;}
.y154{bottom:336.899865px;}
.y4a{bottom:338.339865px;}
.yf4{bottom:339.959864px;}
.yc6{bottom:341.759863px;}
.y5c{bottom:341.939863px;}
.y1cd{bottom:346.799861px;}
.y1fe{bottom:351.299859px;}
.y181{bottom:352.379859px;}
.y92{bottom:353.459859px;}
.y49{bottom:353.639859px;}
.y153{bottom:354.179858px;}
.y123{bottom:357.419857px;}
.y5b{bottom:359.219856px;}
.yf3{bottom:359.939856px;}
.y1cc{bottom:365.879854px;}
.y48{bottom:368.399853px;}
.y180{bottom:369.659852px;}
.y1fd{bottom:371.099852px;}
.y152{bottom:371.459851px;}
.yc5{bottom:376.139850px;}
.y5a{bottom:376.319849px;}
.y91{bottom:377.219849px;}
.yf2{bottom:379.559848px;}
.y47{bottom:383.879846px;}
.y1cb{bottom:384.239846px;}
.y1fc{bottom:388.559845px;}
.y17f{bottom:389.459844px;}
.y151{bottom:391.079844px;}
.yc4{bottom:393.419843px;}
.y59{bottom:393.599843px;}
.y90{bottom:394.499842px;}
.yf1{bottom:399.179840px;}
.y46{bottom:402.059839px;}
.y1ca{bottom:407.639837px;}
.y17e{bottom:409.079836px;}
.y122{bottom:410.159836px;}
.y58{bottom:410.879836px;}
.y1fb{bottom:411.059836px;}
.yc3{bottom:411.959835px;}
.y8f{bottom:413.219835px;}
.y45{bottom:417.539833px;}
.y1c9{bottom:427.439829px;}
.y57{bottom:428.159829px;}
.y17d{bottom:428.339829px;}
.yc2{bottom:429.239828px;}
.y8e{bottom:430.499828px;}
.y150{bottom:430.679828px;}
.y121{bottom:431.219828px;}
.y44{bottom:433.019827px;}
.y1a6{bottom:438.239825px;}
.yf0{bottom:439.139824px;}
.y56{bottom:445.439822px;}
.y1c8{bottom:447.239821px;}
.yc1{bottom:447.599821px;}
.y8d{bottom:447.779821px;}
.y17c{bottom:448.139821px;}
.y1fa{bottom:448.859820px;}
.y14f{bottom:449.939820px;}
.y43{bottom:450.659820px;}
.yef{bottom:456.419817px;}
.y120{bottom:458.219817px;}
.y55{bottom:462.719815px;}
.y1a5{bottom:463.619815px;}
.yc0{bottom:464.519814px;}
.y19f{bottom:465.779814px;}
.y1c7{bottom:466.319813px;}
.y42{bottom:466.679813px;}
.y17b{bottom:467.939813px;}
.y14e{bottom:468.299813px;}
.y8c{bottom:470.819812px;}
.y1f9{bottom:471.539811px;}
.y11f{bottom:479.459808px;}
.y54{bottom:479.819808px;}
.y41{bottom:481.799807px;}
.ybf{bottom:482.879807px;}
.y19e{bottom:483.059807px;}
.y1c6{bottom:484.859806px;}
.y17a{bottom:486.479805px;}
.y8b{bottom:488.099805px;}
.y14d{bottom:489.899804px;}
.y1f8{bottom:491.339803px;}
.y11e{bottom:496.739801px;}
.y53{bottom:497.099801px;}
.y40{bottom:499.439800px;}
.ybe{bottom:499.979800px;}
.yee{bottom:500.159800px;}
.y19d{bottom:500.339800px;}
.y52{bottom:501.239800px;}
.y179{bottom:503.759798px;}
.y8a{bottom:505.379798px;}
.y14c{bottom:507.179797px;}
.y1c5{bottom:507.719797px;}
.y1f7{bottom:513.119795px;}
.yed{bottom:517.439793px;}
.ybd{bottom:518.519793px;}
.y3d{bottom:521.039792px;}
.y3f{bottom:521.399791px;}
.y3e{bottom:522.839791px;}
.y178{bottom:524.999790px;}
.y11d{bottom:526.079790px;}
.y89{bottom:526.619789px;}
.y1c4{bottom:527.519789px;}
.y14b{bottom:533.999786px;}
.y19c{bottom:534.719786px;}
.ybc{bottom:535.799786px;}
.yec{bottom:537.239785px;}
.y3c{bottom:537.779785px;}
.y1f6{bottom:540.299784px;}
.y177{bottom:542.279783px;}
.y88{bottom:543.899782px;}
.y11c{bottom:546.779781px;}
.y1c3{bottom:547.319781px;}
.y3b{bottom:548.579781px;}
.y19b{bottom:555.959778px;}
.ybb{bottom:556.859777px;}
.yeb{bottom:557.939777px;}
.y1f5{bottom:560.279776px;}
.y3a{bottom:564.059774px;}
.y1c2{bottom:566.399773px;}
.y11b{bottom:567.299773px;}
.y14a{bottom:568.379773px;}
.y176{bottom:568.559773px;}
.y87{bottom:570.359772px;}
.y19a{bottom:573.239771px;}
.yba{bottom:574.139770px;}
.yea{bottom:578.819768px;}
.y39{bottom:579.539768px;}
.y1f4{bottom:580.079768px;}
.y1c1{bottom:584.759766px;}
.y149{bottom:585.659766px;}
.y175{bottom:585.839766px;}
.y11a{bottom:588.359765px;}
.y86{bottom:589.079764px;}
.y38{bottom:595.019762px;}
.y199{bottom:596.639761px;}
.y1f3{bottom:598.439761px;}
.ye9{bottom:599.879760px;}
.yb9{bottom:600.959760px;}
.y1c0{bottom:602.939759px;}
.y174{bottom:603.119759px;}
.y148{bottom:605.459758px;}
.y85{bottom:607.079757px;}
.y119{bottom:607.979757px;}
.y37{bottom:610.859756px;}
.yb8{bottom:618.239753px;}
.y1bf{bottom:620.219752px;}
.y84{bottom:624.359750px;}
.y147{bottom:625.079750px;}
.y36{bottom:625.979750px;}
.y1f2{bottom:627.059749px;}
.y118{bottom:629.039748px;}
.yb7{bottom:635.519746px;}
.y1be{bottom:637.499745px;}
.ye8{bottom:639.479744px;}
.y35{bottom:641.999743px;}
.y83{bottom:643.079743px;}
.y146{bottom:643.439743px;}
.y1f1{bottom:646.859741px;}
.y173{bottom:650.639740px;}
.yb6{bottom:652.619739px;}
.y117{bottom:654.239738px;}
.ye7{bottom:656.759737px;}
.y34{bottom:657.479737px;}
.y1bd{bottom:658.739737px;}
.y82{bottom:661.079736px;}
.y145{bottom:663.059735px;}
.y1f0{bottom:665.939734px;}
.y172{bottom:667.919733px;}
.yb5{bottom:669.899732px;}
.y33{bottom:673.139731px;}
.y116{bottom:675.299730px;}
.y1bc{bottom:676.019730px;}
.ye6{bottom:681.059728px;}
.y144{bottom:681.419727px;}
.y81{bottom:682.139727px;}
.y1ef{bottom:684.299726px;}
.yb4{bottom:687.179725px;}
.y31{bottom:688.799724px;}
.y115{bottom:692.579723px;}
.y32{bottom:693.299723px;}
.y171{bottom:697.619721px;}
.ye5{bottom:698.339721px;}
.y80{bottom:699.599720px;}
.y143{bottom:701.399719px;}
.y1bb{bottom:702.659719px;}
.y30{bottom:704.099718px;}
.yb3{bottom:704.459718px;}
.y1ee{bottom:707.699717px;}
.y170{bottom:714.899714px;}
.ye4{bottom:715.619714px;}
.y2f{bottom:719.219712px;}
.y142{bottom:719.579712px;}
.y1ba{bottom:719.939712px;}
.y114{bottom:720.479712px;}
.yb2{bottom:721.739711px;}
.y7f{bottom:726.239710px;}
.y1ed{bottom:727.139709px;}
.y16f{bottom:731.099708px;}
.ye3{bottom:734.879706px;}
.y2e{bottom:735.239706px;}
.y1b9{bottom:737.219705px;}
.yb1{bottom:739.019704px;}
.y141{bottom:742.979703px;}
.y7e{bottom:743.339703px;}
.y113{bottom:745.679702px;}
.y1ec{bottom:746.759701px;}
.y2d{bottom:750.719700px;}
.ye2{bottom:755.039698px;}
.y16e{bottom:756.299697px;}
.y1b8{bottom:756.659697px;}
.y7d{bottom:760.619696px;}
.y140{bottom:762.419695px;}
.y1eb{bottom:765.119694px;}
.y112{bottom:765.299694px;}
.y2c{bottom:766.379693px;}
.ye1{bottom:774.479690px;}
.y1b7{bottom:776.279689px;}
.yb0{bottom:777.719689px;}
.y7c{bottom:777.899689px;}
.y13f{bottom:780.959688px;}
.y2a{bottom:781.859687px;}
.y111{bottom:784.919686px;}
.y2b{bottom:786.359685px;}
.y1ea{bottom:787.619685px;}
.y16d{bottom:787.799685px;}
.ye0{bottom:794.099682px;}
.y1b6{bottom:794.819682px;}
.y7b{bottom:795.179682px;}
.y29{bottom:797.159681px;}
.y1a4{bottom:804.719678px;}
.y110{bottom:805.979678px;}
.y1e9{bottom:807.239677px;}
.y13e{bottom:811.019676px;}
.y28{bottom:812.279675px;}
.y7a{bottom:812.459675px;}
.y1b5{bottom:814.439674px;}
.y16c{bottom:819.479672px;}
.y10f{bottom:825.419670px;}
.y1e8{bottom:826.859669px;}
.y27{bottom:828.299669px;}
.y13d{bottom:829.559668px;}
.yaf{bottom:829.919668px;}
.ydf{bottom:832.079667px;}
.y1b4{bottom:832.799667px;}
.y79{bottom:834.059666px;}
.y26{bottom:843.779662px;}
.y1e7{bottom:845.219662px;}
.y10e{bottom:846.119662px;}
.yae{bottom:847.199661px;}
.y13c{bottom:848.279661px;}
.yde{bottom:850.439660px;}
.y78{bottom:851.339659px;}
.y1b3{bottom:852.599659px;}
.y1a3{bottom:852.779659px;}
.y25{bottom:859.439656px;}
.yad{bottom:864.479654px;}
.y10d{bottom:865.739654px;}
.y13b{bottom:866.639653px;}
.y1e6{bottom:868.439653px;}
.ydd{bottom:868.799652px;}
.y1b2{bottom:872.039651px;}
.y23{bottom:875.099650px;}
.y16b{bottom:875.459650px;}
.y77{bottom:877.799649px;}
.y24{bottom:879.599648px;}
.yac{bottom:881.759647px;}
.y13a{bottom:883.919646px;}
.y16a{bottom:884.819646px;}
.y10c{bottom:886.619645px;}
.y1e5{bottom:890.039644px;}
.y22{bottom:890.399644px;}
.y1b1{bottom:890.579644px;}
.y76{bottom:895.079642px;}
.y139{bottom:902.279639px;}
.yab{bottom:903.359639px;}
.y21{bottom:905.519638px;}
.y10b{bottom:906.419637px;}
.ydc{bottom:907.679637px;}
.y198{bottom:909.839636px;}
.y1e4{bottom:911.099636px;}
.y1b0{bottom:912.179635px;}
.y75{bottom:912.359635px;}
.y169{bottom:916.139634px;}
.yaa{bottom:920.639632px;}
.y20{bottom:921.179632px;}
.y138{bottom:923.519631px;}
.y10a{bottom:926.219630px;}
.y1e3{bottom:929.459628px;}
.y74{bottom:929.639628px;}
.ydb{bottom:930.719628px;}
.y168{bottom:933.419627px;}
.y1f{bottom:936.659625px;}
.ya9{bottom:938.099625px;}
.y197{bottom:938.459625px;}
.y73{bottom:946.919621px;}
.yda{bottom:949.079620px;}
.y137{bottom:949.799620px;}
.y109{bottom:950.699620px;}
.y1e{bottom:952.319619px;}
.y1e2{bottom:952.679619px;}
.ya8{bottom:955.199618px;}
.y196{bottom:955.739618px;}
.y167{bottom:960.059616px;}
.y1af{bottom:964.199614px;}
.y136{bottom:967.079613px;}
.yd9{bottom:967.439613px;}
.y1c{bottom:967.799613px;}
.y108{bottom:967.979613px;}
.y72{bottom:968.159613px;}
.y1e1{bottom:969.959612px;}
.ya7{bottom:971.579611px;}
.y1d{bottom:972.299611px;}
.y195{bottom:973.199611px;}
.y166{bottom:977.339609px;}
.y1ae{bottom:981.659607px;}
.y1b{bottom:983.099607px;}
.y135{bottom:984.539606px;}
.y107{bottom:984.899606px;}
.y71{bottom:985.439606px;}
.ya6{bottom:987.959605px;}
.y1e0{bottom:991.559603px;}
.y194{bottom:992.459603px;}
.y165{bottom:994.619602px;}
.yd8{bottom:997.859601px;}
.y1ad{bottom:998.939600px;}
.y134{bottom:1001.819599px;}
.y106{bottom:1002.359599px;}
.y70{bottom:1003.259599px;}
.ya5{bottom:1004.339598px;}
.y1df{bottom:1008.839596px;}
.y193{bottom:1012.259595px;}
.y164{bottom:1014.599594px;}
.y1ac{bottom:1016.039594px;}
.yd7{bottom:1016.219594px;}
.y1a{bottom:1017.839593px;}
.y133{bottom:1019.459592px;}
.y105{bottom:1019.639592px;}
.y6f{bottom:1020.179592px;}
.ya4{bottom:1020.719592px;}
.y192{bottom:1031.699587px;}
.y1ab{bottom:1033.319587px;}
.y1de{bottom:1035.299586px;}
.yd6{bottom:1036.019586px;}
.y6e{bottom:1036.559585px;}
.y104{bottom:1036.919585px;}
.y132{bottom:1037.459585px;}
.ya3{bottom:1046.279581px;}
.y191{bottom:1050.059580px;}
.y1aa{bottom:1050.599580px;}
.y1dd{bottom:1052.579579px;}
.y6d{bottom:1053.119579px;}
.yd5{bottom:1055.819578px;}
.y131{bottom:1056.179578px;}
.y103{bottom:1057.799577px;}
.y12{bottom:1060.679576px;}
.ya2{bottom:1062.659575px;}
.y18{bottom:1065.720600px;}
.y1a9{bottom:1067.879573px;}
.y6c{bottom:1069.499572px;}
.y1dc{bottom:1069.859572px;}
.y190{bottom:1071.299571px;}
.y130{bottom:1074.539570px;}
.yd4{bottom:1075.259570px;}
.y16{bottom:1078.319569px;}
.ya1{bottom:1079.039568px;}
.y163{bottom:1079.399568px;}
.y102{bottom:1084.079566px;}
.y1a8{bottom:1085.159566px;}
.y6b{bottom:1085.879566px;}
.y18f{bottom:1088.579565px;}
.y1db{bottom:1092.359563px;}
.y12f{bottom:1092.899563px;}
.yd3{bottom:1093.439563px;}
.ya0{bottom:1095.419562px;}
.y15{bottom:1095.599562px;}
.y162{bottom:1098.119561px;}
.y101{bottom:1101.359559px;}
.y6a{bottom:1106.039558px;}
.y12e{bottom:1111.079556px;}
.y9f{bottom:1111.799555px;}
.y1da{bottom:1112.159555px;}
.yd2{bottom:1113.239555px;}
.y161{bottom:1115.399554px;}
.y14{bottom:1121.519551px;}
.y1d9{bottom:1131.239548px;}
.yd1{bottom:1131.419547px;}
.y69{bottom:1132.319547px;}
.y100{bottom:1132.679547px;}
.y17{bottom:1134.659546px;}
.y13{bottom:1138.799544px;}
.y11{bottom:1146.899541px;}
.y1a2{bottom:1147.979541px;}
.ya{bottom:1184.339526px;}
.y3{bottom:1188.479525px;}
.y8{bottom:1204.320600px;}
.y2{bottom:1207.739517px;}
.y7{bottom:1208.279517px;}
.y5{bottom:1223.220600px;}
.y1{bottom:1226.819509px;}
.y4{bottom:1227.179509px;}
.yf{bottom:1240.679504px;}
.h6{height:14.507924px;}
.h8{height:16.920000px;}
.h18{height:18.542805px;}
.h2{height:18.720000px;}
.h1b{height:20.494679px;}
.hc{height:21.011476px;}
.h1a{height:23.012569px;}
.hb{height:25.013662px;}
.h17{height:26.350302px;}
.h15{height:32.693893px;}
.h4{height:33.518307px;}
.he{height:33.706744px;}
.h1d{height:35.143580px;}
.h3{height:36.597642px;}
.h11{height:36.624009px;}
.ha{height:37.520493px;}
.h10{height:39.313461px;}
.hf{height:39.339828px;}
.hd{height:39.830258px;}
.h7{height:40.501390px;}
.h5{height:41.522679px;}
.h13{height:43.506897px;}
.h12{height:43.536076px;}
.h14{height:43.537276px;}
.h1c{height:44.893107px;}
.h16{height:45.992794px;}
.h1{height:46.025138px;}
.h19{height:53.461385px;}
.h9{height:73.195283px;}
.h0{height:1263.000000px;}
.w4{width:1.260000px;}
.w2{width:3.420000px;}
.w3{width:7.200000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x9{left:37.439985px;}
.x35{left:45.899982px;}
.x36{left:54.719978px;}
.x1{left:59.939976px;}
.x4b{left:64.079974px;}
.x37{left:65.519974px;}
.x47{left:66.599973px;}
.x39{left:68.032923px;}
.x2e{left:70.199972px;}
.x68{left:71.639971px;}
.x3c{left:74.879970px;}
.x3e{left:75.959970px;}
.x4c{left:77.939969px;}
.x2c{left:79.739968px;}
.x3a{left:81.539967px;}
.x42{left:84.239966px;}
.x8{left:85.859966px;}
.x5a{left:86.939965px;}
.x3b{left:89.272614px;}
.x2a{left:93.959962px;}
.x3d{left:95.039962px;}
.x2b{left:98.279918px;}
.x49{left:101.879959px;}
.x58{left:103.859958px;}
.x27{left:105.839958px;}
.x57{left:108.179957px;}
.x59{left:117.179953px;}
.x4a{left:122.039951px;}
.x2d{left:136.079946px;}
.x4d{left:138.599945px;}
.x2f{left:142.019943px;}
.x5b{left:146.879941px;}
.x3f{left:148.679941px;}
.x69{left:151.379939px;}
.x43{left:153.179939px;}
.x40{left:159.299936px;}
.x38{left:160.919936px;}
.xa{left:185.219926px;}
.x11{left:191.519923px;}
.x5c{left:197.819921px;}
.x41{left:199.979920px;}
.x63{left:201.059920px;}
.x64{left:210.059916px;}
.x44{left:216.539913px;}
.x30{left:217.799913px;}
.x31{left:219.419912px;}
.x45{left:222.119911px;}
.xd{left:232.739145px;}
.x25{left:235.079788px;}
.x1e{left:237.599161px;}
.x28{left:239.039904px;}
.x21{left:241.559385px;}
.x16{left:242.999309px;}
.x65{left:254.339898px;}
.xb{left:256.499897px;}
.x66{left:262.439895px;}
.x29{left:266.759893px;}
.x34{left:272.339891px;}
.x33{left:274.859079px;}
.x32{left:295.199882px;}
.x24{left:312.659828px;}
.x1d{left:313.739128px;}
.x15{left:318.959229px;}
.x5f{left:327.955944px;}
.x46{left:330.119868px;}
.x48{left:332.279867px;}
.x60{left:340.559794px;}
.x61{left:343.439523px;}
.x4e{left:347.039861px;}
.x62{left:356.220666px;}
.x5d{left:358.559857px;}
.x23{left:368.279868px;}
.x1f{left:377.459849px;}
.x26{left:379.073848px;}
.x17{left:382.859847px;}
.x1a{left:386.999864px;}
.x4f{left:388.619845px;}
.x12{left:391.499843px;}
.x50{left:395.999842px;}
.x22{left:398.519841px;}
.x20{left:400.139840px;}
.x51{left:401.579839px;}
.xe{left:403.199839px;}
.xc{left:412.739845px;}
.x18{left:416.339833px;}
.x19{left:417.419833px;}
.x52{left:441.539823px;}
.x53{left:448.739821px;}
.x1b{left:472.319811px;}
.x13{left:477.719809px;}
.x1c{left:479.879808px;}
.x14{left:485.279806px;}
.x54{left:520.199792px;}
.x55{left:528.839788px;}
.x67{left:567.719773px;}
.x56{left:591.839763px;}
.xf{left:690.120446px;}
.x2{left:697.139721px;}
.x5e{left:700.196599px;}
.x5{left:716.039714px;}
.x4{left:722.879711px;}
.x6{left:801.899679px;}
.x7{left:825.480000px;}
.x3{left:832.320000px;}
.x10{left:840.960000px;}
@media print{
.v2{vertical-align:-14.719994pt;}
.v3{vertical-align:-13.439995pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.519995pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:5.931784pt;}
.ws5{word-spacing:-28.799988pt;}
.ws6{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-11.999995pt;}
.ws8{word-spacing:-10.719996pt;}
.ws9{word-spacing:-8.639997pt;}
.ws2{word-spacing:-7.999997pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-3.350129pt;}
._0{margin-left:-2.449513pt;}
._2{margin-left:-1.271931pt;}
._1{width:1.000651pt;}
._5{width:2.650890pt;}
._11{width:3.651973pt;}
._c{width:4.943863pt;}
._b{width:5.891291pt;}
._a{width:7.018005pt;}
._9{width:7.994933pt;}
._16{width:8.899979pt;}
._6{width:9.830208pt;}
._4{width:10.902187pt;}
._7{width:11.967404pt;}
._10{width:13.214888pt;}
._8{width:14.316549pt;}
._e{width:16.000099pt;}
._d{width:17.619644pt;}
._f{width:18.832427pt;}
._14{width:19.773198pt;}
._15{width:20.662526pt;}
._17{width:21.948434pt;}
._13{width:24.483120pt;}
._12{width:25.551388pt;}
._1c{width:98.907218pt;}
._1b{width:172.968525pt;}
._1a{width:223.542195pt;}
._20{width:238.811017pt;}
._1d{width:253.862984pt;}
._21{width:259.943738pt;}
._19{width:263.166908pt;}
._22{width:269.827381pt;}
._1f{width:306.692507pt;}
._23{width:316.502119pt;}
._18{width:328.177043pt;}
._1e{width:359.255519pt;}
.fs4{font-size:18.559993pt;}
.fs9{font-size:24.319990pt;}
.fs7{font-size:26.879989pt;}
.fsa{font-size:29.439988pt;}
.fs6{font-size:31.999987pt;}
.fs8{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs5{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:3.199086pt;}
.y6{bottom:3.519030pt;}
.y9{bottom:3.519037pt;}
.yd{bottom:3.520034pt;}
.yc{bottom:45.386880pt;}
.y10{bottom:46.506648pt;}
.yb{bottom:48.906914pt;}
.ye{bottom:50.026913pt;}
.y51{bottom:82.986900pt;}
.yd0{bottom:94.986895pt;}
.y160{bottom:95.786895pt;}
.y18e{bottom:96.426895pt;}
.y68{bottom:98.986894pt;}
.y20a{bottom:100.586893pt;}
.y1a7{bottom:102.506626pt;}
.y1a1{bottom:105.546624pt;}
.yff{bottom:109.066890pt;}
.y15f{bottom:111.146622pt;}
.y18d{bottom:111.786889pt;}
.y1d8{bottom:112.426622pt;}
.y209{bottom:113.706888pt;}
.ycf{bottom:113.866888pt;}
.y67{bottom:114.346621pt;}
.y1a0{bottom:117.866620pt;}
.y9e{bottom:123.786617pt;}
.y12d{bottom:123.946884pt;}
.yfe{bottom:126.506883pt;}
.y15e{bottom:126.826616pt;}
.y208{bottom:128.266615pt;}
.yce{bottom:129.226615pt;}
.y66{bottom:129.546615pt;}
.y1d7{bottom:130.026615pt;}
.y18c{bottom:130.666881pt;}
.y9d{bottom:138.346611pt;}
.y12c{bottom:138.666611pt;}
.y207{bottom:142.026610pt;}
.y15d{bottom:142.186610pt;}
.yfd{bottom:143.786609pt;}
.y65{bottom:144.906609pt;}
.y18b{bottom:146.026608pt;}
.y1d6{bottom:146.986608pt;}
.y12b{bottom:151.786606pt;}
.y9c{bottom:152.906606pt;}
.y15c{bottom:157.546604pt;}
.y206{bottom:158.666603pt;}
.y64{bottom:160.266603pt;}
.yfc{bottom:161.386602pt;}
.y18a{bottom:161.546602pt;}
.y1d5{bottom:163.306601pt;}
.y9b{bottom:167.466600pt;}
.ycd{bottom:168.266599pt;}
.y12a{bottom:168.586599pt;}
.y205{bottom:172.106598pt;}
.y15b{bottom:174.986597pt;}
.y189{bottom:176.906596pt;}
.yfb{bottom:177.706596pt;}
.y50{bottom:181.546594pt;}
.y9a{bottom:182.186594pt;}
.y1d4{bottom:183.946593pt;}
.y129{bottom:186.666592pt;}
.y63{bottom:187.306592pt;}
.ycc{bottom:188.746591pt;}
.y4f{bottom:189.706591pt;}
.y188{bottom:192.266590pt;}
.y15a{bottom:192.586590pt;}
.y99{bottom:196.746588pt;}
.yfa{bottom:197.066588pt;}
.y62{bottom:201.226586pt;}
.y1d3{bottom:201.546586pt;}
.y128{bottom:202.986585pt;}
.ycb{bottom:204.106585pt;}
.y204{bottom:204.746585pt;}
.y187{bottom:208.266583pt;}
.y159{bottom:209.866583pt;}
.y98{bottom:211.306582pt;}
.yf9{bottom:212.426582pt;}
.y61{bottom:214.986581pt;}
.y203{bottom:217.226580pt;}
.y127{bottom:218.346579pt;}
.y1d2{bottom:219.306579pt;}
.yca{bottom:222.986577pt;}
.y186{bottom:224.906577pt;}
.y97{bottom:225.866576pt;}
.y158{bottom:226.186576pt;}
.y202{bottom:230.986574pt;}
.y1d1{bottom:236.266572pt;}
.yf8{bottom:236.586572pt;}
.y126{bottom:237.226572pt;}
.y157{bottom:241.386570pt;}
.y60{bottom:242.506570pt;}
.y185{bottom:243.466569pt;}
.y96{bottom:244.266569pt;}
.yc9{bottom:246.346568pt;}
.y201{bottom:247.786568pt;}
.y4e{bottom:249.546567pt;}
.y1d0{bottom:252.586566pt;}
.yf7{bottom:253.386565pt;}
.y4d{bottom:256.746564pt;}
.y5f{bottom:257.866564pt;}
.y184{bottom:258.666563pt;}
.y156{bottom:260.266563pt;}
.yc8{bottom:261.706562pt;}
.y125{bottom:262.986561pt;}
.y95{bottom:263.626561pt;}
.y200{bottom:267.306560pt;}
.yf6{bottom:268.746559pt;}
.y4c{bottom:270.666558pt;}
.y1cf{bottom:273.066557pt;}
.y5e{bottom:273.226557pt;}
.y155{bottom:275.626556pt;}
.y94{bottom:280.426554pt;}
.y183{bottom:282.506554pt;}
.y1ff{bottom:283.786553pt;}
.yf5{bottom:286.026552pt;}
.y4b{bottom:287.146552pt;}
.yc7{bottom:288.426551pt;}
.y5d{bottom:288.586551pt;}
.y1ce{bottom:290.666550pt;}
.y93{bottom:297.386548pt;}
.y182{bottom:297.866548pt;}
.y124{bottom:299.146547pt;}
.y154{bottom:299.466547pt;}
.y4a{bottom:300.746546pt;}
.yf4{bottom:302.186546pt;}
.yc6{bottom:303.786545pt;}
.y5c{bottom:303.946545pt;}
.y1cd{bottom:308.266543pt;}
.y1fe{bottom:312.266542pt;}
.y181{bottom:313.226541pt;}
.y92{bottom:314.186541pt;}
.y49{bottom:314.346541pt;}
.y153{bottom:314.826541pt;}
.y123{bottom:317.706540pt;}
.y5b{bottom:319.306539pt;}
.yf3{bottom:319.946539pt;}
.y1cc{bottom:325.226537pt;}
.y48{bottom:327.466536pt;}
.y180{bottom:328.586535pt;}
.y1fd{bottom:329.866535pt;}
.y152{bottom:330.186535pt;}
.yc5{bottom:334.346533pt;}
.y5a{bottom:334.506533pt;}
.y91{bottom:335.306533pt;}
.yf2{bottom:337.386532pt;}
.y47{bottom:341.226530pt;}
.y1cb{bottom:341.546530pt;}
.y1fc{bottom:345.386529pt;}
.y17f{bottom:346.186528pt;}
.y151{bottom:347.626528pt;}
.yc4{bottom:349.706527pt;}
.y59{bottom:349.866527pt;}
.y90{bottom:350.666526pt;}
.yf1{bottom:354.826525pt;}
.y46{bottom:357.386524pt;}
.y1ca{bottom:362.346522pt;}
.y17e{bottom:363.626521pt;}
.y122{bottom:364.586521pt;}
.y58{bottom:365.226521pt;}
.y1fb{bottom:365.386521pt;}
.yc3{bottom:366.186520pt;}
.y8f{bottom:367.306520pt;}
.y45{bottom:371.146518pt;}
.y1c9{bottom:379.946515pt;}
.y57{bottom:380.586514pt;}
.y17d{bottom:380.746514pt;}
.yc2{bottom:381.546514pt;}
.y8e{bottom:382.666514pt;}
.y150{bottom:382.826514pt;}
.y121{bottom:383.306513pt;}
.y44{bottom:384.906513pt;}
.y1a6{bottom:389.546511pt;}
.yf0{bottom:390.346511pt;}
.y56{bottom:395.946508pt;}
.y1c8{bottom:397.546508pt;}
.yc1{bottom:397.866508pt;}
.y8d{bottom:398.026507pt;}
.y17c{bottom:398.346507pt;}
.y1fa{bottom:398.986507pt;}
.y14f{bottom:399.946507pt;}
.y43{bottom:400.586506pt;}
.yef{bottom:405.706504pt;}
.y120{bottom:407.306504pt;}
.y55{bottom:411.306502pt;}
.y1a5{bottom:412.106502pt;}
.yc0{bottom:412.906502pt;}
.y19f{bottom:414.026501pt;}
.y1c7{bottom:414.506501pt;}
.y42{bottom:414.826501pt;}
.y17b{bottom:415.946500pt;}
.y14e{bottom:416.266500pt;}
.y8c{bottom:418.506499pt;}
.y1f9{bottom:419.146499pt;}
.y11f{bottom:426.186496pt;}
.y54{bottom:426.506496pt;}
.y41{bottom:428.266495pt;}
.ybf{bottom:429.226495pt;}
.y19e{bottom:429.386495pt;}
.y1c6{bottom:430.986494pt;}
.y17a{bottom:432.426494pt;}
.y8b{bottom:433.866493pt;}
.y14d{bottom:435.466492pt;}
.y1f8{bottom:436.746492pt;}
.y11e{bottom:441.546490pt;}
.y53{bottom:441.866490pt;}
.y40{bottom:443.946489pt;}
.ybe{bottom:444.426489pt;}
.yee{bottom:444.586489pt;}
.y19d{bottom:444.746489pt;}
.y52{bottom:445.546488pt;}
.y179{bottom:447.786488pt;}
.y8a{bottom:449.226487pt;}
.y14c{bottom:450.826486pt;}
.y1c5{bottom:451.306486pt;}
.y1f7{bottom:456.106484pt;}
.yed{bottom:459.946483pt;}
.ybd{bottom:460.906482pt;}
.y3d{bottom:463.146481pt;}
.y3f{bottom:463.466481pt;}
.y3e{bottom:464.746481pt;}
.y178{bottom:466.666480pt;}
.y11d{bottom:467.626480pt;}
.y89{bottom:468.106479pt;}
.y1c4{bottom:468.906479pt;}
.y14b{bottom:474.666477pt;}
.y19c{bottom:475.306477pt;}
.ybc{bottom:476.266476pt;}
.yec{bottom:477.546476pt;}
.y3c{bottom:478.026475pt;}
.y1f6{bottom:480.266475pt;}
.y177{bottom:482.026474pt;}
.y88{bottom:483.466473pt;}
.y11c{bottom:486.026472pt;}
.y1c3{bottom:486.506472pt;}
.y3b{bottom:487.626472pt;}
.y19b{bottom:494.186469pt;}
.ybb{bottom:494.986469pt;}
.yeb{bottom:495.946468pt;}
.y1f5{bottom:498.026467pt;}
.y3a{bottom:501.386466pt;}
.y1c2{bottom:503.466465pt;}
.y11b{bottom:504.266465pt;}
.y14a{bottom:505.226465pt;}
.y176{bottom:505.386465pt;}
.y87{bottom:506.986464pt;}
.y19a{bottom:509.546463pt;}
.yba{bottom:510.346463pt;}
.yea{bottom:514.506461pt;}
.y39{bottom:515.146461pt;}
.y1f4{bottom:515.626460pt;}
.y1c1{bottom:519.786459pt;}
.y149{bottom:520.586458pt;}
.y175{bottom:520.746458pt;}
.y11a{bottom:522.986457pt;}
.y86{bottom:523.626457pt;}
.y38{bottom:528.906455pt;}
.y199{bottom:530.346455pt;}
.y1f3{bottom:531.946454pt;}
.ye9{bottom:533.226453pt;}
.yb9{bottom:534.186453pt;}
.y1c0{bottom:535.946452pt;}
.y174{bottom:536.106452pt;}
.y148{bottom:538.186451pt;}
.y85{bottom:539.626451pt;}
.y119{bottom:540.426450pt;}
.y37{bottom:542.986449pt;}
.yb8{bottom:549.546447pt;}
.y1bf{bottom:551.306446pt;}
.y84{bottom:554.986445pt;}
.y147{bottom:555.626444pt;}
.y36{bottom:556.426444pt;}
.y1f2{bottom:557.386444pt;}
.y118{bottom:559.146443pt;}
.yb7{bottom:564.906441pt;}
.y1be{bottom:566.666440pt;}
.ye8{bottom:568.426439pt;}
.y35{bottom:570.666438pt;}
.y83{bottom:571.626438pt;}
.y146{bottom:571.946438pt;}
.y1f1{bottom:574.986437pt;}
.y173{bottom:578.346435pt;}
.yb6{bottom:580.106435pt;}
.y117{bottom:581.546434pt;}
.ye7{bottom:583.786433pt;}
.y34{bottom:584.426433pt;}
.y1bd{bottom:585.546432pt;}
.y82{bottom:587.626432pt;}
.y145{bottom:589.386431pt;}
.y1f0{bottom:591.946430pt;}
.y172{bottom:593.706429pt;}
.yb5{bottom:595.466428pt;}
.y33{bottom:598.346427pt;}
.y116{bottom:600.266427pt;}
.y1bc{bottom:600.906426pt;}
.ye6{bottom:605.386425pt;}
.y144{bottom:605.706424pt;}
.y81{bottom:606.346424pt;}
.y1ef{bottom:608.266423pt;}
.yb4{bottom:610.826422pt;}
.y31{bottom:612.266422pt;}
.y115{bottom:615.626420pt;}
.y32{bottom:616.266420pt;}
.y171{bottom:620.106419pt;}
.ye5{bottom:620.746418pt;}
.y80{bottom:621.866418pt;}
.y143{bottom:623.466417pt;}
.y1bb{bottom:624.586417pt;}
.y30{bottom:625.866416pt;}
.yb3{bottom:626.186416pt;}
.y1ee{bottom:629.066415pt;}
.y170{bottom:635.466412pt;}
.ye4{bottom:636.106412pt;}
.y2f{bottom:639.306411pt;}
.y142{bottom:639.626411pt;}
.y1ba{bottom:639.946411pt;}
.y114{bottom:640.426410pt;}
.yb2{bottom:641.546410pt;}
.y7f{bottom:645.546408pt;}
.y1ed{bottom:646.346408pt;}
.y16f{bottom:649.866407pt;}
.ye3{bottom:653.226405pt;}
.y2e{bottom:653.546405pt;}
.y1b9{bottom:655.306405pt;}
.yb1{bottom:656.906404pt;}
.y141{bottom:660.426402pt;}
.y7e{bottom:660.746402pt;}
.y113{bottom:662.826402pt;}
.y1ec{bottom:663.786401pt;}
.y2d{bottom:667.306400pt;}
.ye2{bottom:671.146398pt;}
.y16e{bottom:672.266398pt;}
.y1b8{bottom:672.586398pt;}
.y7d{bottom:676.106396pt;}
.y140{bottom:677.706396pt;}
.y1eb{bottom:680.106395pt;}
.y112{bottom:680.266395pt;}
.y2c{bottom:681.226394pt;}
.ye1{bottom:688.426391pt;}
.y1b7{bottom:690.026391pt;}
.yb0{bottom:691.306390pt;}
.y7c{bottom:691.466390pt;}
.y13f{bottom:694.186389pt;}
.y2a{bottom:694.986389pt;}
.y111{bottom:697.706388pt;}
.y2b{bottom:698.986387pt;}
.y1ea{bottom:700.106387pt;}
.y16d{bottom:700.266387pt;}
.ye0{bottom:705.866384pt;}
.y1b6{bottom:706.506384pt;}
.y7b{bottom:706.826384pt;}
.y29{bottom:708.586383pt;}
.y1a4{bottom:715.306381pt;}
.y110{bottom:716.426380pt;}
.y1e9{bottom:717.546380pt;}
.y13e{bottom:720.906378pt;}
.y28{bottom:722.026378pt;}
.y7a{bottom:722.186378pt;}
.y1b5{bottom:723.946377pt;}
.y16c{bottom:728.426375pt;}
.y10f{bottom:733.706373pt;}
.y1e8{bottom:734.986373pt;}
.y27{bottom:736.266372pt;}
.y13d{bottom:737.386372pt;}
.yaf{bottom:737.706372pt;}
.ydf{bottom:739.626371pt;}
.y1b4{bottom:740.266371pt;}
.y79{bottom:741.386370pt;}
.y26{bottom:750.026367pt;}
.y1e7{bottom:751.306366pt;}
.y10e{bottom:752.106366pt;}
.yae{bottom:753.066365pt;}
.y13c{bottom:754.026365pt;}
.yde{bottom:755.946364pt;}
.y78{bottom:756.746364pt;}
.y1b3{bottom:757.866364pt;}
.y1a3{bottom:758.026363pt;}
.y25{bottom:763.946361pt;}
.yad{bottom:768.426359pt;}
.y10d{bottom:769.546359pt;}
.y13b{bottom:770.346359pt;}
.y1e6{bottom:771.946358pt;}
.ydd{bottom:772.266358pt;}
.y1b2{bottom:775.146357pt;}
.y23{bottom:777.866356pt;}
.y16b{bottom:778.186355pt;}
.y77{bottom:780.266355pt;}
.y24{bottom:781.866354pt;}
.yac{bottom:783.786353pt;}
.y13a{bottom:785.706352pt;}
.y16a{bottom:786.506352pt;}
.y10c{bottom:788.106351pt;}
.y1e5{bottom:791.146350pt;}
.y22{bottom:791.466350pt;}
.y1b1{bottom:791.626350pt;}
.y76{bottom:795.626348pt;}
.y139{bottom:802.026346pt;}
.yab{bottom:802.986345pt;}
.y21{bottom:804.906345pt;}
.y10b{bottom:805.706344pt;}
.ydc{bottom:806.826344pt;}
.y198{bottom:808.746343pt;}
.y1e4{bottom:809.866343pt;}
.y1b0{bottom:810.826342pt;}
.y75{bottom:810.986342pt;}
.y169{bottom:814.346341pt;}
.yaa{bottom:818.346339pt;}
.y20{bottom:818.826339pt;}
.y138{bottom:820.906338pt;}
.y10a{bottom:823.306337pt;}
.y1e3{bottom:826.186336pt;}
.y74{bottom:826.346336pt;}
.ydb{bottom:827.306336pt;}
.y168{bottom:829.706335pt;}
.y1f{bottom:832.586334pt;}
.ya9{bottom:833.866333pt;}
.y197{bottom:834.186333pt;}
.y73{bottom:841.706330pt;}
.yda{bottom:843.626329pt;}
.y137{bottom:844.266329pt;}
.y109{bottom:845.066329pt;}
.y1e{bottom:846.506328pt;}
.y1e2{bottom:846.826328pt;}
.ya8{bottom:849.066327pt;}
.y196{bottom:849.546327pt;}
.y167{bottom:853.386325pt;}
.y1af{bottom:857.066324pt;}
.y136{bottom:859.626323pt;}
.yd9{bottom:859.946323pt;}
.y1c{bottom:860.266323pt;}
.y108{bottom:860.426322pt;}
.y72{bottom:860.586322pt;}
.y1e1{bottom:862.186322pt;}
.ya7{bottom:863.626321pt;}
.y1d{bottom:864.266321pt;}
.y195{bottom:865.066321pt;}
.y166{bottom:868.746319pt;}
.y1ae{bottom:872.586318pt;}
.y1b{bottom:873.866317pt;}
.y135{bottom:875.146317pt;}
.y107{bottom:875.466316pt;}
.y71{bottom:875.946316pt;}
.ya6{bottom:878.186315pt;}
.y1e0{bottom:881.386314pt;}
.y194{bottom:882.186314pt;}
.y165{bottom:884.106313pt;}
.yd8{bottom:886.986312pt;}
.y1ad{bottom:887.946311pt;}
.y134{bottom:890.506310pt;}
.y106{bottom:890.986310pt;}
.y70{bottom:891.786310pt;}
.ya5{bottom:892.746310pt;}
.y1df{bottom:896.746308pt;}
.y193{bottom:899.786307pt;}
.y164{bottom:901.866306pt;}
.y1ac{bottom:903.146305pt;}
.yd7{bottom:903.306305pt;}
.y1a{bottom:904.746305pt;}
.y133{bottom:906.186304pt;}
.y105{bottom:906.346304pt;}
.y6f{bottom:906.826304pt;}
.ya4{bottom:907.306304pt;}
.y192{bottom:917.066300pt;}
.y1ab{bottom:918.506299pt;}
.y1de{bottom:920.266299pt;}
.yd6{bottom:920.906298pt;}
.y6e{bottom:921.386298pt;}
.y104{bottom:921.706298pt;}
.y132{bottom:922.186298pt;}
.ya3{bottom:930.026295pt;}
.y191{bottom:933.386293pt;}
.y1aa{bottom:933.866293pt;}
.y1dd{bottom:935.626292pt;}
.y6d{bottom:936.106292pt;}
.yd5{bottom:938.506291pt;}
.y131{bottom:938.826291pt;}
.y103{bottom:940.266291pt;}
.y12{bottom:942.826290pt;}
.ya2{bottom:944.586289pt;}
.y18{bottom:947.307200pt;}
.y1a9{bottom:949.226287pt;}
.y6c{bottom:950.666286pt;}
.y1dc{bottom:950.986286pt;}
.y190{bottom:952.266286pt;}
.y130{bottom:955.146285pt;}
.yd4{bottom:955.786284pt;}
.y16{bottom:958.506283pt;}
.ya1{bottom:959.146283pt;}
.y163{bottom:959.466283pt;}
.y102{bottom:963.626281pt;}
.y1a8{bottom:964.586281pt;}
.y6b{bottom:965.226281pt;}
.y18f{bottom:967.626280pt;}
.y1db{bottom:970.986278pt;}
.y12f{bottom:971.466278pt;}
.yd3{bottom:971.946278pt;}
.ya0{bottom:973.706277pt;}
.y15{bottom:973.866277pt;}
.y162{bottom:976.106276pt;}
.y101{bottom:978.986275pt;}
.y6a{bottom:983.146273pt;}
.y12e{bottom:987.626272pt;}
.y9f{bottom:988.266271pt;}
.y1da{bottom:988.586271pt;}
.yd2{bottom:989.546271pt;}
.y161{bottom:991.466270pt;}
.y14{bottom:996.906268pt;}
.y1d9{bottom:1005.546264pt;}
.yd1{bottom:1005.706264pt;}
.y69{bottom:1006.506264pt;}
.y100{bottom:1006.826264pt;}
.y17{bottom:1008.586263pt;}
.y13{bottom:1012.266262pt;}
.y11{bottom:1019.466259pt;}
.y1a2{bottom:1020.426258pt;}
.ya{bottom:1052.746246pt;}
.y3{bottom:1056.426244pt;}
.y8{bottom:1070.507200pt;}
.y2{bottom:1073.546237pt;}
.y7{bottom:1074.026237pt;}
.y5{bottom:1087.307200pt;}
.y1{bottom:1090.506230pt;}
.y4{bottom:1090.826230pt;}
.yf{bottom:1102.826226pt;}
.h6{height:12.895932pt;}
.h8{height:15.040000pt;}
.h18{height:16.482493pt;}
.h2{height:16.640000pt;}
.h1b{height:18.217493pt;}
.hc{height:18.676868pt;}
.h1a{height:20.455617pt;}
.hb{height:22.234366pt;}
.h17{height:23.422491pt;}
.h15{height:29.061238pt;}
.h4{height:29.794051pt;}
.he{height:29.961551pt;}
.h1d{height:31.238738pt;}
.h3{height:32.531237pt;}
.h11{height:32.554674pt;}
.ha{height:33.351549pt;}
.h10{height:34.945299pt;}
.hf{height:34.968736pt;}
.hd{height:35.404673pt;}
.h7{height:36.001236pt;}
.h5{height:36.909048pt;}
.h13{height:38.672797pt;}
.h12{height:38.698735pt;}
.h14{height:38.699801pt;}
.h1c{height:39.904984pt;}
.h16{height:40.882484pt;}
.h1{height:40.911234pt;}
.h19{height:47.521231pt;}
.h9{height:65.062474pt;}
.h0{height:1122.666667pt;}
.w4{width:1.120000pt;}
.w2{width:3.040000pt;}
.w3{width:6.400000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x9{left:33.279987pt;}
.x35{left:40.799984pt;}
.x36{left:48.639981pt;}
.x1{left:53.279979pt;}
.x4b{left:56.959977pt;}
.x37{left:58.239977pt;}
.x47{left:59.199976pt;}
.x39{left:60.473709pt;}
.x2e{left:62.399975pt;}
.x68{left:63.679975pt;}
.x3c{left:66.559973pt;}
.x3e{left:67.519973pt;}
.x4c{left:69.279972pt;}
.x2c{left:70.879972pt;}
.x3a{left:72.479971pt;}
.x42{left:74.879970pt;}
.x8{left:76.319969pt;}
.x5a{left:77.279969pt;}
.x3b{left:79.353435pt;}
.x2a{left:83.519967pt;}
.x3d{left:84.479966pt;}
.x2b{left:87.359928pt;}
.x49{left:90.559964pt;}
.x58{left:92.319963pt;}
.x27{left:94.079962pt;}
.x57{left:96.159962pt;}
.x59{left:104.159958pt;}
.x4a{left:108.479957pt;}
.x2d{left:120.959952pt;}
.x4d{left:123.199951pt;}
.x2f{left:126.239950pt;}
.x5b{left:130.559948pt;}
.x3f{left:132.159947pt;}
.x69{left:134.559946pt;}
.x43{left:136.159946pt;}
.x40{left:141.599943pt;}
.x38{left:143.039943pt;}
.xa{left:164.639934pt;}
.x11{left:170.239932pt;}
.x5c{left:175.839930pt;}
.x41{left:177.759929pt;}
.x63{left:178.719929pt;}
.x64{left:186.719925pt;}
.x44{left:192.479923pt;}
.x30{left:193.599923pt;}
.x31{left:195.039922pt;}
.x45{left:197.439921pt;}
.xd{left:206.879240pt;}
.x25{left:208.959812pt;}
.x1e{left:211.199255pt;}
.x28{left:212.479915pt;}
.x21{left:214.719454pt;}
.x16{left:215.999386pt;}
.x65{left:226.079910pt;}
.xb{left:227.999909pt;}
.x66{left:233.279907pt;}
.x29{left:237.119905pt;}
.x34{left:242.079903pt;}
.x33{left:244.319181pt;}
.x32{left:262.399895pt;}
.x24{left:277.919848pt;}
.x1d{left:278.879225pt;}
.x15{left:283.519314pt;}
.x5f{left:291.516395pt;}
.x46{left:293.439883pt;}
.x48{left:295.359882pt;}
.x60{left:302.719817pt;}
.x61{left:305.279576pt;}
.x4e{left:308.479877pt;}
.x62{left:316.640592pt;}
.x5d{left:318.719873pt;}
.x23{left:327.359882pt;}
.x1f{left:335.519866pt;}
.x26{left:336.954532pt;}
.x17{left:340.319864pt;}
.x1a{left:343.999879pt;}
.x4f{left:345.439862pt;}
.x12{left:347.999861pt;}
.x50{left:351.999859pt;}
.x22{left:354.239858pt;}
.x20{left:355.679858pt;}
.x51{left:356.959857pt;}
.xe{left:358.399857pt;}
.xc{left:366.879862pt;}
.x18{left:370.079852pt;}
.x19{left:371.039852pt;}
.x52{left:392.479843pt;}
.x53{left:398.879840pt;}
.x1b{left:419.839832pt;}
.x13{left:424.639830pt;}
.x1c{left:426.559829pt;}
.x14{left:431.359827pt;}
.x54{left:462.399815pt;}
.x55{left:470.079812pt;}
.x67{left:504.639798pt;}
.x56{left:526.079790pt;}
.xf{left:613.440397pt;}
.x2{left:619.679752pt;}
.x5e{left:622.396977pt;}
.x5{left:636.479745pt;}
.x4{left:642.559743pt;}
.x6{left:712.799715pt;}
.x7{left:733.760000pt;}
.x3{left:739.840000pt;}
.x10{left:747.520000pt;}
}




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