
    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_f907efb2380a50013ac0adb7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b20040680e0e87f875065544.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1b152a04795b8dfcf4837a6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.698000;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_3873091f2fab33c74fae7bc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_3efccf792d024e7ddbe4457b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_947c4645722988b6ee54d3b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.464000;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_27a113bb8823bcd273d2198e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893000;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_efbdbe93f268ce50e002fa38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.839000;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_235f5c4f65f872546d3873a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_6151375f0d0520fcbce892ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.844000;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_6ae44e8c5290d40f3f010b1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732000;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_70463c14235ba232bd7c3d88.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0a74b51c1e1b52f5bf9b2b36.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_c26d59304c4e307fe1ce63d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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_f8f50453f6ba46bc5fb516b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.675000;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_ceb841bd0d61a442594c178a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.932129;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_52c40dca6a78b59e2662a18a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.932129;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:ff12;src:url('chunks/assets/font_b2b62d2efffc069370c901e6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932129;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.134770,0.210563,-0.210563,0.134770,0,0);-ms-transform:matrix(0.134770,0.210563,-0.210563,0.134770,0,0);-webkit-transform:matrix(0.134770,0.210563,-0.210563,0.134770,0,0);}
.m3{transform:matrix(0.215102,-0.127402,0.127402,0.215102,0,0);-ms-transform:matrix(0.215102,-0.127402,0.127402,0.215102,0,0);-webkit-transform:matrix(0.215102,-0.127402,0.127402,0.215102,0,0);}
.m7{transform:matrix(0.239991,-0.070032,0.070032,0.239991,0,0);-ms-transform:matrix(0.239991,-0.070032,0.070032,0.239991,0,0);-webkit-transform:matrix(0.239991,-0.070032,0.070032,0.239991,0,0);}
.m5{transform:matrix(0.242643,-0.060203,0.060203,0.242643,0,0);-ms-transform:matrix(0.242643,-0.060203,0.060203,0.242643,0,0);-webkit-transform:matrix(0.242643,-0.060203,0.060203,0.242643,0,0);}
.m8{transform:matrix(0.247168,-0.037525,0.037525,0.247168,0,0);-ms-transform:matrix(0.247168,-0.037525,0.037525,0.247168,0,0);-webkit-transform:matrix(0.247168,-0.037525,0.037525,0.247168,0,0);}
.m9{transform:matrix(0.248036,-0.031279,0.031279,0.248036,0,0);-ms-transform:matrix(0.248036,-0.031279,0.031279,0.248036,0,0);-webkit-transform:matrix(0.248036,-0.031279,0.031279,0.248036,0,0);}
.m6{transform:matrix(0.248405,0.028194,-0.028194,0.248405,0,0);-ms-transform:matrix(0.248405,0.028194,-0.028194,0.248405,0,0);-webkit-transform:matrix(0.248405,0.028194,-0.028194,0.248405,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.v6{vertical-align:-14.964180px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.v7{vertical-align:25.389053px;}
.v4{vertical-align:43.026000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000182px;}
.ls1f{letter-spacing:0.001261px;}
.ls11{letter-spacing:0.002100px;}
.ls8{letter-spacing:0.002471px;}
.lsb{letter-spacing:0.002640px;}
.ls28{letter-spacing:0.002960px;}
.ls17{letter-spacing:0.003292px;}
.lsa{letter-spacing:0.003979px;}
.ls1e{letter-spacing:0.004200px;}
.ls21{letter-spacing:0.005108px;}
.ls15{letter-spacing:2.985302px;}
.ls3{letter-spacing:2.985797px;}
.ls6{letter-spacing:2.987674px;}
.ls2{letter-spacing:2.988600px;}
.ls5{letter-spacing:2.989200px;}
.ls7{letter-spacing:2.989363px;}
.lse{letter-spacing:2.989753px;}
.ls1{letter-spacing:2.991797px;}
.lsc{letter-spacing:2.991979px;}
.ls4{letter-spacing:2.994600px;}
.ls23{letter-spacing:6.724718px;}
.ls9{letter-spacing:8.470718px;}
.ls13{letter-spacing:9.448200px;}
.ls1d{letter-spacing:11.566718px;}
.ls2a{letter-spacing:11.954850px;}
.ls16{letter-spacing:13.282718px;}
.ls2c{letter-spacing:14.184098px;}
.ls25{letter-spacing:14.944718px;}
.ls2b{letter-spacing:15.242850px;}
.lsd{letter-spacing:15.255979px;}
.lsf{letter-spacing:16.605292px;}
.ls10{letter-spacing:16.606718px;}
.ls20{letter-spacing:17.016600px;}
.ls27{letter-spacing:17.142797px;}
.ls1b{letter-spacing:17.868600px;}
.ls19{letter-spacing:17.885108px;}
.ls22{letter-spacing:18.504600px;}
.ls24{letter-spacing:19.162718px;}
.ls26{letter-spacing:20.172600px;}
.ls1a{letter-spacing:20.675108px;}
.ls18{letter-spacing:21.477292px;}
.ls29{letter-spacing:21.558600px;}
.ls14{letter-spacing:21.647108px;}
.ls1c{letter-spacing:23.466600px;}
.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;}
}
.ws17{word-spacing:-40.336459px;}
.ws68{word-spacing:-36.881545px;}
.ws1{word-spacing:-24.101616px;}
.ws56{word-spacing:-19.503311px;}
.wsb{word-spacing:-18.327288px;}
.ws1f{word-spacing:-16.617617px;}
.ws16{word-spacing:-14.943900px;}
.ws86{word-spacing:-13.294127px;}
.wsaf{word-spacing:-11.955150px;}
.ws15{word-spacing:-10.460700px;}
.ws7e{word-spacing:-9.886912px;}
.ws7a{word-spacing:-5.001881px;}
.ws70{word-spacing:-4.971508px;}
.ws61{word-spacing:-4.961375px;}
.ws1d{word-spacing:-3.407209px;}
.ws5c{word-spacing:-3.168107px;}
.ws31{word-spacing:-2.988780px;}
.ws2b{word-spacing:-2.749678px;}
.ws2d{word-spacing:-2.689902px;}
.ws2c{word-spacing:-2.676558px;}
.ws69{word-spacing:-2.570351px;}
.ws95{word-spacing:-2.450800px;}
.wsba{word-spacing:-2.295389px;}
.ws21{word-spacing:-2.271473px;}
.wsa2{word-spacing:-2.211697px;}
.ws24{word-spacing:-2.032370px;}
.ws8a{word-spacing:-1.972595px;}
.wsbd{word-spacing:-1.912824px;}
.ws55{word-spacing:-1.912819px;}
.wsbc{word-spacing:-1.865003px;}
.ws54{word-spacing:-1.853044px;}
.ws6f{word-spacing:-1.793268px;}
.ws5a{word-spacing:-1.494390px;}
.ws73{word-spacing:-1.434614px;}
.ws64{word-spacing:-1.374839px;}
.ws19{word-spacing:-1.315063px;}
.wsb7{word-spacing:-1.099874px;}
.ws45{word-spacing:-1.075961px;}
.ws1a{word-spacing:-1.016185px;}
.ws6a{word-spacing:-0.896634px;}
.ws40{word-spacing:-0.717307px;}
.ws89{word-spacing:-0.657532px;}
.ws91{word-spacing:-0.573847px;}
.ws30{word-spacing:-0.478205px;}
.wsc1{word-spacing:-0.430385px;}
.ws20{word-spacing:-0.298878px;}
.wsc9{word-spacing:-0.286924px;}
.ws7b{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.191282px;}
.ws60{word-spacing:-0.179327px;}
.ws5f{word-spacing:-0.161308px;}
.wsc4{word-spacing:-0.143462px;}
.wsa0{word-spacing:-0.119551px;}
.ws53{word-spacing:-0.063866px;}
.ws52{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.047821px;}
.wsb3{word-spacing:-0.004350px;}
.ws14{word-spacing:0.000000px;}
.wsb9{word-spacing:0.001650px;}
.ws7f{word-spacing:0.035693px;}
.ws9{word-spacing:0.065455px;}
.wsbb{word-spacing:0.095641px;}
.wsc0{word-spacing:0.143462px;}
.wsa7{word-spacing:0.239102px;}
.wsb6{word-spacing:0.286924px;}
.ws9a{word-spacing:0.358654px;}
.wsca{word-spacing:0.382565px;}
.ws2e{word-spacing:0.418429px;}
.ws4c{word-spacing:0.478205px;}
.ws6b{word-spacing:0.537980px;}
.ws6{word-spacing:0.589091px;}
.ws6c{word-spacing:0.597756px;}
.ws46{word-spacing:0.621668px;}
.ws77{word-spacing:0.657532px;}
.ws23{word-spacing:0.717307px;}
.ws7d{word-spacing:0.777083px;}
.ws8e{word-spacing:0.836858px;}
.wsac{word-spacing:0.896634px;}
.ws1e{word-spacing:0.956410px;}
.wsaa{word-spacing:1.135736px;}
.ws81{word-spacing:1.243336px;}
.ws6d{word-spacing:1.374839px;}
.ws3e{word-spacing:1.434614px;}
.ws37{word-spacing:1.494390px;}
.ws5d{word-spacing:1.554166px;}
.ws13{word-spacing:1.570910px;}
.ws4b{word-spacing:1.673717px;}
.ws84{word-spacing:1.865003px;}
.ws9e{word-spacing:1.912819px;}
.wsc5{word-spacing:1.912824px;}
.ws22{word-spacing:1.972595px;}
.ws66{word-spacing:2.032370px;}
.wsa1{word-spacing:2.092146px;}
.ws92{word-spacing:2.199748px;}
.ws7c{word-spacing:2.211697px;}
.ws8f{word-spacing:2.247568px;}
.ws87{word-spacing:2.271473px;}
.ws6e{word-spacing:2.331248px;}
.wsa3{word-spacing:2.391024px;}
.ws3d{word-spacing:2.510575px;}
.ws76{word-spacing:2.570351px;}
.wsb1{word-spacing:2.630133px;}
.ws3b{word-spacing:2.689902px;}
.ws48{word-spacing:2.809453px;}
.ws8b{word-spacing:2.869229px;}
.ws9c{word-spacing:2.929004px;}
.wsc7{word-spacing:2.964877px;}
.ws96{word-spacing:3.108331px;}
.ws4e{word-spacing:3.227882px;}
.ws5b{word-spacing:3.287658px;}
.ws9b{word-spacing:3.299621px;}
.ws3c{word-spacing:3.347434px;}
.ws3f{word-spacing:3.407209px;}
.wsb0{word-spacing:3.443083px;}
.ws33{word-spacing:3.466985px;}
.ws2{word-spacing:3.469094px;}
.ws4f{word-spacing:3.526760px;}
.wsc2{word-spacing:3.538724px;}
.wsa9{word-spacing:3.586536px;}
.ws4d{word-spacing:3.646312px;}
.wsbf{word-spacing:3.682186px;}
.ws1b{word-spacing:3.706087px;}
.ws97{word-spacing:3.765863px;}
.ws83{word-spacing:3.777827px;}
.ws34{word-spacing:3.825638px;}
.ws59{word-spacing:3.885414px;}
.ws11{word-spacing:3.959551px;}
.ws80{word-spacing:4.064751px;}
.ws85{word-spacing:4.112572px;}
.ws82{word-spacing:4.160392px;}
.ws44{word-spacing:4.184292px;}
.ws32{word-spacing:4.244068px;}
.ws8d{word-spacing:4.303843px;}
.wsad{word-spacing:4.399495px;}
.wse{word-spacing:4.450913px;}
.ws78{word-spacing:4.483170px;}
.ws12{word-spacing:4.516367px;}
.ws99{word-spacing:4.542946px;}
.ws25{word-spacing:4.602721px;}
.wsb4{word-spacing:4.782060px;}
.ws8c{word-spacing:4.841824px;}
.ws43{word-spacing:4.901599px;}
.ws9d{word-spacing:4.961375px;}
.wsa8{word-spacing:5.200477px;}
.wsae{word-spacing:5.259980px;}
.ws62{word-spacing:5.260253px;}
.wsc6{word-spacing:5.265600px;}
.wsb2{word-spacing:5.308087px;}
.ws65{word-spacing:5.320028px;}
.wsa6{word-spacing:5.379804px;}
.ws93{word-spacing:5.403728px;}
.ws39{word-spacing:5.439580px;}
.ws67{word-spacing:5.559131px;}
.ws47{word-spacing:5.678682px;}
.wsd{word-spacing:5.694550px;}
.ws3a{word-spacing:5.738458px;}
.ws1c{word-spacing:5.977560px;}
.ws88{word-spacing:6.037336px;}
.wsa{word-spacing:6.283642px;}
.ws50{word-spacing:6.336214px;}
.wsc3{word-spacing:6.455781px;}
.ws42{word-spacing:6.515540px;}
.ws38{word-spacing:6.754643px;}
.ws9f{word-spacing:6.874194px;}
.ws75{word-spacing:6.993745px;}
.ws74{word-spacing:7.053521px;}
.wsc8{word-spacing:7.125269px;}
.wsc{word-spacing:7.134551px;}
.ws63{word-spacing:7.232848px;}
.ws2f{word-spacing:7.292623px;}
.ws36{word-spacing:7.352399px;}
.ws79{word-spacing:7.471950px;}
.ws51{word-spacing:7.890379px;}
.ws26{word-spacing:7.950155px;}
.ws98{word-spacing:8.069706px;}
.ws0{word-spacing:8.177334px;}
.wsa5{word-spacing:8.189257px;}
.ws71{word-spacing:8.249033px;}
.ws41{word-spacing:8.308808px;}
.wsb8{word-spacing:8.416426px;}
.ws72{word-spacing:8.428360px;}
.wsab{word-spacing:8.488135px;}
.ws94{word-spacing:8.787013px;}
.ws2a{word-spacing:9.205442px;}
.ws5{word-spacing:9.621826px;}
.ws10{word-spacing:9.812778px;}
.ws5e{word-spacing:9.922750px;}
.ws4a{word-spacing:10.400954px;}
.ws58{word-spacing:10.640057px;}
.wsb5{word-spacing:10.711814px;}
.wsf{word-spacing:11.520010px;}
.wsa4{word-spacing:11.536691px;}
.ws35{word-spacing:11.907965px;}
.ws29{word-spacing:12.134447px;}
.wsbe{word-spacing:13.150665px;}
.ws49{word-spacing:14.884124px;}
.ws7{word-spacing:14.989103px;}
.ws57{word-spacing:15.242778px;}
.ws8{word-spacing:17.083651px;}
.ws27{word-spacing:18.531536px;}
.ws28{word-spacing:29.828024px;}
.ws3{word-spacing:33.564941px;}
.ws4{word-spacing:33.578210px;}
._35{margin-left:-1614.286597px;}
._2f{margin-left:-1612.935352px;}
._1b{margin-left:-1598.195355px;}
._1c{margin-left:-1596.970025px;}
._15{margin-left:-1582.569052px;}
._18{margin-left:-1581.305090px;}
._50{margin-left:-1549.681319px;}
._45{margin-left:-1501.725796px;}
._3d{margin-left:-1468.338175px;}
._53{margin-left:-1442.199730px;}
._2d{margin-left:-1361.667029px;}
._27{margin-left:-1358.633350px;}
._55{margin-left:-1343.498016px;}
._37{margin-left:-1325.781157px;}
._1f{margin-left:-1289.842992px;}
._52{margin-left:-1187.405693px;}
._48{margin-left:-1137.314713px;}
._47{margin-left:-1122.116609px;}
._4e{margin-left:-1111.907628px;}
._2a{margin-left:-1080.080446px;}
._43{margin-left:-981.851501px;}
._33{margin-left:-927.436559px;}
._4c{margin-left:-827.686506px;}
._34{margin-left:-814.460675px;}
._46{margin-left:-813.014100px;}
._3e{margin-left:-786.684167px;}
._54{margin-left:-765.120555px;}
._4a{margin-left:-742.640095px;}
._3a{margin-left:-725.973641px;}
._23{margin-left:-679.321948px;}
._40{margin-left:-668.369108px;}
._36{margin-left:-646.457457px;}
._41{margin-left:-626.825066px;}
._4d{margin-left:-609.751422px;}
._3c{margin-left:-583.547532px;}
._14{margin-left:-473.994368px;}
._56{margin-left:-453.162867px;}
._4f{margin-left:-451.776070px;}
._22{margin-left:-391.901717px;}
._44{margin-left:-384.162124px;}
._24{margin-left:-358.288684px;}
._39{margin-left:-353.471008px;}
._2b{margin-left:-227.459041px;}
._d{margin-left:-19.713743px;}
._c{margin-left:-18.647946px;}
._e{margin-left:-14.156986px;}
._7{margin-left:-9.434046px;}
._8{margin-left:-8.091257px;}
._42{margin-left:-6.635092px;}
._5{margin-left:-5.170913px;}
._a{margin-left:-3.665458px;}
._2{margin-left:-1.767274px;}
._3{width:1.767274px;}
._1{width:2.926625px;}
._51{width:4.229568px;}
._2c{width:6.883136px;}
._f{width:8.803281px;}
._1a{width:9.922750px;}
._29{width:11.704907px;}
._1e{width:13.010780px;}
._12{width:14.884124px;}
._21{width:16.019901px;}
._4b{width:17.217680px;}
._13{width:18.258492px;}
._2e{width:19.291081px;}
._b{width:20.945472px;}
._1d{width:22.569183px;}
._19{width:24.106588px;}
._3f{width:25.225303px;}
._16{width:26.420815px;}
._9{width:28.210933px;}
._10{width:30.146048px;}
._6{width:31.680026px;}
._25{width:34.308565px;}
._11{width:36.710006px;}
._3b{width:39.571447px;}
._28{width:41.099619px;}
._0{width:43.038600px;}
._38{width:44.731295px;}
._17{width:46.225685px;}
._26{width:50.331055px;}
._49{width:51.405565px;}
._4{width:63.752780px;}
._32{width:96.612537px;}
._30{width:282.627483px;}
._31{width:516.122445px;}
._20{width:1363.683956px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(55,255,55);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:21.415712px;}
.fs7{font-size:28.393200px;}
.fs9{font-size:35.692821px;}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fsb{font-size:42.534626px;}
.fsd{font-size:42.534627px;}
.fsc{font-size:42.534629px;}
.fs6{font-size:47.820600px;}
.fse{font-size:53.703667px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs8{font-size:67.535893px;}
.fs0{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.ya7{bottom:0.087123px;}
.yf4{bottom:3.479056px;}
.yae{bottom:20.559776px;}
.yf8{bottom:21.869085px;}
.yf3{bottom:25.393304px;}
.ya5{bottom:27.030132px;}
.ya4{bottom:38.184139px;}
.ya2{bottom:63.468059px;}
.ya8{bottom:63.528651px;}
.yf0{bottom:64.225933px;}
.ya3{bottom:67.727795px;}
.yf9{bottom:68.987937px;}
.ya6{bottom:69.363097px;}
.yf7{bottom:72.584375px;}
.yab{bottom:76.120034px;}
.yad{bottom:76.311500px;}
.yb1{bottom:87.234985px;}
.yaa{bottom:87.274041px;}
.yac{bottom:87.465507px;}
.yb3{bottom:89.467597px;}
.y4e{bottom:94.929000px;}
.yb0{bottom:98.388991px;}
.ya9{bottom:98.428047px;}
.yb2{bottom:100.621604px;}
.yaf{bottom:101.561253px;}
.yef{bottom:103.927357px;}
.y50{bottom:111.783732px;}
.y3e{bottom:121.828500px;}
.yf5{bottom:124.428000px;}
.yf2{bottom:125.413573px;}
.y51{bottom:125.859654px;}
.y9a{bottom:132.440323px;}
.y9{bottom:132.649500px;}
.y74{bottom:139.761000px;}
.y3d{bottom:140.365500px;}
.ya1{bottom:143.128450px;}
.y9b{bottom:143.719656px;}
.yf1{bottom:145.810489px;}
.y9d{bottom:146.309394px;}
.y8{bottom:152.973000px;}
.yec{bottom:153.568500px;}
.yee{bottom:154.024064px;}
.y4d{bottom:154.470000px;}
.y73{bottom:157.693500px;}
.ya0{bottom:159.285056px;}
.y9f{bottom:159.382624px;}
.yed{bottom:167.316135px;}
.y9c{bottom:169.898993px;}
.y9e{bottom:170.248989px;}
.y4c{bottom:172.402500px;}
.y7{bottom:173.296500px;}
.y72{bottom:175.626000px;}
.y3c{bottom:187.243500px;}
.y4b{bottom:190.336500px;}
.y98{bottom:193.558500px;}
.y6{bottom:193.620000px;}
.y71{bottom:194.106000px;}
.ycc{bottom:194.854500px;}
.y3b{bottom:205.176000px;}
.y4a{bottom:208.269000px;}
.y97{bottom:211.491000px;}
.y110{bottom:211.492500px;}
.y70{bottom:212.038500px;}
.ycb{bottom:212.787000px;}
.y5{bottom:213.943500px;}
.y3a{bottom:223.108500px;}
.y49{bottom:226.201500px;}
.y96{bottom:229.425000px;}
.y6f{bottom:229.971000px;}
.yca{bottom:230.719500px;}
.y4{bottom:234.268500px;}
.y39{bottom:241.041000px;}
.y48{bottom:244.134000px;}
.y145{bottom:244.368000px;}
.y95{bottom:247.357500px;}
.y6e{bottom:247.903500px;}
.yc9{bottom:248.652000px;}
.y144{bottom:258.565500px;}
.y38{bottom:258.973500px;}
.y47{bottom:262.066500px;}
.y94{bottom:265.290000px;}
.y6d{bottom:265.836000px;}
.yc8{bottom:266.584500px;}
.y143{bottom:272.761500px;}
.y37{bottom:276.907500px;}
.y46{bottom:279.999000px;}
.y93{bottom:283.222500px;}
.y6c{bottom:283.770000px;}
.yc7{bottom:284.517000px;}
.y142{bottom:286.959000px;}
.y36{bottom:294.840000px;}
.y45{bottom:297.933000px;}
.y10f{bottom:301.155000px;}
.y6b{bottom:301.702500px;}
.yc6{bottom:302.451000px;}
.y92{bottom:304.234500px;}
.y35{bottom:312.772500px;}
.y141{bottom:315.352500px;}
.y44{bottom:315.865500px;}
.y6a{bottom:319.635000px;}
.yc5{bottom:320.383500px;}
.y91{bottom:322.167000px;}
.y3{bottom:329.197500px;}
.y140{bottom:329.548500px;}
.y34{bottom:330.705000px;}
.y10e{bottom:332.835000px;}
.y43{bottom:333.798000px;}
.y69{bottom:338.115000px;}
.yc4{bottom:338.316000px;}
.y90{bottom:340.099500px;}
.y13f{bottom:343.746000px;}
.y33{bottom:348.637500px;}
.y42{bottom:351.730500px;}
.y68{bottom:356.047500px;}
.yc3{bottom:356.248500px;}
.y13e{bottom:357.942000px;}
.y8f{bottom:358.032000px;}
.y2{bottom:362.080500px;}
.y32{bottom:366.570000px;}
.y41{bottom:369.663000px;}
.y13d{bottom:372.139500px;}
.yeb{bottom:372.385500px;}
.y67{bottom:373.980000px;}
.yc2{bottom:374.181000px;}
.y8e{bottom:375.964500px;}
.y10d{bottom:377.965500px;}
.y31{bottom:384.504000px;}
.y13c{bottom:386.335500px;}
.y40{bottom:387.597000px;}
.yea{bottom:390.318000px;}
.y66{bottom:391.912500px;}
.yc1{bottom:392.113500px;}
.y8d{bottom:393.898500px;}
.y1{bottom:394.965000px;}
.y10c{bottom:395.898000px;}
.y13b{bottom:400.533000px;}
.y3f{bottom:405.529500px;}
.ye9{bottom:408.250500px;}
.y65{bottom:409.845000px;}
.y8c{bottom:411.831000px;}
.y10b{bottom:413.830500px;}
.y13a{bottom:414.729000px;}
.y30{bottom:423.462000px;}
.yc0{bottom:423.592500px;}
.ye8{bottom:426.381000px;}
.y64{bottom:427.777500px;}
.y139{bottom:428.926500px;}
.y10a{bottom:431.763000px;}
.y8b{bottom:432.841500px;}
.y138{bottom:443.122500px;}
.ye7{bottom:444.313500px;}
.y63{bottom:445.711500px;}
.y109{bottom:449.695500px;}
.y8a{bottom:450.774000px;}
.y137{bottom:457.320000px;}
.ye6{bottom:462.246000px;}
.y62{bottom:463.644000px;}
.y108{bottom:467.629500px;}
.ybf{bottom:468.519000px;}
.y89{bottom:468.706500px;}
.y136{bottom:471.516000px;}
.y2f{bottom:475.131000px;}
.ye5{bottom:480.180000px;}
.y61{bottom:481.576500px;}
.y107{bottom:485.562000px;}
.y135{bottom:485.713500px;}
.ybe{bottom:486.453000px;}
.y88{bottom:486.640500px;}
.ye4{bottom:498.112500px;}
.y60{bottom:499.509000px;}
.y134{bottom:499.909500px;}
.y106{bottom:503.494500px;}
.y2e{bottom:503.545500px;}
.ybd{bottom:504.385500px;}
.y87{bottom:504.573000px;}
.y133{bottom:514.107000px;}
.ye3{bottom:516.045000px;}
.y5f{bottom:517.441500px;}
.y105{bottom:521.427000px;}
.y2d{bottom:521.479500px;}
.ybc{bottom:522.318000px;}
.y86{bottom:522.505500px;}
.y132{bottom:528.303000px;}
.ye2{bottom:533.977500px;}
.y5e{bottom:535.375500px;}
.y104{bottom:539.359500px;}
.y2c{bottom:539.412000px;}
.y85{bottom:540.438000px;}
.y131{bottom:542.500500px;}
.ye1{bottom:551.910000px;}
.y5d{bottom:553.308000px;}
.y130{bottom:556.696500px;}
.y103{bottom:557.293500px;}
.y2b{bottom:557.344500px;}
.y84{bottom:558.370500px;}
.ye0{bottom:569.842500px;}
.y12f{bottom:570.894000px;}
.y5c{bottom:571.240500px;}
.ybb{bottom:572.338500px;}
.y102{bottom:575.268000px;}
.y2a{bottom:575.277000px;}
.y83{bottom:579.382500px;}
.y10{bottom:584.776500px;}
.y12e{bottom:585.090000px;}
.yba{bottom:586.536000px;}
.ydf{bottom:587.776500px;}
.y5b{bottom:589.173000px;}
.y101{bottom:593.200500px;}
.y29{bottom:593.209500px;}
.y82{bottom:597.315000px;}
.y12d{bottom:599.287500px;}
.yf{bottom:605.100000px;}
.yde{bottom:605.709000px;}
.y5a{bottom:607.105500px;}
.y100{bottom:611.133000px;}
.y28{bottom:611.143500px;}
.y12c{bottom:613.483500px;}
.y81{bottom:615.247500px;}
.ydd{bottom:623.641500px;}
.y59{bottom:625.038000px;}
.ye{bottom:625.423500px;}
.y12b{bottom:627.681000px;}
.yff{bottom:629.067000px;}
.y27{bottom:629.076000px;}
.y80{bottom:633.180000px;}
.ydc{bottom:641.574000px;}
.y12a{bottom:641.877000px;}
.y58{bottom:642.972000px;}
.yfe{bottom:646.999500px;}
.y26{bottom:647.008500px;}
.y7f{bottom:651.114000px;}
.y129{bottom:656.074500px;}
.ydb{bottom:659.506500px;}
.yd{bottom:661.468500px;}
.yfd{bottom:664.932000px;}
.y25{bottom:664.941000px;}
.y7e{bottom:669.046500px;}
.y128{bottom:670.272000px;}
.yda{bottom:677.440500px;}
.y57{bottom:678.180000px;}
.y24{bottom:682.873500px;}
.y127{bottom:684.468000px;}
.y7d{bottom:686.979000px;}
.y126{bottom:698.665500px;}
.y23{bottom:700.806000px;}
.yd9{bottom:701.242500px;}
.y7c{bottom:704.911500px;}
.yfc{bottom:712.449000px;}
.y125{bottom:712.861500px;}
.y22{bottom:718.740000px;}
.y7b{bottom:722.844000px;}
.yfb{bottom:726.646500px;}
.y56{bottom:726.838500px;}
.y124{bottom:727.059000px;}
.y21{bottom:736.672500px;}
.yd8{bottom:738.493500px;}
.y7a{bottom:740.776500px;}
.y123{bottom:741.255000px;}
.y55{bottom:744.771000px;}
.y20{bottom:754.605000px;}
.y122{bottom:755.452500px;}
.yd7{bottom:756.426000px;}
.y79{bottom:758.710500px;}
.yc{bottom:759.609000px;}
.y54{bottom:762.705000px;}
.y121{bottom:769.648500px;}
.y1f{bottom:772.537500px;}
.yd6{bottom:774.358500px;}
.y78{bottom:776.643000px;}
.y120{bottom:783.846000px;}
.y1e{bottom:790.470000px;}
.yd5{bottom:792.292500px;}
.yb{bottom:792.493500px;}
.y77{bottom:794.575500px;}
.y11f{bottom:798.042000px;}
.yd4{bottom:810.225000px;}
.y53{bottom:811.230000px;}
.y76{bottom:812.508000px;}
.y1d{bottom:817.369500px;}
.ya{bottom:825.376500px;}
.y52{bottom:825.426000px;}
.y11e{bottom:825.688500px;}
.y4f{bottom:854.568000px;}
.yd3{bottom:855.613500px;}
.yb9{bottom:860.821500px;}
.y75{bottom:866.097000px;}
.yd2{bottom:869.811000px;}
.y11d{bottom:870.520500px;}
.yb8{bottom:875.017500px;}
.yd1{bottom:884.007000px;}
.y11c{bottom:888.453000px;}
.yb7{bottom:889.215000px;}
.yd0{bottom:898.204500px;}
.yb6{bottom:903.411000px;}
.y11b{bottom:906.385500px;}
.y1c{bottom:906.499500px;}
.yb5{bottom:917.608500px;}
.y1b{bottom:920.697000px;}
.yfa{bottom:923.569500px;}
.y11a{bottom:924.318000px;}
.yb4{bottom:931.804500px;}
.y1a{bottom:934.893000px;}
.y19{bottom:949.090500px;}
.yf6{bottom:952.710000px;}
.y119{bottom:955.701000px;}
.y99{bottom:960.946500px;}
.y18{bottom:963.286500px;}
.y17{bottom:977.484000px;}
.y16{bottom:991.680000px;}
.y118{bottom:1000.533000px;}
.y15{bottom:1005.877500px;}
.y117{bottom:1018.465500px;}
.ycf{bottom:1026.231000px;}
.y14{bottom:1030.678500px;}
.y116{bottom:1036.398000px;}
.yce{bottom:1040.428500px;}
.y13{bottom:1048.611000px;}
.y115{bottom:1054.330500px;}
.ycd{bottom:1054.624500px;}
.y12{bottom:1066.543500px;}
.y114{bottom:1072.264500px;}
.y113{bottom:1090.197000px;}
.y112{bottom:1108.129500px;}
.y11{bottom:1111.375500px;}
.y111{bottom:1126.062000px;}
.h17{height:15.518026px;}
.he{height:18.650112px;}
.h14{height:20.130779px;}
.h9{height:24.603802px;}
.h16{height:25.863353px;}
.h1c{height:30.820988px;}
.h1d{height:30.820991px;}
.h10{height:32.804932px;}
.h13{height:32.900573px;}
.h20{height:33.140573px;}
.hf{height:33.187496px;}
.h1a{height:36.008112px;}
.h1f{height:38.914181px;}
.h19{height:41.006062px;}
.hb{height:41.125613px;}
.ha{height:41.304940px;}
.h12{height:47.156410px;}
.h3{height:49.090950px;}
.hc{height:50.280632px;}
.h8{height:50.483846px;}
.h7{height:50.489846px;}
.h18{height:51.252406px;}
.h6{height:59.221114px;}
.h5{height:60.598349px;}
.h2{height:64.557900px;}
.hd{height:74.109312px;}
.h4{height:77.469300px;}
.h15{height:180.061309px;}
.h1b{height:185.282484px;}
.h1e{height:188.298248px;}
.h11{height:286.437071px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:376.587882px;}
.w4{width:376.593546px;}
.w6{width:376.596495px;}
.w3{width:376.597617px;}
.w2{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:4.462688px;}
.x38{left:8.523442px;}
.x2c{left:10.096067px;}
.x2b{left:12.333400px;}
.x3b{left:13.395519px;}
.x2d{left:16.001934px;}
.x3a{left:41.625599px;}
.x24{left:45.167525px;}
.x35{left:47.523953px;}
.x36{left:51.031362px;}
.x19{left:56.419500px;}
.x10{left:68.215500px;}
.xf{left:69.564000px;}
.x1a{left:71.364000px;}
.x1b{left:72.969000px;}
.x1c{left:77.938500px;}
.xe{left:81.540000px;}
.x5{left:85.039500px;}
.x43{left:98.472000px;}
.x34{left:101.151248px;}
.x1f{left:102.701801px;}
.x23{left:104.367568px;}
.x4{left:112.039500px;}
.x8{left:115.072500px;}
.xc{left:117.564000px;}
.xb{left:128.025000px;}
.x2a{left:136.560417px;}
.x39{left:141.133331px;}
.x3e{left:142.322990px;}
.x40{left:150.231571px;}
.x9{left:151.501500px;}
.x25{left:168.135925px;}
.x41{left:179.397663px;}
.xa{left:186.213000px;}
.x2e{left:195.135330px;}
.xd{left:209.949000px;}
.x28{left:212.054474px;}
.x31{left:219.120290px;}
.x30{left:228.786370px;}
.x17{left:232.605000px;}
.x2f{left:234.740254px;}
.x11{left:237.871500px;}
.x18{left:239.259000px;}
.x26{left:246.711735px;}
.x27{left:248.226468px;}
.x2{left:259.951500px;}
.x13{left:269.146500px;}
.x29{left:277.823464px;}
.x12{left:286.021500px;}
.x32{left:307.055254px;}
.x16{left:317.974500px;}
.x33{left:322.126985px;}
.x3d{left:326.727040px;}
.x1{left:328.078500px;}
.x3c{left:330.081150px;}
.x42{left:331.507978px;}
.x3{left:355.287000px;}
.x14{left:357.901500px;}
.x15{left:364.890000px;}
.x21{left:433.122000px;}
.x22{left:442.720500px;}
.x7{left:453.928500px;}
.x1d{left:459.906000px;}
.x44{left:465.883500px;}
.x1e{left:474.850500px;}
.x6{left:480.928500px;}
.x45{left:487.296000px;}
.x3f{left:494.026500px;}
.x20{left:528.307500px;}
.x47{left:635.103000px;}
.x46{left:799.440000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.v6{vertical-align:-13.301493pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.v7{vertical-align:22.568047pt;}
.v4{vertical-align:38.245333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000162pt;}
.ls1f{letter-spacing:0.001121pt;}
.ls11{letter-spacing:0.001867pt;}
.ls8{letter-spacing:0.002197pt;}
.lsb{letter-spacing:0.002347pt;}
.ls28{letter-spacing:0.002631pt;}
.ls17{letter-spacing:0.002926pt;}
.lsa{letter-spacing:0.003537pt;}
.ls1e{letter-spacing:0.003733pt;}
.ls21{letter-spacing:0.004541pt;}
.ls15{letter-spacing:2.653602pt;}
.ls3{letter-spacing:2.654042pt;}
.ls6{letter-spacing:2.655710pt;}
.ls2{letter-spacing:2.656533pt;}
.ls5{letter-spacing:2.657067pt;}
.ls7{letter-spacing:2.657212pt;}
.lse{letter-spacing:2.657558pt;}
.ls1{letter-spacing:2.659375pt;}
.lsc{letter-spacing:2.659537pt;}
.ls4{letter-spacing:2.661867pt;}
.ls23{letter-spacing:5.977527pt;}
.ls9{letter-spacing:7.529527pt;}
.ls13{letter-spacing:8.398400pt;}
.ls1d{letter-spacing:10.281527pt;}
.ls2a{letter-spacing:10.626533pt;}
.ls16{letter-spacing:11.806861pt;}
.ls2c{letter-spacing:12.608087pt;}
.ls25{letter-spacing:13.284194pt;}
.ls2b{letter-spacing:13.549200pt;}
.lsd{letter-spacing:13.560870pt;}
.lsf{letter-spacing:14.760259pt;}
.ls10{letter-spacing:14.761527pt;}
.ls20{letter-spacing:15.125867pt;}
.ls27{letter-spacing:15.238042pt;}
.ls1b{letter-spacing:15.883200pt;}
.ls19{letter-spacing:15.897874pt;}
.ls22{letter-spacing:16.448533pt;}
.ls24{letter-spacing:17.033527pt;}
.ls26{letter-spacing:17.931200pt;}
.ls1a{letter-spacing:18.377874pt;}
.ls18{letter-spacing:19.090926pt;}
.ls29{letter-spacing:19.163200pt;}
.ls14{letter-spacing:19.241874pt;}
.ls1c{letter-spacing:20.859200pt;}
.ws17{word-spacing:-35.854630pt;}
.ws68{word-spacing:-32.783596pt;}
.ws1{word-spacing:-21.423659pt;}
.ws56{word-spacing:-17.336276pt;}
.wsb{word-spacing:-16.290923pt;}
.ws1f{word-spacing:-14.771215pt;}
.ws16{word-spacing:-13.283467pt;}
.ws86{word-spacing:-11.817002pt;}
.wsaf{word-spacing:-10.626800pt;}
.ws15{word-spacing:-9.298400pt;}
.ws7e{word-spacing:-8.788366pt;}
.ws7a{word-spacing:-4.446116pt;}
.ws70{word-spacing:-4.419118pt;}
.ws61{word-spacing:-4.410111pt;}
.ws1d{word-spacing:-3.028630pt;}
.ws5c{word-spacing:-2.816095pt;}
.ws31{word-spacing:-2.656693pt;}
.ws2b{word-spacing:-2.444158pt;}
.ws2d{word-spacing:-2.391024pt;}
.ws2c{word-spacing:-2.379163pt;}
.ws69{word-spacing:-2.284756pt;}
.ws95{word-spacing:-2.178489pt;}
.wsba{word-spacing:-2.040346pt;}
.ws21{word-spacing:-2.019087pt;}
.wsa2{word-spacing:-1.965953pt;}
.ws24{word-spacing:-1.806551pt;}
.ws8a{word-spacing:-1.753418pt;}
.wsbd{word-spacing:-1.700288pt;}
.ws55{word-spacing:-1.700284pt;}
.wsbc{word-spacing:-1.657781pt;}
.ws54{word-spacing:-1.647150pt;}
.ws6f{word-spacing:-1.594016pt;}
.ws5a{word-spacing:-1.328347pt;}
.ws73{word-spacing:-1.275213pt;}
.ws64{word-spacing:-1.222079pt;}
.ws19{word-spacing:-1.168945pt;}
.wsb7{word-spacing:-0.977666pt;}
.ws45{word-spacing:-0.956410pt;}
.ws1a{word-spacing:-0.903276pt;}
.ws6a{word-spacing:-0.797008pt;}
.ws40{word-spacing:-0.637606pt;}
.ws89{word-spacing:-0.584473pt;}
.ws91{word-spacing:-0.510086pt;}
.ws30{word-spacing:-0.425071pt;}
.wsc1{word-spacing:-0.382565pt;}
.ws20{word-spacing:-0.265669pt;}
.wsc9{word-spacing:-0.255043pt;}
.ws7b{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.170029pt;}
.ws60{word-spacing:-0.159402pt;}
.ws5f{word-spacing:-0.143385pt;}
.wsc4{word-spacing:-0.127522pt;}
.wsa0{word-spacing:-0.106268pt;}
.ws53{word-spacing:-0.056770pt;}
.ws52{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.042507pt;}
.wsb3{word-spacing:-0.003867pt;}
.ws14{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.001467pt;}
.ws7f{word-spacing:0.031727pt;}
.ws9{word-spacing:0.058182pt;}
.wsbb{word-spacing:0.085014pt;}
.wsc0{word-spacing:0.127522pt;}
.wsa7{word-spacing:0.212535pt;}
.wsb6{word-spacing:0.255043pt;}
.ws9a{word-spacing:0.318803pt;}
.wsca{word-spacing:0.340058pt;}
.ws2e{word-spacing:0.371937pt;}
.ws4c{word-spacing:0.425071pt;}
.ws6b{word-spacing:0.478205pt;}
.ws6{word-spacing:0.523637pt;}
.ws6c{word-spacing:0.531339pt;}
.ws46{word-spacing:0.552594pt;}
.ws77{word-spacing:0.584473pt;}
.ws23{word-spacing:0.637606pt;}
.ws7d{word-spacing:0.690740pt;}
.ws8e{word-spacing:0.743874pt;}
.wsac{word-spacing:0.797008pt;}
.ws1e{word-spacing:0.850142pt;}
.wsaa{word-spacing:1.009543pt;}
.ws81{word-spacing:1.105187pt;}
.ws6d{word-spacing:1.222079pt;}
.ws3e{word-spacing:1.275213pt;}
.ws37{word-spacing:1.328347pt;}
.ws5d{word-spacing:1.381481pt;}
.ws13{word-spacing:1.396365pt;}
.ws4b{word-spacing:1.487748pt;}
.ws84{word-spacing:1.657781pt;}
.ws9e{word-spacing:1.700284pt;}
.wsc5{word-spacing:1.700288pt;}
.ws22{word-spacing:1.753418pt;}
.ws66{word-spacing:1.806551pt;}
.wsa1{word-spacing:1.859685pt;}
.ws92{word-spacing:1.955331pt;}
.ws7c{word-spacing:1.965953pt;}
.ws8f{word-spacing:1.997838pt;}
.ws87{word-spacing:2.019087pt;}
.ws6e{word-spacing:2.072221pt;}
.wsa3{word-spacing:2.125355pt;}
.ws3d{word-spacing:2.231622pt;}
.ws76{word-spacing:2.284756pt;}
.wsb1{word-spacing:2.337896pt;}
.ws3b{word-spacing:2.391024pt;}
.ws48{word-spacing:2.497292pt;}
.ws8b{word-spacing:2.550426pt;}
.ws9c{word-spacing:2.603559pt;}
.wsc7{word-spacing:2.635446pt;}
.ws96{word-spacing:2.762961pt;}
.ws4e{word-spacing:2.869229pt;}
.ws5b{word-spacing:2.922363pt;}
.ws9b{word-spacing:2.932997pt;}
.ws3c{word-spacing:2.975497pt;}
.ws3f{word-spacing:3.028630pt;}
.wsb0{word-spacing:3.060518pt;}
.ws33{word-spacing:3.081764pt;}
.ws2{word-spacing:3.083639pt;}
.ws4f{word-spacing:3.134898pt;}
.wsc2{word-spacing:3.145533pt;}
.wsa9{word-spacing:3.188032pt;}
.ws4d{word-spacing:3.241166pt;}
.wsbf{word-spacing:3.273054pt;}
.ws1b{word-spacing:3.294300pt;}
.ws97{word-spacing:3.347434pt;}
.ws83{word-spacing:3.358069pt;}
.ws34{word-spacing:3.400567pt;}
.ws59{word-spacing:3.453701pt;}
.ws11{word-spacing:3.519601pt;}
.ws80{word-spacing:3.613112pt;}
.ws85{word-spacing:3.655619pt;}
.ws82{word-spacing:3.698126pt;}
.ws44{word-spacing:3.719371pt;}
.ws32{word-spacing:3.772505pt;}
.ws8d{word-spacing:3.825638pt;}
.wsad{word-spacing:3.910662pt;}
.wse{word-spacing:3.956367pt;}
.ws78{word-spacing:3.985040pt;}
.ws12{word-spacing:4.014549pt;}
.ws99{word-spacing:4.038174pt;}
.ws25{word-spacing:4.091308pt;}
.wsb4{word-spacing:4.250720pt;}
.ws8c{word-spacing:4.303843pt;}
.ws43{word-spacing:4.356977pt;}
.ws9d{word-spacing:4.410111pt;}
.wsa8{word-spacing:4.622646pt;}
.wsae{word-spacing:4.675538pt;}
.ws62{word-spacing:4.675780pt;}
.wsc6{word-spacing:4.680533pt;}
.wsb2{word-spacing:4.718299pt;}
.ws65{word-spacing:4.728914pt;}
.wsa6{word-spacing:4.782048pt;}
.ws93{word-spacing:4.803314pt;}
.ws39{word-spacing:4.835182pt;}
.ws67{word-spacing:4.941450pt;}
.ws47{word-spacing:5.047717pt;}
.wsd{word-spacing:5.061822pt;}
.ws3a{word-spacing:5.100851pt;}
.ws1c{word-spacing:5.313387pt;}
.ws88{word-spacing:5.366521pt;}
.wsa{word-spacing:5.585459pt;}
.ws50{word-spacing:5.632190pt;}
.wsc3{word-spacing:5.738472pt;}
.ws42{word-spacing:5.791591pt;}
.ws38{word-spacing:6.004127pt;}
.ws9f{word-spacing:6.110395pt;}
.ws75{word-spacing:6.216662pt;}
.ws74{word-spacing:6.269796pt;}
.wsc8{word-spacing:6.333573pt;}
.wsc{word-spacing:6.341823pt;}
.ws63{word-spacing:6.429198pt;}
.ws2f{word-spacing:6.482332pt;}
.ws36{word-spacing:6.535466pt;}
.ws79{word-spacing:6.641733pt;}
.ws51{word-spacing:7.013670pt;}
.ws26{word-spacing:7.066804pt;}
.ws98{word-spacing:7.173072pt;}
.ws0{word-spacing:7.268741pt;}
.wsa5{word-spacing:7.279340pt;}
.ws71{word-spacing:7.332474pt;}
.ws41{word-spacing:7.385607pt;}
.wsb8{word-spacing:7.481267pt;}
.ws72{word-spacing:7.491875pt;}
.wsab{word-spacing:7.545009pt;}
.ws94{word-spacing:7.810678pt;}
.ws2a{word-spacing:8.182615pt;}
.ws5{word-spacing:8.552734pt;}
.ws10{word-spacing:8.722469pt;}
.ws5e{word-spacing:8.820222pt;}
.ws4a{word-spacing:9.245293pt;}
.ws58{word-spacing:9.457828pt;}
.wsb5{word-spacing:9.521613pt;}
.wsf{word-spacing:10.240009pt;}
.wsa4{word-spacing:10.254836pt;}
.ws35{word-spacing:10.584858pt;}
.ws29{word-spacing:10.786175pt;}
.wsbe{word-spacing:11.689480pt;}
.ws49{word-spacing:13.230333pt;}
.ws7{word-spacing:13.323647pt;}
.ws57{word-spacing:13.549136pt;}
.ws8{word-spacing:15.185467pt;}
.ws27{word-spacing:16.472477pt;}
.ws28{word-spacing:26.513799pt;}
.ws3{word-spacing:29.835503pt;}
.ws4{word-spacing:29.847298pt;}
._35{margin-left:-1434.921419pt;}
._2f{margin-left:-1433.720313pt;}
._1b{margin-left:-1420.618093pt;}
._1c{margin-left:-1419.528911pt;}
._15{margin-left:-1406.728046pt;}
._18{margin-left:-1405.604525pt;}
._50{margin-left:-1377.494506pt;}
._45{margin-left:-1334.867374pt;}
._3d{margin-left:-1305.189489pt;}
._53{margin-left:-1281.955316pt;}
._2d{margin-left:-1210.370693pt;}
._27{margin-left:-1207.674089pt;}
._55{margin-left:-1194.220459pt;}
._37{margin-left:-1178.472140pt;}
._1f{margin-left:-1146.527104pt;}
._52{margin-left:-1055.471727pt;}
._48{margin-left:-1010.946412pt;}
._47{margin-left:-997.436985pt;}
._4e{margin-left:-988.362336pt;}
._2a{margin-left:-960.071507pt;}
._43{margin-left:-872.756890pt;}
._33{margin-left:-824.388052pt;}
._4c{margin-left:-735.721339pt;}
._34{margin-left:-723.965044pt;}
._46{margin-left:-722.679200pt;}
._3e{margin-left:-699.274815pt;}
._54{margin-left:-680.107160pt;}
._4a{margin-left:-660.124529pt;}
._3a{margin-left:-645.309903pt;}
._23{margin-left:-603.841731pt;}
._40{margin-left:-594.105874pt;}
._36{margin-left:-574.628851pt;}
._41{margin-left:-557.177837pt;}
._4d{margin-left:-542.001264pt;}
._3c{margin-left:-518.708917pt;}
._14{margin-left:-421.328327pt;}
._56{margin-left:-402.811437pt;}
._4f{margin-left:-401.578729pt;}
._22{margin-left:-348.357082pt;}
._44{margin-left:-341.477444pt;}
._24{margin-left:-318.478830pt;}
._39{margin-left:-314.196451pt;}
._2b{margin-left:-202.185814pt;}
._d{margin-left:-17.523327pt;}
._c{margin-left:-16.575952pt;}
._e{margin-left:-12.583987pt;}
._7{margin-left:-8.385819pt;}
._8{margin-left:-7.192228pt;}
._42{margin-left:-5.897859pt;}
._5{margin-left:-4.596367pt;}
._a{margin-left:-3.258185pt;}
._2{margin-left:-1.570910pt;}
._3{width:1.570910pt;}
._1{width:2.601444pt;}
._51{width:3.759616pt;}
._2c{width:6.118343pt;}
._f{width:7.825139pt;}
._1a{width:8.820222pt;}
._29{width:10.404362pt;}
._1e{width:11.565138pt;}
._12{width:13.230333pt;}
._21{width:14.239912pt;}
._4b{width:15.304605pt;}
._13{width:16.229771pt;}
._2e{width:17.147627pt;}
._b{width:18.618197pt;}
._1d{width:20.061496pt;}
._19{width:21.428078pt;}
._3f{width:22.422492pt;}
._16{width:23.485169pt;}
._9{width:25.076385pt;}
._10{width:26.796487pt;}
._6{width:28.160023pt;}
._25{width:30.496502pt;}
._11{width:32.631117pt;}
._3b{width:35.174620pt;}
._28{width:36.532995pt;}
._0{width:38.256533pt;}
._38{width:39.761151pt;}
._17{width:41.089498pt;}
._26{width:44.738716pt;}
._49{width:45.693835pt;}
._4{width:56.669138pt;}
._32{width:85.877811pt;}
._30{width:251.224429pt;}
._31{width:458.775507pt;}
._20{width:1212.163517pt;}
.fsa{font-size:19.036189pt;}
.fs7{font-size:25.238400pt;}
.fs9{font-size:31.726952pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fsb{font-size:37.808556pt;}
.fsd{font-size:37.808557pt;}
.fsc{font-size:37.808559pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:47.736593pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs8{font-size:60.031905pt;}
.fs0{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:0.077443pt;}
.yf4{bottom:3.092494pt;}
.yae{bottom:18.275356pt;}
.yf8{bottom:19.439187pt;}
.yf3{bottom:22.571826pt;}
.ya5{bottom:24.026784pt;}
.ya4{bottom:33.941457pt;}
.ya2{bottom:56.416052pt;}
.ya8{bottom:56.469912pt;}
.yf0{bottom:57.089718pt;}
.ya3{bottom:60.202484pt;}
.yf9{bottom:61.322611pt;}
.ya6{bottom:61.656086pt;}
.yf7{bottom:64.519445pt;}
.yab{bottom:67.662253pt;}
.yad{bottom:67.832445pt;}
.yb1{bottom:77.542209pt;}
.yaa{bottom:77.576925pt;}
.yac{bottom:77.747117pt;}
.yb3{bottom:79.526753pt;}
.y4e{bottom:84.381333pt;}
.yb0{bottom:87.456881pt;}
.ya9{bottom:87.491598pt;}
.yb2{bottom:89.441426pt;}
.yaf{bottom:90.276670pt;}
.yef{bottom:92.379873pt;}
.y50{bottom:99.363317pt;}
.y3e{bottom:108.292000pt;}
.yf5{bottom:110.602667pt;}
.yf2{bottom:111.478731pt;}
.y51{bottom:111.875248pt;}
.y9a{bottom:117.724732pt;}
.y9{bottom:117.910667pt;}
.y74{bottom:124.232000pt;}
.y3d{bottom:124.769333pt;}
.ya1{bottom:127.225289pt;}
.y9b{bottom:127.750806pt;}
.yf1{bottom:129.609323pt;}
.y9d{bottom:130.052794pt;}
.y8{bottom:135.976000pt;}
.yec{bottom:136.505333pt;}
.yee{bottom:136.910279pt;}
.y4d{bottom:137.306667pt;}
.y73{bottom:140.172000pt;}
.ya0{bottom:141.586716pt;}
.y9f{bottom:141.673444pt;}
.yed{bottom:148.725453pt;}
.y9c{bottom:151.021328pt;}
.y9e{bottom:151.332435pt;}
.y4c{bottom:153.246667pt;}
.y7{bottom:154.041333pt;}
.y72{bottom:156.112000pt;}
.y3c{bottom:166.438667pt;}
.y4b{bottom:169.188000pt;}
.y98{bottom:172.052000pt;}
.y6{bottom:172.106667pt;}
.y71{bottom:172.538667pt;}
.ycc{bottom:173.204000pt;}
.y3b{bottom:182.378667pt;}
.y4a{bottom:185.128000pt;}
.y97{bottom:187.992000pt;}
.y110{bottom:187.993333pt;}
.y70{bottom:188.478667pt;}
.ycb{bottom:189.144000pt;}
.y5{bottom:190.172000pt;}
.y3a{bottom:198.318667pt;}
.y49{bottom:201.068000pt;}
.y96{bottom:203.933333pt;}
.y6f{bottom:204.418667pt;}
.yca{bottom:205.084000pt;}
.y4{bottom:208.238667pt;}
.y39{bottom:214.258667pt;}
.y48{bottom:217.008000pt;}
.y145{bottom:217.216000pt;}
.y95{bottom:219.873333pt;}
.y6e{bottom:220.358667pt;}
.yc9{bottom:221.024000pt;}
.y144{bottom:229.836000pt;}
.y38{bottom:230.198667pt;}
.y47{bottom:232.948000pt;}
.y94{bottom:235.813333pt;}
.y6d{bottom:236.298667pt;}
.yc8{bottom:236.964000pt;}
.y143{bottom:242.454667pt;}
.y37{bottom:246.140000pt;}
.y46{bottom:248.888000pt;}
.y93{bottom:251.753333pt;}
.y6c{bottom:252.240000pt;}
.yc7{bottom:252.904000pt;}
.y142{bottom:255.074667pt;}
.y36{bottom:262.080000pt;}
.y45{bottom:264.829333pt;}
.y10f{bottom:267.693333pt;}
.y6b{bottom:268.180000pt;}
.yc6{bottom:268.845333pt;}
.y92{bottom:270.430667pt;}
.y35{bottom:278.020000pt;}
.y141{bottom:280.313333pt;}
.y44{bottom:280.769333pt;}
.y6a{bottom:284.120000pt;}
.yc5{bottom:284.785333pt;}
.y91{bottom:286.370667pt;}
.y3{bottom:292.620000pt;}
.y140{bottom:292.932000pt;}
.y34{bottom:293.960000pt;}
.y10e{bottom:295.853333pt;}
.y43{bottom:296.709333pt;}
.y69{bottom:300.546667pt;}
.yc4{bottom:300.725333pt;}
.y90{bottom:302.310667pt;}
.y13f{bottom:305.552000pt;}
.y33{bottom:309.900000pt;}
.y42{bottom:312.649333pt;}
.y68{bottom:316.486667pt;}
.yc3{bottom:316.665333pt;}
.y13e{bottom:318.170667pt;}
.y8f{bottom:318.250667pt;}
.y2{bottom:321.849333pt;}
.y32{bottom:325.840000pt;}
.y41{bottom:328.589333pt;}
.y13d{bottom:330.790667pt;}
.yeb{bottom:331.009333pt;}
.y67{bottom:332.426667pt;}
.yc2{bottom:332.605333pt;}
.y8e{bottom:334.190667pt;}
.y10d{bottom:335.969333pt;}
.y31{bottom:341.781333pt;}
.y13c{bottom:343.409333pt;}
.y40{bottom:344.530667pt;}
.yea{bottom:346.949333pt;}
.y66{bottom:348.366667pt;}
.yc1{bottom:348.545333pt;}
.y8d{bottom:350.132000pt;}
.y1{bottom:351.080000pt;}
.y10c{bottom:351.909333pt;}
.y13b{bottom:356.029333pt;}
.y3f{bottom:360.470667pt;}
.ye9{bottom:362.889333pt;}
.y65{bottom:364.306667pt;}
.y8c{bottom:366.072000pt;}
.y10b{bottom:367.849333pt;}
.y13a{bottom:368.648000pt;}
.y30{bottom:376.410667pt;}
.yc0{bottom:376.526667pt;}
.ye8{bottom:379.005333pt;}
.y64{bottom:380.246667pt;}
.y139{bottom:381.268000pt;}
.y10a{bottom:383.789333pt;}
.y8b{bottom:384.748000pt;}
.y138{bottom:393.886667pt;}
.ye7{bottom:394.945333pt;}
.y63{bottom:396.188000pt;}
.y109{bottom:399.729333pt;}
.y8a{bottom:400.688000pt;}
.y137{bottom:406.506667pt;}
.ye6{bottom:410.885333pt;}
.y62{bottom:412.128000pt;}
.y108{bottom:415.670667pt;}
.ybf{bottom:416.461333pt;}
.y89{bottom:416.628000pt;}
.y136{bottom:419.125333pt;}
.y2f{bottom:422.338667pt;}
.ye5{bottom:426.826667pt;}
.y61{bottom:428.068000pt;}
.y107{bottom:431.610667pt;}
.y135{bottom:431.745333pt;}
.ybe{bottom:432.402667pt;}
.y88{bottom:432.569333pt;}
.ye4{bottom:442.766667pt;}
.y60{bottom:444.008000pt;}
.y134{bottom:444.364000pt;}
.y106{bottom:447.550667pt;}
.y2e{bottom:447.596000pt;}
.ybd{bottom:448.342667pt;}
.y87{bottom:448.509333pt;}
.y133{bottom:456.984000pt;}
.ye3{bottom:458.706667pt;}
.y5f{bottom:459.948000pt;}
.y105{bottom:463.490667pt;}
.y2d{bottom:463.537333pt;}
.ybc{bottom:464.282667pt;}
.y86{bottom:464.449333pt;}
.y132{bottom:469.602667pt;}
.ye2{bottom:474.646667pt;}
.y5e{bottom:475.889333pt;}
.y104{bottom:479.430667pt;}
.y2c{bottom:479.477333pt;}
.y85{bottom:480.389333pt;}
.y131{bottom:482.222667pt;}
.ye1{bottom:490.586667pt;}
.y5d{bottom:491.829333pt;}
.y130{bottom:494.841333pt;}
.y103{bottom:495.372000pt;}
.y2b{bottom:495.417333pt;}
.y84{bottom:496.329333pt;}
.ye0{bottom:506.526667pt;}
.y12f{bottom:507.461333pt;}
.y5c{bottom:507.769333pt;}
.ybb{bottom:508.745333pt;}
.y102{bottom:511.349333pt;}
.y2a{bottom:511.357333pt;}
.y83{bottom:515.006667pt;}
.y10{bottom:519.801333pt;}
.y12e{bottom:520.080000pt;}
.yba{bottom:521.365333pt;}
.ydf{bottom:522.468000pt;}
.y5b{bottom:523.709333pt;}
.y101{bottom:527.289333pt;}
.y29{bottom:527.297333pt;}
.y82{bottom:530.946667pt;}
.y12d{bottom:532.700000pt;}
.yf{bottom:537.866667pt;}
.yde{bottom:538.408000pt;}
.y5a{bottom:539.649333pt;}
.y100{bottom:543.229333pt;}
.y28{bottom:543.238667pt;}
.y12c{bottom:545.318667pt;}
.y81{bottom:546.886667pt;}
.ydd{bottom:554.348000pt;}
.y59{bottom:555.589333pt;}
.ye{bottom:555.932000pt;}
.y12b{bottom:557.938667pt;}
.yff{bottom:559.170667pt;}
.y27{bottom:559.178667pt;}
.y80{bottom:562.826667pt;}
.ydc{bottom:570.288000pt;}
.y12a{bottom:570.557333pt;}
.y58{bottom:571.530667pt;}
.yfe{bottom:575.110667pt;}
.y26{bottom:575.118667pt;}
.y7f{bottom:578.768000pt;}
.y129{bottom:583.177333pt;}
.ydb{bottom:586.228000pt;}
.yd{bottom:587.972000pt;}
.yfd{bottom:591.050667pt;}
.y25{bottom:591.058667pt;}
.y7e{bottom:594.708000pt;}
.y128{bottom:595.797333pt;}
.yda{bottom:602.169333pt;}
.y57{bottom:602.826667pt;}
.y24{bottom:606.998667pt;}
.y127{bottom:608.416000pt;}
.y7d{bottom:610.648000pt;}
.y126{bottom:621.036000pt;}
.y23{bottom:622.938667pt;}
.yd9{bottom:623.326667pt;}
.y7c{bottom:626.588000pt;}
.yfc{bottom:633.288000pt;}
.y125{bottom:633.654667pt;}
.y22{bottom:638.880000pt;}
.y7b{bottom:642.528000pt;}
.yfb{bottom:645.908000pt;}
.y56{bottom:646.078667pt;}
.y124{bottom:646.274667pt;}
.y21{bottom:654.820000pt;}
.yd8{bottom:656.438667pt;}
.y7a{bottom:658.468000pt;}
.y123{bottom:658.893333pt;}
.y55{bottom:662.018667pt;}
.y20{bottom:670.760000pt;}
.y122{bottom:671.513333pt;}
.yd7{bottom:672.378667pt;}
.y79{bottom:674.409333pt;}
.yc{bottom:675.208000pt;}
.y54{bottom:677.960000pt;}
.y121{bottom:684.132000pt;}
.y1f{bottom:686.700000pt;}
.yd6{bottom:688.318667pt;}
.y78{bottom:690.349333pt;}
.y120{bottom:696.752000pt;}
.y1e{bottom:702.640000pt;}
.yd5{bottom:704.260000pt;}
.yb{bottom:704.438667pt;}
.y77{bottom:706.289333pt;}
.y11f{bottom:709.370667pt;}
.yd4{bottom:720.200000pt;}
.y53{bottom:721.093333pt;}
.y76{bottom:722.229333pt;}
.y1d{bottom:726.550667pt;}
.ya{bottom:733.668000pt;}
.y52{bottom:733.712000pt;}
.y11e{bottom:733.945333pt;}
.y4f{bottom:759.616000pt;}
.yd3{bottom:760.545333pt;}
.yb9{bottom:765.174667pt;}
.y75{bottom:769.864000pt;}
.yd2{bottom:773.165333pt;}
.y11d{bottom:773.796000pt;}
.yb8{bottom:777.793333pt;}
.yd1{bottom:785.784000pt;}
.y11c{bottom:789.736000pt;}
.yb7{bottom:790.413333pt;}
.yd0{bottom:798.404000pt;}
.yb6{bottom:803.032000pt;}
.y11b{bottom:805.676000pt;}
.y1c{bottom:805.777333pt;}
.yb5{bottom:815.652000pt;}
.y1b{bottom:818.397333pt;}
.yfa{bottom:820.950667pt;}
.y11a{bottom:821.616000pt;}
.yb4{bottom:828.270667pt;}
.y1a{bottom:831.016000pt;}
.y19{bottom:843.636000pt;}
.yf6{bottom:846.853333pt;}
.y119{bottom:849.512000pt;}
.y99{bottom:854.174667pt;}
.y18{bottom:856.254667pt;}
.y17{bottom:868.874667pt;}
.y16{bottom:881.493333pt;}
.y118{bottom:889.362667pt;}
.y15{bottom:894.113333pt;}
.y117{bottom:905.302667pt;}
.ycf{bottom:912.205333pt;}
.y14{bottom:916.158667pt;}
.y116{bottom:921.242667pt;}
.yce{bottom:924.825333pt;}
.y13{bottom:932.098667pt;}
.y115{bottom:937.182667pt;}
.ycd{bottom:937.444000pt;}
.y12{bottom:948.038667pt;}
.y114{bottom:953.124000pt;}
.y113{bottom:969.064000pt;}
.y112{bottom:985.004000pt;}
.y11{bottom:987.889333pt;}
.y111{bottom:1000.944000pt;}
.h17{height:13.793801pt;}
.he{height:16.577877pt;}
.h14{height:17.894026pt;}
.h9{height:21.870046pt;}
.h16{height:22.989647pt;}
.h1c{height:27.396434pt;}
.h1d{height:27.396436pt;}
.h10{height:29.159939pt;}
.h13{height:29.244954pt;}
.h20{height:29.458287pt;}
.hf{height:29.499997pt;}
.h1a{height:32.007211pt;}
.h1f{height:34.590383pt;}
.h19{height:36.449833pt;}
.hb{height:36.556100pt;}
.ha{height:36.715502pt;}
.h12{height:41.916809pt;}
.h3{height:43.636400pt;}
.hc{height:44.693895pt;}
.h8{height:44.874530pt;}
.h7{height:44.879863pt;}
.h18{height:45.557695pt;}
.h6{height:52.640990pt;}
.h5{height:53.865199pt;}
.h2{height:57.384800pt;}
.hd{height:65.874944pt;}
.h4{height:68.861600pt;}
.h15{height:160.054497pt;}
.h1b{height:164.695541pt;}
.h1e{height:167.376220pt;}
.h11{height:254.610729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:334.744784pt;}
.w4{width:334.749819pt;}
.w6{width:334.752440pt;}
.w3{width:334.753437pt;}
.w2{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.966834pt;}
.x38{left:7.576393pt;}
.x2c{left:8.974282pt;}
.x2b{left:10.963022pt;}
.x3b{left:11.907128pt;}
.x2d{left:14.223941pt;}
.x3a{left:37.000533pt;}
.x24{left:40.148911pt;}
.x35{left:42.243514pt;}
.x36{left:45.361210pt;}
.x19{left:50.150667pt;}
.x10{left:60.636000pt;}
.xf{left:61.834667pt;}
.x1a{left:63.434667pt;}
.x1b{left:64.861333pt;}
.x1c{left:69.278667pt;}
.xe{left:72.480000pt;}
.x5{left:75.590667pt;}
.x43{left:87.530667pt;}
.x34{left:89.912221pt;}
.x1f{left:91.290490pt;}
.x23{left:92.771171pt;}
.x4{left:99.590667pt;}
.x8{left:102.286667pt;}
.xc{left:104.501333pt;}
.xb{left:113.800000pt;}
.x2a{left:121.387038pt;}
.x39{left:125.451850pt;}
.x3e{left:126.509324pt;}
.x40{left:133.539174pt;}
.x9{left:134.668000pt;}
.x25{left:149.454156pt;}
.x41{left:159.464590pt;}
.xa{left:165.522667pt;}
.x2e{left:173.453626pt;}
.xd{left:186.621333pt;}
.x28{left:188.492866pt;}
.x31{left:194.773591pt;}
.x30{left:203.365662pt;}
.x17{left:206.760000pt;}
.x2f{left:208.658003pt;}
.x11{left:211.441333pt;}
.x18{left:212.674667pt;}
.x26{left:219.299320pt;}
.x27{left:220.645749pt;}
.x2{left:231.068000pt;}
.x13{left:239.241333pt;}
.x29{left:246.954191pt;}
.x12{left:254.241333pt;}
.x32{left:272.938003pt;}
.x16{left:282.644000pt;}
.x33{left:286.335097pt;}
.x3d{left:290.424035pt;}
.x1{left:291.625333pt;}
.x3c{left:293.405467pt;}
.x42{left:294.673758pt;}
.x3{left:315.810667pt;}
.x14{left:318.134667pt;}
.x15{left:324.346667pt;}
.x21{left:384.997333pt;}
.x22{left:393.529333pt;}
.x7{left:403.492000pt;}
.x1d{left:408.805333pt;}
.x44{left:414.118667pt;}
.x1e{left:422.089333pt;}
.x6{left:427.492000pt;}
.x45{left:433.152000pt;}
.x3f{left:439.134667pt;}
.x20{left:469.606667pt;}
.x47{left:564.536000pt;}
.x46{left:710.613333pt;}
}




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