
    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_cce57db9c51f149d8e33c683.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_86c856a1adac264dbb1d0e73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7c52996ecb72135c81861155.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_036450251f7fb4e74bb38f5f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f27267e6d4d84201ca3bb2e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_874052c2a0a9094a4b5a8ded.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_bef261ef8925973968287030.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_1e995d662de33b41af17c1ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_435a3a107824f535b1181693.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022000;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_7f2ebaa77583f798c24ee570.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f5998b9ed17cb4d1653039e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_75558e2cc199f25cfa31bcfa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a23ea2fbd8697530eb749f79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913000;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_3cec021c45a77cf27fb76cc0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_12fb3646565dce5fdd5d6a41.woff2')format("woff");}.fff{font-family:fff;line-height:0.726000;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_8af37b43a41efc44ff82027e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002400px;}
.lse{letter-spacing:0.002759px;}
.ls2b{letter-spacing:0.002915px;}
.ls19{letter-spacing:0.004737px;}
.ls3{letter-spacing:2.984915px;}
.ls5{letter-spacing:2.986059px;}
.lsf{letter-spacing:2.989289px;}
.ls4{letter-spacing:2.990915px;}
.ls1e{letter-spacing:2.995223px;}
.ls1f{letter-spacing:5.443358px;}
.ls11{letter-spacing:5.743488px;}
.ls20{letter-spacing:5.807786px;}
.ls18{letter-spacing:7.658523px;}
.ls1a{letter-spacing:7.664523px;}
.lsd{letter-spacing:9.754765px;}
.ls10{letter-spacing:9.760765px;}
.ls21{letter-spacing:15.608400px;}
.ls26{letter-spacing:19.919518px;}
.ls31{letter-spacing:19.922809px;}
.ls28{letter-spacing:19.924800px;}
.ls1d{letter-spacing:19.925518px;}
.ls2e{letter-spacing:19.927114px;}
.ls27{letter-spacing:19.928400px;}
.lsa{letter-spacing:20.311695px;}
.ls1c{letter-spacing:20.512737px;}
.ls0{letter-spacing:21.820872px;}
.ls25{letter-spacing:22.910915px;}
.ls29{letter-spacing:22.915223px;}
.ls8{letter-spacing:23.305289px;}
.ls12{letter-spacing:23.414759px;}
.lsc{letter-spacing:23.452800px;}
.ls2f{letter-spacing:23.998737px;}
.ls7{letter-spacing:24.937695px;}
.ls6{letter-spacing:24.938400px;}
.ls2a{letter-spacing:25.375358px;}
.ls2c{letter-spacing:25.733786px;}
.ls9{letter-spacing:26.065488px;}
.ls14{letter-spacing:26.396915px;}
.ls15{letter-spacing:26.401223px;}
.ls24{letter-spacing:26.407289px;}
.ls2d{letter-spacing:27.584523px;}
.ls16{letter-spacing:28.861358px;}
.ls1b{letter-spacing:28.922523px;}
.ls17{letter-spacing:29.219786px;}
.ls22{letter-spacing:29.682440px;}
.ls23{letter-spacing:29.893289px;}
.ls30{letter-spacing:31.076523px;}
.ls32{letter-spacing:32.166440px;}
.lsb{letter-spacing:33.214765px;}
.ls13{letter-spacing:35.117518px;}
.ls35{letter-spacing:207.943473px;}
.ls34{letter-spacing:272.371473px;}
.ls33{letter-spacing:357.187473px;}
.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;}
}
.wscb{word-spacing:-71.731200px;}
.wseb{word-spacing:-58.101975px;}
.ws81{word-spacing:-45.664082px;}
.wsbd{word-spacing:-40.348800px;}
.ws31{word-spacing:-35.865600px;}
.ws38{word-spacing:-35.119596px;}
.ws82{word-spacing:-33.684972px;}
.ws4{word-spacing:-32.727300px;}
.wsb7{word-spacing:-30.729489px;}
.ws1{word-spacing:-23.245312px;}
.wsdd{word-spacing:-22.416000px;}
.ws43{word-spacing:-20.048870px;}
.wsde{word-spacing:-19.905408px;}
.ws23{word-spacing:-19.553925px;}
.wsc9{word-spacing:-19.517403px;}
.ws89{word-spacing:-19.510886px;}
.wsca{word-spacing:-19.482194px;}
.ws58{word-spacing:-19.367325px;}
.wsba{word-spacing:-19.267000px;}
.ws8c{word-spacing:-19.139697px;}
.ws8e{word-spacing:-19.123538px;}
.ws6d{word-spacing:-18.980076px;}
.ws33{word-spacing:-18.621420px;}
.wsa0{word-spacing:-18.470784px;}
.wse0{word-spacing:-18.191032px;}
.ws9d{word-spacing:-18.040397px;}
.wsf3{word-spacing:-17.932800px;}
.ws8d{word-spacing:-17.574144px;}
.ws44{word-spacing:-17.473720px;}
.ws9b{word-spacing:-17.401989px;}
.wsdf{word-spacing:-17.330258px;}
.ws13{word-spacing:-17.280014px;}
.ws8f{word-spacing:-17.251354px;}
.ws34{word-spacing:-16.612946px;}
.wsbe{word-spacing:-16.541215px;}
.wsdc{word-spacing:-16.390579px;}
.ws8b{word-spacing:-16.182559px;}
.ws21{word-spacing:-16.139475px;}
.ws6c{word-spacing:-16.110828px;}
.ws45{word-spacing:-16.067789px;}
.ws28{word-spacing:-16.039096px;}
.ws6b{word-spacing:-15.823903px;}
.ws9e{word-spacing:-15.752172px;}
.ws9c{word-spacing:-15.674880px;}
.ws62{word-spacing:-15.393516px;}
.ws59{word-spacing:-15.106591px;}
.ws37{word-spacing:-15.034860px;}
.ws95{word-spacing:-15.027686px;}
.wsb3{word-spacing:-14.955955px;}
.ws30{word-spacing:-14.891397px;}
.ws32{word-spacing:-14.819666px;}
.ws5a{word-spacing:-14.604472px;}
.wscd{word-spacing:-14.597299px;}
.wsdb{word-spacing:-14.317548px;}
.ws29{word-spacing:-14.245816px;}
.ws70{word-spacing:-14.174085px;}
.ws2{word-spacing:-14.082230px;}
.ws99{word-spacing:-14.030623px;}
.ws36{word-spacing:-13.958892px;}
.wsc8{word-spacing:-13.887160px;}
.ws4c{word-spacing:-13.815429px;}
.ws6a{word-spacing:-13.671967px;}
.ws85{word-spacing:-13.628928px;}
.ws14{word-spacing:-13.614557px;}
.ws2a{word-spacing:-13.528504px;}
.wsa5{word-spacing:-13.449600px;}
.wsf2{word-spacing:-13.413734px;}
.ws4f{word-spacing:-13.385042px;}
.wsda{word-spacing:-13.313311px;}
.ws35{word-spacing:-13.169848px;}
.ws98{word-spacing:-13.098117px;}
.wsb5{word-spacing:-13.026386px;}
.wsef{word-spacing:-12.954655px;}
.wsf1{word-spacing:-12.882924px;}
.wsff{word-spacing:-12.768154px;}
.wsce{word-spacing:-12.746669px;}
.ws66{word-spacing:-12.739461px;}
.wsf{word-spacing:-12.567283px;}
.ws47{word-spacing:-12.423066px;}
.ws49{word-spacing:-12.380805px;}
.ws1a{word-spacing:-12.305465px;}
.wscf{word-spacing:-12.237343px;}
.ws57{word-spacing:-12.093880px;}
.wsc5{word-spacing:-11.950418px;}
.wsf0{word-spacing:-11.907379px;}
.ws22{word-spacing:-11.878687px;}
.wsc0{word-spacing:-11.806956px;}
.ws1e{word-spacing:-11.735224px;}
.ws88{word-spacing:-11.710737px;}
.ws9a{word-spacing:-11.663493px;}
.wse1{word-spacing:-11.591762px;}
.ws5e{word-spacing:-11.520031px;}
.ws48{word-spacing:-11.405261px;}
.wse8{word-spacing:-11.304837px;}
.ws75{word-spacing:-11.154202px;}
.ws56{word-spacing:-11.089644px;}
.ws25{word-spacing:-10.946181px;}
.ws5{word-spacing:-10.930918px;}
.wsf4{word-spacing:-10.903142px;}
.ws67{word-spacing:-10.874450px;}
.ws0{word-spacing:-10.865464px;}
.wse9{word-spacing:-10.802719px;}
.ws91{word-spacing:-10.789200px;}
.wsb9{word-spacing:-10.759680px;}
.ws3d{word-spacing:-10.515794px;}
.wsd6{word-spacing:-10.372332px;}
.ws7f{word-spacing:-10.187403px;}
.ws84{word-spacing:-10.177071px;}
.ws83{word-spacing:-10.157138px;}
.ws4b{word-spacing:-10.085407px;}
.wsa1{word-spacing:-9.961918px;}
.ws92{word-spacing:-9.934771px;}
.ws97{word-spacing:-9.823200px;}
.ws12{word-spacing:-9.818190px;}
.ws7b{word-spacing:-9.798482px;}
.ws17{word-spacing:-9.752735px;}
.ws76{word-spacing:-9.726751px;}
.wsac{word-spacing:-9.719578px;}
.wsb6{word-spacing:-9.683712px;}
.ws4a{word-spacing:-9.655020px;}
.wsae{word-spacing:-9.647846px;}
.wsab{word-spacing:-9.511557px;}
.wsbf{word-spacing:-9.368880px;}
.ws2c{word-spacing:-9.368095px;}
.ws72{word-spacing:-9.296364px;}
.ws5d{word-spacing:-9.224632px;}
.ws8a{word-spacing:-9.136193px;}
.ws3f{word-spacing:-9.009439px;}
.ws46{word-spacing:-8.983920px;}
.ws5b{word-spacing:-8.937708px;}
.ws86{word-spacing:-8.822938px;}
.ws71{word-spacing:-8.772476px;}
.ws2f{word-spacing:-8.722514px;}
.ws6{word-spacing:-8.705462px;}
.ws3e{word-spacing:-8.650783px;}
.wsa7{word-spacing:-8.579052px;}
.wsd9{word-spacing:-8.507320px;}
.wsaf{word-spacing:-8.435589px;}
.ws27{word-spacing:-8.363858px;}
.ws7{word-spacing:-8.247280px;}
.ws2b{word-spacing:-8.220396px;}
.wse5{word-spacing:-8.141491px;}
.ws5c{word-spacing:-8.076933px;}
.wsd8{word-spacing:-8.005202px;}
.wsee{word-spacing:-7.962163px;}
.wsbc{word-spacing:-7.933471px;}
.ws50{word-spacing:-7.926298px;}
.ws26{word-spacing:-7.861740px;}
.wsed{word-spacing:-7.818701px;}
.ws3b{word-spacing:-7.790008px;}
.wsea{word-spacing:-7.718277px;}
.wsa8{word-spacing:-7.711104px;}
.wsd{word-spacing:-7.658188px;}
.wsb{word-spacing:-7.527279px;}
.wsec{word-spacing:-7.431352px;}
.wsc{word-spacing:-7.330915px;}
.ws65{word-spacing:-7.287890px;}
.ws40{word-spacing:-7.216159px;}
.ws3c{word-spacing:-7.072696px;}
.ws51{word-spacing:-6.929234px;}
.ws5f{word-spacing:-6.920179px;}
.ws53{word-spacing:-6.912580px;}
.ws9f{word-spacing:-6.836636px;}
.ws6e{word-spacing:-6.785772px;}
.wsf5{word-spacing:-6.742733px;}
.wsaa{word-spacing:-6.714040px;}
.wsa2{word-spacing:-6.706867px;}
.wsc4{word-spacing:-6.427116px;}
.ws60{word-spacing:-6.384077px;}
.wse2{word-spacing:-6.355384px;}
.wsf7{word-spacing:-6.068460px;}
.wsfb{word-spacing:-5.953690px;}
.ws19{word-spacing:-5.890914px;}
.wsa4{word-spacing:-5.853266px;}
.ws102{word-spacing:-5.781535px;}
.ws69{word-spacing:-5.709804px;}
.wsc3{word-spacing:-5.638072px;}
.wsf8{word-spacing:-5.595034px;}
.ws10{word-spacing:-5.498186px;}
.ws1d{word-spacing:-5.494610px;}
.ws7d{word-spacing:-5.351148px;}
.ws103{word-spacing:-5.308109px;}
.ws16{word-spacing:-5.301823px;}
.ws7c{word-spacing:-5.207685px;}
.ws41{word-spacing:-5.135954px;}
.wsc1{word-spacing:-5.064223px;}
.wsf6{word-spacing:-5.021184px;}
.ws2d{word-spacing:-4.992492px;}
.ws15{word-spacing:-4.974550px;}
.ws55{word-spacing:-4.920760px;}
.ws52{word-spacing:-4.808160px;}
.ws11{word-spacing:-4.712731px;}
.ws61{word-spacing:-4.705567px;}
.wsd7{word-spacing:-4.633836px;}
.ws7e{word-spacing:-4.551439px;}
.ws6f{word-spacing:-4.490373px;}
.wsb8{word-spacing:-4.275180px;}
.wsb0{word-spacing:-4.059986px;}
.wsb2{word-spacing:-3.988255px;}
.ws63{word-spacing:-3.916524px;}
.wsa{word-spacing:-3.730912px;}
.ws8{word-spacing:-3.723896px;}
.ws4e{word-spacing:-3.701330px;}
.wsb1{word-spacing:-3.658291px;}
.wse3{word-spacing:-3.622426px;}
.ws3{word-spacing:-3.600003px;}
.wse6{word-spacing:-3.407232px;}
.wse4{word-spacing:-3.199212px;}
.wsf9{word-spacing:-3.055749px;}
.ws94{word-spacing:-3.019200px;}
.wse7{word-spacing:-2.984018px;}
.ws73{word-spacing:-2.833382px;}
.wsfa{word-spacing:-2.797517px;}
.wsfe{word-spacing:-2.768824px;}
.ws2e{word-spacing:-2.697093px;}
.wsfd{word-spacing:-2.510592px;}
.ws74{word-spacing:-2.481900px;}
.ws42{word-spacing:-2.410168px;}
.ws1b{word-spacing:-2.356366px;}
.ws64{word-spacing:-2.174400px;}
.ws77{word-spacing:-1.798395px;}
.ws79{word-spacing:-1.764588px;}
.wsbb{word-spacing:-1.477663px;}
.ws3a{word-spacing:-1.405932px;}
.wse{word-spacing:-1.374547px;}
.ws7a{word-spacing:-1.334200px;}
.ws104{word-spacing:-1.262469px;}
.ws100{word-spacing:-1.190738px;}
.ws105{word-spacing:-1.147699px;}
.ws101{word-spacing:-1.075968px;}
.wsc2{word-spacing:-0.910800px;}
.ws68{word-spacing:-0.616888px;}
.ws90{word-spacing:-0.071731px;}
.wsc6{word-spacing:-0.047821px;}
.ws54{word-spacing:-0.037200px;}
.ws78{word-spacing:-0.030476px;}
.ws1f{word-spacing:0.000000px;}
.ws20{word-spacing:0.051646px;}
.wsc7{word-spacing:0.390117px;}
.ws1c{word-spacing:0.773568px;}
.ws4d{word-spacing:2.611016px;}
.wsa3{word-spacing:2.638800px;}
.ws80{word-spacing:3.008730px;}
.ws87{word-spacing:3.937820px;}
.wscc{word-spacing:4.620002px;}
.ws24{word-spacing:6.054113px;}
.ws39{word-spacing:11.554817px;}
.wsfc{word-spacing:11.864340px;}
.ws18{word-spacing:24.414566px;}
.ws96{word-spacing:28.190362px;}
.wsb4{word-spacing:28.951661px;}
.wsa6{word-spacing:29.696717px;}
.ws9{word-spacing:31.274599px;}
.wsad{word-spacing:32.919636px;}
.ws93{word-spacing:32.996352px;}
.wsa9{word-spacing:37.718035px;}
.wsd5{word-spacing:98.194251px;}
.wsd0{word-spacing:192.383078px;}
.wsd2{word-spacing:196.826302px;}
.wsd4{word-spacing:198.508923px;}
.wsd1{word-spacing:235.215009px;}
.wsd3{word-spacing:244.283286px;}
._36{margin-left:-43.511260px;}
._35{margin-left:-11.959745px;}
._19{margin-left:-9.606193px;}
._26{margin-left:-8.202484px;}
._4{margin-left:-7.058330px;}
._2{margin-left:-5.432732px;}
._3{margin-left:-3.843225px;}
._47{margin-left:-2.843167px;}
._0{margin-left:-1.832729px;}
._6{width:1.832729px;}
._24{width:2.835282px;}
._f{width:3.843225px;}
._9{width:5.040004px;}
._1d{width:6.294432px;}
._d{width:16.690923px;}
._12{width:17.893351px;}
._22{width:19.331912px;}
._17{width:21.128422px;}
._1c{width:22.658123px;}
._21{width:23.686814px;}
._16{width:24.880939px;}
._44{width:26.080611px;}
._b{width:27.556387px;}
._5{width:29.127297px;}
._8{width:30.829117px;}
._e{width:32.596391px;}
._11{width:34.542156px;}
._20{width:35.750710px;}
._7{width:36.916394px;}
._43{width:38.188774px;}
._a{width:39.207305px;}
._23{width:40.384666px;}
._45{width:41.631949px;}
._10{width:42.751795px;}
._14{width:44.545075px;}
._1f{width:45.846960px;}
._c{width:47.650949px;}
._1b{width:48.822941px;}
._13{width:50.960867px;}
._18{width:52.184068px;}
._25{width:54.198527px;}
._46{width:56.284138px;}
._15{width:58.153621px;}
._1e{width:60.699971px;}
._48{width:63.037450px;}
._1a{width:64.669260px;}
._2d{width:71.835214px;}
._33{width:75.174298px;}
._28{width:80.267213px;}
._34{width:82.871144px;}
._31{width:91.744205px;}
._42{width:117.599719px;}
._29{width:123.549799px;}
._2f{width:142.888550px;}
._38{width:148.673662px;}
._2a{width:151.711488px;}
._40{width:169.919092px;}
._2c{width:201.062554px;}
._2b{width:207.844735px;}
._3d{width:229.253678px;}
._27{width:237.613183px;}
._3c{width:259.019754px;}
._41{width:268.059494px;}
._32{width:277.599744px;}
._30{width:310.635545px;}
._39{width:323.977548px;}
._2e{width:327.381197px;}
._3a{width:340.878188px;}
._3e{width:343.874504px;}
._37{width:352.383103px;}
._3f{width:421.564262px;}
._3b{width:441.789996px;}
._1{width:1158.480965px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs0{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y20{bottom:106.299000px;}
.yd8{bottom:113.032500px;}
.y147{bottom:115.260000px;}
.y42{bottom:122.259000px;}
.ybd{bottom:125.103000px;}
.y64{bottom:127.578000px;}
.y85{bottom:128.490000px;}
.y1f{bottom:133.189500px;}
.yd7{bottom:139.923000px;}
.y146{bottom:142.150500px;}
.y41{bottom:149.149500px;}
.ybc{bottom:151.993500px;}
.y63{bottom:154.468500px;}
.y84{bottom:155.380500px;}
.y122{bottom:158.649000px;}
.y10d{bottom:159.801000px;}
.y9f{bottom:160.081500px;}
.y145{bottom:169.041000px;}
.yf1{bottom:171.300000px;}
.y1e{bottom:174.012000px;}
.y40{bottom:176.041500px;}
.yd6{bottom:178.393500px;}
.ybb{bottom:178.884000px;}
.y62{bottom:181.359000px;}
.y83{bottom:182.271000px;}
.y121{bottom:185.539500px;}
.y10c{bottom:186.691500px;}
.y9e{bottom:186.972000px;}
.y144{bottom:195.933000px;}
.yf0{bottom:198.190500px;}
.y1d{bottom:199.233000px;}
.y3f{bottom:202.932000px;}
.yba{bottom:205.774500px;}
.y61{bottom:208.251000px;}
.y82{bottom:209.161500px;}
.y10b{bottom:213.582000px;}
.y143{bottom:222.823500px;}
.y1c{bottom:224.455500px;}
.yef{bottom:225.082500px;}
.y9d{bottom:225.441000px;}
.y3e{bottom:229.822500px;}
.y120{bottom:230.185500px;}
.yb9{bottom:232.666500px;}
.y60{bottom:235.141500px;}
.y81{bottom:236.053500px;}
.yd5{bottom:236.862000px;}
.y10a{bottom:240.474000px;}
.y1b{bottom:249.676500px;}
.y142{bottom:249.714000px;}
.yee{bottom:251.973000px;}
.y3d{bottom:256.713000px;}
.y5f{bottom:262.032000px;}
.y80{bottom:262.944000px;}
.yd4{bottom:263.752500px;}
.yb8{bottom:268.522500px;}
.y1a{bottom:274.899000px;}
.y141{bottom:276.604500px;}
.yed{bottom:278.863500px;}
.y109{bottom:278.943000px;}
.y9c{bottom:283.110000px;}
.y5e{bottom:288.922500px;}
.y7f{bottom:289.834500px;}
.y3c{bottom:295.183500px;}
.yb7{bottom:295.414500px;}
.y11f{bottom:298.002000px;}
.y19{bottom:300.120000px;}
.y140{bottom:303.496500px;}
.yec{bottom:305.754000px;}
.y9b{bottom:310.000500px;}
.yd3{bottom:311.565000px;}
.y5d{bottom:315.814500px;}
.yb6{bottom:322.305000px;}
.y11e{bottom:324.892500px;}
.y18{bottom:325.342500px;}
.y7e{bottom:328.303500px;}
.y13f{bottom:330.387000px;}
.yeb{bottom:332.646000px;}
.y9a{bottom:336.891000px;}
.y108{bottom:337.411500px;}
.y5c{bottom:342.705000px;}
.yb5{bottom:349.195500px;}
.y17{bottom:350.563500px;}
.yd2{bottom:351.349500px;}
.y11d{bottom:351.783000px;}
.y3b{bottom:353.652000px;}
.y13e{bottom:357.277500px;}
.y99{bottom:363.781500px;}
.y107{bottom:364.303500px;}
.yd1{bottom:373.018500px;}
.y16{bottom:375.786000px;}
.yb4{bottom:376.086000px;}
.y11c{bottom:378.675000px;}
.y3a{bottom:380.542500px;}
.y5b{bottom:381.174000px;}
.yea{bottom:381.790500px;}
.y13d{bottom:384.168000px;}
.y7d{bottom:386.773500px;}
.y98{bottom:390.672000px;}
.y106{bottom:391.194000px;}
.yd0{bottom:394.687500px;}
.y15{bottom:401.007000px;}
.yb3{bottom:402.978000px;}
.y11b{bottom:405.565500px;}
.y39{bottom:407.433000px;}
.y13c{bottom:411.060000px;}
.ye9{bottom:413.164500px;}
.y7c{bottom:413.664000px;}
.ycf{bottom:416.356500px;}
.y97{bottom:417.564000px;}
.y105{bottom:418.084500px;}
.y14{bottom:426.229500px;}
.yb2{bottom:429.868500px;}
.y11a{bottom:432.456000px;}
.y38{bottom:434.325000px;}
.y5a{bottom:436.030500px;}
.y13b{bottom:437.950500px;}
.yce{bottom:438.025500px;}
.y7b{bottom:440.554500px;}
.y96{bottom:444.454500px;}
.ye8{bottom:444.538500px;}
.y13{bottom:451.450500px;}
.y104{bottom:456.553500px;}
.y119{bottom:459.346500px;}
.y37{bottom:461.215500px;}
.y13a{bottom:464.841000px;}
.yb1{bottom:468.337500px;}
.ycd{bottom:468.676500px;}
.y95{bottom:471.345000px;}
.ye7{bottom:475.912500px;}
.y7a{bottom:476.412000px;}
.y12{bottom:476.673000px;}
.y36{bottom:488.106000px;}
.y139{bottom:491.731500px;}
.y94{bottom:498.235500px;}
.y11{bottom:501.894000px;}
.y79{bottom:503.302500px;}
.y59{bottom:503.847000px;}
.y118{bottom:505.665000px;}
.ye6{bottom:507.286500px;}
.y103{bottom:511.410000px;}
.ycc{bottom:514.674000px;}
.y35{bottom:514.996500px;}
.y138{bottom:518.623500px;}
.yb0{bottom:523.194000px;}
.y10{bottom:527.116500px;}
.y78{bottom:530.193000px;}
.y58{bottom:530.737500px;}
.y117{bottom:532.555500px;}
.y93{bottom:536.706000px;}
.ycb{bottom:541.566000px;}
.y34{bottom:541.888500px;}
.y137{bottom:545.514000px;}
.yf{bottom:552.337500px;}
.ye5{bottom:556.432500px;}
.y77{bottom:557.085000px;}
.y57{bottom:557.629500px;}
.y116{bottom:559.447500px;}
.y33{bottom:568.779000px;}
.y136{bottom:572.404500px;}
.ye{bottom:577.560000px;}
.y102{bottom:579.226500px;}
.yca{bottom:580.035000px;}
.ye4{bottom:583.323000px;}
.y76{bottom:583.975500px;}
.y56{bottom:584.520000px;}
.y115{bottom:586.338000px;}
.yaf{bottom:591.010500px;}
.y92{bottom:591.561000px;}
.y32{bottom:595.669500px;}
.y135{bottom:599.295000px;}
.yd{bottom:602.781000px;}
.y101{bottom:606.117000px;}
.ye3{bottom:610.213500px;}
.y75{bottom:610.866000px;}
.y55{bottom:611.410500px;}
.y114{bottom:613.228500px;}
.yae{bottom:617.901000px;}
.y31{bottom:622.560000px;}
.y134{bottom:626.185500px;}
.yc{bottom:628.003500px;}
.y100{bottom:633.009000px;}
.yc9{bottom:634.891500px;}
.ye2{bottom:637.105500px;}
.y74{bottom:637.756500px;}
.y54{bottom:638.301000px;}
.y113{bottom:640.119000px;}
.yad{bottom:644.791500px;}
.y30{bottom:649.452000px;}
.y133{bottom:653.077500px;}
.yb{bottom:653.224500px;}
.y91{bottom:658.578000px;}
.yff{bottom:659.899500px;}
.y73{bottom:664.648500px;}
.y53{bottom:665.191500px;}
.yac{bottom:671.683500px;}
.ye1{bottom:675.574500px;}
.y2f{bottom:676.342500px;}
.y132{bottom:679.968000px;}
.ya{bottom:683.890500px;}
.y90{bottom:685.468500px;}
.y112{bottom:686.437500px;}
.yfe{bottom:686.790000px;}
.y72{bottom:691.539000px;}
.y52{bottom:692.083500px;}
.y150{bottom:693.889500px;}
.yab{bottom:698.574000px;}
.yc8{bottom:702.708000px;}
.y2e{bottom:703.233000px;}
.y131{bottom:706.858500px;}
.y8f{bottom:712.359000px;}
.y111{bottom:713.328000px;}
.y71{bottom:718.429500px;}
.y51{bottom:718.974000px;}
.yfd{bottom:725.260500px;}
.yaa{bottom:725.464500px;}
.y14f{bottom:729.559500px;}
.yc7{bottom:729.598500px;}
.y2d{bottom:730.123500px;}
.y130{bottom:733.749000px;}
.ye0{bottom:734.043000px;}
.y8e{bottom:739.249500px;}
.y110{bottom:740.218500px;}
.y70{bottom:745.320000px;}
.y50{bottom:745.864500px;}
.ya9{bottom:752.355000px;}
.yc6{bottom:756.489000px;}
.y2c{bottom:757.015500px;}
.y12f{bottom:760.641000px;}
.ydf{bottom:760.935000px;}
.y14e{bottom:761.718000px;}
.y8d{bottom:766.141500px;}
.y10f{bottom:767.110500px;}
.y4f{bottom:772.755000px;}
.ya8{bottom:779.247000px;}
.yc5{bottom:783.381000px;}
.yfc{bottom:783.729000px;}
.y6f{bottom:783.790500px;}
.y2b{bottom:783.906000px;}
.y12e{bottom:787.531500px;}
.y8c{bottom:793.032000px;}
.y10e{bottom:794.001000px;}
.y4e{bottom:799.647000px;}
.y9{bottom:800.827500px;}
.ya7{bottom:806.137500px;}
.yde{bottom:810.079500px;}
.yc4{bottom:810.271500px;}
.y2a{bottom:810.796500px;}
.y12d{bottom:814.422000px;}
.y8b{bottom:819.922500px;}
.y4d{bottom:826.537500px;}
.yfb{bottom:831.541500px;}
.y8{bottom:832.986000px;}
.ya6{bottom:833.028000px;}
.y29{bottom:837.687000px;}
.y6e{bottom:838.645500px;}
.y12c{bottom:841.312500px;}
.ydd{bottom:841.453500px;}
.y8a{bottom:846.813000px;}
.yc3{bottom:848.740500px;}
.y4c{bottom:853.428000px;}
.ya5{bottom:859.918500px;}
.y28{bottom:864.577500px;}
.y12b{bottom:868.204500px;}
.y14d{bottom:869.694000px;}
.yfa{bottom:871.326000px;}
.ydc{bottom:872.827500px;}
.y4b{bottom:880.318500px;}
.y89{bottom:881.119500px;}
.ya4{bottom:886.810500px;}
.y27{bottom:891.469500px;}
.yf9{bottom:892.995000px;}
.y12a{bottom:895.095000px;}
.y14c{bottom:896.584500px;}
.ydb{bottom:904.201500px;}
.y6d{bottom:906.463500px;}
.y4a{bottom:907.210500px;}
.y88{bottom:908.011500px;}
.ya3{bottom:913.701000px;}
.yf8{bottom:914.662500px;}
.y26{bottom:918.360000px;}
.y129{bottom:921.985500px;}
.y14b{bottom:923.476500px;}
.y6c{bottom:933.354000px;}
.y49{bottom:934.101000px;}
.y87{bottom:934.902000px;}
.yda{bottom:935.575500px;}
.yf7{bottom:936.331500px;}
.y7{bottom:939.444000px;}
.ya2{bottom:940.591500px;}
.y25{bottom:945.250500px;}
.y128{bottom:948.876000px;}
.y14a{bottom:950.367000px;}
.yf6{bottom:958.000500px;}
.y6b{bottom:960.244500px;}
.yc2{bottom:960.991500px;}
.y6{bottom:966.334500px;}
.ya1{bottom:967.482000px;}
.y24{bottom:972.141000px;}
.y48{bottom:972.570000px;}
.y86{bottom:973.371000px;}
.y127{bottom:975.768000px;}
.y149{bottom:977.257500px;}
.yd9{bottom:984.721500px;}
.y6a{bottom:987.135000px;}
.yc1{bottom:987.882000px;}
.yf5{bottom:988.651500px;}
.y5{bottom:1002.006000px;}
.y126{bottom:1002.658500px;}
.y148{bottom:1004.148000px;}
.ya0{bottom:1005.952500px;}
.y23{bottom:1010.611500px;}
.y69{bottom:1014.025500px;}
.yc0{bottom:1014.772500px;}
.y125{bottom:1029.549000px;}
.y47{bottom:1031.040000px;}
.yf4{bottom:1034.650500px;}
.y68{bottom:1040.917500px;}
.ybf{bottom:1041.664500px;}
.y4{bottom:1055.235000px;}
.y124{bottom:1056.439500px;}
.y46{bottom:1057.930500px;}
.y22{bottom:1065.466500px;}
.y67{bottom:1067.808000px;}
.yf3{bottom:1073.119500px;}
.ybe{bottom:1080.133500px;}
.y123{bottom:1083.330000px;}
.y45{bottom:1084.821000px;}
.y66{bottom:1094.698500px;}
.y3{bottom:1096.173000px;}
.y44{bottom:1111.711500px;}
.yf2{bottom:1127.976000px;}
.y65{bottom:1133.169000px;}
.y2{bottom:1135.345500px;}
.y43{bottom:1138.602000px;}
.y1{bottom:1197.601500px;}
.h5{height:45.687311px;}
.h2{height:49.090950px;}
.h9{height:51.216077px;}
.h6{height:53.798400px;}
.h8{height:55.376486px;}
.h4{height:64.557900px;}
.h7{height:77.469300px;}
.h3{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:97.519500px;}
.x1{left:106.299000px;}
.x10{left:127.759500px;}
.xd{left:132.637500px;}
.x17{left:135.216000px;}
.x16{left:143.374500px;}
.xb{left:150.196500px;}
.xe{left:194.023500px;}
.x2{left:197.244000px;}
.x4{left:231.882000px;}
.x3{left:242.872500px;}
.x18{left:244.315500px;}
.x8{left:251.661000px;}
.xf{left:278.383500px;}
.x1c{left:290.071500px;}
.x9{left:320.367000px;}
.x7{left:326.184000px;}
.x1b{left:331.093500px;}
.x5{left:333.294000px;}
.x6{left:340.548000px;}
.x11{left:355.057500px;}
.x15{left:389.110500px;}
.x14{left:406.518000px;}
.xa{left:410.457000px;}
.x13{left:414.811500px;}
.x12{left:418.960500px;}
.x19{left:437.677500px;}
.xc{left:442.066500px;}
@media print{
.v1{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002133pt;}
.lse{letter-spacing:0.002452pt;}
.ls2b{letter-spacing:0.002591pt;}
.ls19{letter-spacing:0.004210pt;}
.ls3{letter-spacing:2.653258pt;}
.ls5{letter-spacing:2.654275pt;}
.lsf{letter-spacing:2.657146pt;}
.ls4{letter-spacing:2.658591pt;}
.ls1e{letter-spacing:2.662420pt;}
.ls1f{letter-spacing:4.838541pt;}
.ls11{letter-spacing:5.105323pt;}
.ls20{letter-spacing:5.162476pt;}
.ls18{letter-spacing:6.807576pt;}
.ls1a{letter-spacing:6.812909pt;}
.lsd{letter-spacing:8.670903pt;}
.ls10{letter-spacing:8.676236pt;}
.ls21{letter-spacing:13.874133pt;}
.ls26{letter-spacing:17.706238pt;}
.ls31{letter-spacing:17.709164pt;}
.ls28{letter-spacing:17.710933pt;}
.ls1d{letter-spacing:17.711572pt;}
.ls2e{letter-spacing:17.712990pt;}
.ls27{letter-spacing:17.714133pt;}
.lsa{letter-spacing:18.054840pt;}
.ls1c{letter-spacing:18.233544pt;}
.ls0{letter-spacing:19.396331pt;}
.ls25{letter-spacing:20.365258pt;}
.ls29{letter-spacing:20.369087pt;}
.ls8{letter-spacing:20.715812pt;}
.ls12{letter-spacing:20.813119pt;}
.lsc{letter-spacing:20.846933pt;}
.ls2f{letter-spacing:21.332210pt;}
.ls7{letter-spacing:22.166840pt;}
.ls6{letter-spacing:22.167467pt;}
.ls2a{letter-spacing:22.555874pt;}
.ls2c{letter-spacing:22.874476pt;}
.ls9{letter-spacing:23.169323pt;}
.ls14{letter-spacing:23.463925pt;}
.ls15{letter-spacing:23.467753pt;}
.ls24{letter-spacing:23.473146pt;}
.ls2d{letter-spacing:24.519576pt;}
.ls16{letter-spacing:25.654541pt;}
.ls1b{letter-spacing:25.708909pt;}
.ls17{letter-spacing:25.973143pt;}
.ls22{letter-spacing:26.384391pt;}
.ls23{letter-spacing:26.571812pt;}
.ls30{letter-spacing:27.623576pt;}
.ls32{letter-spacing:28.592391pt;}
.lsb{letter-spacing:29.524236pt;}
.ls13{letter-spacing:31.215572pt;}
.ls35{letter-spacing:184.838642pt;}
.ls34{letter-spacing:242.107976pt;}
.ls33{letter-spacing:317.499976pt;}
.wscb{word-spacing:-63.761067pt;}
.wseb{word-spacing:-51.646200pt;}
.ws81{word-spacing:-40.590295pt;}
.wsbd{word-spacing:-35.865600pt;}
.ws31{word-spacing:-31.880533pt;}
.ws38{word-spacing:-31.217418pt;}
.ws82{word-spacing:-29.942197pt;}
.ws4{word-spacing:-29.090933pt;}
.wsb7{word-spacing:-27.315101pt;}
.ws1{word-spacing:-20.662500pt;}
.wsdd{word-spacing:-19.925333pt;}
.ws43{word-spacing:-17.821218pt;}
.wsde{word-spacing:-17.693696pt;}
.ws23{word-spacing:-17.381267pt;}
.wsc9{word-spacing:-17.348803pt;}
.ws89{word-spacing:-17.343010pt;}
.wsca{word-spacing:-17.317506pt;}
.ws58{word-spacing:-17.215400pt;}
.wsba{word-spacing:-17.126223pt;}
.ws8c{word-spacing:-17.013064pt;}
.ws8e{word-spacing:-16.998700pt;}
.ws6d{word-spacing:-16.871178pt;}
.ws33{word-spacing:-16.552373pt;}
.wsa0{word-spacing:-16.418475pt;}
.wse0{word-spacing:-16.169807pt;}
.ws9d{word-spacing:-16.035908pt;}
.wsf3{word-spacing:-15.940267pt;}
.ws8d{word-spacing:-15.621461pt;}
.ws44{word-spacing:-15.532196pt;}
.ws9b{word-spacing:-15.468435pt;}
.wsdf{word-spacing:-15.404674pt;}
.ws13{word-spacing:-15.360013pt;}
.ws8f{word-spacing:-15.334537pt;}
.ws34{word-spacing:-14.767063pt;}
.wsbe{word-spacing:-14.703302pt;}
.wsdc{word-spacing:-14.569404pt;}
.ws8b{word-spacing:-14.384497pt;}
.ws21{word-spacing:-14.346200pt;}
.ws6c{word-spacing:-14.320736pt;}
.ws45{word-spacing:-14.282479pt;}
.ws28{word-spacing:-14.256975pt;}
.ws6b{word-spacing:-14.065691pt;}
.ws9e{word-spacing:-14.001930pt;}
.ws9c{word-spacing:-13.933227pt;}
.ws62{word-spacing:-13.683125pt;}
.ws59{word-spacing:-13.428081pt;}
.ws37{word-spacing:-13.364320pt;}
.ws95{word-spacing:-13.357943pt;}
.wsb3{word-spacing:-13.294182pt;}
.ws30{word-spacing:-13.236797pt;}
.ws32{word-spacing:-13.173036pt;}
.ws5a{word-spacing:-12.981753pt;}
.wscd{word-spacing:-12.975377pt;}
.wsdb{word-spacing:-12.726709pt;}
.ws29{word-spacing:-12.662948pt;}
.ws70{word-spacing:-12.599187pt;}
.ws2{word-spacing:-12.517538pt;}
.ws99{word-spacing:-12.471665pt;}
.ws36{word-spacing:-12.407904pt;}
.wsc8{word-spacing:-12.344143pt;}
.ws4c{word-spacing:-12.280381pt;}
.ws6a{word-spacing:-12.152859pt;}
.ws85{word-spacing:-12.114603pt;}
.ws14{word-spacing:-12.101828pt;}
.ws2a{word-spacing:-12.025337pt;}
.wsa5{word-spacing:-11.955200pt;}
.wsf2{word-spacing:-11.923319pt;}
.ws4f{word-spacing:-11.897815pt;}
.wsda{word-spacing:-11.834054pt;}
.ws35{word-spacing:-11.706532pt;}
.ws98{word-spacing:-11.642771pt;}
.wsb5{word-spacing:-11.579010pt;}
.wsef{word-spacing:-11.515249pt;}
.wsf1{word-spacing:-11.451488pt;}
.wsff{word-spacing:-11.349470pt;}
.wsce{word-spacing:-11.330372pt;}
.ws66{word-spacing:-11.323965pt;}
.wsf{word-spacing:-11.170918pt;}
.ws47{word-spacing:-11.042726pt;}
.ws49{word-spacing:-11.005160pt;}
.ws1a{word-spacing:-10.938191pt;}
.wscf{word-spacing:-10.877638pt;}
.ws57{word-spacing:-10.750116pt;}
.wsc5{word-spacing:-10.622594pt;}
.wsf0{word-spacing:-10.584337pt;}
.ws22{word-spacing:-10.558833pt;}
.wsc0{word-spacing:-10.495072pt;}
.ws1e{word-spacing:-10.431311pt;}
.ws88{word-spacing:-10.409544pt;}
.ws9a{word-spacing:-10.367549pt;}
.wse1{word-spacing:-10.303788pt;}
.ws5e{word-spacing:-10.240027pt;}
.ws48{word-spacing:-10.138010pt;}
.wse8{word-spacing:-10.048744pt;}
.ws75{word-spacing:-9.914846pt;}
.ws56{word-spacing:-9.857461pt;}
.ws25{word-spacing:-9.729939pt;}
.ws5{word-spacing:-9.716372pt;}
.wsf4{word-spacing:-9.691682pt;}
.ws67{word-spacing:-9.666178pt;}
.ws0{word-spacing:-9.658190pt;}
.wse9{word-spacing:-9.602417pt;}
.ws91{word-spacing:-9.590400pt;}
.wsb9{word-spacing:-9.564160pt;}
.ws3d{word-spacing:-9.347372pt;}
.wsd6{word-spacing:-9.219850pt;}
.ws7f{word-spacing:-9.055469pt;}
.ws84{word-spacing:-9.046286pt;}
.ws83{word-spacing:-9.028567pt;}
.ws4b{word-spacing:-8.964806pt;}
.wsa1{word-spacing:-8.855038pt;}
.ws92{word-spacing:-8.830908pt;}
.ws97{word-spacing:-8.731733pt;}
.ws12{word-spacing:-8.727280pt;}
.ws7b{word-spacing:-8.709762pt;}
.ws17{word-spacing:-8.669098pt;}
.ws76{word-spacing:-8.646001pt;}
.wsac{word-spacing:-8.639625pt;}
.wsb6{word-spacing:-8.607744pt;}
.ws4a{word-spacing:-8.582240pt;}
.wsae{word-spacing:-8.575863pt;}
.wsab{word-spacing:-8.454717pt;}
.wsbf{word-spacing:-8.327893pt;}
.ws2c{word-spacing:-8.327195pt;}
.ws72{word-spacing:-8.263434pt;}
.ws5d{word-spacing:-8.199673pt;}
.ws8a{word-spacing:-8.121061pt;}
.ws3f{word-spacing:-8.008390pt;}
.ws46{word-spacing:-7.985707pt;}
.ws5b{word-spacing:-7.944629pt;}
.ws86{word-spacing:-7.842611pt;}
.ws71{word-spacing:-7.797757pt;}
.ws2f{word-spacing:-7.753346pt;}
.ws6{word-spacing:-7.738188pt;}
.ws3e{word-spacing:-7.689585pt;}
.wsa7{word-spacing:-7.625824pt;}
.wsd9{word-spacing:-7.562063pt;}
.wsaf{word-spacing:-7.498301pt;}
.ws27{word-spacing:-7.434540pt;}
.ws7{word-spacing:-7.330915pt;}
.ws2b{word-spacing:-7.307018pt;}
.wse5{word-spacing:-7.236881pt;}
.ws5c{word-spacing:-7.179496pt;}
.wsd8{word-spacing:-7.115735pt;}
.wsee{word-spacing:-7.077478pt;}
.wsbc{word-spacing:-7.051974pt;}
.ws50{word-spacing:-7.045598pt;}
.ws26{word-spacing:-6.988213pt;}
.wsed{word-spacing:-6.949956pt;}
.ws3b{word-spacing:-6.924452pt;}
.wsea{word-spacing:-6.860691pt;}
.wsa8{word-spacing:-6.854315pt;}
.wsd{word-spacing:-6.807278pt;}
.wsb{word-spacing:-6.690915pt;}
.wsec{word-spacing:-6.605647pt;}
.wsc{word-spacing:-6.516369pt;}
.ws65{word-spacing:-6.478124pt;}
.ws40{word-spacing:-6.414363pt;}
.ws3c{word-spacing:-6.286841pt;}
.ws51{word-spacing:-6.159319pt;}
.ws5f{word-spacing:-6.151270pt;}
.ws53{word-spacing:-6.144515pt;}
.ws9f{word-spacing:-6.077010pt;}
.ws6e{word-spacing:-6.031797pt;}
.wsf5{word-spacing:-5.993540pt;}
.wsaa{word-spacing:-5.968036pt;}
.wsa2{word-spacing:-5.961660pt;}
.wsc4{word-spacing:-5.712992pt;}
.ws60{word-spacing:-5.674735pt;}
.wse2{word-spacing:-5.649231pt;}
.wsf7{word-spacing:-5.394186pt;}
.wsfb{word-spacing:-5.292169pt;}
.ws19{word-spacing:-5.236368pt;}
.wsa4{word-spacing:-5.202903pt;}
.ws102{word-spacing:-5.139142pt;}
.ws69{word-spacing:-5.075381pt;}
.wsc3{word-spacing:-5.011620pt;}
.wsf8{word-spacing:-4.973363pt;}
.ws10{word-spacing:-4.887277pt;}
.ws1d{word-spacing:-4.884098pt;}
.ws7d{word-spacing:-4.756576pt;}
.ws103{word-spacing:-4.718319pt;}
.ws16{word-spacing:-4.712731pt;}
.ws7c{word-spacing:-4.629053pt;}
.ws41{word-spacing:-4.565292pt;}
.wsc1{word-spacing:-4.501531pt;}
.wsf6{word-spacing:-4.463275pt;}
.ws2d{word-spacing:-4.437770pt;}
.ws15{word-spacing:-4.421822pt;}
.ws55{word-spacing:-4.374009pt;}
.ws52{word-spacing:-4.273920pt;}
.ws11{word-spacing:-4.189094pt;}
.ws61{word-spacing:-4.182726pt;}
.wsd7{word-spacing:-4.118965pt;}
.ws7e{word-spacing:-4.045723pt;}
.ws6f{word-spacing:-3.991443pt;}
.wsb8{word-spacing:-3.800160pt;}
.wsb0{word-spacing:-3.608876pt;}
.wsb2{word-spacing:-3.545115pt;}
.ws63{word-spacing:-3.481354pt;}
.wsa{word-spacing:-3.316366pt;}
.ws8{word-spacing:-3.310130pt;}
.ws4e{word-spacing:-3.290071pt;}
.wsb1{word-spacing:-3.251814pt;}
.wse3{word-spacing:-3.219934pt;}
.ws3{word-spacing:-3.200003pt;}
.wse6{word-spacing:-3.028651pt;}
.wse4{word-spacing:-2.843744pt;}
.wsf9{word-spacing:-2.716221pt;}
.ws94{word-spacing:-2.683733pt;}
.wse7{word-spacing:-2.652460pt;}
.ws73{word-spacing:-2.518562pt;}
.wsfa{word-spacing:-2.486682pt;}
.wsfe{word-spacing:-2.461177pt;}
.ws2e{word-spacing:-2.397416pt;}
.wsfd{word-spacing:-2.231637pt;}
.ws74{word-spacing:-2.206133pt;}
.ws42{word-spacing:-2.142372pt;}
.ws1b{word-spacing:-2.094547pt;}
.ws64{word-spacing:-1.932800pt;}
.ws77{word-spacing:-1.598573pt;}
.ws79{word-spacing:-1.568522pt;}
.wsbb{word-spacing:-1.313478pt;}
.ws3a{word-spacing:-1.249717pt;}
.wse{word-spacing:-1.221819pt;}
.ws7a{word-spacing:-1.185956pt;}
.ws104{word-spacing:-1.122195pt;}
.ws100{word-spacing:-1.058434pt;}
.ws105{word-spacing:-1.020177pt;}
.ws101{word-spacing:-0.956416pt;}
.wsc2{word-spacing:-0.809600pt;}
.ws68{word-spacing:-0.548345pt;}
.ws90{word-spacing:-0.063761pt;}
.wsc6{word-spacing:-0.042507pt;}
.ws54{word-spacing:-0.033067pt;}
.ws78{word-spacing:-0.027090pt;}
.ws1f{word-spacing:0.000000pt;}
.ws20{word-spacing:0.045908pt;}
.wsc7{word-spacing:0.346771pt;}
.ws1c{word-spacing:0.687616pt;}
.ws4d{word-spacing:2.320903pt;}
.wsa3{word-spacing:2.345600pt;}
.ws80{word-spacing:2.674427pt;}
.ws87{word-spacing:3.500285pt;}
.wscc{word-spacing:4.106668pt;}
.ws24{word-spacing:5.381434pt;}
.ws39{word-spacing:10.270949pt;}
.wsfc{word-spacing:10.546080pt;}
.ws18{word-spacing:21.701836pt;}
.ws96{word-spacing:25.058099pt;}
.wsb4{word-spacing:25.734810pt;}
.wsa6{word-spacing:26.397082pt;}
.ws9{word-spacing:27.799643pt;}
.wsad{word-spacing:29.261899pt;}
.ws93{word-spacing:29.330091pt;}
.wsa9{word-spacing:33.527142pt;}
.wsd5{word-spacing:87.283779pt;}
.wsd0{word-spacing:171.007181pt;}
.wsd2{word-spacing:174.956713pt;}
.wsd4{word-spacing:176.452376pt;}
.wsd1{word-spacing:209.080008pt;}
.wsd3{word-spacing:217.140698pt;}
._36{margin-left:-38.676676pt;}
._35{margin-left:-10.630885pt;}
._19{margin-left:-8.538838pt;}
._26{margin-left:-7.291097pt;}
._4{margin-left:-6.274071pt;}
._2{margin-left:-4.829095pt;}
._3{margin-left:-3.416200pt;}
._47{margin-left:-2.527259pt;}
._0{margin-left:-1.629092pt;}
._6{width:1.629092pt;}
._24{width:2.520251pt;}
._f{width:3.416200pt;}
._9{width:4.480004pt;}
._1d{width:5.595051pt;}
._d{width:14.836376pt;}
._12{width:15.905201pt;}
._22{width:17.183922pt;}
._17{width:18.780819pt;}
._1c{width:20.140554pt;}
._21{width:21.054946pt;}
._16{width:22.116390pt;}
._44{width:23.182765pt;}
._b{width:24.494566pt;}
._5{width:25.890931pt;}
._8{width:27.403659pt;}
._e{width:28.974570pt;}
._11{width:30.704139pt;}
._20{width:31.778409pt;}
._7{width:32.814573pt;}
._43{width:33.945577pt;}
._a{width:34.850938pt;}
._23{width:35.897481pt;}
._45{width:37.006177pt;}
._10{width:38.001596pt;}
._14{width:39.595622pt;}
._1f{width:40.752853pt;}
._c{width:42.356399pt;}
._1b{width:43.398170pt;}
._13{width:45.298548pt;}
._18{width:46.385838pt;}
._25{width:48.176469pt;}
._46{width:50.030345pt;}
._15{width:51.692108pt;}
._1e{width:53.955530pt;}
._48{width:56.033289pt;}
._1a{width:57.483787pt;}
._2d{width:63.853523pt;}
._33{width:66.821598pt;}
._28{width:71.348634pt;}
._34{width:73.663239pt;}
._31{width:81.550404pt;}
._42{width:104.533084pt;}
._29{width:109.822044pt;}
._2f{width:127.012045pt;}
._38{width:132.154366pt;}
._2a{width:134.854656pt;}
._40{width:151.039193pt;}
._2c{width:178.722270pt;}
._2b{width:184.750876pt;}
._3d{width:203.781047pt;}
._27{width:211.211718pt;}
._3c{width:230.239782pt;}
._41{width:238.275106pt;}
._32{width:246.755328pt;}
._30{width:276.120484pt;}
._39{width:287.980043pt;}
._2e{width:291.005508pt;}
._3a{width:303.002834pt;}
._3e{width:305.666225pt;}
._37{width:313.229425pt;}
._3f{width:374.723789pt;}
._3b{width:392.702218pt;}
._1{width:1029.760858pt;}
.fs5{font-size:42.507200pt;}
.fs0{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y20{bottom:94.488000pt;}
.yd8{bottom:100.473333pt;}
.y147{bottom:102.453333pt;}
.y42{bottom:108.674667pt;}
.ybd{bottom:111.202667pt;}
.y64{bottom:113.402667pt;}
.y85{bottom:114.213333pt;}
.y1f{bottom:118.390667pt;}
.yd7{bottom:124.376000pt;}
.y146{bottom:126.356000pt;}
.y41{bottom:132.577333pt;}
.ybc{bottom:135.105333pt;}
.y63{bottom:137.305333pt;}
.y84{bottom:138.116000pt;}
.y122{bottom:141.021333pt;}
.y10d{bottom:142.045333pt;}
.y9f{bottom:142.294667pt;}
.y145{bottom:150.258667pt;}
.yf1{bottom:152.266667pt;}
.y1e{bottom:154.677333pt;}
.y40{bottom:156.481333pt;}
.yd6{bottom:158.572000pt;}
.ybb{bottom:159.008000pt;}
.y62{bottom:161.208000pt;}
.y83{bottom:162.018667pt;}
.y121{bottom:164.924000pt;}
.y10c{bottom:165.948000pt;}
.y9e{bottom:166.197333pt;}
.y144{bottom:174.162667pt;}
.yf0{bottom:176.169333pt;}
.y1d{bottom:177.096000pt;}
.y3f{bottom:180.384000pt;}
.yba{bottom:182.910667pt;}
.y61{bottom:185.112000pt;}
.y82{bottom:185.921333pt;}
.y10b{bottom:189.850667pt;}
.y143{bottom:198.065333pt;}
.y1c{bottom:199.516000pt;}
.yef{bottom:200.073333pt;}
.y9d{bottom:200.392000pt;}
.y3e{bottom:204.286667pt;}
.y120{bottom:204.609333pt;}
.yb9{bottom:206.814667pt;}
.y60{bottom:209.014667pt;}
.y81{bottom:209.825333pt;}
.yd5{bottom:210.544000pt;}
.y10a{bottom:213.754667pt;}
.y1b{bottom:221.934667pt;}
.y142{bottom:221.968000pt;}
.yee{bottom:223.976000pt;}
.y3d{bottom:228.189333pt;}
.y5f{bottom:232.917333pt;}
.y80{bottom:233.728000pt;}
.yd4{bottom:234.446667pt;}
.yb8{bottom:238.686667pt;}
.y1a{bottom:244.354667pt;}
.y141{bottom:245.870667pt;}
.yed{bottom:247.878667pt;}
.y109{bottom:247.949333pt;}
.y9c{bottom:251.653333pt;}
.y5e{bottom:256.820000pt;}
.y7f{bottom:257.630667pt;}
.y3c{bottom:262.385333pt;}
.yb7{bottom:262.590667pt;}
.y11f{bottom:264.890667pt;}
.y19{bottom:266.773333pt;}
.y140{bottom:269.774667pt;}
.yec{bottom:271.781333pt;}
.y9b{bottom:275.556000pt;}
.yd3{bottom:276.946667pt;}
.y5d{bottom:280.724000pt;}
.yb6{bottom:286.493333pt;}
.y11e{bottom:288.793333pt;}
.y18{bottom:289.193333pt;}
.y7e{bottom:291.825333pt;}
.y13f{bottom:293.677333pt;}
.yeb{bottom:295.685333pt;}
.y9a{bottom:299.458667pt;}
.y108{bottom:299.921333pt;}
.y5c{bottom:304.626667pt;}
.yb5{bottom:310.396000pt;}
.y17{bottom:311.612000pt;}
.yd2{bottom:312.310667pt;}
.y11d{bottom:312.696000pt;}
.y3b{bottom:314.357333pt;}
.y13e{bottom:317.580000pt;}
.y99{bottom:323.361333pt;}
.y107{bottom:323.825333pt;}
.yd1{bottom:331.572000pt;}
.y16{bottom:334.032000pt;}
.yb4{bottom:334.298667pt;}
.y11c{bottom:336.600000pt;}
.y3a{bottom:338.260000pt;}
.y5b{bottom:338.821333pt;}
.yea{bottom:339.369333pt;}
.y13d{bottom:341.482667pt;}
.y7d{bottom:343.798667pt;}
.y98{bottom:347.264000pt;}
.y106{bottom:347.728000pt;}
.yd0{bottom:350.833333pt;}
.y15{bottom:356.450667pt;}
.yb3{bottom:358.202667pt;}
.y11b{bottom:360.502667pt;}
.y39{bottom:362.162667pt;}
.y13c{bottom:365.386667pt;}
.ye9{bottom:367.257333pt;}
.y7c{bottom:367.701333pt;}
.ycf{bottom:370.094667pt;}
.y97{bottom:371.168000pt;}
.y105{bottom:371.630667pt;}
.y14{bottom:378.870667pt;}
.yb2{bottom:382.105333pt;}
.y11a{bottom:384.405333pt;}
.y38{bottom:386.066667pt;}
.y5a{bottom:387.582667pt;}
.y13b{bottom:389.289333pt;}
.yce{bottom:389.356000pt;}
.y7b{bottom:391.604000pt;}
.y96{bottom:395.070667pt;}
.ye8{bottom:395.145333pt;}
.y13{bottom:401.289333pt;}
.y104{bottom:405.825333pt;}
.y119{bottom:408.308000pt;}
.y37{bottom:409.969333pt;}
.y13a{bottom:413.192000pt;}
.yb1{bottom:416.300000pt;}
.ycd{bottom:416.601333pt;}
.y95{bottom:418.973333pt;}
.ye7{bottom:423.033333pt;}
.y7a{bottom:423.477333pt;}
.y12{bottom:423.709333pt;}
.y36{bottom:433.872000pt;}
.y139{bottom:437.094667pt;}
.y94{bottom:442.876000pt;}
.y11{bottom:446.128000pt;}
.y79{bottom:447.380000pt;}
.y59{bottom:447.864000pt;}
.y118{bottom:449.480000pt;}
.ye6{bottom:450.921333pt;}
.y103{bottom:454.586667pt;}
.ycc{bottom:457.488000pt;}
.y35{bottom:457.774667pt;}
.y138{bottom:460.998667pt;}
.yb0{bottom:465.061333pt;}
.y10{bottom:468.548000pt;}
.y78{bottom:471.282667pt;}
.y58{bottom:471.766667pt;}
.y117{bottom:473.382667pt;}
.y93{bottom:477.072000pt;}
.ycb{bottom:481.392000pt;}
.y34{bottom:481.678667pt;}
.y137{bottom:484.901333pt;}
.yf{bottom:490.966667pt;}
.ye5{bottom:494.606667pt;}
.y77{bottom:495.186667pt;}
.y57{bottom:495.670667pt;}
.y116{bottom:497.286667pt;}
.y33{bottom:505.581333pt;}
.y136{bottom:508.804000pt;}
.ye{bottom:513.386667pt;}
.y102{bottom:514.868000pt;}
.yca{bottom:515.586667pt;}
.ye4{bottom:518.509333pt;}
.y76{bottom:519.089333pt;}
.y56{bottom:519.573333pt;}
.y115{bottom:521.189333pt;}
.yaf{bottom:525.342667pt;}
.y92{bottom:525.832000pt;}
.y32{bottom:529.484000pt;}
.y135{bottom:532.706667pt;}
.yd{bottom:535.805333pt;}
.y101{bottom:538.770667pt;}
.ye3{bottom:542.412000pt;}
.y75{bottom:542.992000pt;}
.y55{bottom:543.476000pt;}
.y114{bottom:545.092000pt;}
.yae{bottom:549.245333pt;}
.y31{bottom:553.386667pt;}
.y134{bottom:556.609333pt;}
.yc{bottom:558.225333pt;}
.y100{bottom:562.674667pt;}
.yc9{bottom:564.348000pt;}
.ye2{bottom:566.316000pt;}
.y74{bottom:566.894667pt;}
.y54{bottom:567.378667pt;}
.y113{bottom:568.994667pt;}
.yad{bottom:573.148000pt;}
.y30{bottom:577.290667pt;}
.y133{bottom:580.513333pt;}
.yb{bottom:580.644000pt;}
.y91{bottom:585.402667pt;}
.yff{bottom:586.577333pt;}
.y73{bottom:590.798667pt;}
.y53{bottom:591.281333pt;}
.yac{bottom:597.052000pt;}
.ye1{bottom:600.510667pt;}
.y2f{bottom:601.193333pt;}
.y132{bottom:604.416000pt;}
.ya{bottom:607.902667pt;}
.y90{bottom:609.305333pt;}
.y112{bottom:610.166667pt;}
.yfe{bottom:610.480000pt;}
.y72{bottom:614.701333pt;}
.y52{bottom:615.185333pt;}
.y150{bottom:616.790667pt;}
.yab{bottom:620.954667pt;}
.yc8{bottom:624.629333pt;}
.y2e{bottom:625.096000pt;}
.y131{bottom:628.318667pt;}
.y8f{bottom:633.208000pt;}
.y111{bottom:634.069333pt;}
.y71{bottom:638.604000pt;}
.y51{bottom:639.088000pt;}
.yfd{bottom:644.676000pt;}
.yaa{bottom:644.857333pt;}
.y14f{bottom:648.497333pt;}
.yc7{bottom:648.532000pt;}
.y2d{bottom:648.998667pt;}
.y130{bottom:652.221333pt;}
.ye0{bottom:652.482667pt;}
.y8e{bottom:657.110667pt;}
.y110{bottom:657.972000pt;}
.y70{bottom:662.506667pt;}
.y50{bottom:662.990667pt;}
.ya9{bottom:668.760000pt;}
.yc6{bottom:672.434667pt;}
.y2c{bottom:672.902667pt;}
.y12f{bottom:676.125333pt;}
.ydf{bottom:676.386667pt;}
.y14e{bottom:677.082667pt;}
.y8d{bottom:681.014667pt;}
.y10f{bottom:681.876000pt;}
.y4f{bottom:686.893333pt;}
.ya8{bottom:692.664000pt;}
.yc5{bottom:696.338667pt;}
.yfc{bottom:696.648000pt;}
.y6f{bottom:696.702667pt;}
.y2b{bottom:696.805333pt;}
.y12e{bottom:700.028000pt;}
.y8c{bottom:704.917333pt;}
.y10e{bottom:705.778667pt;}
.y4e{bottom:710.797333pt;}
.y9{bottom:711.846667pt;}
.ya7{bottom:716.566667pt;}
.yde{bottom:720.070667pt;}
.yc4{bottom:720.241333pt;}
.y2a{bottom:720.708000pt;}
.y12d{bottom:723.930667pt;}
.y8b{bottom:728.820000pt;}
.y4d{bottom:734.700000pt;}
.yfb{bottom:739.148000pt;}
.y8{bottom:740.432000pt;}
.ya6{bottom:740.469333pt;}
.y29{bottom:744.610667pt;}
.y6e{bottom:745.462667pt;}
.y12c{bottom:747.833333pt;}
.ydd{bottom:747.958667pt;}
.y8a{bottom:752.722667pt;}
.yc3{bottom:754.436000pt;}
.y4c{bottom:758.602667pt;}
.ya5{bottom:764.372000pt;}
.y28{bottom:768.513333pt;}
.y12b{bottom:771.737333pt;}
.y14d{bottom:773.061333pt;}
.yfa{bottom:774.512000pt;}
.ydc{bottom:775.846667pt;}
.y4b{bottom:782.505333pt;}
.y89{bottom:783.217333pt;}
.ya4{bottom:788.276000pt;}
.y27{bottom:792.417333pt;}
.yf9{bottom:793.773333pt;}
.y12a{bottom:795.640000pt;}
.y14c{bottom:796.964000pt;}
.ydb{bottom:803.734667pt;}
.y6d{bottom:805.745333pt;}
.y4a{bottom:806.409333pt;}
.y88{bottom:807.121333pt;}
.ya3{bottom:812.178667pt;}
.yf8{bottom:813.033333pt;}
.y26{bottom:816.320000pt;}
.y129{bottom:819.542667pt;}
.y14b{bottom:820.868000pt;}
.y6c{bottom:829.648000pt;}
.y49{bottom:830.312000pt;}
.y87{bottom:831.024000pt;}
.yda{bottom:831.622667pt;}
.yf7{bottom:832.294667pt;}
.y7{bottom:835.061333pt;}
.ya2{bottom:836.081333pt;}
.y25{bottom:840.222667pt;}
.y128{bottom:843.445333pt;}
.y14a{bottom:844.770667pt;}
.yf6{bottom:851.556000pt;}
.y6b{bottom:853.550667pt;}
.yc2{bottom:854.214667pt;}
.y6{bottom:858.964000pt;}
.ya1{bottom:859.984000pt;}
.y24{bottom:864.125333pt;}
.y48{bottom:864.506667pt;}
.y86{bottom:865.218667pt;}
.y127{bottom:867.349333pt;}
.y149{bottom:868.673333pt;}
.yd9{bottom:875.308000pt;}
.y6a{bottom:877.453333pt;}
.yc1{bottom:878.117333pt;}
.yf5{bottom:878.801333pt;}
.y5{bottom:890.672000pt;}
.y126{bottom:891.252000pt;}
.y148{bottom:892.576000pt;}
.ya0{bottom:894.180000pt;}
.y23{bottom:898.321333pt;}
.y69{bottom:901.356000pt;}
.yc0{bottom:902.020000pt;}
.y125{bottom:915.154667pt;}
.y47{bottom:916.480000pt;}
.yf4{bottom:919.689333pt;}
.y68{bottom:925.260000pt;}
.ybf{bottom:925.924000pt;}
.y4{bottom:937.986667pt;}
.y124{bottom:939.057333pt;}
.y46{bottom:940.382667pt;}
.y22{bottom:947.081333pt;}
.y67{bottom:949.162667pt;}
.yf3{bottom:953.884000pt;}
.ybe{bottom:960.118667pt;}
.y123{bottom:962.960000pt;}
.y45{bottom:964.285333pt;}
.y66{bottom:973.065333pt;}
.y3{bottom:974.376000pt;}
.y44{bottom:988.188000pt;}
.yf2{bottom:1002.645333pt;}
.y65{bottom:1007.261333pt;}
.y2{bottom:1009.196000pt;}
.y43{bottom:1012.090667pt;}
.y1{bottom:1064.534667pt;}
.h5{height:40.610943pt;}
.h2{height:43.636400pt;}
.h9{height:45.525402pt;}
.h6{height:47.820800pt;}
.h8{height:49.223543pt;}
.h4{height:57.384800pt;}
.h7{height:68.861600pt;}
.h3{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:86.684000pt;}
.x1{left:94.488000pt;}
.x10{left:113.564000pt;}
.xd{left:117.900000pt;}
.x17{left:120.192000pt;}
.x16{left:127.444000pt;}
.xb{left:133.508000pt;}
.xe{left:172.465333pt;}
.x2{left:175.328000pt;}
.x4{left:206.117333pt;}
.x3{left:215.886667pt;}
.x18{left:217.169333pt;}
.x8{left:223.698667pt;}
.xf{left:247.452000pt;}
.x1c{left:257.841333pt;}
.x9{left:284.770667pt;}
.x7{left:289.941333pt;}
.x1b{left:294.305333pt;}
.x5{left:296.261333pt;}
.x6{left:302.709333pt;}
.x11{left:315.606667pt;}
.x15{left:345.876000pt;}
.x14{left:361.349333pt;}
.xa{left:364.850667pt;}
.x13{left:368.721333pt;}
.x12{left:372.409333pt;}
.x19{left:389.046667pt;}
.xc{left:392.948000pt;}
}




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