
    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_293ce62115bdedc6c1e3e63f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_b8244790999e00262105e05c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_8bb558c56a26da5fd7ec2b4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_b7ab663ce1e4f2af5458a660.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-61.199388px;}
.v0{vertical-align:0.000000px;}
.ls9a{letter-spacing:-1.248696px;}
.ls7d{letter-spacing:-1.195236px;}
.ls45{letter-spacing:-1.137996px;}
.ls69{letter-spacing:-0.956448px;}
.lsa2{letter-spacing:-0.947592px;}
.ls4d{letter-spacing:-0.943164px;}
.ls91{letter-spacing:-0.934308px;}
.ls4f{letter-spacing:-0.929880px;}
.ls68{letter-spacing:-0.916596px;}
.ls71{letter-spacing:-0.898884px;}
.ls1{letter-spacing:-0.728676px;}
.ls36{letter-spacing:-0.673056px;}
.lsa9{letter-spacing:-0.664200px;}
.lsae{letter-spacing:-0.642060px;}
.ls8c{letter-spacing:-0.637632px;}
.ls6b{letter-spacing:-0.628776px;}
.lsb0{letter-spacing:-0.624348px;}
.ls96{letter-spacing:-0.619920px;}
.ls44{letter-spacing:-0.606636px;}
.ls50{letter-spacing:-0.602208px;}
.ls75{letter-spacing:-0.597780px;}
.ls59{letter-spacing:-0.593352px;}
.ls84{letter-spacing:-0.584496px;}
.ls5c{letter-spacing:-0.580068px;}
.lsa7{letter-spacing:-0.575640px;}
.ls42{letter-spacing:-0.571212px;}
.ls76{letter-spacing:-0.566784px;}
.ls22{letter-spacing:-0.562356px;}
.ls1b{letter-spacing:-0.557928px;}
.lsf{letter-spacing:-0.544644px;}
.ls8f{letter-spacing:-0.531360px;}
.ls7c{letter-spacing:-0.526932px;}
.ls77{letter-spacing:-0.522504px;}
.ls1e{letter-spacing:-0.518076px;}
.ls67{letter-spacing:-0.513648px;}
.ls66{letter-spacing:-0.509220px;}
.ls2d{letter-spacing:-0.504792px;}
.ls29{letter-spacing:-0.500364px;}
.ls34{letter-spacing:-0.495936px;}
.ls43{letter-spacing:-0.487080px;}
.ls2f{letter-spacing:-0.482652px;}
.ls7f{letter-spacing:-0.478224px;}
.ls37{letter-spacing:-0.473796px;}
.ls83{letter-spacing:-0.469368px;}
.ls79{letter-spacing:-0.464940px;}
.ls3d{letter-spacing:-0.456084px;}
.ls73{letter-spacing:-0.451656px;}
.ls55{letter-spacing:-0.442800px;}
.ls6e{letter-spacing:-0.433944px;}
.ls48{letter-spacing:-0.389664px;}
.lsad{letter-spacing:-0.371952px;}
.ls70{letter-spacing:-0.363096px;}
.ls3{letter-spacing:-0.314388px;}
.lsa4{letter-spacing:-0.296676px;}
.ls9b{letter-spacing:-0.270108px;}
.lsb1{letter-spacing:-0.265680px;}
.ls41{letter-spacing:-0.261252px;}
.ls9e{letter-spacing:-0.239112px;}
.ls3c{letter-spacing:-0.185976px;}
.ls24{letter-spacing:-0.180360px;}
.ls25{letter-spacing:-0.174348px;}
.ls60{letter-spacing:-0.146124px;}
.ls61{letter-spacing:-0.128412px;}
.ls64{letter-spacing:-0.123984px;}
.ls1c{letter-spacing:-0.119556px;}
.ls57{letter-spacing:-0.115128px;}
.ls78{letter-spacing:-0.106272px;}
.lsa{letter-spacing:-0.097416px;}
.ls6f{letter-spacing:-0.092988px;}
.ls5a{letter-spacing:-0.088560px;}
.ls8a{letter-spacing:-0.057564px;}
.ls3a{letter-spacing:-0.031248px;}
.ls17{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.039852px;}
.ls95{letter-spacing:0.123984px;}
.ls8e{letter-spacing:0.225828px;}
.lsac{letter-spacing:0.239112px;}
.ls32{letter-spacing:0.242172px;}
.ls0{letter-spacing:0.249984px;}
.lsa0{letter-spacing:0.265680px;}
.ls94{letter-spacing:0.270108px;}
.lsab{letter-spacing:0.274536px;}
.ls3b{letter-spacing:0.278964px;}
.ls21{letter-spacing:0.283392px;}
.ls5e{letter-spacing:0.287820px;}
.ls2b{letter-spacing:0.292248px;}
.ls80{letter-spacing:0.296676px;}
.ls4c{letter-spacing:0.301104px;}
.ls8d{letter-spacing:0.305532px;}
.ls1d{letter-spacing:0.309960px;}
.ls82{letter-spacing:0.314388px;}
.ls1f{letter-spacing:0.318816px;}
.ls20{letter-spacing:0.323244px;}
.lsc{letter-spacing:0.327672px;}
.ls7{letter-spacing:0.332100px;}
.lse{letter-spacing:0.336528px;}
.ls12{letter-spacing:0.340956px;}
.ls1a{letter-spacing:0.345384px;}
.ls27{letter-spacing:0.349812px;}
.ls4{letter-spacing:0.354240px;}
.ls2{letter-spacing:0.358668px;}
.ls6{letter-spacing:0.363096px;}
.ls87{letter-spacing:0.367164px;}
.ls9{letter-spacing:0.367524px;}
.lsb{letter-spacing:0.371952px;}
.ls3f{letter-spacing:0.376380px;}
.ls8{letter-spacing:0.380808px;}
.ls33{letter-spacing:0.385236px;}
.lsd{letter-spacing:0.389664px;}
.ls2c{letter-spacing:0.394092px;}
.ls4b{letter-spacing:0.398520px;}
.ls13{letter-spacing:0.402948px;}
.ls5f{letter-spacing:0.411804px;}
.ls30{letter-spacing:0.416232px;}
.ls15{letter-spacing:0.420660px;}
.ls89{letter-spacing:0.425088px;}
.lsa3{letter-spacing:0.429516px;}
.ls54{letter-spacing:0.433944px;}
.ls81{letter-spacing:0.438372px;}
.ls10{letter-spacing:0.460512px;}
.ls99{letter-spacing:0.469368px;}
.ls7a{letter-spacing:0.473796px;}
.ls63{letter-spacing:0.549072px;}
.ls62{letter-spacing:0.553500px;}
.ls46{letter-spacing:0.637632px;}
.ls5d{letter-spacing:0.650916px;}
.lsaf{letter-spacing:0.664200px;}
.ls19{letter-spacing:0.673056px;}
.ls52{letter-spacing:0.686340px;}
.ls74{letter-spacing:0.690768px;}
.ls9d{letter-spacing:0.699624px;}
.ls7e{letter-spacing:0.708480px;}
.lsa8{letter-spacing:0.717336px;}
.lsa1{letter-spacing:0.721764px;}
.ls85{letter-spacing:0.735048px;}
.ls97{letter-spacing:0.757188px;}
.ls72{letter-spacing:0.766044px;}
.ls65{letter-spacing:0.770472px;}
.ls6c{letter-spacing:0.774900px;}
.ls88{letter-spacing:0.779328px;}
.ls51{letter-spacing:0.783756px;}
.ls7b{letter-spacing:0.788184px;}
.ls40{letter-spacing:0.792612px;}
.ls5b{letter-spacing:0.797040px;}
.ls11{letter-spacing:0.801468px;}
.ls35{letter-spacing:0.805896px;}
.ls31{letter-spacing:0.810324px;}
.ls26{letter-spacing:0.814752px;}
.ls3e{letter-spacing:0.819180px;}
.ls28{letter-spacing:0.823608px;}
.ls2a{letter-spacing:0.828036px;}
.ls14{letter-spacing:0.832464px;}
.ls39{letter-spacing:0.836892px;}
.ls38{letter-spacing:0.841320px;}
.ls49{letter-spacing:0.845748px;}
.ls56{letter-spacing:0.850176px;}
.ls4e{letter-spacing:0.854604px;}
.ls58{letter-spacing:0.859032px;}
.ls16{letter-spacing:0.863460px;}
.ls47{letter-spacing:0.867888px;}
.ls90{letter-spacing:0.872316px;}
.ls6a{letter-spacing:0.876744px;}
.ls8b{letter-spacing:0.881172px;}
.ls9f{letter-spacing:0.894456px;}
.ls86{letter-spacing:0.898884px;}
.ls6d{letter-spacing:0.912168px;}
.ls92{letter-spacing:1.000728px;}
.lsa5{letter-spacing:1.018440px;}
.lsaa{letter-spacing:1.049436px;}
.ls9c{letter-spacing:1.137996px;}
.ls53{letter-spacing:1.168992px;}
.lsa6{letter-spacing:1.173420px;}
.ls98{letter-spacing:1.195560px;}
.ls2e{letter-spacing:1.204416px;}
.ls4a{letter-spacing:1.208844px;}
.ls5{letter-spacing:1.213272px;}
.ls23{letter-spacing:1.316628px;}
.ls18{letter-spacing:1.960812px;}
.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;}
}
.wsad{word-spacing:-27.865404px;}
.ws4{word-spacing:-27.748224px;}
.ws2a{word-spacing:-27.740412px;}
.ws97{word-spacing:-26.303004px;}
.wscf{word-spacing:-16.799832px;}
.ws5{word-spacing:-16.450020px;}
.wsd5{word-spacing:-16.436736px;}
.wsb2{word-spacing:-16.427880px;}
.ws50{word-spacing:-16.419024px;}
.wsb4{word-spacing:-16.410168px;}
.ws6d{word-spacing:-16.396884px;}
.ws6a{word-spacing:-16.388028px;}
.wsd0{word-spacing:-16.374744px;}
.wsd7{word-spacing:-16.365888px;}
.wsce{word-spacing:-16.361460px;}
.wsd6{word-spacing:-16.357032px;}
.wsb3{word-spacing:-16.343748px;}
.ws6b{word-spacing:-16.237476px;}
.ws95{word-spacing:-16.060356px;}
.wsb1{word-spacing:-15.989508px;}
.wsd1{word-spacing:-15.927516px;}
.ws88{word-spacing:-15.918660px;}
.wsd3{word-spacing:-15.909804px;}
.ws6c{word-spacing:-15.874380px;}
.wsd2{word-spacing:-15.861096px;}
.wsaf{word-spacing:-15.856668px;}
.wsd4{word-spacing:-15.825672px;}
.wsae{word-spacing:-15.812388px;}
.wsb0{word-spacing:-15.710544px;}
.wscd{word-spacing:-15.289884px;}
.ws89{word-spacing:-15.223464px;}
.ws96{word-spacing:-15.059628px;}
.ws3{word-spacing:-15.041916px;}
.ws44{word-spacing:-14.913504px;}
.ws29{word-spacing:-14.643396px;}
.ws6e{word-spacing:-14.630112px;}
.ws20{word-spacing:-1.301832px;}
.ws55{word-spacing:-1.297404px;}
.ws35{word-spacing:-1.292976px;}
.wsc4{word-spacing:-1.284120px;}
.wsdf{word-spacing:-1.261980px;}
.ws62{word-spacing:-1.257552px;}
.wsc9{word-spacing:-1.226556px;}
.wse6{word-spacing:-1.137996px;}
.wsde{word-spacing:-1.107000px;}
.ws8a{word-spacing:-1.000728px;}
.wsac{word-spacing:-0.987444px;}
.wsb9{word-spacing:-0.969732px;}
.ws84{word-spacing:-0.965304px;}
.wsbf{word-spacing:-0.960876px;}
.ws52{word-spacing:-0.956448px;}
.wsb6{word-spacing:-0.952020px;}
.ws69{word-spacing:-0.947592px;}
.ws5a{word-spacing:-0.943164px;}
.ws66{word-spacing:-0.938736px;}
.ws54{word-spacing:-0.934308px;}
.ws3e{word-spacing:-0.929880px;}
.ws40{word-spacing:-0.925452px;}
.ws2b{word-spacing:-0.921024px;}
.ws31{word-spacing:-0.916596px;}
.ws30{word-spacing:-0.912168px;}
.ws46{word-spacing:-0.907740px;}
.ws2d{word-spacing:-0.903312px;}
.ws38{word-spacing:-0.898884px;}
.ws3b{word-spacing:-0.894456px;}
.ws1b{word-spacing:-0.890028px;}
.wsca{word-spacing:-0.885600px;}
.ws48{word-spacing:-0.881172px;}
.ws9f{word-spacing:-0.876744px;}
.ws5f{word-spacing:-0.872316px;}
.wsb5{word-spacing:-0.867888px;}
.wse3{word-spacing:-0.863460px;}
.wsd8{word-spacing:-0.854604px;}
.wsaa{word-spacing:-0.823608px;}
.wsdc{word-spacing:-0.810324px;}
.wse1{word-spacing:-0.805896px;}
.wsa2{word-spacing:-0.797040px;}
.ws94{word-spacing:-0.779328px;}
.wsee{word-spacing:-0.774900px;}
.wsbd{word-spacing:-0.761616px;}
.wse9{word-spacing:-0.752760px;}
.wsc1{word-spacing:-0.726192px;}
.ws7b{word-spacing:-0.637632px;}
.ws1c{word-spacing:-0.624960px;}
.wsd9{word-spacing:-0.619920px;}
.ws92{word-spacing:-0.588924px;}
.ws68{word-spacing:-0.575640px;}
.wsed{word-spacing:-0.571212px;}
.ws82{word-spacing:-0.566784px;}
.ws64{word-spacing:-0.562356px;}
.ws19{word-spacing:-0.557928px;}
.ws3f{word-spacing:-0.553500px;}
.ws42{word-spacing:-0.549072px;}
.ws4e{word-spacing:-0.544644px;}
.ws51{word-spacing:-0.540216px;}
.ws75{word-spacing:-0.535788px;}
.ws74{word-spacing:-0.531360px;}
.ws16{word-spacing:-0.526932px;}
.ws71{word-spacing:-0.522504px;}
.ws78{word-spacing:-0.518076px;}
.wsda{word-spacing:-0.513648px;}
.ws98{word-spacing:-0.509220px;}
.ws63{word-spacing:-0.504792px;}
.ws18{word-spacing:-0.491508px;}
.ws57{word-spacing:-0.487080px;}
.ws33{word-spacing:-0.482652px;}
.ws12{word-spacing:-0.478224px;}
.ws39{word-spacing:-0.473796px;}
.wsc{word-spacing:-0.469368px;}
.ws47{word-spacing:-0.464940px;}
.wsf{word-spacing:-0.460512px;}
.wsd{word-spacing:-0.456084px;}
.wsb{word-spacing:-0.451656px;}
.ws11{word-spacing:-0.447228px;}
.wsa{word-spacing:-0.442800px;}
.ws2f{word-spacing:-0.438372px;}
.ws1e{word-spacing:-0.433944px;}
.ws17{word-spacing:-0.429516px;}
.ws13{word-spacing:-0.425088px;}
.ws15{word-spacing:-0.420660px;}
.ws10{word-spacing:-0.416232px;}
.wsa5{word-spacing:-0.411804px;}
.ws25{word-spacing:-0.407376px;}
.wsa6{word-spacing:-0.402948px;}
.wsa1{word-spacing:-0.398520px;}
.wsbb{word-spacing:-0.394092px;}
.wscc{word-spacing:-0.389664px;}
.ws32{word-spacing:-0.380808px;}
.ws26{word-spacing:-0.371952px;}
.ws61{word-spacing:-0.340956px;}
.ws1d{word-spacing:-0.327672px;}
.ws7{word-spacing:-0.286488px;}
.ws7a{word-spacing:-0.278964px;}
.wsc5{word-spacing:-0.194832px;}
.ws14{word-spacing:-0.185976px;}
.wsb7{word-spacing:-0.150552px;}
.ws1a{word-spacing:-0.146124px;}
.wsc2{word-spacing:-0.128412px;}
.ws7c{word-spacing:-0.123984px;}
.wsc8{word-spacing:-0.119556px;}
.ws5e{word-spacing:-0.115128px;}
.ws41{word-spacing:-0.110700px;}
.ws60{word-spacing:-0.106272px;}
.ws4d{word-spacing:-0.101844px;}
.ws85{word-spacing:-0.097416px;}
.ws8d{word-spacing:-0.092988px;}
.ws36{word-spacing:-0.088560px;}
.ws8{word-spacing:-0.084132px;}
.ws9{word-spacing:-0.079704px;}
.wse5{word-spacing:-0.075276px;}
.ws37{word-spacing:-0.070848px;}
.ws2e{word-spacing:-0.066420px;}
.ws76{word-spacing:-0.061992px;}
.ws1f{word-spacing:-0.057564px;}
.ws7f{word-spacing:-0.053136px;}
.wse2{word-spacing:-0.048708px;}
.wsb8{word-spacing:-0.030996px;}
.ws58{word-spacing:-0.026568px;}
.wsa4{word-spacing:-0.022140px;}
.wse{word-spacing:0.000000px;}
.ws8e{word-spacing:0.004428px;}
.ws8b{word-spacing:0.008856px;}
.ws9d{word-spacing:0.017712px;}
.ws67{word-spacing:0.026568px;}
.ws22{word-spacing:0.030996px;}
.ws7d{word-spacing:0.035424px;}
.ws79{word-spacing:0.039852px;}
.ws77{word-spacing:0.057564px;}
.wscb{word-spacing:0.150552px;}
.wsbe{word-spacing:0.172692px;}
.wsec{word-spacing:0.177120px;}
.wsc7{word-spacing:0.181548px;}
.ws28{word-spacing:0.270540px;}
.wsea{word-spacing:0.274536px;}
.ws80{word-spacing:0.309960px;}
.ws2c{word-spacing:0.336528px;}
.ws65{word-spacing:0.354240px;}
.ws93{word-spacing:0.363096px;}
.ws5c{word-spacing:0.367524px;}
.ws9e{word-spacing:0.376380px;}
.wsa7{word-spacing:0.380808px;}
.ws3d{word-spacing:0.385236px;}
.wsa3{word-spacing:0.389664px;}
.ws23{word-spacing:0.394092px;}
.ws4b{word-spacing:0.398520px;}
.ws3a{word-spacing:0.407376px;}
.ws56{word-spacing:0.411804px;}
.ws34{word-spacing:0.416232px;}
.ws7e{word-spacing:0.420660px;}
.ws87{word-spacing:0.425088px;}
.ws24{word-spacing:0.429516px;}
.ws9c{word-spacing:0.433944px;}
.wsab{word-spacing:0.438372px;}
.ws21{word-spacing:0.469368px;}
.ws9a{word-spacing:0.473796px;}
.ws4a{word-spacing:0.482652px;}
.wse0{word-spacing:0.487080px;}
.ws73{word-spacing:0.491508px;}
.wsa9{word-spacing:0.495936px;}
.ws70{word-spacing:0.504792px;}
.ws4c{word-spacing:0.518076px;}
.wsc3{word-spacing:0.531360px;}
.wseb{word-spacing:0.535788px;}
.ws86{word-spacing:0.540216px;}
.wsba{word-spacing:0.549072px;}
.wse4{word-spacing:0.575640px;}
.ws3c{word-spacing:0.584496px;}
.ws49{word-spacing:0.606636px;}
.wse7{word-spacing:0.646488px;}
.ws53{word-spacing:0.664200px;}
.ws8c{word-spacing:0.708480px;}
.wsdb{word-spacing:0.730620px;}
.wsa8{word-spacing:0.748332px;}
.ws72{word-spacing:0.761616px;}
.ws8f{word-spacing:0.779328px;}
.ws81{word-spacing:0.788184px;}
.wsbc{word-spacing:0.805896px;}
.ws83{word-spacing:0.828036px;}
.ws27{word-spacing:0.836892px;}
.ws9b{word-spacing:0.841320px;}
.wsc0{word-spacing:0.845748px;}
.wsdd{word-spacing:0.859032px;}
.ws6f{word-spacing:0.867888px;}
.ws5d{word-spacing:0.876744px;}
.ws45{word-spacing:0.890028px;}
.wse8{word-spacing:0.916596px;}
.ws99{word-spacing:0.943164px;}
.ws90{word-spacing:0.947592px;}
.wsc6{word-spacing:1.160136px;}
.ws91{word-spacing:1.173420px;}
.ws5b{word-spacing:1.204416px;}
.ws59{word-spacing:1.217700px;}
.ws43{word-spacing:1.273356px;}
.wsa0{word-spacing:1.335852px;}
.ws4f{word-spacing:1.483380px;}
.ws1{word-spacing:12.668508px;}
.ws2{word-spacing:14.430852px;}
.ws0{word-spacing:15.706116px;}
.ws6{word-spacing:1686.396060px;}
._2{margin-left:-1865.025828px;}
._5{margin-left:-1750.741128px;}
._3{margin-left:-1432.719720px;}
._4{margin-left:-1385.200872px;}
._6{margin-left:-1379.125656px;}
._c{margin-left:-6.414660px;}
._b{margin-left:-5.092884px;}
._8{margin-left:-3.353976px;}
._7{margin-left:-2.263644px;}
._1{margin-left:-1.067148px;}
._0{width:1.295424px;}
._9{width:2.315016px;}
._a{width:3.552768px;}
._d{width:2970.835092px;}
.fc3{color:rgb(119,119,187);}
.fc1{color:rgb(204,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(17,17,17);}
.fs1{font-size:44.280000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:62.280000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.989964px;}
.y2a{bottom:60.420054px;}
.yc4{bottom:62.400090px;}
.y106{bottom:64.560567px;}
.y140{bottom:66.267291px;}
.y87{bottom:66.900726px;}
.y1ac{bottom:75.088956px;}
.y29{bottom:75.719901px;}
.y64{bottom:76.080450px;}
.y177{bottom:79.680576px;}
.y105{bottom:79.860414px;}
.y86{bottom:82.200573px;}
.yc3{bottom:88.590603px;}
.y1ab{bottom:90.388803px;}
.y28{bottom:91.019748px;}
.y13f{bottom:92.457804px;}
.y176{bottom:94.980423px;}
.y104{bottom:95.160261px;}
.y85{bottom:97.500420px;}
.yc2{bottom:103.890396px;}
.y1aa{bottom:105.598983px;}
.y27{bottom:106.229928px;}
.y13e{bottom:107.757651px;}
.y175{bottom:110.190603px;}
.y103{bottom:110.370441px;}
.y84{bottom:112.709982px;}
.y1da{bottom:114.510216px;}
.yc1{bottom:119.100576px;}
.y1a9{bottom:120.898830px;}
.y26{bottom:121.529775px;}
.y174{bottom:125.490450px;}
.y83{bottom:128.009829px;}
.y1d9{bottom:129.810063px;}
.y13d{bottom:133.948164px;}
.yc0{bottom:134.400423px;}
.y1a8{bottom:136.198677px;}
.y102{bottom:136.650621px;}
.y25{bottom:136.829622px;}
.y1d8{bottom:145.109910px;}
.y63{bottom:148.529028px;}
.ybf{bottom:149.700270px;}
.y173{bottom:151.680756px;}
.y101{bottom:151.860801px;}
.y24{bottom:152.129469px;}
.y82{bottom:154.200342px;}
.y13c{bottom:160.138677px;}
.y1d7{bottom:160.409757px;}
.y1a7{bottom:162.389190px;}
.ybe{bottom:164.910450px;}
.y172{bottom:166.980603px;}
.y100{bottom:167.160648px;}
.y23{bottom:167.339649px;}
.y62{bottom:174.719541px;}
.y13b{bottom:175.438524px;}
.y1d6{bottom:175.619937px;}
.y1a6{bottom:177.689037px;}
.y81{bottom:180.390855px;}
.y171{bottom:182.280450px;}
.y61{bottom:190.019388px;}
.y13a{bottom:190.648704px;}
.ybd{bottom:191.190828px;}
.yff{bottom:193.351161px;}
.y22{bottom:193.530162px;}
.y80{bottom:195.690702px;}
.y1d5{bottom:201.810450px;}
.y1a5{bottom:203.879550px;}
.ybc{bottom:206.401008px;}
.y170{bottom:208.470450px;}
.yfe{bottom:208.651008px;}
.y7f{bottom:210.990549px;}
.y60{bottom:216.209901px;}
.y139{bottom:216.928884px;}
.y1a4{bottom:219.089730px;}
.y21{bottom:219.810342px;}
.ybb{bottom:221.700855px;}
.yfd{bottom:223.950855px;}
.y7e{bottom:226.290396px;}
.y5f{bottom:231.509748px;}
.y16f{bottom:234.660576px;}
.y20{bottom:235.020522px;}
.yba{bottom:237.000702px;}
.yfc{bottom:239.161035px;}
.y7d{bottom:241.500576px;}
.y138{bottom:243.119397px;}
.y1a3{bottom:245.369910px;}
.y5e{bottom:246.719928px;}
.y16e{bottom:249.870756px;}
.y1f{bottom:250.320369px;}
.yb9{bottom:252.210882px;}
.yfb{bottom:254.460882px;}
.y7c{bottom:256.800423px;}
.y137{bottom:258.329577px;}
.y1a2{bottom:260.580090px;}
.y16d{bottom:265.170603px;}
.y1e{bottom:265.620216px;}
.yb8{bottom:267.510729px;}
.yfa{bottom:269.760729px;}
.y5d{bottom:273.000108px;}
.y136{bottom:273.629424px;}
.y1d4{bottom:275.070450px;}
.y16c{bottom:280.470450px;}
.y1d{bottom:280.830396px;}
.yb7{bottom:282.810576px;}
.y7b{bottom:282.990936px;}
.yf9{bottom:284.970909px;}
.y1a1{bottom:286.770603px;}
.y5c{bottom:288.210288px;}
.y1c{bottom:296.130243px;}
.yb6{bottom:298.110423px;}
.y7a{bottom:298.290783px;}
.y135{bottom:299.819937px;}
.yf8{bottom:300.270756px;}
.y1a0{bottom:302.070090px;}
.y5b{bottom:303.510135px;}
.y1d3{bottom:303.600450px;}
.y16b{bottom:306.660855px;}
.y1b{bottom:311.430090px;}
.yb5{bottom:313.320603px;}
.y79{bottom:313.590630px;}
.y134{bottom:315.119784px;}
.yf7{bottom:315.570603px;}
.y19f{bottom:317.369937px;}
.y5a{bottom:318.809982px;}
.y16a{bottom:321.960702px;}
.y1a{bottom:326.729937px;}
.yb4{bottom:328.620450px;}
.y78{bottom:328.800810px;}
.y133{bottom:330.419631px;}
.yf6{bottom:330.869766px;}
.y59{bottom:334.020162px;}
.y169{bottom:337.170882px;}
.y19e{bottom:343.560450px;}
.yb3{bottom:343.919676px;}
.y77{bottom:344.100657px;}
.y168{bottom:352.470729px;}
.y19{bottom:352.920450px;}
.y132{bottom:356.610144px;}
.yf5{bottom:357.060279px;}
.y19d{bottom:358.860450px;}
.yb2{bottom:359.219523px;}
.y76{bottom:359.400504px;}
.y58{bottom:360.210675px;}
.y1d2{bottom:360.839214px;}
.y167{bottom:367.770576px;}
.y131{bottom:371.820324px;}
.y19c{bottom:374.070396px;}
.yb1{bottom:374.429703px;}
.y75{bottom:374.610684px;}
.y57{bottom:375.510522px;}
.y18{bottom:381.450450px;}
.y166{bottom:383.070423px;}
.yf4{bottom:384.239892px;}
.y1d1{bottom:387.029727px;}
.y130{bottom:387.120171px;}
.y19b{bottom:389.370243px;}
.yb0{bottom:389.729550px;}
.y74{bottom:389.910531px;}
.y165{bottom:398.280603px;}
.yf3{bottom:399.450072px;}
.y56{bottom:401.701035px;}
.y1d0{bottom:402.329574px;}
.y12f{bottom:402.420018px;}
.y19a{bottom:404.670090px;}
.yaf{bottom:405.029397px;}
.y73{bottom:405.210378px;}
.y164{bottom:413.580450px;}
.yf2{bottom:414.749919px;}
.y55{bottom:417.000882px;}
.y12e{bottom:417.719865px;}
.y1cf{bottom:428.520087px;}
.y199{bottom:430.860603px;}
.yae{bottom:431.219910px;}
.y17{bottom:431.309442px;}
.y72{bottom:431.400891px;}
.y54{bottom:432.300729px;}
.y163{bottom:439.770600px;}
.yf1{bottom:441.930090px;}
.y12d{bottom:443.910378px;}
.y198{bottom:446.159631px;}
.yad{bottom:446.519757px;}
.y71{bottom:446.700738px;}
.y53{bottom:447.510909px;}
.y1ce{bottom:454.710600px;}
.yf0{bottom:457.229937px;}
.y12c{bottom:459.120558px;}
.y197{bottom:461.369811px;}
.y70{bottom:461.910918px;}
.y52{bottom:462.810756px;}
.y162{bottom:468.390450px;}
.y1cd{bottom:470.010240px;}
.y16{bottom:470.369937px;}
.yac{bottom:472.710270px;}
.y12b{bottom:474.420405px;}
.y196{bottom:476.669658px;}
.y6f{bottom:477.210765px;}
.y51{bottom:478.110603px;}
.yef{bottom:483.420549px;}
.y1cc{bottom:485.310087px;}
.yab{bottom:487.919244px;}
.y12a{bottom:489.720252px;}
.y6e{bottom:492.510612px;}
.y50{bottom:493.410450px;}
.y15{bottom:496.560450px;}
.yee{bottom:498.720396px;}
.y195{bottom:502.860171px;}
.y129{bottom:505.020099px;}
.y1cb{bottom:511.500600px;}
.y14{bottom:511.860600px;}
.yed{bottom:513.930576px;}
.yaa{bottom:514.109757px;}
.y161{bottom:518.251143px;}
.y6d{bottom:518.701125px;}
.y128{bottom:520.230279px;}
.y4f{bottom:521.940600px;}
.y1ca{bottom:526.799190px;}
.y13{bottom:527.160450px;}
.y194{bottom:529.049577px;}
.yec{bottom:529.230423px;}
.ya9{bottom:529.409604px;}
.y127{bottom:535.530126px;}
.y1c9{bottom:542.009370px;}
.y193{bottom:544.349424px;}
.y160{bottom:544.440549px;}
.yeb{bottom:544.530270px;}
.ya8{bottom:544.709451px;}
.y6c{bottom:548.760603px;}
.y126{bottom:550.829973px;}
.y12{bottom:555.690450px;}
.y15f{bottom:559.650729px;}
.yea{bottom:559.740450px;}
.ya7{bottom:560.009298px;}
.y6b{bottom:564.060450px;}
.y1c8{bottom:568.199883px;}
.y192{bottom:570.539937px;}
.y15e{bottom:574.950576px;}
.ya6{bottom:575.219478px;}
.y125{bottom:577.020486px;}
.y1c7{bottom:583.499730px;}
.ye9{bottom:586.020270px;}
.y15d{bottom:590.250423px;}
.ya5{bottom:590.519325px;}
.y124{bottom:592.320333px;}
.y4e{bottom:594.393708px;}
.y191{bottom:596.730450px;}
.ye8{bottom:601.230450px;}
.y15c{bottom:605.550270px;}
.y11{bottom:605.550693px;}
.ya4{bottom:605.819172px;}
.y123{bottom:607.530513px;}
.y1c6{bottom:609.690243px;}
.y190{bottom:612.029937px;}
.ye7{bottom:616.530603px;}
.y4d{bottom:620.584221px;}
.y15b{bottom:620.760450px;}
.y10{bottom:620.850540px;}
.ya3{bottom:621.119019px;}
.y122{bottom:622.830360px;}
.y1c5{bottom:624.990090px;}
.ye6{bottom:631.830450px;}
.y4c{bottom:635.884068px;}
.yf{bottom:636.150387px;}
.ya2{bottom:636.329199px;}
.y121{bottom:638.130207px;}
.y18f{bottom:638.220450px;}
.y1c4{bottom:640.289937px;}
.ye5{bottom:647.040090px;}
.y15a{bottom:649.380450px;}
.y4b{bottom:651.183915px;}
.ye{bottom:651.360567px;}
.y120{bottom:653.430054px;}
.y18e{bottom:653.520270px;}
.ye4{bottom:662.339937px;}
.ya1{bottom:662.519712px;}
.y1c3{bottom:666.480450px;}
.y4a{bottom:666.483762px;}
.yd{bottom:666.660414px;}
.y11f{bottom:668.640234px;}
.y18d{bottom:668.730450px;}
.ya0{bottom:677.819559px;}
.y1c2{bottom:681.690396px;}
.y49{bottom:681.693942px;}
.yc{bottom:681.960261px;}
.y11e{bottom:683.940081px;}
.ye3{bottom:688.530864px;}
.y1c1{bottom:696.990243px;}
.y48{bottom:696.993789px;}
.yb{bottom:697.170441px;}
.y18c{bottom:697.350450px;}
.y11d{bottom:699.239928px;}
.y159{bottom:699.240450px;}
.ye2{bottom:703.830711px;}
.y9f{bottom:704.010072px;}
.y1c0{bottom:712.290090px;}
.y47{bottom:712.293636px;}
.ya{bottom:712.470288px;}
.y11c{bottom:714.450108px;}
.ye1{bottom:719.130558px;}
.y158{bottom:725.431179px;}
.y46{bottom:727.593483px;}
.y9{bottom:727.770135px;}
.y9e{bottom:730.200585px;}
.ye0{bottom:734.340738px;}
.y1bf{bottom:738.480603px;}
.y11b{bottom:740.730288px;}
.y157{bottom:740.731026px;}
.y45{bottom:742.803663px;}
.y8{bottom:743.069982px;}
.y9d{bottom:745.500432px;}
.y18b{bottom:747.209937px;}
.ydf{bottom:749.640585px;}
.y1be{bottom:753.780450px;}
.y11a{bottom:755.940468px;}
.y156{bottom:755.941206px;}
.y7{bottom:758.280162px;}
.y9c{bottom:760.800279px;}
.yde{bottom:764.940432px;}
.y1bd{bottom:768.989856px;}
.y44{bottom:768.993069px;}
.y119{bottom:771.240315px;}
.y155{bottom:771.241053px;}
.y18a{bottom:773.400450px;}
.y6{bottom:773.580009px;}
.ydd{bottom:780.240279px;}
.y1bc{bottom:784.289703px;}
.y118{bottom:786.540162px;}
.y9b{bottom:787.980054px;}
.y5{bottom:788.879856px;}
.y43{bottom:795.182475px;}
.y154{bottom:797.430459px;}
.y1bb{bottom:799.589550px;}
.y189{bottom:799.590450px;}
.y9a{bottom:803.190234px;}
.y4{bottom:804.179703px;}
.ydc{bottom:807.421089px;}
.y42{bottom:810.482322px;}
.y153{bottom:812.730306px;}
.y117{bottom:812.730675px;}
.y1ba{bottom:814.889397px;}
.y99{bottom:818.490081px;}
.ydb{bottom:822.631269px;}
.y188{bottom:825.780573px;}
.y41{bottom:825.782169px;}
.y152{bottom:827.940486px;}
.y116{bottom:827.940855px;}
.y98{bottom:833.789928px;}
.yda{bottom:837.931116px;}
.y1b9{bottom:841.079910px;}
.y187{bottom:841.080420px;}
.y40{bottom:841.082016px;}
.y115{bottom:843.240702px;}
.y97{bottom:849.089775px;}
.yd9{bottom:853.230963px;}
.y151{bottom:854.220666px;}
.y1b8{bottom:856.290090px;}
.y186{bottom:856.290600px;}
.y3f{bottom:856.292196px;}
.y114{bottom:858.540549px;}
.yd8{bottom:868.441143px;}
.y150{bottom:869.430846px;}
.y1b7{bottom:871.589937px;}
.y3e{bottom:871.592043px;}
.y113{bottom:873.840396px;}
.y96{bottom:876.180279px;}
.y185{bottom:882.480450px;}
.yd7{bottom:883.740990px;}
.y14f{bottom:884.730693px;}
.y3d{bottom:886.891890px;}
.y112{bottom:889.050576px;}
.y3{bottom:891.479937px;}
.y1b6{bottom:897.780450px;}
.yd6{bottom:899.040837px;}
.y14e{bottom:900.030540px;}
.y3c{bottom:902.191737px;}
.y95{bottom:903.361503px;}
.y184{bottom:908.760450px;}
.y1b5{bottom:913.078749px;}
.yd5{bottom:914.340684px;}
.y111{bottom:915.239982px;}
.y14d{bottom:915.240720px;}
.y3b{bottom:917.401917px;}
.y2{bottom:917.670450px;}
.y94{bottom:918.661350px;}
.yd4{bottom:929.550864px;}
.y110{bottom:930.539829px;}
.y14c{bottom:930.540567px;}
.y3a{bottom:932.701764px;}
.y93{bottom:933.961197px;}
.y183{bottom:934.950675px;}
.y1b4{bottom:939.269262px;}
.yd3{bottom:944.850711px;}
.y10f{bottom:945.839676px;}
.y14b{bottom:945.840414px;}
.y39{bottom:948.001611px;}
.y92{bottom:949.261044px;}
.y182{bottom:950.160855px;}
.y1b3{bottom:954.569109px;}
.yd2{bottom:960.150558px;}
.y10e{bottom:961.139523px;}
.y14a{bottom:961.140261px;}
.y91{bottom:964.471224px;}
.y181{bottom:965.460702px;}
.y1b2{bottom:969.779289px;}
.y38{bottom:974.191017px;}
.yd1{bottom:975.450405px;}
.y10d{bottom:976.349703px;}
.y149{bottom:976.350441px;}
.y90{bottom:979.771071px;}
.y180{bottom:980.760549px;}
.y1b1{bottom:985.079136px;}
.yd0{bottom:990.660585px;}
.y10c{bottom:991.649550px;}
.y148{bottom:991.650288px;}
.y8f{bottom:995.070918px;}
.y17f{bottom:996.060396px;}
.y1b0{bottom:1000.378983px;}
.y37{bottom:1000.380423px;}
.y147{bottom:1006.950135px;}
.y8e{bottom:1010.281098px;}
.y17e{bottom:1011.270576px;}
.y1af{bottom:1015.678830px;}
.y36{bottom:1015.680270px;}
.y10b{bottom:1017.840063px;}
.ycf{bottom:1017.840756px;}
.y146{bottom:1022.249982px;}
.y8d{bottom:1025.580945px;}
.y17d{bottom:1026.570423px;}
.y35{bottom:1030.890450px;}
.yce{bottom:1033.140603px;}
.y145{bottom:1037.460162px;}
.y8c{bottom:1040.880792px;}
.y1ae{bottom:1041.869343px;}
.y17c{bottom:1041.870270px;}
.y10a{bottom:1044.030576px;}
.ycd{bottom:1048.440270px;}
.y144{bottom:1052.760009px;}
.y8b{bottom:1056.180639px;}
.y1ad{bottom:1057.079523px;}
.y17b{bottom:1057.080450px;}
.y34{bottom:1057.080603px;}
.y109{bottom:1059.330423px;}
.ycc{bottom:1063.650090px;}
.y6a{bottom:1068.059856px;}
.y33{bottom:1072.380450px;}
.y108{bottom:1074.630270px;}
.ycb{bottom:1078.949937px;}
.y143{bottom:1083.359703px;}
.y17a{bottom:1083.360450px;}
.y8a{bottom:1083.360810px;}
.y32{bottom:1087.680324px;}
.y107{bottom:1089.841188px;}
.y69{bottom:1094.250369px;}
.y142{bottom:1098.569883px;}
.y89{bottom:1098.570990px;}
.y31{bottom:1102.980171px;}
.yca{bottom:1105.141035px;}
.y68{bottom:1109.550216px;}
.y179{bottom:1109.550270px;}
.y141{bottom:1113.869730px;}
.y88{bottom:1113.870837px;}
.yc9{bottom:1120.440882px;}
.y67{bottom:1124.760396px;}
.y178{bottom:1124.760450px;}
.y30{bottom:1129.169577px;}
.yc8{bottom:1135.740729px;}
.y66{bottom:1140.060243px;}
.y2f{bottom:1144.379757px;}
.yc7{bottom:1150.950909px;}
.y65{bottom:1155.360090px;}
.yc6{bottom:1166.250756px;}
.y2e{bottom:1170.659937px;}
.y1{bottom:1176.330450px;}
.yc5{bottom:1181.550603px;}
.y2d{bottom:1196.850450px;}
.y2b{bottom:1250.220450px;}
.h2{height:47.246760px;}
.ha{height:47.246976px;}
.hb{height:47.248200px;}
.h7{height:47.248344px;}
.hc{height:47.248992px;}
.hf{height:47.249136px;}
.h6{height:47.249232px;}
.hd{height:47.249496px;}
.h9{height:47.249856px;}
.he{height:47.250036px;}
.h8{height:47.251584px;}
.h3{height:47.999520px;}
.h5{height:59.004492px;}
.h1{height:66.452760px;}
.h4{height:83.354040px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:56.250000px;}
.x2{left:95.220000px;}
.x8{left:116.011206px;}
.x4{left:122.579505px;}
.x3{left:134.280495px;}
.x7{left:201.330378px;}
.x5{left:217.800000px;}
.x6{left:281.790135px;}
@media print{
.v1{vertical-align:-54.399456pt;}
.v0{vertical-align:0.000000pt;}
.ls9a{letter-spacing:-1.109952pt;}
.ls7d{letter-spacing:-1.062432pt;}
.ls45{letter-spacing:-1.011552pt;}
.ls69{letter-spacing:-0.850176pt;}
.lsa2{letter-spacing:-0.842304pt;}
.ls4d{letter-spacing:-0.838368pt;}
.ls91{letter-spacing:-0.830496pt;}
.ls4f{letter-spacing:-0.826560pt;}
.ls68{letter-spacing:-0.814752pt;}
.ls71{letter-spacing:-0.799008pt;}
.ls1{letter-spacing:-0.647712pt;}
.ls36{letter-spacing:-0.598272pt;}
.lsa9{letter-spacing:-0.590400pt;}
.lsae{letter-spacing:-0.570720pt;}
.ls8c{letter-spacing:-0.566784pt;}
.ls6b{letter-spacing:-0.558912pt;}
.lsb0{letter-spacing:-0.554976pt;}
.ls96{letter-spacing:-0.551040pt;}
.ls44{letter-spacing:-0.539232pt;}
.ls50{letter-spacing:-0.535296pt;}
.ls75{letter-spacing:-0.531360pt;}
.ls59{letter-spacing:-0.527424pt;}
.ls84{letter-spacing:-0.519552pt;}
.ls5c{letter-spacing:-0.515616pt;}
.lsa7{letter-spacing:-0.511680pt;}
.ls42{letter-spacing:-0.507744pt;}
.ls76{letter-spacing:-0.503808pt;}
.ls22{letter-spacing:-0.499872pt;}
.ls1b{letter-spacing:-0.495936pt;}
.lsf{letter-spacing:-0.484128pt;}
.ls8f{letter-spacing:-0.472320pt;}
.ls7c{letter-spacing:-0.468384pt;}
.ls77{letter-spacing:-0.464448pt;}
.ls1e{letter-spacing:-0.460512pt;}
.ls67{letter-spacing:-0.456576pt;}
.ls66{letter-spacing:-0.452640pt;}
.ls2d{letter-spacing:-0.448704pt;}
.ls29{letter-spacing:-0.444768pt;}
.ls34{letter-spacing:-0.440832pt;}
.ls43{letter-spacing:-0.432960pt;}
.ls2f{letter-spacing:-0.429024pt;}
.ls7f{letter-spacing:-0.425088pt;}
.ls37{letter-spacing:-0.421152pt;}
.ls83{letter-spacing:-0.417216pt;}
.ls79{letter-spacing:-0.413280pt;}
.ls3d{letter-spacing:-0.405408pt;}
.ls73{letter-spacing:-0.401472pt;}
.ls55{letter-spacing:-0.393600pt;}
.ls6e{letter-spacing:-0.385728pt;}
.ls48{letter-spacing:-0.346368pt;}
.lsad{letter-spacing:-0.330624pt;}
.ls70{letter-spacing:-0.322752pt;}
.ls3{letter-spacing:-0.279456pt;}
.lsa4{letter-spacing:-0.263712pt;}
.ls9b{letter-spacing:-0.240096pt;}
.lsb1{letter-spacing:-0.236160pt;}
.ls41{letter-spacing:-0.232224pt;}
.ls9e{letter-spacing:-0.212544pt;}
.ls3c{letter-spacing:-0.165312pt;}
.ls24{letter-spacing:-0.160320pt;}
.ls25{letter-spacing:-0.154976pt;}
.ls60{letter-spacing:-0.129888pt;}
.ls61{letter-spacing:-0.114144pt;}
.ls64{letter-spacing:-0.110208pt;}
.ls1c{letter-spacing:-0.106272pt;}
.ls57{letter-spacing:-0.102336pt;}
.ls78{letter-spacing:-0.094464pt;}
.lsa{letter-spacing:-0.086592pt;}
.ls6f{letter-spacing:-0.082656pt;}
.ls5a{letter-spacing:-0.078720pt;}
.ls8a{letter-spacing:-0.051168pt;}
.ls3a{letter-spacing:-0.027776pt;}
.ls17{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.035424pt;}
.ls95{letter-spacing:0.110208pt;}
.ls8e{letter-spacing:0.200736pt;}
.lsac{letter-spacing:0.212544pt;}
.ls32{letter-spacing:0.215264pt;}
.ls0{letter-spacing:0.222208pt;}
.lsa0{letter-spacing:0.236160pt;}
.ls94{letter-spacing:0.240096pt;}
.lsab{letter-spacing:0.244032pt;}
.ls3b{letter-spacing:0.247968pt;}
.ls21{letter-spacing:0.251904pt;}
.ls5e{letter-spacing:0.255840pt;}
.ls2b{letter-spacing:0.259776pt;}
.ls80{letter-spacing:0.263712pt;}
.ls4c{letter-spacing:0.267648pt;}
.ls8d{letter-spacing:0.271584pt;}
.ls1d{letter-spacing:0.275520pt;}
.ls82{letter-spacing:0.279456pt;}
.ls1f{letter-spacing:0.283392pt;}
.ls20{letter-spacing:0.287328pt;}
.lsc{letter-spacing:0.291264pt;}
.ls7{letter-spacing:0.295200pt;}
.lse{letter-spacing:0.299136pt;}
.ls12{letter-spacing:0.303072pt;}
.ls1a{letter-spacing:0.307008pt;}
.ls27{letter-spacing:0.310944pt;}
.ls4{letter-spacing:0.314880pt;}
.ls2{letter-spacing:0.318816pt;}
.ls6{letter-spacing:0.322752pt;}
.ls87{letter-spacing:0.326368pt;}
.ls9{letter-spacing:0.326688pt;}
.lsb{letter-spacing:0.330624pt;}
.ls3f{letter-spacing:0.334560pt;}
.ls8{letter-spacing:0.338496pt;}
.ls33{letter-spacing:0.342432pt;}
.lsd{letter-spacing:0.346368pt;}
.ls2c{letter-spacing:0.350304pt;}
.ls4b{letter-spacing:0.354240pt;}
.ls13{letter-spacing:0.358176pt;}
.ls5f{letter-spacing:0.366048pt;}
.ls30{letter-spacing:0.369984pt;}
.ls15{letter-spacing:0.373920pt;}
.ls89{letter-spacing:0.377856pt;}
.lsa3{letter-spacing:0.381792pt;}
.ls54{letter-spacing:0.385728pt;}
.ls81{letter-spacing:0.389664pt;}
.ls10{letter-spacing:0.409344pt;}
.ls99{letter-spacing:0.417216pt;}
.ls7a{letter-spacing:0.421152pt;}
.ls63{letter-spacing:0.488064pt;}
.ls62{letter-spacing:0.492000pt;}
.ls46{letter-spacing:0.566784pt;}
.ls5d{letter-spacing:0.578592pt;}
.lsaf{letter-spacing:0.590400pt;}
.ls19{letter-spacing:0.598272pt;}
.ls52{letter-spacing:0.610080pt;}
.ls74{letter-spacing:0.614016pt;}
.ls9d{letter-spacing:0.621888pt;}
.ls7e{letter-spacing:0.629760pt;}
.lsa8{letter-spacing:0.637632pt;}
.lsa1{letter-spacing:0.641568pt;}
.ls85{letter-spacing:0.653376pt;}
.ls97{letter-spacing:0.673056pt;}
.ls72{letter-spacing:0.680928pt;}
.ls65{letter-spacing:0.684864pt;}
.ls6c{letter-spacing:0.688800pt;}
.ls88{letter-spacing:0.692736pt;}
.ls51{letter-spacing:0.696672pt;}
.ls7b{letter-spacing:0.700608pt;}
.ls40{letter-spacing:0.704544pt;}
.ls5b{letter-spacing:0.708480pt;}
.ls11{letter-spacing:0.712416pt;}
.ls35{letter-spacing:0.716352pt;}
.ls31{letter-spacing:0.720288pt;}
.ls26{letter-spacing:0.724224pt;}
.ls3e{letter-spacing:0.728160pt;}
.ls28{letter-spacing:0.732096pt;}
.ls2a{letter-spacing:0.736032pt;}
.ls14{letter-spacing:0.739968pt;}
.ls39{letter-spacing:0.743904pt;}
.ls38{letter-spacing:0.747840pt;}
.ls49{letter-spacing:0.751776pt;}
.ls56{letter-spacing:0.755712pt;}
.ls4e{letter-spacing:0.759648pt;}
.ls58{letter-spacing:0.763584pt;}
.ls16{letter-spacing:0.767520pt;}
.ls47{letter-spacing:0.771456pt;}
.ls90{letter-spacing:0.775392pt;}
.ls6a{letter-spacing:0.779328pt;}
.ls8b{letter-spacing:0.783264pt;}
.ls9f{letter-spacing:0.795072pt;}
.ls86{letter-spacing:0.799008pt;}
.ls6d{letter-spacing:0.810816pt;}
.ls92{letter-spacing:0.889536pt;}
.lsa5{letter-spacing:0.905280pt;}
.lsaa{letter-spacing:0.932832pt;}
.ls9c{letter-spacing:1.011552pt;}
.ls53{letter-spacing:1.039104pt;}
.lsa6{letter-spacing:1.043040pt;}
.ls98{letter-spacing:1.062720pt;}
.ls2e{letter-spacing:1.070592pt;}
.ls4a{letter-spacing:1.074528pt;}
.ls5{letter-spacing:1.078464pt;}
.ls23{letter-spacing:1.170336pt;}
.ls18{letter-spacing:1.742944pt;}
.wsad{word-spacing:-24.769248pt;}
.ws4{word-spacing:-24.665088pt;}
.ws2a{word-spacing:-24.658144pt;}
.ws97{word-spacing:-23.380448pt;}
.wscf{word-spacing:-14.933184pt;}
.ws5{word-spacing:-14.622240pt;}
.wsd5{word-spacing:-14.610432pt;}
.wsb2{word-spacing:-14.602560pt;}
.ws50{word-spacing:-14.594688pt;}
.wsb4{word-spacing:-14.586816pt;}
.ws6d{word-spacing:-14.575008pt;}
.ws6a{word-spacing:-14.567136pt;}
.wsd0{word-spacing:-14.555328pt;}
.wsd7{word-spacing:-14.547456pt;}
.wsce{word-spacing:-14.543520pt;}
.wsd6{word-spacing:-14.539584pt;}
.wsb3{word-spacing:-14.527776pt;}
.ws6b{word-spacing:-14.433312pt;}
.ws95{word-spacing:-14.275872pt;}
.wsb1{word-spacing:-14.212896pt;}
.wsd1{word-spacing:-14.157792pt;}
.ws88{word-spacing:-14.149920pt;}
.wsd3{word-spacing:-14.142048pt;}
.ws6c{word-spacing:-14.110560pt;}
.wsd2{word-spacing:-14.098752pt;}
.wsaf{word-spacing:-14.094816pt;}
.wsd4{word-spacing:-14.067264pt;}
.wsae{word-spacing:-14.055456pt;}
.wsb0{word-spacing:-13.964928pt;}
.wscd{word-spacing:-13.591008pt;}
.ws89{word-spacing:-13.531968pt;}
.ws96{word-spacing:-13.386336pt;}
.ws3{word-spacing:-13.370592pt;}
.ws44{word-spacing:-13.256448pt;}
.ws29{word-spacing:-13.016352pt;}
.ws6e{word-spacing:-13.004544pt;}
.ws20{word-spacing:-1.157184pt;}
.ws55{word-spacing:-1.153248pt;}
.ws35{word-spacing:-1.149312pt;}
.wsc4{word-spacing:-1.141440pt;}
.wsdf{word-spacing:-1.121760pt;}
.ws62{word-spacing:-1.117824pt;}
.wsc9{word-spacing:-1.090272pt;}
.wse6{word-spacing:-1.011552pt;}
.wsde{word-spacing:-0.984000pt;}
.ws8a{word-spacing:-0.889536pt;}
.wsac{word-spacing:-0.877728pt;}
.wsb9{word-spacing:-0.861984pt;}
.ws84{word-spacing:-0.858048pt;}
.wsbf{word-spacing:-0.854112pt;}
.ws52{word-spacing:-0.850176pt;}
.wsb6{word-spacing:-0.846240pt;}
.ws69{word-spacing:-0.842304pt;}
.ws5a{word-spacing:-0.838368pt;}
.ws66{word-spacing:-0.834432pt;}
.ws54{word-spacing:-0.830496pt;}
.ws3e{word-spacing:-0.826560pt;}
.ws40{word-spacing:-0.822624pt;}
.ws2b{word-spacing:-0.818688pt;}
.ws31{word-spacing:-0.814752pt;}
.ws30{word-spacing:-0.810816pt;}
.ws46{word-spacing:-0.806880pt;}
.ws2d{word-spacing:-0.802944pt;}
.ws38{word-spacing:-0.799008pt;}
.ws3b{word-spacing:-0.795072pt;}
.ws1b{word-spacing:-0.791136pt;}
.wsca{word-spacing:-0.787200pt;}
.ws48{word-spacing:-0.783264pt;}
.ws9f{word-spacing:-0.779328pt;}
.ws5f{word-spacing:-0.775392pt;}
.wsb5{word-spacing:-0.771456pt;}
.wse3{word-spacing:-0.767520pt;}
.wsd8{word-spacing:-0.759648pt;}
.wsaa{word-spacing:-0.732096pt;}
.wsdc{word-spacing:-0.720288pt;}
.wse1{word-spacing:-0.716352pt;}
.wsa2{word-spacing:-0.708480pt;}
.ws94{word-spacing:-0.692736pt;}
.wsee{word-spacing:-0.688800pt;}
.wsbd{word-spacing:-0.676992pt;}
.wse9{word-spacing:-0.669120pt;}
.wsc1{word-spacing:-0.645504pt;}
.ws7b{word-spacing:-0.566784pt;}
.ws1c{word-spacing:-0.555520pt;}
.wsd9{word-spacing:-0.551040pt;}
.ws92{word-spacing:-0.523488pt;}
.ws68{word-spacing:-0.511680pt;}
.wsed{word-spacing:-0.507744pt;}
.ws82{word-spacing:-0.503808pt;}
.ws64{word-spacing:-0.499872pt;}
.ws19{word-spacing:-0.495936pt;}
.ws3f{word-spacing:-0.492000pt;}
.ws42{word-spacing:-0.488064pt;}
.ws4e{word-spacing:-0.484128pt;}
.ws51{word-spacing:-0.480192pt;}
.ws75{word-spacing:-0.476256pt;}
.ws74{word-spacing:-0.472320pt;}
.ws16{word-spacing:-0.468384pt;}
.ws71{word-spacing:-0.464448pt;}
.ws78{word-spacing:-0.460512pt;}
.wsda{word-spacing:-0.456576pt;}
.ws98{word-spacing:-0.452640pt;}
.ws63{word-spacing:-0.448704pt;}
.ws18{word-spacing:-0.436896pt;}
.ws57{word-spacing:-0.432960pt;}
.ws33{word-spacing:-0.429024pt;}
.ws12{word-spacing:-0.425088pt;}
.ws39{word-spacing:-0.421152pt;}
.wsc{word-spacing:-0.417216pt;}
.ws47{word-spacing:-0.413280pt;}
.wsf{word-spacing:-0.409344pt;}
.wsd{word-spacing:-0.405408pt;}
.wsb{word-spacing:-0.401472pt;}
.ws11{word-spacing:-0.397536pt;}
.wsa{word-spacing:-0.393600pt;}
.ws2f{word-spacing:-0.389664pt;}
.ws1e{word-spacing:-0.385728pt;}
.ws17{word-spacing:-0.381792pt;}
.ws13{word-spacing:-0.377856pt;}
.ws15{word-spacing:-0.373920pt;}
.ws10{word-spacing:-0.369984pt;}
.wsa5{word-spacing:-0.366048pt;}
.ws25{word-spacing:-0.362112pt;}
.wsa6{word-spacing:-0.358176pt;}
.wsa1{word-spacing:-0.354240pt;}
.wsbb{word-spacing:-0.350304pt;}
.wscc{word-spacing:-0.346368pt;}
.ws32{word-spacing:-0.338496pt;}
.ws26{word-spacing:-0.330624pt;}
.ws61{word-spacing:-0.303072pt;}
.ws1d{word-spacing:-0.291264pt;}
.ws7{word-spacing:-0.254656pt;}
.ws7a{word-spacing:-0.247968pt;}
.wsc5{word-spacing:-0.173184pt;}
.ws14{word-spacing:-0.165312pt;}
.wsb7{word-spacing:-0.133824pt;}
.ws1a{word-spacing:-0.129888pt;}
.wsc2{word-spacing:-0.114144pt;}
.ws7c{word-spacing:-0.110208pt;}
.wsc8{word-spacing:-0.106272pt;}
.ws5e{word-spacing:-0.102336pt;}
.ws41{word-spacing:-0.098400pt;}
.ws60{word-spacing:-0.094464pt;}
.ws4d{word-spacing:-0.090528pt;}
.ws85{word-spacing:-0.086592pt;}
.ws8d{word-spacing:-0.082656pt;}
.ws36{word-spacing:-0.078720pt;}
.ws8{word-spacing:-0.074784pt;}
.ws9{word-spacing:-0.070848pt;}
.wse5{word-spacing:-0.066912pt;}
.ws37{word-spacing:-0.062976pt;}
.ws2e{word-spacing:-0.059040pt;}
.ws76{word-spacing:-0.055104pt;}
.ws1f{word-spacing:-0.051168pt;}
.ws7f{word-spacing:-0.047232pt;}
.wse2{word-spacing:-0.043296pt;}
.wsb8{word-spacing:-0.027552pt;}
.ws58{word-spacing:-0.023616pt;}
.wsa4{word-spacing:-0.019680pt;}
.wse{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.003936pt;}
.ws8b{word-spacing:0.007872pt;}
.ws9d{word-spacing:0.015744pt;}
.ws67{word-spacing:0.023616pt;}
.ws22{word-spacing:0.027552pt;}
.ws7d{word-spacing:0.031488pt;}
.ws79{word-spacing:0.035424pt;}
.ws77{word-spacing:0.051168pt;}
.wscb{word-spacing:0.133824pt;}
.wsbe{word-spacing:0.153504pt;}
.wsec{word-spacing:0.157440pt;}
.wsc7{word-spacing:0.161376pt;}
.ws28{word-spacing:0.240480pt;}
.wsea{word-spacing:0.244032pt;}
.ws80{word-spacing:0.275520pt;}
.ws2c{word-spacing:0.299136pt;}
.ws65{word-spacing:0.314880pt;}
.ws93{word-spacing:0.322752pt;}
.ws5c{word-spacing:0.326688pt;}
.ws9e{word-spacing:0.334560pt;}
.wsa7{word-spacing:0.338496pt;}
.ws3d{word-spacing:0.342432pt;}
.wsa3{word-spacing:0.346368pt;}
.ws23{word-spacing:0.350304pt;}
.ws4b{word-spacing:0.354240pt;}
.ws3a{word-spacing:0.362112pt;}
.ws56{word-spacing:0.366048pt;}
.ws34{word-spacing:0.369984pt;}
.ws7e{word-spacing:0.373920pt;}
.ws87{word-spacing:0.377856pt;}
.ws24{word-spacing:0.381792pt;}
.ws9c{word-spacing:0.385728pt;}
.wsab{word-spacing:0.389664pt;}
.ws21{word-spacing:0.417216pt;}
.ws9a{word-spacing:0.421152pt;}
.ws4a{word-spacing:0.429024pt;}
.wse0{word-spacing:0.432960pt;}
.ws73{word-spacing:0.436896pt;}
.wsa9{word-spacing:0.440832pt;}
.ws70{word-spacing:0.448704pt;}
.ws4c{word-spacing:0.460512pt;}
.wsc3{word-spacing:0.472320pt;}
.wseb{word-spacing:0.476256pt;}
.ws86{word-spacing:0.480192pt;}
.wsba{word-spacing:0.488064pt;}
.wse4{word-spacing:0.511680pt;}
.ws3c{word-spacing:0.519552pt;}
.ws49{word-spacing:0.539232pt;}
.wse7{word-spacing:0.574656pt;}
.ws53{word-spacing:0.590400pt;}
.ws8c{word-spacing:0.629760pt;}
.wsdb{word-spacing:0.649440pt;}
.wsa8{word-spacing:0.665184pt;}
.ws72{word-spacing:0.676992pt;}
.ws8f{word-spacing:0.692736pt;}
.ws81{word-spacing:0.700608pt;}
.wsbc{word-spacing:0.716352pt;}
.ws83{word-spacing:0.736032pt;}
.ws27{word-spacing:0.743904pt;}
.ws9b{word-spacing:0.747840pt;}
.wsc0{word-spacing:0.751776pt;}
.wsdd{word-spacing:0.763584pt;}
.ws6f{word-spacing:0.771456pt;}
.ws5d{word-spacing:0.779328pt;}
.ws45{word-spacing:0.791136pt;}
.wse8{word-spacing:0.814752pt;}
.ws99{word-spacing:0.838368pt;}
.ws90{word-spacing:0.842304pt;}
.wsc6{word-spacing:1.031232pt;}
.ws91{word-spacing:1.043040pt;}
.ws5b{word-spacing:1.070592pt;}
.ws59{word-spacing:1.082400pt;}
.ws43{word-spacing:1.131872pt;}
.wsa0{word-spacing:1.187424pt;}
.ws4f{word-spacing:1.318560pt;}
.ws1{word-spacing:11.260896pt;}
.ws2{word-spacing:12.827424pt;}
.ws0{word-spacing:13.960992pt;}
.ws6{word-spacing:1499.018720pt;}
._2{margin-left:-1657.800736pt;}
._5{margin-left:-1556.214336pt;}
._3{margin-left:-1273.528640pt;}
._4{margin-left:-1231.289664pt;}
._6{margin-left:-1225.889472pt;}
._c{margin-left:-5.701920pt;}
._b{margin-left:-4.527008pt;}
._8{margin-left:-2.981312pt;}
._7{margin-left:-2.012128pt;}
._1{margin-left:-0.948576pt;}
._0{width:1.151488pt;}
._9{width:2.057792pt;}
._a{width:3.158016pt;}
._d{width:2640.742304pt;}
.fs1{font-size:39.360000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:55.360000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.546635pt;}
.y2a{bottom:53.706715pt;}
.yc4{bottom:55.466747pt;}
.y106{bottom:57.387171pt;}
.y140{bottom:58.904259pt;}
.y87{bottom:59.467312pt;}
.y1ac{bottom:66.745739pt;}
.y29{bottom:67.306579pt;}
.y64{bottom:67.627067pt;}
.y177{bottom:70.827179pt;}
.y105{bottom:70.987035pt;}
.y86{bottom:73.067176pt;}
.yc3{bottom:78.747203pt;}
.y1ab{bottom:80.345603pt;}
.y28{bottom:80.906443pt;}
.y13f{bottom:82.184715pt;}
.y176{bottom:84.427043pt;}
.y104{bottom:84.586899pt;}
.y85{bottom:86.667040pt;}
.yc2{bottom:92.347019pt;}
.y1aa{bottom:93.865763pt;}
.y27{bottom:94.426603pt;}
.y13e{bottom:95.784579pt;}
.y175{bottom:97.947203pt;}
.y103{bottom:98.107059pt;}
.y84{bottom:100.186651pt;}
.y1da{bottom:101.786859pt;}
.yc1{bottom:105.867179pt;}
.y1a9{bottom:107.465627pt;}
.y26{bottom:108.026467pt;}
.y174{bottom:111.547067pt;}
.y83{bottom:113.786515pt;}
.y1d9{bottom:115.386723pt;}
.y13d{bottom:119.065035pt;}
.yc0{bottom:119.467043pt;}
.y1a8{bottom:121.065491pt;}
.y102{bottom:121.467219pt;}
.y25{bottom:121.626331pt;}
.y1d8{bottom:128.986587pt;}
.y63{bottom:132.025803pt;}
.ybf{bottom:133.066907pt;}
.y173{bottom:134.827339pt;}
.y101{bottom:134.987379pt;}
.y24{bottom:135.226195pt;}
.y82{bottom:137.066971pt;}
.y13c{bottom:142.345491pt;}
.y1d7{bottom:142.586451pt;}
.y1a7{bottom:144.345947pt;}
.ybe{bottom:146.587067pt;}
.y172{bottom:148.427203pt;}
.y100{bottom:148.587243pt;}
.y23{bottom:148.746355pt;}
.y62{bottom:155.306259pt;}
.y13b{bottom:155.945355pt;}
.y1d6{bottom:156.106611pt;}
.y1a6{bottom:157.945811pt;}
.y81{bottom:160.347427pt;}
.y171{bottom:162.027067pt;}
.y61{bottom:168.906123pt;}
.y13a{bottom:169.465515pt;}
.ybd{bottom:169.947403pt;}
.yff{bottom:171.867699pt;}
.y22{bottom:172.026811pt;}
.y80{bottom:173.947291pt;}
.y1d5{bottom:179.387067pt;}
.y1a5{bottom:181.226267pt;}
.ybc{bottom:183.467563pt;}
.y170{bottom:185.307067pt;}
.yfe{bottom:185.467563pt;}
.y7f{bottom:187.547155pt;}
.y60{bottom:192.186579pt;}
.y139{bottom:192.825675pt;}
.y1a4{bottom:194.746427pt;}
.y21{bottom:195.386971pt;}
.ybb{bottom:197.067427pt;}
.yfd{bottom:199.067427pt;}
.y7e{bottom:201.147019pt;}
.y5f{bottom:205.786443pt;}
.y16f{bottom:208.587179pt;}
.y20{bottom:208.907131pt;}
.yba{bottom:210.667291pt;}
.yfc{bottom:212.587587pt;}
.y7d{bottom:214.667179pt;}
.y138{bottom:216.106131pt;}
.y1a3{bottom:218.106587pt;}
.y5e{bottom:219.306603pt;}
.y16e{bottom:222.107339pt;}
.y1f{bottom:222.506995pt;}
.yb9{bottom:224.187451pt;}
.yfb{bottom:226.187451pt;}
.y7c{bottom:228.267043pt;}
.y137{bottom:229.626291pt;}
.y1a2{bottom:231.626747pt;}
.y16d{bottom:235.707203pt;}
.y1e{bottom:236.106859pt;}
.yb8{bottom:237.787315pt;}
.yfa{bottom:239.787315pt;}
.y5d{bottom:242.666763pt;}
.y136{bottom:243.226155pt;}
.y1d4{bottom:244.507067pt;}
.y16c{bottom:249.307067pt;}
.y1d{bottom:249.627019pt;}
.yb7{bottom:251.387179pt;}
.y7b{bottom:251.547499pt;}
.yf9{bottom:253.307475pt;}
.y1a1{bottom:254.907203pt;}
.y5c{bottom:256.186923pt;}
.y1c{bottom:263.226883pt;}
.yb6{bottom:264.987043pt;}
.y7a{bottom:265.147363pt;}
.y135{bottom:266.506611pt;}
.yf8{bottom:266.907339pt;}
.y1a0{bottom:268.506747pt;}
.y5b{bottom:269.786787pt;}
.y1d3{bottom:269.867067pt;}
.y16b{bottom:272.587427pt;}
.y1b{bottom:276.826747pt;}
.yb5{bottom:278.507203pt;}
.y79{bottom:278.747227pt;}
.y134{bottom:280.106475pt;}
.yf7{bottom:280.507203pt;}
.y19f{bottom:282.106611pt;}
.y5a{bottom:283.386651pt;}
.y16a{bottom:286.187291pt;}
.y1a{bottom:290.426611pt;}
.yb4{bottom:292.107067pt;}
.y78{bottom:292.267387pt;}
.y133{bottom:293.706339pt;}
.yf6{bottom:294.106459pt;}
.y59{bottom:296.906811pt;}
.y169{bottom:299.707451pt;}
.y19e{bottom:305.387067pt;}
.yb3{bottom:305.706379pt;}
.y77{bottom:305.867251pt;}
.y168{bottom:313.307315pt;}
.y19{bottom:313.707067pt;}
.y132{bottom:316.986795pt;}
.yf5{bottom:317.386915pt;}
.y19d{bottom:318.987067pt;}
.yb2{bottom:319.306243pt;}
.y76{bottom:319.467115pt;}
.y58{bottom:320.187267pt;}
.y1d2{bottom:320.745968pt;}
.y167{bottom:326.907179pt;}
.y131{bottom:330.506955pt;}
.y19c{bottom:332.507019pt;}
.yb1{bottom:332.826403pt;}
.y75{bottom:332.987275pt;}
.y57{bottom:333.787131pt;}
.y18{bottom:339.067067pt;}
.y166{bottom:340.507043pt;}
.yf4{bottom:341.546571pt;}
.y1d1{bottom:344.026424pt;}
.y130{bottom:344.106819pt;}
.y19b{bottom:346.106883pt;}
.yb0{bottom:346.426267pt;}
.y74{bottom:346.587139pt;}
.y165{bottom:354.027203pt;}
.yf3{bottom:355.066731pt;}
.y56{bottom:357.067587pt;}
.y1d0{bottom:357.626288pt;}
.y12f{bottom:357.706683pt;}
.y19a{bottom:359.706747pt;}
.yaf{bottom:360.026131pt;}
.y73{bottom:360.187003pt;}
.y164{bottom:367.627067pt;}
.yf2{bottom:368.666595pt;}
.y55{bottom:370.667451pt;}
.y12e{bottom:371.306547pt;}
.y1cf{bottom:380.906744pt;}
.y199{bottom:382.987203pt;}
.yae{bottom:383.306587pt;}
.y17{bottom:383.386171pt;}
.y72{bottom:383.467459pt;}
.y54{bottom:384.267315pt;}
.y163{bottom:390.907200pt;}
.yf1{bottom:392.826747pt;}
.y12d{bottom:394.587003pt;}
.y198{bottom:396.586339pt;}
.yad{bottom:396.906451pt;}
.y71{bottom:397.067323pt;}
.y53{bottom:397.787475pt;}
.y1ce{bottom:404.187200pt;}
.yf0{bottom:406.426611pt;}
.y12c{bottom:408.107163pt;}
.y197{bottom:410.106499pt;}
.y70{bottom:410.587483pt;}
.y52{bottom:411.387339pt;}
.y162{bottom:416.347067pt;}
.y1cd{bottom:417.786880pt;}
.y16{bottom:418.106611pt;}
.yac{bottom:420.186907pt;}
.y12b{bottom:421.707027pt;}
.y196{bottom:423.706363pt;}
.y6f{bottom:424.187347pt;}
.y51{bottom:424.987203pt;}
.yef{bottom:429.707155pt;}
.y1cc{bottom:431.386744pt;}
.yab{bottom:433.705995pt;}
.y12a{bottom:435.306891pt;}
.y6e{bottom:437.787211pt;}
.y50{bottom:438.587067pt;}
.y15{bottom:441.387067pt;}
.yee{bottom:443.307019pt;}
.y195{bottom:446.986819pt;}
.y129{bottom:448.906755pt;}
.y1cb{bottom:454.667200pt;}
.y14{bottom:454.987200pt;}
.yed{bottom:456.827179pt;}
.yaa{bottom:456.986451pt;}
.y161{bottom:460.667683pt;}
.y6d{bottom:461.067667pt;}
.y128{bottom:462.426915pt;}
.y4f{bottom:463.947200pt;}
.y1ca{bottom:468.265947pt;}
.y13{bottom:468.587067pt;}
.y194{bottom:470.266291pt;}
.yec{bottom:470.427043pt;}
.ya9{bottom:470.586315pt;}
.y127{bottom:476.026779pt;}
.y1c9{bottom:481.786107pt;}
.y193{bottom:483.866155pt;}
.y160{bottom:483.947155pt;}
.yeb{bottom:484.026907pt;}
.ya8{bottom:484.186179pt;}
.y6c{bottom:487.787203pt;}
.y126{bottom:489.626643pt;}
.y12{bottom:493.947067pt;}
.y15f{bottom:497.467315pt;}
.yea{bottom:497.547067pt;}
.ya7{bottom:497.786043pt;}
.y6b{bottom:501.387067pt;}
.y1c8{bottom:505.066563pt;}
.y192{bottom:507.146611pt;}
.y15e{bottom:511.067179pt;}
.ya6{bottom:511.306203pt;}
.y125{bottom:512.907099pt;}
.y1c7{bottom:518.666427pt;}
.ye9{bottom:520.906907pt;}
.y15d{bottom:524.667043pt;}
.ya5{bottom:524.906067pt;}
.y124{bottom:526.506963pt;}
.y4e{bottom:528.349963pt;}
.y191{bottom:530.427067pt;}
.ye8{bottom:534.427067pt;}
.y15c{bottom:538.266907pt;}
.y11{bottom:538.267283pt;}
.ya4{bottom:538.505931pt;}
.y123{bottom:540.027123pt;}
.y1c6{bottom:541.946883pt;}
.y190{bottom:544.026611pt;}
.ye7{bottom:548.027203pt;}
.y4d{bottom:551.630419pt;}
.y15b{bottom:551.787067pt;}
.y10{bottom:551.867147pt;}
.ya3{bottom:552.105795pt;}
.y122{bottom:553.626987pt;}
.y1c5{bottom:555.546747pt;}
.ye6{bottom:561.627067pt;}
.y4c{bottom:565.230283pt;}
.yf{bottom:565.467011pt;}
.ya2{bottom:565.625955pt;}
.y121{bottom:567.226851pt;}
.y18f{bottom:567.307067pt;}
.y1c4{bottom:569.146611pt;}
.ye5{bottom:575.146747pt;}
.y15a{bottom:577.227067pt;}
.y4b{bottom:578.830147pt;}
.ye{bottom:578.987171pt;}
.y120{bottom:580.826715pt;}
.y18e{bottom:580.906907pt;}
.ye4{bottom:588.746611pt;}
.ya1{bottom:588.906411pt;}
.y1c3{bottom:592.427067pt;}
.y4a{bottom:592.430011pt;}
.yd{bottom:592.587035pt;}
.y11f{bottom:594.346875pt;}
.y18d{bottom:594.427067pt;}
.ya0{bottom:602.506275pt;}
.y1c2{bottom:605.947019pt;}
.y49{bottom:605.950171pt;}
.yc{bottom:606.186899pt;}
.y11e{bottom:607.946739pt;}
.ye3{bottom:612.027435pt;}
.y1c1{bottom:619.546883pt;}
.y48{bottom:619.550035pt;}
.yb{bottom:619.707059pt;}
.y18c{bottom:619.867067pt;}
.y11d{bottom:621.546603pt;}
.y159{bottom:621.547067pt;}
.ye2{bottom:625.627299pt;}
.y9f{bottom:625.786731pt;}
.y1c0{bottom:633.146747pt;}
.y47{bottom:633.149899pt;}
.ya{bottom:633.306923pt;}
.y11c{bottom:635.066763pt;}
.ye1{bottom:639.227163pt;}
.y158{bottom:644.827715pt;}
.y46{bottom:646.749763pt;}
.y9{bottom:646.906787pt;}
.y9e{bottom:649.067187pt;}
.ye0{bottom:652.747323pt;}
.y1bf{bottom:656.427203pt;}
.y11b{bottom:658.426923pt;}
.y157{bottom:658.427579pt;}
.y45{bottom:660.269923pt;}
.y8{bottom:660.506651pt;}
.y9d{bottom:662.667051pt;}
.y18b{bottom:664.186611pt;}
.ydf{bottom:666.347187pt;}
.y1be{bottom:670.027067pt;}
.y11a{bottom:671.947083pt;}
.y156{bottom:671.947739pt;}
.y7{bottom:674.026811pt;}
.y9c{bottom:676.266915pt;}
.yde{bottom:679.947051pt;}
.y1bd{bottom:683.546539pt;}
.y44{bottom:683.549395pt;}
.y119{bottom:685.546947pt;}
.y155{bottom:685.547603pt;}
.y18a{bottom:687.467067pt;}
.y6{bottom:687.626675pt;}
.ydd{bottom:693.546915pt;}
.y1bc{bottom:697.146403pt;}
.y118{bottom:699.146811pt;}
.y9b{bottom:700.426715pt;}
.y5{bottom:701.226539pt;}
.y43{bottom:706.828867pt;}
.y154{bottom:708.827075pt;}
.y1bb{bottom:710.746267pt;}
.y189{bottom:710.747067pt;}
.y9a{bottom:713.946875pt;}
.y4{bottom:714.826403pt;}
.ydc{bottom:717.707635pt;}
.y42{bottom:720.428731pt;}
.y153{bottom:722.426939pt;}
.y117{bottom:722.427267pt;}
.y1ba{bottom:724.346131pt;}
.y99{bottom:727.546739pt;}
.ydb{bottom:731.227795pt;}
.y188{bottom:734.027176pt;}
.y41{bottom:734.028595pt;}
.y152{bottom:735.947099pt;}
.y116{bottom:735.947427pt;}
.y98{bottom:741.146603pt;}
.yda{bottom:744.827659pt;}
.y1b9{bottom:747.626587pt;}
.y187{bottom:747.627040pt;}
.y40{bottom:747.628459pt;}
.y115{bottom:749.547291pt;}
.y97{bottom:754.746467pt;}
.yd9{bottom:758.427523pt;}
.y151{bottom:759.307259pt;}
.y1b8{bottom:761.146747pt;}
.y186{bottom:761.147200pt;}
.y3f{bottom:761.148619pt;}
.y114{bottom:763.147155pt;}
.yd8{bottom:771.947683pt;}
.y150{bottom:772.827419pt;}
.y1b7{bottom:774.746611pt;}
.y3e{bottom:774.748483pt;}
.y113{bottom:776.747019pt;}
.y96{bottom:778.826915pt;}
.y185{bottom:784.427067pt;}
.yd7{bottom:785.547547pt;}
.y14f{bottom:786.427283pt;}
.y3d{bottom:788.348347pt;}
.y112{bottom:790.267179pt;}
.y3{bottom:792.426611pt;}
.y1b6{bottom:798.027067pt;}
.yd6{bottom:799.147411pt;}
.y14e{bottom:800.027147pt;}
.y3c{bottom:801.948211pt;}
.y95{bottom:802.988003pt;}
.y184{bottom:807.787067pt;}
.y1b5{bottom:811.625555pt;}
.yd5{bottom:812.747275pt;}
.y111{bottom:813.546651pt;}
.y14d{bottom:813.547307pt;}
.y3b{bottom:815.468371pt;}
.y2{bottom:815.707067pt;}
.y94{bottom:816.587867pt;}
.yd4{bottom:826.267435pt;}
.y110{bottom:827.146515pt;}
.y14c{bottom:827.147171pt;}
.y3a{bottom:829.068235pt;}
.y93{bottom:830.187731pt;}
.y183{bottom:831.067267pt;}
.y1b4{bottom:834.906011pt;}
.yd3{bottom:839.867299pt;}
.y10f{bottom:840.746379pt;}
.y14b{bottom:840.747035pt;}
.y39{bottom:842.668099pt;}
.y92{bottom:843.787595pt;}
.y182{bottom:844.587427pt;}
.y1b3{bottom:848.505875pt;}
.yd2{bottom:853.467163pt;}
.y10e{bottom:854.346243pt;}
.y14a{bottom:854.346899pt;}
.y91{bottom:857.307755pt;}
.y181{bottom:858.187291pt;}
.y1b2{bottom:862.026035pt;}
.y38{bottom:865.947571pt;}
.yd1{bottom:867.067027pt;}
.y10d{bottom:867.866403pt;}
.y149{bottom:867.867059pt;}
.y90{bottom:870.907619pt;}
.y180{bottom:871.787155pt;}
.y1b1{bottom:875.625899pt;}
.yd0{bottom:880.587187pt;}
.y10c{bottom:881.466267pt;}
.y148{bottom:881.466923pt;}
.y8f{bottom:884.507483pt;}
.y17f{bottom:885.387019pt;}
.y1b0{bottom:889.225763pt;}
.y37{bottom:889.227043pt;}
.y147{bottom:895.066787pt;}
.y8e{bottom:898.027643pt;}
.y17e{bottom:898.907179pt;}
.y1af{bottom:902.825627pt;}
.y36{bottom:902.826907pt;}
.y10b{bottom:904.746723pt;}
.ycf{bottom:904.747339pt;}
.y146{bottom:908.666651pt;}
.y8d{bottom:911.627507pt;}
.y17d{bottom:912.507043pt;}
.y35{bottom:916.347067pt;}
.yce{bottom:918.347203pt;}
.y145{bottom:922.186811pt;}
.y8c{bottom:925.227371pt;}
.y1ae{bottom:926.106083pt;}
.y17c{bottom:926.106907pt;}
.y10a{bottom:928.027179pt;}
.ycd{bottom:931.946907pt;}
.y144{bottom:935.786675pt;}
.y8b{bottom:938.827235pt;}
.y1ad{bottom:939.626243pt;}
.y17b{bottom:939.627067pt;}
.y34{bottom:939.627203pt;}
.y109{bottom:941.627043pt;}
.ycc{bottom:945.466747pt;}
.y6a{bottom:949.386539pt;}
.y33{bottom:953.227067pt;}
.y108{bottom:955.226907pt;}
.ycb{bottom:959.066611pt;}
.y143{bottom:962.986403pt;}
.y17a{bottom:962.987067pt;}
.y8a{bottom:962.987387pt;}
.y32{bottom:966.826955pt;}
.y107{bottom:968.747723pt;}
.y69{bottom:972.666995pt;}
.y142{bottom:976.506563pt;}
.y89{bottom:976.507547pt;}
.y31{bottom:980.426819pt;}
.yca{bottom:982.347587pt;}
.y68{bottom:986.266859pt;}
.y179{bottom:986.266907pt;}
.y141{bottom:990.106427pt;}
.y88{bottom:990.107411pt;}
.yc9{bottom:995.947451pt;}
.y67{bottom:999.787019pt;}
.y178{bottom:999.787067pt;}
.y30{bottom:1003.706291pt;}
.yc8{bottom:1009.547315pt;}
.y66{bottom:1013.386883pt;}
.y2f{bottom:1017.226451pt;}
.yc7{bottom:1023.067475pt;}
.y65{bottom:1026.986747pt;}
.yc6{bottom:1036.667339pt;}
.y2e{bottom:1040.586611pt;}
.y1{bottom:1045.627067pt;}
.yc5{bottom:1050.267203pt;}
.y2d{bottom:1063.867067pt;}
.y2b{bottom:1111.307067pt;}
.h2{height:41.997120pt;}
.ha{height:41.997312pt;}
.hb{height:41.998400pt;}
.h7{height:41.998528pt;}
.hc{height:41.999104pt;}
.hf{height:41.999232pt;}
.h6{height:41.999317pt;}
.hd{height:41.999552pt;}
.h9{height:41.999872pt;}
.he{height:42.000032pt;}
.h8{height:42.001408pt;}
.h3{height:42.666240pt;}
.h5{height:52.448437pt;}
.h1{height:59.069120pt;}
.h4{height:74.092480pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:50.000000pt;}
.x2{left:84.640000pt;}
.x8{left:103.121072pt;}
.x4{left:108.959560pt;}
.x3{left:119.360440pt;}
.x7{left:178.960336pt;}
.x5{left:193.600000pt;}
.x6{left:250.480120pt;}
}




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