
    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_3e8a7c78690d637b17c8350b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.888672;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_bfed9832939e23f975d3d9d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895020;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_75fbc7f570ebe7c42057fadd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_44114da7ab2da4b3c925e3e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.685059;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_24de64fe7e7c3b617e8477e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_612c23c7176dab72952ba4a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844238;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_51ffe233e0d187720e5c2ff6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_5a13af812853e89bb94f9ae1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c11f94ee832d24d365f26084.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_08bce99ee28d8a888896caac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.118000;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_a801e24c7594f0e53e6be494.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_bc17a65ea85d9f5988a986b7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d94edc425b8f93826d681766.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895020;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_a4cb1586a8b0f8f5166cf231.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ba1c475ee9e9080144fad002.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bd259bfbf4dbb82cdb5911cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100000;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_92edbaecbc4aed24bf45bee8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.856934;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_bb085ec8b4555a062305a467.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895508;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_4a4441830990bd2fe0f99a6a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.933594;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;}
.m4{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-19.423200px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.300159px;}
.lsc{letter-spacing:-0.295318px;}
.ls16{letter-spacing:-0.290477px;}
.lsd{letter-spacing:-0.145238px;}
.ls11{letter-spacing:-0.125873px;}
.ls25{letter-spacing:-0.104363px;}
.lsb{letter-spacing:-0.096826px;}
.ls14{letter-spacing:-0.091984px;}
.lsf{letter-spacing:-0.087143px;}
.ls20{letter-spacing:-0.082302px;}
.ls12{letter-spacing:-0.072619px;}
.lsa{letter-spacing:-0.067778px;}
.lse{letter-spacing:-0.058095px;}
.ls15{letter-spacing:-0.048413px;}
.ls26{letter-spacing:-0.034788px;}
.ls24{letter-spacing:-0.030439px;}
.ls18{letter-spacing:-0.028990px;}
.ls6{letter-spacing:-0.023192px;}
.ls1f{letter-spacing:-0.017394px;}
.ls23{letter-spacing:-0.011596px;}
.ls22{letter-spacing:-0.009683px;}
.ls17{letter-spacing:-0.009564px;}
.ls9{letter-spacing:-0.006262px;}
.ls13{letter-spacing:-0.005798px;}
.ls10{letter-spacing:-0.004841px;}
.ls1b{letter-spacing:-0.003392px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003856px;}
.ls1e{letter-spacing:0.004348px;}
.ls3{letter-spacing:0.004841px;}
.ls4{letter-spacing:0.005798px;}
.ls8{letter-spacing:0.006262px;}
.ls1{letter-spacing:0.006755px;}
.ls1c{letter-spacing:0.009683px;}
.ls5{letter-spacing:0.028990px;}
.ls1d{letter-spacing:0.048413px;}
.ls0{letter-spacing:0.060791px;}
.ls19{letter-spacing:104.424110px;}
.ls1a{letter-spacing:164.443178px;}
.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;}
}
.ws6f{word-spacing:-12.151613px;}
.ws8e{word-spacing:-12.146772px;}
.ws8f{word-spacing:-12.141930px;}
.ws90{word-spacing:-11.856295px;}
.ws8d{word-spacing:-11.851453px;}
.ws84{word-spacing:-7.529796px;}
.ws83{word-spacing:-7.526404px;}
.ws80{word-spacing:-3.185562px;}
.ws25{word-spacing:-2.895085px;}
.ws45{word-spacing:-2.604609px;}
.wse{word-spacing:-2.314132px;}
.ws3f{word-spacing:-2.028496px;}
.ws56{word-spacing:-2.023655px;}
.ws19{word-spacing:-1.733178px;}
.ws49{word-spacing:-1.442701px;}
.wsd{word-spacing:-1.152225px;}
.ws21{word-spacing:-0.861748px;}
.ws48{word-spacing:-0.571271px;}
.ws97{word-spacing:-0.290477px;}
.ws1f{word-spacing:-0.285636px;}
.ws1e{word-spacing:-0.280794px;}
.ws3{word-spacing:-0.101318px;}
.ws2{word-spacing:-0.060791px;}
.ws0{word-spacing:-0.042412px;}
.ws1{word-spacing:-0.038556px;}
.ws4e{word-spacing:-0.038256px;}
.ws91{word-spacing:-0.028692px;}
.ws4{word-spacing:-0.023192px;}
.ws9d{word-spacing:-0.004348px;}
.ws6{word-spacing:0.000000px;}
.ws8c{word-spacing:0.003392px;}
.ws7{word-spacing:0.004841px;}
.ws5e{word-spacing:0.005798px;}
.ws8b{word-spacing:0.006784px;}
.ws3a{word-spacing:0.009683px;}
.ws96{word-spacing:0.014524px;}
.ws99{word-spacing:0.017394px;}
.ws5{word-spacing:0.028990px;}
.ws9a{word-spacing:0.030439px;}
.ws9c{word-spacing:0.034788px;}
.ws4f{word-spacing:0.069575px;}
.ws9b{word-spacing:0.104363px;}
.ws98{word-spacing:0.290477px;}
.ws47{word-spacing:0.295318px;}
.ws8a{word-spacing:0.300159px;}
.ws18{word-spacing:0.653573px;}
.ws17{word-spacing:0.731033px;}
.ws72{word-spacing:0.876272px;}
.ws34{word-spacing:1.166748px;}
.ws7f{word-spacing:1.457225px;}
.ws41{word-spacing:1.462067px;}
.ws3c{word-spacing:1.747702px;}
.ws94{word-spacing:1.796115px;}
.ws95{word-spacing:1.830004px;}
.ws23{word-spacing:2.038179px;}
.ws20{word-spacing:2.328656px;}
.ws5f{word-spacing:2.614291px;}
.ws30{word-spacing:2.904768px;}
.ws42{word-spacing:3.195245px;}
.ws40{word-spacing:3.485722px;}
.ws4b{word-spacing:3.771357px;}
.ws3e{word-spacing:3.776198px;}
.ws31{word-spacing:4.066675px;}
.ws39{word-spacing:4.071516px;}
.ws81{word-spacing:4.357152px;}
.ws9{word-spacing:4.647629px;}
.ws12{word-spacing:4.938106px;}
.ws50{word-spacing:5.228582px;}
.wsf{word-spacing:5.514218px;}
.ws2f{word-spacing:5.804695px;}
.ws7e{word-spacing:6.095172px;}
.ws6b{word-spacing:6.100013px;}
.ws3b{word-spacing:6.385648px;}
.ws13{word-spacing:6.676125px;}
.ws51{word-spacing:6.966602px;}
.ws6c{word-spacing:7.257079px;}
.ws29{word-spacing:7.261920px;}
.ws5b{word-spacing:7.547556px;}
.ws85{word-spacing:7.838032px;}
.ws52{word-spacing:8.128509px;}
.ws2d{word-spacing:8.201128px;}
.ws2c{word-spacing:8.254382px;}
.ws2b{word-spacing:8.418986px;}
.ws32{word-spacing:8.699780px;}
.ws3d{word-spacing:8.704621px;}
.ws55{word-spacing:8.995098px;}
.ws69{word-spacing:9.285575px;}
.ws61{word-spacing:9.576052px;}
.ws14{word-spacing:9.866529px;}
.wsa{word-spacing:9.934307px;}
.wsb{word-spacing:9.963354px;}
.ws76{word-spacing:10.152164px;}
.ws7b{word-spacing:10.157005px;}
.ws70{word-spacing:10.447482px;}
.ws15{word-spacing:10.742800px;}
.ws37{word-spacing:11.028436px;}
.wsc{word-spacing:11.318913px;}
.ws87{word-spacing:11.323754px;}
.ws44{word-spacing:11.604548px;}
.ws78{word-spacing:11.895025px;}
.ws82{word-spacing:11.899866px;}
.ws10{word-spacing:12.185502px;}
.ws36{word-spacing:12.475979px;}
.ws89{word-spacing:12.771297px;}
.ws2a{word-spacing:13.347409px;}
.ws5d{word-spacing:13.415187px;}
.ws79{word-spacing:13.637886px;}
.ws5c{word-spacing:13.686299px;}
.ws4d{word-spacing:13.928363px;}
.ws54{word-spacing:13.986458px;}
.ws53{word-spacing:14.020347px;}
.ws24{word-spacing:14.218839px;}
.ws11{word-spacing:14.504475px;}
.ws62{word-spacing:14.509316px;}
.ws73{word-spacing:14.794952px;}
.ws6e{word-spacing:15.375905px;}
.ws4a{word-spacing:15.666382px;}
.ws71{word-spacing:15.956859px;}
.ws59{word-spacing:16.537812px;}
.ws43{word-spacing:17.118766px;}
.ws8{word-spacing:17.409243px;}
.ws1c{word-spacing:18.275832px;}
.ws33{word-spacing:18.856786px;}
.ws27{word-spacing:19.147262px;}
.ws7d{word-spacing:19.437739px;}
.ws1a{word-spacing:20.943377px;}
.ws1b{word-spacing:20.972425px;}
.ws63{word-spacing:21.175759px;}
.ws68{word-spacing:21.756712px;}
.ws6a{word-spacing:22.047189px;}
.ws74{word-spacing:22.337666px;}
.ws4c{word-spacing:22.913778px;}
.ws22{word-spacing:22.918620px;}
.ws75{word-spacing:23.785209px;}
.ws16{word-spacing:24.942275px;}
.ws77{word-spacing:24.947116px;}
.ws46{word-spacing:25.237593px;}
.ws58{word-spacing:25.528069px;}
.ws57{word-spacing:25.818546px;}
.ws7c{word-spacing:26.685135px;}
.ws28{word-spacing:26.975612px;}
.ws67{word-spacing:28.137519px;}
.ws65{word-spacing:30.746969px;}
.ws6d{word-spacing:31.037446px;}
.ws26{word-spacing:31.908876px;}
.ws7a{word-spacing:32.489830px;}
.ws60{word-spacing:33.070784px;}
.ws92{word-spacing:33.356419px;}
.ws86{word-spacing:33.942214px;}
.ws93{word-spacing:34.227850px;}
.ws35{word-spacing:35.099280px;}
.ws66{word-spacing:36.256346px;}
.ws38{word-spacing:40.318180px;}
.ws64{word-spacing:41.765723px;}
.ws5a{word-spacing:45.822715px;}
.ws1d{word-spacing:46.408510px;}
.ws2e{word-spacing:48.437006px;}
.ws88{word-spacing:72.507851px;}
._4{margin-left:-2288.508699px;}
._1{margin-left:-5.417157px;}
._2{margin-left:-3.782554px;}
._0{margin-left:-1.215821px;}
._3{width:1.161907px;}
._7{width:9.876211px;}
._6{width:34.227850px;}
._5{width:217.696101px;}
.fc1{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.308600px;}
.fs7{font-size:33.918000px;}
.fs2{font-size:38.556000px;}
.fs8{font-size:43.484400px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:48.412800px;}
.fs1{font-size:57.979200px;}
.fs0{font-size:67.545600px;}
.y0{bottom:0.000000px;}
.y109{bottom:59.165179px;}
.y39{bottom:63.935534px;}
.yac{bottom:71.958955px;}
.y108{bottom:73.083859px;}
.y12a{bottom:74.685450px;}
.y38{bottom:77.781595px;}
.ycd{bottom:80.525450px;}
.y129{bottom:84.976650px;}
.y107{bottom:86.929920px;}
.y65{bottom:88.053997px;}
.y37{bottom:91.700275px;}
.ycc{bottom:94.371511px;}
.y128{bottom:95.340450px;}
.y190{bottom:98.308344px;}
.ye9{bottom:100.738892px;}
.y106{bottom:100.848600px;}
.y64{bottom:101.972677px;}
.y36{bottom:105.618955px;}
.y127{bottom:105.631800px;}
.ycb{bottom:108.290191px;}
.y18f{bottom:110.842723px;}
.ye8{bottom:114.657572px;}
.y126{bottom:115.995600px;}
.y35{bottom:119.465016px;}
.yca{bottom:122.208871px;}
.y63{bottom:123.056452px;}
.y18e{bottom:123.311850px;}
.y15e{bottom:125.761804px;}
.y125{bottom:126.287100px;}
.ye7{bottom:128.503633px;}
.y105{bottom:133.316850px;}
.y34{bottom:133.383696px;}
.yc9{bottom:136.054932px;}
.y124{bottom:136.578300px;}
.y62{bottom:136.975132px;}
.y15d{bottom:139.680484px;}
.ye6{bottom:142.422313px;}
.y123{bottom:146.942100px;}
.y33{bottom:147.302376px;}
.yc8{bottom:149.973612px;}
.y61{bottom:150.893812px;}
.y15c{bottom:153.599164px;}
.ye5{bottom:156.340993px;}
.y18d{bottom:156.363600px;}
.y32{bottom:161.148437px;}
.yc7{bottom:163.892292px;}
.y60{bottom:164.739872px;}
.y15b{bottom:167.445224px;}
.y104{bottom:167.520497px;}
.ye4{bottom:170.187054px;}
.y31{bottom:175.067117px;}
.yc6{bottom:177.738353px;}
.y122{bottom:180.207600px;}
.y15a{bottom:181.363904px;}
.y103{bottom:181.439177px;}
.y5f{bottom:185.896266px;}
.y18c{bottom:186.357079px;}
.y30{bottom:188.985797px;}
.y121{bottom:190.499100px;}
.ye3{bottom:191.343448px;}
.yc5{bottom:191.657033px;}
.y159{bottom:195.282584px;}
.y102{bottom:195.357857px;}
.y5e{bottom:199.814946px;}
.y18b{bottom:200.275759px;}
.y120{bottom:200.862750px;}
.y2f{bottom:202.831858px;}
.ye2{bottom:205.262128px;}
.yc4{bottom:205.575713px;}
.y158{bottom:209.128645px;}
.y101{bottom:209.203918px;}
.y11f{bottom:211.154100px;}
.y5d{bottom:213.661007px;}
.y18a{bottom:214.194450px;}
.y2e{bottom:216.750538px;}
.ye1{bottom:219.108188px;}
.yc3{bottom:219.421774px;}
.y11e{bottom:221.445300px;}
.y100{bottom:223.122598px;}
.y5c{bottom:227.579687px;}
.y2d{bottom:230.669218px;}
.y11d{bottom:231.809100px;}
.ye0{bottom:233.026868px;}
.yc2{bottom:233.340454px;}
.y157{bottom:236.893386px;}
.yff{bottom:237.041278px;}
.y5b{bottom:241.498367px;}
.y189{bottom:241.955550px;}
.y11c{bottom:242.100450px;}
.y2c{bottom:244.515278px;}
.ydf{bottom:246.872929px;}
.yc1{bottom:247.259134px;}
.y156{bottom:250.812066px;}
.yfe{bottom:250.887338px;}
.y11b{bottom:252.464250px;}
.y5a{bottom:255.344428px;}
.y188{bottom:255.592830px;}
.y2b{bottom:258.433958px;}
.yde{bottom:260.791609px;}
.yc0{bottom:261.105194px;}
.y11a{bottom:262.755600px;}
.y155{bottom:264.730746px;}
.yfd{bottom:264.806018px;}
.y59{bottom:269.263108px;}
.y187{bottom:269.438891px;}
.y2a{bottom:272.280019px;}
.ydd{bottom:274.710289px;}
.ybf{bottom:275.023874px;}
.yfc{bottom:278.724698px;}
.y186{bottom:283.357571px;}
.y29{bottom:286.198699px;}
.y58{bottom:286.728025px;}
.ydc{bottom:288.556350px;}
.ybe{bottom:288.869935px;}
.y154{bottom:292.495487px;}
.yfb{bottom:292.570759px;}
.y119{bottom:293.847000px;}
.y28{bottom:300.117379px;}
.y57{bottom:300.646705px;}
.ybd{bottom:302.788615px;}
.y118{bottom:304.138350px;}
.y153{bottom:306.414167px;}
.yfa{bottom:306.489439px;}
.y185{bottom:311.122312px;}
.y27{bottom:313.963440px;}
.y117{bottom:314.502000px;}
.y56{bottom:314.565385px;}
.ybc{bottom:316.707295px;}
.y152{bottom:320.260228px;}
.yf9{bottom:320.408119px;}
.ydb{bottom:321.097350px;}
.y116{bottom:324.793350px;}
.y184{bottom:325.040992px;}
.y26{bottom:327.882120px;}
.y55{bottom:328.411446px;}
.ybb{bottom:330.553356px;}
.yf8{bottom:334.254180px;}
.y115{bottom:335.157150px;}
.y25{bottom:341.800800px;}
.y54{bottom:342.330126px;}
.yba{bottom:344.472036px;}
.y114{bottom:345.448650px;}
.y151{bottom:348.097588px;}
.yf7{bottom:348.172860px;}
.y183{bottom:352.805732px;}
.yda{bottom:355.231781px;}
.y53{bottom:356.248806px;}
.y150{bottom:361.943648px;}
.yf6{bottom:362.091540px;}
.yb9{bottom:365.555810px;}
.y182{bottom:366.724412px;}
.yd9{bottom:369.150461px;}
.y52{bottom:370.094867px;}
.y113{bottom:372.988650px;}
.y24{bottom:374.269350px;}
.y14f{bottom:375.862328px;}
.yf5{bottom:375.937601px;}
.yb8{bottom:379.474490px;}
.y181{bottom:380.570473px;}
.yd8{bottom:382.996522px;}
.y112{bottom:383.280150px;}
.y51{bottom:384.013547px;}
.yb7{bottom:393.393170px;}
.y180{bottom:394.489153px;}
.yd7{bottom:396.915202px;}
.yf4{bottom:397.093994px;}
.y50{bottom:397.932227px;}
.y14e{bottom:403.627069px;}
.y23{bottom:404.855711px;}
.yb6{bottom:407.311850px;}
.y111{bottom:410.351630px;}
.yd6{bottom:410.833882px;}
.yf3{bottom:411.012674px;}
.y4f{bottom:411.778288px;}
.y14d{bottom:417.545749px;}
.yb5{bottom:421.157911px;}
.y17f{bottom:422.253894px;}
.y22{bottom:422.393248px;}
.yd5{bottom:424.679942px;}
.yf2{bottom:424.858735px;}
.y4e{bottom:425.696968px;}
.y14c{bottom:431.464429px;}
.yb4{bottom:435.076591px;}
.y17e{bottom:436.172574px;}
.yd4{bottom:438.598622px;}
.yf1{bottom:438.777415px;}
.y4d{bottom:439.615648px;}
.y110{bottom:442.316182px;}
.y21{bottom:443.477022px;}
.y14b{bottom:445.310490px;}
.yb3{bottom:448.995271px;}
.y17d{bottom:450.091254px;}
.yd3{bottom:452.517302px;}
.yf0{bottom:452.623476px;}
.y4c{bottom:453.461708px;}
.y10f{bottom:456.234862px;}
.y20{bottom:457.395702px;}
.yb2{bottom:462.841332px;}
.y17c{bottom:463.937315px;}
.yd2{bottom:466.363363px;}
.yef{bottom:466.542156px;}
.y4b{bottom:467.380388px;}
.y10e{bottom:470.153542px;}
.y1f{bottom:471.314382px;}
.y14a{bottom:473.147850px;}
.yb1{bottom:476.760012px;}
.yd1{bottom:480.282043px;}
.yee{bottom:480.460836px;}
.y4a{bottom:481.299068px;}
.yab{bottom:482.015371px;}
.y10d{bottom:484.072222px;}
.y1e{bottom:485.233062px;}
.y149{bottom:486.990300px;}
.yb0{bottom:490.678692px;}
.y17b{bottom:491.774675px;}
.yd0{bottom:494.200723px;}
.yed{bottom:494.306897px;}
.y49{bottom:495.145129px;}
.yaa{bottom:495.934051px;}
.y10c{bottom:497.918282px;}
.y1d{bottom:499.079123px;}
.y148{bottom:500.872888px;}
.yaf{bottom:504.524753px;}
.y17a{bottom:505.620736px;}
.ycf{bottom:508.046784px;}
.yec{bottom:508.225577px;}
.y48{bottom:509.063809px;}
.ya9{bottom:509.852731px;}
.y10b{bottom:511.836962px;}
.y1c{bottom:512.997803px;}
.y147{bottom:514.718948px;}
.yae{bottom:518.443433px;}
.y179{bottom:519.539416px;}
.yce{bottom:521.965464px;}
.yeb{bottom:522.144257px;}
.y47{bottom:522.982489px;}
.ya8{bottom:523.771411px;}
.y10a{bottom:525.755642px;}
.y1b{bottom:526.916483px;}
.y146{bottom:528.637628px;}
.y46{bottom:536.828550px;}
.ya7{bottom:537.617472px;}
.y1a{bottom:540.762544px;}
.y145{bottom:542.556308px;}
.y178{bottom:547.304156px;}
.ya6{bottom:551.536152px;}
.y88{bottom:554.286522px;}
.y19{bottom:554.681224px;}
.yad{bottom:555.915000px;}
.y144{bottom:556.402369px;}
.yea{bottom:559.543200px;}
.y177{bottom:561.222836px;}
.ya5{bottom:565.382213px;}
.y45{bottom:565.745700px;}
.y87{bottom:568.205202px;}
.y18{bottom:568.599904px;}
.y143{bottom:570.321049px;}
.y176{bottom:575.141516px;}
.ya4{bottom:579.300893px;}
.y86{bottom:582.051263px;}
.y17{bottom:582.445964px;}
.ya3{bottom:593.219573px;}
.y85{bottom:595.969943px;}
.y16{bottom:596.364644px;}
.y142{bottom:598.085790px;}
.y44{bottom:599.853127px;}
.y175{bottom:602.906257px;}
.ya2{bottom:607.065634px;}
.y84{bottom:609.888623px;}
.y15{bottom:610.210705px;}
.y141{bottom:612.004470px;}
.y43{bottom:613.771807px;}
.y174{bottom:616.752318px;}
.ya1{bottom:620.984314px;}
.y83{bottom:623.734684px;}
.y14{bottom:624.129385px;}
.y140{bottom:625.923150px;}
.y42{bottom:627.690487px;}
.y173{bottom:630.670998px;}
.ya0{bottom:634.902994px;}
.y82{bottom:637.653364px;}
.y13{bottom:638.048065px;}
.y41{bottom:641.609167px;}
.y9f{bottom:648.749054px;}
.y81{bottom:651.572044px;}
.y12{bottom:651.894126px;}
.y13f{bottom:654.767850px;}
.y40{bottom:655.455228px;}
.y172{bottom:658.435739px;}
.y9e{bottom:662.667734px;}
.y80{bottom:665.418104px;}
.y11{bottom:665.812806px;}
.y3f{bottom:669.373908px;}
.y171{bottom:672.354419px;}
.y9d{bottom:676.586414px;}
.y7f{bottom:679.336784px;}
.y10{bottom:679.731486px;}
.y3e{bottom:683.292588px;}
.y170{bottom:686.273099px;}
.y13e{bottom:689.026358px;}
.y9c{bottom:690.432475px;}
.y7e{bottom:693.255464px;}
.yf{bottom:693.577547px;}
.y3d{bottom:697.138649px;}
.y16f{bottom:700.119160px;}
.y13d{bottom:702.945038px;}
.y9b{bottom:704.351155px;}
.y7d{bottom:707.101525px;}
.ye{bottom:707.496227px;}
.y13c{bottom:716.863718px;}
.y9a{bottom:718.269835px;}
.y3c{bottom:718.295042px;}
.y7c{bottom:721.020205px;}
.yd{bottom:721.414907px;}
.y16e{bottom:727.956520px;}
.y13b{bottom:730.709779px;}
.y99{bottom:732.115896px;}
.y3b{bottom:732.213722px;}
.y7b{bottom:734.938885px;}
.y16d{bottom:741.802580px;}
.y13a{bottom:744.628459px;}
.y98{bottom:746.034576px;}
.y3a{bottom:746.059783px;}
.yc{bottom:746.129641px;}
.y7a{bottom:748.784946px;}
.y16c{bottom:755.721260px;}
.y139{bottom:758.547139px;}
.y97{bottom:759.953256px;}
.y79{bottom:762.703626px;}
.y16b{bottom:769.639940px;}
.y138{bottom:772.393200px;}
.y96{bottom:773.799317px;}
.y78{bottom:776.622306px;}
.y95{bottom:787.717997px;}
.y77{bottom:790.468367px;}
.y16a{bottom:797.404681px;}
.y94{bottom:801.636677px;}
.yb{bottom:802.518450px;}
.y76{bottom:804.387047px;}
.y137{bottom:804.934050px;}
.ya{bottom:806.721900px;}
.y169{bottom:811.323361px;}
.y93{bottom:815.482738px;}
.y9{bottom:816.360900px;}
.y75{bottom:818.305727px;}
.y8{bottom:820.564500px;}
.y168{bottom:825.169422px;}
.y92{bottom:829.401418px;}
.y7{bottom:830.275950px;}
.y74{bottom:832.151788px;}
.y6{bottom:834.479400px;}
.y136{bottom:839.174597px;}
.y91{bottom:843.320098px;}
.y5{bottom:844.191000px;}
.y73{bottom:846.070468px;}
.y4{bottom:848.394450px;}
.y167{bottom:853.006782px;}
.y135{bottom:853.093277px;}
.y90{bottom:857.166158px;}
.y72{bottom:859.916528px;}
.y166{bottom:866.852843px;}
.y134{bottom:866.939338px;}
.y8f{bottom:871.084838px;}
.y2{bottom:873.035700px;}
.y71{bottom:873.835208px;}
.y3{bottom:877.891500px;}
.y165{bottom:880.771523px;}
.y133{bottom:880.858018px;}
.y8e{bottom:884.930899px;}
.y70{bottom:887.753888px;}
.y132{bottom:894.704078px;}
.y8d{bottom:898.849579px;}
.y6f{bottom:901.599949px;}
.y164{bottom:908.536264px;}
.y131{bottom:908.622758px;}
.y8c{bottom:912.768259px;}
.y6e{bottom:915.518629px;}
.y1{bottom:919.274100px;}
.y163{bottom:922.454944px;}
.y130{bottom:922.541438px;}
.y8b{bottom:926.614320px;}
.y6d{bottom:929.437309px;}
.y162{bottom:936.301004px;}
.y12f{bottom:936.387499px;}
.y8a{bottom:940.533000px;}
.y6c{bottom:943.283370px;}
.y12e{bottom:950.306179px;}
.y6b{bottom:957.202050px;}
.y161{bottom:964.138364px;}
.y12d{bottom:964.224859px;}
.y89{bottom:973.073880px;}
.y160{bottom:977.984425px;}
.y12c{bottom:978.070920px;}
.y6a{bottom:989.742900px;}
.y15f{bottom:991.903105px;}
.y12b{bottom:991.989600px;}
.y68{bottom:1000.603500px;}
.y67{bottom:1014.849000px;}
.y66{bottom:1028.818500px;}
.y69{bottom:1028.976450px;}
.h5{height:21.157765px;}
.hc{height:23.053641px;}
.hb{height:24.328878px;}
.h4{height:25.791855px;}
.he{height:30.150316px;}
.hd{height:30.150414px;}
.h7{height:32.763741px;}
.h6{height:33.638386px;}
.h9{height:34.176000px;}
.h3{height:39.436048px;}
.h8{height:41.664000px;}
.ha{height:43.104000px;}
.h2{height:45.514125px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xf{left:72.734850px;}
.xc{left:85.491072px;}
.x1b{left:111.223997px;}
.x12{left:150.591300px;}
.x1{left:155.718150px;}
.x14{left:163.347150px;}
.x6{left:172.024800px;}
.x7{left:177.895200px;}
.x8{left:225.438150px;}
.x9{left:230.873700px;}
.x4{left:245.948250px;}
.x5{left:251.818800px;}
.x11{left:258.348686px;}
.x13{left:278.421900px;}
.x15{left:285.957600px;}
.x2{left:292.114350px;}
.xa{left:313.059300px;}
.xb{left:318.929700px;}
.x3{left:373.937550px;}
.x10{left:419.305800px;}
.x17{left:429.307200px;}
.xd{left:432.061466px;}
.x1c{left:457.813963px;}
.x16{left:460.536964px;}
.x1a{left:479.169450px;}
.x18{left:546.352800px;}
.x19{left:638.539800px;}
.xe{left:711.595350px;}
@media print{
.v1{vertical-align:-17.265067pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.266808pt;}
.lsc{letter-spacing:-0.262505pt;}
.ls16{letter-spacing:-0.258202pt;}
.lsd{letter-spacing:-0.129101pt;}
.ls11{letter-spacing:-0.111887pt;}
.ls25{letter-spacing:-0.092767pt;}
.lsb{letter-spacing:-0.086067pt;}
.ls14{letter-spacing:-0.081764pt;}
.lsf{letter-spacing:-0.077460pt;}
.ls20{letter-spacing:-0.073157pt;}
.ls12{letter-spacing:-0.064550pt;}
.lsa{letter-spacing:-0.060247pt;}
.lse{letter-spacing:-0.051640pt;}
.ls15{letter-spacing:-0.043034pt;}
.ls26{letter-spacing:-0.030922pt;}
.ls24{letter-spacing:-0.027057pt;}
.ls18{letter-spacing:-0.025769pt;}
.ls6{letter-spacing:-0.020615pt;}
.ls1f{letter-spacing:-0.015461pt;}
.ls23{letter-spacing:-0.010307pt;}
.ls22{letter-spacing:-0.008607pt;}
.ls17{letter-spacing:-0.008501pt;}
.ls9{letter-spacing:-0.005566pt;}
.ls13{letter-spacing:-0.005154pt;}
.ls10{letter-spacing:-0.004303pt;}
.ls1b{letter-spacing:-0.003015pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003427pt;}
.ls1e{letter-spacing:0.003865pt;}
.ls3{letter-spacing:0.004303pt;}
.ls4{letter-spacing:0.005154pt;}
.ls8{letter-spacing:0.005566pt;}
.ls1{letter-spacing:0.006004pt;}
.ls1c{letter-spacing:0.008607pt;}
.ls5{letter-spacing:0.025769pt;}
.ls1d{letter-spacing:0.043034pt;}
.ls0{letter-spacing:0.054036pt;}
.ls19{letter-spacing:92.821431pt;}
.ls1a{letter-spacing:146.171714pt;}
.ws6f{word-spacing:-10.801434pt;}
.ws8e{word-spacing:-10.797130pt;}
.ws8f{word-spacing:-10.792827pt;}
.ws90{word-spacing:-10.538929pt;}
.ws8d{word-spacing:-10.534625pt;}
.ws84{word-spacing:-6.693152pt;}
.ws83{word-spacing:-6.690137pt;}
.ws80{word-spacing:-2.831611pt;}
.ws25{word-spacing:-2.573409pt;}
.ws45{word-spacing:-2.315208pt;}
.wse{word-spacing:-2.057006pt;}
.ws3f{word-spacing:-1.803108pt;}
.ws56{word-spacing:-1.798804pt;}
.ws19{word-spacing:-1.540603pt;}
.ws49{word-spacing:-1.282401pt;}
.wsd{word-spacing:-1.024200pt;}
.ws21{word-spacing:-0.765998pt;}
.ws48{word-spacing:-0.507796pt;}
.ws97{word-spacing:-0.258202pt;}
.ws1f{word-spacing:-0.253898pt;}
.ws1e{word-spacing:-0.249595pt;}
.ws3{word-spacing:-0.090061pt;}
.ws2{word-spacing:-0.054036pt;}
.ws0{word-spacing:-0.037699pt;}
.ws1{word-spacing:-0.034272pt;}
.ws4e{word-spacing:-0.034006pt;}
.ws91{word-spacing:-0.025504pt;}
.ws4{word-spacing:-0.020615pt;}
.ws9d{word-spacing:-0.003865pt;}
.ws6{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.003015pt;}
.ws7{word-spacing:0.004303pt;}
.ws5e{word-spacing:0.005154pt;}
.ws8b{word-spacing:0.006030pt;}
.ws3a{word-spacing:0.008607pt;}
.ws96{word-spacing:0.012910pt;}
.ws99{word-spacing:0.015461pt;}
.ws5{word-spacing:0.025769pt;}
.ws9a{word-spacing:0.027057pt;}
.ws9c{word-spacing:0.030922pt;}
.ws4f{word-spacing:0.061844pt;}
.ws9b{word-spacing:0.092767pt;}
.ws98{word-spacing:0.258202pt;}
.ws47{word-spacing:0.262505pt;}
.ws8a{word-spacing:0.266808pt;}
.ws18{word-spacing:0.580954pt;}
.ws17{word-spacing:0.649807pt;}
.ws72{word-spacing:0.778908pt;}
.ws34{word-spacing:1.037110pt;}
.ws7f{word-spacing:1.295311pt;}
.ws41{word-spacing:1.299615pt;}
.ws3c{word-spacing:1.553513pt;}
.ws94{word-spacing:1.596547pt;}
.ws95{word-spacing:1.626670pt;}
.ws23{word-spacing:1.811715pt;}
.ws20{word-spacing:2.069916pt;}
.ws5f{word-spacing:2.323814pt;}
.ws30{word-spacing:2.582016pt;}
.ws42{word-spacing:2.840218pt;}
.ws40{word-spacing:3.098419pt;}
.ws4b{word-spacing:3.352317pt;}
.ws3e{word-spacing:3.356621pt;}
.ws31{word-spacing:3.614822pt;}
.ws39{word-spacing:3.619126pt;}
.ws81{word-spacing:3.873024pt;}
.ws9{word-spacing:4.131226pt;}
.ws12{word-spacing:4.389427pt;}
.ws50{word-spacing:4.647629pt;}
.wsf{word-spacing:4.901527pt;}
.ws2f{word-spacing:5.159729pt;}
.ws7e{word-spacing:5.417930pt;}
.ws6b{word-spacing:5.422234pt;}
.ws3b{word-spacing:5.676132pt;}
.ws13{word-spacing:5.934333pt;}
.ws51{word-spacing:6.192535pt;}
.ws6c{word-spacing:6.450737pt;}
.ws29{word-spacing:6.455040pt;}
.ws5b{word-spacing:6.708938pt;}
.ws85{word-spacing:6.967140pt;}
.ws52{word-spacing:7.225341pt;}
.ws2d{word-spacing:7.289892pt;}
.ws2c{word-spacing:7.337229pt;}
.ws2b{word-spacing:7.483543pt;}
.ws32{word-spacing:7.733138pt;}
.ws3d{word-spacing:7.737441pt;}
.ws55{word-spacing:7.995643pt;}
.ws69{word-spacing:8.253844pt;}
.ws61{word-spacing:8.512046pt;}
.ws14{word-spacing:8.770248pt;}
.wsa{word-spacing:8.830495pt;}
.wsb{word-spacing:8.856315pt;}
.ws76{word-spacing:9.024146pt;}
.ws7b{word-spacing:9.028449pt;}
.ws70{word-spacing:9.286651pt;}
.ws15{word-spacing:9.549156pt;}
.ws37{word-spacing:9.803054pt;}
.wsc{word-spacing:10.061256pt;}
.ws87{word-spacing:10.065559pt;}
.ws44{word-spacing:10.315154pt;}
.ws78{word-spacing:10.573356pt;}
.ws82{word-spacing:10.577659pt;}
.ws10{word-spacing:10.831557pt;}
.ws36{word-spacing:11.089759pt;}
.ws89{word-spacing:11.352264pt;}
.ws2a{word-spacing:11.864364pt;}
.ws5d{word-spacing:11.924611pt;}
.ws79{word-spacing:12.122565pt;}
.ws5c{word-spacing:12.165599pt;}
.ws4d{word-spacing:12.380767pt;}
.ws54{word-spacing:12.432407pt;}
.ws53{word-spacing:12.462531pt;}
.ws24{word-spacing:12.638968pt;}
.ws11{word-spacing:12.892867pt;}
.ws62{word-spacing:12.897170pt;}
.ws73{word-spacing:13.151068pt;}
.ws6e{word-spacing:13.667471pt;}
.ws4a{word-spacing:13.925673pt;}
.ws71{word-spacing:14.183875pt;}
.ws59{word-spacing:14.700278pt;}
.ws43{word-spacing:15.216681pt;}
.ws8{word-spacing:15.474883pt;}
.ws1c{word-spacing:16.245184pt;}
.ws33{word-spacing:16.761587pt;}
.ws27{word-spacing:17.019789pt;}
.ws7d{word-spacing:17.277990pt;}
.ws1a{word-spacing:18.616335pt;}
.ws1b{word-spacing:18.642156pt;}
.ws63{word-spacing:18.822897pt;}
.ws68{word-spacing:19.339300pt;}
.ws6a{word-spacing:19.597501pt;}
.ws74{word-spacing:19.855703pt;}
.ws4c{word-spacing:20.367803pt;}
.ws22{word-spacing:20.372106pt;}
.ws75{word-spacing:21.142408pt;}
.ws16{word-spacing:22.170911pt;}
.ws77{word-spacing:22.175214pt;}
.ws46{word-spacing:22.433416pt;}
.ws58{word-spacing:22.691617pt;}
.ws57{word-spacing:22.949819pt;}
.ws7c{word-spacing:23.720120pt;}
.ws28{word-spacing:23.978322pt;}
.ws67{word-spacing:25.011128pt;}
.ws65{word-spacing:27.330639pt;}
.ws6d{word-spacing:27.588841pt;}
.ws26{word-spacing:28.363446pt;}
.ws7a{word-spacing:28.879849pt;}
.ws60{word-spacing:29.396252pt;}
.ws92{word-spacing:29.650150pt;}
.ws86{word-spacing:30.170857pt;}
.ws93{word-spacing:30.424755pt;}
.ws35{word-spacing:31.199360pt;}
.ws66{word-spacing:32.227863pt;}
.ws38{word-spacing:35.838382pt;}
.ws64{word-spacing:37.125087pt;}
.ws5a{word-spacing:40.731302pt;}
.ws1d{word-spacing:41.252009pt;}
.ws2e{word-spacing:43.055117pt;}
.ws88{word-spacing:64.451423pt;}
._4{margin-left:-2034.229954pt;}
._1{margin-left:-4.815251pt;}
._2{margin-left:-3.362270pt;}
._0{margin-left:-1.080730pt;}
._3{width:1.032806pt;}
._7{width:8.778854pt;}
._6{width:30.424755pt;}
._5{width:193.507646pt;}
.fs3{font-size:27.829867pt;}
.fs7{font-size:30.149333pt;}
.fs2{font-size:34.272000pt;}
.fs8{font-size:38.652800pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:43.033600pt;}
.fs1{font-size:51.537067pt;}
.fs0{font-size:60.040533pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:52.591270pt;}
.y39{bottom:56.831586pt;}
.yac{bottom:63.963516pt;}
.y108{bottom:64.963430pt;}
.y12a{bottom:66.387067pt;}
.y38{bottom:69.139196pt;}
.ycd{bottom:71.578178pt;}
.y129{bottom:75.534800pt;}
.y107{bottom:77.271040pt;}
.y65{bottom:78.270220pt;}
.y37{bottom:81.511356pt;}
.ycc{bottom:83.885788pt;}
.y128{bottom:84.747067pt;}
.y190{bottom:87.385195pt;}
.ye9{bottom:89.545682pt;}
.y106{bottom:89.643200pt;}
.y64{bottom:90.642380pt;}
.y36{bottom:93.883516pt;}
.y127{bottom:93.894933pt;}
.ycb{bottom:96.257948pt;}
.y18f{bottom:98.526865pt;}
.ye8{bottom:101.917842pt;}
.y126{bottom:103.107200pt;}
.y35{bottom:106.191125pt;}
.yca{bottom:108.630108pt;}
.y63{bottom:109.383513pt;}
.y18e{bottom:109.610533pt;}
.y15e{bottom:111.788270pt;}
.y125{bottom:112.255200pt;}
.ye7{bottom:114.225452pt;}
.y105{bottom:118.503867pt;}
.y34{bottom:118.563285pt;}
.yc9{bottom:120.937717pt;}
.y124{bottom:121.402933pt;}
.y62{bottom:121.755673pt;}
.y15d{bottom:124.160430pt;}
.ye6{bottom:126.597612pt;}
.y123{bottom:130.615200pt;}
.y33{bottom:130.935445pt;}
.yc8{bottom:133.309877pt;}
.y61{bottom:134.127833pt;}
.y15c{bottom:136.532590pt;}
.ye5{bottom:138.969772pt;}
.y18d{bottom:138.989867pt;}
.y32{bottom:143.243055pt;}
.yc7{bottom:145.682037pt;}
.y60{bottom:146.435442pt;}
.y15b{bottom:148.840199pt;}
.y104{bottom:148.907108pt;}
.ye4{bottom:151.277381pt;}
.y31{bottom:155.615215pt;}
.yc6{bottom:157.989647pt;}
.y122{bottom:160.184533pt;}
.y15a{bottom:161.212359pt;}
.y103{bottom:161.279268pt;}
.y5f{bottom:165.241125pt;}
.y18c{bottom:165.650737pt;}
.y30{bottom:167.987375pt;}
.y121{bottom:169.332533pt;}
.ye3{bottom:170.083065pt;}
.yc5{bottom:170.361807pt;}
.y159{bottom:173.584519pt;}
.y102{bottom:173.651428pt;}
.y5e{bottom:177.613285pt;}
.y18b{bottom:178.022897pt;}
.y120{bottom:178.544667pt;}
.y2f{bottom:180.294985pt;}
.ye2{bottom:182.455225pt;}
.yc4{bottom:182.733967pt;}
.y158{bottom:185.892129pt;}
.y101{bottom:185.959038pt;}
.y11f{bottom:187.692533pt;}
.y5d{bottom:189.920895pt;}
.y18a{bottom:190.395067pt;}
.y2e{bottom:192.667145pt;}
.ye1{bottom:194.762834pt;}
.yc3{bottom:195.041577pt;}
.y11e{bottom:196.840267pt;}
.y100{bottom:198.331198pt;}
.y5c{bottom:202.293055pt;}
.y2d{bottom:205.039305pt;}
.y11d{bottom:206.052533pt;}
.ye0{bottom:207.134994pt;}
.yc2{bottom:207.413737pt;}
.y157{bottom:210.571899pt;}
.yff{bottom:210.703358pt;}
.y5b{bottom:214.665215pt;}
.y189{bottom:215.071600pt;}
.y11c{bottom:215.200400pt;}
.y2c{bottom:217.346914pt;}
.ydf{bottom:219.442604pt;}
.yc1{bottom:219.785897pt;}
.y156{bottom:222.944059pt;}
.yfe{bottom:223.010967pt;}
.y11b{bottom:224.412667pt;}
.y5a{bottom:226.972825pt;}
.y188{bottom:227.193627pt;}
.y2b{bottom:229.719074pt;}
.yde{bottom:231.814764pt;}
.yc0{bottom:232.093506pt;}
.y11a{bottom:233.560533pt;}
.y155{bottom:235.316219pt;}
.yfd{bottom:235.383127pt;}
.y59{bottom:239.344985pt;}
.y187{bottom:239.501236pt;}
.y2a{bottom:242.026684pt;}
.ydd{bottom:244.186924pt;}
.ybf{bottom:244.465666pt;}
.yfc{bottom:247.755287pt;}
.y186{bottom:251.873396pt;}
.y29{bottom:254.398844pt;}
.y58{bottom:254.869356pt;}
.ydc{bottom:256.494533pt;}
.ybe{bottom:256.773276pt;}
.y154{bottom:259.995988pt;}
.yfb{bottom:260.062897pt;}
.y119{bottom:261.197333pt;}
.y28{bottom:266.771004pt;}
.y57{bottom:267.241516pt;}
.ybd{bottom:269.145436pt;}
.y118{bottom:270.345200pt;}
.y153{bottom:272.368148pt;}
.yfa{bottom:272.435057pt;}
.y185{bottom:276.553166pt;}
.y27{bottom:279.078613pt;}
.y117{bottom:279.557333pt;}
.y56{bottom:279.613676pt;}
.ybc{bottom:281.517596pt;}
.y152{bottom:284.675758pt;}
.yf9{bottom:284.807217pt;}
.ydb{bottom:285.419867pt;}
.y116{bottom:288.705200pt;}
.y184{bottom:288.925326pt;}
.y26{bottom:291.450773pt;}
.y55{bottom:291.921285pt;}
.ybb{bottom:293.825205pt;}
.yf8{bottom:297.114827pt;}
.y115{bottom:297.917467pt;}
.y25{bottom:303.822933pt;}
.y54{bottom:304.293445pt;}
.yba{bottom:306.197365pt;}
.y114{bottom:307.065467pt;}
.y151{bottom:309.420078pt;}
.yf7{bottom:309.486987pt;}
.y183{bottom:313.605095pt;}
.yda{bottom:315.761583pt;}
.y53{bottom:316.665605pt;}
.y150{bottom:321.727687pt;}
.yf6{bottom:321.859147pt;}
.yb9{bottom:324.938498pt;}
.y182{bottom:325.977255pt;}
.yd9{bottom:328.133743pt;}
.y52{bottom:328.973215pt;}
.y113{bottom:331.545467pt;}
.y24{bottom:332.683867pt;}
.y14f{bottom:334.099847pt;}
.yf5{bottom:334.166756pt;}
.yb8{bottom:337.310658pt;}
.y181{bottom:338.284865pt;}
.yd8{bottom:340.441353pt;}
.y112{bottom:340.693467pt;}
.y51{bottom:341.345375pt;}
.yb7{bottom:349.682818pt;}
.y180{bottom:350.657025pt;}
.yd7{bottom:352.813513pt;}
.yf4{bottom:352.972439pt;}
.y50{bottom:353.717535pt;}
.y14e{bottom:358.779617pt;}
.y23{bottom:359.871743pt;}
.yb6{bottom:362.054978pt;}
.y111{bottom:364.757005pt;}
.yd6{bottom:365.185673pt;}
.yf3{bottom:365.344599pt;}
.y4f{bottom:366.025145pt;}
.y14d{bottom:371.151777pt;}
.yb5{bottom:374.362588pt;}
.y17f{bottom:375.336795pt;}
.y22{bottom:375.460665pt;}
.yd5{bottom:377.493282pt;}
.yf2{bottom:377.652209pt;}
.y4e{bottom:378.397305pt;}
.y14c{bottom:383.523937pt;}
.yb4{bottom:386.734748pt;}
.y17e{bottom:387.708955pt;}
.yd4{bottom:389.865442pt;}
.yf1{bottom:390.024369pt;}
.y4d{bottom:390.769465pt;}
.y110{bottom:393.169939pt;}
.y21{bottom:394.201797pt;}
.y14b{bottom:395.831547pt;}
.yb3{bottom:399.106908pt;}
.y17d{bottom:400.081115pt;}
.yd3{bottom:402.237602pt;}
.yf0{bottom:402.331979pt;}
.y4c{bottom:403.077074pt;}
.y10f{bottom:405.542099pt;}
.y20{bottom:406.573957pt;}
.yb2{bottom:411.414517pt;}
.y17c{bottom:412.388724pt;}
.yd2{bottom:414.545212pt;}
.yef{bottom:414.704139pt;}
.y4b{bottom:415.449234pt;}
.y10e{bottom:417.914259pt;}
.y1f{bottom:418.946117pt;}
.y14a{bottom:420.575867pt;}
.yb1{bottom:423.786677pt;}
.yd1{bottom:426.917372pt;}
.yee{bottom:427.076299pt;}
.y4a{bottom:427.821394pt;}
.yab{bottom:428.458108pt;}
.y10d{bottom:430.286419pt;}
.y1e{bottom:431.318277pt;}
.y149{bottom:432.880267pt;}
.yb0{bottom:436.158837pt;}
.y17b{bottom:437.133044pt;}
.yd0{bottom:439.289532pt;}
.yed{bottom:439.383908pt;}
.y49{bottom:440.129004pt;}
.yaa{bottom:440.830268pt;}
.y10c{bottom:442.594029pt;}
.y1d{bottom:443.625887pt;}
.y148{bottom:445.220345pt;}
.yaf{bottom:448.466447pt;}
.y17a{bottom:449.440654pt;}
.ycf{bottom:451.597141pt;}
.yec{bottom:451.756068pt;}
.y48{bottom:452.501164pt;}
.ya9{bottom:453.202428pt;}
.y10b{bottom:454.966189pt;}
.y1c{bottom:455.998047pt;}
.y147{bottom:457.527954pt;}
.yae{bottom:460.838607pt;}
.y179{bottom:461.812814pt;}
.yce{bottom:463.969301pt;}
.yeb{bottom:464.128228pt;}
.y47{bottom:464.873324pt;}
.ya8{bottom:465.574588pt;}
.y10a{bottom:467.338349pt;}
.y1b{bottom:468.370207pt;}
.y146{bottom:469.900114pt;}
.y46{bottom:477.180933pt;}
.ya7{bottom:477.882197pt;}
.y1a{bottom:480.677817pt;}
.y145{bottom:482.272274pt;}
.y178{bottom:486.492583pt;}
.ya6{bottom:490.254357pt;}
.y88{bottom:492.699131pt;}
.y19{bottom:493.049977pt;}
.yad{bottom:494.146667pt;}
.y144{bottom:494.579884pt;}
.yea{bottom:497.371733pt;}
.y177{bottom:498.864743pt;}
.ya5{bottom:502.561967pt;}
.y45{bottom:502.885067pt;}
.y87{bottom:505.071291pt;}
.y18{bottom:505.422137pt;}
.y143{bottom:506.952044pt;}
.y176{bottom:511.236903pt;}
.ya4{bottom:514.934127pt;}
.y86{bottom:517.378900pt;}
.y17{bottom:517.729746pt;}
.ya3{bottom:527.306287pt;}
.y85{bottom:529.751060pt;}
.y16{bottom:530.101906pt;}
.y142{bottom:531.631813pt;}
.y44{bottom:533.202780pt;}
.y175{bottom:535.916673pt;}
.ya2{bottom:539.613897pt;}
.y84{bottom:542.123220pt;}
.y15{bottom:542.409516pt;}
.y141{bottom:544.003973pt;}
.y43{bottom:545.574940pt;}
.y174{bottom:548.224283pt;}
.ya1{bottom:551.986057pt;}
.y83{bottom:554.430830pt;}
.y14{bottom:554.781676pt;}
.y140{bottom:556.376133pt;}
.y42{bottom:557.947100pt;}
.y173{bottom:560.596443pt;}
.ya0{bottom:564.358217pt;}
.y82{bottom:566.802990pt;}
.y13{bottom:567.153836pt;}
.y41{bottom:570.319260pt;}
.y9f{bottom:576.665826pt;}
.y81{bottom:579.175150pt;}
.y12{bottom:579.461445pt;}
.y13f{bottom:582.015867pt;}
.y40{bottom:582.626869pt;}
.y172{bottom:585.276212pt;}
.y9e{bottom:589.037986pt;}
.y80{bottom:591.482759pt;}
.y11{bottom:591.833605pt;}
.y3f{bottom:594.999029pt;}
.y171{bottom:597.648372pt;}
.y9d{bottom:601.410146pt;}
.y7f{bottom:603.854919pt;}
.y10{bottom:604.205765pt;}
.y3e{bottom:607.371189pt;}
.y170{bottom:610.020532pt;}
.y13e{bottom:612.467874pt;}
.y9c{bottom:613.717756pt;}
.y7e{bottom:616.227079pt;}
.yf{bottom:616.513375pt;}
.y3d{bottom:619.678799pt;}
.y16f{bottom:622.328142pt;}
.y13d{bottom:624.840034pt;}
.y9b{bottom:626.089916pt;}
.y7d{bottom:628.534689pt;}
.ye{bottom:628.885535pt;}
.y13c{bottom:637.212194pt;}
.y9a{bottom:638.462076pt;}
.y3c{bottom:638.484482pt;}
.y7c{bottom:640.906849pt;}
.yd{bottom:641.257695pt;}
.y16e{bottom:647.072462pt;}
.y13b{bottom:649.519804pt;}
.y99{bottom:650.769685pt;}
.y3b{bottom:650.856642pt;}
.y7b{bottom:653.279009pt;}
.y16d{bottom:659.380071pt;}
.y13a{bottom:661.891964pt;}
.y98{bottom:663.141845pt;}
.y3a{bottom:663.164252pt;}
.yc{bottom:663.226348pt;}
.y7a{bottom:665.586619pt;}
.y16c{bottom:671.752231pt;}
.y139{bottom:674.264124pt;}
.y97{bottom:675.514005pt;}
.y79{bottom:677.958779pt;}
.y16b{bottom:684.124391pt;}
.y138{bottom:686.571733pt;}
.y96{bottom:687.821615pt;}
.y78{bottom:690.330939pt;}
.y95{bottom:700.193775pt;}
.y77{bottom:702.638548pt;}
.y16a{bottom:708.804161pt;}
.y94{bottom:712.565935pt;}
.yb{bottom:713.349733pt;}
.y76{bottom:715.010708pt;}
.y137{bottom:715.496933pt;}
.ya{bottom:717.086133pt;}
.y169{bottom:721.176321pt;}
.y93{bottom:724.873545pt;}
.y9{bottom:725.654133pt;}
.y75{bottom:727.382868pt;}
.y8{bottom:729.390667pt;}
.y168{bottom:733.483931pt;}
.y92{bottom:737.245705pt;}
.y7{bottom:738.023067pt;}
.y74{bottom:739.690478pt;}
.y6{bottom:741.759467pt;}
.y136{bottom:745.932975pt;}
.y91{bottom:749.617865pt;}
.y5{bottom:750.392000pt;}
.y73{bottom:752.062638pt;}
.y4{bottom:754.128400pt;}
.y167{bottom:758.228251pt;}
.y135{bottom:758.305135pt;}
.y90{bottom:761.925474pt;}
.y72{bottom:764.370247pt;}
.y166{bottom:770.535860pt;}
.y134{bottom:770.612745pt;}
.y8f{bottom:774.297634pt;}
.y2{bottom:776.031733pt;}
.y71{bottom:776.742407pt;}
.y3{bottom:780.348000pt;}
.y165{bottom:782.908020pt;}
.y133{bottom:782.984905pt;}
.y8e{bottom:786.605244pt;}
.y70{bottom:789.114567pt;}
.y132{bottom:795.292514pt;}
.y8d{bottom:798.977404pt;}
.y6f{bottom:801.422177pt;}
.y164{bottom:807.587790pt;}
.y131{bottom:807.664674pt;}
.y8c{bottom:811.349564pt;}
.y6e{bottom:813.794337pt;}
.y1{bottom:817.132533pt;}
.y163{bottom:819.959950pt;}
.y130{bottom:820.036834pt;}
.y8b{bottom:823.657173pt;}
.y6d{bottom:826.166497pt;}
.y162{bottom:832.267559pt;}
.y12f{bottom:832.344444pt;}
.y8a{bottom:836.029333pt;}
.y6c{bottom:838.474107pt;}
.y12e{bottom:844.716604pt;}
.y6b{bottom:850.846267pt;}
.y161{bottom:857.011879pt;}
.y12d{bottom:857.088764pt;}
.y89{bottom:864.954560pt;}
.y160{bottom:869.319489pt;}
.y12c{bottom:869.396373pt;}
.y6a{bottom:879.771467pt;}
.y15f{bottom:881.691649pt;}
.y12b{bottom:881.768533pt;}
.y68{bottom:889.425333pt;}
.y67{bottom:902.088000pt;}
.y66{bottom:914.505333pt;}
.y69{bottom:914.645733pt;}
.h5{height:18.806902pt;}
.hc{height:20.492125pt;}
.hb{height:21.625669pt;}
.h4{height:22.926094pt;}
.he{height:26.800281pt;}
.hd{height:26.800368pt;}
.h7{height:29.123325pt;}
.h6{height:29.900787pt;}
.h9{height:30.378667pt;}
.h3{height:35.054265pt;}
.h8{height:37.034667pt;}
.ha{height:38.314667pt;}
.h2{height:40.457000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xf{left:64.653200pt;}
.xc{left:75.992064pt;}
.x1b{left:98.865775pt;}
.x12{left:133.858933pt;}
.x1{left:138.416133pt;}
.x14{left:145.197467pt;}
.x6{left:152.910933pt;}
.x7{left:158.129067pt;}
.x8{left:200.389467pt;}
.x9{left:205.221067pt;}
.x4{left:218.620667pt;}
.x5{left:223.838933pt;}
.x11{left:229.643277pt;}
.x13{left:247.486133pt;}
.x15{left:254.184533pt;}
.x2{left:259.657200pt;}
.xa{left:278.274933pt;}
.xb{left:283.493067pt;}
.x3{left:332.388933pt;}
.x10{left:372.716267pt;}
.x17{left:381.606400pt;}
.xd{left:384.054637pt;}
.x1c{left:406.945745pt;}
.x16{left:409.366190pt;}
.x1a{left:425.928400pt;}
.x18{left:485.646933pt;}
.x19{left:567.590933pt;}
.xe{left:632.529200pt;}
}




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