
    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_0b0c401afa005715b1a59c94.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_d0e07efbe60dcf705d5b39d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_1c71a1c05ddc086f6e5b87a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_c7f246fc375ff202ea99d7cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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_2d926720aef3998c9241fdb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_9aca7f69ed34a48803d6eb16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_f1f0385fb7f71434db9a13b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_d6acf914c19647afe46ae3b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695000;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_20b42d3a77b47b0e6951aecf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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_46d25e169daa9e44796366ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.249000;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_d658d8b3a47b6fe11ff9f31c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_79b3f221c4c2cc26b1c283a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.264000;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_2812928271ac7afb2dfe69f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_0f077edbc9011c28bf063044.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_4286d04255a7d3c08179db20.woff2')format("woff");}.fff{font-family:fff;line-height:0.972000;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;}
.m5{transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m3{transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls7e{letter-spacing:-0.005858px;}
.ls16{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005858px;}
.ls7c{letter-spacing:0.044831px;}
.ls15{letter-spacing:0.143464px;}
.ls72{letter-spacing:0.292902px;}
.ls71{letter-spacing:0.351482px;}
.ls1b{letter-spacing:0.410059px;}
.ls29{letter-spacing:0.497933px;}
.ls2f{letter-spacing:0.585804px;}
.ls58{letter-spacing:0.591662px;}
.ls6d{letter-spacing:0.644384px;}
.ls35{letter-spacing:0.650242px;}
.ls5e{letter-spacing:0.656100px;}
.ls3b{letter-spacing:0.679533px;}
.ls6e{letter-spacing:0.685391px;}
.ls6c{letter-spacing:0.697107px;}
.ls64{letter-spacing:0.702965px;}
.ls4{letter-spacing:0.714681px;}
.ls51{letter-spacing:0.738113px;}
.ls46{letter-spacing:0.743971px;}
.ls47{letter-spacing:0.755687px;}
.ls68{letter-spacing:0.767403px;}
.ls4c{letter-spacing:0.773261px;}
.ls2{letter-spacing:0.784977px;}
.ls77{letter-spacing:0.802551px;}
.ls4d{letter-spacing:0.825984px;}
.ls1f{letter-spacing:0.866990px;}
.ls76{letter-spacing:0.872848px;}
.ls54{letter-spacing:0.896280px;}
.ls5{letter-spacing:0.907996px;}
.ls38{letter-spacing:0.925570px;}
.ls11{letter-spacing:0.937286px;}
.ls6{letter-spacing:0.954861px;}
.ls23{letter-spacing:0.960719px;}
.lsc{letter-spacing:0.990009px;}
.ls22{letter-spacing:0.995867px;}
.ls4f{letter-spacing:1.007583px;}
.ls1{letter-spacing:1.031015px;}
.ls1e{letter-spacing:1.036873px;}
.ls3a{letter-spacing:1.042731px;}
.ls3c{letter-spacing:1.048589px;}
.ls40{letter-spacing:1.054447px;}
.ls3f{letter-spacing:1.060305px;}
.lsf{letter-spacing:1.083737px;}
.ls20{letter-spacing:1.124744px;}
.ls28{letter-spacing:1.171608px;}
.ls53{letter-spacing:1.200898px;}
.ls65{letter-spacing:1.212614px;}
.ls3{letter-spacing:1.288769px;}
.ls31{letter-spacing:1.294627px;}
.ls5b{letter-spacing:1.306343px;}
.ls55{letter-spacing:1.312201px;}
.ls1d{letter-spacing:1.318059px;}
.ls25{letter-spacing:1.323917px;}
.ls2b{letter-spacing:1.335633px;}
.ls41{letter-spacing:1.341491px;}
.ls0{letter-spacing:1.347349px;}
.ls2a{letter-spacing:1.353207px;}
.ls26{letter-spacing:1.359065px;}
.ls36{letter-spacing:1.364923px;}
.ls2c{letter-spacing:1.376639px;}
.ls6b{letter-spacing:1.382497px;}
.ls52{letter-spacing:1.388355px;}
.ls45{letter-spacing:1.405930px;}
.ls30{letter-spacing:1.417646px;}
.lsd{letter-spacing:1.429362px;}
.ls73{letter-spacing:1.452794px;}
.ls5c{letter-spacing:1.482084px;}
.ls17{letter-spacing:1.499658px;}
.ls37{letter-spacing:1.552381px;}
.lsb{letter-spacing:1.640251px;}
.ls43{letter-spacing:1.663683px;}
.ls34{letter-spacing:1.669541px;}
.ls32{letter-spacing:1.681257px;}
.ls78{letter-spacing:1.692974px;}
.ls7a{letter-spacing:1.722264px;}
.ls8{letter-spacing:1.739838px;}
.ls5d{letter-spacing:1.745696px;}
.ls75{letter-spacing:1.769128px;}
.ls9{letter-spacing:1.786702px;}
.ls56{letter-spacing:1.815992px;}
.ls74{letter-spacing:1.821850px;}
.ls3e{letter-spacing:1.845283px;}
.ls57{letter-spacing:1.868715px;}
.ls4e{letter-spacing:1.886289px;}
.ls62{letter-spacing:1.903863px;}
.ls1a{letter-spacing:1.927295px;}
.ls5f{letter-spacing:2.003450px;}
.ls5a{letter-spacing:2.009308px;}
.lsa{letter-spacing:2.056172px;}
.ls70{letter-spacing:2.120610px;}
.ls59{letter-spacing:2.290494px;}
.ls50{letter-spacing:2.296352px;}
.ls4a{letter-spacing:2.325642px;}
.ls3d{letter-spacing:2.331500px;}
.ls1c{letter-spacing:2.343216px;}
.ls4b{letter-spacing:2.354932px;}
.ls24{letter-spacing:2.360790px;}
.ls21{letter-spacing:2.372506px;}
.ls66{letter-spacing:2.395938px;}
.ls79{letter-spacing:2.407654px;}
.ls10{letter-spacing:2.448661px;}
.ls27{letter-spacing:2.495525px;}
.ls33{letter-spacing:2.542389px;}
.ls60{letter-spacing:2.641976px;}
.ls18{letter-spacing:2.835291px;}
.ls61{letter-spacing:2.870440px;}
.ls2e{letter-spacing:2.911446px;}
.lse{letter-spacing:2.946594px;}
.ls63{letter-spacing:2.975884px;}
.ls12{letter-spacing:2.993458px;}
.ls39{letter-spacing:3.005175px;}
.ls2d{letter-spacing:3.046181px;}
.ls7b{letter-spacing:14.883826px;}
.ls13{letter-spacing:14.928656px;}
.ls7d{letter-spacing:15.107980px;}
.ls14{letter-spacing:15.733175px;}
.ls19{letter-spacing:18.417678px;}
.ls48{letter-spacing:18.804308px;}
.ls49{letter-spacing:19.237803px;}
.ls44{letter-spacing:20.473850px;}
.ls67{letter-spacing:20.596869px;}
.ls6f{letter-spacing:23.959384px;}
.ls42{letter-spacing:24.222995px;}
.ls69{letter-spacing:404.333028px;}
.ls6a{letter-spacing:415.556664px;}
.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;}
}
.wsb2{word-spacing:-415.604485px;}
.wsb1{word-spacing:-404.380849px;}
.ws39{word-spacing:-24.281576px;}
.ws91{word-spacing:-20.655449px;}
.ws3b{word-spacing:-20.532430px;}
.ws4e{word-spacing:-19.296384px;}
.ws47{word-spacing:-18.862889px;}
.ws1c{word-spacing:-18.476258px;}
.wse4{word-spacing:-10.508400px;}
.ws5{word-spacing:-0.061568px;}
.wsba{word-spacing:-0.058580px;}
.ws33{word-spacing:-0.047821px;}
.wsc7{word-spacing:-0.044831px;}
.wsdd{word-spacing:-0.043637px;}
.ws37{word-spacing:0.000000px;}
.ws34{word-spacing:10.594597px;}
.wsd3{word-spacing:12.283639px;}
.wsd4{word-spacing:12.462962px;}
.wsd5{word-spacing:12.597455px;}
.wsd6{word-spacing:12.642286px;}
.ws36{word-spacing:14.184709px;}
.wsdf{word-spacing:14.356507px;}
.wsd8{word-spacing:14.390687px;}
.wse2{word-spacing:14.443781px;}
.wsdb{word-spacing:14.525179px;}
.wse1{word-spacing:14.531054px;}
.wsd9{word-spacing:14.570010px;}
.ws35{word-spacing:14.603137px;}
.wsd7{word-spacing:14.614841px;}
.wsda{word-spacing:14.659672px;}
.ws8f{word-spacing:14.703680px;}
.wsd1{word-spacing:14.704502px;}
.wse0{word-spacing:14.705602px;}
.wsde{word-spacing:14.749238px;}
.wsd0{word-spacing:14.749333px;}
.wse3{word-spacing:14.792875px;}
.ws2e{word-spacing:14.794164px;}
.ws2c{word-spacing:14.838995px;}
.wsd2{word-spacing:14.883826px;}
.wscc{word-spacing:14.928656px;}
.wsc8{word-spacing:14.973487px;}
.ws2b{word-spacing:15.018318px;}
.wscf{word-spacing:15.063149px;}
.wsce{word-spacing:15.107980px;}
.wsca{word-spacing:15.152810px;}
.ws9a{word-spacing:15.172324px;}
.wsc9{word-spacing:15.197641px;}
.wscb{word-spacing:15.242472px;}
.ws42{word-spacing:15.348065px;}
.wscd{word-spacing:15.376964px;}
.ws2d{word-spacing:15.421795px;}
.ws32{word-spacing:15.446248px;}
.ws7c{word-spacing:15.494069px;}
.ws4a{word-spacing:15.582386px;}
.ws80{word-spacing:15.589711px;}
.wsae{word-spacing:15.637532px;}
.ws8d{word-spacing:15.640967px;}
.ws30{word-spacing:15.685354px;}
.ws31{word-spacing:15.733175px;}
.ws41{word-spacing:15.758128px;}
.wsdc{word-spacing:15.760839px;}
.ws2f{word-spacing:15.780996px;}
.ws7d{word-spacing:15.828817px;}
.wsb0{word-spacing:15.924460px;}
.ws10{word-spacing:15.957301px;}
.ws99{word-spacing:16.109610px;}
.ws78{word-spacing:16.168190px;}
.ws3c{word-spacing:16.197481px;}
.ws9d{word-spacing:16.209197px;}
.ws19{word-spacing:16.226771px;}
.ws21{word-spacing:16.256061px;}
.ws23{word-spacing:16.261919px;}
.ws9c{word-spacing:16.267777px;}
.ws83{word-spacing:16.279493px;}
.ws26{word-spacing:16.297067px;}
.ws20{word-spacing:16.302925px;}
.ws25{word-spacing:16.314641px;}
.ws16{word-spacing:16.320499px;}
.ws11{word-spacing:16.343932px;}
.ws75{word-spacing:16.355648px;}
.ws1d{word-spacing:16.384938px;}
.ws1a{word-spacing:16.390796px;}
.ws22{word-spacing:16.396654px;}
.ws28{word-spacing:16.402512px;}
.ws72{word-spacing:16.414228px;}
.ws14{word-spacing:16.425944px;}
.ws1b{word-spacing:16.431802px;}
.ws81{word-spacing:16.461092px;}
.ws1f{word-spacing:16.466950px;}
.ws74{word-spacing:16.472808px;}
.ws86{word-spacing:16.478667px;}
.ws76{word-spacing:16.490383px;}
.ws77{word-spacing:16.513815px;}
.ws94{word-spacing:16.519673px;}
.ws84{word-spacing:16.525531px;}
.ws3d{word-spacing:16.537247px;}
.ws70{word-spacing:16.548963px;}
.ws82{word-spacing:16.566537px;}
.ws3e{word-spacing:16.578253px;}
.ws40{word-spacing:16.636834px;}
.ws3a{word-spacing:16.671982px;}
.ws8e{word-spacing:16.695414px;}
.ws85{word-spacing:16.742278px;}
.ws1e{word-spacing:16.748136px;}
.ws46{word-spacing:16.765710px;}
.ws71{word-spacing:16.812575px;}
.ws8a{word-spacing:16.836007px;}
.ws8c{word-spacing:16.853581px;}
.ws43{word-spacing:16.871155px;}
.ws96{word-spacing:16.906303px;}
.ws12{word-spacing:16.929736px;}
.ws87{word-spacing:16.935594px;}
.ws4b{word-spacing:16.988316px;}
.ws44{word-spacing:17.005890px;}
.ws4d{word-spacing:17.023464px;}
.ws88{word-spacing:17.035180px;}
.ws4c{word-spacing:17.064471px;}
.ws48{word-spacing:17.093761px;}
.ws17{word-spacing:17.099619px;}
.ws9b{word-spacing:17.105477px;}
.ws45{word-spacing:17.111335px;}
.ws8b{word-spacing:17.134767px;}
.ws98{word-spacing:17.222638px;}
.ws15{word-spacing:17.281218px;}
.ws92{word-spacing:17.380805px;}
.ws29{word-spacing:17.456959px;}
.ws97{word-spacing:17.515540px;}
.ws90{word-spacing:17.574120px;}
.ws27{word-spacing:17.632700px;}
.ws93{word-spacing:17.802584px;}
.ws13{word-spacing:17.808442px;}
.ws79{word-spacing:17.860870px;}
.ws73{word-spacing:17.908028px;}
.ws38{word-spacing:17.925602px;}
.ws89{word-spacing:17.984183px;}
.wsad{word-spacing:18.022263px;}
.ws95{word-spacing:18.101344px;}
.ws3f{word-spacing:18.147690px;}
.wsb5{word-spacing:18.202683px;}
.wsa4{word-spacing:18.257676px;}
.ws69{word-spacing:18.367662px;}
.ws64{word-spacing:18.422655px;}
.ws62{word-spacing:18.862889px;}
.ws53{word-spacing:19.038630px;}
.ws5d{word-spacing:19.097210px;}
.wsc5{word-spacing:19.214371px;}
.ws63{word-spacing:19.272952px;}
.wsc2{word-spacing:19.278810px;}
.wsa5{word-spacing:19.296384px;}
.ws18{word-spacing:19.308100px;}
.ws6e{word-spacing:19.319816px;}
.wsac{word-spacing:19.331532px;}
.wsbb{word-spacing:19.337390px;}
.wsbd{word-spacing:19.343248px;}
.ws5e{word-spacing:19.390112px;}
.ws6b{word-spacing:19.419403px;}
.wsa8{word-spacing:19.436977px;}
.ws66{word-spacing:19.442835px;}
.ws6d{word-spacing:19.448693px;}
.wsb7{word-spacing:19.454551px;}
.wsb6{word-spacing:19.472125px;}
.ws5c{word-spacing:19.477983px;}
.wsc6{word-spacing:19.483841px;}
.ws5a{word-spacing:19.501415px;}
.wsc0{word-spacing:19.507273px;}
.wsc4{word-spacing:19.513131px;}
.ws58{word-spacing:19.536563px;}
.ws65{word-spacing:19.554138px;}
.wsbc{word-spacing:19.559996px;}
.ws54{word-spacing:19.565854px;}
.ws9f{word-spacing:19.577570px;}
.wsab{word-spacing:19.583428px;}
.ws9e{word-spacing:19.606860px;}
.ws6c{word-spacing:19.618576px;}
.ws68{word-spacing:19.624434px;}
.ws67{word-spacing:19.642008px;}
.ws6f{word-spacing:19.665440px;}
.wse{word-spacing:19.666172px;}
.ws52{word-spacing:19.671298px;}
.wsbf{word-spacing:19.677156px;}
.ws56{word-spacing:19.683014px;}
.wsbe{word-spacing:19.688872px;}
.ws5b{word-spacing:19.694730px;}
.wsaa{word-spacing:19.700589px;}
.ws51{word-spacing:19.706447px;}
.ws60{word-spacing:19.712305px;}
.ws6a{word-spacing:19.718163px;}
.wsa2{word-spacing:19.729879px;}
.wsc1{word-spacing:19.735737px;}
.wsa0{word-spacing:19.741595px;}
.ws55{word-spacing:19.765027px;}
.wsa9{word-spacing:19.800175px;}
.wsa6{word-spacing:19.858756px;}
.wsd{word-spacing:19.905275px;}
.wsa1{word-spacing:19.917336px;}
.wsc3{word-spacing:19.934910px;}
.wsa{word-spacing:19.965050px;}
.wsb8{word-spacing:20.022781px;}
.wsc{word-spacing:20.024826px;}
.ws8{word-spacing:20.084602px;}
.ws9{word-spacing:20.144377px;}
.wsb{word-spacing:20.204153px;}
.ws50{word-spacing:20.210238px;}
.ws6{word-spacing:20.263928px;}
.ws2a{word-spacing:20.321541px;}
.ws57{word-spacing:20.327399px;}
.wsf{word-spacing:20.383480px;}
.wsa3{word-spacing:20.385979px;}
.ws7{word-spacing:20.443255px;}
.ws59{word-spacing:20.561720px;}
.wsb9{word-spacing:20.620301px;}
.ws5f{word-spacing:20.678881px;}
.ws24{word-spacing:21.422852px;}
.ws3{word-spacing:21.961836px;}
.ws2{word-spacing:22.027590px;}
.wsa7{word-spacing:22.037946px;}
.ws4{word-spacing:22.159098px;}
.ws4f{word-spacing:22.770201px;}
.ws49{word-spacing:23.051387px;}
.ws0{word-spacing:26.421060px;}
.ws61{word-spacing:28.780551px;}
.ws1{word-spacing:47.772580px;}
.wsaf{word-spacing:284.344855px;}
.wsb4{word-spacing:387.638647px;}
.ws7b{word-spacing:393.425012px;}
.ws7e{word-spacing:474.960158px;}
.ws7f{word-spacing:497.531765px;}
.ws7a{word-spacing:994.489675px;}
.wsb3{word-spacing:1262.384038px;}
._19{margin-left:-404.328246px;}
._b{margin-left:-21.381846px;}
._c{margin-left:-20.268818px;}
._8{margin-left:-18.277085px;}
._7{margin-left:-16.988316px;}
._1b{margin-left:-5.116868px;}
._1a{margin-left:-2.486702px;}
._5{margin-left:-1.171608px;}
._2{width:1.135736px;}
._1f{width:6.455862px;}
._0{width:8.470281px;}
._27{width:13.628563px;}
._d{width:14.703680px;}
._a{width:15.944798px;}
._9{width:18.101344px;}
._3{width:19.367294px;}
._4{width:21.160562px;}
._25{width:22.260552px;}
._6{width:23.292290px;}
._28{width:44.158338px;}
._26{width:65.632291px;}
._24{width:390.507919px;}
._23{width:392.755516px;}
._11{width:451.766876px;}
._10{width:463.435249px;}
._f{width:474.673231px;}
._1d{width:477.207755px;}
._15{width:497.675228px;}
._17{width:509.247959px;}
._14{width:520.485941px;}
._20{width:592.887238px;}
._e{width:628.466210px;}
._1c{width:682.934557px;}
._16{width:705.075773px;}
._13{width:709.044932px;}
._1e{width:818.794586px;}
._18{width:908.554979px;}
._21{width:928.831168px;}
._12{width:991.763867px;}
._22{width:1282.899332px;}
._1{width:1987.407675px;}
.fc2{color:rgb(85,123,178);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.883000px;}
.fs11{font-size:37.800000px;}
.fsc{font-size:39.048600px;}
.fs10{font-size:40.800000px;}
.fsa{font-size:41.842800px;}
.fse{font-size:43.636800px;}
.fs3{font-size:43.831200px;}
.fs7{font-size:44.830800px;}
.fs9{font-size:47.821200px;}
.fsf{font-size:53.349000px;}
.fsd{font-size:53.797800px;}
.fsb{font-size:54.993000px;}
.fs6{font-size:58.580400px;}
.fs5{font-size:59.775600px;}
.fs4{font-size:61.568400px;}
.fs2{font-size:65.754000px;}
.fs0{font-size:77.709000px;}
.fs1{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y19d{bottom:83.848800px;}
.y40{bottom:92.101411px;}
.y19c{bottom:94.347750px;}
.ya1{bottom:103.091794px;}
.y3f{bottom:104.005688px;}
.y17a{bottom:107.043061px;}
.y133{bottom:114.196789px;}
.yef{bottom:115.443774px;}
.yca{bottom:115.528698px;}
.y3e{bottom:115.993650px;}
.y179{bottom:120.481094px;}
.ya0{bottom:122.901727px;}
.y19b{bottom:126.881550px;}
.y132{bottom:127.634821px;}
.yee{bottom:133.296151px;}
.yc9{bottom:133.381075px;}
.y178{bottom:133.997580px;}
.y3b{bottom:141.933631px;}
.y9f{bottom:142.711659px;}
.y19a{bottom:145.496550px;}
.y177{bottom:147.435612px;}
.yed{bottom:151.236398px;}
.yc8{bottom:151.321322px;}
.y131{bottom:154.510886px;}
.y3a{bottom:155.450118px;}
.y35{bottom:158.010512px;}
.y176{bottom:160.873645px;}
.y9e{bottom:162.521591px;}
.y199{bottom:164.111550px;}
.y130{bottom:168.027372px;}
.y39{bottom:168.888150px;}
.yec{bottom:169.176646px;}
.yc7{bottom:169.261570px;}
.y38{bottom:173.820450px;}
.y175{bottom:174.311677px;}
.y34{bottom:175.950759px;}
.y37{bottom:182.322468px;}
.y9d{bottom:182.331523px;}
.y198{bottom:182.726550px;}
.yeb{bottom:187.116893px;}
.yc6{bottom:187.201817px;}
.y174{bottom:187.749709px;}
.y33{bottom:193.891007px;}
.y12f{bottom:194.903437px;}
.y36{bottom:195.760500px;}
.y173{bottom:201.187741px;}
.y197{bottom:201.341550px;}
.y9c{bottom:202.057768px;}
.yea{bottom:205.057141px;}
.yc5{bottom:205.142065px;}
.y12e{bottom:208.341469px;}
.y32{bottom:211.831254px;}
.y172{bottom:214.704228px;}
.y196{bottom:219.956550px;}
.y12d{bottom:221.779502px;}
.y9b{bottom:221.867700px;}
.ye9{bottom:222.997388px;}
.yc4{bottom:223.082312px;}
.y171{bottom:228.142260px;}
.y25{bottom:229.727566px;}
.y31{bottom:229.771502px;}
.y12c{bottom:235.217534px;}
.ye8{bottom:240.937636px;}
.yc3{bottom:241.022560px;}
.y170{bottom:241.580292px;}
.y9a{bottom:241.681800px;}
.y24{bottom:247.579943px;}
.y30{bottom:247.623878px;}
.y12b{bottom:248.734020px;}
.y195{bottom:251.346450px;}
.y16f{bottom:255.018325px;}
.ye7{bottom:258.877883px;}
.yc2{bottom:258.962807px;}
.y12a{bottom:262.172052px;}
.y23{bottom:265.520191px;}
.y2f{bottom:265.564126px;}
.y194{bottom:267.351150px;}
.y16e{bottom:268.456357px;}
.y129{bottom:275.610085px;}
.ye6{bottom:276.730260px;}
.yc1{bottom:276.815184px;}
.y16d{bottom:281.894389px;}
.y22{bottom:283.460438px;}
.y2e{bottom:283.504373px;}
.y128{bottom:289.048117px;}
.y71{bottom:293.218853px;}
.y99{bottom:293.255251px;}
.ye5{bottom:294.670508px;}
.yc0{bottom:294.755432px;}
.y16c{bottom:295.332421px;}
.y21{bottom:301.400686px;}
.y2d{bottom:301.444621px;}
.y127{bottom:302.486149px;}
.y16b{bottom:308.848908px;}
.y70{bottom:311.159100px;}
.y98{bottom:311.195498px;}
.ye4{bottom:312.610755px;}
.ybf{bottom:312.695679px;}
.y20{bottom:319.340933px;}
.y2c{bottom:319.384868px;}
.y16a{bottom:322.286940px;}
.y6f{bottom:329.102400px;}
.y97{bottom:329.135746px;}
.y126{bottom:329.440668px;}
.ye3{bottom:330.551003px;}
.ybe{bottom:330.635927px;}
.y169{bottom:335.724972px;}
.y1f{bottom:337.281181px;}
.y2b{bottom:337.325116px;}
.y123{bottom:342.876768px;}
.y125{bottom:342.878700px;}
.y96{bottom:347.075993px;}
.y124{bottom:347.811000px;}
.ye2{bottom:348.491250px;}
.ybd{bottom:348.576174px;}
.y168{bottom:349.163005px;}
.y1e{bottom:355.221428px;}
.y2a{bottom:355.265363px;}
.y122{bottom:356.314800px;}
.y121{bottom:361.247250px;}
.y167{bottom:362.601037px;}
.y6e{bottom:364.997926px;}
.y95{bottom:365.016241px;}
.ye1{bottom:366.434550px;}
.ybc{bottom:366.516422px;}
.y120{bottom:369.750367px;}
.y1d{bottom:373.161676px;}
.y29{bottom:373.205611px;}
.y166{bottom:376.039069px;}
.y6d{bottom:382.850302px;}
.y94{bottom:382.868617px;}
.ye0{bottom:384.378000px;}
.ybb{bottom:384.456669px;}
.y165{bottom:389.555555px;}
.y1c{bottom:391.014052px;}
.y28{bottom:391.057988px;}
.y11f{bottom:396.626431px;}
.y6c{bottom:400.790550px;}
.y93{bottom:400.808865px;}
.y6a{bottom:400.833053px;}
.yba{bottom:402.396917px;}
.y164{bottom:402.993588px;}
.y6b{bottom:407.338500px;}
.y1b{bottom:408.954300px;}
.y27{bottom:408.998235px;}
.y11e{bottom:410.064464px;}
.y163{bottom:416.431620px;}
.y92{bottom:418.749112px;}
.y69{bottom:418.773301px;}
.ydf{bottom:420.206641px;}
.yb9{bottom:420.249294px;}
.y11d{bottom:423.580950px;}
.y1a{bottom:426.897600px;}
.y26{bottom:426.938483px;}
.y162{bottom:429.869652px;}
.y91{bottom:436.689360px;}
.y68{bottom:436.713548px;}
.yde{bottom:438.146888px;}
.yb8{bottom:438.189541px;}
.y161{bottom:443.307685px;}
.y90{bottom:454.629607px;}
.y67{bottom:454.653796px;}
.ydd{bottom:456.087136px;}
.yb7{bottom:456.129789px;}
.y160{bottom:456.745717px;}
.y11c{bottom:468.411781px;}
.y15f{bottom:470.183749px;}
.y8f{bottom:472.569855px;}
.y66{bottom:472.594043px;}
.ydc{bottom:474.027383px;}
.yb6{bottom:474.070036px;}
.y19{bottom:476.945324px;}
.y15e{bottom:483.700235px;}
.y11b{bottom:486.352028px;}
.y8e{bottom:490.510102px;}
.y65{bottom:490.534291px;}
.ydb{bottom:491.967631px;}
.yb5{bottom:492.010284px;}
.y15d{bottom:497.138268px;}
.y18{bottom:502.364898px;}
.y11a{bottom:504.292276px;}
.y8d{bottom:508.450350px;}
.y64{bottom:508.474538px;}
.yda{bottom:509.907878px;}
.yb4{bottom:509.950531px;}
.y15c{bottom:510.533809px;}
.y17{bottom:520.312522px;}
.y119{bottom:522.144653px;}
.y15b{bottom:523.983049px;}
.y8c{bottom:526.308600px;}
.y63{bottom:526.326915px;}
.yd9{bottom:527.848126px;}
.yb3{bottom:527.890779px;}
.y15a{bottom:537.421081px;}
.y118{bottom:540.084900px;}
.y16{bottom:542.683540px;}
.y62{bottom:544.267163px;}
.yd8{bottom:545.788373px;}
.yb2{bottom:545.831026px;}
.y159{bottom:550.859114px;}
.y117{bottom:558.028200px;}
.y15{bottom:560.631164px;}
.y61{bottom:562.207410px;}
.y8b{bottom:562.216336px;}
.yd7{bottom:563.640750px;}
.yb1{bottom:563.683403px;}
.y158{bottom:564.375600px;}
.y157{bottom:577.813632px;}
.y14{bottom:578.578788px;}
.y60{bottom:580.147658px;}
.y8a{bottom:580.156583px;}
.yd6{bottom:581.584050px;}
.yb0{bottom:581.623651px;}
.y156{bottom:591.251665px;}
.y116{bottom:593.920905px;}
.y13{bottom:596.526412px;}
.y5f{bottom:598.087905px;}
.y89{bottom:598.096831px;}
.yaf{bottom:599.563898px;}
.y155{bottom:604.689697px;}
.y115{bottom:611.861153px;}
.y12{bottom:614.474036px;}
.y5e{bottom:616.028153px;}
.y88{bottom:616.037078px;}
.yae{bottom:617.504146px;}
.yd5{bottom:617.635951px;}
.y154{bottom:618.127729px;}
.y114{bottom:629.801400px;}
.y153{bottom:631.565761px;}
.y11{bottom:632.331997px;}
.y5d{bottom:633.968400px;}
.y5b{bottom:633.971453px;}
.y87{bottom:633.977326px;}
.yad{bottom:635.444393px;}
.yd4{bottom:635.576199px;}
.y5c{bottom:640.431450px;}
.y152{bottom:645.003794px;}
.y113{bottom:647.744700px;}
.y10{bottom:650.279620px;}
.y5a{bottom:651.911700px;}
.y86{bottom:651.917573px;}
.y58{bottom:651.926731px;}
.yac{bottom:653.384641px;}
.yd3{bottom:653.516446px;}
.y59{bottom:658.374600px;}
.y151{bottom:658.520280px;}
.yf{bottom:668.227244px;}
.y85{bottom:669.769950px;}
.y57{bottom:669.779108px;}
.yab{bottom:671.324888px;}
.yd2{bottom:671.456694px;}
.y150{bottom:671.958312px;}
.y14f{bottom:685.396345px;}
.y84{bottom:687.713250px;}
.y56{bottom:687.719355px;}
.y112{bottom:688.114036px;}
.yaa{bottom:689.265136px;}
.yd1{bottom:689.396941px;}
.ye{bottom:690.672982px;}
.y14e{bottom:698.834377px;}
.y55{bottom:705.659603px;}
.y111{bottom:706.054284px;}
.ya9{bottom:707.117512px;}
.yd0{bottom:707.249318px;}
.yd{bottom:708.620606px;}
.y14d{bottom:712.272409px;}
.y193{bottom:716.810333px;}
.y54{bottom:723.599850px;}
.y52{bottom:723.612060px;}
.y83{bottom:723.636248px;}
.y110{bottom:723.994531px;}
.ya8{bottom:725.057760px;}
.ycf{bottom:725.189566px;}
.y14c{bottom:725.710441px;}
.yc{bottom:726.568230px;}
.y192{bottom:729.475914px;}
.y53{bottom:730.147950px;}
.y14b{bottom:739.226928px;}
.y51{bottom:741.552308px;}
.y82{bottom:741.576496px;}
.y10f{bottom:741.934779px;}
.y191{bottom:742.228769px;}
.ya7{bottom:742.998007px;}
.yce{bottom:743.129813px;}
.yb{bottom:744.426190px;}
.y14a{bottom:752.664960px;}
.y190{bottom:754.894350px;}
.y50{bottom:759.492555px;}
.y81{bottom:759.516743px;}
.y10e{bottom:759.787156px;}
.ya6{bottom:760.938255px;}
.ycd{bottom:761.070061px;}
.y149{bottom:766.102992px;}
.ya{bottom:766.871928px;}
.y4f{bottom:777.432803px;}
.y80{bottom:777.456991px;}
.y10d{bottom:777.727403px;}
.ya5{bottom:778.878502px;}
.ycc{bottom:779.010308px;}
.y18f{bottom:779.539092px;}
.y148{bottom:779.541025px;}
.y9{bottom:784.819552px;}
.y18e{bottom:792.977125px;}
.y147{bottom:792.979057px;}
.y4e{bottom:795.373050px;}
.y7f{bottom:795.397238px;}
.y10c{bottom:795.667651px;}
.ya4{bottom:796.818750px;}
.ycb{bottom:796.950556px;}
.y8{bottom:802.767176px;}
.y18d{bottom:806.415157px;}
.y146{bottom:806.417089px;}
.y4d{bottom:813.231300px;}
.y7e{bottom:813.249615px;}
.y10b{bottom:813.607898px;}
.y18c{bottom:819.853189px;}
.y145{bottom:819.855121px;}
.y7{bottom:820.714800px;}
.y4c{bottom:831.174600px;}
.y7d{bottom:831.189862px;}
.y10a{bottom:831.548146px;}
.y18b{bottom:833.369675px;}
.y144{bottom:833.371608px;}
.y18a{bottom:846.807708px;}
.y143{bottom:846.809640px;}
.y6{bottom:847.587300px;}
.yfa{bottom:848.387985px;}
.y7c{bottom:849.130110px;}
.y109{bottom:849.488393px;}
.y189{bottom:860.245740px;}
.y142{bottom:860.247672px;}
.y7b{bottom:867.070357px;}
.y4b{bottom:867.094546px;}
.y108{bottom:867.428641px;}
.yf9{bottom:868.197917px;}
.y188{bottom:873.683772px;}
.y141{bottom:873.685705px;}
.y7a{bottom:885.010605px;}
.y4a{bottom:885.034793px;}
.y107{bottom:885.368888px;}
.y187{bottom:887.121805px;}
.y140{bottom:887.123737px;}
.yf8{bottom:887.924162px;}
.y186{bottom:900.559837px;}
.y13f{bottom:900.561769px;}
.y79{bottom:902.950852px;}
.y49{bottom:902.975041px;}
.y106{bottom:903.221265px;}
.y4{bottom:905.158800px;}
.yf7{bottom:907.734094px;}
.y5{bottom:912.387150px;}
.y185{bottom:914.076323px;}
.y13e{bottom:914.078255px;}
.y78{bottom:920.891100px;}
.y48{bottom:920.915288px;}
.y105{bottom:921.161512px;}
.y184{bottom:927.514355px;}
.y13d{bottom:927.516288px;}
.yf6{bottom:927.544027px;}
.y77{bottom:938.834400px;}
.y47{bottom:938.855536px;}
.y104{bottom:939.101760px;}
.y3{bottom:940.945415px;}
.y183{bottom:940.952388px;}
.y13c{bottom:940.954320px;}
.yf5{bottom:947.353959px;}
.y182{bottom:954.390420px;}
.y13b{bottom:954.392352px;}
.y46{bottom:956.707912px;}
.y103{bottom:957.042007px;}
.yf4{bottom:967.163891px;}
.y181{bottom:967.828452px;}
.y13a{bottom:967.830385px;}
.y45{bottom:974.648160px;}
.y76{bottom:974.655355px;}
.y102{bottom:974.982255px;}
.y2{bottom:979.823400px;}
.y180{bottom:981.266485px;}
.y139{bottom:981.268417px;}
.yf3{bottom:986.973823px;}
.y44{bottom:992.588407px;}
.y75{bottom:992.595603px;}
.y101{bottom:992.922503px;}
.y17f{bottom:994.782971px;}
.y138{bottom:994.784903px;}
.yf2{bottom:1006.783755px;}
.y17e{bottom:1008.221003px;}
.y137{bottom:1008.222935px;}
.y43{bottom:1010.528655px;}
.y74{bottom:1010.535850px;}
.y100{bottom:1010.862750px;}
.y17d{bottom:1021.659035px;}
.y136{bottom:1021.660968px;}
.yf1{bottom:1026.510000px;}
.y42{bottom:1028.468903px;}
.y73{bottom:1028.476098px;}
.yfe{bottom:1028.806050px;}
.y17c{bottom:1035.097068px;}
.y135{bottom:1035.099000px;}
.yff{bottom:1035.268950px;}
.y1{bottom:1036.629600px;}
.yf0{bottom:1046.324100px;}
.y41{bottom:1046.409150px;}
.y72{bottom:1046.416346px;}
.yfd{bottom:1046.664300px;}
.y134{bottom:1048.515492px;}
.y17b{bottom:1048.535100px;}
.y3d{bottom:1115.203651px;}
.ya3{bottom:1115.227493px;}
.yfc{bottom:1115.242237px;}
.y3c{bottom:1130.088000px;}
.ya2{bottom:1130.111841px;}
.yfb{bottom:1130.126585px;}
.ha{height:21.545643px;}
.he{height:28.271186px;}
.h14{height:28.350000px;}
.hc{height:30.168659px;}
.h13{height:31.089600px;}
.h11{height:31.462133px;}
.h5{height:31.602295px;}
.h9{height:32.323007px;}
.h10{height:32.492970px;}
.hb{height:34.479085px;}
.hf{height:38.788214px;}
.hd{height:39.649953px;}
.h12{height:40.651938px;}
.h8{height:42.412210px;}
.h7{height:43.098208px;}
.h6{height:44.390816px;}
.h4{height:47.408634px;}
.h2{height:56.028189px;}
.h3{height:103.435525px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x10{left:89.036250px;}
.x1{left:90.396900px;}
.x2e{left:93.288150px;}
.xe{left:94.733850px;}
.x1f{left:97.039792px;}
.x2d{left:107.483858px;}
.x1d{left:108.595200px;}
.x1e{left:120.925950px;}
.x12{left:136.233000px;}
.x13{left:146.437800px;}
.x20{left:166.677150px;}
.x3{left:168.547950px;}
.x18{left:171.779550px;}
.x21{left:177.817350px;}
.x19{left:182.069250px;}
.x4{left:184.280250px;}
.x14{left:204.009450px;}
.x15{left:214.214100px;}
.x1a{left:251.121150px;}
.x1b{left:261.411000px;}
.x22{left:264.982650px;}
.x11{left:267.873900px;}
.x23{left:276.122700px;}
.x26{left:278.761178px;}
.x5{left:288.368400px;}
.x6{left:299.593650px;}
.x16{left:321.023550px;}
.x17{left:326.721150px;}
.x25{left:352.573200px;}
.x1c{left:368.985750px;}
.x7{left:375.278700px;}
.x8{left:380.891250px;}
.x2a{left:411.841340px;}
.x27{left:425.895055px;}
.x2b{left:430.299150px;}
.xf{left:457.098116px;}
.x24{left:469.077807px;}
.x2c{left:479.541606px;}
.x9{left:481.322700px;}
.xa{left:486.935250px;}
.x29{left:543.146400px;}
.xb{left:575.206200px;}
.xc{left:586.006200px;}
.xd{left:704.380950px;}
.x28{left:749.226143px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7e{letter-spacing:-0.005207pt;}
.ls16{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005207pt;}
.ls7c{letter-spacing:0.039850pt;}
.ls15{letter-spacing:0.127523pt;}
.ls72{letter-spacing:0.260357pt;}
.ls71{letter-spacing:0.312429pt;}
.ls1b{letter-spacing:0.364497pt;}
.ls29{letter-spacing:0.442607pt;}
.ls2f{letter-spacing:0.520715pt;}
.ls58{letter-spacing:0.525922pt;}
.ls6d{letter-spacing:0.572786pt;}
.ls35{letter-spacing:0.577993pt;}
.ls5e{letter-spacing:0.583200pt;}
.ls3b{letter-spacing:0.604029pt;}
.ls6e{letter-spacing:0.609236pt;}
.ls6c{letter-spacing:0.619650pt;}
.ls64{letter-spacing:0.624858pt;}
.ls4{letter-spacing:0.635272pt;}
.ls51{letter-spacing:0.656100pt;}
.ls46{letter-spacing:0.661308pt;}
.ls47{letter-spacing:0.671722pt;}
.ls68{letter-spacing:0.682136pt;}
.ls4c{letter-spacing:0.687343pt;}
.ls2{letter-spacing:0.697758pt;}
.ls77{letter-spacing:0.713379pt;}
.ls4d{letter-spacing:0.734208pt;}
.ls1f{letter-spacing:0.770658pt;}
.ls76{letter-spacing:0.775865pt;}
.ls54{letter-spacing:0.796693pt;}
.ls5{letter-spacing:0.807108pt;}
.ls38{letter-spacing:0.822729pt;}
.ls11{letter-spacing:0.833143pt;}
.ls6{letter-spacing:0.848765pt;}
.ls23{letter-spacing:0.853972pt;}
.lsc{letter-spacing:0.880008pt;}
.ls22{letter-spacing:0.885215pt;}
.ls4f{letter-spacing:0.895629pt;}
.ls1{letter-spacing:0.916458pt;}
.ls1e{letter-spacing:0.921665pt;}
.ls3a{letter-spacing:0.926872pt;}
.ls3c{letter-spacing:0.932079pt;}
.ls40{letter-spacing:0.937286pt;}
.ls3f{letter-spacing:0.942494pt;}
.lsf{letter-spacing:0.963322pt;}
.ls20{letter-spacing:0.999772pt;}
.ls28{letter-spacing:1.041429pt;}
.ls53{letter-spacing:1.067465pt;}
.ls65{letter-spacing:1.077879pt;}
.ls3{letter-spacing:1.145572pt;}
.ls31{letter-spacing:1.150779pt;}
.ls5b{letter-spacing:1.161194pt;}
.ls55{letter-spacing:1.166401pt;}
.ls1d{letter-spacing:1.171608pt;}
.ls25{letter-spacing:1.176815pt;}
.ls2b{letter-spacing:1.187229pt;}
.ls41{letter-spacing:1.192437pt;}
.ls0{letter-spacing:1.197644pt;}
.ls2a{letter-spacing:1.202851pt;}
.ls26{letter-spacing:1.208058pt;}
.ls36{letter-spacing:1.213265pt;}
.ls2c{letter-spacing:1.223679pt;}
.ls6b{letter-spacing:1.228887pt;}
.ls52{letter-spacing:1.234094pt;}
.ls45{letter-spacing:1.249715pt;}
.ls30{letter-spacing:1.260129pt;}
.lsd{letter-spacing:1.270544pt;}
.ls73{letter-spacing:1.291372pt;}
.ls5c{letter-spacing:1.317408pt;}
.ls17{letter-spacing:1.333030pt;}
.ls37{letter-spacing:1.379894pt;}
.lsb{letter-spacing:1.458001pt;}
.ls43{letter-spacing:1.478830pt;}
.ls34{letter-spacing:1.484037pt;}
.ls32{letter-spacing:1.494451pt;}
.ls78{letter-spacing:1.504865pt;}
.ls7a{letter-spacing:1.530901pt;}
.ls8{letter-spacing:1.546523pt;}
.ls5d{letter-spacing:1.551730pt;}
.ls75{letter-spacing:1.572558pt;}
.ls9{letter-spacing:1.588180pt;}
.ls56{letter-spacing:1.614215pt;}
.ls74{letter-spacing:1.619423pt;}
.ls3e{letter-spacing:1.640251pt;}
.ls57{letter-spacing:1.661080pt;}
.ls4e{letter-spacing:1.676701pt;}
.ls62{letter-spacing:1.692323pt;}
.ls1a{letter-spacing:1.713151pt;}
.ls5f{letter-spacing:1.780844pt;}
.ls5a{letter-spacing:1.786051pt;}
.lsa{letter-spacing:1.827708pt;}
.ls70{letter-spacing:1.884987pt;}
.ls59{letter-spacing:2.035994pt;}
.ls50{letter-spacing:2.041201pt;}
.ls4a{letter-spacing:2.067237pt;}
.ls3d{letter-spacing:2.072444pt;}
.ls1c{letter-spacing:2.082859pt;}
.ls4b{letter-spacing:2.093273pt;}
.ls24{letter-spacing:2.098480pt;}
.ls21{letter-spacing:2.108894pt;}
.ls66{letter-spacing:2.129723pt;}
.ls79{letter-spacing:2.140137pt;}
.ls10{letter-spacing:2.176587pt;}
.ls27{letter-spacing:2.218244pt;}
.ls33{letter-spacing:2.259902pt;}
.ls60{letter-spacing:2.348423pt;}
.ls18{letter-spacing:2.520259pt;}
.ls61{letter-spacing:2.551502pt;}
.ls2e{letter-spacing:2.587952pt;}
.lse{letter-spacing:2.619195pt;}
.ls63{letter-spacing:2.645231pt;}
.ls12{letter-spacing:2.660852pt;}
.ls39{letter-spacing:2.671266pt;}
.ls2d{letter-spacing:2.707716pt;}
.ls7b{letter-spacing:13.230067pt;}
.ls13{letter-spacing:13.269917pt;}
.ls7d{letter-spacing:13.429315pt;}
.ls14{letter-spacing:13.985044pt;}
.ls19{letter-spacing:16.371269pt;}
.ls48{letter-spacing:16.714941pt;}
.ls49{letter-spacing:17.100270pt;}
.ls44{letter-spacing:18.198978pt;}
.ls67{letter-spacing:18.308328pt;}
.ls6f{letter-spacing:21.297230pt;}
.ls42{letter-spacing:21.531551pt;}
.ls69{letter-spacing:359.407136pt;}
.ls6a{letter-spacing:369.383701pt;}
.wsb2{word-spacing:-369.426209pt;}
.wsb1{word-spacing:-359.449644pt;}
.ws39{word-spacing:-21.583623pt;}
.ws91{word-spacing:-18.360399pt;}
.ws3b{word-spacing:-18.251049pt;}
.ws4e{word-spacing:-17.152341pt;}
.ws47{word-spacing:-16.767012pt;}
.ws1c{word-spacing:-16.423341pt;}
.wse4{word-spacing:-9.340800pt;}
.ws5{word-spacing:-0.054727pt;}
.wsba{word-spacing:-0.052071pt;}
.ws33{word-spacing:-0.042508pt;}
.wsc7{word-spacing:-0.039850pt;}
.wsdd{word-spacing:-0.038788pt;}
.ws37{word-spacing:0.000000pt;}
.ws34{word-spacing:9.417420pt;}
.wsd3{word-spacing:10.918790pt;}
.wsd4{word-spacing:11.078189pt;}
.wsd5{word-spacing:11.197738pt;}
.wsd6{word-spacing:11.237587pt;}
.ws36{word-spacing:12.608630pt;}
.wsdf{word-spacing:12.761340pt;}
.wsd8{word-spacing:12.791722pt;}
.wse2{word-spacing:12.838916pt;}
.wsdb{word-spacing:12.911270pt;}
.wse1{word-spacing:12.916493pt;}
.wsd9{word-spacing:12.951120pt;}
.ws35{word-spacing:12.980566pt;}
.wsd7{word-spacing:12.990970pt;}
.wsda{word-spacing:13.030819pt;}
.ws8f{word-spacing:13.069938pt;}
.wsd1{word-spacing:13.070669pt;}
.wse0{word-spacing:13.071646pt;}
.wsde{word-spacing:13.110434pt;}
.wsd0{word-spacing:13.110518pt;}
.wse3{word-spacing:13.149222pt;}
.ws2e{word-spacing:13.150368pt;}
.ws2c{word-spacing:13.190218pt;}
.wsd2{word-spacing:13.230067pt;}
.wscc{word-spacing:13.269917pt;}
.wsc8{word-spacing:13.309766pt;}
.ws2b{word-spacing:13.349616pt;}
.wscf{word-spacing:13.389466pt;}
.wsce{word-spacing:13.429315pt;}
.wsca{word-spacing:13.469165pt;}
.ws9a{word-spacing:13.486510pt;}
.wsc9{word-spacing:13.509014pt;}
.wscb{word-spacing:13.548864pt;}
.ws42{word-spacing:13.642724pt;}
.wscd{word-spacing:13.668413pt;}
.ws2d{word-spacing:13.708262pt;}
.ws32{word-spacing:13.729998pt;}
.ws7c{word-spacing:13.772506pt;}
.ws4a{word-spacing:13.851010pt;}
.ws80{word-spacing:13.857521pt;}
.wsae{word-spacing:13.900029pt;}
.ws8d{word-spacing:13.903082pt;}
.ws30{word-spacing:13.942537pt;}
.ws31{word-spacing:13.985044pt;}
.ws41{word-spacing:14.007225pt;}
.wsdc{word-spacing:14.009634pt;}
.ws2f{word-spacing:14.027552pt;}
.ws7d{word-spacing:14.070060pt;}
.wsb0{word-spacing:14.155075pt;}
.ws10{word-spacing:14.184268pt;}
.ws99{word-spacing:14.319653pt;}
.ws78{word-spacing:14.371725pt;}
.ws3c{word-spacing:14.397761pt;}
.ws9d{word-spacing:14.408175pt;}
.ws19{word-spacing:14.423796pt;}
.ws21{word-spacing:14.449832pt;}
.ws23{word-spacing:14.455039pt;}
.ws9c{word-spacing:14.460246pt;}
.ws83{word-spacing:14.470661pt;}
.ws26{word-spacing:14.486282pt;}
.ws20{word-spacing:14.491489pt;}
.ws25{word-spacing:14.501903pt;}
.ws16{word-spacing:14.507111pt;}
.ws11{word-spacing:14.527939pt;}
.ws75{word-spacing:14.538353pt;}
.ws1d{word-spacing:14.564389pt;}
.ws1a{word-spacing:14.569596pt;}
.ws22{word-spacing:14.574804pt;}
.ws28{word-spacing:14.580011pt;}
.ws72{word-spacing:14.590425pt;}
.ws14{word-spacing:14.600839pt;}
.ws1b{word-spacing:14.606046pt;}
.ws81{word-spacing:14.632082pt;}
.ws1f{word-spacing:14.637289pt;}
.ws74{word-spacing:14.642496pt;}
.ws86{word-spacing:14.647704pt;}
.ws76{word-spacing:14.658118pt;}
.ws77{word-spacing:14.678946pt;}
.ws94{word-spacing:14.684154pt;}
.ws84{word-spacing:14.689361pt;}
.ws3d{word-spacing:14.699775pt;}
.ws70{word-spacing:14.710189pt;}
.ws82{word-spacing:14.725811pt;}
.ws3e{word-spacing:14.736225pt;}
.ws40{word-spacing:14.788297pt;}
.ws3a{word-spacing:14.819539pt;}
.ws8e{word-spacing:14.840368pt;}
.ws85{word-spacing:14.882025pt;}
.ws1e{word-spacing:14.887232pt;}
.ws46{word-spacing:14.902854pt;}
.ws71{word-spacing:14.944511pt;}
.ws8a{word-spacing:14.965340pt;}
.ws8c{word-spacing:14.980961pt;}
.ws43{word-spacing:14.996582pt;}
.ws96{word-spacing:15.027825pt;}
.ws12{word-spacing:15.048654pt;}
.ws87{word-spacing:15.053861pt;}
.ws4b{word-spacing:15.100725pt;}
.ws44{word-spacing:15.116347pt;}
.ws4d{word-spacing:15.131968pt;}
.ws88{word-spacing:15.142383pt;}
.ws4c{word-spacing:15.168418pt;}
.ws48{word-spacing:15.194454pt;}
.ws17{word-spacing:15.199661pt;}
.ws9b{word-spacing:15.204868pt;}
.ws45{word-spacing:15.210075pt;}
.ws8b{word-spacing:15.230904pt;}
.ws98{word-spacing:15.309011pt;}
.ws15{word-spacing:15.361083pt;}
.ws92{word-spacing:15.449604pt;}
.ws29{word-spacing:15.517297pt;}
.ws97{word-spacing:15.569369pt;}
.ws90{word-spacing:15.621440pt;}
.ws27{word-spacing:15.673511pt;}
.ws93{word-spacing:15.824519pt;}
.ws13{word-spacing:15.829726pt;}
.ws79{word-spacing:15.876329pt;}
.ws73{word-spacing:15.918247pt;}
.ws38{word-spacing:15.933869pt;}
.ws89{word-spacing:15.985940pt;}
.wsad{word-spacing:16.019789pt;}
.ws95{word-spacing:16.090083pt;}
.ws3f{word-spacing:16.131280pt;}
.wsb5{word-spacing:16.180163pt;}
.wsa4{word-spacing:16.229045pt;}
.ws69{word-spacing:16.326811pt;}
.ws64{word-spacing:16.375693pt;}
.ws62{word-spacing:16.767012pt;}
.ws53{word-spacing:16.923227pt;}
.ws5d{word-spacing:16.975298pt;}
.wsc5{word-spacing:17.079441pt;}
.ws63{word-spacing:17.131513pt;}
.wsc2{word-spacing:17.136720pt;}
.wsa5{word-spacing:17.152341pt;}
.ws18{word-spacing:17.162755pt;}
.ws6e{word-spacing:17.173170pt;}
.wsac{word-spacing:17.183584pt;}
.wsbb{word-spacing:17.188791pt;}
.wsbd{word-spacing:17.193998pt;}
.ws5e{word-spacing:17.235655pt;}
.ws6b{word-spacing:17.261691pt;}
.wsa8{word-spacing:17.277313pt;}
.ws66{word-spacing:17.282520pt;}
.ws6d{word-spacing:17.287727pt;}
.wsb7{word-spacing:17.292934pt;}
.wsb6{word-spacing:17.308556pt;}
.ws5c{word-spacing:17.313763pt;}
.wsc6{word-spacing:17.318970pt;}
.ws5a{word-spacing:17.334591pt;}
.wsc0{word-spacing:17.339798pt;}
.wsc4{word-spacing:17.345006pt;}
.ws58{word-spacing:17.365834pt;}
.ws65{word-spacing:17.381456pt;}
.wsbc{word-spacing:17.386663pt;}
.ws54{word-spacing:17.391870pt;}
.ws9f{word-spacing:17.402284pt;}
.wsab{word-spacing:17.407491pt;}
.ws9e{word-spacing:17.428320pt;}
.ws6c{word-spacing:17.438734pt;}
.ws68{word-spacing:17.443941pt;}
.ws67{word-spacing:17.459563pt;}
.ws6f{word-spacing:17.480391pt;}
.wse{word-spacing:17.481042pt;}
.ws52{word-spacing:17.485599pt;}
.wsbf{word-spacing:17.490806pt;}
.ws56{word-spacing:17.496013pt;}
.wsbe{word-spacing:17.501220pt;}
.ws5b{word-spacing:17.506427pt;}
.wsaa{word-spacing:17.511634pt;}
.ws51{word-spacing:17.516841pt;}
.ws60{word-spacing:17.522049pt;}
.ws6a{word-spacing:17.527256pt;}
.wsa2{word-spacing:17.537670pt;}
.wsc1{word-spacing:17.542877pt;}
.wsa0{word-spacing:17.548084pt;}
.ws55{word-spacing:17.568913pt;}
.wsa9{word-spacing:17.600156pt;}
.wsa6{word-spacing:17.652227pt;}
.wsd{word-spacing:17.693578pt;}
.wsa1{word-spacing:17.704299pt;}
.wsc3{word-spacing:17.719920pt;}
.wsa{word-spacing:17.746711pt;}
.wsb8{word-spacing:17.798027pt;}
.wsc{word-spacing:17.799845pt;}
.ws8{word-spacing:17.852979pt;}
.ws9{word-spacing:17.906113pt;}
.wsb{word-spacing:17.959247pt;}
.ws50{word-spacing:17.964656pt;}
.ws6{word-spacing:18.012381pt;}
.ws2a{word-spacing:18.063592pt;}
.ws57{word-spacing:18.068799pt;}
.wsf{word-spacing:18.118649pt;}
.wsa3{word-spacing:18.120870pt;}
.ws7{word-spacing:18.171782pt;}
.ws59{word-spacing:18.277085pt;}
.wsb9{word-spacing:18.329156pt;}
.ws5f{word-spacing:18.381228pt;}
.ws24{word-spacing:19.042535pt;}
.ws3{word-spacing:19.521632pt;}
.ws2{word-spacing:19.580080pt;}
.wsa7{word-spacing:19.589286pt;}
.ws4{word-spacing:19.696976pt;}
.ws4f{word-spacing:20.240179pt;}
.ws49{word-spacing:20.490122pt;}
.ws0{word-spacing:23.485387pt;}
.ws61{word-spacing:25.582712pt;}
.ws1{word-spacing:42.464515pt;}
.wsaf{word-spacing:252.750982pt;}
.wsb4{word-spacing:344.567686pt;}
.ws7b{word-spacing:349.711122pt;}
.ws7e{word-spacing:422.186807pt;}
.ws7f{word-spacing:442.250458pt;}
.ws7a{word-spacing:883.990822pt;}
.wsb3{word-spacing:1122.119145pt;}
._19{margin-left:-359.402885pt;}
._b{margin-left:-19.006085pt;}
._c{margin-left:-18.016727pt;}
._8{margin-left:-16.246298pt;}
._7{margin-left:-15.100725pt;}
._1b{margin-left:-4.548327pt;}
._1a{margin-left:-2.210402pt;}
._5{margin-left:-1.041429pt;}
._2{width:1.009543pt;}
._1f{width:5.738544pt;}
._0{width:7.529139pt;}
._27{width:12.114278pt;}
._d{width:13.069938pt;}
._a{width:14.173154pt;}
._9{width:16.090083pt;}
._3{width:17.215373pt;}
._4{width:18.809389pt;}
._25{width:19.787157pt;}
._6{width:20.704258pt;}
._28{width:39.251856pt;}
._26{width:58.339814pt;}
._24{width:347.118150pt;}
._23{width:349.116014pt;}
._11{width:401.570557pt;}
._10{width:411.942444pt;}
._f{width:421.931761pt;}
._1d{width:424.184671pt;}
._15{width:442.377981pt;}
._17{width:452.664852pt;}
._14{width:462.654170pt;}
._20{width:527.010878pt;}
._e{width:558.636631pt;}
._1c{width:607.052940pt;}
._16{width:626.734020pt;}
._13{width:630.262162pt;}
._1e{width:727.817410pt;}
._18{width:807.604426pt;}
._21{width:825.627705pt;}
._12{width:881.567882pt;}
._22{width:1140.354962pt;}
._1{width:1766.584600pt;}
.fs8{font-size:26.562667pt;}
.fs11{font-size:33.600000pt;}
.fsc{font-size:34.709867pt;}
.fs10{font-size:36.266667pt;}
.fsa{font-size:37.193600pt;}
.fse{font-size:38.788267pt;}
.fs3{font-size:38.961067pt;}
.fs7{font-size:39.849600pt;}
.fs9{font-size:42.507733pt;}
.fsf{font-size:47.421333pt;}
.fsd{font-size:47.820267pt;}
.fsb{font-size:48.882667pt;}
.fs6{font-size:52.071467pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:54.727467pt;}
.fs2{font-size:58.448000pt;}
.fs0{font-size:69.074667pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y19d{bottom:74.532267pt;}
.y40{bottom:81.867921pt;}
.y19c{bottom:83.864667pt;}
.ya1{bottom:91.637151pt;}
.y3f{bottom:92.449500pt;}
.y17a{bottom:95.149388pt;}
.y133{bottom:101.508257pt;}
.yef{bottom:102.616688pt;}
.yca{bottom:102.692176pt;}
.y3e{bottom:103.105467pt;}
.y179{bottom:107.094306pt;}
.ya0{bottom:109.245979pt;}
.y19b{bottom:112.783600pt;}
.y132{bottom:113.453175pt;}
.yee{bottom:118.485467pt;}
.yc9{bottom:118.560955pt;}
.y178{bottom:119.108960pt;}
.y3b{bottom:126.163228pt;}
.y9f{bottom:126.854808pt;}
.y19a{bottom:129.330267pt;}
.y177{bottom:131.053878pt;}
.yed{bottom:134.432354pt;}
.yc8{bottom:134.507842pt;}
.y131{bottom:137.343010pt;}
.y3a{bottom:138.177882pt;}
.y35{bottom:140.453788pt;}
.y176{bottom:142.998795pt;}
.y9e{bottom:144.463636pt;}
.y199{bottom:145.876933pt;}
.y130{bottom:149.357664pt;}
.y39{bottom:150.122800pt;}
.yec{bottom:150.379241pt;}
.yc7{bottom:150.454729pt;}
.y38{bottom:154.507067pt;}
.y175{bottom:154.943713pt;}
.y34{bottom:156.400675pt;}
.y37{bottom:162.064416pt;}
.y9d{bottom:162.072465pt;}
.y198{bottom:162.423600pt;}
.yeb{bottom:166.326127pt;}
.yc6{bottom:166.401615pt;}
.y174{bottom:166.888630pt;}
.y33{bottom:172.347561pt;}
.y12f{bottom:173.247499pt;}
.y36{bottom:174.009333pt;}
.y173{bottom:178.833548pt;}
.y197{bottom:178.970267pt;}
.y9c{bottom:179.606905pt;}
.yea{bottom:182.273014pt;}
.yc5{bottom:182.348502pt;}
.y12e{bottom:185.192417pt;}
.y32{bottom:188.294448pt;}
.y172{bottom:190.848202pt;}
.y196{bottom:195.516933pt;}
.y12d{bottom:197.137335pt;}
.y9b{bottom:197.215733pt;}
.ye9{bottom:198.219901pt;}
.yc4{bottom:198.295389pt;}
.y171{bottom:202.793120pt;}
.y25{bottom:204.202281pt;}
.y31{bottom:204.241335pt;}
.y12c{bottom:209.082252pt;}
.ye8{bottom:214.166787pt;}
.yc3{bottom:214.242275pt;}
.y170{bottom:214.738038pt;}
.y9a{bottom:214.828267pt;}
.y24{bottom:220.071061pt;}
.y30{bottom:220.110114pt;}
.y12b{bottom:221.096907pt;}
.y195{bottom:223.419067pt;}
.y16f{bottom:226.682955pt;}
.ye7{bottom:230.113674pt;}
.yc2{bottom:230.189162pt;}
.y12a{bottom:233.041824pt;}
.y23{bottom:236.017947pt;}
.y2f{bottom:236.057001pt;}
.y194{bottom:237.645467pt;}
.y16e{bottom:238.627873pt;}
.y129{bottom:244.986742pt;}
.ye6{bottom:245.982453pt;}
.yc1{bottom:246.057942pt;}
.y16d{bottom:250.572790pt;}
.y22{bottom:251.964834pt;}
.y2e{bottom:252.003887pt;}
.y128{bottom:256.931659pt;}
.y71{bottom:260.638980pt;}
.y99{bottom:260.671334pt;}
.ye5{bottom:261.929340pt;}
.yc0{bottom:262.004828pt;}
.y16c{bottom:262.517708pt;}
.y21{bottom:267.911721pt;}
.y2d{bottom:267.950774pt;}
.y127{bottom:268.876577pt;}
.y16b{bottom:274.532362pt;}
.y70{bottom:276.585867pt;}
.y98{bottom:276.618221pt;}
.ye4{bottom:277.876227pt;}
.ybf{bottom:277.951715pt;}
.y20{bottom:283.858607pt;}
.y2c{bottom:283.897661pt;}
.y16a{bottom:286.477280pt;}
.y6f{bottom:292.535467pt;}
.y97{bottom:292.565107pt;}
.y126{bottom:292.836149pt;}
.ye3{bottom:293.823113pt;}
.ybe{bottom:293.898602pt;}
.y169{bottom:298.422198pt;}
.y1f{bottom:299.805494pt;}
.y2b{bottom:299.844547pt;}
.y123{bottom:304.779349pt;}
.y125{bottom:304.781067pt;}
.y96{bottom:308.511994pt;}
.y124{bottom:309.165333pt;}
.ye2{bottom:309.770000pt;}
.ybd{bottom:309.845488pt;}
.y168{bottom:310.367115pt;}
.y1e{bottom:315.752381pt;}
.y2a{bottom:315.791434pt;}
.y122{bottom:316.724267pt;}
.y121{bottom:321.108667pt;}
.y167{bottom:322.312033pt;}
.y6e{bottom:324.442601pt;}
.y95{bottom:324.458881pt;}
.ye1{bottom:325.719600pt;}
.ybc{bottom:325.792375pt;}
.y120{bottom:328.666993pt;}
.y1d{bottom:331.699267pt;}
.y29{bottom:331.738321pt;}
.y166{bottom:334.256950pt;}
.y6d{bottom:340.311380pt;}
.y94{bottom:340.327660pt;}
.ye0{bottom:341.669333pt;}
.ybb{bottom:341.739262pt;}
.y165{bottom:346.271605pt;}
.y1c{bottom:347.568047pt;}
.y28{bottom:347.607100pt;}
.y11f{bottom:352.556828pt;}
.y6c{bottom:356.258267pt;}
.y93{bottom:356.274547pt;}
.y6a{bottom:356.296047pt;}
.yba{bottom:357.686148pt;}
.y164{bottom:358.216522pt;}
.y6b{bottom:362.078667pt;}
.y1b{bottom:363.514933pt;}
.y27{bottom:363.553987pt;}
.y11e{bottom:364.501746pt;}
.y163{bottom:370.161440pt;}
.y92{bottom:372.221433pt;}
.y69{bottom:372.242934pt;}
.ydf{bottom:373.517014pt;}
.yb9{bottom:373.554928pt;}
.y11d{bottom:376.516400pt;}
.y1a{bottom:379.464533pt;}
.y26{bottom:379.500874pt;}
.y162{bottom:382.106358pt;}
.y91{bottom:388.168320pt;}
.y68{bottom:388.189821pt;}
.yde{bottom:389.463901pt;}
.yb8{bottom:389.501814pt;}
.y161{bottom:394.051275pt;}
.y90{bottom:404.115207pt;}
.y67{bottom:404.136707pt;}
.ydd{bottom:405.410787pt;}
.yb7{bottom:405.448701pt;}
.y160{bottom:405.996193pt;}
.y11c{bottom:416.366027pt;}
.y15f{bottom:417.941110pt;}
.y8f{bottom:420.062093pt;}
.y66{bottom:420.083594pt;}
.ydc{bottom:421.357674pt;}
.yb6{bottom:421.395588pt;}
.y19{bottom:423.951399pt;}
.y15e{bottom:429.955765pt;}
.y11b{bottom:432.312914pt;}
.y8e{bottom:436.008980pt;}
.y65{bottom:436.030481pt;}
.ydb{bottom:437.304561pt;}
.yb5{bottom:437.342474pt;}
.y15d{bottom:441.900682pt;}
.y18{bottom:446.546576pt;}
.y11a{bottom:448.259801pt;}
.y8d{bottom:451.955867pt;}
.y64{bottom:451.977367pt;}
.yda{bottom:453.251447pt;}
.yb4{bottom:453.289361pt;}
.y15c{bottom:453.807830pt;}
.y17{bottom:462.500020pt;}
.y119{bottom:464.128580pt;}
.y15b{bottom:465.762710pt;}
.y8c{bottom:467.829867pt;}
.y63{bottom:467.846147pt;}
.yd9{bottom:469.198334pt;}
.yb3{bottom:469.236248pt;}
.y15a{bottom:477.707628pt;}
.y118{bottom:480.075467pt;}
.y16{bottom:482.385369pt;}
.y62{bottom:483.793033pt;}
.yd8{bottom:485.145221pt;}
.yb2{bottom:485.183134pt;}
.y159{bottom:489.652546pt;}
.y117{bottom:496.025067pt;}
.y15{bottom:498.338813pt;}
.y61{bottom:499.739920pt;}
.y8b{bottom:499.747854pt;}
.yd7{bottom:501.014000pt;}
.yb1{bottom:501.051914pt;}
.y158{bottom:501.667200pt;}
.y157{bottom:513.612118pt;}
.y14{bottom:514.292256pt;}
.y60{bottom:515.686807pt;}
.y8a{bottom:515.694741pt;}
.yd6{bottom:516.963600pt;}
.yb0{bottom:516.998801pt;}
.y156{bottom:525.557035pt;}
.y116{bottom:527.929693pt;}
.y13{bottom:530.245700pt;}
.y5f{bottom:531.633693pt;}
.y89{bottom:531.641627pt;}
.yaf{bottom:532.945687pt;}
.y155{bottom:537.501953pt;}
.y115{bottom:543.876580pt;}
.y12{bottom:546.199143pt;}
.y5e{bottom:547.580580pt;}
.y88{bottom:547.588514pt;}
.yae{bottom:548.892574pt;}
.yd5{bottom:549.009735pt;}
.y154{bottom:549.446870pt;}
.y114{bottom:559.823467pt;}
.y153{bottom:561.391788pt;}
.y11{bottom:562.072886pt;}
.y5d{bottom:563.527467pt;}
.y5b{bottom:563.530180pt;}
.y87{bottom:563.535401pt;}
.yad{bottom:564.839461pt;}
.yd4{bottom:564.956621pt;}
.y5c{bottom:569.272400pt;}
.y152{bottom:573.336706pt;}
.y113{bottom:575.773067pt;}
.y10{bottom:578.026329pt;}
.y5a{bottom:579.477067pt;}
.y86{bottom:579.482287pt;}
.y58{bottom:579.490427pt;}
.yac{bottom:580.786347pt;}
.yd3{bottom:580.903508pt;}
.y59{bottom:585.221867pt;}
.y151{bottom:585.351360pt;}
.yf{bottom:593.979773pt;}
.y85{bottom:595.351067pt;}
.y57{bottom:595.359207pt;}
.yab{bottom:596.733234pt;}
.yd2{bottom:596.850395pt;}
.y150{bottom:597.296278pt;}
.y14f{bottom:609.241195pt;}
.y84{bottom:611.300667pt;}
.y56{bottom:611.306093pt;}
.y112{bottom:611.656921pt;}
.yaa{bottom:612.680121pt;}
.yd1{bottom:612.797281pt;}
.ye{bottom:613.931540pt;}
.y14e{bottom:621.186113pt;}
.y55{bottom:627.252980pt;}
.y111{bottom:627.603808pt;}
.ya9{bottom:628.548900pt;}
.yd0{bottom:628.666061pt;}
.yd{bottom:629.884983pt;}
.y14d{bottom:633.131030pt;}
.y193{bottom:637.164740pt;}
.y54{bottom:643.199867pt;}
.y52{bottom:643.210720pt;}
.y83{bottom:643.232221pt;}
.y110{bottom:643.550694pt;}
.ya8{bottom:644.495787pt;}
.ycf{bottom:644.612947pt;}
.y14c{bottom:645.075948pt;}
.yc{bottom:645.838427pt;}
.y192{bottom:648.423035pt;}
.y53{bottom:649.020400pt;}
.y14b{bottom:657.090602pt;}
.y51{bottom:659.157607pt;}
.y82{bottom:659.179107pt;}
.y10f{bottom:659.497581pt;}
.y191{bottom:659.758906pt;}
.ya7{bottom:660.442673pt;}
.yce{bottom:660.559834pt;}
.yb{bottom:661.712169pt;}
.y14a{bottom:669.035520pt;}
.y190{bottom:671.017200pt;}
.y50{bottom:675.104493pt;}
.y81{bottom:675.125994pt;}
.y10e{bottom:675.366361pt;}
.ya6{bottom:676.389560pt;}
.ycd{bottom:676.506721pt;}
.y149{bottom:680.980438pt;}
.ya{bottom:681.663936pt;}
.y4f{bottom:691.051380pt;}
.y80{bottom:691.072881pt;}
.y10d{bottom:691.313247pt;}
.ya5{bottom:692.336447pt;}
.ycc{bottom:692.453607pt;}
.y18f{bottom:692.923638pt;}
.y148{bottom:692.925355pt;}
.y9{bottom:697.617380pt;}
.y18e{bottom:704.868555pt;}
.y147{bottom:704.870273pt;}
.y4e{bottom:706.998267pt;}
.y7f{bottom:707.019767pt;}
.y10c{bottom:707.260134pt;}
.ya4{bottom:708.283333pt;}
.ycb{bottom:708.400494pt;}
.y8{bottom:713.570823pt;}
.y18d{bottom:716.813473pt;}
.y146{bottom:716.815190pt;}
.y4d{bottom:722.872267pt;}
.y7e{bottom:722.888547pt;}
.y10b{bottom:723.207021pt;}
.y18c{bottom:728.758390pt;}
.y145{bottom:728.760108pt;}
.y7{bottom:729.524267pt;}
.y4c{bottom:738.821867pt;}
.y7d{bottom:738.835433pt;}
.y10a{bottom:739.153907pt;}
.y18b{bottom:740.773045pt;}
.y144{bottom:740.774762pt;}
.y18a{bottom:752.717962pt;}
.y143{bottom:752.719680pt;}
.y6{bottom:753.410933pt;}
.yfa{bottom:754.122654pt;}
.y7c{bottom:754.782320pt;}
.y109{bottom:755.100794pt;}
.y189{bottom:764.662880pt;}
.y142{bottom:764.664598pt;}
.y7b{bottom:770.729207pt;}
.y4b{bottom:770.750707pt;}
.y108{bottom:771.047681pt;}
.yf9{bottom:771.731482pt;}
.y188{bottom:776.607798pt;}
.y141{bottom:776.609515pt;}
.y7a{bottom:786.676093pt;}
.y4a{bottom:786.697594pt;}
.y107{bottom:786.994567pt;}
.y187{bottom:788.552715pt;}
.y140{bottom:788.554433pt;}
.yf8{bottom:789.265922pt;}
.y186{bottom:800.497633pt;}
.y13f{bottom:800.499350pt;}
.y79{bottom:802.622980pt;}
.y49{bottom:802.644481pt;}
.y106{bottom:802.863347pt;}
.y4{bottom:804.585600pt;}
.yf7{bottom:806.874751pt;}
.y5{bottom:811.010800pt;}
.y185{bottom:812.512287pt;}
.y13e{bottom:812.514005pt;}
.y78{bottom:818.569867pt;}
.y48{bottom:818.591367pt;}
.y105{bottom:818.810233pt;}
.y184{bottom:824.457205pt;}
.y13d{bottom:824.458922pt;}
.yf6{bottom:824.483579pt;}
.y77{bottom:834.519467pt;}
.y47{bottom:834.538254pt;}
.y104{bottom:834.757120pt;}
.y3{bottom:836.395924pt;}
.y183{bottom:836.402122pt;}
.y13c{bottom:836.403840pt;}
.yf5{bottom:842.092408pt;}
.y182{bottom:848.347040pt;}
.y13b{bottom:848.348758pt;}
.y46{bottom:850.407033pt;}
.y103{bottom:850.704007pt;}
.yf4{bottom:859.701236pt;}
.y181{bottom:860.291958pt;}
.y13a{bottom:860.293675pt;}
.y45{bottom:866.353920pt;}
.y76{bottom:866.360316pt;}
.y102{bottom:866.650893pt;}
.y2{bottom:870.954133pt;}
.y180{bottom:872.236875pt;}
.y139{bottom:872.238593pt;}
.yf3{bottom:877.310065pt;}
.y44{bottom:882.300807pt;}
.y75{bottom:882.307203pt;}
.y101{bottom:882.597780pt;}
.y17f{bottom:884.251530pt;}
.y138{bottom:884.253247pt;}
.yf2{bottom:894.918893pt;}
.y17e{bottom:896.196447pt;}
.y137{bottom:896.198165pt;}
.y43{bottom:898.247693pt;}
.y74{bottom:898.254089pt;}
.y100{bottom:898.544667pt;}
.y17d{bottom:908.141365pt;}
.y136{bottom:908.143082pt;}
.yf1{bottom:912.453333pt;}
.y42{bottom:914.194580pt;}
.y73{bottom:914.200976pt;}
.yfe{bottom:914.494267pt;}
.y17c{bottom:920.086282pt;}
.y135{bottom:920.088000pt;}
.yff{bottom:920.239067pt;}
.y1{bottom:921.448533pt;}
.yf0{bottom:930.065867pt;}
.y41{bottom:930.141467pt;}
.y72{bottom:930.147863pt;}
.yfd{bottom:930.368267pt;}
.y134{bottom:932.013771pt;}
.y17b{bottom:932.031200pt;}
.y3d{bottom:991.292135pt;}
.ya3{bottom:991.313327pt;}
.yfc{bottom:991.326433pt;}
.y3c{bottom:1004.522667pt;}
.ya2{bottom:1004.543859pt;}
.yfb{bottom:1004.556965pt;}
.ha{height:19.151683pt;}
.he{height:25.129943pt;}
.h14{height:25.200000pt;}
.hc{height:26.816586pt;}
.h13{height:27.635200pt;}
.h11{height:27.966340pt;}
.h5{height:28.090929pt;}
.h9{height:28.731562pt;}
.h10{height:28.882640pt;}
.hb{height:30.648076pt;}
.hf{height:34.478412pt;}
.hd{height:35.244403pt;}
.h12{height:36.135056pt;}
.h8{height:37.699742pt;}
.h7{height:38.309518pt;}
.h6{height:39.458503pt;}
.h4{height:42.141008pt;}
.h2{height:49.802835pt;}
.h3{height:91.942689pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x10{left:79.143333pt;}
.x1{left:80.352800pt;}
.x2e{left:82.922800pt;}
.xe{left:84.207867pt;}
.x1f{left:86.257593pt;}
.x2d{left:95.541207pt;}
.x1d{left:96.529067pt;}
.x1e{left:107.489733pt;}
.x12{left:121.096000pt;}
.x13{left:130.166933pt;}
.x20{left:148.157467pt;}
.x3{left:149.820400pt;}
.x18{left:152.692933pt;}
.x21{left:158.059867pt;}
.x19{left:161.839333pt;}
.x4{left:163.804667pt;}
.x14{left:181.341733pt;}
.x15{left:190.412533pt;}
.x1a{left:223.218800pt;}
.x1b{left:232.365333pt;}
.x22{left:235.540133pt;}
.x11{left:238.110133pt;}
.x23{left:245.442400pt;}
.x26{left:247.787714pt;}
.x5{left:256.327467pt;}
.x6{left:266.305467pt;}
.x16{left:285.354267pt;}
.x17{left:290.418800pt;}
.x25{left:313.398400pt;}
.x1c{left:327.987333pt;}
.x7{left:333.581067pt;}
.x8{left:338.570000pt;}
.x2a{left:366.081191pt;}
.x27{left:378.573382pt;}
.x2b{left:382.488133pt;}
.xf{left:406.309436pt;}
.x24{left:416.958051pt;}
.x2c{left:426.259205pt;}
.x9{left:427.842400pt;}
.xa{left:432.831333pt;}
.x29{left:482.796800pt;}
.xb{left:511.294400pt;}
.xc{left:520.894400pt;}
.xd{left:626.116400pt;}
.x28{left:665.978794pt;}
}




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