
    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_2d1f1e06a6e2e7211fe68f21.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_d9fd118454f2a085498cf161.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a2692c33910342d9afffeeaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_d726ab8bb89d1b9be7b8b457.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d9132abacfa507d0fc9b2547.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_bad3dc9f4dd5a240167708d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_97db6786f34fbcfd3b13e494.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_538b05068aed2466d3fc8158.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_95fe201edbd7771ab416fd39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.702000;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_241dcd70632d17b5dfca4313.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.731445;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_3ea4368d5c1cc1432ac32079.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.233886,0.000000,-0.088304,0.233886,0,0);-ms-transform:matrix(0.233886,0.000000,-0.088304,0.233886,0,0);-webkit-transform:matrix(0.233886,0.000000,-0.088304,0.233886,0,0);}
.m1{transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-ms-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-webkit-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);}
.m2{transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-ms-transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-webkit-transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-25.443600px;}
.v5{vertical-align:-22.450800px;}
.v3{vertical-align:-12.484295px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.501000px;}
.v6{vertical-align:22.027200px;}
.v1{vertical-align:28.437000px;}
.ls39{letter-spacing:-1.772093px;}
.ls20{letter-spacing:-1.546390px;}
.ls37{letter-spacing:-1.208436px;}
.ls21{letter-spacing:-0.004789px;}
.ls1f{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000300px;}
.ls1{letter-spacing:0.004191px;}
.lsb{letter-spacing:0.835144px;}
.ls2b{letter-spacing:0.835800px;}
.ls9{letter-spacing:1.185506px;}
.ls1b{letter-spacing:1.191373px;}
.lsd{letter-spacing:1.194074px;}
.ls23{letter-spacing:1.784066px;}
.ls1c{letter-spacing:4.759506px;}
.lse{letter-spacing:6.209944px;}
.ls10{letter-spacing:6.561533px;}
.ls22{letter-spacing:10.153613px;}
.ls1a{letter-spacing:13.147013px;}
.ls38{letter-spacing:14.301268px;}
.ls2e{letter-spacing:15.068776px;}
.ls35{letter-spacing:15.340576px;}
.ls34{letter-spacing:15.934467px;}
.ls25{letter-spacing:16.086532px;}
.ls32{letter-spacing:16.511594px;}
.ls2{letter-spacing:17.161424px;}
.ls0{letter-spacing:17.163374px;}
.ls3{letter-spacing:17.163974px;}
.ls17{letter-spacing:17.960400px;}
.ls14{letter-spacing:18.026255px;}
.ls7{letter-spacing:18.894341px;}
.ls11{letter-spacing:19.385258px;}
.lsf{letter-spacing:19.594796px;}
.ls26{letter-spacing:19.708546px;}
.ls5{letter-spacing:19.930057px;}
.ls4{letter-spacing:19.935974px;}
.ls27{letter-spacing:20.103674px;}
.ls1e{letter-spacing:20.616000px;}
.ls16{letter-spacing:20.955909px;}
.ls15{letter-spacing:20.956200px;}
.ls30{letter-spacing:21.139391px;}
.ls12{letter-spacing:21.210909px;}
.ls19{letter-spacing:22.334400px;}
.ls6{letter-spacing:22.941418px;}
.ls36{letter-spacing:23.760412px;}
.lsc{letter-spacing:24.289800px;}
.ls29{letter-spacing:25.036798px;}
.ls8{letter-spacing:25.156534px;}
.ls2c{letter-spacing:25.797121px;}
.lsa{letter-spacing:26.687344px;}
.ls13{letter-spacing:27.572400px;}
.ls28{letter-spacing:27.772765px;}
.ls31{letter-spacing:27.808686px;}
.ls2d{letter-spacing:28.844402px;}
.ls24{letter-spacing:29.437096px;}
.ls18{letter-spacing:30.508733px;}
.ls2f{letter-spacing:30.628469px;}
.ls2a{letter-spacing:32.635244px;}
.ls1d{letter-spacing:889.021840px;}
.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;}
}
.wsab{word-spacing:-19.989925px;}
.ws102{word-spacing:-15.982361px;}
.ws121{word-spacing:-15.388471px;}
.ws112{word-spacing:-14.349162px;}
.ws29{word-spacing:-6.621401px;}
.ws6{word-spacing:-0.059868px;}
.ws61{word-spacing:-0.053881px;}
.ws64{word-spacing:-0.047894px;}
.ws2{word-spacing:-0.046098px;}
.ws63{word-spacing:-0.043105px;}
.ws26{word-spacing:-0.041908px;}
.ws4{word-spacing:-0.038914px;}
.ws5e{word-spacing:-0.032927px;}
.ws66{word-spacing:0.000000px;}
.ws110{word-spacing:1.175508px;}
.ws4f{word-spacing:1.504483px;}
.ws23{word-spacing:9.058028px;}
.ws22{word-spacing:9.064015px;}
.ws100{word-spacing:12.380702px;}
.ws101{word-spacing:12.385492px;}
.wsbe{word-spacing:12.500438px;}
.ws105{word-spacing:12.639332px;}
.ws116{word-spacing:12.725542px;}
.wsc0{word-spacing:13.132644px;}
.ws119{word-spacing:13.266749px;}
.ws10e{word-spacing:13.376906px;}
.ws10f{word-spacing:13.400853px;}
.ws10d{word-spacing:13.405643px;}
.ws111{word-spacing:14.253373px;}
.ws11d{word-spacing:14.852053px;}
.wsda{word-spacing:15.008908px;}
.ws120{word-spacing:15.292682px;}
.ws11f{word-spacing:15.302261px;}
.ws67{word-spacing:15.332195px;}
.ws115{word-spacing:15.345366px;}
.ws9{word-spacing:15.416010px;}
.ws122{word-spacing:15.479470px;}
.wsec{word-spacing:15.673442px;}
.ws51{word-spacing:15.685416px;}
.wsf6{word-spacing:15.787192px;}
.wsd7{word-spacing:15.793178px;}
.ws11b{word-spacing:15.872204px;}
.ws10b{word-spacing:15.876994px;}
.ws106{word-spacing:15.881783px;}
.ws5f{word-spacing:15.886572px;}
.ws65{word-spacing:15.896151px;}
.wsc3{word-spacing:15.924888px;}
.wsae{word-spacing:16.008703px;}
.ws77{word-spacing:16.026664px;}
.wsff{word-spacing:16.054203px;}
.wsfe{word-spacing:16.058992px;}
.wsf8{word-spacing:16.200281px;}
.ws3a{word-spacing:16.248175px;}
.ws7d{word-spacing:16.385872px;}
.ws113{word-spacing:16.413411px;}
.wse9{word-spacing:16.451726px;}
.ws34{word-spacing:16.523568px;}
.ws59{word-spacing:16.535542px;}
.ws6e{word-spacing:16.541528px;}
.ws8{word-spacing:16.589423px;}
.ws4e{word-spacing:16.607383px;}
.ws50{word-spacing:16.619729px;}
.wsb3{word-spacing:16.673238px;}
.ws53{word-spacing:16.709159px;}
.wsaa{word-spacing:16.727119px;}
.wsbc{word-spacing:16.820513px;}
.wsf3{word-spacing:16.876789px;}
.ws11{word-spacing:16.894750px;}
.wsd9{word-spacing:16.912710px;}
.ws42{word-spacing:17.014486px;}
.wsbf{word-spacing:17.093511px;}
.ws1{word-spacing:17.098301px;}
.ws3b{word-spacing:17.152182px;}
.wsbb{word-spacing:17.179721px;}
.ws108{word-spacing:17.213247px;}
.ws6c{word-spacing:17.295865px;}
.ws6d{word-spacing:17.301852px;}
.wsb1{word-spacing:17.319812px;}
.ws5b{word-spacing:17.337773px;}
.wsdf{word-spacing:17.373694px;}
.wsf2{word-spacing:17.457509px;}
.ws83{word-spacing:17.475469px;}
.wsfc{word-spacing:17.505403px;}
.wsd6{word-spacing:17.643100px;}
.ws60{word-spacing:17.829289px;}
.ws62{word-spacing:17.861618px;}
.ws5{word-spacing:17.872394px;}
.ws41{word-spacing:17.966387px;}
.ws107{word-spacing:18.013084px;}
.ws14{word-spacing:18.020268px;}
.wseb{word-spacing:18.050202px;}
.ws9e{word-spacing:18.068162px;}
.ws44{word-spacing:18.187898px;}
.ws2b{word-spacing:18.205859px;}
.wsc6{word-spacing:18.223819px;}
.ws20{word-spacing:18.475265px;}
.ws84{word-spacing:18.529146px;}
.ws11e{word-spacing:18.606974px;}
.ws75{word-spacing:18.612961px;}
.ws7e{word-spacing:18.750658px;}
.wsca{word-spacing:18.780592px;}
.ws15{word-spacing:18.816512px;}
.ws16{word-spacing:18.834473px;}
.wsa6{word-spacing:18.870394px;}
.ws8c{word-spacing:18.888354px;}
.ws118{word-spacing:18.927867px;}
.wsdb{word-spacing:18.936248px;}
.ws79{word-spacing:18.954209px;}
.wsc{word-spacing:18.990130px;}
.ws3e{word-spacing:19.121839px;}
.wsa3{word-spacing:19.127826px;}
.ws3c{word-spacing:19.139800px;}
.ws103{word-spacing:19.152971px;}
.wsa{word-spacing:19.157760px;}
.ws104{word-spacing:19.162549px;}
.wse4{word-spacing:19.193681px;}
.ws11a{word-spacing:19.320601px;}
.ws32{word-spacing:19.325390px;}
.ws8b{word-spacing:19.427166px;}
.wsb9{word-spacing:19.459495px;}
.ws24{word-spacing:19.528942px;}
.wsd{word-spacing:19.600783px;}
.ws90{word-spacing:19.648678px;}
.ws117{word-spacing:19.780387px;}
.ws3{word-spacing:19.870189px;}
.ws114{word-spacing:19.957596px;}
.ws99{word-spacing:19.989925px;}
.ws91{word-spacing:20.037820px;}
.ws92{word-spacing:20.043806px;}
.ws81{word-spacing:20.109661px;}
.ws9d{word-spacing:20.193476px;}
.wsa1{word-spacing:20.229397px;}
.wsf0{word-spacing:20.367094px;}
.ws1c{word-spacing:20.397028px;}
.ws9c{word-spacing:20.432948px;}
.ws43{word-spacing:20.486830px;}
.ws8d{word-spacing:20.498803px;}
.ws57{word-spacing:20.552684px;}
.ws76{word-spacing:20.570645px;}
.wsb6{word-spacing:20.654460px;}
.ws12{word-spacing:20.690381px;}
.wsa4{word-spacing:20.756236px;}
.wsb4{word-spacing:20.858011px;}
.ws48{word-spacing:20.893932px;}
.ws21{word-spacing:20.995708px;}
.wse3{word-spacing:21.073536px;}
.wse2{word-spacing:21.079523px;}
.ws33{word-spacing:21.145378px;}
.wsb{word-spacing:21.163338px;}
.ws2f{word-spacing:21.247153px;}
.wsbd{word-spacing:21.313008px;}
.ws10{word-spacing:21.318995px;}
.ws89{word-spacing:21.366889px;}
.ws52{word-spacing:21.522546px;}
.ws1f{word-spacing:21.588401px;}
.ws82{word-spacing:21.672216px;}
.wsba{word-spacing:21.820689px;}
.wse5{word-spacing:21.845833px;}
.ws73{word-spacing:21.929648px;}
.ws49{word-spacing:21.947609px;}
.ws1d{word-spacing:21.965569px;}
.wsa2{word-spacing:21.995503px;}
.ws6f{word-spacing:22.187081px;}
.ws36{word-spacing:22.205041px;}
.ws55{word-spacing:22.270896px;}
.ws2d{word-spacing:22.306817px;}
.ws58{word-spacing:22.354711px;}
.wsb5{word-spacing:22.522342px;}
.wsf9{word-spacing:22.576223px;}
.wsce{word-spacing:22.642078px;}
.ws11c{word-spacing:22.706735px;}
.wsf4{word-spacing:22.731880px;}
.ws4d{word-spacing:22.779774px;}
.ws27{word-spacing:22.845629px;}
.wscb{word-spacing:22.863589px;}
.ws13{word-spacing:22.881550px;}
.wsa7{word-spacing:23.085101px;}
.wsb2{word-spacing:23.121022px;}
.ws4c{word-spacing:23.288652px;}
.wsc2{word-spacing:23.439519px;}
.wsaf{word-spacing:23.492203px;}
.ws40{word-spacing:23.546084px;}
.wsf1{word-spacing:23.611939px;}
.ws7b{word-spacing:23.683781px;}
.ws123{word-spacing:23.707728px;}
.ws109{word-spacing:23.726886px;}
.ws7a{word-spacing:23.749636px;}
.ws94{word-spacing:23.803517px;}
.ws5a{word-spacing:23.887332px;}
.ws7{word-spacing:23.905292px;}
.ws88{word-spacing:23.917266px;}
.ws9f{word-spacing:24.007068px;}
.ws46{word-spacing:24.108844px;}
.ws1e{word-spacing:24.228580px;}
.wsfa{word-spacing:24.240553px;}
.ws85{word-spacing:24.276474px;}
.ws38{word-spacing:24.294434px;}
.wsac{word-spacing:24.312395px;}
.ws80{word-spacing:24.360289px;}
.ws3f{word-spacing:24.432131px;}
.ws8a{word-spacing:24.581801px;}
.ws4b{word-spacing:24.653642px;}
.ws4a{word-spacing:24.663120px;}
.ws35{word-spacing:24.665616px;}
.wsa0{word-spacing:24.767392px;}
.ws69{word-spacing:24.773378px;}
.wsb0{word-spacing:24.976930px;}
.wsde{word-spacing:25.006864px;}
.wse{word-spacing:25.060745px;}
.ws17{word-spacing:25.090679px;}
.ws18{word-spacing:25.096666px;}
.wsad{word-spacing:25.108639px;}
.wse1{word-spacing:25.192454px;}
.wsed{word-spacing:25.300217px;}
.ws2e{word-spacing:25.330151px;}
.ws10c{word-spacing:25.436716px;}
.wsc5{word-spacing:25.449887px;}
.ws10a{word-spacing:25.451084px;}
.wsd4{word-spacing:25.467847px;}
.ws39{word-spacing:25.569623px;}
.ws3d{word-spacing:25.587583px;}
.wsc4{word-spacing:25.671398px;}
.ws74{word-spacing:25.689359px;}
.wsd2{word-spacing:25.731266px;}
.wsd3{word-spacing:25.737253px;}
.wsd1{word-spacing:25.751520px;}
.ws1b{word-spacing:25.791134px;}
.ws68{word-spacing:25.839029px;}
.wse0{word-spacing:25.910870px;}
.wsa8{word-spacing:26.252118px;}
.ws7c{word-spacing:26.317973px;}
.wsc1{word-spacing:26.399393px;}
.ws6a{word-spacing:26.485603px;}
.ws56{word-spacing:26.503564px;}
.wse6{word-spacing:26.862772px;}
.wse7{word-spacing:26.880732px;}
.ws72{word-spacing:27.012442px;}
.ws70{word-spacing:27.018428px;}
.ws71{word-spacing:27.027120px;}
.ws19{word-spacing:27.066323px;}
.wsc7{word-spacing:27.084283px;}
.ws45{word-spacing:27.168098px;}
.wsf{word-spacing:27.186059px;}
.ws95{word-spacing:27.335729px;}
.ws93{word-spacing:27.491386px;}
.ws37{word-spacing:27.509346px;}
.ws97{word-spacing:27.712897px;}
.ws98{word-spacing:27.724920px;}
.wse8{word-spacing:27.748818px;}
.ws8e{word-spacing:27.760792px;}
.wsee{word-spacing:27.778752px;}
.ws0{word-spacing:27.826447px;}
.ws78{word-spacing:27.952369px;}
.ws6b{word-spacing:28.185854px;}
.ws87{word-spacing:28.443287px;}
.ws86{word-spacing:28.461247px;}
.wsd8{word-spacing:28.784534px;}
.wscc{word-spacing:29.053940px;}
.wscd{word-spacing:29.067720px;}
.ws2c{word-spacing:29.227558px;}
.ws54{word-spacing:29.257492px;}
.ws8f{word-spacing:29.275452px;}
.wsfd{word-spacing:29.347294px;}
.wsf5{word-spacing:29.616700px;}
.wsa9{word-spacing:29.772356px;}
.ws96{word-spacing:30.466825px;}
.wsdc{word-spacing:30.556627px;}
.wsdd{word-spacing:30.568601px;}
.wsa5{word-spacing:30.772152px;}
.ws7f{word-spacing:31.011624px;}
.wsc9{word-spacing:31.065505px;}
.ws2a{word-spacing:31.077479px;}
.wsf7{word-spacing:31.724053px;}
.wsfb{word-spacing:31.981486px;}
.ws30{word-spacing:32.047340px;}
.ws25{word-spacing:32.167076px;}
.wsef{word-spacing:32.340694px;}
.wsb8{word-spacing:32.587350px;}
.wsb7{word-spacing:32.596929px;}
.wsd5{word-spacing:33.579961px;}
.ws5c{word-spacing:33.711671px;}
.ws5d{word-spacing:33.717658px;}
.wscf{word-spacing:34.088839px;}
.ws9a{word-spacing:34.394166px;}
.wsea{word-spacing:36.405731px;}
.ws47{word-spacing:38.327494px;}
.ws1a{word-spacing:40.231296px;}
.ws31{word-spacing:42.200953px;}
.ws28{word-spacing:42.374570px;}
.wsc8{word-spacing:53.563900px;}
.ws9b{word-spacing:55.401847px;}
.wsd0{word-spacing:59.263333px;}
._d{margin-left:-1668.099689px;}
._14{margin-left:-19.948018px;}
._19{margin-left:-16.872000px;}
._1a{margin-left:-15.001723px;}
._1c{margin-left:-13.439431px;}
._7{margin-left:-7.465540px;}
._12{margin-left:-5.657526px;}
._6{margin-left:-4.502074px;}
._0{margin-left:-3.286753px;}
._1{margin-left:-1.993904px;}
._9{width:1.191373px;}
._11{width:2.723994px;}
._8{width:6.561533px;}
._3{width:14.404241px;}
._2{width:15.577654px;}
._4{width:20.151569px;}
._1d{width:21.341745px;}
._e{width:22.666025px;}
._5{width:23.947200px;}
._1b{width:25.479821px;}
._a{width:26.581392px;}
._13{width:28.760587px;}
._f{width:29.999855px;}
._b{width:31.089452px;}
._10{width:32.286812px;}
._18{width:35.387975px;}
._15{width:38.641202px;}
._16{width:102.996907px;}
._c{width:1417.321019px;}
._17{width:1713.834052px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,255);}
.fs8{font-size:32.927400px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:38.914200px;}
.fs2{font-size:41.907600px;}
.fs9{font-size:47.894400px;}
.fs4{font-size:53.881200px;}
.fs1{font-size:59.868000px;}
.fs6{font-size:60.923836px;}
.fs5{font-size:62.131169px;}
.fs7{font-size:63.992828px;}
.fs0{font-size:83.814600px;}
.y0{bottom:0.000000px;}
.y6a{bottom:35.920650px;}
.y96{bottom:36.058200px;}
.yc2{bottom:36.058897px;}
.y95{bottom:53.270250px;}
.yc1{bottom:53.568790px;}
.y67{bottom:67.342650px;}
.y65{bottom:70.467450px;}
.y66{bottom:70.467900px;}
.y94{bottom:70.482300px;}
.yc0{bottom:71.078684px;}
.y68{bottom:75.957300px;}
.y64{bottom:87.679500px;}
.y93{bottom:87.694350px;}
.ybf{bottom:88.588577px;}
.y63{bottom:104.891550px;}
.y92{bottom:104.906400px;}
.ybe{bottom:106.098470px;}
.y3d{bottom:110.800007px;}
.yeb{bottom:121.681650px;}
.y127{bottom:121.695169px;}
.y62{bottom:122.103600px;}
.y91{bottom:122.118450px;}
.ybd{bottom:123.608363px;}
.y3c{bottom:128.160230px;}
.y126{bottom:136.360435px;}
.yea{bottom:138.893700px;}
.y61{bottom:139.315650px;}
.y90{bottom:139.330500px;}
.ybc{bottom:141.118257px;}
.y3b{bottom:145.520453px;}
.ye9{bottom:156.105750px;}
.y60{bottom:156.527550px;}
.y8f{bottom:156.542550px;}
.y125{bottom:156.638250px;}
.ybb{bottom:158.628150px;}
.y3a{bottom:162.880677px;}
.y124{bottom:165.690535px;}
.ye8{bottom:173.317800px;}
.y5f{bottom:173.739600px;}
.y8e{bottom:173.754600px;}
.yba{bottom:176.136508px;}
.y39{bottom:180.243733px;}
.y123{bottom:185.968350px;}
.ye7{bottom:190.529850px;}
.y5d{bottom:190.950873px;}
.y5e{bottom:190.951650px;}
.y8d{bottom:190.966650px;}
.yb9{bottom:193.646401px;}
.y122{bottom:195.020485px;}
.y38{bottom:197.603957px;}
.ye6{bottom:207.741900px;}
.y8c{bottom:208.178700px;}
.yb8{bottom:211.156294px;}
.y37{bottom:214.964180px;}
.y121{bottom:215.298450px;}
.y5b{bottom:217.743056px;}
.y5c{bottom:217.743300px;}
.y120{bottom:224.350585px;}
.ye5{bottom:224.953950px;}
.y8b{bottom:225.390750px;}
.yb7{bottom:228.666187px;}
.y36{bottom:232.324403px;}
.ye4{bottom:242.166000px;}
.y8a{bottom:242.602800px;}
.y11f{bottom:244.628400px;}
.yb6{bottom:246.176081px;}
.y35{bottom:249.684627px;}
.y11e{bottom:253.680685px;}
.y5a{bottom:255.934350px;}
.ye3{bottom:259.378050px;}
.y89{bottom:259.814850px;}
.yb5{bottom:263.685974px;}
.y34{bottom:267.044850px;}
.y33{bottom:267.048310px;}
.y59{bottom:273.146100px;}
.y11d{bottom:273.958650px;}
.ye2{bottom:276.590100px;}
.y88{bottom:277.026900px;}
.yb4{bottom:281.195867px;}
.y11c{bottom:283.010785px;}
.y32{bottom:284.408533px;}
.y58{bottom:290.358150px;}
.ye1{bottom:293.802150px;}
.y87{bottom:294.238950px;}
.yb3{bottom:296.447250px;}
.yb2{bottom:299.572350px;}
.yb1{bottom:299.576538px;}
.y31{bottom:301.768757px;}
.y11b{bottom:303.288750px;}
.y57{bottom:307.570200px;}
.ye0{bottom:311.014200px;}
.y86{bottom:311.451000px;}
.yb0{bottom:317.086432px;}
.y11a{bottom:317.953650px;}
.y30{bottom:319.128980px;}
.y56{bottom:324.782250px;}
.ydf{bottom:328.226250px;}
.y85{bottom:328.663050px;}
.y119{bottom:332.618700px;}
.yaf{bottom:334.744498px;}
.y2f{bottom:336.489203px;}
.y55{bottom:341.994300px;}
.yde{bottom:345.438300px;}
.y84{bottom:345.875100px;}
.y118{bottom:347.283750px;}
.yae{bottom:352.402565px;}
.y2e{bottom:353.849427px;}
.y54{bottom:359.206050px;}
.y117{bottom:361.948800px;}
.ydd{bottom:362.650350px;}
.y83{bottom:363.087150px;}
.y2d{bottom:368.084400px;}
.yad{bottom:370.060631px;}
.y116{bottom:371.000935px;}
.y2c{bottom:371.209650px;}
.y2b{bottom:371.210127px;}
.y53{bottom:376.418100px;}
.ydc{bottom:379.862100px;}
.y82{bottom:380.299200px;}
.yac{bottom:387.718698px;}
.y2a{bottom:388.570350px;}
.y115{bottom:391.278900px;}
.y52{bottom:393.630150px;}
.ydb{bottom:397.074150px;}
.y81{bottom:397.511250px;}
.y114{bottom:400.331035px;}
.yab{bottom:405.376765px;}
.y29{bottom:405.932303px;}
.y51{bottom:410.842050px;}
.yda{bottom:414.286200px;}
.y80{bottom:414.723300px;}
.y113{bottom:420.609000px;}
.yaa{bottom:423.034831px;}
.y28{bottom:423.292527px;}
.y50{bottom:428.054100px;}
.y112{bottom:429.661135px;}
.yd9{bottom:431.498250px;}
.y7f{bottom:431.935350px;}
.y27{bottom:437.527650px;}
.y26{bottom:440.652750px;}
.y25{bottom:440.654480px;}
.ya9{bottom:440.692898px;}
.y4f{bottom:445.268342px;}
.yd8{bottom:448.710000px;}
.y7e{bottom:449.147400px;}
.y111{bottom:449.939100px;}
.y24{bottom:458.014703px;}
.y110{bottom:458.991235px;}
.ya8{bottom:459.219050px;}
.y4e{bottom:462.480392px;}
.yd7{bottom:465.922050px;}
.y7d{bottom:466.359450px;}
.y23{bottom:475.374927px;}
.ya7{bottom:476.877117px;}
.y10f{bottom:479.269050px;}
.y4d{bottom:479.692442px;}
.yd6{bottom:483.133650px;}
.y7c{bottom:483.571500px;}
.y10e{bottom:488.321335px;}
.y22{bottom:492.734513px;}
.ya6{bottom:494.535184px;}
.y4c{bottom:496.904492px;}
.yd5{bottom:500.345700px;}
.y7b{bottom:500.783550px;}
.y10d{bottom:508.599150px;}
.y21{bottom:510.244407px;}
.ya5{bottom:512.193250px;}
.y4b{bottom:514.116542px;}
.yd4{bottom:517.557750px;}
.y7a{bottom:517.995600px;}
.y10c{bottom:523.264200px;}
.y20{bottom:524.629050px;}
.y1e{bottom:527.754057px;}
.y1f{bottom:527.754300px;}
.ya4{bottom:529.851317px;}
.y4a{bottom:531.328592px;}
.y10b{bottom:532.316269px;}
.yd3{bottom:534.769800px;}
.y79{bottom:535.207650px;}
.y1d{bottom:545.259774px;}
.y10a{bottom:546.981535px;}
.ya3{bottom:547.509383px;}
.y49{bottom:548.540642px;}
.yd2{bottom:551.981850px;}
.y78{bottom:552.419700px;}
.y1c{bottom:562.769667px;}
.ya2{bottom:565.167450px;}
.y48{bottom:565.752692px;}
.y109{bottom:567.259350px;}
.yd1{bottom:569.193900px;}
.y77{bottom:569.631750px;}
.ya1{bottom:579.700650px;}
.y1b{bottom:580.279560px;}
.ya0{bottom:582.825750px;}
.y47{bottom:582.964742px;}
.yd0{bottom:586.405950px;}
.y76{bottom:586.843800px;}
.y108{bottom:594.272159px;}
.y1a{bottom:597.789454px;}
.y46{bottom:600.176792px;}
.y9f{bottom:600.485350px;}
.y75{bottom:604.055850px;}
.y107{bottom:611.930225px;}
.y19{bottom:615.299347px;}
.y45{bottom:617.388842px;}
.y9e{bottom:618.143417px;}
.y74{bottom:621.267450px;}
.y12b{bottom:625.319850px;}
.y106{bottom:629.588292px;}
.y18{bottom:632.809240px;}
.y44{bottom:634.600892px;}
.y9d{bottom:635.801483px;}
.y73{bottom:638.479500px;}
.y12a{bottom:639.538500px;}
.y6b{bottom:641.445000px;}
.y17{bottom:650.319134px;}
.y43{bottom:651.812942px;}
.y9c{bottom:653.459550px;}
.y129{bottom:653.757150px;}
.y72{bottom:655.691550px;}
.y105{bottom:659.219958px;}
.y16{bottom:667.829027px;}
.y128{bottom:667.975800px;}
.y42{bottom:669.024992px;}
.y9b{bottom:671.119984px;}
.y71{bottom:672.903600px;}
.y104{bottom:676.878025px;}
.y15{bottom:685.338920px;}
.y41{bottom:686.237042px;}
.y9a{bottom:688.778050px;}
.y6f{bottom:690.115500px;}
.y70{bottom:690.115650px;}
.y103{bottom:694.536092px;}
.y14{bottom:702.848813px;}
.y40{bottom:703.449092px;}
.y99{bottom:706.436117px;}
.y6e{bottom:707.327550px;}
.y102{bottom:712.194158px;}
.y13{bottom:720.358707px;}
.y3f{bottom:720.661142px;}
.y98{bottom:724.094183px;}
.y6d{bottom:724.539600px;}
.y101{bottom:729.852225px;}
.y12{bottom:737.868600px;}
.y3e{bottom:737.873192px;}
.y6c{bottom:741.751650px;}
.y97{bottom:741.752250px;}
.y100{bottom:747.510291px;}
.yff{bottom:765.168358px;}
.yfe{bottom:782.826425px;}
.y11{bottom:788.756400px;}
.yfd{bottom:800.484491px;}
.y10{bottom:806.716800px;}
.yfc{bottom:818.142558px;}
.yf{bottom:824.677200px;}
.yfb{bottom:835.950294px;}
.ye{bottom:842.637600px;}
.yfa{bottom:853.758031px;}
.yd{bottom:860.598000px;}
.yce{bottom:865.755300px;}
.yf9{bottom:871.565768px;}
.yc{bottom:878.558400px;}
.ycd{bottom:879.973950px;}
.yf8{bottom:889.373504px;}
.ycc{bottom:894.192600px;}
.yb{bottom:896.518800px;}
.yf7{bottom:907.181241px;}
.ycb{bottom:908.411250px;}
.ya{bottom:914.479200px;}
.yca{bottom:922.629900px;}
.yf6{bottom:924.988977px;}
.yc9{bottom:936.848550px;}
.y9{bottom:941.419800px;}
.yf5{bottom:942.796714px;}
.yc8{bottom:951.067200px;}
.yf4{bottom:960.604451px;}
.yc7{bottom:965.285850px;}
.y8{bottom:966.863700px;}
.yf3{bottom:978.412187px;}
.yc6{bottom:979.504500px;}
.y7{bottom:988.191450px;}
.yc5{bottom:993.723150px;}
.yf2{bottom:996.219924px;}
.y6{bottom:996.797550px;}
.yc4{bottom:1007.941800px;}
.yf1{bottom:1014.027660px;}
.y5{bottom:1018.125300px;}
.yc3{bottom:1022.160450px;}
.y4{bottom:1026.731250px;}
.yf0{bottom:1031.835397px;}
.y3{bottom:1043.194950px;}
.yef{bottom:1049.643134px;}
.yee{bottom:1067.450870px;}
.y2{bottom:1071.631223px;}
.yed{bottom:1085.258607px;}
.y1{bottom:1095.579150px;}
.yec{bottom:1103.066343px;}
.y69{bottom:1140.479850px;}
.ycf{bottom:1140.479973px;}
.y12c{bottom:1140.481595px;}
.h22{height:22.654051px;}
.h16{height:24.991897px;}
.h19{height:25.875000px;}
.h4{height:26.772970px;}
.h20{height:32.951347px;}
.h1f{height:36.351850px;}
.h5{height:36.800860px;}
.h18{height:37.118160px;}
.h17{height:40.895831px;}
.h7{height:41.189184px;}
.h8{height:43.224696px;}
.h14{height:43.987010px;}
.h9{height:44.858704px;}
.h6{height:45.439812px;}
.h15{height:46.202822px;}
.h21{height:50.859629px;}
.he{height:53.690184px;}
.ha{height:55.725696px;}
.hf{height:57.258095px;}
.h10{height:57.260602px;}
.h11{height:57.260659px;}
.h1b{height:57.261494px;}
.hd{height:57.265015px;}
.h1c{height:57.269429px;}
.h12{height:57.270029px;}
.h13{height:57.270629px;}
.h1a{height:57.271229px;}
.hb{height:57.271975px;}
.h1e{height:57.274598px;}
.hc{height:57.940212px;}
.h2{height:60.915390px;}
.h3{height:60.915990px;}
.h1{height:60.933214px;}
.h1d{height:69.770429px;}
.h0{height:1188.000000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x1{left:64.357800px;}
.x3{left:89.801400px;}
.x2{left:118.238700px;}
.x4{left:145.126650px;}
.x5{left:155.406750px;}
.xa{left:174.022200px;}
.xb{left:185.645850px;}
.x17{left:267.457200px;}
.x18{left:276.581550px;}
.x15{left:304.309050px;}
.x6{left:317.441550px;}
.x7{left:327.721650px;}
.x8{left:390.068850px;}
.x9{left:400.348950px;}
.xc{left:459.484795px;}
.x1f{left:460.534950px;}
.x1d{left:464.348850px;}
.x1e{left:468.464850px;}
.x19{left:469.764750px;}
.x20{left:470.858373px;}
.x1a{left:481.393350px;}
.xd{left:484.930192px;}
.x1b{left:491.673450px;}
.x12{left:502.854300px;}
.xe{left:517.705950px;}
.xf{left:527.986050px;}
.x10{left:569.388900px;}
.x11{left:577.169550px;}
.x1c{left:640.584450px;}
.x13{left:785.022450px;}
.x14{left:795.302550px;}
.x16{left:871.770000px;}
@media print{
.v2{vertical-align:-22.616533pt;}
.v5{vertical-align:-19.956267pt;}
.v3{vertical-align:-11.097151pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.112000pt;}
.v6{vertical-align:19.579733pt;}
.v1{vertical-align:25.277333pt;}
.ls39{letter-spacing:-1.575194pt;}
.ls20{letter-spacing:-1.374569pt;}
.ls37{letter-spacing:-1.074165pt;}
.ls21{letter-spacing:-0.004257pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000267pt;}
.ls1{letter-spacing:0.003725pt;}
.lsb{letter-spacing:0.742350pt;}
.ls2b{letter-spacing:0.742933pt;}
.ls9{letter-spacing:1.053783pt;}
.ls1b{letter-spacing:1.058998pt;}
.lsd{letter-spacing:1.061399pt;}
.ls23{letter-spacing:1.585837pt;}
.ls1c{letter-spacing:4.230672pt;}
.lse{letter-spacing:5.519950pt;}
.ls10{letter-spacing:5.832474pt;}
.ls22{letter-spacing:9.025434pt;}
.ls1a{letter-spacing:11.686234pt;}
.ls38{letter-spacing:12.712238pt;}
.ls2e{letter-spacing:13.394467pt;}
.ls35{letter-spacing:13.636068pt;}
.ls34{letter-spacing:14.163971pt;}
.ls25{letter-spacing:14.299139pt;}
.ls32{letter-spacing:14.676973pt;}
.ls2{letter-spacing:15.254599pt;}
.ls0{letter-spacing:15.256333pt;}
.ls3{letter-spacing:15.256866pt;}
.ls17{letter-spacing:15.964800pt;}
.ls14{letter-spacing:16.023338pt;}
.ls7{letter-spacing:16.794970pt;}
.ls11{letter-spacing:17.231341pt;}
.lsf{letter-spacing:17.417597pt;}
.ls26{letter-spacing:17.518707pt;}
.ls5{letter-spacing:17.715606pt;}
.ls4{letter-spacing:17.720866pt;}
.ls27{letter-spacing:17.869933pt;}
.ls1e{letter-spacing:18.325333pt;}
.ls16{letter-spacing:18.627475pt;}
.ls15{letter-spacing:18.627733pt;}
.ls30{letter-spacing:18.790570pt;}
.ls12{letter-spacing:18.854142pt;}
.ls19{letter-spacing:19.852800pt;}
.ls6{letter-spacing:20.392371pt;}
.ls36{letter-spacing:21.120366pt;}
.lsc{letter-spacing:21.590933pt;}
.ls29{letter-spacing:22.254931pt;}
.ls8{letter-spacing:22.361363pt;}
.ls2c{letter-spacing:22.930774pt;}
.lsa{letter-spacing:23.722083pt;}
.ls13{letter-spacing:24.508800pt;}
.ls28{letter-spacing:24.686902pt;}
.ls31{letter-spacing:24.718832pt;}
.ls2d{letter-spacing:25.639469pt;}
.ls24{letter-spacing:26.166307pt;}
.ls18{letter-spacing:27.118874pt;}
.ls2f{letter-spacing:27.225306pt;}
.ls2a{letter-spacing:29.009106pt;}
.ls1d{letter-spacing:790.241635pt;}
.wsab{word-spacing:-17.768822pt;}
.ws102{word-spacing:-14.206543pt;}
.ws121{word-spacing:-13.678641pt;}
.ws112{word-spacing:-12.754811pt;}
.ws29{word-spacing:-5.885690pt;}
.ws6{word-spacing:-0.053216pt;}
.ws61{word-spacing:-0.047894pt;}
.ws64{word-spacing:-0.042573pt;}
.ws2{word-spacing:-0.040976pt;}
.ws63{word-spacing:-0.038316pt;}
.ws26{word-spacing:-0.037251pt;}
.ws4{word-spacing:-0.034590pt;}
.ws5e{word-spacing:-0.029269pt;}
.ws66{word-spacing:0.000000pt;}
.ws110{word-spacing:1.044896pt;}
.ws4f{word-spacing:1.337318pt;}
.ws23{word-spacing:8.051581pt;}
.ws22{word-spacing:8.056902pt;}
.ws100{word-spacing:11.005069pt;}
.ws101{word-spacing:11.009326pt;}
.wsbe{word-spacing:11.111501pt;}
.ws105{word-spacing:11.234962pt;}
.ws116{word-spacing:11.311593pt;}
.wsc0{word-spacing:11.673462pt;}
.ws119{word-spacing:11.792666pt;}
.ws10e{word-spacing:11.890583pt;}
.ws10f{word-spacing:11.911869pt;}
.ws10d{word-spacing:11.916127pt;}
.ws111{word-spacing:12.669665pt;}
.ws11d{word-spacing:13.201825pt;}
.wsda{word-spacing:13.341251pt;}
.ws120{word-spacing:13.593495pt;}
.ws11f{word-spacing:13.602010pt;}
.ws67{word-spacing:13.628618pt;}
.ws115{word-spacing:13.640325pt;}
.ws9{word-spacing:13.703120pt;}
.ws122{word-spacing:13.759529pt;}
.wsec{word-spacing:13.931949pt;}
.ws51{word-spacing:13.942592pt;}
.wsf6{word-spacing:14.033059pt;}
.wsd7{word-spacing:14.038381pt;}
.ws11b{word-spacing:14.108626pt;}
.ws10b{word-spacing:14.112883pt;}
.ws106{word-spacing:14.117140pt;}
.ws5f{word-spacing:14.121398pt;}
.ws65{word-spacing:14.129912pt;}
.wsc3{word-spacing:14.155456pt;}
.wsae{word-spacing:14.229958pt;}
.ws77{word-spacing:14.245923pt;}
.wsff{word-spacing:14.270403pt;}
.wsfe{word-spacing:14.274660pt;}
.wsf8{word-spacing:14.400250pt;}
.ws3a{word-spacing:14.442822pt;}
.ws7d{word-spacing:14.565219pt;}
.ws113{word-spacing:14.589699pt;}
.wse9{word-spacing:14.623757pt;}
.ws34{word-spacing:14.687616pt;}
.ws59{word-spacing:14.698259pt;}
.ws6e{word-spacing:14.703581pt;}
.ws8{word-spacing:14.746154pt;}
.ws4e{word-spacing:14.762118pt;}
.ws50{word-spacing:14.773092pt;}
.wsb3{word-spacing:14.820656pt;}
.ws53{word-spacing:14.852586pt;}
.wsaa{word-spacing:14.868550pt;}
.wsbc{word-spacing:14.951567pt;}
.wsf3{word-spacing:15.001590pt;}
.ws11{word-spacing:15.017555pt;}
.wsd9{word-spacing:15.033520pt;}
.ws42{word-spacing:15.123987pt;}
.wsbf{word-spacing:15.194232pt;}
.ws1{word-spacing:15.198490pt;}
.ws3b{word-spacing:15.246384pt;}
.wsbb{word-spacing:15.270863pt;}
.ws108{word-spacing:15.300664pt;}
.ws6c{word-spacing:15.374102pt;}
.ws6d{word-spacing:15.379424pt;}
.wsb1{word-spacing:15.395389pt;}
.ws5b{word-spacing:15.411354pt;}
.wsdf{word-spacing:15.443283pt;}
.wsf2{word-spacing:15.517786pt;}
.ws83{word-spacing:15.533750pt;}
.wsfc{word-spacing:15.560358pt;}
.wsd6{word-spacing:15.682755pt;}
.ws60{word-spacing:15.848257pt;}
.ws62{word-spacing:15.876994pt;}
.ws5{word-spacing:15.886572pt;}
.ws41{word-spacing:15.970122pt;}
.ws107{word-spacing:16.011630pt;}
.ws14{word-spacing:16.018016pt;}
.wseb{word-spacing:16.044624pt;}
.ws9e{word-spacing:16.060589pt;}
.ws44{word-spacing:16.167021pt;}
.ws2b{word-spacing:16.182986pt;}
.wsc6{word-spacing:16.198950pt;}
.ws20{word-spacing:16.422458pt;}
.ws84{word-spacing:16.470352pt;}
.ws11e{word-spacing:16.539533pt;}
.ws75{word-spacing:16.544854pt;}
.ws7e{word-spacing:16.667251pt;}
.wsca{word-spacing:16.693859pt;}
.ws15{word-spacing:16.725789pt;}
.ws16{word-spacing:16.741754pt;}
.wsa6{word-spacing:16.773683pt;}
.ws8c{word-spacing:16.789648pt;}
.ws118{word-spacing:16.824771pt;}
.wsdb{word-spacing:16.832221pt;}
.ws79{word-spacing:16.848186pt;}
.wsc{word-spacing:16.880115pt;}
.ws3e{word-spacing:16.997190pt;}
.wsa3{word-spacing:17.002512pt;}
.ws3c{word-spacing:17.013155pt;}
.ws103{word-spacing:17.024863pt;}
.wsa{word-spacing:17.029120pt;}
.ws104{word-spacing:17.033377pt;}
.wse4{word-spacing:17.061050pt;}
.ws11a{word-spacing:17.173868pt;}
.ws32{word-spacing:17.178125pt;}
.ws8b{word-spacing:17.268592pt;}
.wsb9{word-spacing:17.297329pt;}
.ws24{word-spacing:17.359059pt;}
.wsd{word-spacing:17.422918pt;}
.ws90{word-spacing:17.465491pt;}
.ws117{word-spacing:17.582566pt;}
.ws3{word-spacing:17.662390pt;}
.ws114{word-spacing:17.740086pt;}
.ws99{word-spacing:17.768822pt;}
.ws91{word-spacing:17.811395pt;}
.ws92{word-spacing:17.816717pt;}
.ws81{word-spacing:17.875254pt;}
.ws9d{word-spacing:17.949757pt;}
.wsa1{word-spacing:17.981686pt;}
.wsf0{word-spacing:18.104083pt;}
.ws1c{word-spacing:18.130691pt;}
.ws9c{word-spacing:18.162621pt;}
.ws43{word-spacing:18.210515pt;}
.ws8d{word-spacing:18.221158pt;}
.ws57{word-spacing:18.269053pt;}
.ws76{word-spacing:18.285018pt;}
.wsb6{word-spacing:18.359520pt;}
.ws12{word-spacing:18.391450pt;}
.wsa4{word-spacing:18.449987pt;}
.wsb4{word-spacing:18.540454pt;}
.ws48{word-spacing:18.572384pt;}
.ws21{word-spacing:18.662851pt;}
.wse3{word-spacing:18.732032pt;}
.wse2{word-spacing:18.737354pt;}
.ws33{word-spacing:18.795891pt;}
.wsb{word-spacing:18.811856pt;}
.ws2f{word-spacing:18.886358pt;}
.wsbd{word-spacing:18.944896pt;}
.ws10{word-spacing:18.950218pt;}
.ws89{word-spacing:18.992790pt;}
.ws52{word-spacing:19.131152pt;}
.ws1f{word-spacing:19.189690pt;}
.ws82{word-spacing:19.264192pt;}
.wsba{word-spacing:19.396168pt;}
.wse5{word-spacing:19.418518pt;}
.ws73{word-spacing:19.493021pt;}
.ws49{word-spacing:19.508986pt;}
.ws1d{word-spacing:19.524950pt;}
.wsa2{word-spacing:19.551558pt;}
.ws6f{word-spacing:19.721850pt;}
.ws36{word-spacing:19.737814pt;}
.ws55{word-spacing:19.796352pt;}
.ws2d{word-spacing:19.828282pt;}
.ws58{word-spacing:19.870854pt;}
.wsb5{word-spacing:20.019859pt;}
.wsf9{word-spacing:20.067754pt;}
.wsce{word-spacing:20.126291pt;}
.ws11c{word-spacing:20.183764pt;}
.wsf4{word-spacing:20.206115pt;}
.ws4d{word-spacing:20.248688pt;}
.ws27{word-spacing:20.307226pt;}
.wscb{word-spacing:20.323190pt;}
.ws13{word-spacing:20.339155pt;}
.wsa7{word-spacing:20.520090pt;}
.wsb2{word-spacing:20.552019pt;}
.ws4c{word-spacing:20.701024pt;}
.wsc2{word-spacing:20.835128pt;}
.wsaf{word-spacing:20.881958pt;}
.ws40{word-spacing:20.929853pt;}
.wsf1{word-spacing:20.988390pt;}
.ws7b{word-spacing:21.052250pt;}
.ws123{word-spacing:21.073536pt;}
.ws109{word-spacing:21.090565pt;}
.ws7a{word-spacing:21.110787pt;}
.ws94{word-spacing:21.158682pt;}
.ws5a{word-spacing:21.233184pt;}
.ws7{word-spacing:21.249149pt;}
.ws88{word-spacing:21.259792pt;}
.ws9f{word-spacing:21.339616pt;}
.ws46{word-spacing:21.430083pt;}
.ws1e{word-spacing:21.536515pt;}
.wsfa{word-spacing:21.547158pt;}
.ws85{word-spacing:21.579088pt;}
.ws38{word-spacing:21.595053pt;}
.wsac{word-spacing:21.611018pt;}
.ws80{word-spacing:21.653590pt;}
.ws3f{word-spacing:21.717450pt;}
.ws8a{word-spacing:21.850490pt;}
.ws4b{word-spacing:21.914349pt;}
.ws4a{word-spacing:21.922773pt;}
.ws35{word-spacing:21.924992pt;}
.wsa0{word-spacing:22.015459pt;}
.ws69{word-spacing:22.020781pt;}
.wsb0{word-spacing:22.201715pt;}
.wsde{word-spacing:22.228323pt;}
.wse{word-spacing:22.276218pt;}
.ws17{word-spacing:22.302826pt;}
.ws18{word-spacing:22.308147pt;}
.wsad{word-spacing:22.318790pt;}
.wse1{word-spacing:22.393293pt;}
.wsed{word-spacing:22.489082pt;}
.ws2e{word-spacing:22.515690pt;}
.ws10c{word-spacing:22.610414pt;}
.wsc5{word-spacing:22.622122pt;}
.ws10a{word-spacing:22.623186pt;}
.wsd4{word-spacing:22.638086pt;}
.ws39{word-spacing:22.728554pt;}
.ws3d{word-spacing:22.744518pt;}
.wsc4{word-spacing:22.819021pt;}
.ws74{word-spacing:22.834986pt;}
.wsd2{word-spacing:22.872237pt;}
.wsd3{word-spacing:22.877558pt;}
.wsd1{word-spacing:22.890240pt;}
.ws1b{word-spacing:22.925453pt;}
.ws68{word-spacing:22.968026pt;}
.wse0{word-spacing:23.031885pt;}
.wsa8{word-spacing:23.335216pt;}
.ws7c{word-spacing:23.393754pt;}
.wsc1{word-spacing:23.466127pt;}
.ws6a{word-spacing:23.542758pt;}
.ws56{word-spacing:23.558723pt;}
.wse6{word-spacing:23.878019pt;}
.wse7{word-spacing:23.893984pt;}
.ws72{word-spacing:24.011059pt;}
.ws70{word-spacing:24.016381pt;}
.ws71{word-spacing:24.024107pt;}
.ws19{word-spacing:24.058954pt;}
.wsc7{word-spacing:24.074918pt;}
.ws45{word-spacing:24.149421pt;}
.wsf{word-spacing:24.165386pt;}
.ws95{word-spacing:24.298426pt;}
.ws93{word-spacing:24.436787pt;}
.ws37{word-spacing:24.452752pt;}
.ws97{word-spacing:24.633686pt;}
.ws98{word-spacing:24.644373pt;}
.wse8{word-spacing:24.665616pt;}
.ws8e{word-spacing:24.676259pt;}
.wsee{word-spacing:24.692224pt;}
.ws0{word-spacing:24.734620pt;}
.ws78{word-spacing:24.846550pt;}
.ws6b{word-spacing:25.054093pt;}
.ws87{word-spacing:25.282922pt;}
.ws86{word-spacing:25.298886pt;}
.wsd8{word-spacing:25.586253pt;}
.wscc{word-spacing:25.825725pt;}
.wscd{word-spacing:25.837973pt;}
.ws2c{word-spacing:25.980051pt;}
.ws54{word-spacing:26.006659pt;}
.ws8f{word-spacing:26.022624pt;}
.wsfd{word-spacing:26.086483pt;}
.wsf5{word-spacing:26.325955pt;}
.wsa9{word-spacing:26.464317pt;}
.ws96{word-spacing:27.081622pt;}
.wsdc{word-spacing:27.161446pt;}
.wsdd{word-spacing:27.172090pt;}
.wsa5{word-spacing:27.353024pt;}
.ws7f{word-spacing:27.565888pt;}
.wsc9{word-spacing:27.613782pt;}
.ws2a{word-spacing:27.624426pt;}
.wsf7{word-spacing:28.199158pt;}
.wsfb{word-spacing:28.427987pt;}
.ws30{word-spacing:28.486525pt;}
.ws25{word-spacing:28.592957pt;}
.wsef{word-spacing:28.747283pt;}
.wsb8{word-spacing:28.966533pt;}
.wsb7{word-spacing:28.975048pt;}
.wsd5{word-spacing:29.848854pt;}
.ws5c{word-spacing:29.965930pt;}
.ws5d{word-spacing:29.971251pt;}
.wscf{word-spacing:30.301190pt;}
.ws9a{word-spacing:30.572592pt;}
.wsea{word-spacing:32.360650pt;}
.ws47{word-spacing:34.068883pt;}
.ws1a{word-spacing:35.761152pt;}
.ws31{word-spacing:37.511958pt;}
.ws28{word-spacing:37.666285pt;}
.wsc8{word-spacing:47.612355pt;}
.ws9b{word-spacing:49.246086pt;}
.wsd0{word-spacing:52.678518pt;}
._d{margin-left:-1482.755279pt;}
._14{margin-left:-17.731571pt;}
._19{margin-left:-14.997333pt;}
._1a{margin-left:-13.334865pt;}
._1c{margin-left:-11.946161pt;}
._7{margin-left:-6.636035pt;}
._12{margin-left:-5.028912pt;}
._6{margin-left:-4.001843pt;}
._0{margin-left:-2.921558pt;}
._1{margin-left:-1.772359pt;}
._9{width:1.058998pt;}
._11{width:2.421328pt;}
._8{width:5.832474pt;}
._3{width:12.803770pt;}
._2{width:13.846803pt;}
._4{width:17.912506pt;}
._1d{width:18.970440pt;}
._e{width:20.147578pt;}
._5{width:21.286400pt;}
._1b{width:22.648730pt;}
._a{width:23.627904pt;}
._13{width:25.564966pt;}
._f{width:26.666538pt;}
._b{width:27.635069pt;}
._10{width:28.699389pt;}
._18{width:31.455978pt;}
._15{width:34.347735pt;}
._16{width:91.552806pt;}
._c{width:1259.840906pt;}
._17{width:1523.408046pt;}
.fs8{font-size:29.268800pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:34.590400pt;}
.fs2{font-size:37.251200pt;}
.fs9{font-size:42.572800pt;}
.fs4{font-size:47.894400pt;}
.fs1{font-size:53.216000pt;}
.fs6{font-size:54.154521pt;}
.fs5{font-size:55.227706pt;}
.fs7{font-size:56.882514pt;}
.fs0{font-size:74.501867pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:31.929467pt;}
.y96{bottom:32.051733pt;}
.yc2{bottom:32.052353pt;}
.y95{bottom:47.351333pt;}
.yc1{bottom:47.616702pt;}
.y67{bottom:59.860133pt;}
.y65{bottom:62.637733pt;}
.y66{bottom:62.638133pt;}
.y94{bottom:62.650933pt;}
.yc0{bottom:63.181052pt;}
.y68{bottom:67.517600pt;}
.y64{bottom:77.937333pt;}
.y93{bottom:77.950533pt;}
.ybf{bottom:78.745402pt;}
.y63{bottom:93.236933pt;}
.y92{bottom:93.250133pt;}
.ybe{bottom:94.309751pt;}
.y3d{bottom:98.488895pt;}
.yeb{bottom:108.161467pt;}
.y127{bottom:108.173484pt;}
.y62{bottom:108.536533pt;}
.y91{bottom:108.549733pt;}
.ybd{bottom:109.874101pt;}
.y3c{bottom:113.920205pt;}
.y126{bottom:121.209275pt;}
.yea{bottom:123.461067pt;}
.y61{bottom:123.836133pt;}
.y90{bottom:123.849333pt;}
.ybc{bottom:125.438450pt;}
.y3b{bottom:129.351514pt;}
.ye9{bottom:138.760667pt;}
.y60{bottom:139.135600pt;}
.y8f{bottom:139.148933pt;}
.y125{bottom:139.234000pt;}
.ybb{bottom:141.002800pt;}
.y3a{bottom:144.782824pt;}
.y124{bottom:147.280475pt;}
.ye8{bottom:154.060267pt;}
.y5f{bottom:154.435200pt;}
.y8e{bottom:154.448533pt;}
.yba{bottom:156.565785pt;}
.y39{bottom:160.216652pt;}
.y123{bottom:165.305200pt;}
.ye7{bottom:169.359867pt;}
.y5d{bottom:169.734110pt;}
.y5e{bottom:169.734800pt;}
.y8d{bottom:169.748133pt;}
.yb9{bottom:172.130134pt;}
.y122{bottom:173.351542pt;}
.y38{bottom:175.647962pt;}
.ye6{bottom:184.659467pt;}
.y8c{bottom:185.047733pt;}
.yb8{bottom:187.694484pt;}
.y37{bottom:191.079271pt;}
.y121{bottom:191.376400pt;}
.y5b{bottom:193.549383pt;}
.y5c{bottom:193.549600pt;}
.y120{bottom:199.422742pt;}
.ye5{bottom:199.959067pt;}
.y8b{bottom:200.347333pt;}
.yb7{bottom:203.258833pt;}
.y36{bottom:206.510581pt;}
.ye4{bottom:215.258667pt;}
.y8a{bottom:215.646933pt;}
.y11f{bottom:217.447467pt;}
.yb6{bottom:218.823183pt;}
.y35{bottom:221.941890pt;}
.y11e{bottom:225.493942pt;}
.y5a{bottom:227.497200pt;}
.ye3{bottom:230.558267pt;}
.y89{bottom:230.946533pt;}
.yb5{bottom:234.387533pt;}
.y34{bottom:237.373200pt;}
.y33{bottom:237.376276pt;}
.y59{bottom:242.796533pt;}
.y11d{bottom:243.518800pt;}
.ye2{bottom:245.857867pt;}
.y88{bottom:246.246133pt;}
.yb4{bottom:249.951882pt;}
.y11c{bottom:251.565142pt;}
.y32{bottom:252.807585pt;}
.y58{bottom:258.096133pt;}
.ye1{bottom:261.157467pt;}
.y87{bottom:261.545733pt;}
.yb3{bottom:263.508667pt;}
.yb2{bottom:266.286533pt;}
.yb1{bottom:266.290256pt;}
.y31{bottom:268.238895pt;}
.y11b{bottom:269.590000pt;}
.y57{bottom:273.395733pt;}
.ye0{bottom:276.457067pt;}
.y86{bottom:276.845333pt;}
.yb0{bottom:281.854606pt;}
.y11a{bottom:282.625467pt;}
.y30{bottom:283.670205pt;}
.y56{bottom:288.695333pt;}
.ydf{bottom:291.756667pt;}
.y85{bottom:292.144933pt;}
.y119{bottom:295.661067pt;}
.yaf{bottom:297.550665pt;}
.y2f{bottom:299.101514pt;}
.y55{bottom:303.994933pt;}
.yde{bottom:307.056267pt;}
.y84{bottom:307.444533pt;}
.y118{bottom:308.696667pt;}
.yae{bottom:313.246724pt;}
.y2e{bottom:314.532824pt;}
.y54{bottom:319.294267pt;}
.y117{bottom:321.732267pt;}
.ydd{bottom:322.355867pt;}
.y83{bottom:322.744133pt;}
.y2d{bottom:327.186133pt;}
.yad{bottom:328.942783pt;}
.y116{bottom:329.778609pt;}
.y2c{bottom:329.964133pt;}
.y2b{bottom:329.964557pt;}
.y53{bottom:334.593867pt;}
.ydc{bottom:337.655200pt;}
.y82{bottom:338.043733pt;}
.yac{bottom:344.638843pt;}
.y2a{bottom:345.395867pt;}
.y115{bottom:347.803467pt;}
.y52{bottom:349.893467pt;}
.ydb{bottom:352.954800pt;}
.y81{bottom:353.343333pt;}
.y114{bottom:355.849809pt;}
.yab{bottom:360.334902pt;}
.y29{bottom:360.828714pt;}
.y51{bottom:365.192933pt;}
.yda{bottom:368.254400pt;}
.y80{bottom:368.642933pt;}
.y113{bottom:373.874667pt;}
.yaa{bottom:376.030961pt;}
.y28{bottom:376.260024pt;}
.y50{bottom:380.492533pt;}
.y112{bottom:381.921009pt;}
.yd9{bottom:383.554000pt;}
.y7f{bottom:383.942533pt;}
.y27{bottom:388.913467pt;}
.y26{bottom:391.691333pt;}
.y25{bottom:391.692871pt;}
.ya9{bottom:391.727020pt;}
.y4f{bottom:395.794082pt;}
.yd8{bottom:398.853333pt;}
.y7e{bottom:399.242133pt;}
.y111{bottom:399.945867pt;}
.y24{bottom:407.124181pt;}
.y110{bottom:407.992209pt;}
.ya8{bottom:408.194711pt;}
.y4e{bottom:411.093682pt;}
.yd7{bottom:414.152933pt;}
.y7d{bottom:414.541733pt;}
.y23{bottom:422.555490pt;}
.ya7{bottom:423.890771pt;}
.y10f{bottom:426.016933pt;}
.y4d{bottom:426.393282pt;}
.yd6{bottom:429.452133pt;}
.y7c{bottom:429.841333pt;}
.y10e{bottom:434.063409pt;}
.y22{bottom:437.986234pt;}
.ya6{bottom:439.586830pt;}
.y4c{bottom:441.692882pt;}
.yd5{bottom:444.751733pt;}
.y7b{bottom:445.140933pt;}
.y10d{bottom:452.088133pt;}
.y21{bottom:453.550584pt;}
.ya5{bottom:455.282889pt;}
.y4b{bottom:456.992482pt;}
.yd4{bottom:460.051333pt;}
.y7a{bottom:460.440533pt;}
.y10c{bottom:465.123733pt;}
.y20{bottom:466.336933pt;}
.y1e{bottom:469.114717pt;}
.y1f{bottom:469.114933pt;}
.ya4{bottom:470.978948pt;}
.y4a{bottom:472.292082pt;}
.y10b{bottom:473.170017pt;}
.yd3{bottom:475.350933pt;}
.y79{bottom:475.740133pt;}
.y1d{bottom:484.675354pt;}
.y10a{bottom:486.205809pt;}
.ya3{bottom:486.675007pt;}
.y49{bottom:487.591682pt;}
.yd2{bottom:490.650533pt;}
.y78{bottom:491.039733pt;}
.y1c{bottom:500.239704pt;}
.ya2{bottom:502.371067pt;}
.y48{bottom:502.891282pt;}
.y109{bottom:504.230533pt;}
.yd1{bottom:505.950133pt;}
.y77{bottom:506.339333pt;}
.ya1{bottom:515.289467pt;}
.y1b{bottom:515.804054pt;}
.ya0{bottom:518.067333pt;}
.y47{bottom:518.190882pt;}
.yd0{bottom:521.249733pt;}
.y76{bottom:521.638933pt;}
.y108{bottom:528.241919pt;}
.y1a{bottom:531.368403pt;}
.y46{bottom:533.490482pt;}
.y9f{bottom:533.764756pt;}
.y75{bottom:536.938533pt;}
.y107{bottom:543.937978pt;}
.y19{bottom:546.932753pt;}
.y45{bottom:548.790082pt;}
.y9e{bottom:549.460815pt;}
.y74{bottom:552.237733pt;}
.y12b{bottom:555.839867pt;}
.y106{bottom:559.634037pt;}
.y18{bottom:562.497102pt;}
.y44{bottom:564.089682pt;}
.y9d{bottom:565.156874pt;}
.y73{bottom:567.537333pt;}
.y12a{bottom:568.478667pt;}
.y6b{bottom:570.173333pt;}
.y17{bottom:578.061452pt;}
.y43{bottom:579.389282pt;}
.y9c{bottom:580.852933pt;}
.y129{bottom:581.117467pt;}
.y72{bottom:582.836933pt;}
.y105{bottom:585.973296pt;}
.y16{bottom:593.625802pt;}
.y128{bottom:593.756267pt;}
.y42{bottom:594.688882pt;}
.y9b{bottom:596.551097pt;}
.y71{bottom:598.136533pt;}
.y104{bottom:601.669355pt;}
.y15{bottom:609.190151pt;}
.y41{bottom:609.988482pt;}
.y9a{bottom:612.247156pt;}
.y6f{bottom:613.436000pt;}
.y70{bottom:613.436133pt;}
.y103{bottom:617.365415pt;}
.y14{bottom:624.754501pt;}
.y40{bottom:625.288082pt;}
.y99{bottom:627.943215pt;}
.y6e{bottom:628.735600pt;}
.y102{bottom:633.061474pt;}
.y13{bottom:640.318850pt;}
.y3f{bottom:640.587682pt;}
.y98{bottom:643.639274pt;}
.y6d{bottom:644.035200pt;}
.y101{bottom:648.757533pt;}
.y12{bottom:655.883200pt;}
.y3e{bottom:655.887282pt;}
.y6c{bottom:659.334800pt;}
.y97{bottom:659.335333pt;}
.y100{bottom:664.453592pt;}
.yff{bottom:680.149651pt;}
.yfe{bottom:695.845711pt;}
.y11{bottom:701.116800pt;}
.yfd{bottom:711.541770pt;}
.y10{bottom:717.081600pt;}
.yfc{bottom:727.237829pt;}
.yf{bottom:733.046400pt;}
.yfb{bottom:743.066928pt;}
.ye{bottom:749.011200pt;}
.yfa{bottom:758.896027pt;}
.yd{bottom:764.976000pt;}
.yce{bottom:769.560267pt;}
.yf9{bottom:774.725127pt;}
.yc{bottom:780.940800pt;}
.ycd{bottom:782.199067pt;}
.yf8{bottom:790.554226pt;}
.ycc{bottom:794.837867pt;}
.yb{bottom:796.905600pt;}
.yf7{bottom:806.383325pt;}
.ycb{bottom:807.476667pt;}
.ya{bottom:812.870400pt;}
.yca{bottom:820.115467pt;}
.yf6{bottom:822.212424pt;}
.yc9{bottom:832.754267pt;}
.y9{bottom:836.817600pt;}
.yf5{bottom:838.041523pt;}
.yc8{bottom:845.393067pt;}
.yf4{bottom:853.870623pt;}
.yc7{bottom:858.031867pt;}
.y8{bottom:859.434400pt;}
.yf3{bottom:869.699722pt;}
.yc6{bottom:870.670667pt;}
.y7{bottom:878.392400pt;}
.yc5{bottom:883.309467pt;}
.yf2{bottom:885.528821pt;}
.y6{bottom:886.042266pt;}
.yc4{bottom:895.948267pt;}
.yf1{bottom:901.357920pt;}
.y5{bottom:905.000267pt;}
.yc3{bottom:908.587067pt;}
.y4{bottom:912.650000pt;}
.yf0{bottom:917.187019pt;}
.y3{bottom:927.284400pt;}
.yef{bottom:933.016119pt;}
.yee{bottom:948.845218pt;}
.y2{bottom:952.561087pt;}
.yed{bottom:964.674317pt;}
.y1{bottom:973.848133pt;}
.yec{bottom:980.503416pt;}
.y69{bottom:1013.759867pt;}
.ycf{bottom:1013.759976pt;}
.y12c{bottom:1013.761418pt;}
.h22{height:20.136934pt;}
.h16{height:22.215019pt;}
.h19{height:23.000000pt;}
.h4{height:23.798195pt;}
.h20{height:29.290086pt;}
.h1f{height:32.312755pt;}
.h5{height:32.711875pt;}
.h18{height:32.993920pt;}
.h17{height:36.351850pt;}
.h7{height:36.612608pt;}
.h8{height:38.421952pt;}
.h14{height:39.099564pt;}
.h9{height:39.874404pt;}
.h6{height:40.390944pt;}
.h15{height:41.069175pt;}
.h21{height:45.208559pt;}
.he{height:47.724608pt;}
.ha{height:49.533952pt;}
.hf{height:50.896084pt;}
.h10{height:50.898313pt;}
.h11{height:50.898364pt;}
.h1b{height:50.899106pt;}
.hd{height:50.902236pt;}
.h1c{height:50.906159pt;}
.h12{height:50.906692pt;}
.h13{height:50.907226pt;}
.h1a{height:50.907759pt;}
.hb{height:50.908422pt;}
.h1e{height:50.910754pt;}
.hc{height:51.502411pt;}
.h2{height:54.147013pt;}
.h3{height:54.147547pt;}
.h1{height:54.162857pt;}
.h1d{height:62.018159pt;}
.h0{height:1056.000000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x1{left:57.206933pt;}
.x3{left:79.823467pt;}
.x2{left:105.101067pt;}
.x4{left:129.001467pt;}
.x5{left:138.139333pt;}
.xa{left:154.686400pt;}
.xb{left:165.018533pt;}
.x17{left:237.739733pt;}
.x18{left:245.850267pt;}
.x15{left:270.496933pt;}
.x6{left:282.170267pt;}
.x7{left:291.308133pt;}
.x8{left:346.727867pt;}
.x9{left:355.865733pt;}
.xc{left:408.430929pt;}
.x1f{left:409.364400pt;}
.x1d{left:412.754533pt;}
.x1e{left:416.413200pt;}
.x19{left:417.568667pt;}
.x20{left:418.540776pt;}
.x1a{left:427.905200pt;}
.xd{left:431.049059pt;}
.x1b{left:437.043067pt;}
.x12{left:446.981600pt;}
.xe{left:460.183067pt;}
.xf{left:469.320933pt;}
.x10{left:506.123467pt;}
.x11{left:513.039600pt;}
.x1c{left:569.408400pt;}
.x13{left:697.797733pt;}
.x14{left:706.935600pt;}
.x16{left:774.906667pt;}
}




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