
    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_3bfb026b5694efaf64e6505e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_7e397cd5ee20114291d77fde.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_ebbc43a3362adea38de766fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_dc200e92beb40a3103510e5b.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_270a33bd1d63840acc8c513f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.622000;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_5d13eb5795f7c3675b16d5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881000;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_f4f69074ca71550a09351611.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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_53cae992b0791011f447822e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.800000;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_96fdda39cb8f96d7b64652fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.475000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.702000px;}
.v5{vertical-align:-17.214000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.782000px;}
.v7{vertical-align:16.746000px;}
.v10{vertical-align:19.440000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:24.690000px;}
.va{vertical-align:31.464000px;}
.v9{vertical-align:38.010000px;}
.v4{vertical-align:44.832000px;}
.vf{vertical-align:51.204000px;}
.ve{vertical-align:54.528000px;}
.vd{vertical-align:66.282000px;}
.vb{vertical-align:67.866000px;}
.v11{vertical-align:82.740000px;}
.vc{vertical-align:86.220000px;}
.ls6{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.000017px;}
.ls1b{letter-spacing:0.000498px;}
.ls47{letter-spacing:0.000583px;}
.ls53{letter-spacing:0.000912px;}
.ls2{letter-spacing:0.001032px;}
.ls5f{letter-spacing:0.001248px;}
.ls20{letter-spacing:0.001256px;}
.ls60{letter-spacing:0.001440px;}
.ls3{letter-spacing:0.001710px;}
.ls1d{letter-spacing:0.002132px;}
.ls50{letter-spacing:0.002298px;}
.ls32{letter-spacing:0.002558px;}
.lse{letter-spacing:0.002725px;}
.ls39{letter-spacing:0.002832px;}
.ls9{letter-spacing:0.004178px;}
.ls13{letter-spacing:0.004200px;}
.ls41{letter-spacing:0.005108px;}
.ls55{letter-spacing:0.005130px;}
.ls38{letter-spacing:0.361200px;}
.ls72{letter-spacing:0.556200px;}
.ls73{letter-spacing:0.559032px;}
.ls34{letter-spacing:1.197634px;}
.ls0{letter-spacing:2.983200px;}
.ls48{letter-spacing:2.985943px;}
.ls1{letter-spacing:2.989200px;}
.ls75{letter-spacing:3.244200px;}
.ls76{letter-spacing:3.247032px;}
.ls59{letter-spacing:3.290063px;}
.lsa{letter-spacing:4.179725px;}
.lsf{letter-spacing:4.185725px;}
.ls69{letter-spacing:4.963032px;}
.ls68{letter-spacing:4.966200px;}
.ls1c{letter-spacing:5.711683px;}
.ls15{letter-spacing:5.717683px;}
.ls31{letter-spacing:5.902594px;}
.ls18{letter-spacing:6.635092px;}
.ls45{letter-spacing:6.642583px;}
.ls49{letter-spacing:6.644298px;}
.ls35{letter-spacing:7.170912px;}
.ls36{letter-spacing:7.171200px;}
.ls37{letter-spacing:7.172868px;}
.ls66{letter-spacing:7.468200px;}
.ls6e{letter-spacing:7.675032px;}
.ls6d{letter-spacing:7.684200px;}
.ls64{letter-spacing:8.029032px;}
.ls63{letter-spacing:8.032200px;}
.ls70{letter-spacing:8.191032px;}
.ls6f{letter-spacing:8.194200px;}
.lsd{letter-spacing:8.961596px;}
.ls5e{letter-spacing:8.965248px;}
.ls8{letter-spacing:8.967596px;}
.ls61{letter-spacing:8.968800px;}
.ls65{letter-spacing:9.958200px;}
.ls5{letter-spacing:9.961032px;}
.ls2e{letter-spacing:9.962298px;}
.ls4a{letter-spacing:9.963292px;}
.ls4{letter-spacing:9.964200px;}
.ls24{letter-spacing:9.967032px;}
.ls71{letter-spacing:9.970200px;}
.ls46{letter-spacing:10.564873px;}
.ls4f{letter-spacing:11.618016px;}
.ls4d{letter-spacing:11.712583px;}
.ls33{letter-spacing:11.718240px;}
.ls19{letter-spacing:11.936100px;}
.ls5d{letter-spacing:11.953200px;}
.ls5c{letter-spacing:11.959200px;}
.ls4c{letter-spacing:12.714583px;}
.ls74{letter-spacing:12.949200px;}
.ls44{letter-spacing:12.951943px;}
.ls5b{letter-spacing:12.955200px;}
.ls16{letter-spacing:13.076100px;}
.ls1a{letter-spacing:13.279032px;}
.ls4e{letter-spacing:13.284583px;}
.lsc{letter-spacing:13.285032px;}
.lsb{letter-spacing:13.286725px;}
.ls4b{letter-spacing:13.312873px;}
.ls6c{letter-spacing:13.448054px;}
.ls3b{letter-spacing:13.545938px;}
.ls2c{letter-spacing:13.551115px;}
.ls23{letter-spacing:14.146200px;}
.ls54{letter-spacing:14.790017px;}
.ls42{letter-spacing:14.815258px;}
.ls40{letter-spacing:14.821258px;}
.ls14{letter-spacing:15.072230px;}
.ls11{letter-spacing:15.188100px;}
.ls22{letter-spacing:15.677683px;}
.ls7{letter-spacing:15.799200px;}
.ls43{letter-spacing:16.273258px;}
.ls6b{letter-spacing:16.622054px;}
.ls6a{letter-spacing:16.628054px;}
.ls30{letter-spacing:16.630200px;}
.ls17{letter-spacing:16.869115px;}
.ls12{letter-spacing:16.975200px;}
.ls1e{letter-spacing:17.923200px;}
.ls2b{letter-spacing:18.361200px;}
.ls21{letter-spacing:19.001683px;}
.ls27{letter-spacing:19.477200px;}
.ls3d{letter-spacing:20.225130px;}
.ls29{letter-spacing:20.317200px;}
.ls3f{letter-spacing:20.631943px;}
.ls3e{letter-spacing:20.637943px;}
.ls1f{letter-spacing:20.663683px;}
.ls28{letter-spacing:21.097200px;}
.ls2d{letter-spacing:21.447115px;}
.ls62{letter-spacing:21.469200px;}
.ls51{letter-spacing:21.584016px;}
.ls58{letter-spacing:22.451683px;}
.ls25{letter-spacing:22.849256px;}
.ls3c{letter-spacing:23.951830px;}
.ls67{letter-spacing:24.256836px;}
.ls2a{letter-spacing:24.583200px;}
.ls26{letter-spacing:27.034200px;}
.ls2f{letter-spacing:28.173115px;}
.ls5a{letter-spacing:29.609683px;}
.ls57{letter-spacing:30.729115px;}
.ls56{letter-spacing:32.849683px;}
.ls3a{letter-spacing:35.363770px;}
.ls10{letter-spacing:579.679710px;}
.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;}
}
.ws51{word-spacing:-65.693384px;}
.wsc2{word-spacing:-48.717114px;}
.ws4f{word-spacing:-42.082022px;}
.ws104{word-spacing:-41.842920px;}
.ws107{word-spacing:-41.424491px;}
.ws52{word-spacing:-33.110958px;}
.wsfe{word-spacing:-31.482713px;}
.wsa6{word-spacing:-28.788211px;}
.ws168{word-spacing:-15.786786px;}
.ws11{word-spacing:-14.943900px;}
.ws117{word-spacing:-13.449600px;}
.wsfd{word-spacing:-11.357400px;}
.wseb{word-spacing:-4.987338px;}
.ws11b{word-spacing:-4.984229px;}
.wsae{word-spacing:-4.979400px;}
.ws13d{word-spacing:-4.975208px;}
.ws118{word-spacing:-4.467014px;}
.ws79{word-spacing:-3.586536px;}
.ws27{word-spacing:-3.526760px;}
.wsb8{word-spacing:-3.466985px;}
.ws132{word-spacing:-3.407209px;}
.ws11d{word-spacing:-3.347434px;}
.ws8e{word-spacing:-3.287658px;}
.ws10a{word-spacing:-3.227882px;}
.ws8c{word-spacing:-3.168107px;}
.ws165{word-spacing:-3.120307px;}
.ws106{word-spacing:-3.117866px;}
.ws70{word-spacing:-3.108331px;}
.ws180{word-spacing:-3.066509px;}
.ws2e{word-spacing:-3.048556px;}
.ws144{word-spacing:-3.019200px;}
.ws42{word-spacing:-2.988780px;}
.wsa9{word-spacing:-2.929004px;}
.ws43{word-spacing:-2.869229px;}
.ws3b{word-spacing:-2.809453px;}
.wsc7{word-spacing:-2.749678px;}
.wsc6{word-spacing:-2.689902px;}
.ws1c0{word-spacing:-2.636122px;}
.ws4b{word-spacing:-2.630126px;}
.ws1d{word-spacing:-2.510575px;}
.wsc0{word-spacing:-2.450800px;}
.ws5b{word-spacing:-2.391024px;}
.ws14e{word-spacing:-2.331248px;}
.ws109{word-spacing:-2.271473px;}
.ws145{word-spacing:-2.259533px;}
.ws108{word-spacing:-2.227691px;}
.ws72{word-spacing:-2.211697px;}
.ws159{word-spacing:-2.205734px;}
.ws162{word-spacing:-2.151936px;}
.ws3a{word-spacing:-2.151922px;}
.ws86{word-spacing:-2.098138px;}
.ws8b{word-spacing:-2.092146px;}
.wscc{word-spacing:-1.972595px;}
.ws94{word-spacing:-1.912819px;}
.wsc1{word-spacing:-1.853044px;}
.wsb7{word-spacing:-1.793268px;}
.wse2{word-spacing:-1.733492px;}
.ws181{word-spacing:-1.721549px;}
.ws113{word-spacing:-1.673717px;}
.wsbb{word-spacing:-1.613941px;}
.ws14c{word-spacing:-1.554166px;}
.ws19{word-spacing:-1.494390px;}
.ws57{word-spacing:-1.434614px;}
.wsff{word-spacing:-1.424652px;}
.ws121{word-spacing:-1.374839px;}
.ws15{word-spacing:-1.315063px;}
.ws3c{word-spacing:-1.255288px;}
.ws6f{word-spacing:-1.195512px;}
.ws98{word-spacing:-1.135736px;}
.ws163{word-spacing:-1.075968px;}
.ws102{word-spacing:-1.075961px;}
.ws1c{word-spacing:-1.016185px;}
.ws73{word-spacing:-0.956410px;}
.ws13{word-spacing:-0.896634px;}
.ws3{word-spacing:-0.850359px;}
.ws8d{word-spacing:-0.836858px;}
.ws194{word-spacing:-0.806976px;}
.ws83{word-spacing:-0.794496px;}
.ws6d{word-spacing:-0.777083px;}
.wsee{word-spacing:-0.762168px;}
.ws198{word-spacing:-0.753178px;}
.wse6{word-spacing:-0.717307px;}
.ws125{word-spacing:-0.692975px;}
.ws21{word-spacing:-0.657532px;}
.ws1b2{word-spacing:-0.645581px;}
.ws11a{word-spacing:-0.597756px;}
.wsbf{word-spacing:-0.537980px;}
.ws46{word-spacing:-0.478205px;}
.ws30{word-spacing:-0.418429px;}
.ws13b{word-spacing:-0.358654px;}
.ws97{word-spacing:-0.298878px;}
.ws82{word-spacing:-0.239102px;}
.ws10c{word-spacing:-0.179327px;}
.ws10b{word-spacing:-0.157691px;}
.ws166{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.ws128{word-spacing:-0.053798px;}
.wsf0{word-spacing:-0.000490px;}
.ws129{word-spacing:-0.000355px;}
.ws13a{word-spacing:-0.000067px;}
.ws1{word-spacing:0.000000px;}
.ws139{word-spacing:0.000086px;}
.ws1ad{word-spacing:0.053798px;}
.wsfa{word-spacing:0.059776px;}
.wsd5{word-spacing:0.119551px;}
.ws7b{word-spacing:0.179327px;}
.ws195{word-spacing:0.215194px;}
.ws59{word-spacing:0.239102px;}
.ws58{word-spacing:0.245425px;}
.ws171{word-spacing:0.268992px;}
.ws6{word-spacing:0.298878px;}
.ws17e{word-spacing:0.322790px;}
.ws6e{word-spacing:0.358654px;}
.wse0{word-spacing:0.418429px;}
.ws12f{word-spacing:0.478205px;}
.ws12a{word-spacing:0.537980px;}
.ws173{word-spacing:0.537984px;}
.ws37{word-spacing:0.597756px;}
.wsb9{word-spacing:0.657532px;}
.ws100{word-spacing:0.717307px;}
.ws16a{word-spacing:0.753178px;}
.ws5f{word-spacing:0.777083px;}
.ws5c{word-spacing:0.836858px;}
.ws8f{word-spacing:0.896634px;}
.ws119{word-spacing:0.956410px;}
.ws1ac{word-spacing:0.968371px;}
.ws49{word-spacing:1.016185px;}
.ws13c{word-spacing:1.059025px;}
.wsb6{word-spacing:1.075961px;}
.ws1a5{word-spacing:1.075968px;}
.wsfc{word-spacing:1.089140px;}
.ws170{word-spacing:1.129766px;}
.ws2d{word-spacing:1.135736px;}
.ws1ae{word-spacing:1.183565px;}
.ws8a{word-spacing:1.195512px;}
.ws101{word-spacing:1.215938px;}
.ws5d{word-spacing:1.255288px;}
.ws185{word-spacing:1.291162px;}
.wsf4{word-spacing:1.297296px;}
.ws34{word-spacing:1.315063px;}
.ws63{word-spacing:1.374839px;}
.ws175{word-spacing:1.398758px;}
.ws11e{word-spacing:1.434614px;}
.ws11f{word-spacing:1.494390px;}
.ws179{word-spacing:1.506355px;}
.ws16{word-spacing:1.554166px;}
.ws71{word-spacing:1.613941px;}
.wsa2{word-spacing:1.673717px;}
.ws167{word-spacing:1.721549px;}
.ws7e{word-spacing:1.733492px;}
.ws199{word-spacing:1.775347px;}
.ws12{word-spacing:1.793268px;}
.ws15a{word-spacing:1.829146px;}
.ws133{word-spacing:1.853044px;}
.wsd9{word-spacing:1.912819px;}
.ws6c{word-spacing:1.972595px;}
.ws1bb{word-spacing:1.990541px;}
.ws64{word-spacing:2.032370px;}
.wsf6{word-spacing:2.044339px;}
.wsd2{word-spacing:2.092146px;}
.ws3d{word-spacing:2.151922px;}
.wse8{word-spacing:2.211697px;}
.ws6a{word-spacing:2.271473px;}
.ws38{word-spacing:2.331248px;}
.wsc4{word-spacing:2.391024px;}
.ws134{word-spacing:2.431812px;}
.wsa8{word-spacing:2.450800px;}
.ws18e{word-spacing:2.474726px;}
.ws1f{word-spacing:2.510575px;}
.ws3e{word-spacing:2.570351px;}
.ws17f{word-spacing:2.582323px;}
.ws1e{word-spacing:2.630126px;}
.wse{word-spacing:2.689902px;}
.ws105{word-spacing:2.702134px;}
.wsed{word-spacing:2.749678px;}
.ws1c3{word-spacing:2.797517px;}
.ws123{word-spacing:2.809453px;}
.ws80{word-spacing:2.869229px;}
.ws18{word-spacing:2.929004px;}
.ws172{word-spacing:2.958912px;}
.wsd6{word-spacing:2.988780px;}
.wsbe{word-spacing:3.048556px;}
.ws29{word-spacing:3.108331px;}
.ws3f{word-spacing:3.168107px;}
.ws137{word-spacing:3.173933px;}
.ws135{word-spacing:3.174106px;}
.wsf8{word-spacing:3.227882px;}
.ws1bc{word-spacing:3.227904px;}
.ws1c2{word-spacing:3.281702px;}
.ws8{word-spacing:3.287658px;}
.ws33{word-spacing:3.347434px;}
.ws183{word-spacing:3.389299px;}
.ws2c{word-spacing:3.407209px;}
.wsd0{word-spacing:3.466985px;}
.ws9b{word-spacing:3.526760px;}
.wse1{word-spacing:3.586536px;}
.ws28{word-spacing:3.646312px;}
.ws161{word-spacing:3.658291px;}
.wsd4{word-spacing:3.765863px;}
.ws1a8{word-spacing:3.765888px;}
.wsc3{word-spacing:3.825638px;}
.ws15d{word-spacing:3.873485px;}
.ws4c{word-spacing:3.885414px;}
.ws24{word-spacing:3.945190px;}
.ws14{word-spacing:4.004965px;}
.ws124{word-spacing:4.064741px;}
.ws130{word-spacing:4.074890px;}
.ws4e{word-spacing:4.124516px;}
.ws164{word-spacing:4.142477px;}
.ws66{word-spacing:4.184292px;}
.ws182{word-spacing:4.196275px;}
.ws12e{word-spacing:4.244068px;}
.ws16f{word-spacing:4.250074px;}
.wsa4{word-spacing:4.303843px;}
.ws16b{word-spacing:4.303872px;}
.ws169{word-spacing:4.357670px;}
.ws112{word-spacing:4.363619px;}
.ws151{word-spacing:4.423394px;}
.wsd{word-spacing:4.483170px;}
.wsc{word-spacing:4.542946px;}
.ws1b6{word-spacing:4.572864px;}
.ws7a{word-spacing:4.602721px;}
.ws9{word-spacing:4.662497px;}
.ws56{word-spacing:4.722272px;}
.ws65{word-spacing:4.782048px;}
.ws187{word-spacing:4.788058px;}
.ws10{word-spacing:4.841824px;}
.ws1b7{word-spacing:4.895654px;}
.ws50{word-spacing:4.901599px;}
.ws31{word-spacing:4.961375px;}
.ws78{word-spacing:5.021150px;}
.wsb5{word-spacing:5.080926px;}
.ws184{word-spacing:5.110848px;}
.ws17{word-spacing:5.140702px;}
.ws12d{word-spacing:5.200477px;}
.ws25{word-spacing:5.260253px;}
.ws1bd{word-spacing:5.272243px;}
.ws127{word-spacing:5.320028px;}
.ws2b{word-spacing:5.379804px;}
.ws1ab{word-spacing:5.379840px;}
.ws85{word-spacing:5.433638px;}
.wsa7{word-spacing:5.439580px;}
.ws12b{word-spacing:5.499355px;}
.ws154{word-spacing:5.532828px;}
.ws11c{word-spacing:5.559131px;}
.wsd8{word-spacing:5.618906px;}
.ws4a{word-spacing:5.678682px;}
.wsa3{word-spacing:5.738458px;}
.ws19a{word-spacing:5.756429px;}
.ws74{word-spacing:5.798233px;}
.ws103{word-spacing:5.858009px;}
.ws4d{word-spacing:5.917784px;}
.ws14d{word-spacing:5.941775px;}
.ws1b9{word-spacing:5.971622px;}
.ws32{word-spacing:5.977560px;}
.ws114{word-spacing:5.979492px;}
.ws1a3{word-spacing:6.025421px;}
.ws55{word-spacing:6.037336px;}
.ws76{word-spacing:6.097111px;}
.ws16d{word-spacing:6.133018px;}
.wsd1{word-spacing:6.156887px;}
.ws197{word-spacing:6.186816px;}
.wsda{word-spacing:6.216662px;}
.ws2f{word-spacing:6.276438px;}
.wsb4{word-spacing:6.336214px;}
.wse4{word-spacing:6.395989px;}
.ws126{word-spacing:6.433276px;}
.ws9c{word-spacing:6.455765px;}
.ws1a4{word-spacing:6.455808px;}
.ws23{word-spacing:6.515540px;}
.ws6b{word-spacing:6.575316px;}
.ws146{word-spacing:6.617203px;}
.ws9f{word-spacing:6.635092px;}
.ws192{word-spacing:6.671002px;}
.ws26{word-spacing:6.694867px;}
.ws115{word-spacing:6.724800px;}
.wscb{word-spacing:6.754643px;}
.ws7d{word-spacing:6.814418px;}
.ws111{word-spacing:6.874194px;}
.ws16e{word-spacing:6.886195px;}
.ws150{word-spacing:6.933970px;}
.wsf9{word-spacing:6.993745px;}
.ws1ba{word-spacing:6.993792px;}
.ws7f{word-spacing:7.053521px;}
.ws54{word-spacing:7.113296px;}
.ws53{word-spacing:7.146109px;}
.wsfb{word-spacing:7.173072px;}
.wsb{word-spacing:7.232848px;}
.wsba{word-spacing:7.292623px;}
.wse7{word-spacing:7.352399px;}
.wsf{word-spacing:7.412174px;}
.ws14f{word-spacing:7.471950px;}
.ws9e{word-spacing:7.531726px;}
.ws1c1{word-spacing:7.531776px;}
.wsdb{word-spacing:7.591501px;}
.ws193{word-spacing:7.639373px;}
.ws20{word-spacing:7.651277px;}
.wse3{word-spacing:7.711052px;}
.ws84{word-spacing:7.746970px;}
.ws40{word-spacing:7.770828px;}
.ws69{word-spacing:7.830604px;}
.ws158{word-spacing:7.854566px;}
.ws2a{word-spacing:7.890379px;}
.wsca{word-spacing:7.906309px;}
.ws5e{word-spacing:7.950155px;}
.ws1b3{word-spacing:7.962163px;}
.wsce{word-spacing:8.009930px;}
.ws36{word-spacing:8.069706px;}
.ws14b{word-spacing:8.129482px;}
.ws186{word-spacing:8.177357px;}
.ws140{word-spacing:8.189257px;}
.wsbc{word-spacing:8.249033px;}
.wsec{word-spacing:8.368584px;}
.ws196{word-spacing:8.392550px;}
.ws47{word-spacing:8.428360px;}
.ws39{word-spacing:8.488135px;}
.ws10d{word-spacing:8.547911px;}
.wsc5{word-spacing:8.607686px;}
.ws44{word-spacing:8.667462px;}
.ws75{word-spacing:8.727238px;}
.wsad{word-spacing:8.787013px;}
.ws141{word-spacing:8.846789px;}
.ws4{word-spacing:8.872356px;}
.wsd3{word-spacing:8.906564px;}
.ws191{word-spacing:8.930534px;}
.ws10f{word-spacing:8.950309px;}
.wsa{word-spacing:8.966340px;}
.ws13f{word-spacing:9.026116px;}
.ws87{word-spacing:9.038131px;}
.wsaa{word-spacing:9.044016px;}
.ws122{word-spacing:9.085891px;}
.ws1c4{word-spacing:9.145728px;}
.ws5a{word-spacing:9.205442px;}
.wsaf{word-spacing:9.265218px;}
.ws1b1{word-spacing:9.307123px;}
.ws13e{word-spacing:9.384769px;}
.wsb0{word-spacing:9.444545px;}
.wsdc{word-spacing:9.564096px;}
.ws48{word-spacing:9.623872px;}
.wse5{word-spacing:9.642042px;}
.ws5{word-spacing:9.743423px;}
.wsab{word-spacing:9.791309px;}
.ws149{word-spacing:9.803198px;}
.ws152{word-spacing:9.862974px;}
.ws142{word-spacing:9.922750px;}
.ws60{word-spacing:9.982525px;}
.ws61{word-spacing:10.042301px;}
.ws160{word-spacing:10.060301px;}
.ws120{word-spacing:10.102076px;}
.ws147{word-spacing:10.221696px;}
.ws1a7{word-spacing:10.275494px;}
.wsac{word-spacing:10.329293px;}
.ws14a{word-spacing:10.341179px;}
.ws17b{word-spacing:10.383091px;}
.wsdf{word-spacing:10.400954px;}
.ws174{word-spacing:10.436890px;}
.ws18b{word-spacing:10.490688px;}
.ws1b0{word-spacing:10.652083px;}
.ws155{word-spacing:10.699832px;}
.wsdd{word-spacing:10.759608px;}
.ws35{word-spacing:10.879159px;}
.ws1b4{word-spacing:10.921075px;}
.ws17a{word-spacing:11.028672px;}
.ws189{word-spacing:11.082470px;}
.wsbd{word-spacing:11.297588px;}
.ws148{word-spacing:11.351462px;}
.wsb3{word-spacing:11.417140px;}
.wsa1{word-spacing:11.596466px;}
.ws190{word-spacing:11.674253px;}
.wscd{word-spacing:11.895344px;}
.ws1af{word-spacing:11.943245px;}
.ws1bf{word-spacing:11.997043px;}
.wsb2{word-spacing:12.014896px;}
.ws1b8{word-spacing:12.104640px;}
.ws22{word-spacing:12.134447px;}
.ws41{word-spacing:12.194222px;}
.ws10e{word-spacing:12.199034px;}
.ws116{word-spacing:12.212237px;}
.ws178{word-spacing:12.373632px;}
.ws45{word-spacing:12.433325px;}
.ws110{word-spacing:12.552876px;}
.ws62{word-spacing:12.672427px;}
.wsa5{word-spacing:12.732203px;}
.ws143{word-spacing:12.851754px;}
.ws131{word-spacing:12.971305px;}
.wsde{word-spacing:13.031081px;}
.wsea{word-spacing:13.210408px;}
.ws81{word-spacing:13.329959px;}
.wsf2{word-spacing:13.391578px;}
.wsf7{word-spacing:13.392557px;}
.wsef{word-spacing:13.393978px;}
.wsf3{word-spacing:13.395802px;}
.wsf1{word-spacing:13.398557px;}
.ws95{word-spacing:13.569061px;}
.ws16c{word-spacing:13.664794px;}
.wsc8{word-spacing:13.688612px;}
.wsa0{word-spacing:13.808164px;}
.ws18d{word-spacing:13.826189px;}
.ws177{word-spacing:14.095181px;}
.wsb1{word-spacing:14.107042px;}
.ws188{word-spacing:14.148979px;}
.ws18a{word-spacing:14.202778px;}
.ws9a{word-spacing:14.226593px;}
.ws17d{word-spacing:14.310374px;}
.ws12c{word-spacing:14.405920px;}
.ws18c{word-spacing:14.686963px;}
.ws9d{word-spacing:14.704798px;}
.wscf{word-spacing:14.764573px;}
.ws1c6{word-spacing:14.794560px;}
.ws2{word-spacing:14.884124px;}
.ws1b5{word-spacing:15.171149px;}
.ws67{word-spacing:15.362329px;}
.wsf5{word-spacing:15.445267px;}
.ws15c{word-spacing:15.547738px;}
.ws15b{word-spacing:15.674328px;}
.ws15e{word-spacing:15.674424px;}
.ws157{word-spacing:15.680868px;}
.ws0{word-spacing:15.729999px;}
.ws19e{word-spacing:15.870528px;}
.ws1be{word-spacing:15.924326px;}
.wsd7{word-spacing:15.960085px;}
.ws90{word-spacing:16.318739px;}
.ws138{word-spacing:16.566557px;}
.ws136{word-spacing:16.573267px;}
.ws176{word-spacing:16.785101px;}
.ws92{word-spacing:17.095822px;}
.ws68{word-spacing:18.530436px;}
.ws7{word-spacing:19.128192px;}
.ws77{word-spacing:19.307519px;}
.ws1a9{word-spacing:19.690214px;}
.ws1c5{word-spacing:20.174400px;}
.ws18f{word-spacing:20.389594px;}
.ws1c7{word-spacing:20.443392px;}
.ws153{word-spacing:20.682358px;}
.ws1a6{word-spacing:21.142771px;}
.ws99{word-spacing:21.280114px;}
.ws7c{word-spacing:21.670424px;}
.ws1a0{word-spacing:21.842150px;}
.wse9{word-spacing:21.937645px;}
.ws1a2{word-spacing:22.057344px;}
.ws15f{word-spacing:22.756723px;}
.ws156{word-spacing:23.079514px;}
.ws19b{word-spacing:24.424474px;}
.ws1aa{word-spacing:24.693466px;}
.ws96{word-spacing:25.045976px;}
.ws91{word-spacing:25.763284px;}
.ws19c{word-spacing:27.168192px;}
.ws17c{word-spacing:27.867571px;}
.ws19f{word-spacing:30.396096px;}
.ws93{word-spacing:30.545332px;}
.ws1a1{word-spacing:31.687258px;}
.ws19d{word-spacing:32.171443px;}
.ws1b{word-spacing:41.000214px;}
.ws89{word-spacing:104.584090px;}
.ws88{word-spacing:156.822336px;}
.wsc9{word-spacing:894.269510px;}
._4{margin-left:-6.635092px;}
._5{margin-left:-5.379797px;}
._3{margin-left:-3.885414px;}
._0{margin-left:-2.271480px;}
._2{margin-left:-1.135740px;}
._1{width:1.703610px;}
._29{width:3.012710px;}
._6{width:10.042301px;}
._9{width:13.329966px;}
._c{width:14.645036px;}
._1d{width:15.813510px;}
._a{width:17.215380px;}
._d{width:18.530443px;}
._e{width:20.981239px;}
._1f{width:22.654960px;}
._1e{width:24.531840px;}
._8{width:26.361040px;}
._26{width:28.931398px;}
._27{width:30.162414px;}
._20{width:35.865353px;}
._28{width:42.823526px;}
._b{width:56.787000px;}
._10{width:71.713267px;}
._14{width:170.271936px;}
._23{width:194.495520px;}
._25{width:198.046258px;}
._21{width:205.778880px;}
._22{width:229.309069px;}
._24{width:231.604512px;}
._1c{width:364.161370px;}
._18{width:405.962726px;}
._15{width:407.522880px;}
._11{width:453.843302px;}
._12{width:462.182011px;}
._19{width:468.004229px;}
._17{width:483.647616px;}
._13{width:488.931806px;}
._1a{width:530.936366px;}
._1b{width:552.401971px;}
._16{width:594.203328px;}
._f{width:1172.310828px;}
._7{width:1406.159694px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(91,10,121);}
.fs6{font-size:35.865600px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:51.108000px;}
.fs5{font-size:53.798400px;}
.fs0{font-size:56.787000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:98.127600px;}
.y0{bottom:0.000000px;}
.y33{bottom:55.669620px;}
.y29{bottom:100.501620px;}
.y177{bottom:101.488620px;}
.ye9{bottom:104.155620px;}
.y158{bottom:113.100120px;}
.y1f1{bottom:115.446120px;}
.y32{bottom:116.088120px;}
.y1bf{bottom:116.940120px;}
.y28{bottom:118.434120px;}
.y176{bottom:119.421120px;}
.ye8{bottom:122.088120px;}
.yc5{bottom:124.164120px;}
.y67{bottom:124.411620px;}
.y15b{bottom:131.032620px;}
.y157{bottom:131.034120px;}
.y1f0{bottom:131.884620px;}
.y1a1{bottom:133.228620px;}
.y1be{bottom:133.378620px;}
.y31{bottom:134.020620px;}
.y27{bottom:136.366620px;}
.y175{bottom:137.355120px;}
.ye7{bottom:140.020620px;}
.yc4{bottom:142.098120px;}
.y66{bottom:142.344120px;}
.y1ef{bottom:148.323120px;}
.y156{bottom:148.966620px;}
.y1a0{bottom:151.161120px;}
.y30{bottom:151.953120px;}
.y91{bottom:154.299120px;}
.y26{bottom:154.300620px;}
.y174{bottom:155.287620px;}
.ye6{bottom:157.954620px;}
.yc3{bottom:160.030620px;}
.y65{bottom:160.276620px;}
.y1ee{bottom:164.761620px;}
.y155{bottom:166.899120px;}
.y1bd{bottom:167.509620px;}
.y19f{bottom:169.093620px;}
.y2f{bottom:169.885620px;}
.y90{bottom:172.231620px;}
.yd7{bottom:172.233120px;}
.y173{bottom:173.220120px;}
.ye5{bottom:175.887120px;}
.yc2{bottom:177.963120px;}
.y64{bottom:178.210620px;}
.y1ed{bottom:181.198620px;}
.y140{bottom:182.436120px;}
.y154{bottom:184.831620px;}
.y19e{bottom:187.027620px;}
.y2e{bottom:187.818120px;}
.y8f{bottom:190.164120px;}
.yca{bottom:190.165620px;}
.y25{bottom:190.398120px;}
.y172{bottom:191.152620px;}
.ye4{bottom:193.819620px;}
.yc1{bottom:195.895620px;}
.y63{bottom:196.143120px;}
.y1ec{bottom:197.637120px;}
.y114{bottom:201.660120px;}
.y115{bottom:201.774120px;}
.y153{bottom:202.764120px;}
.y19d{bottom:204.960120px;}
.y2d{bottom:205.752120px;}
.y113{bottom:205.962120px;}
.y8e{bottom:208.098120px;}
.y171{bottom:209.085120px;}
.ye3{bottom:211.752120px;}
.yc0{bottom:213.828120px;}
.y62{bottom:214.075620px;}
.y152{bottom:220.696620px;}
.y13f{bottom:222.807120px;}
.y19c{bottom:222.892620px;}
.y2c{bottom:223.684620px;}
.y8d{bottom:226.030620px;}
.y170{bottom:227.017620px;}
.y1eb{bottom:230.514120px;}
.ybf{bottom:231.762120px;}
.y61{bottom:232.008120px;}
.y15a{bottom:238.629120px;}
.y151{bottom:238.630620px;}
.y112{bottom:239.706120px;}
.y13e{bottom:240.739620px;}
.y19b{bottom:240.825120px;}
.y2b{bottom:241.617120px;}
.y1bc{bottom:242.469120px;}
.y8c{bottom:243.963120px;}
.y16f{bottom:244.951620px;}
.y1ea{bottom:246.952620px;}
.ybe{bottom:249.694620px;}
.y60{bottom:249.940620px;}
.y150{bottom:256.563120px;}
.y111{bottom:257.638620px;}
.y13d{bottom:258.672120px;}
.y19a{bottom:258.757620px;}
.y1bb{bottom:258.907620px;}
.y24{bottom:259.549620px;}
.y8b{bottom:261.895620px;}
.yd6{bottom:261.897120px;}
.ye2{bottom:262.485120px;}
.y16e{bottom:262.884120px;}
.y1e9{bottom:263.391120px;}
.ybd{bottom:267.627120px;}
.y5f{bottom:267.873120px;}
.y110{bottom:270.711120px;}
.y14f{bottom:274.495620px;}
.y10f{bottom:275.571120px;}
.y13c{bottom:276.604620px;}
.y199{bottom:276.691620px;}
.y23{bottom:277.482120px;}
.ye1{bottom:278.923620px;}
.y8a{bottom:279.828120px;}
.yd5{bottom:279.829620px;}
.y16d{bottom:280.816620px;}
.ybc{bottom:285.559620px;}
.y5e{bottom:285.807120px;}
.y14e{bottom:292.428120px;}
.y10e{bottom:293.503620px;}
.y13b{bottom:294.537120px;}
.y198{bottom:294.624120px;}
.y22{bottom:295.414620px;}
.y1e8{bottom:296.268120px;}
.y89{bottom:297.760620px;}
.yc9{bottom:297.762120px;}
.y16c{bottom:298.749120px;}
.ybb{bottom:303.492120px;}
.y5d{bottom:303.739620px;}
.y14d{bottom:310.360620px;}
.y1ba{bottom:311.211120px;}
.y10d{bottom:311.436120px;}
.y13a{bottom:312.469620px;}
.y197{bottom:312.556620px;}
.y1e7{bottom:312.706620px;}
.y21{bottom:313.348620px;}
.y88{bottom:315.694620px;}
.y16b{bottom:316.681620px;}
.yba{bottom:321.424620px;}
.y5c{bottom:321.672120px;}
.y1b9{bottom:327.649620px;}
.y14c{bottom:328.293120px;}
.y1e6{bottom:329.145120px;}
.y10c{bottom:329.368620px;}
.y139{bottom:330.403620px;}
.y196{bottom:330.489120px;}
.y20{bottom:331.281120px;}
.y87{bottom:333.627120px;}
.y16a{bottom:334.615620px;}
.yb9{bottom:339.358620px;}
.y5b{bottom:339.604620px;}
.y1b8{bottom:344.088120px;}
.y1e5{bottom:345.582120px;}
.y1f7{bottom:345.583620px;}
.y14b{bottom:346.227120px;}
.y138{bottom:348.336120px;}
.y195{bottom:348.421620px;}
.y1f{bottom:349.213620px;}
.y86{bottom:351.559620px;}
.y169{bottom:352.548120px;}
.yb8{bottom:357.291120px;}
.y5a{bottom:357.537120px;}
.y1e4{bottom:362.020620px;}
.y10b{bottom:363.262620px;}
.y14a{bottom:364.159620px;}
.y137{bottom:366.268620px;}
.y194{bottom:366.354120px;}
.y1e{bottom:367.146120px;}
.y85{bottom:369.492120px;}
.yd4{bottom:369.493620px;}
.y168{bottom:370.480620px;}
.y59{bottom:375.469620px;}
.y1e3{bottom:378.459120px;}
.y164{bottom:380.398620px;}
.y149{bottom:382.092120px;}
.y136{bottom:384.201120px;}
.y193{bottom:384.288120px;}
.y1d{bottom:385.078620px;}
.y84{bottom:387.424620px;}
.yc8{bottom:387.426120px;}
.y167{bottom:388.413120px;}
.y58{bottom:393.403620px;}
.y1e2{bottom:394.897620px;}
.y1b7{bottom:396.391620px;}
.y116{bottom:398.184120px;}
.y148{bottom:400.024620px;}
.y10a{bottom:400.882620px;}
.y135{bottom:402.133620px;}
.y192{bottom:402.220620px;}
.y1c{bottom:403.011120px;}
.y2a{bottom:403.012620px;}
.ydf{bottom:405.357120px;}
.y83{bottom:405.358620px;}
.y166{bottom:406.345620px;}
.y57{bottom:411.336120px;}
.y1b6{bottom:412.830120px;}
.yb7{bottom:414.892620px;}
.y147{bottom:417.957120px;}
.y109{bottom:418.816620px;}
.y134{bottom:420.067620px;}
.y191{bottom:420.153120px;}
.y1b{bottom:420.945120px;}
.y82{bottom:423.291120px;}
.y165{bottom:424.278120px;}
.y163{bottom:424.279620px;}
.y1e1{bottom:427.774620px;}
.yda{bottom:428.070120px;}
.y56{bottom:429.268620px;}
.yb6{bottom:431.331120px;}
.yd9{bottom:432.256620px;}
.y159{bottom:435.889620px;}
.y146{bottom:435.891120px;}
.y108{bottom:436.749120px;}
.y133{bottom:438.000120px;}
.y190{bottom:438.085620px;}
.y1a{bottom:438.877620px;}
.y81{bottom:441.223620px;}
.y162{bottom:442.212120px;}
.y1e0{bottom:444.213120px;}
.y1b5{bottom:445.707120px;}
.y55{bottom:447.201120px;}
.yb5{bottom:447.769620px;}
.y145{bottom:453.823620px;}
.y132{bottom:455.932620px;}
.y18f{bottom:456.018120px;}
.y19{bottom:456.810120px;}
.y80{bottom:459.156120px;}
.y161{bottom:460.144620px;}
.y1df{bottom:460.651620px;}
.y1b4{bottom:462.145620px;}
.yb4{bottom:464.208120px;}
.y54{bottom:465.133620px;}
.y107{bottom:467.070120px;}
.y144{bottom:471.756120px;}
.y131{bottom:473.865120px;}
.y18e{bottom:473.950620px;}
.y18{bottom:474.742620px;}
.y7f{bottom:477.088620px;}
.yd3{bottom:477.090120px;}
.y160{bottom:478.077120px;}
.y1b3{bottom:478.584120px;}
.yb3{bottom:480.646620px;}
.y53{bottom:483.067620px;}
.y143{bottom:489.688620px;}
.y130{bottom:491.797620px;}
.y18d{bottom:491.884620px;}
.y17{bottom:492.675120px;}
.y1de{bottom:493.528620px;}
.y7e{bottom:495.021120px;}
.yc7{bottom:495.022620px;}
.y15f{bottom:496.009620px;}
.y106{bottom:496.633620px;}
.yb2{bottom:497.085120px;}
.y142{bottom:507.621120px;}
.y12f{bottom:509.730120px;}
.y18c{bottom:509.817120px;}
.y1dd{bottom:509.965620px;}
.y1f2{bottom:509.967120px;}
.y16{bottom:510.609120px;}
.y7d{bottom:512.955120px;}
.yb1{bottom:513.522120px;}
.y15e{bottom:513.942120px;}
.y52{bottom:515.943120px;}
.y141{bottom:525.553620px;}
.y1dc{bottom:526.404120px;}
.y1f6{bottom:526.405620px;}
.y12e{bottom:527.664120px;}
.y18b{bottom:527.749620px;}
.y15{bottom:528.541620px;}
.yb0{bottom:529.960620px;}
.y7c{bottom:530.887620px;}
.y105{bottom:531.685620px;}
.y1db{bottom:542.842620px;}
.y12d{bottom:545.596620px;}
.y18a{bottom:545.682120px;}
.yaf{bottom:546.399120px;}
.y14{bottom:546.474120px;}
.y1b2{bottom:547.326120px;}
.y51{bottom:548.820120px;}
.y104{bottom:549.618120px;}
.y1da{bottom:559.281120px;}
.yae{bottom:562.837620px;}
.y12c{bottom:563.529120px;}
.y189{bottom:563.614620px;}
.y1b1{bottom:563.764620px;}
.y13{bottom:564.406620px;}
.y15d{bottom:564.675120px;}
.y50{bottom:566.752620px;}
.y103{bottom:567.550620px;}
.y1d9{bottom:575.719620px;}
.ye0{bottom:576.217620px;}
.yd2{bottom:578.518620px;}
.yad{bottom:579.276120px;}
.y1b0{bottom:580.203120px;}
.y15c{bottom:581.113620px;}
.y12b{bottom:581.461620px;}
.y188{bottom:581.547120px;}
.y12{bottom:582.339120px;}
.y7b{bottom:584.685120px;}
.y4f{bottom:584.686620px;}
.y102{bottom:585.483120px;}
.y1d8{bottom:592.158120px;}
.yac{bottom:595.714620px;}
.y12a{bottom:599.394120px;}
.y187{bottom:599.481120px;}
.y11{bottom:600.271620px;}
.y7a{bottom:602.617620px;}
.y4e{bottom:602.619120px;}
.y101{bottom:603.417120px;}
.y1d7{bottom:608.596620px;}
.yab{bottom:612.153120px;}
.y129{bottom:617.326620px;}
.y186{bottom:617.413620px;}
.y10{bottom:618.205620px;}
.y4d{bottom:620.551620px;}
.y100{bottom:621.349620px;}
.y1d6{bottom:625.035120px;}
.yd1{bottom:626.698620px;}
.yaa{bottom:628.591620px;}
.y1af{bottom:632.506620px;}
.y128{bottom:635.260620px;}
.y185{bottom:635.346120px;}
.yf{bottom:636.138120px;}
.y4c{bottom:638.484120px;}
.yff{bottom:639.282120px;}
.y1d5{bottom:641.473620px;}
.yd0{bottom:644.632620px;}
.y1ae{bottom:648.945120px;}
.y127{bottom:653.193120px;}
.y184{bottom:653.278620px;}
.ye{bottom:654.070620px;}
.ya9{bottom:654.130620px;}
.y4b{bottom:656.416620px;}
.yfe{bottom:657.214620px;}
.y1d4{bottom:657.912120px;}
.ycf{bottom:662.565120px;}
.ya8{bottom:670.569120px;}
.y126{bottom:671.125620px;}
.y183{bottom:671.211120px;}
.yd{bottom:672.003120px;}
.y4a{bottom:674.349120px;}
.y1a7{bottom:674.350620px;}
.yfd{bottom:675.147120px;}
.yce{bottom:680.497620px;}
.ya7{bottom:687.007620px;}
.y125{bottom:689.058120px;}
.y182{bottom:689.145120px;}
.y1d3{bottom:690.787620px;}
.y1f5{bottom:690.789120px;}
.y79{bottom:692.281620px;}
.y49{bottom:692.283120px;}
.yfc{bottom:693.081120px;}
.y1ad{bottom:701.248620px;}
.ya6{bottom:703.446120px;}
.y124{bottom:706.990620px;}
.y181{bottom:707.077620px;}
.y1d2{bottom:707.226120px;}
.yde{bottom:710.214120px;}
.y48{bottom:710.215620px;}
.yfb{bottom:711.013620px;}
.y1ac{bottom:717.687120px;}
.ya5{bottom:719.884620px;}
.y78{bottom:721.215120px;}
.yc{bottom:723.058620px;}
.y1d1{bottom:723.664620px;}
.y123{bottom:724.924620px;}
.y180{bottom:725.010120px;}
.y47{bottom:728.148120px;}
.yfa{bottom:728.946120px;}
.y1a6{bottom:729.091620px;}
.ycd{bottom:732.183120px;}
.ya4{bottom:736.323120px;}
.y1d0{bottom:740.103120px;}
.yb{bottom:740.992620px;}
.y122{bottom:742.857120px;}
.y17f{bottom:742.942620px;}
.y1a5{bottom:745.530120px;}
.y46{bottom:746.080620px;}
.yf9{bottom:746.878620px;}
.ycc{bottom:748.620120px;}
.ya3{bottom:752.761620px;}
.y1cf{bottom:756.541620px;}
.y121{bottom:760.789620px;}
.y17e{bottom:760.875120px;}
.y1a4{bottom:761.968620px;}
.y45{bottom:764.013120px;}
.yf8{bottom:764.811120px;}
.ycb{bottom:765.058620px;}
.y77{bottom:765.565620px;}
.ya2{bottom:769.200120px;}
.y1ab{bottom:769.990620px;}
.y1ce{bottom:772.980120px;}
.ya{bottom:773.868120px;}
.y1a3{bottom:778.407120px;}
.y120{bottom:778.722120px;}
.y17d{bottom:778.807620px;}
.y44{bottom:781.945620px;}
.yf7{bottom:782.743620px;}
.y76{bottom:783.499620px;}
.y1aa{bottom:786.429120px;}
.y1cd{bottom:789.418620px;}
.ya1{bottom:794.739120px;}
.y1a2{bottom:794.845620px;}
.y11f{bottom:796.654620px;}
.y17c{bottom:796.741620px;}
.yd8{bottom:799.878120px;}
.y43{bottom:799.879620px;}
.yf6{bottom:800.677620px;}
.y75{bottom:801.432120px;}
.y1cc{bottom:805.857120px;}
.y9{bottom:810.675120px;}
.ya0{bottom:811.177620px;}
.y11e{bottom:814.587120px;}
.y17b{bottom:814.674120px;}
.ydd{bottom:817.810620px;}
.y42{bottom:817.812120px;}
.yf5{bottom:818.610120px;}
.y74{bottom:819.364620px;}
.y1cb{bottom:822.295620px;}
.y9f{bottom:827.616120px;}
.y8{bottom:828.609120px;}
.yf3{bottom:831.556620px;}
.y11d{bottom:832.521120px;}
.y17a{bottom:832.606620px;}
.y41{bottom:835.744620px;}
.y73{bottom:837.297120px;}
.y1a9{bottom:838.734120px;}
.yf2{bottom:839.422620px;}
.y9e{bottom:844.054620px;}
.yf4{bottom:844.491120px;}
.y7{bottom:847.093620px;}
.y11c{bottom:850.453620px;}
.y179{bottom:850.539120px;}
.y40{bottom:853.677120px;}
.y1a8{bottom:855.171120px;}
.y1f4{bottom:855.172620px;}
.y72{bottom:855.229620px;}
.y9d{bottom:860.493120px;}
.y11b{bottom:868.386120px;}
.yf1{bottom:868.932120px;}
.y3f{bottom:871.609620px;}
.y71{bottom:873.162120px;}
.y9c{bottom:876.931620px;}
.y6{bottom:882.960120px;}
.y178{bottom:883.939620px;}
.yf0{bottom:886.864620px;}
.y1ca{bottom:888.048120px;}
.y3e{bottom:889.542120px;}
.y70{bottom:891.096120px;}
.y9b{bottom:893.370120px;}
.y1c9{bottom:904.486620px;}
.yef{bottom:904.797120px;}
.ydc{bottom:907.474620px;}
.y3d{bottom:907.476120px;}
.y6f{bottom:909.028620px;}
.y9a{bottom:909.808620px;}
.y5{bottom:915.835620px;}
.y1c8{bottom:920.925120px;}
.yee{bottom:922.729620px;}
.y3c{bottom:925.408620px;}
.y99{bottom:926.247120px;}
.y6e{bottom:926.961120px;}
.y1c7{bottom:937.363620px;}
.yed{bottom:940.663620px;}
.y11a{bottom:942.685620px;}
.y3b{bottom:943.341120px;}
.y6d{bottom:944.893620px;}
.y98{bottom:951.786120px;}
.y1c6{bottom:953.802120px;}
.yec{bottom:958.596120px;}
.y119{bottom:959.122620px;}
.y3a{bottom:961.273620px;}
.y6c{bottom:962.826120px;}
.y1c5{bottom:970.240620px;}
.y118{bottom:975.561120px;}
.yeb{bottom:976.528620px;}
.y39{bottom:979.206120px;}
.y6b{bottom:980.758620px;}
.y1c4{bottom:986.679120px;}
.y97{bottom:986.988120px;}
.yc6{bottom:997.138620px;}
.y38{bottom:997.140120px;}
.y6a{bottom:998.692620px;}
.y117{bottom:1001.101620px;}
.y1c3{bottom:1003.117620px;}
.y96{bottom:1003.426620px;}
.yea{bottom:1009.927620px;}
.ydb{bottom:1015.071120px;}
.y37{bottom:1015.072620px;}
.y69{bottom:1016.625120px;}
.y1c2{bottom:1019.554620px;}
.y1f3{bottom:1019.556120px;}
.y95{bottom:1019.865120px;}
.y36{bottom:1033.005120px;}
.y68{bottom:1034.557620px;}
.y1c1{bottom:1035.993120px;}
.y94{bottom:1036.303620px;}
.y35{bottom:1050.937620px;}
.y1c0{bottom:1052.431620px;}
.y93{bottom:1052.742120px;}
.y4{bottom:1054.264620px;}
.y34{bottom:1068.870120px;}
.y92{bottom:1069.180620px;}
.y3{bottom:1072.197120px;}
.y2{bottom:1090.129620px;}
.y1{bottom:1108.063620px;}
.h5{height:31.255565px;}
.hb{height:37.013299px;}
.hf{height:37.336090px;}
.ha{height:37.871028px;}
.h19{height:40.169203px;}
.h7{height:41.125613px;}
.h14{height:41.484266px;}
.h6{height:42.079167px;}
.h2{height:42.135954px;}
.hc{height:47.581678px;}
.h1f{height:49.876973px;}
.h8{height:52.042973px;}
.h9{height:52.048973px;}
.h15{height:52.951565px;}
.h4{height:52.957565px;}
.h1a{height:53.251565px;}
.hd{height:55.036973px;}
.h10{height:55.405565px;}
.h1c{height:55.939565px;}
.h17{height:55.945565px;}
.he{height:57.871613px;}
.h1b{height:60.565613px;}
.h12{height:68.371762px;}
.h16{height:68.743678px;}
.h3{height:72.712552px;}
.h1d{height:73.147565px;}
.h13{height:79.203533px;}
.h18{height:82.459565px;}
.h1e{height:85.489678px;}
.h11{height:110.895533px;}
.h1{height:1177.500000px;}
.h0{height:1177.795260px;}
.w0{width:892.913385px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:69.732120px;}
.xd{left:82.060620px;}
.x4{left:84.676620px;}
.x5{left:103.125120px;}
.xe{left:118.477620px;}
.x10{left:160.036620px;}
.x7{left:203.730120px;}
.xf{left:209.731620px;}
.xc{left:225.405120px;}
.xb{left:238.932120px;}
.x8{left:253.887120px;}
.x9{left:274.029120px;}
.xa{left:299.824620px;}
.x2{left:460.912620px;}
.x6{left:472.584120px;}
.x3{left:475.857120px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v5{vertical-align:-15.301333pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.917333pt;}
.v7{vertical-align:14.885333pt;}
.v10{vertical-align:17.280000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:21.946667pt;}
.va{vertical-align:27.968000pt;}
.v9{vertical-align:33.786667pt;}
.v4{vertical-align:39.850667pt;}
.vf{vertical-align:45.514667pt;}
.ve{vertical-align:48.469333pt;}
.vd{vertical-align:58.917333pt;}
.vb{vertical-align:60.325333pt;}
.v11{vertical-align:73.546667pt;}
.vc{vertical-align:76.640000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.000015pt;}
.ls1b{letter-spacing:0.000443pt;}
.ls47{letter-spacing:0.000518pt;}
.ls53{letter-spacing:0.000811pt;}
.ls2{letter-spacing:0.000917pt;}
.ls5f{letter-spacing:0.001109pt;}
.ls20{letter-spacing:0.001117pt;}
.ls60{letter-spacing:0.001280pt;}
.ls3{letter-spacing:0.001520pt;}
.ls1d{letter-spacing:0.001895pt;}
.ls50{letter-spacing:0.002043pt;}
.ls32{letter-spacing:0.002274pt;}
.lse{letter-spacing:0.002422pt;}
.ls39{letter-spacing:0.002517pt;}
.ls9{letter-spacing:0.003714pt;}
.ls13{letter-spacing:0.003733pt;}
.ls41{letter-spacing:0.004541pt;}
.ls55{letter-spacing:0.004560pt;}
.ls38{letter-spacing:0.321067pt;}
.ls72{letter-spacing:0.494400pt;}
.ls73{letter-spacing:0.496917pt;}
.ls34{letter-spacing:1.064563pt;}
.ls0{letter-spacing:2.651733pt;}
.ls48{letter-spacing:2.654172pt;}
.ls1{letter-spacing:2.657067pt;}
.ls75{letter-spacing:2.883733pt;}
.ls76{letter-spacing:2.886251pt;}
.ls59{letter-spacing:2.924500pt;}
.lsa{letter-spacing:3.715311pt;}
.lsf{letter-spacing:3.720644pt;}
.ls69{letter-spacing:4.411584pt;}
.ls68{letter-spacing:4.414400pt;}
.ls1c{letter-spacing:5.077052pt;}
.ls15{letter-spacing:5.082385pt;}
.ls31{letter-spacing:5.246750pt;}
.ls18{letter-spacing:5.897859pt;}
.ls45{letter-spacing:5.904518pt;}
.ls49{letter-spacing:5.906043pt;}
.ls35{letter-spacing:6.374144pt;}
.ls36{letter-spacing:6.374400pt;}
.ls37{letter-spacing:6.375883pt;}
.ls66{letter-spacing:6.638400pt;}
.ls6e{letter-spacing:6.822251pt;}
.ls6d{letter-spacing:6.830400pt;}
.ls64{letter-spacing:7.136917pt;}
.ls63{letter-spacing:7.139733pt;}
.ls70{letter-spacing:7.280917pt;}
.ls6f{letter-spacing:7.283733pt;}
.lsd{letter-spacing:7.965863pt;}
.ls5e{letter-spacing:7.969109pt;}
.ls8{letter-spacing:7.971197pt;}
.ls61{letter-spacing:7.972267pt;}
.ls65{letter-spacing:8.851733pt;}
.ls5{letter-spacing:8.854251pt;}
.ls2e{letter-spacing:8.855376pt;}
.ls4a{letter-spacing:8.856259pt;}
.ls4{letter-spacing:8.857067pt;}
.ls24{letter-spacing:8.859584pt;}
.ls71{letter-spacing:8.862400pt;}
.ls46{letter-spacing:9.390998pt;}
.ls4f{letter-spacing:10.327125pt;}
.ls4d{letter-spacing:10.411185pt;}
.ls33{letter-spacing:10.416213pt;}
.ls19{letter-spacing:10.609867pt;}
.ls5d{letter-spacing:10.625067pt;}
.ls5c{letter-spacing:10.630400pt;}
.ls4c{letter-spacing:11.301852pt;}
.ls74{letter-spacing:11.510400pt;}
.ls44{letter-spacing:11.512838pt;}
.ls5b{letter-spacing:11.515733pt;}
.ls16{letter-spacing:11.623200pt;}
.ls1a{letter-spacing:11.803584pt;}
.ls4e{letter-spacing:11.808518pt;}
.lsc{letter-spacing:11.808917pt;}
.lsb{letter-spacing:11.810422pt;}
.ls4b{letter-spacing:11.833665pt;}
.ls6c{letter-spacing:11.953826pt;}
.ls3b{letter-spacing:12.040834pt;}
.ls2c{letter-spacing:12.045436pt;}
.ls23{letter-spacing:12.574400pt;}
.ls54{letter-spacing:13.146682pt;}
.ls42{letter-spacing:13.169118pt;}
.ls40{letter-spacing:13.174451pt;}
.ls14{letter-spacing:13.397538pt;}
.ls11{letter-spacing:13.500533pt;}
.ls22{letter-spacing:13.935718pt;}
.ls7{letter-spacing:14.043733pt;}
.ls43{letter-spacing:14.465118pt;}
.ls6b{letter-spacing:14.775159pt;}
.ls6a{letter-spacing:14.780493pt;}
.ls30{letter-spacing:14.782400pt;}
.ls17{letter-spacing:14.994769pt;}
.ls12{letter-spacing:15.089067pt;}
.ls1e{letter-spacing:15.931733pt;}
.ls2b{letter-spacing:16.321067pt;}
.ls21{letter-spacing:16.890385pt;}
.ls27{letter-spacing:17.313067pt;}
.ls3d{letter-spacing:17.977893pt;}
.ls29{letter-spacing:18.059733pt;}
.ls3f{letter-spacing:18.339505pt;}
.ls3e{letter-spacing:18.344838pt;}
.ls1f{letter-spacing:18.367718pt;}
.ls28{letter-spacing:18.753067pt;}
.ls2d{letter-spacing:19.064102pt;}
.ls62{letter-spacing:19.083733pt;}
.ls51{letter-spacing:19.185792pt;}
.ls58{letter-spacing:19.957052pt;}
.ls25{letter-spacing:20.310450pt;}
.ls3c{letter-spacing:21.290515pt;}
.ls67{letter-spacing:21.561632pt;}
.ls2a{letter-spacing:21.851733pt;}
.ls26{letter-spacing:24.030400pt;}
.ls2f{letter-spacing:25.042769pt;}
.ls5a{letter-spacing:26.319718pt;}
.ls57{letter-spacing:27.314769pt;}
.ls56{letter-spacing:29.199718pt;}
.ls3a{letter-spacing:31.434462pt;}
.ls10{letter-spacing:515.270853pt;}
.ws51{word-spacing:-58.394119pt;}
.wsc2{word-spacing:-43.304101pt;}
.ws4f{word-spacing:-37.406242pt;}
.ws104{word-spacing:-37.193707pt;}
.ws107{word-spacing:-36.821770pt;}
.ws52{word-spacing:-29.431963pt;}
.wsfe{word-spacing:-27.984634pt;}
.wsa6{word-spacing:-25.589521pt;}
.ws168{word-spacing:-14.032699pt;}
.ws11{word-spacing:-13.283467pt;}
.ws117{word-spacing:-11.955200pt;}
.wsfd{word-spacing:-10.095467pt;}
.wseb{word-spacing:-4.433189pt;}
.ws11b{word-spacing:-4.430426pt;}
.wsae{word-spacing:-4.426133pt;}
.ws13d{word-spacing:-4.422407pt;}
.ws118{word-spacing:-3.970679pt;}
.ws79{word-spacing:-3.188032pt;}
.ws27{word-spacing:-3.134898pt;}
.wsb8{word-spacing:-3.081764pt;}
.ws132{word-spacing:-3.028630pt;}
.ws11d{word-spacing:-2.975497pt;}
.ws8e{word-spacing:-2.922363pt;}
.ws10a{word-spacing:-2.869229pt;}
.ws8c{word-spacing:-2.816095pt;}
.ws165{word-spacing:-2.773606pt;}
.ws106{word-spacing:-2.771437pt;}
.ws70{word-spacing:-2.762961pt;}
.ws180{word-spacing:-2.725786pt;}
.ws2e{word-spacing:-2.709827pt;}
.ws144{word-spacing:-2.683733pt;}
.ws42{word-spacing:-2.656693pt;}
.wsa9{word-spacing:-2.603559pt;}
.ws43{word-spacing:-2.550426pt;}
.ws3b{word-spacing:-2.497292pt;}
.wsc7{word-spacing:-2.444158pt;}
.wsc6{word-spacing:-2.391024pt;}
.ws1c0{word-spacing:-2.343219pt;}
.ws4b{word-spacing:-2.337890pt;}
.ws1d{word-spacing:-2.231622pt;}
.wsc0{word-spacing:-2.178489pt;}
.ws5b{word-spacing:-2.125355pt;}
.ws14e{word-spacing:-2.072221pt;}
.ws109{word-spacing:-2.019087pt;}
.ws145{word-spacing:-2.008474pt;}
.ws108{word-spacing:-1.980170pt;}
.ws72{word-spacing:-1.965953pt;}
.ws159{word-spacing:-1.960653pt;}
.ws162{word-spacing:-1.912832pt;}
.ws3a{word-spacing:-1.912819pt;}
.ws86{word-spacing:-1.865011pt;}
.ws8b{word-spacing:-1.859685pt;}
.wscc{word-spacing:-1.753418pt;}
.ws94{word-spacing:-1.700284pt;}
.wsc1{word-spacing:-1.647150pt;}
.wsb7{word-spacing:-1.594016pt;}
.wse2{word-spacing:-1.540882pt;}
.ws181{word-spacing:-1.530266pt;}
.ws113{word-spacing:-1.487748pt;}
.wsbb{word-spacing:-1.434614pt;}
.ws14c{word-spacing:-1.381481pt;}
.ws19{word-spacing:-1.328347pt;}
.ws57{word-spacing:-1.275213pt;}
.wsff{word-spacing:-1.266357pt;}
.ws121{word-spacing:-1.222079pt;}
.ws15{word-spacing:-1.168945pt;}
.ws3c{word-spacing:-1.115811pt;}
.ws6f{word-spacing:-1.062677pt;}
.ws98{word-spacing:-1.009543pt;}
.ws163{word-spacing:-0.956416pt;}
.ws102{word-spacing:-0.956410pt;}
.ws1c{word-spacing:-0.903276pt;}
.ws73{word-spacing:-0.850142pt;}
.ws13{word-spacing:-0.797008pt;}
.ws3{word-spacing:-0.755875pt;}
.ws8d{word-spacing:-0.743874pt;}
.ws194{word-spacing:-0.717312pt;}
.ws83{word-spacing:-0.706219pt;}
.ws6d{word-spacing:-0.690740pt;}
.wsee{word-spacing:-0.677483pt;}
.ws198{word-spacing:-0.669491pt;}
.wse6{word-spacing:-0.637606pt;}
.ws125{word-spacing:-0.615978pt;}
.ws21{word-spacing:-0.584473pt;}
.ws1b2{word-spacing:-0.573850pt;}
.ws11a{word-spacing:-0.531339pt;}
.wsbf{word-spacing:-0.478205pt;}
.ws46{word-spacing:-0.425071pt;}
.ws30{word-spacing:-0.371937pt;}
.ws13b{word-spacing:-0.318803pt;}
.ws97{word-spacing:-0.265669pt;}
.ws82{word-spacing:-0.212535pt;}
.ws10c{word-spacing:-0.159402pt;}
.ws10b{word-spacing:-0.140170pt;}
.ws166{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws128{word-spacing:-0.047821pt;}
.wsf0{word-spacing:-0.000435pt;}
.ws129{word-spacing:-0.000316pt;}
.ws13a{word-spacing:-0.000060pt;}
.ws1{word-spacing:0.000000pt;}
.ws139{word-spacing:0.000077pt;}
.ws1ad{word-spacing:0.047821pt;}
.wsfa{word-spacing:0.053134pt;}
.wsd5{word-spacing:0.106268pt;}
.ws7b{word-spacing:0.159402pt;}
.ws195{word-spacing:0.191283pt;}
.ws59{word-spacing:0.212535pt;}
.ws58{word-spacing:0.218156pt;}
.ws171{word-spacing:0.239104pt;}
.ws6{word-spacing:0.265669pt;}
.ws17e{word-spacing:0.286925pt;}
.ws6e{word-spacing:0.318803pt;}
.wse0{word-spacing:0.371937pt;}
.ws12f{word-spacing:0.425071pt;}
.ws12a{word-spacing:0.478205pt;}
.ws173{word-spacing:0.478208pt;}
.ws37{word-spacing:0.531339pt;}
.wsb9{word-spacing:0.584473pt;}
.ws100{word-spacing:0.637606pt;}
.ws16a{word-spacing:0.669491pt;}
.ws5f{word-spacing:0.690740pt;}
.ws5c{word-spacing:0.743874pt;}
.ws8f{word-spacing:0.797008pt;}
.ws119{word-spacing:0.850142pt;}
.ws1ac{word-spacing:0.860774pt;}
.ws49{word-spacing:0.903276pt;}
.ws13c{word-spacing:0.941356pt;}
.wsb6{word-spacing:0.956410pt;}
.ws1a5{word-spacing:0.956416pt;}
.wsfc{word-spacing:0.968125pt;}
.ws170{word-spacing:1.004237pt;}
.ws2d{word-spacing:1.009543pt;}
.ws1ae{word-spacing:1.052058pt;}
.ws8a{word-spacing:1.062677pt;}
.ws101{word-spacing:1.080834pt;}
.ws5d{word-spacing:1.115811pt;}
.ws185{word-spacing:1.147699pt;}
.wsf4{word-spacing:1.153152pt;}
.ws34{word-spacing:1.168945pt;}
.ws63{word-spacing:1.222079pt;}
.ws175{word-spacing:1.243341pt;}
.ws11e{word-spacing:1.275213pt;}
.ws11f{word-spacing:1.328347pt;}
.ws179{word-spacing:1.338982pt;}
.ws16{word-spacing:1.381481pt;}
.ws71{word-spacing:1.434614pt;}
.wsa2{word-spacing:1.487748pt;}
.ws167{word-spacing:1.530266pt;}
.ws7e{word-spacing:1.540882pt;}
.ws199{word-spacing:1.578086pt;}
.ws12{word-spacing:1.594016pt;}
.ws15a{word-spacing:1.625907pt;}
.ws133{word-spacing:1.647150pt;}
.wsd9{word-spacing:1.700284pt;}
.ws6c{word-spacing:1.753418pt;}
.ws1bb{word-spacing:1.769370pt;}
.ws64{word-spacing:1.806551pt;}
.wsf6{word-spacing:1.817190pt;}
.wsd2{word-spacing:1.859685pt;}
.ws3d{word-spacing:1.912819pt;}
.wse8{word-spacing:1.965953pt;}
.ws6a{word-spacing:2.019087pt;}
.ws38{word-spacing:2.072221pt;}
.wsc4{word-spacing:2.125355pt;}
.ws134{word-spacing:2.161611pt;}
.wsa8{word-spacing:2.178489pt;}
.ws18e{word-spacing:2.199757pt;}
.ws1f{word-spacing:2.231622pt;}
.ws3e{word-spacing:2.284756pt;}
.ws17f{word-spacing:2.295398pt;}
.ws1e{word-spacing:2.337890pt;}
.wse{word-spacing:2.391024pt;}
.ws105{word-spacing:2.401897pt;}
.wsed{word-spacing:2.444158pt;}
.ws1c3{word-spacing:2.486682pt;}
.ws123{word-spacing:2.497292pt;}
.ws80{word-spacing:2.550426pt;}
.ws18{word-spacing:2.603559pt;}
.ws172{word-spacing:2.630144pt;}
.wsd6{word-spacing:2.656693pt;}
.wsbe{word-spacing:2.709827pt;}
.ws29{word-spacing:2.762961pt;}
.ws3f{word-spacing:2.816095pt;}
.ws137{word-spacing:2.821274pt;}
.ws135{word-spacing:2.821427pt;}
.wsf8{word-spacing:2.869229pt;}
.ws1bc{word-spacing:2.869248pt;}
.ws1c2{word-spacing:2.917069pt;}
.ws8{word-spacing:2.922363pt;}
.ws33{word-spacing:2.975497pt;}
.ws183{word-spacing:3.012710pt;}
.ws2c{word-spacing:3.028630pt;}
.wsd0{word-spacing:3.081764pt;}
.ws9b{word-spacing:3.134898pt;}
.wse1{word-spacing:3.188032pt;}
.ws28{word-spacing:3.241166pt;}
.ws161{word-spacing:3.251814pt;}
.wsd4{word-spacing:3.347434pt;}
.ws1a8{word-spacing:3.347456pt;}
.wsc3{word-spacing:3.400567pt;}
.ws15d{word-spacing:3.443098pt;}
.ws4c{word-spacing:3.453701pt;}
.ws24{word-spacing:3.506835pt;}
.ws14{word-spacing:3.559969pt;}
.ws124{word-spacing:3.613103pt;}
.ws130{word-spacing:3.622125pt;}
.ws4e{word-spacing:3.666237pt;}
.ws164{word-spacing:3.682202pt;}
.ws66{word-spacing:3.719371pt;}
.ws182{word-spacing:3.730022pt;}
.ws12e{word-spacing:3.772505pt;}
.ws16f{word-spacing:3.777843pt;}
.wsa4{word-spacing:3.825638pt;}
.ws16b{word-spacing:3.825664pt;}
.ws169{word-spacing:3.873485pt;}
.ws112{word-spacing:3.878772pt;}
.ws151{word-spacing:3.931906pt;}
.wsd{word-spacing:3.985040pt;}
.wsc{word-spacing:4.038174pt;}
.ws1b6{word-spacing:4.064768pt;}
.ws7a{word-spacing:4.091308pt;}
.ws9{word-spacing:4.144442pt;}
.ws56{word-spacing:4.197575pt;}
.ws65{word-spacing:4.250709pt;}
.ws187{word-spacing:4.256051pt;}
.ws10{word-spacing:4.303843pt;}
.ws1b7{word-spacing:4.351693pt;}
.ws50{word-spacing:4.356977pt;}
.ws31{word-spacing:4.410111pt;}
.ws78{word-spacing:4.463245pt;}
.wsb5{word-spacing:4.516379pt;}
.ws184{word-spacing:4.542976pt;}
.ws17{word-spacing:4.569513pt;}
.ws12d{word-spacing:4.622646pt;}
.ws25{word-spacing:4.675780pt;}
.ws1bd{word-spacing:4.686438pt;}
.ws127{word-spacing:4.728914pt;}
.ws2b{word-spacing:4.782048pt;}
.ws1ab{word-spacing:4.782080pt;}
.ws85{word-spacing:4.829901pt;}
.wsa7{word-spacing:4.835182pt;}
.ws12b{word-spacing:4.888316pt;}
.ws154{word-spacing:4.918069pt;}
.ws11c{word-spacing:4.941450pt;}
.wsd8{word-spacing:4.994583pt;}
.ws4a{word-spacing:5.047717pt;}
.wsa3{word-spacing:5.100851pt;}
.ws19a{word-spacing:5.116826pt;}
.ws74{word-spacing:5.153985pt;}
.ws103{word-spacing:5.207119pt;}
.ws4d{word-spacing:5.260253pt;}
.ws14d{word-spacing:5.281578pt;}
.ws1b9{word-spacing:5.308109pt;}
.ws32{word-spacing:5.313387pt;}
.ws114{word-spacing:5.315104pt;}
.ws1a3{word-spacing:5.355930pt;}
.ws55{word-spacing:5.366521pt;}
.ws76{word-spacing:5.419654pt;}
.ws16d{word-spacing:5.451571pt;}
.wsd1{word-spacing:5.472788pt;}
.ws197{word-spacing:5.499392pt;}
.wsda{word-spacing:5.525922pt;}
.ws2f{word-spacing:5.579056pt;}
.wsb4{word-spacing:5.632190pt;}
.wse4{word-spacing:5.685324pt;}
.ws126{word-spacing:5.718467pt;}
.ws9c{word-spacing:5.738458pt;}
.ws1a4{word-spacing:5.738496pt;}
.ws23{word-spacing:5.791591pt;}
.ws6b{word-spacing:5.844725pt;}
.ws146{word-spacing:5.881958pt;}
.ws9f{word-spacing:5.897859pt;}
.ws192{word-spacing:5.929779pt;}
.ws26{word-spacing:5.950993pt;}
.ws115{word-spacing:5.977600pt;}
.wscb{word-spacing:6.004127pt;}
.ws7d{word-spacing:6.057261pt;}
.ws111{word-spacing:6.110395pt;}
.ws16e{word-spacing:6.121062pt;}
.ws150{word-spacing:6.163529pt;}
.wsf9{word-spacing:6.216662pt;}
.ws1ba{word-spacing:6.216704pt;}
.ws7f{word-spacing:6.269796pt;}
.ws54{word-spacing:6.322930pt;}
.ws53{word-spacing:6.352097pt;}
.wsfb{word-spacing:6.376064pt;}
.wsb{word-spacing:6.429198pt;}
.wsba{word-spacing:6.482332pt;}
.wse7{word-spacing:6.535466pt;}
.wsf{word-spacing:6.588599pt;}
.ws14f{word-spacing:6.641733pt;}
.ws9e{word-spacing:6.694867pt;}
.ws1c1{word-spacing:6.694912pt;}
.wsdb{word-spacing:6.748001pt;}
.ws193{word-spacing:6.790554pt;}
.ws20{word-spacing:6.801135pt;}
.wse3{word-spacing:6.854269pt;}
.ws84{word-spacing:6.886195pt;}
.ws40{word-spacing:6.907403pt;}
.ws69{word-spacing:6.960537pt;}
.ws158{word-spacing:6.981837pt;}
.ws2a{word-spacing:7.013670pt;}
.wsca{word-spacing:7.027830pt;}
.ws5e{word-spacing:7.066804pt;}
.ws1b3{word-spacing:7.077478pt;}
.wsce{word-spacing:7.119938pt;}
.ws36{word-spacing:7.173072pt;}
.ws14b{word-spacing:7.226206pt;}
.ws186{word-spacing:7.268762pt;}
.ws140{word-spacing:7.279340pt;}
.wsbc{word-spacing:7.332474pt;}
.wsec{word-spacing:7.438741pt;}
.ws196{word-spacing:7.460045pt;}
.ws47{word-spacing:7.491875pt;}
.ws39{word-spacing:7.545009pt;}
.ws10d{word-spacing:7.598143pt;}
.wsc5{word-spacing:7.651277pt;}
.ws44{word-spacing:7.704411pt;}
.ws75{word-spacing:7.757545pt;}
.wsad{word-spacing:7.810678pt;}
.ws141{word-spacing:7.863812pt;}
.ws4{word-spacing:7.886539pt;}
.wsd3{word-spacing:7.916946pt;}
.ws191{word-spacing:7.938253pt;}
.ws10f{word-spacing:7.955830pt;}
.wsa{word-spacing:7.970080pt;}
.ws13f{word-spacing:8.023214pt;}
.ws87{word-spacing:8.033894pt;}
.wsaa{word-spacing:8.039125pt;}
.ws122{word-spacing:8.076348pt;}
.ws1c4{word-spacing:8.129536pt;}
.ws5a{word-spacing:8.182615pt;}
.wsaf{word-spacing:8.235749pt;}
.ws1b1{word-spacing:8.272998pt;}
.ws13e{word-spacing:8.342017pt;}
.wsb0{word-spacing:8.395151pt;}
.wsdc{word-spacing:8.501419pt;}
.ws48{word-spacing:8.554553pt;}
.wse5{word-spacing:8.570704pt;}
.ws5{word-spacing:8.660820pt;}
.wsab{word-spacing:8.703386pt;}
.ws149{word-spacing:8.713954pt;}
.ws152{word-spacing:8.767088pt;}
.ws142{word-spacing:8.820222pt;}
.ws60{word-spacing:8.873356pt;}
.ws61{word-spacing:8.926490pt;}
.ws160{word-spacing:8.942490pt;}
.ws120{word-spacing:8.979623pt;}
.ws147{word-spacing:9.085952pt;}
.ws1a7{word-spacing:9.133773pt;}
.wsac{word-spacing:9.181594pt;}
.ws14a{word-spacing:9.192159pt;}
.ws17b{word-spacing:9.229414pt;}
.wsdf{word-spacing:9.245293pt;}
.ws174{word-spacing:9.277235pt;}
.ws18b{word-spacing:9.325056pt;}
.ws1b0{word-spacing:9.468518pt;}
.ws155{word-spacing:9.510962pt;}
.wsdd{word-spacing:9.564096pt;}
.ws35{word-spacing:9.670364pt;}
.ws1b4{word-spacing:9.707622pt;}
.ws17a{word-spacing:9.803264pt;}
.ws189{word-spacing:9.851085pt;}
.wsbd{word-spacing:10.042301pt;}
.ws148{word-spacing:10.090189pt;}
.wsb3{word-spacing:10.148569pt;}
.wsa1{word-spacing:10.307970pt;}
.ws190{word-spacing:10.377114pt;}
.wscd{word-spacing:10.573639pt;}
.ws1af{word-spacing:10.616218pt;}
.ws1bf{word-spacing:10.664038pt;}
.wsb2{word-spacing:10.679907pt;}
.ws1b8{word-spacing:10.759680pt;}
.ws22{word-spacing:10.786175pt;}
.ws41{word-spacing:10.839309pt;}
.ws10e{word-spacing:10.843586pt;}
.ws116{word-spacing:10.855322pt;}
.ws178{word-spacing:10.998784pt;}
.ws45{word-spacing:11.051844pt;}
.ws110{word-spacing:11.158112pt;}
.ws62{word-spacing:11.264380pt;}
.wsa5{word-spacing:11.317514pt;}
.ws143{word-spacing:11.423781pt;}
.ws131{word-spacing:11.530049pt;}
.wsde{word-spacing:11.583183pt;}
.wsea{word-spacing:11.742585pt;}
.ws81{word-spacing:11.848852pt;}
.wsf2{word-spacing:11.903625pt;}
.wsf7{word-spacing:11.904495pt;}
.wsef{word-spacing:11.905758pt;}
.wsf3{word-spacing:11.907379pt;}
.wsf1{word-spacing:11.909828pt;}
.ws95{word-spacing:12.061388pt;}
.ws16c{word-spacing:12.146483pt;}
.wsc8{word-spacing:12.167655pt;}
.wsa0{word-spacing:12.273923pt;}
.ws18d{word-spacing:12.289946pt;}
.ws177{word-spacing:12.529050pt;}
.wsb1{word-spacing:12.539593pt;}
.ws188{word-spacing:12.576870pt;}
.ws18a{word-spacing:12.624691pt;}
.ws9a{word-spacing:12.645860pt;}
.ws17d{word-spacing:12.720333pt;}
.ws12c{word-spacing:12.805262pt;}
.ws18c{word-spacing:13.055078pt;}
.ws9d{word-spacing:13.070931pt;}
.wscf{word-spacing:13.124065pt;}
.ws1c6{word-spacing:13.150720pt;}
.ws2{word-spacing:13.230333pt;}
.ws1b5{word-spacing:13.485466pt;}
.ws67{word-spacing:13.655404pt;}
.wsf5{word-spacing:13.729126pt;}
.ws15c{word-spacing:13.820211pt;}
.ws15b{word-spacing:13.932736pt;}
.ws15e{word-spacing:13.932821pt;}
.ws157{word-spacing:13.938549pt;}
.ws0{word-spacing:13.982221pt;}
.ws19e{word-spacing:14.107136pt;}
.ws1be{word-spacing:14.154957pt;}
.wsd7{word-spacing:14.186742pt;}
.ws90{word-spacing:14.505546pt;}
.ws138{word-spacing:14.725828pt;}
.ws136{word-spacing:14.731793pt;}
.ws176{word-spacing:14.920090pt;}
.ws92{word-spacing:15.196286pt;}
.ws68{word-spacing:16.471499pt;}
.ws7{word-spacing:17.002837pt;}
.ws77{word-spacing:17.162239pt;}
.ws1a9{word-spacing:17.502413pt;}
.ws1c5{word-spacing:17.932800pt;}
.ws18f{word-spacing:18.124083pt;}
.ws1c7{word-spacing:18.171904pt;}
.ws153{word-spacing:18.384318pt;}
.ws1a6{word-spacing:18.793574pt;}
.ws99{word-spacing:18.915657pt;}
.ws7c{word-spacing:19.262599pt;}
.ws1a0{word-spacing:19.415245pt;}
.wse9{word-spacing:19.500129pt;}
.ws1a2{word-spacing:19.606528pt;}
.ws15f{word-spacing:20.228198pt;}
.ws156{word-spacing:20.515123pt;}
.ws19b{word-spacing:21.710643pt;}
.ws1aa{word-spacing:21.949747pt;}
.ws96{word-spacing:22.263090pt;}
.ws91{word-spacing:22.900697pt;}
.ws19c{word-spacing:24.149504pt;}
.ws17c{word-spacing:24.771174pt;}
.ws19f{word-spacing:27.018752pt;}
.ws93{word-spacing:27.151406pt;}
.ws1a1{word-spacing:28.166451pt;}
.ws19d{word-spacing:28.596838pt;}
.ws1b{word-spacing:36.444635pt;}
.ws89{word-spacing:92.963635pt;}
.ws88{word-spacing:139.397632pt;}
.wsc9{word-spacing:794.906231pt;}
._4{margin-left:-5.897859pt;}
._5{margin-left:-4.782042pt;}
._3{margin-left:-3.453701pt;}
._0{margin-left:-2.019093pt;}
._2{margin-left:-1.009547pt;}
._1{width:1.514320pt;}
._29{width:2.677965pt;}
._6{width:8.926490pt;}
._9{width:11.848859pt;}
._c{width:13.017810pt;}
._1d{width:14.056453pt;}
._a{width:15.302560pt;}
._d{width:16.471505pt;}
._e{width:18.649990pt;}
._1f{width:20.137742pt;}
._1e{width:21.806080pt;}
._8{width:23.432035pt;}
._26{width:25.716798pt;}
._27{width:26.811035pt;}
._20{width:31.880314pt;}
._28{width:38.065357pt;}
._b{width:50.477333pt;}
._10{width:63.745126pt;}
._14{width:151.352832pt;}
._23{width:172.884907pt;}
._25{width:176.041118pt;}
._21{width:182.914560pt;}
._22{width:203.830284pt;}
._24{width:205.870677pt;}
._1c{width:323.698995pt;}
._18{width:360.855757pt;}
._15{width:362.242560pt;}
._11{width:403.416269pt;}
._12{width:410.828454pt;}
._19{width:416.003759pt;}
._17{width:429.908992pt;}
._13{width:434.606050pt;}
._1a{width:471.943437pt;}
._1b{width:491.023974pt;}
._16{width:528.180736pt;}
._f{width:1042.054069pt;}
._7{width:1249.919728pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:45.429333pt;}
.fs5{font-size:47.820800pt;}
.fs0{font-size:50.477333pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:87.224533pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:49.484107pt;}
.y29{bottom:89.334773pt;}
.y177{bottom:90.212107pt;}
.ye9{bottom:92.582773pt;}
.y158{bottom:100.533440pt;}
.y1f1{bottom:102.618773pt;}
.y32{bottom:103.189440pt;}
.y1bf{bottom:103.946773pt;}
.y28{bottom:105.274773pt;}
.y176{bottom:106.152107pt;}
.ye8{bottom:108.522773pt;}
.yc5{bottom:110.368107pt;}
.y67{bottom:110.588107pt;}
.y15b{bottom:116.473440pt;}
.y157{bottom:116.474773pt;}
.y1f0{bottom:117.230773pt;}
.y1a1{bottom:118.425440pt;}
.y1be{bottom:118.558773pt;}
.y31{bottom:119.129440pt;}
.y27{bottom:121.214773pt;}
.y175{bottom:122.093440pt;}
.ye7{bottom:124.462773pt;}
.yc4{bottom:126.309440pt;}
.y66{bottom:126.528107pt;}
.y1ef{bottom:131.842773pt;}
.y156{bottom:132.414773pt;}
.y1a0{bottom:134.365440pt;}
.y30{bottom:135.069440pt;}
.y91{bottom:137.154773pt;}
.y26{bottom:137.156107pt;}
.y174{bottom:138.033440pt;}
.ye6{bottom:140.404107pt;}
.yc3{bottom:142.249440pt;}
.y65{bottom:142.468107pt;}
.y1ee{bottom:146.454773pt;}
.y155{bottom:148.354773pt;}
.y1bd{bottom:148.897440pt;}
.y19f{bottom:150.305440pt;}
.y2f{bottom:151.009440pt;}
.y90{bottom:153.094773pt;}
.yd7{bottom:153.096107pt;}
.y173{bottom:153.973440pt;}
.ye5{bottom:156.344107pt;}
.yc2{bottom:158.189440pt;}
.y64{bottom:158.409440pt;}
.y1ed{bottom:161.065440pt;}
.y140{bottom:162.165440pt;}
.y154{bottom:164.294773pt;}
.y19e{bottom:166.246773pt;}
.y2e{bottom:166.949440pt;}
.y8f{bottom:169.034773pt;}
.yca{bottom:169.036107pt;}
.y25{bottom:169.242773pt;}
.y172{bottom:169.913440pt;}
.ye4{bottom:172.284107pt;}
.yc1{bottom:174.129440pt;}
.y63{bottom:174.349440pt;}
.y1ec{bottom:175.677440pt;}
.y114{bottom:179.253440pt;}
.y115{bottom:179.354773pt;}
.y153{bottom:180.234773pt;}
.y19d{bottom:182.186773pt;}
.y2d{bottom:182.890773pt;}
.y113{bottom:183.077440pt;}
.y8e{bottom:184.976107pt;}
.y171{bottom:185.853440pt;}
.ye3{bottom:188.224107pt;}
.yc0{bottom:190.069440pt;}
.y62{bottom:190.289440pt;}
.y152{bottom:196.174773pt;}
.y13f{bottom:198.050773pt;}
.y19c{bottom:198.126773pt;}
.y2c{bottom:198.830773pt;}
.y8d{bottom:200.916107pt;}
.y170{bottom:201.793440pt;}
.y1eb{bottom:204.901440pt;}
.ybf{bottom:206.010773pt;}
.y61{bottom:206.229440pt;}
.y15a{bottom:212.114773pt;}
.y151{bottom:212.116107pt;}
.y112{bottom:213.072107pt;}
.y13e{bottom:213.990773pt;}
.y19b{bottom:214.066773pt;}
.y2b{bottom:214.770773pt;}
.y1bc{bottom:215.528107pt;}
.y8c{bottom:216.856107pt;}
.y16f{bottom:217.734773pt;}
.y1ea{bottom:219.513440pt;}
.ybe{bottom:221.950773pt;}
.y60{bottom:222.169440pt;}
.y150{bottom:228.056107pt;}
.y111{bottom:229.012107pt;}
.y13d{bottom:229.930773pt;}
.y19a{bottom:230.006773pt;}
.y1bb{bottom:230.140107pt;}
.y24{bottom:230.710773pt;}
.y8b{bottom:232.796107pt;}
.yd6{bottom:232.797440pt;}
.ye2{bottom:233.320107pt;}
.y16e{bottom:233.674773pt;}
.y1e9{bottom:234.125440pt;}
.ybd{bottom:237.890773pt;}
.y5f{bottom:238.109440pt;}
.y110{bottom:240.632107pt;}
.y14f{bottom:243.996107pt;}
.y10f{bottom:244.952107pt;}
.y13c{bottom:245.870773pt;}
.y199{bottom:245.948107pt;}
.y23{bottom:246.650773pt;}
.ye1{bottom:247.932107pt;}
.y8a{bottom:248.736107pt;}
.yd5{bottom:248.737440pt;}
.y16d{bottom:249.614773pt;}
.ybc{bottom:253.830773pt;}
.y5e{bottom:254.050773pt;}
.y14e{bottom:259.936107pt;}
.y10e{bottom:260.892107pt;}
.y13b{bottom:261.810773pt;}
.y198{bottom:261.888107pt;}
.y22{bottom:262.590773pt;}
.y1e8{bottom:263.349440pt;}
.y89{bottom:264.676107pt;}
.yc9{bottom:264.677440pt;}
.y16c{bottom:265.554773pt;}
.ybb{bottom:269.770773pt;}
.y5d{bottom:269.990773pt;}
.y14d{bottom:275.876107pt;}
.y1ba{bottom:276.632107pt;}
.y10d{bottom:276.832107pt;}
.y13a{bottom:277.750773pt;}
.y197{bottom:277.828107pt;}
.y1e7{bottom:277.961440pt;}
.y21{bottom:278.532107pt;}
.y88{bottom:280.617440pt;}
.y16b{bottom:281.494773pt;}
.yba{bottom:285.710773pt;}
.y5c{bottom:285.930773pt;}
.y1b9{bottom:291.244107pt;}
.y14c{bottom:291.816107pt;}
.y1e6{bottom:292.573440pt;}
.y10c{bottom:292.772107pt;}
.y139{bottom:293.692107pt;}
.y196{bottom:293.768107pt;}
.y20{bottom:294.472107pt;}
.y87{bottom:296.557440pt;}
.y16a{bottom:297.436107pt;}
.yb9{bottom:301.652107pt;}
.y5b{bottom:301.870773pt;}
.y1b8{bottom:305.856107pt;}
.y1e5{bottom:307.184107pt;}
.y1f7{bottom:307.185440pt;}
.y14b{bottom:307.757440pt;}
.y138{bottom:309.632107pt;}
.y195{bottom:309.708107pt;}
.y1f{bottom:310.412107pt;}
.y86{bottom:312.497440pt;}
.y169{bottom:313.376107pt;}
.yb8{bottom:317.592107pt;}
.y5a{bottom:317.810773pt;}
.y1e4{bottom:321.796107pt;}
.y10b{bottom:322.900107pt;}
.y14a{bottom:323.697440pt;}
.y137{bottom:325.572107pt;}
.y194{bottom:325.648107pt;}
.y1e{bottom:326.352107pt;}
.y85{bottom:328.437440pt;}
.yd4{bottom:328.438773pt;}
.y168{bottom:329.316107pt;}
.y59{bottom:333.750773pt;}
.y1e3{bottom:336.408107pt;}
.y164{bottom:338.132107pt;}
.y149{bottom:339.637440pt;}
.y136{bottom:341.512107pt;}
.y193{bottom:341.589440pt;}
.y1d{bottom:342.292107pt;}
.y84{bottom:344.377440pt;}
.yc8{bottom:344.378773pt;}
.y167{bottom:345.256107pt;}
.y58{bottom:349.692107pt;}
.y1e2{bottom:351.020107pt;}
.y1b7{bottom:352.348107pt;}
.y116{bottom:353.941440pt;}
.y148{bottom:355.577440pt;}
.y10a{bottom:356.340107pt;}
.y135{bottom:357.452107pt;}
.y192{bottom:357.529440pt;}
.y1c{bottom:358.232107pt;}
.y2a{bottom:358.233440pt;}
.ydf{bottom:360.317440pt;}
.y83{bottom:360.318773pt;}
.y166{bottom:361.196107pt;}
.y57{bottom:365.632107pt;}
.y1b6{bottom:366.960107pt;}
.yb7{bottom:368.793440pt;}
.y147{bottom:371.517440pt;}
.y109{bottom:372.281440pt;}
.y134{bottom:373.393440pt;}
.y191{bottom:373.469440pt;}
.y1b{bottom:374.173440pt;}
.y82{bottom:376.258773pt;}
.y165{bottom:377.136107pt;}
.y163{bottom:377.137440pt;}
.y1e1{bottom:380.244107pt;}
.yda{bottom:380.506773pt;}
.y56{bottom:381.572107pt;}
.yb6{bottom:383.405440pt;}
.yd9{bottom:384.228107pt;}
.y159{bottom:387.457440pt;}
.y146{bottom:387.458773pt;}
.y108{bottom:388.221440pt;}
.y133{bottom:389.333440pt;}
.y190{bottom:389.409440pt;}
.y1a{bottom:390.113440pt;}
.y81{bottom:392.198773pt;}
.y162{bottom:393.077440pt;}
.y1e0{bottom:394.856107pt;}
.y1b5{bottom:396.184107pt;}
.y55{bottom:397.512107pt;}
.yb5{bottom:398.017440pt;}
.y145{bottom:403.398773pt;}
.y132{bottom:405.273440pt;}
.y18f{bottom:405.349440pt;}
.y19{bottom:406.053440pt;}
.y80{bottom:408.138773pt;}
.y161{bottom:409.017440pt;}
.y1df{bottom:409.468107pt;}
.y1b4{bottom:410.796107pt;}
.yb4{bottom:412.629440pt;}
.y54{bottom:413.452107pt;}
.y107{bottom:415.173440pt;}
.y144{bottom:419.338773pt;}
.y131{bottom:421.213440pt;}
.y18e{bottom:421.289440pt;}
.y18{bottom:421.993440pt;}
.y7f{bottom:424.078773pt;}
.yd3{bottom:424.080107pt;}
.y160{bottom:424.957440pt;}
.y1b3{bottom:425.408107pt;}
.yb3{bottom:427.241440pt;}
.y53{bottom:429.393440pt;}
.y143{bottom:435.278773pt;}
.y130{bottom:437.153440pt;}
.y18d{bottom:437.230773pt;}
.y17{bottom:437.933440pt;}
.y1de{bottom:438.692107pt;}
.y7e{bottom:440.018773pt;}
.yc7{bottom:440.020107pt;}
.y15f{bottom:440.897440pt;}
.y106{bottom:441.452107pt;}
.yb2{bottom:441.853440pt;}
.y142{bottom:451.218773pt;}
.y12f{bottom:453.093440pt;}
.y18c{bottom:453.170773pt;}
.y1dd{bottom:453.302773pt;}
.y1f2{bottom:453.304107pt;}
.y16{bottom:453.874773pt;}
.y7d{bottom:455.960107pt;}
.yb1{bottom:456.464107pt;}
.y15e{bottom:456.837440pt;}
.y52{bottom:458.616107pt;}
.y141{bottom:467.158773pt;}
.y1dc{bottom:467.914773pt;}
.y1f6{bottom:467.916107pt;}
.y12e{bottom:469.034773pt;}
.y18b{bottom:469.110773pt;}
.y15{bottom:469.814773pt;}
.yb0{bottom:471.076107pt;}
.y7c{bottom:471.900107pt;}
.y105{bottom:472.609440pt;}
.y1db{bottom:482.526773pt;}
.y12d{bottom:484.974773pt;}
.y18a{bottom:485.050773pt;}
.yaf{bottom:485.688107pt;}
.y14{bottom:485.754773pt;}
.y1b2{bottom:486.512107pt;}
.y51{bottom:487.840107pt;}
.y104{bottom:488.549440pt;}
.y1da{bottom:497.138773pt;}
.yae{bottom:500.300107pt;}
.y12c{bottom:500.914773pt;}
.y189{bottom:500.990773pt;}
.y1b1{bottom:501.124107pt;}
.y13{bottom:501.694773pt;}
.y15d{bottom:501.933440pt;}
.y50{bottom:503.780107pt;}
.y103{bottom:504.489440pt;}
.y1d9{bottom:511.750773pt;}
.ye0{bottom:512.193440pt;}
.yd2{bottom:514.238773pt;}
.yad{bottom:514.912107pt;}
.y1b0{bottom:515.736107pt;}
.y15c{bottom:516.545440pt;}
.y12b{bottom:516.854773pt;}
.y188{bottom:516.930773pt;}
.y12{bottom:517.634773pt;}
.y7b{bottom:519.720107pt;}
.y4f{bottom:519.721440pt;}
.y102{bottom:520.429440pt;}
.y1d8{bottom:526.362773pt;}
.yac{bottom:529.524107pt;}
.y12a{bottom:532.794773pt;}
.y187{bottom:532.872107pt;}
.y11{bottom:533.574773pt;}
.y7a{bottom:535.660107pt;}
.y4e{bottom:535.661440pt;}
.y101{bottom:536.370773pt;}
.y1d7{bottom:540.974773pt;}
.yab{bottom:544.136107pt;}
.y129{bottom:548.734773pt;}
.y186{bottom:548.812107pt;}
.y10{bottom:549.516107pt;}
.y4d{bottom:551.601440pt;}
.y100{bottom:552.310773pt;}
.y1d6{bottom:555.586773pt;}
.yd1{bottom:557.065440pt;}
.yaa{bottom:558.748107pt;}
.y1af{bottom:562.228107pt;}
.y128{bottom:564.676107pt;}
.y185{bottom:564.752107pt;}
.yf{bottom:565.456107pt;}
.y4c{bottom:567.541440pt;}
.yff{bottom:568.250773pt;}
.y1d5{bottom:570.198773pt;}
.yd0{bottom:573.006773pt;}
.y1ae{bottom:576.840107pt;}
.y127{bottom:580.616107pt;}
.y184{bottom:580.692107pt;}
.ye{bottom:581.396107pt;}
.ya9{bottom:581.449440pt;}
.y4b{bottom:583.481440pt;}
.yfe{bottom:584.190773pt;}
.y1d4{bottom:584.810773pt;}
.ycf{bottom:588.946773pt;}
.ya8{bottom:596.061440pt;}
.y126{bottom:596.556107pt;}
.y183{bottom:596.632107pt;}
.yd{bottom:597.336107pt;}
.y4a{bottom:599.421440pt;}
.y1a7{bottom:599.422773pt;}
.yfd{bottom:600.130773pt;}
.yce{bottom:604.886773pt;}
.ya7{bottom:610.673440pt;}
.y125{bottom:612.496107pt;}
.y182{bottom:612.573440pt;}
.y1d3{bottom:614.033440pt;}
.y1f5{bottom:614.034773pt;}
.y79{bottom:615.361440pt;}
.y49{bottom:615.362773pt;}
.yfc{bottom:616.072107pt;}
.y1ad{bottom:623.332107pt;}
.ya6{bottom:625.285440pt;}
.y124{bottom:628.436107pt;}
.y181{bottom:628.513440pt;}
.y1d2{bottom:628.645440pt;}
.yde{bottom:631.301440pt;}
.y48{bottom:631.302773pt;}
.yfb{bottom:632.012107pt;}
.y1ac{bottom:637.944107pt;}
.ya5{bottom:639.897440pt;}
.y78{bottom:641.080107pt;}
.yc{bottom:642.718773pt;}
.y1d1{bottom:643.257440pt;}
.y123{bottom:644.377440pt;}
.y180{bottom:644.453440pt;}
.y47{bottom:647.242773pt;}
.yfa{bottom:647.952107pt;}
.y1a6{bottom:648.081440pt;}
.ycd{bottom:650.829440pt;}
.ya4{bottom:654.509440pt;}
.y1d0{bottom:657.869440pt;}
.yb{bottom:658.660107pt;}
.y122{bottom:660.317440pt;}
.y17f{bottom:660.393440pt;}
.y1a5{bottom:662.693440pt;}
.y46{bottom:663.182773pt;}
.yf9{bottom:663.892107pt;}
.ycc{bottom:665.440107pt;}
.ya3{bottom:669.121440pt;}
.y1cf{bottom:672.481440pt;}
.y121{bottom:676.257440pt;}
.y17e{bottom:676.333440pt;}
.y1a4{bottom:677.305440pt;}
.y45{bottom:679.122773pt;}
.yf8{bottom:679.832107pt;}
.ycb{bottom:680.052107pt;}
.y77{bottom:680.502773pt;}
.ya2{bottom:683.733440pt;}
.y1ab{bottom:684.436107pt;}
.y1ce{bottom:687.093440pt;}
.ya{bottom:687.882773pt;}
.y1a3{bottom:691.917440pt;}
.y120{bottom:692.197440pt;}
.y17d{bottom:692.273440pt;}
.y44{bottom:695.062773pt;}
.yf7{bottom:695.772107pt;}
.y76{bottom:696.444107pt;}
.y1aa{bottom:699.048107pt;}
.y1cd{bottom:701.705440pt;}
.ya1{bottom:706.434773pt;}
.y1a2{bottom:706.529440pt;}
.y11f{bottom:708.137440pt;}
.y17c{bottom:708.214773pt;}
.yd8{bottom:711.002773pt;}
.y43{bottom:711.004107pt;}
.yf6{bottom:711.713440pt;}
.y75{bottom:712.384107pt;}
.y1cc{bottom:716.317440pt;}
.y9{bottom:720.600107pt;}
.ya0{bottom:721.046773pt;}
.y11e{bottom:724.077440pt;}
.y17b{bottom:724.154773pt;}
.ydd{bottom:726.942773pt;}
.y42{bottom:726.944107pt;}
.yf5{bottom:727.653440pt;}
.y74{bottom:728.324107pt;}
.y1cb{bottom:730.929440pt;}
.y9f{bottom:735.658773pt;}
.y8{bottom:736.541440pt;}
.yf3{bottom:739.161440pt;}
.y11d{bottom:740.018773pt;}
.y17a{bottom:740.094773pt;}
.y41{bottom:742.884107pt;}
.y73{bottom:744.264107pt;}
.y1a9{bottom:745.541440pt;}
.yf2{bottom:746.153440pt;}
.y9e{bottom:750.270773pt;}
.yf4{bottom:750.658773pt;}
.y7{bottom:752.972107pt;}
.y11c{bottom:755.958773pt;}
.y179{bottom:756.034773pt;}
.y40{bottom:758.824107pt;}
.y1a8{bottom:760.152107pt;}
.y1f4{bottom:760.153440pt;}
.y72{bottom:760.204107pt;}
.y9d{bottom:764.882773pt;}
.y11b{bottom:771.898773pt;}
.yf1{bottom:772.384107pt;}
.y3f{bottom:774.764107pt;}
.y71{bottom:776.144107pt;}
.y9c{bottom:779.494773pt;}
.y6{bottom:784.853440pt;}
.y178{bottom:785.724107pt;}
.yf0{bottom:788.324107pt;}
.y1ca{bottom:789.376107pt;}
.y3e{bottom:790.704107pt;}
.y70{bottom:792.085440pt;}
.y9b{bottom:794.106773pt;}
.y1c9{bottom:803.988107pt;}
.yef{bottom:804.264107pt;}
.ydc{bottom:806.644107pt;}
.y3d{bottom:806.645440pt;}
.y6f{bottom:808.025440pt;}
.y9a{bottom:808.718773pt;}
.y5{bottom:814.076107pt;}
.y1c8{bottom:818.600107pt;}
.yee{bottom:820.204107pt;}
.y3c{bottom:822.585440pt;}
.y99{bottom:823.330773pt;}
.y6e{bottom:823.965440pt;}
.y1c7{bottom:833.212107pt;}
.yed{bottom:836.145440pt;}
.y11a{bottom:837.942773pt;}
.y3b{bottom:838.525440pt;}
.y6d{bottom:839.905440pt;}
.y98{bottom:846.032107pt;}
.y1c6{bottom:847.824107pt;}
.yec{bottom:852.085440pt;}
.y119{bottom:852.553440pt;}
.y3a{bottom:854.465440pt;}
.y6c{bottom:855.845440pt;}
.y1c5{bottom:862.436107pt;}
.y118{bottom:867.165440pt;}
.yeb{bottom:868.025440pt;}
.y39{bottom:870.405440pt;}
.y6b{bottom:871.785440pt;}
.y1c4{bottom:877.048107pt;}
.y97{bottom:877.322773pt;}
.yc6{bottom:886.345440pt;}
.y38{bottom:886.346773pt;}
.y6a{bottom:887.726773pt;}
.y117{bottom:889.868107pt;}
.y1c3{bottom:891.660107pt;}
.y96{bottom:891.934773pt;}
.yea{bottom:897.713440pt;}
.ydb{bottom:902.285440pt;}
.y37{bottom:902.286773pt;}
.y69{bottom:903.666773pt;}
.y1c2{bottom:906.270773pt;}
.y1f3{bottom:906.272107pt;}
.y95{bottom:906.546773pt;}
.y36{bottom:918.226773pt;}
.y68{bottom:919.606773pt;}
.y1c1{bottom:920.882773pt;}
.y94{bottom:921.158773pt;}
.y35{bottom:934.166773pt;}
.y1c0{bottom:935.494773pt;}
.y93{bottom:935.770773pt;}
.y4{bottom:937.124107pt;}
.y34{bottom:950.106773pt;}
.y92{bottom:950.382773pt;}
.y3{bottom:953.064107pt;}
.y2{bottom:969.004107pt;}
.y1{bottom:984.945440pt;}
.h5{height:27.782724pt;}
.hb{height:32.900710pt;}
.hf{height:33.187635pt;}
.ha{height:33.663136pt;}
.h19{height:35.705958pt;}
.h7{height:36.556100pt;}
.h14{height:36.874903pt;}
.h6{height:37.403704pt;}
.h2{height:37.454181pt;}
.hc{height:42.294825pt;}
.h1f{height:44.335087pt;}
.h8{height:46.260420pt;}
.h9{height:46.265754pt;}
.h15{height:47.068058pt;}
.h4{height:47.073391pt;}
.h1a{height:47.334724pt;}
.hd{height:48.921754pt;}
.h10{height:49.249391pt;}
.h1c{height:49.724058pt;}
.h17{height:49.729391pt;}
.he{height:51.441434pt;}
.h1b{height:53.836100pt;}
.h12{height:60.774899pt;}
.h16{height:61.105491pt;}
.h3{height:64.633379pt;}
.h1d{height:65.020058pt;}
.h13{height:70.403140pt;}
.h18{height:73.297391pt;}
.h1e{height:75.990825pt;}
.h11{height:98.573807pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929120pt;}
.w0{width:793.700787pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:61.984107pt;}
.xd{left:72.942773pt;}
.x4{left:75.268107pt;}
.x5{left:91.666773pt;}
.xe{left:105.313440pt;}
.x10{left:142.254773pt;}
.x7{left:181.093440pt;}
.xf{left:186.428107pt;}
.xc{left:200.360107pt;}
.xb{left:212.384107pt;}
.x8{left:225.677440pt;}
.x9{left:243.581440pt;}
.xa{left:266.510773pt;}
.x2{left:409.700107pt;}
.x6{left:420.074773pt;}
.x3{left:422.984107pt;}
}




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