
    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_bd699b6f8336e554696118b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.885000;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_faa8ef577f5da9dd0361164e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_afb42c7ada79e7669cb31d38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055000;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_f3523e244d27f51aea10aef1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.902000;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_756e5e760aa5032ff378e3ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;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_fce41dd5ed1a75dab62af53e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.713000;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_1b883acacd5b91a2f81c459f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_67a4e588537cff496c9a3044.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_19fbd56f71ea38a12ee37ea1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c87ff298d84e5aea9951eb0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_141660acbbc3f7e650d45643.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f811531983a4d9750ed2e537.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dfdd07994d59dd66f483b512.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_46c1e235027d95fd8741502d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4cfb5d771048da862904a9f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a4d53b8242b90ed4ed7f9f14.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;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;}
.m2{transform:matrix(0.216507,-0.125000,0.125000,0.216507,0,0);-ms-transform:matrix(0.216507,-0.125000,0.125000,0.216507,0,0);-webkit-transform:matrix(0.216507,-0.125000,0.125000,0.216507,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:5.021150px;}
.ls6{letter-spacing:5.379804px;}
.ls9{letter-spacing:5.499355px;}
.ls4{letter-spacing:5.559131px;}
.ls8{letter-spacing:5.798233px;}
.ls5{letter-spacing:5.917784px;}
.ls3{letter-spacing:5.977560px;}
.lsa{letter-spacing:24.245146px;}
.lsb{letter-spacing:31.705190px;}
.ls2{letter-spacing:35.148288px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws4f{word-spacing:-60.074880px;}
.ws4d{word-spacing:-44.222285px;}
.ws5a{word-spacing:-40.341627px;}
.ws51{word-spacing:-35.112422px;}
.ws4a{word-spacing:-35.040691px;}
.ws7b{word-spacing:-21.332859px;}
.ws76{word-spacing:-20.974203px;}
.wsa3{word-spacing:-20.328622px;}
.ws8f{word-spacing:-20.113428px;}
.ws17{word-spacing:-19.475021px;}
.ws5e{word-spacing:-19.324385px;}
.wsb3{word-spacing:-19.252654px;}
.ws98{word-spacing:-19.116365px;}
.ws104{word-spacing:-19.044634px;}
.wsa4{word-spacing:-18.901171px;}
.ws63{word-spacing:-18.829440px;}
.ws1b{word-spacing:-18.685978px;}
.ws88{word-spacing:-18.678804px;}
.ws4b{word-spacing:-18.644278px;}
.ws1a{word-spacing:-18.327322px;}
.ws1e{word-spacing:-18.255590px;}
.ws2b{word-spacing:-17.753472px;}
.ws79{word-spacing:-17.674568px;}
.ws6b{word-spacing:-17.323085px;}
.ws1f{word-spacing:-17.251354px;}
.wse7{word-spacing:-17.100718px;}
.wsed{word-spacing:-17.036160px;}
.wse8{word-spacing:-16.957256px;}
.ws25{word-spacing:-16.892698px;}
.wsc6{word-spacing:-16.885524px;}
.ws5d{word-spacing:-16.820966px;}
.ws95{word-spacing:-16.677504px;}
.ws54{word-spacing:-16.598600px;}
.ws2c{word-spacing:-16.534042px;}
.wsad{word-spacing:-16.462310px;}
.ws16{word-spacing:-16.390579px;}
.ws87{word-spacing:-16.247117px;}
.ws7c{word-spacing:-16.103654px;}
.ws7a{word-spacing:-16.031923px;}
.ws7d{word-spacing:-16.024750px;}
.ws64{word-spacing:-15.888461px;}
.ws77{word-spacing:-15.744998px;}
.ws75{word-spacing:-15.673267px;}
.ws46{word-spacing:-15.529805px;}
.wsf7{word-spacing:-15.458074px;}
.ws45{word-spacing:-15.386342px;}
.ws66{word-spacing:-15.242880px;}
.wsb2{word-spacing:-15.171149px;}
.wsa2{word-spacing:-15.027686px;}
.wsc2{word-spacing:-14.955955px;}
.ws8e{word-spacing:-14.884224px;}
.wsc3{word-spacing:-14.812493px;}
.ws61{word-spacing:-14.740762px;}
.wsbc{word-spacing:-14.733588px;}
.ws40{word-spacing:-14.525568px;}
.wsc{word-spacing:-14.453837px;}
.ws106{word-spacing:-14.382106px;}
.wsb1{word-spacing:-14.310374px;}
.wsac{word-spacing:-14.095181px;}
.ws1d{word-spacing:-13.951718px;}
.wsb4{word-spacing:-13.879987px;}
.ws12{word-spacing:-13.808256px;}
.ws53{word-spacing:-13.801083px;}
.wsbf{word-spacing:-13.736525px;}
.ws23{word-spacing:-13.664794px;}
.ws6a{word-spacing:-13.593062px;}
.wsba{word-spacing:-13.521331px;}
.ws3b{word-spacing:-13.449600px;}
.ws2{word-spacing:-13.442427px;}
.wsc5{word-spacing:-13.377869px;}
.ws5b{word-spacing:-13.306138px;}
.ws5c{word-spacing:-13.234406px;}
.wsfd{word-spacing:-13.162675px;}
.ws94{word-spacing:-13.090944px;}
.ws11{word-spacing:-13.019213px;}
.ws7e{word-spacing:-12.947482px;}
.ws8a{word-spacing:-12.875750px;}
.ws2f{word-spacing:-12.732288px;}
.wsb0{word-spacing:-12.725115px;}
.ws47{word-spacing:-12.588826px;}
.wscf{word-spacing:-12.517094px;}
.ws67{word-spacing:-12.445363px;}
.ws21{word-spacing:-12.373632px;}
.ws18{word-spacing:-12.158438px;}
.ws78{word-spacing:-12.151265px;}
.ws62{word-spacing:-12.086707px;}
.ws15{word-spacing:-12.014976px;}
.ws35{word-spacing:-11.871514px;}
.wsb9{word-spacing:-11.799782px;}
.wsd{word-spacing:-11.728051px;}
.wsa8{word-spacing:-11.656320px;}
.ws19{word-spacing:-11.584589px;}
.wsb6{word-spacing:-11.577416px;}
.wsae{word-spacing:-11.512858px;}
.ws30{word-spacing:-11.369395px;}
.wsa5{word-spacing:-11.225933px;}
.ws3c{word-spacing:-11.154202px;}
.ws80{word-spacing:-11.147028px;}
.ws65{word-spacing:-11.082470px;}
.ws107{word-spacing:-11.010739px;}
.wsb8{word-spacing:-10.939008px;}
.ws7{word-spacing:-10.878555px;}
.wse9{word-spacing:-10.867277px;}
.ws10a{word-spacing:-10.813100px;}
.wsb5{word-spacing:-10.795546px;}
.ws44{word-spacing:-10.723814px;}
.ws9e{word-spacing:-10.652083px;}
.wsff{word-spacing:-10.580352px;}
.ws8{word-spacing:-10.508621px;}
.wsa9{word-spacing:-10.365158px;}
.wsc0{word-spacing:-10.293427px;}
.wsbe{word-spacing:-10.221696px;}
.ws3e{word-spacing:-10.149965px;}
.ws72{word-spacing:-10.078234px;}
.ws3a{word-spacing:-10.006502px;}
.ws31{word-spacing:-9.934771px;}
.ws58{word-spacing:-9.863040px;}
.ws90{word-spacing:-9.647846px;}
.wsb7{word-spacing:-9.576115px;}
.ws73{word-spacing:-9.504384px;}
.wsb{word-spacing:-9.432653px;}
.ws91{word-spacing:-9.289190px;}
.ws96{word-spacing:-9.217459px;}
.ws4c{word-spacing:-9.145728px;}
.ws86{word-spacing:-9.138555px;}
.wse6{word-spacing:-9.073997px;}
.ws59{word-spacing:-9.002266px;}
.ws10{word-spacing:-8.930534px;}
.ws36{word-spacing:-8.858803px;}
.ws32{word-spacing:-8.787072px;}
.ws8b{word-spacing:-8.715341px;}
.ws43{word-spacing:-8.643610px;}
.wsaf{word-spacing:-8.571878px;}
.wsea{word-spacing:-8.564705px;}
.ws93{word-spacing:-8.500147px;}
.wsc1{word-spacing:-8.428416px;}
.ws6e{word-spacing:-8.356685px;}
.ws20{word-spacing:-8.284954px;}
.wsa6{word-spacing:-8.213222px;}
.ws89{word-spacing:-8.141491px;}
.ws71{word-spacing:-8.069760px;}
.ws13{word-spacing:-7.998029px;}
.ws34{word-spacing:-7.926298px;}
.wsec{word-spacing:-7.854566px;}
.wsa1{word-spacing:-7.782835px;}
.ws28{word-spacing:-7.711104px;}
.wsa{word-spacing:-7.639373px;}
.wsab{word-spacing:-7.567642px;}
.ws41{word-spacing:-7.495910px;}
.ws6f{word-spacing:-7.424179px;}
.ws69{word-spacing:-7.352448px;}
.wse{word-spacing:-7.280717px;}
.ws81{word-spacing:-7.208986px;}
.ws24{word-spacing:-7.137254px;}
.wsfe{word-spacing:-7.065523px;}
.ws83{word-spacing:-6.993792px;}
.ws70{word-spacing:-6.922061px;}
.ws2e{word-spacing:-6.850330px;}
.ws101{word-spacing:-6.778598px;}
.wsbd{word-spacing:-6.635136px;}
.ws6d{word-spacing:-6.563405px;}
.wsbb{word-spacing:-6.491674px;}
.ws56{word-spacing:-6.419942px;}
.ws82{word-spacing:-6.348211px;}
.ws55{word-spacing:-6.276480px;}
.wsaa{word-spacing:-6.133018px;}
.ws85{word-spacing:-6.125844px;}
.ws1c{word-spacing:-6.061286px;}
.wscc{word-spacing:-6.037336px;}
.ws6c{word-spacing:-5.989555px;}
.ws7f{word-spacing:-5.917824px;}
.wsdd{word-spacing:-5.858009px;}
.ws60{word-spacing:-5.846093px;}
.ws2d{word-spacing:-5.774362px;}
.ws37{word-spacing:-5.702630px;}
.ws9c{word-spacing:-5.695457px;}
.wsd2{word-spacing:-5.618906px;}
.wse0{word-spacing:-5.559131px;}
.wsc4{word-spacing:-5.487437px;}
.wsd4{word-spacing:-5.439580px;}
.ws100{word-spacing:-5.415706px;}
.ws84{word-spacing:-5.343974px;}
.wsf{word-spacing:-5.272243px;}
.ws57{word-spacing:-5.200512px;}
.ws39{word-spacing:-5.128781px;}
.wsd6{word-spacing:-5.080926px;}
.wse4{word-spacing:-5.057050px;}
.ws68{word-spacing:-4.985318px;}
.ws2a{word-spacing:-4.841856px;}
.ws22{word-spacing:-4.554931px;}
.ws97{word-spacing:-4.483200px;}
.ws42{word-spacing:-4.411469px;}
.wsa7{word-spacing:-4.339738px;}
.ws9{word-spacing:-4.196275px;}
.ws108{word-spacing:-4.124544px;}
.wse5{word-spacing:-4.052813px;}
.ws3d{word-spacing:-3.981082px;}
.ws3f{word-spacing:-3.909350px;}
.wscd{word-spacing:-3.837619px;}
.wseb{word-spacing:-3.694157px;}
.ws33{word-spacing:-3.478963px;}
.ws26{word-spacing:-3.407232px;}
.wsa0{word-spacing:-3.335501px;}
.ws99{word-spacing:-3.192038px;}
.ws105{word-spacing:-3.120307px;}
.ws4e{word-spacing:-2.976845px;}
.ws27{word-spacing:-2.689920px;}
.ws9f{word-spacing:-2.331264px;}
.ws38{word-spacing:-2.044339px;}
.ws14{word-spacing:-1.972608px;}
.ws8d{word-spacing:-1.900877px;}
.ws5f{word-spacing:-1.829146px;}
.ws9d{word-spacing:-0.466253px;}
.ws92{word-spacing:-0.322790px;}
.ws10c{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.065455px;}
.wsd9{word-spacing:-0.059776px;}
.ws29{word-spacing:0.000000px;}
.ws49{word-spacing:0.753178px;}
.ws9a{word-spacing:1.757414px;}
.ws74{word-spacing:1.900877px;}
.ws9b{word-spacing:2.051512px;}
.ws50{word-spacing:2.905114px;}
.wscb{word-spacing:8.308808px;}
.wsde{word-spacing:8.428360px;}
.wsc9{word-spacing:8.488135px;}
.wsdf{word-spacing:8.547911px;}
.wsca{word-spacing:8.667462px;}
.wsc7{word-spacing:8.727238px;}
.wsd0{word-spacing:8.787013px;}
.wsdb{word-spacing:8.846789px;}
.wsd7{word-spacing:8.906564px;}
.wsdc{word-spacing:8.966340px;}
.wsc8{word-spacing:12.493100px;}
.ws103{word-spacing:16.880672px;}
.ws102{word-spacing:16.880739px;}
.ws48{word-spacing:24.646840px;}
.ws6{word-spacing:24.872748px;}
.ws1{word-spacing:27.200395px;}
.wsee{word-spacing:31.389573px;}
.ws4{word-spacing:31.418178px;}
.ws3{word-spacing:31.504255px;}
.ws0{word-spacing:34.172648px;}
.wsd3{word-spacing:34.789399px;}
.ws109{word-spacing:35.018211px;}
.ws10b{word-spacing:35.083666px;}
.wsfc{word-spacing:36.618778px;}
.wse1{word-spacing:43.875290px;}
.wsda{word-spacing:44.712149px;}
.wsd1{word-spacing:45.429456px;}
.wsd8{word-spacing:45.728334px;}
.wse3{word-spacing:46.146763px;}
.wsd5{word-spacing:46.266314px;}
.wse2{word-spacing:46.385866px;}
.wsce{word-spacing:47.999807px;}
.ws52{word-spacing:55.726250px;}
.wsf8{word-spacing:80.955832px;}
.ws8c{word-spacing:94.598843px;}
.wsf9{word-spacing:160.075346px;}
.wsf5{word-spacing:163.733637px;}
.wsfb{word-spacing:189.198213px;}
.wsf1{word-spacing:224.346501px;}
.wsfa{word-spacing:234.381696px;}
.wsef{word-spacing:237.186386px;}
.wsf4{word-spacing:256.410348px;}
.wsf2{word-spacing:269.321964px;}
.wsf3{word-spacing:310.847155px;}
.wsf0{word-spacing:334.231526px;}
.wsf6{word-spacing:334.303258px;}
._21{margin-left:-37.802342px;}
._1f{margin-left:-35.865600px;}
._20{margin-left:-33.928858px;}
._23{margin-left:-12.481229px;}
._2e{margin-left:-11.476992px;}
._0{margin-left:-8.177334px;}
._30{margin-left:-6.742733px;}
._2{margin-left:-5.681095px;}
._5{margin-left:-3.796367px;}
._1{margin-left:-2.238007px;}
._9{margin-left:-1.162058px;}
._2a{width:1.047266px;}
._3{width:2.065853px;}
._11{width:3.744374px;}
._3b{width:5.021150px;}
._24{width:6.168883px;}
._3e{width:7.631616px;}
._3f{width:8.829990px;}
._3d{width:9.845734px;}
._42{width:10.944023px;}
._41{width:12.300544px;}
._40{width:13.983983px;}
._32{width:15.235706px;}
._e{width:17.215488px;}
._f{width:18.693132px;}
._16{width:21.045922px;}
._10{width:22.207973px;}
._19{width:23.307253px;}
._28{width:24.431638px;}
._33{width:25.435865px;}
._6{width:27.143074px;}
._7{width:29.395433px;}
._38{width:30.414029px;}
._a{width:31.489997px;}
._4{width:32.537182px;}
._15{width:33.785479px;}
._3a{width:34.861363px;}
._14{width:36.539873px;}
._c{width:38.591393px;}
._22{width:40.467170px;}
._b{width:42.550942px;}
._43{width:43.865460px;}
._39{width:44.961082px;}
._12{width:46.137502px;}
._37{width:47.199130px;}
._3c{width:48.418236px;}
._13{width:49.609270px;}
._8{width:50.728310px;}
._36{width:53.224550px;}
._44{width:54.357902px;}
._1a{width:55.381873px;}
._45{width:56.983274px;}
._29{width:59.183627px;}
._d{width:61.229746px;}
._27{width:63.139638px;}
._1d{width:64.988467px;}
._35{width:66.164868px;}
._1c{width:70.307350px;}
._18{width:71.802931px;}
._2f{width:73.470742px;}
._4e{width:79.664997px;}
._2d{width:90.524774px;}
._31{width:94.684920px;}
._4c{width:96.722326px;}
._1b{width:97.769626px;}
._34{width:111.452500px;}
._4d{width:115.989350px;}
._2c{width:126.390374px;}
._49{width:170.863687px;}
._4a{width:299.334298px;}
._4b{width:322.646938px;}
._48{width:407.246702px;}
._46{width:413.128661px;}
._47{width:430.788888px;}
._25{width:1124.989102px;}
._1e{width:1313.656486px;}
._2b{width:1942.480896px;}
._17{width:1956.281978px;}
._26{width:2059.187558px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs5{font-size:47.820790px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y42{bottom:182.481000px;}
.y121{bottom:227.313000px;}
.y33{bottom:230.526000px;}
.y15f{bottom:233.062500px;}
.y5b{bottom:233.407500px;}
.yb{bottom:233.608500px;}
.y103{bottom:235.285500px;}
.yb1{bottom:237.784500px;}
.y14f{bottom:242.899500px;}
.y120{bottom:245.245500px;}
.yc4{bottom:246.363000px;}
.y32{bottom:252.193500px;}
.y15e{bottom:254.731500px;}
.y5a{bottom:255.076500px;}
.y102{bottom:256.954500px;}
.yb0{bottom:259.453500px;}
.y85{bottom:260.088000px;}
.yfa{bottom:260.134500px;}
.y1cd{bottom:261.160500px;}
.y11f{bottom:263.178000px;}
.y14e{bottom:264.568500px;}
.yd2{bottom:271.539000px;}
.y31{bottom:273.862500px;}
.y59{bottom:276.745500px;}
.y11e{bottom:281.110500px;}
.yaf{bottom:281.122500px;}
.y84{bottom:281.757000px;}
.yf9{bottom:281.802000px;}
.y1cc{bottom:282.829500px;}
.y14d{bottom:286.237500px;}
.yc3{bottom:287.458500px;}
.y98{bottom:290.755500px;}
.yd1{bottom:293.206500px;}
.y30{bottom:295.531500px;}
.y58{bottom:298.413000px;}
.y11d{bottom:299.043000px;}
.yae{bottom:302.790000px;}
.y83{bottom:303.426000px;}
.yf8{bottom:303.471000px;}
.y15d{bottom:303.822000px;}
.y101{bottom:306.045000px;}
.yc2{bottom:309.127500px;}
.y97{bottom:312.424500px;}
.yd0{bottom:314.875500px;}
.y11c{bottom:316.977000px;}
.y2f{bottom:317.200500px;}
.y1cb{bottom:319.441500px;}
.y14c{bottom:322.251000px;}
.yad{bottom:324.459000px;}
.y82{bottom:325.095000px;}
.yf7{bottom:325.140000px;}
.yc1{bottom:330.796500px;}
.y57{bottom:331.660500px;}
.y96{bottom:334.092000px;}
.y11b{bottom:334.909500px;}
.y2e{bottom:338.869500px;}
.y14b{bottom:340.183500px;}
.y1ca{bottom:341.110500px;}
.y15c{bottom:344.926500px;}
.yac{bottom:346.128000px;}
.y81{bottom:346.764000px;}
.yf6{bottom:346.809000px;}
.y95{bottom:355.761000px;}
.y14a{bottom:358.117500px;}
.y11a{bottom:358.521000px;}
.y2d{bottom:360.537000px;}
.y1c9{bottom:362.779500px;}
.ycf{bottom:363.967500px;}
.y15b{bottom:366.595500px;}
.yab{bottom:367.797000px;}
.y80{bottom:368.431500px;}
.yf5{bottom:368.478000px;}
.y149{bottom:376.050000px;}
.y94{bottom:377.430000px;}
.yc0{bottom:379.887000px;}
.y18f{bottom:380.188500px;}
.y2c{bottom:382.206000px;}
.y56{bottom:383.647500px;}
.y15a{bottom:388.264500px;}
.yaa{bottom:389.466000px;}
.y7f{bottom:390.100500px;}
.y119{bottom:392.880000px;}
.y148{bottom:393.982500px;}
.y93{bottom:399.099000px;}
.y1c8{bottom:399.391500px;}
.y18e{bottom:401.856000px;}
.y2b{bottom:403.875000px;}
.yf4{bottom:405.090000px;}
.y55{bottom:405.316500px;}
.y159{bottom:409.933500px;}
.ya9{bottom:411.135000px;}
.y7e{bottom:411.769500px;}
.y147{bottom:411.915000px;}
.y118{bottom:414.549000px;}
.y92{bottom:420.768000px;}
.y1c7{bottom:421.060500px;}
.y18d{bottom:423.525000px;}
.y75{bottom:423.817500px;}
.y2a{bottom:425.544000px;}
.yf3{bottom:426.759000px;}
.y54{bottom:426.985500px;}
.y146{bottom:429.847500px;}
.y158{bottom:431.602500px;}
.ya8{bottom:432.802500px;}
.y7d{bottom:433.438500px;}
.y117{bottom:436.218000px;}
.ye7{bottom:438.762000px;}
.y91{bottom:442.437000px;}
.y1c6{bottom:442.729500px;}
.y18c{bottom:445.194000px;}
.y74{bottom:445.486500px;}
.y29{bottom:447.213000px;}
.y145{bottom:447.781500px;}
.yf2{bottom:448.428000px;}
.y53{bottom:448.653000px;}
.ya7{bottom:454.471500px;}
.y7c{bottom:455.107500px;}
.y116{bottom:457.887000px;}
.ye6{bottom:460.429500px;}
.y157{bottom:462.253500px;}
.y144{bottom:465.714000px;}
.y18b{bottom:466.863000px;}
.y28{bottom:468.882000px;}
.yf1{bottom:470.097000px;}
.y52{bottom:470.322000px;}
.y90{bottom:475.684500px;}
.y1c5{bottom:479.341500px;}
.y73{bottom:482.098500px;}
.y143{bottom:483.646500px;}
.ya6{bottom:487.719000px;}
.y18a{bottom:488.532000px;}
.y27{bottom:490.549500px;}
.y51{bottom:491.991000px;}
.y115{bottom:493.396500px;}
.y1c4{bottom:501.010500px;}
.y142{bottom:501.579000px;}
.y72{bottom:503.767500px;}
.y7b{bottom:504.198000px;}
.yf0{bottom:506.709000px;}
.y156{bottom:509.745000px;}
.y189{bottom:510.199500px;}
.y114{bottom:511.329000px;}
.y26{bottom:512.218500px;}
.y50{bottom:513.660000px;}
.y141{bottom:519.511500px;}
.y1c3{bottom:522.679500px;}
.ye5{bottom:525.436500px;}
.y8f{bottom:527.670000px;}
.yef{bottom:528.378000px;}
.y113{bottom:529.261500px;}
.y155{bottom:531.414000px;}
.y188{bottom:531.868500px;}
.y25{bottom:533.887500px;}
.y4f{bottom:535.329000px;}
.y140{bottom:537.444000px;}
.ya5{bottom:539.706000px;}
.y71{bottom:540.381000px;}
.ye4{bottom:547.105500px;}
.y8e{bottom:549.339000px;}
.yee{bottom:550.047000px;}
.y8{bottom:552.814500px;}
.y112{bottom:552.873000px;}
.y154{bottom:553.083000px;}
.y187{bottom:553.537500px;}
.ya{bottom:553.555500px;}
.y13f{bottom:555.378000px;}
.y24{bottom:555.556500px;}
.y4e{bottom:556.998000px;}
.y172{bottom:557.782500px;}
.y1c2{bottom:559.293000px;}
.ya4{bottom:561.375000px;}
.y70{bottom:562.048500px;}
.y1b1{bottom:569.364000px;}
.y8d{bottom:571.008000px;}
.y13e{bottom:573.310500px;}
.y7{bottom:574.483500px;}
.y153{bottom:574.752000px;}
.y186{bottom:575.206500px;}
.y9{bottom:575.224500px;}
.y1a4{bottom:576.751500px;}
.y23{bottom:577.225500px;}
.y4d{bottom:578.665500px;}
.y171{bottom:579.451500px;}
.ye3{bottom:580.353000px;}
.y1c1{bottom:580.960500px;}
.ya3{bottom:583.044000px;}
.yed{bottom:586.659000px;}
.y111{bottom:587.233500px;}
.y13d{bottom:591.243000px;}
.y8c{bottom:592.677000px;}
.y6{bottom:596.152500px;}
.y152{bottom:596.421000px;}
.y185{bottom:596.875500px;}
.y1a3{bottom:598.420500px;}
.y6f{bottom:598.662000px;}
.y22{bottom:598.894500px;}
.y4c{bottom:600.334500px;}
.y170{bottom:601.120500px;}
.ya2{bottom:604.711500px;}
.yec{bottom:608.328000px;}
.y110{bottom:608.902500px;}
.y13c{bottom:609.175500px;}
.y1b0{bottom:611.356500px;}
.y8b{bottom:614.344500px;}
.y41{bottom:615.349500px;}
.y1c0{bottom:617.574000px;}
.y151{bottom:618.088500px;}
.y184{bottom:618.544500px;}
.y1a2{bottom:620.089500px;}
.y6e{bottom:620.331000px;}
.y21{bottom:620.562000px;}
.y4b{bottom:622.003500px;}
.y16f{bottom:622.788000px;}
.ya1{bottom:626.380500px;}
.y13b{bottom:627.108000px;}
.yeb{bottom:629.997000px;}
.y10f{bottom:630.571500px;}
.ye2{bottom:632.338500px;}
.y8a{bottom:636.013500px;}
.y1bf{bottom:639.243000px;}
.y150{bottom:639.757500px;}
.y183{bottom:640.212000px;}
.y1a1{bottom:641.758500px;}
.y20{bottom:642.231000px;}
.y4a{bottom:643.672500px;}
.y16e{bottom:644.457000px;}
.y13a{bottom:645.040500px;}
.ya0{bottom:648.049500px;}
.yea{bottom:651.666000px;}
.y10e{bottom:652.240500px;}
.y1af{bottom:653.349000px;}
.ye1{bottom:654.007500px;}
.y40{bottom:654.573000px;}
.y89{bottom:657.682500px;}
.y1be{bottom:660.912000px;}
.y6d{bottom:661.426500px;}
.y182{bottom:661.881000px;}
.y139{bottom:662.974500px;}
.y1a0{bottom:663.427500px;}
.y5{bottom:663.556500px;}
.y1f{bottom:663.900000px;}
.y49{bottom:665.341500px;}
.y9f{bottom:669.718500px;}
.ye9{bottom:673.335000px;}
.y10d{bottom:673.908000px;}
.ye0{bottom:675.676500px;}
.y3f{bottom:676.242000px;}
.y16d{bottom:677.704500px;}
.y88{bottom:679.351500px;}
.y138{bottom:680.907000px;}
.y1bd{bottom:682.579500px;}
.y6c{bottom:683.095500px;}
.y181{bottom:683.550000px;}
.y19f{bottom:685.095000px;}
.y4{bottom:685.225500px;}
.y1e{bottom:685.569000px;}
.y48{bottom:687.010500px;}
.y1ae{bottom:687.123000px;}
.y9e{bottom:691.387500px;}
.y10c{bottom:695.577000px;}
.ydf{bottom:697.345500px;}
.y3e{bottom:697.911000px;}
.y137{bottom:698.839500px;}
.y87{bottom:701.020500px;}
.ybf{bottom:704.764500px;}
.y180{bottom:705.219000px;}
.y19e{bottom:706.764000px;}
.y1d{bottom:707.238000px;}
.y47{bottom:708.678000px;}
.y9d{bottom:713.055000px;}
.y6b{bottom:716.343000px;}
.y136{bottom:716.772000px;}
.y1bc{bottom:719.193000px;}
.y3d{bottom:719.578500px;}
.ye8{bottom:722.425500px;}
.ybe{bottom:726.432000px;}
.y19d{bottom:728.433000px;}
.y1c{bottom:728.907000px;}
.y1ad{bottom:729.115500px;}
.y16c{bottom:729.691500px;}
.y46{bottom:730.347000px;}
.y10b{bottom:731.086500px;}
.y135{bottom:734.704500px;}
.y9c{bottom:734.724000px;}
.yde{bottom:738.441000px;}
.y1bb{bottom:740.862000px;}
.ybd{bottom:748.101000px;}
.y10a{bottom:749.019000px;}
.y19c{bottom:750.102000px;}
.y86{bottom:750.111000px;}
.y1b{bottom:750.574500px;}
.y16b{bottom:751.360500px;}
.y45{bottom:752.016000px;}
.y134{bottom:752.637000px;}
.y17f{bottom:754.309500px;}
.y9b{bottom:756.393000px;}
.y3c{bottom:758.803500px;}
.ydd{bottom:760.110000px;}
.y109{bottom:766.953000px;}
.y6a{bottom:768.328500px;}
.ybc{bottom:769.770000px;}
.y133{bottom:770.571000px;}
.y1ac{bottom:771.108000px;}
.y1a{bottom:772.243500px;}
.y16a{bottom:773.028000px;}
.y44{bottom:773.685000px;}
.y17e{bottom:775.978500px;}
.y1ba{bottom:777.474000px;}
.y9a{bottom:778.062000px;}
.yce{bottom:778.737000px;}
.y3b{bottom:780.471000px;}
.ydc{bottom:781.779000px;}
.y132{bottom:788.503500px;}
.y69{bottom:789.997500px;}
.y100{bottom:791.178000px;}
.ybb{bottom:791.439000px;}
.y19{bottom:793.912500px;}
.y169{bottom:794.697000px;}
.y1b9{bottom:799.143000px;}
.y19b{bottom:799.192500px;}
.ycd{bottom:800.406000px;}
.y3a{bottom:802.140000px;}
.y108{bottom:802.818000px;}
.ydb{bottom:803.448000px;}
.y131{bottom:806.436000px;}
.y43{bottom:806.932500px;}
.y68{bottom:811.666500px;}
.yff{bottom:812.847000px;}
.y1ab{bottom:813.100500px;}
.yba{bottom:813.108000px;}
.y3{bottom:813.193500px;}
.y18{bottom:815.581500px;}
.y168{bottom:816.366000px;}
.y175{bottom:816.672000px;}
.y19a{bottom:820.861500px;}
.y39{bottom:823.809000px;}
.y130{bottom:824.368500px;}
.yda{bottom:825.115500px;}
.y99{bottom:827.152500px;}
.y67{bottom:833.335500px;}
.ycc{bottom:833.653500px;}
.yfe{bottom:834.516000px;}
.yb9{bottom:834.777000px;}
.y1b8{bottom:835.755000px;}
.y17{bottom:837.250500px;}
.y167{bottom:838.035000px;}
.y107{bottom:838.683000px;}
.y12f{bottom:842.301000px;}
.yd9{bottom:846.784500px;}
.y173{bottom:850.591500px;}
.y66{bottom:855.004500px;}
.y1aa{bottom:855.093000px;}
.y2{bottom:856.122000px;}
.yfd{bottom:856.185000px;}
.yb8{bottom:856.444500px;}
.y106{bottom:856.615500px;}
.y1b7{bottom:857.424000px;}
.y16{bottom:858.918000px;}
.y166{bottom:859.704000px;}
.y12e{bottom:860.235000px;}
.y192{bottom:861.555000px;}
.y176{bottom:861.658500px;}
.y38{bottom:863.032500px;}
.y174{bottom:863.205000px;}
.y190{bottom:867.874500px;}
.y65{bottom:876.673500px;}
.yfc{bottom:877.854000px;}
.yb7{bottom:878.113500px;}
.y12d{bottom:878.167500px;}
.y191{bottom:880.488000px;}
.y15{bottom:880.587000px;}
.y165{bottom:881.373000px;}
.yd8{bottom:883.398000px;}
.y37{bottom:884.701500px;}
.ycb{bottom:885.639000px;}
.y105{bottom:892.482000px;}
.y1b6{bottom:894.037500px;}
.y12c{bottom:896.100000px;}
.y1a9{bottom:897.085500px;}
.y64{bottom:898.341000px;}
.y1{bottom:899.050500px;}
.yb6{bottom:899.782500px;}
.y14{bottom:902.256000px;}
.y164{bottom:903.040500px;}
.yd7{bottom:905.067000px;}
.y36{bottom:906.370500px;}
.yca{bottom:907.308000px;}
.y12b{bottom:914.032500px;}
.y1b5{bottom:915.706500px;}
.y104{bottom:916.093500px;}
.y63{bottom:920.010000px;}
.yb5{bottom:921.451500px;}
.y13{bottom:923.925000px;}
.y193{bottom:924.568500px;}
.yd6{bottom:926.734500px;}
.yfb{bottom:926.944500px;}
.y35{bottom:928.039500px;}
.yc9{bottom:928.977000px;}
.y12a{bottom:931.965000px;}
.y177{bottom:935.941500px;}
.y1b4{bottom:937.374000px;}
.y1a8{bottom:939.078000px;}
.y62{bottom:941.679000px;}
.yb4{bottom:943.120500px;}
.y12{bottom:945.594000px;}
.y194{bottom:948.048000px;}
.yd5{bottom:948.403500px;}
.y34{bottom:949.707000px;}
.y129{bottom:949.897500px;}
.y7a{bottom:950.454000px;}
.yc8{bottom:950.646000px;}
.y163{bottom:952.132500px;}
.y178{bottom:960.165000px;}
.y61{bottom:963.348000px;}
.yb3{bottom:964.789500px;}
.y11{bottom:967.263000px;}
.y128{bottom:967.831500px;}
.yd4{bottom:970.072500px;}
.y79{bottom:972.121500px;}
.y195{bottom:972.273000px;}
.yc7{bottom:972.313500px;}
.y1b3{bottom:973.987500px;}
.y1a7{bottom:981.070500px;}
.y179{bottom:984.390000px;}
.y60{bottom:985.017000px;}
.y127{bottom:985.764000px;}
.y10{bottom:988.930500px;}
.yd3{bottom:991.741500px;}
.y162{bottom:993.237000px;}
.y78{bottom:993.790500px;}
.y1b2{bottom:995.656500px;}
.y196{bottom:996.498000px;}
.yb2{bottom:998.037000px;}
.y126{bottom:1003.696500px;}
.y5f{bottom:1006.684500px;}
.y17a{bottom:1008.615000px;}
.yf{bottom:1010.599500px;}
.yc6{bottom:1013.410500px;}
.y161{bottom:1014.906000px;}
.y77{bottom:1015.459500px;}
.y197{bottom:1020.724500px;}
.y125{bottom:1021.629000px;}
.y1a6{bottom:1023.063000px;}
.y5e{bottom:1028.353500px;}
.ye{bottom:1032.268500px;}
.y17b{bottom:1032.840000px;}
.yc5{bottom:1035.079500px;}
.y124{bottom:1039.561500px;}
.y198{bottom:1044.949500px;}
.y160{bottom:1045.557000px;}
.y76{bottom:1048.707000px;}
.y5d{bottom:1050.022500px;}
.yd{bottom:1053.937500px;}
.y1a5{bottom:1056.835500px;}
.y17c{bottom:1057.065000px;}
.y123{bottom:1057.494000px;}
.y199{bottom:1069.174500px;}
.y5c{bottom:1071.691500px;}
.y122{bottom:1075.428000px;}
.yc{bottom:1093.360500px;}
.y17d{bottom:1094.373000px;}
.hd{height:35.913271px;}
.hb{height:35.913414px;}
.ha{height:41.603818px;}
.h6{height:45.556402px;}
.h7{height:45.883675px;}
.h8{height:46.800039px;}
.hc{height:48.418560px;}
.he{height:49.853184px;}
.h4{height:53.870131px;}
.h3{height:59.823654px;}
.h5{height:60.426194px;}
.h9{height:72.511265px;}
.h2{height:75.231473px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:148.819500px;}
.x19{left:150.073500px;}
.x25{left:157.785000px;}
.x2a{left:161.295000px;}
.x31{left:167.362500px;}
.x1d{left:168.898500px;}
.x23{left:169.998000px;}
.x22{left:173.224500px;}
.x6{left:174.853500px;}
.x24{left:176.860500px;}
.x1a{left:180.051000px;}
.x36{left:184.906500px;}
.x4{left:186.924000px;}
.x1e{left:187.939500px;}
.xe{left:192.717000px;}
.x34{left:194.772000px;}
.x2f{left:201.093000px;}
.x1f{left:206.719500px;}
.x2e{left:209.872500px;}
.x28{left:213.960000px;}
.xb{left:215.527500px;}
.x16{left:218.808000px;}
.x1{left:222.999000px;}
.x20{left:225.426000px;}
.x1b{left:236.890500px;}
.x5{left:254.955000px;}
.xf{left:272.889000px;}
.x11{left:277.060500px;}
.x3{left:281.362500px;}
.x13{left:286.878000px;}
.x2b{left:302.007000px;}
.x26{left:317.112000px;}
.x8{left:321.928500px;}
.x14{left:323.938500px;}
.x12{left:326.431500px;}
.x18{left:327.771000px;}
.x29{left:331.984500px;}
.x2{left:346.108500px;}
.x27{left:347.617500px;}
.x1c{left:348.910500px;}
.x17{left:366.778500px;}
.x10{left:373.005000px;}
.x35{left:386.854500px;}
.x21{left:391.107000px;}
.x30{left:410.737500px;}
.x2c{left:420.870000px;}
.x15{left:458.938500px;}
.xc{left:461.139000px;}
.xd{left:463.327500px;}
.xa{left:464.550000px;}
.x32{left:506.178000px;}
.x7{left:563.386500px;}
.x33{left:631.866000px;}
.x2d{left:655.918500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:4.463245pt;}
.ls6{letter-spacing:4.782048pt;}
.ls9{letter-spacing:4.888316pt;}
.ls4{letter-spacing:4.941450pt;}
.ls8{letter-spacing:5.153985pt;}
.ls5{letter-spacing:5.260253pt;}
.ls3{letter-spacing:5.313387pt;}
.lsa{letter-spacing:21.551241pt;}
.lsb{letter-spacing:28.182391pt;}
.ls2{letter-spacing:31.242923pt;}
.ls1{letter-spacing:31.880533pt;}
.ws4f{word-spacing:-53.399893pt;}
.ws4d{word-spacing:-39.308698pt;}
.ws5a{word-spacing:-35.859224pt;}
.ws51{word-spacing:-31.211042pt;}
.ws4a{word-spacing:-31.147281pt;}
.ws7b{word-spacing:-18.962541pt;}
.ws76{word-spacing:-18.643736pt;}
.wsa3{word-spacing:-18.069886pt;}
.ws8f{word-spacing:-17.878603pt;}
.ws17{word-spacing:-17.311130pt;}
.ws5e{word-spacing:-17.177231pt;}
.wsb3{word-spacing:-17.113470pt;}
.ws98{word-spacing:-16.992324pt;}
.ws104{word-spacing:-16.928563pt;}
.wsa4{word-spacing:-16.801041pt;}
.ws63{word-spacing:-16.737280pt;}
.ws1b{word-spacing:-16.609758pt;}
.ws88{word-spacing:-16.603382pt;}
.ws4b{word-spacing:-16.572692pt;}
.ws1a{word-spacing:-16.290953pt;}
.ws1e{word-spacing:-16.227191pt;}
.ws2b{word-spacing:-15.780864pt;}
.ws79{word-spacing:-15.710727pt;}
.ws6b{word-spacing:-15.398298pt;}
.ws1f{word-spacing:-15.334537pt;}
.wse7{word-spacing:-15.200638pt;}
.wsed{word-spacing:-15.143253pt;}
.wse8{word-spacing:-15.073116pt;}
.ws25{word-spacing:-15.015731pt;}
.wsc6{word-spacing:-15.009355pt;}
.ws5d{word-spacing:-14.951970pt;}
.ws95{word-spacing:-14.824448pt;}
.ws54{word-spacing:-14.754311pt;}
.ws2c{word-spacing:-14.696926pt;}
.wsad{word-spacing:-14.633165pt;}
.ws16{word-spacing:-14.569404pt;}
.ws87{word-spacing:-14.441882pt;}
.ws7c{word-spacing:-14.314359pt;}
.ws7a{word-spacing:-14.250598pt;}
.ws7d{word-spacing:-14.244222pt;}
.ws64{word-spacing:-14.123076pt;}
.ws77{word-spacing:-13.995554pt;}
.ws75{word-spacing:-13.931793pt;}
.ws46{word-spacing:-13.804271pt;}
.wsf7{word-spacing:-13.740510pt;}
.ws45{word-spacing:-13.676749pt;}
.ws66{word-spacing:-13.549227pt;}
.wsb2{word-spacing:-13.485466pt;}
.wsa2{word-spacing:-13.357943pt;}
.wsc2{word-spacing:-13.294182pt;}
.ws8e{word-spacing:-13.230421pt;}
.wsc3{word-spacing:-13.166660pt;}
.ws61{word-spacing:-13.102899pt;}
.wsbc{word-spacing:-13.096523pt;}
.ws40{word-spacing:-12.911616pt;}
.wsc{word-spacing:-12.847855pt;}
.ws106{word-spacing:-12.784094pt;}
.wsb1{word-spacing:-12.720333pt;}
.wsac{word-spacing:-12.529050pt;}
.ws1d{word-spacing:-12.401527pt;}
.wsb4{word-spacing:-12.337766pt;}
.ws12{word-spacing:-12.274005pt;}
.ws53{word-spacing:-12.267629pt;}
.wsbf{word-spacing:-12.210244pt;}
.ws23{word-spacing:-12.146483pt;}
.ws6a{word-spacing:-12.082722pt;}
.wsba{word-spacing:-12.018961pt;}
.ws3b{word-spacing:-11.955200pt;}
.ws2{word-spacing:-11.948824pt;}
.wsc5{word-spacing:-11.891439pt;}
.ws5b{word-spacing:-11.827678pt;}
.ws5c{word-spacing:-11.763917pt;}
.wsfd{word-spacing:-11.700156pt;}
.ws94{word-spacing:-11.636395pt;}
.ws11{word-spacing:-11.572634pt;}
.ws7e{word-spacing:-11.508873pt;}
.ws8a{word-spacing:-11.445111pt;}
.ws2f{word-spacing:-11.317589pt;}
.wsb0{word-spacing:-11.311213pt;}
.ws47{word-spacing:-11.190067pt;}
.wscf{word-spacing:-11.126306pt;}
.ws67{word-spacing:-11.062545pt;}
.ws21{word-spacing:-10.998784pt;}
.ws18{word-spacing:-10.807501pt;}
.ws78{word-spacing:-10.801125pt;}
.ws62{word-spacing:-10.743740pt;}
.ws15{word-spacing:-10.679979pt;}
.ws35{word-spacing:-10.552457pt;}
.wsb9{word-spacing:-10.488695pt;}
.wsd{word-spacing:-10.424934pt;}
.wsa8{word-spacing:-10.361173pt;}
.ws19{word-spacing:-10.297412pt;}
.wsb6{word-spacing:-10.291036pt;}
.wsae{word-spacing:-10.233651pt;}
.ws30{word-spacing:-10.106129pt;}
.wsa5{word-spacing:-9.978607pt;}
.ws3c{word-spacing:-9.914846pt;}
.ws80{word-spacing:-9.908470pt;}
.ws65{word-spacing:-9.851085pt;}
.ws107{word-spacing:-9.787324pt;}
.wsb8{word-spacing:-9.723563pt;}
.ws7{word-spacing:-9.669826pt;}
.wse9{word-spacing:-9.659802pt;}
.ws10a{word-spacing:-9.611644pt;}
.wsb5{word-spacing:-9.596041pt;}
.ws44{word-spacing:-9.532279pt;}
.ws9e{word-spacing:-9.468518pt;}
.wsff{word-spacing:-9.404757pt;}
.ws8{word-spacing:-9.340996pt;}
.wsa9{word-spacing:-9.213474pt;}
.wsc0{word-spacing:-9.149713pt;}
.wsbe{word-spacing:-9.085952pt;}
.ws3e{word-spacing:-9.022191pt;}
.ws72{word-spacing:-8.958430pt;}
.ws3a{word-spacing:-8.894669pt;}
.ws31{word-spacing:-8.830908pt;}
.ws58{word-spacing:-8.767147pt;}
.ws90{word-spacing:-8.575863pt;}
.wsb7{word-spacing:-8.512102pt;}
.ws73{word-spacing:-8.448341pt;}
.wsb{word-spacing:-8.384580pt;}
.ws91{word-spacing:-8.257058pt;}
.ws96{word-spacing:-8.193297pt;}
.ws4c{word-spacing:-8.129536pt;}
.ws86{word-spacing:-8.123160pt;}
.wse6{word-spacing:-8.065775pt;}
.ws59{word-spacing:-8.002014pt;}
.ws10{word-spacing:-7.938253pt;}
.ws36{word-spacing:-7.874492pt;}
.ws32{word-spacing:-7.810731pt;}
.ws8b{word-spacing:-7.746970pt;}
.ws43{word-spacing:-7.683209pt;}
.wsaf{word-spacing:-7.619447pt;}
.wsea{word-spacing:-7.613071pt;}
.ws93{word-spacing:-7.555686pt;}
.wsc1{word-spacing:-7.491925pt;}
.ws6e{word-spacing:-7.428164pt;}
.ws20{word-spacing:-7.364403pt;}
.wsa6{word-spacing:-7.300642pt;}
.ws89{word-spacing:-7.236881pt;}
.ws71{word-spacing:-7.173120pt;}
.ws13{word-spacing:-7.109359pt;}
.ws34{word-spacing:-7.045598pt;}
.wsec{word-spacing:-6.981837pt;}
.wsa1{word-spacing:-6.918076pt;}
.ws28{word-spacing:-6.854315pt;}
.wsa{word-spacing:-6.790554pt;}
.wsab{word-spacing:-6.726793pt;}
.ws41{word-spacing:-6.663031pt;}
.ws6f{word-spacing:-6.599270pt;}
.ws69{word-spacing:-6.535509pt;}
.wse{word-spacing:-6.471748pt;}
.ws81{word-spacing:-6.407987pt;}
.ws24{word-spacing:-6.344226pt;}
.wsfe{word-spacing:-6.280465pt;}
.ws83{word-spacing:-6.216704pt;}
.ws70{word-spacing:-6.152943pt;}
.ws2e{word-spacing:-6.089182pt;}
.ws101{word-spacing:-6.025421pt;}
.wsbd{word-spacing:-5.897899pt;}
.ws6d{word-spacing:-5.834138pt;}
.wsbb{word-spacing:-5.770377pt;}
.ws56{word-spacing:-5.706615pt;}
.ws82{word-spacing:-5.642854pt;}
.ws55{word-spacing:-5.579093pt;}
.wsaa{word-spacing:-5.451571pt;}
.ws85{word-spacing:-5.445195pt;}
.ws1c{word-spacing:-5.387810pt;}
.wscc{word-spacing:-5.366521pt;}
.ws6c{word-spacing:-5.324049pt;}
.ws7f{word-spacing:-5.260288pt;}
.wsdd{word-spacing:-5.207119pt;}
.ws60{word-spacing:-5.196527pt;}
.ws2d{word-spacing:-5.132766pt;}
.ws37{word-spacing:-5.069005pt;}
.ws9c{word-spacing:-5.062629pt;}
.wsd2{word-spacing:-4.994583pt;}
.wse0{word-spacing:-4.941450pt;}
.wsc4{word-spacing:-4.877722pt;}
.wsd4{word-spacing:-4.835182pt;}
.ws100{word-spacing:-4.813961pt;}
.ws84{word-spacing:-4.750199pt;}
.wsf{word-spacing:-4.686438pt;}
.ws57{word-spacing:-4.622677pt;}
.ws39{word-spacing:-4.558916pt;}
.wsd6{word-spacing:-4.516379pt;}
.wse4{word-spacing:-4.495155pt;}
.ws68{word-spacing:-4.431394pt;}
.ws2a{word-spacing:-4.303872pt;}
.ws22{word-spacing:-4.048828pt;}
.ws97{word-spacing:-3.985067pt;}
.ws42{word-spacing:-3.921306pt;}
.wsa7{word-spacing:-3.857545pt;}
.ws9{word-spacing:-3.730022pt;}
.ws108{word-spacing:-3.666261pt;}
.wse5{word-spacing:-3.602500pt;}
.ws3d{word-spacing:-3.538739pt;}
.ws3f{word-spacing:-3.474978pt;}
.wscd{word-spacing:-3.411217pt;}
.wseb{word-spacing:-3.283695pt;}
.ws33{word-spacing:-3.092412pt;}
.ws26{word-spacing:-3.028651pt;}
.wsa0{word-spacing:-2.964890pt;}
.ws99{word-spacing:-2.837367pt;}
.ws105{word-spacing:-2.773606pt;}
.ws4e{word-spacing:-2.646084pt;}
.ws27{word-spacing:-2.391040pt;}
.ws9f{word-spacing:-2.072235pt;}
.ws38{word-spacing:-1.817190pt;}
.ws14{word-spacing:-1.753429pt;}
.ws8d{word-spacing:-1.689668pt;}
.ws5f{word-spacing:-1.625907pt;}
.ws9d{word-spacing:-0.414447pt;}
.ws92{word-spacing:-0.286925pt;}
.ws10c{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.058182pt;}
.wsd9{word-spacing:-0.053134pt;}
.ws29{word-spacing:0.000000pt;}
.ws49{word-spacing:0.669491pt;}
.ws9a{word-spacing:1.562146pt;}
.ws74{word-spacing:1.689668pt;}
.ws9b{word-spacing:1.823567pt;}
.ws50{word-spacing:2.582323pt;}
.wscb{word-spacing:7.385607pt;}
.wsde{word-spacing:7.491875pt;}
.wsc9{word-spacing:7.545009pt;}
.wsdf{word-spacing:7.598143pt;}
.wsca{word-spacing:7.704411pt;}
.wsc7{word-spacing:7.757545pt;}
.wsd0{word-spacing:7.810678pt;}
.wsdb{word-spacing:7.863812pt;}
.wsd7{word-spacing:7.916946pt;}
.wsdc{word-spacing:7.970080pt;}
.wsc8{word-spacing:11.104978pt;}
.ws103{word-spacing:15.005042pt;}
.ws102{word-spacing:15.005101pt;}
.ws48{word-spacing:21.908303pt;}
.ws6{word-spacing:22.109109pt;}
.ws1{word-spacing:24.178129pt;}
.wsee{word-spacing:27.901843pt;}
.ws4{word-spacing:27.927269pt;}
.ws3{word-spacing:28.003782pt;}
.ws0{word-spacing:30.375687pt;}
.wsd3{word-spacing:30.923910pt;}
.ws109{word-spacing:31.127299pt;}
.ws10b{word-spacing:31.185481pt;}
.wsfc{word-spacing:32.550025pt;}
.wse1{word-spacing:39.000258pt;}
.wsda{word-spacing:39.744132pt;}
.wsd1{word-spacing:40.381739pt;}
.wsd8{word-spacing:40.647408pt;}
.wse3{word-spacing:41.019345pt;}
.wsd5{word-spacing:41.125613pt;}
.wse2{word-spacing:41.231881pt;}
.wsce{word-spacing:42.666495pt;}
.ws52{word-spacing:49.534444pt;}
.wsf8{word-spacing:71.960740pt;}
.ws8c{word-spacing:84.087860pt;}
.wsf9{word-spacing:142.289196pt;}
.wsf5{word-spacing:145.541011pt;}
.wsfb{word-spacing:168.176189pt;}
.wsf1{word-spacing:199.419112pt;}
.wsfa{word-spacing:208.339285pt;}
.wsef{word-spacing:210.832343pt;}
.wsf4{word-spacing:227.920309pt;}
.wsf2{word-spacing:239.397301pt;}
.wsf3{word-spacing:276.308582pt;}
.wsf0{word-spacing:297.094690pt;}
.wsf6{word-spacing:297.158451pt;}
._21{margin-left:-33.602082pt;}
._1f{margin-left:-31.880533pt;}
._20{margin-left:-30.158985pt;}
._23{margin-left:-11.094426pt;}
._2e{margin-left:-10.201771pt;}
._0{margin-left:-7.268741pt;}
._30{margin-left:-5.993540pt;}
._2{margin-left:-5.049862pt;}
._5{margin-left:-3.374548pt;}
._1{margin-left:-1.989340pt;}
._9{margin-left:-1.032941pt;}
._2a{width:0.930903pt;}
._3{width:1.836314pt;}
._11{width:3.328333pt;}
._3b{width:4.463245pt;}
._24{width:5.483452pt;}
._3e{width:6.783659pt;}
._3f{width:7.848880pt;}
._3d{width:8.751763pt;}
._42{width:9.728020pt;}
._41{width:10.933817pt;}
._40{width:12.430207pt;}
._32{width:13.542850pt;}
._e{width:15.302656pt;}
._f{width:16.616117pt;}
._16{width:18.707486pt;}
._10{width:19.740420pt;}
._19{width:20.717558pt;}
._28{width:21.717011pt;}
._33{width:22.609658pt;}
._6{width:24.127177pt;}
._7{width:26.129274pt;}
._38{width:27.034692pt;}
._a{width:27.991108pt;}
._4{width:28.921939pt;}
._15{width:30.031537pt;}
._3a{width:30.987878pt;}
._14{width:32.479887pt;}
._c{width:34.303460pt;}
._22{width:35.970818pt;}
._b{width:37.823059pt;}
._43{width:38.991520pt;}
._39{width:39.965406pt;}
._12{width:41.011113pt;}
._37{width:41.954782pt;}
._3c{width:43.038432pt;}
._13{width:44.097129pt;}
._8{width:45.091831pt;}
._36{width:47.310711pt;}
._44{width:48.318135pt;}
._1a{width:49.228332pt;}
._45{width:50.651799pt;}
._29{width:52.607668pt;}
._d{width:54.426441pt;}
._27{width:56.124123pt;}
._1d{width:57.767526pt;}
._35{width:58.813216pt;}
._1c{width:62.495422pt;}
._18{width:63.824828pt;}
._2f{width:65.307326pt;}
._4e{width:70.813331pt;}
._2d{width:80.466466pt;}
._31{width:84.164373pt;}
._4c{width:85.975401pt;}
._1b{width:86.906334pt;}
._34{width:99.068889pt;}
._4d{width:103.101645pt;}
._2c{width:112.346999pt;}
._49{width:151.878833pt;}
._4a{width:266.074931pt;}
._4b{width:286.797278pt;}
._48{width:361.997069pt;}
._46{width:367.225476pt;}
._47{width:382.923456pt;}
._25{width:999.990313pt;}
._1e{width:1167.694654pt;}
._2b{width:1726.649685pt;}
._17{width:1738.917314pt;}
._26{width:1830.388941pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:42.507369pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:162.205333pt;}
.y121{bottom:202.056000pt;}
.y33{bottom:204.912000pt;}
.y15f{bottom:207.166667pt;}
.y5b{bottom:207.473333pt;}
.yb{bottom:207.652000pt;}
.y103{bottom:209.142667pt;}
.yb1{bottom:211.364000pt;}
.y14f{bottom:215.910667pt;}
.y120{bottom:217.996000pt;}
.yc4{bottom:218.989333pt;}
.y32{bottom:224.172000pt;}
.y15e{bottom:226.428000pt;}
.y5a{bottom:226.734667pt;}
.y102{bottom:228.404000pt;}
.yb0{bottom:230.625333pt;}
.y85{bottom:231.189333pt;}
.yfa{bottom:231.230667pt;}
.y1cd{bottom:232.142667pt;}
.y11f{bottom:233.936000pt;}
.y14e{bottom:235.172000pt;}
.yd2{bottom:241.368000pt;}
.y31{bottom:243.433333pt;}
.y59{bottom:245.996000pt;}
.y11e{bottom:249.876000pt;}
.yaf{bottom:249.886667pt;}
.y84{bottom:250.450667pt;}
.yf9{bottom:250.490667pt;}
.y1cc{bottom:251.404000pt;}
.y14d{bottom:254.433333pt;}
.yc3{bottom:255.518667pt;}
.y98{bottom:258.449333pt;}
.yd1{bottom:260.628000pt;}
.y30{bottom:262.694667pt;}
.y58{bottom:265.256000pt;}
.y11d{bottom:265.816000pt;}
.yae{bottom:269.146667pt;}
.y83{bottom:269.712000pt;}
.yf8{bottom:269.752000pt;}
.y15d{bottom:270.064000pt;}
.y101{bottom:272.040000pt;}
.yc2{bottom:274.780000pt;}
.y97{bottom:277.710667pt;}
.yd0{bottom:279.889333pt;}
.y11c{bottom:281.757333pt;}
.y2f{bottom:281.956000pt;}
.y1cb{bottom:283.948000pt;}
.y14c{bottom:286.445333pt;}
.yad{bottom:288.408000pt;}
.y82{bottom:288.973333pt;}
.yf7{bottom:289.013333pt;}
.yc1{bottom:294.041333pt;}
.y57{bottom:294.809333pt;}
.y96{bottom:296.970667pt;}
.y11b{bottom:297.697333pt;}
.y2e{bottom:301.217333pt;}
.y14b{bottom:302.385333pt;}
.y1ca{bottom:303.209333pt;}
.y15c{bottom:306.601333pt;}
.yac{bottom:307.669333pt;}
.y81{bottom:308.234667pt;}
.yf6{bottom:308.274667pt;}
.y95{bottom:316.232000pt;}
.y14a{bottom:318.326667pt;}
.y11a{bottom:318.685333pt;}
.y2d{bottom:320.477333pt;}
.y1c9{bottom:322.470667pt;}
.ycf{bottom:323.526667pt;}
.y15b{bottom:325.862667pt;}
.yab{bottom:326.930667pt;}
.y80{bottom:327.494667pt;}
.yf5{bottom:327.536000pt;}
.y149{bottom:334.266667pt;}
.y94{bottom:335.493333pt;}
.yc0{bottom:337.677333pt;}
.y18f{bottom:337.945333pt;}
.y2c{bottom:339.738667pt;}
.y56{bottom:341.020000pt;}
.y15a{bottom:345.124000pt;}
.yaa{bottom:346.192000pt;}
.y7f{bottom:346.756000pt;}
.y119{bottom:349.226667pt;}
.y148{bottom:350.206667pt;}
.y93{bottom:354.754667pt;}
.y1c8{bottom:355.014667pt;}
.y18e{bottom:357.205333pt;}
.y2b{bottom:359.000000pt;}
.yf4{bottom:360.080000pt;}
.y55{bottom:360.281333pt;}
.y159{bottom:364.385333pt;}
.ya9{bottom:365.453333pt;}
.y7e{bottom:366.017333pt;}
.y147{bottom:366.146667pt;}
.y118{bottom:368.488000pt;}
.y92{bottom:374.016000pt;}
.y1c7{bottom:374.276000pt;}
.y18d{bottom:376.466667pt;}
.y75{bottom:376.726667pt;}
.y2a{bottom:378.261333pt;}
.yf3{bottom:379.341333pt;}
.y54{bottom:379.542667pt;}
.y146{bottom:382.086667pt;}
.y158{bottom:383.646667pt;}
.ya8{bottom:384.713333pt;}
.y7d{bottom:385.278667pt;}
.y117{bottom:387.749333pt;}
.ye7{bottom:390.010667pt;}
.y91{bottom:393.277333pt;}
.y1c6{bottom:393.537333pt;}
.y18c{bottom:395.728000pt;}
.y74{bottom:395.988000pt;}
.y29{bottom:397.522667pt;}
.y145{bottom:398.028000pt;}
.yf2{bottom:398.602667pt;}
.y53{bottom:398.802667pt;}
.ya7{bottom:403.974667pt;}
.y7c{bottom:404.540000pt;}
.y116{bottom:407.010667pt;}
.ye6{bottom:409.270667pt;}
.y157{bottom:410.892000pt;}
.y144{bottom:413.968000pt;}
.y18b{bottom:414.989333pt;}
.y28{bottom:416.784000pt;}
.yf1{bottom:417.864000pt;}
.y52{bottom:418.064000pt;}
.y90{bottom:422.830667pt;}
.y1c5{bottom:426.081333pt;}
.y73{bottom:428.532000pt;}
.y143{bottom:429.908000pt;}
.ya6{bottom:433.528000pt;}
.y18a{bottom:434.250667pt;}
.y27{bottom:436.044000pt;}
.y51{bottom:437.325333pt;}
.y115{bottom:438.574667pt;}
.y1c4{bottom:445.342667pt;}
.y142{bottom:445.848000pt;}
.y72{bottom:447.793333pt;}
.y7b{bottom:448.176000pt;}
.yf0{bottom:450.408000pt;}
.y156{bottom:453.106667pt;}
.y189{bottom:453.510667pt;}
.y114{bottom:454.514667pt;}
.y26{bottom:455.305333pt;}
.y50{bottom:456.586667pt;}
.y141{bottom:461.788000pt;}
.y1c3{bottom:464.604000pt;}
.ye5{bottom:467.054667pt;}
.y8f{bottom:469.040000pt;}
.yef{bottom:469.669333pt;}
.y113{bottom:470.454667pt;}
.y155{bottom:472.368000pt;}
.y188{bottom:472.772000pt;}
.y25{bottom:474.566667pt;}
.y4f{bottom:475.848000pt;}
.y140{bottom:477.728000pt;}
.ya5{bottom:479.738667pt;}
.y71{bottom:480.338667pt;}
.ye4{bottom:486.316000pt;}
.y8e{bottom:488.301333pt;}
.yee{bottom:488.930667pt;}
.y8{bottom:491.390667pt;}
.y112{bottom:491.442667pt;}
.y154{bottom:491.629333pt;}
.y187{bottom:492.033333pt;}
.ya{bottom:492.049333pt;}
.y13f{bottom:493.669333pt;}
.y24{bottom:493.828000pt;}
.y4e{bottom:495.109333pt;}
.y172{bottom:495.806667pt;}
.y1c2{bottom:497.149333pt;}
.ya4{bottom:499.000000pt;}
.y70{bottom:499.598667pt;}
.y1b1{bottom:506.101333pt;}
.y8d{bottom:507.562667pt;}
.y13e{bottom:509.609333pt;}
.y7{bottom:510.652000pt;}
.y153{bottom:510.890667pt;}
.y186{bottom:511.294667pt;}
.y9{bottom:511.310667pt;}
.y1a4{bottom:512.668000pt;}
.y23{bottom:513.089333pt;}
.y4d{bottom:514.369333pt;}
.y171{bottom:515.068000pt;}
.ye3{bottom:515.869333pt;}
.y1c1{bottom:516.409333pt;}
.ya3{bottom:518.261333pt;}
.yed{bottom:521.474667pt;}
.y111{bottom:521.985333pt;}
.y13d{bottom:525.549333pt;}
.y8c{bottom:526.824000pt;}
.y6{bottom:529.913333pt;}
.y152{bottom:530.152000pt;}
.y185{bottom:530.556000pt;}
.y1a3{bottom:531.929333pt;}
.y6f{bottom:532.144000pt;}
.y22{bottom:532.350667pt;}
.y4c{bottom:533.630667pt;}
.y170{bottom:534.329333pt;}
.ya2{bottom:537.521333pt;}
.yec{bottom:540.736000pt;}
.y110{bottom:541.246667pt;}
.y13c{bottom:541.489333pt;}
.y1b0{bottom:543.428000pt;}
.y8b{bottom:546.084000pt;}
.y41{bottom:546.977333pt;}
.y1c0{bottom:548.954667pt;}
.y151{bottom:549.412000pt;}
.y184{bottom:549.817333pt;}
.y1a2{bottom:551.190667pt;}
.y6e{bottom:551.405333pt;}
.y21{bottom:551.610667pt;}
.y4b{bottom:552.892000pt;}
.y16f{bottom:553.589333pt;}
.ya1{bottom:556.782667pt;}
.y13b{bottom:557.429333pt;}
.yeb{bottom:559.997333pt;}
.y10f{bottom:560.508000pt;}
.ye2{bottom:562.078667pt;}
.y8a{bottom:565.345333pt;}
.y1bf{bottom:568.216000pt;}
.y150{bottom:568.673333pt;}
.y183{bottom:569.077333pt;}
.y1a1{bottom:570.452000pt;}
.y20{bottom:570.872000pt;}
.y4a{bottom:572.153333pt;}
.y16e{bottom:572.850667pt;}
.y13a{bottom:573.369333pt;}
.ya0{bottom:576.044000pt;}
.yea{bottom:579.258667pt;}
.y10e{bottom:579.769333pt;}
.y1af{bottom:580.754667pt;}
.ye1{bottom:581.340000pt;}
.y40{bottom:581.842667pt;}
.y89{bottom:584.606667pt;}
.y1be{bottom:587.477333pt;}
.y6d{bottom:587.934667pt;}
.y182{bottom:588.338667pt;}
.y139{bottom:589.310667pt;}
.y1a0{bottom:589.713333pt;}
.y5{bottom:589.828000pt;}
.y1f{bottom:590.133333pt;}
.y49{bottom:591.414667pt;}
.y9f{bottom:595.305333pt;}
.ye9{bottom:598.520000pt;}
.y10d{bottom:599.029333pt;}
.ye0{bottom:600.601333pt;}
.y3f{bottom:601.104000pt;}
.y16d{bottom:602.404000pt;}
.y88{bottom:603.868000pt;}
.y138{bottom:605.250667pt;}
.y1bd{bottom:606.737333pt;}
.y6c{bottom:607.196000pt;}
.y181{bottom:607.600000pt;}
.y19f{bottom:608.973333pt;}
.y4{bottom:609.089333pt;}
.y1e{bottom:609.394667pt;}
.y48{bottom:610.676000pt;}
.y1ae{bottom:610.776000pt;}
.y9e{bottom:614.566667pt;}
.y10c{bottom:618.290667pt;}
.ydf{bottom:619.862667pt;}
.y3e{bottom:620.365333pt;}
.y137{bottom:621.190667pt;}
.y87{bottom:623.129333pt;}
.ybf{bottom:626.457333pt;}
.y180{bottom:626.861333pt;}
.y19e{bottom:628.234667pt;}
.y1d{bottom:628.656000pt;}
.y47{bottom:629.936000pt;}
.y9d{bottom:633.826667pt;}
.y6b{bottom:636.749333pt;}
.y136{bottom:637.130667pt;}
.y1bc{bottom:639.282667pt;}
.y3d{bottom:639.625333pt;}
.ye8{bottom:642.156000pt;}
.ybe{bottom:645.717333pt;}
.y19d{bottom:647.496000pt;}
.y1c{bottom:647.917333pt;}
.y1ad{bottom:648.102667pt;}
.y16c{bottom:648.614667pt;}
.y46{bottom:649.197333pt;}
.y10b{bottom:649.854667pt;}
.y135{bottom:653.070667pt;}
.y9c{bottom:653.088000pt;}
.yde{bottom:656.392000pt;}
.y1bb{bottom:658.544000pt;}
.ybd{bottom:664.978667pt;}
.y10a{bottom:665.794667pt;}
.y19c{bottom:666.757333pt;}
.y86{bottom:666.765333pt;}
.y1b{bottom:667.177333pt;}
.y16b{bottom:667.876000pt;}
.y45{bottom:668.458667pt;}
.y134{bottom:669.010667pt;}
.y17f{bottom:670.497333pt;}
.y9b{bottom:672.349333pt;}
.y3c{bottom:674.492000pt;}
.ydd{bottom:675.653333pt;}
.y109{bottom:681.736000pt;}
.y6a{bottom:682.958667pt;}
.ybc{bottom:684.240000pt;}
.y133{bottom:684.952000pt;}
.y1ac{bottom:685.429333pt;}
.y1a{bottom:686.438667pt;}
.y16a{bottom:687.136000pt;}
.y44{bottom:687.720000pt;}
.y17e{bottom:689.758667pt;}
.y1ba{bottom:691.088000pt;}
.y9a{bottom:691.610667pt;}
.yce{bottom:692.210667pt;}
.y3b{bottom:693.752000pt;}
.ydc{bottom:694.914667pt;}
.y132{bottom:700.892000pt;}
.y69{bottom:702.220000pt;}
.y100{bottom:703.269333pt;}
.ybb{bottom:703.501333pt;}
.y19{bottom:705.700000pt;}
.y169{bottom:706.397333pt;}
.y1b9{bottom:710.349333pt;}
.y19b{bottom:710.393333pt;}
.ycd{bottom:711.472000pt;}
.y3a{bottom:713.013333pt;}
.y108{bottom:713.616000pt;}
.ydb{bottom:714.176000pt;}
.y131{bottom:716.832000pt;}
.y43{bottom:717.273333pt;}
.y68{bottom:721.481333pt;}
.yff{bottom:722.530667pt;}
.y1ab{bottom:722.756000pt;}
.yba{bottom:722.762667pt;}
.y3{bottom:722.838667pt;}
.y18{bottom:724.961333pt;}
.y168{bottom:725.658667pt;}
.y175{bottom:725.930667pt;}
.y19a{bottom:729.654667pt;}
.y39{bottom:732.274667pt;}
.y130{bottom:732.772000pt;}
.yda{bottom:733.436000pt;}
.y99{bottom:735.246667pt;}
.y67{bottom:740.742667pt;}
.ycc{bottom:741.025333pt;}
.yfe{bottom:741.792000pt;}
.yb9{bottom:742.024000pt;}
.y1b8{bottom:742.893333pt;}
.y17{bottom:744.222667pt;}
.y167{bottom:744.920000pt;}
.y107{bottom:745.496000pt;}
.y12f{bottom:748.712000pt;}
.yd9{bottom:752.697333pt;}
.y173{bottom:756.081333pt;}
.y66{bottom:760.004000pt;}
.y1aa{bottom:760.082667pt;}
.y2{bottom:760.997333pt;}
.yfd{bottom:761.053333pt;}
.yb8{bottom:761.284000pt;}
.y106{bottom:761.436000pt;}
.y1b7{bottom:762.154667pt;}
.y16{bottom:763.482667pt;}
.y166{bottom:764.181333pt;}
.y12e{bottom:764.653333pt;}
.y192{bottom:765.826667pt;}
.y176{bottom:765.918667pt;}
.y38{bottom:767.140000pt;}
.y174{bottom:767.293333pt;}
.y190{bottom:771.444000pt;}
.y65{bottom:779.265333pt;}
.yfc{bottom:780.314667pt;}
.yb7{bottom:780.545333pt;}
.y12d{bottom:780.593333pt;}
.y191{bottom:782.656000pt;}
.y15{bottom:782.744000pt;}
.y165{bottom:783.442667pt;}
.yd8{bottom:785.242667pt;}
.y37{bottom:786.401333pt;}
.ycb{bottom:787.234667pt;}
.y105{bottom:793.317333pt;}
.y1b6{bottom:794.700000pt;}
.y12c{bottom:796.533333pt;}
.y1a9{bottom:797.409333pt;}
.y64{bottom:798.525333pt;}
.y1{bottom:799.156000pt;}
.yb6{bottom:799.806667pt;}
.y14{bottom:802.005333pt;}
.y164{bottom:802.702667pt;}
.yd7{bottom:804.504000pt;}
.y36{bottom:805.662667pt;}
.yca{bottom:806.496000pt;}
.y12b{bottom:812.473333pt;}
.y1b5{bottom:813.961333pt;}
.y104{bottom:814.305333pt;}
.y63{bottom:817.786667pt;}
.yb5{bottom:819.068000pt;}
.y13{bottom:821.266667pt;}
.y193{bottom:821.838667pt;}
.yd6{bottom:823.764000pt;}
.yfb{bottom:823.950667pt;}
.y35{bottom:824.924000pt;}
.yc9{bottom:825.757333pt;}
.y12a{bottom:828.413333pt;}
.y177{bottom:831.948000pt;}
.y1b4{bottom:833.221333pt;}
.y1a8{bottom:834.736000pt;}
.y62{bottom:837.048000pt;}
.yb4{bottom:838.329333pt;}
.y12{bottom:840.528000pt;}
.y194{bottom:842.709333pt;}
.yd5{bottom:843.025333pt;}
.y34{bottom:844.184000pt;}
.y129{bottom:844.353333pt;}
.y7a{bottom:844.848000pt;}
.yc8{bottom:845.018667pt;}
.y163{bottom:846.340000pt;}
.y178{bottom:853.480000pt;}
.y61{bottom:856.309333pt;}
.yb3{bottom:857.590667pt;}
.y11{bottom:859.789333pt;}
.y128{bottom:860.294667pt;}
.yd4{bottom:862.286667pt;}
.y79{bottom:864.108000pt;}
.y195{bottom:864.242667pt;}
.yc7{bottom:864.278667pt;}
.y1b3{bottom:865.766667pt;}
.y1a7{bottom:872.062667pt;}
.y179{bottom:875.013333pt;}
.y60{bottom:875.570667pt;}
.y127{bottom:876.234667pt;}
.y10{bottom:879.049333pt;}
.yd3{bottom:881.548000pt;}
.y162{bottom:882.877333pt;}
.y78{bottom:883.369333pt;}
.y1b2{bottom:885.028000pt;}
.y196{bottom:885.776000pt;}
.yb2{bottom:887.144000pt;}
.y126{bottom:892.174667pt;}
.y5f{bottom:894.830667pt;}
.y17a{bottom:896.546667pt;}
.yf{bottom:898.310667pt;}
.yc6{bottom:900.809333pt;}
.y161{bottom:902.138667pt;}
.y77{bottom:902.630667pt;}
.y197{bottom:907.310667pt;}
.y125{bottom:908.114667pt;}
.y1a6{bottom:909.389333pt;}
.y5e{bottom:914.092000pt;}
.ye{bottom:917.572000pt;}
.y17b{bottom:918.080000pt;}
.yc5{bottom:920.070667pt;}
.y124{bottom:924.054667pt;}
.y198{bottom:928.844000pt;}
.y160{bottom:929.384000pt;}
.y76{bottom:932.184000pt;}
.y5d{bottom:933.353333pt;}
.yd{bottom:936.833333pt;}
.y1a5{bottom:939.409333pt;}
.y17c{bottom:939.613333pt;}
.y123{bottom:939.994667pt;}
.y199{bottom:950.377333pt;}
.y5c{bottom:952.614667pt;}
.y122{bottom:955.936000pt;}
.yc{bottom:971.876000pt;}
.y17d{bottom:972.776000pt;}
.hd{height:31.922907pt;}
.hb{height:31.923034pt;}
.ha{height:36.981171pt;}
.h6{height:40.494579pt;}
.h7{height:40.785489pt;}
.h8{height:41.600035pt;}
.hc{height:43.038720pt;}
.he{height:44.313941pt;}
.h4{height:47.884561pt;}
.h3{height:53.176581pt;}
.h5{height:53.712173pt;}
.h9{height:64.454458pt;}
.h2{height:66.872420pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:132.284000pt;}
.x19{left:133.398667pt;}
.x25{left:140.253333pt;}
.x2a{left:143.373333pt;}
.x31{left:148.766667pt;}
.x1d{left:150.132000pt;}
.x23{left:151.109333pt;}
.x22{left:153.977333pt;}
.x6{left:155.425333pt;}
.x24{left:157.209333pt;}
.x1a{left:160.045333pt;}
.x36{left:164.361333pt;}
.x4{left:166.154667pt;}
.x1e{left:167.057333pt;}
.xe{left:171.304000pt;}
.x34{left:173.130667pt;}
.x2f{left:178.749333pt;}
.x1f{left:183.750667pt;}
.x2e{left:186.553333pt;}
.x28{left:190.186667pt;}
.xb{left:191.580000pt;}
.x16{left:194.496000pt;}
.x1{left:198.221333pt;}
.x20{left:200.378667pt;}
.x1b{left:210.569333pt;}
.x5{left:226.626667pt;}
.xf{left:242.568000pt;}
.x11{left:246.276000pt;}
.x3{left:250.100000pt;}
.x13{left:255.002667pt;}
.x2b{left:268.450667pt;}
.x26{left:281.877333pt;}
.x8{left:286.158667pt;}
.x14{left:287.945333pt;}
.x12{left:290.161333pt;}
.x18{left:291.352000pt;}
.x29{left:295.097333pt;}
.x2{left:307.652000pt;}
.x27{left:308.993333pt;}
.x1c{left:310.142667pt;}
.x17{left:326.025333pt;}
.x10{left:331.560000pt;}
.x35{left:343.870667pt;}
.x21{left:347.650667pt;}
.x30{left:365.100000pt;}
.x2c{left:374.106667pt;}
.x15{left:407.945333pt;}
.xc{left:409.901333pt;}
.xd{left:411.846667pt;}
.xa{left:412.933333pt;}
.x32{left:449.936000pt;}
.x7{left:500.788000pt;}
.x33{left:561.658667pt;}
.x2d{left:583.038667pt;}
}




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