
    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_58c6b81840a7e018254427d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_3f65570cad445afb2104fbff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_ede2ac732a2774ff77863442.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_57d743884053bef1301e1fa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_5a550eb01e58e565ababd0aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_51044527f47429ad6d36fc29.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054000;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_739268ca29d8dd37fb454a03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_12db6fe370f735ada4a9ffdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_9e26ca9b6c296befe280c761.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.116000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_163ef94adc860de9963179e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_130bc3020a13d2855fcd439a.woff2')format("woff");}.fff{font-family:fff;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f988685a295c5daee9bac01d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4947eb7373d01d8e9ce5da02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_28a0a363b1ad47eb262813fe.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4ecc2f910ec82d8e90fd8b46.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_19b83d3cf045fb2198ba0663.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.994000;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;}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.380800px;}
.ls8{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.306000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000192px;}
.lsd{letter-spacing:0.225000px;}
.ls9{letter-spacing:0.306000px;}
.ls2{letter-spacing:0.315000px;}
.lsb{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.450000px;}
.ls5{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.900000px;}
.lse{letter-spacing:1.101600px;}
.ls3{letter-spacing:5.226600px;}
.ls6{letter-spacing:10.036800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-34.200000px;}
.wsb{word-spacing:-24.240000px;}
.ws8{word-spacing:-19.555200px;}
.ws9{word-spacing:-16.891200px;}
.ws0{word-spacing:-15.129107px;}
.ws3{word-spacing:-14.256000px;}
.ws4{word-spacing:-13.770000px;}
.ws29{word-spacing:-13.341600px;}
.ws19{word-spacing:-12.546000px;}
.wsa{word-spacing:-12.240000px;}
.ws21{word-spacing:-11.934000px;}
.ws12{word-spacing:-10.794000px;}
.ws18{word-spacing:-7.135920px;}
.ws26{word-spacing:-0.612000px;}
.ws6{word-spacing:-0.450000px;}
.wsf{word-spacing:-0.405000px;}
.ws1f{word-spacing:-0.360000px;}
.ws5{word-spacing:-0.315000px;}
.ws1a{word-spacing:-0.306000px;}
.ws16{word-spacing:-0.252000px;}
.ws27{word-spacing:-0.225000px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.306000px;}
.ws13{word-spacing:1.260000px;}
.ws1e{word-spacing:1.386000px;}
.ws24{word-spacing:1.554000px;}
.ws23{word-spacing:2.394000px;}
.ws1c{word-spacing:3.990000px;}
.ws15{word-spacing:4.074000px;}
.ws10{word-spacing:5.691600px;}
.wse{word-spacing:5.875200px;}
.ws1b{word-spacing:6.132000px;}
.wsd{word-spacing:6.242400px;}
.ws14{word-spacing:6.510000px;}
.ws1d{word-spacing:6.972000px;}
.ws2a{word-spacing:12.423600px;}
.wsc{word-spacing:32.680800px;}
.ws7{word-spacing:81.319706px;}
.ws17{word-spacing:81.364706px;}
.ws11{word-spacing:83.614706px;}
.ws28{word-spacing:85.504706px;}
.ws20{word-spacing:86.179706px;}
.ws25{word-spacing:90.724706px;}
._23{margin-left:-12.705120px;}
._29{margin-left:-11.470674px;}
._10{margin-left:-6.219605px;}
._14{margin-left:-5.154481px;}
._1b{margin-left:-3.862529px;}
._c{margin-left:-2.769242px;}
._b{margin-left:-1.035000px;}
._7{width:1.205042px;}
._2{width:2.798807px;}
._f{width:4.031113px;}
._1{width:5.131146px;}
._e{width:6.854400px;}
._8{width:8.668527px;}
._4{width:9.795825px;}
._d{width:11.141550px;}
._a{width:12.750121px;}
._13{width:13.910760px;}
._5{width:15.160205px;}
._12{width:16.529155px;}
._19{width:17.796960px;}
._3{width:19.513905px;}
._15{width:21.040560px;}
._16{width:22.637880px;}
._1f{width:23.754722px;}
._21{width:25.110360px;}
._1a{width:26.413920px;}
._1d{width:27.729345px;}
._9{width:29.076495px;}
._20{width:30.331065px;}
._17{width:32.130000px;}
._11{width:33.721200px;}
._1e{width:34.890120px;}
._24{width:36.089640px;}
._22{width:37.821600px;}
._1c{width:39.351600px;}
._26{width:42.003000px;}
._2a{width:43.102440px;}
._27{width:44.425800px;}
._6{width:47.618592px;}
._25{width:52.387200px;}
._28{width:53.600645px;}
._18{width:56.438640px;}
._0{width:793.447219px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.679600px;}
.fs3{font-size:38.872320px;}
.fse{font-size:42.000000px;}
.fs6{font-size:42.759552px;}
.fs4{font-size:43.731360px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.590400px;}
.fs1{font-size:53.449440px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:54.421248px;}
.fsa{font-size:61.200000px;}
.fsb{font-size:67.200000px;}
.fs0{font-size:68.026560px;}
.fs8{font-size:114.000000px;}
.fsc{font-size:121.200000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307530px;}
.y1e{bottom:47.074950px;}
.y30{bottom:48.137850px;}
.y1b{bottom:51.809514px;}
.y1d{bottom:63.578700px;}
.y1c{bottom:63.649500px;}
.y2f{bottom:64.889550px;}
.y1a{bottom:65.584892px;}
.y19{bottom:79.360271px;}
.y18{bottom:93.135649px;}
.y17{bottom:104.906674px;}
.y16{bottom:127.209667px;}
.y16f{bottom:127.735050px;}
.yd5{bottom:127.748850px;}
.y1c1{bottom:127.762650px;}
.y54{bottom:127.762800px;}
.yf1{bottom:127.764150px;}
.y1e2{bottom:127.769550px;}
.y1b8{bottom:127.771050px;}
.y18e{bottom:127.776450px;}
.y159{bottom:127.777950px;}
.yb2{bottom:127.778100px;}
.y170{bottom:127.780950px;}
.y1dd{bottom:127.783350px;}
.y1ab{bottom:127.792350px;}
.y125{bottom:127.796850px;}
.y14b{bottom:127.801500px;}
.y1aa{bottom:144.287850px;}
.y124{bottom:144.292350px;}
.y14a{bottom:144.297000px;}
.y16e{bottom:148.741950px;}
.yd4{bottom:148.755750px;}
.y1b7{bottom:148.762650px;}
.y158{bottom:148.769550px;}
.y53{bottom:148.769700px;}
.yf0{bottom:148.771050px;}
.y1e1{bottom:148.776450px;}
.y1dc{bottom:148.783350px;}
.y1a9{bottom:160.783350px;}
.y123{bottom:160.787850px;}
.y149{bottom:160.792500px;}
.y16d{bottom:169.748850px;}
.yb1{bottom:169.749000px;}
.yd3{bottom:169.762650px;}
.y90{bottom:169.762800px;}
.y17d{bottom:169.764150px;}
.y52{bottom:169.764300px;}
.y157{bottom:169.765650px;}
.y79{bottom:169.765800px;}
.y1b6{bottom:169.769550px;}
.y1c0{bottom:169.776450px;}
.yef{bottom:169.777950px;}
.y1db{bottom:169.783350px;}
.y122{bottom:177.283350px;}
.y148{bottom:177.288000px;}
.y16c{bottom:190.755750px;}
.yb0{bottom:190.755900px;}
.y1b5{bottom:190.762650px;}
.yd2{bottom:190.769550px;}
.y8f{bottom:190.769700px;}
.y17c{bottom:190.771050px;}
.y51{bottom:190.771200px;}
.y156{bottom:190.772550px;}
.y78{bottom:190.772700px;}
.y1da{bottom:190.776450px;}
.y1bf{bottom:190.783350px;}
.y147{bottom:193.783500px;}
.y15{bottom:208.853687px;}
.y121{bottom:211.741950px;}
.y77{bottom:211.749000px;}
.yee{bottom:211.757250px;}
.y16b{bottom:211.762650px;}
.yaf{bottom:211.762800px;}
.yd1{bottom:211.764150px;}
.y109{bottom:211.769550px;}
.y199{bottom:211.771050px;}
.y8e{bottom:211.771200px;}
.y50{bottom:211.778100px;}
.y155{bottom:211.779450px;}
.y1d9{bottom:211.783350px;}
.y14{bottom:219.179147px;}
.y13{bottom:229.516754px;}
.y120{bottom:232.748850px;}
.y137{bottom:232.755750px;}
.y76{bottom:232.755900px;}
.y146{bottom:232.762650px;}
.yed{bottom:232.764150px;}
.y16a{bottom:232.769550px;}
.y4f{bottom:232.769700px;}
.yd0{bottom:232.771050px;}
.y108{bottom:232.776450px;}
.y8d{bottom:232.778100px;}
.y1d8{bottom:232.783350px;}
.y12{bottom:239.842214px;}
.y11{bottom:250.179822px;}
.y11f{bottom:253.755750px;}
.y136{bottom:253.762650px;}
.y75{bottom:253.762800px;}
.y107{bottom:253.769550px;}
.y8c{bottom:253.769700px;}
.yec{bottom:253.771050px;}
.y4e{bottom:253.771200px;}
.y1be{bottom:253.772550px;}
.y169{bottom:253.776450px;}
.yae{bottom:253.776600px;}
.ycf{bottom:253.777950px;}
.y1d0{bottom:253.783350px;}
.y10{bottom:260.505282px;}
.yf{bottom:270.830742px;}
.y1c8{bottom:274.755750px;}
.y8b{bottom:274.755900px;}
.yeb{bottom:274.762650px;}
.y106{bottom:274.764150px;}
.y135{bottom:274.769550px;}
.y74{bottom:274.769700px;}
.y198{bottom:274.771050px;}
.yce{bottom:274.774050px;}
.y1a8{bottom:274.777950px;}
.y4d{bottom:274.778100px;}
.y1bd{bottom:274.779450px;}
.y168{bottom:274.783350px;}
.yad{bottom:274.783500px;}
.ye{bottom:281.168350px;}
.y1bc{bottom:295.755750px;}
.y73{bottom:295.757400px;}
.y167{bottom:295.762650px;}
.y8a{bottom:295.762800px;}
.yea{bottom:295.769550px;}
.y4c{bottom:295.769700px;}
.y105{bottom:295.771050px;}
.yac{bottom:295.771200px;}
.y134{bottom:295.774050px;}
.y18d{bottom:295.776450px;}
.y197{bottom:295.777950px;}
.yd{bottom:299.742030px;}
.y1b4{bottom:316.760250px;}
.ye9{bottom:316.762650px;}
.y72{bottom:316.764300px;}
.y166{bottom:316.769550px;}
.y89{bottom:316.769700px;}
.y11e{bottom:316.771050px;}
.ycd{bottom:316.772550px;}
.y4b{bottom:316.772700px;}
.y1cf{bottom:316.776450px;}
.y17b{bottom:316.777950px;}
.yab{bottom:316.778100px;}
.y133{bottom:316.780950px;}
.y132{bottom:337.741950px;}
.y165{bottom:337.748850px;}
.y18c{bottom:337.762650px;}
.y196{bottom:337.764150px;}
.y1b3{bottom:337.767150px;}
.ye8{bottom:337.769550px;}
.yaa{bottom:337.769700px;}
.y71{bottom:337.771200px;}
.y1c7{bottom:337.776450px;}
.y11d{bottom:337.777950px;}
.ycc{bottom:337.779450px;}
.y4a{bottom:337.779600px;}
.y1ce{bottom:337.783350px;}
.y131{bottom:358.748850px;}
.y164{bottom:358.755750px;}
.y49{bottom:358.755900px;}
.y1bb{bottom:358.758750px;}
.ye7{bottom:358.762650px;}
.y70{bottom:358.762800px;}
.y104{bottom:358.764150px;}
.y11c{bottom:358.769550px;}
.y17a{bottom:358.771050px;}
.ya9{bottom:358.771200px;}
.ycb{bottom:358.772550px;}
.y1b2{bottom:358.774050px;}
.y88{bottom:358.778100px;}
.y1c6{bottom:358.783350px;}
.y1b1{bottom:379.735050px;}
.y18b{bottom:379.748850px;}
.y130{bottom:379.755750px;}
.y163{bottom:379.762650px;}
.y48{bottom:379.762800px;}
.y11b{bottom:379.765650px;}
.ye6{bottom:379.769550px;}
.y6f{bottom:379.769700px;}
.y103{bottom:379.771050px;}
.y179{bottom:379.777950px;}
.ya8{bottom:379.778100px;}
.y1b0{bottom:400.741950px;}
.y18a{bottom:400.755750px;}
.y102{bottom:400.762650px;}
.y6e{bottom:400.762800px;}
.y162{bottom:400.769550px;}
.y47{bottom:400.769700px;}
.y145{bottom:400.771050px;}
.y11a{bottom:400.772550px;}
.ye5{bottom:400.776450px;}
.y1cd{bottom:400.777950px;}
.y119{bottom:421.748850px;}
.y46{bottom:421.749000px;}
.yca{bottom:421.762650px;}
.y161{bottom:421.764150px;}
.ya7{bottom:421.764300px;}
.y101{bottom:421.769550px;}
.y6d{bottom:421.769700px;}
.y195{bottom:421.771050px;}
.y1d7{bottom:421.776450px;}
.y144{bottom:421.777950px;}
.ye4{bottom:421.783350px;}
.yc{bottom:438.467622px;}
.y118{bottom:442.755750px;}
.y45{bottom:442.755900px;}
.y6c{bottom:442.762800px;}
.yc9{bottom:442.769550px;}
.y160{bottom:442.771050px;}
.ya6{bottom:442.771200px;}
.y100{bottom:442.772550px;}
.y194{bottom:442.777950px;}
.y1d6{bottom:442.783350px;}
.ye3{bottom:463.755750px;}
.y117{bottom:463.762650px;}
.y44{bottom:463.762800px;}
.y178{bottom:463.769550px;}
.y6b{bottom:463.769700px;}
.y189{bottom:463.771050px;}
.yc8{bottom:463.775550px;}
.y143{bottom:463.776450px;}
.y1a7{bottom:463.777950px;}
.ya5{bottom:463.778100px;}
.yff{bottom:463.779450px;}
.y193{bottom:484.750350px;}
.yfe{bottom:484.755750px;}
.ye2{bottom:484.762650px;}
.y116{bottom:484.769550px;}
.y43{bottom:484.769700px;}
.y2e{bottom:484.771050px;}
.y177{bottom:484.776450px;}
.y6a{bottom:484.776600px;}
.y188{bottom:484.777950px;}
.yc7{bottom:484.782450px;}
.y142{bottom:484.783350px;}
.yc6{bottom:505.728150px;}
.y192{bottom:505.757250px;}
.yfd{bottom:505.762650px;}
.ya4{bottom:505.765800px;}
.ye1{bottom:505.769550px;}
.y115{bottom:505.771050px;}
.y42{bottom:505.774200px;}
.y12f{bottom:505.776450px;}
.y176{bottom:505.783350px;}
.y69{bottom:505.783500px;}
.yc5{bottom:526.735050px;}
.y1cc{bottom:526.755750px;}
.y141{bottom:526.762650px;}
.ye0{bottom:526.764150px;}
.y2d{bottom:526.769550px;}
.y87{bottom:526.771200px;}
.ya3{bottom:526.772700px;}
.y175{bottom:526.774050px;}
.y68{bottom:526.774200px;}
.y154{bottom:526.776450px;}
.y114{bottom:526.777950px;}
.y41{bottom:526.781100px;}
.y1a6{bottom:526.783350px;}
.y1e7{bottom:526.784850px;}
.y174{bottom:547.735050px;}
.yc4{bottom:547.741950px;}
.y40{bottom:547.742100px;}
.ya2{bottom:547.749000px;}
.y2c{bottom:547.755750px;}
.y1af{bottom:547.762650px;}
.y12e{bottom:547.764150px;}
.yfc{bottom:547.765650px;}
.y113{bottom:547.769550px;}
.ydf{bottom:547.771050px;}
.y1e0{bottom:547.776450px;}
.y86{bottom:547.778100px;}
.y67{bottom:547.781100px;}
.y153{bottom:547.783350px;}
.y173{bottom:568.741950px;}
.y66{bottom:568.742100px;}
.yc3{bottom:568.748850px;}
.y3f{bottom:568.749000px;}
.y140{bottom:568.750350px;}
.ya1{bottom:568.755900px;}
.y2b{bottom:568.762650px;}
.y187{bottom:568.764150px;}
.y1a5{bottom:568.769550px;}
.y85{bottom:568.769700px;}
.y12d{bottom:568.771050px;}
.yfb{bottom:568.772550px;}
.yde{bottom:568.777950px;}
.y1df{bottom:568.783350px;}
.yfa{bottom:589.748850px;}
.y65{bottom:589.749000px;}
.yc2{bottom:589.755750px;}
.y3e{bottom:589.755900px;}
.y13f{bottom:589.757250px;}
.y12c{bottom:589.762650px;}
.ya0{bottom:589.762800px;}
.y2a{bottom:589.769550px;}
.y186{bottom:589.771050px;}
.y1a4{bottom:589.772550px;}
.y1d5{bottom:589.779450px;}
.y1e6{bottom:589.783350px;}
.y29{bottom:610.750350px;}
.yf9{bottom:610.755750px;}
.y64{bottom:610.755900px;}
.yc1{bottom:610.762650px;}
.y3d{bottom:610.762800px;}
.y13e{bottom:610.764150px;}
.y12b{bottom:610.769550px;}
.y9f{bottom:610.769700px;}
.y1e5{bottom:610.771050px;}
.y152{bottom:610.772550px;}
.ydd{bottom:610.776450px;}
.y185{bottom:610.777950px;}
.y1ae{bottom:610.779450px;}
.yb{bottom:621.337592px;}
.y1ad{bottom:631.755750px;}
.y28{bottom:631.757250px;}
.yf8{bottom:631.762650px;}
.y63{bottom:631.762800px;}
.yc0{bottom:631.769550px;}
.y3c{bottom:631.769700px;}
.y12a{bottom:631.771050px;}
.y9e{bottom:631.776600px;}
.y151{bottom:631.779450px;}
.ydc{bottom:631.783350px;}
.ya{bottom:642.729516px;}
.y150{bottom:652.755750px;}
.y13d{bottom:652.762650px;}
.y27{bottom:652.764150px;}
.y84{bottom:652.765650px;}
.yf7{bottom:652.769550px;}
.y62{bottom:652.769700px;}
.ybf{bottom:652.771050px;}
.y3b{bottom:652.772550px;}
.y112{bottom:652.777350px;}
.y129{bottom:652.777950px;}
.y9d{bottom:652.783500px;}
.y9{bottom:656.492747px;}
.y14f{bottom:673.762650px;}
.y61{bottom:673.762800px;}
.y1d4{bottom:673.764150px;}
.yf6{bottom:673.765650px;}
.y128{bottom:673.769550px;}
.y9c{bottom:673.769700px;}
.y26{bottom:673.771050px;}
.y83{bottom:673.772550px;}
.y1c5{bottom:673.776450px;}
.ybe{bottom:673.777950px;}
.y3a{bottom:673.779450px;}
.y111{bottom:673.783350px;}
.y8{bottom:683.314648px;}
.y82{bottom:694.748850px;}
.y9b{bottom:694.757250px;}
.y25{bottom:694.762650px;}
.y13c{bottom:694.764150px;}
.y1a3{bottom:694.765650px;}
.ybd{bottom:694.769550px;}
.y60{bottom:694.769700px;}
.y39{bottom:694.771050px;}
.yf5{bottom:694.772550px;}
.y15f{bottom:694.776450px;}
.y191{bottom:694.777950px;}
.y1c4{bottom:694.783350px;}
.y7{bottom:697.090026px;}
.y6{bottom:710.865404px;}
.yf4{bottom:715.748850px;}
.y81{bottom:715.755750px;}
.y110{bottom:715.762650px;}
.y9a{bottom:715.764150px;}
.y1e4{bottom:715.767150px;}
.y24{bottom:715.769550px;}
.ybc{bottom:715.771050px;}
.y1a2{bottom:715.772550px;}
.y5f{bottom:715.776600px;}
.y38{bottom:715.777950px;}
.y15e{bottom:715.783350px;}
.y5{bottom:724.640783px;}
.y1a1{bottom:736.748850px;}
.yf3{bottom:736.755750px;}
.y5e{bottom:736.762650px;}
.y37{bottom:736.765650px;}
.y10f{bottom:736.769550px;}
.y99{bottom:736.771050px;}
.y1d3{bottom:736.774050px;}
.y23{bottom:736.776450px;}
.ybb{bottom:736.777950px;}
.y1cb{bottom:757.748850px;}
.y1a0{bottom:757.755750px;}
.y98{bottom:757.762650px;}
.y1d2{bottom:757.765650px;}
.y5d{bottom:757.769550px;}
.y10e{bottom:757.771050px;}
.y1c3{bottom:757.776450px;}
.ydb{bottom:757.777950px;}
.y1e3{bottom:757.780950px;}
.y22{bottom:757.783350px;}
.y15d{bottom:778.750350px;}
.y1ca{bottom:778.755750px;}
.y13b{bottom:778.757250px;}
.y80{bottom:778.762650px;}
.y36{bottom:778.764150px;}
.y97{bottom:778.769550px;}
.yba{bottom:778.772550px;}
.y5c{bottom:778.776450px;}
.y172{bottom:778.777350px;}
.y10d{bottom:778.777950px;}
.y1c2{bottom:778.783350px;}
.y1ba{bottom:778.784850px;}
.y4{bottom:788.840849px;}
.y1d1{bottom:799.748850px;}
.y15c{bottom:799.757250px;}
.y96{bottom:799.762650px;}
.yda{bottom:799.764150px;}
.y5b{bottom:799.769400px;}
.y7f{bottom:799.769550px;}
.y35{bottom:799.771050px;}
.y14e{bottom:799.772550px;}
.y184{bottom:799.774650px;}
.y190{bottom:799.776450px;}
.yb9{bottom:799.779450px;}
.y127{bottom:799.783350px;}
.y3{bottom:809.260964px;}
.yb8{bottom:820.755750px;}
.y19f{bottom:820.762650px;}
.y15b{bottom:820.764150px;}
.y95{bottom:820.769550px;}
.yd9{bottom:820.771050px;}
.y5a{bottom:820.776300px;}
.y7e{bottom:820.776450px;}
.y34{bottom:820.777950px;}
.y14d{bottom:820.779450px;}
.y183{bottom:820.781550px;}
.y126{bottom:820.783350px;}
.y20{bottom:825.334650px;}
.y2{bottom:833.373950px;}
.y14c{bottom:841.755750px;}
.y94{bottom:841.755900px;}
.y182{bottom:841.757850px;}
.yb7{bottom:841.762650px;}
.y19e{bottom:841.769550px;}
.y15a{bottom:841.771050px;}
.y1ac{bottom:841.776450px;}
.y10c{bottom:841.777950px;}
.y59{bottom:841.783200px;}
.y7d{bottom:841.783350px;}
.y33{bottom:841.784850px;}
.y1f{bottom:858.337650px;}
.y58{bottom:862.744200px;}
.yf2{bottom:862.762650px;}
.y93{bottom:862.762800px;}
.y181{bottom:862.764750px;}
.y19d{bottom:862.767750px;}
.yb6{bottom:862.769550px;}
.y1c9{bottom:862.776450px;}
.y171{bottom:862.777950px;}
.y7c{bottom:862.783350px;}
.y57{bottom:883.751100px;}
.yd8{bottom:883.767750px;}
.yb5{bottom:883.769550px;}
.y92{bottom:883.769700px;}
.y13a{bottom:883.770750px;}
.y180{bottom:883.771650px;}
.y19c{bottom:883.774650px;}
.y7b{bottom:883.776450px;}
.y32{bottom:883.783350px;}
.y56{bottom:904.758000px;}
.yd7{bottom:904.774650px;}
.yb4{bottom:904.776450px;}
.y91{bottom:904.776600px;}
.y139{bottom:904.777650px;}
.y17f{bottom:904.778550px;}
.y19b{bottom:904.781550px;}
.y10b{bottom:904.783050px;}
.y7a{bottom:904.783350px;}
.y31{bottom:904.783500px;}
.y18f{bottom:909.878250px;}
.yd6{bottom:925.750950px;}
.y55{bottom:925.764900px;}
.y1b9{bottom:925.773150px;}
.y10a{bottom:925.774650px;}
.y19a{bottom:925.776150px;}
.y17e{bottom:925.780050px;}
.yb3{bottom:925.783350px;}
.y21{bottom:925.783500px;}
.y138{bottom:925.784550px;}
.y1de{bottom:925.785450px;}
.h7{height:28.804389px;}
.h31{height:29.899505px;}
.hb{height:32.404938px;}
.h8{height:32.492400px;}
.h2c{height:35.952000px;}
.h6{height:36.005486px;}
.h9{height:36.102667px;}
.hf{height:38.520000px;}
.h5{height:39.606035px;}
.ha{height:40.326145px;}
.h2e{height:40.759200px;}
.he{height:41.085000px;}
.h2b{height:41.688000px;}
.h12{height:43.207200px;}
.h19{height:47.246400px;}
.h29{height:47.301600px;}
.h23{height:48.960000px;}
.h11{height:49.734000px;}
.h3{height:50.407681px;}
.h4{height:50.543734px;}
.h13{height:50.918400px;}
.h16{height:50.979600px;}
.h15{height:51.001200px;}
.h14{height:51.040800px;}
.h18{height:51.285600px;}
.h2a{height:51.286800px;}
.h28{height:51.289200px;}
.h2f{height:51.292800px;}
.h1c{height:51.295200px;}
.h1e{height:51.301200px;}
.h1b{height:51.301800px;}
.h1f{height:51.307200px;}
.h2d{height:51.308400px;}
.h27{height:51.313200px;}
.h20{height:51.334800px;}
.h30{height:51.340800px;}
.h21{height:51.346800px;}
.h32{height:51.350400px;}
.h33{height:51.356400px;}
.h1a{height:51.362400px;}
.h26{height:51.363000px;}
.h25{height:51.367800px;}
.h24{height:51.368400px;}
.h1d{height:51.408000px;}
.h17{height:61.353600px;}
.h22{height:101.649000px;}
.h10{height:105.564000px;}
.hc{height:1020.714000px;}
.hd{height:1020.750000px;}
.h2{height:1022.694296px;}
.h1{height:1023.000000px;}
.h0{height:1023.300000px;}
.w1{width:723.000000px;}
.w2{width:723.119100px;}
.w0{width:723.120000px;}
.x0{left:0.000000px;}
.x3{left:37.876217px;}
.xa{left:43.178850px;}
.x1{left:44.763906px;}
.xb{left:83.663850px;}
.x8{left:92.940900px;}
.x1a{left:96.419850px;}
.xc{left:101.450550px;}
.x16{left:105.310350px;}
.x1b{left:110.554350px;}
.x2{left:120.516340px;}
.x9{left:281.444850px;}
.x12{left:307.789950px;}
.x13{left:312.114300px;}
.x4{left:354.673477px;}
.xe{left:367.186950px;}
.xf{left:375.696750px;}
.x14{left:379.566450px;}
.xd{left:384.209850px;}
.x17{left:388.444110px;}
.x7{left:438.916725px;}
.x18{left:572.192250px;}
.x6{left:587.299950px;}
.x19{left:599.572200px;}
.x10{left:637.578741px;}
.x5{left:664.680300px;}
.x15{left:665.770350px;}
.x11{left:667.985250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.116267pt;}
.ls8{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.272000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000171pt;}
.lsd{letter-spacing:0.200000pt;}
.ls9{letter-spacing:0.272000pt;}
.ls2{letter-spacing:0.280000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.400000pt;}
.ls5{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.979200pt;}
.ls3{letter-spacing:4.645867pt;}
.ls6{letter-spacing:8.921600pt;}
.ws2{word-spacing:-30.400000pt;}
.wsb{word-spacing:-21.546667pt;}
.ws8{word-spacing:-17.382400pt;}
.ws9{word-spacing:-15.014400pt;}
.ws0{word-spacing:-13.448095pt;}
.ws3{word-spacing:-12.672000pt;}
.ws4{word-spacing:-12.240000pt;}
.ws29{word-spacing:-11.859200pt;}
.ws19{word-spacing:-11.152000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws21{word-spacing:-10.608000pt;}
.ws12{word-spacing:-9.594667pt;}
.ws18{word-spacing:-6.343040pt;}
.ws26{word-spacing:-0.544000pt;}
.ws6{word-spacing:-0.400000pt;}
.wsf{word-spacing:-0.360000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws5{word-spacing:-0.280000pt;}
.ws1a{word-spacing:-0.272000pt;}
.ws16{word-spacing:-0.224000pt;}
.ws27{word-spacing:-0.200000pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.272000pt;}
.ws13{word-spacing:1.120000pt;}
.ws1e{word-spacing:1.232000pt;}
.ws24{word-spacing:1.381333pt;}
.ws23{word-spacing:2.128000pt;}
.ws1c{word-spacing:3.546667pt;}
.ws15{word-spacing:3.621333pt;}
.ws10{word-spacing:5.059200pt;}
.wse{word-spacing:5.222400pt;}
.ws1b{word-spacing:5.450667pt;}
.wsd{word-spacing:5.548800pt;}
.ws14{word-spacing:5.786667pt;}
.ws1d{word-spacing:6.197333pt;}
.ws2a{word-spacing:11.043200pt;}
.wsc{word-spacing:29.049600pt;}
.ws7{word-spacing:72.284183pt;}
.ws17{word-spacing:72.324183pt;}
.ws11{word-spacing:74.324183pt;}
.ws28{word-spacing:76.004183pt;}
.ws20{word-spacing:76.604183pt;}
.ws25{word-spacing:80.644183pt;}
._23{margin-left:-11.293440pt;}
._29{margin-left:-10.196155pt;}
._10{margin-left:-5.528538pt;}
._14{margin-left:-4.581761pt;}
._1b{margin-left:-3.433359pt;}
._c{margin-left:-2.461548pt;}
._b{margin-left:-0.920000pt;}
._7{width:1.071148pt;}
._2{width:2.487828pt;}
._f{width:3.583212pt;}
._1{width:4.561019pt;}
._e{width:6.092800pt;}
._8{width:7.705358pt;}
._4{width:8.707400pt;}
._d{width:9.903600pt;}
._a{width:11.333441pt;}
._13{width:12.365120pt;}
._5{width:13.475738pt;}
._12{width:14.692582pt;}
._19{width:15.819520pt;}
._3{width:17.345693pt;}
._15{width:18.702720pt;}
._16{width:20.122560pt;}
._1f{width:21.115308pt;}
._21{width:22.320320pt;}
._1a{width:23.479040pt;}
._1d{width:24.648306pt;}
._9{width:25.845774pt;}
._20{width:26.960946pt;}
._17{width:28.560000pt;}
._11{width:29.974400pt;}
._1e{width:31.013440pt;}
._24{width:32.079680pt;}
._22{width:33.619200pt;}
._1c{width:34.979200pt;}
._26{width:37.336000pt;}
._2a{width:38.313280pt;}
._27{width:39.489600pt;}
._6{width:42.327637pt;}
._25{width:46.566400pt;}
._28{width:47.645018pt;}
._18{width:50.167680pt;}
._0{width:705.286417pt;}
.fsd{font-size:31.715200pt;}
.fs3{font-size:34.553173pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:38.008491pt;}
.fs4{font-size:38.872320pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:43.191467pt;}
.fs1{font-size:47.510613pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:48.374443pt;}
.fsa{font-size:54.400000pt;}
.fsb{font-size:59.733333pt;}
.fs0{font-size:60.468053pt;}
.fs8{font-size:101.333333pt;}
.fsc{font-size:107.733333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273360pt;}
.y1e{bottom:41.844400pt;}
.y30{bottom:42.789200pt;}
.y1b{bottom:46.052901pt;}
.y1d{bottom:56.514400pt;}
.y1c{bottom:56.577333pt;}
.y2f{bottom:57.679600pt;}
.y1a{bottom:58.297682pt;}
.y19{bottom:70.542463pt;}
.y18{bottom:82.787244pt;}
.y17{bottom:93.250377pt;}
.y16{bottom:113.075260pt;}
.y16f{bottom:113.542267pt;}
.yd5{bottom:113.554533pt;}
.y1c1{bottom:113.566800pt;}
.y54{bottom:113.566933pt;}
.yf1{bottom:113.568133pt;}
.y1e2{bottom:113.572933pt;}
.y1b8{bottom:113.574267pt;}
.y18e{bottom:113.579067pt;}
.y159{bottom:113.580400pt;}
.yb2{bottom:113.580533pt;}
.y170{bottom:113.583067pt;}
.y1dd{bottom:113.585200pt;}
.y1ab{bottom:113.593200pt;}
.y125{bottom:113.597200pt;}
.y14b{bottom:113.601333pt;}
.y1aa{bottom:128.255867pt;}
.y124{bottom:128.259867pt;}
.y14a{bottom:128.264000pt;}
.y16e{bottom:132.215067pt;}
.yd4{bottom:132.227333pt;}
.y1b7{bottom:132.233467pt;}
.y158{bottom:132.239600pt;}
.y53{bottom:132.239733pt;}
.yf0{bottom:132.240933pt;}
.y1e1{bottom:132.245733pt;}
.y1dc{bottom:132.251867pt;}
.y1a9{bottom:142.918533pt;}
.y123{bottom:142.922533pt;}
.y149{bottom:142.926667pt;}
.y16d{bottom:150.887867pt;}
.yb1{bottom:150.888000pt;}
.yd3{bottom:150.900133pt;}
.y90{bottom:150.900267pt;}
.y17d{bottom:150.901467pt;}
.y52{bottom:150.901600pt;}
.y157{bottom:150.902800pt;}
.y79{bottom:150.902933pt;}
.y1b6{bottom:150.906267pt;}
.y1c0{bottom:150.912400pt;}
.yef{bottom:150.913733pt;}
.y1db{bottom:150.918533pt;}
.y122{bottom:157.585200pt;}
.y148{bottom:157.589333pt;}
.y16c{bottom:169.560667pt;}
.yb0{bottom:169.560800pt;}
.y1b5{bottom:169.566800pt;}
.yd2{bottom:169.572933pt;}
.y8f{bottom:169.573067pt;}
.y17c{bottom:169.574267pt;}
.y51{bottom:169.574400pt;}
.y156{bottom:169.575600pt;}
.y78{bottom:169.575733pt;}
.y1da{bottom:169.579067pt;}
.y1bf{bottom:169.585200pt;}
.y147{bottom:172.252000pt;}
.y15{bottom:185.647722pt;}
.y121{bottom:188.215067pt;}
.y77{bottom:188.221333pt;}
.yee{bottom:188.228667pt;}
.y16b{bottom:188.233467pt;}
.yaf{bottom:188.233600pt;}
.yd1{bottom:188.234800pt;}
.y109{bottom:188.239600pt;}
.y199{bottom:188.240933pt;}
.y8e{bottom:188.241067pt;}
.y50{bottom:188.247200pt;}
.y155{bottom:188.248400pt;}
.y1d9{bottom:188.251867pt;}
.y14{bottom:194.825908pt;}
.y13{bottom:204.014893pt;}
.y120{bottom:206.887867pt;}
.y137{bottom:206.894000pt;}
.y76{bottom:206.894133pt;}
.y146{bottom:206.900133pt;}
.yed{bottom:206.901467pt;}
.y16a{bottom:206.906267pt;}
.y4f{bottom:206.906400pt;}
.yd0{bottom:206.907600pt;}
.y108{bottom:206.912400pt;}
.y8d{bottom:206.913867pt;}
.y1d8{bottom:206.918533pt;}
.y12{bottom:213.193079pt;}
.y11{bottom:222.382064pt;}
.y11f{bottom:225.560667pt;}
.y136{bottom:225.566800pt;}
.y75{bottom:225.566933pt;}
.y107{bottom:225.572933pt;}
.y8c{bottom:225.573067pt;}
.yec{bottom:225.574267pt;}
.y4e{bottom:225.574400pt;}
.y1be{bottom:225.575600pt;}
.y169{bottom:225.579067pt;}
.yae{bottom:225.579200pt;}
.ycf{bottom:225.580400pt;}
.y1d0{bottom:225.585200pt;}
.y10{bottom:231.560251pt;}
.yf{bottom:240.738437pt;}
.y1c8{bottom:244.227333pt;}
.y8b{bottom:244.227467pt;}
.yeb{bottom:244.233467pt;}
.y106{bottom:244.234800pt;}
.y135{bottom:244.239600pt;}
.y74{bottom:244.239733pt;}
.y198{bottom:244.240933pt;}
.yce{bottom:244.243600pt;}
.y1a8{bottom:244.247067pt;}
.y4d{bottom:244.247200pt;}
.y1bd{bottom:244.248400pt;}
.y168{bottom:244.251867pt;}
.yad{bottom:244.252000pt;}
.ye{bottom:249.927422pt;}
.y1bc{bottom:262.894000pt;}
.y73{bottom:262.895467pt;}
.y167{bottom:262.900133pt;}
.y8a{bottom:262.900267pt;}
.yea{bottom:262.906267pt;}
.y4c{bottom:262.906400pt;}
.y105{bottom:262.907600pt;}
.yac{bottom:262.907733pt;}
.y134{bottom:262.910267pt;}
.y18d{bottom:262.912400pt;}
.y197{bottom:262.913733pt;}
.yd{bottom:266.437360pt;}
.y1b4{bottom:281.564667pt;}
.ye9{bottom:281.566800pt;}
.y72{bottom:281.568267pt;}
.y166{bottom:281.572933pt;}
.y89{bottom:281.573067pt;}
.y11e{bottom:281.574267pt;}
.ycd{bottom:281.575600pt;}
.y4b{bottom:281.575733pt;}
.y1cf{bottom:281.579067pt;}
.y17b{bottom:281.580400pt;}
.yab{bottom:281.580533pt;}
.y133{bottom:281.583067pt;}
.y132{bottom:300.215067pt;}
.y165{bottom:300.221200pt;}
.y18c{bottom:300.233467pt;}
.y196{bottom:300.234800pt;}
.y1b3{bottom:300.237467pt;}
.ye8{bottom:300.239600pt;}
.yaa{bottom:300.239733pt;}
.y71{bottom:300.241067pt;}
.y1c7{bottom:300.245733pt;}
.y11d{bottom:300.247067pt;}
.ycc{bottom:300.248400pt;}
.y4a{bottom:300.248533pt;}
.y1ce{bottom:300.251867pt;}
.y131{bottom:318.887867pt;}
.y164{bottom:318.894000pt;}
.y49{bottom:318.894133pt;}
.y1bb{bottom:318.896667pt;}
.ye7{bottom:318.900133pt;}
.y70{bottom:318.900267pt;}
.y104{bottom:318.901467pt;}
.y11c{bottom:318.906267pt;}
.y17a{bottom:318.907600pt;}
.ya9{bottom:318.907733pt;}
.ycb{bottom:318.908933pt;}
.y1b2{bottom:318.910267pt;}
.y88{bottom:318.913867pt;}
.y1c6{bottom:318.918533pt;}
.y1b1{bottom:337.542267pt;}
.y18b{bottom:337.554533pt;}
.y130{bottom:337.560667pt;}
.y163{bottom:337.566800pt;}
.y48{bottom:337.566933pt;}
.y11b{bottom:337.569467pt;}
.ye6{bottom:337.572933pt;}
.y6f{bottom:337.573067pt;}
.y103{bottom:337.574267pt;}
.y179{bottom:337.580400pt;}
.ya8{bottom:337.580533pt;}
.y1b0{bottom:356.215067pt;}
.y18a{bottom:356.227333pt;}
.y102{bottom:356.233467pt;}
.y6e{bottom:356.233600pt;}
.y162{bottom:356.239600pt;}
.y47{bottom:356.239733pt;}
.y145{bottom:356.240933pt;}
.y11a{bottom:356.242267pt;}
.ye5{bottom:356.245733pt;}
.y1cd{bottom:356.247067pt;}
.y119{bottom:374.887867pt;}
.y46{bottom:374.888000pt;}
.yca{bottom:374.900133pt;}
.y161{bottom:374.901467pt;}
.ya7{bottom:374.901600pt;}
.y101{bottom:374.906267pt;}
.y6d{bottom:374.906400pt;}
.y195{bottom:374.907600pt;}
.y1d7{bottom:374.912400pt;}
.y144{bottom:374.913733pt;}
.ye4{bottom:374.918533pt;}
.yc{bottom:389.748997pt;}
.y118{bottom:393.560667pt;}
.y45{bottom:393.560800pt;}
.y6c{bottom:393.566933pt;}
.yc9{bottom:393.572933pt;}
.y160{bottom:393.574267pt;}
.ya6{bottom:393.574400pt;}
.y100{bottom:393.575600pt;}
.y194{bottom:393.580400pt;}
.y1d6{bottom:393.585200pt;}
.ye3{bottom:412.227333pt;}
.y117{bottom:412.233467pt;}
.y44{bottom:412.233600pt;}
.y178{bottom:412.239600pt;}
.y6b{bottom:412.239733pt;}
.y189{bottom:412.240933pt;}
.yc8{bottom:412.244933pt;}
.y143{bottom:412.245733pt;}
.y1a7{bottom:412.247067pt;}
.ya5{bottom:412.247200pt;}
.yff{bottom:412.248400pt;}
.y193{bottom:430.889200pt;}
.yfe{bottom:430.894000pt;}
.ye2{bottom:430.900133pt;}
.y116{bottom:430.906267pt;}
.y43{bottom:430.906400pt;}
.y2e{bottom:430.907600pt;}
.y177{bottom:430.912400pt;}
.y6a{bottom:430.912533pt;}
.y188{bottom:430.913733pt;}
.yc7{bottom:430.917733pt;}
.y142{bottom:430.918533pt;}
.yc6{bottom:449.536133pt;}
.y192{bottom:449.562000pt;}
.yfd{bottom:449.566800pt;}
.ya4{bottom:449.569600pt;}
.ye1{bottom:449.572933pt;}
.y115{bottom:449.574267pt;}
.y42{bottom:449.577067pt;}
.y12f{bottom:449.579067pt;}
.y176{bottom:449.585200pt;}
.y69{bottom:449.585333pt;}
.yc5{bottom:468.208933pt;}
.y1cc{bottom:468.227333pt;}
.y141{bottom:468.233467pt;}
.ye0{bottom:468.234800pt;}
.y2d{bottom:468.239600pt;}
.y87{bottom:468.241067pt;}
.ya3{bottom:468.242400pt;}
.y175{bottom:468.243600pt;}
.y68{bottom:468.243733pt;}
.y154{bottom:468.245733pt;}
.y114{bottom:468.247067pt;}
.y41{bottom:468.249867pt;}
.y1a6{bottom:468.251867pt;}
.y1e7{bottom:468.253200pt;}
.y174{bottom:486.875600pt;}
.yc4{bottom:486.881733pt;}
.y40{bottom:486.881867pt;}
.ya2{bottom:486.888000pt;}
.y2c{bottom:486.894000pt;}
.y1af{bottom:486.900133pt;}
.y12e{bottom:486.901467pt;}
.yfc{bottom:486.902800pt;}
.y113{bottom:486.906267pt;}
.ydf{bottom:486.907600pt;}
.y1e0{bottom:486.912400pt;}
.y86{bottom:486.913867pt;}
.y67{bottom:486.916533pt;}
.y153{bottom:486.918533pt;}
.y173{bottom:505.548400pt;}
.y66{bottom:505.548533pt;}
.yc3{bottom:505.554533pt;}
.y3f{bottom:505.554667pt;}
.y140{bottom:505.555867pt;}
.ya1{bottom:505.560800pt;}
.y2b{bottom:505.566800pt;}
.y187{bottom:505.568133pt;}
.y1a5{bottom:505.572933pt;}
.y85{bottom:505.573067pt;}
.y12d{bottom:505.574267pt;}
.yfb{bottom:505.575600pt;}
.yde{bottom:505.580400pt;}
.y1df{bottom:505.585200pt;}
.yfa{bottom:524.221200pt;}
.y65{bottom:524.221333pt;}
.yc2{bottom:524.227333pt;}
.y3e{bottom:524.227467pt;}
.y13f{bottom:524.228667pt;}
.y12c{bottom:524.233467pt;}
.ya0{bottom:524.233600pt;}
.y2a{bottom:524.239600pt;}
.y186{bottom:524.240933pt;}
.y1a4{bottom:524.242267pt;}
.y1d5{bottom:524.248400pt;}
.y1e6{bottom:524.251867pt;}
.y29{bottom:542.889200pt;}
.yf9{bottom:542.894000pt;}
.y64{bottom:542.894133pt;}
.yc1{bottom:542.900133pt;}
.y3d{bottom:542.900267pt;}
.y13e{bottom:542.901467pt;}
.y12b{bottom:542.906267pt;}
.y9f{bottom:542.906400pt;}
.y1e5{bottom:542.907600pt;}
.y152{bottom:542.908933pt;}
.ydd{bottom:542.912400pt;}
.y185{bottom:542.913733pt;}
.y1ae{bottom:542.915067pt;}
.yb{bottom:552.300082pt;}
.y1ad{bottom:561.560667pt;}
.y28{bottom:561.562000pt;}
.yf8{bottom:561.566800pt;}
.y63{bottom:561.566933pt;}
.yc0{bottom:561.572933pt;}
.y3c{bottom:561.573067pt;}
.y12a{bottom:561.574267pt;}
.y9e{bottom:561.579200pt;}
.y151{bottom:561.581733pt;}
.ydc{bottom:561.585200pt;}
.ya{bottom:571.315125pt;}
.y150{bottom:580.227333pt;}
.y13d{bottom:580.233467pt;}
.y27{bottom:580.234800pt;}
.y84{bottom:580.236133pt;}
.yf7{bottom:580.239600pt;}
.y62{bottom:580.239733pt;}
.ybf{bottom:580.240933pt;}
.y3b{bottom:580.242267pt;}
.y112{bottom:580.246533pt;}
.y129{bottom:580.247067pt;}
.y9d{bottom:580.252000pt;}
.y9{bottom:583.549108pt;}
.y14f{bottom:598.900133pt;}
.y61{bottom:598.900267pt;}
.y1d4{bottom:598.901467pt;}
.yf6{bottom:598.902800pt;}
.y128{bottom:598.906267pt;}
.y9c{bottom:598.906400pt;}
.y26{bottom:598.907600pt;}
.y83{bottom:598.908933pt;}
.y1c5{bottom:598.912400pt;}
.ybe{bottom:598.913733pt;}
.y3a{bottom:598.915067pt;}
.y111{bottom:598.918533pt;}
.y8{bottom:607.390798pt;}
.y82{bottom:617.554533pt;}
.y9b{bottom:617.562000pt;}
.y25{bottom:617.566800pt;}
.y13c{bottom:617.568133pt;}
.y1a3{bottom:617.569467pt;}
.ybd{bottom:617.572933pt;}
.y60{bottom:617.573067pt;}
.y39{bottom:617.574267pt;}
.yf5{bottom:617.575600pt;}
.y15f{bottom:617.579067pt;}
.y191{bottom:617.580400pt;}
.y1c4{bottom:617.585200pt;}
.y7{bottom:619.635579pt;}
.y6{bottom:631.880359pt;}
.yf4{bottom:636.221200pt;}
.y81{bottom:636.227333pt;}
.y110{bottom:636.233467pt;}
.y9a{bottom:636.234800pt;}
.y1e4{bottom:636.237467pt;}
.y24{bottom:636.239600pt;}
.ybc{bottom:636.240933pt;}
.y1a2{bottom:636.242267pt;}
.y5f{bottom:636.245867pt;}
.y38{bottom:636.247067pt;}
.y15e{bottom:636.251867pt;}
.y5{bottom:644.125140pt;}
.y1a1{bottom:654.887867pt;}
.yf3{bottom:654.894000pt;}
.y5e{bottom:654.900133pt;}
.y37{bottom:654.902800pt;}
.y10f{bottom:654.906267pt;}
.y99{bottom:654.907600pt;}
.y1d3{bottom:654.910267pt;}
.y23{bottom:654.912400pt;}
.ybb{bottom:654.913733pt;}
.y1cb{bottom:673.554533pt;}
.y1a0{bottom:673.560667pt;}
.y98{bottom:673.566800pt;}
.y1d2{bottom:673.569467pt;}
.y5d{bottom:673.572933pt;}
.y10e{bottom:673.574267pt;}
.y1c3{bottom:673.579067pt;}
.ydb{bottom:673.580400pt;}
.y1e3{bottom:673.583067pt;}
.y22{bottom:673.585200pt;}
.y15d{bottom:692.222533pt;}
.y1ca{bottom:692.227333pt;}
.y13b{bottom:692.228667pt;}
.y80{bottom:692.233467pt;}
.y36{bottom:692.234800pt;}
.y97{bottom:692.239600pt;}
.yba{bottom:692.242267pt;}
.y5c{bottom:692.245733pt;}
.y172{bottom:692.246533pt;}
.y10d{bottom:692.247067pt;}
.y1c2{bottom:692.251867pt;}
.y1ba{bottom:692.253200pt;}
.y4{bottom:701.191866pt;}
.y1d1{bottom:710.887867pt;}
.y15c{bottom:710.895333pt;}
.y96{bottom:710.900133pt;}
.yda{bottom:710.901467pt;}
.y5b{bottom:710.906133pt;}
.y7f{bottom:710.906267pt;}
.y35{bottom:710.907600pt;}
.y14e{bottom:710.908933pt;}
.y184{bottom:710.910800pt;}
.y190{bottom:710.912400pt;}
.yb9{bottom:710.915067pt;}
.y127{bottom:710.918533pt;}
.y3{bottom:719.343079pt;}
.yb8{bottom:729.560667pt;}
.y19f{bottom:729.566800pt;}
.y15b{bottom:729.568133pt;}
.y95{bottom:729.572933pt;}
.yd9{bottom:729.574267pt;}
.y5a{bottom:729.578933pt;}
.y7e{bottom:729.579067pt;}
.y34{bottom:729.580400pt;}
.y14d{bottom:729.581733pt;}
.y183{bottom:729.583600pt;}
.y126{bottom:729.585200pt;}
.y20{bottom:733.630800pt;}
.y2{bottom:740.776845pt;}
.y14c{bottom:748.227333pt;}
.y94{bottom:748.227467pt;}
.y182{bottom:748.229200pt;}
.yb7{bottom:748.233467pt;}
.y19e{bottom:748.239600pt;}
.y15a{bottom:748.240933pt;}
.y1ac{bottom:748.245733pt;}
.y10c{bottom:748.247067pt;}
.y59{bottom:748.251733pt;}
.y7d{bottom:748.251867pt;}
.y33{bottom:748.253200pt;}
.y1f{bottom:762.966800pt;}
.y58{bottom:766.883733pt;}
.yf2{bottom:766.900133pt;}
.y93{bottom:766.900267pt;}
.y181{bottom:766.902000pt;}
.y19d{bottom:766.904667pt;}
.yb6{bottom:766.906267pt;}
.y1c9{bottom:766.912400pt;}
.y171{bottom:766.913733pt;}
.y7c{bottom:766.918533pt;}
.y57{bottom:785.556533pt;}
.yd8{bottom:785.571333pt;}
.yb5{bottom:785.572933pt;}
.y92{bottom:785.573067pt;}
.y13a{bottom:785.574000pt;}
.y180{bottom:785.574800pt;}
.y19c{bottom:785.577467pt;}
.y7b{bottom:785.579067pt;}
.y32{bottom:785.585200pt;}
.y56{bottom:804.229333pt;}
.yd7{bottom:804.244133pt;}
.yb4{bottom:804.245733pt;}
.y91{bottom:804.245867pt;}
.y139{bottom:804.246800pt;}
.y17f{bottom:804.247600pt;}
.y19b{bottom:804.250267pt;}
.y10b{bottom:804.251600pt;}
.y7a{bottom:804.251867pt;}
.y31{bottom:804.252000pt;}
.y18f{bottom:808.780667pt;}
.yd6{bottom:822.889733pt;}
.y55{bottom:822.902133pt;}
.y1b9{bottom:822.909467pt;}
.y10a{bottom:822.910800pt;}
.y19a{bottom:822.912133pt;}
.y17e{bottom:822.915600pt;}
.yb3{bottom:822.918533pt;}
.y21{bottom:822.918667pt;}
.y138{bottom:822.919600pt;}
.y1de{bottom:822.920400pt;}
.h7{height:25.603901pt;}
.h31{height:26.577338pt;}
.hb{height:28.804389pt;}
.h8{height:28.882134pt;}
.h2c{height:31.957333pt;}
.h6{height:32.004877pt;}
.h9{height:32.091260pt;}
.hf{height:34.240000pt;}
.h5{height:35.205364pt;}
.ha{height:35.845462pt;}
.h2e{height:36.230400pt;}
.he{height:36.520000pt;}
.h2b{height:37.056000pt;}
.h12{height:38.406400pt;}
.h19{height:41.996800pt;}
.h29{height:42.045867pt;}
.h23{height:43.520000pt;}
.h11{height:44.208000pt;}
.h3{height:44.806828pt;}
.h4{height:44.927764pt;}
.h13{height:45.260800pt;}
.h16{height:45.315200pt;}
.h15{height:45.334400pt;}
.h14{height:45.369600pt;}
.h18{height:45.587200pt;}
.h2a{height:45.588267pt;}
.h28{height:45.590400pt;}
.h2f{height:45.593600pt;}
.h1c{height:45.595733pt;}
.h1e{height:45.601067pt;}
.h1b{height:45.601600pt;}
.h1f{height:45.606400pt;}
.h2d{height:45.607467pt;}
.h27{height:45.611733pt;}
.h20{height:45.630933pt;}
.h30{height:45.636267pt;}
.h21{height:45.641600pt;}
.h32{height:45.644800pt;}
.h33{height:45.650133pt;}
.h1a{height:45.655467pt;}
.h26{height:45.656000pt;}
.h25{height:45.660267pt;}
.h24{height:45.660800pt;}
.h1d{height:45.696000pt;}
.h17{height:54.536533pt;}
.h22{height:90.354667pt;}
.h10{height:93.834667pt;}
.hc{height:907.301333pt;}
.hd{height:907.333333pt;}
.h2{height:909.061597pt;}
.h1{height:909.333333pt;}
.h0{height:909.600000pt;}
.w1{width:642.666667pt;}
.w2{width:642.772533pt;}
.w0{width:642.773333pt;}
.x0{left:0.000000pt;}
.x3{left:33.667748pt;}
.xa{left:38.381200pt;}
.x1{left:39.790139pt;}
.xb{left:74.367867pt;}
.x8{left:82.614133pt;}
.x1a{left:85.706533pt;}
.xc{left:90.178267pt;}
.x16{left:93.609200pt;}
.x1b{left:98.270533pt;}
.x2{left:107.125635pt;}
.x9{left:250.173200pt;}
.x12{left:273.591067pt;}
.x13{left:277.434933pt;}
.x4{left:315.265313pt;}
.xe{left:326.388400pt;}
.xf{left:333.952667pt;}
.x14{left:337.392400pt;}
.xd{left:341.519867pt;}
.x17{left:345.283653pt;}
.x7{left:390.148200pt;}
.x18{left:508.615333pt;}
.x6{left:522.044400pt;}
.x19{left:532.953067pt;}
.x10{left:566.736659pt;}
.x5{left:590.826933pt;}
.x15{left:591.795867pt;}
.x11{left:593.764667pt;}
}




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