
    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_6c82571c548c842413698f11.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b19ce3cd071ccf441e43d039.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_6c73aa11f6eb11cfb745ca8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_7b1ce3b0e3101a66b657f8c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858398;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_eb7a79f9c6abe26d0ef433f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_f2f1cf56da54cd5686eaab69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_38249aa8531183c22574315a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059000;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_b19ce3cd071ccf441e43d039.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.059000;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_550a16bfb3858b72d4dbc9d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.059000;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_4fa2ec8e5c70aeb5a887b89b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.059000;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_340bea0d146b5c8bf144085c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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_e1824ce352d7487c909f096a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976000;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_df1fb15154c8c4057548a3ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,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:-19.980000px;}
.v3{vertical-align:-4.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:36.240000px;}
.ls42{letter-spacing:-5.640000px;}
.ls3a{letter-spacing:-4.500000px;}
.ls2a{letter-spacing:-3.720000px;}
.ls5c{letter-spacing:-2.352000px;}
.ls4f{letter-spacing:-2.184000px;}
.ls4b{letter-spacing:-2.160000px;}
.ls59{letter-spacing:-2.058000px;}
.ls43{letter-spacing:-1.993860px;}
.ls30{letter-spacing:-1.980000px;}
.ls54{letter-spacing:-1.722000px;}
.ls58{letter-spacing:-1.638000px;}
.ls2f{letter-spacing:-1.380000px;}
.ls49{letter-spacing:-1.259280px;}
.ls61{letter-spacing:-1.218000px;}
.ls17{letter-spacing:-1.080000px;}
.ls48{letter-spacing:-1.049400px;}
.ls3d{letter-spacing:-1.008000px;}
.ls5b{letter-spacing:-0.924000px;}
.ls1f{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.842400px;}
.ls4a{letter-spacing:-0.825000px;}
.ls5{letter-spacing:-0.589680px;}
.ls3b{letter-spacing:-0.559680px;}
.ls44{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.337500px;}
.ls9{letter-spacing:-0.336960px;}
.lsa{letter-spacing:-0.252720px;}
.ls10{letter-spacing:-0.225000px;}
.ls6{letter-spacing:-0.168480px;}
.ls20{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.084240px;}
.ls2e{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.084240px;}
.ls29{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.168480px;}
.ls21{letter-spacing:0.174600px;}
.ls24{letter-spacing:0.175200px;}
.ls40{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.241200px;}
.ls16{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.307800px;}
.ls14{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.336960px;}
.ls4d{letter-spacing:0.337500px;}
.ls15{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.412500px;}
.ls2d{letter-spacing:0.420000px;}
.ls39{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.480000px;}
.ls4c{letter-spacing:0.487500px;}
.ls25{letter-spacing:0.525000px;}
.ls1d{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.588000px;}
.ls1c{letter-spacing:0.600000px;}
.ls3f{letter-spacing:0.637500px;}
.ls12{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.675000px;}
.ls26{letter-spacing:0.712500px;}
.ls5a{letter-spacing:0.714000px;}
.ls28{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.756000px;}
.ls38{letter-spacing:0.768000px;}
.ls1b{letter-spacing:0.780000px;}
.ls46{letter-spacing:0.787500px;}
.ls2c{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.862500px;}
.ls37{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.912000px;}
.ls57{letter-spacing:0.924000px;}
.lse{letter-spacing:0.937500px;}
.lsd{letter-spacing:0.960000px;}
.ls5f{letter-spacing:0.966000px;}
.ls22{letter-spacing:1.008000px;}
.ls3e{letter-spacing:1.050000px;}
.ls23{letter-spacing:1.056000px;}
.ls41{letter-spacing:1.087500px;}
.ls50{letter-spacing:1.092000px;}
.ls51{letter-spacing:1.134000px;}
.ls33{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.162500px;}
.ls56{letter-spacing:1.176000px;}
.ls53{letter-spacing:1.218000px;}
.ls4e{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.302000px;}
.ls36{letter-spacing:1.425000px;}
.ls47{letter-spacing:1.912500px;}
.ls5e{letter-spacing:2.137500px;}
.ls5d{letter-spacing:2.280000px;}
.ls11{letter-spacing:3.750000px;}
.lsf{letter-spacing:4.050000px;}
.ls13{letter-spacing:5.760000px;}
.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;}
}
.ws7{word-spacing:-19.375200px;}
.ws5{word-spacing:-19.122480px;}
.ws2{word-spacing:-18.954000px;}
.ws3{word-spacing:-18.785520px;}
.ws4{word-spacing:-18.701280px;}
.ws1{word-spacing:-18.448560px;}
.ws6{word-spacing:-18.195840px;}
.ws8d{word-spacing:-14.520000px;}
.ws18{word-spacing:-14.460000px;}
.ws8e{word-spacing:-14.400000px;}
.ws6c{word-spacing:-14.340000px;}
.ws84{word-spacing:-14.280000px;}
.ws87{word-spacing:-14.220000px;}
.ws17{word-spacing:-14.160000px;}
.ws90{word-spacing:-14.100000px;}
.ws53{word-spacing:-14.040000px;}
.ws86{word-spacing:-13.980000px;}
.ws85{word-spacing:-13.920000px;}
.wsb1{word-spacing:-13.800000px;}
.ws54{word-spacing:-13.680000px;}
.ws34{word-spacing:-13.560000px;}
.ws16{word-spacing:-13.320000px;}
.wsdd{word-spacing:-13.200000px;}
.ws33{word-spacing:-12.780000px;}
.wsef{word-spacing:-12.600000px;}
.ws8f{word-spacing:-12.300000px;}
.wsea{word-spacing:-12.000000px;}
.ws88{word-spacing:-11.904000px;}
.ws91{word-spacing:-11.700000px;}
.wsc3{word-spacing:-11.280000px;}
.wsd9{word-spacing:-11.136000px;}
.ws107{word-spacing:-10.836000px;}
.ws108{word-spacing:-10.710000px;}
.ws10b{word-spacing:-10.584000px;}
.ws10a{word-spacing:-10.290000px;}
.ws11a{word-spacing:-10.164000px;}
.wsc4{word-spacing:-9.936000px;}
.ws12{word-spacing:-9.487500px;}
.ws32{word-spacing:-9.450000px;}
.ws82{word-spacing:-9.412500px;}
.wse3{word-spacing:-9.337500px;}
.wsd8{word-spacing:-9.187500px;}
.wsc1{word-spacing:-9.180000px;}
.ws6b{word-spacing:-9.075000px;}
.wsc0{word-spacing:-9.000000px;}
.wsa9{word-spacing:-8.962500px;}
.ws106{word-spacing:-8.887500px;}
.ws10c{word-spacing:-8.652000px;}
.ws94{word-spacing:-8.212500px;}
.wsdb{word-spacing:-8.040000px;}
.ws52{word-spacing:-7.975440px;}
.ws109{word-spacing:-7.854000px;}
.wsee{word-spacing:-7.725000px;}
.wsc2{word-spacing:-7.415760px;}
.wse8{word-spacing:-6.926040px;}
.wse9{word-spacing:-6.716160px;}
.ws67{word-spacing:-6.300000px;}
.ws2c{word-spacing:-4.080000px;}
.ws59{word-spacing:-4.020000px;}
.ws99{word-spacing:-3.960000px;}
.ws50{word-spacing:-3.900000px;}
.ws95{word-spacing:-3.840000px;}
.ws3e{word-spacing:-3.780000px;}
.ws60{word-spacing:-3.720000px;}
.ws6e{word-spacing:-3.660000px;}
.ws6d{word-spacing:-3.600000px;}
.ws4a{word-spacing:-3.540000px;}
.ws4f{word-spacing:-3.480000px;}
.ws76{word-spacing:-3.420000px;}
.ws101{word-spacing:-3.360000px;}
.wsb9{word-spacing:-3.300000px;}
.ws66{word-spacing:-3.240000px;}
.wsa3{word-spacing:-3.120000px;}
.ws121{word-spacing:-3.000000px;}
.ws7f{word-spacing:-2.940000px;}
.ws4c{word-spacing:-2.880000px;}
.ws20{word-spacing:-2.820000px;}
.ws4d{word-spacing:-2.760000px;}
.wsaa{word-spacing:-2.640000px;}
.ws4e{word-spacing:-2.580000px;}
.ws55{word-spacing:-2.520000px;}
.wsb3{word-spacing:-2.460000px;}
.wsaf{word-spacing:-2.400000px;}
.ws24{word-spacing:-2.280000px;}
.wsff{word-spacing:-2.220000px;}
.wsf9{word-spacing:-2.160000px;}
.ws6f{word-spacing:-2.100000px;}
.wse4{word-spacing:-2.040000px;}
.ws4b{word-spacing:-1.980000px;}
.ws81{word-spacing:-1.920000px;}
.ws92{word-spacing:-1.860000px;}
.ws113{word-spacing:-1.848000px;}
.ws112{word-spacing:-1.806000px;}
.ws2d{word-spacing:-1.800000px;}
.wsa8{word-spacing:-1.776000px;}
.ws110{word-spacing:-1.764000px;}
.ws19{word-spacing:-1.740000px;}
.ws114{word-spacing:-1.722000px;}
.ws2e{word-spacing:-1.680000px;}
.ws10e{word-spacing:-1.638000px;}
.ws6a{word-spacing:-1.632000px;}
.ws31{word-spacing:-1.620000px;}
.ws14{word-spacing:-1.584000px;}
.ws5a{word-spacing:-1.560000px;}
.wse2{word-spacing:-1.536000px;}
.ws11b{word-spacing:-1.512000px;}
.ws46{word-spacing:-1.500000px;}
.wsbe{word-spacing:-1.488000px;}
.ws115{word-spacing:-1.470000px;}
.ws79{word-spacing:-1.440000px;}
.wsbf{word-spacing:-1.392000px;}
.ws11d{word-spacing:-1.386000px;}
.ws1c{word-spacing:-1.380000px;}
.ws7b{word-spacing:-1.320000px;}
.ws10f{word-spacing:-1.302000px;}
.ws2b{word-spacing:-1.260000px;}
.wsec{word-spacing:-1.200000px;}
.ws11c{word-spacing:-1.134000px;}
.ws69{word-spacing:-1.104000px;}
.wsc7{word-spacing:-1.080000px;}
.ws2f{word-spacing:-1.020000px;}
.ws111{word-spacing:-0.966000px;}
.ws29{word-spacing:-0.960000px;}
.ws93{word-spacing:-0.900000px;}
.ws47{word-spacing:-0.840000px;}
.ws35{word-spacing:-0.780000px;}
.ws1e{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.673920px;}
.wsed{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.600000px;}
.ws38{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.505440px;}
.ws22{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.421200px;}
.ws5d{word-spacing:-0.420000px;}
.ws97{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.337680px;}
.ws1a{word-spacing:-0.315000px;}
.ws13{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.241200px;}
.ws57{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.wsdf{word-spacing:-0.180000px;}
.wsb{word-spacing:-0.168480px;}
.ws5c{word-spacing:-0.120000px;}
.ws5b{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.060000px;}
.ws75{word-spacing:0.120000px;}
.wsf{word-spacing:0.168480px;}
.wsf5{word-spacing:0.180000px;}
.wsd{word-spacing:0.252720px;}
.ws61{word-spacing:0.300000px;}
.wse{word-spacing:0.336960px;}
.ws28{word-spacing:0.360000px;}
.wscc{word-spacing:0.420000px;}
.ws96{word-spacing:0.480000px;}
.ws26{word-spacing:0.600000px;}
.wsfe{word-spacing:0.660000px;}
.ws11e{word-spacing:0.672000px;}
.ws3f{word-spacing:0.720000px;}
.wsa0{word-spacing:0.780000px;}
.ws1f{word-spacing:0.840000px;}
.ws21{word-spacing:0.900000px;}
.wsc8{word-spacing:0.960000px;}
.wsa4{word-spacing:1.020000px;}
.wsd1{word-spacing:1.080000px;}
.ws116{word-spacing:1.092000px;}
.ws9e{word-spacing:1.140000px;}
.wsb6{word-spacing:1.200000px;}
.ws3d{word-spacing:1.260000px;}
.ws9f{word-spacing:1.320000px;}
.ws25{word-spacing:1.380000px;}
.ws44{word-spacing:1.440000px;}
.ws27{word-spacing:1.500000px;}
.ws117{word-spacing:1.512000px;}
.ws80{word-spacing:1.560000px;}
.ws122{word-spacing:1.620000px;}
.ws10d{word-spacing:1.638000px;}
.ws40{word-spacing:1.680000px;}
.wsd2{word-spacing:1.740000px;}
.ws48{word-spacing:1.800000px;}
.ws118{word-spacing:1.806000px;}
.ws89{word-spacing:1.920000px;}
.ws7d{word-spacing:1.980000px;}
.wse1{word-spacing:1.993860px;}
.ws72{word-spacing:2.040000px;}
.ws5f{word-spacing:2.160000px;}
.ws41{word-spacing:2.220000px;}
.ws8b{word-spacing:2.280000px;}
.wsa5{word-spacing:2.400000px;}
.wsae{word-spacing:2.580000px;}
.ws3c{word-spacing:2.820000px;}
.wse5{word-spacing:2.880000px;}
.ws62{word-spacing:2.940000px;}
.ws120{word-spacing:3.000000px;}
.ws3b{word-spacing:3.060000px;}
.wsb2{word-spacing:3.120000px;}
.wsb4{word-spacing:3.180000px;}
.wsa7{word-spacing:3.240000px;}
.wsbd{word-spacing:3.300000px;}
.ws98{word-spacing:3.360000px;}
.ws2a{word-spacing:3.420000px;}
.ws3a{word-spacing:3.540000px;}
.wsce{word-spacing:3.600000px;}
.wsac{word-spacing:3.660000px;}
.ws7c{word-spacing:3.720000px;}
.ws74{word-spacing:3.900000px;}
.wsad{word-spacing:3.960000px;}
.wsfa{word-spacing:4.020000px;}
.wscf{word-spacing:4.080000px;}
.wse6{word-spacing:4.200000px;}
.wscb{word-spacing:4.260000px;}
.ws9b{word-spacing:4.320000px;}
.wsa6{word-spacing:4.380000px;}
.wsa2{word-spacing:4.440000px;}
.ws104{word-spacing:4.500000px;}
.wse0{word-spacing:4.560000px;}
.ws65{word-spacing:4.680000px;}
.ws37{word-spacing:4.740000px;}
.ws70{word-spacing:4.800000px;}
.ws58{word-spacing:4.860000px;}
.ws73{word-spacing:4.920000px;}
.ws23{word-spacing:4.980000px;}
.ws42{word-spacing:5.100000px;}
.ws77{word-spacing:5.220000px;}
.wsf3{word-spacing:5.340000px;}
.wsd3{word-spacing:5.400000px;}
.wsbc{word-spacing:5.460000px;}
.ws105{word-spacing:5.580000px;}
.ws8a{word-spacing:5.640000px;}
.wsb8{word-spacing:5.760000px;}
.ws64{word-spacing:5.820000px;}
.wsc5{word-spacing:5.940000px;}
.wsd4{word-spacing:6.000000px;}
.ws56{word-spacing:6.120000px;}
.ws78{word-spacing:6.300000px;}
.wsfc{word-spacing:6.420000px;}
.wsc9{word-spacing:6.480000px;}
.wsf4{word-spacing:6.660000px;}
.ws39{word-spacing:6.780000px;}
.wsb7{word-spacing:6.840000px;}
.wsde{word-spacing:7.080000px;}
.ws9a{word-spacing:7.320000px;}
.ws63{word-spacing:7.620000px;}
.wsb5{word-spacing:7.800000px;}
.wsf7{word-spacing:7.920000px;}
.wsfb{word-spacing:8.280000px;}
.ws102{word-spacing:8.340000px;}
.ws45{word-spacing:8.400000px;}
.ws68{word-spacing:8.580000px;}
.ws100{word-spacing:8.760000px;}
.ws36{word-spacing:8.820000px;}
.wsd7{word-spacing:8.880000px;}
.ws11f{word-spacing:9.420000px;}
.wsd5{word-spacing:9.600000px;}
.wsfd{word-spacing:9.660000px;}
.wsba{word-spacing:9.720000px;}
.wseb{word-spacing:9.840000px;}
.wsd6{word-spacing:10.740000px;}
.ws103{word-spacing:11.220000px;}
.wsa1{word-spacing:12.540000px;}
.wsbb{word-spacing:12.840000px;}
.wsc6{word-spacing:12.900000px;}
.ws5e{word-spacing:15.540000px;}
.ws9c{word-spacing:16.080000px;}
.wsab{word-spacing:16.140000px;}
.ws49{word-spacing:16.560000px;}
.wscd{word-spacing:17.100000px;}
.ws71{word-spacing:22.920000px;}
.wsf8{word-spacing:24.840000px;}
.ws43{word-spacing:106.596000px;}
.ws1b{word-spacing:108.720000px;}
.ws1d{word-spacing:110.160000px;}
.wsca{word-spacing:138.411000px;}
.wsdc{word-spacing:169.590000px;}
.wsf2{word-spacing:405.408000px;}
.wsf0{word-spacing:407.628000px;}
.wsf1{word-spacing:411.180000px;}
.ws83{word-spacing:467.352000px;}
.ws119{word-spacing:1480.206300px;}
.wse7{word-spacing:1480.881300px;}
.wsb0{word-spacing:1482.343800px;}
.ws8c{word-spacing:1483.131300px;}
.wsda{word-spacing:1483.356300px;}
.wsd0{word-spacing:1483.468800px;}
.ws7a{word-spacing:1484.481300px;}
.ws9d{word-spacing:1484.612550px;}
.wsf6{word-spacing:1485.156300px;}
.ws51{word-spacing:1485.718800px;}
.ws15{word-spacing:1487.293800px;}
._2{margin-left:-2041.893600px;}
._14{margin-left:-2040.600000px;}
._c{margin-left:-43.980000px;}
._15{margin-left:-30.648048px;}
._f{margin-left:-12.642240px;}
._16{margin-left:-8.259432px;}
._e{margin-left:-6.815832px;}
._5{margin-left:-5.158296px;}
._6{margin-left:-4.026864px;}
._3{margin-left:-2.341704px;}
._0{margin-left:-1.172232px;}
._1{width:1.566864px;}
._7{width:2.839704px;}
._8{width:3.894000px;}
._13{width:5.160000px;}
._19{width:6.517200px;}
._a{width:7.718400px;}
._1a{width:8.852400px;}
._1b{width:11.898864px;}
._b{width:15.177600px;}
._d{width:38.040000px;}
._10{width:84.505368px;}
._1c{width:104.429832px;}
._9{width:106.596000px;}
._4{width:110.160000px;}
._18{width:119.446272px;}
._1d{width:127.772232px;}
._12{width:129.745368px;}
._27{width:186.084024px;}
._21{width:187.980000px;}
._23{width:189.533136px;}
._24{width:190.806864px;}
._26{width:194.934840px;}
._22{width:215.172000px;}
._20{width:216.480000px;}
._11{width:217.952232px;}
._1e{width:236.880000px;}
._25{width:242.753136px;}
._1f{width:254.580000px;}
._17{width:548.866272px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:34.980000px;}
.fsb{font-size:37.500000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:45.360000px;}
.fsc{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:3.060000px;}
.y81{bottom:45.779550px;}
.y23{bottom:49.680000px;}
.yf7{bottom:52.523550px;}
.y22{bottom:55.080000px;}
.yea{bottom:63.758550px;}
.y7e{bottom:63.761400px;}
.ye1{bottom:63.764550px;}
.yf4{bottom:63.767400px;}
.y80{bottom:63.776400px;}
.y6b{bottom:63.779550px;}
.yf6{bottom:67.151550px;}
.y102{bottom:77.267550px;}
.ye9{bottom:78.386550px;}
.y7d{bottom:78.389400px;}
.ye0{bottom:78.392550px;}
.yf3{bottom:78.395400px;}
.y7f{bottom:78.404400px;}
.yd9{bottom:81.779250px;}
.y6a{bottom:81.779550px;}
.ydb{bottom:81.847350px;}
.y149{bottom:85.918050px;}
.y101{bottom:91.895550px;}
.ye8{bottom:93.014550px;}
.y7c{bottom:93.017400px;}
.ydf{bottom:93.020550px;}
.yf2{bottom:93.023400px;}
.yda{bottom:96.475350px;}
.y4{bottom:97.125005px;}
.yd8{bottom:99.779250px;}
.y69{bottom:99.779550px;}
.y148{bottom:100.544550px;}
.y100{bottom:106.523550px;}
.ye7{bottom:107.642550px;}
.y7b{bottom:107.645400px;}
.yde{bottom:107.648550px;}
.yf1{bottom:114.023400px;}
.y147{bottom:115.171050px;}
.y68{bottom:117.779550px;}
.yff{bottom:121.151550px;}
.ye6{bottom:122.270550px;}
.y7a{bottom:122.273400px;}
.ydd{bottom:122.276550px;}
.yf0{bottom:128.651400px;}
.y146{bottom:129.797550px;}
.yd7{bottom:135.779250px;}
.y67{bottom:135.779550px;}
.ye5{bottom:136.898550px;}
.y79{bottom:136.901400px;}
.ydc{bottom:136.904550px;}
.y20{bottom:139.264499px;}
.y145{bottom:144.424050px;}
.yef{bottom:149.651400px;}
.ye4{bottom:151.526550px;}
.y78{bottom:151.529400px;}
.y66{bottom:153.779550px;}
.y144{bottom:159.050550px;}
.yee{bottom:164.279400px;}
.ye3{bottom:166.154550px;}
.yd6{bottom:171.779250px;}
.y73{bottom:171.779550px;}
.y77{bottom:172.529400px;}
.y143{bottom:173.677050px;}
.ya7{bottom:175.151550px;}
.y44{bottom:176.040000px;}
.yed{bottom:178.907400px;}
.y76{bottom:187.157400px;}
.y142{bottom:188.303550px;}
.yd5{bottom:189.779250px;}
.y65{bottom:189.779550px;}
.y43{bottom:191.160000px;}
.yec{bottom:193.535400px;}
.y17{bottom:196.933500px;}
.y141{bottom:202.930050px;}
.yd4{bottom:207.779250px;}
.y72{bottom:207.779550px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y140{bottom:217.556550px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yd3{bottom:225.779250px;}
.y71{bottom:225.779550px;}
.y111{bottom:229.151550px;}
.y13f{bottom:232.183050px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.ya5{bottom:238.330650px;}
.yd2{bottom:243.779250px;}
.y64{bottom:243.779550px;}
.y13e{bottom:246.809550px;}
.ya4{bottom:256.330650px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y13d{bottom:261.436050px;}
.yd1{bottom:261.779250px;}
.y63{bottom:261.779550px;}
.ye2{bottom:265.151550px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.ya3{bottom:274.330650px;}
.y13c{bottom:276.062550px;}
.y62{bottom:279.779550px;}
.yfe{bottom:283.151550px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y13b{bottom:290.689050px;}
.ya2{bottom:292.195650px;}
.ya6{bottom:292.330650px;}
.y70{bottom:297.779550px;}
.y110{bottom:298.770600px;}
.y13a{bottom:305.315550px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y61{bottom:315.779550px;}
.y10f{bottom:316.770600px;}
.yd0{bottom:319.151250px;}
.ya0{bottom:319.645650px;}
.y139{bottom:319.942050px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ycf{bottom:333.779250px;}
.y60{bottom:333.779550px;}
.y138{bottom:334.568550px;}
.y9f{bottom:337.645650px;}
.y10e{bottom:344.220600px;}
.ye{bottom:348.133500px;}
.y137{bottom:349.195050px;}
.y41{bottom:351.720000px;}
.y5f{bottom:351.779550px;}
.y9e{bottom:355.645650px;}
.y10d{bottom:362.220600px;}
.y136{bottom:363.821550px;}
.y5e{bottom:369.779550px;}
.y40{bottom:371.866320px;}
.y9d{bottom:373.645650px;}
.y135{bottom:378.448050px;}
.ycb{bottom:382.858350px;}
.yd{bottom:386.785499px;}
.y5d{bottom:387.779550px;}
.y10c{bottom:389.670600px;}
.y9c{bottom:391.645650px;}
.y134{bottom:393.074550px;}
.y3f{bottom:397.433160px;}
.yca{bottom:400.858350px;}
.y5c{bottom:405.779550px;}
.y10b{bottom:407.670600px;}
.y133{bottom:407.701050px;}
.yc{bottom:408.044999px;}
.y9b{bottom:409.510650px;}
.ya1{bottom:409.645650px;}
.yc9{bottom:418.858350px;}
.y132{bottom:422.327550px;}
.y3e{bottom:423.000000px;}
.y5b{bottom:423.779550px;}
.y10a{bottom:435.120600px;}
.yc8{bottom:436.858350px;}
.y131{bottom:436.954050px;}
.y99{bottom:436.960650px;}
.y5a{bottom:441.779550px;}
.y3d{bottom:447.480000px;}
.y130{bottom:451.580550px;}
.y109{bottom:453.120600px;}
.yc7{bottom:454.858350px;}
.y98{bottom:454.960650px;}
.y59{bottom:459.779550px;}
.y12f{bottom:466.207050px;}
.y3c{bottom:468.893160px;}
.yc6{bottom:472.858350px;}
.y97{bottom:472.960650px;}
.y58{bottom:477.779550px;}
.y12e{bottom:480.833550px;}
.yb{bottom:484.864502px;}
.y108{bottom:487.215600px;}
.yc5{bottom:490.858350px;}
.y96{bottom:490.960650px;}
.y3b{bottom:494.460000px;}
.y12d{bottom:495.460050px;}
.y46{bottom:495.779550px;}
.ya{bottom:502.864502px;}
.yc4{bottom:508.858350px;}
.y95{bottom:508.960650px;}
.y12c{bottom:510.086550px;}
.y57{bottom:513.779550px;}
.y3a{bottom:518.940000px;}
.y9{bottom:520.864502px;}
.y12b{bottom:524.713050px;}
.yc2{bottom:526.856100px;}
.yc3{bottom:526.858350px;}
.y107{bottom:527.160600px;}
.y56{bottom:531.779550px;}
.yfd{bottom:535.094550px;}
.y8{bottom:538.864499px;}
.y12a{bottom:539.339550px;}
.y39{bottom:540.180000px;}
.yc1{bottom:544.856100px;}
.yce{bottom:544.858350px;}
.y94{bottom:544.960650px;}
.y55{bottom:549.779550px;}
.yfc{bottom:553.094550px;}
.y129{bottom:553.966050px;}
.y7{bottom:556.864499px;}
.y105{bottom:560.460600px;}
.yc0{bottom:562.856100px;}
.ycd{bottom:562.858350px;}
.y93{bottom:562.960650px;}
.y38{bottom:564.679440px;}
.y54{bottom:567.779550px;}
.y128{bottom:568.592550px;}
.yf5{bottom:571.151550px;}
.y104{bottom:578.460600px;}
.ybe{bottom:580.721100px;}
.y92{bottom:580.960650px;}
.y127{bottom:583.219050px;}
.y37{bottom:584.832960px;}
.yeb{bottom:585.777300px;}
.y53{bottom:585.779550px;}
.y106{bottom:596.460600px;}
.y126{bottom:597.845550px;}
.ybd{bottom:598.721100px;}
.ybf{bottom:598.856100px;}
.ycc{bottom:598.858350px;}
.y52{bottom:603.779550px;}
.y36{bottom:604.986480px;}
.y125{bottom:612.472050px;}
.y103{bottom:614.460600px;}
.y91{bottom:616.960650px;}
.y51{bottom:621.779550px;}
.y15e{bottom:625.059600px;}
.y35{bottom:625.140000px;}
.yb9{bottom:626.171100px;}
.y124{bottom:627.098550px;}
.y90{bottom:634.960650px;}
.y15d{bottom:639.686100px;}
.y75{bottom:639.779550px;}
.y123{bottom:641.725050px;}
.yb8{bottom:644.171100px;}
.y6{bottom:645.510000px;}
.y34{bottom:646.384680px;}
.y8f{bottom:652.960650px;}
.y15c{bottom:654.312600px;}
.y122{bottom:656.351550px;}
.y6f{bottom:657.779550px;}
.yb7{bottom:662.171100px;}
.y5{bottom:666.771000px;}
.y15b{bottom:668.939100px;}
.y8e{bottom:670.960650px;}
.y121{bottom:670.978050px;}
.y33{bottom:672.120000px;}
.y50{bottom:675.779550px;}
.yb6{bottom:680.171100px;}
.y15a{bottom:683.565600px;}
.y120{bottom:685.604550px;}
.y8d{bottom:688.960650px;}
.y4f{bottom:693.779550px;}
.y32{bottom:696.960000px;}
.yb5{bottom:698.171100px;}
.y159{bottom:698.192100px;}
.y11f{bottom:700.231050px;}
.y8c{bottom:706.960650px;}
.y4e{bottom:711.779550px;}
.yfb{bottom:711.780600px;}
.y158{bottom:712.818600px;}
.y11e{bottom:714.857550px;}
.yb4{bottom:716.171100px;}
.y31{bottom:719.640000px;}
.y8b{bottom:724.825650px;}
.y9a{bottom:724.960650px;}
.y157{bottom:727.445100px;}
.y11d{bottom:729.484050px;}
.y4d{bottom:729.779550px;}
.yfa{bottom:729.780600px;}
.yb3{bottom:734.171100px;}
.y156{bottom:742.071600px;}
.y11c{bottom:744.110550px;}
.y30{bottom:744.480000px;}
.y4c{bottom:747.779550px;}
.yf9{bottom:749.010600px;}
.yb2{bottom:752.171100px;}
.y8a{bottom:752.275650px;}
.y3{bottom:752.599495px;}
.y155{bottom:756.698100px;}
.y11b{bottom:758.737050px;}
.y2f{bottom:761.580000px;}
.y4b{bottom:765.779550px;}
.yb1{bottom:770.171100px;}
.y89{bottom:770.275650px;}
.y154{bottom:771.324600px;}
.y11a{bottom:773.363550px;}
.yf8{bottom:776.460600px;}
.y4a{bottom:783.779550px;}
.y153{bottom:785.951100px;}
.y119{bottom:787.990050px;}
.yaf{bottom:788.169000px;}
.yb0{bottom:788.171100px;}
.y152{bottom:800.577600px;}
.y6e{bottom:801.779550px;}
.y118{bottom:802.616550px;}
.yae{bottom:806.169000px;}
.ybc{bottom:806.171100px;}
.y88{bottom:806.275650px;}
.y151{bottom:815.204100px;}
.y117{bottom:817.243050px;}
.y49{bottom:819.779550px;}
.y2e{bottom:820.440000px;}
.yad{bottom:824.169000px;}
.ybb{bottom:824.171100px;}
.y87{bottom:824.275650px;}
.y150{bottom:829.830600px;}
.y116{bottom:831.869550px;}
.y74{bottom:837.779550px;}
.yab{bottom:842.034000px;}
.y2d{bottom:843.300000px;}
.y14f{bottom:844.457100px;}
.y115{bottom:846.496050px;}
.y6d{bottom:855.779550px;}
.y14e{bottom:859.083600px;}
.yaa{bottom:860.034000px;}
.y84{bottom:860.140650px;}
.yac{bottom:860.169000px;}
.yba{bottom:860.171100px;}
.y86{bottom:860.275650px;}
.y114{bottom:861.122550px;}
.y2c{bottom:867.780000px;}
.y14d{bottom:873.710100px;}
.y48{bottom:873.779550px;}
.y113{bottom:875.749050px;}
.y83{bottom:878.140650px;}
.y85{bottom:878.275650px;}
.y2{bottom:879.369000px;}
.ya9{bottom:887.484000px;}
.y14c{bottom:888.336600px;}
.y112{bottom:890.375550px;}
.y2b{bottom:890.640000px;}
.y6c{bottom:891.779550px;}
.y14b{bottom:902.963100px;}
.ya8{bottom:905.484000px;}
.y82{bottom:905.590650px;}
.y47{bottom:909.779550px;}
.y14a{bottom:917.589600px;}
.y2a{bottom:921.960000px;}
.y29{bottom:945.892800px;}
.y28{bottom:964.254060px;}
.y1{bottom:966.726000px;}
.y45{bottom:973.955850px;}
.y27{bottom:982.615320px;}
.y42{bottom:1000.080000px;}
.y26{bottom:1000.797300px;}
.y25{bottom:1018.800000px;}
.y21{bottom:1249.560000px;}
.hb{height:15.840000px;}
.h22{height:30.030000px;}
.h17{height:30.337500px;}
.h7{height:32.130000px;}
.hc{height:32.976562px;}
.h23{height:33.978000px;}
.h9{height:36.696240px;}
.h18{height:38.832000px;}
.hd{height:40.647305px;}
.h19{height:41.760000px;}
.h1d{height:42.900000px;}
.h1f{height:43.620000px;}
.h1b{height:45.045000px;}
.h10{height:45.054844px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.ha{height:48.345840px;}
.h1c{height:48.540000px;}
.h20{height:48.780000px;}
.h12{height:48.972656px;}
.h1e{height:49.080000px;}
.h1a{height:50.112000px;}
.h2{height:55.080000px;}
.h11{height:57.298008px;}
.h13{height:57.585938px;}
.he{height:58.367461px;}
.hf{height:73.828125px;}
.h5{height:78.030000px;}
.h21{height:84.780000px;}
.h4{height:119.055004px;}
.h14{height:203.220000px;}
.h15{height:1020.472500px;}
.h16{height:1020.750000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:182.880000px;}
.w4{width:232.200000px;}
.w2{width:637.794021px;}
.w7{width:701.250000px;}
.w6{width:701.575500px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x10{left:71.352450px;}
.x1d{left:76.916550px;}
.xb{left:80.783550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:127.559100px;}
.xc{left:135.134100px;}
.x17{left:140.696100px;}
.xd{left:144.569100px;}
.x5{left:167.580000px;}
.x2b{left:170.078700px;}
.x26{left:172.892700px;}
.x2e{left:177.648000px;}
.x28{left:180.482700px;}
.x2c{left:187.088700px;}
.x27{left:189.917700px;}
.x11{left:196.109550px;}
.x4{left:203.484001px;}
.x1b{left:219.401550px;}
.x35{left:239.556450px;}
.x36{left:240.865650px;}
.x31{left:259.221750px;}
.x6{left:263.880000px;}
.x16{left:269.681100px;}
.x1e{left:282.678300px;}
.x2d{left:303.669000px;}
.x20{left:310.262400px;}
.xe{left:323.363100px;}
.x14{left:339.634500px;}
.xf{left:344.166750px;}
.x32{left:356.916750px;}
.x19{left:365.764800px;}
.x2f{left:371.336250px;}
.x1a{left:377.923350px;}
.x30{left:380.771250px;}
.x29{left:388.601550px;}
.x2a{left:398.036550px;}
.x1c{left:402.236550px;}
.x21{left:416.095950px;}
.x12{left:451.841250px;}
.x3{left:454.959000px;}
.x18{left:460.916100px;}
.x1f{left:465.512850px;}
.x22{left:483.523200px;}
.x13{left:495.925800px;}
.x15{left:515.636700px;}
.x23{left:531.096150px;}
.x24{left:532.304400px;}
.x25{left:549.088650px;}
.x33{left:552.426750px;}
.x34{left:625.315800px;}
.x8{left:628.188750px;}
.x7{left:647.100000px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-4.373333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:32.213333pt;}
.ls42{letter-spacing:-5.013333pt;}
.ls3a{letter-spacing:-4.000000pt;}
.ls2a{letter-spacing:-3.306667pt;}
.ls5c{letter-spacing:-2.090667pt;}
.ls4f{letter-spacing:-1.941333pt;}
.ls4b{letter-spacing:-1.920000pt;}
.ls59{letter-spacing:-1.829333pt;}
.ls43{letter-spacing:-1.772320pt;}
.ls30{letter-spacing:-1.760000pt;}
.ls54{letter-spacing:-1.530667pt;}
.ls58{letter-spacing:-1.456000pt;}
.ls2f{letter-spacing:-1.226667pt;}
.ls49{letter-spacing:-1.119360pt;}
.ls61{letter-spacing:-1.082667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls48{letter-spacing:-0.932800pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls5b{letter-spacing:-0.821333pt;}
.ls1f{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.748800pt;}
.ls4a{letter-spacing:-0.733333pt;}
.ls5{letter-spacing:-0.524160pt;}
.ls3b{letter-spacing:-0.497493pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.300000pt;}
.ls9{letter-spacing:-0.299520pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls10{letter-spacing:-0.200000pt;}
.ls6{letter-spacing:-0.149760pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.074880pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.074880pt;}
.ls29{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.149760pt;}
.ls21{letter-spacing:0.155200pt;}
.ls24{letter-spacing:0.155733pt;}
.ls40{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.214400pt;}
.ls16{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.273600pt;}
.ls14{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.299520pt;}
.ls4d{letter-spacing:0.300000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.366667pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls39{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls4c{letter-spacing:0.433333pt;}
.ls25{letter-spacing:0.466667pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.522667pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls3f{letter-spacing:0.566667pt;}
.ls12{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.600000pt;}
.ls26{letter-spacing:0.633333pt;}
.ls5a{letter-spacing:0.634667pt;}
.ls28{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.672000pt;}
.ls38{letter-spacing:0.682667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls46{letter-spacing:0.700000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.766667pt;}
.ls37{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.810667pt;}
.ls57{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.833333pt;}
.lsd{letter-spacing:0.853333pt;}
.ls5f{letter-spacing:0.858667pt;}
.ls22{letter-spacing:0.896000pt;}
.ls3e{letter-spacing:0.933333pt;}
.ls23{letter-spacing:0.938667pt;}
.ls41{letter-spacing:0.966667pt;}
.ls50{letter-spacing:0.970667pt;}
.ls51{letter-spacing:1.008000pt;}
.ls33{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.033333pt;}
.ls56{letter-spacing:1.045333pt;}
.ls53{letter-spacing:1.082667pt;}
.ls4e{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.157333pt;}
.ls36{letter-spacing:1.266667pt;}
.ls47{letter-spacing:1.700000pt;}
.ls5e{letter-spacing:1.900000pt;}
.ls5d{letter-spacing:2.026667pt;}
.ls11{letter-spacing:3.333333pt;}
.lsf{letter-spacing:3.600000pt;}
.ls13{letter-spacing:5.120000pt;}
.ws7{word-spacing:-17.222400pt;}
.ws5{word-spacing:-16.997760pt;}
.ws2{word-spacing:-16.848000pt;}
.ws3{word-spacing:-16.698240pt;}
.ws4{word-spacing:-16.623360pt;}
.ws1{word-spacing:-16.398720pt;}
.ws6{word-spacing:-16.174080pt;}
.ws8d{word-spacing:-12.906667pt;}
.ws18{word-spacing:-12.853333pt;}
.ws8e{word-spacing:-12.800000pt;}
.ws6c{word-spacing:-12.746667pt;}
.ws84{word-spacing:-12.693333pt;}
.ws87{word-spacing:-12.640000pt;}
.ws17{word-spacing:-12.586667pt;}
.ws90{word-spacing:-12.533333pt;}
.ws53{word-spacing:-12.480000pt;}
.ws86{word-spacing:-12.426667pt;}
.ws85{word-spacing:-12.373333pt;}
.wsb1{word-spacing:-12.266667pt;}
.ws54{word-spacing:-12.160000pt;}
.ws34{word-spacing:-12.053333pt;}
.ws16{word-spacing:-11.840000pt;}
.wsdd{word-spacing:-11.733333pt;}
.ws33{word-spacing:-11.360000pt;}
.wsef{word-spacing:-11.200000pt;}
.ws8f{word-spacing:-10.933333pt;}
.wsea{word-spacing:-10.666667pt;}
.ws88{word-spacing:-10.581333pt;}
.ws91{word-spacing:-10.400000pt;}
.wsc3{word-spacing:-10.026667pt;}
.wsd9{word-spacing:-9.898667pt;}
.ws107{word-spacing:-9.632000pt;}
.ws108{word-spacing:-9.520000pt;}
.ws10b{word-spacing:-9.408000pt;}
.ws10a{word-spacing:-9.146667pt;}
.ws11a{word-spacing:-9.034667pt;}
.wsc4{word-spacing:-8.832000pt;}
.ws12{word-spacing:-8.433333pt;}
.ws32{word-spacing:-8.400000pt;}
.ws82{word-spacing:-8.366667pt;}
.wse3{word-spacing:-8.300000pt;}
.wsd8{word-spacing:-8.166667pt;}
.wsc1{word-spacing:-8.160000pt;}
.ws6b{word-spacing:-8.066667pt;}
.wsc0{word-spacing:-8.000000pt;}
.wsa9{word-spacing:-7.966667pt;}
.ws106{word-spacing:-7.900000pt;}
.ws10c{word-spacing:-7.690667pt;}
.ws94{word-spacing:-7.300000pt;}
.wsdb{word-spacing:-7.146667pt;}
.ws52{word-spacing:-7.089280pt;}
.ws109{word-spacing:-6.981333pt;}
.wsee{word-spacing:-6.866667pt;}
.wsc2{word-spacing:-6.591787pt;}
.wse8{word-spacing:-6.156480pt;}
.wse9{word-spacing:-5.969920pt;}
.ws67{word-spacing:-5.600000pt;}
.ws2c{word-spacing:-3.626667pt;}
.ws59{word-spacing:-3.573333pt;}
.ws99{word-spacing:-3.520000pt;}
.ws50{word-spacing:-3.466667pt;}
.ws95{word-spacing:-3.413333pt;}
.ws3e{word-spacing:-3.360000pt;}
.ws60{word-spacing:-3.306667pt;}
.ws6e{word-spacing:-3.253333pt;}
.ws6d{word-spacing:-3.200000pt;}
.ws4a{word-spacing:-3.146667pt;}
.ws4f{word-spacing:-3.093333pt;}
.ws76{word-spacing:-3.040000pt;}
.ws101{word-spacing:-2.986667pt;}
.wsb9{word-spacing:-2.933333pt;}
.ws66{word-spacing:-2.880000pt;}
.wsa3{word-spacing:-2.773333pt;}
.ws121{word-spacing:-2.666667pt;}
.ws7f{word-spacing:-2.613333pt;}
.ws4c{word-spacing:-2.560000pt;}
.ws20{word-spacing:-2.506667pt;}
.ws4d{word-spacing:-2.453333pt;}
.wsaa{word-spacing:-2.346667pt;}
.ws4e{word-spacing:-2.293333pt;}
.ws55{word-spacing:-2.240000pt;}
.wsb3{word-spacing:-2.186667pt;}
.wsaf{word-spacing:-2.133333pt;}
.ws24{word-spacing:-2.026667pt;}
.wsff{word-spacing:-1.973333pt;}
.wsf9{word-spacing:-1.920000pt;}
.ws6f{word-spacing:-1.866667pt;}
.wse4{word-spacing:-1.813333pt;}
.ws4b{word-spacing:-1.760000pt;}
.ws81{word-spacing:-1.706667pt;}
.ws92{word-spacing:-1.653333pt;}
.ws113{word-spacing:-1.642667pt;}
.ws112{word-spacing:-1.605333pt;}
.ws2d{word-spacing:-1.600000pt;}
.wsa8{word-spacing:-1.578667pt;}
.ws110{word-spacing:-1.568000pt;}
.ws19{word-spacing:-1.546667pt;}
.ws114{word-spacing:-1.530667pt;}
.ws2e{word-spacing:-1.493333pt;}
.ws10e{word-spacing:-1.456000pt;}
.ws6a{word-spacing:-1.450667pt;}
.ws31{word-spacing:-1.440000pt;}
.ws14{word-spacing:-1.408000pt;}
.ws5a{word-spacing:-1.386667pt;}
.wse2{word-spacing:-1.365333pt;}
.ws11b{word-spacing:-1.344000pt;}
.ws46{word-spacing:-1.333333pt;}
.wsbe{word-spacing:-1.322667pt;}
.ws115{word-spacing:-1.306667pt;}
.ws79{word-spacing:-1.280000pt;}
.wsbf{word-spacing:-1.237333pt;}
.ws11d{word-spacing:-1.232000pt;}
.ws1c{word-spacing:-1.226667pt;}
.ws7b{word-spacing:-1.173333pt;}
.ws10f{word-spacing:-1.157333pt;}
.ws2b{word-spacing:-1.120000pt;}
.wsec{word-spacing:-1.066667pt;}
.ws11c{word-spacing:-1.008000pt;}
.ws69{word-spacing:-0.981333pt;}
.wsc7{word-spacing:-0.960000pt;}
.ws2f{word-spacing:-0.906667pt;}
.ws111{word-spacing:-0.858667pt;}
.ws29{word-spacing:-0.853333pt;}
.ws93{word-spacing:-0.800000pt;}
.ws47{word-spacing:-0.746667pt;}
.ws35{word-spacing:-0.693333pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.599040pt;}
.wsed{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.533333pt;}
.ws38{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.449280pt;}
.ws22{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.374400pt;}
.ws5d{word-spacing:-0.373333pt;}
.ws97{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.300160pt;}
.ws1a{word-spacing:-0.280000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.214400pt;}
.ws57{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.wsdf{word-spacing:-0.160000pt;}
.wsb{word-spacing:-0.149760pt;}
.ws5c{word-spacing:-0.106667pt;}
.ws5b{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.053333pt;}
.ws75{word-spacing:0.106667pt;}
.wsf{word-spacing:0.149760pt;}
.wsf5{word-spacing:0.160000pt;}
.wsd{word-spacing:0.224640pt;}
.ws61{word-spacing:0.266667pt;}
.wse{word-spacing:0.299520pt;}
.ws28{word-spacing:0.320000pt;}
.wscc{word-spacing:0.373333pt;}
.ws96{word-spacing:0.426667pt;}
.ws26{word-spacing:0.533333pt;}
.wsfe{word-spacing:0.586667pt;}
.ws11e{word-spacing:0.597333pt;}
.ws3f{word-spacing:0.640000pt;}
.wsa0{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.746667pt;}
.ws21{word-spacing:0.800000pt;}
.wsc8{word-spacing:0.853333pt;}
.wsa4{word-spacing:0.906667pt;}
.wsd1{word-spacing:0.960000pt;}
.ws116{word-spacing:0.970667pt;}
.ws9e{word-spacing:1.013333pt;}
.wsb6{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.120000pt;}
.ws9f{word-spacing:1.173333pt;}
.ws25{word-spacing:1.226667pt;}
.ws44{word-spacing:1.280000pt;}
.ws27{word-spacing:1.333333pt;}
.ws117{word-spacing:1.344000pt;}
.ws80{word-spacing:1.386667pt;}
.ws122{word-spacing:1.440000pt;}
.ws10d{word-spacing:1.456000pt;}
.ws40{word-spacing:1.493333pt;}
.wsd2{word-spacing:1.546667pt;}
.ws48{word-spacing:1.600000pt;}
.ws118{word-spacing:1.605333pt;}
.ws89{word-spacing:1.706667pt;}
.ws7d{word-spacing:1.760000pt;}
.wse1{word-spacing:1.772320pt;}
.ws72{word-spacing:1.813333pt;}
.ws5f{word-spacing:1.920000pt;}
.ws41{word-spacing:1.973333pt;}
.ws8b{word-spacing:2.026667pt;}
.wsa5{word-spacing:2.133333pt;}
.wsae{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.506667pt;}
.wse5{word-spacing:2.560000pt;}
.ws62{word-spacing:2.613333pt;}
.ws120{word-spacing:2.666667pt;}
.ws3b{word-spacing:2.720000pt;}
.wsb2{word-spacing:2.773333pt;}
.wsb4{word-spacing:2.826667pt;}
.wsa7{word-spacing:2.880000pt;}
.wsbd{word-spacing:2.933333pt;}
.ws98{word-spacing:2.986667pt;}
.ws2a{word-spacing:3.040000pt;}
.ws3a{word-spacing:3.146667pt;}
.wsce{word-spacing:3.200000pt;}
.wsac{word-spacing:3.253333pt;}
.ws7c{word-spacing:3.306667pt;}
.ws74{word-spacing:3.466667pt;}
.wsad{word-spacing:3.520000pt;}
.wsfa{word-spacing:3.573333pt;}
.wscf{word-spacing:3.626667pt;}
.wse6{word-spacing:3.733333pt;}
.wscb{word-spacing:3.786667pt;}
.ws9b{word-spacing:3.840000pt;}
.wsa6{word-spacing:3.893333pt;}
.wsa2{word-spacing:3.946667pt;}
.ws104{word-spacing:4.000000pt;}
.wse0{word-spacing:4.053333pt;}
.ws65{word-spacing:4.160000pt;}
.ws37{word-spacing:4.213333pt;}
.ws70{word-spacing:4.266667pt;}
.ws58{word-spacing:4.320000pt;}
.ws73{word-spacing:4.373333pt;}
.ws23{word-spacing:4.426667pt;}
.ws42{word-spacing:4.533333pt;}
.ws77{word-spacing:4.640000pt;}
.wsf3{word-spacing:4.746667pt;}
.wsd3{word-spacing:4.800000pt;}
.wsbc{word-spacing:4.853333pt;}
.ws105{word-spacing:4.960000pt;}
.ws8a{word-spacing:5.013333pt;}
.wsb8{word-spacing:5.120000pt;}
.ws64{word-spacing:5.173333pt;}
.wsc5{word-spacing:5.280000pt;}
.wsd4{word-spacing:5.333333pt;}
.ws56{word-spacing:5.440000pt;}
.ws78{word-spacing:5.600000pt;}
.wsfc{word-spacing:5.706667pt;}
.wsc9{word-spacing:5.760000pt;}
.wsf4{word-spacing:5.920000pt;}
.ws39{word-spacing:6.026667pt;}
.wsb7{word-spacing:6.080000pt;}
.wsde{word-spacing:6.293333pt;}
.ws9a{word-spacing:6.506667pt;}
.ws63{word-spacing:6.773333pt;}
.wsb5{word-spacing:6.933333pt;}
.wsf7{word-spacing:7.040000pt;}
.wsfb{word-spacing:7.360000pt;}
.ws102{word-spacing:7.413333pt;}
.ws45{word-spacing:7.466667pt;}
.ws68{word-spacing:7.626667pt;}
.ws100{word-spacing:7.786667pt;}
.ws36{word-spacing:7.840000pt;}
.wsd7{word-spacing:7.893333pt;}
.ws11f{word-spacing:8.373333pt;}
.wsd5{word-spacing:8.533333pt;}
.wsfd{word-spacing:8.586667pt;}
.wsba{word-spacing:8.640000pt;}
.wseb{word-spacing:8.746667pt;}
.wsd6{word-spacing:9.546667pt;}
.ws103{word-spacing:9.973333pt;}
.wsa1{word-spacing:11.146667pt;}
.wsbb{word-spacing:11.413333pt;}
.wsc6{word-spacing:11.466667pt;}
.ws5e{word-spacing:13.813333pt;}
.ws9c{word-spacing:14.293333pt;}
.wsab{word-spacing:14.346667pt;}
.ws49{word-spacing:14.720000pt;}
.wscd{word-spacing:15.200000pt;}
.ws71{word-spacing:20.373333pt;}
.wsf8{word-spacing:22.080000pt;}
.ws43{word-spacing:94.752000pt;}
.ws1b{word-spacing:96.640000pt;}
.ws1d{word-spacing:97.920000pt;}
.wsca{word-spacing:123.032000pt;}
.wsdc{word-spacing:150.746667pt;}
.wsf2{word-spacing:360.362667pt;}
.wsf0{word-spacing:362.336000pt;}
.wsf1{word-spacing:365.493333pt;}
.ws83{word-spacing:415.424000pt;}
.ws119{word-spacing:1315.738933pt;}
.wse7{word-spacing:1316.338933pt;}
.wsb0{word-spacing:1317.638933pt;}
.ws8c{word-spacing:1318.338933pt;}
.wsda{word-spacing:1318.538933pt;}
.wsd0{word-spacing:1318.638933pt;}
.ws7a{word-spacing:1319.538933pt;}
.ws9d{word-spacing:1319.655600pt;}
.wsf6{word-spacing:1320.138933pt;}
.ws51{word-spacing:1320.638933pt;}
.ws15{word-spacing:1322.038933pt;}
._2{margin-left:-1815.016533pt;}
._14{margin-left:-1813.866667pt;}
._c{margin-left:-39.093333pt;}
._15{margin-left:-27.242709pt;}
._f{margin-left:-11.237547pt;}
._16{margin-left:-7.341717pt;}
._e{margin-left:-6.058517pt;}
._5{margin-left:-4.585152pt;}
._6{margin-left:-3.579435pt;}
._3{margin-left:-2.081515pt;}
._0{margin-left:-1.041984pt;}
._1{width:1.392768pt;}
._7{width:2.524181pt;}
._8{width:3.461333pt;}
._13{width:4.586667pt;}
._19{width:5.793067pt;}
._a{width:6.860800pt;}
._1a{width:7.868800pt;}
._1b{width:10.576768pt;}
._b{width:13.491200pt;}
._d{width:33.813333pt;}
._10{width:75.115883pt;}
._1c{width:92.826517pt;}
._9{width:94.752000pt;}
._4{width:97.920000pt;}
._18{width:106.174464pt;}
._1d{width:113.575317pt;}
._12{width:115.329216pt;}
._27{width:165.408021pt;}
._21{width:167.093333pt;}
._23{width:168.473899pt;}
._24{width:169.606101pt;}
._26{width:173.275413pt;}
._22{width:191.264000pt;}
._20{width:192.426667pt;}
._11{width:193.735317pt;}
._1e{width:210.560000pt;}
._25{width:215.780565pt;}
._1f{width:226.293333pt;}
._17{width:487.881131pt;}
.fsd{font-size:31.093333pt;}
.fsb{font-size:33.333333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:40.320000pt;}
.fsc{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.720000pt;}
.y81{bottom:40.692933pt;}
.y23{bottom:44.160000pt;}
.yf7{bottom:46.687600pt;}
.y22{bottom:48.960000pt;}
.yea{bottom:56.674267pt;}
.y7e{bottom:56.676800pt;}
.ye1{bottom:56.679600pt;}
.yf4{bottom:56.682133pt;}
.y80{bottom:56.690133pt;}
.y6b{bottom:56.692933pt;}
.yf6{bottom:59.690267pt;}
.y102{bottom:68.682267pt;}
.ye9{bottom:69.676933pt;}
.y7d{bottom:69.679467pt;}
.ye0{bottom:69.682267pt;}
.yf3{bottom:69.684800pt;}
.y7f{bottom:69.692800pt;}
.yd9{bottom:72.692667pt;}
.y6a{bottom:72.692933pt;}
.ydb{bottom:72.753200pt;}
.y149{bottom:76.371600pt;}
.y101{bottom:81.684933pt;}
.ye8{bottom:82.679600pt;}
.y7c{bottom:82.682133pt;}
.ydf{bottom:82.684933pt;}
.yf2{bottom:82.687467pt;}
.yda{bottom:85.755867pt;}
.y4{bottom:86.333337pt;}
.yd8{bottom:88.692667pt;}
.y69{bottom:88.692933pt;}
.y148{bottom:89.372933pt;}
.y100{bottom:94.687600pt;}
.ye7{bottom:95.682267pt;}
.y7b{bottom:95.684800pt;}
.yde{bottom:95.687600pt;}
.yf1{bottom:101.354133pt;}
.y147{bottom:102.374267pt;}
.y68{bottom:104.692933pt;}
.yff{bottom:107.690267pt;}
.ye6{bottom:108.684933pt;}
.y7a{bottom:108.687467pt;}
.ydd{bottom:108.690267pt;}
.yf0{bottom:114.356800pt;}
.y146{bottom:115.375600pt;}
.yd7{bottom:120.692667pt;}
.y67{bottom:120.692933pt;}
.ye5{bottom:121.687600pt;}
.y79{bottom:121.690133pt;}
.ydc{bottom:121.692933pt;}
.y20{bottom:123.790666pt;}
.y145{bottom:128.376933pt;}
.yef{bottom:133.023467pt;}
.ye4{bottom:134.690267pt;}
.y78{bottom:134.692800pt;}
.y66{bottom:136.692933pt;}
.y144{bottom:141.378267pt;}
.yee{bottom:146.026133pt;}
.ye3{bottom:147.692933pt;}
.yd6{bottom:152.692667pt;}
.y73{bottom:152.692933pt;}
.y77{bottom:153.359467pt;}
.y143{bottom:154.379600pt;}
.ya7{bottom:155.690267pt;}
.y44{bottom:156.480000pt;}
.yed{bottom:159.028800pt;}
.y76{bottom:166.362133pt;}
.y142{bottom:167.380933pt;}
.yd5{bottom:168.692667pt;}
.y65{bottom:168.692933pt;}
.y43{bottom:169.920000pt;}
.yec{bottom:172.031467pt;}
.y17{bottom:175.052000pt;}
.y141{bottom:180.382267pt;}
.yd4{bottom:184.692667pt;}
.y72{bottom:184.692933pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y140{bottom:193.383600pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yd3{bottom:200.692667pt;}
.y71{bottom:200.692933pt;}
.y111{bottom:203.690267pt;}
.y13f{bottom:206.384933pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.ya5{bottom:211.849467pt;}
.yd2{bottom:216.692667pt;}
.y64{bottom:216.692933pt;}
.y13e{bottom:219.386267pt;}
.ya4{bottom:227.849467pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y13d{bottom:232.387600pt;}
.yd1{bottom:232.692667pt;}
.y63{bottom:232.692933pt;}
.ye2{bottom:235.690267pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.ya3{bottom:243.849467pt;}
.y13c{bottom:245.388933pt;}
.y62{bottom:248.692933pt;}
.yfe{bottom:251.690267pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y13b{bottom:258.390267pt;}
.ya2{bottom:259.729467pt;}
.ya6{bottom:259.849467pt;}
.y70{bottom:264.692933pt;}
.y110{bottom:265.573867pt;}
.y13a{bottom:271.391600pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y61{bottom:280.692933pt;}
.y10f{bottom:281.573867pt;}
.yd0{bottom:283.690000pt;}
.ya0{bottom:284.129467pt;}
.y139{bottom:284.392933pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ycf{bottom:296.692667pt;}
.y60{bottom:296.692933pt;}
.y138{bottom:297.394267pt;}
.y9f{bottom:300.129467pt;}
.y10e{bottom:305.973867pt;}
.ye{bottom:309.452000pt;}
.y137{bottom:310.395600pt;}
.y41{bottom:312.640000pt;}
.y5f{bottom:312.692933pt;}
.y9e{bottom:316.129467pt;}
.y10d{bottom:321.973867pt;}
.y136{bottom:323.396933pt;}
.y5e{bottom:328.692933pt;}
.y40{bottom:330.547840pt;}
.y9d{bottom:332.129467pt;}
.y135{bottom:336.398267pt;}
.ycb{bottom:340.318533pt;}
.yd{bottom:343.809333pt;}
.y5d{bottom:344.692933pt;}
.y10c{bottom:346.373867pt;}
.y9c{bottom:348.129467pt;}
.y134{bottom:349.399600pt;}
.y3f{bottom:353.273920pt;}
.yca{bottom:356.318533pt;}
.y5c{bottom:360.692933pt;}
.y10b{bottom:362.373867pt;}
.y133{bottom:362.400933pt;}
.yc{bottom:362.706666pt;}
.y9b{bottom:364.009467pt;}
.ya1{bottom:364.129467pt;}
.yc9{bottom:372.318533pt;}
.y132{bottom:375.402267pt;}
.y3e{bottom:376.000000pt;}
.y5b{bottom:376.692933pt;}
.y10a{bottom:386.773867pt;}
.yc8{bottom:388.318533pt;}
.y131{bottom:388.403600pt;}
.y99{bottom:388.409467pt;}
.y5a{bottom:392.692933pt;}
.y3d{bottom:397.760000pt;}
.y130{bottom:401.404933pt;}
.y109{bottom:402.773867pt;}
.yc7{bottom:404.318533pt;}
.y98{bottom:404.409467pt;}
.y59{bottom:408.692933pt;}
.y12f{bottom:414.406267pt;}
.y3c{bottom:416.793920pt;}
.yc6{bottom:420.318533pt;}
.y97{bottom:420.409467pt;}
.y58{bottom:424.692933pt;}
.y12e{bottom:427.407600pt;}
.yb{bottom:430.990669pt;}
.y108{bottom:433.080533pt;}
.yc5{bottom:436.318533pt;}
.y96{bottom:436.409467pt;}
.y3b{bottom:439.520000pt;}
.y12d{bottom:440.408933pt;}
.y46{bottom:440.692933pt;}
.ya{bottom:446.990669pt;}
.yc4{bottom:452.318533pt;}
.y95{bottom:452.409467pt;}
.y12c{bottom:453.410267pt;}
.y57{bottom:456.692933pt;}
.y3a{bottom:461.280000pt;}
.y9{bottom:462.990669pt;}
.y12b{bottom:466.411600pt;}
.yc2{bottom:468.316533pt;}
.yc3{bottom:468.318533pt;}
.y107{bottom:468.587200pt;}
.y56{bottom:472.692933pt;}
.yfd{bottom:475.639600pt;}
.y8{bottom:478.990666pt;}
.y12a{bottom:479.412933pt;}
.y39{bottom:480.160000pt;}
.yc1{bottom:484.316533pt;}
.yce{bottom:484.318533pt;}
.y94{bottom:484.409467pt;}
.y55{bottom:488.692933pt;}
.yfc{bottom:491.639600pt;}
.y129{bottom:492.414267pt;}
.y7{bottom:494.990666pt;}
.y105{bottom:498.187200pt;}
.yc0{bottom:500.316533pt;}
.ycd{bottom:500.318533pt;}
.y93{bottom:500.409467pt;}
.y38{bottom:501.937280pt;}
.y54{bottom:504.692933pt;}
.y128{bottom:505.415600pt;}
.yf5{bottom:507.690267pt;}
.y104{bottom:514.187200pt;}
.ybe{bottom:516.196533pt;}
.y92{bottom:516.409467pt;}
.y127{bottom:518.416933pt;}
.y37{bottom:519.851520pt;}
.yeb{bottom:520.690933pt;}
.y53{bottom:520.692933pt;}
.y106{bottom:530.187200pt;}
.y126{bottom:531.418267pt;}
.ybd{bottom:532.196533pt;}
.ybf{bottom:532.316533pt;}
.ycc{bottom:532.318533pt;}
.y52{bottom:536.692933pt;}
.y36{bottom:537.765760pt;}
.y125{bottom:544.419600pt;}
.y103{bottom:546.187200pt;}
.y91{bottom:548.409467pt;}
.y51{bottom:552.692933pt;}
.y15e{bottom:555.608533pt;}
.y35{bottom:555.680000pt;}
.yb9{bottom:556.596533pt;}
.y124{bottom:557.420933pt;}
.y90{bottom:564.409467pt;}
.y15d{bottom:568.609867pt;}
.y75{bottom:568.692933pt;}
.y123{bottom:570.422267pt;}
.yb8{bottom:572.596533pt;}
.y6{bottom:573.786667pt;}
.y34{bottom:574.564160pt;}
.y8f{bottom:580.409467pt;}
.y15c{bottom:581.611200pt;}
.y122{bottom:583.423600pt;}
.y6f{bottom:584.692933pt;}
.yb7{bottom:588.596533pt;}
.y5{bottom:592.685334pt;}
.y15b{bottom:594.612533pt;}
.y8e{bottom:596.409467pt;}
.y121{bottom:596.424933pt;}
.y33{bottom:597.440000pt;}
.y50{bottom:600.692933pt;}
.yb6{bottom:604.596533pt;}
.y15a{bottom:607.613867pt;}
.y120{bottom:609.426267pt;}
.y8d{bottom:612.409467pt;}
.y4f{bottom:616.692933pt;}
.y32{bottom:619.520000pt;}
.yb5{bottom:620.596533pt;}
.y159{bottom:620.615200pt;}
.y11f{bottom:622.427600pt;}
.y8c{bottom:628.409467pt;}
.y4e{bottom:632.692933pt;}
.yfb{bottom:632.693867pt;}
.y158{bottom:633.616533pt;}
.y11e{bottom:635.428933pt;}
.yb4{bottom:636.596533pt;}
.y31{bottom:639.680000pt;}
.y8b{bottom:644.289467pt;}
.y9a{bottom:644.409467pt;}
.y157{bottom:646.617867pt;}
.y11d{bottom:648.430267pt;}
.y4d{bottom:648.692933pt;}
.yfa{bottom:648.693867pt;}
.yb3{bottom:652.596533pt;}
.y156{bottom:659.619200pt;}
.y11c{bottom:661.431600pt;}
.y30{bottom:661.760000pt;}
.y4c{bottom:664.692933pt;}
.yf9{bottom:665.787200pt;}
.yb2{bottom:668.596533pt;}
.y8a{bottom:668.689467pt;}
.y3{bottom:668.977329pt;}
.y155{bottom:672.620533pt;}
.y11b{bottom:674.432933pt;}
.y2f{bottom:676.960000pt;}
.y4b{bottom:680.692933pt;}
.yb1{bottom:684.596533pt;}
.y89{bottom:684.689467pt;}
.y154{bottom:685.621867pt;}
.y11a{bottom:687.434267pt;}
.yf8{bottom:690.187200pt;}
.y4a{bottom:696.692933pt;}
.y153{bottom:698.623200pt;}
.y119{bottom:700.435600pt;}
.yaf{bottom:700.594667pt;}
.yb0{bottom:700.596533pt;}
.y152{bottom:711.624533pt;}
.y6e{bottom:712.692933pt;}
.y118{bottom:713.436933pt;}
.yae{bottom:716.594667pt;}
.ybc{bottom:716.596533pt;}
.y88{bottom:716.689467pt;}
.y151{bottom:724.625867pt;}
.y117{bottom:726.438267pt;}
.y49{bottom:728.692933pt;}
.y2e{bottom:729.280000pt;}
.yad{bottom:732.594667pt;}
.ybb{bottom:732.596533pt;}
.y87{bottom:732.689467pt;}
.y150{bottom:737.627200pt;}
.y116{bottom:739.439600pt;}
.y74{bottom:744.692933pt;}
.yab{bottom:748.474667pt;}
.y2d{bottom:749.600000pt;}
.y14f{bottom:750.628533pt;}
.y115{bottom:752.440933pt;}
.y6d{bottom:760.692933pt;}
.y14e{bottom:763.629867pt;}
.yaa{bottom:764.474667pt;}
.y84{bottom:764.569467pt;}
.yac{bottom:764.594667pt;}
.yba{bottom:764.596533pt;}
.y86{bottom:764.689467pt;}
.y114{bottom:765.442267pt;}
.y2c{bottom:771.360000pt;}
.y14d{bottom:776.631200pt;}
.y48{bottom:776.692933pt;}
.y113{bottom:778.443600pt;}
.y83{bottom:780.569467pt;}
.y85{bottom:780.689467pt;}
.y2{bottom:781.661334pt;}
.ya9{bottom:788.874667pt;}
.y14c{bottom:789.632533pt;}
.y112{bottom:791.444933pt;}
.y2b{bottom:791.680000pt;}
.y6c{bottom:792.692933pt;}
.y14b{bottom:802.633867pt;}
.ya8{bottom:804.874667pt;}
.y82{bottom:804.969467pt;}
.y47{bottom:808.692933pt;}
.y14a{bottom:815.635200pt;}
.y2a{bottom:819.520000pt;}
.y29{bottom:840.793600pt;}
.y28{bottom:857.114720pt;}
.y1{bottom:859.312000pt;}
.y45{bottom:865.738533pt;}
.y27{bottom:873.435840pt;}
.y42{bottom:888.960000pt;}
.y26{bottom:889.597600pt;}
.y25{bottom:905.600000pt;}
.y21{bottom:1110.720000pt;}
.hb{height:14.080000pt;}
.h22{height:26.693333pt;}
.h17{height:26.966667pt;}
.h7{height:28.560000pt;}
.hc{height:29.312500pt;}
.h23{height:30.202667pt;}
.h9{height:32.618880pt;}
.h18{height:34.517333pt;}
.hd{height:36.130938pt;}
.h19{height:37.120000pt;}
.h1d{height:38.133333pt;}
.h1f{height:38.773333pt;}
.h1b{height:40.040000pt;}
.h10{height:40.048750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.ha{height:42.974080pt;}
.h1c{height:43.146667pt;}
.h20{height:43.360000pt;}
.h12{height:43.531250pt;}
.h1e{height:43.626667pt;}
.h1a{height:44.544000pt;}
.h2{height:48.960000pt;}
.h11{height:50.931562pt;}
.h13{height:51.187500pt;}
.he{height:51.882187pt;}
.hf{height:65.625000pt;}
.h5{height:69.360000pt;}
.h21{height:75.360000pt;}
.h4{height:105.826671pt;}
.h14{height:180.640000pt;}
.h15{height:907.086667pt;}
.h16{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:162.560000pt;}
.w4{width:206.400000pt;}
.w2{width:566.928019pt;}
.w7{width:623.333333pt;}
.w6{width:623.622667pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x10{left:63.424400pt;}
.x1d{left:68.370267pt;}
.xb{left:71.807600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:113.385867pt;}
.xc{left:120.119200pt;}
.x17{left:125.063200pt;}
.xd{left:128.505867pt;}
.x5{left:148.960000pt;}
.x2b{left:151.181067pt;}
.x26{left:153.682400pt;}
.x2e{left:157.909333pt;}
.x28{left:160.429067pt;}
.x2c{left:166.301067pt;}
.x27{left:168.815733pt;}
.x11{left:174.319600pt;}
.x4{left:180.874667pt;}
.x1b{left:195.023600pt;}
.x35{left:212.939067pt;}
.x36{left:214.102800pt;}
.x31{left:230.419333pt;}
.x6{left:234.560000pt;}
.x16{left:239.716533pt;}
.x1e{left:251.269600pt;}
.x2d{left:269.928000pt;}
.x20{left:275.788800pt;}
.xe{left:287.433867pt;}
.x14{left:301.897333pt;}
.xf{left:305.926000pt;}
.x32{left:317.259333pt;}
.x19{left:325.124267pt;}
.x2f{left:330.076667pt;}
.x1a{left:335.931867pt;}
.x30{left:338.463333pt;}
.x29{left:345.423600pt;}
.x2a{left:353.810267pt;}
.x1c{left:357.543600pt;}
.x21{left:369.863067pt;}
.x12{left:401.636667pt;}
.x3{left:404.408000pt;}
.x18{left:409.703200pt;}
.x1f{left:413.789200pt;}
.x22{left:429.798400pt;}
.x13{left:440.822933pt;}
.x15{left:458.343733pt;}
.x23{left:472.085467pt;}
.x24{left:473.159467pt;}
.x25{left:488.078800pt;}
.x33{left:491.046000pt;}
.x34{left:555.836267pt;}
.x8{left:558.390000pt;}
.x7{left:575.200000pt;}
}




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