
    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_edfe97b9f1f54a2f4ac0ee38.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_bcb61560e43a99929ac69bf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_43daea92cd81066f8078127c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_43f428dc405e596bb634908a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_479fa566dd38b33f4771ac37.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_55bd46951f4a5ce09451aab1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_1254c208d97898813b7e169b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_cba518fd02af76a21b06cd7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_fc045859be1a6655854fd509.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.760254;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_e6c8bc12b3a7cc42efdb8631.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_62dea2ba18447028a568fa45.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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_d4b87d02d1ead9d737fccd5a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_6ef76cdfef7ce49fd2b03a69.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.957520;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_200b102ebdd8fa9dad9a28f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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:ff15;src:url('chunks/assets/font_112f1c17eeec3820cd252f22.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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:ff16;src:url('chunks/assets/font_db4f45a15a24e840545b6500.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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:ff17;src:url('chunks/assets/font_46f198737584997d134d41ef.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.067383;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:ff18;src:url('chunks/assets/font_a0aa0d9bf98817687edb08b9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.895996;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:15.240000px;}
.v1{vertical-align:18.180000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:41.040000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.334200px;}
.ls2e{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.240600px;}
.ls27{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.097800px;}
.ls16{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.020880px;}
.ls5{letter-spacing:0.031680px;}
.ls29{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.126000px;}
.ls26{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.234000px;}
.ls20{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls0{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.385800px;}
.ls21{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.558000px;}
.ls22{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.670320px;}
.ls2c{letter-spacing:0.738000px;}
.ls24{letter-spacing:1.098000px;}
.ls18{letter-spacing:1.188000px;}
.ls1d{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.350000px;}
.ls15{letter-spacing:1.386000px;}
.ls19{letter-spacing:1.800000px;}
.ls10{letter-spacing:4.284000px;}
.lsf{letter-spacing:4.320000px;}
.ls3{letter-spacing:6.426000px;}
.lsd{letter-spacing:7.920000px;}
.ls11{letter-spacing:10.080000px;}
.ls4{letter-spacing:10.746000px;}
.lse{letter-spacing:30.960000px;}
.ls17{letter-spacing:51.102000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-54.000000px;}
.ws13{word-spacing:-40.338000px;}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wse{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.wsa{word-spacing:-14.958600px;}
.ws9{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.400000px;}
.ws15{word-spacing:-14.364000px;}
.ws8{word-spacing:-14.238600px;}
.ws18{word-spacing:-13.950000px;}
.ws1a{word-spacing:-13.932000px;}
.ws1b{word-spacing:-13.896000px;}
.wsc{word-spacing:-13.771200px;}
.ws19{word-spacing:-13.770000px;}
.ws5{word-spacing:-13.716000px;}
.ws14{word-spacing:-13.230000px;}
.ws0{word-spacing:-13.147200px;}
.wsd{word-spacing:-13.049400px;}
.ws17{word-spacing:-13.032000px;}
.ws6{word-spacing:-13.014000px;}
.ws10{word-spacing:-12.978000px;}
.ws1c{word-spacing:-12.690000px;}
.ws11{word-spacing:-12.510000px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws12{word-spacing:-8.676000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-2.472000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._5{width:2.394960px;}
._b{width:3.639840px;}
._6{width:5.599920px;}
._4{width:6.879840px;}
._a{width:7.895520px;}
._c{width:9.407280px;}
._7{width:10.464000px;}
._8{width:11.503680px;}
._9{width:14.708880px;}
._2e{width:16.242720px;}
._2{width:17.301600px;}
._1b{width:18.954000px;}
._17{width:19.980000px;}
._1d{width:21.924000px;}
._18{width:23.386560px;}
._d{width:24.673440px;}
._23{width:26.347440px;}
._32{width:28.171920px;}
._e{width:29.238960px;}
._1c{width:30.648000px;}
._1a{width:31.752000px;}
._28{width:32.963040px;}
._19{width:34.668000px;}
._22{width:36.024960px;}
._1e{width:38.016000px;}
._1f{width:39.366000px;}
._26{width:41.394480px;}
._27{width:42.709440px;}
._20{width:43.956000px;}
._25{width:45.695520px;}
._33{width:50.149920px;}
._31{width:51.354000px;}
._24{width:53.303760px;}
._13{width:55.026000px;}
._14{width:56.052000px;}
._34{width:60.336960px;}
._38{width:62.370000px;}
._37{width:63.504000px;}
._30{width:65.940000px;}
._2f{width:67.044000px;}
._2b{width:68.734560px;}
._2c{width:69.735840px;}
._2d{width:71.050800px;}
._2a{width:73.801920px;}
._29{width:74.940720px;}
._11{width:78.138000px;}
._12{width:79.758000px;}
._39{width:81.180960px;}
._15{width:86.994000px;}
._16{width:88.560000px;}
._21{width:89.814000px;}
._35{width:114.696000px;}
._36{width:116.388000px;}
._f{width:119.826000px;}
._10{width:120.870960px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs10{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y4d{bottom:-18.390000px;}
.y42{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y36{bottom:1.605000px;}
.y14{bottom:1.620000px;}
.y19{bottom:2.160000px;}
.y26{bottom:2.340000px;}
.y4c{bottom:2.850000px;}
.y147{bottom:3.060000px;}
.y21{bottom:3.240000px;}
.y23{bottom:3.420000px;}
.y20{bottom:4.500000px;}
.y1e{bottom:4.680000px;}
.y3e{bottom:6.465000px;}
.y3a{bottom:6.645000px;}
.y115{bottom:7.725000px;}
.y108{bottom:7.740000px;}
.y10e{bottom:7.920000px;}
.y2{bottom:9.720000px;}
.y38{bottom:10.425000px;}
.y1c{bottom:10.800000px;}
.y34{bottom:10.965000px;}
.y10b{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y52{bottom:13.680000px;}
.y12{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y53{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.y146{bottom:18.360000px;}
.y17{bottom:19.080000px;}
.y4b{bottom:27.330000px;}
.y33{bottom:33.825000px;}
.y1b{bottom:33.840000px;}
.y10a{bottom:34.020000px;}
.y11{bottom:41.940000px;}
.y8{bottom:45.540000px;}
.y16{bottom:47.160000px;}
.y54{bottom:47.520000px;}
.y4a{bottom:50.550000px;}
.yc{bottom:53.280000px;}
.y32{bottom:56.865000px;}
.y153{bottom:57.060000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.y49{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y31{bottom:79.950000px;}
.y48{bottom:97.350000px;}
.y30{bottom:102.990000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y156{bottom:116.280000px;}
.y83{bottom:118.620000px;}
.yb2{bottom:119.340000px;}
.y144{bottom:119.880000px;}
.y17a{bottom:126.000000px;}
.y2f{bottom:126.030000px;}
.y46{bottom:126.360000px;}
.ydb{bottom:133.380000px;}
.y106{bottom:133.740000px;}
.y82{bottom:140.760000px;}
.yb1{bottom:141.660000px;}
.y143{bottom:142.020000px;}
.y11f{bottom:142.200000px;}
.y179{bottom:148.140000px;}
.y2e{bottom:149.070000px;}
.y45{bottom:149.220000px;}
.yda{bottom:156.420000px;}
.y105{bottom:156.600000px;}
.y155{bottom:162.180000px;}
.y81{bottom:163.080000px;}
.yb0{bottom:163.800000px;}
.y142{bottom:164.340000px;}
.y11e{bottom:164.520000px;}
.y178{bottom:170.460000px;}
.y2d{bottom:171.930000px;}
.y44{bottom:172.260000px;}
.yd9{bottom:179.280000px;}
.y104{bottom:179.640000px;}
.y80{bottom:185.220000px;}
.yaf{bottom:186.120000px;}
.y141{bottom:186.480000px;}
.y11d{bottom:186.660000px;}
.y177{bottom:192.600000px;}
.y2c{bottom:194.970000px;}
.y43{bottom:195.300000px;}
.yd8{bottom:202.320000px;}
.y103{bottom:202.680000px;}
.y41{bottom:207.405000px;}
.y7f{bottom:207.570000px;}
.yae{bottom:208.290000px;}
.y140{bottom:208.830000px;}
.y11c{bottom:209.010000px;}
.y176{bottom:214.950000px;}
.y2b{bottom:218.010000px;}
.yd7{bottom:225.390000px;}
.y102{bottom:225.750000px;}
.y40{bottom:226.845000px;}
.y7e{bottom:229.890000px;}
.yad{bottom:230.610000px;}
.y11b{bottom:231.150000px;}
.y175{bottom:237.270000px;}
.y2a{bottom:241.050000px;}
.y3f{bottom:246.285000px;}
.yd6{bottom:248.430000px;}
.y101{bottom:248.970000px;}
.y7d{bottom:252.030000px;}
.yac{bottom:252.750000px;}
.y17b{bottom:252.930000px;}
.y13f{bottom:253.290000px;}
.y11a{bottom:253.470000px;}
.y174{bottom:259.410000px;}
.y29{bottom:264.090000px;}
.y3d{bottom:265.725000px;}
.yd5{bottom:271.470000px;}
.y100{bottom:272.010000px;}
.y7c{bottom:274.350000px;}
.yab{bottom:275.070000px;}
.y119{bottom:275.610000px;}
.y173{bottom:281.730000px;}
.y3c{bottom:284.985000px;}
.y28{bottom:286.950000px;}
.yd4{bottom:294.330000px;}
.yff{bottom:295.050000px;}
.y7b{bottom:296.490000px;}
.yaa{bottom:297.390000px;}
.y13e{bottom:297.750000px;}
.y118{bottom:297.930000px;}
.y172{bottom:303.870000px;}
.y3b{bottom:304.425000px;}
.yd3{bottom:317.370000px;}
.yfe{bottom:318.090000px;}
.y7a{bottom:318.810000px;}
.ya9{bottom:319.530000px;}
.y117{bottom:319.710000px;}
.y13d{bottom:320.070000px;}
.y39{bottom:323.865000px;}
.y171{bottom:326.190000px;}
.y116{bottom:331.245000px;}
.yd2{bottom:340.410000px;}
.y79{bottom:340.950000px;}
.yfd{bottom:341.130000px;}
.ya8{bottom:341.850000px;}
.y13c{bottom:342.210000px;}
.y37{bottom:343.305000px;}
.y170{bottom:348.330000px;}
.y114{bottom:354.285000px;}
.y78{bottom:363.270000px;}
.y35{bottom:363.285000px;}
.yd1{bottom:363.450000px;}
.ya7{bottom:363.990000px;}
.yfc{bottom:364.170000px;}
.y13b{bottom:364.530000px;}
.y27{bottom:369.945000px;}
.y16f{bottom:370.650000px;}
.y77{bottom:385.590000px;}
.ya6{bottom:386.310000px;}
.yd0{bottom:386.490000px;}
.y13a{bottom:386.670000px;}
.yfb{bottom:387.030000px;}
.y16e{bottom:392.970000px;}
.y76{bottom:407.730000px;}
.ya5{bottom:408.450000px;}
.y139{bottom:408.990000px;}
.ycf{bottom:409.530000px;}
.yfa{bottom:410.070000px;}
.y16d{bottom:415.110000px;}
.y75{bottom:430.050000px;}
.ya4{bottom:430.770000px;}
.y138{bottom:431.310000px;}
.yce{bottom:432.390000px;}
.yf9{bottom:433.110000px;}
.y16c{bottom:436.350000px;}
.y74{bottom:452.235000px;}
.ya3{bottom:452.955000px;}
.y137{bottom:453.495000px;}
.ycd{bottom:455.475000px;}
.yf8{bottom:456.195000px;}
.y16b{bottom:457.095000px;}
.y73{bottom:474.555000px;}
.ya2{bottom:475.275000px;}
.y136{bottom:475.815000px;}
.ycc{bottom:478.515000px;}
.yf7{bottom:479.235000px;}
.y16a{bottom:479.415000px;}
.y72{bottom:496.695000px;}
.ya1{bottom:497.595000px;}
.y135{bottom:497.955000px;}
.ycb{bottom:501.555000px;}
.y169{bottom:501.735000px;}
.yf6{bottom:502.275000px;}
.y154{bottom:506.235000px;}
.y152{bottom:515.775000px;}
.y71{bottom:519.015000px;}
.ya0{bottom:519.735000px;}
.y134{bottom:520.275000px;}
.y168{bottom:523.875000px;}
.yca{bottom:524.595000px;}
.yf5{bottom:525.135000px;}
.y113{bottom:538.455000px;}
.y70{bottom:541.155000px;}
.y9f{bottom:542.055000px;}
.y133{bottom:542.415000px;}
.y167{bottom:546.195000px;}
.yc9{bottom:547.635000px;}
.yf4{bottom:548.175000px;}
.y112{bottom:550.695000px;}
.y6f{bottom:563.475000px;}
.y9e{bottom:564.195000px;}
.y132{bottom:564.735000px;}
.y166{bottom:568.335000px;}
.yc8{bottom:570.495000px;}
.yf3{bottom:571.215000px;}
.y111{bottom:573.735000px;}
.y151{bottom:584.895000px;}
.y6e{bottom:585.795000px;}
.y9d{bottom:586.515000px;}
.y131{bottom:587.055000px;}
.y165{bottom:590.655000px;}
.yc7{bottom:593.535000px;}
.yf2{bottom:594.255000px;}
.y6d{bottom:607.935000px;}
.y9c{bottom:608.655000px;}
.y130{bottom:609.195000px;}
.y164{bottom:612.795000px;}
.yc6{bottom:616.575000px;}
.yf1{bottom:617.475000px;}
.yf0{bottom:626.475000px;}
.y6c{bottom:630.255000px;}
.y9b{bottom:630.975000px;}
.y12f{bottom:631.515000px;}
.y163{bottom:635.115000px;}
.yc5{bottom:639.615000px;}
.y6b{bottom:652.395000px;}
.y9a{bottom:653.295000px;}
.y12e{bottom:653.655000px;}
.y162{bottom:657.435000px;}
.yef{bottom:659.055000px;}
.yc4{bottom:662.655000px;}
.y25{bottom:668.955000px;}
.y6a{bottom:674.715000px;}
.y99{bottom:675.435000px;}
.y12d{bottom:676.005000px;}
.y24{bottom:679.245000px;}
.y161{bottom:679.605000px;}
.yee{bottom:682.485000px;}
.yc3{bottom:685.725000px;}
.y22{bottom:694.725000px;}
.y69{bottom:696.885000px;}
.y98{bottom:697.785000px;}
.y12c{bottom:698.145000px;}
.y160{bottom:701.925000px;}
.yed{bottom:705.525000px;}
.yc2{bottom:708.585000px;}
.y1f{bottom:711.645000px;}
.y68{bottom:719.205000px;}
.y97{bottom:719.925000px;}
.y12b{bottom:720.465000px;}
.y15f{bottom:724.065000px;}
.yec{bottom:728.565000px;}
.y1d{bottom:730.005000px;}
.yc1{bottom:731.625000px;}
.y110{bottom:731.985000px;}
.y67{bottom:741.525000px;}
.y96{bottom:742.245000px;}
.y12a{bottom:742.785000px;}
.y10f{bottom:744.225000px;}
.y15e{bottom:746.385000px;}
.y1a{bottom:747.105000px;}
.yeb{bottom:751.605000px;}
.yc0{bottom:754.665000px;}
.y66{bottom:763.665000px;}
.y95{bottom:764.385000px;}
.y129{bottom:764.925000px;}
.y10d{bottom:767.085000px;}
.y15d{bottom:768.525000px;}
.yea{bottom:774.645000px;}
.ybf{bottom:777.705000px;}
.y65{bottom:785.985000px;}
.y94{bottom:786.705000px;}
.y128{bottom:787.245000px;}
.y15c{bottom:790.845000px;}
.y18{bottom:793.005000px;}
.ye9{bottom:797.685000px;}
.ybe{bottom:800.745000px;}
.y15{bottom:801.465000px;}
.y64{bottom:808.125000px;}
.y93{bottom:809.025000px;}
.y127{bottom:809.385000px;}
.y15b{bottom:813.165000px;}
.ye8{bottom:820.545000px;}
.ybd{bottom:823.605000px;}
.y63{bottom:830.445000px;}
.y92{bottom:831.165000px;}
.y126{bottom:831.705000px;}
.y15a{bottom:835.305000px;}
.ye7{bottom:843.585000px;}
.ybc{bottom:846.645000px;}
.y62{bottom:852.585000px;}
.y91{bottom:853.485000px;}
.y125{bottom:853.845000px;}
.y13{bottom:857.445000px;}
.y159{bottom:857.625000px;}
.y10{bottom:866.625000px;}
.ybb{bottom:869.685000px;}
.y61{bottom:874.905000px;}
.y90{bottom:875.625000px;}
.y124{bottom:876.165000px;}
.y158{bottom:879.765000px;}
.ye6{bottom:889.665000px;}
.yba{bottom:892.725000px;}
.y60{bottom:897.225000px;}
.y8f{bottom:897.945000px;}
.y123{bottom:898.305000px;}
.y157{bottom:902.085000px;}
.ye5{bottom:912.750000px;}
.yb9{bottom:915.810000px;}
.y5f{bottom:919.410000px;}
.y8e{bottom:920.130000px;}
.y122{bottom:920.670000px;}
.ye{bottom:922.650000px;}
.y150{bottom:924.270000px;}
.yb{bottom:927.870000px;}
.y121{bottom:932.910000px;}
.ye4{bottom:935.790000px;}
.yb8{bottom:938.850000px;}
.y5e{bottom:941.730000px;}
.y8d{bottom:942.450000px;}
.y14f{bottom:946.590000px;}
.y120{bottom:955.950000px;}
.ye3{bottom:958.650000px;}
.yb7{bottom:961.710000px;}
.y10c{bottom:962.790000px;}
.y5d{bottom:963.870000px;}
.y8c{bottom:964.590000px;}
.y14e{bottom:968.730000px;}
.y109{bottom:975.030000px;}
.ye2{bottom:981.690000px;}
.y14d{bottom:983.310000px;}
.yb6{bottom:984.750000px;}
.y5c{bottom:986.190000px;}
.y8b{bottom:986.910000px;}
.y14c{bottom:998.790000px;}
.ye1{bottom:1004.730000px;}
.yb5{bottom:1007.790000px;}
.y5b{bottom:1008.330000px;}
.y8a{bottom:1009.230000px;}
.ya{bottom:1013.550000px;}
.y14b{bottom:1014.450000px;}
.y107{bottom:1021.110000px;}
.ye0{bottom:1027.770000px;}
.y14a{bottom:1029.930000px;}
.y4{bottom:1030.290000px;}
.y5a{bottom:1030.650000px;}
.yb4{bottom:1030.830000px;}
.y89{bottom:1031.370000px;}
.y47{bottom:1043.280000px;}
.y149{bottom:1045.590000px;}
.ydf{bottom:1050.810000px;}
.y59{bottom:1052.790000px;}
.y88{bottom:1053.690000px;}
.yb3{bottom:1053.870000px;}
.y148{bottom:1061.070000px;}
.yde{bottom:1073.850000px;}
.y58{bottom:1075.110000px;}
.y87{bottom:1075.830000px;}
.y145{bottom:1077.450000px;}
.ydd{bottom:1096.710000px;}
.y57{bottom:1097.430000px;}
.y86{bottom:1098.150000px;}
.y56{bottom:1119.570000px;}
.ydc{bottom:1119.750000px;}
.y85{bottom:1120.290000px;}
.y84{bottom:1142.610000px;}
.y55{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4e{bottom:1185.840000px;}
.h2b{height:1.999688px;}
.ha{height:5.205000px;}
.h22{height:6.645000px;}
.h12{height:8.460000px;}
.he{height:9.180000px;}
.h1e{height:10.290000px;}
.hb{height:12.190430px;}
.h45{height:15.465000px;}
.h1d{height:15.480000px;}
.h44{height:15.645000px;}
.h23{height:16.543828px;}
.h1b{height:16.920000px;}
.h17{height:17.100000px;}
.h31{height:17.640000px;}
.h18{height:18.360000px;}
.h29{height:19.245000px;}
.h26{height:19.425000px;}
.h24{height:19.965000px;}
.h13{height:21.055781px;}
.h3c{height:22.860000px;}
.hf{height:22.975313px;}
.h3e{height:23.025000px;}
.h2{height:23.938500px;}
.h11{height:23.980781px;}
.h32{height:27.898500px;}
.h25{height:29.145586px;}
.h43{height:30.585000px;}
.h48{height:31.605469px;}
.h1f{height:32.835938px;}
.h34{height:34.684453px;}
.h40{height:38.689453px;}
.h28{height:40.472227px;}
.h21{height:40.869141px;}
.h27{height:41.493516px;}
.h41{height:42.366094px;}
.h35{height:42.486094px;}
.h4b{height:44.000156px;}
.h16{height:44.820000px;}
.hd{height:44.860781px;}
.h1a{height:45.695391px;}
.h4a{height:45.898500px;}
.h14{height:45.900000px;}
.h3a{height:46.065000px;}
.h36{height:48.600703px;}
.h15{height:49.253906px;}
.h19{height:50.068125px;}
.h3{height:50.597578px;}
.h2e{height:54.000000px;}
.h6{height:54.457031px;}
.h1c{height:54.507656px;}
.h10{height:55.980000px;}
.hc{height:56.002500px;}
.h30{height:56.084062px;}
.h2f{height:56.160000px;}
.h8{height:57.051211px;}
.h9{height:60.136655px;}
.h2d{height:63.180000px;}
.h47{height:69.105000px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h33{height:72.562500px;}
.h38{height:81.720703px;}
.h37{height:86.760703px;}
.h2c{height:114.660000px;}
.h5{height:124.590000px;}
.h39{height:133.770000px;}
.h2a{height:135.885000px;}
.h3d{height:148.170000px;}
.h3f{height:174.255000px;}
.h3b{height:185.790000px;}
.h42{height:198.930000px;}
.h20{height:298.995000px;}
.h46{height:329.460000px;}
.h49{height:336.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w4{width:101.329500px;}
.w17{width:118.821000px;}
.w16{width:118.836000px;}
.w9{width:154.429500px;}
.w18{width:155.145000px;}
.w3{width:265.155000px;}
.w8{width:277.575000px;}
.w11{width:280.320000px;}
.w15{width:282.259500px;}
.w14{width:324.015000px;}
.w13{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:397.504500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:2.160000px;}
.x2{left:3.769500px;}
.x23{left:5.025000px;}
.x18{left:6.465000px;}
.xa{left:16.365000px;}
.x16{left:17.809500px;}
.x29{left:22.485000px;}
.x28{left:23.925000px;}
.x26{left:25.185000px;}
.x27{left:27.000000px;}
.x25{left:29.160000px;}
.x1a{left:32.565000px;}
.xe{left:38.370000px;}
.x21{left:41.220000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x15{left:122.025000px;}
.x1b{left:143.445000px;}
.x17{left:164.385000px;}
.x7{left:180.748500px;}
.x4{left:182.010000px;}
.x6{left:209.385000px;}
.xf{left:221.115000px;}
.xb{left:263.385000px;}
.x10{left:273.705000px;}
.x11{left:303.405000px;}
.x1d{left:318.628500px;}
.x1e{left:324.030000px;}
.x12{left:341.025000px;}
.x8{left:368.878500px;}
.x1f{left:390.315000px;}
.x19{left:444.720000px;}
.x14{left:450.480000px;}
.xc{left:458.220000px;}
.xd{left:462.705000px;}
.x1c{left:476.565000px;}
.x9{left:506.460000px;}
.x22{left:509.160000px;}
.x3{left:521.220000px;}
.x13{left:573.990000px;}
.x24{left:627.990000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:13.546667pt;}
.v1{vertical-align:16.160000pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:36.480000pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.297067pt;}
.ls2e{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.213867pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.086933pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.018560pt;}
.ls5{letter-spacing:0.028160pt;}
.ls29{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls26{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.208000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls0{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls21{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.496000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.595840pt;}
.ls2c{letter-spacing:0.656000pt;}
.ls24{letter-spacing:0.976000pt;}
.ls18{letter-spacing:1.056000pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.200000pt;}
.ls15{letter-spacing:1.232000pt;}
.ls19{letter-spacing:1.600000pt;}
.ls10{letter-spacing:3.808000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls3{letter-spacing:5.712000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls4{letter-spacing:9.552000pt;}
.lse{letter-spacing:27.520000pt;}
.ls17{letter-spacing:45.424000pt;}
.ws16{word-spacing:-48.000000pt;}
.ws13{word-spacing:-35.856000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws9{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.800000pt;}
.ws15{word-spacing:-12.768000pt;}
.ws8{word-spacing:-12.656533pt;}
.ws18{word-spacing:-12.400000pt;}
.ws1a{word-spacing:-12.384000pt;}
.ws1b{word-spacing:-12.352000pt;}
.wsc{word-spacing:-12.241067pt;}
.ws19{word-spacing:-12.240000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws14{word-spacing:-11.760000pt;}
.ws0{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.599467pt;}
.ws17{word-spacing:-11.584000pt;}
.ws6{word-spacing:-11.568000pt;}
.ws10{word-spacing:-11.536000pt;}
.ws1c{word-spacing:-11.280000pt;}
.ws11{word-spacing:-11.120000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws12{word-spacing:-7.712000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-2.197333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._5{width:2.128853pt;}
._b{width:3.235413pt;}
._6{width:4.977707pt;}
._4{width:6.115413pt;}
._a{width:7.018240pt;}
._c{width:8.362027pt;}
._7{width:9.301333pt;}
._8{width:10.225493pt;}
._9{width:13.074560pt;}
._2e{width:14.437973pt;}
._2{width:15.379200pt;}
._1b{width:16.848000pt;}
._17{width:17.760000pt;}
._1d{width:19.488000pt;}
._18{width:20.788053pt;}
._d{width:21.931947pt;}
._23{width:23.419947pt;}
._32{width:25.041707pt;}
._e{width:25.990187pt;}
._1c{width:27.242667pt;}
._1a{width:28.224000pt;}
._28{width:29.300480pt;}
._19{width:30.816000pt;}
._22{width:32.022187pt;}
._1e{width:33.792000pt;}
._1f{width:34.992000pt;}
._26{width:36.795093pt;}
._27{width:37.963947pt;}
._20{width:39.072000pt;}
._25{width:40.618240pt;}
._33{width:44.577707pt;}
._31{width:45.648000pt;}
._24{width:47.381120pt;}
._13{width:48.912000pt;}
._14{width:49.824000pt;}
._34{width:53.632853pt;}
._38{width:55.440000pt;}
._37{width:56.448000pt;}
._30{width:58.613333pt;}
._2f{width:59.594667pt;}
._2b{width:61.097387pt;}
._2c{width:61.987413pt;}
._2d{width:63.156267pt;}
._2a{width:65.601707pt;}
._29{width:66.613973pt;}
._11{width:69.456000pt;}
._12{width:70.896000pt;}
._39{width:72.160853pt;}
._15{width:77.328000pt;}
._16{width:78.720000pt;}
._21{width:79.834667pt;}
._35{width:101.952000pt;}
._36{width:103.456000pt;}
._f{width:106.512000pt;}
._10{width:107.440853pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs10{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y4d{bottom:-16.346667pt;}
.y42{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y36{bottom:1.426667pt;}
.y14{bottom:1.440000pt;}
.y19{bottom:1.920000pt;}
.y26{bottom:2.080000pt;}
.y4c{bottom:2.533333pt;}
.y147{bottom:2.720000pt;}
.y21{bottom:2.880000pt;}
.y23{bottom:3.040000pt;}
.y20{bottom:4.000000pt;}
.y1e{bottom:4.160000pt;}
.y3e{bottom:5.746667pt;}
.y3a{bottom:5.906667pt;}
.y115{bottom:6.866667pt;}
.y108{bottom:6.880000pt;}
.y10e{bottom:7.040000pt;}
.y2{bottom:8.640000pt;}
.y38{bottom:9.266667pt;}
.y1c{bottom:9.600000pt;}
.y34{bottom:9.746667pt;}
.y10b{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y52{bottom:12.160000pt;}
.y12{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y53{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.y146{bottom:16.320000pt;}
.y17{bottom:16.960000pt;}
.y4b{bottom:24.293333pt;}
.y33{bottom:30.066667pt;}
.y1b{bottom:30.080000pt;}
.y10a{bottom:30.240000pt;}
.y11{bottom:37.280000pt;}
.y8{bottom:40.480000pt;}
.y16{bottom:41.920000pt;}
.y54{bottom:42.240000pt;}
.y4a{bottom:44.933333pt;}
.yc{bottom:47.360000pt;}
.y32{bottom:50.546667pt;}
.y153{bottom:50.720000pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.y49{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y31{bottom:71.066667pt;}
.y48{bottom:86.533333pt;}
.y30{bottom:91.546667pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y156{bottom:103.360000pt;}
.y83{bottom:105.440000pt;}
.yb2{bottom:106.080000pt;}
.y144{bottom:106.560000pt;}
.y17a{bottom:112.000000pt;}
.y2f{bottom:112.026667pt;}
.y46{bottom:112.320000pt;}
.ydb{bottom:118.560000pt;}
.y106{bottom:118.880000pt;}
.y82{bottom:125.120000pt;}
.yb1{bottom:125.920000pt;}
.y143{bottom:126.240000pt;}
.y11f{bottom:126.400000pt;}
.y179{bottom:131.680000pt;}
.y2e{bottom:132.506667pt;}
.y45{bottom:132.640000pt;}
.yda{bottom:139.040000pt;}
.y105{bottom:139.200000pt;}
.y155{bottom:144.160000pt;}
.y81{bottom:144.960000pt;}
.yb0{bottom:145.600000pt;}
.y142{bottom:146.080000pt;}
.y11e{bottom:146.240000pt;}
.y178{bottom:151.520000pt;}
.y2d{bottom:152.826667pt;}
.y44{bottom:153.120000pt;}
.yd9{bottom:159.360000pt;}
.y104{bottom:159.680000pt;}
.y80{bottom:164.640000pt;}
.yaf{bottom:165.440000pt;}
.y141{bottom:165.760000pt;}
.y11d{bottom:165.920000pt;}
.y177{bottom:171.200000pt;}
.y2c{bottom:173.306667pt;}
.y43{bottom:173.600000pt;}
.yd8{bottom:179.840000pt;}
.y103{bottom:180.160000pt;}
.y41{bottom:184.360000pt;}
.y7f{bottom:184.506667pt;}
.yae{bottom:185.146667pt;}
.y140{bottom:185.626667pt;}
.y11c{bottom:185.786667pt;}
.y176{bottom:191.066667pt;}
.y2b{bottom:193.786667pt;}
.yd7{bottom:200.346667pt;}
.y102{bottom:200.666667pt;}
.y40{bottom:201.640000pt;}
.y7e{bottom:204.346667pt;}
.yad{bottom:204.986667pt;}
.y11b{bottom:205.466667pt;}
.y175{bottom:210.906667pt;}
.y2a{bottom:214.266667pt;}
.y3f{bottom:218.920000pt;}
.yd6{bottom:220.826667pt;}
.y101{bottom:221.306667pt;}
.y7d{bottom:224.026667pt;}
.yac{bottom:224.666667pt;}
.y17b{bottom:224.826667pt;}
.y13f{bottom:225.146667pt;}
.y11a{bottom:225.306667pt;}
.y174{bottom:230.586667pt;}
.y29{bottom:234.746667pt;}
.y3d{bottom:236.200000pt;}
.yd5{bottom:241.306667pt;}
.y100{bottom:241.786667pt;}
.y7c{bottom:243.866667pt;}
.yab{bottom:244.506667pt;}
.y119{bottom:244.986667pt;}
.y173{bottom:250.426667pt;}
.y3c{bottom:253.320000pt;}
.y28{bottom:255.066667pt;}
.yd4{bottom:261.626667pt;}
.yff{bottom:262.266667pt;}
.y7b{bottom:263.546667pt;}
.yaa{bottom:264.346667pt;}
.y13e{bottom:264.666667pt;}
.y118{bottom:264.826667pt;}
.y172{bottom:270.106667pt;}
.y3b{bottom:270.600000pt;}
.yd3{bottom:282.106667pt;}
.yfe{bottom:282.746667pt;}
.y7a{bottom:283.386667pt;}
.ya9{bottom:284.026667pt;}
.y117{bottom:284.186667pt;}
.y13d{bottom:284.506667pt;}
.y39{bottom:287.880000pt;}
.y171{bottom:289.946667pt;}
.y116{bottom:294.440000pt;}
.yd2{bottom:302.586667pt;}
.y79{bottom:303.066667pt;}
.yfd{bottom:303.226667pt;}
.ya8{bottom:303.866667pt;}
.y13c{bottom:304.186667pt;}
.y37{bottom:305.160000pt;}
.y170{bottom:309.626667pt;}
.y114{bottom:314.920000pt;}
.y78{bottom:322.906667pt;}
.y35{bottom:322.920000pt;}
.yd1{bottom:323.066667pt;}
.ya7{bottom:323.546667pt;}
.yfc{bottom:323.706667pt;}
.y13b{bottom:324.026667pt;}
.y27{bottom:328.840000pt;}
.y16f{bottom:329.466667pt;}
.y77{bottom:342.746667pt;}
.ya6{bottom:343.386667pt;}
.yd0{bottom:343.546667pt;}
.y13a{bottom:343.706667pt;}
.yfb{bottom:344.026667pt;}
.y16e{bottom:349.306667pt;}
.y76{bottom:362.426667pt;}
.ya5{bottom:363.066667pt;}
.y139{bottom:363.546667pt;}
.ycf{bottom:364.026667pt;}
.yfa{bottom:364.506667pt;}
.y16d{bottom:368.986667pt;}
.y75{bottom:382.266667pt;}
.ya4{bottom:382.906667pt;}
.y138{bottom:383.386667pt;}
.yce{bottom:384.346667pt;}
.yf9{bottom:384.986667pt;}
.y16c{bottom:387.866667pt;}
.y74{bottom:401.986667pt;}
.ya3{bottom:402.626667pt;}
.y137{bottom:403.106667pt;}
.ycd{bottom:404.866667pt;}
.yf8{bottom:405.506667pt;}
.y16b{bottom:406.306667pt;}
.y73{bottom:421.826667pt;}
.ya2{bottom:422.466667pt;}
.y136{bottom:422.946667pt;}
.ycc{bottom:425.346667pt;}
.yf7{bottom:425.986667pt;}
.y16a{bottom:426.146667pt;}
.y72{bottom:441.506667pt;}
.ya1{bottom:442.306667pt;}
.y135{bottom:442.626667pt;}
.ycb{bottom:445.826667pt;}
.y169{bottom:445.986667pt;}
.yf6{bottom:446.466667pt;}
.y154{bottom:449.986667pt;}
.y152{bottom:458.466667pt;}
.y71{bottom:461.346667pt;}
.ya0{bottom:461.986667pt;}
.y134{bottom:462.466667pt;}
.y168{bottom:465.666667pt;}
.yca{bottom:466.306667pt;}
.yf5{bottom:466.786667pt;}
.y113{bottom:478.626667pt;}
.y70{bottom:481.026667pt;}
.y9f{bottom:481.826667pt;}
.y133{bottom:482.146667pt;}
.y167{bottom:485.506667pt;}
.yc9{bottom:486.786667pt;}
.yf4{bottom:487.266667pt;}
.y112{bottom:489.506667pt;}
.y6f{bottom:500.866667pt;}
.y9e{bottom:501.506667pt;}
.y132{bottom:501.986667pt;}
.y166{bottom:505.186667pt;}
.yc8{bottom:507.106667pt;}
.yf3{bottom:507.746667pt;}
.y111{bottom:509.986667pt;}
.y151{bottom:519.906667pt;}
.y6e{bottom:520.706667pt;}
.y9d{bottom:521.346667pt;}
.y131{bottom:521.826667pt;}
.y165{bottom:525.026667pt;}
.yc7{bottom:527.586667pt;}
.yf2{bottom:528.226667pt;}
.y6d{bottom:540.386667pt;}
.y9c{bottom:541.026667pt;}
.y130{bottom:541.506667pt;}
.y164{bottom:544.706667pt;}
.yc6{bottom:548.066667pt;}
.yf1{bottom:548.866667pt;}
.yf0{bottom:556.866667pt;}
.y6c{bottom:560.226667pt;}
.y9b{bottom:560.866667pt;}
.y12f{bottom:561.346667pt;}
.y163{bottom:564.546667pt;}
.yc5{bottom:568.546667pt;}
.y6b{bottom:579.906667pt;}
.y9a{bottom:580.706667pt;}
.y12e{bottom:581.026667pt;}
.y162{bottom:584.386667pt;}
.yef{bottom:585.826667pt;}
.yc4{bottom:589.026667pt;}
.y25{bottom:594.626667pt;}
.y6a{bottom:599.746667pt;}
.y99{bottom:600.386667pt;}
.y12d{bottom:600.893333pt;}
.y24{bottom:603.773333pt;}
.y161{bottom:604.093333pt;}
.yee{bottom:606.653333pt;}
.yc3{bottom:609.533333pt;}
.y22{bottom:617.533333pt;}
.y69{bottom:619.453333pt;}
.y98{bottom:620.253333pt;}
.y12c{bottom:620.573333pt;}
.y160{bottom:623.933333pt;}
.yed{bottom:627.133333pt;}
.yc2{bottom:629.853333pt;}
.y1f{bottom:632.573333pt;}
.y68{bottom:639.293333pt;}
.y97{bottom:639.933333pt;}
.y12b{bottom:640.413333pt;}
.y15f{bottom:643.613333pt;}
.yec{bottom:647.613333pt;}
.y1d{bottom:648.893333pt;}
.yc1{bottom:650.333333pt;}
.y110{bottom:650.653333pt;}
.y67{bottom:659.133333pt;}
.y96{bottom:659.773333pt;}
.y12a{bottom:660.253333pt;}
.y10f{bottom:661.533333pt;}
.y15e{bottom:663.453333pt;}
.y1a{bottom:664.093333pt;}
.yeb{bottom:668.093333pt;}
.yc0{bottom:670.813333pt;}
.y66{bottom:678.813333pt;}
.y95{bottom:679.453333pt;}
.y129{bottom:679.933333pt;}
.y10d{bottom:681.853333pt;}
.y15d{bottom:683.133333pt;}
.yea{bottom:688.573333pt;}
.ybf{bottom:691.293333pt;}
.y65{bottom:698.653333pt;}
.y94{bottom:699.293333pt;}
.y128{bottom:699.773333pt;}
.y15c{bottom:702.973333pt;}
.y18{bottom:704.893333pt;}
.ye9{bottom:709.053333pt;}
.ybe{bottom:711.773333pt;}
.y15{bottom:712.413333pt;}
.y64{bottom:718.333333pt;}
.y93{bottom:719.133333pt;}
.y127{bottom:719.453333pt;}
.y15b{bottom:722.813333pt;}
.ye8{bottom:729.373333pt;}
.ybd{bottom:732.093333pt;}
.y63{bottom:738.173333pt;}
.y92{bottom:738.813333pt;}
.y126{bottom:739.293333pt;}
.y15a{bottom:742.493333pt;}
.ye7{bottom:749.853333pt;}
.ybc{bottom:752.573333pt;}
.y62{bottom:757.853333pt;}
.y91{bottom:758.653333pt;}
.y125{bottom:758.973333pt;}
.y13{bottom:762.173333pt;}
.y159{bottom:762.333333pt;}
.y10{bottom:770.333333pt;}
.ybb{bottom:773.053333pt;}
.y61{bottom:777.693333pt;}
.y90{bottom:778.333333pt;}
.y124{bottom:778.813333pt;}
.y158{bottom:782.013333pt;}
.ye6{bottom:790.813333pt;}
.yba{bottom:793.533333pt;}
.y60{bottom:797.533333pt;}
.y8f{bottom:798.173333pt;}
.y123{bottom:798.493333pt;}
.y157{bottom:801.853333pt;}
.ye5{bottom:811.333333pt;}
.yb9{bottom:814.053333pt;}
.y5f{bottom:817.253333pt;}
.y8e{bottom:817.893333pt;}
.y122{bottom:818.373333pt;}
.ye{bottom:820.133333pt;}
.y150{bottom:821.573333pt;}
.yb{bottom:824.773333pt;}
.y121{bottom:829.253333pt;}
.ye4{bottom:831.813333pt;}
.yb8{bottom:834.533333pt;}
.y5e{bottom:837.093333pt;}
.y8d{bottom:837.733333pt;}
.y14f{bottom:841.413333pt;}
.y120{bottom:849.733333pt;}
.ye3{bottom:852.133333pt;}
.yb7{bottom:854.853333pt;}
.y10c{bottom:855.813333pt;}
.y5d{bottom:856.773333pt;}
.y8c{bottom:857.413333pt;}
.y14e{bottom:861.093333pt;}
.y109{bottom:866.693333pt;}
.ye2{bottom:872.613333pt;}
.y14d{bottom:874.053333pt;}
.yb6{bottom:875.333333pt;}
.y5c{bottom:876.613333pt;}
.y8b{bottom:877.253333pt;}
.y14c{bottom:887.813333pt;}
.ye1{bottom:893.093333pt;}
.yb5{bottom:895.813333pt;}
.y5b{bottom:896.293333pt;}
.y8a{bottom:897.093333pt;}
.ya{bottom:900.933333pt;}
.y14b{bottom:901.733333pt;}
.y107{bottom:907.653333pt;}
.ye0{bottom:913.573333pt;}
.y14a{bottom:915.493333pt;}
.y4{bottom:915.813333pt;}
.y5a{bottom:916.133333pt;}
.yb4{bottom:916.293333pt;}
.y89{bottom:916.773333pt;}
.y47{bottom:927.360000pt;}
.y149{bottom:929.413333pt;}
.ydf{bottom:934.053333pt;}
.y59{bottom:935.813333pt;}
.y88{bottom:936.613333pt;}
.yb3{bottom:936.773333pt;}
.y148{bottom:943.173333pt;}
.yde{bottom:954.533333pt;}
.y58{bottom:955.653333pt;}
.y87{bottom:956.293333pt;}
.y145{bottom:957.733333pt;}
.ydd{bottom:974.853333pt;}
.y57{bottom:975.493333pt;}
.y86{bottom:976.133333pt;}
.y56{bottom:995.173333pt;}
.ydc{bottom:995.333333pt;}
.y85{bottom:995.813333pt;}
.y84{bottom:1015.653333pt;}
.y55{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4e{bottom:1054.080000pt;}
.h2b{height:1.777500pt;}
.ha{height:4.626667pt;}
.h22{height:5.906667pt;}
.h12{height:7.520000pt;}
.he{height:8.160000pt;}
.h1e{height:9.146667pt;}
.hb{height:10.835938pt;}
.h45{height:13.746667pt;}
.h1d{height:13.760000pt;}
.h44{height:13.906667pt;}
.h23{height:14.705625pt;}
.h1b{height:15.040000pt;}
.h17{height:15.200000pt;}
.h31{height:15.680000pt;}
.h18{height:16.320000pt;}
.h29{height:17.106667pt;}
.h26{height:17.266667pt;}
.h24{height:17.746667pt;}
.h13{height:18.716250pt;}
.h3c{height:20.320000pt;}
.hf{height:20.422500pt;}
.h3e{height:20.466667pt;}
.h2{height:21.278667pt;}
.h11{height:21.316250pt;}
.h32{height:24.798667pt;}
.h25{height:25.907188pt;}
.h43{height:27.186667pt;}
.h48{height:28.093750pt;}
.h1f{height:29.187500pt;}
.h34{height:30.830625pt;}
.h40{height:34.390625pt;}
.h28{height:35.975313pt;}
.h21{height:36.328125pt;}
.h27{height:36.883125pt;}
.h41{height:37.658750pt;}
.h35{height:37.765417pt;}
.h4b{height:39.111250pt;}
.h16{height:39.840000pt;}
.hd{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h4a{height:40.798667pt;}
.h14{height:40.800000pt;}
.h3a{height:40.946667pt;}
.h36{height:43.200625pt;}
.h15{height:43.781250pt;}
.h19{height:44.505000pt;}
.h3{height:44.975625pt;}
.h2e{height:48.000000pt;}
.h6{height:48.406250pt;}
.h1c{height:48.451250pt;}
.h10{height:49.760000pt;}
.hc{height:49.780000pt;}
.h30{height:49.852500pt;}
.h2f{height:49.920000pt;}
.h8{height:50.712187pt;}
.h9{height:53.454805pt;}
.h2d{height:56.160000pt;}
.h47{height:61.426667pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h33{height:64.500000pt;}
.h38{height:72.640625pt;}
.h37{height:77.120625pt;}
.h2c{height:101.920000pt;}
.h5{height:110.746667pt;}
.h39{height:118.906667pt;}
.h2a{height:120.786667pt;}
.h3d{height:131.706667pt;}
.h3f{height:154.893333pt;}
.h3b{height:165.146667pt;}
.h42{height:176.826667pt;}
.h20{height:265.773333pt;}
.h46{height:292.853333pt;}
.h49{height:298.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w4{width:90.070667pt;}
.w17{width:105.618667pt;}
.w16{width:105.632000pt;}
.w9{width:137.270667pt;}
.w18{width:137.906667pt;}
.w3{width:235.693333pt;}
.w8{width:246.733333pt;}
.w11{width:249.173333pt;}
.w15{width:250.897333pt;}
.w14{width:288.013333pt;}
.w13{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:353.337333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:1.920000pt;}
.x2{left:3.350667pt;}
.x23{left:4.466667pt;}
.x18{left:5.746667pt;}
.xa{left:14.546667pt;}
.x16{left:15.830667pt;}
.x29{left:19.986667pt;}
.x28{left:21.266667pt;}
.x26{left:22.386667pt;}
.x27{left:24.000000pt;}
.x25{left:25.920000pt;}
.x1a{left:28.946667pt;}
.xe{left:34.106667pt;}
.x21{left:36.640000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x15{left:108.466667pt;}
.x1b{left:127.506667pt;}
.x17{left:146.120000pt;}
.x7{left:160.665333pt;}
.x4{left:161.786667pt;}
.x6{left:186.120000pt;}
.xf{left:196.546667pt;}
.xb{left:234.120000pt;}
.x10{left:243.293333pt;}
.x11{left:269.693333pt;}
.x1d{left:283.225333pt;}
.x1e{left:288.026667pt;}
.x12{left:303.133333pt;}
.x8{left:327.892000pt;}
.x1f{left:346.946667pt;}
.x19{left:395.306667pt;}
.x14{left:400.426667pt;}
.xc{left:407.306667pt;}
.xd{left:411.293333pt;}
.x1c{left:423.613333pt;}
.x9{left:450.186667pt;}
.x22{left:452.586667pt;}
.x3{left:463.306667pt;}
.x13{left:510.213333pt;}
.x24{left:558.213333pt;}
}




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