
    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_c140a2800ade9cd68c113e28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_b84d7b187e692cd4f014c37a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_f36cc87c979b6fe51d36a017.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0d2be17eb67c726c332c1ced.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887091;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_4b0a3d566f0fc24be43df85c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_ce9c4ba5d1290e6ebfc0342a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_153e96740f438ec358a96a6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e1943871e2aab7f5a3afb13.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5bd7f51ec4888b6798af2e17.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fff95f0d4f453f33099a3b9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_00f2ab968dbeb432778c2823.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.876000;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_40154c39436e848e0528c5e2.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_25ae91f35fb45b4776f57ef9.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_d092f1dacd3b698cad95d6ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_29ad01d028868a7db0d85566.woff2')format("woff");}.fff{font-family:fff;line-height:0.673000;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_eee6392a367aee0e8c441ef5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_aa3b4f981b8431cbac50cfdc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009509px;}
.lsf{letter-spacing:0.032222px;}
.lse{letter-spacing:0.044159px;}
.ls6{letter-spacing:0.050159px;}
.ls4{letter-spacing:0.051067px;}
.ls7{letter-spacing:0.053579px;}
.lsc{letter-spacing:0.057067px;}
.ls9{letter-spacing:2.996983px;}
.lsd{letter-spacing:2.997509px;}
.ls8{letter-spacing:3.005447px;}
.ls10{letter-spacing:3.011447px;}
.ls5{letter-spacing:4.872476px;}
.ls3{letter-spacing:8.304065px;}
.lsa{letter-spacing:16.659067px;}
.ls1{letter-spacing:29.887800px;}
.ls2{letter-spacing:29.892583px;}
.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;}
}
.ws71{word-spacing:-29.887800px;}
.ws11{word-spacing:-24.101616px;}
.ws1a{word-spacing:-23.744747px;}
.ws1b{word-spacing:-23.741663px;}
.ws1c{word-spacing:-23.736829px;}
.ws18{word-spacing:-21.280114px;}
.ws5f{word-spacing:-16.737168px;}
.ws85{word-spacing:-16.617617px;}
.ws7d{word-spacing:-16.378514px;}
.ws10c{word-spacing:-16.318739px;}
.wsb9{word-spacing:-15.840534px;}
.wsab{word-spacing:-15.661207px;}
.wsf6{word-spacing:-15.601432px;}
.ws108{word-spacing:-15.541656px;}
.ws43{word-spacing:-15.481880px;}
.wscc{word-spacing:-15.422105px;}
.ws33{word-spacing:-15.242778px;}
.ws56{word-spacing:-15.183002px;}
.wsa5{word-spacing:-15.123227px;}
.ws23{word-spacing:-15.063552px;}
.ws3d{word-spacing:-15.003676px;}
.ws31{word-spacing:-14.943900px;}
.wsb3{word-spacing:-14.585246px;}
.wsc3{word-spacing:-14.346144px;}
.wscb{word-spacing:-14.107042px;}
.ws44{word-spacing:-13.987490px;}
.wse9{word-spacing:-13.927715px;}
.wsf8{word-spacing:-13.867939px;}
.wsce{word-spacing:-13.748388px;}
.ws9d{word-spacing:-13.688612px;}
.wsf3{word-spacing:-13.628837px;}
.wsa3{word-spacing:-13.569061px;}
.ws36{word-spacing:-13.449510px;}
.ws84{word-spacing:-13.389734px;}
.wsb8{word-spacing:-13.270183px;}
.ws97{word-spacing:-13.210408px;}
.wsa7{word-spacing:-13.150632px;}
.wsdf{word-spacing:-13.031081px;}
.ws57{word-spacing:-12.971305px;}
.ws2f{word-spacing:-12.911530px;}
.ws9b{word-spacing:-12.851754px;}
.ws5b{word-spacing:-12.791978px;}
.wsea{word-spacing:-12.672427px;}
.wse3{word-spacing:-12.612652px;}
.wsa2{word-spacing:-12.552876px;}
.ws80{word-spacing:-12.433325px;}
.ws102{word-spacing:-12.373549px;}
.ws70{word-spacing:-12.313774px;}
.wsa8{word-spacing:-12.253998px;}
.wsc1{word-spacing:-12.194222px;}
.ws6e{word-spacing:-12.134447px;}
.wsd6{word-spacing:-12.074671px;}
.ws64{word-spacing:-12.014896px;}
.wsb4{word-spacing:-11.955120px;}
.ws58{word-spacing:-11.835569px;}
.ws8a{word-spacing:-11.775793px;}
.wsa1{word-spacing:-11.596466px;}
.wsf1{word-spacing:-11.536691px;}
.ws107{word-spacing:-11.476915px;}
.wsd0{word-spacing:-11.357364px;}
.wsb2{word-spacing:-11.237813px;}
.wsf5{word-spacing:-11.178037px;}
.wsb7{word-spacing:-11.118262px;}
.wsac{word-spacing:-11.058486px;}
.ws69{word-spacing:-10.938935px;}
.wsdb{word-spacing:-10.759608px;}
.wse1{word-spacing:-10.699832px;}
.wsc7{word-spacing:-10.640057px;}
.ws106{word-spacing:-10.580281px;}
.wsd2{word-spacing:-10.460730px;}
.ws79{word-spacing:-10.281403px;}
.wsec{word-spacing:-10.221628px;}
.wsb1{word-spacing:-10.161852px;}
.ws4b{word-spacing:-10.042301px;}
.ws15{word-spacing:-9.982525px;}
.wsbb{word-spacing:-9.980734px;}
.ws41{word-spacing:-9.922750px;}
.wsf9{word-spacing:-9.862974px;}
.wsc5{word-spacing:-9.743423px;}
.ws87{word-spacing:-9.683647px;}
.ws9a{word-spacing:-9.564096px;}
.ws82{word-spacing:-9.504320px;}
.ws51{word-spacing:-9.444545px;}
.wsfc{word-spacing:-9.384769px;}
.ws8e{word-spacing:-9.324994px;}
.ws38{word-spacing:-9.265218px;}
.wscf{word-spacing:-9.205442px;}
.wsfd{word-spacing:-9.145667px;}
.ws68{word-spacing:-9.085891px;}
.ws67{word-spacing:-9.026116px;}
.wsae{word-spacing:-8.966340px;}
.ws8d{word-spacing:-8.906564px;}
.ws77{word-spacing:-8.846789px;}
.ws4a{word-spacing:-8.787013px;}
.ws49{word-spacing:-8.727238px;}
.ws47{word-spacing:-8.667462px;}
.wse5{word-spacing:-8.607686px;}
.wsa0{word-spacing:-8.368584px;}
.ws7e{word-spacing:-8.308808px;}
.ws6d{word-spacing:-8.249033px;}
.ws19{word-spacing:-8.189257px;}
.ws54{word-spacing:-8.129482px;}
.wsbf{word-spacing:-8.069706px;}
.wsbc{word-spacing:-8.009930px;}
.wse6{word-spacing:-7.950155px;}
.ws52{word-spacing:-7.890379px;}
.ws101{word-spacing:-7.830604px;}
.wsfb{word-spacing:-7.651277px;}
.wsf2{word-spacing:-7.531726px;}
.ws5c{word-spacing:-7.471950px;}
.ws5d{word-spacing:-7.412174px;}
.ws46{word-spacing:-7.352399px;}
.ws89{word-spacing:-7.292623px;}
.wsef{word-spacing:-7.173072px;}
.wsb6{word-spacing:-7.113296px;}
.wsf4{word-spacing:-7.053521px;}
.ws100{word-spacing:-6.993745px;}
.wsc6{word-spacing:-6.874194px;}
.ws98{word-spacing:-6.814418px;}
.wsda{word-spacing:-6.754643px;}
.ws95{word-spacing:-6.694867px;}
.wsed{word-spacing:-6.635092px;}
.ws75{word-spacing:-6.575316px;}
.wseb{word-spacing:-6.515540px;}
.wsee{word-spacing:-6.455765px;}
.wsf7{word-spacing:-6.336214px;}
.ws73{word-spacing:-6.216662px;}
.ws105{word-spacing:-6.156887px;}
.ws9f{word-spacing:-6.097111px;}
.ws10a{word-spacing:-6.037336px;}
.wsa6{word-spacing:-5.977560px;}
.wsc8{word-spacing:-5.917784px;}
.wsdc{word-spacing:-5.798233px;}
.ws55{word-spacing:-5.738458px;}
.wsff{word-spacing:-5.379804px;}
.ws3b{word-spacing:-5.320028px;}
.ws45{word-spacing:-5.260253px;}
.ws34{word-spacing:-5.200477px;}
.wsc2{word-spacing:-5.140702px;}
.ws81{word-spacing:-5.080926px;}
.wsba{word-spacing:-5.021150px;}
.wsdd{word-spacing:-4.901599px;}
.ws65{word-spacing:-4.782048px;}
.ws8c{word-spacing:-4.722272px;}
.wsaa{word-spacing:-4.542946px;}
.wsde{word-spacing:-4.483170px;}
.wsfe{word-spacing:-4.363619px;}
.ws7a{word-spacing:-4.244068px;}
.ws62{word-spacing:-4.064741px;}
.wsd5{word-spacing:-3.945190px;}
.ws7b{word-spacing:-3.885414px;}
.ws104{word-spacing:-3.825638px;}
.ws59{word-spacing:-3.706087px;}
.wsa4{word-spacing:-3.646312px;}
.wsb0{word-spacing:-3.586536px;}
.ws8f{word-spacing:-3.526760px;}
.wsa9{word-spacing:-3.466985px;}
.ws4f{word-spacing:-3.407209px;}
.ws7c{word-spacing:-3.227882px;}
.wsd1{word-spacing:-3.168107px;}
.wsbe{word-spacing:-3.108331px;}
.ws3f{word-spacing:-3.048556px;}
.wsd9{word-spacing:-2.869229px;}
.ws1f{word-spacing:-2.582316px;}
.wsf0{word-spacing:-2.570351px;}
.ws88{word-spacing:-2.391024px;}
.ws91{word-spacing:-2.271473px;}
.wsc4{word-spacing:-2.211697px;}
.ws103{word-spacing:-2.151922px;}
.ws3a{word-spacing:-1.912819px;}
.wsb5{word-spacing:-1.793268px;}
.ws6f{word-spacing:-1.315063px;}
.ws2a{word-spacing:-1.183565px;}
.ws53{word-spacing:-1.135736px;}
.wsd3{word-spacing:-1.075961px;}
.ws4{word-spacing:-0.537984px;}
.ws92{word-spacing:-0.478205px;}
.ws93{word-spacing:-0.358654px;}
.ws7{word-spacing:-0.322790px;}
.wse4{word-spacing:-0.298878px;}
.ws42{word-spacing:-0.179327px;}
.wse2{word-spacing:-0.119551px;}
.ws16{word-spacing:0.000000px;}
.ws6a{word-spacing:0.004783px;}
.ws32{word-spacing:0.059776px;}
.ws5{word-spacing:0.161395px;}
.ws3c{word-spacing:0.358654px;}
.wsf{word-spacing:0.376589px;}
.ws30{word-spacing:0.418429px;}
.ws4d{word-spacing:0.836858px;}
.ws9c{word-spacing:1.853044px;}
.ws35{word-spacing:2.151922px;}
.ws0{word-spacing:2.169140px;}
.ws83{word-spacing:2.211697px;}
.ws6{word-spacing:2.528525px;}
.ws8{word-spacing:2.851315px;}
.ws96{word-spacing:2.929004px;}
.ws109{word-spacing:3.168107px;}
.ws1{word-spacing:3.299635px;}
.ws24{word-spacing:3.335501px;}
.ws7f{word-spacing:3.347434px;}
.ws10{word-spacing:3.389299px;}
.wsc0{word-spacing:3.646312px;}
.ws94{word-spacing:4.064741px;}
.wse{word-spacing:4.303872px;}
.ws63{word-spacing:4.602721px;}
.ws1e{word-spacing:4.662497px;}
.ws9{word-spacing:4.841856px;}
.ws10b{word-spacing:4.901599px;}
.ws3{word-spacing:4.949453px;}
.wsc{word-spacing:5.379840px;}
.ws78{word-spacing:5.798233px;}
.ws66{word-spacing:6.097111px;}
.ws17{word-spacing:6.156887px;}
.ws40{word-spacing:6.276438px;}
.ws99{word-spacing:6.575316px;}
.ws2{word-spacing:6.742733px;}
.ws48{word-spacing:6.814464px;}
.ws37{word-spacing:6.933970px;}
.wsad{word-spacing:7.352399px;}
.ws5e{word-spacing:7.412174px;}
.ws76{word-spacing:7.471950px;}
.wse8{word-spacing:7.711052px;}
.ws25{word-spacing:7.746970px;}
.wscd{word-spacing:7.931570px;}
.ws20{word-spacing:8.177334px;}
.wsca{word-spacing:8.262278px;}
.ws86{word-spacing:9.026116px;}
.wsfa{word-spacing:9.085891px;}
.wse0{word-spacing:9.265218px;}
.ws13{word-spacing:9.743423px;}
.ws4e{word-spacing:9.756786px;}
.ws6b{word-spacing:9.801608px;}
.ws6c{word-spacing:9.803830px;}
.ws60{word-spacing:9.862974px;}
.ws61{word-spacing:9.922750px;}
.ws74{word-spacing:10.042301px;}
.ws2e{word-spacing:10.114099px;}
.wsb{word-spacing:10.221696px;}
.wsd{word-spacing:10.329293px;}
.ws72{word-spacing:10.460730px;}
.ws9e{word-spacing:10.520506px;}
.ws2d{word-spacing:10.759680px;}
.ws50{word-spacing:10.959066px;}
.wsa{word-spacing:11.297664px;}
.ws5a{word-spacing:11.357364px;}
.ws26{word-spacing:11.728051px;}
.wsd7{word-spacing:11.775793px;}
.ws8b{word-spacing:12.134447px;}
.wsd8{word-spacing:12.373549px;}
.ws4c{word-spacing:12.502957px;}
.wsd4{word-spacing:13.031081px;}
.ws90{word-spacing:13.509286px;}
.wsaf{word-spacing:13.569061px;}
.wsbd{word-spacing:14.047266px;}
.ws3e{word-spacing:14.107042px;}
.ws27{word-spacing:15.117350px;}
.ws39{word-spacing:15.362329px;}
.wse7{word-spacing:18.937037px;}
.wsc9{word-spacing:23.296044px;}
.ws2c{word-spacing:24.267514px;}
.ws29{word-spacing:28.459354px;}
.ws2b{word-spacing:36.744307px;}
.ws12{word-spacing:38.555262px;}
.ws28{word-spacing:41.586163px;}
.ws1d{word-spacing:61.974920px;}
.ws22{word-spacing:79.029850px;}
.ws21{word-spacing:253.261776px;}
.ws14{word-spacing:2373.194656px;}
._2a{margin-left:-35.040467px;}
._23{margin-left:-31.501741px;}
._21{margin-left:-29.887800px;}
._28{margin-left:-28.214083px;}
._24{margin-left:-14.536427px;}
._22{margin-left:-9.982525px;}
._46{margin-left:-7.932139px;}
._15{margin-left:-5.762158px;}
._27{margin-left:-4.746389px;}
._4{margin-left:-3.586560px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.219444px;}
._5{width:1.506355px;}
._1{width:2.582310px;}
._29{width:3.994009px;}
._48{width:12.236195px;}
._9{width:13.700659px;}
._45{width:14.943902px;}
._26{width:16.299443px;}
._47{width:17.546702px;}
._7{width:18.596314px;}
._1c{width:19.750064px;}
._13{width:20.819738px;}
._8{width:22.451852px;}
._6{width:23.491955px;}
._3f{width:24.717132px;}
._d{width:26.486732px;}
._44{width:27.507330px;}
._a{width:28.925620px;}
._49{width:29.959529px;}
._2{width:31.131341px;}
._40{width:32.457181px;}
._19{width:33.463374px;}
._16{width:34.997335px;}
._42{width:36.271824px;}
._10{width:37.658628px;}
._c{width:39.201101px;}
._18{width:41.281340px;}
._1a{width:42.796217px;}
._4c{width:43.928972px;}
._b{width:45.316199px;}
._41{width:46.469560px;}
._20{width:48.137702px;}
._4a{width:49.183387px;}
._1b{width:50.443238px;}
._4b{width:53.200291px;}
._f{width:55.292430px;}
._1f{width:57.328038px;}
._1d{width:58.609231px;}
._43{width:59.774257px;}
._11{width:61.030888px;}
._3a{width:63.751104px;}
._25{width:65.866162px;}
._17{width:68.383286px;}
._3e{width:71.732803px;}
._2f{width:77.487826px;}
._2b{width:86.076536px;}
._3d{width:92.049062px;}
._12{width:95.772656px;}
._39{width:112.803727px;}
._3b{width:115.218253px;}
._3c{width:134.280806px;}
._31{width:164.004230px;}
._34{width:174.680246px;}
._2e{width:188.034196px;}
._37{width:192.899971px;}
._36{width:212.912976px;}
._33{width:216.726872px;}
._30{width:217.970026px;}
._32{width:232.979779px;}
._35{width:237.869447px;}
._38{width:239.381789px;}
._2c{width:353.320787px;}
._2d{width:419.983018px;}
._14{width:1318.765631px;}
._e{width:2304.991296px;}
._1e{width:2370.385802px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.yba{bottom:108.000000px;}
.y29{bottom:108.093000px;}
.y105{bottom:108.112500px;}
.y6e{bottom:113.547000px;}
.y96{bottom:116.148000px;}
.y1ba{bottom:116.902500px;}
.y18a{bottom:125.163000px;}
.yb9{bottom:125.932500px;}
.y28{bottom:126.025500px;}
.y104{bottom:126.045000px;}
.y6d{bottom:131.479500px;}
.ydc{bottom:133.434000px;}
.y95{bottom:134.080500px;}
.y1b9{bottom:134.835000px;}
.y189{bottom:143.095500px;}
.yb8{bottom:143.865000px;}
.y27{bottom:143.958000px;}
.y103{bottom:143.977500px;}
.ydb{bottom:151.368000px;}
.y94{bottom:152.013000px;}
.y1b8{bottom:152.769000px;}
.y188{bottom:161.028000px;}
.y6c{bottom:161.367000px;}
.y12c{bottom:161.797500px;}
.y164{bottom:161.799000px;}
.y26{bottom:161.890500px;}
.y102{bottom:161.910000px;}
.yda{bottom:169.300500px;}
.y1b7{bottom:170.701500px;}
.yb7{bottom:171.459000px;}
.y187{bottom:178.962000px;}
.y6b{bottom:179.299500px;}
.y93{bottom:179.607000px;}
.y12b{bottom:179.731500px;}
.y25{bottom:179.823000px;}
.y101{bottom:179.842500px;}
.yd9{bottom:187.233000px;}
.y1b6{bottom:188.634000px;}
.y163{bottom:189.393000px;}
.y1de{bottom:191.787000px;}
.y6a{bottom:197.232000px;}
.y12a{bottom:197.664000px;}
.y24{bottom:197.757000px;}
.y100{bottom:197.776500px;}
.y186{bottom:206.556000px;}
.y1b5{bottom:206.566500px;}
.y146{bottom:206.742000px;}
.y1dd{bottom:209.719500px;}
.yb6{bottom:212.995500px;}
.yd8{bottom:214.827000px;}
.y129{bottom:215.596500px;}
.y23{bottom:215.689500px;}
.yff{bottom:215.709000px;}
.y92{bottom:218.473500px;}
.y1b4{bottom:224.499000px;}
.y69{bottom:227.121000px;}
.y185{bottom:227.476500px;}
.y1dc{bottom:227.652000px;}
.y162{bottom:231.003000px;}
.y128{bottom:233.529000px;}
.y22{bottom:233.622000px;}
.yfe{bottom:233.641500px;}
.y145{bottom:234.336000px;}
.y91{bottom:236.406000px;}
.yb5{bottom:242.143500px;}
.y1b3{bottom:242.431500px;}
.y68{bottom:245.053500px;}
.y1db{bottom:245.586000px;}
.y161{bottom:248.935500px;}
.y127{bottom:251.461500px;}
.y21{bottom:251.554500px;}
.yfd{bottom:251.574000px;}
.yd7{bottom:256.681500px;}
.y1da{bottom:263.518500px;}
.y90{bottom:264.000000px;}
.y160{bottom:266.868000px;}
.y184{bottom:269.331000px;}
.y126{bottom:269.394000px;}
.y20{bottom:269.487000px;}
.yfc{bottom:269.506500px;}
.y1b2{bottom:270.025500px;}
.yb4{bottom:271.291500px;}
.y144{bottom:273.202500px;}
.yd6{bottom:274.614000px;}
.y67{bottom:274.941000px;}
.y15f{bottom:284.800500px;}
.y183{bottom:287.263500px;}
.y125{bottom:287.328000px;}
.y1f{bottom:287.419500px;}
.yfb{bottom:287.439000px;}
.y1d9{bottom:291.112500px;}
.y143{bottom:291.135000px;}
.yd5{bottom:292.546500px;}
.y66{bottom:292.873500px;}
.yb3{bottom:300.441000px;}
.y15e{bottom:302.733000px;}
.y182{bottom:305.197500px;}
.y124{bottom:305.260500px;}
.y1e{bottom:305.353500px;}
.yfa{bottom:305.373000px;}
.y8f{bottom:305.854500px;}
.yd4{bottom:310.479000px;}
.y1b1{bottom:311.880000px;}
.y15d{bottom:320.665500px;}
.y142{bottom:321.022500px;}
.y65{bottom:322.762500px;}
.y181{bottom:323.130000px;}
.y123{bottom:323.193000px;}
.y1d{bottom:323.286000px;}
.yf9{bottom:323.305500px;}
.y8e{bottom:323.787000px;}
.yb2{bottom:329.589000px;}
.y1b0{bottom:329.814000px;}
.y1d8{bottom:332.967000px;}
.y15c{bottom:338.599500px;}
.y64{bottom:340.695000px;}
.y180{bottom:341.062500px;}
.y122{bottom:341.125500px;}
.y1c{bottom:341.218500px;}
.yf8{bottom:341.238000px;}
.y8d{bottom:341.719500px;}
.yd3{bottom:343.356000px;}
.y1af{bottom:347.746500px;}
.y1d7{bottom:350.899500px;}
.y141{bottom:350.910000px;}
.y15b{bottom:356.532000px;}
.y63{bottom:358.627500px;}
.y1b{bottom:359.151000px;}
.yf7{bottom:359.170500px;}
.y8c{bottom:359.652000px;}
.yb1{bottom:360.616500px;}
.yd2{bottom:361.288500px;}
.y1ae{bottom:365.679000px;}
.y121{bottom:368.719500px;}
.y1d6{bottom:368.832000px;}
.y17f{bottom:373.939500px;}
.y15a{bottom:374.464500px;}
.y8b{bottom:377.584500px;}
.y140{bottom:380.799000px;}
.y1ad{bottom:383.611500px;}
.yf6{bottom:386.764500px;}
.yb0{bottom:388.210500px;}
.y62{bottom:388.515000px;}
.yd1{bottom:391.177500px;}
.y17e{bottom:391.872000px;}
.y1a{bottom:392.028000px;}
.y159{bottom:392.397000px;}
.y8a{bottom:395.518500px;}
.y1ac{bottom:401.544000px;}
.y1d5{bottom:404.697000px;}
.y61{bottom:406.447500px;}
.y120{bottom:406.917000px;}
.y17d{bottom:409.804500px;}
.y19{bottom:409.960500px;}
.y158{bottom:410.329500px;}
.y13f{bottom:410.686500px;}
.y89{bottom:413.451000px;}
.y1ab{bottom:419.476500px;}
.yd0{bottom:421.065000px;}
.y1d4{bottom:422.629500px;}
.y11f{bottom:424.849500px;}
.yf5{bottom:425.629500px;}
.yaf{bottom:426.757500px;}
.y17c{bottom:427.737000px;}
.y18{bottom:427.893000px;}
.y157{bottom:428.262000px;}
.y88{bottom:431.383500px;}
.y1aa{bottom:437.410500px;}
.ycf{bottom:438.997500px;}
.y60{bottom:439.324500px;}
.y13e{bottom:440.574000px;}
.yf4{bottom:443.563500px;}
.yae{bottom:444.690000px;}
.y17b{bottom:445.669500px;}
.y17{bottom:445.825500px;}
.y156{bottom:446.196000px;}
.y87{bottom:449.316000px;}
.y1d3{bottom:450.223500px;}
.y11e{bottom:452.443500px;}
.y1f1{bottom:453.235500px;}
.y1a9{bottom:455.343000px;}
.y5f{bottom:457.257000px;}
.yf3{bottom:461.496000px;}
.y155{bottom:464.128500px;}
.y86{bottom:467.248500px;}
.y13d{bottom:468.168000px;}
.yce{bottom:468.885000px;}
.y1f0{bottom:471.168000px;}
.y1a8{bottom:473.275500px;}
.y17a{bottom:475.558500px;}
.yad{bottom:475.719000px;}
.y11d{bottom:476.652000px;}
.y16{bottom:478.702500px;}
.y154{bottom:482.061000px;}
.y5e{bottom:484.851000px;}
.ycd{bottom:486.817500px;}
.y85{bottom:487.513500px;}
.yf2{bottom:489.090000px;}
.y1ef{bottom:489.100500px;}
.y1a7{bottom:491.208000px;}
.y179{bottom:493.491000px;}
.y153{bottom:499.993500px;}
.y11c{bottom:503.551500px;}
.yac{bottom:504.867000px;}
.y5d{bottom:505.773000px;}
.y1d2{bottom:507.022500px;}
.y13c{bottom:507.033000px;}
.y1a6{bottom:509.140500px;}
.y178{bottom:511.423500px;}
.y15{bottom:513.582000px;}
.ycc{bottom:516.706500px;}
.y152{bottom:517.926000px;}
.y11b{bottom:521.484000px;}
.y1ee{bottom:521.977500px;}
.y1d1{bottom:524.955000px;}
.y13b{bottom:524.967000px;}
.y84{bottom:526.368000px;}
.y1a5{bottom:527.073000px;}
.y177{bottom:529.356000px;}
.yf1{bottom:530.944500px;}
.yab{bottom:534.015000px;}
.ycb{bottom:534.639000px;}
.y11a{bottom:539.416500px;}
.y1ed{bottom:539.910000px;}
.y1d0{bottom:542.887500px;}
.y13a{bottom:542.899500px;}
.y83{bottom:544.300500px;}
.y1a4{bottom:545.007000px;}
.y151{bottom:546.681000px;}
.y119{bottom:557.349000px;}
.y1cf{bottom:560.820000px;}
.yf0{bottom:560.832000px;}
.y176{bottom:562.233000px;}
.y1a3{bottom:562.939500px;}
.y5c{bottom:563.535000px;}
.yaa{bottom:565.044000px;}
.y14{bottom:567.379500px;}
.yca{bottom:567.516000px;}
.y1ec{bottom:569.799000px;}
.y139{bottom:570.493500px;}
.y82{bottom:574.188000px;}
.y150{bottom:576.003000px;}
.y1ce{bottom:578.754000px;}
.y5b{bottom:579.973500px;}
.y175{bottom:580.165500px;}
.y1a2{bottom:580.872000px;}
.ya9{bottom:582.976500px;}
.y13{bottom:583.818000px;}
.y45{bottom:583.860000px;}
.yc9{bottom:585.448500px;}
.y118{bottom:586.345500px;}
.y1eb{bottom:587.731500px;}
.yef{bottom:590.719500px;}
.y81{bottom:592.120500px;}
.y5a{bottom:596.412000px;}
.y1cd{bottom:596.686500px;}
.y174{bottom:598.098000px;}
.y1a1{bottom:598.804500px;}
.y12{bottom:600.256500px;}
.y44{bottom:601.794000px;}
.yc8{bottom:603.381000px;}
.y14f{bottom:605.325000px;}
.y1ea{bottom:605.664000px;}
.ya8{bottom:610.570500px;}
.y138{bottom:612.348000px;}
.y117{bottom:614.682000px;}
.y173{bottom:616.030500px;}
.y11{bottom:616.695000px;}
.y1a0{bottom:616.737000px;}
.y43{bottom:619.726500px;}
.yee{bottom:620.608500px;}
.yc7{bottom:621.313500px;}
.y80{bottom:622.008000px;}
.y1cc{bottom:624.280500px;}
.y59{bottom:629.025000px;}
.y137{bottom:630.280500px;}
.y10{bottom:633.133500px;}
.y172{bottom:633.964500px;}
.y14e{bottom:634.645500px;}
.y19f{bottom:634.669500px;}
.y1e9{bottom:635.551500px;}
.y42{bottom:637.659000px;}
.y7f{bottom:639.942000px;}
.y116{bottom:643.017000px;}
.y58{bottom:645.463500px;}
.y136{bottom:648.213000px;}
.yc6{bottom:648.907500px;}
.ya7{bottom:649.117500px;}
.yf{bottom:649.572000px;}
.y19e{bottom:652.603500px;}
.yed{bottom:653.484000px;}
.y41{bottom:655.591500px;}
.y7e{bottom:657.874500px;}
.y171{bottom:661.558500px;}
.y1cb{bottom:663.145500px;}
.y14d{bottom:663.400500px;}
.ye{bottom:666.010500px;}
.y135{bottom:666.145500px;}
.ya6{bottom:667.050000px;}
.y57{bottom:669.375000px;}
.y19d{bottom:670.536000px;}
.y115{bottom:671.353500px;}
.yec{bottom:671.416500px;}
.y40{bottom:673.524000px;}
.y1ca{bottom:681.078000px;}
.y14c{bottom:681.334500px;}
.yd{bottom:682.449000px;}
.y134{bottom:684.078000px;}
.y56{bottom:685.812000px;}
.y7d{bottom:687.762000px;}
.y19c{bottom:688.468500px;}
.yeb{bottom:689.350500px;}
.yc5{bottom:690.762000px;}
.y3f{bottom:691.456500px;}
.ya5{bottom:694.644000px;}
.yc{bottom:698.887500px;}
.y1c9{bottom:699.010500px;}
.y14b{bottom:699.267000px;}
.y114{bottom:700.348500px;}
.y133{bottom:702.010500px;}
.y170{bottom:703.411500px;}
.y1e8{bottom:704.293500px;}
.y7c{bottom:705.694500px;}
.y19b{bottom:706.401000px;}
.yc4{bottom:708.694500px;}
.y3e{bottom:709.390500px;}
.y55{bottom:709.723500px;}
.yb{bottom:715.326000px;}
.yea{bottom:716.944500px;}
.y14a{bottom:717.199500px;}
.y132{bottom:719.944500px;}
.y16f{bottom:721.345500px;}
.y1e7{bottom:722.226000px;}
.y7b{bottom:723.627000px;}
.y19a{bottom:724.333500px;}
.y54{bottom:726.162000px;}
.y3d{bottom:727.323000px;}
.y113{bottom:727.942500px;}
.y1c8{bottom:728.899500px;}
.ya{bottom:731.764500px;}
.ya4{bottom:733.191000px;}
.y131{bottom:737.877000px;}
.y16e{bottom:739.278000px;}
.y1e6{bottom:740.160000px;}
.y7a{bottom:741.561000px;}
.yc3{bottom:741.571500px;}
.y199{bottom:742.266000px;}
.y149{bottom:744.793500px;}
.y3c{bottom:745.255500px;}
.y1c7{bottom:746.832000px;}
.y9{bottom:748.201500px;}
.y53{bottom:750.072000px;}
.ya3{bottom:751.123500px;}
.ye9{bottom:755.809500px;}
.y16d{bottom:757.210500px;}
.y1e5{bottom:758.092500px;}
.y79{bottom:759.493500px;}
.y198{bottom:760.200000px;}
.y3b{bottom:763.188000px;}
.y8{bottom:764.640000px;}
.y112{bottom:766.140000px;}
.y52{bottom:766.510500px;}
.yc2{bottom:771.459000px;}
.ya2{bottom:773.178000px;}
.y130{bottom:773.742000px;}
.y1e4{bottom:776.025000px;}
.y1c6{bottom:776.719500px;}
.y197{bottom:778.132500px;}
.y7{bottom:781.078500px;}
.y3a{bottom:781.120500px;}
.ye8{bottom:783.403500px;}
.y111{bottom:784.072500px;}
.y148{bottom:786.403500px;}
.y78{bottom:787.087500px;}
.y16c{bottom:790.087500px;}
.y51{bottom:790.420500px;}
.y9f{bottom:790.809000px;}
.y12f{bottom:791.674500px;}
.y1c5{bottom:794.652000px;}
.y196{bottom:796.065000px;}
.y39{bottom:799.053000px;}
.yc1{bottom:801.348000px;}
.y110{bottom:802.005000px;}
.y1e3{bottom:803.619000px;}
.y147{bottom:804.336000px;}
.ya1{bottom:805.006500px;}
.y6{bottom:805.737000px;}
.y50{bottom:806.859000px;}
.y16b{bottom:808.020000px;}
.ya0{bottom:809.490000px;}
.y12e{bottom:809.608500px;}
.y195{bottom:813.997500px;}
.y38{bottom:816.987000px;}
.y10f{bottom:819.937500px;}
.ye7{bottom:822.268500px;}
.y1c4{bottom:824.541000px;}
.y16a{bottom:825.952500px;}
.y77{bottom:828.942000px;}
.y4f{bottom:830.769000px;}
.yc0{bottom:831.235500px;}
.y194{bottom:831.930000px;}
.y9e{bottom:834.915000px;}
.y37{bottom:834.919500px;}
.y12d{bottom:837.202500px;}
.y10e{bottom:837.870000px;}
.ye6{bottom:840.202500px;}
.y169{bottom:843.885000px;}
.y1e2{bottom:845.473500px;}
.y76{bottom:846.874500px;}
.y4e{bottom:847.207500px;}
.y193{bottom:849.862500px;}
.y1c3{bottom:852.135000px;}
.y36{bottom:852.852000px;}
.y10d{bottom:855.804000px;}
.ye5{bottom:858.135000px;}
.y5{bottom:859.534500px;}
.y168{bottom:861.817500px;}
.y9d{bottom:862.509000px;}
.y1e1{bottom:863.406000px;}
.ybf{bottom:864.112500px;}
.y75{bottom:864.807000px;}
.y192{bottom:867.796500px;}
.y35{bottom:870.784500px;}
.y4d{bottom:871.117500px;}
.y10c{bottom:873.736500px;}
.ye4{bottom:876.067500px;}
.y167{bottom:879.751500px;}
.y1e0{bottom:881.338500px;}
.y74{bottom:882.739500px;}
.y191{bottom:885.729000px;}
.y4c{bottom:887.556000px;}
.y34{bottom:888.717000px;}
.y1c2{bottom:891.000000px;}
.y10b{bottom:891.669000px;}
.ye3{bottom:894.000000px;}
.y4{bottom:894.694500px;}
.ybe{bottom:896.989500px;}
.y166{bottom:897.684000px;}
.y1df{bottom:899.271000px;}
.y9c{bottom:901.056000px;}
.y190{bottom:903.661500px;}
.y33{bottom:906.649500px;}
.y1c1{bottom:908.932500px;}
.y10a{bottom:909.601500px;}
.y4b{bottom:911.505000px;}
.ye2{bottom:911.932500px;}
.y3{bottom:915.616500px;}
.y18f{bottom:921.594000px;}
.y32{bottom:924.583500px;}
.y1c0{bottom:926.865000px;}
.ybd{bottom:926.877000px;}
.y109{bottom:927.534000px;}
.ye1{bottom:929.865000px;}
.y9b{bottom:930.204000px;}
.y73{bottom:933.549000px;}
.y18e{bottom:939.526500px;}
.y31{bottom:942.516000px;}
.y1bf{bottom:944.799000px;}
.y108{bottom:945.466500px;}
.ye0{bottom:947.799000px;}
.y4a{bottom:948.717000px;}
.y72{bottom:951.481500px;}
.ybc{bottom:956.764500px;}
.y18d{bottom:957.459000px;}
.y9a{bottom:959.352000px;}
.y30{bottom:960.448500px;}
.y1be{bottom:962.731500px;}
.y107{bottom:963.400500px;}
.y165{bottom:963.436500px;}
.ydf{bottom:965.731500px;}
.y2{bottom:966.426000px;}
.y18c{bottom:975.393000px;}
.y2f{bottom:978.381000px;}
.y1bd{bottom:980.664000px;}
.y71{bottom:981.370500px;}
.yde{bottom:983.664000px;}
.ybb{bottom:986.652000px;}
.y49{bottom:987.273000px;}
.y1{bottom:987.348000px;}
.y99{bottom:988.501500px;}
.y106{bottom:990.994500px;}
.y18b{bottom:993.325500px;}
.y1bc{bottom:998.596500px;}
.y70{bottom:999.303000px;}
.ydd{bottom:1001.596500px;}
.y2e{bottom:1011.258000px;}
.y48{bottom:1014.172500px;}
.y6f{bottom:1017.235500px;}
.y98{bottom:1019.529000px;}
.y1bb{bottom:1026.190500px;}
.y2d{bottom:1029.190500px;}
.y97{bottom:1037.461500px;}
.y47{bottom:1041.070500px;}
.y2c{bottom:1047.123000px;}
.y46{bottom:1061.170500px;}
.y2b{bottom:1065.055500px;}
.ha{height:0.000000px;}
.h9{height:27.741776px;}
.hb{height:27.783619px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h8{height:44.831700px;}
.hc{height:44.837700px;}
.h4{height:49.716243px;}
.h2{height:51.216077px;}
.h3{height:53.798400px;}
.h7{height:64.557900px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x13{left:126.261000px;}
.x11{left:128.175000px;}
.x9{left:130.416000px;}
.xb{left:141.634500px;}
.x2{left:145.789500px;}
.x12{left:151.738500px;}
.xd{left:155.722500px;}
.x7{left:165.534000px;}
.xc{left:254.596500px;}
.x1{left:257.295000px;}
.xe{left:301.215000px;}
.x14{left:314.064000px;}
.x3{left:342.321000px;}
.x4{left:367.911000px;}
.x5{left:386.434500px;}
.x6{left:428.563500px;}
.x15{left:440.521500px;}
.x10{left:446.706000px;}
.x17{left:451.528500px;}
.xa{left:455.263500px;}
.x16{left:462.238500px;}
.xf{left:592.198500px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008452pt;}
.lsf{letter-spacing:0.028642pt;}
.lse{letter-spacing:0.039252pt;}
.ls6{letter-spacing:0.044586pt;}
.ls4{letter-spacing:0.045393pt;}
.ls7{letter-spacing:0.047626pt;}
.lsc{letter-spacing:0.050726pt;}
.ls9{letter-spacing:2.663985pt;}
.lsd{letter-spacing:2.664452pt;}
.ls8{letter-spacing:2.671508pt;}
.ls10{letter-spacing:2.676842pt;}
.ls5{letter-spacing:4.331090pt;}
.ls3{letter-spacing:7.381391pt;}
.lsa{letter-spacing:14.808060pt;}
.ls1{letter-spacing:26.566933pt;}
.ls2{letter-spacing:26.571185pt;}
.ws71{word-spacing:-26.566933pt;}
.ws11{word-spacing:-21.423659pt;}
.ws1a{word-spacing:-21.106442pt;}
.ws1b{word-spacing:-21.103700pt;}
.ws1c{word-spacing:-21.099404pt;}
.ws18{word-spacing:-18.915657pt;}
.ws5f{word-spacing:-14.877483pt;}
.ws85{word-spacing:-14.771215pt;}
.ws7d{word-spacing:-14.558679pt;}
.ws10c{word-spacing:-14.505546pt;}
.wsb9{word-spacing:-14.080475pt;}
.wsab{word-spacing:-13.921073pt;}
.wsf6{word-spacing:-13.867939pt;}
.ws108{word-spacing:-13.814805pt;}
.ws43{word-spacing:-13.761671pt;}
.wscc{word-spacing:-13.708538pt;}
.ws33{word-spacing:-13.549136pt;}
.ws56{word-spacing:-13.496002pt;}
.wsa5{word-spacing:-13.442868pt;}
.ws23{word-spacing:-13.389824pt;}
.ws3d{word-spacing:-13.336601pt;}
.ws31{word-spacing:-13.283467pt;}
.wsb3{word-spacing:-12.964663pt;}
.wsc3{word-spacing:-12.752128pt;}
.wscb{word-spacing:-12.539593pt;}
.ws44{word-spacing:-12.433325pt;}
.wse9{word-spacing:-12.380191pt;}
.wsf8{word-spacing:-12.327057pt;}
.wsce{word-spacing:-12.220789pt;}
.ws9d{word-spacing:-12.167655pt;}
.wsf3{word-spacing:-12.114522pt;}
.wsa3{word-spacing:-12.061388pt;}
.ws36{word-spacing:-11.955120pt;}
.ws84{word-spacing:-11.901986pt;}
.wsb8{word-spacing:-11.795718pt;}
.ws97{word-spacing:-11.742585pt;}
.wsa7{word-spacing:-11.689451pt;}
.wsdf{word-spacing:-11.583183pt;}
.ws57{word-spacing:-11.530049pt;}
.ws2f{word-spacing:-11.476915pt;}
.ws9b{word-spacing:-11.423781pt;}
.ws5b{word-spacing:-11.370647pt;}
.wsea{word-spacing:-11.264380pt;}
.wse3{word-spacing:-11.211246pt;}
.wsa2{word-spacing:-11.158112pt;}
.ws80{word-spacing:-11.051844pt;}
.ws102{word-spacing:-10.998710pt;}
.ws70{word-spacing:-10.945577pt;}
.wsa8{word-spacing:-10.892443pt;}
.wsc1{word-spacing:-10.839309pt;}
.ws6e{word-spacing:-10.786175pt;}
.wsd6{word-spacing:-10.733041pt;}
.ws64{word-spacing:-10.679907pt;}
.wsb4{word-spacing:-10.626773pt;}
.ws58{word-spacing:-10.520506pt;}
.ws8a{word-spacing:-10.467372pt;}
.wsa1{word-spacing:-10.307970pt;}
.wsf1{word-spacing:-10.254836pt;}
.ws107{word-spacing:-10.201702pt;}
.wsd0{word-spacing:-10.095435pt;}
.wsb2{word-spacing:-9.989167pt;}
.wsf5{word-spacing:-9.936033pt;}
.wsb7{word-spacing:-9.882899pt;}
.wsac{word-spacing:-9.829765pt;}
.ws69{word-spacing:-9.723498pt;}
.wsdb{word-spacing:-9.564096pt;}
.wse1{word-spacing:-9.510962pt;}
.wsc7{word-spacing:-9.457828pt;}
.ws106{word-spacing:-9.404694pt;}
.wsd2{word-spacing:-9.298427pt;}
.ws79{word-spacing:-9.139025pt;}
.wsec{word-spacing:-9.085891pt;}
.wsb1{word-spacing:-9.032757pt;}
.ws4b{word-spacing:-8.926490pt;}
.ws15{word-spacing:-8.873356pt;}
.wsbb{word-spacing:-8.871763pt;}
.ws41{word-spacing:-8.820222pt;}
.wsf9{word-spacing:-8.767088pt;}
.wsc5{word-spacing:-8.660820pt;}
.ws87{word-spacing:-8.607686pt;}
.ws9a{word-spacing:-8.501419pt;}
.ws82{word-spacing:-8.448285pt;}
.ws51{word-spacing:-8.395151pt;}
.wsfc{word-spacing:-8.342017pt;}
.ws8e{word-spacing:-8.288883pt;}
.ws38{word-spacing:-8.235749pt;}
.wscf{word-spacing:-8.182615pt;}
.wsfd{word-spacing:-8.129482pt;}
.ws68{word-spacing:-8.076348pt;}
.ws67{word-spacing:-8.023214pt;}
.wsae{word-spacing:-7.970080pt;}
.ws8d{word-spacing:-7.916946pt;}
.ws77{word-spacing:-7.863812pt;}
.ws4a{word-spacing:-7.810678pt;}
.ws49{word-spacing:-7.757545pt;}
.ws47{word-spacing:-7.704411pt;}
.wse5{word-spacing:-7.651277pt;}
.wsa0{word-spacing:-7.438741pt;}
.ws7e{word-spacing:-7.385607pt;}
.ws6d{word-spacing:-7.332474pt;}
.ws19{word-spacing:-7.279340pt;}
.ws54{word-spacing:-7.226206pt;}
.wsbf{word-spacing:-7.173072pt;}
.wsbc{word-spacing:-7.119938pt;}
.wse6{word-spacing:-7.066804pt;}
.ws52{word-spacing:-7.013670pt;}
.ws101{word-spacing:-6.960537pt;}
.wsfb{word-spacing:-6.801135pt;}
.wsf2{word-spacing:-6.694867pt;}
.ws5c{word-spacing:-6.641733pt;}
.ws5d{word-spacing:-6.588599pt;}
.ws46{word-spacing:-6.535466pt;}
.ws89{word-spacing:-6.482332pt;}
.wsef{word-spacing:-6.376064pt;}
.wsb6{word-spacing:-6.322930pt;}
.wsf4{word-spacing:-6.269796pt;}
.ws100{word-spacing:-6.216662pt;}
.wsc6{word-spacing:-6.110395pt;}
.ws98{word-spacing:-6.057261pt;}
.wsda{word-spacing:-6.004127pt;}
.ws95{word-spacing:-5.950993pt;}
.wsed{word-spacing:-5.897859pt;}
.ws75{word-spacing:-5.844725pt;}
.wseb{word-spacing:-5.791591pt;}
.wsee{word-spacing:-5.738458pt;}
.wsf7{word-spacing:-5.632190pt;}
.ws73{word-spacing:-5.525922pt;}
.ws105{word-spacing:-5.472788pt;}
.ws9f{word-spacing:-5.419654pt;}
.ws10a{word-spacing:-5.366521pt;}
.wsa6{word-spacing:-5.313387pt;}
.wsc8{word-spacing:-5.260253pt;}
.wsdc{word-spacing:-5.153985pt;}
.ws55{word-spacing:-5.100851pt;}
.wsff{word-spacing:-4.782048pt;}
.ws3b{word-spacing:-4.728914pt;}
.ws45{word-spacing:-4.675780pt;}
.ws34{word-spacing:-4.622646pt;}
.wsc2{word-spacing:-4.569513pt;}
.ws81{word-spacing:-4.516379pt;}
.wsba{word-spacing:-4.463245pt;}
.wsdd{word-spacing:-4.356977pt;}
.ws65{word-spacing:-4.250709pt;}
.ws8c{word-spacing:-4.197575pt;}
.wsaa{word-spacing:-4.038174pt;}
.wsde{word-spacing:-3.985040pt;}
.wsfe{word-spacing:-3.878772pt;}
.ws7a{word-spacing:-3.772505pt;}
.ws62{word-spacing:-3.613103pt;}
.wsd5{word-spacing:-3.506835pt;}
.ws7b{word-spacing:-3.453701pt;}
.ws104{word-spacing:-3.400567pt;}
.ws59{word-spacing:-3.294300pt;}
.wsa4{word-spacing:-3.241166pt;}
.wsb0{word-spacing:-3.188032pt;}
.ws8f{word-spacing:-3.134898pt;}
.wsa9{word-spacing:-3.081764pt;}
.ws4f{word-spacing:-3.028630pt;}
.ws7c{word-spacing:-2.869229pt;}
.wsd1{word-spacing:-2.816095pt;}
.wsbe{word-spacing:-2.762961pt;}
.ws3f{word-spacing:-2.709827pt;}
.wsd9{word-spacing:-2.550426pt;}
.ws1f{word-spacing:-2.295392pt;}
.wsf0{word-spacing:-2.284756pt;}
.ws88{word-spacing:-2.125355pt;}
.ws91{word-spacing:-2.019087pt;}
.wsc4{word-spacing:-1.965953pt;}
.ws103{word-spacing:-1.912819pt;}
.ws3a{word-spacing:-1.700284pt;}
.wsb5{word-spacing:-1.594016pt;}
.ws6f{word-spacing:-1.168945pt;}
.ws2a{word-spacing:-1.052058pt;}
.ws53{word-spacing:-1.009543pt;}
.wsd3{word-spacing:-0.956410pt;}
.ws4{word-spacing:-0.478208pt;}
.ws92{word-spacing:-0.425071pt;}
.ws93{word-spacing:-0.318803pt;}
.ws7{word-spacing:-0.286925pt;}
.wse4{word-spacing:-0.265669pt;}
.ws42{word-spacing:-0.159402pt;}
.wse2{word-spacing:-0.106268pt;}
.ws16{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.004252pt;}
.ws32{word-spacing:0.053134pt;}
.ws5{word-spacing:0.143462pt;}
.ws3c{word-spacing:0.318803pt;}
.wsf{word-spacing:0.334746pt;}
.ws30{word-spacing:0.371937pt;}
.ws4d{word-spacing:0.743874pt;}
.ws9c{word-spacing:1.647150pt;}
.ws35{word-spacing:1.912819pt;}
.ws0{word-spacing:1.928125pt;}
.ws83{word-spacing:1.965953pt;}
.ws6{word-spacing:2.247578pt;}
.ws8{word-spacing:2.534502pt;}
.ws96{word-spacing:2.603559pt;}
.ws109{word-spacing:2.816095pt;}
.ws1{word-spacing:2.933009pt;}
.ws24{word-spacing:2.964890pt;}
.ws7f{word-spacing:2.975497pt;}
.ws10{word-spacing:3.012710pt;}
.wsc0{word-spacing:3.241166pt;}
.ws94{word-spacing:3.613103pt;}
.wse{word-spacing:3.825664pt;}
.ws63{word-spacing:4.091308pt;}
.ws1e{word-spacing:4.144442pt;}
.ws9{word-spacing:4.303872pt;}
.ws10b{word-spacing:4.356977pt;}
.ws3{word-spacing:4.399514pt;}
.wsc{word-spacing:4.782080pt;}
.ws78{word-spacing:5.153985pt;}
.ws66{word-spacing:5.419654pt;}
.ws17{word-spacing:5.472788pt;}
.ws40{word-spacing:5.579056pt;}
.ws99{word-spacing:5.844725pt;}
.ws2{word-spacing:5.993540pt;}
.ws48{word-spacing:6.057301pt;}
.ws37{word-spacing:6.163529pt;}
.wsad{word-spacing:6.535466pt;}
.ws5e{word-spacing:6.588599pt;}
.ws76{word-spacing:6.641733pt;}
.wse8{word-spacing:6.854269pt;}
.ws25{word-spacing:6.886195pt;}
.wscd{word-spacing:7.050285pt;}
.ws20{word-spacing:7.268741pt;}
.wsca{word-spacing:7.344247pt;}
.ws86{word-spacing:8.023214pt;}
.wsfa{word-spacing:8.076348pt;}
.wse0{word-spacing:8.235749pt;}
.ws13{word-spacing:8.660820pt;}
.ws4e{word-spacing:8.672699pt;}
.ws6b{word-spacing:8.712541pt;}
.ws6c{word-spacing:8.714515pt;}
.ws60{word-spacing:8.767088pt;}
.ws61{word-spacing:8.820222pt;}
.ws74{word-spacing:8.926490pt;}
.ws2e{word-spacing:8.990310pt;}
.wsb{word-spacing:9.085952pt;}
.wsd{word-spacing:9.181594pt;}
.ws72{word-spacing:9.298427pt;}
.ws9e{word-spacing:9.351561pt;}
.ws2d{word-spacing:9.564160pt;}
.ws50{word-spacing:9.741392pt;}
.wsa{word-spacing:10.042368pt;}
.ws5a{word-spacing:10.095435pt;}
.ws26{word-spacing:10.424934pt;}
.wsd7{word-spacing:10.467372pt;}
.ws8b{word-spacing:10.786175pt;}
.wsd8{word-spacing:10.998710pt;}
.ws4c{word-spacing:11.113740pt;}
.wsd4{word-spacing:11.583183pt;}
.ws90{word-spacing:12.008254pt;}
.wsaf{word-spacing:12.061388pt;}
.wsbd{word-spacing:12.486459pt;}
.ws3e{word-spacing:12.539593pt;}
.ws27{word-spacing:13.437645pt;}
.ws39{word-spacing:13.655404pt;}
.wse7{word-spacing:16.832922pt;}
.wsc9{word-spacing:20.707595pt;}
.ws2c{word-spacing:21.571123pt;}
.ws29{word-spacing:25.297203pt;}
.ws2b{word-spacing:32.661606pt;}
.ws12{word-spacing:34.271344pt;}
.ws28{word-spacing:36.965478pt;}
.ws1d{word-spacing:55.088818pt;}
.ws22{word-spacing:70.248755pt;}
.ws21{word-spacing:225.121579pt;}
.ws14{word-spacing:2109.506361pt;}
._2a{margin-left:-31.147082pt;}
._23{margin-left:-28.001548pt;}
._21{margin-left:-26.566933pt;}
._28{margin-left:-25.079185pt;}
._24{margin-left:-12.921268pt;}
._22{margin-left:-8.873356pt;}
._46{margin-left:-7.050790pt;}
._15{margin-left:-5.121918pt;}
._27{margin-left:-4.219012pt;}
._4{margin-left:-3.188053pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-1.083950pt;}
._5{width:1.338982pt;}
._1{width:2.295387pt;}
._29{width:3.550230pt;}
._48{width:10.876618pt;}
._9{width:12.178364pt;}
._45{width:13.283469pt;}
._26{width:14.488394pt;}
._47{width:15.597069pt;}
._7{width:16.530057pt;}
._1c{width:17.555613pt;}
._13{width:18.506434pt;}
._8{width:19.957202pt;}
._6{width:20.881738pt;}
._3f{width:21.970784pt;}
._d{width:23.543762pt;}
._44{width:24.450960pt;}
._a{width:25.711662pt;}
._49{width:26.630692pt;}
._2{width:27.672303pt;}
._40{width:28.850828pt;}
._19{width:29.745221pt;}
._16{width:31.108742pt;}
._42{width:32.241621pt;}
._10{width:33.474336pt;}
._c{width:34.845423pt;}
._18{width:36.694525pt;}
._1a{width:38.041082pt;}
._4c{width:39.047975pt;}
._b{width:40.281066pt;}
._41{width:41.306275pt;}
._20{width:42.789069pt;}
._4a{width:43.718566pt;}
._1b{width:44.838434pt;}
._4b{width:47.289148pt;}
._f{width:49.148827pt;}
._1f{width:50.958256pt;}
._1d{width:52.097094pt;}
._43{width:53.132673pt;}
._11{width:54.249678pt;}
._3a{width:56.667648pt;}
._25{width:58.547699pt;}
._17{width:60.785143pt;}
._3e{width:63.762492pt;}
._2f{width:68.878067pt;}
._2b{width:76.512477pt;}
._3d{width:81.821389pt;}
._12{width:85.131250pt;}
._39{width:100.269980pt;}
._3b{width:102.416225pt;}
._3c{width:119.360717pt;}
._31{width:145.781538pt;}
._34{width:155.271330pt;}
._2e{width:167.141507pt;}
._37{width:171.466641pt;}
._36{width:189.255979pt;}
._33{width:192.646109pt;}
._30{width:193.751134pt;}
._32{width:207.093137pt;}
._35{width:211.439508pt;}
._38{width:212.783812pt;}
._2c{width:314.062922pt;}
._2d{width:373.318238pt;}
._14{width:1172.236116pt;}
._e{width:2048.881152pt;}
._1e{width:2107.009602pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.yba{bottom:96.000000pt;}
.y29{bottom:96.082667pt;}
.y105{bottom:96.100000pt;}
.y6e{bottom:100.930667pt;}
.y96{bottom:103.242667pt;}
.y1ba{bottom:103.913333pt;}
.y18a{bottom:111.256000pt;}
.yb9{bottom:111.940000pt;}
.y28{bottom:112.022667pt;}
.y104{bottom:112.040000pt;}
.y6d{bottom:116.870667pt;}
.ydc{bottom:118.608000pt;}
.y95{bottom:119.182667pt;}
.y1b9{bottom:119.853333pt;}
.y189{bottom:127.196000pt;}
.yb8{bottom:127.880000pt;}
.y27{bottom:127.962667pt;}
.y103{bottom:127.980000pt;}
.ydb{bottom:134.549333pt;}
.y94{bottom:135.122667pt;}
.y1b8{bottom:135.794667pt;}
.y188{bottom:143.136000pt;}
.y6c{bottom:143.437333pt;}
.y12c{bottom:143.820000pt;}
.y164{bottom:143.821333pt;}
.y26{bottom:143.902667pt;}
.y102{bottom:143.920000pt;}
.yda{bottom:150.489333pt;}
.y1b7{bottom:151.734667pt;}
.yb7{bottom:152.408000pt;}
.y187{bottom:159.077333pt;}
.y6b{bottom:159.377333pt;}
.y93{bottom:159.650667pt;}
.y12b{bottom:159.761333pt;}
.y25{bottom:159.842667pt;}
.y101{bottom:159.860000pt;}
.yd9{bottom:166.429333pt;}
.y1b6{bottom:167.674667pt;}
.y163{bottom:168.349333pt;}
.y1de{bottom:170.477333pt;}
.y6a{bottom:175.317333pt;}
.y12a{bottom:175.701333pt;}
.y24{bottom:175.784000pt;}
.y100{bottom:175.801333pt;}
.y186{bottom:183.605333pt;}
.y1b5{bottom:183.614667pt;}
.y146{bottom:183.770667pt;}
.y1dd{bottom:186.417333pt;}
.yb6{bottom:189.329333pt;}
.yd8{bottom:190.957333pt;}
.y129{bottom:191.641333pt;}
.y23{bottom:191.724000pt;}
.yff{bottom:191.741333pt;}
.y92{bottom:194.198667pt;}
.y1b4{bottom:199.554667pt;}
.y69{bottom:201.885333pt;}
.y185{bottom:202.201333pt;}
.y1dc{bottom:202.357333pt;}
.y162{bottom:205.336000pt;}
.y128{bottom:207.581333pt;}
.y22{bottom:207.664000pt;}
.yfe{bottom:207.681333pt;}
.y145{bottom:208.298667pt;}
.y91{bottom:210.138667pt;}
.yb5{bottom:215.238667pt;}
.y1b3{bottom:215.494667pt;}
.y68{bottom:217.825333pt;}
.y1db{bottom:218.298667pt;}
.y161{bottom:221.276000pt;}
.y127{bottom:223.521333pt;}
.y21{bottom:223.604000pt;}
.yfd{bottom:223.621333pt;}
.yd7{bottom:228.161333pt;}
.y1da{bottom:234.238667pt;}
.y90{bottom:234.666667pt;}
.y160{bottom:237.216000pt;}
.y184{bottom:239.405333pt;}
.y126{bottom:239.461333pt;}
.y20{bottom:239.544000pt;}
.yfc{bottom:239.561333pt;}
.y1b2{bottom:240.022667pt;}
.yb4{bottom:241.148000pt;}
.y144{bottom:242.846667pt;}
.yd6{bottom:244.101333pt;}
.y67{bottom:244.392000pt;}
.y15f{bottom:253.156000pt;}
.y183{bottom:255.345333pt;}
.y125{bottom:255.402667pt;}
.y1f{bottom:255.484000pt;}
.yfb{bottom:255.501333pt;}
.y1d9{bottom:258.766667pt;}
.y143{bottom:258.786667pt;}
.yd5{bottom:260.041333pt;}
.y66{bottom:260.332000pt;}
.yb3{bottom:267.058667pt;}
.y15e{bottom:269.096000pt;}
.y182{bottom:271.286667pt;}
.y124{bottom:271.342667pt;}
.y1e{bottom:271.425333pt;}
.yfa{bottom:271.442667pt;}
.y8f{bottom:271.870667pt;}
.yd4{bottom:275.981333pt;}
.y1b1{bottom:277.226667pt;}
.y15d{bottom:285.036000pt;}
.y142{bottom:285.353333pt;}
.y65{bottom:286.900000pt;}
.y181{bottom:287.226667pt;}
.y123{bottom:287.282667pt;}
.y1d{bottom:287.365333pt;}
.yf9{bottom:287.382667pt;}
.y8e{bottom:287.810667pt;}
.yb2{bottom:292.968000pt;}
.y1b0{bottom:293.168000pt;}
.y1d8{bottom:295.970667pt;}
.y15c{bottom:300.977333pt;}
.y64{bottom:302.840000pt;}
.y180{bottom:303.166667pt;}
.y122{bottom:303.222667pt;}
.y1c{bottom:303.305333pt;}
.yf8{bottom:303.322667pt;}
.y8d{bottom:303.750667pt;}
.yd3{bottom:305.205333pt;}
.y1af{bottom:309.108000pt;}
.y1d7{bottom:311.910667pt;}
.y141{bottom:311.920000pt;}
.y15b{bottom:316.917333pt;}
.y63{bottom:318.780000pt;}
.y1b{bottom:319.245333pt;}
.yf7{bottom:319.262667pt;}
.y8c{bottom:319.690667pt;}
.yb1{bottom:320.548000pt;}
.yd2{bottom:321.145333pt;}
.y1ae{bottom:325.048000pt;}
.y121{bottom:327.750667pt;}
.y1d6{bottom:327.850667pt;}
.y17f{bottom:332.390667pt;}
.y15a{bottom:332.857333pt;}
.y8b{bottom:335.630667pt;}
.y140{bottom:338.488000pt;}
.y1ad{bottom:340.988000pt;}
.yf6{bottom:343.790667pt;}
.yb0{bottom:345.076000pt;}
.y62{bottom:345.346667pt;}
.yd1{bottom:347.713333pt;}
.y17e{bottom:348.330667pt;}
.y1a{bottom:348.469333pt;}
.y159{bottom:348.797333pt;}
.y8a{bottom:351.572000pt;}
.y1ac{bottom:356.928000pt;}
.y1d5{bottom:359.730667pt;}
.y61{bottom:361.286667pt;}
.y120{bottom:361.704000pt;}
.y17d{bottom:364.270667pt;}
.y19{bottom:364.409333pt;}
.y158{bottom:364.737333pt;}
.y13f{bottom:365.054667pt;}
.y89{bottom:367.512000pt;}
.y1ab{bottom:372.868000pt;}
.yd0{bottom:374.280000pt;}
.y1d4{bottom:375.670667pt;}
.y11f{bottom:377.644000pt;}
.yf5{bottom:378.337333pt;}
.yaf{bottom:379.340000pt;}
.y17c{bottom:380.210667pt;}
.y18{bottom:380.349333pt;}
.y157{bottom:380.677333pt;}
.y88{bottom:383.452000pt;}
.y1aa{bottom:388.809333pt;}
.ycf{bottom:390.220000pt;}
.y60{bottom:390.510667pt;}
.y13e{bottom:391.621333pt;}
.yf4{bottom:394.278667pt;}
.yae{bottom:395.280000pt;}
.y17b{bottom:396.150667pt;}
.y17{bottom:396.289333pt;}
.y156{bottom:396.618667pt;}
.y87{bottom:399.392000pt;}
.y1d3{bottom:400.198667pt;}
.y11e{bottom:402.172000pt;}
.y1f1{bottom:402.876000pt;}
.y1a9{bottom:404.749333pt;}
.y5f{bottom:406.450667pt;}
.yf3{bottom:410.218667pt;}
.y155{bottom:412.558667pt;}
.y86{bottom:415.332000pt;}
.y13d{bottom:416.149333pt;}
.yce{bottom:416.786667pt;}
.y1f0{bottom:418.816000pt;}
.y1a8{bottom:420.689333pt;}
.y17a{bottom:422.718667pt;}
.yad{bottom:422.861333pt;}
.y11d{bottom:423.690667pt;}
.y16{bottom:425.513333pt;}
.y154{bottom:428.498667pt;}
.y5e{bottom:430.978667pt;}
.ycd{bottom:432.726667pt;}
.y85{bottom:433.345333pt;}
.yf2{bottom:434.746667pt;}
.y1ef{bottom:434.756000pt;}
.y1a7{bottom:436.629333pt;}
.y179{bottom:438.658667pt;}
.y153{bottom:444.438667pt;}
.y11c{bottom:447.601333pt;}
.yac{bottom:448.770667pt;}
.y5d{bottom:449.576000pt;}
.y1d2{bottom:450.686667pt;}
.y13c{bottom:450.696000pt;}
.y1a6{bottom:452.569333pt;}
.y178{bottom:454.598667pt;}
.y15{bottom:456.517333pt;}
.ycc{bottom:459.294667pt;}
.y152{bottom:460.378667pt;}
.y11b{bottom:463.541333pt;}
.y1ee{bottom:463.980000pt;}
.y1d1{bottom:466.626667pt;}
.y13b{bottom:466.637333pt;}
.y84{bottom:467.882667pt;}
.y1a5{bottom:468.509333pt;}
.y177{bottom:470.538667pt;}
.yf1{bottom:471.950667pt;}
.yab{bottom:474.680000pt;}
.ycb{bottom:475.234667pt;}
.y11a{bottom:479.481333pt;}
.y1ed{bottom:479.920000pt;}
.y1d0{bottom:482.566667pt;}
.y13a{bottom:482.577333pt;}
.y83{bottom:483.822667pt;}
.y1a4{bottom:484.450667pt;}
.y151{bottom:485.938667pt;}
.y119{bottom:495.421333pt;}
.y1cf{bottom:498.506667pt;}
.yf0{bottom:498.517333pt;}
.y176{bottom:499.762667pt;}
.y1a3{bottom:500.390667pt;}
.y5c{bottom:500.920000pt;}
.yaa{bottom:502.261333pt;}
.y14{bottom:504.337333pt;}
.yca{bottom:504.458667pt;}
.y1ec{bottom:506.488000pt;}
.y139{bottom:507.105333pt;}
.y82{bottom:510.389333pt;}
.y150{bottom:512.002667pt;}
.y1ce{bottom:514.448000pt;}
.y5b{bottom:515.532000pt;}
.y175{bottom:515.702667pt;}
.y1a2{bottom:516.330667pt;}
.ya9{bottom:518.201333pt;}
.y13{bottom:518.949333pt;}
.y45{bottom:518.986667pt;}
.yc9{bottom:520.398667pt;}
.y118{bottom:521.196000pt;}
.y1eb{bottom:522.428000pt;}
.yef{bottom:525.084000pt;}
.y81{bottom:526.329333pt;}
.y5a{bottom:530.144000pt;}
.y1cd{bottom:530.388000pt;}
.y174{bottom:531.642667pt;}
.y1a1{bottom:532.270667pt;}
.y12{bottom:533.561333pt;}
.y44{bottom:534.928000pt;}
.yc8{bottom:536.338667pt;}
.y14f{bottom:538.066667pt;}
.y1ea{bottom:538.368000pt;}
.ya8{bottom:542.729333pt;}
.y138{bottom:544.309333pt;}
.y117{bottom:546.384000pt;}
.y173{bottom:547.582667pt;}
.y11{bottom:548.173333pt;}
.y1a0{bottom:548.210667pt;}
.y43{bottom:550.868000pt;}
.yee{bottom:551.652000pt;}
.yc7{bottom:552.278667pt;}
.y80{bottom:552.896000pt;}
.y1cc{bottom:554.916000pt;}
.y59{bottom:559.133333pt;}
.y137{bottom:560.249333pt;}
.y10{bottom:562.785333pt;}
.y172{bottom:563.524000pt;}
.y14e{bottom:564.129333pt;}
.y19f{bottom:564.150667pt;}
.y1e9{bottom:564.934667pt;}
.y42{bottom:566.808000pt;}
.y7f{bottom:568.837333pt;}
.y116{bottom:571.570667pt;}
.y58{bottom:573.745333pt;}
.y136{bottom:576.189333pt;}
.yc6{bottom:576.806667pt;}
.ya7{bottom:576.993333pt;}
.yf{bottom:577.397333pt;}
.y19e{bottom:580.092000pt;}
.yed{bottom:580.874667pt;}
.y41{bottom:582.748000pt;}
.y7e{bottom:584.777333pt;}
.y171{bottom:588.052000pt;}
.y1cb{bottom:589.462667pt;}
.y14d{bottom:589.689333pt;}
.ye{bottom:592.009333pt;}
.y135{bottom:592.129333pt;}
.ya6{bottom:592.933333pt;}
.y57{bottom:595.000000pt;}
.y19d{bottom:596.032000pt;}
.y115{bottom:596.758667pt;}
.yec{bottom:596.814667pt;}
.y40{bottom:598.688000pt;}
.y1ca{bottom:605.402667pt;}
.y14c{bottom:605.630667pt;}
.yd{bottom:606.621333pt;}
.y134{bottom:608.069333pt;}
.y56{bottom:609.610667pt;}
.y7d{bottom:611.344000pt;}
.y19c{bottom:611.972000pt;}
.yeb{bottom:612.756000pt;}
.yc5{bottom:614.010667pt;}
.y3f{bottom:614.628000pt;}
.ya5{bottom:617.461333pt;}
.yc{bottom:621.233333pt;}
.y1c9{bottom:621.342667pt;}
.y14b{bottom:621.570667pt;}
.y114{bottom:622.532000pt;}
.y133{bottom:624.009333pt;}
.y170{bottom:625.254667pt;}
.y1e8{bottom:626.038667pt;}
.y7c{bottom:627.284000pt;}
.y19b{bottom:627.912000pt;}
.yc4{bottom:629.950667pt;}
.y3e{bottom:630.569333pt;}
.y55{bottom:630.865333pt;}
.yb{bottom:635.845333pt;}
.yea{bottom:637.284000pt;}
.y14a{bottom:637.510667pt;}
.y132{bottom:639.950667pt;}
.y16f{bottom:641.196000pt;}
.y1e7{bottom:641.978667pt;}
.y7b{bottom:643.224000pt;}
.y19a{bottom:643.852000pt;}
.y54{bottom:645.477333pt;}
.y3d{bottom:646.509333pt;}
.y113{bottom:647.060000pt;}
.y1c8{bottom:647.910667pt;}
.ya{bottom:650.457333pt;}
.ya4{bottom:651.725333pt;}
.y131{bottom:655.890667pt;}
.y16e{bottom:657.136000pt;}
.y1e6{bottom:657.920000pt;}
.y7a{bottom:659.165333pt;}
.yc3{bottom:659.174667pt;}
.y199{bottom:659.792000pt;}
.y149{bottom:662.038667pt;}
.y3c{bottom:662.449333pt;}
.y1c7{bottom:663.850667pt;}
.y9{bottom:665.068000pt;}
.y53{bottom:666.730667pt;}
.ya3{bottom:667.665333pt;}
.ye9{bottom:671.830667pt;}
.y16d{bottom:673.076000pt;}
.y1e5{bottom:673.860000pt;}
.y79{bottom:675.105333pt;}
.y198{bottom:675.733333pt;}
.y3b{bottom:678.389333pt;}
.y8{bottom:679.680000pt;}
.y112{bottom:681.013333pt;}
.y52{bottom:681.342667pt;}
.yc2{bottom:685.741333pt;}
.ya2{bottom:687.269333pt;}
.y130{bottom:687.770667pt;}
.y1e4{bottom:689.800000pt;}
.y1c6{bottom:690.417333pt;}
.y197{bottom:691.673333pt;}
.y7{bottom:694.292000pt;}
.y3a{bottom:694.329333pt;}
.ye8{bottom:696.358667pt;}
.y111{bottom:696.953333pt;}
.y148{bottom:699.025333pt;}
.y78{bottom:699.633333pt;}
.y16c{bottom:702.300000pt;}
.y51{bottom:702.596000pt;}
.y9f{bottom:702.941333pt;}
.y12f{bottom:703.710667pt;}
.y1c5{bottom:706.357333pt;}
.y196{bottom:707.613333pt;}
.y39{bottom:710.269333pt;}
.yc1{bottom:712.309333pt;}
.y110{bottom:712.893333pt;}
.y1e3{bottom:714.328000pt;}
.y147{bottom:714.965333pt;}
.ya1{bottom:715.561333pt;}
.y6{bottom:716.210667pt;}
.y50{bottom:717.208000pt;}
.y16b{bottom:718.240000pt;}
.ya0{bottom:719.546667pt;}
.y12e{bottom:719.652000pt;}
.y195{bottom:723.553333pt;}
.y38{bottom:726.210667pt;}
.y10f{bottom:728.833333pt;}
.ye7{bottom:730.905333pt;}
.y1c4{bottom:732.925333pt;}
.y16a{bottom:734.180000pt;}
.y77{bottom:736.837333pt;}
.y4f{bottom:738.461333pt;}
.yc0{bottom:738.876000pt;}
.y194{bottom:739.493333pt;}
.y9e{bottom:742.146667pt;}
.y37{bottom:742.150667pt;}
.y12d{bottom:744.180000pt;}
.y10e{bottom:744.773333pt;}
.ye6{bottom:746.846667pt;}
.y169{bottom:750.120000pt;}
.y1e2{bottom:751.532000pt;}
.y76{bottom:752.777333pt;}
.y4e{bottom:753.073333pt;}
.y193{bottom:755.433333pt;}
.y1c3{bottom:757.453333pt;}
.y36{bottom:758.090667pt;}
.y10d{bottom:760.714667pt;}
.ye5{bottom:762.786667pt;}
.y5{bottom:764.030667pt;}
.y168{bottom:766.060000pt;}
.y9d{bottom:766.674667pt;}
.y1e1{bottom:767.472000pt;}
.ybf{bottom:768.100000pt;}
.y75{bottom:768.717333pt;}
.y192{bottom:771.374667pt;}
.y35{bottom:774.030667pt;}
.y4d{bottom:774.326667pt;}
.y10c{bottom:776.654667pt;}
.ye4{bottom:778.726667pt;}
.y167{bottom:782.001333pt;}
.y1e0{bottom:783.412000pt;}
.y74{bottom:784.657333pt;}
.y191{bottom:787.314667pt;}
.y4c{bottom:788.938667pt;}
.y34{bottom:789.970667pt;}
.y1c2{bottom:792.000000pt;}
.y10b{bottom:792.594667pt;}
.ye3{bottom:794.666667pt;}
.y4{bottom:795.284000pt;}
.ybe{bottom:797.324000pt;}
.y166{bottom:797.941333pt;}
.y1df{bottom:799.352000pt;}
.y9c{bottom:800.938667pt;}
.y190{bottom:803.254667pt;}
.y33{bottom:805.910667pt;}
.y1c1{bottom:807.940000pt;}
.y10a{bottom:808.534667pt;}
.y4b{bottom:810.226667pt;}
.ye2{bottom:810.606667pt;}
.y3{bottom:813.881333pt;}
.y18f{bottom:819.194667pt;}
.y32{bottom:821.852000pt;}
.y1c0{bottom:823.880000pt;}
.ybd{bottom:823.890667pt;}
.y109{bottom:824.474667pt;}
.ye1{bottom:826.546667pt;}
.y9b{bottom:826.848000pt;}
.y73{bottom:829.821333pt;}
.y18e{bottom:835.134667pt;}
.y31{bottom:837.792000pt;}
.y1bf{bottom:839.821333pt;}
.y108{bottom:840.414667pt;}
.ye0{bottom:842.488000pt;}
.y4a{bottom:843.304000pt;}
.y72{bottom:845.761333pt;}
.ybc{bottom:850.457333pt;}
.y18d{bottom:851.074667pt;}
.y9a{bottom:852.757333pt;}
.y30{bottom:853.732000pt;}
.y1be{bottom:855.761333pt;}
.y107{bottom:856.356000pt;}
.y165{bottom:856.388000pt;}
.ydf{bottom:858.428000pt;}
.y2{bottom:859.045333pt;}
.y18c{bottom:867.016000pt;}
.y2f{bottom:869.672000pt;}
.y1bd{bottom:871.701333pt;}
.y71{bottom:872.329333pt;}
.yde{bottom:874.368000pt;}
.ybb{bottom:877.024000pt;}
.y49{bottom:877.576000pt;}
.y1{bottom:877.642667pt;}
.y99{bottom:878.668000pt;}
.y106{bottom:880.884000pt;}
.y18b{bottom:882.956000pt;}
.y1bc{bottom:887.641333pt;}
.y70{bottom:888.269333pt;}
.ydd{bottom:890.308000pt;}
.y2e{bottom:898.896000pt;}
.y48{bottom:901.486667pt;}
.y6f{bottom:904.209333pt;}
.y98{bottom:906.248000pt;}
.y1bb{bottom:912.169333pt;}
.y2d{bottom:914.836000pt;}
.y97{bottom:922.188000pt;}
.y47{bottom:925.396000pt;}
.y2c{bottom:930.776000pt;}
.y46{bottom:943.262667pt;}
.y2b{bottom:946.716000pt;}
.ha{height:0.000000pt;}
.h9{height:24.659357pt;}
.hb{height:24.696550pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h8{height:39.850400pt;}
.hc{height:39.855733pt;}
.h4{height:44.192216pt;}
.h2{height:45.525402pt;}
.h3{height:47.820800pt;}
.h7{height:57.384800pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x13{left:112.232000pt;}
.x11{left:113.933333pt;}
.x9{left:115.925333pt;}
.xb{left:125.897333pt;}
.x2{left:129.590667pt;}
.x12{left:134.878667pt;}
.xd{left:138.420000pt;}
.x7{left:147.141333pt;}
.xc{left:226.308000pt;}
.x1{left:228.706667pt;}
.xe{left:267.746667pt;}
.x14{left:279.168000pt;}
.x3{left:304.285333pt;}
.x4{left:327.032000pt;}
.x5{left:343.497333pt;}
.x6{left:380.945333pt;}
.x15{left:391.574667pt;}
.x10{left:397.072000pt;}
.x17{left:401.358667pt;}
.xa{left:404.678667pt;}
.x16{left:410.878667pt;}
.xf{left:526.398667pt;}
}




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