
    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_83d3f73b9ae472ce00c400f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ad129945ec1dbbb7e0260694.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_58de798957bb5827efd8fb81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_69dc4b6c7fe0ace9e324e909.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.018000;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_7d0584d53f47071405e91284.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_831f7248646a2e0b5ff93791.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d87baebdf944c8e2af240da7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_4b62810e0fdc0193c3fd1de8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_86627c463f94a0a1eda525a7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e68143babbc043ed523a5569.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e5cf87d778156ca497bec814.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.898000;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_a88aff644aba4db6ecdb9693.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_377778afd055a03e92da5186.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.840000;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_8e7d18686f5dc9c121b6ae2c.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_e4df248e2b9d3697da6221cb.woff2')format("woff");}.fff{font-family:fff;line-height:0.431000;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_3ee2a0b15ea06b068fab0aa3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872000;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_76dbdd01d6d0f72d7fdfbe77.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.726000;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_38c092ea4676d466872aced7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.270000;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);}
.v13{vertical-align:-48.420000px;}
.vc{vertical-align:-39.606000px;}
.vb{vertical-align:-24.828000px;}
.v10{vertical-align:-14.778000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.964000px;}
.va{vertical-align:15.108000px;}
.v6{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:24.678000px;}
.vf{vertical-align:30.054000px;}
.v11{vertical-align:33.042000px;}
.v3{vertical-align:40.434000px;}
.ve{vertical-align:44.832000px;}
.vd{vertical-align:69.660000px;}
.v8{vertical-align:71.304000px;}
.v15{vertical-align:76.932000px;}
.v14{vertical-align:82.914000px;}
.v7{vertical-align:86.082000px;}
.v12{vertical-align:101.010000px;}
.v5{vertical-align:121.920000px;}
.ls5{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000615px;}
.lsc{letter-spacing:0.001140px;}
.ls2c{letter-spacing:0.001690px;}
.ls7{letter-spacing:0.002023px;}
.ls43{letter-spacing:0.002246px;}
.ls1a{letter-spacing:0.002400px;}
.ls20{letter-spacing:0.002685px;}
.ls25{letter-spacing:0.002877px;}
.ls15{letter-spacing:0.003269px;}
.ls6{letter-spacing:0.005023px;}
.ls31{letter-spacing:0.006843px;}
.ls14{letter-spacing:1.655249px;}
.ls2a{letter-spacing:2.414908px;}
.ls30{letter-spacing:2.420908px;}
.ls1{letter-spacing:2.984525px;}
.ls9{letter-spacing:2.989140px;}
.ls0{letter-spacing:2.990525px;}
.ls39{letter-spacing:3.422408px;}
.ls23{letter-spacing:4.685915px;}
.ls17{letter-spacing:4.691915px;}
.ls2b{letter-spacing:5.408908px;}
.ls3c{letter-spacing:6.516305px;}
.ls2f{letter-spacing:6.517690px;}
.ls28{letter-spacing:8.304312px;}
.ls36{letter-spacing:9.966843px;}
.ls32{letter-spacing:13.282200px;}
.ls19{letter-spacing:13.282287px;}
.ls2e{letter-spacing:13.284538px;}
.lsd{letter-spacing:16.267140px;}
.ls10{letter-spacing:16.273140px;}
.ls35{letter-spacing:16.424450px;}
.ls12{letter-spacing:16.602538px;}
.ls42{letter-spacing:17.142271px;}
.lse{letter-spacing:17.388538px;}
.ls3{letter-spacing:18.425937px;}
.ls4{letter-spacing:18.431937px;}
.ls2d{letter-spacing:18.692908px;}
.ls29{letter-spacing:19.591409px;}
.ls1b{letter-spacing:19.737269px;}
.ls21{letter-spacing:19.945140px;}
.ls2{letter-spacing:20.177937px;}
.ls33{letter-spacing:20.454538px;}
.ls3b{letter-spacing:21.829690px;}
.ls26{letter-spacing:22.326538px;}
.ls18{letter-spacing:22.332538px;}
.ls24{letter-spacing:22.424525px;}
.lsa{letter-spacing:22.909140px;}
.ls37{letter-spacing:23.276823px;}
.ls27{letter-spacing:24.605915px;}
.ls8{letter-spacing:25.153140px;}
.ls3a{letter-spacing:25.688408px;}
.ls1e{letter-spacing:26.327915px;}
.ls38{letter-spacing:26.804908px;}
.ls3d{letter-spacing:26.954908px;}
.ls1d{letter-spacing:29.395140px;}
.ls16{letter-spacing:30.426538px;}
.ls1c{letter-spacing:31.091915px;}
.ls22{letter-spacing:34.092538px;}
.ls1f{letter-spacing:34.918287px;}
.lsb{letter-spacing:35.076538px;}
.ls3f{letter-spacing:290.249115px;}
.ls40{letter-spacing:300.577852px;}
.ls41{letter-spacing:329.719647px;}
.ls3e{letter-spacing:373.878028px;}
.ls13{letter-spacing:602.426525px;}
.ls11{letter-spacing:655.970525px;}
.lsf{letter-spacing:662.240338px;}
.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;}
}
.wsc4{word-spacing:-59.775600px;}
.wsd4{word-spacing:-47.324343px;}
.ws150{word-spacing:-31.821754px;}
.wsfc{word-spacing:-29.881822px;}
.ws13d{word-spacing:-27.641618px;}
.wsc0{word-spacing:-16.605662px;}
.wsff{word-spacing:-16.551864px;}
.wsc9{word-spacing:-16.312761px;}
.ws44{word-spacing:-16.252986px;}
.ws10f{word-spacing:-16.193210px;}
.ws3c{word-spacing:-16.133434px;}
.wsce{word-spacing:-16.073659px;}
.ws107{word-spacing:-15.996029px;}
.ws51{word-spacing:-15.894332px;}
.wsca{word-spacing:-15.834556px;}
.ws6e{word-spacing:-15.774781px;}
.ws117{word-spacing:-15.715005px;}
.ws21{word-spacing:-15.655230px;}
.wsa5{word-spacing:-15.535678px;}
.ws43{word-spacing:-15.416127px;}
.wse0{word-spacing:-15.356352px;}
.ws3e{word-spacing:-15.296576px;}
.ws54{word-spacing:-15.236800px;}
.wsee{word-spacing:-15.177025px;}
.ws61{word-spacing:-15.117249px;}
.ws56{word-spacing:-14.997698px;}
.wsab{word-spacing:-14.937922px;}
.wsf7{word-spacing:-14.878147px;}
.ws6f{word-spacing:-14.818371px;}
.ws85{word-spacing:-14.639044px;}
.ws159{word-spacing:-14.622405px;}
.wse4{word-spacing:-14.579269px;}
.ws20{word-spacing:-14.459718px;}
.wsa2{word-spacing:-14.399942px;}
.ws70{word-spacing:-14.340166px;}
.ws103{word-spacing:-14.160840px;}
.ws130{word-spacing:-14.138220px;}
.ws63{word-spacing:-14.101064px;}
.ws137{word-spacing:-14.084421px;}
.wsad{word-spacing:-13.861962px;}
.ws12a{word-spacing:-13.761631px;}
.ws104{word-spacing:-13.742410px;}
.wsf8{word-spacing:-13.682635px;}
.ws134{word-spacing:-13.654034px;}
.ws3d{word-spacing:-13.563084px;}
.ws6d{word-spacing:-13.503308px;}
.ws3a{word-spacing:-13.442427px;}
.ws106{word-spacing:-13.396385px;}
.ws154{word-spacing:-13.386768px;}
.ws6c{word-spacing:-13.383757px;}
.ws71{word-spacing:-13.323981px;}
.wsc6{word-spacing:-13.276869px;}
.wsc3{word-spacing:-13.275245px;}
.wsc8{word-spacing:-13.273733px;}
.wsea{word-spacing:-13.264206px;}
.ws41{word-spacing:-13.204430px;}
.ws131{word-spacing:-13.116050px;}
.ws9f{word-spacing:-13.025103px;}
.wsb6{word-spacing:-12.965328px;}
.ws4c{word-spacing:-12.905552px;}
.ws59{word-spacing:-12.845776px;}
.ws39{word-spacing:-12.786001px;}
.ws5c{word-spacing:-12.726225px;}
.ws37{word-spacing:-12.666450px;}
.ws75{word-spacing:-12.546898px;}
.wsa4{word-spacing:-12.487123px;}
.ws82{word-spacing:-12.427347px;}
.wsaf{word-spacing:-12.367572px;}
.wscf{word-spacing:-12.307796px;}
.ws94{word-spacing:-12.248020px;}
.ws49{word-spacing:-12.188245px;}
.ws83{word-spacing:-12.128469px;}
.ws15a{word-spacing:-12.093880px;}
.ws65{word-spacing:-12.068694px;}
.ws80{word-spacing:-12.008918px;}
.ws55{word-spacing:-11.949142px;}
.ws102{word-spacing:-11.889367px;}
.wsf3{word-spacing:-11.829591px;}
.ws128{word-spacing:-11.824888px;}
.ws50{word-spacing:-11.769816px;}
.ws6a{word-spacing:-11.710040px;}
.ws57{word-spacing:-11.650264px;}
.wsa9{word-spacing:-11.590489px;}
.wsf1{word-spacing:-11.470938px;}
.ws2c{word-spacing:-11.411162px;}
.ws141{word-spacing:-11.394501px;}
.ws62{word-spacing:-11.351386px;}
.ws6b{word-spacing:-11.291611px;}
.ws58{word-spacing:-11.231835px;}
.ws40{word-spacing:-11.112284px;}
.wsba{word-spacing:-10.992733px;}
.wseb{word-spacing:-10.873182px;}
.ws24{word-spacing:-10.813406px;}
.ws18{word-spacing:-10.802719px;}
.ws93{word-spacing:-10.753630px;}
.wsec{word-spacing:-10.693855px;}
.ws99{word-spacing:-10.634079px;}
.ws140{word-spacing:-10.587525px;}
.ws25{word-spacing:-10.574304px;}
.ws132{word-spacing:-10.533727px;}
.ws22{word-spacing:-10.514528px;}
.ws133{word-spacing:-10.479928px;}
.ws73{word-spacing:-10.454752px;}
.wsdc{word-spacing:-10.434381px;}
.wsa3{word-spacing:-10.394977px;}
.ws5f{word-spacing:-10.335201px;}
.ws14d{word-spacing:-10.318533px;}
.ws3{word-spacing:-10.275426px;}
.ws4{word-spacing:-10.215650px;}
.wsd6{word-spacing:-10.155874px;}
.wsb{word-spacing:-10.049541px;}
.ws30{word-spacing:-10.036323px;}
.wsdd{word-spacing:-9.981807px;}
.ws5{word-spacing:-9.976548px;}
.wsde{word-spacing:-9.960381px;}
.wse5{word-spacing:-9.947058px;}
.ws98{word-spacing:-9.916772px;}
.ws119{word-spacing:-9.856996px;}
.ws146{word-spacing:-9.834348px;}
.wsae{word-spacing:-9.797221px;}
.ws108{word-spacing:-9.740185px;}
.ws69{word-spacing:-9.737445px;}
.ws2d{word-spacing:-9.677670px;}
.ws66{word-spacing:-9.617894px;}
.ws68{word-spacing:-9.558118px;}
.ws8c{word-spacing:-9.498343px;}
.ws139{word-spacing:-9.457759px;}
.wsa8{word-spacing:-9.438567px;}
.ws5a{word-spacing:-9.378792px;}
.ws52{word-spacing:-9.319016px;}
.ws27{word-spacing:-9.259240px;}
.ws1a{word-spacing:-9.242565px;}
.ws1d{word-spacing:-9.239628px;}
.ws1e{word-spacing:-9.236728px;}
.ws14f{word-spacing:-9.204384px;}
.ws100{word-spacing:-9.199465px;}
.ws6{word-spacing:-9.188767px;}
.wscc{word-spacing:-9.139689px;}
.wsa{word-spacing:-9.134968px;}
.ws114{word-spacing:-8.960362px;}
.ws95{word-spacing:-8.840811px;}
.ws5d{word-spacing:-8.781036px;}
.ws76{word-spacing:-8.661484px;}
.ws135{word-spacing:-8.650783px;}
.ws36{word-spacing:-8.601709px;}
.ws45{word-spacing:-8.541933px;}
.ws84{word-spacing:-8.482158px;}
.wsb4{word-spacing:-8.422382px;}
.ws17{word-spacing:-8.381791px;}
.wsb1{word-spacing:-8.362606px;}
.ws101{word-spacing:-8.302831px;}
.wsda{word-spacing:-8.250381px;}
.wsac{word-spacing:-8.243055px;}
.ws87{word-spacing:-8.183280px;}
.ws147{word-spacing:-8.166597px;}
.wsf4{word-spacing:-8.123504px;}
.ws11e{word-spacing:-8.112799px;}
.ws5e{word-spacing:-8.063728px;}
.wsa0{word-spacing:-8.003953px;}
.ws33{word-spacing:-7.884402px;}
.ws3f{word-spacing:-7.824626px;}
.wsa6{word-spacing:-7.764850px;}
.wsbe{word-spacing:-7.709568px;}
.ws23{word-spacing:-7.705075px;}
.wse3{word-spacing:-7.645299px;}
.ws42{word-spacing:-7.585524px;}
.ws11f{word-spacing:-7.574815px;}
.ws2f{word-spacing:-7.525748px;}
.ws1c{word-spacing:-7.481931px;}
.ws16{word-spacing:-7.467218px;}
.ws11a{word-spacing:-7.465972px;}
.ws136{word-spacing:-7.413420px;}
.ws8d{word-spacing:-7.406197px;}
.ws145{word-spacing:-7.359621px;}
.ws138{word-spacing:-7.305823px;}
.wsa1{word-spacing:-7.286646px;}
.ws15b{word-spacing:-7.252024px;}
.ws91{word-spacing:-7.226870px;}
.ws14a{word-spacing:-7.198226px;}
.wsd0{word-spacing:-7.167094px;}
.ws72{word-spacing:-7.107319px;}
.ws35{word-spacing:-7.047543px;}
.ws28{word-spacing:-6.987768px;}
.ws12d{word-spacing:-6.929234px;}
.wse1{word-spacing:-6.927992px;}
.ws7c{word-spacing:-6.868216px;}
.wsed{word-spacing:-6.808441px;}
.ws32{word-spacing:-6.748665px;}
.ws13e{word-spacing:-6.660242px;}
.ws110{word-spacing:-6.629114px;}
.wsb7{word-spacing:-6.569338px;}
.wsfa{word-spacing:-6.554182px;}
.ws143{word-spacing:-6.552645px;}
.ws4d{word-spacing:-6.532424px;}
.ws4f{word-spacing:-6.509563px;}
.wsc1{word-spacing:-6.449787px;}
.ws7a{word-spacing:-6.390012px;}
.ws120{word-spacing:-6.283653px;}
.ws8f{word-spacing:-6.270460px;}
.ws161{word-spacing:-6.229855px;}
.wsaa{word-spacing:-6.210685px;}
.ws86{word-spacing:-6.150909px;}
.ws8e{word-spacing:-6.091134px;}
.ws149{word-spacing:-6.068460px;}
.wsb9{word-spacing:-6.031358px;}
.ws123{word-spacing:-5.960863px;}
.ws7b{word-spacing:-5.911807px;}
.ws127{word-spacing:-5.907064px;}
.wsb5{word-spacing:-5.852031px;}
.wsb2{word-spacing:-5.792256px;}
.ws9d{word-spacing:-5.732480px;}
.ws15f{word-spacing:-5.691871px;}
.ws64{word-spacing:-5.672704px;}
.ws77{word-spacing:-5.612929px;}
.ws19{word-spacing:-5.584274px;}
.ws3b{word-spacing:-5.553153px;}
.wsbb{word-spacing:-5.493378px;}
.ws2a{word-spacing:-5.433602px;}
.ws8b{word-spacing:-5.373826px;}
.ws160{word-spacing:-5.369080px;}
.wsf2{word-spacing:-5.314051px;}
.ws31{word-spacing:-5.254275px;}
.ws142{word-spacing:-5.207685px;}
.ws92{word-spacing:-5.134724px;}
.wse{word-spacing:-5.100088px;}
.ws4a{word-spacing:-5.076117px;}
.ws38{word-spacing:-5.074948px;}
.ws5b{word-spacing:-5.015173px;}
.ws126{word-spacing:-4.992492px;}
.wse8{word-spacing:-4.955397px;}
.ws105{word-spacing:-4.895622px;}
.ws9b{word-spacing:-4.835846px;}
.ws14e{word-spacing:-4.831096px;}
.ws153{word-spacing:-4.777298px;}
.ws46{word-spacing:-4.776070px;}
.ws2e{word-spacing:-4.716295px;}
.ws81{word-spacing:-4.656519px;}
.ws2b{word-spacing:-4.536968px;}
.ws78{word-spacing:-4.477192px;}
.ws144{word-spacing:-4.454508px;}
.wsb8{word-spacing:-4.297866px;}
.ws12{word-spacing:-4.293112px;}
.ws157{word-spacing:-4.239314px;}
.ws9e{word-spacing:-4.238090px;}
.ws158{word-spacing:-4.185516px;}
.ws113{word-spacing:-4.178314px;}
.ws1b{word-spacing:-4.167840px;}
.ws12f{word-spacing:-4.131717px;}
.ws111{word-spacing:-4.058763px;}
.ws9c{word-spacing:-3.998988px;}
.ws12c{word-spacing:-3.970322px;}
.ws48{word-spacing:-3.939212px;}
.ws79{word-spacing:-3.879436px;}
.ws15c{word-spacing:-3.808927px;}
.ws26{word-spacing:-3.759885px;}
.ws12b{word-spacing:-3.701330px;}
.wsbf{word-spacing:-3.603252px;}
.wsd9{word-spacing:-3.474381px;}
.ws9a{word-spacing:-3.461007px;}
.wsd8{word-spacing:-3.448297px;}
.wsc{word-spacing:-3.432338px;}
.wscd{word-spacing:-3.341456px;}
.ws15{word-spacing:-3.217144px;}
.wsfe{word-spacing:-3.162129px;}
.ws10{word-spacing:-3.055749px;}
.ws11d{word-spacing:-3.001951px;}
.wsb0{word-spacing:-2.683924px;}
.wsf{word-spacing:-2.571564px;}
.ws34{word-spacing:-2.564373px;}
.ws14b{word-spacing:-2.517765px;}
.wscb{word-spacing:-2.504598px;}
.ws7d{word-spacing:-2.444822px;}
.wsd{word-spacing:-2.356370px;}
.ws67{word-spacing:-2.205720px;}
.ws60{word-spacing:-2.026393px;}
.ws8{word-spacing:-1.933947px;}
.ws7e{word-spacing:-1.787290px;}
.ws74{word-spacing:-1.727515px;}
.ws97{word-spacing:-1.667739px;}
.ws7f{word-spacing:-1.607964px;}
.ws115{word-spacing:-1.548188px;}
.ws11{word-spacing:-1.495596px;}
.ws12e{word-spacing:-1.441797px;}
.ws10e{word-spacing:-1.368861px;}
.ws96{word-spacing:-1.249310px;}
.ws11b{word-spacing:-1.119007px;}
.ws13{word-spacing:-0.850015px;}
.ws118{word-spacing:-0.771105px;}
.ws9{word-spacing:-0.742418px;}
.ws14c{word-spacing:-0.688620px;}
.ws90{word-spacing:-0.472227px;}
.ws13f{word-spacing:-0.419628px;}
.ws8a{word-spacing:-0.352676px;}
.wsb3{word-spacing:-0.292900px;}
.ws112{word-spacing:-0.233125px;}
.ws155{word-spacing:-0.204434px;}
.wse7{word-spacing:-0.113574px;}
.ws2{word-spacing:-0.086077px;}
.wsbc{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.wsd5{word-spacing:-0.041843px;}
.ws29{word-spacing:0.000000px;}
.wsd3{word-spacing:0.011955px;}
.wse9{word-spacing:0.125529px;}
.wsdb{word-spacing:0.803619px;}
.ws148{word-spacing:0.817736px;}
.ws156{word-spacing:1.140526px;}
.ws125{word-spacing:1.301921px;}
.wsfd{word-spacing:1.380816px;}
.ws14{word-spacing:1.517115px;}
.ws129{word-spacing:2.270292px;}
.ws15e{word-spacing:2.485486px;}
.ws121{word-spacing:2.646881px;}
.ws122{word-spacing:2.862075px;}
.ws13c{word-spacing:3.131067px;}
.ws124{word-spacing:3.830446px;}
.ws13a{word-spacing:4.852616px;}
.ws11c{word-spacing:8.134318px;}
.ws151{word-spacing:8.510907px;}
.ws13b{word-spacing:8.833697px;}
.wsd2{word-spacing:9.862974px;}
.wse2{word-spacing:9.914547px;}
.wsd7{word-spacing:9.922750px;}
.wsd1{word-spacing:14.839369px;}
.wsf6{word-spacing:14.943264px;}
.wsf5{word-spacing:16.905791px;}
.wsdf{word-spacing:17.601195px;}
.ws152{word-spacing:18.033224px;}
.wsf0{word-spacing:18.342400px;}
.wsef{word-spacing:18.351109px;}
.wsf9{word-spacing:18.530436px;}
.ws53{word-spacing:22.834279px;}
.ws88{word-spacing:22.894055px;}
.wsfb{word-spacing:23.274897px;}
.ws4e{word-spacing:23.279820px;}
.wsa7{word-spacing:23.432035px;}
.wsc5{word-spacing:24.089567px;}
.wsc2{word-spacing:24.567772px;}
.ws116{word-spacing:24.647256px;}
.ws89{word-spacing:25.045976px;}
.wsbd{word-spacing:25.110340px;}
.ws4b{word-spacing:25.693313px;}
.ws47{word-spacing:26.852946px;}
.ws15d{word-spacing:27.394145px;}
.wse6{word-spacing:29.519971px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.wsc7{word-spacing:31.740844px;}
.ws1f{word-spacing:40.355973px;}
.ws10a{word-spacing:224.299619px;}
.ws10b{word-spacing:238.849084px;}
.ws10c{word-spacing:267.988722px;}
.ws109{word-spacing:285.976451px;}
.ws10d{word-spacing:325.446983px;}
._15{margin-left:-33.157108px;}
._16{margin-left:-6.258775px;}
._1{margin-left:-4.961375px;}
._14{margin-left:-3.787372px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.550319px;}
._3{width:1.496521px;}
._4{width:2.668393px;}
._11{width:4.278488px;}
._1c{width:10.036324px;}
._17{width:13.187270px;}
._10{width:15.324062px;}
._f{width:16.592262px;}
._c{width:18.026876px;}
._1a{width:19.106683px;}
._a{width:20.417900px;}
._e{width:21.553637px;}
._b{width:23.350751px;}
._7{width:25.502672px;}
._5{width:27.172543px;}
._8{width:28.362078px;}
._25{width:29.911910px;}
._13{width:31.350590px;}
._12{width:32.757584px;}
._19{width:39.246038px;}
._d{width:68.741940px;}
._9{width:80.697600px;}
._1d{width:130.705522px;}
._1b{width:143.049946px;}
._6{width:170.648525px;}
._18{width:182.118191px;}
._22{width:220.799486px;}
._20{width:224.918546px;}
._23{width:230.630346px;}
._21{width:232.666843px;}
._24{width:245.283519px;}
._1e{width:246.911576px;}
._1f{width:369.647990px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs6{font-size:57.026842px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yb3{bottom:218.034000px;}
.y4b{bottom:221.101500px;}
.y26{bottom:221.103000px;}
.yb4{bottom:222.517500px;}
.ye9{bottom:230.324792px;}
.y110{bottom:237.540000px;}
.y7c{bottom:237.747000px;}
.y4a{bottom:239.034000px;}
.y25{bottom:239.035500px;}
.yaf{bottom:239.482500px;}
.yb5{bottom:239.484000px;}
.yb2{bottom:239.932500px;}
.yb0{bottom:245.311500px;}
.ye8{bottom:247.749766px;}
.yb1{bottom:249.795000px;}
.y10f{bottom:253.978500px;}
.y7b{bottom:255.679500px;}
.y24{bottom:256.968000px;}
.ye7{bottom:265.173151px;}
.yae{bottom:269.770500px;}
.y10e{bottom:270.417000px;}
.y13d{bottom:271.527000px;}
.y7a{bottom:273.612000px;}
.y23{bottom:274.900500px;}
.ye6{bottom:282.598125px;}
.y164{bottom:287.062500px;}
.yad{bottom:287.703000px;}
.y10d{bottom:287.716500px;}
.y13c{bottom:287.965500px;}
.y79{bottom:291.544500px;}
.y22{bottom:292.833000px;}
.ye5{bottom:300.023100px;}
.y76{bottom:302.650500px;}
.y163{bottom:303.501000px;}
.y10c{bottom:304.155000px;}
.y13b{bottom:305.514000px;}
.yac{bottom:305.635500px;}
.y78{bottom:309.478500px;}
.y21{bottom:310.765500px;}
.ye4{bottom:317.448074px;}
.y162{bottom:319.939500px;}
.y10b{bottom:320.593500px;}
.y13a{bottom:321.952500px;}
.yab{bottom:323.568000px;}
.y77{bottom:327.411000px;}
.y49{bottom:328.698000px;}
.y20{bottom:328.699500px;}
.y161{bottom:336.378000px;}
.y10a{bottom:337.893000px;}
.y139{bottom:338.389500px;}
.yaa{bottom:341.500500px;}
.ye3{bottom:342.824713px;}
.y75{bottom:345.343500px;}
.y48{bottom:346.630500px;}
.y1f{bottom:346.632000px;}
.y160{bottom:352.816500px;}
.y109{bottom:354.331500px;}
.y138{bottom:354.828000px;}
.ya9{bottom:359.434500px;}
.y74{bottom:363.276000px;}
.y1e{bottom:364.564500px;}
.y15f{bottom:369.255000px;}
.y108{bottom:370.770000px;}
.y137{bottom:372.376500px;}
.ya8{bottom:377.988000px;}
.ye2{bottom:379.773000px;}
.y73{bottom:381.208500px;}
.y47{bottom:382.497000px;}
.ye1{bottom:384.628500px;}
.y15e{bottom:385.692000px;}
.y107{bottom:388.069500px;}
.y136{bottom:388.815000px;}
.ya7{bottom:395.920500px;}
.y72{bottom:399.142500px;}
.y1d{bottom:400.003500px;}
.y46{bottom:400.429500px;}
.y15d{bottom:402.130500px;}
.y135{bottom:405.253500px;}
.y106{bottom:405.369000px;}
.ya6{bottom:413.853000px;}
.y71{bottom:417.075000px;}
.y45{bottom:418.362000px;}
.y15c{bottom:418.569000px;}
.y105{bottom:422.668500px;}
.y134{bottom:422.802000px;}
.ya5{bottom:431.785500px;}
.ye0{bottom:434.581500px;}
.y70{bottom:435.007500px;}
.y44{bottom:436.294500px;}
.y133{bottom:439.239000px;}
.y104{bottom:439.968000px;}
.ya4{bottom:449.718000px;}
.y1c{bottom:450.217500px;}
.y15b{bottom:451.446000px;}
.ydf{bottom:452.514000px;}
.y6f{bottom:452.940000px;}
.y43{bottom:454.227000px;}
.y5e{bottom:454.228500px;}
.y132{bottom:455.677500px;}
.y103{bottom:456.406500px;}
.y1b{bottom:466.656000px;}
.ya3{bottom:467.652000px;}
.y15a{bottom:467.884500px;}
.yde{bottom:470.446500px;}
.y6e{bottom:470.872500px;}
.y42{bottom:472.161000px;}
.y131{bottom:473.226000px;}
.y102{bottom:473.707500px;}
.y159{bottom:484.323000px;}
.ya2{bottom:485.584500px;}
.ydd{bottom:488.379000px;}
.y6d{bottom:488.805000px;}
.y130{bottom:489.664500px;}
.y41{bottom:490.093500px;}
.y101{bottom:490.144500px;}
.yd7{bottom:490.599000px;}
.y1a{bottom:499.425000px;}
.y158{bottom:500.761500px;}
.ya1{bottom:503.517000px;}
.y12f{bottom:506.103000px;}
.ydc{bottom:506.311500px;}
.y6c{bottom:506.739000px;}
.y100{bottom:507.445500px;}
.y40{bottom:508.026000px;}
.yd6{bottom:508.533000px;}
.y19{bottom:515.863500px;}
.y157{bottom:517.200000px;}
.ya0{bottom:522.070500px;}
.y12e{bottom:523.651500px;}
.yff{bottom:523.882500px;}
.ydb{bottom:524.245500px;}
.y6b{bottom:524.671500px;}
.y3f{bottom:525.958500px;}
.yd5{bottom:526.465500px;}
.yea{bottom:528.303000px;}
.y18{bottom:532.302000px;}
.y156{bottom:533.638500px;}
.y9f{bottom:540.003000px;}
.y12d{bottom:540.088500px;}
.yfe{bottom:541.183500px;}
.yda{bottom:542.178000px;}
.y6a{bottom:542.604000px;}
.y3e{bottom:543.891000px;}
.yd4{bottom:544.398000px;}
.y17{bottom:548.740500px;}
.y155{bottom:550.075500px;}
.y12c{bottom:556.527000px;}
.y9e{bottom:557.935500px;}
.yfd{bottom:558.483000px;}
.yd9{bottom:560.110500px;}
.y69{bottom:560.536500px;}
.y3d{bottom:561.825000px;}
.yd3{bottom:562.330500px;}
.y16{bottom:565.179000px;}
.y154{bottom:566.514000px;}
.y12b{bottom:574.075500px;}
.yfc{bottom:574.921500px;}
.y9d{bottom:575.869500px;}
.yd8{bottom:578.043000px;}
.y68{bottom:578.469000px;}
.y3c{bottom:579.757500px;}
.yd2{bottom:580.263000px;}
.y15{bottom:581.617500px;}
.y153{bottom:582.952500px;}
.y12a{bottom:590.514000px;}
.yfb{bottom:592.221000px;}
.y9c{bottom:593.802000px;}
.y67{bottom:596.401500px;}
.y3b{bottom:597.690000px;}
.y14{bottom:598.056000px;}
.yd1{bottom:598.195500px;}
.y152{bottom:599.391000px;}
.y129{bottom:606.952500px;}
.yfa{bottom:608.659500px;}
.y9b{bottom:611.734500px;}
.yd0{bottom:612.745500px;}
.y66{bottom:614.335500px;}
.y13{bottom:614.493000px;}
.y5d{bottom:615.622500px;}
.y151{bottom:615.829500px;}
.ycf{bottom:616.635000px;}
.y128{bottom:623.391000px;}
.yf9{bottom:625.959000px;}
.y9a{bottom:629.667000px;}
.y12{bottom:630.931500px;}
.y65{bottom:632.268000px;}
.y5c{bottom:633.555000px;}
.yce{bottom:634.567500px;}
.y3a{bottom:635.686500px;}
.y127{bottom:640.938000px;}
.yf8{bottom:642.397500px;}
.y11{bottom:647.370000px;}
.y99{bottom:647.599500px;}
.y150{bottom:648.706500px;}
.y64{bottom:650.200500px;}
.y5b{bottom:651.487500px;}
.ycd{bottom:652.501500px;}
.y126{bottom:657.376500px;}
.yf7{bottom:658.834500px;}
.y10{bottom:663.808500px;}
.y14f{bottom:665.145000px;}
.y98{bottom:665.532000px;}
.y63{bottom:668.133000px;}
.y5a{bottom:669.421500px;}
.ycc{bottom:670.434000px;}
.y125{bottom:673.815000px;}
.yf6{bottom:675.273000px;}
.yf{bottom:680.247000px;}
.y14e{bottom:681.583500px;}
.y97{bottom:683.466000px;}
.y39{bottom:685.639500px;}
.y62{bottom:686.065500px;}
.y59{bottom:687.354000px;}
.y124{bottom:690.253500px;}
.yf5{bottom:692.574000px;}
.ye{bottom:696.685500px;}
.yc9{bottom:696.826500px;}
.y14d{bottom:698.022000px;}
.y96{bottom:701.398500px;}
.y38{bottom:703.572000px;}
.y61{bottom:703.998000px;}
.yca{bottom:704.821500px;}
.y58{bottom:705.286500px;}
.ycb{bottom:705.808500px;}
.y123{bottom:707.802000px;}
.yf4{bottom:709.011000px;}
.yd{bottom:713.124000px;}
.y14c{bottom:714.459000px;}
.yc8{bottom:721.182000px;}
.y37{bottom:721.504500px;}
.y60{bottom:721.932000px;}
.y57{bottom:723.219000px;}
.yc7{bottom:724.171500px;}
.y122{bottom:724.240500px;}
.yf3{bottom:725.449500px;}
.yc{bottom:729.562500px;}
.y95{bottom:730.638000px;}
.y14b{bottom:730.897500px;}
.yc2{bottom:731.286000px;}
.y92{bottom:738.018000px;}
.y36{bottom:739.438500px;}
.y5f{bottom:739.864500px;}
.yc5{bottom:740.643000px;}
.y121{bottom:740.679000px;}
.y56{bottom:741.151500px;}
.yb{bottom:746.001000px;}
.y14a{bottom:747.336000px;}
.y8d{bottom:748.269000px;}
.y90{bottom:752.448000px;}
.yc6{bottom:753.792000px;}
.y35{bottom:757.797000px;}
.y120{bottom:758.226000px;}
.y91{bottom:758.379000px;}
.y55{bottom:759.084000px;}
.y8f{bottom:761.413500px;}
.ya{bottom:762.439500px;}
.y94{bottom:762.466500px;}
.y149{bottom:763.774500px;}
.yf2{bottom:764.127000px;}
.yc4{bottom:765.000000px;}
.y93{bottom:766.950000px;}
.yc3{bottom:767.988000px;}
.y8e{bottom:770.380500px;}
.y11f{bottom:774.664500px;}
.y34{bottom:775.729500px;}
.y54{bottom:777.018000px;}
.y9{bottom:778.876500px;}
.y148{bottom:780.213000px;}
.yc1{bottom:784.002000px;}
.y8c{bottom:786.828000px;}
.y11e{bottom:791.103000px;}
.y33{bottom:793.662000px;}
.y53{bottom:794.950500px;}
.y147{bottom:796.651500px;}
.yc0{bottom:802.440000px;}
.y8b{bottom:804.760500px;}
.y11d{bottom:808.651500px;}
.y32{bottom:811.596000px;}
.y52{bottom:812.883000px;}
.y146{bottom:813.090000px;}
.yf1{bottom:816.255000px;}
.ybf{bottom:820.374000px;}
.y11c{bottom:825.090000px;}
.y31{bottom:829.528500px;}
.y8a{bottom:830.404500px;}
.y51{bottom:830.815500px;}
.yf0{bottom:834.187500px;}
.y87{bottom:837.786000px;}
.ybe{bottom:838.306500px;}
.y8{bottom:838.911000px;}
.y11b{bottom:842.637000px;}
.y145{bottom:845.967000px;}
.y30{bottom:847.461000px;}
.y86{bottom:848.037000px;}
.y50{bottom:848.748000px;}
.yef{bottom:852.120000px;}
.y7{bottom:855.349500px;}
.ybd{bottom:856.239000px;}
.y11a{bottom:859.075500px;}
.y89{bottom:862.233000px;}
.y144{bottom:862.405500px;}
.y2f{bottom:865.393500px;}
.y4f{bottom:866.682000px;}
.y88{bottom:866.716500px;}
.yee{bottom:870.054000px;}
.y6{bottom:871.788000px;}
.ybc{bottom:874.171500px;}
.y119{bottom:876.624000px;}
.y143{bottom:878.844000px;}
.y85{bottom:879.598500px;}
.y2e{bottom:883.326000px;}
.y4e{bottom:884.614500px;}
.yed{bottom:887.986500px;}
.ybb{bottom:892.611000px;}
.y118{bottom:893.062500px;}
.y142{bottom:895.281000px;}
.y84{bottom:897.531000px;}
.y2d{bottom:901.258500px;}
.y5{bottom:903.109500px;}
.yec{bottom:905.919000px;}
.yb9{bottom:908.802000px;}
.y117{bottom:909.501000px;}
.y141{bottom:911.719500px;}
.y4d{bottom:912.079500px;}
.yba{bottom:913.285500px;}
.y2c{bottom:919.192500px;}
.y4{bottom:921.042000px;}
.y83{bottom:923.175000px;}
.yeb{bottom:923.851500px;}
.y116{bottom:927.048000px;}
.y140{bottom:928.158000px;}
.y80{bottom:930.556500px;}
.yb8{bottom:930.699000px;}
.y2b{bottom:937.125000px;}
.y7f{bottom:940.807500px;}
.yb7{bottom:940.902000px;}
.y115{bottom:943.486500px;}
.y13f{bottom:944.596500px;}
.y4c{bottom:945.523500px;}
.yb6{bottom:950.574000px;}
.y82{bottom:955.003500px;}
.y2a{bottom:955.057500px;}
.y81{bottom:959.487000px;}
.y114{bottom:959.925000px;}
.y13e{bottom:961.035000px;}
.y7e{bottom:972.369000px;}
.y3{bottom:972.990000px;}
.y113{bottom:977.473500px;}
.y7d{bottom:990.301500px;}
.y29{bottom:990.922500px;}
.y112{bottom:993.912000px;}
.y2{bottom:999.889500px;}
.y28{bottom:1008.855000px;}
.y111{bottom:1010.350500px;}
.y1{bottom:1026.789000px;}
.y27{bottom:1065.642000px;}
.hc{height:2.391024px;}
.hb{height:29.038903px;}
.h5{height:37.443686px;}
.h4{height:41.317171px;}
.ha{height:41.484266px;}
.h1e{height:42.827158px;}
.h1f{height:43.796615px;}
.h10{height:44.831700px;}
.h7{height:44.891476px;}
.h11{height:45.051619px;}
.h3{height:49.473619px;}
.h1c{height:49.479619px;}
.h6{height:50.283571px;}
.h8{height:50.734903px;}
.he{height:52.461619px;}
.h18{height:59.092903px;}
.h14{height:59.939700px;}
.h17{height:59.945700px;}
.h2{height:60.426194px;}
.h1d{height:60.449476px;}
.h1b{height:71.421024px;}
.h19{height:72.045024px;}
.h16{height:72.051024px;}
.h13{height:77.873700px;}
.h15{height:77.879700px;}
.h9{height:85.265700px;}
.hd{height:85.271700px;}
.h12{height:100.342903px;}
.h1a{height:111.952903px;}
.hf{height:124.311024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:187.086000px;}
.x2c{left:189.348000px;}
.x39{left:192.269449px;}
.x38{left:195.829492px;}
.x3a{left:205.306500px;}
.x9{left:209.502000px;}
.x2d{left:217.804500px;}
.x2{left:221.211000px;}
.x8{left:229.606500px;}
.x1{left:243.924000px;}
.xa{left:258.720000px;}
.x2e{left:279.343500px;}
.x36{left:291.352500px;}
.x1e{left:293.935500px;}
.x37{left:331.156500px;}
.x6{left:353.793000px;}
.x16{left:356.037000px;}
.x22{left:365.796000px;}
.x11{left:369.423000px;}
.xb{left:371.737500px;}
.x28{left:385.069500px;}
.x3{left:386.190000px;}
.x5{left:392.619000px;}
.x23{left:396.513000px;}
.x7{left:400.572000px;}
.x31{left:409.722000px;}
.x30{left:412.174500px;}
.x2f{left:416.758500px;}
.x33{left:418.015500px;}
.x17{left:419.122500px;}
.x1f{left:421.158000px;}
.x12{left:423.304500px;}
.x32{left:425.053500px;}
.xc{left:428.524500px;}
.x29{left:433.510500px;}
.x19{left:436.690500px;}
.x18{left:439.515000px;}
.x13{left:440.709000px;}
.x14{left:441.822000px;}
.xe{left:445.929000px;}
.xf{left:447.042000px;}
.xd{left:451.419000px;}
.x1b{left:454.095000px;}
.x1c{left:455.208000px;}
.x24{left:458.052000px;}
.x1a{left:459.585000px;}
.x15{left:462.295500px;}
.x10{left:470.005500px;}
.x1d{left:475.681500px;}
.x34{left:476.757000px;}
.x20{left:482.695500px;}
.x35{left:506.674500px;}
.x25{left:514.839000px;}
.x21{left:539.788500px;}
.x26{left:572.673000px;}
.x2a{left:587.764500px;}
.x2b{left:651.138000px;}
.x27{left:686.736000px;}
@media print{
.v13{vertical-align:-43.040000pt;}
.vc{vertical-align:-35.205333pt;}
.vb{vertical-align:-22.069333pt;}
.v10{vertical-align:-13.136000pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.968000pt;}
.va{vertical-align:13.429333pt;}
.v6{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:21.936000pt;}
.vf{vertical-align:26.714667pt;}
.v11{vertical-align:29.370667pt;}
.v3{vertical-align:35.941333pt;}
.ve{vertical-align:39.850667pt;}
.vd{vertical-align:61.920000pt;}
.v8{vertical-align:63.381333pt;}
.v15{vertical-align:68.384000pt;}
.v14{vertical-align:73.701333pt;}
.v7{vertical-align:76.517333pt;}
.v12{vertical-align:89.786667pt;}
.v5{vertical-align:108.373333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000546pt;}
.lsc{letter-spacing:0.001014pt;}
.ls2c{letter-spacing:0.001503pt;}
.ls7{letter-spacing:0.001799pt;}
.ls43{letter-spacing:0.001997pt;}
.ls1a{letter-spacing:0.002133pt;}
.ls20{letter-spacing:0.002387pt;}
.ls25{letter-spacing:0.002557pt;}
.ls15{letter-spacing:0.002906pt;}
.ls6{letter-spacing:0.004465pt;}
.ls31{letter-spacing:0.006082pt;}
.ls14{letter-spacing:1.471333pt;}
.ls2a{letter-spacing:2.146585pt;}
.ls30{letter-spacing:2.151919pt;}
.ls1{letter-spacing:2.652911pt;}
.ls9{letter-spacing:2.657014pt;}
.ls0{letter-spacing:2.658245pt;}
.ls39{letter-spacing:3.042140pt;}
.ls23{letter-spacing:4.165258pt;}
.ls17{letter-spacing:4.170591pt;}
.ls2b{letter-spacing:4.807919pt;}
.ls3c{letter-spacing:5.792271pt;}
.ls2f{letter-spacing:5.793503pt;}
.ls28{letter-spacing:7.381610pt;}
.ls36{letter-spacing:8.859416pt;}
.ls32{letter-spacing:11.806400pt;}
.ls19{letter-spacing:11.806477pt;}
.ls2e{letter-spacing:11.808479pt;}
.lsd{letter-spacing:14.459680pt;}
.ls10{letter-spacing:14.465014pt;}
.ls35{letter-spacing:14.599511pt;}
.ls12{letter-spacing:14.757812pt;}
.ls42{letter-spacing:15.237574pt;}
.lse{letter-spacing:15.456479pt;}
.ls3{letter-spacing:16.378610pt;}
.ls4{letter-spacing:16.383944pt;}
.ls2d{letter-spacing:16.615919pt;}
.ls29{letter-spacing:17.414586pt;}
.ls1b{letter-spacing:17.544239pt;}
.ls21{letter-spacing:17.729014pt;}
.ls2{letter-spacing:17.935944pt;}
.ls33{letter-spacing:18.181812pt;}
.ls3b{letter-spacing:19.404169pt;}
.ls26{letter-spacing:19.845812pt;}
.ls18{letter-spacing:19.851145pt;}
.ls24{letter-spacing:19.932911pt;}
.lsa{letter-spacing:20.363680pt;}
.ls37{letter-spacing:20.690509pt;}
.ls27{letter-spacing:21.871925pt;}
.ls8{letter-spacing:22.358347pt;}
.ls3a{letter-spacing:22.834140pt;}
.ls1e{letter-spacing:23.402591pt;}
.ls38{letter-spacing:23.826585pt;}
.ls3d{letter-spacing:23.959919pt;}
.ls1d{letter-spacing:26.129014pt;}
.ls16{letter-spacing:27.045812pt;}
.ls1c{letter-spacing:27.637258pt;}
.ls22{letter-spacing:30.304479pt;}
.ls1f{letter-spacing:31.038477pt;}
.lsb{letter-spacing:31.179145pt;}
.ls3f{letter-spacing:257.999213pt;}
.ls40{letter-spacing:267.180313pt;}
.ls41{letter-spacing:293.084131pt;}
.ls3e{letter-spacing:332.336025pt;}
.ls13{letter-spacing:535.490245pt;}
.ls11{letter-spacing:583.084911pt;}
.lsf{letter-spacing:588.658079pt;}
.wsc4{word-spacing:-53.133867pt;}
.wsd4{word-spacing:-42.066082pt;}
.ws150{word-spacing:-28.286003pt;}
.wsfc{word-spacing:-26.561620pt;}
.ws13d{word-spacing:-24.570327pt;}
.wsc0{word-spacing:-14.760588pt;}
.wsff{word-spacing:-14.712768pt;}
.wsc9{word-spacing:-14.500232pt;}
.ws44{word-spacing:-14.447098pt;}
.ws10f{word-spacing:-14.393964pt;}
.ws3c{word-spacing:-14.340831pt;}
.wsce{word-spacing:-14.287697pt;}
.ws107{word-spacing:-14.218693pt;}
.ws51{word-spacing:-14.128295pt;}
.wsca{word-spacing:-14.075161pt;}
.ws6e{word-spacing:-14.022027pt;}
.ws117{word-spacing:-13.968894pt;}
.ws21{word-spacing:-13.915760pt;}
.wsa5{word-spacing:-13.809492pt;}
.ws43{word-spacing:-13.703224pt;}
.wse0{word-spacing:-13.650090pt;}
.ws3e{word-spacing:-13.596956pt;}
.ws54{word-spacing:-13.543823pt;}
.wsee{word-spacing:-13.490689pt;}
.ws61{word-spacing:-13.437555pt;}
.ws56{word-spacing:-13.331287pt;}
.wsab{word-spacing:-13.278153pt;}
.wsf7{word-spacing:-13.225019pt;}
.ws6f{word-spacing:-13.171886pt;}
.ws85{word-spacing:-13.012484pt;}
.ws159{word-spacing:-12.997693pt;}
.wse4{word-spacing:-12.959350pt;}
.ws20{word-spacing:-12.853082pt;}
.wsa2{word-spacing:-12.799948pt;}
.ws70{word-spacing:-12.746815pt;}
.ws103{word-spacing:-12.587413pt;}
.ws130{word-spacing:-12.567306pt;}
.ws63{word-spacing:-12.534279pt;}
.ws137{word-spacing:-12.519485pt;}
.wsad{word-spacing:-12.321744pt;}
.ws12a{word-spacing:-12.232561pt;}
.ws104{word-spacing:-12.215476pt;}
.wsf8{word-spacing:-12.162342pt;}
.ws134{word-spacing:-12.136919pt;}
.ws3d{word-spacing:-12.056074pt;}
.ws6d{word-spacing:-12.002940pt;}
.ws3a{word-spacing:-11.948824pt;}
.ws106{word-spacing:-11.907898pt;}
.ws154{word-spacing:-11.899349pt;}
.ws6c{word-spacing:-11.896673pt;}
.ws71{word-spacing:-11.843539pt;}
.wsc6{word-spacing:-11.801661pt;}
.wsc3{word-spacing:-11.800218pt;}
.wsc8{word-spacing:-11.798874pt;}
.wsea{word-spacing:-11.790405pt;}
.ws41{word-spacing:-11.737271pt;}
.ws131{word-spacing:-11.658711pt;}
.ws9f{word-spacing:-11.577870pt;}
.wsb6{word-spacing:-11.524736pt;}
.ws4c{word-spacing:-11.471602pt;}
.ws59{word-spacing:-11.418468pt;}
.ws39{word-spacing:-11.365334pt;}
.ws5c{word-spacing:-11.312200pt;}
.ws37{word-spacing:-11.259066pt;}
.ws75{word-spacing:-11.152799pt;}
.wsa4{word-spacing:-11.099665pt;}
.ws82{word-spacing:-11.046531pt;}
.wsaf{word-spacing:-10.993397pt;}
.wscf{word-spacing:-10.940263pt;}
.ws94{word-spacing:-10.887129pt;}
.ws49{word-spacing:-10.833995pt;}
.ws83{word-spacing:-10.780862pt;}
.ws15a{word-spacing:-10.750116pt;}
.ws65{word-spacing:-10.727728pt;}
.ws80{word-spacing:-10.674594pt;}
.ws55{word-spacing:-10.621460pt;}
.ws102{word-spacing:-10.568326pt;}
.wsf3{word-spacing:-10.515192pt;}
.ws128{word-spacing:-10.511012pt;}
.ws50{word-spacing:-10.462058pt;}
.ws6a{word-spacing:-10.408924pt;}
.ws57{word-spacing:-10.355791pt;}
.wsa9{word-spacing:-10.302657pt;}
.wsf1{word-spacing:-10.196389pt;}
.ws2c{word-spacing:-10.143255pt;}
.ws141{word-spacing:-10.128445pt;}
.ws62{word-spacing:-10.090121pt;}
.ws6b{word-spacing:-10.036987pt;}
.ws58{word-spacing:-9.983854pt;}
.ws40{word-spacing:-9.877586pt;}
.wsba{word-spacing:-9.771318pt;}
.wseb{word-spacing:-9.665050pt;}
.ws24{word-spacing:-9.611916pt;}
.ws18{word-spacing:-9.602417pt;}
.ws93{word-spacing:-9.558783pt;}
.wsec{word-spacing:-9.505649pt;}
.ws99{word-spacing:-9.452515pt;}
.ws140{word-spacing:-9.411133pt;}
.ws25{word-spacing:-9.399381pt;}
.ws132{word-spacing:-9.363313pt;}
.ws22{word-spacing:-9.346247pt;}
.ws133{word-spacing:-9.315492pt;}
.ws73{word-spacing:-9.293113pt;}
.wsdc{word-spacing:-9.275006pt;}
.wsa3{word-spacing:-9.239979pt;}
.ws5f{word-spacing:-9.186846pt;}
.ws14d{word-spacing:-9.172029pt;}
.ws3{word-spacing:-9.133712pt;}
.ws4{word-spacing:-9.080578pt;}
.wsd6{word-spacing:-9.027444pt;}
.wsb{word-spacing:-8.932925pt;}
.ws30{word-spacing:-8.921176pt;}
.wsdd{word-spacing:-8.872717pt;}
.ws5{word-spacing:-8.868042pt;}
.wsde{word-spacing:-8.853672pt;}
.wse5{word-spacing:-8.841829pt;}
.ws98{word-spacing:-8.814908pt;}
.ws119{word-spacing:-8.761775pt;}
.ws146{word-spacing:-8.741642pt;}
.wsae{word-spacing:-8.708641pt;}
.ws108{word-spacing:-8.657942pt;}
.ws69{word-spacing:-8.655507pt;}
.ws2d{word-spacing:-8.602373pt;}
.ws66{word-spacing:-8.549239pt;}
.ws68{word-spacing:-8.496105pt;}
.ws8c{word-spacing:-8.442971pt;}
.ws139{word-spacing:-8.406897pt;}
.wsa8{word-spacing:-8.389838pt;}
.ws5a{word-spacing:-8.336704pt;}
.ws52{word-spacing:-8.283570pt;}
.ws27{word-spacing:-8.230436pt;}
.ws1a{word-spacing:-8.215613pt;}
.ws1d{word-spacing:-8.213002pt;}
.ws1e{word-spacing:-8.210425pt;}
.ws14f{word-spacing:-8.181675pt;}
.ws100{word-spacing:-8.177302pt;}
.ws6{word-spacing:-8.167793pt;}
.wscc{word-spacing:-8.124168pt;}
.wsa{word-spacing:-8.119972pt;}
.ws114{word-spacing:-7.964767pt;}
.ws95{word-spacing:-7.858499pt;}
.ws5d{word-spacing:-7.805365pt;}
.ws76{word-spacing:-7.699097pt;}
.ws135{word-spacing:-7.689585pt;}
.ws36{word-spacing:-7.645963pt;}
.ws45{word-spacing:-7.592830pt;}
.ws84{word-spacing:-7.539696pt;}
.wsb4{word-spacing:-7.486562pt;}
.ws17{word-spacing:-7.450481pt;}
.wsb1{word-spacing:-7.433428pt;}
.ws101{word-spacing:-7.380294pt;}
.wsda{word-spacing:-7.333672pt;}
.wsac{word-spacing:-7.327160pt;}
.ws87{word-spacing:-7.274026pt;}
.ws147{word-spacing:-7.259197pt;}
.wsf4{word-spacing:-7.220892pt;}
.ws11e{word-spacing:-7.211377pt;}
.ws5e{word-spacing:-7.167759pt;}
.wsa0{word-spacing:-7.114625pt;}
.ws33{word-spacing:-7.008357pt;}
.ws3f{word-spacing:-6.955223pt;}
.wsa6{word-spacing:-6.902089pt;}
.wsbe{word-spacing:-6.852949pt;}
.ws23{word-spacing:-6.848955pt;}
.wse3{word-spacing:-6.795822pt;}
.ws42{word-spacing:-6.742688pt;}
.ws11f{word-spacing:-6.733169pt;}
.ws2f{word-spacing:-6.689554pt;}
.ws1c{word-spacing:-6.650605pt;}
.ws16{word-spacing:-6.637527pt;}
.ws11a{word-spacing:-6.636420pt;}
.ws136{word-spacing:-6.589706pt;}
.ws8d{word-spacing:-6.583286pt;}
.ws145{word-spacing:-6.541885pt;}
.ws138{word-spacing:-6.494065pt;}
.wsa1{word-spacing:-6.477018pt;}
.ws15b{word-spacing:-6.446244pt;}
.ws91{word-spacing:-6.423884pt;}
.ws14a{word-spacing:-6.398423pt;}
.wsd0{word-spacing:-6.370751pt;}
.ws72{word-spacing:-6.317617pt;}
.ws35{word-spacing:-6.264483pt;}
.ws28{word-spacing:-6.211349pt;}
.ws12d{word-spacing:-6.159319pt;}
.wse1{word-spacing:-6.158215pt;}
.ws7c{word-spacing:-6.105081pt;}
.wsed{word-spacing:-6.051947pt;}
.ws32{word-spacing:-5.998814pt;}
.ws13e{word-spacing:-5.920215pt;}
.ws110{word-spacing:-5.892546pt;}
.wsb7{word-spacing:-5.839412pt;}
.wsfa{word-spacing:-5.825940pt;}
.ws143{word-spacing:-5.824573pt;}
.ws4d{word-spacing:-5.806599pt;}
.ws4f{word-spacing:-5.786278pt;}
.wsc1{word-spacing:-5.733144pt;}
.ws7a{word-spacing:-5.680010pt;}
.ws120{word-spacing:-5.585469pt;}
.ws8f{word-spacing:-5.573743pt;}
.ws161{word-spacing:-5.537649pt;}
.wsaa{word-spacing:-5.520609pt;}
.ws86{word-spacing:-5.467475pt;}
.ws8e{word-spacing:-5.414341pt;}
.ws149{word-spacing:-5.394186pt;}
.wsb9{word-spacing:-5.361207pt;}
.ws123{word-spacing:-5.298545pt;}
.ws7b{word-spacing:-5.254939pt;}
.ws127{word-spacing:-5.250724pt;}
.wsb5{word-spacing:-5.201806pt;}
.wsb2{word-spacing:-5.148672pt;}
.ws9d{word-spacing:-5.095538pt;}
.ws15f{word-spacing:-5.059441pt;}
.ws64{word-spacing:-5.042404pt;}
.ws77{word-spacing:-4.989270pt;}
.ws19{word-spacing:-4.963799pt;}
.ws3b{word-spacing:-4.936136pt;}
.wsbb{word-spacing:-4.883002pt;}
.ws2a{word-spacing:-4.829868pt;}
.ws8b{word-spacing:-4.776735pt;}
.ws160{word-spacing:-4.772516pt;}
.wsf2{word-spacing:-4.723601pt;}
.ws31{word-spacing:-4.670467pt;}
.ws142{word-spacing:-4.629053pt;}
.ws92{word-spacing:-4.564199pt;}
.wse{word-spacing:-4.533412pt;}
.ws4a{word-spacing:-4.512104pt;}
.ws38{word-spacing:-4.511065pt;}
.ws5b{word-spacing:-4.457931pt;}
.ws126{word-spacing:-4.437770pt;}
.wse8{word-spacing:-4.404798pt;}
.ws105{word-spacing:-4.351664pt;}
.ws9b{word-spacing:-4.298530pt;}
.ws14e{word-spacing:-4.294308pt;}
.ws153{word-spacing:-4.246487pt;}
.ws46{word-spacing:-4.245396pt;}
.ws2e{word-spacing:-4.192262pt;}
.ws81{word-spacing:-4.139128pt;}
.ws2b{word-spacing:-4.032860pt;}
.ws78{word-spacing:-3.979727pt;}
.ws144{word-spacing:-3.959562pt;}
.wsb8{word-spacing:-3.820325pt;}
.ws12{word-spacing:-3.816100pt;}
.ws157{word-spacing:-3.768279pt;}
.ws9e{word-spacing:-3.767191pt;}
.ws158{word-spacing:-3.720458pt;}
.ws113{word-spacing:-3.714057pt;}
.ws1b{word-spacing:-3.704747pt;}
.ws12f{word-spacing:-3.672637pt;}
.ws111{word-spacing:-3.607790pt;}
.ws9c{word-spacing:-3.554656pt;}
.ws12c{word-spacing:-3.529175pt;}
.ws48{word-spacing:-3.501522pt;}
.ws79{word-spacing:-3.448388pt;}
.ws15c{word-spacing:-3.385713pt;}
.ws26{word-spacing:-3.342120pt;}
.ws12b{word-spacing:-3.290071pt;}
.wsbf{word-spacing:-3.202891pt;}
.wsd9{word-spacing:-3.088339pt;}
.ws9a{word-spacing:-3.076451pt;}
.wsd8{word-spacing:-3.065153pt;}
.wsc{word-spacing:-3.050967pt;}
.wscd{word-spacing:-2.970183pt;}
.ws15{word-spacing:-2.859684pt;}
.wsfe{word-spacing:-2.810782pt;}
.ws10{word-spacing:-2.716221pt;}
.ws11d{word-spacing:-2.668401pt;}
.wsb0{word-spacing:-2.385711pt;}
.wsf{word-spacing:-2.285834pt;}
.ws34{word-spacing:-2.279443pt;}
.ws14b{word-spacing:-2.238013pt;}
.wscb{word-spacing:-2.226309pt;}
.ws7d{word-spacing:-2.173175pt;}
.wsd{word-spacing:-2.094551pt;}
.ws67{word-spacing:-1.960640pt;}
.ws60{word-spacing:-1.801238pt;}
.ws8{word-spacing:-1.719064pt;}
.ws7e{word-spacing:-1.588703pt;}
.ws74{word-spacing:-1.535569pt;}
.ws97{word-spacing:-1.482435pt;}
.ws7f{word-spacing:-1.429301pt;}
.ws115{word-spacing:-1.376167pt;}
.ws11{word-spacing:-1.329418pt;}
.ws12e{word-spacing:-1.281597pt;}
.ws10e{word-spacing:-1.216766pt;}
.ws96{word-spacing:-1.110498pt;}
.ws11b{word-spacing:-0.994673pt;}
.ws13{word-spacing:-0.755569pt;}
.ws118{word-spacing:-0.685427pt;}
.ws9{word-spacing:-0.659927pt;}
.ws14c{word-spacing:-0.612106pt;}
.ws90{word-spacing:-0.419758pt;}
.ws13f{word-spacing:-0.373002pt;}
.ws8a{word-spacing:-0.313490pt;}
.wsb3{word-spacing:-0.260356pt;}
.ws112{word-spacing:-0.207222pt;}
.ws155{word-spacing:-0.181719pt;}
.wse7{word-spacing:-0.100954pt;}
.ws2{word-spacing:-0.076513pt;}
.wsbc{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.wsd5{word-spacing:-0.037194pt;}
.ws29{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.010627pt;}
.wse9{word-spacing:0.111581pt;}
.wsdb{word-spacing:0.714328pt;}
.ws148{word-spacing:0.726876pt;}
.ws156{word-spacing:1.013801pt;}
.ws125{word-spacing:1.157263pt;}
.wsfd{word-spacing:1.227392pt;}
.ws14{word-spacing:1.348547pt;}
.ws129{word-spacing:2.018038pt;}
.ws15e{word-spacing:2.209321pt;}
.ws121{word-spacing:2.352783pt;}
.ws122{word-spacing:2.544067pt;}
.ws13c{word-spacing:2.783171pt;}
.ws124{word-spacing:3.404841pt;}
.ws13a{word-spacing:4.313436pt;}
.ws11c{word-spacing:7.230505pt;}
.ws151{word-spacing:7.565251pt;}
.ws13b{word-spacing:7.852175pt;}
.wsd2{word-spacing:8.767088pt;}
.wse2{word-spacing:8.812931pt;}
.wsd7{word-spacing:8.820222pt;}
.wsd1{word-spacing:13.190550pt;}
.wsf6{word-spacing:13.282902pt;}
.wsf5{word-spacing:15.027370pt;}
.wsdf{word-spacing:15.645507pt;}
.ws152{word-spacing:16.029532pt;}
.wsf0{word-spacing:16.304356pt;}
.wsef{word-spacing:16.312097pt;}
.wsf9{word-spacing:16.471499pt;}
.ws53{word-spacing:20.297137pt;}
.ws88{word-spacing:20.350271pt;}
.wsfb{word-spacing:20.688797pt;}
.ws4e{word-spacing:20.693174pt;}
.wsa7{word-spacing:20.828476pt;}
.wsc5{word-spacing:21.412948pt;}
.wsc2{word-spacing:21.838019pt;}
.ws116{word-spacing:21.908672pt;}
.ws89{word-spacing:22.263090pt;}
.wsbd{word-spacing:22.320302pt;}
.ws4b{word-spacing:22.838500pt;}
.ws47{word-spacing:23.869286pt;}
.ws15d{word-spacing:24.350351pt;}
.wse6{word-spacing:26.239974pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.wsc7{word-spacing:28.214083pt;}
.ws1f{word-spacing:35.871976pt;}
.ws10a{word-spacing:199.377439pt;}
.ws10b{word-spacing:212.310297pt;}
.ws10c{word-spacing:238.212197pt;}
.ws109{word-spacing:254.201290pt;}
.ws10d{word-spacing:289.286207pt;}
._15{margin-left:-29.472985pt;}
._16{margin-left:-5.563356pt;}
._1{margin-left:-4.410111pt;}
._14{margin-left:-3.366553pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-1.378062pt;}
._3{width:1.330241pt;}
._4{width:2.371905pt;}
._11{width:3.803101pt;}
._1c{width:8.921177pt;}
._17{width:11.722017pt;}
._10{width:13.621389pt;}
._f{width:14.748677pt;}
._c{width:16.023890pt;}
._1a{width:16.983718pt;}
._a{width:18.149245pt;}
._e{width:19.158788pt;}
._b{width:20.756223pt;}
._7{width:22.669042pt;}
._5{width:24.153372pt;}
._8{width:25.210736pt;}
._25{width:26.588365pt;}
._13{width:27.867191pt;}
._12{width:29.117852pt;}
._19{width:34.885367pt;}
._d{width:61.103947pt;}
._9{width:71.731200pt;}
._1d{width:116.182686pt;}
._1b{width:127.155507pt;}
._6{width:151.687578pt;}
._18{width:161.882836pt;}
._22{width:196.266210pt;}
._20{width:199.927596pt;}
._23{width:205.004752pt;}
._21{width:206.814972pt;}
._24{width:218.029795pt;}
._1e{width:219.476957pt;}
._1f{width:328.575991pt;}
.fs5{font-size:26.566933pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs6{font-size:50.690526pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:193.808000pt;}
.y4b{bottom:196.534667pt;}
.y26{bottom:196.536000pt;}
.yb4{bottom:197.793333pt;}
.ye9{bottom:204.733148pt;}
.y110{bottom:211.146667pt;}
.y7c{bottom:211.330667pt;}
.y4a{bottom:212.474667pt;}
.y25{bottom:212.476000pt;}
.yaf{bottom:212.873333pt;}
.yb5{bottom:212.874667pt;}
.yb2{bottom:213.273333pt;}
.yb0{bottom:218.054667pt;}
.ye8{bottom:220.222015pt;}
.yb1{bottom:222.040000pt;}
.y10f{bottom:225.758667pt;}
.y7b{bottom:227.270667pt;}
.y24{bottom:228.416000pt;}
.ye7{bottom:235.709467pt;}
.yae{bottom:239.796000pt;}
.y10e{bottom:240.370667pt;}
.y13d{bottom:241.357333pt;}
.y7a{bottom:243.210667pt;}
.y23{bottom:244.356000pt;}
.ye6{bottom:251.198334pt;}
.y164{bottom:255.166667pt;}
.yad{bottom:255.736000pt;}
.y10d{bottom:255.748000pt;}
.y13c{bottom:255.969333pt;}
.y79{bottom:259.150667pt;}
.y22{bottom:260.296000pt;}
.ye5{bottom:266.687200pt;}
.y76{bottom:269.022667pt;}
.y163{bottom:269.778667pt;}
.y10c{bottom:270.360000pt;}
.y13b{bottom:271.568000pt;}
.yac{bottom:271.676000pt;}
.y78{bottom:275.092000pt;}
.y21{bottom:276.236000pt;}
.ye4{bottom:282.176066pt;}
.y162{bottom:284.390667pt;}
.y10b{bottom:284.972000pt;}
.y13a{bottom:286.180000pt;}
.yab{bottom:287.616000pt;}
.y77{bottom:291.032000pt;}
.y49{bottom:292.176000pt;}
.y20{bottom:292.177333pt;}
.y161{bottom:299.002667pt;}
.y10a{bottom:300.349333pt;}
.y139{bottom:300.790667pt;}
.yaa{bottom:303.556000pt;}
.ye3{bottom:304.733079pt;}
.y75{bottom:306.972000pt;}
.y48{bottom:308.116000pt;}
.y1f{bottom:308.117333pt;}
.y160{bottom:313.614667pt;}
.y109{bottom:314.961333pt;}
.y138{bottom:315.402667pt;}
.ya9{bottom:319.497333pt;}
.y74{bottom:322.912000pt;}
.y1e{bottom:324.057333pt;}
.y15f{bottom:328.226667pt;}
.y108{bottom:329.573333pt;}
.y137{bottom:331.001333pt;}
.ya8{bottom:335.989333pt;}
.ye2{bottom:337.576000pt;}
.y73{bottom:338.852000pt;}
.y47{bottom:339.997333pt;}
.ye1{bottom:341.892000pt;}
.y15e{bottom:342.837333pt;}
.y107{bottom:344.950667pt;}
.y136{bottom:345.613333pt;}
.ya7{bottom:351.929333pt;}
.y72{bottom:354.793333pt;}
.y1d{bottom:355.558667pt;}
.y46{bottom:355.937333pt;}
.y15d{bottom:357.449333pt;}
.y135{bottom:360.225333pt;}
.y106{bottom:360.328000pt;}
.ya6{bottom:367.869333pt;}
.y71{bottom:370.733333pt;}
.y45{bottom:371.877333pt;}
.y15c{bottom:372.061333pt;}
.y105{bottom:375.705333pt;}
.y134{bottom:375.824000pt;}
.ya5{bottom:383.809333pt;}
.ye0{bottom:386.294667pt;}
.y70{bottom:386.673333pt;}
.y44{bottom:387.817333pt;}
.y133{bottom:390.434667pt;}
.y104{bottom:391.082667pt;}
.ya4{bottom:399.749333pt;}
.y1c{bottom:400.193333pt;}
.y15b{bottom:401.285333pt;}
.ydf{bottom:402.234667pt;}
.y6f{bottom:402.613333pt;}
.y43{bottom:403.757333pt;}
.y5e{bottom:403.758667pt;}
.y132{bottom:405.046667pt;}
.y103{bottom:405.694667pt;}
.y1b{bottom:414.805333pt;}
.ya3{bottom:415.690667pt;}
.y15a{bottom:415.897333pt;}
.yde{bottom:418.174667pt;}
.y6e{bottom:418.553333pt;}
.y42{bottom:419.698667pt;}
.y131{bottom:420.645333pt;}
.y102{bottom:421.073333pt;}
.y159{bottom:430.509333pt;}
.ya2{bottom:431.630667pt;}
.ydd{bottom:434.114667pt;}
.y6d{bottom:434.493333pt;}
.y130{bottom:435.257333pt;}
.y41{bottom:435.638667pt;}
.y101{bottom:435.684000pt;}
.yd7{bottom:436.088000pt;}
.y1a{bottom:443.933333pt;}
.y158{bottom:445.121333pt;}
.ya1{bottom:447.570667pt;}
.y12f{bottom:449.869333pt;}
.ydc{bottom:450.054667pt;}
.y6c{bottom:450.434667pt;}
.y100{bottom:451.062667pt;}
.y40{bottom:451.578667pt;}
.yd6{bottom:452.029333pt;}
.y19{bottom:458.545333pt;}
.y157{bottom:459.733333pt;}
.ya0{bottom:464.062667pt;}
.y12e{bottom:465.468000pt;}
.yff{bottom:465.673333pt;}
.ydb{bottom:465.996000pt;}
.y6b{bottom:466.374667pt;}
.y3f{bottom:467.518667pt;}
.yd5{bottom:467.969333pt;}
.yea{bottom:469.602667pt;}
.y18{bottom:473.157333pt;}
.y156{bottom:474.345333pt;}
.y9f{bottom:480.002667pt;}
.y12d{bottom:480.078667pt;}
.yfe{bottom:481.052000pt;}
.yda{bottom:481.936000pt;}
.y6a{bottom:482.314667pt;}
.y3e{bottom:483.458667pt;}
.yd4{bottom:483.909333pt;}
.y17{bottom:487.769333pt;}
.y155{bottom:488.956000pt;}
.y12c{bottom:494.690667pt;}
.y9e{bottom:495.942667pt;}
.yfd{bottom:496.429333pt;}
.yd9{bottom:497.876000pt;}
.y69{bottom:498.254667pt;}
.y3d{bottom:499.400000pt;}
.yd3{bottom:499.849333pt;}
.y16{bottom:502.381333pt;}
.y154{bottom:503.568000pt;}
.y12b{bottom:510.289333pt;}
.yfc{bottom:511.041333pt;}
.y9d{bottom:511.884000pt;}
.yd8{bottom:513.816000pt;}
.y68{bottom:514.194667pt;}
.y3c{bottom:515.340000pt;}
.yd2{bottom:515.789333pt;}
.y15{bottom:516.993333pt;}
.y153{bottom:518.180000pt;}
.y12a{bottom:524.901333pt;}
.yfb{bottom:526.418667pt;}
.y9c{bottom:527.824000pt;}
.y67{bottom:530.134667pt;}
.y3b{bottom:531.280000pt;}
.y14{bottom:531.605333pt;}
.yd1{bottom:531.729333pt;}
.y152{bottom:532.792000pt;}
.y129{bottom:539.513333pt;}
.yfa{bottom:541.030667pt;}
.y9b{bottom:543.764000pt;}
.yd0{bottom:544.662667pt;}
.y66{bottom:546.076000pt;}
.y13{bottom:546.216000pt;}
.y5d{bottom:547.220000pt;}
.y151{bottom:547.404000pt;}
.ycf{bottom:548.120000pt;}
.y128{bottom:554.125333pt;}
.yf9{bottom:556.408000pt;}
.y9a{bottom:559.704000pt;}
.y12{bottom:560.828000pt;}
.y65{bottom:562.016000pt;}
.y5c{bottom:563.160000pt;}
.yce{bottom:564.060000pt;}
.y3a{bottom:565.054667pt;}
.y127{bottom:569.722667pt;}
.yf8{bottom:571.020000pt;}
.y11{bottom:575.440000pt;}
.y99{bottom:575.644000pt;}
.y150{bottom:576.628000pt;}
.y64{bottom:577.956000pt;}
.y5b{bottom:579.100000pt;}
.ycd{bottom:580.001333pt;}
.y126{bottom:584.334667pt;}
.yf7{bottom:585.630667pt;}
.y10{bottom:590.052000pt;}
.y14f{bottom:591.240000pt;}
.y98{bottom:591.584000pt;}
.y63{bottom:593.896000pt;}
.y5a{bottom:595.041333pt;}
.ycc{bottom:595.941333pt;}
.y125{bottom:598.946667pt;}
.yf6{bottom:600.242667pt;}
.yf{bottom:604.664000pt;}
.y14e{bottom:605.852000pt;}
.y97{bottom:607.525333pt;}
.y39{bottom:609.457333pt;}
.y62{bottom:609.836000pt;}
.y59{bottom:610.981333pt;}
.y124{bottom:613.558667pt;}
.yf5{bottom:615.621333pt;}
.ye{bottom:619.276000pt;}
.yc9{bottom:619.401333pt;}
.y14d{bottom:620.464000pt;}
.y96{bottom:623.465333pt;}
.y38{bottom:625.397333pt;}
.y61{bottom:625.776000pt;}
.yca{bottom:626.508000pt;}
.y58{bottom:626.921333pt;}
.ycb{bottom:627.385333pt;}
.y123{bottom:629.157333pt;}
.yf4{bottom:630.232000pt;}
.yd{bottom:633.888000pt;}
.y14c{bottom:635.074667pt;}
.yc8{bottom:641.050667pt;}
.y37{bottom:641.337333pt;}
.y60{bottom:641.717333pt;}
.y57{bottom:642.861333pt;}
.yc7{bottom:643.708000pt;}
.y122{bottom:643.769333pt;}
.yf3{bottom:644.844000pt;}
.yc{bottom:648.500000pt;}
.y95{bottom:649.456000pt;}
.y14b{bottom:649.686667pt;}
.yc2{bottom:650.032000pt;}
.y92{bottom:656.016000pt;}
.y36{bottom:657.278667pt;}
.y5f{bottom:657.657333pt;}
.yc5{bottom:658.349333pt;}
.y121{bottom:658.381333pt;}
.y56{bottom:658.801333pt;}
.yb{bottom:663.112000pt;}
.y14a{bottom:664.298667pt;}
.y8d{bottom:665.128000pt;}
.y90{bottom:668.842667pt;}
.yc6{bottom:670.037333pt;}
.y35{bottom:673.597333pt;}
.y120{bottom:673.978667pt;}
.y91{bottom:674.114667pt;}
.y55{bottom:674.741333pt;}
.y8f{bottom:676.812000pt;}
.ya{bottom:677.724000pt;}
.y94{bottom:677.748000pt;}
.y149{bottom:678.910667pt;}
.yf2{bottom:679.224000pt;}
.yc4{bottom:680.000000pt;}
.y93{bottom:681.733333pt;}
.yc3{bottom:682.656000pt;}
.y8e{bottom:684.782667pt;}
.y11f{bottom:688.590667pt;}
.y34{bottom:689.537333pt;}
.y54{bottom:690.682667pt;}
.y9{bottom:692.334667pt;}
.y148{bottom:693.522667pt;}
.yc1{bottom:696.890667pt;}
.y8c{bottom:699.402667pt;}
.y11e{bottom:703.202667pt;}
.y33{bottom:705.477333pt;}
.y53{bottom:706.622667pt;}
.y147{bottom:708.134667pt;}
.yc0{bottom:713.280000pt;}
.y8b{bottom:715.342667pt;}
.y11d{bottom:718.801333pt;}
.y32{bottom:721.418667pt;}
.y52{bottom:722.562667pt;}
.y146{bottom:722.746667pt;}
.yf1{bottom:725.560000pt;}
.ybf{bottom:729.221333pt;}
.y11c{bottom:733.413333pt;}
.y31{bottom:737.358667pt;}
.y8a{bottom:738.137333pt;}
.y51{bottom:738.502667pt;}
.yf0{bottom:741.500000pt;}
.y87{bottom:744.698667pt;}
.ybe{bottom:745.161333pt;}
.y8{bottom:745.698667pt;}
.y11b{bottom:749.010667pt;}
.y145{bottom:751.970667pt;}
.y30{bottom:753.298667pt;}
.y86{bottom:753.810667pt;}
.y50{bottom:754.442667pt;}
.yef{bottom:757.440000pt;}
.y7{bottom:760.310667pt;}
.ybd{bottom:761.101333pt;}
.y11a{bottom:763.622667pt;}
.y89{bottom:766.429333pt;}
.y144{bottom:766.582667pt;}
.y2f{bottom:769.238667pt;}
.y4f{bottom:770.384000pt;}
.y88{bottom:770.414667pt;}
.yee{bottom:773.381333pt;}
.y6{bottom:774.922667pt;}
.ybc{bottom:777.041333pt;}
.y119{bottom:779.221333pt;}
.y143{bottom:781.194667pt;}
.y85{bottom:781.865333pt;}
.y2e{bottom:785.178667pt;}
.y4e{bottom:786.324000pt;}
.yed{bottom:789.321333pt;}
.ybb{bottom:793.432000pt;}
.y118{bottom:793.833333pt;}
.y142{bottom:795.805333pt;}
.y84{bottom:797.805333pt;}
.y2d{bottom:801.118667pt;}
.y5{bottom:802.764000pt;}
.yec{bottom:805.261333pt;}
.yb9{bottom:807.824000pt;}
.y117{bottom:808.445333pt;}
.y141{bottom:810.417333pt;}
.y4d{bottom:810.737333pt;}
.yba{bottom:811.809333pt;}
.y2c{bottom:817.060000pt;}
.y4{bottom:818.704000pt;}
.y83{bottom:820.600000pt;}
.yeb{bottom:821.201333pt;}
.y116{bottom:824.042667pt;}
.y140{bottom:825.029333pt;}
.y80{bottom:827.161333pt;}
.yb8{bottom:827.288000pt;}
.y2b{bottom:833.000000pt;}
.y7f{bottom:836.273333pt;}
.yb7{bottom:836.357333pt;}
.y115{bottom:838.654667pt;}
.y13f{bottom:839.641333pt;}
.y4c{bottom:840.465333pt;}
.yb6{bottom:844.954667pt;}
.y82{bottom:848.892000pt;}
.y2a{bottom:848.940000pt;}
.y81{bottom:852.877333pt;}
.y114{bottom:853.266667pt;}
.y13e{bottom:854.253333pt;}
.y7e{bottom:864.328000pt;}
.y3{bottom:864.880000pt;}
.y113{bottom:868.865333pt;}
.y7d{bottom:880.268000pt;}
.y29{bottom:880.820000pt;}
.y112{bottom:883.477333pt;}
.y2{bottom:888.790667pt;}
.y28{bottom:896.760000pt;}
.y111{bottom:898.089333pt;}
.y1{bottom:912.701333pt;}
.y27{bottom:947.237333pt;}
.hc{height:2.125355pt;}
.hb{height:25.812358pt;}
.h5{height:33.283277pt;}
.h4{height:36.726374pt;}
.ha{height:36.874903pt;}
.h1e{height:38.068585pt;}
.h1f{height:38.930324pt;}
.h10{height:39.850400pt;}
.h7{height:39.903534pt;}
.h11{height:40.045884pt;}
.h3{height:43.976550pt;}
.h1c{height:43.981884pt;}
.h6{height:44.696508pt;}
.h8{height:45.097692pt;}
.he{height:46.632550pt;}
.h18{height:52.527025pt;}
.h14{height:53.279733pt;}
.h17{height:53.285067pt;}
.h2{height:53.712173pt;}
.h1d{height:53.732867pt;}
.h1b{height:63.485355pt;}
.h19{height:64.040021pt;}
.h16{height:64.045355pt;}
.h13{height:69.221067pt;}
.h15{height:69.226400pt;}
.h9{height:75.791733pt;}
.hd{height:75.797067pt;}
.h12{height:89.193692pt;}
.h1a{height:99.513692pt;}
.hf{height:110.498688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:166.298667pt;}
.x2c{left:168.309333pt;}
.x39{left:170.906177pt;}
.x38{left:174.070660pt;}
.x3a{left:182.494667pt;}
.x9{left:186.224000pt;}
.x2d{left:193.604000pt;}
.x2{left:196.632000pt;}
.x8{left:204.094667pt;}
.x1{left:216.821333pt;}
.xa{left:229.973333pt;}
.x2e{left:248.305333pt;}
.x36{left:258.980000pt;}
.x1e{left:261.276000pt;}
.x37{left:294.361333pt;}
.x6{left:314.482667pt;}
.x16{left:316.477333pt;}
.x22{left:325.152000pt;}
.x11{left:328.376000pt;}
.xb{left:330.433333pt;}
.x28{left:342.284000pt;}
.x3{left:343.280000pt;}
.x5{left:348.994667pt;}
.x23{left:352.456000pt;}
.x7{left:356.064000pt;}
.x31{left:364.197333pt;}
.x30{left:366.377333pt;}
.x2f{left:370.452000pt;}
.x33{left:371.569333pt;}
.x17{left:372.553333pt;}
.x1f{left:374.362667pt;}
.x12{left:376.270667pt;}
.x32{left:377.825333pt;}
.xc{left:380.910667pt;}
.x29{left:385.342667pt;}
.x19{left:388.169333pt;}
.x18{left:390.680000pt;}
.x13{left:391.741333pt;}
.x14{left:392.730667pt;}
.xe{left:396.381333pt;}
.xf{left:397.370667pt;}
.xd{left:401.261333pt;}
.x1b{left:403.640000pt;}
.x1c{left:404.629333pt;}
.x24{left:407.157333pt;}
.x1a{left:408.520000pt;}
.x15{left:410.929333pt;}
.x10{left:417.782667pt;}
.x1d{left:422.828000pt;}
.x34{left:423.784000pt;}
.x20{left:429.062667pt;}
.x35{left:450.377333pt;}
.x25{left:457.634667pt;}
.x21{left:479.812000pt;}
.x26{left:509.042667pt;}
.x2a{left:522.457333pt;}
.x2b{left:578.789333pt;}
.x27{left:610.432000pt;}
}




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