
    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_a44f61345b77aeb05da0866a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e2bc0a955f94e52846cee90a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_576344bd96d3bcf34c422d90.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_981ade4685a672c49f64a5c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_91fc978ec20ac304710e6f9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_91d8718e458a863df62ef394.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b4970fc802cfbbb3c303a0ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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_047eb519bbedc838bb7f37cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:2.680668px;}
.ls22{letter-spacing:2.692672px;}
.ls21{letter-spacing:2.713376px;}
.ls23{letter-spacing:2.714380px;}
.ls24{letter-spacing:2.715579px;}
.ls15{letter-spacing:2.987100px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls1a{letter-spacing:3.900677px;}
.ls17{letter-spacing:3.918145px;}
.ls16{letter-spacing:3.948272px;}
.ls18{letter-spacing:3.949733px;}
.ls19{letter-spacing:3.951477px;}
.lsd{letter-spacing:4.878824px;}
.lsc{letter-spacing:4.916901px;}
.ls48{letter-spacing:5.032754px;}
.ls45{letter-spacing:5.045035px;}
.ls47{letter-spacing:5.077745px;}
.ls44{letter-spacing:5.083827px;}
.ls46{letter-spacing:5.085708px;}
.ls3c{letter-spacing:5.114784px;}
.ls39{letter-spacing:5.137687px;}
.ls2a{letter-spacing:5.148698px;}
.ls28{letter-spacing:5.171754px;}
.ls38{letter-spacing:5.177192px;}
.ls3a{letter-spacing:5.179107px;}
.ls3b{letter-spacing:5.181395px;}
.ls27{letter-spacing:5.211521px;}
.ls29{letter-spacing:5.215751px;}
.ls36{letter-spacing:5.226356px;}
.ls33{letter-spacing:5.249760px;}
.ls7{letter-spacing:5.255525px;}
.ls4{letter-spacing:5.268350px;}
.ls32{letter-spacing:5.290126px;}
.ls42{letter-spacing:5.290850px;}
.ls34{letter-spacing:5.292083px;}
.ls35{letter-spacing:5.294421px;}
.ls6{letter-spacing:5.302507px;}
.ls3{letter-spacing:5.308859px;}
.ls5{letter-spacing:5.310823px;}
.ls3f{letter-spacing:5.314542px;}
.ls30{letter-spacing:5.343190px;}
.ls3e{letter-spacing:5.355407px;}
.ls2d{letter-spacing:5.356229px;}
.ls40{letter-spacing:5.357388px;}
.ls41{letter-spacing:5.359754px;}
.ls2f{letter-spacing:5.390956px;}
.ls2c{letter-spacing:5.397414px;}
.ls2e{letter-spacing:5.399410px;}
.ls12{letter-spacing:5.430139px;}
.lsf{letter-spacing:5.454455px;}
.lse{letter-spacing:5.496395px;}
.ls10{letter-spacing:5.498429px;}
.ls11{letter-spacing:5.500857px;}
.lsa{letter-spacing:13.236538px;}
.ls1f{letter-spacing:13.464538px;}
.ls1d{letter-spacing:13.470538px;}
.ls14{letter-spacing:14.892538px;}
.lsb{letter-spacing:14.898538px;}
.ls9{letter-spacing:14.944200px;}
.ls1e{letter-spacing:15.312538px;}
.ls20{letter-spacing:15.318538px;}
.ls1c{letter-spacing:15.364200px;}
.ls26{letter-spacing:16.239902px;}
.ls1b{letter-spacing:23.630910px;}
.ls49{letter-spacing:30.437563px;}
.ls3d{letter-spacing:30.986154px;}
.ls2b{letter-spacing:31.202080px;}
.ls37{letter-spacing:31.662079px;}
.ls8{letter-spacing:31.784858px;}
.ls43{letter-spacing:32.052792px;}
.ls31{letter-spacing:32.315047px;}
.ls13{letter-spacing:32.907663px;}
.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;}
}
.ws57{word-spacing:-27.492143px;}
.ws9c{word-spacing:-26.997052px;}
.wsc9{word-spacing:-26.786941px;}
.ws45{word-spacing:-26.554115px;}
.wsad{word-spacing:-26.460417px;}
.ws8d{word-spacing:-26.067243px;}
.wsb9{word-spacing:-25.895537px;}
.wsd7{word-spacing:-25.428540px;}
.wsdf{word-spacing:-21.519300px;}
.ws6a{word-spacing:-19.748663px;}
.ws11{word-spacing:-14.943900px;}
.ws7d{word-spacing:-13.571901px;}
.ws52{word-spacing:-5.500036px;}
.ws9a{word-spacing:-5.402012px;}
.ws96{word-spacing:-5.391172px;}
.wsc7{word-spacing:-5.364594px;}
.wsc3{word-spacing:-5.353839px;}
.ws43{word-spacing:-5.315346px;}
.ws3f{word-spacing:-5.304684px;}
.wsa8{word-spacing:-5.293630px;}
.wsb4{word-spacing:-5.178573px;}
.wsd2{word-spacing:-5.088746px;}
.ws66{word-spacing:-3.952283px;}
.ws5d{word-spacing:-3.586536px;}
.wsb1{word-spacing:-3.526760px;}
.ws3c{word-spacing:-3.168107px;}
.ws31{word-spacing:-3.048556px;}
.ws59{word-spacing:-2.929004px;}
.wsdc{word-spacing:-2.749678px;}
.ws7b{word-spacing:-2.719502px;}
.ws77{word-spacing:-2.714053px;}
.ws16{word-spacing:-2.630126px;}
.ws4f{word-spacing:-2.570351px;}
.wse7{word-spacing:-2.385040px;}
.ws74{word-spacing:-2.331248px;}
.ws4d{word-spacing:-2.211697px;}
.wse9{word-spacing:-2.175826px;}
.ws93{word-spacing:-2.092146px;}
.ws94{word-spacing:-1.912819px;}
.wsb{word-spacing:-1.793268px;}
.wsa5{word-spacing:-1.733492px;}
.wse1{word-spacing:-1.715555px;}
.ws1c{word-spacing:-1.494390px;}
.wsa2{word-spacing:-1.374839px;}
.ws91{word-spacing:-1.315063px;}
.wsdd{word-spacing:-1.255288px;}
.wsed{word-spacing:-1.213441px;}
.wse4{word-spacing:-1.171598px;}
.ws5f{word-spacing:-1.016185px;}
.ws82{word-spacing:-0.956410px;}
.ws30{word-spacing:-0.896634px;}
.ws2a{word-spacing:-0.777083px;}
.wse{word-spacing:-0.717307px;}
.wsb2{word-spacing:-0.657532px;}
.ws20{word-spacing:-0.597756px;}
.wsf0{word-spacing:-0.543956px;}
.ws90{word-spacing:-0.537980px;}
.ws1b{word-spacing:-0.478205px;}
.ws5e{word-spacing:-0.298878px;}
.ws3b{word-spacing:-0.119551px;}
.ws33{word-spacing:-0.059776px;}
.ws55{word-spacing:-0.004791px;}
.ws99{word-spacing:-0.004704px;}
.wsc6{word-spacing:-0.004668px;}
.ws42{word-spacing:-0.004627px;}
.wsab{word-spacing:-0.004611px;}
.ws8a{word-spacing:-0.004542px;}
.wsb7{word-spacing:-0.004512px;}
.wsd5{word-spacing:-0.004431px;}
.ws68{word-spacing:-0.003441px;}
.ws7a{word-spacing:-0.002365px;}
.ws49{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.007179px;}
.ws63{word-spacing:0.010446px;}
.wsd1{word-spacing:0.013450px;}
.wsb3{word-spacing:0.013697px;}
.wsa7{word-spacing:0.013996px;}
.ws3e{word-spacing:0.014045px;}
.wsc2{word-spacing:0.014169px;}
.ws95{word-spacing:0.014280px;}
.ws51{word-spacing:0.014542px;}
.ws86{word-spacing:0.024254px;}
.wse0{word-spacing:0.041843px;}
.wsde{word-spacing:0.119551px;}
.wsa4{word-spacing:0.179327px;}
.ws32{word-spacing:0.239102px;}
.ws19{word-spacing:0.382565px;}
.ws6c{word-spacing:0.416888px;}
.ws6d{word-spacing:0.418429px;}
.wsf5{word-spacing:0.543956px;}
.ws5c{word-spacing:0.597756px;}
.ws5{word-spacing:0.657532px;}
.wse6{word-spacing:0.711328px;}
.ws70{word-spacing:0.836858px;}
.ws38{word-spacing:0.956410px;}
.ws24{word-spacing:1.016185px;}
.ws73{word-spacing:1.075961px;}
.ws5b{word-spacing:1.135736px;}
.wsa{word-spacing:1.195512px;}
.ws23{word-spacing:1.255288px;}
.ws1f{word-spacing:1.315063px;}
.wse3{word-spacing:1.338970px;}
.wseb{word-spacing:1.380812px;}
.wsc1{word-spacing:1.434614px;}
.ws80{word-spacing:1.554166px;}
.ws4b{word-spacing:1.673717px;}
.ws1d{word-spacing:1.793268px;}
.ws2{word-spacing:1.853044px;}
.wsf2{word-spacing:1.966612px;}
.ws75{word-spacing:1.972595px;}
.ws25{word-spacing:2.032370px;}
.ws37{word-spacing:2.092146px;}
.ws2b{word-spacing:2.151922px;}
.ws21{word-spacing:2.211697px;}
.wse5{word-spacing:2.259511px;}
.wsd{word-spacing:2.331248px;}
.ws4c{word-spacing:2.391024px;}
.wsf{word-spacing:2.450800px;}
.ws3d{word-spacing:2.510575px;}
.wsbe{word-spacing:2.570351px;}
.ws79{word-spacing:2.714380px;}
.ws5a{word-spacing:2.869229px;}
.wsef{word-spacing:2.928996px;}
.ws2d{word-spacing:2.929004px;}
.ws4e{word-spacing:3.048556px;}
.wsec{word-spacing:3.096367px;}
.ws2e{word-spacing:3.168107px;}
.ws27{word-spacing:3.287658px;}
.wsf1{word-spacing:3.389267px;}
.ws17{word-spacing:3.407209px;}
.wse8{word-spacing:3.514795px;}
.ws9f{word-spacing:3.526760px;}
.ws15{word-spacing:3.586536px;}
.ws85{word-spacing:3.646312px;}
.ws1e{word-spacing:3.706087px;}
.wsda{word-spacing:3.765863px;}
.ws6{word-spacing:3.885414px;}
.ws2f{word-spacing:3.945190px;}
.ws64{word-spacing:3.949733px;}
.ws29{word-spacing:4.004965px;}
.ws3{word-spacing:4.303843px;}
.wsf3{word-spacing:4.393494px;}
.ws36{word-spacing:4.423394px;}
.wsee{word-spacing:4.435337px;}
.ws9{word-spacing:4.602721px;}
.wse2{word-spacing:4.728236px;}
.ws9e{word-spacing:4.961375px;}
.ws6f{word-spacing:5.021150px;}
.wsea{word-spacing:5.062979px;}
.ws2c{word-spacing:5.080926px;}
.wsd4{word-spacing:5.085708px;}
.wsa3{word-spacing:5.140702px;}
.wsb6{word-spacing:5.179107px;}
.wsa0{word-spacing:5.200477px;}
.ws87{word-spacing:5.205745px;}
.ws89{word-spacing:5.213449px;}
.ws8b{word-spacing:5.216212px;}
.wsaa{word-spacing:5.292083px;}
.ws41{word-spacing:5.310823px;}
.wsc5{word-spacing:5.357388px;}
.ws28{word-spacing:5.379804px;}
.ws7c{word-spacing:5.385344px;}
.ws78{word-spacing:5.395130px;}
.ws98{word-spacing:5.399410px;}
.wsbc{word-spacing:5.439580px;}
.ws54{word-spacing:5.498429px;}
.ws1a{word-spacing:5.559131px;}
.wscc{word-spacing:5.618906px;}
.ws26{word-spacing:5.798233px;}
.ws3a{word-spacing:5.917784px;}
.ws6e{word-spacing:5.977560px;}
.ws4{word-spacing:6.097111px;}
.ws62{word-spacing:6.336214px;}
.wsbf{word-spacing:6.395989px;}
.wsf4{word-spacing:6.485634px;}
.ws8{word-spacing:6.694867px;}
.wsce{word-spacing:6.814418px;}
.wsa6{word-spacing:6.874194px;}
.wsc{word-spacing:7.113296px;}
.wscd{word-spacing:7.173072px;}
.ws81{word-spacing:7.292623px;}
.ws83{word-spacing:7.531726px;}
.ws61{word-spacing:7.711052px;}
.ws22{word-spacing:7.770828px;}
.ws69{word-spacing:7.836289px;}
.ws67{word-spacing:7.850529px;}
.ws65{word-spacing:7.880880px;}
.wsbd{word-spacing:7.950155px;}
.ws48{word-spacing:8.189257px;}
.ws50{word-spacing:8.249033px;}
.wsd0{word-spacing:8.308808px;}
.ws14{word-spacing:8.906564px;}
.wsb0{word-spacing:8.966340px;}
.wsd6{word-spacing:10.090070px;}
.wsd3{word-spacing:10.108406px;}
.wsb8{word-spacing:10.275375px;}
.wsb5{word-spacing:10.294047px;}
.ws8c{word-spacing:10.343508px;}
.ws88{word-spacing:10.362304px;}
.wsac{word-spacing:10.499520px;}
.wsa9{word-spacing:10.518599px;}
.ws44{word-spacing:10.536699px;}
.ws40{word-spacing:10.545185px;}
.wsc8{word-spacing:10.629085px;}
.wsc4{word-spacing:10.648400px;}
.ws9b{word-spacing:10.712457px;}
.ws97{word-spacing:10.721084px;}
.ws56{word-spacing:10.908910px;}
.ws53{word-spacing:10.928733px;}
.ws60{word-spacing:11.596466px;}
.ws18{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws35{word-spacing:14.943900px;}
.ws47{word-spacing:16.772534px;}
.ws13{word-spacing:17.932800px;}
.ws34{word-spacing:20.185966px;}
.ws39{word-spacing:21.127966px;}
.ws12{word-spacing:21.519300px;}
.ws92{word-spacing:22.621966px;}
.wscf{word-spacing:23.077966px;}
.wsdb{word-spacing:23.935966px;}
.ws7{word-spacing:24.067966px;}
.wsa1{word-spacing:25.231966px;}
.wsc0{word-spacing:26.587966px;}
.ws84{word-spacing:27.751966px;}
.ws10{word-spacing:37.003661px;}
.ws7e{word-spacing:51.573222px;}
.ws6b{word-spacing:75.044918px;}
.wsd8{word-spacing:96.628453px;}
.wsba{word-spacing:98.403041px;}
.ws8e{word-spacing:99.055522px;}
.wsae{word-spacing:100.549583px;}
.ws46{word-spacing:100.905636px;}
.wsca{word-spacing:101.790375px;}
.ws9d{word-spacing:102.588798px;}
.ws58{word-spacing:104.470145px;}
.wsbb{word-spacing:307.286452px;}
.wsaf{word-spacing:361.976358px;}
.ws7f{word-spacing:487.684452px;}
.wscb{word-spacing:575.129284px;}
.wsd9{word-spacing:673.492425px;}
.ws8f{word-spacing:695.329042px;}
.ws4a{word-spacing:782.773875px;}
.ws72{word-spacing:1188.620194px;}
.ws71{word-spacing:1367.346021px;}
._18{margin-left:-11.790027px;}
._32{margin-left:-10.728318px;}
._1{margin-left:-9.554569px;}
._25{margin-left:-7.803676px;}
._3{margin-left:-6.694867px;}
._b{margin-left:-5.451547px;}
._4{margin-left:-4.124516px;}
._2{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._33{width:2.084649px;}
._22{width:3.256335px;}
._23{width:4.326890px;}
._16{width:5.369880px;}
._66{width:9.957583px;}
._67{width:11.404160px;}
._e{width:12.433325px;}
._30{width:13.449510px;}
._4c{width:14.573308px;}
._c{width:15.679416px;}
._65{width:16.856719px;}
._9{width:17.872904px;}
._15{width:18.948865px;}
._7{width:20.443255px;}
._6{width:22.535401px;}
._f{width:23.671138px;}
._5c{width:24.687155px;}
._12{width:25.763283px;}
._13{width:27.078347px;}
._a{width:28.871615px;}
._8{width:30.295190px;}
._5{width:31.621292px;}
._31{width:33.689533px;}
._11{width:36.020782px;}
._4d{width:38.722650px;}
._60{width:39.989876px;}
._10{width:41.245164px;}
._14{width:43.038600px;}
._61{width:44.195077px;}
._39{width:67.316398px;}
._3b{width:80.128501px;}
._34{width:87.783053px;}
._37{width:101.300666px;}
._38{width:107.326589px;}
._27{width:127.655356px;}
._3c{width:130.579175px;}
._2f{width:132.786225px;}
._36{width:144.151076px;}
._2a{width:147.404019px;}
._44{width:153.966660px;}
._4f{width:155.628777px;}
._51{width:156.651712px;}
._49{width:159.498583px;}
._3d{width:160.763082px;}
._40{width:168.602925px;}
._53{width:170.476069px;}
._1e{width:171.645798px;}
._5e{width:173.047410px;}
._46{width:174.616932px;}
._3a{width:175.909323px;}
._3f{width:178.266476px;}
._3e{width:181.935247px;}
._1d{width:183.435825px;}
._2e{width:185.475657px;}
._63{width:190.575207px;}
._58{width:193.284289px;}
._56{width:195.252350px;}
._1a{width:198.199913px;}
._48{width:201.505996px;}
._62{width:202.716323px;}
._20{width:204.784874px;}
._59{width:206.646386px;}
._64{width:213.128297px;}
._1c{width:218.062391px;}
._5a{width:219.472235px;}
._42{width:220.633141px;}
._2c{width:224.972982px;}
._5f{width:226.078007px;}
._17{width:232.932695px;}
._1f{width:236.544055px;}
._5d{width:240.975319px;}
._29{width:244.721645px;}
._5b{width:258.145052px;}
._19{width:263.098169px;}
._1b{width:271.170620px;}
._26{width:279.957043px;}
._4a{width:282.300488px;}
._43{width:284.341481px;}
._55{width:300.526092px;}
._52{width:306.347384px;}
._4e{width:309.310950px;}
._21{width:312.067422px;}
._54{width:365.195350px;}
._2d{width:376.014538px;}
._57{width:377.745757px;}
._24{width:387.073789px;}
._45{width:388.780380px;}
._28{width:395.763201px;}
._4b{width:402.275387px;}
._50{width:403.404192px;}
._41{width:423.501948px;}
._47{width:429.272439px;}
._2b{width:435.260527px;}
._35{width:568.280135px;}
._d{width:1171.269949px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs1c{font-size:41.842800px;}
.fsf{font-size:43.430191px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fse{font-size:54.287602px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:63.195879px;}
.fs4{font-size:71.731200px;}
.fs9{font-size:78.690710px;}
.fsc{font-size:78.994651px;}
.fs1b{font-size:81.371533px;}
.fs17{font-size:82.865927px;}
.fs11{font-size:83.415385px;}
.fs15{font-size:84.673545px;}
.fs7{font-size:84.973381px;}
.fs19{font-size:85.718426px;}
.fs0{font-size:86.077200px;}
.fs13{font-size:86.390783px;}
.fsb{font-size:87.975080px;}
.fs8{font-size:98.363141px;}
.fs1a{font-size:101.714161px;}
.fs16{font-size:103.582148px;}
.fs10{font-size:104.268970px;}
.fs14{font-size:105.841666px;}
.fs6{font-size:106.216459px;}
.fs18{font-size:107.147763px;}
.fs12{font-size:107.988208px;}
.fsa{font-size:109.968574px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y5a{bottom:188.058000px;}
.yd8{bottom:188.608500px;}
.yfd{bottom:188.878500px;}
.y6f{bottom:189.373500px;}
.y135{bottom:193.674000px;}
.y89{bottom:196.812000px;}
.y20{bottom:197.415000px;}
.y45{bottom:199.278000px;}
.y59{bottom:205.990500px;}
.yd7{bottom:206.541000px;}
.yfc{bottom:206.811000px;}
.y134{bottom:207.124500px;}
.y6e{bottom:207.307500px;}
.y1f{bottom:207.789000px;}
.y88{bottom:214.744500px;}
.y44{bottom:217.210500px;}
.yd6{bottom:224.473500px;}
.yfb{bottom:224.743500px;}
.yeb{bottom:224.832000px;}
.y6d{bottom:225.240000px;}
.y1e{bottom:226.326000px;}
.yc2{bottom:231.348000px;}
.y133{bottom:232.528500px;}
.y87{bottom:232.677000px;}
.y58{bottom:234.010500px;}
.y10c{bottom:239.025000px;}
.yd5{bottom:242.406000px;}
.y6c{bottom:243.172500px;}
.ya6{bottom:244.831500px;}
.y43{bottom:245.230500px;}
.y132{bottom:245.977500px;}
.y86{bottom:250.609500px;}
.yfa{bottom:252.763500px;}
.yd4{bottom:260.338500px;}
.y6b{bottom:261.105000px;}
.y85{bottom:268.543500px;}
.y131{bottom:271.383000px;}
.y1d{bottom:271.774500px;}
.y42{bottom:273.250500px;}
.yd3{bottom:278.272500px;}
.yea{bottom:278.830500px;}
.y6a{bottom:279.037500px;}
.yc1{bottom:283.080185px;}
.y118{bottom:284.010000px;}
.y130{bottom:284.832000px;}
.y84{bottom:286.476000px;}
.y1c{bottom:289.707000px;}
.y10b{bottom:290.754717px;}
.y57{bottom:291.085500px;}
.yd2{bottom:296.205000px;}
.ya5{bottom:296.563685px;}
.y69{bottom:296.971500px;}
.y1b{bottom:307.641000px;}
.y41{bottom:309.639000px;}
.yf9{bottom:309.838500px;}
.y12f{bottom:310.237500px;}
.yc0{bottom:312.588831px;}
.yd1{bottom:314.137500px;}
.y83{bottom:314.496000px;}
.y68{bottom:314.904000px;}
.y10a{bottom:320.265831px;}
.y12e{bottom:323.686500px;}
.y1a{bottom:325.573500px;}
.ya4{bottom:326.072331px;}
.ye9{bottom:330.561717px;}
.yd0{bottom:332.070000px;}
.y67{bottom:332.836500px;}
.y12d{bottom:337.137000px;}
.y56{bottom:342.817685px;}
.ybf{bottom:343.079864px;}
.y19{bottom:343.506000px;}
.y117{bottom:349.950000px;}
.ycf{bottom:350.002500px;}
.y109{bottom:350.756864px;}
.y82{bottom:353.151000px;}
.ya3{bottom:356.563364px;}
.ye8{bottom:360.072831px;}
.y40{bottom:360.075000px;}
.y66{bottom:360.856500px;}
.yf8{bottom:361.568217px;}
.y12c{bottom:362.541000px;}
.yce{bottom:367.936500px;}
.y81{bottom:371.083500px;}
.y18{bottom:371.526000px;}
.y55{bottom:372.326331px;}
.y3f{bottom:378.007500px;}
.ybe{bottom:384.904500px;}
.ycd{bottom:385.869000px;}
.y12b{bottom:387.946500px;}
.y80{bottom:389.016000px;}
.ye7{bottom:390.563864px;}
.yf7{bottom:391.079331px;}
.y108{bottom:392.581500px;}
.y3e{bottom:395.940000px;}
.ya2{bottom:398.388000px;}
.y116{bottom:401.681217px;}
.y54{bottom:402.817364px;}
.ybd{bottom:402.838500px;}
.y17{bottom:407.914500px;}
.y107{bottom:410.514000px;}
.y12a{bottom:413.350500px;}
.y3d{bottom:413.872500px;}
.ycc{bottom:413.889000px;}
.ya1{bottom:416.322000px;}
.y65{bottom:417.930000px;}
.yf6{bottom:421.570364px;}
.y7f{bottom:424.779000px;}
.ye6{bottom:430.267500px;}
.y115{bottom:431.189863px;}
.y3c{bottom:431.806500px;}
.y129{bottom:438.754500px;}
.ybc{bottom:441.120000px;}
.y53{bottom:444.642000px;}
.ye5{bottom:448.201500px;}
.y106{bottom:448.797000px;}
.y3b{bottom:449.739000px;}
.ya0{bottom:451.539000px;}
.y128{bottom:452.205000px;}
.y114{bottom:461.683364px;}
.y16{bottom:461.805000px;}
.y52{bottom:462.576000px;}
.yf5{bottom:463.395000px;}
.y151{bottom:465.804000px;}
.y3a{bottom:467.671500px;}
.y64{bottom:469.662185px;}
.ycb{bottom:470.962500px;}
.y7e{bottom:474.573214px;}
.y127{bottom:477.609000px;}
.y150{bottom:479.253000px;}
.y15{bottom:479.737500px;}
.ye4{bottom:481.299000px;}
.yf4{bottom:481.327500px;}
.y126{bottom:491.059500px;}
.ybb{bottom:493.440101px;}
.y39{bottom:495.691500px;}
.y7d{bottom:498.271372px;}
.y9f{bottom:498.863680px;}
.y63{bottom:499.170831px;}
.y51{bottom:500.857500px;}
.y105{bottom:501.405259px;}
.y113{bottom:502.279500px;}
.y14f{bottom:504.657000px;}
.y14{bottom:508.146000px;}
.y9e{bottom:515.149797px;}
.y125{bottom:516.463500px;}
.y14e{bottom:518.107500px;}
.yf3{bottom:519.610500px;}
.y112{bottom:520.212000px;}
.y7c{bottom:521.971511px;}
.yca{bottom:523.657891px;}
.yba{bottom:524.723095px;}
.y13{bottom:526.078500px;}
.y62{bottom:529.664333px;}
.y9d{bottom:531.435915px;}
.y14d{bottom:531.556500px;}
.y104{bottom:533.551954px;}
.ye3{bottom:533.778497px;}
.y38{bottom:538.468500px;}
.y124{bottom:541.869000px;}
.y12{bottom:544.011000px;}
.y7b{bottom:545.669669px;}
.y9c{bottom:547.722032px;}
.y50{bottom:553.374108px;}
.yb9{bottom:556.003472px;}
.yc9{bottom:556.054028px;}
.y37{bottom:556.401000px;}
.y14c{bottom:556.962000px;}
.y111{bottom:557.265000px;}
.y11{bottom:561.945000px;}
.y9b{bottom:564.009511px;}
.ye2{bottom:565.530678px;}
.y103{bottom:565.695960px;}
.y7a{bottom:569.367826px;}
.y14b{bottom:570.411000px;}
.y61{bottom:571.488000px;}
.yf2{bottom:571.864541px;}
.y123{bottom:572.280000px;}
.y36{bottom:574.333500px;}
.y10{bottom:579.877500px;}
.y9a{bottom:580.837818px;}
.y14a{bottom:583.860000px;}
.y4f{bottom:585.238726px;}
.yb8{bottom:587.283849px;}
.yc8{bottom:588.450165px;}
.y60{bottom:589.420500px;}
.y35{bottom:592.266000px;}
.y79{bottom:593.065983px;}
.y99{bottom:597.123935px;}
.ye1{bottom:597.282859px;}
.yf{bottom:597.810000px;}
.y102{bottom:597.839966px;}
.yf1{bottom:602.938873px;}
.y149{bottom:609.265500px;}
.y110{bottom:609.332623px;}
.y34{bottom:610.198500px;}
.y98{bottom:613.953604px;}
.y122{bottom:614.646000px;}
.ye{bottom:615.742500px;}
.y78{bottom:616.764141px;}
.y4e{bottom:617.103344px;}
.yb7{bottom:619.608214px;}
.yc7{bottom:620.846302px;}
.y148{bottom:622.714500px;}
.y5f{bottom:627.702000px;}
.y33{bottom:628.132500px;}
.ye0{bottom:629.035040px;}
.y101{bottom:629.983972px;}
.yd{bottom:633.675000px;}
.yf0{bottom:634.013206px;}
.y77{bottom:640.462298px;}
.y10f{bottom:640.864973px;}
.y32{bottom:646.065000px;}
.y97{bottom:648.016500px;}
.y147{bottom:648.120000px;}
.y4d{bottom:648.967962px;}
.yb6{bottom:650.888591px;}
.yc{bottom:651.607500px;}
.yc6{bottom:653.242440px;}
.ydf{bottom:660.789877px;}
.y146{bottom:661.569000px;}
.y100{bottom:663.200790px;}
.y31{bottom:663.997500px;}
.y76{bottom:664.162438px;}
.y121{bottom:665.082000px;}
.y96{bottom:665.949000px;}
.yef{bottom:666.124649px;}
.yb{bottom:669.541500px;}
.y10e{bottom:671.378915px;}
.y5e{bottom:680.593305px;}
.y4c{bottom:681.896067px;}
.y30{bottom:681.930000px;}
.yb5{bottom:683.212955px;}
.y95{bottom:683.881500px;}
.yc5{bottom:686.719803px;}
.y145{bottom:686.974500px;}
.ya{bottom:687.474000px;}
.y75{bottom:687.860595px;}
.yde{bottom:692.542058px;}
.yff{bottom:695.344796px;}
.yee{bottom:697.198982px;}
.y120{bottom:698.481000px;}
.y2f{bottom:699.862500px;}
.y144{bottom:700.423500px;}
.y94{bottom:701.814000px;}
.y10d{bottom:702.911264px;}
.y9{bottom:705.406500px;}
.y74{bottom:711.558753px;}
.y4b{bottom:713.760684px;}
.y143{bottom:713.872500px;}
.y5d{bottom:714.684601px;}
.y2e{bottom:717.796500px;}
.yc4{bottom:719.115940px;}
.y93{bottom:719.748000px;}
.y8{bottom:723.339000px;}
.ydd{bottom:724.294240px;}
.yb4{bottom:724.707000px;}
.yfe{bottom:728.561614px;}
.yed{bottom:729.310425px;}
.y2d{bottom:735.729000px;}
.y73{bottom:736.047840px;}
.y92{bottom:737.680500px;}
.y142{bottom:739.278000px;}
.y7{bottom:741.271500px;}
.yb3{bottom:742.639500px;}
.y4a{bottom:746.688789px;}
.y5c{bottom:747.674842px;}
.y11f{bottom:748.917000px;}
.yc3{bottom:752.593303px;}
.y2c{bottom:753.661500px;}
.y91{bottom:755.613000px;}
.ydc{bottom:756.046421px;}
.y72{bottom:760.534945px;}
.yb2{bottom:760.573500px;}
.y141{bottom:764.682000px;}
.y11e{bottom:766.849500px;}
.y6{bottom:767.758500px;}
.yec{bottom:770.659500px;}
.y2b{bottom:771.594000px;}
.y90{bottom:773.545500px;}
.y140{bottom:778.132500px;}
.yb1{bottom:778.506000px;}
.y5b{bottom:781.766137px;}
.y71{bottom:784.233102px;}
.y49{bottom:788.592000px;}
.ydb{bottom:788.858336px;}
.y2a{bottom:789.526500px;}
.y8f{bottom:791.478000px;}
.y13f{bottom:791.581500px;}
.yb0{bottom:796.438500px;}
.y11d{bottom:800.250000px;}
.y48{bottom:806.526000px;}
.y70{bottom:808.722189px;}
.yaf{bottom:814.371000px;}
.y13e{bottom:816.987000px;}
.y29{bottom:817.546500px;}
.yda{bottom:820.610517px;}
.y47{bottom:824.458500px;}
.y13d{bottom:830.436000px;}
.yae{bottom:832.303500px;}
.y8e{bottom:838.899000px;}
.y46{bottom:842.391000px;}
.yad{bottom:850.236000px;}
.y11c{bottom:850.684500px;}
.yd9{bottom:853.422432px;}
.y13c{bottom:855.840000px;}
.y28{bottom:860.323500px;}
.y5{bottom:867.796500px;}
.yac{bottom:868.170000px;}
.y11b{bottom:868.618500px;}
.y13b{bottom:869.290500px;}
.y27{bottom:878.256000px;}
.yab{bottom:886.102500px;}
.y8d{bottom:890.629628px;}
.y4{bottom:890.959500px;}
.y13a{bottom:894.694500px;}
.y26{bottom:896.188500px;}
.y11a{bottom:902.017500px;}
.yaa{bottom:904.035000px;}
.y139{bottom:908.145000px;}
.y3{bottom:914.122500px;}
.y8c{bottom:920.138274px;}
.ya9{bottom:921.967500px;}
.y25{bottom:932.055000px;}
.y138{bottom:933.549000px;}
.ya8{bottom:939.900000px;}
.y137{bottom:946.998000px;}
.y8b{bottom:949.649388px;}
.y24{bottom:949.987500px;}
.y119{bottom:952.453500px;}
.ya7{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y23{bottom:967.920000px;}
.y136{bottom:972.403500px;}
.y8a{bottom:980.140422px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h1b{height:28.787846px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h12{height:37.349870px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hb{height:41.484266px;}
.hd{height:41.961802px;}
.h13{height:41.967802px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.h1a{height:52.046387px;}
.h10{height:52.134854px;}
.h11{height:54.348320px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.he{height:67.673841px;}
.h19{height:69.979343px;}
.h17{height:71.264518px;}
.h14{height:71.737051px;}
.h16{height:72.819066px;}
.hc{height:73.076924px;}
.h18{height:73.717661px;}
.h15{height:74.295887px;}
.hf{height:75.658379px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x1a{left:204.045452px;}
.x16{left:205.589859px;}
.xe{left:207.291462px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x8{left:222.172500px;}
.xc{left:223.888783px;}
.x20{left:229.636739px;}
.x1{left:232.453500px;}
.x22{left:233.477195px;}
.x1d{left:238.047161px;}
.x26{left:239.727000px;}
.x14{left:241.996414px;}
.x2a{left:243.379500px;}
.x10{left:245.370000px;}
.x1f{left:246.607500px;}
.x13{left:249.022500px;}
.x1c{left:252.345000px;}
.x24{left:254.865079px;}
.xb{left:256.243831px;}
.x11{left:258.207621px;}
.x29{left:260.283000px;}
.xf{left:262.273500px;}
.x2{left:266.614500px;}
.x1b{left:269.250000px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x19{left:318.334352px;}
.x18{left:346.822456px;}
.x17{left:363.359234px;}
.x15{left:393.835097px;}
.x12{left:400.878341px;}
.x3{left:405.975000px;}
.x28{left:421.030016px;}
.xd{left:426.494978px;}
.x25{left:449.665144px;}
.x27{left:450.964500px;}
.x21{left:452.751415px;}
.xa{left:454.699500px;}
.x23{left:458.058473px;}
.x1e{left:461.847727px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:2.382816pt;}
.ls22{letter-spacing:2.393486pt;}
.ls21{letter-spacing:2.411890pt;}
.ls23{letter-spacing:2.412782pt;}
.ls24{letter-spacing:2.413848pt;}
.ls15{letter-spacing:2.655200pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls1a{letter-spacing:3.467269pt;}
.ls17{letter-spacing:3.482795pt;}
.ls16{letter-spacing:3.509575pt;}
.ls18{letter-spacing:3.510873pt;}
.ls19{letter-spacing:3.512424pt;}
.lsd{letter-spacing:4.336732pt;}
.lsc{letter-spacing:4.370579pt;}
.ls48{letter-spacing:4.473559pt;}
.ls45{letter-spacing:4.484476pt;}
.ls47{letter-spacing:4.513551pt;}
.ls44{letter-spacing:4.518958pt;}
.ls46{letter-spacing:4.520629pt;}
.ls3c{letter-spacing:4.546474pt;}
.ls39{letter-spacing:4.566833pt;}
.ls2a{letter-spacing:4.576621pt;}
.ls28{letter-spacing:4.597115pt;}
.ls38{letter-spacing:4.601949pt;}
.ls3a{letter-spacing:4.603651pt;}
.ls3b{letter-spacing:4.605684pt;}
.ls27{letter-spacing:4.632463pt;}
.ls29{letter-spacing:4.636223pt;}
.ls36{letter-spacing:4.645650pt;}
.ls33{letter-spacing:4.666453pt;}
.ls7{letter-spacing:4.671578pt;}
.ls4{letter-spacing:4.682977pt;}
.ls32{letter-spacing:4.702335pt;}
.ls42{letter-spacing:4.702978pt;}
.ls34{letter-spacing:4.704074pt;}
.ls35{letter-spacing:4.706152pt;}
.ls6{letter-spacing:4.713340pt;}
.ls3{letter-spacing:4.718986pt;}
.ls5{letter-spacing:4.720732pt;}
.ls3f{letter-spacing:4.724038pt;}
.ls30{letter-spacing:4.749502pt;}
.ls3e{letter-spacing:4.760362pt;}
.ls2d{letter-spacing:4.761092pt;}
.ls40{letter-spacing:4.762123pt;}
.ls41{letter-spacing:4.764226pt;}
.ls2f{letter-spacing:4.791961pt;}
.ls2c{letter-spacing:4.797701pt;}
.ls2e{letter-spacing:4.799476pt;}
.ls12{letter-spacing:4.826790pt;}
.lsf{letter-spacing:4.848404pt;}
.lse{letter-spacing:4.885685pt;}
.ls10{letter-spacing:4.887492pt;}
.ls11{letter-spacing:4.889651pt;}
.lsa{letter-spacing:11.765812pt;}
.ls1f{letter-spacing:11.968479pt;}
.ls1d{letter-spacing:11.973812pt;}
.ls14{letter-spacing:13.237812pt;}
.lsb{letter-spacing:13.243145pt;}
.ls9{letter-spacing:13.283733pt;}
.ls1e{letter-spacing:13.611145pt;}
.ls20{letter-spacing:13.616479pt;}
.ls1c{letter-spacing:13.657067pt;}
.ls26{letter-spacing:14.435469pt;}
.ls1b{letter-spacing:21.005253pt;}
.ls49{letter-spacing:27.055612pt;}
.ls3d{letter-spacing:27.543248pt;}
.ls2b{letter-spacing:27.735182pt;}
.ls37{letter-spacing:28.144070pt;}
.ls8{letter-spacing:28.253207pt;}
.ls43{letter-spacing:28.491371pt;}
.ls31{letter-spacing:28.724486pt;}
.ls13{letter-spacing:29.251256pt;}
.ws57{word-spacing:-24.437461pt;}
.ws9c{word-spacing:-23.997380pt;}
.wsc9{word-spacing:-23.810614pt;}
.ws45{word-spacing:-23.603658pt;}
.wsad{word-spacing:-23.520370pt;}
.ws8d{word-spacing:-23.170882pt;}
.wsb9{word-spacing:-23.018255pt;}
.wsd7{word-spacing:-22.603147pt;}
.wsdf{word-spacing:-19.128267pt;}
.ws6a{word-spacing:-17.554367pt;}
.ws11{word-spacing:-13.283467pt;}
.ws7d{word-spacing:-12.063912pt;}
.ws52{word-spacing:-4.888921pt;}
.ws9a{word-spacing:-4.801788pt;}
.ws96{word-spacing:-4.792153pt;}
.wsc7{word-spacing:-4.768528pt;}
.wsc3{word-spacing:-4.758968pt;}
.ws43{word-spacing:-4.724752pt;}
.ws3f{word-spacing:-4.715275pt;}
.wsa8{word-spacing:-4.705449pt;}
.wsb4{word-spacing:-4.603176pt;}
.wsd2{word-spacing:-4.523330pt;}
.ws66{word-spacing:-3.513140pt;}
.ws5d{word-spacing:-3.188032pt;}
.wsb1{word-spacing:-3.134898pt;}
.ws3c{word-spacing:-2.816095pt;}
.ws31{word-spacing:-2.709827pt;}
.ws59{word-spacing:-2.603559pt;}
.wsdc{word-spacing:-2.444158pt;}
.ws7b{word-spacing:-2.417335pt;}
.ws77{word-spacing:-2.412492pt;}
.ws16{word-spacing:-2.337890pt;}
.ws4f{word-spacing:-2.284756pt;}
.wse7{word-spacing:-2.120035pt;}
.ws74{word-spacing:-2.072221pt;}
.ws4d{word-spacing:-1.965953pt;}
.wse9{word-spacing:-1.934067pt;}
.ws93{word-spacing:-1.859685pt;}
.ws94{word-spacing:-1.700284pt;}
.wsb{word-spacing:-1.594016pt;}
.wsa5{word-spacing:-1.540882pt;}
.wse1{word-spacing:-1.524938pt;}
.ws1c{word-spacing:-1.328347pt;}
.wsa2{word-spacing:-1.222079pt;}
.ws91{word-spacing:-1.168945pt;}
.wsdd{word-spacing:-1.115811pt;}
.wsed{word-spacing:-1.078614pt;}
.wse4{word-spacing:-1.041421pt;}
.ws5f{word-spacing:-0.903276pt;}
.ws82{word-spacing:-0.850142pt;}
.ws30{word-spacing:-0.797008pt;}
.ws2a{word-spacing:-0.690740pt;}
.wse{word-spacing:-0.637606pt;}
.wsb2{word-spacing:-0.584473pt;}
.ws20{word-spacing:-0.531339pt;}
.wsf0{word-spacing:-0.483517pt;}
.ws90{word-spacing:-0.478205pt;}
.ws1b{word-spacing:-0.425071pt;}
.ws5e{word-spacing:-0.265669pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws33{word-spacing:-0.053134pt;}
.ws55{word-spacing:-0.004258pt;}
.ws99{word-spacing:-0.004182pt;}
.wsc6{word-spacing:-0.004149pt;}
.ws42{word-spacing:-0.004113pt;}
.wsab{word-spacing:-0.004098pt;}
.ws8a{word-spacing:-0.004038pt;}
.wsb7{word-spacing:-0.004011pt;}
.wsd5{word-spacing:-0.003939pt;}
.ws68{word-spacing:-0.003059pt;}
.ws7a{word-spacing:-0.002102pt;}
.ws49{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.006381pt;}
.ws63{word-spacing:0.009285pt;}
.wsd1{word-spacing:0.011956pt;}
.wsb3{word-spacing:0.012175pt;}
.wsa7{word-spacing:0.012441pt;}
.ws3e{word-spacing:0.012485pt;}
.wsc2{word-spacing:0.012594pt;}
.ws95{word-spacing:0.012693pt;}
.ws51{word-spacing:0.012926pt;}
.ws86{word-spacing:0.021559pt;}
.wse0{word-spacing:0.037194pt;}
.wsde{word-spacing:0.106268pt;}
.wsa4{word-spacing:0.159402pt;}
.ws32{word-spacing:0.212535pt;}
.ws19{word-spacing:0.340058pt;}
.ws6c{word-spacing:0.370567pt;}
.ws6d{word-spacing:0.371937pt;}
.wsf5{word-spacing:0.483517pt;}
.ws5c{word-spacing:0.531339pt;}
.ws5{word-spacing:0.584473pt;}
.wse6{word-spacing:0.632291pt;}
.ws70{word-spacing:0.743874pt;}
.ws38{word-spacing:0.850142pt;}
.ws24{word-spacing:0.903276pt;}
.ws73{word-spacing:0.956410pt;}
.ws5b{word-spacing:1.009543pt;}
.wsa{word-spacing:1.062677pt;}
.ws23{word-spacing:1.115811pt;}
.ws1f{word-spacing:1.168945pt;}
.wse3{word-spacing:1.190195pt;}
.wseb{word-spacing:1.227389pt;}
.wsc1{word-spacing:1.275213pt;}
.ws80{word-spacing:1.381481pt;}
.ws4b{word-spacing:1.487748pt;}
.ws1d{word-spacing:1.594016pt;}
.ws2{word-spacing:1.647150pt;}
.wsf2{word-spacing:1.748099pt;}
.ws75{word-spacing:1.753418pt;}
.ws25{word-spacing:1.806551pt;}
.ws37{word-spacing:1.859685pt;}
.ws2b{word-spacing:1.912819pt;}
.ws21{word-spacing:1.965953pt;}
.wse5{word-spacing:2.008454pt;}
.wsd{word-spacing:2.072221pt;}
.ws4c{word-spacing:2.125355pt;}
.wsf{word-spacing:2.178489pt;}
.ws3d{word-spacing:2.231622pt;}
.wsbe{word-spacing:2.284756pt;}
.ws79{word-spacing:2.412782pt;}
.ws5a{word-spacing:2.550426pt;}
.wsef{word-spacing:2.603552pt;}
.ws2d{word-spacing:2.603559pt;}
.ws4e{word-spacing:2.709827pt;}
.wsec{word-spacing:2.752326pt;}
.ws2e{word-spacing:2.816095pt;}
.ws27{word-spacing:2.922363pt;}
.wsf1{word-spacing:3.012682pt;}
.ws17{word-spacing:3.028630pt;}
.wse8{word-spacing:3.124262pt;}
.ws9f{word-spacing:3.134898pt;}
.ws15{word-spacing:3.188032pt;}
.ws85{word-spacing:3.241166pt;}
.ws1e{word-spacing:3.294300pt;}
.wsda{word-spacing:3.347434pt;}
.ws6{word-spacing:3.453701pt;}
.ws2f{word-spacing:3.506835pt;}
.ws64{word-spacing:3.510873pt;}
.ws29{word-spacing:3.559969pt;}
.ws3{word-spacing:3.825638pt;}
.wsf3{word-spacing:3.905328pt;}
.ws36{word-spacing:3.931906pt;}
.wsee{word-spacing:3.942522pt;}
.ws9{word-spacing:4.091308pt;}
.wse2{word-spacing:4.202877pt;}
.ws9e{word-spacing:4.410111pt;}
.ws6f{word-spacing:4.463245pt;}
.wsea{word-spacing:4.500426pt;}
.ws2c{word-spacing:4.516379pt;}
.wsd4{word-spacing:4.520629pt;}
.wsa3{word-spacing:4.569513pt;}
.wsb6{word-spacing:4.603651pt;}
.wsa0{word-spacing:4.622646pt;}
.ws87{word-spacing:4.627329pt;}
.ws89{word-spacing:4.634176pt;}
.ws8b{word-spacing:4.636632pt;}
.wsaa{word-spacing:4.704074pt;}
.ws41{word-spacing:4.720732pt;}
.wsc5{word-spacing:4.762123pt;}
.ws28{word-spacing:4.782048pt;}
.ws7c{word-spacing:4.786972pt;}
.ws78{word-spacing:4.795671pt;}
.ws98{word-spacing:4.799476pt;}
.wsbc{word-spacing:4.835182pt;}
.ws54{word-spacing:4.887492pt;}
.ws1a{word-spacing:4.941450pt;}
.wscc{word-spacing:4.994583pt;}
.ws26{word-spacing:5.153985pt;}
.ws3a{word-spacing:5.260253pt;}
.ws6e{word-spacing:5.313387pt;}
.ws4{word-spacing:5.419654pt;}
.ws62{word-spacing:5.632190pt;}
.wsbf{word-spacing:5.685324pt;}
.wsf4{word-spacing:5.765008pt;}
.ws8{word-spacing:5.950993pt;}
.wsce{word-spacing:6.057261pt;}
.wsa6{word-spacing:6.110395pt;}
.wsc{word-spacing:6.322930pt;}
.wscd{word-spacing:6.376064pt;}
.ws81{word-spacing:6.482332pt;}
.ws83{word-spacing:6.694867pt;}
.ws61{word-spacing:6.854269pt;}
.ws22{word-spacing:6.907403pt;}
.ws69{word-spacing:6.965590pt;}
.ws67{word-spacing:6.978248pt;}
.ws65{word-spacing:7.005227pt;}
.wsbd{word-spacing:7.066804pt;}
.ws48{word-spacing:7.279340pt;}
.ws50{word-spacing:7.332474pt;}
.wsd0{word-spacing:7.385607pt;}
.ws14{word-spacing:7.916946pt;}
.wsb0{word-spacing:7.970080pt;}
.wsd6{word-spacing:8.968951pt;}
.wsd3{word-spacing:8.985249pt;}
.wsb8{word-spacing:9.133667pt;}
.wsb5{word-spacing:9.150264pt;}
.ws8c{word-spacing:9.194229pt;}
.ws88{word-spacing:9.210937pt;}
.wsac{word-spacing:9.332906pt;}
.wsa9{word-spacing:9.349866pt;}
.ws44{word-spacing:9.365955pt;}
.ws40{word-spacing:9.373498pt;}
.wsc8{word-spacing:9.448075pt;}
.wsc4{word-spacing:9.465244pt;}
.ws9b{word-spacing:9.522184pt;}
.ws97{word-spacing:9.529853pt;}
.ws56{word-spacing:9.696809pt;}
.ws53{word-spacing:9.714430pt;}
.ws60{word-spacing:10.307970pt;}
.ws18{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws35{word-spacing:13.283467pt;}
.ws47{word-spacing:14.908919pt;}
.ws13{word-spacing:15.940267pt;}
.ws34{word-spacing:17.943081pt;}
.ws39{word-spacing:18.780414pt;}
.ws12{word-spacing:19.128267pt;}
.ws92{word-spacing:20.108414pt;}
.wscf{word-spacing:20.513748pt;}
.wsdb{word-spacing:21.276414pt;}
.ws7{word-spacing:21.393748pt;}
.wsa1{word-spacing:22.428414pt;}
.wsc0{word-spacing:23.633748pt;}
.ws84{word-spacing:24.668414pt;}
.ws10{word-spacing:32.892143pt;}
.ws7e{word-spacing:45.842864pt;}
.ws6b{word-spacing:66.706594pt;}
.wsd8{word-spacing:85.891958pt;}
.wsba{word-spacing:87.469370pt;}
.ws8e{word-spacing:88.049353pt;}
.wsae{word-spacing:89.377407pt;}
.ws46{word-spacing:89.693899pt;}
.wsca{word-spacing:90.480333pt;}
.ws9d{word-spacing:91.190042pt;}
.ws58{word-spacing:92.862351pt;}
.wsbb{word-spacing:273.143513pt;}
.wsaf{word-spacing:321.756763pt;}
.ws7f{word-spacing:433.497291pt;}
.wscb{word-spacing:511.226031pt;}
.wsd9{word-spacing:598.659934pt;}
.ws8f{word-spacing:618.070260pt;}
.ws4a{word-spacing:695.799000pt;}
.ws72{word-spacing:1056.551283pt;}
.ws71{word-spacing:1215.418685pt;}
._18{margin-left:-10.480024pt;}
._32{margin-left:-9.536283pt;}
._1{margin-left:-8.492950pt;}
._25{margin-left:-6.936601pt;}
._3{margin-left:-5.950993pt;}
._b{margin-left:-4.845819pt;}
._4{margin-left:-3.666237pt;}
._2{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._33{width:1.853021pt;}
._22{width:2.894520pt;}
._23{width:3.846124pt;}
._16{width:4.773227pt;}
._66{width:8.851185pt;}
._67{width:10.137031pt;}
._e{width:11.051844pt;}
._30{width:11.955120pt;}
._4c{width:12.954051pt;}
._c{width:13.937259pt;}
._65{width:14.983750pt;}
._9{width:15.887026pt;}
._15{width:16.843435pt;}
._7{width:18.171782pt;}
._6{width:20.031468pt;}
._f{width:21.041011pt;}
._5c{width:21.944138pt;}
._12{width:22.900696pt;}
._13{width:24.069642pt;}
._a{width:25.663658pt;}
._8{width:26.929058pt;}
._5{width:28.107815pt;}
._31{width:29.946252pt;}
._11{width:32.018473pt;}
._4d{width:34.420133pt;}
._60{width:35.546557pt;}
._10{width:36.662368pt;}
._14{width:38.256533pt;}
._61{width:39.284513pt;}
._39{width:59.836798pt;}
._3b{width:71.225334pt;}
._34{width:78.029380pt;}
._37{width:90.045036pt;}
._38{width:95.401413pt;}
._27{width:113.471427pt;}
._3c{width:116.070378pt;}
._2f{width:118.032200pt;}
._36{width:128.134290pt;}
._2a{width:131.025794pt;}
._44{width:136.859253pt;}
._4f{width:138.336691pt;}
._51{width:139.245966pt;}
._49{width:141.776518pt;}
._3d{width:142.900517pt;}
._40{width:149.869266pt;}
._53{width:151.534284pt;}
._1e{width:152.574043pt;}
._5e{width:153.819920pt;}
._46{width:155.215051pt;}
._3a{width:156.363843pt;}
._3f{width:158.459090pt;}
._3e{width:161.720220pt;}
._1d{width:163.054067pt;}
._2e{width:164.867250pt;}
._63{width:169.400184pt;}
._58{width:171.808257pt;}
._56{width:173.557644pt;}
._1a{width:176.177700pt;}
._48{width:179.116441pt;}
._62{width:180.192287pt;}
._20{width:182.030999pt;}
._59{width:183.685677pt;}
._64{width:189.447375pt;}
._1c{width:193.833236pt;}
._5a{width:195.086431pt;}
._42{width:196.118347pt;}
._2c{width:199.975984pt;}
._5f{width:200.958228pt;}
._17{width:207.051284pt;}
._1f{width:210.261382pt;}
._5d{width:214.200284pt;}
._29{width:217.530351pt;}
._5b{width:229.462268pt;}
._19{width:233.865039pt;}
._1b{width:241.040551pt;}
._26{width:248.850705pt;}
._4a{width:250.933767pt;}
._43{width:252.747984pt;}
._55{width:267.134304pt;}
._52{width:272.308786pt;}
._4e{width:274.943067pt;}
._21{width:277.393264pt;}
._54{width:324.618089pt;}
._2d{width:334.235145pt;}
._57{width:335.774007pt;}
._24{width:344.065591pt;}
._45{width:345.582560pt;}
._28{width:351.789512pt;}
._4b{width:357.578122pt;}
._50{width:358.581504pt;}
._41{width:376.446176pt;}
._47{width:381.575501pt;}
._2b{width:386.898246pt;}
._35{width:505.137897pt;}
._d{width:1041.128843pt;}
.fs5{font-size:31.880533pt;}
.fs1c{font-size:37.193600pt;}
.fsf{font-size:38.604614pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fse{font-size:48.255646pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:56.174115pt;}
.fs4{font-size:63.761067pt;}
.fs9{font-size:69.947298pt;}
.fsc{font-size:70.217467pt;}
.fs1b{font-size:72.330252pt;}
.fs17{font-size:73.658602pt;}
.fs11{font-size:74.147009pt;}
.fs15{font-size:75.265374pt;}
.fs7{font-size:75.531894pt;}
.fs19{font-size:76.194156pt;}
.fs0{font-size:76.513067pt;}
.fs13{font-size:76.791807pt;}
.fsb{font-size:78.200071pt;}
.fs8{font-size:87.433903pt;}
.fs1a{font-size:90.412588pt;}
.fs16{font-size:92.073021pt;}
.fs10{font-size:92.683529pt;}
.fs14{font-size:94.081481pt;}
.fs6{font-size:94.414630pt;}
.fs18{font-size:95.242456pt;}
.fs12{font-size:95.989518pt;}
.fsa{font-size:97.749843pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y5a{bottom:167.162667pt;}
.yd8{bottom:167.652000pt;}
.yfd{bottom:167.892000pt;}
.y6f{bottom:168.332000pt;}
.y135{bottom:172.154667pt;}
.y89{bottom:174.944000pt;}
.y20{bottom:175.480000pt;}
.y45{bottom:177.136000pt;}
.y59{bottom:183.102667pt;}
.yd7{bottom:183.592000pt;}
.yfc{bottom:183.832000pt;}
.y134{bottom:184.110667pt;}
.y6e{bottom:184.273333pt;}
.y1f{bottom:184.701333pt;}
.y88{bottom:190.884000pt;}
.y44{bottom:193.076000pt;}
.yd6{bottom:199.532000pt;}
.yfb{bottom:199.772000pt;}
.yeb{bottom:199.850667pt;}
.y6d{bottom:200.213333pt;}
.y1e{bottom:201.178667pt;}
.yc2{bottom:205.642667pt;}
.y133{bottom:206.692000pt;}
.y87{bottom:206.824000pt;}
.y58{bottom:208.009333pt;}
.y10c{bottom:212.466667pt;}
.yd5{bottom:215.472000pt;}
.y6c{bottom:216.153333pt;}
.ya6{bottom:217.628000pt;}
.y43{bottom:217.982667pt;}
.y132{bottom:218.646667pt;}
.y86{bottom:222.764000pt;}
.yfa{bottom:224.678667pt;}
.yd4{bottom:231.412000pt;}
.y6b{bottom:232.093333pt;}
.y85{bottom:238.705333pt;}
.y131{bottom:241.229333pt;}
.y1d{bottom:241.577333pt;}
.y42{bottom:242.889333pt;}
.yd3{bottom:247.353333pt;}
.yea{bottom:247.849333pt;}
.y6a{bottom:248.033333pt;}
.yc1{bottom:251.626831pt;}
.y118{bottom:252.453333pt;}
.y130{bottom:253.184000pt;}
.y84{bottom:254.645333pt;}
.y1c{bottom:257.517333pt;}
.y10b{bottom:258.448637pt;}
.y57{bottom:258.742667pt;}
.yd2{bottom:263.293333pt;}
.ya5{bottom:263.612164pt;}
.y69{bottom:263.974667pt;}
.y1b{bottom:273.458667pt;}
.y41{bottom:275.234667pt;}
.yf9{bottom:275.412000pt;}
.y12f{bottom:275.766667pt;}
.yc0{bottom:277.856739pt;}
.yd1{bottom:279.233333pt;}
.y83{bottom:279.552000pt;}
.y68{bottom:279.914667pt;}
.y10a{bottom:284.680739pt;}
.y12e{bottom:287.721333pt;}
.y1a{bottom:289.398667pt;}
.ya4{bottom:289.842072pt;}
.ye9{bottom:293.832637pt;}
.yd0{bottom:295.173333pt;}
.y67{bottom:295.854667pt;}
.y12d{bottom:299.677333pt;}
.y56{bottom:304.726831pt;}
.ybf{bottom:304.959879pt;}
.y19{bottom:305.338667pt;}
.y117{bottom:311.066667pt;}
.ycf{bottom:311.113333pt;}
.y109{bottom:311.783879pt;}
.y82{bottom:313.912000pt;}
.ya3{bottom:316.945213pt;}
.ye8{bottom:320.064739pt;}
.y40{bottom:320.066667pt;}
.y66{bottom:320.761333pt;}
.yf8{bottom:321.393970pt;}
.y12c{bottom:322.258667pt;}
.yce{bottom:327.054667pt;}
.y81{bottom:329.852000pt;}
.y18{bottom:330.245333pt;}
.y55{bottom:330.956739pt;}
.y3f{bottom:336.006667pt;}
.ybe{bottom:342.137333pt;}
.ycd{bottom:342.994667pt;}
.y12b{bottom:344.841333pt;}
.y80{bottom:345.792000pt;}
.ye7{bottom:347.167879pt;}
.yf7{bottom:347.626072pt;}
.y108{bottom:348.961333pt;}
.y3e{bottom:351.946667pt;}
.ya2{bottom:354.122667pt;}
.y116{bottom:357.049970pt;}
.y54{bottom:358.059879pt;}
.ybd{bottom:358.078667pt;}
.y17{bottom:362.590667pt;}
.y107{bottom:364.901333pt;}
.y12a{bottom:367.422667pt;}
.y3d{bottom:367.886667pt;}
.ycc{bottom:367.901333pt;}
.ya1{bottom:370.064000pt;}
.y65{bottom:371.493333pt;}
.yf6{bottom:374.729213pt;}
.y7f{bottom:377.581333pt;}
.ye6{bottom:382.460000pt;}
.y115{bottom:383.279878pt;}
.y3c{bottom:383.828000pt;}
.y129{bottom:390.004000pt;}
.ybc{bottom:392.106667pt;}
.y53{bottom:395.237333pt;}
.ye5{bottom:398.401333pt;}
.y106{bottom:398.930667pt;}
.y3b{bottom:399.768000pt;}
.ya0{bottom:401.368000pt;}
.y128{bottom:401.960000pt;}
.y114{bottom:410.385213pt;}
.y16{bottom:410.493333pt;}
.y52{bottom:411.178667pt;}
.yf5{bottom:411.906667pt;}
.y151{bottom:414.048000pt;}
.y3a{bottom:415.708000pt;}
.y64{bottom:417.477498pt;}
.ycb{bottom:418.633333pt;}
.y7e{bottom:421.842857pt;}
.y127{bottom:424.541333pt;}
.y150{bottom:426.002667pt;}
.y15{bottom:426.433333pt;}
.ye4{bottom:427.821333pt;}
.yf4{bottom:427.846667pt;}
.y126{bottom:436.497333pt;}
.ybb{bottom:438.613423pt;}
.y39{bottom:440.614667pt;}
.y7d{bottom:442.907886pt;}
.y9f{bottom:443.434382pt;}
.y63{bottom:443.707405pt;}
.y51{bottom:445.206667pt;}
.y105{bottom:445.693563pt;}
.y113{bottom:446.470667pt;}
.y14f{bottom:448.584000pt;}
.y14{bottom:451.685333pt;}
.y9e{bottom:457.910931pt;}
.y125{bottom:459.078667pt;}
.y14e{bottom:460.540000pt;}
.yf3{bottom:461.876000pt;}
.y112{bottom:462.410667pt;}
.y7c{bottom:463.974677pt;}
.yca{bottom:465.473681pt;}
.yba{bottom:466.420529pt;}
.y13{bottom:467.625333pt;}
.y62{bottom:470.812740pt;}
.y9d{bottom:472.387480pt;}
.y14d{bottom:472.494667pt;}
.y104{bottom:474.268403pt;}
.ye3{bottom:474.469775pt;}
.y38{bottom:478.638667pt;}
.y124{bottom:481.661333pt;}
.y12{bottom:483.565333pt;}
.y7b{bottom:485.039705pt;}
.y9c{bottom:486.864028pt;}
.y50{bottom:491.888096pt;}
.yb9{bottom:494.225308pt;}
.yc9{bottom:494.270247pt;}
.y37{bottom:494.578667pt;}
.y14c{bottom:495.077333pt;}
.y111{bottom:495.346667pt;}
.y11{bottom:499.506667pt;}
.y9b{bottom:501.341788pt;}
.ye2{bottom:502.693936pt;}
.y103{bottom:502.840853pt;}
.y7a{bottom:506.104734pt;}
.y14b{bottom:507.032000pt;}
.y61{bottom:507.989333pt;}
.yf2{bottom:508.324036pt;}
.y123{bottom:508.693333pt;}
.y36{bottom:510.518667pt;}
.y10{bottom:515.446667pt;}
.y9a{bottom:516.300283pt;}
.y14a{bottom:518.986667pt;}
.y4f{bottom:520.212201pt;}
.yb8{bottom:522.030088pt;}
.yc8{bottom:523.066813pt;}
.y60{bottom:523.929333pt;}
.y35{bottom:526.458667pt;}
.y79{bottom:527.169763pt;}
.y99{bottom:530.776831pt;}
.ye1{bottom:530.918097pt;}
.yf{bottom:531.386667pt;}
.y102{bottom:531.413303pt;}
.yf1{bottom:535.945665pt;}
.y149{bottom:541.569333pt;}
.y110{bottom:541.628998pt;}
.y34{bottom:542.398667pt;}
.y98{bottom:545.736537pt;}
.y122{bottom:546.352000pt;}
.ye{bottom:547.326667pt;}
.y78{bottom:548.234792pt;}
.y4e{bottom:548.536306pt;}
.yb7{bottom:550.762856pt;}
.yc7{bottom:551.863380pt;}
.y148{bottom:553.524000pt;}
.y5f{bottom:557.957333pt;}
.y33{bottom:558.340000pt;}
.ye0{bottom:559.142258pt;}
.y101{bottom:559.985753pt;}
.yd{bottom:563.266667pt;}
.yf0{bottom:563.567294pt;}
.y77{bottom:569.299821pt;}
.y10f{bottom:569.657754pt;}
.y32{bottom:574.280000pt;}
.y97{bottom:576.014667pt;}
.y147{bottom:576.106667pt;}
.y4d{bottom:576.860411pt;}
.yb6{bottom:578.567636pt;}
.yc{bottom:579.206667pt;}
.yc6{bottom:580.659946pt;}
.ydf{bottom:587.368780pt;}
.y146{bottom:588.061333pt;}
.y100{bottom:589.511813pt;}
.y31{bottom:590.220000pt;}
.y76{bottom:590.366612pt;}
.y121{bottom:591.184000pt;}
.y96{bottom:591.954667pt;}
.yef{bottom:592.110799pt;}
.yb{bottom:595.148000pt;}
.y10e{bottom:596.781258pt;}
.y5e{bottom:604.971827pt;}
.y4c{bottom:606.129837pt;}
.y30{bottom:606.160000pt;}
.yb5{bottom:607.300405pt;}
.y95{bottom:607.894667pt;}
.yc5{bottom:610.417603pt;}
.y145{bottom:610.644000pt;}
.ya{bottom:611.088000pt;}
.y75{bottom:611.431640pt;}
.yde{bottom:615.592941pt;}
.yff{bottom:618.084263pt;}
.yee{bottom:619.732428pt;}
.y120{bottom:620.872000pt;}
.y2f{bottom:622.100000pt;}
.y144{bottom:622.598667pt;}
.y94{bottom:623.834667pt;}
.y10d{bottom:624.810013pt;}
.y9{bottom:627.028000pt;}
.y74{bottom:632.496669pt;}
.y4b{bottom:634.453942pt;}
.y143{bottom:634.553333pt;}
.y5d{bottom:635.275201pt;}
.y2e{bottom:638.041333pt;}
.yc4{bottom:639.214169pt;}
.y93{bottom:639.776000pt;}
.y8{bottom:642.968000pt;}
.ydd{bottom:643.817102pt;}
.yb4{bottom:644.184000pt;}
.yfe{bottom:647.610323pt;}
.yed{bottom:648.275933pt;}
.y2d{bottom:653.981333pt;}
.y73{bottom:654.264747pt;}
.y92{bottom:655.716000pt;}
.y142{bottom:657.136000pt;}
.y7{bottom:658.908000pt;}
.yb3{bottom:660.124000pt;}
.y4a{bottom:663.723368pt;}
.y5c{bottom:664.599859pt;}
.y11f{bottom:665.704000pt;}
.yc3{bottom:668.971825pt;}
.y2c{bottom:669.921333pt;}
.y91{bottom:671.656000pt;}
.ydc{bottom:672.041263pt;}
.y72{bottom:676.031062pt;}
.yb2{bottom:676.065333pt;}
.y141{bottom:679.717333pt;}
.y11e{bottom:681.644000pt;}
.y6{bottom:682.452000pt;}
.yec{bottom:685.030667pt;}
.y2b{bottom:685.861333pt;}
.y90{bottom:687.596000pt;}
.y140{bottom:691.673333pt;}
.yb1{bottom:692.005333pt;}
.y5b{bottom:694.903233pt;}
.y71{bottom:697.096091pt;}
.y49{bottom:700.970667pt;}
.ydb{bottom:701.207410pt;}
.y2a{bottom:701.801333pt;}
.y8f{bottom:703.536000pt;}
.y13f{bottom:703.628000pt;}
.yb0{bottom:707.945333pt;}
.y11d{bottom:711.333333pt;}
.y48{bottom:716.912000pt;}
.y70{bottom:718.864168pt;}
.yaf{bottom:723.885333pt;}
.y13e{bottom:726.210667pt;}
.y29{bottom:726.708000pt;}
.yda{bottom:729.431571pt;}
.y47{bottom:732.852000pt;}
.y13d{bottom:738.165333pt;}
.yae{bottom:739.825333pt;}
.y8e{bottom:745.688000pt;}
.y46{bottom:748.792000pt;}
.yad{bottom:755.765333pt;}
.y11c{bottom:756.164000pt;}
.yd9{bottom:758.597717pt;}
.y13c{bottom:760.746667pt;}
.y28{bottom:764.732000pt;}
.y5{bottom:771.374667pt;}
.yac{bottom:771.706667pt;}
.y11b{bottom:772.105333pt;}
.y13b{bottom:772.702667pt;}
.y27{bottom:780.672000pt;}
.yab{bottom:787.646667pt;}
.y8d{bottom:791.670780pt;}
.y4{bottom:791.964000pt;}
.y13a{bottom:795.284000pt;}
.y26{bottom:796.612000pt;}
.y11a{bottom:801.793333pt;}
.yaa{bottom:803.586667pt;}
.y139{bottom:807.240000pt;}
.y3{bottom:812.553333pt;}
.y8c{bottom:817.900688pt;}
.ya9{bottom:819.526667pt;}
.y25{bottom:828.493333pt;}
.y138{bottom:829.821333pt;}
.ya8{bottom:835.466667pt;}
.y137{bottom:841.776000pt;}
.y8b{bottom:844.132789pt;}
.y24{bottom:844.433333pt;}
.y119{bottom:846.625333pt;}
.ya7{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y23{bottom:860.373333pt;}
.y136{bottom:864.358667pt;}
.y8a{bottom:871.235930pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h1b{height:25.589197pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h12{height:33.199885pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hb{height:36.874903pt;}
.hd{height:37.299379pt;}
.h13{height:37.304713pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.h1a{height:46.263455pt;}
.h10{height:46.342093pt;}
.h11{height:48.309618pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.he{height:60.154525pt;}
.h19{height:62.203860pt;}
.h17{height:63.346238pt;}
.h14{height:63.766268pt;}
.h16{height:64.728059pt;}
.hc{height:64.957266pt;}
.h18{height:65.526810pt;}
.h15{height:66.040788pt;}
.hf{height:67.251892pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x1a{left:181.373735pt;}
.x16{left:182.746542pt;}
.xe{left:184.259077pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x8{left:197.486667pt;}
.xc{left:199.012251pt;}
.x20{left:204.121546pt;}
.x1{left:206.625333pt;}
.x22{left:207.535284pt;}
.x1d{left:211.597476pt;}
.x26{left:213.090667pt;}
.x14{left:215.107924pt;}
.x2a{left:216.337333pt;}
.x10{left:218.106667pt;}
.x1f{left:219.206667pt;}
.x13{left:221.353333pt;}
.x1c{left:224.306667pt;}
.x24{left:226.546737pt;}
.xb{left:227.772294pt;}
.x11{left:229.517886pt;}
.x29{left:231.362667pt;}
.xf{left:233.132000pt;}
.x2{left:236.990667pt;}
.x1b{left:239.333333pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x19{left:282.963868pt;}
.x18{left:308.286627pt;}
.x17{left:322.985985pt;}
.x15{left:350.075642pt;}
.x12{left:356.336303pt;}
.x3{left:360.866667pt;}
.x28{left:374.248903pt;}
.xd{left:379.106647pt;}
.x25{left:399.702350pt;}
.x27{left:400.857333pt;}
.x21{left:402.445702pt;}
.xa{left:404.177333pt;}
.x23{left:407.163087pt;}
.x1e{left:410.531313pt;}
}




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