
    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_3ba5a45a6d4930bb4810430b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9897c1848b0270efc017a9b3.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_6b5b56a324ebbc7f77e245e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_2fd6d71ab6f825924e724ac4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;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_c8fc86087d042329a79cefa4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_94d8439783f192016e31855e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dffed84c302ce50c8299c800.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a4f282bd3e6b160909532e63.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7a23262284048ca3df6c4841.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_52a33e8715d63a38646c40aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.454000;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_65732af6d875f7498af3696b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0a6ab37b09a24ba62919096c.woff2')format("woff");}.fff{font-family:fff;line-height:0.908000;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_49ad448a8bae393f6558985d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f43ce1a39f787d3c79969552.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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_41bda629fbba2f528740e475.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910000;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_ef86fee91f538c77884748d7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.603000;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_51a36c2239df8b4c1d096753.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.525000;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_3bf8eae81f9b52a91af47101.woff2')format("woff");}.ff18{font-family:ff18;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;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_512bf35f91a4a7655becc7f4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.521000;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:ff1c;src:url('chunks/assets/font_8185911a15a8b27c47d16fa5.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_f33f58dac4f49881476eceb3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.va{vertical-align:-50.808000px;}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-21.690000px;}
.v5{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.510000px;}
.vb{vertical-align:18.036000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:22.854000px;}
.v6{vertical-align:24.684000px;}
.v8{vertical-align:31.470000px;}
.v7{vertical-align:40.440000px;}
.v9{vertical-align:81.438000px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000564px;}
.ls1d{letter-spacing:0.001866px;}
.ls3f{letter-spacing:0.002234px;}
.lsc{letter-spacing:0.002245px;}
.ls49{letter-spacing:0.002338px;}
.ls3d{letter-spacing:0.002481px;}
.ls24{letter-spacing:0.003269px;}
.lsb{letter-spacing:0.004200px;}
.ls1f{letter-spacing:0.005023px;}
.ls19{letter-spacing:1.012868px;}
.ls3b{letter-spacing:1.655249px;}
.ls44{letter-spacing:1.661249px;}
.ls12{letter-spacing:1.880823px;}
.ls2a{letter-spacing:2.144222px;}
.ls3e{letter-spacing:2.574136px;}
.ls40{letter-spacing:2.983480px;}
.ls1{letter-spacing:2.984525px;}
.ls3c{letter-spacing:2.986087px;}
.ls16{letter-spacing:2.986982px;}
.ls6{letter-spacing:2.989409px;}
.ls0{letter-spacing:2.990525px;}
.ls38{letter-spacing:3.320172px;}
.lsd{letter-spacing:5.408908px;}
.ls15{letter-spacing:6.433866px;}
.ls11{letter-spacing:9.982525px;}
.ls1c{letter-spacing:13.278538px;}
.ls20{letter-spacing:13.283023px;}
.lsf{letter-spacing:13.283306px;}
.ls10{letter-spacing:13.284538px;}
.ls33{letter-spacing:15.355559px;}
.ls43{letter-spacing:15.906538px;}
.ls42{letter-spacing:15.909269px;}
.ls3a{letter-spacing:16.140538px;}
.ls39{letter-spacing:16.143269px;}
.ls27{letter-spacing:16.268525px;}
.ls26{letter-spacing:16.274525px;}
.ls25{letter-spacing:16.599269px;}
.ls5{letter-spacing:16.602538px;}
.ls17{letter-spacing:16.605269px;}
.ls4a{letter-spacing:16.606896px;}
.ls1b{letter-spacing:17.284868px;}
.ls37{letter-spacing:17.629002px;}
.ls34{letter-spacing:17.629559px;}
.ls35{letter-spacing:17.631840px;}
.ls30{letter-spacing:18.427002px;}
.ls2f{letter-spacing:18.427559px;}
.ls2e{letter-spacing:18.429840px;}
.ls2c{letter-spacing:18.432557px;}
.ls2b{letter-spacing:18.746222px;}
.ls36{letter-spacing:19.562680px;}
.lsa{letter-spacing:19.591140px;}
.ls31{letter-spacing:19.755848px;}
.ls32{letter-spacing:19.761840px;}
.ls22{letter-spacing:19.800305px;}
.lse{letter-spacing:20.024408px;}
.ls2d{letter-spacing:20.360680px;}
.ls29{letter-spacing:21.419468px;}
.ls45{letter-spacing:23.246172px;}
.ls21{letter-spacing:23.778538px;}
.ls9{letter-spacing:23.951468px;}
.ls8{letter-spacing:24.007409px;}
.ls7{letter-spacing:24.013409px;}
.ls18{letter-spacing:26.052538px;}
.ls4b{letter-spacing:26.557409px;}
.ls41{letter-spacing:30.190363px;}
.ls14{letter-spacing:30.282305px;}
.ls3{letter-spacing:30.630532px;}
.ls2{letter-spacing:30.636532px;}
.ls48{letter-spacing:107.010538px;}
.ls47{letter-spacing:110.952538px;}
.ls1a{letter-spacing:138.278823px;}
.ls46{letter-spacing:194.190538px;}
.ls23{letter-spacing:385.408200px;}
.ls13{letter-spacing:478.366200px;}
.ls28{letter-spacing:778.887299px;}
.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;}
}
.ws62{word-spacing:-59.775600px;}
.ws63{word-spacing:-48.920351px;}
.ws69{word-spacing:-47.654765px;}
.ws80{word-spacing:-39.952906px;}
.ws61{word-spacing:-38.937826px;}
.ws86{word-spacing:-37.678906px;}
.ws83{word-spacing:-36.886906px;}
.ws7d{word-spacing:-36.880906px;}
.wsa1{word-spacing:-28.955301px;}
.wsde{word-spacing:-22.416000px;}
.wsb7{word-spacing:-22.350174px;}
.ws67{word-spacing:-22.322448px;}
.wsb5{word-spacing:-21.141239px;}
.wsb0{word-spacing:-20.217522px;}
.wsb3{word-spacing:-19.143189px;}
.wsb1{word-spacing:-17.361430px;}
.wsb2{word-spacing:-17.360258px;}
.wsb8{word-spacing:-17.355430px;}
.ws3{word-spacing:-16.605662px;}
.wsf4{word-spacing:-15.359443px;}
.ws7f{word-spacing:-13.202127px;}
.ws66{word-spacing:-3.335478px;}
.wsc1{word-spacing:-3.275703px;}
.ws6c{word-spacing:-3.096376px;}
.wsdb{word-spacing:-2.976825px;}
.wsac{word-spacing:-2.677947px;}
.wse8{word-spacing:-2.340230px;}
.ws12{word-spacing:-2.178835px;}
.ws6b{word-spacing:-2.139966px;}
.ws64{word-spacing:-2.080191px;}
.wsdf{word-spacing:-1.781313px;}
.ws8a{word-spacing:-1.721537px;}
.ws33{word-spacing:-1.362884px;}
.ws96{word-spacing:-1.243332px;}
.wsee{word-spacing:-0.995270px;}
.ws20{word-spacing:-0.944454px;}
.ws10d{word-spacing:-0.887674px;}
.ws6f{word-spacing:-0.765128px;}
.wsf0{word-spacing:-0.672480px;}
.ws46{word-spacing:-0.645576px;}
.ws58{word-spacing:-0.526025px;}
.ws37{word-spacing:-0.346698px;}
.ws94{word-spacing:-0.227147px;}
.wsbc{word-spacing:-0.167372px;}
.ws7b{word-spacing:-0.053798px;}
.ws35{word-spacing:-0.047820px;}
.ws1a{word-spacing:0.000000px;}
.ws75{word-spacing:0.011955px;}
.wsef{word-spacing:0.080698px;}
.wse2{word-spacing:0.134496px;}
.ws36{word-spacing:0.191282px;}
.ws11e{word-spacing:0.242093px;}
.ws25{word-spacing:0.251058px;}
.ws9a{word-spacing:0.310833px;}
.wsa5{word-spacing:0.370609px;}
.ws89{word-spacing:0.430384px;}
.ws1e{word-spacing:0.490160px;}
.wse{word-spacing:0.618682px;}
.ws60{word-spacing:0.833760px;}
.ws22{word-spacing:0.848814px;}
.ws92{word-spacing:0.908589px;}
.ws5e{word-spacing:0.968365px;}
.ws50{word-spacing:0.995270px;}
.wsaa{word-spacing:1.028140px;}
.wsed{word-spacing:1.102867px;}
.wsb{word-spacing:1.156666px;}
.ws5d{word-spacing:1.207467px;}
.wsf5{word-spacing:1.210464px;}
.ws3a{word-spacing:1.267243px;}
.wsda{word-spacing:1.327018px;}
.wsc7{word-spacing:1.371859px;}
.ws77{word-spacing:1.386794px;}
.wse0{word-spacing:1.398749px;}
.wsbf{word-spacing:1.446570px;}
.wse3{word-spacing:1.479456px;}
.ws6e{word-spacing:1.506345px;}
.ws99{word-spacing:1.566121px;}
.ws106{word-spacing:1.587053px;}
.wsa4{word-spacing:1.625896px;}
.ws11{word-spacing:1.694650px;}
.ws9c{word-spacing:1.745448px;}
.ws78{word-spacing:1.752125px;}
.ws47{word-spacing:1.864999px;}
.wsbd{word-spacing:1.984550px;}
.ws13{word-spacing:2.017440px;}
.wsc2{word-spacing:2.044326px;}
.ws29{word-spacing:2.104101px;}
.ws28{word-spacing:2.163877px;}
.ws11c{word-spacing:2.178835px;}
.ws74{word-spacing:2.223652px;}
.ws73{word-spacing:2.283428px;}
.wsad{word-spacing:2.343204px;}
.wse1{word-spacing:2.355159px;}
.ws19{word-spacing:2.402979px;}
.ws1c{word-spacing:2.462755px;}
.ws8c{word-spacing:2.582306px;}
.ws41{word-spacing:2.642082px;}
.ws2f{word-spacing:2.701857px;}
.ws32{word-spacing:2.761633px;}
.ws10e{word-spacing:2.770618px;}
.ws54{word-spacing:2.821408px;}
.ws2b{word-spacing:2.881184px;}
.ws10a{word-spacing:2.985811px;}
.ws14{word-spacing:3.039610px;}
.ws84{word-spacing:3.044696px;}
.wsc0{word-spacing:3.060511px;}
.ws4{word-spacing:3.093408px;}
.ws2a{word-spacing:3.120286px;}
.ws2c{word-spacing:3.239838px;}
.ws2{word-spacing:3.299613px;}
.ws97{word-spacing:3.315353px;}
.ws5f{word-spacing:3.320007px;}
.ws34{word-spacing:3.359389px;}
.ws5c{word-spacing:3.419164px;}
.ws21{word-spacing:3.478940px;}
.wsd2{word-spacing:3.598491px;}
.ws49{word-spacing:3.658267px;}
.ws111{word-spacing:3.738989px;}
.ws5a{word-spacing:3.777818px;}
.ws56{word-spacing:3.801728px;}
.ws44{word-spacing:3.837594px;}
.ws8b{word-spacing:3.897369px;}
.wsea{word-spacing:3.954182px;}
.ws40{word-spacing:3.957145px;}
.ws51{word-spacing:4.016920px;}
.ws27{word-spacing:4.136472px;}
.wsa3{word-spacing:4.196247px;}
.ws1f{word-spacing:4.256023px;}
.wsf{word-spacing:4.276973px;}
.ws3f{word-spacing:4.375574px;}
.ws85{word-spacing:4.400344px;}
.ws4c{word-spacing:4.435350px;}
.ws87{word-spacing:4.443748px;}
.ws3e{word-spacing:4.483200px;}
.wsa8{word-spacing:4.614676px;}
.wsa7{word-spacing:4.674452px;}
.ws1{word-spacing:4.691207px;}
.ws6a{word-spacing:4.734228px;}
.ws53{word-spacing:4.794003px;}
.wsbe{word-spacing:4.853779px;}
.ws48{word-spacing:4.913554px;}
.ws1b{word-spacing:5.092881px;}
.ws7a{word-spacing:5.196925px;}
.ws2e{word-spacing:5.212432px;}
.ws7c{word-spacing:5.247972px;}
.ws7e{word-spacing:5.249167px;}
.ws82{word-spacing:5.250724px;}
.wsd{word-spacing:5.299142px;}
.ws0{word-spacing:5.379825px;}
.ws39{word-spacing:5.391759px;}
.ws16{word-spacing:5.406739px;}
.ws38{word-spacing:5.511310px;}
.ws4f{word-spacing:5.621933px;}
.wse9{word-spacing:5.675731px;}
.ws70{word-spacing:5.810188px;}
.ws18{word-spacing:5.869964px;}
.ws23{word-spacing:6.109066px;}
.wsab{word-spacing:6.168842px;}
.ws8d{word-spacing:6.288393px;}
.ws109{word-spacing:6.321312px;}
.ws72{word-spacing:6.407944px;}
.wsdd{word-spacing:6.467720px;}
.wse4{word-spacing:6.644102px;}
.ws8{word-spacing:6.751699px;}
.wsd9{word-spacing:6.886149px;}
.ws3b{word-spacing:6.945925px;}
.wsd7{word-spacing:6.957115px;}
.wsc{word-spacing:6.966893px;}
.ws8f{word-spacing:7.005700px;}
.wsa{word-spacing:7.074490px;}
.ws104{word-spacing:7.182086px;}
.ws45{word-spacing:7.244803px;}
.ws2d{word-spacing:7.304578px;}
.ws42{word-spacing:7.364354px;}
.wsd1{word-spacing:7.483905px;}
.wse7{word-spacing:7.504877px;}
.ws30{word-spacing:7.543681px;}
.wsa0{word-spacing:7.597374px;}
.ws65{word-spacing:7.603456px;}
.ws26{word-spacing:7.663232px;}
.ws4a{word-spacing:7.723008px;}
.ws90{word-spacing:7.842559px;}
.wse6{word-spacing:7.881466px;}
.wsfe{word-spacing:7.935264px;}
.wsae{word-spacing:7.962110px;}
.ws11b{word-spacing:8.096659px;}
.ws10c{word-spacing:8.204256px;}
.wsc3{word-spacing:8.260988px;}
.ws7{word-spacing:8.473248px;}
.wsa6{word-spacing:8.500090px;}
.wseb{word-spacing:8.688442px;}
.ws4b{word-spacing:8.739193px;}
.wsec{word-spacing:8.742240px;}
.wsf1{word-spacing:8.796038px;}
.wsaf{word-spacing:8.798968px;}
.wsf7{word-spacing:8.957434px;}
.wsd8{word-spacing:8.978295px;}
.ws11a{word-spacing:9.011232px;}
.ws71{word-spacing:9.157622px;}
.ws3d{word-spacing:9.217398px;}
.ws10{word-spacing:9.226426px;}
.wscb{word-spacing:9.396724px;}
.ws10b{word-spacing:9.441619px;}
.wsa2{word-spacing:9.456500px;}
.ws5b{word-spacing:9.635827px;}
.ws3c{word-spacing:9.934705px;}
.ws9{word-spacing:10.033402px;}
.ws68{word-spacing:10.054256px;}
.ws8e{word-spacing:10.114032px;}
.ws9b{word-spacing:10.173807px;}
.ws31{word-spacing:10.293358px;}
.wsba{word-spacing:10.353134px;}
.wsfd{word-spacing:10.409990px;}
.wsf6{word-spacing:10.463789px;}
.ws59{word-spacing:10.472685px;}
.ws55{word-spacing:10.532461px;}
.ws4e{word-spacing:10.544486px;}
.ws9f{word-spacing:10.592236px;}
.wsd3{word-spacing:10.771563px;}
.ws91{word-spacing:10.796794px;}
.ws93{word-spacing:10.801570px;}
.ws98{word-spacing:10.802591px;}
.ws95{word-spacing:10.807252px;}
.wsbb{word-spacing:10.950890px;}
.ws11d{word-spacing:11.324563px;}
.ws105{word-spacing:11.647354px;}
.ws6d{word-spacing:11.668197px;}
.wsa9{word-spacing:11.787748px;}
.wsdc{word-spacing:11.847524px;}
.ws43{word-spacing:11.967075px;}
.ws52{word-spacing:12.026851px;}
.ws113{word-spacing:12.185338px;}
.ws57{word-spacing:12.206178px;}
.ws1d{word-spacing:12.385504px;}
.ws9d{word-spacing:12.624607px;}
.ws9e{word-spacing:12.684382px;}
.wse5{word-spacing:12.884717px;}
.ws76{word-spacing:12.983260px;}
.ws24{word-spacing:13.162587px;}
.wsfc{word-spacing:13.530298px;}
.ws119{word-spacing:16.005024px;}
.ws10f{word-spacing:16.919597px;}
.wsc4{word-spacing:18.366392px;}
.ws81{word-spacing:18.375421px;}
.ws88{word-spacing:18.377512px;}
.ws117{word-spacing:19.017734px;}
.ws110{word-spacing:19.717114px;}
.wscd{word-spacing:20.013005px;}
.wsca{word-spacing:21.065017px;}
.wsd4{word-spacing:22.864320px;}
.ws116{word-spacing:24.774163px;}
.ws115{word-spacing:24.935558px;}
.ws112{word-spacing:26.441914px;}
.ws15{word-spacing:27.592038px;}
.ws118{word-spacing:27.948269px;}
.ws5{word-spacing:28.190362px;}
.ws6{word-spacing:29.829450px;}
.ws114{word-spacing:32.843923px;}
.wsfb{word-spacing:33.274310px;}
.wsff{word-spacing:34.188883px;}
.wsfa{word-spacing:35.157254px;}
.wsf2{word-spacing:47.369491px;}
.wscf{word-spacing:47.409610px;}
.wsc5{word-spacing:47.719181px;}
.ws79{word-spacing:48.506748px;}
.ws103{word-spacing:50.274605px;}
.wsf3{word-spacing:50.704992px;}
.ws101{word-spacing:51.027782px;}
.ws100{word-spacing:51.511968px;}
.ws17{word-spacing:58.281600px;}
.wsf8{word-spacing:76.635821px;}
.wsf9{word-spacing:81.639072px;}
.ws102{word-spacing:88.202477px;}
.wsd5{word-spacing:96.627610px;}
.wsd0{word-spacing:101.181110px;}
.ws108{word-spacing:105.525562px;}
.ws107{word-spacing:112.680749px;}
.wsce{word-spacing:122.356161px;}
.wsc9{word-spacing:143.865245px;}
.wsd6{word-spacing:150.399110px;}
.wsc8{word-spacing:175.434146px;}
.wscc{word-spacing:177.696115px;}
.wsc6{word-spacing:178.371539px;}
.ws4d{word-spacing:231.319920px;}
.wsb4{word-spacing:463.863983px;}
.wsb9{word-spacing:630.873742px;}
.wsb6{word-spacing:672.099983px;}
._26{margin-left:-35.499766px;}
._4{margin-left:-32.540415px;}
._24{margin-left:-29.918839px;}
._6{margin-left:-28.893124px;}
._c{margin-left:-27.629629px;}
._b{margin-left:-26.100524px;}
._25{margin-left:-24.736289px;}
._3{margin-left:-23.252708px;}
._9{margin-left:-21.727376px;}
._1c{margin-left:-9.199526px;}
._2{margin-left:-7.629768px;}
._7{margin-left:-5.956051px;}
._8{margin-left:-4.387813px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.582903px;}
._a{width:1.506355px;}
._0{width:2.668393px;}
._11{width:4.287141px;}
._17{width:6.142288px;}
._18{width:7.194387px;}
._1e{width:8.476170px;}
._e{width:10.190589px;}
._1d{width:14.982167px;}
._1a{width:18.436216px;}
._f{width:20.361971px;}
._d{width:21.916136px;}
._1b{width:24.032416px;}
._27{width:27.848205px;}
._15{width:29.686964px;}
._28{width:36.690509px;}
._19{width:43.157983px;}
._20{width:50.570496px;}
._16{width:68.741940px;}
._10{width:80.697600px;}
._1f{width:139.714445px;}
._23{width:200.452838px;}
._14{width:229.857420px;}
._13{width:243.041760px;}
._12{width:255.326760px;}
._22{width:263.074176px;}
._21{width:281.527027px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.208000px;}
.fs9{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs6{font-size:37.440000px;}
.fs2{font-size:41.842800px;}
.fs8{font-size:44.928000px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y73{bottom:10.491000px;}
.y72{bottom:23.458500px;}
.y74{bottom:31.112250px;}
.y7b{bottom:49.331455px;}
.y75{bottom:51.534068px;}
.ye6{bottom:64.808250px;}
.y76{bottom:71.955886px;}
.yad{bottom:76.040250px;}
.y77{bottom:92.377705px;}
.y7c{bottom:94.553417px;}
.ye7{bottom:98.504250px;}
.y7d{bottom:99.829422px;}
.y78{bottom:112.799523px;}
.yae{bottom:120.968250px;}
.yb2{bottom:122.850000px;}
.ye8{bottom:132.200250px;}
.y79{bottom:133.221341px;}
.y7e{bottom:136.675282px;}
.yec{bottom:141.570000px;}
.y7a{bottom:153.643159px;}
.y7f{bottom:160.126909px;}
.yaf{bottom:165.896250px;}
.yb3{bottom:168.071963px;}
.y64{bottom:170.495591px;}
.yb4{bottom:173.347968px;}
.y65{bottom:178.149341px;}
.yed{bottom:186.124697px;}
.y12a{bottom:187.390500px;}
.yee{bottom:191.400702px;}
.y66{bottom:193.465705px;}
.y26{bottom:193.617000px;}
.y82{bottom:196.978500px;}
.y129{bottom:197.640000px;}
.y14b{bottom:199.146000px;}
.ye9{bottom:199.592250px;}
.y67{bottom:208.782068px;}
.y18f{bottom:210.055500px;}
.yb5{bottom:210.193827px;}
.yb0{bottom:210.824250px;}
.y25{bottom:211.549500px;}
.y81{bottom:213.417000px;}
.y6e{bottom:215.088545px;}
.y14a{bottom:215.584500px;}
.y68{bottom:224.098432px;}
.y18e{bottom:226.494000px;}
.ye4{bottom:228.837000px;}
.y4f{bottom:229.482000px;}
.y80{bottom:229.855500px;}
.y149{bottom:232.620000px;}
.yea{bottom:233.288250px;}
.y128{bottom:236.400000px;}
.y69{bottom:239.414795px;}
.y1be{bottom:242.931000px;}
.y18d{bottom:243.327000px;}
.y127{bottom:246.651000px;}
.ye3{bottom:246.769500px;}
.y4e{bottom:247.414500px;}
.y24{bottom:248.791500px;}
.y148{bottom:249.058500px;}
.y6a{bottom:254.731159px;}
.yb1{bottom:255.752250px;}
.y1bd{bottom:258.288000px;}
.ya4{bottom:259.375500px;}
.y6f{bottom:259.643242px;}
.y18c{bottom:259.765500px;}
.y63{bottom:261.238500px;}
.y70{bottom:264.919248px;}
.ybd{bottom:265.347000px;}
.y147{bottom:265.497000px;}
.yeb{bottom:266.984250px;}
.y164{bottom:268.338000px;}
.y6b{bottom:270.047523px;}
.y4d{bottom:270.286500px;}
.y1bc{bottom:274.726500px;}
.ye2{bottom:275.772000px;}
.y18b{bottom:276.204000px;}
.y146{bottom:282.532500px;}
.ybc{bottom:283.279500px;}
.y101{bottom:283.281000px;}
.y6c{bottom:285.363886px;}
.y126{bottom:285.411000px;}
.y163{bottom:286.270500px;}
.y4c{bottom:288.219000px;}
.y1bb{bottom:291.165000px;}
.y18a{bottom:293.037000px;}
.ye1{bottom:293.706000px;}
.y125{bottom:295.662000px;}
.y145{bottom:298.971000px;}
.y23{bottom:300.640500px;}
.y6d{bottom:300.680250px;}
.y100{bottom:301.213500px;}
.ybb{bottom:302.553000px;}
.y162{bottom:304.203000px;}
.y4b{bottom:306.153000px;}
.y71{bottom:307.164000px;}
.y1ba{bottom:307.603500px;}
.y189{bottom:309.475500px;}
.ye0{bottom:311.638500px;}
.ya3{bottom:316.914000px;}
.y22{bottom:317.079000px;}
.yba{bottom:320.485500px;}
.y161{bottom:322.135500px;}
.y1b9{bottom:322.959000px;}
.y4a{bottom:324.085500px;}
.y188{bottom:325.914000px;}
.ya2{bottom:327.165000px;}
.ydf{bottom:329.571000px;}
.y144{bottom:330.129000px;}
.yff{bottom:331.354500px;}
.y124{bottom:335.578500px;}
.yb9{bottom:338.418000px;}
.y1b8{bottom:339.397500px;}
.y160{bottom:340.068000px;}
.y49{bottom:342.018000px;}
.y187{bottom:342.747000px;}
.yde{bottom:347.503500px;}
.yfe{bottom:349.287000px;}
.y21{bottom:350.230500px;}
.y123{bottom:353.512500px;}
.y1b7{bottom:355.836000px;}
.yb8{bottom:356.352000px;}
.y186{bottom:359.185500px;}
.y48{bottom:359.950500px;}
.y20{bottom:366.669000px;}
.yfd{bottom:367.219500px;}
.y122{bottom:371.445000px;}
.y1b6{bottom:372.274500px;}
.yb7{bottom:374.284500px;}
.ydd{bottom:374.809500px;}
.y185{bottom:376.018500px;}
.y143{bottom:376.699500px;}
.y47{bottom:377.883000px;}
.ya1{bottom:382.857000px;}
.y1f{bottom:383.107500px;}
.yfc{bottom:384.606000px;}
.y1b5{bottom:387.630000px;}
.y121{bottom:389.377500px;}
.y102{bottom:389.476500px;}
.y15f{bottom:390.885000px;}
.y184{bottom:392.457000px;}
.y142{bottom:394.632000px;}
.y46{bottom:395.817000px;}
.y1e{bottom:399.546000px;}
.ya0{bottom:400.789500px;}
.yfb{bottom:402.538500px;}
.y1b4{bottom:404.068500px;}
.y120{bottom:407.310000px;}
.y183{bottom:408.895500px;}
.y141{bottom:412.564500px;}
.y1d{bottom:415.983000px;}
.ydc{bottom:417.060000px;}
.y45{bottom:418.689000px;}
.yfa{bottom:419.923500px;}
.y1b3{bottom:420.507000px;}
.y9e{bottom:423.127500px;}
.y11f{bottom:425.242500px;}
.y182{bottom:425.728500px;}
.y9b{bottom:430.851000px;}
.yb6{bottom:431.527500px;}
.y1c{bottom:432.421500px;}
.ydb{bottom:434.992500px;}
.y1b2{bottom:435.864000px;}
.y44{bottom:436.621500px;}
.yf9{bottom:437.310000px;}
.y9a{bottom:441.100500px;}
.y9f{bottom:441.102000px;}
.y181{bottom:442.167000px;}
.y11e{bottom:443.175000px;}
.y1b{bottom:448.860000px;}
.y1b1{bottom:452.302500px;}
.yda{bottom:452.925000px;}
.y15e{bottom:453.657000px;}
.y43{bottom:454.554000px;}
.yf8{bottom:455.242500px;}
.y9d{bottom:455.298000px;}
.y180{bottom:459.001500px;}
.y9c{bottom:459.781500px;}
.y11d{bottom:461.109000px;}
.yac{bottom:462.910500px;}
.y1a{bottom:465.298500px;}
.y1b0{bottom:467.658000px;}
.y140{bottom:470.350500px;}
.yd9{bottom:470.857500px;}
.y15d{bottom:471.589500px;}
.y42{bottom:472.486500px;}
.yf7{bottom:472.627500px;}
.y17f{bottom:475.440000px;}
.y11c{bottom:479.083500px;}
.y19{bottom:481.737000px;}
.y1af{bottom:484.096500px;}
.y99{bottom:485.211000px;}
.y13f{bottom:486.789000px;}
.yd8{bottom:488.790000px;}
.y15c{bottom:489.522000px;}
.yf6{bottom:490.014000px;}
.y41{bottom:490.420500px;}
.y17e{bottom:492.273000px;}
.y11b{bottom:497.016000px;}
.y18{bottom:498.175500px;}
.y1ae{bottom:499.452000px;}
.y98{bottom:503.143500px;}
.y13e{bottom:503.227500px;}
.yd7{bottom:506.722500px;}
.yf5{bottom:507.399000px;}
.y15b{bottom:507.454500px;}
.y40{bottom:508.353000px;}
.y17d{bottom:508.711500px;}
.y17{bottom:514.614000px;}
.y11a{bottom:514.948500px;}
.y1ad{bottom:515.890500px;}
.y13d{bottom:519.666000px;}
.y97{bottom:521.076000px;}
.yd6{bottom:524.656500px;}
.y17c{bottom:525.150000px;}
.yf4{bottom:525.331500px;}
.y15a{bottom:525.387000px;}
.y16{bottom:531.052500px;}
.y3f{bottom:531.225000px;}
.y1ac{bottom:532.329000px;}
.y119{bottom:532.882500px;}
.y13c{bottom:536.703000px;}
.y96{bottom:539.008500px;}
.y17b{bottom:541.983000px;}
.yd5{bottom:542.589000px;}
.yf3{bottom:542.718000px;}
.y159{bottom:543.321000px;}
.y15{bottom:547.491000px;}
.y1ab{bottom:547.686000px;}
.y3e{bottom:549.157500px;}
.y118{bottom:550.857000px;}
.y17a{bottom:558.421500px;}
.yd4{bottom:560.521500px;}
.yf2{bottom:560.650500px;}
.y158{bottom:561.253500px;}
.y14{bottom:563.929500px;}
.y1aa{bottom:564.124500px;}
.y13b{bottom:565.245000px;}
.y95{bottom:565.912500px;}
.y3d{bottom:567.090000px;}
.y117{bottom:568.789500px;}
.y179{bottom:575.254500px;}
.yd3{bottom:578.454000px;}
.yf1{bottom:578.583000px;}
.y157{bottom:579.186000px;}
.y1a9{bottom:580.563000px;}
.y3c{bottom:585.022500px;}
.y116{bottom:586.722000px;}
.y178{bottom:591.693000px;}
.y1a8{bottom:595.918500px;}
.yd2{bottom:596.386500px;}
.yf0{bottom:596.515500px;}
.y94{bottom:601.782000px;}
.y3b{bottom:602.956500px;}
.y115{bottom:604.654500px;}
.y177{bottom:608.131500px;}
.y13a{bottom:608.908500px;}
.y1a7{bottom:612.357000px;}
.yd1{bottom:614.319000px;}
.y93{bottom:619.714500px;}
.y114{bottom:622.588500px;}
.y176{bottom:624.570000px;}
.y3a{bottom:625.828500px;}
.y139{bottom:626.842500px;}
.y13{bottom:627.339000px;}
.y1a6{bottom:628.795500px;}
.yd0{bottom:632.253000px;}
.y62{bottom:636.994500px;}
.y92{bottom:637.647000px;}
.y156{bottom:639.738000px;}
.y113{bottom:640.521000px;}
.y175{bottom:641.403000px;}
.y39{bottom:643.761000px;}
.y12{bottom:643.777500px;}
.y138{bottom:644.775000px;}
.y1a5{bottom:645.234000px;}
.yef{bottom:645.903000px;}
.ycf{bottom:650.185500px;}
.y61{bottom:654.927000px;}
.y91{bottom:655.579500px;}
.y155{bottom:656.176500px;}
.y174{bottom:657.841500px;}
.y112{bottom:658.495500px;}
.y1a4{bottom:661.672500px;}
.y38{bottom:661.693500px;}
.y137{bottom:662.707500px;}
.y11{bottom:665.929500px;}
.yce{bottom:668.118000px;}
.y60{bottom:672.861000px;}
.y154{bottom:673.212000px;}
.y90{bottom:673.513500px;}
.y173{bottom:674.280000px;}
.y111{bottom:676.428000px;}
.y10{bottom:676.654500px;}
.y1a3{bottom:677.028000px;}
.ye5{bottom:677.284500px;}
.y37{bottom:679.626000px;}
.y136{bottom:680.640000px;}
.ycd{bottom:686.050500px;}
.y153{bottom:689.650500px;}
.y172{bottom:690.718500px;}
.y5f{bottom:690.793500px;}
.y8f{bottom:691.446000px;}
.yf{bottom:693.093000px;}
.y1a2{bottom:693.466500px;}
.y110{bottom:694.360500px;}
.y36{bottom:697.560000px;}
.ycc{bottom:703.983000px;}
.y152{bottom:706.089000px;}
.y171{bottom:707.551500px;}
.y5e{bottom:708.726000px;}
.y1a1{bottom:708.823500px;}
.y8e{bottom:709.378500px;}
.y10f{bottom:712.294500px;}
.ye{bottom:715.245000px;}
.y35{bottom:715.492500px;}
.y135{bottom:717.276000px;}
.y151{bottom:722.527500px;}
.y170{bottom:723.990000px;}
.y1a0{bottom:725.260500px;}
.yd{bottom:725.970000px;}
.y5d{bottom:726.658500px;}
.y8d{bottom:727.312500px;}
.y10e{bottom:730.227000px;}
.y34{bottom:733.425000px;}
.y150{bottom:738.966000px;}
.y16f{bottom:740.428500px;}
.y19f{bottom:741.699000px;}
.y5c{bottom:745.113000px;}
.y8c{bottom:745.245000px;}
.yc{bottom:748.122000px;}
.y10d{bottom:748.159500px;}
.y33{bottom:751.357500px;}
.y14f{bottom:756.003000px;}
.y16e{bottom:756.867000px;}
.y19e{bottom:757.056000px;}
.yb{bottom:758.847000px;}
.y5b{bottom:763.045500px;}
.y8b{bottom:763.177500px;}
.y134{bottom:765.868500px;}
.y10c{bottom:766.092000px;}
.y32{bottom:769.290000px;}
.ycb{bottom:769.705500px;}
.y14e{bottom:772.440000px;}
.y16d{bottom:773.305500px;}
.y19d{bottom:773.494500px;}
.ya{bottom:775.285500px;}
.y5a{bottom:780.979500px;}
.y8a{bottom:781.110000px;}
.y133{bottom:783.801000px;}
.y10b{bottom:784.024500px;}
.y19c{bottom:789.933000px;}
.y16c{bottom:790.138500px;}
.y9{bottom:791.722500px;}
.yca{bottom:791.889000px;}
.y31{bottom:792.163500px;}
.y59{bottom:798.912000px;}
.y89{bottom:799.042500px;}
.y132{bottom:801.733500px;}
.y10a{bottom:801.957000px;}
.y14d{bottom:803.598000px;}
.y19b{bottom:805.288500px;}
.y16b{bottom:806.577000px;}
.yc9{bottom:808.327500px;}
.y30{bottom:810.096000px;}
.y8{bottom:813.874500px;}
.y58{bottom:816.844500px;}
.y131{bottom:819.666000px;}
.y109{bottom:819.933000px;}
.y19a{bottom:821.727000px;}
.y16a{bottom:823.015500px;}
.yc8{bottom:824.766000px;}
.y2f{bottom:828.028500px;}
.y88{bottom:828.936000px;}
.y57{bottom:834.777000px;}
.yab{bottom:836.568000px;}
.y199{bottom:837.084000px;}
.y130{bottom:837.600000px;}
.y108{bottom:837.865500px;}
.y169{bottom:839.454000px;}
.y7{bottom:839.482500px;}
.yc7{bottom:841.204500px;}
.y2e{bottom:845.961000px;}
.y56{bottom:852.709500px;}
.y198{bottom:853.521000px;}
.yaa{bottom:854.500500px;}
.y12f{bottom:855.687000px;}
.y107{bottom:855.798000px;}
.y14c{bottom:855.840000px;}
.y6{bottom:857.415000px;}
.yc6{bottom:857.641500px;}
.y2d{bottom:868.833000px;}
.y197{bottom:869.959500px;}
.y55{bottom:870.642000px;}
.ya9{bottom:872.433000px;}
.y12e{bottom:873.619500px;}
.y106{bottom:873.730500px;}
.y87{bottom:873.774000px;}
.yc5{bottom:874.080000px;}
.y5{bottom:875.347500px;}
.y168{bottom:875.800500px;}
.y196{bottom:885.316500px;}
.y2c{bottom:886.767000px;}
.y54{bottom:889.096500px;}
.ya8{bottom:890.365500px;}
.yc4{bottom:890.518500px;}
.y12d{bottom:891.552000px;}
.y105{bottom:891.664500px;}
.y86{bottom:891.706500px;}
.y4{bottom:893.280000px;}
.y195{bottom:901.755000px;}
.y2b{bottom:904.699500px;}
.yc3{bottom:906.957000px;}
.y53{bottom:907.030500px;}
.ya7{bottom:908.299500px;}
.y12c{bottom:909.484500px;}
.y104{bottom:909.597000px;}
.y85{bottom:909.639000px;}
.y194{bottom:918.193500px;}
.y2a{bottom:922.632000px;}
.yc2{bottom:923.395500px;}
.y52{bottom:924.963000px;}
.y167{bottom:925.596000px;}
.ya6{bottom:926.232000px;}
.y12b{bottom:927.417000px;}
.y103{bottom:927.529500px;}
.y84{bottom:927.571500px;}
.y193{bottom:934.632000px;}
.yc1{bottom:939.834000px;}
.y29{bottom:940.564500px;}
.y51{bottom:942.895500px;}
.y166{bottom:943.528500px;}
.ya5{bottom:944.164500px;}
.y3{bottom:945.504000px;}
.y192{bottom:949.987500px;}
.yc0{bottom:956.272500px;}
.y28{bottom:958.497000px;}
.y50{bottom:960.828000px;}
.y165{bottom:961.461000px;}
.y83{bottom:963.436500px;}
.y191{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.ybf{bottom:976.438500px;}
.y27{bottom:981.370500px;}
.y190{bottom:982.864500px;}
.ybe{bottom:994.371000px;}
.y1{bottom:999.303000px;}
.h12{height:0.000000px;}
.hc{height:20.416032px;}
.h4{height:24.209280px;}
.he{height:28.080000px;}
.h11{height:29.038903px;}
.hb{height:34.781760px;}
.h6{height:37.336090px;}
.h16{height:37.658880px;}
.h5{height:40.348800px;}
.hd{height:41.738112px;}
.hf{height:41.842920px;}
.h8{height:44.831700px;}
.h1a{height:49.858800px;}
.h3{height:49.892047px;}
.h2{height:49.898047px;}
.h7{height:50.211840px;}
.h17{height:53.072100px;}
.h9{height:53.078100px;}
.h18{height:59.637275px;}
.h1{height:60.254040px;}
.h13{height:85.265700px;}
.h10{height:85.271700px;}
.h19{height:85.829700px;}
.h15{height:85.835700px;}
.h14{height:126.269700px;}
.ha{height:336.960000px;}
.h0{height:1188.000000px;}
.w1{width:449.280000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:18.018975px;}
.x1e{left:21.998438px;}
.x1a{left:24.368662px;}
.x19{left:28.348125px;}
.x1d{left:36.763594px;}
.x17{left:42.723281px;}
.x18{left:48.877969px;}
.x16{left:53.801719px;}
.x1b{left:168.581156px;}
.x20{left:179.361000px;}
.x1c{left:194.918344px;}
.x2{left:202.147500px;}
.x4{left:204.832500px;}
.x8{left:209.280000px;}
.x6{left:214.131000px;}
.x29{left:215.851500px;}
.x3b{left:218.773500px;}
.x14{left:224.563500px;}
.xe{left:226.492500px;}
.x2d{left:227.551500px;}
.x15{left:236.875500px;}
.xa{left:239.097000px;}
.x13{left:244.666500px;}
.x2b{left:247.576500px;}
.x5{left:251.346000px;}
.x1{left:260.874000px;}
.x2c{left:270.591000px;}
.x2e{left:273.444000px;}
.x38{left:281.502000px;}
.x2f{left:296.227500px;}
.x22{left:299.851500px;}
.x39{left:303.087000px;}
.x3a{left:309.240000px;}
.xc{left:332.845500px;}
.x36{left:339.775500px;}
.x21{left:340.834500px;}
.x30{left:343.522500px;}
.x10{left:348.541500px;}
.xd{left:355.603500px;}
.x37{left:359.928000px;}
.x23{left:361.720500px;}
.x7{left:366.466500px;}
.x3{left:371.554500px;}
.x12{left:373.255500px;}
.x25{left:374.691000px;}
.xb{left:376.785000px;}
.x24{left:380.181000px;}
.x34{left:384.828000px;}
.x32{left:395.583000px;}
.x26{left:398.842500px;}
.x27{left:408.885000px;}
.x9{left:417.553500px;}
.x31{left:427.324500px;}
.xf{left:436.447500px;}
.x11{left:445.390500px;}
.x33{left:459.594000px;}
.x35{left:472.314000px;}
.x2a{left:476.043000px;}
.x28{left:597.967500px;}
.x3c{left:640.560000px;}
@media print{
.va{vertical-align:-45.162667pt;}
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-19.280000pt;}
.v5{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.453333pt;}
.vb{vertical-align:16.032000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:20.314667pt;}
.v6{vertical-align:21.941333pt;}
.v8{vertical-align:27.973333pt;}
.v7{vertical-align:35.946667pt;}
.v9{vertical-align:72.389333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000501pt;}
.ls1d{letter-spacing:0.001659pt;}
.ls3f{letter-spacing:0.001986pt;}
.lsc{letter-spacing:0.001995pt;}
.ls49{letter-spacing:0.002079pt;}
.ls3d{letter-spacing:0.002205pt;}
.ls24{letter-spacing:0.002906pt;}
.lsb{letter-spacing:0.003733pt;}
.ls1f{letter-spacing:0.004465pt;}
.ls19{letter-spacing:0.900327pt;}
.ls3b{letter-spacing:1.471333pt;}
.ls44{letter-spacing:1.476666pt;}
.ls12{letter-spacing:1.671842pt;}
.ls2a{letter-spacing:1.905975pt;}
.ls3e{letter-spacing:2.288121pt;}
.ls40{letter-spacing:2.651982pt;}
.ls1{letter-spacing:2.652911pt;}
.ls3c{letter-spacing:2.654299pt;}
.ls16{letter-spacing:2.655095pt;}
.ls6{letter-spacing:2.657253pt;}
.ls0{letter-spacing:2.658245pt;}
.ls38{letter-spacing:2.951264pt;}
.lsd{letter-spacing:4.807919pt;}
.ls15{letter-spacing:5.718992pt;}
.ls11{letter-spacing:8.873356pt;}
.ls1c{letter-spacing:11.803145pt;}
.ls20{letter-spacing:11.807132pt;}
.lsf{letter-spacing:11.807383pt;}
.ls10{letter-spacing:11.808479pt;}
.ls33{letter-spacing:13.649386pt;}
.ls43{letter-spacing:14.139145pt;}
.ls42{letter-spacing:14.141573pt;}
.ls3a{letter-spacing:14.347145pt;}
.ls39{letter-spacing:14.349573pt;}
.ls27{letter-spacing:14.460911pt;}
.ls26{letter-spacing:14.466245pt;}
.ls25{letter-spacing:14.754906pt;}
.ls5{letter-spacing:14.757812pt;}
.ls17{letter-spacing:14.760239pt;}
.ls4a{letter-spacing:14.761685pt;}
.ls1b{letter-spacing:15.364327pt;}
.ls37{letter-spacing:15.670224pt;}
.ls34{letter-spacing:15.670719pt;}
.ls35{letter-spacing:15.672747pt;}
.ls30{letter-spacing:16.379558pt;}
.ls2f{letter-spacing:16.380052pt;}
.ls2e{letter-spacing:16.382080pt;}
.ls2c{letter-spacing:16.384495pt;}
.ls2b{letter-spacing:16.663309pt;}
.ls36{letter-spacing:17.389049pt;}
.lsa{letter-spacing:17.414347pt;}
.ls31{letter-spacing:17.560753pt;}
.ls32{letter-spacing:17.566080pt;}
.ls22{letter-spacing:17.600271pt;}
.lse{letter-spacing:17.799474pt;}
.ls2d{letter-spacing:18.098383pt;}
.ls29{letter-spacing:19.039527pt;}
.ls45{letter-spacing:20.663264pt;}
.ls21{letter-spacing:21.136479pt;}
.ls9{letter-spacing:21.290194pt;}
.ls8{letter-spacing:21.339919pt;}
.ls7{letter-spacing:21.345253pt;}
.ls18{letter-spacing:23.157812pt;}
.ls4b{letter-spacing:23.606586pt;}
.ls41{letter-spacing:26.835879pt;}
.ls14{letter-spacing:26.917605pt;}
.ls3{letter-spacing:27.227139pt;}
.ls2{letter-spacing:27.232473pt;}
.ls48{letter-spacing:95.120479pt;}
.ls47{letter-spacing:98.624479pt;}
.ls1a{letter-spacing:122.914509pt;}
.ls46{letter-spacing:172.613812pt;}
.ls23{letter-spacing:342.585067pt;}
.ls13{letter-spacing:425.214400pt;}
.ls28{letter-spacing:692.344266pt;}
.ws62{word-spacing:-53.133867pt;}
.ws63{word-spacing:-43.484756pt;}
.ws69{word-spacing:-42.359791pt;}
.ws80{word-spacing:-35.513694pt;}
.ws61{word-spacing:-34.611401pt;}
.ws86{word-spacing:-33.492361pt;}
.ws83{word-spacing:-32.788361pt;}
.ws7d{word-spacing:-32.783027pt;}
.wsa1{word-spacing:-25.738045pt;}
.wsde{word-spacing:-19.925333pt;}
.wsb7{word-spacing:-19.866821pt;}
.ws67{word-spacing:-19.842176pt;}
.wsb5{word-spacing:-18.792213pt;}
.wsb0{word-spacing:-17.971131pt;}
.wsb3{word-spacing:-17.016168pt;}
.wsb1{word-spacing:-15.432382pt;}
.wsb2{word-spacing:-15.431340pt;}
.wsb8{word-spacing:-15.427049pt;}
.ws3{word-spacing:-14.760588pt;}
.wsf4{word-spacing:-13.652838pt;}
.ws7f{word-spacing:-11.735224pt;}
.ws66{word-spacing:-2.964870pt;}
.wsc1{word-spacing:-2.911736pt;}
.ws6c{word-spacing:-2.752334pt;}
.wsdb{word-spacing:-2.646067pt;}
.wsac{word-spacing:-2.380397pt;}
.wse8{word-spacing:-2.080205pt;}
.ws12{word-spacing:-1.936742pt;}
.ws6b{word-spacing:-1.902192pt;}
.ws64{word-spacing:-1.849059pt;}
.wsdf{word-spacing:-1.583389pt;}
.ws8a{word-spacing:-1.530255pt;}
.ws33{word-spacing:-1.211452pt;}
.ws96{word-spacing:-1.105184pt;}
.wsee{word-spacing:-0.884685pt;}
.ws20{word-spacing:-0.839515pt;}
.ws10d{word-spacing:-0.789043pt;}
.ws6f{word-spacing:-0.680113pt;}
.wsf0{word-spacing:-0.597760pt;}
.ws46{word-spacing:-0.573846pt;}
.ws58{word-spacing:-0.467578pt;}
.ws37{word-spacing:-0.308176pt;}
.ws94{word-spacing:-0.201909pt;}
.wsbc{word-spacing:-0.148775pt;}
.ws7b{word-spacing:-0.047821pt;}
.ws35{word-spacing:-0.042507pt;}
.ws1a{word-spacing:0.000000pt;}
.ws75{word-spacing:0.010627pt;}
.wsef{word-spacing:0.071731pt;}
.wse2{word-spacing:0.119552pt;}
.ws36{word-spacing:0.170028pt;}
.ws11e{word-spacing:0.215194pt;}
.ws25{word-spacing:0.223162pt;}
.ws9a{word-spacing:0.276296pt;}
.wsa5{word-spacing:0.329430pt;}
.ws89{word-spacing:0.382564pt;}
.ws1e{word-spacing:0.435698pt;}
.wse{word-spacing:0.549939pt;}
.ws60{word-spacing:0.741120pt;}
.ws22{word-spacing:0.754501pt;}
.ws92{word-spacing:0.807635pt;}
.ws5e{word-spacing:0.860769pt;}
.ws50{word-spacing:0.884685pt;}
.wsaa{word-spacing:0.913903pt;}
.wsed{word-spacing:0.980326pt;}
.wsb{word-spacing:1.028147pt;}
.ws5d{word-spacing:1.073304pt;}
.wsf5{word-spacing:1.075968pt;}
.ws3a{word-spacing:1.126438pt;}
.wsda{word-spacing:1.179572pt;}
.wsc7{word-spacing:1.219430pt;}
.ws77{word-spacing:1.232706pt;}
.wse0{word-spacing:1.243332pt;}
.wsbf{word-spacing:1.285840pt;}
.wse3{word-spacing:1.315072pt;}
.ws6e{word-spacing:1.338973pt;}
.ws99{word-spacing:1.392107pt;}
.ws106{word-spacing:1.410714pt;}
.wsa4{word-spacing:1.445241pt;}
.ws11{word-spacing:1.506355pt;}
.ws9c{word-spacing:1.551509pt;}
.ws78{word-spacing:1.557444pt;}
.ws47{word-spacing:1.657777pt;}
.wsbd{word-spacing:1.764044pt;}
.ws13{word-spacing:1.793280pt;}
.wsc2{word-spacing:1.817178pt;}
.ws29{word-spacing:1.870312pt;}
.ws28{word-spacing:1.923446pt;}
.ws11c{word-spacing:1.936742pt;}
.ws74{word-spacing:1.976580pt;}
.ws73{word-spacing:2.029714pt;}
.wsad{word-spacing:2.082848pt;}
.wse1{word-spacing:2.093474pt;}
.ws19{word-spacing:2.135981pt;}
.ws1c{word-spacing:2.189115pt;}
.ws8c{word-spacing:2.295383pt;}
.ws41{word-spacing:2.348517pt;}
.ws2f{word-spacing:2.401651pt;}
.ws32{word-spacing:2.454785pt;}
.ws10e{word-spacing:2.462771pt;}
.ws54{word-spacing:2.507919pt;}
.ws2b{word-spacing:2.561052pt;}
.ws10a{word-spacing:2.654054pt;}
.ws14{word-spacing:2.701875pt;}
.ws84{word-spacing:2.706396pt;}
.wsc0{word-spacing:2.720454pt;}
.ws4{word-spacing:2.749696pt;}
.ws2a{word-spacing:2.773588pt;}
.ws2c{word-spacing:2.879856pt;}
.ws2{word-spacing:2.932989pt;}
.ws97{word-spacing:2.946981pt;}
.ws5f{word-spacing:2.951118pt;}
.ws34{word-spacing:2.986123pt;}
.ws5c{word-spacing:3.039257pt;}
.ws21{word-spacing:3.092391pt;}
.wsd2{word-spacing:3.198659pt;}
.ws49{word-spacing:3.251793pt;}
.ws111{word-spacing:3.323546pt;}
.ws5a{word-spacing:3.358060pt;}
.ws56{word-spacing:3.379314pt;}
.ws44{word-spacing:3.411194pt;}
.ws8b{word-spacing:3.464328pt;}
.wsea{word-spacing:3.514829pt;}
.ws40{word-spacing:3.517462pt;}
.ws51{word-spacing:3.570596pt;}
.ws27{word-spacing:3.676864pt;}
.wsa3{word-spacing:3.729997pt;}
.ws1f{word-spacing:3.783131pt;}
.wsf{word-spacing:3.801754pt;}
.ws3f{word-spacing:3.889399pt;}
.ws85{word-spacing:3.911417pt;}
.ws4c{word-spacing:3.942533pt;}
.ws87{word-spacing:3.949998pt;}
.ws3e{word-spacing:3.985067pt;}
.wsa8{word-spacing:4.101935pt;}
.wsa7{word-spacing:4.155068pt;}
.ws1{word-spacing:4.169962pt;}
.ws6a{word-spacing:4.208202pt;}
.ws53{word-spacing:4.261336pt;}
.wsbe{word-spacing:4.314470pt;}
.ws48{word-spacing:4.367604pt;}
.ws1b{word-spacing:4.527005pt;}
.ws7a{word-spacing:4.619489pt;}
.ws2e{word-spacing:4.633273pt;}
.ws7c{word-spacing:4.664864pt;}
.ws7e{word-spacing:4.665926pt;}
.ws82{word-spacing:4.667310pt;}
.wsd{word-spacing:4.710349pt;}
.ws0{word-spacing:4.782067pt;}
.ws39{word-spacing:4.792675pt;}
.ws16{word-spacing:4.805990pt;}
.ws38{word-spacing:4.898943pt;}
.ws4f{word-spacing:4.997274pt;}
.wse9{word-spacing:5.045094pt;}
.ws70{word-spacing:5.164612pt;}
.ws18{word-spacing:5.217746pt;}
.ws23{word-spacing:5.430281pt;}
.wsab{word-spacing:5.483415pt;}
.ws8d{word-spacing:5.589683pt;}
.ws109{word-spacing:5.618944pt;}
.ws72{word-spacing:5.695951pt;}
.wsdd{word-spacing:5.749084pt;}
.wse4{word-spacing:5.905869pt;}
.ws8{word-spacing:6.001510pt;}
.wsd9{word-spacing:6.121021pt;}
.ws3b{word-spacing:6.174155pt;}
.wsd7{word-spacing:6.184102pt;}
.wsc{word-spacing:6.192794pt;}
.ws8f{word-spacing:6.227289pt;}
.wsa{word-spacing:6.288435pt;}
.ws104{word-spacing:6.384077pt;}
.ws45{word-spacing:6.439825pt;}
.ws2d{word-spacing:6.492959pt;}
.ws42{word-spacing:6.546092pt;}
.wsd1{word-spacing:6.652360pt;}
.wse7{word-spacing:6.671002pt;}
.ws30{word-spacing:6.705494pt;}
.wsa0{word-spacing:6.753221pt;}
.ws65{word-spacing:6.758628pt;}
.ws26{word-spacing:6.811762pt;}
.ws4a{word-spacing:6.864896pt;}
.ws90{word-spacing:6.971163pt;}
.wse6{word-spacing:7.005747pt;}
.wsfe{word-spacing:7.053568pt;}
.wsae{word-spacing:7.077431pt;}
.ws11b{word-spacing:7.197030pt;}
.ws10c{word-spacing:7.292672pt;}
.wsc3{word-spacing:7.343100pt;}
.ws7{word-spacing:7.531776pt;}
.wsa6{word-spacing:7.555636pt;}
.wseb{word-spacing:7.723059pt;}
.ws4b{word-spacing:7.768171pt;}
.wsec{word-spacing:7.770880pt;}
.wsf1{word-spacing:7.818701pt;}
.wsaf{word-spacing:7.821305pt;}
.wsf7{word-spacing:7.962163pt;}
.wsd8{word-spacing:7.980707pt;}
.ws11a{word-spacing:8.009984pt;}
.ws71{word-spacing:8.140108pt;}
.ws3d{word-spacing:8.193242pt;}
.ws10{word-spacing:8.201267pt;}
.wscb{word-spacing:8.352644pt;}
.ws10b{word-spacing:8.392550pt;}
.wsa2{word-spacing:8.405778pt;}
.ws5b{word-spacing:8.565179pt;}
.ws3c{word-spacing:8.830849pt;}
.ws9{word-spacing:8.918579pt;}
.ws68{word-spacing:8.937116pt;}
.ws8e{word-spacing:8.990250pt;}
.ws9b{word-spacing:9.043384pt;}
.ws31{word-spacing:9.149652pt;}
.wsba{word-spacing:9.202786pt;}
.wsfd{word-spacing:9.253325pt;}
.wsf6{word-spacing:9.301146pt;}
.ws59{word-spacing:9.309053pt;}
.ws55{word-spacing:9.362187pt;}
.ws4e{word-spacing:9.372877pt;}
.ws9f{word-spacing:9.415321pt;}
.wsd3{word-spacing:9.574723pt;}
.ws91{word-spacing:9.597150pt;}
.ws93{word-spacing:9.601395pt;}
.ws98{word-spacing:9.602303pt;}
.ws95{word-spacing:9.606446pt;}
.wsbb{word-spacing:9.734124pt;}
.ws11d{word-spacing:10.066278pt;}
.ws105{word-spacing:10.353203pt;}
.ws6d{word-spacing:10.371731pt;}
.wsa9{word-spacing:10.477999pt;}
.wsdc{word-spacing:10.531132pt;}
.ws43{word-spacing:10.637400pt;}
.ws52{word-spacing:10.690534pt;}
.ws113{word-spacing:10.831411pt;}
.ws57{word-spacing:10.849936pt;}
.ws1d{word-spacing:11.009337pt;}
.ws9d{word-spacing:11.221873pt;}
.ws9e{word-spacing:11.275007pt;}
.wse5{word-spacing:11.453082pt;}
.ws76{word-spacing:11.540676pt;}
.ws24{word-spacing:11.700077pt;}
.wsfc{word-spacing:12.026931pt;}
.ws119{word-spacing:14.226688pt;}
.ws10f{word-spacing:15.039642pt;}
.wsc4{word-spacing:16.325681pt;}
.ws81{word-spacing:16.333708pt;}
.ws88{word-spacing:16.335567pt;}
.ws117{word-spacing:16.904653pt;}
.ws110{word-spacing:17.526323pt;}
.wscd{word-spacing:17.789338pt;}
.wsca{word-spacing:18.724460pt;}
.wsd4{word-spacing:20.323840pt;}
.ws116{word-spacing:22.021478pt;}
.ws115{word-spacing:22.164941pt;}
.ws112{word-spacing:23.503923pt;}
.ws15{word-spacing:24.526256pt;}
.ws118{word-spacing:24.842906pt;}
.ws5{word-spacing:25.058099pt;}
.ws6{word-spacing:26.515067pt;}
.ws114{word-spacing:29.194598pt;}
.wsfb{word-spacing:29.577165pt;}
.wsff{word-spacing:30.390118pt;}
.wsfa{word-spacing:31.250893pt;}
.wsf2{word-spacing:42.106214pt;}
.wscf{word-spacing:42.141875pt;}
.wsc5{word-spacing:42.417050pt;}
.ws79{word-spacing:43.117109pt;}
.ws103{word-spacing:44.688538pt;}
.wsf3{word-spacing:45.071104pt;}
.ws101{word-spacing:45.358029pt;}
.ws100{word-spacing:45.788416pt;}
.ws17{word-spacing:51.805867pt;}
.wsf8{word-spacing:68.120730pt;}
.wsf9{word-spacing:72.568064pt;}
.ws102{word-spacing:78.402202pt;}
.wsd5{word-spacing:85.891209pt;}
.wsd0{word-spacing:89.938765pt;}
.ws108{word-spacing:93.800499pt;}
.ws107{word-spacing:100.160666pt;}
.wsce{word-spacing:108.761032pt;}
.wsc9{word-spacing:127.880218pt;}
.wsd6{word-spacing:133.688098pt;}
.wsc8{word-spacing:155.941463pt;}
.wscc{word-spacing:157.952102pt;}
.wsc6{word-spacing:158.552479pt;}
.ws4d{word-spacing:205.617707pt;}
.wsb4{word-spacing:412.323540pt;}
.wsb9{word-spacing:560.776660pt;}
.wsb6{word-spacing:597.422207pt;}
._26{margin-left:-31.555348pt;}
._4{margin-left:-28.924813pt;}
._24{margin-left:-26.594523pt;}
._6{margin-left:-25.682777pt;}
._c{margin-left:-24.559670pt;}
._b{margin-left:-23.200466pt;}
._25{margin-left:-21.987813pt;}
._3{margin-left:-20.669074pt;}
._9{margin-left:-19.313223pt;}
._1c{margin-left:-8.177357pt;}
._2{margin-left:-6.782016pt;}
._7{margin-left:-5.294268pt;}
._8{margin-left:-3.900278pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.407025pt;}
._a{width:1.338982pt;}
._0{width:2.371905pt;}
._11{width:3.810792pt;}
._17{width:5.459812pt;}
._18{width:6.395011pt;}
._1e{width:7.534373pt;}
._e{width:9.058301pt;}
._1d{width:13.317482pt;}
._1a{width:16.387748pt;}
._f{width:18.099530pt;}
._d{width:19.481010pt;}
._1b{width:21.362148pt;}
._27{width:24.753960pt;}
._15{width:26.388413pt;}
._28{width:32.613786pt;}
._19{width:38.362652pt;}
._20{width:44.951552pt;}
._16{width:61.103947pt;}
._10{width:71.731200pt;}
._1f{width:124.190618pt;}
._23{width:178.180301pt;}
._14{width:204.317707pt;}
._13{width:216.037120pt;}
._12{width:226.957120pt;}
._22{width:233.843712pt;}
._21{width:250.246246pt;}
.fs7{font-size:23.296000pt;}
.fs9{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:33.280000pt;}
.fs2{font-size:37.193600pt;}
.fs8{font-size:39.936000pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:9.325333pt;}
.y72{bottom:20.852000pt;}
.y74{bottom:27.655333pt;}
.y7b{bottom:43.850182pt;}
.y75{bottom:45.808061pt;}
.ye6{bottom:57.607333pt;}
.y76{bottom:63.960788pt;}
.yad{bottom:67.591333pt;}
.y77{bottom:82.113515pt;}
.y7c{bottom:84.047482pt;}
.ye7{bottom:87.559333pt;}
.y7d{bottom:88.737264pt;}
.y78{bottom:100.266242pt;}
.yae{bottom:107.527333pt;}
.yb2{bottom:109.200000pt;}
.ye8{bottom:117.511333pt;}
.y79{bottom:118.418970pt;}
.y7e{bottom:121.489139pt;}
.yec{bottom:125.840000pt;}
.y7a{bottom:136.571697pt;}
.y7f{bottom:142.335030pt;}
.yaf{bottom:147.463333pt;}
.yb3{bottom:149.397300pt;}
.y64{bottom:151.551636pt;}
.yb4{bottom:154.087082pt;}
.y65{bottom:158.354970pt;}
.yed{bottom:165.444175pt;}
.y12a{bottom:166.569333pt;}
.yee{bottom:170.133957pt;}
.y66{bottom:171.969515pt;}
.y26{bottom:172.104000pt;}
.y82{bottom:175.092000pt;}
.y129{bottom:175.680000pt;}
.y14b{bottom:177.018667pt;}
.ye9{bottom:177.415333pt;}
.y67{bottom:185.584061pt;}
.y18f{bottom:186.716000pt;}
.yb5{bottom:186.838957pt;}
.yb0{bottom:187.399333pt;}
.y25{bottom:188.044000pt;}
.y81{bottom:189.704000pt;}
.y6e{bottom:191.189818pt;}
.y14a{bottom:191.630667pt;}
.y68{bottom:199.198606pt;}
.y18e{bottom:201.328000pt;}
.ye4{bottom:203.410667pt;}
.y4f{bottom:203.984000pt;}
.y80{bottom:204.316000pt;}
.y149{bottom:206.773333pt;}
.yea{bottom:207.367333pt;}
.y128{bottom:210.133333pt;}
.y69{bottom:212.813152pt;}
.y1be{bottom:215.938667pt;}
.y18d{bottom:216.290667pt;}
.y127{bottom:219.245333pt;}
.ye3{bottom:219.350667pt;}
.y4e{bottom:219.924000pt;}
.y24{bottom:221.148000pt;}
.y148{bottom:221.385333pt;}
.y6a{bottom:226.427697pt;}
.yb1{bottom:227.335333pt;}
.y1bd{bottom:229.589333pt;}
.ya4{bottom:230.556000pt;}
.y6f{bottom:230.793993pt;}
.y18c{bottom:230.902667pt;}
.y63{bottom:232.212000pt;}
.y70{bottom:235.483776pt;}
.ybd{bottom:235.864000pt;}
.y147{bottom:235.997333pt;}
.yeb{bottom:237.319333pt;}
.y164{bottom:238.522667pt;}
.y6b{bottom:240.042242pt;}
.y4d{bottom:240.254667pt;}
.y1bc{bottom:244.201333pt;}
.ye2{bottom:245.130667pt;}
.y18b{bottom:245.514667pt;}
.y146{bottom:251.140000pt;}
.ybc{bottom:251.804000pt;}
.y101{bottom:251.805333pt;}
.y6c{bottom:253.656788pt;}
.y126{bottom:253.698667pt;}
.y163{bottom:254.462667pt;}
.y4c{bottom:256.194667pt;}
.y1bb{bottom:258.813333pt;}
.y18a{bottom:260.477333pt;}
.ye1{bottom:261.072000pt;}
.y125{bottom:262.810667pt;}
.y145{bottom:265.752000pt;}
.y23{bottom:267.236000pt;}
.y6d{bottom:267.271333pt;}
.y100{bottom:267.745333pt;}
.ybb{bottom:268.936000pt;}
.y162{bottom:270.402667pt;}
.y4b{bottom:272.136000pt;}
.y71{bottom:273.034667pt;}
.y1ba{bottom:273.425333pt;}
.y189{bottom:275.089333pt;}
.ye0{bottom:277.012000pt;}
.ya3{bottom:281.701333pt;}
.y22{bottom:281.848000pt;}
.yba{bottom:284.876000pt;}
.y161{bottom:286.342667pt;}
.y1b9{bottom:287.074667pt;}
.y4a{bottom:288.076000pt;}
.y188{bottom:289.701333pt;}
.ya2{bottom:290.813333pt;}
.ydf{bottom:292.952000pt;}
.y144{bottom:293.448000pt;}
.yff{bottom:294.537333pt;}
.y124{bottom:298.292000pt;}
.yb9{bottom:300.816000pt;}
.y1b8{bottom:301.686667pt;}
.y160{bottom:302.282667pt;}
.y49{bottom:304.016000pt;}
.y187{bottom:304.664000pt;}
.yde{bottom:308.892000pt;}
.yfe{bottom:310.477333pt;}
.y21{bottom:311.316000pt;}
.y123{bottom:314.233333pt;}
.y1b7{bottom:316.298667pt;}
.yb8{bottom:316.757333pt;}
.y186{bottom:319.276000pt;}
.y48{bottom:319.956000pt;}
.y20{bottom:325.928000pt;}
.yfd{bottom:326.417333pt;}
.y122{bottom:330.173333pt;}
.y1b6{bottom:330.910667pt;}
.yb7{bottom:332.697333pt;}
.ydd{bottom:333.164000pt;}
.y185{bottom:334.238667pt;}
.y143{bottom:334.844000pt;}
.y47{bottom:335.896000pt;}
.ya1{bottom:340.317333pt;}
.y1f{bottom:340.540000pt;}
.yfc{bottom:341.872000pt;}
.y1b5{bottom:344.560000pt;}
.y121{bottom:346.113333pt;}
.y102{bottom:346.201333pt;}
.y15f{bottom:347.453333pt;}
.y184{bottom:348.850667pt;}
.y142{bottom:350.784000pt;}
.y46{bottom:351.837333pt;}
.y1e{bottom:355.152000pt;}
.ya0{bottom:356.257333pt;}
.yfb{bottom:357.812000pt;}
.y1b4{bottom:359.172000pt;}
.y120{bottom:362.053333pt;}
.y183{bottom:363.462667pt;}
.y141{bottom:366.724000pt;}
.y1d{bottom:369.762667pt;}
.ydc{bottom:370.720000pt;}
.y45{bottom:372.168000pt;}
.yfa{bottom:373.265333pt;}
.y1b3{bottom:373.784000pt;}
.y9e{bottom:376.113333pt;}
.y11f{bottom:377.993333pt;}
.y182{bottom:378.425333pt;}
.y9b{bottom:382.978667pt;}
.yb6{bottom:383.580000pt;}
.y1c{bottom:384.374667pt;}
.ydb{bottom:386.660000pt;}
.y1b2{bottom:387.434667pt;}
.y44{bottom:388.108000pt;}
.yf9{bottom:388.720000pt;}
.y9a{bottom:392.089333pt;}
.y9f{bottom:392.090667pt;}
.y181{bottom:393.037333pt;}
.y11e{bottom:393.933333pt;}
.y1b{bottom:398.986667pt;}
.y1b1{bottom:402.046667pt;}
.yda{bottom:402.600000pt;}
.y15e{bottom:403.250667pt;}
.y43{bottom:404.048000pt;}
.yf8{bottom:404.660000pt;}
.y9d{bottom:404.709333pt;}
.y180{bottom:408.001333pt;}
.y9c{bottom:408.694667pt;}
.y11d{bottom:409.874667pt;}
.yac{bottom:411.476000pt;}
.y1a{bottom:413.598667pt;}
.y1b0{bottom:415.696000pt;}
.y140{bottom:418.089333pt;}
.yd9{bottom:418.540000pt;}
.y15d{bottom:419.190667pt;}
.y42{bottom:419.988000pt;}
.yf7{bottom:420.113333pt;}
.y17f{bottom:422.613333pt;}
.y11c{bottom:425.852000pt;}
.y19{bottom:428.210667pt;}
.y1af{bottom:430.308000pt;}
.y99{bottom:431.298667pt;}
.y13f{bottom:432.701333pt;}
.yd8{bottom:434.480000pt;}
.y15c{bottom:435.130667pt;}
.yf6{bottom:435.568000pt;}
.y41{bottom:435.929333pt;}
.y17e{bottom:437.576000pt;}
.y11b{bottom:441.792000pt;}
.y18{bottom:442.822667pt;}
.y1ae{bottom:443.957333pt;}
.y98{bottom:447.238667pt;}
.y13e{bottom:447.313333pt;}
.yd7{bottom:450.420000pt;}
.yf5{bottom:451.021333pt;}
.y15b{bottom:451.070667pt;}
.y40{bottom:451.869333pt;}
.y17d{bottom:452.188000pt;}
.y17{bottom:457.434667pt;}
.y11a{bottom:457.732000pt;}
.y1ad{bottom:458.569333pt;}
.y13d{bottom:461.925333pt;}
.y97{bottom:463.178667pt;}
.yd6{bottom:466.361333pt;}
.y17c{bottom:466.800000pt;}
.yf4{bottom:466.961333pt;}
.y15a{bottom:467.010667pt;}
.y16{bottom:472.046667pt;}
.y3f{bottom:472.200000pt;}
.y1ac{bottom:473.181333pt;}
.y119{bottom:473.673333pt;}
.y13c{bottom:477.069333pt;}
.y96{bottom:479.118667pt;}
.y17b{bottom:481.762667pt;}
.yd5{bottom:482.301333pt;}
.yf3{bottom:482.416000pt;}
.y159{bottom:482.952000pt;}
.y15{bottom:486.658667pt;}
.y1ab{bottom:486.832000pt;}
.y3e{bottom:488.140000pt;}
.y118{bottom:489.650667pt;}
.y17a{bottom:496.374667pt;}
.yd4{bottom:498.241333pt;}
.yf2{bottom:498.356000pt;}
.y158{bottom:498.892000pt;}
.y14{bottom:501.270667pt;}
.y1aa{bottom:501.444000pt;}
.y13b{bottom:502.440000pt;}
.y95{bottom:503.033333pt;}
.y3d{bottom:504.080000pt;}
.y117{bottom:505.590667pt;}
.y179{bottom:511.337333pt;}
.yd3{bottom:514.181333pt;}
.yf1{bottom:514.296000pt;}
.y157{bottom:514.832000pt;}
.y1a9{bottom:516.056000pt;}
.y3c{bottom:520.020000pt;}
.y116{bottom:521.530667pt;}
.y178{bottom:525.949333pt;}
.y1a8{bottom:529.705333pt;}
.yd2{bottom:530.121333pt;}
.yf0{bottom:530.236000pt;}
.y94{bottom:534.917333pt;}
.y3b{bottom:535.961333pt;}
.y115{bottom:537.470667pt;}
.y177{bottom:540.561333pt;}
.y13a{bottom:541.252000pt;}
.y1a7{bottom:544.317333pt;}
.yd1{bottom:546.061333pt;}
.y93{bottom:550.857333pt;}
.y114{bottom:553.412000pt;}
.y176{bottom:555.173333pt;}
.y3a{bottom:556.292000pt;}
.y139{bottom:557.193333pt;}
.y13{bottom:557.634667pt;}
.y1a6{bottom:558.929333pt;}
.yd0{bottom:562.002667pt;}
.y62{bottom:566.217333pt;}
.y92{bottom:566.797333pt;}
.y156{bottom:568.656000pt;}
.y113{bottom:569.352000pt;}
.y175{bottom:570.136000pt;}
.y39{bottom:572.232000pt;}
.y12{bottom:572.246667pt;}
.y138{bottom:573.133333pt;}
.y1a5{bottom:573.541333pt;}
.yef{bottom:574.136000pt;}
.ycf{bottom:577.942667pt;}
.y61{bottom:582.157333pt;}
.y91{bottom:582.737333pt;}
.y155{bottom:583.268000pt;}
.y174{bottom:584.748000pt;}
.y112{bottom:585.329333pt;}
.y1a4{bottom:588.153333pt;}
.y38{bottom:588.172000pt;}
.y137{bottom:589.073333pt;}
.y11{bottom:591.937333pt;}
.yce{bottom:593.882667pt;}
.y60{bottom:598.098667pt;}
.y154{bottom:598.410667pt;}
.y90{bottom:598.678667pt;}
.y173{bottom:599.360000pt;}
.y111{bottom:601.269333pt;}
.y10{bottom:601.470667pt;}
.y1a3{bottom:601.802667pt;}
.ye5{bottom:602.030667pt;}
.y37{bottom:604.112000pt;}
.y136{bottom:605.013333pt;}
.ycd{bottom:609.822667pt;}
.y153{bottom:613.022667pt;}
.y172{bottom:613.972000pt;}
.y5f{bottom:614.038667pt;}
.y8f{bottom:614.618667pt;}
.yf{bottom:616.082667pt;}
.y1a2{bottom:616.414667pt;}
.y110{bottom:617.209333pt;}
.y36{bottom:620.053333pt;}
.ycc{bottom:625.762667pt;}
.y152{bottom:627.634667pt;}
.y171{bottom:628.934667pt;}
.y5e{bottom:629.978667pt;}
.y1a1{bottom:630.065333pt;}
.y8e{bottom:630.558667pt;}
.y10f{bottom:633.150667pt;}
.ye{bottom:635.773333pt;}
.y35{bottom:635.993333pt;}
.y135{bottom:637.578667pt;}
.y151{bottom:642.246667pt;}
.y170{bottom:643.546667pt;}
.y1a0{bottom:644.676000pt;}
.yd{bottom:645.306667pt;}
.y5d{bottom:645.918667pt;}
.y8d{bottom:646.500000pt;}
.y10e{bottom:649.090667pt;}
.y34{bottom:651.933333pt;}
.y150{bottom:656.858667pt;}
.y16f{bottom:658.158667pt;}
.y19f{bottom:659.288000pt;}
.y5c{bottom:662.322667pt;}
.y8c{bottom:662.440000pt;}
.yc{bottom:664.997333pt;}
.y10d{bottom:665.030667pt;}
.y33{bottom:667.873333pt;}
.y14f{bottom:672.002667pt;}
.y16e{bottom:672.770667pt;}
.y19e{bottom:672.938667pt;}
.yb{bottom:674.530667pt;}
.y5b{bottom:678.262667pt;}
.y8b{bottom:678.380000pt;}
.y134{bottom:680.772000pt;}
.y10c{bottom:680.970667pt;}
.y32{bottom:683.813333pt;}
.ycb{bottom:684.182667pt;}
.y14e{bottom:686.613333pt;}
.y16d{bottom:687.382667pt;}
.y19d{bottom:687.550667pt;}
.ya{bottom:689.142667pt;}
.y5a{bottom:694.204000pt;}
.y8a{bottom:694.320000pt;}
.y133{bottom:696.712000pt;}
.y10b{bottom:696.910667pt;}
.y19c{bottom:702.162667pt;}
.y16c{bottom:702.345333pt;}
.y9{bottom:703.753333pt;}
.yca{bottom:703.901333pt;}
.y31{bottom:704.145333pt;}
.y59{bottom:710.144000pt;}
.y89{bottom:710.260000pt;}
.y132{bottom:712.652000pt;}
.y10a{bottom:712.850667pt;}
.y14d{bottom:714.309333pt;}
.y19b{bottom:715.812000pt;}
.y16b{bottom:716.957333pt;}
.yc9{bottom:718.513333pt;}
.y30{bottom:720.085333pt;}
.y8{bottom:723.444000pt;}
.y58{bottom:726.084000pt;}
.y131{bottom:728.592000pt;}
.y109{bottom:728.829333pt;}
.y19a{bottom:730.424000pt;}
.y16a{bottom:731.569333pt;}
.yc8{bottom:733.125333pt;}
.y2f{bottom:736.025333pt;}
.y88{bottom:736.832000pt;}
.y57{bottom:742.024000pt;}
.yab{bottom:743.616000pt;}
.y199{bottom:744.074667pt;}
.y130{bottom:744.533333pt;}
.y108{bottom:744.769333pt;}
.y169{bottom:746.181333pt;}
.y7{bottom:746.206667pt;}
.yc7{bottom:747.737333pt;}
.y2e{bottom:751.965333pt;}
.y56{bottom:757.964000pt;}
.y198{bottom:758.685333pt;}
.yaa{bottom:759.556000pt;}
.y12f{bottom:760.610667pt;}
.y107{bottom:760.709333pt;}
.y14c{bottom:760.746667pt;}
.y6{bottom:762.146667pt;}
.yc6{bottom:762.348000pt;}
.y2d{bottom:772.296000pt;}
.y197{bottom:773.297333pt;}
.y55{bottom:773.904000pt;}
.ya9{bottom:775.496000pt;}
.y12e{bottom:776.550667pt;}
.y106{bottom:776.649333pt;}
.y87{bottom:776.688000pt;}
.yc5{bottom:776.960000pt;}
.y5{bottom:778.086667pt;}
.y168{bottom:778.489333pt;}
.y196{bottom:786.948000pt;}
.y2c{bottom:788.237333pt;}
.y54{bottom:790.308000pt;}
.ya8{bottom:791.436000pt;}
.yc4{bottom:791.572000pt;}
.y12d{bottom:792.490667pt;}
.y105{bottom:792.590667pt;}
.y86{bottom:792.628000pt;}
.y4{bottom:794.026667pt;}
.y195{bottom:801.560000pt;}
.y2b{bottom:804.177333pt;}
.yc3{bottom:806.184000pt;}
.y53{bottom:806.249333pt;}
.ya7{bottom:807.377333pt;}
.y12c{bottom:808.430667pt;}
.y104{bottom:808.530667pt;}
.y85{bottom:808.568000pt;}
.y194{bottom:816.172000pt;}
.y2a{bottom:820.117333pt;}
.yc2{bottom:820.796000pt;}
.y52{bottom:822.189333pt;}
.y167{bottom:822.752000pt;}
.ya6{bottom:823.317333pt;}
.y12b{bottom:824.370667pt;}
.y103{bottom:824.470667pt;}
.y84{bottom:824.508000pt;}
.y193{bottom:830.784000pt;}
.yc1{bottom:835.408000pt;}
.y29{bottom:836.057333pt;}
.y51{bottom:838.129333pt;}
.y166{bottom:838.692000pt;}
.ya5{bottom:839.257333pt;}
.y3{bottom:840.448000pt;}
.y192{bottom:844.433333pt;}
.yc0{bottom:850.020000pt;}
.y28{bottom:851.997333pt;}
.y50{bottom:854.069333pt;}
.y165{bottom:854.632000pt;}
.y83{bottom:856.388000pt;}
.y191{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.ybf{bottom:867.945333pt;}
.y27{bottom:872.329333pt;}
.y190{bottom:873.657333pt;}
.ybe{bottom:883.885333pt;}
.y1{bottom:888.269333pt;}
.h12{height:0.000000pt;}
.hc{height:18.147584pt;}
.h4{height:21.519360pt;}
.he{height:24.960000pt;}
.h11{height:25.812358pt;}
.hb{height:30.917120pt;}
.h6{height:33.187635pt;}
.h16{height:33.474560pt;}
.h5{height:35.865600pt;}
.hd{height:37.100544pt;}
.hf{height:37.193707pt;}
.h8{height:39.850400pt;}
.h1a{height:44.318933pt;}
.h3{height:44.348486pt;}
.h2{height:44.353820pt;}
.h7{height:44.632747pt;}
.h17{height:47.175200pt;}
.h9{height:47.180533pt;}
.h18{height:53.010911pt;}
.h1{height:53.559147pt;}
.h13{height:75.791733pt;}
.h10{height:75.797067pt;}
.h19{height:76.293067pt;}
.h15{height:76.298400pt;}
.h14{height:112.239733pt;}
.ha{height:299.520000pt;}
.h0{height:1056.000000pt;}
.w1{width:399.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:16.016867pt;}
.x1e{left:19.554167pt;}
.x1a{left:21.661033pt;}
.x19{left:25.198333pt;}
.x1d{left:32.678750pt;}
.x17{left:37.976250pt;}
.x18{left:43.447083pt;}
.x16{left:47.823750pt;}
.x1b{left:149.849917pt;}
.x20{left:159.432000pt;}
.x1c{left:173.260750pt;}
.x2{left:179.686667pt;}
.x4{left:182.073333pt;}
.x8{left:186.026667pt;}
.x6{left:190.338667pt;}
.x29{left:191.868000pt;}
.x3b{left:194.465333pt;}
.x14{left:199.612000pt;}
.xe{left:201.326667pt;}
.x2d{left:202.268000pt;}
.x15{left:210.556000pt;}
.xa{left:212.530667pt;}
.x13{left:217.481333pt;}
.x2b{left:220.068000pt;}
.x5{left:223.418667pt;}
.x1{left:231.888000pt;}
.x2c{left:240.525333pt;}
.x2e{left:243.061333pt;}
.x38{left:250.224000pt;}
.x2f{left:263.313333pt;}
.x22{left:266.534667pt;}
.x39{left:269.410667pt;}
.x3a{left:274.880000pt;}
.xc{left:295.862667pt;}
.x36{left:302.022667pt;}
.x21{left:302.964000pt;}
.x30{left:305.353333pt;}
.x10{left:309.814667pt;}
.xd{left:316.092000pt;}
.x37{left:319.936000pt;}
.x23{left:321.529333pt;}
.x7{left:325.748000pt;}
.x3{left:330.270667pt;}
.x12{left:331.782667pt;}
.x25{left:333.058667pt;}
.xb{left:334.920000pt;}
.x24{left:337.938667pt;}
.x34{left:342.069333pt;}
.x32{left:351.629333pt;}
.x26{left:354.526667pt;}
.x27{left:363.453333pt;}
.x9{left:371.158667pt;}
.x31{left:379.844000pt;}
.xf{left:387.953333pt;}
.x11{left:395.902667pt;}
.x33{left:408.528000pt;}
.x35{left:419.834667pt;}
.x2a{left:423.149333pt;}
.x28{left:531.526667pt;}
.x3c{left:569.386667pt;}
}




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