
    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_22ce42c6dccac4c4ba9aeb0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_bd09077c03b8fad664bdce6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3cd00e98a9a1464e3c8723ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6e94745761b1851a0fa38441.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3edf7353a9442a1fa1d422ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.917000;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_9ac66b84f1d64c5b4ca8aab6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.137000;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_e6eba0a30289d0f93bf6a62e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8fdbb0d23c6552f218d013dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_a839698bf48f661c46286005.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.137000;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_d843fab2cef9e10da7c710f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_85e3b102cff67f4fe6cef2f5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b5d2fabfb9313d1caabfd759.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_f415dfcb925bdc02322983d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.845000;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_54b2b412e748873d99f70541.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_efc55eaa6c0c1672718d6ac8.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a0a356b3703c985018335923.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a35d26e91dada91c63503d5b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_15945636ef4eda8e856729c1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2892587b307d4a774fdcc0cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.795000;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:ff14;src:url('chunks/assets/font_0e4362746ced165424a04c66.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727000;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:ff15;src:url('chunks/assets/font_9d8d31440b9ebff972e08e09.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.705000;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:ff16;src:url('chunks/assets/font_e86e8c35d94eb11cb80c7c5c.woff2')format("woff");}.ff16{font-family:ff16;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;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a214c7e4cc2fe02e65f719b2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.665000;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:ff18;src:url('chunks/assets/font_d1b9f877af217152a866c5d3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.843000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v9{vertical-align:-62.766000px;}
.vb{vertical-align:-53.802000px;}
.va{vertical-align:-44.832000px;}
.vf{vertical-align:-22.854000px;}
.v3{vertical-align:-17.934000px;}
.vd{vertical-align:-14.610000px;}
.vc{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.682000px;}
.v5{vertical-align:13.452000px;}
.v6{vertical-align:20.610000px;}
.v1{vertical-align:21.690000px;}
.v7{vertical-align:23.538000px;}
.v2{vertical-align:44.832000px;}
.ve{vertical-align:56.790000px;}
.v4{vertical-align:66.378000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000388px;}
.ls11{letter-spacing:0.000973px;}
.ls2b{letter-spacing:0.000993px;}
.ls2f{letter-spacing:0.001698px;}
.lse{letter-spacing:0.002015px;}
.lsb{letter-spacing:0.002077px;}
.ls43{letter-spacing:0.002246px;}
.ls31{letter-spacing:0.002481px;}
.ls2c{letter-spacing:0.002646px;}
.ls1b{letter-spacing:0.002877px;}
.ls14{letter-spacing:0.003014px;}
.lsa{letter-spacing:0.003269px;}
.ls18{letter-spacing:0.003413px;}
.lsf{letter-spacing:0.003903px;}
.ls23{letter-spacing:0.004200px;}
.lsc{letter-spacing:0.005373px;}
.ls13{letter-spacing:0.005374px;}
.ls1c{letter-spacing:1.012868px;}
.ls16{letter-spacing:1.290579px;}
.ls2e{letter-spacing:1.655249px;}
.ls42{letter-spacing:2.797517px;}
.ls32{letter-spacing:2.985014px;}
.ls1{letter-spacing:2.985650px;}
.ls39{letter-spacing:2.986894px;}
.ls2d{letter-spacing:2.987373px;}
.ls30{letter-spacing:2.991014px;}
.ls41{letter-spacing:2.992894px;}
.ls28{letter-spacing:2.993373px;}
.ls0{letter-spacing:3.252356px;}
.ls20{letter-spacing:4.000868px;}
.ls26{letter-spacing:4.688646px;}
.ls3b{letter-spacing:4.841856px;}
.ls3d{letter-spacing:4.895654px;}
.ls40{letter-spacing:5.164646px;}
.ls3c{letter-spacing:5.379840px;}
.ls3e{letter-spacing:5.433638px;}
.ls3f{letter-spacing:5.487437px;}
.ls33{letter-spacing:5.974363px;}
.ls34{letter-spacing:5.980363px;}
.ls12{letter-spacing:11.153381px;}
.ls2{letter-spacing:12.282622px;}
.ls19{letter-spacing:12.951014px;}
.ls1f{letter-spacing:13.874338px;}
.ls1d{letter-spacing:15.881096px;}
.ls45{letter-spacing:15.912367px;}
.ls25{letter-spacing:16.601607px;}
.ls22{letter-spacing:16.602538px;}
.ls24{letter-spacing:16.607306px;}
.ls2a{letter-spacing:16.608538px;}
.ls1a{letter-spacing:17.134738px;}
.lsd{letter-spacing:17.441933px;}
.ls1e{letter-spacing:17.872868px;}
.ls7{letter-spacing:18.380316px;}
.ls44{letter-spacing:18.425937px;}
.ls3{letter-spacing:18.426622px;}
.ls37{letter-spacing:19.593014px;}
.ls21{letter-spacing:20.805269px;}
.ls29{letter-spacing:21.290646px;}
.ls27{letter-spacing:21.296646px;}
.ls3a{letter-spacing:21.412118px;}
.ls5{letter-spacing:22.664316px;}
.ls6{letter-spacing:22.670316px;}
.ls35{letter-spacing:23.068059px;}
.ls8{letter-spacing:29.883008px;}
.ls9{letter-spacing:29.890200px;}
.ls38{letter-spacing:32.238538px;}
.ls36{letter-spacing:76.362538px;}
.ls17{letter-spacing:119.860738px;}
.ls15{letter-spacing:120.520738px;}
.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;}
}
.ws9a{word-spacing:-59.775600px;}
.ws8f{word-spacing:-47.654765px;}
.ws95{word-spacing:-38.937826px;}
.ws69{word-spacing:-34.364992px;}
.ws92{word-spacing:-31.633157px;}
.ws7e{word-spacing:-29.881822px;}
.ws94{word-spacing:-29.015076px;}
.ws8d{word-spacing:-28.955301px;}
.wsa0{word-spacing:-22.320209px;}
.ws2d{word-spacing:-16.611639px;}
.ws35{word-spacing:-16.551864px;}
.ws7a{word-spacing:-16.432312px;}
.ws8c{word-spacing:-16.312761px;}
.ws84{word-spacing:-16.133434px;}
.ws5c{word-spacing:-15.715005px;}
.ws68{word-spacing:-15.655230px;}
.ws17{word-spacing:-15.375112px;}
.wsd7{word-spacing:-15.356352px;}
.ws41{word-spacing:-15.236800px;}
.ws51{word-spacing:-15.117249px;}
.wsdf{word-spacing:-14.997698px;}
.wsaf{word-spacing:-14.818371px;}
.ws60{word-spacing:-14.758596px;}
.wsfc{word-spacing:-14.622405px;}
.ws50{word-spacing:-14.399942px;}
.ws5f{word-spacing:-14.280391px;}
.ws10b{word-spacing:-14.030623px;}
.ws58{word-spacing:-13.981513px;}
.ws106{word-spacing:-13.815429px;}
.ws73{word-spacing:-13.802186px;}
.ws1d{word-spacing:-13.742962px;}
.ws40{word-spacing:-13.742410px;}
.wse3{word-spacing:-13.707832px;}
.ws10{word-spacing:-13.707221px;}
.ws5b{word-spacing:-13.682635px;}
.ws20{word-spacing:-13.623586px;}
.ws62{word-spacing:-13.622859px;}
.ws107{word-spacing:-13.546437px;}
.ws54{word-spacing:-13.503308px;}
.ws103{word-spacing:-13.492639px;}
.ws6e{word-spacing:-13.443532px;}
.wsb9{word-spacing:-13.385042px;}
.wsd5{word-spacing:-13.323981px;}
.ws48{word-spacing:-13.264206px;}
.wse{word-spacing:-13.223003px;}
.wsb6{word-spacing:-13.204430px;}
.ws7b{word-spacing:-13.084879px;}
.ws5d{word-spacing:-13.025103px;}
.wsf0{word-spacing:-12.954655px;}
.ws74{word-spacing:-12.905552px;}
.ws76{word-spacing:-12.786001px;}
.ws70{word-spacing:-12.726225px;}
.ws80{word-spacing:-12.606674px;}
.ws25{word-spacing:-12.547701px;}
.wsd0{word-spacing:-12.546898px;}
.ws26{word-spacing:-12.368307px;}
.ws55{word-spacing:-12.367572px;}
.ws96{word-spacing:-12.307796px;}
.ws9{word-spacing:-12.254675px;}
.wsf8{word-spacing:-12.201477px;}
.ws5a{word-spacing:-12.188245px;}
.ws9f{word-spacing:-12.128469px;}
.wse4{word-spacing:-12.093880px;}
.wsfa{word-spacing:-12.040082px;}
.ws42{word-spacing:-12.008918px;}
.ws1f{word-spacing:-11.949503px;}
.wsd8{word-spacing:-11.949142px;}
.ws112{word-spacing:-11.771090px;}
.ws32{word-spacing:-11.769816px;}
.ws111{word-spacing:-11.717292px;}
.ws3d{word-spacing:-11.710040px;}
.ws22{word-spacing:-11.650672px;}
.ws39{word-spacing:-11.590489px;}
.ws21{word-spacing:-11.531296px;}
.ws33{word-spacing:-11.530713px;}
.ws6d{word-spacing:-11.526950px;}
.ws3c{word-spacing:-11.470938px;}
.ws100{word-spacing:-11.394501px;}
.ws75{word-spacing:-11.351386px;}
.wsec{word-spacing:-11.340703px;}
.ws77{word-spacing:-11.291611px;}
.wseb{word-spacing:-11.286904px;}
.wscf{word-spacing:-11.231835px;}
.wsea{word-spacing:-11.017912px;}
.ws4f{word-spacing:-10.992733px;}
.wsd3{word-spacing:-10.932957px;}
.wsfb{word-spacing:-10.910316px;}
.ws59{word-spacing:-10.813406px;}
.wsfe{word-spacing:-10.748920px;}
.ws108{word-spacing:-10.695122px;}
.wsa{word-spacing:-10.694752px;}
.ws65{word-spacing:-10.693855px;}
.wsab{word-spacing:-10.634079px;}
.ws10a{word-spacing:-10.479928px;}
.ws109{word-spacing:-10.318533px;}
.ws47{word-spacing:-10.275426px;}
.wse7{word-spacing:-10.157138px;}
.ws13{word-spacing:-10.156577px;}
.wsad{word-spacing:-10.155874px;}
.wse2{word-spacing:-10.103340px;}
.ws5{word-spacing:-9.977247px;}
.ws2{word-spacing:-9.976948px;}
.ws4{word-spacing:-9.976649px;}
.ws34{word-spacing:-9.976548px;}
.ws57{word-spacing:-9.916772px;}
.ws6a{word-spacing:-9.737445px;}
.ws23{word-spacing:-9.618400px;}
.ws105{word-spacing:-9.565356px;}
.ws8a{word-spacing:-9.498343px;}
.ws102{word-spacing:-9.457759px;}
.ws53{word-spacing:-9.438567px;}
.ws63{word-spacing:-9.378792px;}
.ws2e{word-spacing:-9.319016px;}
.ws4d{word-spacing:-9.242565px;}
.ws6{word-spacing:-9.242207px;}
.wsef{word-spacing:-9.219494px;}
.wse9{word-spacing:-9.218892px;}
.wsd1{word-spacing:-9.199465px;}
.wsf6{word-spacing:-9.197107px;}
.ws28{word-spacing:-9.188767px;}
.ws15{word-spacing:-9.188195px;}
.wsae{word-spacing:-9.139689px;}
.ws10f{word-spacing:-9.081170px;}
.ws97{word-spacing:-9.079914px;}
.ws3e{word-spacing:-9.020138px;}
.ws4a{word-spacing:-8.960362px;}
.ws19{word-spacing:-8.900765px;}
.ws110{word-spacing:-8.865976px;}
.ws7f{word-spacing:-8.840811px;}
.ws6f{word-spacing:-8.781036px;}
.ws10d{word-spacing:-8.758380px;}
.ws3f{word-spacing:-8.721260px;}
.ws1c{word-spacing:-8.661952px;}
.ws7d{word-spacing:-8.661484px;}
.ws85{word-spacing:-8.601709px;}
.wse8{word-spacing:-8.543186px;}
.wsdd{word-spacing:-8.541933px;}
.wsff{word-spacing:-8.489388px;}
.ws2f{word-spacing:-8.482158px;}
.ws64{word-spacing:-8.422382px;}
.wsf2{word-spacing:-8.381791px;}
.ws2a{word-spacing:-8.362606px;}
.ws2b{word-spacing:-8.302831px;}
.wsd2{word-spacing:-8.183280px;}
.wsd{word-spacing:-8.166448px;}
.ws7c{word-spacing:-8.123504px;}
.ws30{word-spacing:-8.063728px;}
.ws104{word-spacing:-8.059000px;}
.wsb7{word-spacing:-8.003953px;}
.wsee{word-spacing:-7.951404px;}
.wsda{word-spacing:-7.944177px;}
.wsfd{word-spacing:-7.790008px;}
.wsf{word-spacing:-7.789661px;}
.ws52{word-spacing:-7.645299px;}
.ws36{word-spacing:-7.525748px;}
.ws46{word-spacing:-7.465972px;}
.ws1e{word-spacing:-7.346716px;}
.ws4e{word-spacing:-7.346421px;}
.wsf4{word-spacing:-7.305823px;}
.ws37{word-spacing:-7.286646px;}
.ws6b{word-spacing:-7.226870px;}
.wsa6{word-spacing:-7.107319px;}
.ws4b{word-spacing:-6.927992px;}
.ws1b{word-spacing:-6.927912px;}
.wsb1{word-spacing:-6.868216px;}
.wsb4{word-spacing:-6.808441px;}
.wsb3{word-spacing:-6.748665px;}
.ws2c{word-spacing:-6.629114px;}
.wsb0{word-spacing:-6.569338px;}
.ws3a{word-spacing:-6.390012px;}
.ws29{word-spacing:-6.330236px;}
.wscd{word-spacing:-6.270460px;}
.ws78{word-spacing:-6.210685px;}
.ws43{word-spacing:-6.150909px;}
.ws9b{word-spacing:-6.091134px;}
.ws10e{word-spacing:-6.068460px;}
.ws66{word-spacing:-6.031358px;}
.wse1{word-spacing:-6.014661px;}
.ws88{word-spacing:-5.971582px;}
.wsf1{word-spacing:-5.853266px;}
.ws44{word-spacing:-5.852031px;}
.ws79{word-spacing:-5.732480px;}
.wsdc{word-spacing:-5.612929px;}
.ws12{word-spacing:-5.584186px;}
.wsc6{word-spacing:-5.541235px;}
.ws86{word-spacing:-5.493378px;}
.wsc3{word-spacing:-5.487437px;}
.ws24{word-spacing:-5.433820px;}
.wsc1{word-spacing:-5.433638px;}
.ws61{word-spacing:-5.373826px;}
.ws89{word-spacing:-5.254275px;}
.wsc7{word-spacing:-5.218445px;}
.ws82{word-spacing:-5.194500px;}
.wsb2{word-spacing:-5.015173px;}
.wsed{word-spacing:-4.938693px;}
.wsbd{word-spacing:-4.895654px;}
.wsa9{word-spacing:-4.716295px;}
.wsdb{word-spacing:-4.596744px;}
.ws81{word-spacing:-4.536968px;}
.ws11{word-spacing:-4.508428px;}
.wsf5{word-spacing:-4.508306px;}
.ws9e{word-spacing:-4.477192px;}
.wsd4{word-spacing:-4.417417px;}
.ws4c{word-spacing:-4.357641px;}
.ws45{word-spacing:-4.058763px;}
.wsa8{word-spacing:-3.998988px;}
.wsf3{word-spacing:-3.916524px;}
.ws9c{word-spacing:-3.879436px;}
.wsb8{word-spacing:-3.520783px;}
.wsd9{word-spacing:-3.401232px;}
.ws87{word-spacing:-3.341456px;}
.wsa4{word-spacing:-3.162129px;}
.wse6{word-spacing:-2.851315px;}
.wsf9{word-spacing:-2.840556px;}
.ws38{word-spacing:-2.624149px;}
.wsd6{word-spacing:-2.444822px;}
.ws1a{word-spacing:-2.385142px;}
.wsb5{word-spacing:-2.265495px;}
.ws14{word-spacing:-2.140919px;}
.ws56{word-spacing:-1.966617px;}
.wse0{word-spacing:-1.934547px;}
.wsc{word-spacing:-1.872155px;}
.wsf7{word-spacing:-1.549394px;}
.ws31{word-spacing:-1.548188px;}
.wsde{word-spacing:-1.368861px;}
.ws49{word-spacing:-1.309086px;}
.wsa3{word-spacing:-1.249310px;}
.wse5{word-spacing:-0.850015px;}
.wsa7{word-spacing:-0.591778px;}
.ws101{word-spacing:-0.581023px;}
.ws83{word-spacing:-0.472227px;}
.wsb{word-spacing:-0.419609px;}
.ws8b{word-spacing:-0.412452px;}
.wsce{word-spacing:-0.173349px;}
.ws6c{word-spacing:-0.059776px;}
.wsac{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.053796px;}
.ws3{word-spacing:-0.041844px;}
.ws93{word-spacing:-0.041843px;}
.ws91{word-spacing:-0.029888px;}
.ws27{word-spacing:0.000000px;}
.ws10c{word-spacing:0.494945px;}
.ws9d{word-spacing:2.217675px;}
.wsc2{word-spacing:2.797517px;}
.wsa2{word-spacing:7.012490px;}
.wsbf{word-spacing:7.477978px;}
.wsc0{word-spacing:7.585574px;}
.wsca{word-spacing:7.693171px;}
.wsbb{word-spacing:7.746970px;}
.wscb{word-spacing:7.800768px;}
.wscc{word-spacing:7.854566px;}
.wsbe{word-spacing:7.962163px;}
.wsc8{word-spacing:8.177357px;}
.wsba{word-spacing:8.392550px;}
.wsc4{word-spacing:9.360922px;}
.wsc9{word-spacing:9.522317px;}
.ws67{word-spacing:10.544486px;}
.ws72{word-spacing:15.983888px;}
.ws8e{word-spacing:16.530415px;}
.ws99{word-spacing:16.532215px;}
.ws90{word-spacing:16.557841px;}
.ws71{word-spacing:17.063888px;}
.ws98{word-spacing:19.551198px;}
.wsa5{word-spacing:26.662312px;}
.wsaa{word-spacing:26.755738px;}
.ws3b{word-spacing:26.827469px;}
.ws5e{word-spacing:27.544781px;}
.ws16{word-spacing:27.619242px;}
.ws8{word-spacing:29.845661px;}
.wsa1{word-spacing:29.888103px;}
.ws0{word-spacing:30.384828px;}
.wsc5{word-spacing:31.149274px;}
.ws1{word-spacing:31.417740px;}
.wsbc{word-spacing:40.886784px;}
.ws18{word-spacing:80.624520px;}
._b{margin-left:-6.742733px;}
._1{margin-left:-4.961574px;}
._1d{margin-left:-3.913409px;}
._4{margin-left:-2.833533px;}
._3{margin-left:-1.649390px;}
._5{width:1.454267px;}
._0{width:2.496290px;}
._2{width:3.899953px;}
._13{width:5.164646px;}
._18{width:6.183365px;}
._16{width:7.183380px;}
._19{width:8.614374px;}
._15{width:10.141430px;}
._1a{width:11.407849px;}
._1b{width:12.564083px;}
._11{width:14.272635px;}
._1e{width:17.667439px;}
._6{width:18.804317px;}
._10{width:20.925840px;}
._7{width:24.279027px;}
._1c{width:29.911910px;}
._d{width:31.895224px;}
._e{width:33.152567px;}
._1f{width:37.038718px;}
._14{width:42.016550px;}
._17{width:43.442938px;}
._f{width:44.627111px;}
._8{width:61.918857px;}
._c{width:68.741940px;}
._a{width:80.697600px;}
._12{width:143.049946px;}
._9{width:170.648525px;}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fsa{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs2{font-size:41.844000px;}
.fs3{font-size:53.796000px;}
.fs5{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs7{font-size:71.731200px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y50{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y112{bottom:198.547500px;}
.ycc{bottom:199.330500px;}
.y15e{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.y111{bottom:214.986000px;}
.ycb{bottom:219.319500px;}
.y137{bottom:221.301000px;}
.y15d{bottom:226.113000px;}
.y24{bottom:229.482000px;}
.y110{bottom:231.424500px;}
.yca{bottom:237.252000px;}
.y136{bottom:239.233500px;}
.y15c{bottom:242.550000px;}
.ya5{bottom:247.117500px;}
.y23{bottom:247.414500px;}
.y10f{bottom:247.863000px;}
.ye6{bottom:248.863500px;}
.ye9{bottom:250.716000px;}
.yc9{bottom:255.184500px;}
.y135{bottom:257.167500px;}
.y15b{bottom:258.607500px;}
.y10e{bottom:264.301500px;}
.y22{bottom:265.347000px;}
.ye5{bottom:266.796000px;}
.ye8{bottom:267.153000px;}
.yc8{bottom:273.117000px;}
.y15a{bottom:275.046000px;}
.y134{bottom:275.100000px;}
.ya4{bottom:276.258000px;}
.y10d{bottom:280.740000px;}
.y7c{bottom:282.091500px;}
.ya3{bottom:282.982500px;}
.y4f{bottom:283.279500px;}
.y21{bottom:283.281000px;}
.ye4{bottom:284.728500px;}
.y159{bottom:291.484500px;}
.y133{bottom:293.032500px;}
.y10c{bottom:297.178500px;}
.y6f{bottom:297.304500px;}
.y7b{bottom:300.024000px;}
.ya2{bottom:300.915000px;}
.y20{bottom:301.213500px;}
.y4e{bottom:301.806000px;}
.ye3{bottom:302.661000px;}
.yc7{bottom:304.666500px;}
.y158{bottom:307.923000px;}
.y132{bottom:310.965000px;}
.y10b{bottom:313.617000px;}
.y7a{bottom:317.956500px;}
.ya1{bottom:318.847500px;}
.y1f{bottom:319.146000px;}
.y4d{bottom:319.738500px;}
.ye2{bottom:320.593500px;}
.y157{bottom:323.980500px;}
.y131{bottom:328.897500px;}
.y10a{bottom:330.055500px;}
.ya0{bottom:332.653500px;}
.y79{bottom:335.889000px;}
.y1e{bottom:337.078500px;}
.y4c{bottom:337.671000px;}
.y9f{bottom:337.807500px;}
.y156{bottom:340.419000px;}
.y186{bottom:341.769000px;}
.y6e{bottom:344.205000px;}
.y109{bottom:346.494000px;}
.y130{bottom:346.830000px;}
.yc6{bottom:348.171000px;}
.y78{bottom:353.821500px;}
.y1d{bottom:355.011000px;}
.ydc{bottom:355.333500px;}
.y9e{bottom:355.443000px;}
.y4b{bottom:355.603500px;}
.y155{bottom:356.857500px;}
.ye1{bottom:357.723000px;}
.y185{bottom:358.207500px;}
.y6d{bottom:362.137500px;}
.y108{bottom:362.931000px;}
.y12f{bottom:364.764000px;}
.yc5{bottom:366.103500px;}
.y77{bottom:371.754000px;}
.y154{bottom:372.915000px;}
.y1c{bottom:372.943500px;}
.ydb{bottom:373.266000px;}
.y9d{bottom:373.375500px;}
.y4a{bottom:373.536000px;}
.y184{bottom:374.644500px;}
.y107{bottom:379.369500px;}
.y6c{bottom:380.071500px;}
.y12e{bottom:382.696500px;}
.yc4{bottom:384.036000px;}
.y153{bottom:389.353500px;}
.y76{bottom:389.688000px;}
.y1b{bottom:390.877500px;}
.y183{bottom:391.083000px;}
.yda{bottom:391.198500px;}
.y9c{bottom:391.308000px;}
.y49{bottom:391.468500px;}
.y106{bottom:395.808000px;}
.y6b{bottom:398.004000px;}
.y12d{bottom:400.629000px;}
.yc3{bottom:400.890000px;}
.y152{bottom:405.411000px;}
.y182{bottom:407.521500px;}
.y75{bottom:407.620500px;}
.y1a{bottom:408.810000px;}
.y9b{bottom:408.943500px;}
.yd9{bottom:409.131000px;}
.y48{bottom:409.402500px;}
.ye0{bottom:409.795500px;}
.y105{bottom:412.246500px;}
.y6a{bottom:415.936500px;}
.y12c{bottom:418.561500px;}
.yc2{bottom:418.822500px;}
.y151{bottom:421.849500px;}
.y181{bottom:423.960000px;}
.y9a{bottom:423.963000px;}
.y74{bottom:425.553000px;}
.y19{bottom:426.742500px;}
.yd8{bottom:427.063500px;}
.y47{bottom:427.335000px;}
.ydf{bottom:427.728000px;}
.y104{bottom:428.685000px;}
.y99{bottom:429.115500px;}
.y69{bottom:433.869000px;}
.y12b{bottom:436.494000px;}
.yc1{bottom:436.755000px;}
.y150{bottom:437.907000px;}
.y180{bottom:440.398500px;}
.y73{bottom:443.485500px;}
.y18{bottom:444.675000px;}
.y103{bottom:445.123500px;}
.y46{bottom:445.267500px;}
.yd7{bottom:445.318500px;}
.y98{bottom:449.523000px;}
.y14f{bottom:454.345500px;}
.y12a{bottom:454.426500px;}
.y97{bottom:454.675500px;}
.yc0{bottom:454.687500px;}
.y17f{bottom:456.837000px;}
.y102{bottom:461.562000px;}
.y17{bottom:462.607500px;}
.y45{bottom:463.200000px;}
.yd6{bottom:463.251000px;}
.y14e{bottom:470.784000px;}
.ybf{bottom:471.541500px;}
.y68{bottom:471.804000px;}
.y17e{bottom:473.275500px;}
.y72{bottom:475.173000px;}
.y96{bottom:477.742500px;}
.y101{bottom:478.000500px;}
.y44{bottom:481.132500px;}
.yd5{bottom:481.183500px;}
.yde{bottom:482.197500px;}
.y14d{bottom:486.841500px;}
.y129{bottom:488.280000px;}
.ybe{bottom:489.474000px;}
.y17d{bottom:489.714000px;}
.y67{bottom:492.726000px;}
.y71{bottom:493.105500px;}
.y100{bottom:494.439000px;}
.y95{bottom:495.079500px;}
.y16{bottom:498.046500px;}
.y43{bottom:499.065000px;}
.yd4{bottom:499.117500px;}
.y14c{bottom:503.278500px;}
.y17c{bottom:506.152500px;}
.ybd{bottom:507.406500px;}
.y94{bottom:513.012000px;}
.y42{bottom:516.999000px;}
.yd3{bottom:517.050000px;}
.y14b{bottom:519.336000px;}
.yff{bottom:521.175000px;}
.y17b{bottom:522.591000px;}
.y93{bottom:530.944500px;}
.ybc{bottom:531.898500px;}
.y128{bottom:534.087000px;}
.y14a{bottom:535.774500px;}
.y17a{bottom:539.028000px;}
.yfe{bottom:539.107500px;}
.y66{bottom:542.614500px;}
.y15{bottom:548.260500px;}
.y92{bottom:548.877000px;}
.y41{bottom:549.849000px;}
.y127{bottom:552.021000px;}
.y149{bottom:552.213000px;}
.y179{bottom:555.466500px;}
.yfd{bottom:557.040000px;}
.ybb{bottom:557.470500px;}
.y65{bottom:560.548500px;}
.y14{bottom:564.699000px;}
.y91{bottom:566.809500px;}
.y148{bottom:568.651500px;}
.yd2{bottom:569.352000px;}
.y126{bottom:569.953500px;}
.y178{bottom:571.905000px;}
.y70{bottom:573.822000px;}
.yba{bottom:575.403000px;}
.y64{bottom:578.481000px;}
.y147{bottom:584.709000px;}
.y90{bottom:584.743500px;}
.y125{bottom:587.886000px;}
.y177{bottom:588.343500px;}
.yfc{bottom:588.559500px;}
.y40{bottom:588.678000px;}
.yb9{bottom:592.255500px;}
.y63{bottom:596.827500px;}
.y13{bottom:597.468000px;}
.y146{bottom:601.147500px;}
.y8f{bottom:602.676000px;}
.y176{bottom:604.782000px;}
.yfb{bottom:604.998000px;}
.y124{bottom:605.818500px;}
.yb8{bottom:610.189500px;}
.y12{bottom:613.906500px;}
.y62{bottom:614.760000px;}
.y145{bottom:617.586000px;}
.y175{bottom:621.220500px;}
.yfa{bottom:621.436500px;}
.y123{bottom:623.751000px;}
.y11{bottom:630.345000px;}
.y61{bottom:632.692500px;}
.y144{bottom:633.643500px;}
.y8e{bottom:633.765000px;}
.yb7{bottom:634.681500px;}
.y174{bottom:637.659000px;}
.yf9{bottom:637.873500px;}
.y3f{bottom:639.462000px;}
.y122{bottom:641.685000px;}
.y10{bottom:646.783500px;}
.y143{bottom:650.082000px;}
.y60{bottom:650.625000px;}
.y8d{bottom:651.699000px;}
.yb6{bottom:652.614000px;}
.y173{bottom:654.097500px;}
.yf8{bottom:654.312000px;}
.y3e{bottom:657.394500px;}
.y121{bottom:659.617500px;}
.yf{bottom:663.222000px;}
.y142{bottom:666.520500px;}
.y5f{bottom:668.559000px;}
.y8c{bottom:669.631500px;}
.y172{bottom:670.536000px;}
.yb5{bottom:670.546500px;}
.yf7{bottom:670.750500px;}
.y3d{bottom:675.327000px;}
.y120{bottom:677.550000px;}
.ye{bottom:679.660500px;}
.y141{bottom:682.959000px;}
.y5e{bottom:686.905500px;}
.y171{bottom:686.974500px;}
.yf6{bottom:687.189000px;}
.y8b{bottom:687.564000px;}
.yb4{bottom:688.479000px;}
.y3c{bottom:693.261000px;}
.y11f{bottom:695.482500px;}
.yd{bottom:696.099000px;}
.y140{bottom:699.397500px;}
.y170{bottom:703.411500px;}
.yf5{bottom:703.627500px;}
.y5d{bottom:704.838000px;}
.y8a{bottom:705.496500px;}
.y3b{bottom:711.193500px;}
.yc{bottom:712.537500px;}
.y11e{bottom:713.415000px;}
.y13f{bottom:715.834500px;}
.y16f{bottom:719.850000px;}
.yf4{bottom:720.066000px;}
.y5c{bottom:722.770500px;}
.yb3{bottom:725.155500px;}
.yb{bottom:728.976000px;}
.y3a{bottom:729.126000px;}
.y11d{bottom:731.347500px;}
.y16e{bottom:736.288500px;}
.yf3{bottom:736.504500px;}
.y5b{bottom:740.703000px;}
.yb2{bottom:743.013000px;}
.ya{bottom:745.414500px;}
.y39{bottom:747.058500px;}
.y13e{bottom:748.302000px;}
.y89{bottom:749.137500px;}
.y11c{bottom:749.281500px;}
.y16d{bottom:752.727000px;}
.y5a{bottom:758.635500px;}
.ydd{bottom:761.527500px;}
.y9{bottom:761.851500px;}
.yf2{bottom:763.240500px;}
.ye7{bottom:763.948500px;}
.y38{bottom:765.583500px;}
.y88{bottom:767.070000px;}
.y11b{bottom:767.214000px;}
.y16c{bottom:769.165500px;}
.yb1{bottom:772.651500px;}
.y59{bottom:776.568000px;}
.y8{bottom:778.290000px;}
.yf1{bottom:781.173000px;}
.y37{bottom:783.517500px;}
.y87{bottom:784.705500px;}
.y11a{bottom:785.146500px;}
.y16b{bottom:785.604000px;}
.yb0{bottom:790.584000px;}
.y58{bottom:794.502000px;}
.y13d{bottom:794.599500px;}
.y7{bottom:794.728500px;}
.y36{bottom:801.450000px;}
.y16a{bottom:802.042500px;}
.y86{bottom:802.638000px;}
.y119{bottom:803.079000px;}
.yaf{bottom:808.518000px;}
.y57{bottom:812.434500px;}
.y13c{bottom:812.532000px;}
.yf0{bottom:812.692500px;}
.y169{bottom:818.481000px;}
.y35{bottom:819.382500px;}
.y85{bottom:820.570500px;}
.y118{bottom:821.011500px;}
.yae{bottom:825.370500px;}
.yef{bottom:829.131000px;}
.y56{bottom:830.367000px;}
.y13b{bottom:830.464500px;}
.y168{bottom:834.919500px;}
.y34{bottom:837.315000px;}
.y84{bottom:838.503000px;}
.y117{bottom:838.944000px;}
.yad{bottom:843.303000px;}
.y13a{bottom:848.397000px;}
.y55{bottom:848.713500px;}
.y167{bottom:851.358000px;}
.y6{bottom:854.763000px;}
.y33{bottom:855.247500px;}
.yee{bottom:855.867000px;}
.y83{bottom:856.435500px;}
.y116{bottom:856.878000px;}
.yac{bottom:861.237000px;}
.y139{bottom:866.331000px;}
.y54{bottom:866.646000px;}
.y166{bottom:867.796500px;}
.y5{bottom:871.201500px;}
.y32{bottom:873.180000px;}
.y82{bottom:874.071000px;}
.y115{bottom:874.810500px;}
.yab{bottom:879.169500px;}
.y165{bottom:884.233500px;}
.y53{bottom:884.578500px;}
.yed{bottom:887.385000px;}
.y31{bottom:891.114000px;}
.y81{bottom:892.003500px;}
.y114{bottom:892.743000px;}
.yd1{bottom:895.753500px;}
.yaa{bottom:897.102000px;}
.y164{bottom:900.672000px;}
.y4{bottom:902.521500px;}
.yec{bottom:903.823500px;}
.y30{bottom:909.046500px;}
.y138{bottom:909.639000px;}
.y80{bottom:909.936000px;}
.yd0{bottom:913.686000px;}
.ya9{bottom:915.034500px;}
.y52{bottom:916.536000px;}
.y163{bottom:917.110500px;}
.yeb{bottom:920.262000px;}
.y3{bottom:920.455500px;}
.y113{bottom:920.617500px;}
.y2f{bottom:927.571500px;}
.y7f{bottom:927.870000px;}
.ya8{bottom:930.808500px;}
.ycf{bottom:931.618500px;}
.y162{bottom:933.549000px;}
.y51{bottom:934.468500px;}
.yea{bottom:936.700500px;}
.y2e{bottom:945.504000px;}
.y7e{bottom:945.802500px;}
.ya7{bottom:947.662500px;}
.yce{bottom:949.873500px;}
.y161{bottom:949.987500px;}
.y2d{bottom:963.436500px;}
.y7d{bottom:963.735000px;}
.ya6{bottom:965.595000px;}
.y160{bottom:966.426000px;}
.ycd{bottom:967.806000px;}
.y2{bottom:972.403500px;}
.y2c{bottom:981.370500px;}
.y15f{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.y2b{bottom:1038.157500px;}
.y2a{bottom:1067.505000px;}
.y29{bottom:1093.327500px;}
.y28{bottom:1119.150000px;}
.y27{bottom:1144.972500px;}
.h12{height:0.059476px;}
.h17{height:23.886490px;}
.h14{height:31.382100px;}
.h19{height:33.193613px;}
.h5{height:37.442016px;}
.h18{height:37.443686px;}
.hc{height:41.902696px;}
.h15{height:42.141798px;}
.ha{height:44.891476px;}
.h7{height:44.893278px;}
.h4{height:46.587336px;}
.h9{height:46.589414px;}
.h6{height:50.282730px;}
.hb{height:50.283571px;}
.h16{height:50.770746px;}
.h1a{height:50.776746px;}
.h2{height:53.073000px;}
.h3{height:53.079000px;}
.h10{height:54.920100px;}
.h13{height:56.790000px;}
.h1{height:60.425352px;}
.h8{height:61.286112px;}
.he{height:65.501476px;}
.h11{height:65.507476px;}
.hd{height:66.380100px;}
.hf{height:66.384000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:59.160000px;}
.x1{left:202.147500px;}
.x4{left:203.367000px;}
.x17{left:206.259000px;}
.x1b{left:209.056500px;}
.xd{left:211.489500px;}
.x7{left:224.563500px;}
.xe{left:227.551500px;}
.x3{left:229.513500px;}
.xb{left:232.401000px;}
.x1a{left:233.409000px;}
.xf{left:238.012500px;}
.xa{left:241.282500px;}
.x6{left:244.666500px;}
.x12{left:252.957000px;}
.x14{left:294.355500px;}
.x2{left:313.966500px;}
.x18{left:337.701000px;}
.x13{left:344.740500px;}
.x19{left:353.089500px;}
.x5{left:373.275000px;}
.xc{left:391.023000px;}
.x9{left:416.232000px;}
.x10{left:457.158000px;}
.x11{left:497.497500px;}
.x15{left:612.615000px;}
.x16{left:639.528000px;}
@media print{
.v9{vertical-align:-55.792000pt;}
.vb{vertical-align:-47.824000pt;}
.va{vertical-align:-39.850667pt;}
.vf{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.941333pt;}
.vd{vertical-align:-12.986667pt;}
.vc{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.384000pt;}
.v5{vertical-align:11.957333pt;}
.v6{vertical-align:18.320000pt;}
.v1{vertical-align:19.280000pt;}
.v7{vertical-align:20.922667pt;}
.v2{vertical-align:39.850667pt;}
.ve{vertical-align:50.480000pt;}
.v4{vertical-align:59.002667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000345pt;}
.ls11{letter-spacing:0.000865pt;}
.ls2b{letter-spacing:0.000882pt;}
.ls2f{letter-spacing:0.001509pt;}
.lse{letter-spacing:0.001791pt;}
.lsb{letter-spacing:0.001846pt;}
.ls43{letter-spacing:0.001997pt;}
.ls31{letter-spacing:0.002205pt;}
.ls2c{letter-spacing:0.002352pt;}
.ls1b{letter-spacing:0.002557pt;}
.ls14{letter-spacing:0.002679pt;}
.lsa{letter-spacing:0.002906pt;}
.ls18{letter-spacing:0.003033pt;}
.lsf{letter-spacing:0.003469pt;}
.ls23{letter-spacing:0.003733pt;}
.lsc{letter-spacing:0.004776pt;}
.ls13{letter-spacing:0.004777pt;}
.ls1c{letter-spacing:0.900327pt;}
.ls16{letter-spacing:1.147181pt;}
.ls2e{letter-spacing:1.471333pt;}
.ls42{letter-spacing:2.486682pt;}
.ls32{letter-spacing:2.653345pt;}
.ls1{letter-spacing:2.653911pt;}
.ls39{letter-spacing:2.655017pt;}
.ls2d{letter-spacing:2.655443pt;}
.ls30{letter-spacing:2.658679pt;}
.ls41{letter-spacing:2.660350pt;}
.ls28{letter-spacing:2.660776pt;}
.ls0{letter-spacing:2.890983pt;}
.ls20{letter-spacing:3.556327pt;}
.ls26{letter-spacing:4.167686pt;}
.ls3b{letter-spacing:4.303872pt;}
.ls3d{letter-spacing:4.351693pt;}
.ls40{letter-spacing:4.590797pt;}
.ls3c{letter-spacing:4.782080pt;}
.ls3e{letter-spacing:4.829901pt;}
.ls3f{letter-spacing:4.877722pt;}
.ls33{letter-spacing:5.310545pt;}
.ls34{letter-spacing:5.315879pt;}
.ls12{letter-spacing:9.914116pt;}
.ls2{letter-spacing:10.917886pt;}
.ls19{letter-spacing:11.512012pt;}
.ls1f{letter-spacing:12.332745pt;}
.ls1d{letter-spacing:14.116530pt;}
.ls45{letter-spacing:14.144326pt;}
.ls25{letter-spacing:14.756984pt;}
.ls22{letter-spacing:14.757812pt;}
.ls24{letter-spacing:14.762050pt;}
.ls2a{letter-spacing:14.763145pt;}
.ls1a{letter-spacing:15.230878pt;}
.lsd{letter-spacing:15.503940pt;}
.ls1e{letter-spacing:15.886993pt;}
.ls7{letter-spacing:16.338059pt;}
.ls44{letter-spacing:16.378610pt;}
.ls3{letter-spacing:16.379219pt;}
.ls37{letter-spacing:17.416012pt;}
.ls21{letter-spacing:18.493573pt;}
.ls29{letter-spacing:18.925019pt;}
.ls27{letter-spacing:18.930352pt;}
.ls3a{letter-spacing:19.032994pt;}
.ls5{letter-spacing:20.146059pt;}
.ls6{letter-spacing:20.151392pt;}
.ls35{letter-spacing:20.504941pt;}
.ls8{letter-spacing:26.562673pt;}
.ls9{letter-spacing:26.569067pt;}
.ls38{letter-spacing:28.656479pt;}
.ls36{letter-spacing:67.877812pt;}
.ls17{letter-spacing:106.542878pt;}
.ls15{letter-spacing:107.129545pt;}
.ws9a{word-spacing:-53.133867pt;}
.ws8f{word-spacing:-42.359791pt;}
.ws95{word-spacing:-34.611401pt;}
.ws69{word-spacing:-30.546660pt;}
.ws92{word-spacing:-28.118362pt;}
.ws7e{word-spacing:-26.561620pt;}
.ws94{word-spacing:-25.791179pt;}
.ws8d{word-spacing:-25.738045pt;}
.wsa0{word-spacing:-19.840186pt;}
.ws2d{word-spacing:-14.765902pt;}
.ws35{word-spacing:-14.712768pt;}
.ws7a{word-spacing:-14.606500pt;}
.ws8c{word-spacing:-14.500232pt;}
.ws84{word-spacing:-14.340831pt;}
.ws5c{word-spacing:-13.968894pt;}
.ws68{word-spacing:-13.915760pt;}
.ws17{word-spacing:-13.666766pt;}
.wsd7{word-spacing:-13.650090pt;}
.ws41{word-spacing:-13.543823pt;}
.ws51{word-spacing:-13.437555pt;}
.wsdf{word-spacing:-13.331287pt;}
.wsaf{word-spacing:-13.171886pt;}
.ws60{word-spacing:-13.118752pt;}
.wsfc{word-spacing:-12.997693pt;}
.ws50{word-spacing:-12.799948pt;}
.ws5f{word-spacing:-12.693681pt;}
.ws10b{word-spacing:-12.471665pt;}
.ws58{word-spacing:-12.428011pt;}
.ws106{word-spacing:-12.280381pt;}
.ws73{word-spacing:-12.268610pt;}
.ws1d{word-spacing:-12.215966pt;}
.ws40{word-spacing:-12.215476pt;}
.wse3{word-spacing:-12.184740pt;}
.ws10{word-spacing:-12.184196pt;}
.ws5b{word-spacing:-12.162342pt;}
.ws20{word-spacing:-12.109854pt;}
.ws62{word-spacing:-12.109208pt;}
.ws107{word-spacing:-12.041277pt;}
.ws54{word-spacing:-12.002940pt;}
.ws103{word-spacing:-11.993457pt;}
.ws6e{word-spacing:-11.949807pt;}
.wsb9{word-spacing:-11.897815pt;}
.wsd5{word-spacing:-11.843539pt;}
.ws48{word-spacing:-11.790405pt;}
.wse{word-spacing:-11.753780pt;}
.wsb6{word-spacing:-11.737271pt;}
.ws7b{word-spacing:-11.631003pt;}
.ws5d{word-spacing:-11.577870pt;}
.wsf0{word-spacing:-11.515249pt;}
.ws74{word-spacing:-11.471602pt;}
.ws76{word-spacing:-11.365334pt;}
.ws70{word-spacing:-11.312200pt;}
.ws80{word-spacing:-11.205932pt;}
.ws25{word-spacing:-11.153512pt;}
.wsd0{word-spacing:-11.152799pt;}
.ws26{word-spacing:-10.994051pt;}
.ws55{word-spacing:-10.993397pt;}
.ws96{word-spacing:-10.940263pt;}
.ws9{word-spacing:-10.893044pt;}
.wsf8{word-spacing:-10.845757pt;}
.ws5a{word-spacing:-10.833995pt;}
.ws9f{word-spacing:-10.780862pt;}
.wse4{word-spacing:-10.750116pt;}
.wsfa{word-spacing:-10.702295pt;}
.ws42{word-spacing:-10.674594pt;}
.ws1f{word-spacing:-10.621780pt;}
.wsd8{word-spacing:-10.621460pt;}
.ws112{word-spacing:-10.463191pt;}
.ws32{word-spacing:-10.462058pt;}
.ws111{word-spacing:-10.415370pt;}
.ws3d{word-spacing:-10.408924pt;}
.ws22{word-spacing:-10.356153pt;}
.ws39{word-spacing:-10.302657pt;}
.ws21{word-spacing:-10.250041pt;}
.ws33{word-spacing:-10.249523pt;}
.ws6d{word-spacing:-10.246178pt;}
.ws3c{word-spacing:-10.196389pt;}
.ws100{word-spacing:-10.128445pt;}
.ws75{word-spacing:-10.090121pt;}
.wsec{word-spacing:-10.080625pt;}
.ws77{word-spacing:-10.036987pt;}
.wseb{word-spacing:-10.032804pt;}
.wscf{word-spacing:-9.983854pt;}
.wsea{word-spacing:-9.793700pt;}
.ws4f{word-spacing:-9.771318pt;}
.wsd3{word-spacing:-9.718184pt;}
.wsfb{word-spacing:-9.698058pt;}
.ws59{word-spacing:-9.611916pt;}
.wsfe{word-spacing:-9.554596pt;}
.ws108{word-spacing:-9.506775pt;}
.wsa{word-spacing:-9.506447pt;}
.ws65{word-spacing:-9.505649pt;}
.wsab{word-spacing:-9.452515pt;}
.ws10a{word-spacing:-9.315492pt;}
.ws109{word-spacing:-9.172029pt;}
.ws47{word-spacing:-9.133712pt;}
.wse7{word-spacing:-9.028567pt;}
.ws13{word-spacing:-9.028069pt;}
.wsad{word-spacing:-9.027444pt;}
.wse2{word-spacing:-8.980746pt;}
.ws5{word-spacing:-8.868664pt;}
.ws2{word-spacing:-8.868398pt;}
.ws4{word-spacing:-8.868133pt;}
.ws34{word-spacing:-8.868042pt;}
.ws57{word-spacing:-8.814908pt;}
.ws6a{word-spacing:-8.655507pt;}
.ws23{word-spacing:-8.549689pt;}
.ws105{word-spacing:-8.502538pt;}
.ws8a{word-spacing:-8.442971pt;}
.ws102{word-spacing:-8.406897pt;}
.ws53{word-spacing:-8.389838pt;}
.ws63{word-spacing:-8.336704pt;}
.ws2e{word-spacing:-8.283570pt;}
.ws4d{word-spacing:-8.215613pt;}
.ws6{word-spacing:-8.215295pt;}
.wsef{word-spacing:-8.195106pt;}
.wse9{word-spacing:-8.194570pt;}
.wsd1{word-spacing:-8.177302pt;}
.wsf6{word-spacing:-8.175206pt;}
.ws28{word-spacing:-8.167793pt;}
.ws15{word-spacing:-8.167285pt;}
.wsae{word-spacing:-8.124168pt;}
.ws10f{word-spacing:-8.072151pt;}
.ws97{word-spacing:-8.071034pt;}
.ws3e{word-spacing:-8.017900pt;}
.ws4a{word-spacing:-7.964767pt;}
.ws19{word-spacing:-7.911791pt;}
.ws110{word-spacing:-7.880868pt;}
.ws7f{word-spacing:-7.858499pt;}
.ws6f{word-spacing:-7.805365pt;}
.ws10d{word-spacing:-7.785226pt;}
.ws3f{word-spacing:-7.752231pt;}
.ws1c{word-spacing:-7.699513pt;}
.ws7d{word-spacing:-7.699097pt;}
.ws85{word-spacing:-7.645963pt;}
.wse8{word-spacing:-7.593943pt;}
.wsdd{word-spacing:-7.592830pt;}
.wsff{word-spacing:-7.546122pt;}
.ws2f{word-spacing:-7.539696pt;}
.ws64{word-spacing:-7.486562pt;}
.wsf2{word-spacing:-7.450481pt;}
.ws2a{word-spacing:-7.433428pt;}
.ws2b{word-spacing:-7.380294pt;}
.wsd2{word-spacing:-7.274026pt;}
.wsd{word-spacing:-7.259065pt;}
.ws7c{word-spacing:-7.220892pt;}
.ws30{word-spacing:-7.167759pt;}
.ws104{word-spacing:-7.163556pt;}
.wsb7{word-spacing:-7.114625pt;}
.wsee{word-spacing:-7.067914pt;}
.wsda{word-spacing:-7.061491pt;}
.wsfd{word-spacing:-6.924452pt;}
.wsf{word-spacing:-6.924143pt;}
.ws52{word-spacing:-6.795822pt;}
.ws36{word-spacing:-6.689554pt;}
.ws46{word-spacing:-6.636420pt;}
.ws1e{word-spacing:-6.530414pt;}
.ws4e{word-spacing:-6.530152pt;}
.wsf4{word-spacing:-6.494065pt;}
.ws37{word-spacing:-6.477018pt;}
.ws6b{word-spacing:-6.423884pt;}
.wsa6{word-spacing:-6.317617pt;}
.ws4b{word-spacing:-6.158215pt;}
.ws1b{word-spacing:-6.158144pt;}
.wsb1{word-spacing:-6.105081pt;}
.wsb4{word-spacing:-6.051947pt;}
.wsb3{word-spacing:-5.998814pt;}
.ws2c{word-spacing:-5.892546pt;}
.wsb0{word-spacing:-5.839412pt;}
.ws3a{word-spacing:-5.680010pt;}
.ws29{word-spacing:-5.626876pt;}
.wscd{word-spacing:-5.573743pt;}
.ws78{word-spacing:-5.520609pt;}
.ws43{word-spacing:-5.467475pt;}
.ws9b{word-spacing:-5.414341pt;}
.ws10e{word-spacing:-5.394186pt;}
.ws66{word-spacing:-5.361207pt;}
.wse1{word-spacing:-5.346365pt;}
.ws88{word-spacing:-5.308073pt;}
.wsf1{word-spacing:-5.202903pt;}
.ws44{word-spacing:-5.201806pt;}
.ws79{word-spacing:-5.095538pt;}
.wsdc{word-spacing:-4.989270pt;}
.ws12{word-spacing:-4.963721pt;}
.wsc6{word-spacing:-4.925542pt;}
.ws86{word-spacing:-4.883002pt;}
.wsc3{word-spacing:-4.877722pt;}
.ws24{word-spacing:-4.830062pt;}
.wsc1{word-spacing:-4.829901pt;}
.ws61{word-spacing:-4.776735pt;}
.ws89{word-spacing:-4.670467pt;}
.wsc7{word-spacing:-4.638618pt;}
.ws82{word-spacing:-4.617333pt;}
.wsb2{word-spacing:-4.457931pt;}
.wsed{word-spacing:-4.389949pt;}
.wsbd{word-spacing:-4.351693pt;}
.wsa9{word-spacing:-4.192262pt;}
.wsdb{word-spacing:-4.085994pt;}
.ws81{word-spacing:-4.032860pt;}
.ws11{word-spacing:-4.007491pt;}
.wsf5{word-spacing:-4.007383pt;}
.ws9e{word-spacing:-3.979727pt;}
.wsd4{word-spacing:-3.926593pt;}
.ws4c{word-spacing:-3.873459pt;}
.ws45{word-spacing:-3.607790pt;}
.wsa8{word-spacing:-3.554656pt;}
.wsf3{word-spacing:-3.481354pt;}
.ws9c{word-spacing:-3.448388pt;}
.wsb8{word-spacing:-3.129585pt;}
.wsd9{word-spacing:-3.023317pt;}
.ws87{word-spacing:-2.970183pt;}
.wsa4{word-spacing:-2.810782pt;}
.wse6{word-spacing:-2.534502pt;}
.wsf9{word-spacing:-2.524938pt;}
.ws38{word-spacing:-2.332577pt;}
.wsd6{word-spacing:-2.173175pt;}
.ws1a{word-spacing:-2.120126pt;}
.wsb5{word-spacing:-2.013774pt;}
.ws14{word-spacing:-1.903039pt;}
.ws56{word-spacing:-1.748104pt;}
.wse0{word-spacing:-1.719597pt;}
.wsc{word-spacing:-1.664137pt;}
.wsf7{word-spacing:-1.377239pt;}
.ws31{word-spacing:-1.376167pt;}
.wsde{word-spacing:-1.216766pt;}
.ws49{word-spacing:-1.163632pt;}
.wsa3{word-spacing:-1.110498pt;}
.wse5{word-spacing:-0.755569pt;}
.wsa7{word-spacing:-0.526025pt;}
.ws101{word-spacing:-0.516465pt;}
.ws83{word-spacing:-0.419758pt;}
.wsb{word-spacing:-0.372986pt;}
.ws8b{word-spacing:-0.366624pt;}
.wsce{word-spacing:-0.154088pt;}
.ws6c{word-spacing:-0.053134pt;}
.wsac{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.047819pt;}
.ws3{word-spacing:-0.037195pt;}
.ws93{word-spacing:-0.037194pt;}
.ws91{word-spacing:-0.026567pt;}
.ws27{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.439951pt;}
.ws9d{word-spacing:1.971266pt;}
.wsc2{word-spacing:2.486682pt;}
.wsa2{word-spacing:6.233324pt;}
.wsbf{word-spacing:6.647091pt;}
.wsc0{word-spacing:6.742733pt;}
.wsca{word-spacing:6.838374pt;}
.wsbb{word-spacing:6.886195pt;}
.wscb{word-spacing:6.934016pt;}
.wscc{word-spacing:6.981837pt;}
.wsbe{word-spacing:7.077478pt;}
.wsc8{word-spacing:7.268762pt;}
.wsba{word-spacing:7.460045pt;}
.wsc4{word-spacing:8.320819pt;}
.wsc9{word-spacing:8.464282pt;}
.ws67{word-spacing:9.372877pt;}
.ws72{word-spacing:14.207900pt;}
.ws8e{word-spacing:14.693702pt;}
.ws99{word-spacing:14.695302pt;}
.ws90{word-spacing:14.718081pt;}
.ws71{word-spacing:15.167900pt;}
.ws98{word-spacing:17.378843pt;}
.wsa5{word-spacing:23.699833pt;}
.wsaa{word-spacing:23.782878pt;}
.ws3b{word-spacing:23.846639pt;}
.ws5e{word-spacing:24.484250pt;}
.ws16{word-spacing:24.550437pt;}
.ws8{word-spacing:26.529476pt;}
.wsa1{word-spacing:26.567203pt;}
.ws0{word-spacing:27.008736pt;}
.wsc5{word-spacing:27.688243pt;}
.ws1{word-spacing:27.926880pt;}
.wsbc{word-spacing:36.343808pt;}
.ws18{word-spacing:71.666240pt;}
._b{margin-left:-5.993540pt;}
._1{margin-left:-4.410288pt;}
._1d{margin-left:-3.478586pt;}
._4{margin-left:-2.518696pt;}
._3{margin-left:-1.466125pt;}
._5{width:1.292682pt;}
._0{width:2.218925pt;}
._2{width:3.466625pt;}
._13{width:4.590797pt;}
._18{width:5.496325pt;}
._16{width:6.385227pt;}
._19{width:7.657221pt;}
._15{width:9.014604pt;}
._1a{width:10.140310pt;}
._1b{width:11.168074pt;}
._11{width:12.686787pt;}
._1e{width:15.704390pt;}
._6{width:16.714948pt;}
._10{width:18.600747pt;}
._7{width:21.581357pt;}
._1c{width:26.588365pt;}
._d{width:28.351310pt;}
._e{width:29.468948pt;}
._1f{width:32.923305pt;}
._14{width:37.348045pt;}
._17{width:38.615945pt;}
._f{width:39.668543pt;}
._8{width:55.038984pt;}
._c{width:61.103947pt;}
._a{width:71.731200pt;}
._12{width:127.155507pt;}
._9{width:151.687578pt;}
.fs9{font-size:26.566933pt;}
.fsa{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs2{font-size:37.194667pt;}
.fs3{font-size:47.818667pt;}
.fs5{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs7{font-size:63.761067pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y112{bottom:176.486667pt;}
.ycc{bottom:177.182667pt;}
.y15e{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.y111{bottom:191.098667pt;}
.ycb{bottom:194.950667pt;}
.y137{bottom:196.712000pt;}
.y15d{bottom:200.989333pt;}
.y24{bottom:203.984000pt;}
.y110{bottom:205.710667pt;}
.yca{bottom:210.890667pt;}
.y136{bottom:212.652000pt;}
.y15c{bottom:215.600000pt;}
.ya5{bottom:219.660000pt;}
.y23{bottom:219.924000pt;}
.y10f{bottom:220.322667pt;}
.ye6{bottom:221.212000pt;}
.ye9{bottom:222.858667pt;}
.yc9{bottom:226.830667pt;}
.y135{bottom:228.593333pt;}
.y15b{bottom:229.873333pt;}
.y10e{bottom:234.934667pt;}
.y22{bottom:235.864000pt;}
.ye5{bottom:237.152000pt;}
.ye8{bottom:237.469333pt;}
.yc8{bottom:242.770667pt;}
.y15a{bottom:244.485333pt;}
.y134{bottom:244.533333pt;}
.ya4{bottom:245.562667pt;}
.y10d{bottom:249.546667pt;}
.y7c{bottom:250.748000pt;}
.ya3{bottom:251.540000pt;}
.y4f{bottom:251.804000pt;}
.y21{bottom:251.805333pt;}
.ye4{bottom:253.092000pt;}
.y159{bottom:259.097333pt;}
.y133{bottom:260.473333pt;}
.y10c{bottom:264.158667pt;}
.y6f{bottom:264.270667pt;}
.y7b{bottom:266.688000pt;}
.ya2{bottom:267.480000pt;}
.y20{bottom:267.745333pt;}
.y4e{bottom:268.272000pt;}
.ye3{bottom:269.032000pt;}
.yc7{bottom:270.814667pt;}
.y158{bottom:273.709333pt;}
.y132{bottom:276.413333pt;}
.y10b{bottom:278.770667pt;}
.y7a{bottom:282.628000pt;}
.ya1{bottom:283.420000pt;}
.y1f{bottom:283.685333pt;}
.y4d{bottom:284.212000pt;}
.ye2{bottom:284.972000pt;}
.y157{bottom:287.982667pt;}
.y131{bottom:292.353333pt;}
.y10a{bottom:293.382667pt;}
.ya0{bottom:295.692000pt;}
.y79{bottom:298.568000pt;}
.y1e{bottom:299.625333pt;}
.y4c{bottom:300.152000pt;}
.y9f{bottom:300.273333pt;}
.y156{bottom:302.594667pt;}
.y186{bottom:303.794667pt;}
.y6e{bottom:305.960000pt;}
.y109{bottom:307.994667pt;}
.y130{bottom:308.293333pt;}
.yc6{bottom:309.485333pt;}
.y78{bottom:314.508000pt;}
.y1d{bottom:315.565333pt;}
.ydc{bottom:315.852000pt;}
.y9e{bottom:315.949333pt;}
.y4b{bottom:316.092000pt;}
.y155{bottom:317.206667pt;}
.ye1{bottom:317.976000pt;}
.y185{bottom:318.406667pt;}
.y6d{bottom:321.900000pt;}
.y108{bottom:322.605333pt;}
.y12f{bottom:324.234667pt;}
.yc5{bottom:325.425333pt;}
.y77{bottom:330.448000pt;}
.y154{bottom:331.480000pt;}
.y1c{bottom:331.505333pt;}
.ydb{bottom:331.792000pt;}
.y9d{bottom:331.889333pt;}
.y4a{bottom:332.032000pt;}
.y184{bottom:333.017333pt;}
.y107{bottom:337.217333pt;}
.y6c{bottom:337.841333pt;}
.y12e{bottom:340.174667pt;}
.yc4{bottom:341.365333pt;}
.y153{bottom:346.092000pt;}
.y76{bottom:346.389333pt;}
.y1b{bottom:347.446667pt;}
.y183{bottom:347.629333pt;}
.yda{bottom:347.732000pt;}
.y9c{bottom:347.829333pt;}
.y49{bottom:347.972000pt;}
.y106{bottom:351.829333pt;}
.y6b{bottom:353.781333pt;}
.y12d{bottom:356.114667pt;}
.yc3{bottom:356.346667pt;}
.y152{bottom:360.365333pt;}
.y182{bottom:362.241333pt;}
.y75{bottom:362.329333pt;}
.y1a{bottom:363.386667pt;}
.y9b{bottom:363.505333pt;}
.yd9{bottom:363.672000pt;}
.y48{bottom:363.913333pt;}
.ye0{bottom:364.262667pt;}
.y105{bottom:366.441333pt;}
.y6a{bottom:369.721333pt;}
.y12c{bottom:372.054667pt;}
.yc2{bottom:372.286667pt;}
.y151{bottom:374.977333pt;}
.y181{bottom:376.853333pt;}
.y9a{bottom:376.856000pt;}
.y74{bottom:378.269333pt;}
.y19{bottom:379.326667pt;}
.yd8{bottom:379.612000pt;}
.y47{bottom:379.853333pt;}
.ydf{bottom:380.202667pt;}
.y104{bottom:381.053333pt;}
.y99{bottom:381.436000pt;}
.y69{bottom:385.661333pt;}
.y12b{bottom:387.994667pt;}
.yc1{bottom:388.226667pt;}
.y150{bottom:389.250667pt;}
.y180{bottom:391.465333pt;}
.y73{bottom:394.209333pt;}
.y18{bottom:395.266667pt;}
.y103{bottom:395.665333pt;}
.y46{bottom:395.793333pt;}
.yd7{bottom:395.838667pt;}
.y98{bottom:399.576000pt;}
.y14f{bottom:403.862667pt;}
.y12a{bottom:403.934667pt;}
.y97{bottom:404.156000pt;}
.yc0{bottom:404.166667pt;}
.y17f{bottom:406.077333pt;}
.y102{bottom:410.277333pt;}
.y17{bottom:411.206667pt;}
.y45{bottom:411.733333pt;}
.yd6{bottom:411.778667pt;}
.y14e{bottom:418.474667pt;}
.ybf{bottom:419.148000pt;}
.y68{bottom:419.381333pt;}
.y17e{bottom:420.689333pt;}
.y72{bottom:422.376000pt;}
.y96{bottom:424.660000pt;}
.y101{bottom:424.889333pt;}
.y44{bottom:427.673333pt;}
.yd5{bottom:427.718667pt;}
.yde{bottom:428.620000pt;}
.y14d{bottom:432.748000pt;}
.y129{bottom:434.026667pt;}
.ybe{bottom:435.088000pt;}
.y17d{bottom:435.301333pt;}
.y67{bottom:437.978667pt;}
.y71{bottom:438.316000pt;}
.y100{bottom:439.501333pt;}
.y95{bottom:440.070667pt;}
.y16{bottom:442.708000pt;}
.y43{bottom:443.613333pt;}
.yd4{bottom:443.660000pt;}
.y14c{bottom:447.358667pt;}
.y17c{bottom:449.913333pt;}
.ybd{bottom:451.028000pt;}
.y94{bottom:456.010667pt;}
.y42{bottom:459.554667pt;}
.yd3{bottom:459.600000pt;}
.y14b{bottom:461.632000pt;}
.yff{bottom:463.266667pt;}
.y17b{bottom:464.525333pt;}
.y93{bottom:471.950667pt;}
.ybc{bottom:472.798667pt;}
.y128{bottom:474.744000pt;}
.y14a{bottom:476.244000pt;}
.y17a{bottom:479.136000pt;}
.yfe{bottom:479.206667pt;}
.y66{bottom:482.324000pt;}
.y15{bottom:487.342667pt;}
.y92{bottom:487.890667pt;}
.y41{bottom:488.754667pt;}
.y127{bottom:490.685333pt;}
.y149{bottom:490.856000pt;}
.y179{bottom:493.748000pt;}
.yfd{bottom:495.146667pt;}
.ybb{bottom:495.529333pt;}
.y65{bottom:498.265333pt;}
.y14{bottom:501.954667pt;}
.y91{bottom:503.830667pt;}
.y148{bottom:505.468000pt;}
.yd2{bottom:506.090667pt;}
.y126{bottom:506.625333pt;}
.y178{bottom:508.360000pt;}
.y70{bottom:510.064000pt;}
.yba{bottom:511.469333pt;}
.y64{bottom:514.205333pt;}
.y147{bottom:519.741333pt;}
.y90{bottom:519.772000pt;}
.y125{bottom:522.565333pt;}
.y177{bottom:522.972000pt;}
.yfc{bottom:523.164000pt;}
.y40{bottom:523.269333pt;}
.yb9{bottom:526.449333pt;}
.y63{bottom:530.513333pt;}
.y13{bottom:531.082667pt;}
.y146{bottom:534.353333pt;}
.y8f{bottom:535.712000pt;}
.y176{bottom:537.584000pt;}
.yfb{bottom:537.776000pt;}
.y124{bottom:538.505333pt;}
.yb8{bottom:542.390667pt;}
.y12{bottom:545.694667pt;}
.y62{bottom:546.453333pt;}
.y145{bottom:548.965333pt;}
.y175{bottom:552.196000pt;}
.yfa{bottom:552.388000pt;}
.y123{bottom:554.445333pt;}
.y11{bottom:560.306667pt;}
.y61{bottom:562.393333pt;}
.y144{bottom:563.238667pt;}
.y8e{bottom:563.346667pt;}
.yb7{bottom:564.161333pt;}
.y174{bottom:566.808000pt;}
.yf9{bottom:566.998667pt;}
.y3f{bottom:568.410667pt;}
.y122{bottom:570.386667pt;}
.y10{bottom:574.918667pt;}
.y143{bottom:577.850667pt;}
.y60{bottom:578.333333pt;}
.y8d{bottom:579.288000pt;}
.yb6{bottom:580.101333pt;}
.y173{bottom:581.420000pt;}
.yf8{bottom:581.610667pt;}
.y3e{bottom:584.350667pt;}
.y121{bottom:586.326667pt;}
.yf{bottom:589.530667pt;}
.y142{bottom:592.462667pt;}
.y5f{bottom:594.274667pt;}
.y8c{bottom:595.228000pt;}
.y172{bottom:596.032000pt;}
.yb5{bottom:596.041333pt;}
.yf7{bottom:596.222667pt;}
.y3d{bottom:600.290667pt;}
.y120{bottom:602.266667pt;}
.ye{bottom:604.142667pt;}
.y141{bottom:607.074667pt;}
.y5e{bottom:610.582667pt;}
.y171{bottom:610.644000pt;}
.yf6{bottom:610.834667pt;}
.y8b{bottom:611.168000pt;}
.yb4{bottom:611.981333pt;}
.y3c{bottom:616.232000pt;}
.y11f{bottom:618.206667pt;}
.yd{bottom:618.754667pt;}
.y140{bottom:621.686667pt;}
.y170{bottom:625.254667pt;}
.yf5{bottom:625.446667pt;}
.y5d{bottom:626.522667pt;}
.y8a{bottom:627.108000pt;}
.y3b{bottom:632.172000pt;}
.yc{bottom:633.366667pt;}
.y11e{bottom:634.146667pt;}
.y13f{bottom:636.297333pt;}
.y16f{bottom:639.866667pt;}
.yf4{bottom:640.058667pt;}
.y5c{bottom:642.462667pt;}
.yb3{bottom:644.582667pt;}
.yb{bottom:647.978667pt;}
.y3a{bottom:648.112000pt;}
.y11d{bottom:650.086667pt;}
.y16e{bottom:654.478667pt;}
.yf3{bottom:654.670667pt;}
.y5b{bottom:658.402667pt;}
.yb2{bottom:660.456000pt;}
.ya{bottom:662.590667pt;}
.y39{bottom:664.052000pt;}
.y13e{bottom:665.157333pt;}
.y89{bottom:665.900000pt;}
.y11c{bottom:666.028000pt;}
.y16d{bottom:669.090667pt;}
.y5a{bottom:674.342667pt;}
.ydd{bottom:676.913333pt;}
.y9{bottom:677.201333pt;}
.yf2{bottom:678.436000pt;}
.ye7{bottom:679.065333pt;}
.y38{bottom:680.518667pt;}
.y88{bottom:681.840000pt;}
.y11b{bottom:681.968000pt;}
.y16c{bottom:683.702667pt;}
.yb1{bottom:686.801333pt;}
.y59{bottom:690.282667pt;}
.y8{bottom:691.813333pt;}
.yf1{bottom:694.376000pt;}
.y37{bottom:696.460000pt;}
.y87{bottom:697.516000pt;}
.y11a{bottom:697.908000pt;}
.y16b{bottom:698.314667pt;}
.yb0{bottom:702.741333pt;}
.y58{bottom:706.224000pt;}
.y13d{bottom:706.310667pt;}
.y7{bottom:706.425333pt;}
.y36{bottom:712.400000pt;}
.y16a{bottom:712.926667pt;}
.y86{bottom:713.456000pt;}
.y119{bottom:713.848000pt;}
.yaf{bottom:718.682667pt;}
.y57{bottom:722.164000pt;}
.y13c{bottom:722.250667pt;}
.yf0{bottom:722.393333pt;}
.y169{bottom:727.538667pt;}
.y35{bottom:728.340000pt;}
.y85{bottom:729.396000pt;}
.y118{bottom:729.788000pt;}
.yae{bottom:733.662667pt;}
.yef{bottom:737.005333pt;}
.y56{bottom:738.104000pt;}
.y13b{bottom:738.190667pt;}
.y168{bottom:742.150667pt;}
.y34{bottom:744.280000pt;}
.y84{bottom:745.336000pt;}
.y117{bottom:745.728000pt;}
.yad{bottom:749.602667pt;}
.y13a{bottom:754.130667pt;}
.y55{bottom:754.412000pt;}
.y167{bottom:756.762667pt;}
.y6{bottom:759.789333pt;}
.y33{bottom:760.220000pt;}
.yee{bottom:760.770667pt;}
.y83{bottom:761.276000pt;}
.y116{bottom:761.669333pt;}
.yac{bottom:765.544000pt;}
.y139{bottom:770.072000pt;}
.y54{bottom:770.352000pt;}
.y166{bottom:771.374667pt;}
.y5{bottom:774.401333pt;}
.y32{bottom:776.160000pt;}
.y82{bottom:776.952000pt;}
.y115{bottom:777.609333pt;}
.yab{bottom:781.484000pt;}
.y165{bottom:785.985333pt;}
.y53{bottom:786.292000pt;}
.yed{bottom:788.786667pt;}
.y31{bottom:792.101333pt;}
.y81{bottom:792.892000pt;}
.y114{bottom:793.549333pt;}
.yd1{bottom:796.225333pt;}
.yaa{bottom:797.424000pt;}
.y164{bottom:800.597333pt;}
.y4{bottom:802.241333pt;}
.yec{bottom:803.398667pt;}
.y30{bottom:808.041333pt;}
.y138{bottom:808.568000pt;}
.y80{bottom:808.832000pt;}
.yd0{bottom:812.165333pt;}
.ya9{bottom:813.364000pt;}
.y52{bottom:814.698667pt;}
.y163{bottom:815.209333pt;}
.yeb{bottom:818.010667pt;}
.y3{bottom:818.182667pt;}
.y113{bottom:818.326667pt;}
.y2f{bottom:824.508000pt;}
.y7f{bottom:824.773333pt;}
.ya8{bottom:827.385333pt;}
.ycf{bottom:828.105333pt;}
.y162{bottom:829.821333pt;}
.y51{bottom:830.638667pt;}
.yea{bottom:832.622667pt;}
.y2e{bottom:840.448000pt;}
.y7e{bottom:840.713333pt;}
.ya7{bottom:842.366667pt;}
.yce{bottom:844.332000pt;}
.y161{bottom:844.433333pt;}
.y2d{bottom:856.388000pt;}
.y7d{bottom:856.653333pt;}
.ya6{bottom:858.306667pt;}
.y160{bottom:859.045333pt;}
.ycd{bottom:860.272000pt;}
.y2{bottom:864.358667pt;}
.y2c{bottom:872.329333pt;}
.y15f{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.y2b{bottom:922.806667pt;}
.y2a{bottom:948.893333pt;}
.y29{bottom:971.846667pt;}
.y28{bottom:994.800000pt;}
.y27{bottom:1017.753333pt;}
.h12{height:0.052867pt;}
.h17{height:21.232435pt;}
.h14{height:27.895200pt;}
.h19{height:29.505434pt;}
.h5{height:33.281792pt;}
.h18{height:33.283277pt;}
.hc{height:37.246841pt;}
.h15{height:37.459376pt;}
.ha{height:39.903534pt;}
.h7{height:39.905136pt;}
.h4{height:41.410965pt;}
.h9{height:41.412813pt;}
.h6{height:44.695760pt;}
.hb{height:44.696508pt;}
.h16{height:45.129552pt;}
.h1a{height:45.134885pt;}
.h2{height:47.176000pt;}
.h3{height:47.181333pt;}
.h10{height:48.817867pt;}
.h13{height:50.480000pt;}
.h1{height:53.711424pt;}
.h8{height:54.476544pt;}
.he{height:58.223534pt;}
.h11{height:58.228867pt;}
.hd{height:59.004533pt;}
.hf{height:59.008000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:52.586667pt;}
.x1{left:179.686667pt;}
.x4{left:180.770667pt;}
.x17{left:183.341333pt;}
.x1b{left:185.828000pt;}
.xd{left:187.990667pt;}
.x7{left:199.612000pt;}
.xe{left:202.268000pt;}
.x3{left:204.012000pt;}
.xb{left:206.578667pt;}
.x1a{left:207.474667pt;}
.xf{left:211.566667pt;}
.xa{left:214.473333pt;}
.x6{left:217.481333pt;}
.x12{left:224.850667pt;}
.x14{left:261.649333pt;}
.x2{left:279.081333pt;}
.x18{left:300.178667pt;}
.x13{left:306.436000pt;}
.x19{left:313.857333pt;}
.x5{left:331.800000pt;}
.xc{left:347.576000pt;}
.x9{left:369.984000pt;}
.x10{left:406.362667pt;}
.x11{left:442.220000pt;}
.x15{left:544.546667pt;}
.x16{left:568.469333pt;}
}




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