
    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_8c7e7c99b9db567a71bd896e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5a52a34c75fca41a7acd8a4d.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_e81c43f1b37f6068a514d5ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.664000;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_19d5e08e9eeefcb706c8b50c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_82db8db480715ed50085686b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3d2bb8658a350763777f493.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_31c1f64549c99c482855bf9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec2d1fb28071700b026865bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_70a17b03b4df82ecf647e28a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_d7b19dd7171fa394d7398faa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_17d45c48b60383c65e74680e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.635000;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_8662a20c34339dcf50f52176.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;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_ce5f7c7411aa866c8943836f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.049000;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_a8450a1d6c0dda1f7fc17272.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.634000;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_eb648ec19d25503fb103bd3c.woff2')format("woff");}.fff{font-family:fff;line-height:0.636000;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_b59e8b72f00a4f087932476c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:31.470000px;}
.v5{vertical-align:40.440000px;}
.v4{vertical-align:84.282000px;}
.v7{vertical-align:125.286000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000065px;}
.ls7{letter-spacing:0.000564px;}
.lsb{letter-spacing:0.001405px;}
.ls9{letter-spacing:9.963181px;}
.ls8{letter-spacing:10.160525px;}
.lsd{letter-spacing:13.276287px;}
.ls14{letter-spacing:13.282287px;}
.ls1c{letter-spacing:17.962896px;}
.ls4{letter-spacing:19.590648px;}
.ls1d{letter-spacing:19.844823px;}
.lsa{letter-spacing:19.929031px;}
.ls0{letter-spacing:22.910525px;}
.ls18{letter-spacing:23.368896px;}
.ls19{letter-spacing:23.464896px;}
.lsf{letter-spacing:23.597915px;}
.ls1b{letter-spacing:23.828823px;}
.ls1a{letter-spacing:25.346823px;}
.ls13{letter-spacing:25.457915px;}
.lsc{letter-spacing:27.083915px;}
.ls16{letter-spacing:29.333915px;}
.ls11{letter-spacing:29.513915px;}
.ls17{letter-spacing:29.889030px;}
.ls1{letter-spacing:30.630532px;}
.ls2{letter-spacing:30.636532px;}
.ls10{letter-spacing:32.188287px;}
.ls15{letter-spacing:33.245915px;}
.lse{letter-spacing:35.680287px;}
.ls5{letter-spacing:37.767181px;}
.ls12{letter-spacing:38.104287px;}
.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;}
}
.ws29{word-spacing:-16.605662px;}
.ws12{word-spacing:-15.359443px;}
.ws41{word-spacing:-5.828002px;}
.ws7f{word-spacing:-2.976825px;}
.ws3d{word-spacing:-2.917049px;}
.wsc7{word-spacing:-2.857274px;}
.ws43{word-spacing:-2.677947px;}
.ws54{word-spacing:-2.618171px;}
.ws1b{word-spacing:-2.498620px;}
.ws80{word-spacing:-2.139966px;}
.ws85{word-spacing:-1.960640px;}
.ws8{word-spacing:-1.909843px;}
.ws6f{word-spacing:-1.900864px;}
.ws14{word-spacing:-1.841088px;}
.ws68{word-spacing:-1.661762px;}
.ws6d{word-spacing:-1.303108px;}
.wsc9{word-spacing:-1.243332px;}
.ws3e{word-spacing:-1.064006px;}
.ws20{word-spacing:-0.944454px;}
.ws67{word-spacing:-0.884679px;}
.wsc3{word-spacing:-0.824903px;}
.ws28{word-spacing:-0.705352px;}
.wsa{word-spacing:-0.618682px;}
.ws40{word-spacing:-0.466250px;}
.ws36{word-spacing:-0.227147px;}
.ws66{word-spacing:-0.167372px;}
.ws34{word-spacing:-0.059776px;}
.wsad{word-spacing:-0.053798px;}
.ws42{word-spacing:-0.041843px;}
.ws23{word-spacing:0.000000px;}
.ws62{word-spacing:0.011955px;}
.ws1f{word-spacing:0.071731px;}
.ws74{word-spacing:0.191282px;}
.ws6e{word-spacing:0.310833px;}
.ws55{word-spacing:0.430384px;}
.wscf{word-spacing:0.490160px;}
.wsdb{word-spacing:0.511085px;}
.ws30{word-spacing:0.549936px;}
.ws90{word-spacing:0.609711px;}
.ws5d{word-spacing:0.729262px;}
.wse4{word-spacing:0.780077px;}
.wsbd{word-spacing:0.789038px;}
.ws26{word-spacing:0.848814px;}
.ws3b{word-spacing:0.968365px;}
.wsb7{word-spacing:1.028140px;}
.wsd{word-spacing:1.049069px;}
.ws35{word-spacing:1.087916px;}
.wsea{word-spacing:1.102867px;}
.ws18{word-spacing:1.207467px;}
.ws63{word-spacing:1.267243px;}
.ws75{word-spacing:1.327018px;}
.wsc2{word-spacing:1.353892px;}
.ws4a{word-spacing:1.364915px;}
.ws72{word-spacing:1.371325px;}
.wsa6{word-spacing:1.374125px;}
.wsc5{word-spacing:1.376129px;}
.wsa9{word-spacing:1.386794px;}
.wsae{word-spacing:1.388913px;}
.wsc6{word-spacing:1.389178px;}
.wsd5{word-spacing:1.446570px;}
.ws5f{word-spacing:1.566121px;}
.wsd7{word-spacing:1.587053px;}
.wsdf{word-spacing:1.694650px;}
.ws1c{word-spacing:1.745448px;}
.ws81{word-spacing:1.864999px;}
.ws9c{word-spacing:1.924774px;}
.ws9e{word-spacing:1.984550px;}
.ws2d{word-spacing:2.044326px;}
.wsda{word-spacing:2.071238px;}
.ws86{word-spacing:2.163877px;}
.ws69{word-spacing:2.223652px;}
.wsc8{word-spacing:2.283428px;}
.ws31{word-spacing:2.343204px;}
.wsb0{word-spacing:2.402979px;}
.ws77{word-spacing:2.462755px;}
.wse9{word-spacing:2.609222px;}
.ws9b{word-spacing:2.881184px;}
.wsb1{word-spacing:3.000735px;}
.wsf{word-spacing:3.039610px;}
.ws2{word-spacing:3.093408px;}
.ws84{word-spacing:3.239838px;}
.wsdc{word-spacing:3.246603px;}
.ws1{word-spacing:3.299613px;}
.ws46{word-spacing:3.300875px;}
.ws6b{word-spacing:3.319559px;}
.ws79{word-spacing:3.359389px;}
.ws27{word-spacing:3.419164px;}
.ws24{word-spacing:3.538716px;}
.wsb4{word-spacing:3.598491px;}
.ws2b{word-spacing:3.658267px;}
.ws2c{word-spacing:3.777818px;}
.ws22{word-spacing:3.837594px;}
.wse2{word-spacing:3.846586px;}
.ws83{word-spacing:3.897369px;}
.wsb5{word-spacing:3.957145px;}
.ws87{word-spacing:4.016920px;}
.ws2f{word-spacing:4.076696px;}
.ws92{word-spacing:4.136472px;}
.ws93{word-spacing:4.155892px;}
.wse7{word-spacing:4.169376px;}
.ws94{word-spacing:4.196247px;}
.ws3a{word-spacing:4.256023px;}
.ws59{word-spacing:4.375574px;}
.ws89{word-spacing:4.435350px;}
.ws7{word-spacing:4.492166px;}
.ws58{word-spacing:4.794003px;}
.wsa8{word-spacing:4.913554px;}
.ws2e{word-spacing:4.973330px;}
.wsb{word-spacing:5.030150px;}
.ws19{word-spacing:5.092881px;}
.ws5a{word-spacing:5.152657px;}
.ws5{word-spacing:5.245344px;}
.wscb{word-spacing:5.272208px;}
.ws1e{word-spacing:5.451535px;}
.wse3{word-spacing:5.460538px;}
.wseb{word-spacing:5.514336px;}
.ws1a{word-spacing:5.630862px;}
.wsa7{word-spacing:5.750413px;}
.ws5e{word-spacing:5.810188px;}
.ws39{word-spacing:5.929740px;}
.ws6{word-spacing:5.944723px;}
.ws7e{word-spacing:6.049291px;}
.wse5{word-spacing:6.052320px;}
.ws4{word-spacing:6.159917px;}
.ws82{word-spacing:6.168842px;}
.wsb6{word-spacing:6.228618px;}
.ws45{word-spacing:6.348169px;}
.wse8{word-spacing:6.375110px;}
.ws99{word-spacing:6.407944px;}
.ws76{word-spacing:6.527496px;}
.ws4d{word-spacing:6.587271px;}
.wsb3{word-spacing:6.706822px;}
.ws37{word-spacing:6.766598px;}
.ws73{word-spacing:6.826374px;}
.wsc1{word-spacing:6.848141px;}
.ws4e{word-spacing:6.886149px;}
.ws9{word-spacing:6.913094px;}
.ws15{word-spacing:7.005700px;}
.ws53{word-spacing:7.125252px;}
.wsba{word-spacing:7.244803px;}
.wsbe{word-spacing:7.304578px;}
.wsbf{word-spacing:7.364354px;}
.wsaf{word-spacing:7.424130px;}
.wsd2{word-spacing:7.543681px;}
.wsc{word-spacing:7.558675px;}
.wsce{word-spacing:7.603456px;}
.wscd{word-spacing:7.663232px;}
.ws5b{word-spacing:7.723008px;}
.ws98{word-spacing:7.782783px;}
.ws57{word-spacing:7.827667px;}
.wsa1{word-spacing:7.842559px;}
.ws65{word-spacing:7.902334px;}
.ws9f{word-spacing:7.962110px;}
.ws97{word-spacing:8.021886px;}
.ws9d{word-spacing:8.081661px;}
.ws88{word-spacing:8.141437px;}
.ws21{word-spacing:8.201212px;}
.ws91{word-spacing:8.211892px;}
.ws6c{word-spacing:8.320764px;}
.wse0{word-spacing:8.365651px;}
.wsa2{word-spacing:8.380539px;}
.ws56{word-spacing:8.440315px;}
.wscc{word-spacing:8.500090px;}
.ws78{word-spacing:8.559866px;}
.wsd4{word-spacing:8.619642px;}
.ws44{word-spacing:8.679417px;}
.wsd3{word-spacing:8.918520px;}
.wsaa{word-spacing:8.978295px;}
.ws64{word-spacing:9.097846px;}
.ws5c{word-spacing:9.157622px;}
.wse1{word-spacing:9.172627px;}
.ws51{word-spacing:9.217398px;}
.wsb9{word-spacing:9.336949px;}
.ws7a{word-spacing:9.516276px;}
.wsd1{word-spacing:9.635827px;}
.wse{word-spacing:9.656813px;}
.wsca{word-spacing:9.755378px;}
.wsc0{word-spacing:9.922750px;}
.ws17{word-spacing:9.934705px;}
.ws6a{word-spacing:10.173807px;}
.ws4f{word-spacing:10.293358px;}
.wsde{word-spacing:10.409990px;}
.ws25{word-spacing:10.544486px;}
.wsbc{word-spacing:10.589791px;}
.wsb2{word-spacing:10.771563px;}
.ws33{word-spacing:10.831339px;}
.wsa0{word-spacing:11.010666px;}
.ws4b{word-spacing:11.130217px;}
.ws16{word-spacing:11.369319px;}
.ws7b{word-spacing:11.488870px;}
.ws96{word-spacing:11.907300px;}
.ws95{word-spacing:11.967075px;}
.ws50{word-spacing:12.086626px;}
.ws52{word-spacing:12.146402px;}
.ws1d{word-spacing:12.325729px;}
.wsd0{word-spacing:12.624607px;}
.ws11{word-spacing:14.014483px;}
.ws61{word-spacing:16.557506px;}
.ws60{word-spacing:16.567953px;}
.ws70{word-spacing:16.680728px;}
.wsac{word-spacing:16.684821px;}
.wsbb{word-spacing:16.685349px;}
.ws3f{word-spacing:17.275148px;}
.wsd8{word-spacing:18.345254px;}
.ws48{word-spacing:18.366392px;}
.ws8f{word-spacing:18.829314px;}
.ws8d{word-spacing:18.839931px;}
.ws8e{word-spacing:18.847764px;}
.wsd9{word-spacing:19.690214px;}
.ws47{word-spacing:19.862894px;}
.wsab{word-spacing:19.868894px;}
.wsdd{word-spacing:19.905408px;}
.ws49{word-spacing:21.142771px;}
.ws8b{word-spacing:22.316845px;}
.ws8a{word-spacing:22.333869px;}
.ws8c{word-spacing:22.356074px;}
.wse6{word-spacing:22.433933px;}
.ws32{word-spacing:22.834279px;}
.ws4c{word-spacing:22.894055px;}
.ws9a{word-spacing:22.925084px;}
.ws7d{word-spacing:23.790689px;}
.ws38{word-spacing:24.764686px;}
.wsd6{word-spacing:25.892300px;}
.ws2a{word-spacing:26.827469px;}
.wsb8{word-spacing:27.204998px;}
.ws10{word-spacing:27.592038px;}
.ws7c{word-spacing:28.871615px;}
.ws3{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
.wsa3{word-spacing:39.661041px;}
.wsc4{word-spacing:40.385349px;}
.wsa5{word-spacing:44.689041px;}
.wsa4{word-spacing:44.695041px;}
.ws3c{word-spacing:68.682164px;}
.ws13{word-spacing:80.625869px;}
.ws71{word-spacing:199.475526px;}
._3{margin-left:-30.811709px;}
._34{margin-left:-29.089208px;}
._8{margin-left:-27.598590px;}
._6{margin-left:-25.930861px;}
._3e{margin-left:-24.008282px;}
._1{margin-left:-8.091257px;}
._1a{margin-left:-5.819742px;}
._7{margin-left:-4.734259px;}
._2f{margin-left:-3.680501px;}
._2{margin-left:-2.668393px;}
._5{margin-left:-1.613941px;}
._4{width:1.613941px;}
._0{width:2.668393px;}
._c{width:3.722845px;}
._b{width:9.891719px;}
._f{width:16.906973px;}
._e{width:18.436216px;}
._11{width:19.656650px;}
._d{width:21.151040px;}
._a{width:22.752995px;}
._19{width:24.785365px;}
._16{width:26.639403px;}
._13{width:28.491452px;}
._9{width:30.374580px;}
._2e{width:36.623733px;}
._32{width:45.579028px;}
._24{width:47.858512px;}
._3b{width:52.305070px;}
._33{width:55.838383px;}
._2d{width:59.936264px;}
._1c{width:67.295885px;}
._12{width:68.741940px;}
._18{width:69.791100px;}
._3d{width:72.116636px;}
._23{width:77.049535px;}
._10{width:80.697600px;}
._15{width:89.728787px;}
._2c{width:91.010209px;}
._25{width:96.911904px;}
._17{width:106.653763px;}
._20{width:111.001694px;}
._2b{width:120.201231px;}
._22{width:122.272470px;}
._28{width:127.872872px;}
._39{width:132.958280px;}
._1f{width:140.192717px;}
._36{width:147.614901px;}
._27{width:157.063895px;}
._21{width:160.055086px;}
._2a{width:165.424166px;}
._37{width:169.820943px;}
._38{width:175.906566px;}
._29{width:176.926264px;}
._1e{width:185.415652px;}
._26{width:202.286830px;}
._1d{width:204.216570px;}
._30{width:213.091106px;}
._31{width:267.997753px;}
._3c{width:291.314135px;}
._14{width:302.512218px;}
._3a{width:344.326717px;}
._35{width:460.213947px;}
._1b{width:563.494668px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:193.617000px;}
.y25{bottom:211.549500px;}
.y24{bottom:229.482000px;}
.y115{bottom:229.572000px;}
.yd7{bottom:230.751000px;}
.y23{bottom:247.414500px;}
.y114{bottom:247.506000px;}
.y5a{bottom:247.722000px;}
.yd6{bottom:248.683500px;}
.y22{bottom:265.347000px;}
.y113{bottom:265.438500px;}
.y59{bottom:265.654500px;}
.yd5{bottom:266.617500px;}
.y99{bottom:267.355500px;}
.y15a{bottom:276.015000px;}
.y21{bottom:283.279500px;}
.y112{bottom:283.371000px;}
.y58{bottom:283.588500px;}
.yd4{bottom:284.550000px;}
.y134{bottom:284.772000px;}
.y159{bottom:292.453500px;}
.y74{bottom:295.959000px;}
.y20{bottom:301.213500px;}
.y111{bottom:301.303500px;}
.y57{bottom:301.521000px;}
.yd3{bottom:302.482500px;}
.y133{bottom:302.704500px;}
.y158{bottom:308.892000px;}
.y1f{bottom:319.146000px;}
.y110{bottom:319.236000px;}
.y56{bottom:319.453500px;}
.yba{bottom:319.494000px;}
.yf2{bottom:319.735500px;}
.yd2{bottom:320.415000px;}
.y132{bottom:320.637000px;}
.y97{bottom:322.350000px;}
.y157{bottom:325.330500px;}
.y1e{bottom:337.078500px;}
.y10f{bottom:337.168500px;}
.y55{bottom:337.386000px;}
.yb9{bottom:337.428000px;}
.yf1{bottom:337.668000px;}
.yd1{bottom:338.347500px;}
.y131{bottom:338.569500px;}
.y73{bottom:341.515500px;}
.y156{bottom:341.769000px;}
.y38{bottom:351.661500px;}
.y1d{bottom:355.011000px;}
.y10e{bottom:355.102500px;}
.y54{bottom:355.318500px;}
.yb8{bottom:355.360500px;}
.yf0{bottom:355.600500px;}
.yd0{bottom:356.280000px;}
.y130{bottom:356.503500px;}
.y155{bottom:358.207500px;}
.y72{bottom:359.448000px;}
.y1c{bottom:372.943500px;}
.y10d{bottom:373.035000px;}
.y53{bottom:373.252500px;}
.yb7{bottom:373.293000px;}
.yef{bottom:373.533000px;}
.y12f{bottom:374.436000px;}
.y154{bottom:374.644500px;}
.y96{bottom:376.365000px;}
.y71{bottom:377.380500px;}
.y1b{bottom:390.876000px;}
.y10c{bottom:390.967500px;}
.y153{bottom:391.083000px;}
.y52{bottom:391.185000px;}
.yb6{bottom:391.225500px;}
.yee{bottom:391.465500px;}
.y12e{bottom:392.368500px;}
.ycf{bottom:392.515500px;}
.y95{bottom:394.297500px;}
.y70{bottom:395.313000px;}
.y37{bottom:399.121500px;}
.y152{bottom:407.521500px;}
.y1a{bottom:408.810000px;}
.y10b{bottom:408.900000px;}
.y51{bottom:409.117500px;}
.yb5{bottom:409.158000px;}
.yed{bottom:410.293500px;}
.y12d{bottom:410.301000px;}
.y94{bottom:412.230000px;}
.y6f{bottom:413.245500px;}
.y36{bottom:417.054000px;}
.y151{bottom:423.960000px;}
.y19{bottom:426.742500px;}
.y10a{bottom:426.832500px;}
.yb4{bottom:427.440000px;}
.yec{bottom:428.226000px;}
.y12c{bottom:428.233500px;}
.y6e{bottom:431.323500px;}
.y93{bottom:432.000000px;}
.y35{bottom:434.986500px;}
.y150{bottom:440.398500px;}
.y50{bottom:440.544000px;}
.y18{bottom:444.675000px;}
.y109{bottom:444.765000px;}
.yb3{bottom:445.372500px;}
.y12b{bottom:446.167500px;}
.yeb{bottom:447.052500px;}
.y6d{bottom:449.256000px;}
.y92{bottom:449.932500px;}
.y34{bottom:452.920500px;}
.y14f{bottom:456.837000px;}
.y108{bottom:462.699000px;}
.yb2{bottom:463.306500px;}
.y12a{bottom:464.100000px;}
.yea{bottom:464.986500px;}
.y6c{bottom:467.188500px;}
.y91{bottom:467.865000px;}
.y33{bottom:470.853000px;}
.y14e{bottom:473.275500px;}
.y107{bottom:480.631500px;}
.y17{bottom:480.736500px;}
.yb1{bottom:481.239000px;}
.y129{bottom:482.032500px;}
.ye9{bottom:482.919000px;}
.y6b{bottom:485.122500px;}
.y90{bottom:485.797500px;}
.y4f{bottom:486.915000px;}
.y32{bottom:488.785500px;}
.y14d{bottom:489.714000px;}
.yce{bottom:495.949500px;}
.y106{bottom:498.564000px;}
.yb0{bottom:499.171500px;}
.y128{bottom:501.457500px;}
.ye8{bottom:501.745500px;}
.y6a{bottom:503.055000px;}
.y8f{bottom:503.731500px;}
.y4e{bottom:504.847500px;}
.y14c{bottom:506.152500px;}
.y31{bottom:506.718000px;}
.ycd{bottom:512.388000px;}
.y105{bottom:516.496500px;}
.yaf{bottom:517.104000px;}
.y127{bottom:519.390000px;}
.ye7{bottom:519.678000px;}
.y69{bottom:520.987500px;}
.y8e{bottom:521.664000px;}
.y14b{bottom:522.591000px;}
.y4d{bottom:522.780000px;}
.y30{bottom:524.650500px;}
.ycc{bottom:528.825000px;}
.y16{bottom:531.642000px;}
.yae{bottom:535.036500px;}
.y126{bottom:537.322500px;}
.ye6{bottom:537.612000px;}
.y68{bottom:538.920000px;}
.y14a{bottom:539.028000px;}
.y8d{bottom:539.596500px;}
.ycb{bottom:545.263500px;}
.y104{bottom:546.838500px;}
.y15{bottom:548.080500px;}
.yad{bottom:552.969000px;}
.y125{bottom:555.255000px;}
.y149{bottom:555.466500px;}
.y67{bottom:556.998000px;}
.yca{bottom:561.702000px;}
.y2f{bottom:563.145000px;}
.yac{bottom:570.903000px;}
.y148{bottom:571.905000px;}
.y124{bottom:573.187500px;}
.y66{bottom:574.930500px;}
.ye5{bottom:574.960500px;}
.yc9{bottom:578.140500px;}
.y14{bottom:580.996500px;}
.y147{bottom:588.343500px;}
.yab{bottom:588.835500px;}
.y123{bottom:591.120000px;}
.y103{bottom:592.123500px;}
.y4c{bottom:592.314000px;}
.y65{bottom:592.863000px;}
.ye4{bottom:592.893000px;}
.yc8{bottom:595.177500px;}
.y13{bottom:597.435000px;}
.y98{bottom:602.139000px;}
.y146{bottom:604.782000px;}
.yaa{bottom:606.768000px;}
.y4b{bottom:608.752500px;}
.y122{bottom:609.054000px;}
.y102{bottom:610.056000px;}
.y64{bottom:610.795500px;}
.ye3{bottom:610.825500px;}
.yc7{bottom:611.614500px;}
.y8c{bottom:612.105000px;}
.y2e{bottom:613.593000px;}
.y12{bottom:613.873500px;}
.y145{bottom:621.220500px;}
.ya9{bottom:624.700500px;}
.y4a{bottom:625.191000px;}
.y121{bottom:626.986500px;}
.y8b{bottom:628.543500px;}
.y63{bottom:628.729500px;}
.y11{bottom:630.312000px;}
.y2d{bottom:631.525500px;}
.y144{bottom:637.659000px;}
.y49{bottom:641.629500px;}
.yc6{bottom:642.175500px;}
.y120{bottom:644.919000px;}
.y8a{bottom:644.982000px;}
.y62{bottom:646.662000px;}
.y10{bottom:646.750500px;}
.y2c{bottom:649.458000px;}
.ye2{bottom:651.163500px;}
.y143{bottom:654.097500px;}
.ya8{bottom:655.635000px;}
.y48{bottom:658.068000px;}
.y89{bottom:661.419000px;}
.y11f{bottom:662.851500px;}
.yf{bottom:663.189000px;}
.y61{bottom:664.738500px;}
.y2b{bottom:667.390500px;}
.y142{bottom:670.536000px;}
.ya7{bottom:673.569000px;}
.y47{bottom:675.103500px;}
.y88{bottom:677.857500px;}
.y101{bottom:679.156500px;}
.ye{bottom:679.626000px;}
.y11e{bottom:680.784000px;}
.y60{bottom:682.672500px;}
.y2a{bottom:685.324500px;}
.y141{bottom:686.974500px;}
.yc5{bottom:690.975000px;}
.ya6{bottom:691.849500px;}
.y87{bottom:694.296000px;}
.y100{bottom:695.595000px;}
.yd{bottom:696.064500px;}
.y11d{bottom:698.716500px;}
.y5f{bottom:700.605000px;}
.y140{bottom:703.411500px;}
.y46{bottom:706.411500px;}
.yc4{bottom:708.909000px;}
.ya5{bottom:709.783500px;}
.y86{bottom:710.734500px;}
.yc{bottom:712.503000px;}
.yff{bottom:712.630500px;}
.y11c{bottom:716.650500px;}
.y5e{bottom:718.537500px;}
.y13f{bottom:719.850000px;}
.yc3{bottom:726.841500px;}
.y85{bottom:727.173000px;}
.ya4{bottom:728.064000px;}
.yb{bottom:728.941500px;}
.y13e{bottom:736.288500px;}
.y5d{bottom:736.470000px;}
.yfe{bottom:743.190000px;}
.y84{bottom:743.611500px;}
.yc2{bottom:744.774000px;}
.ya{bottom:745.380000px;}
.ya3{bottom:745.998000px;}
.y29{bottom:752.146500px;}
.y13d{bottom:752.727000px;}
.y45{bottom:754.035000px;}
.ye1{bottom:755.337000px;}
.y11b{bottom:759.975000px;}
.y83{bottom:760.050000px;}
.y9{bottom:761.818500px;}
.yc1{bottom:762.706500px;}
.ya2{bottom:764.278500px;}
.y13c{bottom:769.165500px;}
.ye0{bottom:771.775500px;}
.y44{bottom:771.967500px;}
.y82{bottom:776.488500px;}
.ya1{bottom:782.212500px;}
.y13b{bottom:785.604000px;}
.ydf{bottom:788.214000px;}
.yfd{bottom:789.633000px;}
.y43{bottom:789.900000px;}
.y81{bottom:792.927000px;}
.ya0{bottom:800.145000px;}
.y13a{bottom:802.042500px;}
.y5c{bottom:804.025500px;}
.yde{bottom:804.652500px;}
.yfc{bottom:807.567000px;}
.y42{bottom:807.834000px;}
.y80{bottom:809.365500px;}
.y11a{bottom:815.254500px;}
.y139{bottom:818.481000px;}
.y5b{bottom:820.464000px;}
.ydd{bottom:821.091000px;}
.y8{bottom:823.341000px;}
.yfb{bottom:825.499500px;}
.y41{bottom:825.766500px;}
.y7f{bottom:825.804000px;}
.y9f{bottom:831.429000px;}
.y119{bottom:833.187000px;}
.yc0{bottom:834.163500px;}
.ydc{bottom:837.528000px;}
.y7e{bottom:842.241000px;}
.yfa{bottom:843.432000px;}
.y40{bottom:843.699000px;}
.y7{bottom:845.493000px;}
.y9e{bottom:849.361500px;}
.ybf{bottom:850.602000px;}
.y118{bottom:851.119500px;}
.y138{bottom:852.852000px;}
.ydb{bottom:853.966500px;}
.y6{bottom:856.218000px;}
.y7d{bottom:858.679500px;}
.yf9{bottom:861.364500px;}
.y3f{bottom:861.631500px;}
.y9d{bottom:867.294000px;}
.ybe{bottom:867.637500px;}
.y117{bottom:869.053500px;}
.yda{bottom:870.405000px;}
.y5{bottom:872.656500px;}
.y7c{bottom:875.118000px;}
.yf8{bottom:879.297000px;}
.y3e{bottom:879.564000px;}
.ybd{bottom:884.076000px;}
.y9c{bottom:885.226500px;}
.yd9{bottom:887.442000px;}
.y7b{bottom:891.556500px;}
.y4{bottom:894.808500px;}
.y3d{bottom:895.690500px;}
.yf7{bottom:897.229500px;}
.y137{bottom:900.672000px;}
.y9b{bottom:903.160500px;}
.y3c{bottom:905.941500px;}
.y7a{bottom:907.995000px;}
.ybc{bottom:914.637000px;}
.yf6{bottom:915.163500px;}
.yd8{bottom:915.387000px;}
.y136{bottom:918.604500px;}
.y3{bottom:920.415000px;}
.y79{bottom:924.433500px;}
.y3b{bottom:932.010000px;}
.yf5{bottom:933.096000px;}
.y9a{bottom:934.792500px;}
.y135{bottom:936.538500px;}
.y78{bottom:940.872000px;}
.y3a{bottom:949.942500px;}
.yf4{bottom:951.028500px;}
.y116{bottom:957.310500px;}
.y77{bottom:957.907500px;}
.ybb{bottom:963.436500px;}
.y39{bottom:967.876500px;}
.yf3{bottom:968.961000px;}
.y2{bottom:972.403500px;}
.y76{bottom:974.346000px;}
.y28{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.y75{bottom:1004.907000px;}
.y27{bottom:1038.157500px;}
.h3{height:23.850624px;}
.h5{height:33.139814px;}
.h4{height:40.348800px;}
.h8{height:41.723369px;}
.h7{height:44.831700px;}
.h2{height:49.479619px;}
.h6{height:50.211840px;}
.h1{height:60.254040px;}
.h9{height:86.673024px;}
.ha{height:127.677024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:202.147500px;}
.x15{left:206.796000px;}
.x20{left:209.058000px;}
.x1b{left:211.486500px;}
.xb{left:224.563500px;}
.x16{left:227.551500px;}
.x8{left:244.666500px;}
.x13{left:253.029000px;}
.x2{left:256.432500px;}
.xa{left:261.888000px;}
.x1{left:264.504000px;}
.x11{left:283.330500px;}
.x3{left:294.601500px;}
.x14{left:295.674000px;}
.x19{left:310.500000px;}
.x18{left:317.919000px;}
.x5{left:320.847000px;}
.x1a{left:326.311500px;}
.x1d{left:328.512000px;}
.xe{left:334.680000px;}
.x1f{left:336.280500px;}
.x17{left:340.075500px;}
.x4{left:341.712000px;}
.x1c{left:356.977500px;}
.xf{left:359.113500px;}
.x7{left:362.664000px;}
.x10{left:384.601500px;}
.x6{left:394.438500px;}
.x12{left:458.059500px;}
.xd{left:641.142000px;}
.x1e{left:707.064000px;}
.xc{left:713.976000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:27.973333pt;}
.v5{vertical-align:35.946667pt;}
.v4{vertical-align:74.917333pt;}
.v7{vertical-align:111.365333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000058pt;}
.ls7{letter-spacing:0.000501pt;}
.lsb{letter-spacing:0.001249pt;}
.ls9{letter-spacing:8.856161pt;}
.ls8{letter-spacing:9.031578pt;}
.lsd{letter-spacing:11.801144pt;}
.ls14{letter-spacing:11.806477pt;}
.ls1c{letter-spacing:15.967018pt;}
.ls4{letter-spacing:17.413909pt;}
.ls1d{letter-spacing:17.639842pt;}
.lsa{letter-spacing:17.714694pt;}
.ls0{letter-spacing:20.364911pt;}
.ls18{letter-spacing:20.772352pt;}
.ls19{letter-spacing:20.857685pt;}
.lsf{letter-spacing:20.975925pt;}
.ls1b{letter-spacing:21.181176pt;}
.ls1a{letter-spacing:22.530509pt;}
.ls13{letter-spacing:22.629258pt;}
.lsc{letter-spacing:24.074591pt;}
.ls16{letter-spacing:26.074591pt;}
.ls11{letter-spacing:26.234591pt;}
.ls17{letter-spacing:26.568027pt;}
.ls1{letter-spacing:27.227139pt;}
.ls2{letter-spacing:27.232473pt;}
.ls10{letter-spacing:28.611810pt;}
.ls15{letter-spacing:29.551925pt;}
.lse{letter-spacing:31.715810pt;}
.ls5{letter-spacing:33.570827pt;}
.ls12{letter-spacing:33.870477pt;}
.ws29{word-spacing:-14.760588pt;}
.ws12{word-spacing:-13.652838pt;}
.ws41{word-spacing:-5.180446pt;}
.ws7f{word-spacing:-2.646067pt;}
.ws3d{word-spacing:-2.592933pt;}
.wsc7{word-spacing:-2.539799pt;}
.ws43{word-spacing:-2.380397pt;}
.ws54{word-spacing:-2.327263pt;}
.ws1b{word-spacing:-2.220996pt;}
.ws80{word-spacing:-1.902192pt;}
.ws85{word-spacing:-1.742791pt;}
.ws8{word-spacing:-1.697638pt;}
.ws6f{word-spacing:-1.689657pt;}
.ws14{word-spacing:-1.636523pt;}
.ws68{word-spacing:-1.477121pt;}
.ws6d{word-spacing:-1.158318pt;}
.wsc9{word-spacing:-1.105184pt;}
.ws3e{word-spacing:-0.945783pt;}
.ws20{word-spacing:-0.839515pt;}
.ws67{word-spacing:-0.786381pt;}
.wsc3{word-spacing:-0.733247pt;}
.ws28{word-spacing:-0.626980pt;}
.wsa{word-spacing:-0.549939pt;}
.ws40{word-spacing:-0.414444pt;}
.ws36{word-spacing:-0.201909pt;}
.ws66{word-spacing:-0.148775pt;}
.ws34{word-spacing:-0.053134pt;}
.wsad{word-spacing:-0.047821pt;}
.ws42{word-spacing:-0.037194pt;}
.ws23{word-spacing:0.000000pt;}
.ws62{word-spacing:0.010627pt;}
.ws1f{word-spacing:0.063761pt;}
.ws74{word-spacing:0.170028pt;}
.ws6e{word-spacing:0.276296pt;}
.ws55{word-spacing:0.382564pt;}
.wscf{word-spacing:0.435698pt;}
.wsdb{word-spacing:0.454298pt;}
.ws30{word-spacing:0.488832pt;}
.ws90{word-spacing:0.541965pt;}
.ws5d{word-spacing:0.648233pt;}
.wse4{word-spacing:0.693402pt;}
.wsbd{word-spacing:0.701367pt;}
.ws26{word-spacing:0.754501pt;}
.ws3b{word-spacing:0.860769pt;}
.wsb7{word-spacing:0.913903pt;}
.wsd{word-spacing:0.932506pt;}
.ws35{word-spacing:0.967036pt;}
.wsea{word-spacing:0.980326pt;}
.ws18{word-spacing:1.073304pt;}
.ws63{word-spacing:1.126438pt;}
.ws75{word-spacing:1.179572pt;}
.wsc2{word-spacing:1.203459pt;}
.ws4a{word-spacing:1.213257pt;}
.ws72{word-spacing:1.218956pt;}
.wsa6{word-spacing:1.221444pt;}
.wsc5{word-spacing:1.223226pt;}
.wsa9{word-spacing:1.232706pt;}
.wsae{word-spacing:1.234589pt;}
.wsc6{word-spacing:1.234825pt;}
.wsd5{word-spacing:1.285840pt;}
.ws5f{word-spacing:1.392107pt;}
.wsd7{word-spacing:1.410714pt;}
.wsdf{word-spacing:1.506355pt;}
.ws1c{word-spacing:1.551509pt;}
.ws81{word-spacing:1.657777pt;}
.ws9c{word-spacing:1.710911pt;}
.ws9e{word-spacing:1.764044pt;}
.ws2d{word-spacing:1.817178pt;}
.wsda{word-spacing:1.841101pt;}
.ws86{word-spacing:1.923446pt;}
.ws69{word-spacing:1.976580pt;}
.wsc8{word-spacing:2.029714pt;}
.ws31{word-spacing:2.082848pt;}
.wsb0{word-spacing:2.135981pt;}
.ws77{word-spacing:2.189115pt;}
.wse9{word-spacing:2.319309pt;}
.ws9b{word-spacing:2.561052pt;}
.wsb1{word-spacing:2.667320pt;}
.wsf{word-spacing:2.701875pt;}
.ws2{word-spacing:2.749696pt;}
.ws84{word-spacing:2.879856pt;}
.wsdc{word-spacing:2.885869pt;}
.ws1{word-spacing:2.932989pt;}
.ws46{word-spacing:2.934111pt;}
.ws6b{word-spacing:2.950719pt;}
.ws79{word-spacing:2.986123pt;}
.ws27{word-spacing:3.039257pt;}
.ws24{word-spacing:3.145525pt;}
.wsb4{word-spacing:3.198659pt;}
.ws2b{word-spacing:3.251793pt;}
.ws2c{word-spacing:3.358060pt;}
.ws22{word-spacing:3.411194pt;}
.wse2{word-spacing:3.419187pt;}
.ws83{word-spacing:3.464328pt;}
.wsb5{word-spacing:3.517462pt;}
.ws87{word-spacing:3.570596pt;}
.ws2f{word-spacing:3.623730pt;}
.ws92{word-spacing:3.676864pt;}
.ws93{word-spacing:3.694126pt;}
.wse7{word-spacing:3.706112pt;}
.ws94{word-spacing:3.729997pt;}
.ws3a{word-spacing:3.783131pt;}
.ws59{word-spacing:3.889399pt;}
.ws89{word-spacing:3.942533pt;}
.ws7{word-spacing:3.993037pt;}
.ws58{word-spacing:4.261336pt;}
.wsa8{word-spacing:4.367604pt;}
.ws2e{word-spacing:4.420738pt;}
.wsb{word-spacing:4.471245pt;}
.ws19{word-spacing:4.527005pt;}
.ws5a{word-spacing:4.580139pt;}
.ws5{word-spacing:4.662528pt;}
.wscb{word-spacing:4.686407pt;}
.ws1e{word-spacing:4.845809pt;}
.wse3{word-spacing:4.853811pt;}
.wseb{word-spacing:4.901632pt;}
.ws1a{word-spacing:5.005210pt;}
.wsa7{word-spacing:5.111478pt;}
.ws5e{word-spacing:5.164612pt;}
.ws39{word-spacing:5.270880pt;}
.ws6{word-spacing:5.284198pt;}
.ws7e{word-spacing:5.377147pt;}
.wse5{word-spacing:5.379840pt;}
.ws4{word-spacing:5.475482pt;}
.ws82{word-spacing:5.483415pt;}
.wsb6{word-spacing:5.536549pt;}
.ws45{word-spacing:5.642817pt;}
.wse8{word-spacing:5.666765pt;}
.ws99{word-spacing:5.695951pt;}
.ws76{word-spacing:5.802218pt;}
.ws4d{word-spacing:5.855352pt;}
.wsb3{word-spacing:5.961620pt;}
.ws37{word-spacing:6.014754pt;}
.ws73{word-spacing:6.067888pt;}
.wsc1{word-spacing:6.087236pt;}
.ws4e{word-spacing:6.121021pt;}
.ws9{word-spacing:6.144973pt;}
.ws15{word-spacing:6.227289pt;}
.ws53{word-spacing:6.333557pt;}
.wsba{word-spacing:6.439825pt;}
.wsbe{word-spacing:6.492959pt;}
.wsbf{word-spacing:6.546092pt;}
.wsaf{word-spacing:6.599226pt;}
.wsd2{word-spacing:6.705494pt;}
.wsc{word-spacing:6.718822pt;}
.wsce{word-spacing:6.758628pt;}
.wscd{word-spacing:6.811762pt;}
.ws5b{word-spacing:6.864896pt;}
.ws98{word-spacing:6.918029pt;}
.ws57{word-spacing:6.957926pt;}
.wsa1{word-spacing:6.971163pt;}
.ws65{word-spacing:7.024297pt;}
.ws9f{word-spacing:7.077431pt;}
.ws97{word-spacing:7.130565pt;}
.ws9d{word-spacing:7.183699pt;}
.ws88{word-spacing:7.236833pt;}
.ws21{word-spacing:7.289967pt;}
.ws91{word-spacing:7.299459pt;}
.ws6c{word-spacing:7.396234pt;}
.wse0{word-spacing:7.436134pt;}
.wsa2{word-spacing:7.449368pt;}
.ws56{word-spacing:7.502502pt;}
.wscc{word-spacing:7.555636pt;}
.ws78{word-spacing:7.608770pt;}
.wsd4{word-spacing:7.661904pt;}
.ws44{word-spacing:7.715037pt;}
.wsd3{word-spacing:7.927573pt;}
.wsaa{word-spacing:7.980707pt;}
.ws64{word-spacing:8.086975pt;}
.ws5c{word-spacing:8.140108pt;}
.wse1{word-spacing:8.153446pt;}
.ws51{word-spacing:8.193242pt;}
.wsb9{word-spacing:8.299510pt;}
.ws7a{word-spacing:8.458912pt;}
.wsd1{word-spacing:8.565179pt;}
.wse{word-spacing:8.583834pt;}
.wsca{word-spacing:8.671447pt;}
.wsc0{word-spacing:8.820222pt;}
.ws17{word-spacing:8.830849pt;}
.ws6a{word-spacing:9.043384pt;}
.ws4f{word-spacing:9.149652pt;}
.wsde{word-spacing:9.253325pt;}
.ws25{word-spacing:9.372877pt;}
.wsbc{word-spacing:9.413147pt;}
.wsb2{word-spacing:9.574723pt;}
.ws33{word-spacing:9.627857pt;}
.wsa0{word-spacing:9.787258pt;}
.ws4b{word-spacing:9.893526pt;}
.ws16{word-spacing:10.106061pt;}
.ws7b{word-spacing:10.212329pt;}
.ws96{word-spacing:10.584266pt;}
.ws95{word-spacing:10.637400pt;}
.ws50{word-spacing:10.743668pt;}
.ws52{word-spacing:10.796802pt;}
.ws1d{word-spacing:10.956203pt;}
.wsd0{word-spacing:11.221873pt;}
.ws11{word-spacing:12.457318pt;}
.ws61{word-spacing:14.717783pt;}
.ws60{word-spacing:14.727069pt;}
.ws70{word-spacing:14.827313pt;}
.wsac{word-spacing:14.830952pt;}
.wsbb{word-spacing:14.831421pt;}
.ws3f{word-spacing:15.355687pt;}
.wsd8{word-spacing:16.306893pt;}
.ws48{word-spacing:16.325681pt;}
.ws8f{word-spacing:16.737168pt;}
.ws8d{word-spacing:16.746606pt;}
.ws8e{word-spacing:16.753568pt;}
.wsd9{word-spacing:17.502413pt;}
.ws47{word-spacing:17.655906pt;}
.wsab{word-spacing:17.661239pt;}
.wsdd{word-spacing:17.693696pt;}
.ws49{word-spacing:18.793574pt;}
.ws8b{word-spacing:19.837195pt;}
.ws8a{word-spacing:19.852328pt;}
.ws8c{word-spacing:19.872066pt;}
.wse6{word-spacing:19.941274pt;}
.ws32{word-spacing:20.297137pt;}
.ws4c{word-spacing:20.350271pt;}
.ws9a{word-spacing:20.377853pt;}
.ws7d{word-spacing:21.147279pt;}
.ws38{word-spacing:22.013054pt;}
.wsd6{word-spacing:23.015378pt;}
.ws2a{word-spacing:23.846639pt;}
.wsb8{word-spacing:24.182220pt;}
.ws10{word-spacing:24.526256pt;}
.ws7c{word-spacing:25.663658pt;}
.ws3{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
.wsa3{word-spacing:35.254258pt;}
.wsc4{word-spacing:35.898088pt;}
.wsa5{word-spacing:39.723592pt;}
.wsa4{word-spacing:39.728925pt;}
.ws3c{word-spacing:61.050813pt;}
.ws13{word-spacing:71.667439pt;}
.ws71{word-spacing:177.311578pt;}
._3{margin-left:-27.388186pt;}
._34{margin-left:-25.857074pt;}
._8{margin-left:-24.532080pt;}
._6{margin-left:-23.049654pt;}
._3e{margin-left:-21.340695pt;}
._1{margin-left:-7.192228pt;}
._1a{margin-left:-5.173104pt;}
._7{margin-left:-4.208230pt;}
._2f{margin-left:-3.271556pt;}
._2{margin-left:-2.371905pt;}
._5{margin-left:-1.434614pt;}
._4{width:1.434614pt;}
._0{width:2.371905pt;}
._c{width:3.309196pt;}
._b{width:8.792639pt;}
._f{width:15.028420pt;}
._e{width:16.387748pt;}
._11{width:17.472578pt;}
._d{width:18.800925pt;}
._a{width:20.224884pt;}
._19{width:22.031436pt;}
._16{width:23.679469pt;}
._13{width:25.325735pt;}
._9{width:26.999627pt;}
._2e{width:32.554429pt;}
._32{width:40.514691pt;}
._24{width:42.540900pt;}
._3b{width:46.493396pt;}
._33{width:49.634118pt;}
._2d{width:53.276679pt;}
._1c{width:59.818564pt;}
._12{width:61.103947pt;}
._18{width:62.036533pt;}
._3d{width:64.103677pt;}
._23{width:68.488475pt;}
._10{width:71.731200pt;}
._15{width:79.758921pt;}
._2c{width:80.897963pt;}
._25{width:86.143915pt;}
._17{width:94.803345pt;}
._20{width:98.668173pt;}
._2b{width:106.845539pt;}
._22{width:108.686640pt;}
._28{width:113.664775pt;}
._39{width:118.185137pt;}
._1f{width:124.615748pt;}
._36{width:131.213245pt;}
._27{width:139.612351pt;}
._21{width:142.271188pt;}
._2a{width:147.043703pt;}
._37{width:150.951950pt;}
._38{width:156.361392pt;}
._29{width:157.267791pt;}
._1e{width:164.813913pt;}
._26{width:179.810516pt;}
._1d{width:181.525840pt;}
._30{width:189.414316pt;}
._31{width:238.220225pt;}
._3c{width:258.945898pt;}
._14{width:268.899750pt;}
._3a{width:306.068193pt;}
._35{width:409.079064pt;}
._1b{width:500.884149pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:172.104000pt;}
.y25{bottom:188.044000pt;}
.y24{bottom:203.984000pt;}
.y115{bottom:204.064000pt;}
.yd7{bottom:205.112000pt;}
.y23{bottom:219.924000pt;}
.y114{bottom:220.005333pt;}
.y5a{bottom:220.197333pt;}
.yd6{bottom:221.052000pt;}
.y22{bottom:235.864000pt;}
.y113{bottom:235.945333pt;}
.y59{bottom:236.137333pt;}
.yd5{bottom:236.993333pt;}
.y99{bottom:237.649333pt;}
.y15a{bottom:245.346667pt;}
.y21{bottom:251.804000pt;}
.y112{bottom:251.885333pt;}
.y58{bottom:252.078667pt;}
.yd4{bottom:252.933333pt;}
.y134{bottom:253.130667pt;}
.y159{bottom:259.958667pt;}
.y74{bottom:263.074667pt;}
.y20{bottom:267.745333pt;}
.y111{bottom:267.825333pt;}
.y57{bottom:268.018667pt;}
.yd3{bottom:268.873333pt;}
.y133{bottom:269.070667pt;}
.y158{bottom:274.570667pt;}
.y1f{bottom:283.685333pt;}
.y110{bottom:283.765333pt;}
.y56{bottom:283.958667pt;}
.yba{bottom:283.994667pt;}
.yf2{bottom:284.209333pt;}
.yd2{bottom:284.813333pt;}
.y132{bottom:285.010667pt;}
.y97{bottom:286.533333pt;}
.y157{bottom:289.182667pt;}
.y1e{bottom:299.625333pt;}
.y10f{bottom:299.705333pt;}
.y55{bottom:299.898667pt;}
.yb9{bottom:299.936000pt;}
.yf1{bottom:300.149333pt;}
.yd1{bottom:300.753333pt;}
.y131{bottom:300.950667pt;}
.y73{bottom:303.569333pt;}
.y156{bottom:303.794667pt;}
.y38{bottom:312.588000pt;}
.y1d{bottom:315.565333pt;}
.y10e{bottom:315.646667pt;}
.y54{bottom:315.838667pt;}
.yb8{bottom:315.876000pt;}
.yf0{bottom:316.089333pt;}
.yd0{bottom:316.693333pt;}
.y130{bottom:316.892000pt;}
.y155{bottom:318.406667pt;}
.y72{bottom:319.509333pt;}
.y1c{bottom:331.505333pt;}
.y10d{bottom:331.586667pt;}
.y53{bottom:331.780000pt;}
.yb7{bottom:331.816000pt;}
.yef{bottom:332.029333pt;}
.y12f{bottom:332.832000pt;}
.y154{bottom:333.017333pt;}
.y96{bottom:334.546667pt;}
.y71{bottom:335.449333pt;}
.y1b{bottom:347.445333pt;}
.y10c{bottom:347.526667pt;}
.y153{bottom:347.629333pt;}
.y52{bottom:347.720000pt;}
.yb6{bottom:347.756000pt;}
.yee{bottom:347.969333pt;}
.y12e{bottom:348.772000pt;}
.ycf{bottom:348.902667pt;}
.y95{bottom:350.486667pt;}
.y70{bottom:351.389333pt;}
.y37{bottom:354.774667pt;}
.y152{bottom:362.241333pt;}
.y1a{bottom:363.386667pt;}
.y10b{bottom:363.466667pt;}
.y51{bottom:363.660000pt;}
.yb5{bottom:363.696000pt;}
.yed{bottom:364.705333pt;}
.y12d{bottom:364.712000pt;}
.y94{bottom:366.426667pt;}
.y6f{bottom:367.329333pt;}
.y36{bottom:370.714667pt;}
.y151{bottom:376.853333pt;}
.y19{bottom:379.326667pt;}
.y10a{bottom:379.406667pt;}
.yb4{bottom:379.946667pt;}
.yec{bottom:380.645333pt;}
.y12c{bottom:380.652000pt;}
.y6e{bottom:383.398667pt;}
.y93{bottom:384.000000pt;}
.y35{bottom:386.654667pt;}
.y150{bottom:391.465333pt;}
.y50{bottom:391.594667pt;}
.y18{bottom:395.266667pt;}
.y109{bottom:395.346667pt;}
.yb3{bottom:395.886667pt;}
.y12b{bottom:396.593333pt;}
.yeb{bottom:397.380000pt;}
.y6d{bottom:399.338667pt;}
.y92{bottom:399.940000pt;}
.y34{bottom:402.596000pt;}
.y14f{bottom:406.077333pt;}
.y108{bottom:411.288000pt;}
.yb2{bottom:411.828000pt;}
.y12a{bottom:412.533333pt;}
.yea{bottom:413.321333pt;}
.y6c{bottom:415.278667pt;}
.y91{bottom:415.880000pt;}
.y33{bottom:418.536000pt;}
.y14e{bottom:420.689333pt;}
.y107{bottom:427.228000pt;}
.y17{bottom:427.321333pt;}
.yb1{bottom:427.768000pt;}
.y129{bottom:428.473333pt;}
.ye9{bottom:429.261333pt;}
.y6b{bottom:431.220000pt;}
.y90{bottom:431.820000pt;}
.y4f{bottom:432.813333pt;}
.y32{bottom:434.476000pt;}
.y14d{bottom:435.301333pt;}
.yce{bottom:440.844000pt;}
.y106{bottom:443.168000pt;}
.yb0{bottom:443.708000pt;}
.y128{bottom:445.740000pt;}
.ye8{bottom:445.996000pt;}
.y6a{bottom:447.160000pt;}
.y8f{bottom:447.761333pt;}
.y4e{bottom:448.753333pt;}
.y14c{bottom:449.913333pt;}
.y31{bottom:450.416000pt;}
.ycd{bottom:455.456000pt;}
.y105{bottom:459.108000pt;}
.yaf{bottom:459.648000pt;}
.y127{bottom:461.680000pt;}
.ye7{bottom:461.936000pt;}
.y69{bottom:463.100000pt;}
.y8e{bottom:463.701333pt;}
.y14b{bottom:464.525333pt;}
.y4d{bottom:464.693333pt;}
.y30{bottom:466.356000pt;}
.ycc{bottom:470.066667pt;}
.y16{bottom:472.570667pt;}
.yae{bottom:475.588000pt;}
.y126{bottom:477.620000pt;}
.ye6{bottom:477.877333pt;}
.y68{bottom:479.040000pt;}
.y14a{bottom:479.136000pt;}
.y8d{bottom:479.641333pt;}
.ycb{bottom:484.678667pt;}
.y104{bottom:486.078667pt;}
.y15{bottom:487.182667pt;}
.yad{bottom:491.528000pt;}
.y125{bottom:493.560000pt;}
.y149{bottom:493.748000pt;}
.y67{bottom:495.109333pt;}
.yca{bottom:499.290667pt;}
.y2f{bottom:500.573333pt;}
.yac{bottom:507.469333pt;}
.y148{bottom:508.360000pt;}
.y124{bottom:509.500000pt;}
.y66{bottom:511.049333pt;}
.ye5{bottom:511.076000pt;}
.yc9{bottom:513.902667pt;}
.y14{bottom:516.441333pt;}
.y147{bottom:522.972000pt;}
.yab{bottom:523.409333pt;}
.y123{bottom:525.440000pt;}
.y103{bottom:526.332000pt;}
.y4c{bottom:526.501333pt;}
.y65{bottom:526.989333pt;}
.ye4{bottom:527.016000pt;}
.yc8{bottom:529.046667pt;}
.y13{bottom:531.053333pt;}
.y98{bottom:535.234667pt;}
.y146{bottom:537.584000pt;}
.yaa{bottom:539.349333pt;}
.y4b{bottom:541.113333pt;}
.y122{bottom:541.381333pt;}
.y102{bottom:542.272000pt;}
.y64{bottom:542.929333pt;}
.ye3{bottom:542.956000pt;}
.yc7{bottom:543.657333pt;}
.y8c{bottom:544.093333pt;}
.y2e{bottom:545.416000pt;}
.y12{bottom:545.665333pt;}
.y145{bottom:552.196000pt;}
.ya9{bottom:555.289333pt;}
.y4a{bottom:555.725333pt;}
.y121{bottom:557.321333pt;}
.y8b{bottom:558.705333pt;}
.y63{bottom:558.870667pt;}
.y11{bottom:560.277333pt;}
.y2d{bottom:561.356000pt;}
.y144{bottom:566.808000pt;}
.y49{bottom:570.337333pt;}
.yc6{bottom:570.822667pt;}
.y120{bottom:573.261333pt;}
.y8a{bottom:573.317333pt;}
.y62{bottom:574.810667pt;}
.y10{bottom:574.889333pt;}
.y2c{bottom:577.296000pt;}
.ye2{bottom:578.812000pt;}
.y143{bottom:581.420000pt;}
.ya8{bottom:582.786667pt;}
.y48{bottom:584.949333pt;}
.y89{bottom:587.928000pt;}
.y11f{bottom:589.201333pt;}
.yf{bottom:589.501333pt;}
.y61{bottom:590.878667pt;}
.y2b{bottom:593.236000pt;}
.y142{bottom:596.032000pt;}
.ya7{bottom:598.728000pt;}
.y47{bottom:600.092000pt;}
.y88{bottom:602.540000pt;}
.y101{bottom:603.694667pt;}
.ye{bottom:604.112000pt;}
.y11e{bottom:605.141333pt;}
.y60{bottom:606.820000pt;}
.y2a{bottom:609.177333pt;}
.y141{bottom:610.644000pt;}
.yc5{bottom:614.200000pt;}
.ya6{bottom:614.977333pt;}
.y87{bottom:617.152000pt;}
.y100{bottom:618.306667pt;}
.yd{bottom:618.724000pt;}
.y11d{bottom:621.081333pt;}
.y5f{bottom:622.760000pt;}
.y140{bottom:625.254667pt;}
.y46{bottom:627.921333pt;}
.yc4{bottom:630.141333pt;}
.ya5{bottom:630.918667pt;}
.y86{bottom:631.764000pt;}
.yc{bottom:633.336000pt;}
.yff{bottom:633.449333pt;}
.y11c{bottom:637.022667pt;}
.y5e{bottom:638.700000pt;}
.y13f{bottom:639.866667pt;}
.yc3{bottom:646.081333pt;}
.y85{bottom:646.376000pt;}
.ya4{bottom:647.168000pt;}
.yb{bottom:647.948000pt;}
.y13e{bottom:654.478667pt;}
.y5d{bottom:654.640000pt;}
.yfe{bottom:660.613333pt;}
.y84{bottom:660.988000pt;}
.yc2{bottom:662.021333pt;}
.ya{bottom:662.560000pt;}
.ya3{bottom:663.109333pt;}
.y29{bottom:668.574667pt;}
.y13d{bottom:669.090667pt;}
.y45{bottom:670.253333pt;}
.ye1{bottom:671.410667pt;}
.y11b{bottom:675.533333pt;}
.y83{bottom:675.600000pt;}
.y9{bottom:677.172000pt;}
.yc1{bottom:677.961333pt;}
.ya2{bottom:679.358667pt;}
.y13c{bottom:683.702667pt;}
.ye0{bottom:686.022667pt;}
.y44{bottom:686.193333pt;}
.y82{bottom:690.212000pt;}
.ya1{bottom:695.300000pt;}
.y13b{bottom:698.314667pt;}
.ydf{bottom:700.634667pt;}
.yfd{bottom:701.896000pt;}
.y43{bottom:702.133333pt;}
.y81{bottom:704.824000pt;}
.ya0{bottom:711.240000pt;}
.y13a{bottom:712.926667pt;}
.y5c{bottom:714.689333pt;}
.yde{bottom:715.246667pt;}
.yfc{bottom:717.837333pt;}
.y42{bottom:718.074667pt;}
.y80{bottom:719.436000pt;}
.y11a{bottom:724.670667pt;}
.y139{bottom:727.538667pt;}
.y5b{bottom:729.301333pt;}
.ydd{bottom:729.858667pt;}
.y8{bottom:731.858667pt;}
.yfb{bottom:733.777333pt;}
.y41{bottom:734.014667pt;}
.y7f{bottom:734.048000pt;}
.y9f{bottom:739.048000pt;}
.y119{bottom:740.610667pt;}
.yc0{bottom:741.478667pt;}
.ydc{bottom:744.469333pt;}
.y7e{bottom:748.658667pt;}
.yfa{bottom:749.717333pt;}
.y40{bottom:749.954667pt;}
.y7{bottom:751.549333pt;}
.y9e{bottom:754.988000pt;}
.ybf{bottom:756.090667pt;}
.y118{bottom:756.550667pt;}
.y138{bottom:758.090667pt;}
.ydb{bottom:759.081333pt;}
.y6{bottom:761.082667pt;}
.y7d{bottom:763.270667pt;}
.yf9{bottom:765.657333pt;}
.y3f{bottom:765.894667pt;}
.y9d{bottom:770.928000pt;}
.ybe{bottom:771.233333pt;}
.y117{bottom:772.492000pt;}
.yda{bottom:773.693333pt;}
.y5{bottom:775.694667pt;}
.y7c{bottom:777.882667pt;}
.yf8{bottom:781.597333pt;}
.y3e{bottom:781.834667pt;}
.ybd{bottom:785.845333pt;}
.y9c{bottom:786.868000pt;}
.yd9{bottom:788.837333pt;}
.y7b{bottom:792.494667pt;}
.y4{bottom:795.385333pt;}
.y3d{bottom:796.169333pt;}
.yf7{bottom:797.537333pt;}
.y137{bottom:800.597333pt;}
.y9b{bottom:802.809333pt;}
.y3c{bottom:805.281333pt;}
.y7a{bottom:807.106667pt;}
.ybc{bottom:813.010667pt;}
.yf6{bottom:813.478667pt;}
.yd8{bottom:813.677333pt;}
.y136{bottom:816.537333pt;}
.y3{bottom:818.146667pt;}
.y79{bottom:821.718667pt;}
.y3b{bottom:828.453333pt;}
.yf5{bottom:829.418667pt;}
.y9a{bottom:830.926667pt;}
.y135{bottom:832.478667pt;}
.y78{bottom:836.330667pt;}
.y3a{bottom:844.393333pt;}
.yf4{bottom:845.358667pt;}
.y116{bottom:850.942667pt;}
.y77{bottom:851.473333pt;}
.ybb{bottom:856.388000pt;}
.y39{bottom:860.334667pt;}
.yf3{bottom:861.298667pt;}
.y2{bottom:864.358667pt;}
.y76{bottom:866.085333pt;}
.y28{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.y75{bottom:893.250667pt;}
.y27{bottom:922.806667pt;}
.h3{height:21.200555pt;}
.h5{height:29.457613pt;}
.h4{height:35.865600pt;}
.h8{height:37.087439pt;}
.h7{height:39.850400pt;}
.h2{height:43.981884pt;}
.h6{height:44.632747pt;}
.h1{height:53.559147pt;}
.h9{height:77.042688pt;}
.ha{height:113.490688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:179.686667pt;}
.x15{left:183.818667pt;}
.x20{left:185.829333pt;}
.x1b{left:187.988000pt;}
.xb{left:199.612000pt;}
.x16{left:202.268000pt;}
.x8{left:217.481333pt;}
.x13{left:224.914667pt;}
.x2{left:227.940000pt;}
.xa{left:232.789333pt;}
.x1{left:235.114667pt;}
.x11{left:251.849333pt;}
.x3{left:261.868000pt;}
.x14{left:262.821333pt;}
.x19{left:276.000000pt;}
.x18{left:282.594667pt;}
.x5{left:285.197333pt;}
.x1a{left:290.054667pt;}
.x1d{left:292.010667pt;}
.xe{left:297.493333pt;}
.x1f{left:298.916000pt;}
.x17{left:302.289333pt;}
.x4{left:303.744000pt;}
.x1c{left:317.313333pt;}
.xf{left:319.212000pt;}
.x7{left:322.368000pt;}
.x10{left:341.868000pt;}
.x6{left:350.612000pt;}
.x12{left:407.164000pt;}
.xd{left:569.904000pt;}
.x1e{left:628.501333pt;}
.xc{left:634.645333pt;}
}




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