
    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_a6a87db3b720b8c5ec7665a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_180a0321d8bb1e62f2b2e4c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_be823950d7e7ae5cbad4ba86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_b8bc0a4f1294219046633c38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.838000;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_75cae79015e4f327c99be3c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_b1490a3978715c2be116dd33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_19c0826c5f1a539e61839342.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.733000;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_e7b435ee2327f70a5a9d6de6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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_e751166fb3425b0adf5f1e52.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892000;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_25b2c34121e32fcd8fafc510.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_649049cc8341b1238f6c36a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.032000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001002px;}
.lsb{letter-spacing:0.002700px;}
.lsd{letter-spacing:7.214712px;}
.lsc{letter-spacing:7.220712px;}
.ls8{letter-spacing:9.449412px;}
.ls7{letter-spacing:12.491700px;}
.ls0{letter-spacing:13.448004px;}
.ls6{letter-spacing:14.495412px;}
.ls11{letter-spacing:14.990100px;}
.ls5{letter-spacing:16.582350px;}
.ls10{letter-spacing:16.838100px;}
.lsa{letter-spacing:19.937412px;}
.lse{letter-spacing:21.518100px;}
.lsf{letter-spacing:21.524100px;}
.ls4{letter-spacing:28.186350px;}
.ls9{letter-spacing:30.875412px;}
.ls12{letter-spacing:35.372100px;}
.ls3{letter-spacing:1314.008700px;}
.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;}
}
.ws94{word-spacing:-65.454600px;}
.ws2{word-spacing:-17.932800px;}
.ws77{word-spacing:-16.363650px;}
.wsdb{word-spacing:-14.943900px;}
.ws61{word-spacing:-3.927276px;}
.ws8b{word-spacing:-3.861821px;}
.wsd1{word-spacing:-3.665458px;}
.wsef{word-spacing:-3.526760px;}
.ws58{word-spacing:-3.144197px;}
.ws2a{word-spacing:-3.141821px;}
.ws82{word-spacing:-3.076366px;}
.ws40{word-spacing:-3.010912px;}
.ws23{word-spacing:-2.945457px;}
.ws47{word-spacing:-2.552729px;}
.ws24{word-spacing:-2.487275px;}
.ws4d{word-spacing:-2.421820px;}
.ws69{word-spacing:-2.290911px;}
.ws46{word-spacing:-2.225456px;}
.ws2d{word-spacing:-2.029093px;}
.ws2b{word-spacing:-1.963638px;}
.wsbe{word-spacing:-1.898183px;}
.wsc1{word-spacing:-1.832729px;}
.ws102{word-spacing:-1.733492px;}
.ws74{word-spacing:-1.701820px;}
.ws37{word-spacing:-1.636365px;}
.ws36{word-spacing:-1.505456px;}
.wsb3{word-spacing:-1.440001px;}
.ws78{word-spacing:-1.374547px;}
.wsd0{word-spacing:-1.309092px;}
.wsca{word-spacing:-1.243637px;}
.ws7f{word-spacing:-1.197389px;}
.ws68{word-spacing:-1.178183px;}
.wse{word-spacing:-1.112728px;}
.wsac{word-spacing:-1.047274px;}
.ws15{word-spacing:-0.981819px;}
.wsa2{word-spacing:-0.978092px;}
.ws7d{word-spacing:-0.916364px;}
.ws20{word-spacing:-0.785455px;}
.ws30{word-spacing:-0.720001px;}
.wsfa{word-spacing:-0.717307px;}
.ws19{word-spacing:-0.654546px;}
.ws105{word-spacing:-0.537980px;}
.ws65{word-spacing:-0.458182px;}
.wse1{word-spacing:-0.358654px;}
.ws33{word-spacing:-0.327273px;}
.wse0{word-spacing:-0.298878px;}
.ws7c{word-spacing:-0.261818px;}
.ws80{word-spacing:-0.196364px;}
.ws73{word-spacing:-0.130909px;}
.wsd5{word-spacing:-0.086077px;}
.ws51{word-spacing:-0.065455px;}
.ws3{word-spacing:-0.053798px;}
.wsd7{word-spacing:-0.005093px;}
.wsf5{word-spacing:-0.003910px;}
.ws109{word-spacing:-0.002784px;}
.wsee{word-spacing:-0.002316px;}
.wsf2{word-spacing:-0.001792px;}
.wse6{word-spacing:-0.000334px;}
.ws0{word-spacing:0.000000px;}
.ws98{word-spacing:0.002129px;}
.wsff{word-spacing:0.059776px;}
.ws88{word-spacing:0.065455px;}
.ws70{word-spacing:0.130909px;}
.ws6e{word-spacing:0.173908px;}
.ws7{word-spacing:0.179327px;}
.ws6c{word-spacing:0.196364px;}
.wsc4{word-spacing:0.228447px;}
.ws6a{word-spacing:0.261818px;}
.ws71{word-spacing:0.327273px;}
.wsfc{word-spacing:0.358654px;}
.ws87{word-spacing:0.392728px;}
.wsfb{word-spacing:0.418429px;}
.ws9b{word-spacing:0.458182px;}
.ws1c{word-spacing:0.523637px;}
.wsf1{word-spacing:0.537980px;}
.ws83{word-spacing:0.589091px;}
.wsbf{word-spacing:0.593908px;}
.ws26{word-spacing:0.654546px;}
.wsc3{word-spacing:0.720001px;}
.ws49{word-spacing:0.785455px;}
.wsc{word-spacing:0.850910px;}
.ws27{word-spacing:0.916364px;}
.wsd3{word-spacing:0.981819px;}
.wsf4{word-spacing:1.016185px;}
.wse8{word-spacing:1.075961px;}
.ws7e{word-spacing:1.109850px;}
.ws2e{word-spacing:1.112728px;}
.ws21{word-spacing:1.178183px;}
.wsd9{word-spacing:1.255288px;}
.ws1d{word-spacing:1.309092px;}
.ws8f{word-spacing:1.374547px;}
.wsfe{word-spacing:1.434614px;}
.wscb{word-spacing:1.440001px;}
.wsfd{word-spacing:1.494390px;}
.ws6b{word-spacing:1.505456px;}
.wsf{word-spacing:1.570910px;}
.ws84{word-spacing:1.636365px;}
.ws10{word-spacing:1.701820px;}
.wsed{word-spacing:1.853044px;}
.ws39{word-spacing:1.898183px;}
.wsec{word-spacing:1.912819px;}
.ws89{word-spacing:2.029093px;}
.wse4{word-spacing:2.092146px;}
.ws90{word-spacing:2.094547px;}
.ws62{word-spacing:2.160002px;}
.ws4c{word-spacing:2.225456px;}
.ws28{word-spacing:2.356366px;}
.ws9a{word-spacing:2.421820px;}
.wsd6{word-spacing:2.450800px;}
.ws17{word-spacing:2.487275px;}
.ws86{word-spacing:2.552729px;}
.wse5{word-spacing:2.570351px;}
.ws25{word-spacing:2.618184px;}
.wsb{word-spacing:2.683639px;}
.ws103{word-spacing:2.726380px;}
.ws42{word-spacing:2.814548px;}
.ws1a{word-spacing:2.880002px;}
.ws6{word-spacing:2.929004px;}
.ws81{word-spacing:2.945457px;}
.ws10a{word-spacing:2.988780px;}
.ws18{word-spacing:3.010912px;}
.wsde{word-spacing:3.048556px;}
.ws3f{word-spacing:3.076366px;}
.wsdf{word-spacing:3.108331px;}
.wsd2{word-spacing:3.141821px;}
.ws2c{word-spacing:3.207275px;}
.ws5e{word-spacing:3.272730px;}
.ws106{word-spacing:3.281804px;}
.ws5c{word-spacing:3.281908px;}
.ws12{word-spacing:3.338185px;}
.ws72{word-spacing:3.403639px;}
.wse2{word-spacing:3.407209px;}
.ws101{word-spacing:3.415600px;}
.ws31{word-spacing:3.469094px;}
.ws45{word-spacing:3.534548px;}
.wsdd{word-spacing:3.586292px;}
.wsf8{word-spacing:3.586536px;}
.ws41{word-spacing:3.600003px;}
.ws8{word-spacing:3.646312px;}
.ws16{word-spacing:3.665458px;}
.ws43{word-spacing:3.730912px;}
.wsbc{word-spacing:3.796367px;}
.wseb{word-spacing:3.825638px;}
.ws8e{word-spacing:3.861821px;}
.ws53{word-spacing:3.926058px;}
.ws56{word-spacing:3.927276px;}
.ws55{word-spacing:3.947732px;}
.ws52{word-spacing:3.953732px;}
.ws1f{word-spacing:3.992731px;}
.wsa0{word-spacing:4.058185px;}
.wsd4{word-spacing:4.123640px;}
.wsb6{word-spacing:4.189094px;}
.ws35{word-spacing:4.254549px;}
.ws10c{word-spacing:4.303843px;}
.ws79{word-spacing:4.320004px;}
.wsf3{word-spacing:4.363619px;}
.ws1e{word-spacing:4.385458px;}
.ws34{word-spacing:4.450913px;}
.ws108{word-spacing:4.483170px;}
.ws8c{word-spacing:4.516367px;}
.ws66{word-spacing:4.581822px;}
.ws13{word-spacing:4.647277px;}
.ws38{word-spacing:4.712731px;}
.ws32{word-spacing:4.778186px;}
.ws3b{word-spacing:4.909095px;}
.wse7{word-spacing:4.961375px;}
.wsb2{word-spacing:5.040004px;}
.wsd{word-spacing:5.105459px;}
.wsba{word-spacing:5.170913px;}
.ws4b{word-spacing:5.236368px;}
.ws22{word-spacing:5.301823px;}
.ws3a{word-spacing:5.367277px;}
.ws7a{word-spacing:5.432732px;}
.ws75{word-spacing:5.498186px;}
.ws76{word-spacing:5.563641px;}
.ws95{word-spacing:5.629096px;}
.wsb5{word-spacing:5.694550px;}
.ws4a{word-spacing:5.760005px;}
.wse9{word-spacing:5.795308px;}
.ws10b{word-spacing:5.798233px;}
.ws11{word-spacing:5.825459px;}
.ws3c{word-spacing:5.956369px;}
.ws4{word-spacing:6.037336px;}
.wsf0{word-spacing:6.091327px;}
.wsea{word-spacing:6.097111px;}
.wsda{word-spacing:6.133776px;}
.ws85{word-spacing:6.218187px;}
.ws63{word-spacing:6.283642px;}
.ws48{word-spacing:6.349096px;}
.ws91{word-spacing:6.414551px;}
.ws29{word-spacing:6.545460px;}
.wsbd{word-spacing:6.610915px;}
.ws3d{word-spacing:6.676369px;}
.wsb7{word-spacing:6.741824px;}
.wsb0{word-spacing:6.938188px;}
.wsb4{word-spacing:7.003642px;}
.ws1b{word-spacing:7.069097px;}
.wsdc{word-spacing:7.113296px;}
.wsc8{word-spacing:7.134551px;}
.wsa7{word-spacing:7.200006px;}
.ws100{word-spacing:7.232848px;}
.ws9{word-spacing:7.591501px;}
.wsce{word-spacing:7.592734px;}
.wsc9{word-spacing:7.658188px;}
.ws99{word-spacing:7.789097px;}
.ws8d{word-spacing:7.920007px;}
.ws9f{word-spacing:7.985461px;}
.ws9d{word-spacing:7.991908px;}
.wscd{word-spacing:8.050916px;}
.wsab{word-spacing:8.116370px;}
.wsa8{word-spacing:8.181825px;}
.wsd8{word-spacing:8.189257px;}
.ws7b{word-spacing:8.247280px;}
.ws104{word-spacing:8.308808px;}
.ws14{word-spacing:8.312734px;}
.ws97{word-spacing:8.378189px;}
.wscc{word-spacing:8.443643px;}
.ws8a{word-spacing:8.640007px;}
.wscf{word-spacing:8.901826px;}
.ws9c{word-spacing:9.032735px;}
.ws5{word-spacing:9.205442px;}
.wsa3{word-spacing:9.294553px;}
.wsa4{word-spacing:9.360008px;}
.ws50{word-spacing:9.449732px;}
.ws4e{word-spacing:9.490917px;}
.wsa6{word-spacing:9.752735px;}
.ws2f{word-spacing:9.818190px;}
.ws96{word-spacing:10.276372px;}
.wse3{word-spacing:10.341133px;}
.wsa5{word-spacing:10.341827px;}
.wsf9{word-spacing:10.781602px;}
.wsf7{word-spacing:12.791978px;}
.wsf6{word-spacing:12.851754px;}
.ws59{word-spacing:14.087692px;}
.ws5a{word-spacing:14.090313px;}
.wsc2{word-spacing:14.471495px;}
.wsb9{word-spacing:15.227692px;}
.wsa1{word-spacing:15.331378px;}
.wsbb{word-spacing:16.259495px;}
.ws6f{word-spacing:16.460301px;}
.wsc0{word-spacing:16.901495px;}
.wsb1{word-spacing:17.189692px;}
.ws6d{word-spacing:17.369601px;}
.wsc5{word-spacing:17.423692px;}
.ws107{word-spacing:17.753353px;}
.ws44{word-spacing:17.861069px;}
.wsae{word-spacing:18.029692px;}
.ws92{word-spacing:19.124743px;}
.ws93{word-spacing:19.138108px;}
.ws5b{word-spacing:19.574544px;}
.ws5f{word-spacing:19.583067px;}
.wsad{word-spacing:19.852193px;}
.ws57{word-spacing:20.257444px;}
.ws5d{word-spacing:20.468313px;}
.ws60{word-spacing:20.531692px;}
.wsaf{word-spacing:20.837692px;}
.ws54{word-spacing:21.149692px;}
.ws3e{word-spacing:21.433223px;}
.ws67{word-spacing:21.743692px;}
.ws64{word-spacing:22.589655px;}
.wsc7{word-spacing:22.877495px;}
.wsc6{word-spacing:23.765692px;}
.ws9e{word-spacing:24.287945px;}
.ws1{word-spacing:25.719808px;}
.ws4f{word-spacing:26.657601px;}
.wsaa{word-spacing:30.810967px;}
.wsa9{word-spacing:30.829117px;}
.wsa{word-spacing:85.991123px;}
.wsb8{word-spacing:1264.917750px;}
._5{margin-left:-9.502901px;}
._2b{margin-left:-8.443643px;}
._1a{margin-left:-7.265461px;}
._1{margin-left:-5.971622px;}
._2{margin-left:-4.303872px;}
._29{margin-left:-3.252101px;}
._0{margin-left:-2.151936px;}
._4{margin-left:-1.075968px;}
._20{width:1.288201px;}
._3{width:2.982806px;}
._2c{width:4.171316px;}
._6{width:5.988278px;}
._1d{width:12.305465px;}
._23{width:13.590558px;}
._14{width:14.603564px;}
._10{width:16.508372px;}
._25{width:17.664676px;}
._15{width:18.720016px;}
._7{width:19.965094px;}
._13{width:21.418908px;}
._c{width:22.712746px;}
._a{width:24.627590px;}
._22{width:25.709845px;}
._9{width:26.839273px;}
._11{width:28.145478px;}
._e{width:29.417810px;}
._17{width:30.763662px;}
._12{width:32.645714px;}
._f{width:34.101847px;}
._d{width:35.991964px;}
._18{width:37.039238px;}
._1f{width:38.470248px;}
._19{width:40.058215px;}
._b{width:41.603818px;}
._24{width:44.014186px;}
._8{width:45.728348px;}
._28{width:48.821066px;}
._16{width:49.999249px;}
._27{width:51.250952px;}
._26{width:52.429135px;}
._1e{width:71.731200px;}
._1c{width:86.077200px;}
._21{width:781.030558px;}
._2a{width:1607.360911px;}
._1b{width:1640.084911px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y6{bottom:79.449000px;}
.y2{bottom:87.669000px;}
.y5{bottom:95.887500px;}
.y1{bottom:104.107500px;}
.y4{bottom:112.326000px;}
.y3{bottom:112.731000px;}
.y2d{bottom:150.676500px;}
.y85{bottom:163.371000px;}
.y15d{bottom:168.609000px;}
.y2c{bottom:171.000000px;}
.y58{bottom:171.001500px;}
.y9d{bottom:171.363000px;}
.y81{bottom:171.570000px;}
.y15c{bottom:186.543000px;}
.y57{bottom:191.325000px;}
.y2b{bottom:191.431500px;}
.y9c{bottom:191.688000px;}
.y80{bottom:191.893500px;}
.y15b{bottom:209.386500px;}
.y56{bottom:211.648500px;}
.y2a{bottom:211.756500px;}
.y9b{bottom:212.011500px;}
.y122{bottom:212.055000px;}
.y7f{bottom:212.217000px;}
.y15a{bottom:227.320500px;}
.y55{bottom:231.972000px;}
.y29{bottom:232.080000px;}
.y121{bottom:232.378500px;}
.y7e{bottom:232.540500px;}
.y9a{bottom:232.698000px;}
.yec{bottom:234.042000px;}
.y159{bottom:250.164000px;}
.y54{bottom:252.295500px;}
.y28{bottom:252.403500px;}
.y120{bottom:252.703500px;}
.y99{bottom:253.021500px;}
.y7d{bottom:253.434000px;}
.yeb{bottom:254.365500px;}
.y158{bottom:268.098000px;}
.y10c{bottom:272.619000px;}
.yc1{bottom:272.620500px;}
.y27{bottom:272.727000px;}
.y11f{bottom:273.027000px;}
.yd4{bottom:273.342000px;}
.y98{bottom:273.345000px;}
.y101{bottom:273.625500px;}
.y7c{bottom:273.757500px;}
.yea{bottom:274.689000px;}
.y157{bottom:286.030500px;}
.y53{bottom:287.866500px;}
.y10b{bottom:292.944000px;}
.yc0{bottom:292.947000px;}
.y26{bottom:293.050500px;}
.yd3{bottom:293.665500px;}
.y97{bottom:293.668500px;}
.y11e{bottom:293.757000px;}
.y100{bottom:293.949000px;}
.y7b{bottom:294.081000px;}
.ye9{bottom:295.014000px;}
.y52{bottom:308.190000px;}
.y156{bottom:308.875500px;}
.y10a{bottom:313.267500px;}
.ybf{bottom:313.270500px;}
.y25{bottom:313.375500px;}
.yd2{bottom:313.990500px;}
.y96{bottom:313.992000px;}
.y11d{bottom:314.080500px;}
.yff{bottom:314.272500px;}
.y7a{bottom:314.404500px;}
.ye8{bottom:315.337500px;}
.y155{bottom:326.808000px;}
.y51{bottom:328.513500px;}
.y134{bottom:333.591000px;}
.ybe{bottom:333.595500px;}
.y24{bottom:333.699000px;}
.yd1{bottom:334.314000px;}
.y95{bottom:334.317000px;}
.yfe{bottom:334.596000px;}
.y79{bottom:334.729500px;}
.ye7{bottom:335.661000px;}
.y182{bottom:343.468500px;}
.y50{bottom:348.837000px;}
.y154{bottom:349.651500px;}
.y109{bottom:350.766000px;}
.y11c{bottom:352.149000px;}
.ybd{bottom:353.919000px;}
.y23{bottom:354.022500px;}
.yd0{bottom:354.637500px;}
.yfd{bottom:354.919500px;}
.y78{bottom:355.053000px;}
.ye6{bottom:355.984500px;}
.y181{bottom:361.401000px;}
.y94{bottom:366.406500px;}
.y153{bottom:367.585500px;}
.y4f{bottom:369.162000px;}
.y133{bottom:370.851000px;}
.ybc{bottom:374.242500px;}
.y22{bottom:374.346000px;}
.ycf{bottom:374.961000px;}
.yfc{bottom:375.244500px;}
.y77{bottom:375.376500px;}
.ye5{bottom:378.378000px;}
.y180{bottom:379.333500px;}
.y4e{bottom:389.485500px;}
.y152{bottom:390.429000px;}
.ybb{bottom:394.566000px;}
.y21{bottom:394.669500px;}
.yce{bottom:395.284500px;}
.yfb{bottom:395.568000px;}
.y76{bottom:395.700000px;}
.ye4{bottom:398.703000px;}
.y17f{bottom:401.749500px;}
.y11b{bottom:407.233500px;}
.y151{bottom:408.363000px;}
.y4d{bottom:409.809000px;}
.y93{bottom:413.409000px;}
.yba{bottom:414.889500px;}
.y20{bottom:414.994500px;}
.ycd{bottom:415.609500px;}
.y75{bottom:416.023500px;}
.yfa{bottom:416.896500px;}
.ye3{bottom:419.026500px;}
.y17e{bottom:419.683500px;}
.y132{bottom:423.271500px;}
.y150{bottom:426.295500px;}
.y11a{bottom:427.557000px;}
.y4c{bottom:430.132500px;}
.y92{bottom:433.732500px;}
.yb9{bottom:435.214500px;}
.y1f{bottom:435.318000px;}
.ycc{bottom:435.933000px;}
.y74{bottom:436.348500px;}
.yf9{bottom:437.220000px;}
.ye2{bottom:439.350000px;}
.y17d{bottom:442.099500px;}
.y131{bottom:443.595000px;}
.y119{bottom:447.882000px;}
.y14f{bottom:449.140500px;}
.y4b{bottom:450.456000px;}
.y91{bottom:454.057500px;}
.yb8{bottom:455.538000px;}
.y1e{bottom:455.749500px;}
.ycb{bottom:456.256500px;}
.y73{bottom:457.240500px;}
.yf8{bottom:457.543500px;}
.ye1{bottom:459.673500px;}
.y17c{bottom:460.032000px;}
.y84{bottom:463.153500px;}
.y130{bottom:463.920000px;}
.y14e{bottom:467.073000px;}
.y118{bottom:468.205500px;}
.y4a{bottom:470.781000px;}
.y90{bottom:474.381000px;}
.yb7{bottom:475.861500px;}
.y1d{bottom:476.073000px;}
.yca{bottom:477.303000px;}
.y72{bottom:477.564000px;}
.yf7{bottom:477.868500px;}
.ye0{bottom:479.997000px;}
.y17b{bottom:482.448000px;}
.y12f{bottom:484.243500px;}
.y117{bottom:488.935500px;}
.y8f{bottom:494.704500px;}
.yb6{bottom:496.185000px;}
.y1c{bottom:496.396500px;}
.yc9{bottom:497.626500px;}
.y71{bottom:497.887500px;}
.yf6{bottom:498.192000px;}
.ydf{bottom:500.322000px;}
.y17a{bottom:500.380500px;}
.y83{bottom:501.135000px;}
.y14d{bottom:502.153500px;}
.y12e{bottom:504.567000px;}
.y49{bottom:506.350500px;}
.y116{bottom:509.260500px;}
.y8e{bottom:515.391000px;}
.yb5{bottom:516.508500px;}
.y1b{bottom:516.720000px;}
.yc8{bottom:517.950000px;}
.y70{bottom:518.212500px;}
.y179{bottom:518.313000px;}
.yde{bottom:520.645500px;}
.y12d{bottom:524.890500px;}
.y48{bottom:526.674000px;}
.y115{bottom:529.584000px;}
.y8d{bottom:535.714500px;}
.yb4{bottom:536.832000px;}
.y1a{bottom:537.045000px;}
.yf5{bottom:537.447000px;}
.yc7{bottom:538.275000px;}
.y6f{bottom:538.536000px;}
.y178{bottom:540.729000px;}
.ydd{bottom:540.969000px;}
.y12c{bottom:545.214000px;}
.y47{bottom:546.997500px;}
.y114{bottom:549.907500px;}
.y8c{bottom:556.038000px;}
.y14c{bottom:556.095000px;}
.yb3{bottom:557.157000px;}
.y19{bottom:557.368500px;}
.yc6{bottom:558.598500px;}
.y177{bottom:558.661500px;}
.y6e{bottom:558.859500px;}
.ydc{bottom:563.362500px;}
.y12b{bottom:565.537500px;}
.y46{bottom:567.322500px;}
.y113{bottom:570.231000px;}
.y8b{bottom:576.363000px;}
.y14b{bottom:576.418500px;}
.y176{bottom:576.594000px;}
.yb2{bottom:577.480500px;}
.y18{bottom:577.692000px;}
.y6d{bottom:579.183000px;}
.ydb{bottom:583.686000px;}
.y12a{bottom:585.862500px;}
.y45{bottom:587.646000px;}
.y112{bottom:590.554500px;}
.yf4{bottom:596.077500px;}
.y8a{bottom:596.686500px;}
.y14a{bottom:596.743500px;}
.yc5{bottom:597.292500px;}
.yb1{bottom:597.804000px;}
.y17{bottom:598.015500px;}
.y175{bottom:599.010000px;}
.y6c{bottom:599.506500px;}
.yda{bottom:604.009500px;}
.y129{bottom:606.186000px;}
.y44{bottom:607.969500px;}
.y111{bottom:610.878000px;}
.yf3{bottom:616.401000px;}
.y174{bottom:616.944000px;}
.y149{bottom:617.067000px;}
.y89{bottom:617.373000px;}
.yb0{bottom:618.127500px;}
.y16{bottom:618.339000px;}
.y6b{bottom:620.400000px;}
.yd9{bottom:624.334500px;}
.y128{bottom:626.509500px;}
.y43{bottom:628.293000px;}
.y110{bottom:631.203000px;}
.y173{bottom:634.876500px;}
.yf2{bottom:636.724500px;}
.y148{bottom:637.390500px;}
.y88{bottom:637.696500px;}
.yaf{bottom:638.455500px;}
.y15{bottom:638.664000px;}
.y6a{bottom:640.723500px;}
.yd8{bottom:644.658000px;}
.y127{bottom:646.833000px;}
.y42{bottom:648.616500px;}
.y10f{bottom:651.526500px;}
.yc4{bottom:654.249000px;}
.yf1{bottom:657.048000px;}
.y172{bottom:657.292500px;}
.y147{bottom:657.714000px;}
.yae{bottom:658.779000px;}
.y14{bottom:658.987500px;}
.y69{bottom:661.047000px;}
.yd7{bottom:664.981500px;}
.y126{bottom:667.156500px;}
.y41{bottom:668.941500px;}
.y10e{bottom:671.850000px;}
.yc3{bottom:674.572500px;}
.y171{bottom:675.225000px;}
.yf0{bottom:677.373000px;}
.y146{bottom:678.037500px;}
.yad{bottom:679.102500px;}
.y68{bottom:681.370500px;}
.yd6{bottom:685.305000px;}
.y125{bottom:687.481500px;}
.y87{bottom:688.291500px;}
.y40{bottom:689.265000px;}
.y108{bottom:692.985000px;}
.y170{bottom:693.157500px;}
.y13{bottom:696.460500px;}
.yef{bottom:697.696500px;}
.y145{bottom:698.362500px;}
.yac{bottom:699.426000px;}
.y67{bottom:701.694000px;}
.y124{bottom:707.805000px;}
.y3f{bottom:709.588500px;}
.y16f{bottom:711.090000px;}
.y107{bottom:713.308500px;}
.yee{bottom:718.020000px;}
.y144{bottom:718.686000px;}
.yab{bottom:719.751000px;}
.y10d{bottom:722.533500px;}
.y66{bottom:722.587500px;}
.yc2{bottom:725.887500px;}
.y3e{bottom:729.912000px;}
.y16e{bottom:733.506000px;}
.y106{bottom:733.632000px;}
.y143{bottom:739.224000px;}
.yd5{bottom:739.314000px;}
.yaa{bottom:740.074500px;}
.y65{bottom:742.911000px;}
.y12{bottom:749.772000px;}
.y3d{bottom:750.235500px;}
.y16d{bottom:751.438500px;}
.y105{bottom:753.955500px;}
.y123{bottom:756.654000px;}
.y142{bottom:759.547500px;}
.ya9{bottom:760.398000px;}
.y64{bottom:763.234500px;}
.y11{bottom:767.704500px;}
.yed{bottom:769.899000px;}
.y16c{bottom:773.854500px;}
.y104{bottom:774.279000px;}
.y141{bottom:779.871000px;}
.ya8{bottom:780.726000px;}
.y63{bottom:783.558000px;}
.y10{bottom:785.637000px;}
.y3c{bottom:785.806500px;}
.y16b{bottom:791.787000px;}
.y103{bottom:794.604000px;}
.y140{bottom:800.196000px;}
.ya7{bottom:801.049500px;}
.yf{bottom:803.569500px;}
.y62{bottom:803.883000px;}
.y3b{bottom:806.130000px;}
.y16a{bottom:809.721000px;}
.y13f{bottom:820.734000px;}
.ya6{bottom:821.373000px;}
.ye{bottom:821.502000px;}
.y61{bottom:824.206500px;}
.y3a{bottom:826.453500px;}
.y169{bottom:832.137000px;}
.yd{bottom:839.436000px;}
.y13e{bottom:841.057500px;}
.ya5{bottom:841.696500px;}
.y102{bottom:842.955000px;}
.y60{bottom:844.530000px;}
.y39{bottom:846.777000px;}
.y168{bottom:850.069500px;}
.yc{bottom:857.368500px;}
.y13d{bottom:861.381000px;}
.ya4{bottom:862.024500px;}
.y82{bottom:862.957500px;}
.y38{bottom:867.102000px;}
.y167{bottom:872.485500px;}
.y5f{bottom:877.029000px;}
.y13c{bottom:881.919000px;}
.ya3{bottom:882.348000px;}
.y37{bottom:887.425500px;}
.y166{bottom:890.418000px;}
.y86{bottom:891.978000px;}
.y13b{bottom:902.242500px;}
.ya2{bottom:902.671500px;}
.y36{bottom:907.749000px;}
.yb{bottom:912.370500px;}
.y165{bottom:912.834000px;}
.y13a{bottom:922.567500px;}
.ya1{bottom:922.995000px;}
.y5e{bottom:925.254000px;}
.y35{bottom:928.072500px;}
.y164{bottom:930.766500px;}
.ya{bottom:933.291000px;}
.y139{bottom:942.891000px;}
.ya0{bottom:943.320000px;}
.y5d{bottom:945.577500px;}
.y34{bottom:948.396000px;}
.y163{bottom:953.182500px;}
.y9{bottom:954.213000px;}
.y138{bottom:963.429000px;}
.y9f{bottom:963.643500px;}
.y5c{bottom:965.901000px;}
.y33{bottom:968.721000px;}
.y162{bottom:971.115000px;}
.y137{bottom:983.752500px;}
.y9e{bottom:983.967000px;}
.y5b{bottom:986.224500px;}
.y161{bottom:989.047500px;}
.y136{bottom:1004.076000px;}
.y32{bottom:1004.290500px;}
.y5a{bottom:1006.549500px;}
.y8{bottom:1007.970000px;}
.y160{bottom:1011.463500px;}
.y135{bottom:1024.399500px;}
.y31{bottom:1024.614000px;}
.y59{bottom:1026.873000px;}
.y15f{bottom:1029.396000px;}
.y7{bottom:1040.845500px;}
.y30{bottom:1044.939000px;}
.y15e{bottom:1047.330000px;}
.y2f{bottom:1065.262500px;}
.y2e{bottom:1119.060000px;}
.h1{height:37.013299px;}
.h6{height:37.283299px;}
.h2{height:40.348800px;}
.h7{height:41.125613px;}
.hf{height:41.419613px;}
.h10{height:41.425613px;}
.h9{height:45.032765px;}
.he{height:45.294583px;}
.ha{height:45.362765px;}
.hd{height:45.425492px;}
.hc{height:49.090950px;}
.h5{height:49.351066px;}
.hb{height:49.637990px;}
.h4{height:49.711066px;}
.h11{height:54.157613px;}
.h8{height:59.565422px;}
.h3{height:71.478341px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:118.842000px;}
.x5{left:125.458500px;}
.xf{left:144.247500px;}
.x1d{left:151.921500px;}
.xe{left:159.751500px;}
.x27{left:171.019500px;}
.x12{left:176.350500px;}
.x1c{left:192.628500px;}
.x25{left:200.574000px;}
.x7{left:225.661500px;}
.x1b{left:237.114000px;}
.x20{left:238.507500px;}
.x6{left:243.352500px;}
.x8{left:254.281500px;}
.x26{left:262.575000px;}
.x1a{left:266.478000px;}
.x10{left:272.316000px;}
.x23{left:291.609000px;}
.x9{left:311.541000px;}
.x19{left:312.604500px;}
.x17{left:333.754500px;}
.xd{left:335.583000px;}
.x16{left:341.470500px;}
.x11{left:350.101500px;}
.x13{left:358.725000px;}
.x18{left:362.826000px;}
.x15{left:368.739000px;}
.x14{left:371.464500px;}
.xb{left:383.098500px;}
.x24{left:405.903000px;}
.x28{left:444.043500px;}
.x21{left:460.273500px;}
.xc{left:469.228500px;}
.x22{left:494.425500px;}
.xa{left:529.458000px;}
.x3{left:562.447500px;}
.x2{left:566.374500px;}
.x1e{left:616.942500px;}
.x1f{left:683.178000px;}
.x4{left:705.775500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.584000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000891pt;}
.lsb{letter-spacing:0.002400pt;}
.lsd{letter-spacing:6.413077pt;}
.lsc{letter-spacing:6.418411pt;}
.ls8{letter-spacing:8.399477pt;}
.ls7{letter-spacing:11.103733pt;}
.ls0{letter-spacing:11.953782pt;}
.ls6{letter-spacing:12.884811pt;}
.ls11{letter-spacing:13.324533pt;}
.ls5{letter-spacing:14.739867pt;}
.ls10{letter-spacing:14.967200pt;}
.lsa{letter-spacing:17.722144pt;}
.lse{letter-spacing:19.127200pt;}
.lsf{letter-spacing:19.132533pt;}
.ls4{letter-spacing:25.054533pt;}
.ls9{letter-spacing:27.444811pt;}
.ls12{letter-spacing:31.441867pt;}
.ls3{letter-spacing:1168.007733pt;}
.ws94{word-spacing:-58.181867pt;}
.ws2{word-spacing:-15.940267pt;}
.ws77{word-spacing:-14.545467pt;}
.wsdb{word-spacing:-13.283467pt;}
.ws61{word-spacing:-3.490912pt;}
.ws8b{word-spacing:-3.432730pt;}
.wsd1{word-spacing:-3.258185pt;}
.wsef{word-spacing:-3.134898pt;}
.ws58{word-spacing:-2.794842pt;}
.ws2a{word-spacing:-2.792730pt;}
.ws82{word-spacing:-2.734548pt;}
.ws40{word-spacing:-2.676366pt;}
.ws23{word-spacing:-2.618184pt;}
.ws47{word-spacing:-2.269093pt;}
.ws24{word-spacing:-2.210911pt;}
.ws4d{word-spacing:-2.152729pt;}
.ws69{word-spacing:-2.036365pt;}
.ws46{word-spacing:-1.978183pt;}
.ws2d{word-spacing:-1.803638pt;}
.ws2b{word-spacing:-1.745456pt;}
.wsbe{word-spacing:-1.687274pt;}
.wsc1{word-spacing:-1.629092pt;}
.ws102{word-spacing:-1.540882pt;}
.ws74{word-spacing:-1.512729pt;}
.ws37{word-spacing:-1.454547pt;}
.ws36{word-spacing:-1.338183pt;}
.wsb3{word-spacing:-1.280001pt;}
.ws78{word-spacing:-1.221819pt;}
.wsd0{word-spacing:-1.163637pt;}
.wsca{word-spacing:-1.105455pt;}
.ws7f{word-spacing:-1.064346pt;}
.ws68{word-spacing:-1.047274pt;}
.wse{word-spacing:-0.989092pt;}
.wsac{word-spacing:-0.930910pt;}
.ws15{word-spacing:-0.872728pt;}
.wsa2{word-spacing:-0.869415pt;}
.ws7d{word-spacing:-0.814546pt;}
.ws20{word-spacing:-0.698182pt;}
.ws30{word-spacing:-0.640001pt;}
.wsfa{word-spacing:-0.637606pt;}
.ws19{word-spacing:-0.581819pt;}
.ws105{word-spacing:-0.478205pt;}
.ws65{word-spacing:-0.407273pt;}
.wse1{word-spacing:-0.318803pt;}
.ws33{word-spacing:-0.290909pt;}
.wse0{word-spacing:-0.265669pt;}
.ws7c{word-spacing:-0.232727pt;}
.ws80{word-spacing:-0.174546pt;}
.ws73{word-spacing:-0.116364pt;}
.wsd5{word-spacing:-0.076513pt;}
.ws51{word-spacing:-0.058182pt;}
.ws3{word-spacing:-0.047821pt;}
.wsd7{word-spacing:-0.004527pt;}
.wsf5{word-spacing:-0.003475pt;}
.ws109{word-spacing:-0.002475pt;}
.wsee{word-spacing:-0.002059pt;}
.wsf2{word-spacing:-0.001593pt;}
.wse6{word-spacing:-0.000297pt;}
.ws0{word-spacing:0.000000pt;}
.ws98{word-spacing:0.001892pt;}
.wsff{word-spacing:0.053134pt;}
.ws88{word-spacing:0.058182pt;}
.ws70{word-spacing:0.116364pt;}
.ws6e{word-spacing:0.154585pt;}
.ws7{word-spacing:0.159402pt;}
.ws6c{word-spacing:0.174546pt;}
.wsc4{word-spacing:0.203064pt;}
.ws6a{word-spacing:0.232727pt;}
.ws71{word-spacing:0.290909pt;}
.wsfc{word-spacing:0.318803pt;}
.ws87{word-spacing:0.349091pt;}
.wsfb{word-spacing:0.371937pt;}
.ws9b{word-spacing:0.407273pt;}
.ws1c{word-spacing:0.465455pt;}
.wsf1{word-spacing:0.478205pt;}
.ws83{word-spacing:0.523637pt;}
.wsbf{word-spacing:0.527918pt;}
.ws26{word-spacing:0.581819pt;}
.wsc3{word-spacing:0.640001pt;}
.ws49{word-spacing:0.698182pt;}
.wsc{word-spacing:0.756364pt;}
.ws27{word-spacing:0.814546pt;}
.wsd3{word-spacing:0.872728pt;}
.wsf4{word-spacing:0.903276pt;}
.wse8{word-spacing:0.956410pt;}
.ws7e{word-spacing:0.986533pt;}
.ws2e{word-spacing:0.989092pt;}
.ws21{word-spacing:1.047274pt;}
.wsd9{word-spacing:1.115811pt;}
.ws1d{word-spacing:1.163637pt;}
.ws8f{word-spacing:1.221819pt;}
.wsfe{word-spacing:1.275213pt;}
.wscb{word-spacing:1.280001pt;}
.wsfd{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.338183pt;}
.wsf{word-spacing:1.396365pt;}
.ws84{word-spacing:1.454547pt;}
.ws10{word-spacing:1.512729pt;}
.wsed{word-spacing:1.647150pt;}
.ws39{word-spacing:1.687274pt;}
.wsec{word-spacing:1.700284pt;}
.ws89{word-spacing:1.803638pt;}
.wse4{word-spacing:1.859685pt;}
.ws90{word-spacing:1.861820pt;}
.ws62{word-spacing:1.920002pt;}
.ws4c{word-spacing:1.978183pt;}
.ws28{word-spacing:2.094547pt;}
.ws9a{word-spacing:2.152729pt;}
.wsd6{word-spacing:2.178489pt;}
.ws17{word-spacing:2.210911pt;}
.ws86{word-spacing:2.269093pt;}
.wse5{word-spacing:2.284756pt;}
.ws25{word-spacing:2.327275pt;}
.wsb{word-spacing:2.385457pt;}
.ws103{word-spacing:2.423449pt;}
.ws42{word-spacing:2.501820pt;}
.ws1a{word-spacing:2.560002pt;}
.ws6{word-spacing:2.603559pt;}
.ws81{word-spacing:2.618184pt;}
.ws10a{word-spacing:2.656693pt;}
.ws18{word-spacing:2.676366pt;}
.wsde{word-spacing:2.709827pt;}
.ws3f{word-spacing:2.734548pt;}
.wsdf{word-spacing:2.762961pt;}
.wsd2{word-spacing:2.792730pt;}
.ws2c{word-spacing:2.850911pt;}
.ws5e{word-spacing:2.909093pt;}
.ws106{word-spacing:2.917159pt;}
.ws5c{word-spacing:2.917251pt;}
.ws12{word-spacing:2.967275pt;}
.ws72{word-spacing:3.025457pt;}
.wse2{word-spacing:3.028630pt;}
.ws101{word-spacing:3.036089pt;}
.ws31{word-spacing:3.083639pt;}
.ws45{word-spacing:3.141821pt;}
.wsdd{word-spacing:3.187815pt;}
.wsf8{word-spacing:3.188032pt;}
.ws41{word-spacing:3.200003pt;}
.ws8{word-spacing:3.241166pt;}
.ws16{word-spacing:3.258185pt;}
.ws43{word-spacing:3.316366pt;}
.wsbc{word-spacing:3.374548pt;}
.wseb{word-spacing:3.400567pt;}
.ws8e{word-spacing:3.432730pt;}
.ws53{word-spacing:3.489829pt;}
.ws56{word-spacing:3.490912pt;}
.ws55{word-spacing:3.509095pt;}
.ws52{word-spacing:3.514428pt;}
.ws1f{word-spacing:3.549094pt;}
.wsa0{word-spacing:3.607276pt;}
.wsd4{word-spacing:3.665458pt;}
.wsb6{word-spacing:3.723639pt;}
.ws35{word-spacing:3.781821pt;}
.ws10c{word-spacing:3.825638pt;}
.ws79{word-spacing:3.840003pt;}
.wsf3{word-spacing:3.878772pt;}
.ws1e{word-spacing:3.898185pt;}
.ws34{word-spacing:3.956367pt;}
.ws108{word-spacing:3.985040pt;}
.ws8c{word-spacing:4.014549pt;}
.ws66{word-spacing:4.072731pt;}
.ws13{word-spacing:4.130913pt;}
.ws38{word-spacing:4.189094pt;}
.ws32{word-spacing:4.247276pt;}
.ws3b{word-spacing:4.363640pt;}
.wse7{word-spacing:4.410111pt;}
.wsb2{word-spacing:4.480004pt;}
.wsd{word-spacing:4.538186pt;}
.wsba{word-spacing:4.596367pt;}
.ws4b{word-spacing:4.654549pt;}
.ws22{word-spacing:4.712731pt;}
.ws3a{word-spacing:4.770913pt;}
.ws7a{word-spacing:4.829095pt;}
.ws75{word-spacing:4.887277pt;}
.ws76{word-spacing:4.945459pt;}
.ws95{word-spacing:5.003641pt;}
.wsb5{word-spacing:5.061822pt;}
.ws4a{word-spacing:5.120004pt;}
.wse9{word-spacing:5.151385pt;}
.ws10b{word-spacing:5.153985pt;}
.ws11{word-spacing:5.178186pt;}
.ws3c{word-spacing:5.294550pt;}
.ws4{word-spacing:5.366521pt;}
.wsf0{word-spacing:5.414513pt;}
.wsea{word-spacing:5.419654pt;}
.wsda{word-spacing:5.452245pt;}
.ws85{word-spacing:5.527277pt;}
.ws63{word-spacing:5.585459pt;}
.ws48{word-spacing:5.643641pt;}
.ws91{word-spacing:5.701823pt;}
.ws29{word-spacing:5.818187pt;}
.wsbd{word-spacing:5.876369pt;}
.ws3d{word-spacing:5.934550pt;}
.wsb7{word-spacing:5.992732pt;}
.wsb0{word-spacing:6.167278pt;}
.wsb4{word-spacing:6.225460pt;}
.ws1b{word-spacing:6.283642pt;}
.wsdc{word-spacing:6.322930pt;}
.wsc8{word-spacing:6.341823pt;}
.wsa7{word-spacing:6.400005pt;}
.ws100{word-spacing:6.429198pt;}
.ws9{word-spacing:6.748001pt;}
.wsce{word-spacing:6.749097pt;}
.wsc9{word-spacing:6.807278pt;}
.ws99{word-spacing:6.923642pt;}
.ws8d{word-spacing:7.040006pt;}
.ws9f{word-spacing:7.098188pt;}
.ws9d{word-spacing:7.103918pt;}
.wscd{word-spacing:7.156370pt;}
.wsab{word-spacing:7.214551pt;}
.wsa8{word-spacing:7.272733pt;}
.wsd8{word-spacing:7.279340pt;}
.ws7b{word-spacing:7.330915pt;}
.ws104{word-spacing:7.385607pt;}
.ws14{word-spacing:7.389097pt;}
.ws97{word-spacing:7.447279pt;}
.wscc{word-spacing:7.505461pt;}
.ws8a{word-spacing:7.680006pt;}
.wscf{word-spacing:7.912734pt;}
.ws9c{word-spacing:8.029098pt;}
.ws5{word-spacing:8.182615pt;}
.wsa3{word-spacing:8.261825pt;}
.wsa4{word-spacing:8.320007pt;}
.ws50{word-spacing:8.399762pt;}
.ws4e{word-spacing:8.436371pt;}
.wsa6{word-spacing:8.669098pt;}
.ws2f{word-spacing:8.727280pt;}
.ws96{word-spacing:9.134553pt;}
.wse3{word-spacing:9.192118pt;}
.wsa5{word-spacing:9.192735pt;}
.wsf9{word-spacing:9.583646pt;}
.wsf7{word-spacing:11.370647pt;}
.wsf6{word-spacing:11.423781pt;}
.ws59{word-spacing:12.522393pt;}
.ws5a{word-spacing:12.524723pt;}
.wsc2{word-spacing:12.863551pt;}
.wsb9{word-spacing:13.535726pt;}
.wsa1{word-spacing:13.627892pt;}
.wsbb{word-spacing:14.452885pt;}
.ws6f{word-spacing:14.631379pt;}
.wsc0{word-spacing:15.023551pt;}
.wsb1{word-spacing:15.279726pt;}
.ws6d{word-spacing:15.439646pt;}
.wsc5{word-spacing:15.487726pt;}
.ws107{word-spacing:15.780758pt;}
.ws44{word-spacing:15.876506pt;}
.wsae{word-spacing:16.026393pt;}
.ws92{word-spacing:16.999772pt;}
.ws93{word-spacing:17.011652pt;}
.ws5b{word-spacing:17.399594pt;}
.ws5f{word-spacing:17.407171pt;}
.wsad{word-spacing:17.646393pt;}
.ws57{word-spacing:18.006617pt;}
.ws5d{word-spacing:18.194056pt;}
.ws60{word-spacing:18.250393pt;}
.wsaf{word-spacing:18.522393pt;}
.ws54{word-spacing:18.799726pt;}
.ws3e{word-spacing:19.051754pt;}
.ws67{word-spacing:19.327726pt;}
.ws64{word-spacing:20.079693pt;}
.wsc7{word-spacing:20.335551pt;}
.wsc6{word-spacing:21.125059pt;}
.ws9e{word-spacing:21.589285pt;}
.ws1{word-spacing:22.862051pt;}
.ws4f{word-spacing:23.695646pt;}
.wsaa{word-spacing:27.387526pt;}
.wsa9{word-spacing:27.403659pt;}
.wsa{word-spacing:76.436554pt;}
.wsb8{word-spacing:1124.371333pt;}
._5{margin-left:-8.447023pt;}
._2b{margin-left:-7.505461pt;}
._1a{margin-left:-6.458187pt;}
._1{margin-left:-5.308109pt;}
._2{margin-left:-3.825664pt;}
._29{margin-left:-2.890757pt;}
._0{margin-left:-1.912832pt;}
._4{margin-left:-0.956416pt;}
._20{width:1.145068pt;}
._3{width:2.651383pt;}
._2c{width:3.707837pt;}
._6{width:5.322914pt;}
._1d{width:10.938191pt;}
._23{width:12.080496pt;}
._14{width:12.980946pt;}
._10{width:14.674109pt;}
._25{width:15.701934pt;}
._15{width:16.640014pt;}
._7{width:17.746750pt;}
._13{width:19.039029pt;}
._c{width:20.189108pt;}
._a{width:21.891191pt;}
._22{width:22.853195pt;}
._9{width:23.857132pt;}
._11{width:25.018203pt;}
._e{width:26.149164pt;}
._17{width:27.345477pt;}
._12{width:29.018412pt;}
._f{width:30.312753pt;}
._d{width:31.992857pt;}
._18{width:32.923767pt;}
._1f{width:34.195776pt;}
._19{width:35.607302pt;}
._b{width:36.981171pt;}
._24{width:39.123721pt;}
._8{width:40.647421pt;}
._28{width:43.396503pt;}
._16{width:44.443777pt;}
._27{width:45.556402pt;}
._26{width:46.603675pt;}
._1e{width:63.761067pt;}
._1c{width:76.513067pt;}
._21{width:694.249385pt;}
._2a{width:1428.765254pt;}
._1b{width:1457.853254pt;}
.fs6{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:70.621333pt;}
.y2{bottom:77.928000pt;}
.y5{bottom:85.233333pt;}
.y1{bottom:92.540000pt;}
.y4{bottom:99.845333pt;}
.y3{bottom:100.205333pt;}
.y2d{bottom:133.934667pt;}
.y85{bottom:145.218667pt;}
.y15d{bottom:149.874667pt;}
.y2c{bottom:152.000000pt;}
.y58{bottom:152.001333pt;}
.y9d{bottom:152.322667pt;}
.y81{bottom:152.506667pt;}
.y15c{bottom:165.816000pt;}
.y57{bottom:170.066667pt;}
.y2b{bottom:170.161333pt;}
.y9c{bottom:170.389333pt;}
.y80{bottom:170.572000pt;}
.y15b{bottom:186.121333pt;}
.y56{bottom:188.132000pt;}
.y2a{bottom:188.228000pt;}
.y9b{bottom:188.454667pt;}
.y122{bottom:188.493333pt;}
.y7f{bottom:188.637333pt;}
.y15a{bottom:202.062667pt;}
.y55{bottom:206.197333pt;}
.y29{bottom:206.293333pt;}
.y121{bottom:206.558667pt;}
.y7e{bottom:206.702667pt;}
.y9a{bottom:206.842667pt;}
.yec{bottom:208.037333pt;}
.y159{bottom:222.368000pt;}
.y54{bottom:224.262667pt;}
.y28{bottom:224.358667pt;}
.y120{bottom:224.625333pt;}
.y99{bottom:224.908000pt;}
.y7d{bottom:225.274667pt;}
.yeb{bottom:226.102667pt;}
.y158{bottom:238.309333pt;}
.y10c{bottom:242.328000pt;}
.yc1{bottom:242.329333pt;}
.y27{bottom:242.424000pt;}
.y11f{bottom:242.690667pt;}
.yd4{bottom:242.970667pt;}
.y98{bottom:242.973333pt;}
.y101{bottom:243.222667pt;}
.y7c{bottom:243.340000pt;}
.yea{bottom:244.168000pt;}
.y157{bottom:254.249333pt;}
.y53{bottom:255.881333pt;}
.y10b{bottom:260.394667pt;}
.yc0{bottom:260.397333pt;}
.y26{bottom:260.489333pt;}
.yd3{bottom:261.036000pt;}
.y97{bottom:261.038667pt;}
.y11e{bottom:261.117333pt;}
.y100{bottom:261.288000pt;}
.y7b{bottom:261.405333pt;}
.ye9{bottom:262.234667pt;}
.y52{bottom:273.946667pt;}
.y156{bottom:274.556000pt;}
.y10a{bottom:278.460000pt;}
.ybf{bottom:278.462667pt;}
.y25{bottom:278.556000pt;}
.yd2{bottom:279.102667pt;}
.y96{bottom:279.104000pt;}
.y11d{bottom:279.182667pt;}
.yff{bottom:279.353333pt;}
.y7a{bottom:279.470667pt;}
.ye8{bottom:280.300000pt;}
.y155{bottom:290.496000pt;}
.y51{bottom:292.012000pt;}
.y134{bottom:296.525333pt;}
.ybe{bottom:296.529333pt;}
.y24{bottom:296.621333pt;}
.yd1{bottom:297.168000pt;}
.y95{bottom:297.170667pt;}
.yfe{bottom:297.418667pt;}
.y79{bottom:297.537333pt;}
.ye7{bottom:298.365333pt;}
.y182{bottom:305.305333pt;}
.y50{bottom:310.077333pt;}
.y154{bottom:310.801333pt;}
.y109{bottom:311.792000pt;}
.y11c{bottom:313.021333pt;}
.ybd{bottom:314.594667pt;}
.y23{bottom:314.686667pt;}
.yd0{bottom:315.233333pt;}
.yfd{bottom:315.484000pt;}
.y78{bottom:315.602667pt;}
.ye6{bottom:316.430667pt;}
.y181{bottom:321.245333pt;}
.y94{bottom:325.694667pt;}
.y153{bottom:326.742667pt;}
.y4f{bottom:328.144000pt;}
.y133{bottom:329.645333pt;}
.ybc{bottom:332.660000pt;}
.y22{bottom:332.752000pt;}
.ycf{bottom:333.298667pt;}
.yfc{bottom:333.550667pt;}
.y77{bottom:333.668000pt;}
.ye5{bottom:336.336000pt;}
.y180{bottom:337.185333pt;}
.y4e{bottom:346.209333pt;}
.y152{bottom:347.048000pt;}
.ybb{bottom:350.725333pt;}
.y21{bottom:350.817333pt;}
.yce{bottom:351.364000pt;}
.yfb{bottom:351.616000pt;}
.y76{bottom:351.733333pt;}
.ye4{bottom:354.402667pt;}
.y17f{bottom:357.110667pt;}
.y11b{bottom:361.985333pt;}
.y151{bottom:362.989333pt;}
.y4d{bottom:364.274667pt;}
.y93{bottom:367.474667pt;}
.yba{bottom:368.790667pt;}
.y20{bottom:368.884000pt;}
.ycd{bottom:369.430667pt;}
.y75{bottom:369.798667pt;}
.yfa{bottom:370.574667pt;}
.ye3{bottom:372.468000pt;}
.y17e{bottom:373.052000pt;}
.y132{bottom:376.241333pt;}
.y150{bottom:378.929333pt;}
.y11a{bottom:380.050667pt;}
.y4c{bottom:382.340000pt;}
.y92{bottom:385.540000pt;}
.yb9{bottom:386.857333pt;}
.y1f{bottom:386.949333pt;}
.ycc{bottom:387.496000pt;}
.y74{bottom:387.865333pt;}
.yf9{bottom:388.640000pt;}
.ye2{bottom:390.533333pt;}
.y17d{bottom:392.977333pt;}
.y131{bottom:394.306667pt;}
.y119{bottom:398.117333pt;}
.y14f{bottom:399.236000pt;}
.y4b{bottom:400.405333pt;}
.y91{bottom:403.606667pt;}
.yb8{bottom:404.922667pt;}
.y1e{bottom:405.110667pt;}
.ycb{bottom:405.561333pt;}
.y73{bottom:406.436000pt;}
.yf8{bottom:406.705333pt;}
.ye1{bottom:408.598667pt;}
.y17c{bottom:408.917333pt;}
.y84{bottom:411.692000pt;}
.y130{bottom:412.373333pt;}
.y14e{bottom:415.176000pt;}
.y118{bottom:416.182667pt;}
.y4a{bottom:418.472000pt;}
.y90{bottom:421.672000pt;}
.yb7{bottom:422.988000pt;}
.y1d{bottom:423.176000pt;}
.yca{bottom:424.269333pt;}
.y72{bottom:424.501333pt;}
.yf7{bottom:424.772000pt;}
.ye0{bottom:426.664000pt;}
.y17b{bottom:428.842667pt;}
.y12f{bottom:430.438667pt;}
.y117{bottom:434.609333pt;}
.y8f{bottom:439.737333pt;}
.yb6{bottom:441.053333pt;}
.y1c{bottom:441.241333pt;}
.yc9{bottom:442.334667pt;}
.y71{bottom:442.566667pt;}
.yf6{bottom:442.837333pt;}
.ydf{bottom:444.730667pt;}
.y17a{bottom:444.782667pt;}
.y83{bottom:445.453333pt;}
.y14d{bottom:446.358667pt;}
.y12e{bottom:448.504000pt;}
.y49{bottom:450.089333pt;}
.y116{bottom:452.676000pt;}
.y8e{bottom:458.125333pt;}
.yb5{bottom:459.118667pt;}
.y1b{bottom:459.306667pt;}
.yc8{bottom:460.400000pt;}
.y70{bottom:460.633333pt;}
.y179{bottom:460.722667pt;}
.yde{bottom:462.796000pt;}
.y12d{bottom:466.569333pt;}
.y48{bottom:468.154667pt;}
.y115{bottom:470.741333pt;}
.y8d{bottom:476.190667pt;}
.yb4{bottom:477.184000pt;}
.y1a{bottom:477.373333pt;}
.yf5{bottom:477.730667pt;}
.yc7{bottom:478.466667pt;}
.y6f{bottom:478.698667pt;}
.y178{bottom:480.648000pt;}
.ydd{bottom:480.861333pt;}
.y12c{bottom:484.634667pt;}
.y47{bottom:486.220000pt;}
.y114{bottom:488.806667pt;}
.y8c{bottom:494.256000pt;}
.y14c{bottom:494.306667pt;}
.yb3{bottom:495.250667pt;}
.y19{bottom:495.438667pt;}
.yc6{bottom:496.532000pt;}
.y177{bottom:496.588000pt;}
.y6e{bottom:496.764000pt;}
.ydc{bottom:500.766667pt;}
.y12b{bottom:502.700000pt;}
.y46{bottom:504.286667pt;}
.y113{bottom:506.872000pt;}
.y8b{bottom:512.322667pt;}
.y14b{bottom:512.372000pt;}
.y176{bottom:512.528000pt;}
.yb2{bottom:513.316000pt;}
.y18{bottom:513.504000pt;}
.y6d{bottom:514.829333pt;}
.ydb{bottom:518.832000pt;}
.y12a{bottom:520.766667pt;}
.y45{bottom:522.352000pt;}
.y112{bottom:524.937333pt;}
.yf4{bottom:529.846667pt;}
.y8a{bottom:530.388000pt;}
.y14a{bottom:530.438667pt;}
.yc5{bottom:530.926667pt;}
.yb1{bottom:531.381333pt;}
.y17{bottom:531.569333pt;}
.y175{bottom:532.453333pt;}
.y6c{bottom:532.894667pt;}
.yda{bottom:536.897333pt;}
.y129{bottom:538.832000pt;}
.y44{bottom:540.417333pt;}
.y111{bottom:543.002667pt;}
.yf3{bottom:547.912000pt;}
.y174{bottom:548.394667pt;}
.y149{bottom:548.504000pt;}
.y89{bottom:548.776000pt;}
.yb0{bottom:549.446667pt;}
.y16{bottom:549.634667pt;}
.y6b{bottom:551.466667pt;}
.yd9{bottom:554.964000pt;}
.y128{bottom:556.897333pt;}
.y43{bottom:558.482667pt;}
.y110{bottom:561.069333pt;}
.y173{bottom:564.334667pt;}
.yf2{bottom:565.977333pt;}
.y148{bottom:566.569333pt;}
.y88{bottom:566.841333pt;}
.yaf{bottom:567.516000pt;}
.y15{bottom:567.701333pt;}
.y6a{bottom:569.532000pt;}
.yd8{bottom:573.029333pt;}
.y127{bottom:574.962667pt;}
.y42{bottom:576.548000pt;}
.y10f{bottom:579.134667pt;}
.yc4{bottom:581.554667pt;}
.yf1{bottom:584.042667pt;}
.y172{bottom:584.260000pt;}
.y147{bottom:584.634667pt;}
.yae{bottom:585.581333pt;}
.y14{bottom:585.766667pt;}
.y69{bottom:587.597333pt;}
.yd7{bottom:591.094667pt;}
.y126{bottom:593.028000pt;}
.y41{bottom:594.614667pt;}
.y10e{bottom:597.200000pt;}
.yc3{bottom:599.620000pt;}
.y171{bottom:600.200000pt;}
.yf0{bottom:602.109333pt;}
.y146{bottom:602.700000pt;}
.yad{bottom:603.646667pt;}
.y68{bottom:605.662667pt;}
.yd6{bottom:609.160000pt;}
.y125{bottom:611.094667pt;}
.y87{bottom:611.814667pt;}
.y40{bottom:612.680000pt;}
.y108{bottom:615.986667pt;}
.y170{bottom:616.140000pt;}
.y13{bottom:619.076000pt;}
.yef{bottom:620.174667pt;}
.y145{bottom:620.766667pt;}
.yac{bottom:621.712000pt;}
.y67{bottom:623.728000pt;}
.y124{bottom:629.160000pt;}
.y3f{bottom:630.745333pt;}
.y16f{bottom:632.080000pt;}
.y107{bottom:634.052000pt;}
.yee{bottom:638.240000pt;}
.y144{bottom:638.832000pt;}
.yab{bottom:639.778667pt;}
.y10d{bottom:642.252000pt;}
.y66{bottom:642.300000pt;}
.yc2{bottom:645.233333pt;}
.y3e{bottom:648.810667pt;}
.y16e{bottom:652.005333pt;}
.y106{bottom:652.117333pt;}
.y143{bottom:657.088000pt;}
.yd5{bottom:657.168000pt;}
.yaa{bottom:657.844000pt;}
.y65{bottom:660.365333pt;}
.y12{bottom:666.464000pt;}
.y3d{bottom:666.876000pt;}
.y16d{bottom:667.945333pt;}
.y105{bottom:670.182667pt;}
.y123{bottom:672.581333pt;}
.y142{bottom:675.153333pt;}
.ya9{bottom:675.909333pt;}
.y64{bottom:678.430667pt;}
.y11{bottom:682.404000pt;}
.yed{bottom:684.354667pt;}
.y16c{bottom:687.870667pt;}
.y104{bottom:688.248000pt;}
.y141{bottom:693.218667pt;}
.ya8{bottom:693.978667pt;}
.y63{bottom:696.496000pt;}
.y10{bottom:698.344000pt;}
.y3c{bottom:698.494667pt;}
.y16b{bottom:703.810667pt;}
.y103{bottom:706.314667pt;}
.y140{bottom:711.285333pt;}
.ya7{bottom:712.044000pt;}
.yf{bottom:714.284000pt;}
.y62{bottom:714.562667pt;}
.y3b{bottom:716.560000pt;}
.y16a{bottom:719.752000pt;}
.y13f{bottom:729.541333pt;}
.ya6{bottom:730.109333pt;}
.ye{bottom:730.224000pt;}
.y61{bottom:732.628000pt;}
.y3a{bottom:734.625333pt;}
.y169{bottom:739.677333pt;}
.yd{bottom:746.165333pt;}
.y13e{bottom:747.606667pt;}
.ya5{bottom:748.174667pt;}
.y102{bottom:749.293333pt;}
.y60{bottom:750.693333pt;}
.y39{bottom:752.690667pt;}
.y168{bottom:755.617333pt;}
.yc{bottom:762.105333pt;}
.y13d{bottom:765.672000pt;}
.ya4{bottom:766.244000pt;}
.y82{bottom:767.073333pt;}
.y38{bottom:770.757333pt;}
.y167{bottom:775.542667pt;}
.y5f{bottom:779.581333pt;}
.y13c{bottom:783.928000pt;}
.ya3{bottom:784.309333pt;}
.y37{bottom:788.822667pt;}
.y166{bottom:791.482667pt;}
.y86{bottom:792.869333pt;}
.y13b{bottom:801.993333pt;}
.ya2{bottom:802.374667pt;}
.y36{bottom:806.888000pt;}
.yb{bottom:810.996000pt;}
.y165{bottom:811.408000pt;}
.y13a{bottom:820.060000pt;}
.ya1{bottom:820.440000pt;}
.y5e{bottom:822.448000pt;}
.y35{bottom:824.953333pt;}
.y164{bottom:827.348000pt;}
.ya{bottom:829.592000pt;}
.y139{bottom:838.125333pt;}
.ya0{bottom:838.506667pt;}
.y5d{bottom:840.513333pt;}
.y34{bottom:843.018667pt;}
.y163{bottom:847.273333pt;}
.y9{bottom:848.189333pt;}
.y138{bottom:856.381333pt;}
.y9f{bottom:856.572000pt;}
.y5c{bottom:858.578667pt;}
.y33{bottom:861.085333pt;}
.y162{bottom:863.213333pt;}
.y137{bottom:874.446667pt;}
.y9e{bottom:874.637333pt;}
.y5b{bottom:876.644000pt;}
.y161{bottom:879.153333pt;}
.y136{bottom:892.512000pt;}
.y32{bottom:892.702667pt;}
.y5a{bottom:894.710667pt;}
.y8{bottom:895.973333pt;}
.y160{bottom:899.078667pt;}
.y135{bottom:910.577333pt;}
.y31{bottom:910.768000pt;}
.y59{bottom:912.776000pt;}
.y15f{bottom:915.018667pt;}
.y7{bottom:925.196000pt;}
.y30{bottom:928.834667pt;}
.y15e{bottom:930.960000pt;}
.y2f{bottom:946.900000pt;}
.y2e{bottom:994.720000pt;}
.h1{height:32.900710pt;}
.h6{height:33.140710pt;}
.h2{height:35.865600pt;}
.h7{height:36.556100pt;}
.hf{height:36.817434pt;}
.h10{height:36.822767pt;}
.h9{height:40.029124pt;}
.he{height:40.261852pt;}
.ha{height:40.322458pt;}
.hd{height:40.378215pt;}
.hc{height:43.636400pt;}
.h5{height:43.867614pt;}
.hb{height:44.122658pt;}
.h4{height:44.187614pt;}
.h11{height:48.140100pt;}
.h8{height:52.947042pt;}
.h3{height:63.536303pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:105.637333pt;}
.x5{left:111.518667pt;}
.xf{left:128.220000pt;}
.x1d{left:135.041333pt;}
.xe{left:142.001333pt;}
.x27{left:152.017333pt;}
.x12{left:156.756000pt;}
.x1c{left:171.225333pt;}
.x25{left:178.288000pt;}
.x7{left:200.588000pt;}
.x1b{left:210.768000pt;}
.x20{left:212.006667pt;}
.x6{left:216.313333pt;}
.x8{left:226.028000pt;}
.x26{left:233.400000pt;}
.x1a{left:236.869333pt;}
.x10{left:242.058667pt;}
.x23{left:259.208000pt;}
.x9{left:276.925333pt;}
.x19{left:277.870667pt;}
.x17{left:296.670667pt;}
.xd{left:298.296000pt;}
.x16{left:303.529333pt;}
.x11{left:311.201333pt;}
.x13{left:318.866667pt;}
.x18{left:322.512000pt;}
.x15{left:327.768000pt;}
.x14{left:330.190667pt;}
.xb{left:340.532000pt;}
.x24{left:360.802667pt;}
.x28{left:394.705333pt;}
.x21{left:409.132000pt;}
.xc{left:417.092000pt;}
.x22{left:439.489333pt;}
.xa{left:470.629333pt;}
.x3{left:499.953333pt;}
.x2{left:503.444000pt;}
.x1e{left:548.393333pt;}
.x1f{left:607.269333pt;}
.x4{left:627.356000pt;}
}




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