
    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_504286ec8e66b25722e4e354.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e6f51ae643d0ccd44bb216b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3458e6400d531c40e9065768.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7dd4dda360897c5655f0a8cb.woff2')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_02acbf91b2a29e9ebc2570d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_2fbdf42393bde2ae8b5c2c9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fac7b5eae68e52dff7ddb55a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_02d72767933b848afd5e94f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_720f5d838bb9598c27b5f548.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_67b33084016458eb9e4032e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_7c44155765494a2a3d21c4aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.872559;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_303ef8462826b167e83edd5b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m2{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-84.240000px;}
.v1{vertical-align:-22.479771px;}
.v2{vertical-align:-19.457566px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.269400px;}
.ls13{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.181200px;}
.ls2c{letter-spacing:-0.177922px;}
.ls14{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.123045px;}
.ls2d{letter-spacing:-0.099465px;}
.ls25{letter-spacing:-0.098607px;}
.lsd{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.056163px;}
.ls27{letter-spacing:-0.029325px;}
.ls2f{letter-spacing:-0.020064px;}
.ls26{letter-spacing:-0.010718px;}
.ls6{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.003297px;}
.ls1f{letter-spacing:0.037014px;}
.ls30{letter-spacing:0.046731px;}
.ls15{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.084214px;}
.ls28{letter-spacing:0.100322px;}
.ls22{letter-spacing:0.102895px;}
.ls1e{letter-spacing:0.116813px;}
.ls23{letter-spacing:0.128618px;}
.lsb{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.157343px;}
.ls24{letter-spacing:0.165712px;}
.ls3{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.250377px;}
.ls2e{letter-spacing:0.260238px;}
.ls16{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.792000px;}
.ls0{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.744000px;}
.ls33{letter-spacing:8.064000px;}
.ls37{letter-spacing:8.640000px;}
.ls1{letter-spacing:9.360000px;}
.ls4{letter-spacing:12.240000px;}
.ls1d{letter-spacing:18.720000px;}
.ls2{letter-spacing:21.600000px;}
.ls5{letter-spacing:33.960000px;}
.ls35{letter-spacing:33.984000px;}
.ls32{letter-spacing:38.280000px;}
.ls34{letter-spacing:38.304000px;}
.lsc{letter-spacing:64.224000px;}
.ls38{letter-spacing:66.936000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.208000px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.410720px;}
.wse{word-spacing:-13.229520px;}
.ws10{word-spacing:-13.141320px;}
.ws26{word-spacing:-11.870946px;}
.ws2e{word-spacing:-9.910719px;}
.ws28{word-spacing:-9.807824px;}
.ws30{word-spacing:-9.697213px;}
.ws31{word-spacing:-9.677033px;}
.ws1c{word-spacing:-9.673736px;}
.ws1d{word-spacing:-9.650482px;}
.ws2f{word-spacing:-9.630417px;}
.ws2a{word-spacing:-9.594318px;}
.ws2c{word-spacing:-9.574271px;}
.ws29{word-spacing:-9.527437px;}
.ws2b{word-spacing:-9.495814px;}
.ws15{word-spacing:-9.402385px;}
.ws1e{word-spacing:-8.720315px;}
.ws1f{word-spacing:-0.020579px;}
.ws4{word-spacing:0.000000px;}
.ws2d{word-spacing:0.017492px;}
.ws23{word-spacing:0.057106px;}
.ws24{word-spacing:0.256722px;}
.ws27{word-spacing:0.316401px;}
.ws1b{word-spacing:0.366305px;}
.ws20{word-spacing:0.389662px;}
.ws25{word-spacing:0.418781px;}
.ws22{word-spacing:0.492351px;}
.ws13{word-spacing:0.758743px;}
.ws16{word-spacing:0.883027px;}
.ws21{word-spacing:1.089139px;}
.ws14{word-spacing:1.133632px;}
.ws1a{word-spacing:137.857093px;}
.ws17{word-spacing:182.375909px;}
.ws18{word-spacing:196.603322px;}
.ws19{word-spacing:228.794897px;}
._6{margin-left:-2.157360px;}
._4{margin-left:-1.152000px;}
._0{width:1.053360px;}
._1{width:2.228880px;}
._c{width:3.401280px;}
._e{width:4.717440px;}
._7{width:6.456000px;}
._17{width:7.514640px;}
._5{width:8.640000px;}
._3{width:10.080000px;}
._2{width:11.496000px;}
._1c{width:12.530640px;}
._11{width:13.608000px;}
._10{width:14.976000px;}
._d{width:16.896000px;}
._8{width:19.250640px;}
._9{width:20.266800px;}
._f{width:21.744000px;}
._18{width:23.328000px;}
._19{width:24.408000px;}
._1f{width:25.658640px;}
._1e{width:26.784000px;}
._21{width:27.794640px;}
._14{width:28.800000px;}
._15{width:29.834640px;}
._16{width:30.849360px;}
._1d{width:32.469360px;}
._20{width:33.696000px;}
._1a{width:34.848000px;}
._1b{width:36.602640px;}
._2a{width:38.880000px;}
._29{width:40.968000px;}
._2c{width:42.480000px;}
._a{width:48.384000px;}
._b{width:49.656000px;}
._12{width:55.656000px;}
._13{width:56.774640px;}
._2b{width:78.816000px;}
._24{width:123.120000px;}
._25{width:124.632000px;}
._27{width:162.684000px;}
._26{width:164.304000px;}
._2d{width:185.256000px;}
._2e{width:186.468000px;}
._22{width:197.976000px;}
._23{width:199.824000px;}
._28{width:208.008000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.301716px;}
.fs6{font-size:27.383213px;}
.fs5{font-size:33.821528px;}
.fsa{font-size:38.585463px;}
.fsb{font-size:38.688358px;}
.fs9{font-size:42.701246px;}
.fs8{font-size:42.804140px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:48.384000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:12.225000px;}
.y8f{bottom:12.405000px;}
.y89{bottom:12.420000px;}
.y95{bottom:12.585000px;}
.y109{bottom:12.600000px;}
.y8d{bottom:12.765000px;}
.y10d{bottom:12.780000px;}
.y178{bottom:15.626041px;}
.y180{bottom:17.966892px;}
.y177{bottom:27.201680px;}
.y8b{bottom:29.505000px;}
.y17f{bottom:29.542531px;}
.y115{bottom:29.550000px;}
.y91{bottom:29.685000px;}
.y10b{bottom:29.700000px;}
.y8c{bottom:29.865000px;}
.y11b{bottom:29.880000px;}
.y116{bottom:29.910000px;}
.y92{bottom:30.045000px;}
.y10c{bottom:30.060000px;}
.yda{bottom:37.110000px;}
.y107{bottom:38.565000px;}
.y176{bottom:38.777318px;}
.y108{bottom:38.925000px;}
.y17e{bottom:41.118170px;}
.y119{bottom:46.800000px;}
.y117{bottom:46.980000px;}
.y11a{bottom:47.160000px;}
.y114{bottom:47.340000px;}
.y137{bottom:49.161765px;}
.yd9{bottom:49.575000px;}
.y175{bottom:50.378681px;}
.y17d{bottom:52.719532px;}
.y16c{bottom:56.963933px;}
.y4{bottom:57.420000px;}
.y174{bottom:61.954320px;}
.yd8{bottom:61.995000px;}
.y17c{bottom:64.295171px;}
.y113{bottom:64.620000px;}
.y16b{bottom:68.668190px;}
.y166{bottom:72.989762px;}
.y173{bottom:73.529959px;}
.y136{bottom:73.937053px;}
.yd7{bottom:74.415000px;}
.y17b{bottom:75.870810px;}
.y3{bottom:78.120000px;}
.y16a{bottom:80.501066px;}
.y111{bottom:81.360000px;}
.y112{bottom:81.720000px;}
.y172{bottom:85.105598px;}
.yd6{bottom:86.835000px;}
.y17a{bottom:87.446449px;}
.y165{bottom:88.423947px;}
.y169{bottom:92.205323px;}
.y171{bottom:96.681236px;}
.y179{bottom:103.523725px;}
.y164{bottom:103.729514px;}
.y168{bottom:104.063922px;}
.y170{bottom:108.253660px;}
.y135{bottom:108.799375px;}
.y18b{bottom:115.380000px;}
.y16f{bottom:119.829299px;}
.y167{bottom:120.397363px;}
.y1a2{bottom:120.780000px;}
.y134{bottom:121.024023px;}
.y65{bottom:124.380000px;}
.y161{bottom:126.163746px;}
.y69{bottom:127.080000px;}
.yc0{bottom:132.480000px;}
.y16e{bottom:135.938730px;}
.y18a{bottom:136.116000px;}
.y33{bottom:137.556000px;}
.y160{bottom:137.868003px;}
.y12c{bottom:137.916000px;}
.yfd{bottom:138.816000px;}
.y1a1{bottom:141.516000px;}
.y99{bottom:142.596000px;}
.y13f{bottom:143.172710px;}
.y64{bottom:145.116000px;}
.y182{bottom:146.356805px;}
.y16d{bottom:147.514368px;}
.y68{bottom:147.816000px;}
.y13c{bottom:149.463311px;}
.y147{bottom:149.590651px;}
.y15f{bottom:149.700878px;}
.y148{bottom:151.687517px;}
.ybf{bottom:153.210000px;}
.y189{bottom:156.810000px;}
.y32{bottom:157.890000px;}
.y98{bottom:158.805000px;}
.y15e{bottom:161.405135px;}
.y1a0{bottom:162.210000px;}
.y181{bottom:162.455517px;}
.y14b{bottom:163.200000px;}
.y12b{bottom:163.290000px;}
.y63{bottom:165.810000px;}
.y13a{bottom:166.026012px;}
.y138{bottom:167.248477px;}
.yfc{bottom:168.510000px;}
.y156{bottom:168.757809px;}
.y141{bottom:170.330107px;}
.yd0{bottom:171.750000px;}
.ybe{bottom:173.910000px;}
.y140{bottom:174.277650px;}
.y67{bottom:177.510000px;}
.y15d{bottom:177.761084px;}
.y31{bottom:178.950000px;}
.y155{bottom:179.433121px;}
.y13d{bottom:181.128547px;}
.y19f{bottom:182.910000px;}
.y62{bottom:186.510000px;}
.yfb{bottom:189.210000px;}
.y15c{bottom:189.593959px;}
.y154{bottom:190.001250px;}
.ycf{bottom:192.450000px;}
.ydc{bottom:192.810000px;}
.ybd{bottom:194.610000px;}
.y1c2{bottom:198.210000px;}
.y30{bottom:199.650000px;}
.y142{bottom:201.154899px;}
.y97{bottom:202.365000px;}
.y19e{bottom:203.610000px;}
.y139{bottom:205.187335px;}
.yd5{bottom:205.230000px;}
.y14a{bottom:205.331654px;}
.y153{bottom:205.435436px;}
.y61{bottom:207.210000px;}
.y163{bottom:207.600509px;}
.y13e{bottom:208.710411px;}
.yfa{bottom:209.910000px;}
.y13b{bottom:212.097657px;}
.yce{bottom:213.150000px;}
.y15b{bottom:213.463356px;}
.ybc{bottom:214.950000px;}
.y152{bottom:217.268311px;}
.yd4{bottom:217.650000px;}
.y1c1{bottom:218.910000px;}
.y2f{bottom:220.350000px;}
.y149{bottom:221.979248px;}
.y162{bottom:223.935021px;}
.y1b3{bottom:224.310000px;}
.y15a{bottom:225.296231px;}
.y133{bottom:226.784214px;}
.y60{bottom:227.910000px;}
.y96{bottom:228.645000px;}
.ydb{bottom:230.070000px;}
.yf9{bottom:230.610000px;}
.y19d{bottom:233.310000px;}
.y151{bottom:233.785033px;}
.ycd{bottom:233.850000px;}
.ybb{bottom:235.650000px;}
.y132{bottom:239.008863px;}
.y1c0{bottom:239.610000px;}
.y159{bottom:241.630743px;}
.y1b2{bottom:245.010000px;}
.y150{bottom:245.617908px;}
.y5f{bottom:248.610000px;}
.y2e{bottom:250.050000px;}
.yf8{bottom:251.310000px;}
.y143{bottom:251.377831px;}
.y19c{bottom:254.010000px;}
.ycc{bottom:254.550000px;}
.y93{bottom:254.925000px;}
.y146{bottom:255.860202px;}
.y14f{bottom:257.450783px;}
.y1bf{bottom:260.310000px;}
.y158{bottom:261.598721px;}
.yba{bottom:265.710000px;}
.y5e{bottom:269.310000px;}
.y2d{bottom:270.750000px;}
.yf7{bottom:272.010000px;}
.y14e{bottom:273.785296px;}
.y19b{bottom:274.710000px;}
.ycb{bottom:275.250000px;}
.y157{bottom:277.054342px;}
.y144{bottom:279.817118px;}
.y1be{bottom:281.010000px;}
.y90{bottom:281.025000px;}
.y145{bottom:282.304494px;}
.yb9{bottom:286.410000px;}
.y124{bottom:289.650000px;}
.y5d{bottom:290.010000px;}
.y2c{bottom:291.450000px;}
.yf6{bottom:292.710000px;}
.y131{bottom:294.732887px;}
.y19a{bottom:295.410000px;}
.yca{bottom:295.950000px;}
.yd3{bottom:297.615000px;}
.y1bd{bottom:301.710000px;}
.y130{bottom:303.493886px;}
.yb8{bottom:307.110000px;}
.y14d{bottom:308.072767px;}
.yd2{bottom:310.035000px;}
.y5c{bottom:310.710000px;}
.y12f{bottom:312.254884px;}
.yf5{bottom:313.410000px;}
.y199{bottom:316.110000px;}
.yc9{bottom:316.650000px;}
.y123{bottom:319.350000px;}
.y2b{bottom:321.150000px;}
.y1bc{bottom:322.410000px;}
.y14c{bottom:323.506952px;}
.y12e{bottom:324.479533px;}
.y8e{bottom:324.585000px;}
.yb7{bottom:327.810000px;}
.y5b{bottom:331.410000px;}
.yf4{bottom:334.110000px;}
.y198{bottom:336.810000px;}
.yc8{bottom:337.350000px;}
.y122{bottom:340.050000px;}
.y2a{bottom:341.850000px;}
.y1bb{bottom:343.110000px;}
.yb6{bottom:348.510000px;}
.y8a{bottom:350.865000px;}
.y5a{bottom:352.110000px;}
.yf3{bottom:354.810000px;}
.y197{bottom:357.510000px;}
.yc7{bottom:358.050000px;}
.y121{bottom:360.750000px;}
.y29{bottom:362.550000px;}
.y1ba{bottom:363.810000px;}
.y1b1{bottom:369.210000px;}
.y59{bottom:372.810000px;}
.yf2{bottom:375.510000px;}
.yb5{bottom:378.210000px;}
.yc6{bottom:378.750000px;}
.y120{bottom:381.450000px;}
.y28{bottom:383.250000px;}
.y1b9{bottom:384.510000px;}
.y1b0{bottom:389.955000px;}
.y58{bottom:393.555000px;}
.y88{bottom:394.275000px;}
.yf1{bottom:396.255000px;}
.yb4{bottom:398.955000px;}
.yc5{bottom:399.495000px;}
.y11f{bottom:402.195000px;}
.y27{bottom:403.995000px;}
.y1b8{bottom:405.255000px;}
.y1c6{bottom:407.595000px;}
.y1af{bottom:410.655000px;}
.y188{bottom:413.895000px;}
.y57{bottom:414.255000px;}
.yf0{bottom:416.955000px;}
.yb3{bottom:419.655000px;}
.yc4{bottom:420.195000px;}
.y11e{bottom:422.895000px;}
.y26{bottom:424.695000px;}
.y1b7{bottom:425.955000px;}
.y1c5{bottom:428.655000px;}
.y1ae{bottom:431.355000px;}
.y87{bottom:434.055000px;}
.y187{bottom:434.595000px;}
.y56{bottom:434.955000px;}
.yef{bottom:437.655000px;}
.y196{bottom:440.355000px;}
.yc3{bottom:440.895000px;}
.y11d{bottom:443.595000px;}
.y25{bottom:445.395000px;}
.y1b6{bottom:446.655000px;}
.yb2{bottom:449.355000px;}
.y1ad{bottom:451.695000px;}
.y55{bottom:455.655000px;}
.y1c4{bottom:457.995000px;}
.yee{bottom:458.355000px;}
.yc2{bottom:461.595000px;}
.y86{bottom:463.755000px;}
.y24{bottom:466.095000px;}
.y1b5{bottom:467.355000px;}
.yb1{bottom:470.055000px;}
.y1ac{bottom:472.395000px;}
.y11c{bottom:473.295000px;}
.y54{bottom:476.355000px;}
.yc1{bottom:477.795000px;}
.yd1{bottom:477.900000px;}
.yed{bottom:479.055000px;}
.y23{bottom:486.795000px;}
.y1c3{bottom:487.695000px;}
.y1b4{bottom:488.055000px;}
.y118{bottom:489.495000px;}
.yb0{bottom:490.755000px;}
.y1ab{bottom:493.095000px;}
.y85{bottom:493.455000px;}
.y53{bottom:497.055000px;}
.y186{bottom:499.755000px;}
.y22{bottom:507.495000px;}
.yec{bottom:508.755000px;}
.y195{bottom:511.455000px;}
.y1aa{bottom:513.795000px;}
.y84{bottom:514.155000px;}
.y52{bottom:517.755000px;}
.yaf{bottom:520.455000px;}
.y12a{bottom:521.895000px;}
.y21{bottom:528.195000px;}
.yeb{bottom:529.455000px;}
.y194{bottom:532.155000px;}
.y51{bottom:538.455000px;}
.yae{bottom:541.155000px;}
.y83{bottom:543.855000px;}
.y20{bottom:548.895000px;}
.yea{bottom:550.155000px;}
.y129{bottom:551.595000px;}
.y193{bottom:552.855000px;}
.y50{bottom:559.155000px;}
.yad{bottom:561.855000px;}
.y82{bottom:564.555000px;}
.y1f{bottom:569.595000px;}
.ye9{bottom:570.855000px;}
.y128{bottom:572.295000px;}
.y4f{bottom:579.855000px;}
.yac{bottom:582.555000px;}
.y81{bottom:585.255000px;}
.y1e{bottom:590.295000px;}
.ye8{bottom:591.555000px;}
.y192{bottom:594.255000px;}
.y4e{bottom:600.555000px;}
.y127{bottom:601.995000px;}
.yab{bottom:603.255000px;}
.y80{bottom:605.955000px;}
.y1d{bottom:610.995000px;}
.ye7{bottom:612.255000px;}
.y66{bottom:620.895000px;}
.y4d{bottom:621.255000px;}
.yaa{bottom:623.955000px;}
.y7f{bottom:626.655000px;}
.y1c{bottom:631.695000px;}
.ye6{bottom:632.955000px;}
.y191{bottom:635.655000px;}
.y4c{bottom:641.985000px;}
.ya9{bottom:644.685000px;}
.y7e{bottom:647.385000px;}
.y1b{bottom:652.425000px;}
.ye5{bottom:653.685000px;}
.y110{bottom:654.405000px;}
.y4b{bottom:662.685000px;}
.ya8{bottom:665.385000px;}
.y7d{bottom:668.085000px;}
.y1a{bottom:673.125000px;}
.ye4{bottom:674.385000px;}
.y190{bottom:677.085000px;}
.y4a{bottom:683.385000px;}
.ya7{bottom:686.085000px;}
.y7c{bottom:688.785000px;}
.y19{bottom:693.825000px;}
.ye3{bottom:695.085000px;}
.y49{bottom:704.085000px;}
.ya6{bottom:706.785000px;}
.y7b{bottom:709.485000px;}
.y18{bottom:714.525000px;}
.ye2{bottom:715.785000px;}
.y18f{bottom:718.485000px;}
.yde{bottom:724.425000px;}
.y48{bottom:724.785000px;}
.ya5{bottom:727.485000px;}
.y7a{bottom:730.185000px;}
.y17{bottom:735.225000px;}
.ye1{bottom:736.485000px;}
.y1a9{bottom:739.185000px;}
.ydd{bottom:745.125000px;}
.y47{bottom:745.485000px;}
.ya4{bottom:748.185000px;}
.y10f{bottom:749.625000px;}
.y79{bottom:750.885000px;}
.y16{bottom:755.925000px;}
.ye0{bottom:757.185000px;}
.y1a8{bottom:759.885000px;}
.y46{bottom:766.185000px;}
.ya3{bottom:768.885000px;}
.y78{bottom:771.585000px;}
.y15{bottom:776.625000px;}
.y1a7{bottom:780.585000px;}
.y126{bottom:785.445000px;}
.y45{bottom:786.885000px;}
.ya2{bottom:789.585000px;}
.y77{bottom:792.285000px;}
.y10e{bottom:793.185000px;}
.y14{bottom:797.325000px;}
.y1a6{bottom:801.285000px;}
.y44{bottom:807.585000px;}
.ya1{bottom:810.285000px;}
.y125{bottom:810.825000px;}
.y12d{bottom:811.560000px;}
.y76{bottom:812.985000px;}
.y13{bottom:818.025000px;}
.y10a{bottom:819.465000px;}
.y1a5{bottom:821.985000px;}
.y43{bottom:828.285000px;}
.ya0{bottom:830.985000px;}
.y75{bottom:833.685000px;}
.y12{bottom:838.725000px;}
.y1a4{bottom:842.685000px;}
.y42{bottom:848.985000px;}
.y9f{bottom:851.685000px;}
.y74{bottom:854.385000px;}
.y11{bottom:859.425000px;}
.y106{bottom:863.025000px;}
.y1a3{bottom:863.385000px;}
.y41{bottom:869.685000px;}
.y9e{bottom:872.385000px;}
.y10{bottom:880.125000px;}
.y73{bottom:884.085000px;}
.y40{bottom:890.385000px;}
.y9d{bottom:893.130000px;}
.yf{bottom:900.870000px;}
.y72{bottom:904.830000px;}
.y3f{bottom:911.130000px;}
.y9c{bottom:913.470000px;}
.y185{bottom:913.830000px;}
.y105{bottom:915.450000px;}
.ye{bottom:921.570000px;}
.y18e{bottom:922.470000px;}
.y71{bottom:925.530000px;}
.y3e{bottom:931.830000px;}
.y9b{bottom:934.170000px;}
.y184{bottom:934.530000px;}
.yd{bottom:942.270000px;}
.y18d{bottom:943.170000px;}
.y70{bottom:946.230000px;}
.y3d{bottom:952.530000px;}
.y104{bottom:955.230000px;}
.yc{bottom:962.970000px;}
.y18c{bottom:963.870000px;}
.y9a{bottom:964.230000px;}
.y6f{bottom:966.930000px;}
.y3c{bottom:973.230000px;}
.y183{bottom:975.930000px;}
.yb{bottom:983.670000px;}
.y103{bottom:984.930000px;}
.y3b{bottom:993.930000px;}
.y6e{bottom:996.630000px;}
.ya{bottom:1004.370000px;}
.y102{bottom:1005.630000px;}
.y3a{bottom:1014.630000px;}
.y6d{bottom:1017.330000px;}
.y9{bottom:1025.070000px;}
.y101{bottom:1026.330000px;}
.y39{bottom:1035.330000px;}
.y6c{bottom:1038.030000px;}
.y100{bottom:1047.030000px;}
.y8{bottom:1055.490000px;}
.y38{bottom:1056.030000px;}
.y6b{bottom:1067.730000px;}
.ydf{bottom:1076.370000px;}
.y37{bottom:1076.730000px;}
.y7{bottom:1077.450000px;}
.y6a{bottom:1088.430000px;}
.y36{bottom:1097.430000px;}
.y6{bottom:1105.170000px;}
.yff{bottom:1109.130000px;}
.y35{bottom:1118.130000px;}
.y5{bottom:1132.710000px;}
.yfe{bottom:1138.470000px;}
.y34{bottom:1138.830000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.760000px;}
.h1c{height:18.663282px;}
.h1b{height:18.718994px;}
.hd{height:26.085000px;}
.h8{height:26.265000px;}
.h13{height:26.280000px;}
.h23{height:26.376781px;}
.h24{height:26.447119px;}
.h21{height:29.190305px;}
.h25{height:29.260643px;}
.h22{height:29.690710px;}
.h20{height:29.762254px;}
.h1a{height:35.274797px;}
.ha{height:43.401000px;}
.h16{height:43.410000px;}
.hc{height:43.545000px;}
.h12{height:43.560000px;}
.h1f{height:44.536065px;}
.h1e{height:44.643381px;}
.hf{height:50.312812px;}
.h10{height:50.463000px;}
.h11{height:52.402500px;}
.h15{height:52.435898px;}
.hb{height:58.651172px;}
.h9{height:60.226875px;}
.h18{height:60.645000px;}
.h17{height:60.825000px;}
.h7{height:63.175781px;}
.h4{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:75.093750px;}
.h14{height:95.220000px;}
.h3{height:96.508125px;}
.h19{height:343.500000px;}
.h1d{height:345.221993px;}
.he{height:366.660000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:231.319500px;}
.w3{width:382.935000px;}
.w4{width:445.464432px;}
.w5{width:517.431528px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:8.089500px;}
.x36{left:12.829253px;}
.x50{left:23.391491px;}
.x3b{left:24.602284px;}
.x3a{left:27.436054px;}
.x38{left:28.646847px;}
.x3c{left:30.012210px;}
.x4e{left:32.923265px;}
.x4f{left:35.112997px;}
.x37{left:38.307430px;}
.x39{left:40.703254px;}
.x51{left:46.834504px;}
.x34{left:69.547181px;}
.x35{left:82.449691px;}
.x30{left:87.732314px;}
.x3d{left:104.694952px;}
.x53{left:107.116538px;}
.x42{left:108.327331px;}
.x44{left:109.744217px;}
.x55{left:111.622663px;}
.x52{left:114.456434px;}
.x54{left:115.615704px;}
.x41{left:119.404799px;}
.x43{left:121.980954px;}
.x56{left:125.791518px;}
.xa{left:126.946500px;}
.x3e{left:130.203183px;}
.x40{left:132.671999px;}
.x2{left:135.036000px;}
.x3f{left:138.704496px;}
.x2b{left:144.329423px;}
.x1f{left:156.270000px;}
.x59{left:158.250000px;}
.x4{left:162.930000px;}
.x26{left:176.942402px;}
.x27{left:182.649674px;}
.x25{left:184.586070px;}
.x8{left:189.030000px;}
.x29{left:194.556810px;}
.x28{left:198.472066px;}
.x45{left:211.319873px;}
.x9{left:216.030000px;}
.x2f{left:219.950771px;}
.x24{left:223.499998px;}
.x46{left:235.771881px;}
.x58{left:256.048370px;}
.x2a{left:258.924980px;}
.x48{left:259.987741px;}
.x47{left:261.275819px;}
.x57{left:264.292067px;}
.x1d{left:284.145000px;}
.x1e{left:285.945000px;}
.x1c{left:291.525000px;}
.x31{left:296.761132px;}
.x2c{left:298.731500px;}
.x2d{left:302.629771px;}
.x2e{left:304.812462px;}
.x5{left:315.975000px;}
.x1a{left:332.535000px;}
.x32{left:334.367975px;}
.x18{left:341.715000px;}
.x19{left:344.415000px;}
.x17{left:346.575000px;}
.x4b{left:354.350163px;}
.x4a{left:356.797511px;}
.xc{left:358.275000px;}
.x1b{left:364.395000px;}
.x33{left:368.951323px;}
.x4c{left:370.322326px;}
.x49{left:375.753720px;}
.x4d{left:391.210652px;}
.x7{left:413.715000px;}
.xe{left:425.130000px;}
.xf{left:428.370000px;}
.x23{left:446.295000px;}
.x6{left:459.615000px;}
.x15{left:493.635000px;}
.x12{left:498.855000px;}
.x13{left:500.115000px;}
.x16{left:503.175000px;}
.x14{left:514.155000px;}
.x11{left:540.390000px;}
.x10{left:543.990000px;}
.x21{left:669.030000px;}
.x22{left:673.890000px;}
.xd{left:714.030000px;}
.x20{left:739.590000px;}
.x3{left:748.590000px;}
.x1{left:757.590000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v1{vertical-align:-19.982019pt;}
.v2{vertical-align:-17.295614pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.239467pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.161067pt;}
.ls2c{letter-spacing:-0.158153pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.109373pt;}
.ls2d{letter-spacing:-0.088413pt;}
.ls25{letter-spacing:-0.087651pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.049923pt;}
.ls27{letter-spacing:-0.026067pt;}
.ls2f{letter-spacing:-0.017835pt;}
.ls26{letter-spacing:-0.009527pt;}
.ls6{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.002931pt;}
.ls1f{letter-spacing:0.032901pt;}
.ls30{letter-spacing:0.041539pt;}
.ls15{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.074857pt;}
.ls28{letter-spacing:0.089175pt;}
.ls22{letter-spacing:0.091462pt;}
.ls1e{letter-spacing:0.103834pt;}
.ls23{letter-spacing:0.114327pt;}
.lsb{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.139860pt;}
.ls24{letter-spacing:0.147299pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.222557pt;}
.ls2e{letter-spacing:0.231322pt;}
.ls16{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.704000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.328000pt;}
.ls33{letter-spacing:7.168000pt;}
.ls37{letter-spacing:7.680000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls4{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:16.640000pt;}
.ls2{letter-spacing:19.200000pt;}
.ls5{letter-spacing:30.186667pt;}
.ls35{letter-spacing:30.208000pt;}
.ls32{letter-spacing:34.026667pt;}
.ls34{letter-spacing:34.048000pt;}
.lsc{letter-spacing:57.088000pt;}
.ls38{letter-spacing:59.498667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.296000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsf{word-spacing:-11.920640pt;}
.wse{word-spacing:-11.759573pt;}
.ws10{word-spacing:-11.681173pt;}
.ws26{word-spacing:-10.551952pt;}
.ws2e{word-spacing:-8.809528pt;}
.ws28{word-spacing:-8.718066pt;}
.ws30{word-spacing:-8.619745pt;}
.ws31{word-spacing:-8.601807pt;}
.ws1c{word-spacing:-8.598876pt;}
.ws1d{word-spacing:-8.578206pt;}
.ws2f{word-spacing:-8.560371pt;}
.ws2a{word-spacing:-8.528283pt;}
.ws2c{word-spacing:-8.510463pt;}
.ws29{word-spacing:-8.468833pt;}
.ws2b{word-spacing:-8.440723pt;}
.ws15{word-spacing:-8.357675pt;}
.ws1e{word-spacing:-7.751391pt;}
.ws1f{word-spacing:-0.018292pt;}
.ws4{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.015549pt;}
.ws23{word-spacing:0.050761pt;}
.ws24{word-spacing:0.228197pt;}
.ws27{word-spacing:0.281245pt;}
.ws1b{word-spacing:0.325604pt;}
.ws20{word-spacing:0.346366pt;}
.ws25{word-spacing:0.372250pt;}
.ws22{word-spacing:0.437645pt;}
.ws13{word-spacing:0.674438pt;}
.ws16{word-spacing:0.784913pt;}
.ws21{word-spacing:0.968124pt;}
.ws14{word-spacing:1.007673pt;}
.ws1a{word-spacing:122.539638pt;}
.ws17{word-spacing:162.111919pt;}
.ws18{word-spacing:174.758509pt;}
.ws19{word-spacing:203.373242pt;}
._6{margin-left:-1.917653pt;}
._4{margin-left:-1.024000pt;}
._0{width:0.936320pt;}
._1{width:1.981227pt;}
._c{width:3.023360pt;}
._e{width:4.193280pt;}
._7{width:5.738667pt;}
._17{width:6.679680pt;}
._5{width:7.680000pt;}
._3{width:8.960000pt;}
._2{width:10.218667pt;}
._1c{width:11.138347pt;}
._11{width:12.096000pt;}
._10{width:13.312000pt;}
._d{width:15.018667pt;}
._8{width:17.111680pt;}
._9{width:18.014933pt;}
._f{width:19.328000pt;}
._18{width:20.736000pt;}
._19{width:21.696000pt;}
._1f{width:22.807680pt;}
._1e{width:23.808000pt;}
._21{width:24.706347pt;}
._14{width:25.600000pt;}
._15{width:26.519680pt;}
._16{width:27.421653pt;}
._1d{width:28.861653pt;}
._20{width:29.952000pt;}
._1a{width:30.976000pt;}
._1b{width:32.535680pt;}
._2a{width:34.560000pt;}
._29{width:36.416000pt;}
._2c{width:37.760000pt;}
._a{width:43.008000pt;}
._b{width:44.138667pt;}
._12{width:49.472000pt;}
._13{width:50.466347pt;}
._2b{width:70.058667pt;}
._24{width:109.440000pt;}
._25{width:110.784000pt;}
._27{width:144.608000pt;}
._26{width:146.048000pt;}
._2d{width:164.672000pt;}
._2e{width:165.749333pt;}
._22{width:175.978667pt;}
._23{width:177.621333pt;}
._28{width:184.896000pt;}
.fs7{font-size:24.268192pt;}
.fs6{font-size:24.340634pt;}
.fs5{font-size:30.063581pt;}
.fsa{font-size:34.298189pt;}
.fsb{font-size:34.389651pt;}
.fs9{font-size:37.956663pt;}
.fs8{font-size:38.048125pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:43.008000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:10.866667pt;}
.y8f{bottom:11.026667pt;}
.y89{bottom:11.040000pt;}
.y95{bottom:11.186667pt;}
.y109{bottom:11.200000pt;}
.y8d{bottom:11.346667pt;}
.y10d{bottom:11.360000pt;}
.y178{bottom:13.889814pt;}
.y180{bottom:15.970571pt;}
.y177{bottom:24.179271pt;}
.y8b{bottom:26.226667pt;}
.y17f{bottom:26.260028pt;}
.y115{bottom:26.266667pt;}
.y91{bottom:26.386667pt;}
.y10b{bottom:26.400000pt;}
.y8c{bottom:26.546667pt;}
.y11b{bottom:26.560000pt;}
.y116{bottom:26.586667pt;}
.y92{bottom:26.706667pt;}
.y10c{bottom:26.720000pt;}
.yda{bottom:32.986667pt;}
.y107{bottom:34.280000pt;}
.y176{bottom:34.468727pt;}
.y108{bottom:34.600000pt;}
.y17e{bottom:36.549484pt;}
.y119{bottom:41.600000pt;}
.y117{bottom:41.760000pt;}
.y11a{bottom:41.920000pt;}
.y114{bottom:42.080000pt;}
.y137{bottom:43.699347pt;}
.yd9{bottom:44.066667pt;}
.y175{bottom:44.781050pt;}
.y17d{bottom:46.861807pt;}
.y16c{bottom:50.634607pt;}
.y4{bottom:51.040000pt;}
.y174{bottom:55.070507pt;}
.yd8{bottom:55.106667pt;}
.y17c{bottom:57.151263pt;}
.y113{bottom:57.440000pt;}
.y16b{bottom:61.038391pt;}
.y166{bottom:64.879789pt;}
.y173{bottom:65.359963pt;}
.y136{bottom:65.721825pt;}
.yd7{bottom:66.146667pt;}
.y17b{bottom:67.440720pt;}
.y3{bottom:69.440000pt;}
.y16a{bottom:71.556503pt;}
.y111{bottom:72.320000pt;}
.y112{bottom:72.640000pt;}
.y172{bottom:75.649420pt;}
.yd6{bottom:77.186667pt;}
.y17a{bottom:77.730177pt;}
.y165{bottom:78.599064pt;}
.y169{bottom:81.960287pt;}
.y171{bottom:85.938877pt;}
.y179{bottom:92.021089pt;}
.y164{bottom:92.204013pt;}
.y168{bottom:92.501264pt;}
.y170{bottom:96.225475pt;}
.y135{bottom:96.710555pt;}
.y18b{bottom:102.560000pt;}
.y16f{bottom:106.514932pt;}
.y167{bottom:107.019878pt;}
.y1a2{bottom:107.360000pt;}
.y134{bottom:107.576910pt;}
.y65{bottom:110.560000pt;}
.y161{bottom:112.145552pt;}
.y69{bottom:112.960000pt;}
.yc0{bottom:117.760000pt;}
.y16e{bottom:120.834426pt;}
.y18a{bottom:120.992000pt;}
.y33{bottom:122.272000pt;}
.y160{bottom:122.549336pt;}
.y12c{bottom:122.592000pt;}
.yfd{bottom:123.392000pt;}
.y1a1{bottom:125.792000pt;}
.y99{bottom:126.752000pt;}
.y13f{bottom:127.264631pt;}
.y64{bottom:128.992000pt;}
.y182{bottom:130.094937pt;}
.y16d{bottom:131.123883pt;}
.y68{bottom:131.392000pt;}
.y13c{bottom:132.856276pt;}
.y147{bottom:132.969467pt;}
.y15f{bottom:133.067447pt;}
.y148{bottom:134.833349pt;}
.ybf{bottom:136.186667pt;}
.y189{bottom:139.386667pt;}
.y32{bottom:140.346667pt;}
.y98{bottom:141.160000pt;}
.y15e{bottom:143.471231pt;}
.y1a0{bottom:144.186667pt;}
.y181{bottom:144.404904pt;}
.y14b{bottom:145.066667pt;}
.y12b{bottom:145.146667pt;}
.y63{bottom:147.386667pt;}
.y13a{bottom:147.578677pt;}
.y138{bottom:148.665313pt;}
.yfc{bottom:149.786667pt;}
.y156{bottom:150.006942pt;}
.y141{bottom:151.404539pt;}
.yd0{bottom:152.666667pt;}
.ybe{bottom:154.586667pt;}
.y140{bottom:154.913466pt;}
.y67{bottom:157.786667pt;}
.y15d{bottom:158.009853pt;}
.y31{bottom:159.066667pt;}
.y155{bottom:159.496107pt;}
.y13d{bottom:161.003153pt;}
.y19f{bottom:162.586667pt;}
.y62{bottom:165.786667pt;}
.yfb{bottom:168.186667pt;}
.y15c{bottom:168.527964pt;}
.y154{bottom:168.890000pt;}
.ycf{bottom:171.066667pt;}
.ydc{bottom:171.386667pt;}
.ybd{bottom:172.986667pt;}
.y1c2{bottom:176.186667pt;}
.y30{bottom:177.466667pt;}
.y142{bottom:178.804354pt;}
.y97{bottom:179.880000pt;}
.y19e{bottom:180.986667pt;}
.y139{bottom:182.388742pt;}
.yd5{bottom:182.426667pt;}
.y14a{bottom:182.517025pt;}
.y153{bottom:182.609276pt;}
.y61{bottom:184.186667pt;}
.y163{bottom:184.533786pt;}
.y13e{bottom:185.520365pt;}
.yfa{bottom:186.586667pt;}
.y13b{bottom:188.531251pt;}
.yce{bottom:189.466667pt;}
.y15b{bottom:189.745205pt;}
.ybc{bottom:191.066667pt;}
.y152{bottom:193.127387pt;}
.yd4{bottom:193.466667pt;}
.y1c1{bottom:194.586667pt;}
.y2f{bottom:195.866667pt;}
.y149{bottom:197.314887pt;}
.y162{bottom:199.053352pt;}
.y1b3{bottom:199.386667pt;}
.y15a{bottom:200.263316pt;}
.y133{bottom:201.585968pt;}
.y60{bottom:202.586667pt;}
.y96{bottom:203.240000pt;}
.ydb{bottom:204.506667pt;}
.yf9{bottom:204.986667pt;}
.y19d{bottom:207.386667pt;}
.y151{bottom:207.808918pt;}
.ycd{bottom:207.866667pt;}
.ybb{bottom:209.466667pt;}
.y132{bottom:212.452323pt;}
.y1c0{bottom:212.986667pt;}
.y159{bottom:214.782883pt;}
.y1b2{bottom:217.786667pt;}
.y150{bottom:218.327029pt;}
.y5f{bottom:220.986667pt;}
.y2e{bottom:222.266667pt;}
.yf8{bottom:223.386667pt;}
.y143{bottom:223.446961pt;}
.y19c{bottom:225.786667pt;}
.ycc{bottom:226.266667pt;}
.y93{bottom:226.600000pt;}
.y146{bottom:227.431291pt;}
.y14f{bottom:228.845141pt;}
.y1bf{bottom:231.386667pt;}
.y158{bottom:232.532196pt;}
.yba{bottom:236.186667pt;}
.y5e{bottom:239.386667pt;}
.y2d{bottom:240.666667pt;}
.yf7{bottom:241.786667pt;}
.y14e{bottom:243.364707pt;}
.y19b{bottom:244.186667pt;}
.ycb{bottom:244.666667pt;}
.y157{bottom:246.270526pt;}
.y144{bottom:248.726327pt;}
.y1be{bottom:249.786667pt;}
.y90{bottom:249.800000pt;}
.y145{bottom:250.937328pt;}
.yb9{bottom:254.586667pt;}
.y124{bottom:257.466667pt;}
.y5d{bottom:257.786667pt;}
.y2c{bottom:259.066667pt;}
.yf6{bottom:260.186667pt;}
.y131{bottom:261.984789pt;}
.y19a{bottom:262.586667pt;}
.yca{bottom:263.066667pt;}
.yd3{bottom:264.546667pt;}
.y1bd{bottom:268.186667pt;}
.y130{bottom:269.772343pt;}
.yb8{bottom:272.986667pt;}
.y14d{bottom:273.842460pt;}
.yd2{bottom:275.586667pt;}
.y5c{bottom:276.186667pt;}
.y12f{bottom:277.559897pt;}
.yf5{bottom:278.586667pt;}
.y199{bottom:280.986667pt;}
.yc9{bottom:281.466667pt;}
.y123{bottom:283.866667pt;}
.y2b{bottom:285.466667pt;}
.y1bc{bottom:286.586667pt;}
.y14c{bottom:287.561735pt;}
.y12e{bottom:288.426251pt;}
.y8e{bottom:288.520000pt;}
.yb7{bottom:291.386667pt;}
.y5b{bottom:294.586667pt;}
.yf4{bottom:296.986667pt;}
.y198{bottom:299.386667pt;}
.yc8{bottom:299.866667pt;}
.y122{bottom:302.266667pt;}
.y2a{bottom:303.866667pt;}
.y1bb{bottom:304.986667pt;}
.yb6{bottom:309.786667pt;}
.y8a{bottom:311.880000pt;}
.y5a{bottom:312.986667pt;}
.yf3{bottom:315.386667pt;}
.y197{bottom:317.786667pt;}
.yc7{bottom:318.266667pt;}
.y121{bottom:320.666667pt;}
.y29{bottom:322.266667pt;}
.y1ba{bottom:323.386667pt;}
.y1b1{bottom:328.186667pt;}
.y59{bottom:331.386667pt;}
.yf2{bottom:333.786667pt;}
.yb5{bottom:336.186667pt;}
.yc6{bottom:336.666667pt;}
.y120{bottom:339.066667pt;}
.y28{bottom:340.666667pt;}
.y1b9{bottom:341.786667pt;}
.y1b0{bottom:346.626667pt;}
.y58{bottom:349.826667pt;}
.y88{bottom:350.466667pt;}
.yf1{bottom:352.226667pt;}
.yb4{bottom:354.626667pt;}
.yc5{bottom:355.106667pt;}
.y11f{bottom:357.506667pt;}
.y27{bottom:359.106667pt;}
.y1b8{bottom:360.226667pt;}
.y1c6{bottom:362.306667pt;}
.y1af{bottom:365.026667pt;}
.y188{bottom:367.906667pt;}
.y57{bottom:368.226667pt;}
.yf0{bottom:370.626667pt;}
.yb3{bottom:373.026667pt;}
.yc4{bottom:373.506667pt;}
.y11e{bottom:375.906667pt;}
.y26{bottom:377.506667pt;}
.y1b7{bottom:378.626667pt;}
.y1c5{bottom:381.026667pt;}
.y1ae{bottom:383.426667pt;}
.y87{bottom:385.826667pt;}
.y187{bottom:386.306667pt;}
.y56{bottom:386.626667pt;}
.yef{bottom:389.026667pt;}
.y196{bottom:391.426667pt;}
.yc3{bottom:391.906667pt;}
.y11d{bottom:394.306667pt;}
.y25{bottom:395.906667pt;}
.y1b6{bottom:397.026667pt;}
.yb2{bottom:399.426667pt;}
.y1ad{bottom:401.506667pt;}
.y55{bottom:405.026667pt;}
.y1c4{bottom:407.106667pt;}
.yee{bottom:407.426667pt;}
.yc2{bottom:410.306667pt;}
.y86{bottom:412.226667pt;}
.y24{bottom:414.306667pt;}
.y1b5{bottom:415.426667pt;}
.yb1{bottom:417.826667pt;}
.y1ac{bottom:419.906667pt;}
.y11c{bottom:420.706667pt;}
.y54{bottom:423.426667pt;}
.yc1{bottom:424.706667pt;}
.yd1{bottom:424.800000pt;}
.yed{bottom:425.826667pt;}
.y23{bottom:432.706667pt;}
.y1c3{bottom:433.506667pt;}
.y1b4{bottom:433.826667pt;}
.y118{bottom:435.106667pt;}
.yb0{bottom:436.226667pt;}
.y1ab{bottom:438.306667pt;}
.y85{bottom:438.626667pt;}
.y53{bottom:441.826667pt;}
.y186{bottom:444.226667pt;}
.y22{bottom:451.106667pt;}
.yec{bottom:452.226667pt;}
.y195{bottom:454.626667pt;}
.y1aa{bottom:456.706667pt;}
.y84{bottom:457.026667pt;}
.y52{bottom:460.226667pt;}
.yaf{bottom:462.626667pt;}
.y12a{bottom:463.906667pt;}
.y21{bottom:469.506667pt;}
.yeb{bottom:470.626667pt;}
.y194{bottom:473.026667pt;}
.y51{bottom:478.626667pt;}
.yae{bottom:481.026667pt;}
.y83{bottom:483.426667pt;}
.y20{bottom:487.906667pt;}
.yea{bottom:489.026667pt;}
.y129{bottom:490.306667pt;}
.y193{bottom:491.426667pt;}
.y50{bottom:497.026667pt;}
.yad{bottom:499.426667pt;}
.y82{bottom:501.826667pt;}
.y1f{bottom:506.306667pt;}
.ye9{bottom:507.426667pt;}
.y128{bottom:508.706667pt;}
.y4f{bottom:515.426667pt;}
.yac{bottom:517.826667pt;}
.y81{bottom:520.226667pt;}
.y1e{bottom:524.706667pt;}
.ye8{bottom:525.826667pt;}
.y192{bottom:528.226667pt;}
.y4e{bottom:533.826667pt;}
.y127{bottom:535.106667pt;}
.yab{bottom:536.226667pt;}
.y80{bottom:538.626667pt;}
.y1d{bottom:543.106667pt;}
.ye7{bottom:544.226667pt;}
.y66{bottom:551.906667pt;}
.y4d{bottom:552.226667pt;}
.yaa{bottom:554.626667pt;}
.y7f{bottom:557.026667pt;}
.y1c{bottom:561.506667pt;}
.ye6{bottom:562.626667pt;}
.y191{bottom:565.026667pt;}
.y4c{bottom:570.653333pt;}
.ya9{bottom:573.053333pt;}
.y7e{bottom:575.453333pt;}
.y1b{bottom:579.933333pt;}
.ye5{bottom:581.053333pt;}
.y110{bottom:581.693333pt;}
.y4b{bottom:589.053333pt;}
.ya8{bottom:591.453333pt;}
.y7d{bottom:593.853333pt;}
.y1a{bottom:598.333333pt;}
.ye4{bottom:599.453333pt;}
.y190{bottom:601.853333pt;}
.y4a{bottom:607.453333pt;}
.ya7{bottom:609.853333pt;}
.y7c{bottom:612.253333pt;}
.y19{bottom:616.733333pt;}
.ye3{bottom:617.853333pt;}
.y49{bottom:625.853333pt;}
.ya6{bottom:628.253333pt;}
.y7b{bottom:630.653333pt;}
.y18{bottom:635.133333pt;}
.ye2{bottom:636.253333pt;}
.y18f{bottom:638.653333pt;}
.yde{bottom:643.933333pt;}
.y48{bottom:644.253333pt;}
.ya5{bottom:646.653333pt;}
.y7a{bottom:649.053333pt;}
.y17{bottom:653.533333pt;}
.ye1{bottom:654.653333pt;}
.y1a9{bottom:657.053333pt;}
.ydd{bottom:662.333333pt;}
.y47{bottom:662.653333pt;}
.ya4{bottom:665.053333pt;}
.y10f{bottom:666.333333pt;}
.y79{bottom:667.453333pt;}
.y16{bottom:671.933333pt;}
.ye0{bottom:673.053333pt;}
.y1a8{bottom:675.453333pt;}
.y46{bottom:681.053333pt;}
.ya3{bottom:683.453333pt;}
.y78{bottom:685.853333pt;}
.y15{bottom:690.333333pt;}
.y1a7{bottom:693.853333pt;}
.y126{bottom:698.173333pt;}
.y45{bottom:699.453333pt;}
.ya2{bottom:701.853333pt;}
.y77{bottom:704.253333pt;}
.y10e{bottom:705.053333pt;}
.y14{bottom:708.733333pt;}
.y1a6{bottom:712.253333pt;}
.y44{bottom:717.853333pt;}
.ya1{bottom:720.253333pt;}
.y125{bottom:720.733333pt;}
.y12d{bottom:721.386667pt;}
.y76{bottom:722.653333pt;}
.y13{bottom:727.133333pt;}
.y10a{bottom:728.413333pt;}
.y1a5{bottom:730.653333pt;}
.y43{bottom:736.253333pt;}
.ya0{bottom:738.653333pt;}
.y75{bottom:741.053333pt;}
.y12{bottom:745.533333pt;}
.y1a4{bottom:749.053333pt;}
.y42{bottom:754.653333pt;}
.y9f{bottom:757.053333pt;}
.y74{bottom:759.453333pt;}
.y11{bottom:763.933333pt;}
.y106{bottom:767.133333pt;}
.y1a3{bottom:767.453333pt;}
.y41{bottom:773.053333pt;}
.y9e{bottom:775.453333pt;}
.y10{bottom:782.333333pt;}
.y73{bottom:785.853333pt;}
.y40{bottom:791.453333pt;}
.y9d{bottom:793.893333pt;}
.yf{bottom:800.773333pt;}
.y72{bottom:804.293333pt;}
.y3f{bottom:809.893333pt;}
.y9c{bottom:811.973333pt;}
.y185{bottom:812.293333pt;}
.y105{bottom:813.733333pt;}
.ye{bottom:819.173333pt;}
.y18e{bottom:819.973333pt;}
.y71{bottom:822.693333pt;}
.y3e{bottom:828.293333pt;}
.y9b{bottom:830.373333pt;}
.y184{bottom:830.693333pt;}
.yd{bottom:837.573333pt;}
.y18d{bottom:838.373333pt;}
.y70{bottom:841.093333pt;}
.y3d{bottom:846.693333pt;}
.y104{bottom:849.093333pt;}
.yc{bottom:855.973333pt;}
.y18c{bottom:856.773333pt;}
.y9a{bottom:857.093333pt;}
.y6f{bottom:859.493333pt;}
.y3c{bottom:865.093333pt;}
.y183{bottom:867.493333pt;}
.yb{bottom:874.373333pt;}
.y103{bottom:875.493333pt;}
.y3b{bottom:883.493333pt;}
.y6e{bottom:885.893333pt;}
.ya{bottom:892.773333pt;}
.y102{bottom:893.893333pt;}
.y3a{bottom:901.893333pt;}
.y6d{bottom:904.293333pt;}
.y9{bottom:911.173333pt;}
.y101{bottom:912.293333pt;}
.y39{bottom:920.293333pt;}
.y6c{bottom:922.693333pt;}
.y100{bottom:930.693333pt;}
.y8{bottom:938.213333pt;}
.y38{bottom:938.693333pt;}
.y6b{bottom:949.093333pt;}
.ydf{bottom:956.773333pt;}
.y37{bottom:957.093333pt;}
.y7{bottom:957.733333pt;}
.y6a{bottom:967.493333pt;}
.y36{bottom:975.493333pt;}
.y6{bottom:982.373333pt;}
.yff{bottom:985.893333pt;}
.y35{bottom:993.893333pt;}
.y5{bottom:1006.853333pt;}
.yfe{bottom:1011.973333pt;}
.y34{bottom:1012.293333pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.120000pt;}
.h1c{height:16.589584pt;}
.h1b{height:16.639105pt;}
.hd{height:23.186667pt;}
.h8{height:23.346667pt;}
.h13{height:23.360000pt;}
.h23{height:23.446028pt;}
.h24{height:23.508551pt;}
.h21{height:25.946937pt;}
.h25{height:26.009460pt;}
.h22{height:26.391742pt;}
.h20{height:26.455337pt;}
.h1a{height:31.355375pt;}
.ha{height:38.578667pt;}
.h16{height:38.586667pt;}
.hc{height:38.706667pt;}
.h12{height:38.720000pt;}
.h1f{height:39.587613pt;}
.h1e{height:39.683005pt;}
.hf{height:44.722500pt;}
.h10{height:44.856000pt;}
.h11{height:46.580000pt;}
.h15{height:46.609688pt;}
.hb{height:52.134375pt;}
.h9{height:53.535000pt;}
.h18{height:53.906667pt;}
.h17{height:54.066667pt;}
.h7{height:56.156250pt;}
.h4{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:66.750000pt;}
.h14{height:84.640000pt;}
.h3{height:85.785000pt;}
.h19{height:305.333333pt;}
.h1d{height:306.863994pt;}
.he{height:325.920000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:205.617333pt;}
.w3{width:340.386667pt;}
.w4{width:395.968384pt;}
.w5{width:459.939136pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:7.190667pt;}
.x36{left:11.403781pt;}
.x50{left:20.792436pt;}
.x3b{left:21.868697pt;}
.x3a{left:24.387604pt;}
.x38{left:25.463864pt;}
.x3c{left:26.677520pt;}
.x4e{left:29.265125pt;}
.x4f{left:31.211553pt;}
.x37{left:34.051049pt;}
.x39{left:36.180670pt;}
.x51{left:41.630671pt;}
.x34{left:61.819716pt;}
.x35{left:73.288614pt;}
.x30{left:77.984279pt;}
.x3d{left:93.062179pt;}
.x53{left:95.214701pt;}
.x42{left:96.290961pt;}
.x44{left:97.550415pt;}
.x55{left:99.220145pt;}
.x52{left:101.739053pt;}
.x54{left:102.769515pt;}
.x41{left:106.137599pt;}
.x43{left:108.427515pt;}
.x56{left:111.814682pt;}
.xa{left:112.841333pt;}
.x3e{left:115.736163pt;}
.x40{left:117.930665pt;}
.x2{left:120.032000pt;}
.x3f{left:123.292885pt;}
.x2b{left:128.292821pt;}
.x1f{left:138.906667pt;}
.x59{left:140.666667pt;}
.x4{left:144.826667pt;}
.x26{left:157.282136pt;}
.x27{left:162.355266pt;}
.x25{left:164.076506pt;}
.x8{left:168.026667pt;}
.x29{left:172.939387pt;}
.x28{left:176.419614pt;}
.x45{left:187.839887pt;}
.x9{left:192.026667pt;}
.x2f{left:195.511796pt;}
.x24{left:198.666665pt;}
.x46{left:209.575005pt;}
.x58{left:227.598551pt;}
.x2a{left:230.155538pt;}
.x48{left:231.100214pt;}
.x47{left:232.245172pt;}
.x57{left:234.926282pt;}
.x1d{left:252.573333pt;}
.x1e{left:254.173333pt;}
.x1c{left:259.133333pt;}
.x31{left:263.787673pt;}
.x2c{left:265.539111pt;}
.x2d{left:269.004241pt;}
.x2e{left:270.944411pt;}
.x5{left:280.866667pt;}
.x1a{left:295.586667pt;}
.x32{left:297.215978pt;}
.x18{left:303.746667pt;}
.x19{left:306.146667pt;}
.x17{left:308.066667pt;}
.x4b{left:314.977923pt;}
.x4a{left:317.153343pt;}
.xc{left:318.466667pt;}
.x1b{left:323.906667pt;}
.x33{left:327.956732pt;}
.x4c{left:329.175401pt;}
.x49{left:334.003307pt;}
.x4d{left:347.742802pt;}
.x7{left:367.746667pt;}
.xe{left:377.893333pt;}
.xf{left:380.773333pt;}
.x23{left:396.706667pt;}
.x6{left:408.546667pt;}
.x15{left:438.786667pt;}
.x12{left:443.426667pt;}
.x13{left:444.546667pt;}
.x16{left:447.266667pt;}
.x14{left:457.026667pt;}
.x11{left:480.346667pt;}
.x10{left:483.546667pt;}
.x21{left:594.693333pt;}
.x22{left:599.013333pt;}
.xd{left:634.693333pt;}
.x20{left:657.413333pt;}
.x3{left:665.413333pt;}
.x1{left:673.413333pt;}
}




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