
    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_f563fc809a5e5d54366851a6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f935d9af92e16f7bc835199f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.701000;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_65af676913361434a57c09b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_332af23f7f582cf58e1b4d4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_94ca9c07c8f7ac50ea75a53a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_629b5cef2b0cb3842fafb07e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_34ce7133f74696c6bc586f62.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d5cf0ead3066f9902454f6b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.713000;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_d669607660d08fa6595a8485.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bffc3c1446e9233515b8a6d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0ffbd5ace59cccc6ce170c0f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_36610ec6021beecd5e64d755.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.075000;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_150360ea7453c1b40ba63a0a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_934fb0ef07c758cd1db8fabb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9788acab9a306926c6125801.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3ad6efb7a9893789a630831b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.299000;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_fb353f3a10dd180f96d1985a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f67f8cd67a7414bf4f9ca8ba.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v6{vertical-align:-26.028000px;}
.v3{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.034000px;}
.v5{vertical-align:31.236000px;}
.v4{vertical-align:51.738000px;}
.v1{vertical-align:53.970000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001261px;}
.ls18{letter-spacing:0.001473px;}
.ls10{letter-spacing:0.002338px;}
.ls13{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.986200px;}
.ls1{letter-spacing:2.986894px;}
.ls12{letter-spacing:2.992200px;}
.lsd{letter-spacing:9.759573px;}
.ls19{letter-spacing:15.890287px;}
.ls1b{letter-spacing:17.024287px;}
.ls1a{letter-spacing:17.438287px;}
.lsc{letter-spacing:20.510287px;}
.ls17{letter-spacing:22.220287px;}
.ls9{letter-spacing:22.562287px;}
.ls7{letter-spacing:23.408287px;}
.ls14{letter-spacing:24.776287px;}
.lsf{letter-spacing:26.978287px;}
.ls16{letter-spacing:27.554287px;}
.lsb{letter-spacing:27.674287px;}
.ls8{letter-spacing:28.898287px;}
.ls15{letter-spacing:29.582287px;}
.ls4{letter-spacing:29.672287px;}
.ls6{letter-spacing:29.846287px;}
.lsa{letter-spacing:31.274287px;}
.lse{letter-spacing:32.336287px;}
.ls5{letter-spacing:32.864287px;}
.ls3{letter-spacing:35.117578px;}
.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;}
}
.wsc2{word-spacing:-65.805930px;}
.ws31{word-spacing:-40.341627px;}
.ws84{word-spacing:-35.858427px;}
.ws34{word-spacing:-35.112422px;}
.ws12c{word-spacing:-26.753805px;}
.ws136{word-spacing:-24.137549px;}
.wsf2{word-spacing:-22.846387px;}
.ws64{word-spacing:-22.042755px;}
.ws4e{word-spacing:-21.918780px;}
.wsc3{word-spacing:-19.546752px;}
.ws7a{word-spacing:-19.475021px;}
.wsbc{word-spacing:-19.259827px;}
.wsed{word-spacing:-19.188096px;}
.wsc7{word-spacing:-18.972902px;}
.wsd2{word-spacing:-18.901171px;}
.ws11b{word-spacing:-18.685978px;}
.ws111{word-spacing:-18.614246px;}
.ws120{word-spacing:-18.470784px;}
.ws97{word-spacing:-18.327322px;}
.ws77{word-spacing:-18.255590px;}
.wsf8{word-spacing:-18.112128px;}
.ws11a{word-spacing:-18.040397px;}
.ws12f{word-spacing:-17.968666px;}
.ws129{word-spacing:-17.896934px;}
.ws15{word-spacing:-17.825203px;}
.wsd7{word-spacing:-17.753472px;}
.ws133{word-spacing:-17.710433px;}
.ws131{word-spacing:-17.681741px;}
.wsa4{word-spacing:-17.538278px;}
.wse3{word-spacing:-17.394816px;}
.ws79{word-spacing:-17.323085px;}
.wsee{word-spacing:-17.251354px;}
.wsd8{word-spacing:-17.179622px;}
.ws8e{word-spacing:-17.107891px;}
.wsb5{word-spacing:-17.036160px;}
.wsf4{word-spacing:-16.964429px;}
.ws9a{word-spacing:-16.892698px;}
.ws10e{word-spacing:-16.820966px;}
.wseb{word-spacing:-16.749235px;}
.ws11f{word-spacing:-16.677504px;}
.wsf9{word-spacing:-16.634465px;}
.wsd1{word-spacing:-16.605773px;}
.ws53{word-spacing:-16.534042px;}
.ws116{word-spacing:-16.462310px;}
.ws82{word-spacing:-16.390579px;}
.ws11e{word-spacing:-16.318848px;}
.ws132{word-spacing:-16.275809px;}
.ws78{word-spacing:-16.247117px;}
.ws125{word-spacing:-16.175386px;}
.wsa0{word-spacing:-16.168212px;}
.ws137{word-spacing:-16.103654px;}
.ws114{word-spacing:-16.031923px;}
.ws33{word-spacing:-15.960192px;}
.ws59{word-spacing:-15.888461px;}
.ws4f{word-spacing:-15.829597px;}
.ws11d{word-spacing:-15.816730px;}
.ws8d{word-spacing:-15.773691px;}
.wse9{word-spacing:-15.744998px;}
.ws50{word-spacing:-15.743520px;}
.ws9f{word-spacing:-15.601536px;}
.ws94{word-spacing:-15.529805px;}
.ws10b{word-spacing:-15.458074px;}
.ws10c{word-spacing:-15.386342px;}
.wsce{word-spacing:-15.314611px;}
.ws3e{word-spacing:-15.242880px;}
.ws12{word-spacing:-15.171149px;}
.ws3a{word-spacing:-15.099418px;}
.ws104{word-spacing:-15.027686px;}
.ws119{word-spacing:-14.884224px;}
.wsd9{word-spacing:-14.812493px;}
.ws49{word-spacing:-14.740762px;}
.ws6f{word-spacing:-14.669030px;}
.wsf1{word-spacing:-14.625992px;}
.ws39{word-spacing:-14.597299px;}
.ws102{word-spacing:-14.525568px;}
.ws68{word-spacing:-14.382106px;}
.wsb2{word-spacing:-14.310374px;}
.ws100{word-spacing:-14.238643px;}
.ws69{word-spacing:-14.166912px;}
.ws4c{word-spacing:-14.095181px;}
.ws1d{word-spacing:-14.023450px;}
.wsb6{word-spacing:-13.980411px;}
.ws21{word-spacing:-13.951718px;}
.ws96{word-spacing:-13.879987px;}
.wsaf{word-spacing:-13.836948px;}
.ws1e{word-spacing:-13.808256px;}
.ws105{word-spacing:-13.765217px;}
.wsf3{word-spacing:-13.739969px;}
.ws35{word-spacing:-13.736525px;}
.ws9e{word-spacing:-13.664794px;}
.wse1{word-spacing:-13.593062px;}
.ws80{word-spacing:-13.521331px;}
.ws32{word-spacing:-13.514158px;}
.wsbe{word-spacing:-13.478292px;}
.ws98{word-spacing:-13.449600px;}
.ws30{word-spacing:-13.442427px;}
.ws115{word-spacing:-13.377869px;}
.ws12e{word-spacing:-13.306138px;}
.wscc{word-spacing:-13.234406px;}
.wsf0{word-spacing:-13.162675px;}
.wse8{word-spacing:-13.090944px;}
.ws9c{word-spacing:-13.019213px;}
.wsff{word-spacing:-12.947482px;}
.wsf5{word-spacing:-12.875750px;}
.ws63{word-spacing:-12.804019px;}
.ws37{word-spacing:-12.732288px;}
.wsd0{word-spacing:-12.660557px;}
.wse4{word-spacing:-12.617518px;}
.wsae{word-spacing:-12.588826px;}
.ws10{word-spacing:-12.517094px;}
.wsa1{word-spacing:-12.445363px;}
.ws81{word-spacing:-12.373632px;}
.ws47{word-spacing:-12.301901px;}
.ws58{word-spacing:-12.230170px;}
.wsd3{word-spacing:-12.158438px;}
.ws19{word-spacing:-12.086707px;}
.ws36{word-spacing:-12.014976px;}
.wsb0{word-spacing:-11.971937px;}
.wsa5{word-spacing:-11.943245px;}
.ws17{word-spacing:-11.871514px;}
.ws109{word-spacing:-11.828475px;}
.ws7c{word-spacing:-11.799782px;}
.wse2{word-spacing:-11.728458px;}
.ws5{word-spacing:-11.728051px;}
.ws6{word-spacing:-11.656320px;}
.ws26{word-spacing:-11.584589px;}
.ws103{word-spacing:-11.512858px;}
.ws75{word-spacing:-11.441126px;}
.ws87{word-spacing:-11.398088px;}
.ws89{word-spacing:-11.369395px;}
.ws28{word-spacing:-11.297664px;}
.ws5c{word-spacing:-11.225933px;}
.ws122{word-spacing:-11.154202px;}
.ws57{word-spacing:-11.082470px;}
.ws95{word-spacing:-11.010739px;}
.wsa6{word-spacing:-10.967700px;}
.ws124{word-spacing:-10.867277px;}
.wsca{word-spacing:-10.795546px;}
.wsc1{word-spacing:-10.752507px;}
.wsdb{word-spacing:-10.723814px;}
.ws62{word-spacing:-10.652083px;}
.ws5a{word-spacing:-10.580352px;}
.ws5d{word-spacing:-10.508621px;}
.ws12b{word-spacing:-10.436890px;}
.wsa3{word-spacing:-10.393851px;}
.ws5b{word-spacing:-10.365158px;}
.ws55{word-spacing:-10.293427px;}
.ws73{word-spacing:-10.149965px;}
.ws4d{word-spacing:-10.078234px;}
.ws2d{word-spacing:-10.006502px;}
.ws25{word-spacing:-9.934771px;}
.wscb{word-spacing:-9.863040px;}
.ws76{word-spacing:-9.791309px;}
.ws54{word-spacing:-9.647846px;}
.ws110{word-spacing:-9.576115px;}
.wsf7{word-spacing:-9.533076px;}
.wsa2{word-spacing:-9.504384px;}
.wsdc{word-spacing:-9.432653px;}
.ws71{word-spacing:-9.360922px;}
.ws6e{word-spacing:-9.289190px;}
.ws51{word-spacing:-9.217459px;}
.wscd{word-spacing:-9.145728px;}
.wsa9{word-spacing:-9.073997px;}
.ws2c{word-spacing:-9.002266px;}
.ws4a{word-spacing:-8.930534px;}
.wsb1{word-spacing:-8.858803px;}
.wsab{word-spacing:-8.787072px;}
.ws3b{word-spacing:-8.715341px;}
.wsf6{word-spacing:-8.672302px;}
.wse{word-spacing:-8.643610px;}
.ws61{word-spacing:-8.571878px;}
.ws9d{word-spacing:-8.500147px;}
.wsda{word-spacing:-8.428416px;}
.ws66{word-spacing:-8.356685px;}
.wsdf{word-spacing:-8.284954px;}
.ws6a{word-spacing:-8.213222px;}
.ws2a{word-spacing:-8.141491px;}
.ws86{word-spacing:-8.069760px;}
.ws2f{word-spacing:-7.998029px;}
.ws56{word-spacing:-7.926298px;}
.ws29{word-spacing:-7.854566px;}
.wsc6{word-spacing:-7.782835px;}
.ws72{word-spacing:-7.711104px;}
.wsd4{word-spacing:-7.639373px;}
.wse7{word-spacing:-7.567642px;}
.wse5{word-spacing:-7.524603px;}
.ws14{word-spacing:-7.495910px;}
.ws2e{word-spacing:-7.424179px;}
.ws46{word-spacing:-7.352448px;}
.wsfe{word-spacing:-7.280717px;}
.wsb9{word-spacing:-7.237678px;}
.ws10a{word-spacing:-7.208986px;}
.ws118{word-spacing:-7.193731px;}
.ws2b{word-spacing:-7.137254px;}
.ws20{word-spacing:-7.065523px;}
.wsbf{word-spacing:-6.993792px;}
.ws107{word-spacing:-6.950753px;}
.ws67{word-spacing:-6.922061px;}
.wsb8{word-spacing:-6.879022px;}
.ws52{word-spacing:-6.850330px;}
.ws6c{word-spacing:-6.778598px;}
.ws10d{word-spacing:-6.635136px;}
.ws42{word-spacing:-6.563405px;}
.ws112{word-spacing:-6.491674px;}
.wsc0{word-spacing:-6.448635px;}
.wsc4{word-spacing:-6.419942px;}
.ws7d{word-spacing:-6.348211px;}
.ws7e{word-spacing:-6.276480px;}
.ws65{word-spacing:-6.204749px;}
.ws92{word-spacing:-6.133018px;}
.ws117{word-spacing:-6.089979px;}
.ws9b{word-spacing:-6.061286px;}
.ws93{word-spacing:-5.989555px;}
.ws126{word-spacing:-5.917824px;}
.ws8c{word-spacing:-5.874785px;}
.ws10f{word-spacing:-5.846093px;}
.wsa8{word-spacing:-5.774362px;}
.wsac{word-spacing:-5.731323px;}
.ws22{word-spacing:-5.702630px;}
.wsc8{word-spacing:-5.630899px;}
.ws13{word-spacing:-5.559168px;}
.ws7f{word-spacing:-5.487437px;}
.ws85{word-spacing:-5.415706px;}
.wsf{word-spacing:-5.343974px;}
.wsa7{word-spacing:-5.300936px;}
.ws8f{word-spacing:-5.272243px;}
.wsaa{word-spacing:-5.128781px;}
.ws108{word-spacing:-5.085742px;}
.ws12a{word-spacing:-5.057050px;}
.ws83{word-spacing:-5.014011px;}
.ws91{word-spacing:-4.985318px;}
.ws16{word-spacing:-4.913587px;}
.ws90{word-spacing:-4.870548px;}
.ws130{word-spacing:-4.841856px;}
.ws70{word-spacing:-4.770125px;}
.ws11c{word-spacing:-4.626662px;}
.ws123{word-spacing:-4.554931px;}
.wsea{word-spacing:-4.483200px;}
.wsfc{word-spacing:-4.411469px;}
.ws7b{word-spacing:-4.339738px;}
.wsdd{word-spacing:-4.268006px;}
.ws127{word-spacing:-4.196275px;}
.ws11{word-spacing:-4.124544px;}
.ws128{word-spacing:-4.052813px;}
.wscf{word-spacing:-3.981082px;}
.ws6d{word-spacing:-3.909350px;}
.wsb4{word-spacing:-3.837619px;}
.wsad{word-spacing:-3.794580px;}
.wsbb{word-spacing:-3.765888px;}
.ws60{word-spacing:-3.694157px;}
.wse0{word-spacing:-3.622426px;}
.wsb3{word-spacing:-3.579387px;}
.wsc5{word-spacing:-3.550694px;}
.ws12d{word-spacing:-3.478963px;}
.wsba{word-spacing:-3.435924px;}
.ws5e{word-spacing:-3.335501px;}
.ws1f{word-spacing:-3.263770px;}
.ws3d{word-spacing:-3.192038px;}
.wsde{word-spacing:-2.905114px;}
.ws23{word-spacing:-2.833382px;}
.ws27{word-spacing:-2.761651px;}
.wsfd{word-spacing:-2.689920px;}
.ws138{word-spacing:-2.546458px;}
.wsfb{word-spacing:-2.474726px;}
.wsfa{word-spacing:-2.359956px;}
.ws88{word-spacing:-2.259533px;}
.ws3c{word-spacing:-2.187802px;}
.wsd5{word-spacing:-2.116070px;}
.ws5f{word-spacing:-1.829146px;}
.ws106{word-spacing:-1.685683px;}
.wsd6{word-spacing:-1.613952px;}
.ws99{word-spacing:-1.398758px;}
.wsec{word-spacing:-1.327027px;}
.ws45{word-spacing:-1.255296px;}
.wsc{word-spacing:-1.183565px;}
.wsd{word-spacing:-1.040102px;}
.wsbd{word-spacing:-0.681446px;}
.ws74{word-spacing:-0.609715px;}
.ws6b{word-spacing:-0.466253px;}
.ws134{word-spacing:-0.322790px;}
.ws135{word-spacing:-0.279752px;}
.ws113{word-spacing:-0.251059px;}
.ws2{word-spacing:-0.148723px;}
.ws4{word-spacing:-0.123975px;}
.wsb7{word-spacing:-0.107597px;}
.wsb{word-spacing:-0.103292px;}
.wse6{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.047821px;}
.ws9{word-spacing:0.000000px;}
.wsc9{word-spacing:0.107597px;}
.ws101{word-spacing:0.394522px;}
.ws121{word-spacing:0.753178px;}
.wsef{word-spacing:0.968371px;}
.ws8b{word-spacing:1.083141px;}
.ws8a{word-spacing:1.183565px;}
.ws40{word-spacing:1.613952px;}
.ws48{word-spacing:2.474726px;}
.ws41{word-spacing:7.998029px;}
.ws4b{word-spacing:13.090944px;}
.ws43{word-spacing:13.808256px;}
.ws44{word-spacing:15.314611px;}
.ws7{word-spacing:17.155597px;}
.ws8{word-spacing:19.845499px;}
.ws1a{word-spacing:25.988553px;}
.ws18{word-spacing:26.168553px;}
.ws38{word-spacing:27.652378px;}
.ws24{word-spacing:36.978679px;}
.ws1c{word-spacing:37.081972px;}
.ws3{word-spacing:45.062948px;}
.ws1{word-spacing:45.211670px;}
.ws0{word-spacing:48.111067px;}
.wsa{word-spacing:51.755465px;}
.ws3f{word-spacing:125.637197px;}
._0{margin-left:-11.600363px;}
._3e{margin-left:-10.344397px;}
._7{margin-left:-9.296316px;}
._3f{margin-left:-8.035086px;}
._13{margin-left:-7.029658px;}
._3{margin-left:-5.810227px;}
._1{margin-left:-3.718065px;}
._5{margin-left:-1.936742px;}
._4{width:1.936742px;}
._2{width:3.718065px;}
._39{width:5.595034px;}
._15{width:6.742733px;}
._3a{width:9.040731px;}
._38{width:10.136706px;}
._44{width:13.476451px;}
._40{width:17.000294px;}
._36{width:18.147994px;}
._2f{width:19.582618px;}
._41{width:20.658586px;}
._2b{width:22.021478px;}
._1a{width:23.384371px;}
._3c{width:24.591844px;}
._6{width:26.624065px;}
._42{width:27.688243px;}
._b{width:28.764211px;}
._2a{width:30.055373px;}
._9{width:31.059610px;}
._30{width:33.068083px;}
._d{width:34.502707px;}
._12{width:35.793869px;}
._29{width:36.798106px;}
._35{width:37.945805px;}
._10{width:39.667354px;}
._33{width:40.815053px;}
._f{width:41.962752px;}
._a{width:43.827763px;}
._2e{width:45.836237px;}
._37{width:47.043710px;}
._21{width:48.862865px;}
._1f{width:50.355302px;}
._c{width:51.574733px;}
._3b{width:53.009357px;}
._32{width:55.233024px;}
._43{width:56.380723px;}
._e{width:57.887078px;}
._34{width:59.205578px;}
._31{width:60.756326px;}
._8{width:63.195187px;}
._3d{width:66.052478px;}
._1e{width:71.731200px;}
._24{width:84.068966px;}
._2d{width:86.782795px;}
._26{width:110.752973px;}
._2c{width:112.259328px;}
._11{width:120.279304px;}
._28{width:122.014771px;}
._27{width:125.888256px;}
._23{width:129.403085px;}
._1d{width:149.272627px;}
._20{width:151.125681px;}
._1b{width:154.795930px;}
._17{width:160.606157px;}
._18{width:166.918502px;}
._22{width:199.986586px;}
._16{width:200.990822px;}
._14{width:206.083738px;}
._1c{width:217.417267px;}
._25{width:229.527883px;}
._19{width:308.946278px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs7{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.ye{bottom:125.247000px;}
.yb6{bottom:170.079000px;}
.y137{bottom:172.807500px;}
.y194{bottom:173.611500px;}
.yb{bottom:175.510500px;}
.y163{bottom:180.411000px;}
.y136{bottom:181.381500px;}
.y11f{bottom:188.181000px;}
.y150{bottom:194.010000px;}
.ya{bottom:195.057000px;}
.yb5{bottom:198.247500px;}
.ye1{bottom:200.977500px;}
.y193{bottom:201.780000px;}
.y107{bottom:208.579500px;}
.y135{bottom:209.551500px;}
.y58{bottom:212.475000px;}
.y11e{bottom:216.351000px;}
.y2b{bottom:220.330500px;}
.y92{bottom:221.890500px;}
.y14f{bottom:222.178500px;}
.y82{bottom:225.141000px;}
.yb4{bottom:226.417500px;}
.y17a{bottom:228.978000px;}
.ye0{bottom:229.147500px;}
.y192{bottom:229.950000px;}
.y106{bottom:236.749500px;}
.y11d{bottom:244.519500px;}
.y2a{bottom:248.500500px;}
.y91{bottom:250.060500px;}
.y14e{bottom:250.348500px;}
.y81{bottom:253.309500px;}
.yb3{bottom:254.587500px;}
.y57{bottom:255.327000px;}
.y179{bottom:257.148000px;}
.ydf{bottom:257.316000px;}
.y191{bottom:258.118500px;}
.y105{bottom:264.918000px;}
.y134{bottom:265.890000px;}
.yf0{bottom:272.260500px;}
.y11c{bottom:272.689500px;}
.y29{bottom:276.670500px;}
.y99{bottom:278.229000px;}
.y14d{bottom:278.517000px;}
.y80{bottom:281.479500px;}
.yb2{bottom:282.756000px;}
.y178{bottom:285.316500px;}
.yde{bottom:285.486000px;}
.y190{bottom:286.288500px;}
.y90{bottom:292.911000px;}
.y104{bottom:293.088000px;}
.y56{bottom:293.355000px;}
.y133{bottom:294.060000px;}
.yef{bottom:300.429000px;}
.y11b{bottom:300.859500px;}
.y55{bottom:308.590500px;}
.yb1{bottom:310.926000px;}
.y177{bottom:313.486500px;}
.ydd{bottom:313.654500px;}
.y18f{bottom:314.458500px;}
.y8f{bottom:321.081000px;}
.y103{bottom:321.258000px;}
.y132{bottom:322.228500px;}
.y28{bottom:322.593000px;}
.y7f{bottom:324.331500px;}
.yee{bottom:328.599000px;}
.y11a{bottom:329.028000px;}
.y14c{bottom:334.857000px;}
.yb0{bottom:339.094500px;}
.y159{bottom:339.096000px;}
.y71{bottom:341.538000px;}
.y176{bottom:341.656500px;}
.ydc{bottom:341.824500px;}
.y18e{bottom:342.627000px;}
.y9{bottom:346.762500px;}
.y98{bottom:349.251000px;}
.y162{bottom:349.426500px;}
.y131{bottom:350.398500px;}
.y7e{bottom:352.501500px;}
.y54{bottom:353.919000px;}
.yed{bottom:356.769000px;}
.y119{bottom:357.198000px;}
.y14b{bottom:363.025500px;}
.y8e{bottom:363.933000px;}
.yaf{bottom:367.264500px;}
.y175{bottom:369.825000px;}
.ydb{bottom:369.994500px;}
.y18d{bottom:370.797000px;}
.y8{bottom:374.932500px;}
.y97{bottom:377.419500px;}
.y102{bottom:377.596500px;}
.y130{bottom:378.567000px;}
.y7d{bottom:380.670000px;}
.y3d{bottom:384.207000px;}
.y70{bottom:384.390000px;}
.yec{bottom:384.937500px;}
.y118{bottom:385.366500px;}
.y14a{bottom:391.195500px;}
.y53{bottom:391.948500px;}
.y8d{bottom:392.103000px;}
.y27{bottom:392.350500px;}
.yae{bottom:395.434500px;}
.y174{bottom:397.995000px;}
.yda{bottom:398.163000px;}
.y18c{bottom:398.965500px;}
.y7{bottom:403.102500px;}
.y101{bottom:405.765000px;}
.y12f{bottom:406.737000px;}
.yeb{bottom:413.107500px;}
.y117{bottom:413.536500px;}
.y149{bottom:419.364000px;}
.y52{bottom:420.117000px;}
.y8c{bottom:420.271500px;}
.y26{bottom:420.520500px;}
.y50{bottom:421.267500px;}
.y7c{bottom:423.522000px;}
.yad{bottom:423.603000px;}
.y173{bottom:426.165000px;}
.yd9{bottom:426.333000px;}
.y18b{bottom:427.135500px;}
.y6f{bottom:427.242000px;}
.y3c{bottom:427.320000px;}
.y6{bottom:431.271000px;}
.y100{bottom:433.935000px;}
.y12e{bottom:434.907000px;}
.yea{bottom:441.276000px;}
.y116{bottom:441.706500px;}
.y148{bottom:447.534000px;}
.y51{bottom:448.287000px;}
.y8b{bottom:448.441500px;}
.y25{bottom:448.689000px;}
.y7b{bottom:451.692000px;}
.yac{bottom:451.773000px;}
.y172{bottom:454.333500px;}
.yd8{bottom:454.501500px;}
.y18a{bottom:455.305500px;}
.y3b{bottom:455.488500px;}
.y5{bottom:459.441000px;}
.yff{bottom:462.105000px;}
.y12d{bottom:463.075500px;}
.ye9{bottom:469.446000px;}
.y6e{bottom:469.495500px;}
.y115{bottom:469.875000px;}
.y147{bottom:475.704000px;}
.y8a{bottom:476.610000px;}
.y24{bottom:476.859000px;}
.yab{bottom:479.943000px;}
.y4f{bottom:481.279500px;}
.y171{bottom:482.503500px;}
.yd7{bottom:482.671500px;}
.y189{bottom:483.474000px;}
.yfe{bottom:490.273500px;}
.y12c{bottom:491.245500px;}
.y96{bottom:491.293500px;}
.y7a{bottom:494.544000px;}
.ye8{bottom:497.616000px;}
.y114{bottom:498.045000px;}
.y3a{bottom:501.412500px;}
.y146{bottom:503.872500px;}
.y23{bottom:505.027500px;}
.yaa{bottom:508.111500px;}
.y170{bottom:510.672000px;}
.yd6{bottom:510.841500px;}
.y188{bottom:511.644000px;}
.y6d{bottom:511.749000px;}
.yfd{bottom:518.443500px;}
.y12b{bottom:519.414000px;}
.y89{bottom:519.462000px;}
.y79{bottom:522.712500px;}
.y4e{bottom:524.131500px;}
.ye7{bottom:525.784500px;}
.y113{bottom:526.213500px;}
.y145{bottom:532.042500px;}
.y22{bottom:533.197500px;}
.ya9{bottom:536.281500px;}
.y16f{bottom:538.842000px;}
.yd5{bottom:539.010000px;}
.y187{bottom:539.814000px;}
.yfc{bottom:546.613500px;}
.y12a{bottom:547.584000px;}
.y88{bottom:547.632000px;}
.y6c{bottom:549.778500px;}
.y78{bottom:550.882500px;}
.ye6{bottom:553.954500px;}
.y112{bottom:554.383500px;}
.y144{bottom:560.212500px;}
.y95{bottom:562.314000px;}
.ya8{bottom:564.450000px;}
.y4d{bottom:566.983500px;}
.y16e{bottom:567.012000px;}
.yd4{bottom:567.180000px;}
.y186{bottom:567.982500px;}
.y39{bottom:571.170000px;}
.yfb{bottom:574.782000px;}
.y129{bottom:575.754000px;}
.y87{bottom:575.802000px;}
.y6b{bottom:577.947000px;}
.y69{bottom:579.099000px;}
.y21{bottom:579.121500px;}
.ye5{bottom:582.124500px;}
.y111{bottom:582.553500px;}
.y143{bottom:588.381000px;}
.y94{bottom:590.484000px;}
.ya7{bottom:592.620000px;}
.y77{bottom:593.734500px;}
.y16d{bottom:595.180500px;}
.yd3{bottom:595.350000px;}
.y185{bottom:596.152500px;}
.y38{bottom:599.338500px;}
.y161{bottom:602.952000px;}
.y128{bottom:603.922500px;}
.y4c{bottom:605.011500px;}
.y6a{bottom:606.117000px;}
.ye4{bottom:610.293000px;}
.y110{bottom:610.722000px;}
.y142{bottom:616.551000px;}
.y86{bottom:618.652500px;}
.ya6{bottom:620.790000px;}
.y76{bottom:621.903000px;}
.y16c{bottom:623.350500px;}
.yd2{bottom:623.518500px;}
.y184{bottom:624.321000px;}
.yfa{bottom:631.120500px;}
.y127{bottom:632.092500px;}
.y4b{bottom:633.181500px;}
.y49{bottom:634.332000px;}
.ye3{bottom:638.463000px;}
.y68{bottom:638.512500px;}
.y10f{bottom:638.892000px;}
.y17b{bottom:644.719500px;}
.y85{bottom:646.822500px;}
.y37{bottom:646.935000px;}
.y20{bottom:648.877500px;}
.ya5{bottom:648.958500px;}
.yd1{bottom:651.688500px;}
.y183{bottom:652.491000px;}
.yf9{bottom:659.290500px;}
.y126{bottom:660.262500px;}
.y4a{bottom:661.350000px;}
.y93{bottom:661.504500px;}
.y75{bottom:664.755000px;}
.ye2{bottom:666.631500px;}
.y10e{bottom:667.062000px;}
.y141{bottom:672.889500px;}
.y36{bottom:675.105000px;}
.y1f{bottom:677.047500px;}
.ya4{bottom:677.128500px;}
.y16b{bottom:679.689000px;}
.y120{bottom:679.857000px;}
.y182{bottom:680.661000px;}
.y67{bottom:680.766000px;}
.yf8{bottom:687.460500px;}
.y125{bottom:688.431000px;}
.y84{bottom:689.674500px;}
.y4{bottom:692.878500px;}
.y74{bottom:692.925000px;}
.y48{bottom:693.745500px;}
.ycf{bottom:694.801500px;}
.y10d{bottom:695.230500px;}
.y140{bottom:701.059500px;}
.yd{bottom:703.963500px;}
.y1e{bottom:705.217500px;}
.ya3{bottom:705.297000px;}
.y16a{bottom:707.859000px;}
.y153{bottom:708.027000px;}
.y181{bottom:708.829500px;}
.yf7{bottom:715.629000px;}
.y83{bottom:717.844500px;}
.y35{bottom:722.701500px;}
.yce{bottom:722.971500px;}
.y10c{bottom:723.400500px;}
.y66{bottom:723.618000px;}
.y13f{bottom:729.228000px;}
.y47{bottom:731.773500px;}
.y1d{bottom:733.386000px;}
.ya2{bottom:733.467000px;}
.y73{bottom:735.777000px;}
.y124{bottom:736.027500px;}
.y152{bottom:736.197000px;}
.y180{bottom:736.999500px;}
.yf6{bottom:743.799000px;}
.y46{bottom:747.009000px;}
.y34{bottom:750.871500px;}
.ycd{bottom:751.140000px;}
.y10b{bottom:751.569000px;}
.y13e{bottom:757.398000px;}
.y1c{bottom:761.556000px;}
.yc7{bottom:761.637000px;}
.y169{bottom:764.197500px;}
.y151{bottom:764.365500px;}
.y17f{bottom:765.168000px;}
.y65{bottom:766.470000px;}
.yf5{bottom:771.967500px;}
.y3{bottom:772.419000px;}
.yc2{bottom:779.050500px;}
.ycc{bottom:779.310000px;}
.ya1{bottom:780.409500px;}
.y13d{bottom:785.566500px;}
.y1b{bottom:789.724500px;}
.y158{bottom:789.805500px;}
.y123{bottom:790.132500px;}
.yc{bottom:792.133500px;}
.y45{bottom:792.339000px;}
.y168{bottom:792.366000px;}
.y19a{bottom:792.535500px;}
.y33{bottom:798.468000px;}
.y10a{bottom:799.165500px;}
.y160{bottom:800.137500px;}
.yc6{bottom:800.226000px;}
.y72{bottom:802.714500px;}
.yd0{bottom:807.219000px;}
.ycb{bottom:807.478500px;}
.y64{bottom:808.723500px;}
.y17e{bottom:812.764500px;}
.y13c{bottom:813.736500px;}
.y1a{bottom:817.894500px;}
.y157{bottom:817.975500px;}
.y122{bottom:818.301000px;}
.yf4{bottom:819.564000px;}
.y167{bottom:820.536000px;}
.y199{bottom:820.704000px;}
.yc1{bottom:824.634000px;}
.y32{bottom:826.636500px;}
.ya0{bottom:827.353500px;}
.y44{bottom:830.367000px;}
.yca{bottom:835.648500px;}
.yc5{bottom:838.815000px;}
.y19{bottom:846.064500px;}
.y15e{bottom:846.145500px;}
.y109{bottom:846.762000px;}
.y15f{bottom:847.734000px;}
.y166{bottom:848.706000px;}
.y198{bottom:848.874000px;}
.y63{bottom:850.978500px;}
.y2{bottom:851.961000px;}
.yc0{bottom:852.802500px;}
.y31{bottom:854.806500px;}
.y43{bottom:858.537000px;}
.y41{bottom:859.687500px;}
.y17d{bottom:860.362500px;}
.y13b{bottom:861.333000px;}
.y156{bottom:862.005000px;}
.yc9{bottom:863.818500px;}
.yf3{bottom:867.162000px;}
.y18{bottom:874.233000px;}
.y15d{bottom:874.314000px;}
.y197{bottom:877.044000px;}
.y121{bottom:878.817000px;}
.y30{bottom:882.975000px;}
.y42{bottom:886.705500px;}
.yc4{bottom:887.824500px;}
.yc8{bottom:891.987000px;}
.y9f{bottom:893.070000px;}
.y62{bottom:893.232000px;}
.yf2{bottom:895.330500px;}
.y165{bottom:896.302500px;}
.y17{bottom:902.403000px;}
.y196{bottom:905.212500px;}
.y155{bottom:906.033000px;}
.y13a{bottom:908.929500px;}
.y1{bottom:910.242000px;}
.y2f{bottom:911.145000px;}
.y108{bottom:913.786500px;}
.ybf{bottom:915.799500px;}
.y15c{bottom:916.789500px;}
.y40{bottom:919.698000px;}
.ybd{bottom:920.157000px;}
.yc3{bottom:922.794000px;}
.y17c{bottom:927.385500px;}
.y9e{bottom:928.039500px;}
.y16{bottom:930.571500px;}
.y195{bottom:933.382500px;}
.y61{bottom:935.485500px;}
.y2e{bottom:939.315000px;}
.y164{bottom:943.899000px;}
.y5d{bottom:945.723000px;}
.ybc{bottom:948.327000px;}
.y15{bottom:958.741500px;}
.y15b{bottom:959.263500px;}
.y3f{bottom:961.953000px;}
.yf1{bottom:962.355000px;}
.y9d{bottom:963.007500px;}
.y154{bottom:965.922000px;}
.y2d{bottom:967.483500px;}
.ybe{bottom:968.182500px;}
.y139{bottom:975.954000px;}
.ybb{bottom:976.495500px;}
.y60{bottom:977.740500px;}
.y14{bottom:986.911500px;}
.y5c{bottom:987.976500px;}
.y2c{bottom:995.653500px;}
.yba{bottom:1004.665500px;}
.y3e{bottom:1004.803500px;}
.y138{bottom:1010.922000px;}
.y13{bottom:1015.080000px;}
.y15a{bottom:1016.044500px;}
.y9c{bottom:1016.751000px;}
.y5f{bottom:1020.592500px;}
.y5b{bottom:1031.427000px;}
.yb9{bottom:1032.834000px;}
.y12{bottom:1043.250000px;}
.yb8{bottom:1061.004000px;}
.y5e{bottom:1063.444500px;}
.y9b{bottom:1065.318000px;}
.y5a{bottom:1069.455000px;}
.y11{bottom:1071.420000px;}
.y59{bottom:1084.690500px;}
.yb7{bottom:1089.174000px;}
.y9a{bottom:1113.886500px;}
.y10{bottom:1117.342500px;}
.yf{bottom:1172.635500px;}
.h7{height:27.825462px;}
.h11{height:31.800699px;}
.h4{height:50.713958px;}
.h10{height:51.287808px;}
.h9{height:53.870131px;}
.h6{height:59.263317px;}
.h5{height:59.269317px;}
.ha{height:72.407972px;}
.hf{height:75.317550px;}
.he{height:87.030450px;}
.hb{height:102.451958px;}
.h8{height:104.403265px;}
.h3{height:105.295601px;}
.h2{height:140.132625px;}
.hc{height:892.914000px;}
.hd{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:170.079000px;}
.x23{left:171.706500px;}
.x3b{left:173.788500px;}
.x1d{left:175.405500px;}
.x1f{left:176.914500px;}
.x13{left:179.044500px;}
.x39{left:180.915000px;}
.x53{left:183.454500px;}
.x47{left:184.755000px;}
.x2b{left:186.264000px;}
.xa{left:190.269000px;}
.x10{left:191.338500px;}
.x1{left:193.518000px;}
.x4a{left:194.785500px;}
.x11{left:196.419000px;}
.x29{left:198.552000px;}
.x55{left:199.869000px;}
.x3d{left:204.490500px;}
.x4d{left:206.754000px;}
.x45{left:208.998000px;}
.x1c{left:211.039500px;}
.x58{left:212.044500px;}
.x12{left:213.976500px;}
.x50{left:218.248500px;}
.x3a{left:222.129000px;}
.x2e{left:224.079000px;}
.x25{left:227.104500px;}
.x24{left:230.883000px;}
.x35{left:233.661000px;}
.x43{left:236.110500px;}
.x52{left:244.564500px;}
.x4f{left:246.045000px;}
.x4e{left:259.071000px;}
.x38{left:262.636500px;}
.x2f{left:270.168000px;}
.x42{left:276.039000px;}
.x3{left:277.351500px;}
.xc{left:293.751000px;}
.x4{left:296.079000px;}
.x30{left:301.431000px;}
.x32{left:305.857500px;}
.x20{left:307.969500px;}
.x21{left:309.901500px;}
.x2c{left:316.269000px;}
.x1e{left:320.086500px;}
.x4b{left:322.587000px;}
.x14{left:324.537000px;}
.x41{left:331.569000px;}
.x40{left:335.913000px;}
.x15{left:337.293000px;}
.x2d{left:340.111500px;}
.x37{left:343.086000px;}
.x3c{left:344.299500px;}
.x34{left:354.174000px;}
.x2a{left:356.823000px;}
.x22{left:360.640500px;}
.x4c{left:362.152500px;}
.x56{left:363.372000px;}
.x33{left:364.785000px;}
.x28{left:368.394000px;}
.x36{left:373.557000px;}
.x44{left:374.779500px;}
.x3f{left:375.993000px;}
.x3e{left:377.556000px;}
.x49{left:378.967500px;}
.x27{left:382.203000px;}
.x1a{left:385.549500px;}
.x54{left:386.769000px;}
.x31{left:387.885000px;}
.x26{left:399.873000px;}
.x46{left:403.524000px;}
.x59{left:407.259000px;}
.x19{left:408.618000px;}
.x51{left:410.802000px;}
.xb{left:416.274000px;}
.x2{left:419.619000px;}
.x48{left:427.224000px;}
.x57{left:434.401500px;}
.x1b{left:458.938500px;}
.xd{left:463.327500px;}
.x16{left:525.304500px;}
.x8{left:587.253000px;}
.x17{left:628.276500px;}
.x7{left:632.655000px;}
.x6{left:635.919000px;}
.x9{left:650.008500px;}
.x5{left:665.308500px;}
.x18{left:747.799500px;}
.xe{left:756.577500px;}
@media print{
.v6{vertical-align:-23.136000pt;}
.v3{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.141333pt;}
.v5{vertical-align:27.765333pt;}
.v4{vertical-align:45.989333pt;}
.v1{vertical-align:47.973333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001121pt;}
.ls18{letter-spacing:0.001309pt;}
.ls10{letter-spacing:0.002079pt;}
.ls13{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.654400pt;}
.ls1{letter-spacing:2.655017pt;}
.ls12{letter-spacing:2.659733pt;}
.lsd{letter-spacing:8.675176pt;}
.ls19{letter-spacing:14.124699pt;}
.ls1b{letter-spacing:15.132699pt;}
.ls1a{letter-spacing:15.500699pt;}
.lsc{letter-spacing:18.231366pt;}
.ls17{letter-spacing:19.751366pt;}
.ls9{letter-spacing:20.055366pt;}
.ls7{letter-spacing:20.807366pt;}
.ls14{letter-spacing:22.023366pt;}
.lsf{letter-spacing:23.980699pt;}
.ls16{letter-spacing:24.492699pt;}
.lsb{letter-spacing:24.599366pt;}
.ls8{letter-spacing:25.687366pt;}
.ls15{letter-spacing:26.295366pt;}
.ls4{letter-spacing:26.375366pt;}
.ls6{letter-spacing:26.530033pt;}
.lsa{letter-spacing:27.799366pt;}
.lse{letter-spacing:28.743366pt;}
.ls5{letter-spacing:29.212699pt;}
.ls3{letter-spacing:31.215625pt;}
.wsc2{word-spacing:-58.494160pt;}
.ws31{word-spacing:-35.859224pt;}
.ws84{word-spacing:-31.874157pt;}
.ws34{word-spacing:-31.211042pt;}
.ws12c{word-spacing:-23.781160pt;}
.ws136{word-spacing:-21.455599pt;}
.wsf2{word-spacing:-20.307900pt;}
.ws64{word-spacing:-19.593560pt;}
.ws4e{word-spacing:-19.483360pt;}
.wsc3{word-spacing:-17.374891pt;}
.ws7a{word-spacing:-17.311130pt;}
.wsbc{word-spacing:-17.119846pt;}
.wsed{word-spacing:-17.056085pt;}
.wsc7{word-spacing:-16.864802pt;}
.wsd2{word-spacing:-16.801041pt;}
.ws11b{word-spacing:-16.609758pt;}
.ws111{word-spacing:-16.545997pt;}
.ws120{word-spacing:-16.418475pt;}
.ws97{word-spacing:-16.290953pt;}
.ws77{word-spacing:-16.227191pt;}
.wsf8{word-spacing:-16.099669pt;}
.ws11a{word-spacing:-16.035908pt;}
.ws12f{word-spacing:-15.972147pt;}
.ws129{word-spacing:-15.908386pt;}
.ws15{word-spacing:-15.844625pt;}
.wsd7{word-spacing:-15.780864pt;}
.ws133{word-spacing:-15.742607pt;}
.ws131{word-spacing:-15.717103pt;}
.wsa4{word-spacing:-15.589581pt;}
.wse3{word-spacing:-15.462059pt;}
.ws79{word-spacing:-15.398298pt;}
.wsee{word-spacing:-15.334537pt;}
.wsd8{word-spacing:-15.270775pt;}
.ws8e{word-spacing:-15.207014pt;}
.wsb5{word-spacing:-15.143253pt;}
.wsf4{word-spacing:-15.079492pt;}
.ws9a{word-spacing:-15.015731pt;}
.ws10e{word-spacing:-14.951970pt;}
.wseb{word-spacing:-14.888209pt;}
.ws11f{word-spacing:-14.824448pt;}
.wsf9{word-spacing:-14.786191pt;}
.wsd1{word-spacing:-14.760687pt;}
.ws53{word-spacing:-14.696926pt;}
.ws116{word-spacing:-14.633165pt;}
.ws82{word-spacing:-14.569404pt;}
.ws11e{word-spacing:-14.505643pt;}
.ws132{word-spacing:-14.467386pt;}
.ws78{word-spacing:-14.441882pt;}
.ws125{word-spacing:-14.378121pt;}
.wsa0{word-spacing:-14.371744pt;}
.ws137{word-spacing:-14.314359pt;}
.ws114{word-spacing:-14.250598pt;}
.ws33{word-spacing:-14.186837pt;}
.ws59{word-spacing:-14.123076pt;}
.ws4f{word-spacing:-14.070753pt;}
.ws11d{word-spacing:-14.059315pt;}
.ws8d{word-spacing:-14.021059pt;}
.wse9{word-spacing:-13.995554pt;}
.ws50{word-spacing:-13.994240pt;}
.ws9f{word-spacing:-13.868032pt;}
.ws94{word-spacing:-13.804271pt;}
.ws10b{word-spacing:-13.740510pt;}
.ws10c{word-spacing:-13.676749pt;}
.wsce{word-spacing:-13.612988pt;}
.ws3e{word-spacing:-13.549227pt;}
.ws12{word-spacing:-13.485466pt;}
.ws3a{word-spacing:-13.421705pt;}
.ws104{word-spacing:-13.357943pt;}
.ws119{word-spacing:-13.230421pt;}
.wsd9{word-spacing:-13.166660pt;}
.ws49{word-spacing:-13.102899pt;}
.ws6f{word-spacing:-13.039138pt;}
.wsf1{word-spacing:-13.000881pt;}
.ws39{word-spacing:-12.975377pt;}
.ws102{word-spacing:-12.911616pt;}
.ws68{word-spacing:-12.784094pt;}
.wsb2{word-spacing:-12.720333pt;}
.ws100{word-spacing:-12.656572pt;}
.ws69{word-spacing:-12.592811pt;}
.ws4c{word-spacing:-12.529050pt;}
.ws1d{word-spacing:-12.465289pt;}
.wsb6{word-spacing:-12.427032pt;}
.ws21{word-spacing:-12.401527pt;}
.ws96{word-spacing:-12.337766pt;}
.wsaf{word-spacing:-12.299510pt;}
.ws1e{word-spacing:-12.274005pt;}
.ws105{word-spacing:-12.235749pt;}
.wsf3{word-spacing:-12.213306pt;}
.ws35{word-spacing:-12.210244pt;}
.ws9e{word-spacing:-12.146483pt;}
.wse1{word-spacing:-12.082722pt;}
.ws80{word-spacing:-12.018961pt;}
.ws32{word-spacing:-12.012585pt;}
.wsbe{word-spacing:-11.980704pt;}
.ws98{word-spacing:-11.955200pt;}
.ws30{word-spacing:-11.948824pt;}
.ws115{word-spacing:-11.891439pt;}
.ws12e{word-spacing:-11.827678pt;}
.wscc{word-spacing:-11.763917pt;}
.wsf0{word-spacing:-11.700156pt;}
.wse8{word-spacing:-11.636395pt;}
.ws9c{word-spacing:-11.572634pt;}
.wsff{word-spacing:-11.508873pt;}
.wsf5{word-spacing:-11.445111pt;}
.ws63{word-spacing:-11.381350pt;}
.ws37{word-spacing:-11.317589pt;}
.wsd0{word-spacing:-11.253828pt;}
.wse4{word-spacing:-11.215572pt;}
.wsae{word-spacing:-11.190067pt;}
.ws10{word-spacing:-11.126306pt;}
.wsa1{word-spacing:-11.062545pt;}
.ws81{word-spacing:-10.998784pt;}
.ws47{word-spacing:-10.935023pt;}
.ws58{word-spacing:-10.871262pt;}
.wsd3{word-spacing:-10.807501pt;}
.ws19{word-spacing:-10.743740pt;}
.ws36{word-spacing:-10.679979pt;}
.wsb0{word-spacing:-10.641722pt;}
.wsa5{word-spacing:-10.616218pt;}
.ws17{word-spacing:-10.552457pt;}
.ws109{word-spacing:-10.514200pt;}
.ws7c{word-spacing:-10.488695pt;}
.wse2{word-spacing:-10.425296pt;}
.ws5{word-spacing:-10.424934pt;}
.ws6{word-spacing:-10.361173pt;}
.ws26{word-spacing:-10.297412pt;}
.ws103{word-spacing:-10.233651pt;}
.ws75{word-spacing:-10.169890pt;}
.ws87{word-spacing:-10.131633pt;}
.ws89{word-spacing:-10.106129pt;}
.ws28{word-spacing:-10.042368pt;}
.ws5c{word-spacing:-9.978607pt;}
.ws122{word-spacing:-9.914846pt;}
.ws57{word-spacing:-9.851085pt;}
.ws95{word-spacing:-9.787324pt;}
.wsa6{word-spacing:-9.749067pt;}
.ws124{word-spacing:-9.659802pt;}
.wsca{word-spacing:-9.596041pt;}
.wsc1{word-spacing:-9.557784pt;}
.wsdb{word-spacing:-9.532279pt;}
.ws62{word-spacing:-9.468518pt;}
.ws5a{word-spacing:-9.404757pt;}
.ws5d{word-spacing:-9.340996pt;}
.ws12b{word-spacing:-9.277235pt;}
.wsa3{word-spacing:-9.238979pt;}
.ws5b{word-spacing:-9.213474pt;}
.ws55{word-spacing:-9.149713pt;}
.ws73{word-spacing:-9.022191pt;}
.ws4d{word-spacing:-8.958430pt;}
.ws2d{word-spacing:-8.894669pt;}
.ws25{word-spacing:-8.830908pt;}
.wscb{word-spacing:-8.767147pt;}
.ws76{word-spacing:-8.703386pt;}
.ws54{word-spacing:-8.575863pt;}
.ws110{word-spacing:-8.512102pt;}
.wsf7{word-spacing:-8.473846pt;}
.wsa2{word-spacing:-8.448341pt;}
.wsdc{word-spacing:-8.384580pt;}
.ws71{word-spacing:-8.320819pt;}
.ws6e{word-spacing:-8.257058pt;}
.ws51{word-spacing:-8.193297pt;}
.wscd{word-spacing:-8.129536pt;}
.wsa9{word-spacing:-8.065775pt;}
.ws2c{word-spacing:-8.002014pt;}
.ws4a{word-spacing:-7.938253pt;}
.wsb1{word-spacing:-7.874492pt;}
.wsab{word-spacing:-7.810731pt;}
.ws3b{word-spacing:-7.746970pt;}
.wsf6{word-spacing:-7.708713pt;}
.wse{word-spacing:-7.683209pt;}
.ws61{word-spacing:-7.619447pt;}
.ws9d{word-spacing:-7.555686pt;}
.wsda{word-spacing:-7.491925pt;}
.ws66{word-spacing:-7.428164pt;}
.wsdf{word-spacing:-7.364403pt;}
.ws6a{word-spacing:-7.300642pt;}
.ws2a{word-spacing:-7.236881pt;}
.ws86{word-spacing:-7.173120pt;}
.ws2f{word-spacing:-7.109359pt;}
.ws56{word-spacing:-7.045598pt;}
.ws29{word-spacing:-6.981837pt;}
.wsc6{word-spacing:-6.918076pt;}
.ws72{word-spacing:-6.854315pt;}
.wsd4{word-spacing:-6.790554pt;}
.wse7{word-spacing:-6.726793pt;}
.wse5{word-spacing:-6.688536pt;}
.ws14{word-spacing:-6.663031pt;}
.ws2e{word-spacing:-6.599270pt;}
.ws46{word-spacing:-6.535509pt;}
.wsfe{word-spacing:-6.471748pt;}
.wsb9{word-spacing:-6.433492pt;}
.ws10a{word-spacing:-6.407987pt;}
.ws118{word-spacing:-6.394428pt;}
.ws2b{word-spacing:-6.344226pt;}
.ws20{word-spacing:-6.280465pt;}
.wsbf{word-spacing:-6.216704pt;}
.ws107{word-spacing:-6.178447pt;}
.ws67{word-spacing:-6.152943pt;}
.wsb8{word-spacing:-6.114686pt;}
.ws52{word-spacing:-6.089182pt;}
.ws6c{word-spacing:-6.025421pt;}
.ws10d{word-spacing:-5.897899pt;}
.ws42{word-spacing:-5.834138pt;}
.ws112{word-spacing:-5.770377pt;}
.wsc0{word-spacing:-5.732120pt;}
.wsc4{word-spacing:-5.706615pt;}
.ws7d{word-spacing:-5.642854pt;}
.ws7e{word-spacing:-5.579093pt;}
.ws65{word-spacing:-5.515332pt;}
.ws92{word-spacing:-5.451571pt;}
.ws117{word-spacing:-5.413315pt;}
.ws9b{word-spacing:-5.387810pt;}
.ws93{word-spacing:-5.324049pt;}
.ws126{word-spacing:-5.260288pt;}
.ws8c{word-spacing:-5.222031pt;}
.ws10f{word-spacing:-5.196527pt;}
.wsa8{word-spacing:-5.132766pt;}
.wsac{word-spacing:-5.094509pt;}
.ws22{word-spacing:-5.069005pt;}
.wsc8{word-spacing:-5.005244pt;}
.ws13{word-spacing:-4.941483pt;}
.ws7f{word-spacing:-4.877722pt;}
.ws85{word-spacing:-4.813961pt;}
.wsf{word-spacing:-4.750199pt;}
.wsa7{word-spacing:-4.711943pt;}
.ws8f{word-spacing:-4.686438pt;}
.wsaa{word-spacing:-4.558916pt;}
.ws108{word-spacing:-4.520660pt;}
.ws12a{word-spacing:-4.495155pt;}
.ws83{word-spacing:-4.456899pt;}
.ws91{word-spacing:-4.431394pt;}
.ws16{word-spacing:-4.367633pt;}
.ws90{word-spacing:-4.329376pt;}
.ws130{word-spacing:-4.303872pt;}
.ws70{word-spacing:-4.240111pt;}
.ws11c{word-spacing:-4.112589pt;}
.ws123{word-spacing:-4.048828pt;}
.wsea{word-spacing:-3.985067pt;}
.wsfc{word-spacing:-3.921306pt;}
.ws7b{word-spacing:-3.857545pt;}
.wsdd{word-spacing:-3.793783pt;}
.ws127{word-spacing:-3.730022pt;}
.ws11{word-spacing:-3.666261pt;}
.ws128{word-spacing:-3.602500pt;}
.wscf{word-spacing:-3.538739pt;}
.ws6d{word-spacing:-3.474978pt;}
.wsb4{word-spacing:-3.411217pt;}
.wsad{word-spacing:-3.372960pt;}
.wsbb{word-spacing:-3.347456pt;}
.ws60{word-spacing:-3.283695pt;}
.wse0{word-spacing:-3.219934pt;}
.wsb3{word-spacing:-3.181677pt;}
.wsc5{word-spacing:-3.156173pt;}
.ws12d{word-spacing:-3.092412pt;}
.wsba{word-spacing:-3.054155pt;}
.ws5e{word-spacing:-2.964890pt;}
.ws1f{word-spacing:-2.901129pt;}
.ws3d{word-spacing:-2.837367pt;}
.wsde{word-spacing:-2.582323pt;}
.ws23{word-spacing:-2.518562pt;}
.ws27{word-spacing:-2.454801pt;}
.wsfd{word-spacing:-2.391040pt;}
.ws138{word-spacing:-2.263518pt;}
.wsfb{word-spacing:-2.199757pt;}
.wsfa{word-spacing:-2.097739pt;}
.ws88{word-spacing:-2.008474pt;}
.ws3c{word-spacing:-1.944713pt;}
.wsd5{word-spacing:-1.880951pt;}
.ws5f{word-spacing:-1.625907pt;}
.ws106{word-spacing:-1.498385pt;}
.wsd6{word-spacing:-1.434624pt;}
.ws99{word-spacing:-1.243341pt;}
.wsec{word-spacing:-1.179580pt;}
.ws45{word-spacing:-1.115819pt;}
.wsc{word-spacing:-1.052058pt;}
.wsd{word-spacing:-0.924535pt;}
.wsbd{word-spacing:-0.605730pt;}
.ws74{word-spacing:-0.541969pt;}
.ws6b{word-spacing:-0.414447pt;}
.ws134{word-spacing:-0.286925pt;}
.ws135{word-spacing:-0.248668pt;}
.ws113{word-spacing:-0.223164pt;}
.ws2{word-spacing:-0.132198pt;}
.ws4{word-spacing:-0.110200pt;}
.wsb7{word-spacing:-0.095642pt;}
.wsb{word-spacing:-0.091815pt;}
.wse6{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws9{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.095642pt;}
.ws101{word-spacing:0.350686pt;}
.ws121{word-spacing:0.669491pt;}
.wsef{word-spacing:0.860774pt;}
.ws8b{word-spacing:0.962792pt;}
.ws8a{word-spacing:1.052058pt;}
.ws40{word-spacing:1.434624pt;}
.ws48{word-spacing:2.199757pt;}
.ws41{word-spacing:7.109359pt;}
.ws4b{word-spacing:11.636395pt;}
.ws43{word-spacing:12.274005pt;}
.ws44{word-spacing:13.612988pt;}
.ws7{word-spacing:15.249420pt;}
.ws8{word-spacing:17.640444pt;}
.ws1a{word-spacing:23.100936pt;}
.ws18{word-spacing:23.260936pt;}
.ws38{word-spacing:24.579891pt;}
.ws24{word-spacing:32.869937pt;}
.ws1c{word-spacing:32.961753pt;}
.ws3{word-spacing:40.055954pt;}
.ws1{word-spacing:40.188151pt;}
.ws0{word-spacing:42.765393pt;}
.wsa{word-spacing:46.004858pt;}
.ws3f{word-spacing:111.677508pt;}
._0{margin-left:-10.311434pt;}
._3e{margin-left:-9.195020pt;}
._7{margin-left:-8.263392pt;}
._3f{margin-left:-7.142298pt;}
._13{margin-left:-6.248585pt;}
._3{margin-left:-5.164646pt;}
._1{margin-left:-3.304947pt;}
._5{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._2{width:3.304947pt;}
._39{width:4.973363pt;}
._15{width:5.993540pt;}
._3a{width:8.036206pt;}
._38{width:9.010406pt;}
._44{width:11.979068pt;}
._40{width:15.111373pt;}
._36{width:16.131550pt;}
._2f{width:17.406771pt;}
._41{width:18.363187pt;}
._2b{width:19.574647pt;}
._1a{width:20.786108pt;}
._3c{width:21.859417pt;}
._6{width:23.665836pt;}
._42{width:24.611772pt;}
._b{width:25.568188pt;}
._2a{width:26.715887pt;}
._9{width:27.608542pt;}
._30{width:29.393852pt;}
._d{width:30.669073pt;}
._12{width:31.816772pt;}
._29{width:32.709427pt;}
._35{width:33.729604pt;}
._10{width:35.259870pt;}
._33{width:36.280047pt;}
._f{width:37.300224pt;}
._a{width:38.958012pt;}
._2e{width:40.743322pt;}
._37{width:41.816631pt;}
._21{width:43.433658pt;}
._1f{width:44.760269pt;}
._c{width:45.844207pt;}
._3b{width:47.119428pt;}
._32{width:49.096021pt;}
._43{width:50.116198pt;}
._e{width:51.455181pt;}
._34{width:52.627180pt;}
._31{width:54.005623pt;}
._8{width:56.173500pt;}
._3d{width:58.713314pt;}
._1e{width:63.761067pt;}
._24{width:74.727970pt;}
._2d{width:77.140262pt;}
._26{width:98.447087pt;}
._2c{width:99.786069pt;}
._11{width:106.914937pt;}
._28{width:108.457574pt;}
._27{width:111.900672pt;}
._23{width:115.024964pt;}
._1d{width:132.686780pt;}
._20{width:134.333939pt;}
._1b{width:137.596382pt;}
._17{width:142.761028pt;}
._18{width:148.372002pt;}
._22{width:177.765854pt;}
._16{width:178.658509pt;}
._14{width:183.185545pt;}
._1c{width:193.259793pt;}
._25{width:204.024785pt;}
._19{width:274.618914pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs7{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:111.330667pt;}
.yb6{bottom:151.181333pt;}
.y137{bottom:153.606667pt;}
.y194{bottom:154.321333pt;}
.yb{bottom:156.009333pt;}
.y163{bottom:160.365333pt;}
.y136{bottom:161.228000pt;}
.y11f{bottom:167.272000pt;}
.y150{bottom:172.453333pt;}
.ya{bottom:173.384000pt;}
.yb5{bottom:176.220000pt;}
.ye1{bottom:178.646667pt;}
.y193{bottom:179.360000pt;}
.y107{bottom:185.404000pt;}
.y135{bottom:186.268000pt;}
.y58{bottom:188.866667pt;}
.y11e{bottom:192.312000pt;}
.y2b{bottom:195.849333pt;}
.y92{bottom:197.236000pt;}
.y14f{bottom:197.492000pt;}
.y82{bottom:200.125333pt;}
.yb4{bottom:201.260000pt;}
.y17a{bottom:203.536000pt;}
.ye0{bottom:203.686667pt;}
.y192{bottom:204.400000pt;}
.y106{bottom:210.444000pt;}
.y11d{bottom:217.350667pt;}
.y2a{bottom:220.889333pt;}
.y91{bottom:222.276000pt;}
.y14e{bottom:222.532000pt;}
.y81{bottom:225.164000pt;}
.yb3{bottom:226.300000pt;}
.y57{bottom:226.957333pt;}
.y179{bottom:228.576000pt;}
.ydf{bottom:228.725333pt;}
.y191{bottom:229.438667pt;}
.y105{bottom:235.482667pt;}
.y134{bottom:236.346667pt;}
.yf0{bottom:242.009333pt;}
.y11c{bottom:242.390667pt;}
.y29{bottom:245.929333pt;}
.y99{bottom:247.314667pt;}
.y14d{bottom:247.570667pt;}
.y80{bottom:250.204000pt;}
.yb2{bottom:251.338667pt;}
.y178{bottom:253.614667pt;}
.yde{bottom:253.765333pt;}
.y190{bottom:254.478667pt;}
.y90{bottom:260.365333pt;}
.y104{bottom:260.522667pt;}
.y56{bottom:260.760000pt;}
.y133{bottom:261.386667pt;}
.yef{bottom:267.048000pt;}
.y11b{bottom:267.430667pt;}
.y55{bottom:274.302667pt;}
.yb1{bottom:276.378667pt;}
.y177{bottom:278.654667pt;}
.ydd{bottom:278.804000pt;}
.y18f{bottom:279.518667pt;}
.y8f{bottom:285.405333pt;}
.y103{bottom:285.562667pt;}
.y132{bottom:286.425333pt;}
.y28{bottom:286.749333pt;}
.y7f{bottom:288.294667pt;}
.yee{bottom:292.088000pt;}
.y11a{bottom:292.469333pt;}
.y14c{bottom:297.650667pt;}
.yb0{bottom:301.417333pt;}
.y159{bottom:301.418667pt;}
.y71{bottom:303.589333pt;}
.y176{bottom:303.694667pt;}
.ydc{bottom:303.844000pt;}
.y18e{bottom:304.557333pt;}
.y9{bottom:308.233333pt;}
.y98{bottom:310.445333pt;}
.y162{bottom:310.601333pt;}
.y131{bottom:311.465333pt;}
.y7e{bottom:313.334667pt;}
.y54{bottom:314.594667pt;}
.yed{bottom:317.128000pt;}
.y119{bottom:317.509333pt;}
.y14b{bottom:322.689333pt;}
.y8e{bottom:323.496000pt;}
.yaf{bottom:326.457333pt;}
.y175{bottom:328.733333pt;}
.ydb{bottom:328.884000pt;}
.y18d{bottom:329.597333pt;}
.y8{bottom:333.273333pt;}
.y97{bottom:335.484000pt;}
.y102{bottom:335.641333pt;}
.y130{bottom:336.504000pt;}
.y7d{bottom:338.373333pt;}
.y3d{bottom:341.517333pt;}
.y70{bottom:341.680000pt;}
.yec{bottom:342.166667pt;}
.y118{bottom:342.548000pt;}
.y14a{bottom:347.729333pt;}
.y53{bottom:348.398667pt;}
.y8d{bottom:348.536000pt;}
.y27{bottom:348.756000pt;}
.yae{bottom:351.497333pt;}
.y174{bottom:353.773333pt;}
.yda{bottom:353.922667pt;}
.y18c{bottom:354.636000pt;}
.y7{bottom:358.313333pt;}
.y101{bottom:360.680000pt;}
.y12f{bottom:361.544000pt;}
.yeb{bottom:367.206667pt;}
.y117{bottom:367.588000pt;}
.y149{bottom:372.768000pt;}
.y52{bottom:373.437333pt;}
.y8c{bottom:373.574667pt;}
.y26{bottom:373.796000pt;}
.y50{bottom:374.460000pt;}
.y7c{bottom:376.464000pt;}
.yad{bottom:376.536000pt;}
.y173{bottom:378.813333pt;}
.yd9{bottom:378.962667pt;}
.y18b{bottom:379.676000pt;}
.y6f{bottom:379.770667pt;}
.y3c{bottom:379.840000pt;}
.y6{bottom:383.352000pt;}
.y100{bottom:385.720000pt;}
.y12e{bottom:386.584000pt;}
.yea{bottom:392.245333pt;}
.y116{bottom:392.628000pt;}
.y148{bottom:397.808000pt;}
.y51{bottom:398.477333pt;}
.y8b{bottom:398.614667pt;}
.y25{bottom:398.834667pt;}
.y7b{bottom:401.504000pt;}
.yac{bottom:401.576000pt;}
.y172{bottom:403.852000pt;}
.yd8{bottom:404.001333pt;}
.y18a{bottom:404.716000pt;}
.y3b{bottom:404.878667pt;}
.y5{bottom:408.392000pt;}
.yff{bottom:410.760000pt;}
.y12d{bottom:411.622667pt;}
.ye9{bottom:417.285333pt;}
.y6e{bottom:417.329333pt;}
.y115{bottom:417.666667pt;}
.y147{bottom:422.848000pt;}
.y8a{bottom:423.653333pt;}
.y24{bottom:423.874667pt;}
.yab{bottom:426.616000pt;}
.y4f{bottom:427.804000pt;}
.y171{bottom:428.892000pt;}
.yd7{bottom:429.041333pt;}
.y189{bottom:429.754667pt;}
.yfe{bottom:435.798667pt;}
.y12c{bottom:436.662667pt;}
.y96{bottom:436.705333pt;}
.y7a{bottom:439.594667pt;}
.ye8{bottom:442.325333pt;}
.y114{bottom:442.706667pt;}
.y3a{bottom:445.700000pt;}
.y146{bottom:447.886667pt;}
.y23{bottom:448.913333pt;}
.yaa{bottom:451.654667pt;}
.y170{bottom:453.930667pt;}
.yd6{bottom:454.081333pt;}
.y188{bottom:454.794667pt;}
.y6d{bottom:454.888000pt;}
.yfd{bottom:460.838667pt;}
.y12b{bottom:461.701333pt;}
.y89{bottom:461.744000pt;}
.y79{bottom:464.633333pt;}
.y4e{bottom:465.894667pt;}
.ye7{bottom:467.364000pt;}
.y113{bottom:467.745333pt;}
.y145{bottom:472.926667pt;}
.y22{bottom:473.953333pt;}
.ya9{bottom:476.694667pt;}
.y16f{bottom:478.970667pt;}
.yd5{bottom:479.120000pt;}
.y187{bottom:479.834667pt;}
.yfc{bottom:485.878667pt;}
.y12a{bottom:486.741333pt;}
.y88{bottom:486.784000pt;}
.y6c{bottom:488.692000pt;}
.y78{bottom:489.673333pt;}
.ye6{bottom:492.404000pt;}
.y112{bottom:492.785333pt;}
.y144{bottom:497.966667pt;}
.y95{bottom:499.834667pt;}
.ya8{bottom:501.733333pt;}
.y4d{bottom:503.985333pt;}
.y16e{bottom:504.010667pt;}
.yd4{bottom:504.160000pt;}
.y186{bottom:504.873333pt;}
.y39{bottom:507.706667pt;}
.yfb{bottom:510.917333pt;}
.y129{bottom:511.781333pt;}
.y87{bottom:511.824000pt;}
.y6b{bottom:513.730667pt;}
.y69{bottom:514.754667pt;}
.y21{bottom:514.774667pt;}
.ye5{bottom:517.444000pt;}
.y111{bottom:517.825333pt;}
.y143{bottom:523.005333pt;}
.y94{bottom:524.874667pt;}
.ya7{bottom:526.773333pt;}
.y77{bottom:527.764000pt;}
.y16d{bottom:529.049333pt;}
.yd3{bottom:529.200000pt;}
.y185{bottom:529.913333pt;}
.y38{bottom:532.745333pt;}
.y161{bottom:535.957333pt;}
.y128{bottom:536.820000pt;}
.y4c{bottom:537.788000pt;}
.y6a{bottom:538.770667pt;}
.ye4{bottom:542.482667pt;}
.y110{bottom:542.864000pt;}
.y142{bottom:548.045333pt;}
.y86{bottom:549.913333pt;}
.ya6{bottom:551.813333pt;}
.y76{bottom:552.802667pt;}
.y16c{bottom:554.089333pt;}
.yd2{bottom:554.238667pt;}
.y184{bottom:554.952000pt;}
.yfa{bottom:560.996000pt;}
.y127{bottom:561.860000pt;}
.y4b{bottom:562.828000pt;}
.y49{bottom:563.850667pt;}
.ye3{bottom:567.522667pt;}
.y68{bottom:567.566667pt;}
.y10f{bottom:567.904000pt;}
.y17b{bottom:573.084000pt;}
.y85{bottom:574.953333pt;}
.y37{bottom:575.053333pt;}
.y20{bottom:576.780000pt;}
.ya5{bottom:576.852000pt;}
.yd1{bottom:579.278667pt;}
.y183{bottom:579.992000pt;}
.yf9{bottom:586.036000pt;}
.y126{bottom:586.900000pt;}
.y4a{bottom:587.866667pt;}
.y93{bottom:588.004000pt;}
.y75{bottom:590.893333pt;}
.ye2{bottom:592.561333pt;}
.y10e{bottom:592.944000pt;}
.y141{bottom:598.124000pt;}
.y36{bottom:600.093333pt;}
.y1f{bottom:601.820000pt;}
.ya4{bottom:601.892000pt;}
.y16b{bottom:604.168000pt;}
.y120{bottom:604.317333pt;}
.y182{bottom:605.032000pt;}
.y67{bottom:605.125333pt;}
.yf8{bottom:611.076000pt;}
.y125{bottom:611.938667pt;}
.y84{bottom:613.044000pt;}
.y4{bottom:615.892000pt;}
.y74{bottom:615.933333pt;}
.y48{bottom:616.662667pt;}
.ycf{bottom:617.601333pt;}
.y10d{bottom:617.982667pt;}
.y140{bottom:623.164000pt;}
.yd{bottom:625.745333pt;}
.y1e{bottom:626.860000pt;}
.ya3{bottom:626.930667pt;}
.y16a{bottom:629.208000pt;}
.y153{bottom:629.357333pt;}
.y181{bottom:630.070667pt;}
.yf7{bottom:636.114667pt;}
.y83{bottom:638.084000pt;}
.y35{bottom:642.401333pt;}
.yce{bottom:642.641333pt;}
.y10c{bottom:643.022667pt;}
.y66{bottom:643.216000pt;}
.y13f{bottom:648.202667pt;}
.y47{bottom:650.465333pt;}
.y1d{bottom:651.898667pt;}
.ya2{bottom:651.970667pt;}
.y73{bottom:654.024000pt;}
.y124{bottom:654.246667pt;}
.y152{bottom:654.397333pt;}
.y180{bottom:655.110667pt;}
.yf6{bottom:661.154667pt;}
.y46{bottom:664.008000pt;}
.y34{bottom:667.441333pt;}
.ycd{bottom:667.680000pt;}
.y10b{bottom:668.061333pt;}
.y13e{bottom:673.242667pt;}
.y1c{bottom:676.938667pt;}
.yc7{bottom:677.010667pt;}
.y169{bottom:679.286667pt;}
.y151{bottom:679.436000pt;}
.y17f{bottom:680.149333pt;}
.y65{bottom:681.306667pt;}
.yf5{bottom:686.193333pt;}
.y3{bottom:686.594667pt;}
.yc2{bottom:692.489333pt;}
.ycc{bottom:692.720000pt;}
.ya1{bottom:693.697333pt;}
.y13d{bottom:698.281333pt;}
.y1b{bottom:701.977333pt;}
.y158{bottom:702.049333pt;}
.y123{bottom:702.340000pt;}
.yc{bottom:704.118667pt;}
.y45{bottom:704.301333pt;}
.y168{bottom:704.325333pt;}
.y19a{bottom:704.476000pt;}
.y33{bottom:709.749333pt;}
.y10a{bottom:710.369333pt;}
.y160{bottom:711.233333pt;}
.yc6{bottom:711.312000pt;}
.y72{bottom:713.524000pt;}
.yd0{bottom:717.528000pt;}
.ycb{bottom:717.758667pt;}
.y64{bottom:718.865333pt;}
.y17e{bottom:722.457333pt;}
.y13c{bottom:723.321333pt;}
.y1a{bottom:727.017333pt;}
.y157{bottom:727.089333pt;}
.y122{bottom:727.378667pt;}
.yf4{bottom:728.501333pt;}
.y167{bottom:729.365333pt;}
.y199{bottom:729.514667pt;}
.yc1{bottom:733.008000pt;}
.y32{bottom:734.788000pt;}
.ya0{bottom:735.425333pt;}
.y44{bottom:738.104000pt;}
.yca{bottom:742.798667pt;}
.yc5{bottom:745.613333pt;}
.y19{bottom:752.057333pt;}
.y15e{bottom:752.129333pt;}
.y109{bottom:752.677333pt;}
.y15f{bottom:753.541333pt;}
.y166{bottom:754.405333pt;}
.y198{bottom:754.554667pt;}
.y63{bottom:756.425333pt;}
.y2{bottom:757.298667pt;}
.yc0{bottom:758.046667pt;}
.y31{bottom:759.828000pt;}
.y43{bottom:763.144000pt;}
.y41{bottom:764.166667pt;}
.y17d{bottom:764.766667pt;}
.y13b{bottom:765.629333pt;}
.y156{bottom:766.226667pt;}
.yc9{bottom:767.838667pt;}
.yf3{bottom:770.810667pt;}
.y18{bottom:777.096000pt;}
.y15d{bottom:777.168000pt;}
.y197{bottom:779.594667pt;}
.y121{bottom:781.170667pt;}
.y30{bottom:784.866667pt;}
.y42{bottom:788.182667pt;}
.yc4{bottom:789.177333pt;}
.yc8{bottom:792.877333pt;}
.y9f{bottom:793.840000pt;}
.y62{bottom:793.984000pt;}
.yf2{bottom:795.849333pt;}
.y165{bottom:796.713333pt;}
.y17{bottom:802.136000pt;}
.y196{bottom:804.633333pt;}
.y155{bottom:805.362667pt;}
.y13a{bottom:807.937333pt;}
.y1{bottom:809.104000pt;}
.y2f{bottom:809.906667pt;}
.y108{bottom:812.254667pt;}
.ybf{bottom:814.044000pt;}
.y15c{bottom:814.924000pt;}
.y40{bottom:817.509333pt;}
.ybd{bottom:817.917333pt;}
.yc3{bottom:820.261333pt;}
.y17c{bottom:824.342667pt;}
.y9e{bottom:824.924000pt;}
.y16{bottom:827.174667pt;}
.y195{bottom:829.673333pt;}
.y61{bottom:831.542667pt;}
.y2e{bottom:834.946667pt;}
.y164{bottom:839.021333pt;}
.y5d{bottom:840.642667pt;}
.ybc{bottom:842.957333pt;}
.y15{bottom:852.214667pt;}
.y15b{bottom:852.678667pt;}
.y3f{bottom:855.069333pt;}
.yf1{bottom:855.426667pt;}
.y9d{bottom:856.006667pt;}
.y154{bottom:858.597333pt;}
.y2d{bottom:859.985333pt;}
.ybe{bottom:860.606667pt;}
.y139{bottom:867.514667pt;}
.ybb{bottom:867.996000pt;}
.y60{bottom:869.102667pt;}
.y14{bottom:877.254667pt;}
.y5c{bottom:878.201333pt;}
.y2c{bottom:885.025333pt;}
.yba{bottom:893.036000pt;}
.y3e{bottom:893.158667pt;}
.y138{bottom:898.597333pt;}
.y13{bottom:902.293333pt;}
.y15a{bottom:903.150667pt;}
.y9c{bottom:903.778667pt;}
.y5f{bottom:907.193333pt;}
.y5b{bottom:916.824000pt;}
.yb9{bottom:918.074667pt;}
.y12{bottom:927.333333pt;}
.yb8{bottom:943.114667pt;}
.y5e{bottom:945.284000pt;}
.y9b{bottom:946.949333pt;}
.y5a{bottom:950.626667pt;}
.y11{bottom:952.373333pt;}
.y59{bottom:964.169333pt;}
.yb7{bottom:968.154667pt;}
.y9a{bottom:990.121333pt;}
.y10{bottom:993.193333pt;}
.yf{bottom:1042.342667pt;}
.h7{height:24.733744pt;}
.h11{height:28.267288pt;}
.h4{height:45.079074pt;}
.h10{height:45.589163pt;}
.h9{height:47.884561pt;}
.h6{height:52.678504pt;}
.h5{height:52.683837pt;}
.ha{height:64.362642pt;}
.hf{height:66.948933pt;}
.he{height:77.360400pt;}
.hb{height:91.068407pt;}
.h8{height:92.802902pt;}
.h3{height:93.596090pt;}
.h2{height:124.562333pt;}
.hc{height:793.701333pt;}
.hd{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:151.181333pt;}
.x23{left:152.628000pt;}
.x3b{left:154.478667pt;}
.x1d{left:155.916000pt;}
.x1f{left:157.257333pt;}
.x13{left:159.150667pt;}
.x39{left:160.813333pt;}
.x53{left:163.070667pt;}
.x47{left:164.226667pt;}
.x2b{left:165.568000pt;}
.xa{left:169.128000pt;}
.x10{left:170.078667pt;}
.x1{left:172.016000pt;}
.x4a{left:173.142667pt;}
.x11{left:174.594667pt;}
.x29{left:176.490667pt;}
.x55{left:177.661333pt;}
.x3d{left:181.769333pt;}
.x4d{left:183.781333pt;}
.x45{left:185.776000pt;}
.x1c{left:187.590667pt;}
.x58{left:188.484000pt;}
.x12{left:190.201333pt;}
.x50{left:193.998667pt;}
.x3a{left:197.448000pt;}
.x2e{left:199.181333pt;}
.x25{left:201.870667pt;}
.x24{left:205.229333pt;}
.x35{left:207.698667pt;}
.x43{left:209.876000pt;}
.x52{left:217.390667pt;}
.x4f{left:218.706667pt;}
.x4e{left:230.285333pt;}
.x38{left:233.454667pt;}
.x2f{left:240.149333pt;}
.x42{left:245.368000pt;}
.x3{left:246.534667pt;}
.xc{left:261.112000pt;}
.x4{left:263.181333pt;}
.x30{left:267.938667pt;}
.x32{left:271.873333pt;}
.x20{left:273.750667pt;}
.x21{left:275.468000pt;}
.x2c{left:281.128000pt;}
.x1e{left:284.521333pt;}
.x4b{left:286.744000pt;}
.x14{left:288.477333pt;}
.x41{left:294.728000pt;}
.x40{left:298.589333pt;}
.x15{left:299.816000pt;}
.x2d{left:302.321333pt;}
.x37{left:304.965333pt;}
.x3c{left:306.044000pt;}
.x34{left:314.821333pt;}
.x2a{left:317.176000pt;}
.x22{left:320.569333pt;}
.x4c{left:321.913333pt;}
.x56{left:322.997333pt;}
.x33{left:324.253333pt;}
.x28{left:327.461333pt;}
.x36{left:332.050667pt;}
.x44{left:333.137333pt;}
.x3f{left:334.216000pt;}
.x3e{left:335.605333pt;}
.x49{left:336.860000pt;}
.x27{left:339.736000pt;}
.x1a{left:342.710667pt;}
.x54{left:343.794667pt;}
.x31{left:344.786667pt;}
.x26{left:355.442667pt;}
.x46{left:358.688000pt;}
.x59{left:362.008000pt;}
.x19{left:363.216000pt;}
.x51{left:365.157333pt;}
.xb{left:370.021333pt;}
.x2{left:372.994667pt;}
.x48{left:379.754667pt;}
.x57{left:386.134667pt;}
.x1b{left:407.945333pt;}
.xd{left:411.846667pt;}
.x16{left:466.937333pt;}
.x8{left:522.002667pt;}
.x17{left:558.468000pt;}
.x7{left:562.360000pt;}
.x6{left:565.261333pt;}
.x9{left:577.785333pt;}
.x5{left:591.385333pt;}
.x18{left:664.710667pt;}
.xe{left:672.513333pt;}
}




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