
    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_3dd76f79b0c74f77106843a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_9b1acfc2e1d0b846a14902b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_48d48c534e2bc07b76e8a387.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_42d357602db773d1ce53f0cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_e58cbbd955b818cfcc1e7766.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3577e98a1b72b57836a0590.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_8a4a0c80b1dcd533ddedce62.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8295bcb762c54eed8cdc39f5.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_e93b2329c07388dbe4a0c387.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_627474d9e3d09da3a6095fa9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.759000;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_e7944c97a0c3f373da46f4c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4862e2c41171fbe8453580f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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_27654aaf7686fb959147194f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9e5da86b35793f5979205878.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_df1d73ccced9f2da3b1c690f.woff2')format("woff");}.fff{font-family:fff;line-height:0.704200;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_4798621e48eb78ade6655cba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.810000;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);}
.v14{vertical-align:-24.684000px;}
.va{vertical-align:-14.940000px;}
.vb{vertical-align:-13.800000px;}
.v8{vertical-align:-8.964000px;}
.vc{vertical-align:-1.848000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:5.808000px;}
.v18{vertical-align:7.692000px;}
.v19{vertical-align:8.970000px;}
.v1a{vertical-align:10.422000px;}
.vd{vertical-align:11.976000px;}
.v7{vertical-align:14.778000px;}
.v4{vertical-align:15.936000px;}
.vf{vertical-align:17.268000px;}
.v1{vertical-align:21.696000px;}
.v2{vertical-align:24.684000px;}
.v3{vertical-align:31.050000px;}
.ve{vertical-align:33.150000px;}
.v15{vertical-align:37.650000px;}
.v12{vertical-align:39.018000px;}
.v6{vertical-align:40.620000px;}
.v5{vertical-align:46.986000px;}
.v9{vertical-align:55.218000px;}
.v13{vertical-align:64.170000px;}
.v16{vertical-align:68.700000px;}
.v17{vertical-align:86.742000px;}
.v10{vertical-align:97.788000px;}
.ls2{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000300px;}
.ls56{letter-spacing:0.000538px;}
.ls35{letter-spacing:0.000564px;}
.ls5e{letter-spacing:0.001140px;}
.ls32{letter-spacing:0.001481px;}
.ls33{letter-spacing:0.001698px;}
.ls1b{letter-spacing:0.001866px;}
.ls18{letter-spacing:0.002023px;}
.ls31{letter-spacing:0.002234px;}
.ls1d{letter-spacing:0.002245px;}
.ls3a{letter-spacing:0.002338px;}
.ls67{letter-spacing:0.002640px;}
.ls43{letter-spacing:0.002685px;}
.ls30{letter-spacing:0.003269px;}
.ls6e{letter-spacing:0.003292px;}
.ls16{letter-spacing:0.003413px;}
.ls37{letter-spacing:0.003779px;}
.ls52{letter-spacing:0.004179px;}
.ls5b{letter-spacing:0.005306px;}
.lsa{letter-spacing:0.005374px;}
.ls12{letter-spacing:0.005482px;}
.ls38{letter-spacing:0.484059px;}
.lsb{letter-spacing:1.006868px;}
.ls8{letter-spacing:1.012868px;}
.ls15{letter-spacing:1.287333px;}
.ls4d{letter-spacing:1.880823px;}
.ls44{letter-spacing:2.144023px;}
.ls17{letter-spacing:2.420908px;}
.ls1{letter-spacing:2.449834px;}
.ls70{letter-spacing:2.455834px;}
.ls2d{letter-spacing:2.933096px;}
.ls0{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.983492px;}
.ls2f{letter-spacing:2.984525px;}
.ls6f{letter-spacing:2.986766px;}
.ls3b{letter-spacing:2.986982px;}
.ls9{letter-spacing:2.987374px;}
.ls71{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988780px;}
.ls34{letter-spacing:2.989480px;}
.ls53{letter-spacing:2.989590px;}
.ls5{letter-spacing:2.992766px;}
.lsc{letter-spacing:2.993374px;}
.ls36{letter-spacing:3.247481px;}
.ls21{letter-spacing:3.441652px;}
.ls1c{letter-spacing:4.275333px;}
.ls26{letter-spacing:4.685915px;}
.ls7{letter-spacing:4.691915px;}
.ls1e{letter-spacing:5.408908px;}
.ls59{letter-spacing:5.939276px;}
.ls39{letter-spacing:5.973779px;}
.ls24{letter-spacing:8.297139px;}
.ls20{letter-spacing:8.303139px;}
.ls22{letter-spacing:8.304065px;}
.ls10{letter-spacing:9.962338px;}
.ls11{letter-spacing:9.982525px;}
.ls1a{letter-spacing:13.278538px;}
.ls2a{letter-spacing:13.284538px;}
.ls6c{letter-spacing:14.180100px;}
.ls29{letter-spacing:16.267140px;}
.lse{letter-spacing:16.602538px;}
.ls2e{letter-spacing:17.596200px;}
.ls64{letter-spacing:18.368100px;}
.ls19{letter-spacing:18.692908px;}
.ls66{letter-spacing:18.884100px;}
.ls3e{letter-spacing:19.586525px;}
.ls5d{letter-spacing:19.591409px;}
.lsd{letter-spacing:19.595374px;}
.ls4f{letter-spacing:19.597409px;}
.ls40{letter-spacing:20.120525px;}
.ls41{letter-spacing:20.743140px;}
.ls69{letter-spacing:20.792100px;}
.ls6d{letter-spacing:20.918640px;}
.ls68{letter-spacing:20.920200px;}
.ls5a{letter-spacing:21.843269px;}
.ls5c{letter-spacing:22.171409px;}
.ls45{letter-spacing:22.885140px;}
.ls28{letter-spacing:23.778538px;}
.ls4e{letter-spacing:23.911409px;}
.ls58{letter-spacing:23.915374px;}
.ls57{letter-spacing:24.803374px;}
.ls2c{letter-spacing:26.975306px;}
.ls4a{letter-spacing:27.788100px;}
.ls54{letter-spacing:27.917374px;}
.ls55{letter-spacing:29.171374px;}
.ls4c{letter-spacing:29.309607px;}
.ls49{letter-spacing:29.315607px;}
.ls6{letter-spacing:30.104823px;}
.ls3d{letter-spacing:30.969269px;}
.ls3c{letter-spacing:30.971607px;}
.ls48{letter-spacing:32.299140px;}
.ls4b{letter-spacing:34.724908px;}
.ls65{letter-spacing:35.869409px;}
.ls2b{letter-spacing:35.881140px;}
.ls47{letter-spacing:36.056908px;}
.ls42{letter-spacing:36.858538px;}
.ls13{letter-spacing:37.218615px;}
.lsf{letter-spacing:42.938525px;}
.ls3f{letter-spacing:48.486538px;}
.ls46{letter-spacing:49.692538px;}
.ls5f{letter-spacing:52.849590px;}
.ls6b{letter-spacing:59.776800px;}
.ls60{letter-spacing:68.089140px;}
.ls50{letter-spacing:68.494868px;}
.ls23{letter-spacing:70.783140px;}
.ls25{letter-spacing:79.081140px;}
.ls14{letter-spacing:79.165140px;}
.ls62{letter-spacing:91.453140px;}
.ls61{letter-spacing:99.757140px;}
.ls27{letter-spacing:218.839140px;}
.ls6a{letter-spacing:220.619700px;}
.ls51{letter-spacing:254.883269px;}
.ls1f{letter-spacing:362.582525px;}
.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;}
}
.wsa6{word-spacing:-59.775600px;}
.wsa9{word-spacing:-48.920351px;}
.wsd1{word-spacing:-47.654765px;}
.wsb3{word-spacing:-38.937826px;}
.wsd4{word-spacing:-31.633157px;}
.wsc9{word-spacing:-28.955301px;}
.wsd7{word-spacing:-21.800118px;}
.wsaf{word-spacing:-16.605662px;}
.ws49{word-spacing:-14.943900px;}
.ws19{word-spacing:-14.920027px;}
.wsa3{word-spacing:-13.531962px;}
.ws97{word-spacing:-11.955150px;}
.wscc{word-spacing:-10.460700px;}
.wsdc{word-spacing:-5.846054px;}
.ws17b{word-spacing:-4.016930px;}
.wsd3{word-spacing:-3.328054px;}
.wsd2{word-spacing:-1.495025px;}
.ws54{word-spacing:-1.195512px;}
.wsa8{word-spacing:-1.016185px;}
.ws21{word-spacing:-0.956410px;}
.ws147{word-spacing:-0.777083px;}
.ws146{word-spacing:-0.764975px;}
.ws18d{word-spacing:-0.717309px;}
.ws92{word-spacing:-0.717307px;}
.ws112{word-spacing:-0.657532px;}
.ws9d{word-spacing:-0.597756px;}
.ws7d{word-spacing:-0.537980px;}
.ws43{word-spacing:-0.478205px;}
.ws167{word-spacing:-0.430385px;}
.wsf9{word-spacing:-0.418429px;}
.wse0{word-spacing:-0.358654px;}
.ws12b{word-spacing:-0.179327px;}
.ws93{word-spacing:-0.119551px;}
.ws56{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws156{word-spacing:-0.016652px;}
.wsd0{word-spacing:-0.015471px;}
.ws5b{word-spacing:0.000000px;}
.ws11f{word-spacing:0.059776px;}
.ws25{word-spacing:0.179327px;}
.ws3a{word-spacing:0.298878px;}
.ws59{word-spacing:0.358654px;}
.ws20{word-spacing:0.418429px;}
.ws9b{word-spacing:0.537980px;}
.ws4b{word-spacing:0.597756px;}
.ws15a{word-spacing:0.717307px;}
.ws131{word-spacing:0.777083px;}
.wsb6{word-spacing:0.896634px;}
.ws160{word-spacing:0.908591px;}
.ws90{word-spacing:0.956410px;}
.ws10{word-spacing:1.022170px;}
.ws1a{word-spacing:1.195512px;}
.ws126{word-spacing:1.255288px;}
.ws15b{word-spacing:1.315063px;}
.ws132{word-spacing:1.374839px;}
.ws77{word-spacing:1.434614px;}
.ws14d{word-spacing:1.494390px;}
.ws180{word-spacing:1.530259px;}
.ws85{word-spacing:1.554166px;}
.wsf3{word-spacing:1.613941px;}
.wsc5{word-spacing:1.673717px;}
.wsc1{word-spacing:1.733492px;}
.wsdb{word-spacing:1.793268px;}
.ws98{word-spacing:1.853044px;}
.ws161{word-spacing:1.865003px;}
.ws7c{word-spacing:1.912819px;}
.wsb0{word-spacing:1.972595px;}
.wsb5{word-spacing:2.032370px;}
.ws189{word-spacing:2.151927px;}
.wsda{word-spacing:2.391024px;}
.ws81{word-spacing:2.450800px;}
.ws55{word-spacing:2.510575px;}
.ws129{word-spacing:2.570351px;}
.wsca{word-spacing:2.630126px;}
.wsc8{word-spacing:2.650940px;}
.ws13a{word-spacing:2.689902px;}
.ws181{word-spacing:2.725774px;}
.ws14a{word-spacing:2.749678px;}
.ws18a{word-spacing:2.773595px;}
.ws186{word-spacing:2.863183px;}
.ws164{word-spacing:2.869236px;}
.ws9{word-spacing:2.905114px;}
.ws53{word-spacing:2.929004px;}
.ws36{word-spacing:2.988780px;}
.ws163{word-spacing:3.156160px;}
.ws40{word-spacing:3.168107px;}
.wsd6{word-spacing:3.227882px;}
.wsff{word-spacing:3.347434px;}
.ws16e{word-spacing:3.347442px;}
.ws104{word-spacing:3.407209px;}
.ws13b{word-spacing:3.526760px;}
.ws18e{word-spacing:3.538724px;}
.ws2e{word-spacing:3.586536px;}
.ws170{word-spacing:3.586545px;}
.ws16f{word-spacing:3.634366px;}
.ws117{word-spacing:3.646312px;}
.ws29{word-spacing:3.706087px;}
.ws18b{word-spacing:3.777827px;}
.ws6{word-spacing:3.819686px;}
.ws5a{word-spacing:3.825638px;}
.ws183{word-spacing:3.825648px;}
.ws15d{word-spacing:3.873469px;}
.ws26{word-spacing:3.885414px;}
.ws114{word-spacing:3.933144px;}
.ws113{word-spacing:3.934192px;}
.wscd{word-spacing:3.945190px;}
.wscf{word-spacing:3.946369px;}
.wsa7{word-spacing:4.004965px;}
.wsa4{word-spacing:4.064741px;}
.ws133{word-spacing:4.124516px;}
.ws175{word-spacing:4.170686px;}
.ws12f{word-spacing:4.184280px;}
.ws75{word-spacing:4.184292px;}
.ws176{word-spacing:4.208213px;}
.wse8{word-spacing:4.227600px;}
.wse9{word-spacing:4.244068px;}
.ws45{word-spacing:4.363619px;}
.ws8{word-spacing:4.411469px;}
.ws78{word-spacing:4.483170px;}
.ws1c{word-spacing:4.722272px;}
.ws17f{word-spacing:4.781514px;}
.ws7f{word-spacing:4.782048px;}
.ws15e{word-spacing:4.782060px;}
.wsed{word-spacing:4.841824px;}
.ws63{word-spacing:4.901599px;}
.ws6a{word-spacing:4.961375px;}
.ws135{word-spacing:5.021150px;}
.ws190{word-spacing:5.116804px;}
.ws1e{word-spacing:5.140702px;}
.ws174{word-spacing:5.164625px;}
.ws60{word-spacing:5.200477px;}
.ws12d{word-spacing:5.230350px;}
.ws188{word-spacing:5.259280px;}
.ws103{word-spacing:5.260253px;}
.ws17e{word-spacing:5.260266px;}
.ws3e{word-spacing:5.320028px;}
.wsfe{word-spacing:5.379804px;}
.ws6b{word-spacing:5.439580px;}
.ws115{word-spacing:5.499355px;}
.ws41{word-spacing:5.618906px;}
.ws185{word-spacing:5.642831px;}
.ws52{word-spacing:5.678682px;}
.wsf8{word-spacing:5.738458px;}
.ws13f{word-spacing:5.851200px;}
.ws39{word-spacing:5.858009px;}
.ws162{word-spacing:5.881934px;}
.ws96{word-spacing:5.926319px;}
.wsf5{word-spacing:5.929754px;}
.ws95{word-spacing:5.941346px;}
.ws4a{word-spacing:5.961520px;}
.ws179{word-spacing:5.968423px;}
.wsd{word-spacing:5.971622px;}
.ws141{word-spacing:5.973025px;}
.wse5{word-spacing:5.974027px;}
.ws14e{word-spacing:5.974376px;}
.wsb1{word-spacing:5.975774px;}
.ws14f{word-spacing:5.976068px;}
.ws151{word-spacing:5.976130px;}
.wse1{word-spacing:5.976223px;}
.ws14b{word-spacing:5.976317px;}
.wsb2{word-spacing:5.977088px;}
.ws149{word-spacing:5.977517px;}
.ws14c{word-spacing:5.977553px;}
.ws1f{word-spacing:5.977560px;}
.ws17a{word-spacing:5.977575px;}
.wsb9{word-spacing:5.978134px;}
.ws100{word-spacing:5.978375px;}
.wsb4{word-spacing:5.978640px;}
.ws12a{word-spacing:5.978683px;}
.ws150{word-spacing:5.981400px;}
.ws142{word-spacing:5.983800px;}
.ws13c{word-spacing:5.991428px;}
.ws23{word-spacing:6.037336px;}
.ws153{word-spacing:6.156887px;}
.wsa5{word-spacing:6.216662px;}
.ws10f{word-spacing:6.276438px;}
.ws15c{word-spacing:6.360140px;}
.ws7e{word-spacing:6.455765px;}
.wse2{word-spacing:6.515540px;}
.ws84{word-spacing:6.575316px;}
.ws102{word-spacing:6.635092px;}
.ws76{word-spacing:6.694867px;}
.ws2f{word-spacing:6.724400px;}
.ws15{word-spacing:6.724800px;}
.ws108{word-spacing:6.739382px;}
.ws30{word-spacing:6.754643px;}
.ws168{word-spacing:6.790525px;}
.ws68{word-spacing:6.814418px;}
.wsae{word-spacing:6.874194px;}
.ws2d{word-spacing:6.933970px;}
.ws13{word-spacing:6.939994px;}
.ws116{word-spacing:6.993745px;}
.ws101{word-spacing:7.051208px;}
.ws118{word-spacing:7.053521px;}
.ws4{word-spacing:7.101389px;}
.ws38{word-spacing:7.113296px;}
.ws10b{word-spacing:7.173072px;}
.ws18f{word-spacing:7.173090px;}
.ws3f{word-spacing:7.232848px;}
.ws127{word-spacing:7.352399px;}
.ws159{word-spacing:7.412174px;}
.ws94{word-spacing:7.471950px;}
.ws152{word-spacing:7.474800px;}
.ws171{word-spacing:7.555655px;}
.ws57{word-spacing:7.651277px;}
.ws187{word-spacing:7.699117px;}
.wsf6{word-spacing:7.711052px;}
.ws87{word-spacing:7.770828px;}
.wsf2{word-spacing:7.830604px;}
.ws105{word-spacing:7.950155px;}
.ws2{word-spacing:7.962163px;}
.ws119{word-spacing:8.189257px;}
.wse4{word-spacing:8.308808px;}
.ws16c{word-spacing:8.416426px;}
.ws6c{word-spacing:8.488135px;}
.ws178{word-spacing:8.607708px;}
.ws37{word-spacing:8.787013px;}
.ws10e{word-spacing:8.846789px;}
.wsa2{word-spacing:8.906564px;}
.ws79{word-spacing:8.966340px;}
.ws5e{word-spacing:9.026116px;}
.ws80{word-spacing:9.085891px;}
.ws17{word-spacing:9.091930px;}
.ws11b{word-spacing:9.145667px;}
.ws11c{word-spacing:9.205442px;}
.ws67{word-spacing:9.265218px;}
.ws11{word-spacing:9.307123px;}
.ws124{word-spacing:9.324994px;}
.ws8d{word-spacing:9.384769px;}
.ws13e{word-spacing:9.444545px;}
.ws22{word-spacing:9.504320px;}
.ws4c{word-spacing:9.564096px;}
.ws27{word-spacing:9.623872px;}
.ws18c{word-spacing:9.659761px;}
.ws5c{word-spacing:9.683647px;}
.ws3{word-spacing:9.683712px;}
.ws51{word-spacing:9.743423px;}
.wsc0{word-spacing:9.803198px;}
.ws65{word-spacing:9.862974px;}
.wsf4{word-spacing:9.922750px;}
.ws17c{word-spacing:9.946685px;}
.wsdd{word-spacing:9.982525px;}
.wsf{word-spacing:10.006502px;}
.ws125{word-spacing:10.042301px;}
.ws3d{word-spacing:10.161852px;}
.wsbf{word-spacing:10.281403px;}
.wse6{word-spacing:10.379802px;}
.ws44{word-spacing:10.400954px;}
.wsc{word-spacing:10.436890px;}
.ws8b{word-spacing:10.460730px;}
.wsee{word-spacing:10.699832px;}
.ws10d{word-spacing:10.759608px;}
.ws121{word-spacing:10.819384px;}
.ws120{word-spacing:10.826734px;}
.wsf7{word-spacing:10.879159px;}
.ws33{word-spacing:11.058486px;}
.ws46{word-spacing:11.118262px;}
.ws11a{word-spacing:11.178037px;}
.wsdf{word-spacing:11.237813px;}
.ws99{word-spacing:11.297588px;}
.ws140{word-spacing:11.417140px;}
.wsce{word-spacing:11.442084px;}
.ws8e{word-spacing:11.476915px;}
.ws182{word-spacing:11.476944px;}
.ws172{word-spacing:11.524765px;}
.wsef{word-spacing:11.536691px;}
.wsf0{word-spacing:11.716018px;}
.ws61{word-spacing:11.775793px;}
.ws71{word-spacing:11.895344px;}
.ws62{word-spacing:11.955120px;}
.ws17d{word-spacing:11.955150px;}
.ws9f{word-spacing:12.014896px;}
.wsc4{word-spacing:12.025034px;}
.ws157{word-spacing:12.074671px;}
.ws123{word-spacing:12.134447px;}
.ws122{word-spacing:12.147025px;}
.ws14{word-spacing:12.212237px;}
.ws11e{word-spacing:12.253998px;}
.wsa0{word-spacing:12.313774px;}
.ws10c{word-spacing:12.373549px;}
.wsbc{word-spacing:12.411418px;}
.wsbd{word-spacing:12.433325px;}
.ws5{word-spacing:12.481229px;}
.wsfb{word-spacing:12.552876px;}
.ws111{word-spacing:12.612652px;}
.ws2a{word-spacing:12.672427px;}
.ws6d{word-spacing:12.732203px;}
.wsd9{word-spacing:12.834580px;}
.wsd8{word-spacing:12.838309px;}
.ws5f{word-spacing:12.851754px;}
.ws35{word-spacing:12.971305px;}
.wsbe{word-spacing:13.031081px;}
.ws34{word-spacing:13.150632px;}
.ws109{word-spacing:13.210408px;}
.ws24{word-spacing:13.270183px;}
.wsab{word-spacing:13.389734px;}
.ws134{word-spacing:13.471256px;}
.ws1b{word-spacing:13.509286px;}
.ws5d{word-spacing:13.569061px;}
.ws2b{word-spacing:13.927715px;}
.ws16a{word-spacing:13.963615px;}
.ws47{word-spacing:14.047266px;}
.wsa{word-spacing:14.148979px;}
.ws64{word-spacing:14.166817px;}
.ws86{word-spacing:14.226593px;}
.wsac{word-spacing:14.338102px;}
.wsad{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wse3{word-spacing:14.405920px;}
.wse7{word-spacing:14.465695px;}
.wsb8{word-spacing:14.585246px;}
.ws66{word-spacing:14.645022px;}
.wsba{word-spacing:14.764573px;}
.ws2c{word-spacing:14.824349px;}
.wse{word-spacing:14.848358px;}
.ws7{word-spacing:15.171149px;}
.ws48{word-spacing:15.422105px;}
.ws173{word-spacing:15.446054px;}
.ws6e{word-spacing:15.481880px;}
.ws91{word-spacing:15.541656px;}
.ws72{word-spacing:15.661207px;}
.ws8f{word-spacing:15.720983px;}
.ws70{word-spacing:15.840534px;}
.ws110{word-spacing:15.900310px;}
.ws32{word-spacing:16.019861px;}
.wsd5{word-spacing:16.024309px;}
.ws12{word-spacing:16.031923px;}
.ws88{word-spacing:16.139412px;}
.ws28{word-spacing:16.318739px;}
.ws1d{word-spacing:16.378514px;}
.ws74{word-spacing:16.498066px;}
.ws169{word-spacing:16.545928px;}
.ws9c{word-spacing:16.557841px;}
.ws148{word-spacing:16.617617px;}
.wsb{word-spacing:16.731302px;}
.ws58{word-spacing:16.737168px;}
.wsc7{word-spacing:16.856719px;}
.wscb{word-spacing:16.976270px;}
.wsfc{word-spacing:17.036046px;}
.wsa1{word-spacing:17.275148px;}
.ws16d{word-spacing:17.454519px;}
.ws7a{word-spacing:17.633802px;}
.ws166{word-spacing:17.645801px;}
.wsbb{word-spacing:17.693578px;}
.ws165{word-spacing:17.693622px;}
.ws15f{word-spacing:17.741443px;}
.ws158{word-spacing:17.753353px;}
.ws18{word-spacing:17.932680px;}
.wsc2{word-spacing:17.944309px;}
.wsc3{word-spacing:17.948134px;}
.ws145{word-spacing:17.992456px;}
.ws16b{word-spacing:18.028366px;}
.wsf1{word-spacing:18.112007px;}
.ws73{word-spacing:18.291334px;}
.ws11d{word-spacing:18.351109px;}
.ws4f{word-spacing:18.410885px;}
.wsde{word-spacing:18.709763px;}
.ws83{word-spacing:19.187968px;}
.ws128{word-spacing:19.367294px;}
.ws10a{word-spacing:19.666172px;}
.ws3c{word-spacing:19.905275px;}
.wsec{word-spacing:19.965050px;}
.ws7b{word-spacing:20.084602px;}
.wsc6{word-spacing:20.144377px;}
.ws82{word-spacing:20.263928px;}
.ws9a{word-spacing:20.443255px;}
.ws184{word-spacing:20.467217px;}
.ws9e{word-spacing:20.503031px;}
.ws8a{word-spacing:20.622582px;}
.wsfd{word-spacing:20.919025px;}
.wsb7{word-spacing:20.921460px;}
.ws31{word-spacing:20.925025px;}
.ws155{word-spacing:21.041011px;}
.ws8c{word-spacing:21.100787px;}
.ws130{word-spacing:21.399665px;}
.ws50{word-spacing:21.519216px;}
.ws139{word-spacing:21.638767px;}
.ws107{word-spacing:21.818094px;}
.ws6f{word-spacing:21.937645px;}
.ws154{word-spacing:22.116972px;}
.ws42{word-spacing:22.356074px;}
.wsaa{word-spacing:22.475626px;}
.ws16{word-spacing:22.487731px;}
.ws69{word-spacing:22.535401px;}
.ws89{word-spacing:22.834279px;}
.ws3b{word-spacing:23.730913px;}
.wseb{word-spacing:23.790689px;}
.ws106{word-spacing:25.942610px;}
.ws4e{word-spacing:28.931390px;}
.ws13d{word-spacing:32.225242px;}
.ws177{word-spacing:33.904805px;}
.ws4d{word-spacing:34.251419px;}
.wsfa{word-spacing:38.674813px;}
.wsea{word-spacing:44.831975px;}
.ws144{word-spacing:53.224328px;}
.ws138{word-spacing:77.134628px;}
.ws12e{word-spacing:90.631505px;}
.ws136{word-spacing:131.650112px;}
.ws137{word-spacing:192.740290px;}
.ws143{word-spacing:208.641278px;}
.ws12c{word-spacing:465.752207px;}
._19{margin-left:-6.635092px;}
._3{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._2{margin-left:-1.136650px;}
._c{width:1.050646px;}
._4{width:2.988780px;}
._29{width:4.010353px;}
._12{width:5.321959px;}
._27{width:7.738192px;}
._10{width:8.761998px;}
._e{width:12.911530px;}
._b{width:15.840539px;}
._7{width:18.829314px;}
._9{width:20.742139px;}
._18{width:21.758318px;}
._14{width:24.268899px;}
._13{width:27.771124px;}
._d{width:29.887800px;}
._6{width:31.382195px;}
._17{width:32.637478px;}
._f{width:35.865360px;}
._11{width:36.998322px;}
._15{width:39.410257px;}
._a{width:44.899694px;}
._8{width:47.532356px;}
._16{width:49.202068px;}
._28{width:51.407624px;}
._5{width:59.821205px;}
._1b{width:88.999636px;}
._1c{width:95.945540px;}
._21{width:106.866511px;}
._25{width:113.047898px;}
._26{width:143.653082px;}
._1d{width:149.229369px;}
._23{width:204.719989px;}
._24{width:220.596428px;}
._1a{width:250.052573px;}
._20{width:280.304917px;}
._1e{width:289.552176px;}
._1f{width:291.895373px;}
._22{width:295.840598px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y32{bottom:113.332500px;}
.y31{bottom:131.265000px;}
.ydb{bottom:131.266500px;}
.ya8{bottom:132.058500px;}
.y5b{bottom:149.197500px;}
.y30{bottom:149.199000px;}
.ya7{bottom:149.991000px;}
.yda{bottom:154.920000px;}
.yd9{bottom:161.476500px;}
.y1fc{bottom:162.873000px;}
.yd8{bottom:165.171000px;}
.y164{bottom:167.130000px;}
.y5a{bottom:167.131500px;}
.y193{bottom:167.436000px;}
.ya6{bottom:167.925000px;}
.y2f{bottom:168.529500px;}
.y1fb{bottom:176.322000px;}
.y59{bottom:185.064000px;}
.y192{bottom:185.368500px;}
.y2e{bottom:186.463500px;}
.ya5{bottom:186.651000px;}
.y13b{bottom:188.064000px;}
.y1fa{bottom:189.771000px;}
.yd7{bottom:199.948500px;}
.y58{bottom:202.996500px;}
.y1f9{bottom:203.221500px;}
.y191{bottom:203.301000px;}
.y17c{bottom:203.820000px;}
.y2d{bottom:204.396000px;}
.ya4{bottom:204.583500px;}
.y13a{bottom:205.996500px;}
.y1f8{bottom:216.670500px;}
.yd6{bottom:217.881000px;}
.y57{bottom:220.929000px;}
.y190{bottom:221.233500px;}
.y10d{bottom:221.695500px;}
.y17b{bottom:221.752500px;}
.y2c{bottom:222.328500px;}
.ya3{bottom:222.516000px;}
.y139{bottom:223.929000px;}
.y1f7{bottom:230.121000px;}
.yd5{bottom:235.815000px;}
.y56{bottom:238.861500px;}
.y10c{bottom:239.629500px;}
.y17a{bottom:239.685000px;}
.y2b{bottom:240.261000px;}
.ya2{bottom:240.448500px;}
.y138{bottom:241.861500px;}
.y1f6{bottom:243.570000px;}
.y18f{bottom:249.114000px;}
.yd4{bottom:254.385000px;}
.y55{bottom:256.794000px;}
.y1b7{bottom:256.795500px;}
.y1f5{bottom:257.019000px;}
.y179{bottom:257.617500px;}
.y2a{bottom:258.193500px;}
.ya1{bottom:258.382500px;}
.y137{bottom:259.795500px;}
.y10a{bottom:262.485000px;}
.y18e{bottom:264.058500px;}
.y109{bottom:266.650500px;}
.y1f4{bottom:270.469500px;}
.yd3{bottom:272.317500px;}
.y54{bottom:274.728000px;}
.y29{bottom:276.127500px;}
.ya0{bottom:276.315000px;}
.y136{bottom:277.728000px;}
.y18d{bottom:279.001500px;}
.y178{bottom:282.178500px;}
.y1f3{bottom:283.918500px;}
.y108{bottom:288.097500px;}
.yd2{bottom:290.250000px;}
.y107{bottom:292.263000px;}
.y53{bottom:292.660500px;}
.y18c{bottom:293.946000px;}
.y28{bottom:294.060000px;}
.y9f{bottom:294.247500px;}
.y135{bottom:295.660500px;}
.y10b{bottom:296.475000px;}
.y1f2{bottom:297.367500px;}
.yd1{bottom:308.184000px;}
.y18b{bottom:308.890500px;}
.y52{bottom:310.593000px;}
.y1f1{bottom:310.818000px;}
.y9e{bottom:312.180000px;}
.y27{bottom:313.392000px;}
.y105{bottom:313.989000px;}
.y177{bottom:314.862000px;}
.y134{bottom:316.593000px;}
.y106{bottom:319.236000px;}
.y104{bottom:323.401500px;}
.y1f0{bottom:324.267000px;}
.yd0{bottom:326.116500px;}
.y51{bottom:328.525500px;}
.y9d{bottom:330.112500px;}
.y26{bottom:331.324500px;}
.y176{bottom:332.794500px;}
.y18a{bottom:333.477000px;}
.y163{bottom:334.032000px;}
.y133{bottom:334.525500px;}
.y1ef{bottom:337.717500px;}
.ycf{bottom:344.049000px;}
.y50{bottom:346.458000px;}
.y9c{bottom:348.045000px;}
.y25{bottom:349.257000px;}
.y175{bottom:350.727000px;}
.y1ee{bottom:351.166500px;}
.y189{bottom:351.409500px;}
.y132{bottom:352.458000px;}
.y103{bottom:358.753500px;}
.yce{bottom:361.981500px;}
.y162{bottom:363.991500px;}
.y77{bottom:364.392000px;}
.y4f{bottom:364.402500px;}
.y1ed{bottom:364.615500px;}
.y9b{bottom:365.979000px;}
.y24{bottom:367.189500px;}
.y174{bottom:368.659500px;}
.y188{bottom:369.342000px;}
.y131{bottom:370.392000px;}
.y102{bottom:372.520500px;}
.y101{bottom:376.686000px;}
.y1ec{bottom:378.066000px;}
.ycd{bottom:379.914000px;}
.y161{bottom:381.924000px;}
.y76{bottom:382.324500px;}
.y4e{bottom:382.335000px;}
.y9a{bottom:383.911500px;}
.y23{bottom:385.122000px;}
.y173{bottom:386.592000px;}
.y187{bottom:387.276000px;}
.y130{bottom:388.324500px;}
.y1eb{bottom:391.515000px;}
.y100{bottom:395.670000px;}
.y160{bottom:399.856500px;}
.y75{bottom:400.257000px;}
.y4d{bottom:400.269000px;}
.y99{bottom:401.844000px;}
.y22{bottom:403.054500px;}
.ycc{bottom:403.447500px;}
.y1ea{bottom:404.964000px;}
.y186{bottom:405.208500px;}
.y12f{bottom:406.257000px;}
.yff{bottom:414.369000px;}
.y15f{bottom:417.790500px;}
.y74{bottom:418.189500px;}
.y1e9{bottom:418.414500px;}
.y98{bottom:419.776500px;}
.y1b6{bottom:420.676500px;}
.y21{bottom:420.988500px;}
.y4c{bottom:422.955000px;}
.y185{bottom:423.141000px;}
.y12e{bottom:424.189500px;}
.y172{bottom:425.056500px;}
.ycb{bottom:429.471000px;}
.y1e8{bottom:431.863500px;}
.yfe{bottom:432.301500px;}
.yca{bottom:433.636500px;}
.y15e{bottom:435.723000px;}
.y73{bottom:436.122000px;}
.y20{bottom:438.921000px;}
.y184{bottom:441.378000px;}
.y12d{bottom:442.122000px;}
.y171{bottom:444.820500px;}
.y97{bottom:445.195500px;}
.y1e7{bottom:445.312500px;}
.yfd{bottom:450.234000px;}
.y4b{bottom:451.042500px;}
.yc9{bottom:452.479500px;}
.y15d{bottom:453.655500px;}
.y72{bottom:454.054500px;}
.y170{bottom:456.775500px;}
.y1f{bottom:458.253000px;}
.y1e6{bottom:458.763000px;}
.y183{bottom:459.310500px;}
.y12c{bottom:460.054500px;}
.yfc{bottom:468.168000px;}
.y16f{bottom:468.730500px;}
.y4a{bottom:468.975000px;}
.yc8{bottom:470.412000px;}
.y1b5{bottom:470.955000px;}
.y15c{bottom:471.588000px;}
.y71{bottom:471.988500px;}
.y1e5{bottom:472.212000px;}
.y1e{bottom:476.185500px;}
.y182{bottom:477.243000px;}
.y12b{bottom:477.988500px;}
.y96{bottom:479.961000px;}
.y16e{bottom:480.685500px;}
.y1e4{bottom:485.662500px;}
.yfb{bottom:486.100500px;}
.y49{bottom:486.907500px;}
.yc7{bottom:488.344500px;}
.y1b4{bottom:488.887500px;}
.y15b{bottom:489.520500px;}
.y70{bottom:489.921000px;}
.y16d{bottom:492.640500px;}
.y1d{bottom:494.118000px;}
.y12a{bottom:495.921000px;}
.y95{bottom:497.895000px;}
.y1e3{bottom:499.111500px;}
.yfa{bottom:504.033000px;}
.y16c{bottom:504.595500px;}
.y48{bottom:504.840000px;}
.yc6{bottom:506.277000px;}
.y1b3{bottom:506.820000px;}
.y15a{bottom:507.453000px;}
.y6f{bottom:507.853500px;}
.y1c{bottom:512.050500px;}
.y1e2{bottom:512.560500px;}
.y181{bottom:515.505000px;}
.y94{bottom:515.827500px;}
.y16b{bottom:516.550500px;}
.y129{bottom:516.864000px;}
.yf9{bottom:522.732000px;}
.y47{bottom:522.772500px;}
.yc5{bottom:523.572000px;}
.y1b2{bottom:524.752500px;}
.y159{bottom:525.387000px;}
.y6e{bottom:525.786000px;}
.y1e1{bottom:526.011000px;}
.yc4{bottom:527.737500px;}
.y180{bottom:528.954000px;}
.y1b{bottom:529.983000px;}
.y93{bottom:533.760000px;}
.y128{bottom:534.805500px;}
.y16a{bottom:536.314500px;}
.y1e0{bottom:539.460000px;}
.yf8{bottom:540.664500px;}
.y46{bottom:540.705000px;}
.y17f{bottom:542.404500px;}
.y1b1{bottom:542.686500px;}
.y158{bottom:543.319500px;}
.yc3{bottom:543.346500px;}
.y6d{bottom:543.718500px;}
.yc2{bottom:547.512000px;}
.y1a{bottom:547.917000px;}
.y169{bottom:548.269500px;}
.y92{bottom:551.692500px;}
.y127{bottom:552.739500px;}
.y1df{bottom:552.909000px;}
.y17e{bottom:555.853500px;}
.yf7{bottom:558.598500px;}
.y45{bottom:558.646500px;}
.y168{bottom:560.224500px;}
.y157{bottom:561.594000px;}
.y6c{bottom:561.651000px;}
.yc1{bottom:563.119500px;}
.y1de{bottom:566.359500px;}
.yc0{bottom:567.285000px;}
.y1b0{bottom:569.136000px;}
.y91{bottom:569.625000px;}
.y126{bottom:570.672000px;}
.yf6{bottom:576.531000px;}
.y44{bottom:576.579000px;}
.y17d{bottom:577.111500px;}
.y19{bottom:578.950500px;}
.y156{bottom:579.526500px;}
.y6b{bottom:579.585000px;}
.y1dd{bottom:579.808500px;}
.ybf{bottom:582.894000px;}
.ybe{bottom:587.059500px;}
.y1af{bottom:587.068500px;}
.y90{bottom:587.557500px;}
.y167{bottom:588.505500px;}
.y125{bottom:588.604500px;}
.y1dc{bottom:593.259000px;}
.yf5{bottom:594.463500px;}
.y43{bottom:594.511500px;}
.y155{bottom:597.460500px;}
.y6a{bottom:597.517500px;}
.ybd{bottom:602.667000px;}
.y1ae{bottom:605.001000px;}
.y8f{bottom:605.491500px;}
.y166{bottom:606.439500px;}
.y124{bottom:606.537000px;}
.y1db{bottom:606.708000px;}
.ybc{bottom:606.832500px;}
.y42{bottom:612.444000px;}
.y154{bottom:615.393000px;}
.y69{bottom:615.450000px;}
.yf4{bottom:618.177000px;}
.y1da{bottom:620.157000px;}
.y1ad{bottom:622.933500px;}
.y18{bottom:623.017500px;}
.y8e{bottom:623.424000px;}
.y123{bottom:624.469500px;}
.ybb{bottom:628.293000px;}
.y41{bottom:630.378000px;}
.y153{bottom:633.325500px;}
.y68{bottom:633.382500px;}
.y1d9{bottom:633.607500px;}
.y165{bottom:635.968500px;}
.y17{bottom:637.962000px;}
.y1ac{bottom:640.867500px;}
.yba{bottom:646.225500px;}
.y1d8{bottom:647.056500px;}
.y122{bottom:647.145000px;}
.y40{bottom:648.310500px;}
.yf3{bottom:648.804000px;}
.y8d{bottom:650.826000px;}
.y152{bottom:651.258000px;}
.y67{bottom:651.315000px;}
.y16{bottom:654.304500px;}
.y1d7{bottom:660.505500px;}
.y1ab{bottom:661.417500px;}
.yf2{bottom:666.736500px;}
.y3f{bottom:669.247500px;}
.y15{bottom:669.249000px;}
.y151{bottom:669.418500px;}
.yb9{bottom:671.421000px;}
.y1d6{bottom:673.956000px;}
.y121{bottom:675.250500px;}
.yb6{bottom:678.802500px;}
.yb4{bottom:679.299000px;}
.y1aa{bottom:679.351500px;}
.y14{bottom:684.192000px;}
.yf1{bottom:684.669000px;}
.y8c{bottom:685.593000px;}
.y3e{bottom:687.181500px;}
.y150{bottom:687.352500px;}
.y1d5{bottom:687.405000px;}
.yb3{bottom:689.053500px;}
.y120{bottom:693.183000px;}
.y13{bottom:699.136500px;}
.yb5{bottom:699.163500px;}
.y1a9{bottom:699.903000px;}
.y1d4{bottom:700.855500px;}
.yf0{bottom:702.601500px;}
.yb8{bottom:703.251000px;}
.y8b{bottom:703.525500px;}
.y3d{bottom:705.114000px;}
.y14f{bottom:705.285000px;}
.yb7{bottom:707.733000px;}
.y11f{bottom:711.115500px;}
.y12{bottom:714.079500px;}
.y1d3{bottom:714.304500px;}
.y1a8{bottom:717.835500px;}
.y8a{bottom:721.458000px;}
.y3c{bottom:723.046500px;}
.y14e{bottom:723.217500px;}
.y1d2{bottom:727.753500px;}
.yef{bottom:728.956500px;}
.y11{bottom:729.024000px;}
.y11e{bottom:729.048000px;}
.yb2{bottom:735.697500px;}
.y1a7{bottom:738.387000px;}
.yee{bottom:738.711000px;}
.y89{bottom:739.392000px;}
.y3b{bottom:740.979000px;}
.y14d{bottom:741.150000px;}
.y1d1{bottom:741.204000px;}
.y10{bottom:743.968500px;}
.y11d{bottom:746.980500px;}
.yb1{bottom:753.631500px;}
.y1d0{bottom:754.653000px;}
.y1a6{bottom:756.319500px;}
.y88{bottom:757.324500px;}
.yed{bottom:758.007000px;}
.yf{bottom:758.911500px;}
.y14c{bottom:759.082500px;}
.y11c{bottom:764.913000px;}
.yb0{bottom:767.398500px;}
.y1cf{bottom:768.102000px;}
.yaf{bottom:771.564000px;}
.ye{bottom:773.856000px;}
.y1a5{bottom:774.252000px;}
.y87{bottom:775.257000px;}
.yec{bottom:775.939500px;}
.y3a{bottom:776.844000px;}
.y66{bottom:776.845500px;}
.y14b{bottom:777.015000px;}
.y1ce{bottom:781.552500px;}
.y11b{bottom:782.847000px;}
.yd{bottom:788.800500px;}
.yae{bottom:790.407000px;}
.y1a4{bottom:792.184500px;}
.y86{bottom:793.189500px;}
.yeb{bottom:794.638500px;}
.y39{bottom:794.778000px;}
.y14a{bottom:794.949000px;}
.y1cd{bottom:795.001500px;}
.yc{bottom:803.743500px;}
.y11a{bottom:805.546500px;}
.yad{bottom:808.339500px;}
.y1cc{bottom:808.450500px;}
.y1a3{bottom:810.117000px;}
.y85{bottom:811.915500px;}
.yea{bottom:812.572500px;}
.y38{bottom:812.710500px;}
.y149{bottom:812.881500px;}
.yb{bottom:818.688000px;}
.y1cb{bottom:821.901000px;}
.y84{bottom:829.849500px;}
.y37{bottom:830.643000px;}
.y1a2{bottom:830.668500px;}
.ya{bottom:833.632500px;}
.y119{bottom:833.652000px;}
.yab{bottom:833.764500px;}
.yac{bottom:834.054000px;}
.y1ca{bottom:835.350000px;}
.y148{bottom:836.320500px;}
.yaa{bottom:837.748500px;}
.ye8{bottom:840.819000px;}
.y83{bottom:847.782000px;}
.ye7{bottom:848.200500px;}
.y9{bottom:848.575500px;}
.y1a1{bottom:848.601000px;}
.y1c9{bottom:848.800500px;}
.y118{bottom:851.584500px;}
.ye9{bottom:854.757000px;}
.ye6{bottom:858.451500px;}
.y1c8{bottom:862.249500px;}
.y8{bottom:863.520000px;}
.y82{bottom:865.714500px;}
.y147{bottom:866.280000px;}
.y36{bottom:866.508000px;}
.y1a0{bottom:866.535000px;}
.y117{bottom:869.517000px;}
.y1c7{bottom:875.698500px;}
.y7{bottom:878.464500px;}
.y81{bottom:883.647000px;}
.y146{bottom:884.212500px;}
.y35{bottom:884.440500px;}
.y65{bottom:884.442000px;}
.y19f{bottom:884.467500px;}
.y116{bottom:887.449500px;}
.y1c6{bottom:889.149000px;}
.ye5{bottom:889.851000px;}
.ya9{bottom:892.405500px;}
.y6{bottom:893.407500px;}
.y80{bottom:901.579500px;}
.y145{bottom:902.145000px;}
.y34{bottom:902.374500px;}
.y19e{bottom:902.400000px;}
.y1c5{bottom:902.598000px;}
.y115{bottom:905.392500px;}
.ye4{bottom:907.783500px;}
.y5{bottom:908.352000px;}
.y1c4{bottom:916.047000px;}
.y7f{bottom:919.512000px;}
.y144{bottom:920.079000px;}
.y33{bottom:920.307000px;}
.y19d{bottom:920.332500px;}
.y4{bottom:923.295000px;}
.y114{bottom:923.325000px;}
.ye3{bottom:925.716000px;}
.y1c3{bottom:929.497500px;}
.y7e{bottom:937.446000px;}
.y143{bottom:938.011500px;}
.y3{bottom:938.239500px;}
.y19c{bottom:938.265000px;}
.y113{bottom:941.257500px;}
.y1c2{bottom:942.946500px;}
.ye2{bottom:943.648500px;}
.y7d{bottom:955.378500px;}
.y142{bottom:955.944000px;}
.y64{bottom:956.172000px;}
.y19b{bottom:956.199000px;}
.y1c1{bottom:956.397000px;}
.ye1{bottom:957.012000px;}
.y112{bottom:959.190000px;}
.ye0{bottom:961.581000px;}
.y1c0{bottom:969.846000px;}
.y7c{bottom:973.311000px;}
.y141{bottom:973.876500px;}
.y63{bottom:974.104500px;}
.y111{bottom:977.124000px;}
.y1bf{bottom:983.295000px;}
.y7b{bottom:991.243500px;}
.y140{bottom:991.809000px;}
.y62{bottom:992.038500px;}
.y110{bottom:995.056500px;}
.y1be{bottom:996.745500px;}
.y19a{bottom:1000.630500px;}
.y7a{bottom:1009.176000px;}
.ydf{bottom:1009.204500px;}
.y13f{bottom:1009.741500px;}
.y61{bottom:1009.971000px;}
.y1bd{bottom:1010.194500px;}
.y10f{bottom:1012.989000px;}
.y199{bottom:1014.081000px;}
.y1bc{bottom:1023.643500px;}
.y79{bottom:1027.108500px;}
.yde{bottom:1027.137000px;}
.y198{bottom:1027.530000px;}
.y13e{bottom:1027.675500px;}
.y60{bottom:1027.903500px;}
.y10e{bottom:1035.664500px;}
.y1bb{bottom:1037.094000px;}
.y2{bottom:1039.309500px;}
.y197{bottom:1040.979000px;}
.ydd{bottom:1045.069500px;}
.y13d{bottom:1045.608000px;}
.y5f{bottom:1045.836000px;}
.y1ba{bottom:1050.543000px;}
.y196{bottom:1054.429500px;}
.ydc{bottom:1063.002000px;}
.y13c{bottom:1063.540500px;}
.y5e{bottom:1063.768500px;}
.y1b9{bottom:1063.993500px;}
.y195{bottom:1075.687500px;}
.y1b8{bottom:1077.442500px;}
.y1{bottom:1081.152000px;}
.y5d{bottom:1081.701000px;}
.y78{bottom:1099.633500px;}
.y5c{bottom:1099.635000px;}
.y194{bottom:1105.014000px;}
.h12{height:0.000000px;}
.h18{height:28.578632px;}
.h26{height:28.787846px;}
.h25{height:29.038903px;}
.h11{height:29.457331px;}
.h10{height:31.382100px;}
.h2a{height:32.804932px;}
.h29{height:32.900573px;}
.h2c{height:33.134573px;}
.h2d{height:33.140573px;}
.h27{height:33.187496px;}
.h28{height:37.013299px;}
.h3{height:37.336090px;}
.h2{height:37.605082px;}
.h6{height:41.006062px;}
.h4{height:41.125613px;}
.h5{height:41.484266px;}
.h7{height:42.799330px;}
.h2b{height:43.322573px;}
.hf{height:44.831700px;}
.h1d{height:50.268632px;}
.h9{height:53.072100px;}
.h8{height:53.078100px;}
.h1e{height:53.262632px;}
.h15{height:53.471846px;}
.h1b{height:54.135331px;}
.h20{height:56.439280px;}
.h1c{height:57.577330px;}
.he{height:57.787613px;}
.hd{height:59.609700px;}
.h13{height:61.436100px;}
.h23{height:61.493700px;}
.ha{height:62.432100px;}
.h17{height:64.532100px;}
.h21{height:65.793280px;}
.h24{height:65.799280px;}
.hc{height:72.002100px;}
.hb{height:78.368100px;}
.h14{height:79.094100px;}
.h19{height:85.265700px;}
.h1f{height:95.552100px;}
.h1a{height:97.788000px;}
.h1{height:98.701718px;}
.h16{height:100.049700px;}
.h22{height:103.449280px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:73.446000px;}
.xd{left:80.373000px;}
.x44{left:82.411500px;}
.x1{left:87.346500px;}
.x3{left:88.390500px;}
.x18{left:89.629500px;}
.xb{left:103.333500px;}
.x43{left:107.490000px;}
.x3a{left:109.804500px;}
.x3b{left:121.012500px;}
.x3c{left:136.102500px;}
.x1c{left:140.334000px;}
.x39{left:156.588000px;}
.xe{left:157.743000px;}
.x13{left:180.769500px;}
.x1b{left:184.404000px;}
.x1e{left:191.599500px;}
.x1d{left:197.800500px;}
.x3d{left:199.120500px;}
.x19{left:200.274000px;}
.x5{left:203.430000px;}
.x15{left:209.959500px;}
.x14{left:213.042000px;}
.x12{left:220.714500px;}
.x16{left:227.880000px;}
.xf{left:232.444500px;}
.x3e{left:234.481500px;}
.x1a{left:239.161500px;}
.x17{left:251.956500px;}
.x10{left:273.724500px;}
.x1f{left:298.530000px;}
.x3f{left:306.414000px;}
.x2{left:338.170500px;}
.x11{left:341.572500px;}
.x40{left:378.346500px;}
.x20{left:432.609000px;}
.x8{left:467.967000px;}
.x46{left:473.944500px;}
.x23{left:475.627500px;}
.x42{left:479.922000px;}
.x6{left:482.910000px;}
.x47{left:495.355500px;}
.xa{left:497.854500px;}
.x7{left:504.325500px;}
.x41{left:508.212000px;}
.x4a{left:525.057000px;}
.x24{left:541.410000px;}
.xc{left:543.540000px;}
.x30{left:549.111000px;}
.x48{left:553.179000px;}
.x33{left:562.678500px;}
.x25{left:569.647500px;}
.x26{left:589.594500px;}
.x9{left:591.838500px;}
.x27{left:598.135500px;}
.x45{left:614.418000px;}
.x31{left:616.803000px;}
.x36{left:618.777000px;}
.x34{left:629.910000px;}
.x28{left:642.445500px;}
.x38{left:651.160500px;}
.x37{left:659.893500px;}
.x29{left:666.532500px;}
.x35{left:675.220500px;}
.x2a{left:686.479500px;}
.x2b{left:693.807000px;}
.x2c{left:737.439000px;}
.x49{left:761.515500px;}
.x2d{left:767.943000px;}
.x32{left:775.903500px;}
.x2e{left:787.890000px;}
.x2f{left:796.431000px;}
.x22{left:827.130000px;}
.x21{left:850.581000px;}
@media print{
.v14{vertical-align:-21.941333pt;}
.va{vertical-align:-13.280000pt;}
.vb{vertical-align:-12.266667pt;}
.v8{vertical-align:-7.968000pt;}
.vc{vertical-align:-1.642667pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:5.162667pt;}
.v18{vertical-align:6.837333pt;}
.v19{vertical-align:7.973333pt;}
.v1a{vertical-align:9.264000pt;}
.vd{vertical-align:10.645333pt;}
.v7{vertical-align:13.136000pt;}
.v4{vertical-align:14.165333pt;}
.vf{vertical-align:15.349333pt;}
.v1{vertical-align:19.285333pt;}
.v2{vertical-align:21.941333pt;}
.v3{vertical-align:27.600000pt;}
.ve{vertical-align:29.466667pt;}
.v15{vertical-align:33.466667pt;}
.v12{vertical-align:34.682667pt;}
.v6{vertical-align:36.106667pt;}
.v5{vertical-align:41.765333pt;}
.v9{vertical-align:49.082667pt;}
.v13{vertical-align:57.040000pt;}
.v16{vertical-align:61.066667pt;}
.v17{vertical-align:77.104000pt;}
.v10{vertical-align:86.922667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000267pt;}
.ls56{letter-spacing:0.000479pt;}
.ls35{letter-spacing:0.000501pt;}
.ls5e{letter-spacing:0.001014pt;}
.ls32{letter-spacing:0.001316pt;}
.ls33{letter-spacing:0.001509pt;}
.ls1b{letter-spacing:0.001659pt;}
.ls18{letter-spacing:0.001799pt;}
.ls31{letter-spacing:0.001986pt;}
.ls1d{letter-spacing:0.001995pt;}
.ls3a{letter-spacing:0.002079pt;}
.ls67{letter-spacing:0.002347pt;}
.ls43{letter-spacing:0.002387pt;}
.ls30{letter-spacing:0.002906pt;}
.ls6e{letter-spacing:0.002926pt;}
.ls16{letter-spacing:0.003033pt;}
.ls37{letter-spacing:0.003359pt;}
.ls52{letter-spacing:0.003715pt;}
.ls5b{letter-spacing:0.004716pt;}
.lsa{letter-spacing:0.004777pt;}
.ls12{letter-spacing:0.004873pt;}
.ls38{letter-spacing:0.430275pt;}
.lsb{letter-spacing:0.894993pt;}
.ls8{letter-spacing:0.900327pt;}
.ls15{letter-spacing:1.144296pt;}
.ls4d{letter-spacing:1.671842pt;}
.ls44{letter-spacing:1.905799pt;}
.ls17{letter-spacing:2.151919pt;}
.ls1{letter-spacing:2.177630pt;}
.ls70{letter-spacing:2.182963pt;}
.ls2d{letter-spacing:2.607197pt;}
.ls0{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.651993pt;}
.ls2f{letter-spacing:2.652911pt;}
.ls6f{letter-spacing:2.654903pt;}
.ls3b{letter-spacing:2.655095pt;}
.ls9{letter-spacing:2.655444pt;}
.ls71{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656693pt;}
.ls34{letter-spacing:2.657316pt;}
.ls53{letter-spacing:2.657414pt;}
.ls5{letter-spacing:2.660237pt;}
.lsc{letter-spacing:2.660777pt;}
.ls36{letter-spacing:2.886649pt;}
.ls21{letter-spacing:3.059246pt;}
.ls1c{letter-spacing:3.800296pt;}
.ls26{letter-spacing:4.165258pt;}
.ls7{letter-spacing:4.170591pt;}
.ls1e{letter-spacing:4.807919pt;}
.ls59{letter-spacing:5.279357pt;}
.ls39{letter-spacing:5.310026pt;}
.ls24{letter-spacing:7.375235pt;}
.ls20{letter-spacing:7.380568pt;}
.ls22{letter-spacing:7.381391pt;}
.ls10{letter-spacing:8.855412pt;}
.ls11{letter-spacing:8.873356pt;}
.ls1a{letter-spacing:11.803145pt;}
.ls2a{letter-spacing:11.808479pt;}
.ls6c{letter-spacing:12.604533pt;}
.ls29{letter-spacing:14.459680pt;}
.lse{letter-spacing:14.757812pt;}
.ls2e{letter-spacing:15.641067pt;}
.ls64{letter-spacing:16.327200pt;}
.ls19{letter-spacing:16.615919pt;}
.ls66{letter-spacing:16.785867pt;}
.ls3e{letter-spacing:17.410245pt;}
.ls5d{letter-spacing:17.414586pt;}
.lsd{letter-spacing:17.418110pt;}
.ls4f{letter-spacing:17.419919pt;}
.ls40{letter-spacing:17.884911pt;}
.ls41{letter-spacing:18.438347pt;}
.ls69{letter-spacing:18.481867pt;}
.ls6d{letter-spacing:18.594347pt;}
.ls68{letter-spacing:18.595733pt;}
.ls5a{letter-spacing:19.416239pt;}
.ls5c{letter-spacing:19.707919pt;}
.ls45{letter-spacing:20.342347pt;}
.ls28{letter-spacing:21.136479pt;}
.ls4e{letter-spacing:21.254586pt;}
.ls58{letter-spacing:21.258110pt;}
.ls57{letter-spacing:22.047444pt;}
.ls2c{letter-spacing:23.978050pt;}
.ls4a{letter-spacing:24.700533pt;}
.ls54{letter-spacing:24.815444pt;}
.ls55{letter-spacing:25.930110pt;}
.ls4c{letter-spacing:26.052984pt;}
.ls49{letter-spacing:26.058318pt;}
.ls6{letter-spacing:26.759842pt;}
.ls3d{letter-spacing:27.528239pt;}
.ls3c{letter-spacing:27.530318pt;}
.ls48{letter-spacing:28.710347pt;}
.ls4b{letter-spacing:30.866585pt;}
.ls65{letter-spacing:31.883919pt;}
.ls2b{letter-spacing:31.894347pt;}
.ls47{letter-spacing:32.050585pt;}
.ls42{letter-spacing:32.763145pt;}
.ls13{letter-spacing:33.083213pt;}
.lsf{letter-spacing:38.167578pt;}
.ls3f{letter-spacing:43.099145pt;}
.ls46{letter-spacing:44.171145pt;}
.ls5f{letter-spacing:46.977414pt;}
.ls6b{letter-spacing:53.134933pt;}
.ls60{letter-spacing:60.523680pt;}
.ls50{letter-spacing:60.884327pt;}
.ls23{letter-spacing:62.918347pt;}
.ls25{letter-spacing:70.294347pt;}
.ls14{letter-spacing:70.369014pt;}
.ls62{letter-spacing:81.291680pt;}
.ls61{letter-spacing:88.673014pt;}
.ls27{letter-spacing:194.523680pt;}
.ls6a{letter-spacing:196.106400pt;}
.ls51{letter-spacing:226.562906pt;}
.ls1f{letter-spacing:322.295578pt;}
.wsa6{word-spacing:-53.133867pt;}
.wsa9{word-spacing:-43.484756pt;}
.wsd1{word-spacing:-42.359791pt;}
.wsb3{word-spacing:-34.611401pt;}
.wsd4{word-spacing:-28.118362pt;}
.wsc9{word-spacing:-25.738045pt;}
.wsd7{word-spacing:-19.377882pt;}
.wsaf{word-spacing:-14.760588pt;}
.ws49{word-spacing:-13.283467pt;}
.ws19{word-spacing:-13.262246pt;}
.wsa3{word-spacing:-12.028410pt;}
.ws97{word-spacing:-10.626800pt;}
.wscc{word-spacing:-9.298400pt;}
.wsdc{word-spacing:-5.196492pt;}
.ws17b{word-spacing:-3.570605pt;}
.wsd3{word-spacing:-2.958270pt;}
.wsd2{word-spacing:-1.328911pt;}
.ws54{word-spacing:-1.062677pt;}
.wsa8{word-spacing:-0.903276pt;}
.ws21{word-spacing:-0.850142pt;}
.ws147{word-spacing:-0.690740pt;}
.ws146{word-spacing:-0.679978pt;}
.ws18d{word-spacing:-0.637608pt;}
.ws92{word-spacing:-0.637606pt;}
.ws112{word-spacing:-0.584473pt;}
.ws9d{word-spacing:-0.531339pt;}
.ws7d{word-spacing:-0.478205pt;}
.ws43{word-spacing:-0.425071pt;}
.ws167{word-spacing:-0.382565pt;}
.wsf9{word-spacing:-0.371937pt;}
.wse0{word-spacing:-0.318803pt;}
.ws12b{word-spacing:-0.159402pt;}
.ws93{word-spacing:-0.106268pt;}
.ws56{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws156{word-spacing:-0.014802pt;}
.wsd0{word-spacing:-0.013752pt;}
.ws5b{word-spacing:0.000000pt;}
.ws11f{word-spacing:0.053134pt;}
.ws25{word-spacing:0.159402pt;}
.ws3a{word-spacing:0.265669pt;}
.ws59{word-spacing:0.318803pt;}
.ws20{word-spacing:0.371937pt;}
.ws9b{word-spacing:0.478205pt;}
.ws4b{word-spacing:0.531339pt;}
.ws15a{word-spacing:0.637606pt;}
.ws131{word-spacing:0.690740pt;}
.wsb6{word-spacing:0.797008pt;}
.ws160{word-spacing:0.807637pt;}
.ws90{word-spacing:0.850142pt;}
.ws10{word-spacing:0.908595pt;}
.ws1a{word-spacing:1.062677pt;}
.ws126{word-spacing:1.115811pt;}
.ws15b{word-spacing:1.168945pt;}
.ws132{word-spacing:1.222079pt;}
.ws77{word-spacing:1.275213pt;}
.ws14d{word-spacing:1.328347pt;}
.ws180{word-spacing:1.360230pt;}
.ws85{word-spacing:1.381481pt;}
.wsf3{word-spacing:1.434614pt;}
.wsc5{word-spacing:1.487748pt;}
.wsc1{word-spacing:1.540882pt;}
.wsdb{word-spacing:1.594016pt;}
.ws98{word-spacing:1.647150pt;}
.ws161{word-spacing:1.657781pt;}
.ws7c{word-spacing:1.700284pt;}
.wsb0{word-spacing:1.753418pt;}
.wsb5{word-spacing:1.806551pt;}
.ws189{word-spacing:1.912824pt;}
.wsda{word-spacing:2.125355pt;}
.ws81{word-spacing:2.178489pt;}
.ws55{word-spacing:2.231622pt;}
.ws129{word-spacing:2.284756pt;}
.wsca{word-spacing:2.337890pt;}
.wsc8{word-spacing:2.356391pt;}
.ws13a{word-spacing:2.391024pt;}
.ws181{word-spacing:2.422910pt;}
.ws14a{word-spacing:2.444158pt;}
.ws18a{word-spacing:2.465418pt;}
.ws186{word-spacing:2.545052pt;}
.ws164{word-spacing:2.550432pt;}
.ws9{word-spacing:2.582323pt;}
.ws53{word-spacing:2.603559pt;}
.ws36{word-spacing:2.656693pt;}
.ws163{word-spacing:2.805475pt;}
.ws40{word-spacing:2.816095pt;}
.wsd6{word-spacing:2.869229pt;}
.wsff{word-spacing:2.975497pt;}
.ws16e{word-spacing:2.975504pt;}
.ws104{word-spacing:3.028630pt;}
.ws13b{word-spacing:3.134898pt;}
.ws18e{word-spacing:3.145533pt;}
.ws2e{word-spacing:3.188032pt;}
.ws170{word-spacing:3.188040pt;}
.ws16f{word-spacing:3.230547pt;}
.ws117{word-spacing:3.241166pt;}
.ws29{word-spacing:3.294300pt;}
.ws18b{word-spacing:3.358069pt;}
.ws6{word-spacing:3.395277pt;}
.ws5a{word-spacing:3.400567pt;}
.ws183{word-spacing:3.400576pt;}
.ws15d{word-spacing:3.443083pt;}
.ws26{word-spacing:3.453701pt;}
.ws114{word-spacing:3.496128pt;}
.ws113{word-spacing:3.497059pt;}
.wscd{word-spacing:3.506835pt;}
.wscf{word-spacing:3.507884pt;}
.wsa7{word-spacing:3.559969pt;}
.wsa4{word-spacing:3.613103pt;}
.ws133{word-spacing:3.666237pt;}
.ws175{word-spacing:3.707277pt;}
.ws12f{word-spacing:3.719360pt;}
.ws75{word-spacing:3.719371pt;}
.ws176{word-spacing:3.740634pt;}
.wse8{word-spacing:3.757867pt;}
.wse9{word-spacing:3.772505pt;}
.ws45{word-spacing:3.878772pt;}
.ws8{word-spacing:3.921306pt;}
.ws78{word-spacing:3.985040pt;}
.ws1c{word-spacing:4.197575pt;}
.ws17f{word-spacing:4.250235pt;}
.ws7f{word-spacing:4.250709pt;}
.ws15e{word-spacing:4.250720pt;}
.wsed{word-spacing:4.303843pt;}
.ws63{word-spacing:4.356977pt;}
.ws6a{word-spacing:4.410111pt;}
.ws135{word-spacing:4.463245pt;}
.ws190{word-spacing:4.548270pt;}
.ws1e{word-spacing:4.569513pt;}
.ws174{word-spacing:4.590778pt;}
.ws60{word-spacing:4.622646pt;}
.ws12d{word-spacing:4.649200pt;}
.ws188{word-spacing:4.674915pt;}
.ws103{word-spacing:4.675780pt;}
.ws17e{word-spacing:4.675792pt;}
.ws3e{word-spacing:4.728914pt;}
.wsfe{word-spacing:4.782048pt;}
.ws6b{word-spacing:4.835182pt;}
.ws115{word-spacing:4.888316pt;}
.ws41{word-spacing:4.994583pt;}
.ws185{word-spacing:5.015850pt;}
.ws52{word-spacing:5.047717pt;}
.wsf8{word-spacing:5.100851pt;}
.ws13f{word-spacing:5.201067pt;}
.ws39{word-spacing:5.207119pt;}
.ws162{word-spacing:5.228386pt;}
.ws96{word-spacing:5.267839pt;}
.wsf5{word-spacing:5.270893pt;}
.ws95{word-spacing:5.281196pt;}
.ws4a{word-spacing:5.299129pt;}
.ws179{word-spacing:5.305265pt;}
.wsd{word-spacing:5.308109pt;}
.ws141{word-spacing:5.309356pt;}
.wse5{word-spacing:5.310246pt;}
.ws14e{word-spacing:5.310557pt;}
.wsb1{word-spacing:5.311799pt;}
.ws14f{word-spacing:5.312061pt;}
.ws151{word-spacing:5.312115pt;}
.wse1{word-spacing:5.312198pt;}
.ws14b{word-spacing:5.312282pt;}
.wsb2{word-spacing:5.312967pt;}
.ws149{word-spacing:5.313348pt;}
.ws14c{word-spacing:5.313380pt;}
.ws1f{word-spacing:5.313387pt;}
.ws17a{word-spacing:5.313400pt;}
.wsb9{word-spacing:5.313897pt;}
.ws100{word-spacing:5.314111pt;}
.wsb4{word-spacing:5.314347pt;}
.ws12a{word-spacing:5.314385pt;}
.ws150{word-spacing:5.316800pt;}
.ws142{word-spacing:5.318933pt;}
.ws13c{word-spacing:5.325714pt;}
.ws23{word-spacing:5.366521pt;}
.ws153{word-spacing:5.472788pt;}
.wsa5{word-spacing:5.525922pt;}
.ws10f{word-spacing:5.579056pt;}
.ws15c{word-spacing:5.653458pt;}
.ws7e{word-spacing:5.738458pt;}
.wse2{word-spacing:5.791591pt;}
.ws84{word-spacing:5.844725pt;}
.ws102{word-spacing:5.897859pt;}
.ws76{word-spacing:5.950993pt;}
.ws2f{word-spacing:5.977245pt;}
.ws15{word-spacing:5.977600pt;}
.ws108{word-spacing:5.990562pt;}
.ws30{word-spacing:6.004127pt;}
.ws168{word-spacing:6.036022pt;}
.ws68{word-spacing:6.057261pt;}
.wsae{word-spacing:6.110395pt;}
.ws2d{word-spacing:6.163529pt;}
.ws13{word-spacing:6.168883pt;}
.ws116{word-spacing:6.216662pt;}
.ws101{word-spacing:6.267741pt;}
.ws118{word-spacing:6.269796pt;}
.ws4{word-spacing:6.312346pt;}
.ws38{word-spacing:6.322930pt;}
.ws10b{word-spacing:6.376064pt;}
.ws18f{word-spacing:6.376080pt;}
.ws3f{word-spacing:6.429198pt;}
.ws127{word-spacing:6.535466pt;}
.ws159{word-spacing:6.588599pt;}
.ws94{word-spacing:6.641733pt;}
.ws152{word-spacing:6.644267pt;}
.ws171{word-spacing:6.716138pt;}
.ws57{word-spacing:6.801135pt;}
.ws187{word-spacing:6.843659pt;}
.wsf6{word-spacing:6.854269pt;}
.ws87{word-spacing:6.907403pt;}
.wsf2{word-spacing:6.960537pt;}
.ws105{word-spacing:7.066804pt;}
.ws2{word-spacing:7.077478pt;}
.ws119{word-spacing:7.279340pt;}
.wse4{word-spacing:7.385607pt;}
.ws16c{word-spacing:7.481267pt;}
.ws6c{word-spacing:7.545009pt;}
.ws178{word-spacing:7.651296pt;}
.ws37{word-spacing:7.810678pt;}
.ws10e{word-spacing:7.863812pt;}
.wsa2{word-spacing:7.916946pt;}
.ws79{word-spacing:7.970080pt;}
.ws5e{word-spacing:8.023214pt;}
.ws80{word-spacing:8.076348pt;}
.ws17{word-spacing:8.081715pt;}
.ws11b{word-spacing:8.129482pt;}
.ws11c{word-spacing:8.182615pt;}
.ws67{word-spacing:8.235749pt;}
.ws11{word-spacing:8.272998pt;}
.ws124{word-spacing:8.288883pt;}
.ws8d{word-spacing:8.342017pt;}
.ws13e{word-spacing:8.395151pt;}
.ws22{word-spacing:8.448285pt;}
.ws4c{word-spacing:8.501419pt;}
.ws27{word-spacing:8.554553pt;}
.ws18c{word-spacing:8.586454pt;}
.ws5c{word-spacing:8.607686pt;}
.ws3{word-spacing:8.607744pt;}
.ws51{word-spacing:8.660820pt;}
.wsc0{word-spacing:8.713954pt;}
.ws65{word-spacing:8.767088pt;}
.wsf4{word-spacing:8.820222pt;}
.ws17c{word-spacing:8.841498pt;}
.wsdd{word-spacing:8.873356pt;}
.wsf{word-spacing:8.894669pt;}
.ws125{word-spacing:8.926490pt;}
.ws3d{word-spacing:9.032757pt;}
.wsbf{word-spacing:9.139025pt;}
.wse6{word-spacing:9.226491pt;}
.ws44{word-spacing:9.245293pt;}
.wsc{word-spacing:9.277235pt;}
.ws8b{word-spacing:9.298427pt;}
.wsee{word-spacing:9.510962pt;}
.ws10d{word-spacing:9.564096pt;}
.ws121{word-spacing:9.617230pt;}
.ws120{word-spacing:9.623763pt;}
.wsf7{word-spacing:9.670364pt;}
.ws33{word-spacing:9.829765pt;}
.ws46{word-spacing:9.882899pt;}
.ws11a{word-spacing:9.936033pt;}
.wsdf{word-spacing:9.989167pt;}
.ws99{word-spacing:10.042301pt;}
.ws140{word-spacing:10.148569pt;}
.wsce{word-spacing:10.170741pt;}
.ws8e{word-spacing:10.201702pt;}
.ws182{word-spacing:10.201728pt;}
.ws172{word-spacing:10.244235pt;}
.wsef{word-spacing:10.254836pt;}
.wsf0{word-spacing:10.414238pt;}
.ws61{word-spacing:10.467372pt;}
.ws71{word-spacing:10.573639pt;}
.ws62{word-spacing:10.626773pt;}
.ws17d{word-spacing:10.626800pt;}
.ws9f{word-spacing:10.679907pt;}
.wsc4{word-spacing:10.688919pt;}
.ws157{word-spacing:10.733041pt;}
.ws123{word-spacing:10.786175pt;}
.ws122{word-spacing:10.797356pt;}
.ws14{word-spacing:10.855322pt;}
.ws11e{word-spacing:10.892443pt;}
.wsa0{word-spacing:10.945577pt;}
.ws10c{word-spacing:10.998710pt;}
.wsbc{word-spacing:11.032371pt;}
.wsbd{word-spacing:11.051844pt;}
.ws5{word-spacing:11.094426pt;}
.wsfb{word-spacing:11.158112pt;}
.ws111{word-spacing:11.211246pt;}
.ws2a{word-spacing:11.264380pt;}
.ws6d{word-spacing:11.317514pt;}
.wsd9{word-spacing:11.408515pt;}
.wsd8{word-spacing:11.411830pt;}
.ws5f{word-spacing:11.423781pt;}
.ws35{word-spacing:11.530049pt;}
.wsbe{word-spacing:11.583183pt;}
.ws34{word-spacing:11.689451pt;}
.ws109{word-spacing:11.742585pt;}
.ws24{word-spacing:11.795718pt;}
.wsab{word-spacing:11.901986pt;}
.ws134{word-spacing:11.974450pt;}
.ws1b{word-spacing:12.008254pt;}
.ws5d{word-spacing:12.061388pt;}
.ws2b{word-spacing:12.380191pt;}
.ws16a{word-spacing:12.412102pt;}
.ws47{word-spacing:12.486459pt;}
.wsa{word-spacing:12.576870pt;}
.ws64{word-spacing:12.592726pt;}
.ws86{word-spacing:12.645860pt;}
.wsac{word-spacing:12.744979pt;}
.wsad{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wse3{word-spacing:12.805262pt;}
.wse7{word-spacing:12.858396pt;}
.wsb8{word-spacing:12.964663pt;}
.ws66{word-spacing:13.017797pt;}
.wsba{word-spacing:13.124065pt;}
.ws2c{word-spacing:13.177199pt;}
.wse{word-spacing:13.198541pt;}
.ws7{word-spacing:13.485466pt;}
.ws48{word-spacing:13.708538pt;}
.ws173{word-spacing:13.729826pt;}
.ws6e{word-spacing:13.761671pt;}
.ws91{word-spacing:13.814805pt;}
.ws72{word-spacing:13.921073pt;}
.ws8f{word-spacing:13.974207pt;}
.ws70{word-spacing:14.080475pt;}
.ws110{word-spacing:14.133609pt;}
.ws32{word-spacing:14.239876pt;}
.wsd5{word-spacing:14.243830pt;}
.ws12{word-spacing:14.250598pt;}
.ws88{word-spacing:14.346144pt;}
.ws28{word-spacing:14.505546pt;}
.ws1d{word-spacing:14.558679pt;}
.ws74{word-spacing:14.664947pt;}
.ws169{word-spacing:14.707491pt;}
.ws9c{word-spacing:14.718081pt;}
.ws148{word-spacing:14.771215pt;}
.wsb{word-spacing:14.872269pt;}
.ws58{word-spacing:14.877483pt;}
.wsc7{word-spacing:14.983750pt;}
.wscb{word-spacing:15.090018pt;}
.wsfc{word-spacing:15.143152pt;}
.wsa1{word-spacing:15.355687pt;}
.ws16d{word-spacing:15.515128pt;}
.ws7a{word-spacing:15.674491pt;}
.ws166{word-spacing:15.685157pt;}
.wsbb{word-spacing:15.727625pt;}
.ws165{word-spacing:15.727664pt;}
.ws15f{word-spacing:15.770171pt;}
.ws158{word-spacing:15.780758pt;}
.ws18{word-spacing:15.940160pt;}
.wsc2{word-spacing:15.950497pt;}
.wsc3{word-spacing:15.953897pt;}
.ws145{word-spacing:15.993294pt;}
.ws16b{word-spacing:16.025214pt;}
.wsf1{word-spacing:16.099562pt;}
.ws73{word-spacing:16.258963pt;}
.ws11d{word-spacing:16.312097pt;}
.ws4f{word-spacing:16.365231pt;}
.wsde{word-spacing:16.630900pt;}
.ws83{word-spacing:17.055971pt;}
.ws128{word-spacing:17.215373pt;}
.ws10a{word-spacing:17.481042pt;}
.ws3c{word-spacing:17.693578pt;}
.wsec{word-spacing:17.746711pt;}
.ws7b{word-spacing:17.852979pt;}
.wsc6{word-spacing:17.906113pt;}
.ws82{word-spacing:18.012381pt;}
.ws9a{word-spacing:18.171782pt;}
.ws184{word-spacing:18.193082pt;}
.ws9e{word-spacing:18.224916pt;}
.ws8a{word-spacing:18.331184pt;}
.wsfd{word-spacing:18.594689pt;}
.wsb7{word-spacing:18.596853pt;}
.ws31{word-spacing:18.600022pt;}
.ws155{word-spacing:18.703121pt;}
.ws8c{word-spacing:18.756255pt;}
.ws130{word-spacing:19.021924pt;}
.ws50{word-spacing:19.128192pt;}
.ws139{word-spacing:19.234460pt;}
.ws107{word-spacing:19.393861pt;}
.ws6f{word-spacing:19.500129pt;}
.ws154{word-spacing:19.659531pt;}
.ws42{word-spacing:19.872066pt;}
.wsaa{word-spacing:19.978334pt;}
.ws16{word-spacing:19.989094pt;}
.ws69{word-spacing:20.031468pt;}
.ws89{word-spacing:20.297137pt;}
.ws3b{word-spacing:21.094145pt;}
.wseb{word-spacing:21.147279pt;}
.ws106{word-spacing:23.060098pt;}
.ws4e{word-spacing:25.716791pt;}
.ws13d{word-spacing:28.644659pt;}
.ws177{word-spacing:30.137605pt;}
.ws4d{word-spacing:30.445706pt;}
.wsfa{word-spacing:34.377612pt;}
.wsea{word-spacing:39.850644pt;}
.ws144{word-spacing:47.310514pt;}
.ws138{word-spacing:68.564114pt;}
.ws12e{word-spacing:80.561338pt;}
.ws136{word-spacing:117.022322pt;}
.ws137{word-spacing:171.324702pt;}
.ws143{word-spacing:185.458914pt;}
.ws12c{word-spacing:414.001962pt;}
._19{margin-left:-5.897859pt;}
._3{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._2{margin-left:-1.010355pt;}
._c{width:0.933907pt;}
._4{width:2.656693pt;}
._29{width:3.564758pt;}
._12{width:4.730630pt;}
._27{width:6.878393pt;}
._10{width:7.788443pt;}
._e{width:11.476915pt;}
._b{width:14.080479pt;}
._7{width:16.737168pt;}
._9{width:18.437457pt;}
._18{width:19.340727pt;}
._14{width:21.572355pt;}
._13{width:24.685443pt;}
._d{width:26.566933pt;}
._6{width:27.895285pt;}
._17{width:29.011091pt;}
._f{width:31.880320pt;}
._11{width:32.887397pt;}
._15{width:35.031340pt;}
._a{width:39.910839pt;}
._8{width:42.250983pt;}
._16{width:43.735171pt;}
._28{width:45.695666pt;}
._5{width:53.174405pt;}
._1b{width:79.110787pt;}
._1c{width:85.284925pt;}
._21{width:94.992454pt;}
._25{width:100.487021pt;}
._26{width:127.691629pt;}
._1d{width:132.648328pt;}
._23{width:181.973323pt;}
._24{width:196.085714pt;}
._1a{width:222.268954pt;}
._20{width:249.159926pt;}
._1e{width:257.379712pt;}
._1f{width:259.462554pt;}
._22{width:262.969421pt;}
.fs5{font-size:26.566933pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:100.740000pt;}
.y31{bottom:116.680000pt;}
.ydb{bottom:116.681333pt;}
.ya8{bottom:117.385333pt;}
.y5b{bottom:132.620000pt;}
.y30{bottom:132.621333pt;}
.ya7{bottom:133.325333pt;}
.yda{bottom:137.706667pt;}
.yd9{bottom:143.534667pt;}
.y1fc{bottom:144.776000pt;}
.yd8{bottom:146.818667pt;}
.y164{bottom:148.560000pt;}
.y5a{bottom:148.561333pt;}
.y193{bottom:148.832000pt;}
.ya6{bottom:149.266667pt;}
.y2f{bottom:149.804000pt;}
.y1fb{bottom:156.730667pt;}
.y59{bottom:164.501333pt;}
.y192{bottom:164.772000pt;}
.y2e{bottom:165.745333pt;}
.ya5{bottom:165.912000pt;}
.y13b{bottom:167.168000pt;}
.y1fa{bottom:168.685333pt;}
.yd7{bottom:177.732000pt;}
.y58{bottom:180.441333pt;}
.y1f9{bottom:180.641333pt;}
.y191{bottom:180.712000pt;}
.y17c{bottom:181.173333pt;}
.y2d{bottom:181.685333pt;}
.ya4{bottom:181.852000pt;}
.y13a{bottom:183.108000pt;}
.y1f8{bottom:192.596000pt;}
.yd6{bottom:193.672000pt;}
.y57{bottom:196.381333pt;}
.y190{bottom:196.652000pt;}
.y10d{bottom:197.062667pt;}
.y17b{bottom:197.113333pt;}
.y2c{bottom:197.625333pt;}
.ya3{bottom:197.792000pt;}
.y139{bottom:199.048000pt;}
.y1f7{bottom:204.552000pt;}
.yd5{bottom:209.613333pt;}
.y56{bottom:212.321333pt;}
.y10c{bottom:213.004000pt;}
.y17a{bottom:213.053333pt;}
.y2b{bottom:213.565333pt;}
.ya2{bottom:213.732000pt;}
.y138{bottom:214.988000pt;}
.y1f6{bottom:216.506667pt;}
.y18f{bottom:221.434667pt;}
.yd4{bottom:226.120000pt;}
.y55{bottom:228.261333pt;}
.y1b7{bottom:228.262667pt;}
.y1f5{bottom:228.461333pt;}
.y179{bottom:228.993333pt;}
.y2a{bottom:229.505333pt;}
.ya1{bottom:229.673333pt;}
.y137{bottom:230.929333pt;}
.y10a{bottom:233.320000pt;}
.y18e{bottom:234.718667pt;}
.y109{bottom:237.022667pt;}
.y1f4{bottom:240.417333pt;}
.yd3{bottom:242.060000pt;}
.y54{bottom:244.202667pt;}
.y29{bottom:245.446667pt;}
.ya0{bottom:245.613333pt;}
.y136{bottom:246.869333pt;}
.y18d{bottom:248.001333pt;}
.y178{bottom:250.825333pt;}
.y1f3{bottom:252.372000pt;}
.y108{bottom:256.086667pt;}
.yd2{bottom:258.000000pt;}
.y107{bottom:259.789333pt;}
.y53{bottom:260.142667pt;}
.y18c{bottom:261.285333pt;}
.y28{bottom:261.386667pt;}
.y9f{bottom:261.553333pt;}
.y135{bottom:262.809333pt;}
.y10b{bottom:263.533333pt;}
.y1f2{bottom:264.326667pt;}
.yd1{bottom:273.941333pt;}
.y18b{bottom:274.569333pt;}
.y52{bottom:276.082667pt;}
.y1f1{bottom:276.282667pt;}
.y9e{bottom:277.493333pt;}
.y27{bottom:278.570667pt;}
.y105{bottom:279.101333pt;}
.y177{bottom:279.877333pt;}
.y134{bottom:281.416000pt;}
.y106{bottom:283.765333pt;}
.y104{bottom:287.468000pt;}
.y1f0{bottom:288.237333pt;}
.yd0{bottom:289.881333pt;}
.y51{bottom:292.022667pt;}
.y9d{bottom:293.433333pt;}
.y26{bottom:294.510667pt;}
.y176{bottom:295.817333pt;}
.y18a{bottom:296.424000pt;}
.y163{bottom:296.917333pt;}
.y133{bottom:297.356000pt;}
.y1ef{bottom:300.193333pt;}
.ycf{bottom:305.821333pt;}
.y50{bottom:307.962667pt;}
.y9c{bottom:309.373333pt;}
.y25{bottom:310.450667pt;}
.y175{bottom:311.757333pt;}
.y1ee{bottom:312.148000pt;}
.y189{bottom:312.364000pt;}
.y132{bottom:313.296000pt;}
.y103{bottom:318.892000pt;}
.yce{bottom:321.761333pt;}
.y162{bottom:323.548000pt;}
.y77{bottom:323.904000pt;}
.y4f{bottom:323.913333pt;}
.y1ed{bottom:324.102667pt;}
.y9b{bottom:325.314667pt;}
.y24{bottom:326.390667pt;}
.y174{bottom:327.697333pt;}
.y188{bottom:328.304000pt;}
.y131{bottom:329.237333pt;}
.y102{bottom:331.129333pt;}
.y101{bottom:334.832000pt;}
.y1ec{bottom:336.058667pt;}
.ycd{bottom:337.701333pt;}
.y161{bottom:339.488000pt;}
.y76{bottom:339.844000pt;}
.y4e{bottom:339.853333pt;}
.y9a{bottom:341.254667pt;}
.y23{bottom:342.330667pt;}
.y173{bottom:343.637333pt;}
.y187{bottom:344.245333pt;}
.y130{bottom:345.177333pt;}
.y1eb{bottom:348.013333pt;}
.y100{bottom:351.706667pt;}
.y160{bottom:355.428000pt;}
.y75{bottom:355.784000pt;}
.y4d{bottom:355.794667pt;}
.y99{bottom:357.194667pt;}
.y22{bottom:358.270667pt;}
.ycc{bottom:358.620000pt;}
.y1ea{bottom:359.968000pt;}
.y186{bottom:360.185333pt;}
.y12f{bottom:361.117333pt;}
.yff{bottom:368.328000pt;}
.y15f{bottom:371.369333pt;}
.y74{bottom:371.724000pt;}
.y1e9{bottom:371.924000pt;}
.y98{bottom:373.134667pt;}
.y1b6{bottom:373.934667pt;}
.y21{bottom:374.212000pt;}
.y4c{bottom:375.960000pt;}
.y185{bottom:376.125333pt;}
.y12e{bottom:377.057333pt;}
.y172{bottom:377.828000pt;}
.ycb{bottom:381.752000pt;}
.y1e8{bottom:383.878667pt;}
.yfe{bottom:384.268000pt;}
.yca{bottom:385.454667pt;}
.y15e{bottom:387.309333pt;}
.y73{bottom:387.664000pt;}
.y20{bottom:390.152000pt;}
.y184{bottom:392.336000pt;}
.y12d{bottom:392.997333pt;}
.y171{bottom:395.396000pt;}
.y97{bottom:395.729333pt;}
.y1e7{bottom:395.833333pt;}
.yfd{bottom:400.208000pt;}
.y4b{bottom:400.926667pt;}
.yc9{bottom:402.204000pt;}
.y15d{bottom:403.249333pt;}
.y72{bottom:403.604000pt;}
.y170{bottom:406.022667pt;}
.y1f{bottom:407.336000pt;}
.y1e6{bottom:407.789333pt;}
.y183{bottom:408.276000pt;}
.y12c{bottom:408.937333pt;}
.yfc{bottom:416.149333pt;}
.y16f{bottom:416.649333pt;}
.y4a{bottom:416.866667pt;}
.yc8{bottom:418.144000pt;}
.y1b5{bottom:418.626667pt;}
.y15c{bottom:419.189333pt;}
.y71{bottom:419.545333pt;}
.y1e5{bottom:419.744000pt;}
.y1e{bottom:423.276000pt;}
.y182{bottom:424.216000pt;}
.y12b{bottom:424.878667pt;}
.y96{bottom:426.632000pt;}
.y16e{bottom:427.276000pt;}
.y1e4{bottom:431.700000pt;}
.yfb{bottom:432.089333pt;}
.y49{bottom:432.806667pt;}
.yc7{bottom:434.084000pt;}
.y1b4{bottom:434.566667pt;}
.y15b{bottom:435.129333pt;}
.y70{bottom:435.485333pt;}
.y16d{bottom:437.902667pt;}
.y1d{bottom:439.216000pt;}
.y12a{bottom:440.818667pt;}
.y95{bottom:442.573333pt;}
.y1e3{bottom:443.654667pt;}
.yfa{bottom:448.029333pt;}
.y16c{bottom:448.529333pt;}
.y48{bottom:448.746667pt;}
.yc6{bottom:450.024000pt;}
.y1b3{bottom:450.506667pt;}
.y15a{bottom:451.069333pt;}
.y6f{bottom:451.425333pt;}
.y1c{bottom:455.156000pt;}
.y1e2{bottom:455.609333pt;}
.y181{bottom:458.226667pt;}
.y94{bottom:458.513333pt;}
.y16b{bottom:459.156000pt;}
.y129{bottom:459.434667pt;}
.yf9{bottom:464.650667pt;}
.y47{bottom:464.686667pt;}
.yc5{bottom:465.397333pt;}
.y1b2{bottom:466.446667pt;}
.y159{bottom:467.010667pt;}
.y6e{bottom:467.365333pt;}
.y1e1{bottom:467.565333pt;}
.yc4{bottom:469.100000pt;}
.y180{bottom:470.181333pt;}
.y1b{bottom:471.096000pt;}
.y93{bottom:474.453333pt;}
.y128{bottom:475.382667pt;}
.y16a{bottom:476.724000pt;}
.y1e0{bottom:479.520000pt;}
.yf8{bottom:480.590667pt;}
.y46{bottom:480.626667pt;}
.y17f{bottom:482.137333pt;}
.y1b1{bottom:482.388000pt;}
.y158{bottom:482.950667pt;}
.yc3{bottom:482.974667pt;}
.y6d{bottom:483.305333pt;}
.yc2{bottom:486.677333pt;}
.y1a{bottom:487.037333pt;}
.y169{bottom:487.350667pt;}
.y92{bottom:490.393333pt;}
.y127{bottom:491.324000pt;}
.y1df{bottom:491.474667pt;}
.y17e{bottom:494.092000pt;}
.yf7{bottom:496.532000pt;}
.y45{bottom:496.574667pt;}
.y168{bottom:497.977333pt;}
.y157{bottom:499.194667pt;}
.y6c{bottom:499.245333pt;}
.yc1{bottom:500.550667pt;}
.y1de{bottom:503.430667pt;}
.yc0{bottom:504.253333pt;}
.y1b0{bottom:505.898667pt;}
.y91{bottom:506.333333pt;}
.y126{bottom:507.264000pt;}
.yf6{bottom:512.472000pt;}
.y44{bottom:512.514667pt;}
.y17d{bottom:512.988000pt;}
.y19{bottom:514.622667pt;}
.y156{bottom:515.134667pt;}
.y6b{bottom:515.186667pt;}
.y1dd{bottom:515.385333pt;}
.ybf{bottom:518.128000pt;}
.ybe{bottom:521.830667pt;}
.y1af{bottom:521.838667pt;}
.y90{bottom:522.273333pt;}
.y167{bottom:523.116000pt;}
.y125{bottom:523.204000pt;}
.y1dc{bottom:527.341333pt;}
.yf5{bottom:528.412000pt;}
.y43{bottom:528.454667pt;}
.y155{bottom:531.076000pt;}
.y6a{bottom:531.126667pt;}
.ybd{bottom:535.704000pt;}
.y1ae{bottom:537.778667pt;}
.y8f{bottom:538.214667pt;}
.y166{bottom:539.057333pt;}
.y124{bottom:539.144000pt;}
.y1db{bottom:539.296000pt;}
.ybc{bottom:539.406667pt;}
.y42{bottom:544.394667pt;}
.y154{bottom:547.016000pt;}
.y69{bottom:547.066667pt;}
.yf4{bottom:549.490667pt;}
.y1da{bottom:551.250667pt;}
.y1ad{bottom:553.718667pt;}
.y18{bottom:553.793333pt;}
.y8e{bottom:554.154667pt;}
.y123{bottom:555.084000pt;}
.ybb{bottom:558.482667pt;}
.y41{bottom:560.336000pt;}
.y153{bottom:562.956000pt;}
.y68{bottom:563.006667pt;}
.y1d9{bottom:563.206667pt;}
.y165{bottom:565.305333pt;}
.y17{bottom:567.077333pt;}
.y1ac{bottom:569.660000pt;}
.yba{bottom:574.422667pt;}
.y1d8{bottom:575.161333pt;}
.y122{bottom:575.240000pt;}
.y40{bottom:576.276000pt;}
.yf3{bottom:576.714667pt;}
.y8d{bottom:578.512000pt;}
.y152{bottom:578.896000pt;}
.y67{bottom:578.946667pt;}
.y16{bottom:581.604000pt;}
.y1d7{bottom:587.116000pt;}
.y1ab{bottom:587.926667pt;}
.yf2{bottom:592.654667pt;}
.y3f{bottom:594.886667pt;}
.y15{bottom:594.888000pt;}
.y151{bottom:595.038667pt;}
.yb9{bottom:596.818667pt;}
.y1d6{bottom:599.072000pt;}
.y121{bottom:600.222667pt;}
.yb6{bottom:603.380000pt;}
.yb4{bottom:603.821333pt;}
.y1aa{bottom:603.868000pt;}
.y14{bottom:608.170667pt;}
.yf1{bottom:608.594667pt;}
.y8c{bottom:609.416000pt;}
.y3e{bottom:610.828000pt;}
.y150{bottom:610.980000pt;}
.y1d5{bottom:611.026667pt;}
.yb3{bottom:612.492000pt;}
.y120{bottom:616.162667pt;}
.y13{bottom:621.454667pt;}
.yb5{bottom:621.478667pt;}
.y1a9{bottom:622.136000pt;}
.y1d4{bottom:622.982667pt;}
.yf0{bottom:624.534667pt;}
.yb8{bottom:625.112000pt;}
.y8b{bottom:625.356000pt;}
.y3d{bottom:626.768000pt;}
.y14f{bottom:626.920000pt;}
.yb7{bottom:629.096000pt;}
.y11f{bottom:632.102667pt;}
.y12{bottom:634.737333pt;}
.y1d3{bottom:634.937333pt;}
.y1a8{bottom:638.076000pt;}
.y8a{bottom:641.296000pt;}
.y3c{bottom:642.708000pt;}
.y14e{bottom:642.860000pt;}
.y1d2{bottom:646.892000pt;}
.yef{bottom:647.961333pt;}
.y11{bottom:648.021333pt;}
.y11e{bottom:648.042667pt;}
.yb2{bottom:653.953333pt;}
.y1a7{bottom:656.344000pt;}
.yee{bottom:656.632000pt;}
.y89{bottom:657.237333pt;}
.y3b{bottom:658.648000pt;}
.y14d{bottom:658.800000pt;}
.y1d1{bottom:658.848000pt;}
.y10{bottom:661.305333pt;}
.y11d{bottom:663.982667pt;}
.yb1{bottom:669.894667pt;}
.y1d0{bottom:670.802667pt;}
.y1a6{bottom:672.284000pt;}
.y88{bottom:673.177333pt;}
.yed{bottom:673.784000pt;}
.yf{bottom:674.588000pt;}
.y14c{bottom:674.740000pt;}
.y11c{bottom:679.922667pt;}
.yb0{bottom:682.132000pt;}
.y1cf{bottom:682.757333pt;}
.yaf{bottom:685.834667pt;}
.ye{bottom:687.872000pt;}
.y1a5{bottom:688.224000pt;}
.y87{bottom:689.117333pt;}
.yec{bottom:689.724000pt;}
.y3a{bottom:690.528000pt;}
.y66{bottom:690.529333pt;}
.y14b{bottom:690.680000pt;}
.y1ce{bottom:694.713333pt;}
.y11b{bottom:695.864000pt;}
.yd{bottom:701.156000pt;}
.yae{bottom:702.584000pt;}
.y1a4{bottom:704.164000pt;}
.y86{bottom:705.057333pt;}
.yeb{bottom:706.345333pt;}
.y39{bottom:706.469333pt;}
.y14a{bottom:706.621333pt;}
.y1cd{bottom:706.668000pt;}
.yc{bottom:714.438667pt;}
.y11a{bottom:716.041333pt;}
.yad{bottom:718.524000pt;}
.y1cc{bottom:718.622667pt;}
.y1a3{bottom:720.104000pt;}
.y85{bottom:721.702667pt;}
.yea{bottom:722.286667pt;}
.y38{bottom:722.409333pt;}
.y149{bottom:722.561333pt;}
.yb{bottom:727.722667pt;}
.y1cb{bottom:730.578667pt;}
.y84{bottom:737.644000pt;}
.y37{bottom:738.349333pt;}
.y1a2{bottom:738.372000pt;}
.ya{bottom:741.006667pt;}
.y119{bottom:741.024000pt;}
.yab{bottom:741.124000pt;}
.yac{bottom:741.381333pt;}
.y1ca{bottom:742.533333pt;}
.y148{bottom:743.396000pt;}
.yaa{bottom:744.665333pt;}
.ye8{bottom:747.394667pt;}
.y83{bottom:753.584000pt;}
.ye7{bottom:753.956000pt;}
.y9{bottom:754.289333pt;}
.y1a1{bottom:754.312000pt;}
.y1c9{bottom:754.489333pt;}
.y118{bottom:756.964000pt;}
.ye9{bottom:759.784000pt;}
.ye6{bottom:763.068000pt;}
.y1c8{bottom:766.444000pt;}
.y8{bottom:767.573333pt;}
.y82{bottom:769.524000pt;}
.y147{bottom:770.026667pt;}
.y36{bottom:770.229333pt;}
.y1a0{bottom:770.253333pt;}
.y117{bottom:772.904000pt;}
.y1c7{bottom:778.398667pt;}
.y7{bottom:780.857333pt;}
.y81{bottom:785.464000pt;}
.y146{bottom:785.966667pt;}
.y35{bottom:786.169333pt;}
.y65{bottom:786.170667pt;}
.y19f{bottom:786.193333pt;}
.y116{bottom:788.844000pt;}
.y1c6{bottom:790.354667pt;}
.ye5{bottom:790.978667pt;}
.ya9{bottom:793.249333pt;}
.y6{bottom:794.140000pt;}
.y80{bottom:801.404000pt;}
.y145{bottom:801.906667pt;}
.y34{bottom:802.110667pt;}
.y19e{bottom:802.133333pt;}
.y1c5{bottom:802.309333pt;}
.y115{bottom:804.793333pt;}
.ye4{bottom:806.918667pt;}
.y5{bottom:807.424000pt;}
.y1c4{bottom:814.264000pt;}
.y7f{bottom:817.344000pt;}
.y144{bottom:817.848000pt;}
.y33{bottom:818.050667pt;}
.y19d{bottom:818.073333pt;}
.y4{bottom:820.706667pt;}
.y114{bottom:820.733333pt;}
.ye3{bottom:822.858667pt;}
.y1c3{bottom:826.220000pt;}
.y7e{bottom:833.285333pt;}
.y143{bottom:833.788000pt;}
.y3{bottom:833.990667pt;}
.y19c{bottom:834.013333pt;}
.y113{bottom:836.673333pt;}
.y1c2{bottom:838.174667pt;}
.ye2{bottom:838.798667pt;}
.y7d{bottom:849.225333pt;}
.y142{bottom:849.728000pt;}
.y64{bottom:849.930667pt;}
.y19b{bottom:849.954667pt;}
.y1c1{bottom:850.130667pt;}
.ye1{bottom:850.677333pt;}
.y112{bottom:852.613333pt;}
.ye0{bottom:854.738667pt;}
.y1c0{bottom:862.085333pt;}
.y7c{bottom:865.165333pt;}
.y141{bottom:865.668000pt;}
.y63{bottom:865.870667pt;}
.y111{bottom:868.554667pt;}
.y1bf{bottom:874.040000pt;}
.y7b{bottom:881.105333pt;}
.y140{bottom:881.608000pt;}
.y62{bottom:881.812000pt;}
.y110{bottom:884.494667pt;}
.y1be{bottom:885.996000pt;}
.y19a{bottom:889.449333pt;}
.y7a{bottom:897.045333pt;}
.ydf{bottom:897.070667pt;}
.y13f{bottom:897.548000pt;}
.y61{bottom:897.752000pt;}
.y1bd{bottom:897.950667pt;}
.y10f{bottom:900.434667pt;}
.y199{bottom:901.405333pt;}
.y1bc{bottom:909.905333pt;}
.y79{bottom:912.985333pt;}
.yde{bottom:913.010667pt;}
.y198{bottom:913.360000pt;}
.y13e{bottom:913.489333pt;}
.y60{bottom:913.692000pt;}
.y10e{bottom:920.590667pt;}
.y1bb{bottom:921.861333pt;}
.y2{bottom:923.830667pt;}
.y197{bottom:925.314667pt;}
.ydd{bottom:928.950667pt;}
.y13d{bottom:929.429333pt;}
.y5f{bottom:929.632000pt;}
.y1ba{bottom:933.816000pt;}
.y196{bottom:937.270667pt;}
.ydc{bottom:944.890667pt;}
.y13c{bottom:945.369333pt;}
.y5e{bottom:945.572000pt;}
.y1b9{bottom:945.772000pt;}
.y195{bottom:956.166667pt;}
.y1b8{bottom:957.726667pt;}
.y1{bottom:961.024000pt;}
.y5d{bottom:961.512000pt;}
.y78{bottom:977.452000pt;}
.y5c{bottom:977.453333pt;}
.y194{bottom:982.234667pt;}
.h12{height:0.000000pt;}
.h18{height:25.403229pt;}
.h26{height:25.589197pt;}
.h25{height:25.812358pt;}
.h11{height:26.184294pt;}
.h10{height:27.895200pt;}
.h2a{height:29.159939pt;}
.h29{height:29.244954pt;}
.h2c{height:29.452954pt;}
.h2d{height:29.458287pt;}
.h27{height:29.499997pt;}
.h28{height:32.900710pt;}
.h3{height:33.187635pt;}
.h2{height:33.426739pt;}
.h6{height:36.449833pt;}
.h4{height:36.556100pt;}
.h5{height:36.874903pt;}
.h7{height:38.043849pt;}
.h2b{height:38.508954pt;}
.hf{height:39.850400pt;}
.h1d{height:44.683229pt;}
.h9{height:47.175200pt;}
.h8{height:47.180533pt;}
.h1e{height:47.344562pt;}
.h15{height:47.530530pt;}
.h1b{height:48.120294pt;}
.h20{height:50.168249pt;}
.h1c{height:51.179849pt;}
.he{height:51.366767pt;}
.hd{height:52.986400pt;}
.h13{height:54.609867pt;}
.h23{height:54.661067pt;}
.ha{height:55.495200pt;}
.h17{height:57.361867pt;}
.h21{height:58.482916pt;}
.h24{height:58.488249pt;}
.hc{height:64.001867pt;}
.hb{height:69.660533pt;}
.h14{height:70.305867pt;}
.h19{height:75.791733pt;}
.h1f{height:84.935200pt;}
.h1a{height:86.922667pt;}
.h1{height:87.734861pt;}
.h16{height:88.933067pt;}
.h22{height:91.954916pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:65.285333pt;}
.xd{left:71.442667pt;}
.x44{left:73.254667pt;}
.x1{left:77.641333pt;}
.x3{left:78.569333pt;}
.x18{left:79.670667pt;}
.xb{left:91.852000pt;}
.x43{left:95.546667pt;}
.x3a{left:97.604000pt;}
.x3b{left:107.566667pt;}
.x3c{left:120.980000pt;}
.x1c{left:124.741333pt;}
.x39{left:139.189333pt;}
.xe{left:140.216000pt;}
.x13{left:160.684000pt;}
.x1b{left:163.914667pt;}
.x1e{left:170.310667pt;}
.x1d{left:175.822667pt;}
.x3d{left:176.996000pt;}
.x19{left:178.021333pt;}
.x5{left:180.826667pt;}
.x15{left:186.630667pt;}
.x14{left:189.370667pt;}
.x12{left:196.190667pt;}
.x16{left:202.560000pt;}
.xf{left:206.617333pt;}
.x3e{left:208.428000pt;}
.x1a{left:212.588000pt;}
.x17{left:223.961333pt;}
.x10{left:243.310667pt;}
.x1f{left:265.360000pt;}
.x3f{left:272.368000pt;}
.x2{left:300.596000pt;}
.x11{left:303.620000pt;}
.x40{left:336.308000pt;}
.x20{left:384.541333pt;}
.x8{left:415.970667pt;}
.x46{left:421.284000pt;}
.x23{left:422.780000pt;}
.x42{left:426.597333pt;}
.x6{left:429.253333pt;}
.x47{left:440.316000pt;}
.xa{left:442.537333pt;}
.x7{left:448.289333pt;}
.x41{left:451.744000pt;}
.x4a{left:466.717333pt;}
.x24{left:481.253333pt;}
.xc{left:483.146667pt;}
.x30{left:488.098667pt;}
.x48{left:491.714667pt;}
.x33{left:500.158667pt;}
.x25{left:506.353333pt;}
.x26{left:524.084000pt;}
.x9{left:526.078667pt;}
.x27{left:531.676000pt;}
.x45{left:546.149333pt;}
.x31{left:548.269333pt;}
.x36{left:550.024000pt;}
.x34{left:559.920000pt;}
.x28{left:571.062667pt;}
.x38{left:578.809333pt;}
.x37{left:586.572000pt;}
.x29{left:592.473333pt;}
.x35{left:600.196000pt;}
.x2a{left:610.204000pt;}
.x2b{left:616.717333pt;}
.x2c{left:655.501333pt;}
.x49{left:676.902667pt;}
.x2d{left:682.616000pt;}
.x32{left:689.692000pt;}
.x2e{left:700.346667pt;}
.x2f{left:707.938667pt;}
.x22{left:735.226667pt;}
.x21{left:756.072000pt;}
}




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