
    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_9134350d4d259ec653b937fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950000;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_92c93de36dc0bba1a637bd32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_d5ba9bb8bbebde714eddd560.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_1db89fa2d134e2ad36d9b82e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.838000;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_5f39df1f3fdbd3d9c7431f73.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678000;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_7fd789a6aaf27f786cf34b3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949000;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_937a98bf1691b73dee1dd380.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.749000;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_eeef58f1bf516abe4d63583b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678000;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_c217360624a95ae478153eb8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52f44725ba28453050de2b84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.579000;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_325766a5fbffabb0b547898c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_9fbc61f2378d03de3fd29346.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.756000;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_3864e453d2978295ea4d83ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692000;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_3fbf540a9ac64d4cb2d90148.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690000;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_f16a0fb08dcd42daf8bf8edb.woff2')format("woff");}.fff{font-family:fff;line-height:0.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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-20.806200px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-3.788741px;}
.ls21{letter-spacing:-3.020753px;}
.ls24{letter-spacing:-1.278172px;}
.ls23{letter-spacing:-1.195039px;}
.ls1e{letter-spacing:-0.114921px;}
.ls1d{letter-spacing:-0.088302px;}
.ls1f{letter-spacing:-0.076614px;}
.ls10{letter-spacing:-0.072301px;}
.ls1c{letter-spacing:-0.050752px;}
.ls11{letter-spacing:-0.042623px;}
.lsf{letter-spacing:-0.039766px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.003785px;}
.ls16{letter-spacing:0.004483px;}
.ls18{letter-spacing:0.022415px;}
.lsa{letter-spacing:0.042296px;}
.ls20{letter-spacing:0.051140px;}
.lsb{letter-spacing:0.144602px;}
.ls9{letter-spacing:0.155448px;}
.ls7{letter-spacing:0.181720px;}
.ls15{letter-spacing:0.282434px;}
.ls4{letter-spacing:0.289617px;}
.ls1b{letter-spacing:3.912948px;}
.ls13{letter-spacing:5.283242px;}
.ls17{letter-spacing:7.320870px;}
.lsc{letter-spacing:7.657101px;}
.lsd{letter-spacing:7.661584px;}
.ls6{letter-spacing:9.131446px;}
.ls1{letter-spacing:9.335881px;}
.ls12{letter-spacing:9.472172px;}
.ls5{letter-spacing:9.676607px;}
.ls8{letter-spacing:11.743676px;}
.ls0{letter-spacing:13.074316px;}
.ls2{letter-spacing:18.366569px;}
.ls19{letter-spacing:18.546502px;}
.lse{letter-spacing:27.241012px;}
.ls14{letter-spacing:445.242750px;}
.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;}
}
.ws90{word-spacing:-27.297799px;}
.ws12a{word-spacing:-17.999850px;}
.wscd{word-spacing:-10.205314px;}
.ws68{word-spacing:-9.733395px;}
.wsd9{word-spacing:-7.701931px;}
.wscf{word-spacing:-0.180753px;}
.ws7e{word-spacing:-0.056788px;}
.ws18a{word-spacing:-0.049314px;}
.ws5a{word-spacing:-0.047821px;}
.ws191{word-spacing:-0.044831px;}
.ws5c{word-spacing:0.000000px;}
.wsde{word-spacing:0.003615px;}
.wsd0{word-spacing:0.036151px;}
.ws182{word-spacing:6.890494px;}
.ws192{word-spacing:7.150513px;}
.ws136{word-spacing:7.423980px;}
.ws132{word-spacing:7.450879px;}
.wsd6{word-spacing:7.513642px;}
.wsd8{word-spacing:7.540541px;}
.ws18b{word-spacing:7.639168px;}
.ws175{word-spacing:7.666067px;}
.ws17f{word-spacing:7.692965px;}
.ws141{word-spacing:7.737796px;}
.ws134{word-spacing:7.755728px;}
.ws19c{word-spacing:7.760211px;}
.ws16b{word-spacing:7.787110px;}
.ws16d{word-spacing:7.800559px;}
.ws170{word-spacing:7.890221px;}
.ws140{word-spacing:7.903670px;}
.ws130{word-spacing:8.154723px;}
.ws8a{word-spacing:8.256917px;}
.ws8c{word-spacing:8.393207px;}
.wsf1{word-spacing:8.512461px;}
.ws44{word-spacing:8.535176px;}
.ws2e{word-spacing:8.586285px;}
.ws8b{word-spacing:8.665788px;}
.wsa9{word-spacing:8.699860px;}
.ws11e{word-spacing:8.733933px;}
.ws149{word-spacing:9.086016px;}
.wse2{word-spacing:9.091695px;}
.ws66{word-spacing:9.114410px;}
.ws11a{word-spacing:9.154161px;}
.ws19b{word-spacing:9.167899px;}
.wsb5{word-spacing:9.182555px;}
.wsb8{word-spacing:9.188234px;}
.wsb6{word-spacing:9.301809px;}
.wsee{word-spacing:9.369954px;}
.wsa7{word-spacing:9.398348px;}
.wsb9{word-spacing:9.404027px;}
.ws67{word-spacing:9.409705px;}
.ws69{word-spacing:9.415384px;}
.wsac{word-spacing:9.421063px;}
.ws8f{word-spacing:9.426742px;}
.ws32{word-spacing:9.432420px;}
.ws112{word-spacing:9.443778px;}
.wse4{word-spacing:9.506244px;}
.ws87{word-spacing:9.511923px;}
.wse7{word-spacing:9.540317px;}
.ws99{word-spacing:9.551674px;}
.wsb4{word-spacing:9.648213px;}
.ws86{word-spacing:9.659571px;}
.ws166{word-spacing:9.722037px;}
.ws43{word-spacing:9.784503px;}
.ws89{word-spacing:9.852649px;}
.ws168{word-spacing:9.880708px;}
.ws27{word-spacing:9.943509px;}
.ws85{word-spacing:9.949188px;}
.ws84{word-spacing:9.983260px;}
.ws15e{word-spacing:10.017333px;}
.ws22{word-spacing:10.085478px;}
.wse0{word-spacing:10.113872px;}
.ws82{word-spacing:10.130908px;}
.wsd5{word-spacing:10.136244px;}
.ws81{word-spacing:10.250162px;}
.ws83{word-spacing:10.335343px;}
.ws193{word-spacing:10.571103px;}
.ws14d{word-spacing:10.573851px;}
.wsba{word-spacing:10.579530px;}
.ws18e{word-spacing:10.611450px;}
.wsa5{word-spacing:10.676069px;}
.wsa1{word-spacing:10.732856px;}
.ws162{word-spacing:10.766929px;}
.ws171{word-spacing:10.790774px;}
.ws174{word-spacing:10.925266px;}
.ws16c{word-spacing:11.032860px;}
.wsed{word-spacing:11.033831px;}
.ws16a{word-spacing:11.041826px;}
.ws176{word-spacing:11.050792px;}
.ws35{word-spacing:11.067903px;}
.wsdf{word-spacing:11.073582px;}
.ws18d{word-spacing:11.131488px;}
.ws14e{word-spacing:11.147406px;}
.ws16f{word-spacing:11.158386px;}
.ws143{word-spacing:11.162869px;}
.ws19e{word-spacing:11.180802px;}
.ws185{word-spacing:11.198734px;}
.ws7c{word-spacing:11.204193px;}
.ws17e{word-spacing:11.248048px;}
.ws94{word-spacing:11.300732px;}
.wsdc{word-spacing:11.333226px;}
.ws127{word-spacing:11.357520px;}
.wsa6{word-spacing:11.368878px;}
.ws1e{word-spacing:11.371881px;}
.ws198{word-spacing:11.373574px;}
.ws142{word-spacing:11.409439px;}
.ws10c{word-spacing:11.505168px;}
.ws19a{word-spacing:11.615660px;}
.ws95{word-spacing:11.647137px;}
.ws29{word-spacing:11.669852px;}
.wsc0{word-spacing:11.681209px;}
.wsbf{word-spacing:11.760712px;}
.ws16e{word-spacing:11.929476px;}
.wseb{word-spacing:11.942432px;}
.ws14{word-spacing:12.050329px;}
.wsc8{word-spacing:12.067365px;}
.wsdb{word-spacing:12.068451px;}
.ws18f{word-spacing:12.081901px;}
.wsea{word-spacing:12.101438px;}
.ws152{word-spacing:12.129831px;}
.ws61{word-spacing:12.135510px;}
.wse6{word-spacing:12.186619px;}
.ws2d{word-spacing:12.277479px;}
.ws24{word-spacing:12.305873px;}
.ws115{word-spacing:12.396733px;}
.ws1a1{word-spacing:12.409165px;}
.ws148{word-spacing:12.436484px;}
.ws100{word-spacing:12.442163px;}
.wse8{word-spacing:12.453521px;}
.ws15d{word-spacing:12.476236px;}
.ws73{word-spacing:12.487593px;}
.ws15b{word-spacing:12.612526px;}
.ws18c{word-spacing:12.624353px;}
.ws13b{word-spacing:12.628836px;}
.ws28{word-spacing:12.720422px;}
.ws21{word-spacing:12.777210px;}
.ws15c{word-spacing:12.811283px;}
.wsec{word-spacing:12.828319px;}
.ws195{word-spacing:12.870923px;}
.ws9f{word-spacing:12.964609px;}
.wsb7{word-spacing:12.987324px;}
.ws1a0{word-spacing:12.991966px;}
.ws37{word-spacing:13.027075px;}
.wse3{word-spacing:13.083863px;}
.wsb2{word-spacing:13.140651px;}
.ws106{word-spacing:13.146329px;}
.ws3d{word-spacing:13.152008px;}
.wsd1{word-spacing:13.269917px;}
.ws104{word-spacing:13.299656px;}
.ws169{word-spacing:13.319231px;}
.ws164{word-spacing:13.464340px;}
.ws105{word-spacing:13.498413px;}
.ws97{word-spacing:13.521128px;}
.ws63{word-spacing:13.577915px;}
.ws3e{word-spacing:13.657418px;}
.ws92{word-spacing:13.691490px;}
.ws177{word-spacing:13.758573px;}
.ws102{word-spacing:13.793708px;}
.ws52{word-spacing:13.801198px;}
.ws4e{word-spacing:13.805066px;}
.ws57{word-spacing:13.839455px;}
.ws178{word-spacing:13.884099px;}
.ws199{word-spacing:13.906514px;}
.ws59{word-spacing:13.911187px;}
.ws55{word-spacing:13.920751px;}
.ws6c{word-spacing:13.935677px;}
.wscc{word-spacing:13.959008px;}
.ws128{word-spacing:13.963790px;}
.ws163{word-spacing:13.969750px;}
.ws11d{word-spacing:13.975428px;}
.ws50{word-spacing:14.002047px;}
.ws58{word-spacing:14.006829px;}
.ws98{word-spacing:14.037895px;}
.ws147{word-spacing:14.043573px;}
.ws15f{word-spacing:14.083325px;}
.wsaf{word-spacing:14.100361px;}
.wsf4{word-spacing:14.168506px;}
.ws1d{word-spacing:14.179864px;}
.wscb{word-spacing:14.191221px;}
.ws173{word-spacing:14.193431px;}
.ws56{word-spacing:14.231589px;}
.ws4b{word-spacing:14.344548px;}
.ws34{word-spacing:14.407014px;}
.ws64{word-spacing:14.560341px;}
.ws3c{word-spacing:14.617128px;}
.ws10d{word-spacing:14.889709px;}
.wsfe{word-spacing:15.116859px;}
.wsd7{word-spacing:15.125912px;}
.ws62{word-spacing:15.162289px;}
.wsf2{word-spacing:15.179325px;}
.ws13c{word-spacing:15.211090px;}
.ws17d{word-spacing:15.641466px;}
.wsb{word-spacing:15.655160px;}
.ws17a{word-spacing:15.901485px;}
.ws138{word-spacing:15.919417px;}
.ws65{word-spacing:15.928922px;}
.wsdd{word-spacing:15.945668px;}
.wsc{word-spacing:15.988706px;}
.wsa{word-spacing:16.058643px;}
.wsd{word-spacing:16.064023px;}
.ws14b{word-spacing:16.139036px;}
.ws0{word-spacing:16.139340px;}
.ws101{word-spacing:16.201502px;}
.ws15{word-spacing:16.207181px;}
.ws150{word-spacing:16.212860px;}
.ws144{word-spacing:16.214657px;}
.ws156{word-spacing:16.269647px;}
.ws1a{word-spacing:16.343471px;}
.ws51{word-spacing:16.359633px;}
.ws9{word-spacing:16.359911px;}
.ws6a{word-spacing:16.377544px;}
.wsad{word-spacing:16.525192px;}
.ws3f{word-spacing:16.695554px;}
.ws189{word-spacing:16.708439px;}
.ws8{word-spacing:16.820487px;}
.ws6{word-spacing:16.848881px;}
.ws36{word-spacing:16.865917px;}
.ws117{word-spacing:16.888632px;}
.ws42{word-spacing:16.899990px;}
.ws7{word-spacing:16.922705px;}
.ws179{word-spacing:16.946042px;}
.ws53{word-spacing:17.019565px;}
.ws4{word-spacing:17.024922px;}
.wsae{word-spacing:17.110104px;}
.ws5{word-spacing:17.189607px;}
.ws48{word-spacing:17.195285px;}
.ws11{word-spacing:17.286145px;}
.ws186{word-spacing:17.309172px;}
.ws196{word-spacing:17.403317px;}
.ws7b{word-spacing:17.581441px;}
.ws12f{word-spacing:17.622987px;}
.ws12e{word-spacing:17.717132px;}
.ws158{word-spacing:17.723410px;}
.wsc5{word-spacing:17.831306px;}
.ws70{word-spacing:17.916488px;}
.ws5b{word-spacing:18.006124px;}
.ws103{word-spacing:18.007348px;}
.ws181{word-spacing:18.048880px;}
.wsd4{word-spacing:18.053363px;}
.ws190{word-spacing:18.111643px;}
.ws16{word-spacing:18.143638px;}
.wsd3{word-spacing:18.151991px;}
.ws77{word-spacing:18.217462px;}
.wse{word-spacing:18.234498px;}
.ws1a2{word-spacing:18.367179px;}
.wsda{word-spacing:18.420976px;}
.wse5{word-spacing:18.552509px;}
.ws6e{word-spacing:18.773981px;}
.wsf7{word-spacing:18.967058px;}
.ws13e{word-spacing:19.088955px;}
.ws39{word-spacing:19.199888px;}
.ws109{word-spacing:19.262354px;}
.ws75{word-spacing:19.279390px;}
.ws131{word-spacing:19.326558px;}
.ws49{word-spacing:19.483826px;}
.ws2c{word-spacing:19.557649px;}
.ws7a{word-spacing:19.620116px;}
.ws114{word-spacing:19.739370px;}
.ws184{word-spacing:20.012469px;}
.ws54{word-spacing:20.070558px;}
.wse1{word-spacing:20.165277px;}
.ws108{word-spacing:20.205028px;}
.ws180{word-spacing:20.263522px;}
.ws11f{word-spacing:20.290209px;}
.ws26{word-spacing:20.301567px;}
.ws165{word-spacing:20.329961px;}
.ws3a{word-spacing:20.488966px;}
.ws135{word-spacing:20.599753px;}
.wsb0{word-spacing:20.801298px;}
.ws159{word-spacing:20.920552px;}
.wsf8{word-spacing:20.988697px;}
.wsef{word-spacing:21.011412px;}
.ws1a3{word-spacing:21.128756px;}
.wsca{word-spacing:21.266956px;}
.wsf6{word-spacing:21.363495px;}
.wsc9{word-spacing:21.522500px;}
.ws5d{word-spacing:21.658791px;}
.ws9c{word-spacing:21.715578px;}
.ws13d{word-spacing:21.783286px;}
.ws12d{word-spacing:21.796735px;}
.ws118{word-spacing:21.868905px;}
.ws79{word-spacing:21.920014px;}
.ws157{word-spacing:21.937050px;}
.wsab{word-spacing:21.982480px;}
.wsf3{word-spacing:22.061983px;}
.ws188{word-spacing:22.379535px;}
.ws2b{word-spacing:22.510605px;}
.ws13f{word-spacing:22.563342px;}
.ws1b{word-spacing:22.715040px;}
.wsaa{word-spacing:22.732076px;}
.ws137{word-spacing:22.823360px;}
.ws41{word-spacing:22.919475px;}
.ws1c{word-spacing:22.993299px;}
.wsf0{word-spacing:22.998978px;}
.ws121{word-spacing:23.157983px;}
.ws5e{word-spacing:23.226128px;}
.wsa2{word-spacing:23.328346px;}
.wse9{word-spacing:23.334025px;}
.ws71{word-spacing:23.345382px;}
.ws172{word-spacing:23.527204px;}
.ws107{word-spacing:23.657714px;}
.ws6d{word-spacing:23.686108px;}
.ws146{word-spacing:23.691787px;}
.ws14f{word-spacing:23.890543px;}
.ws155{word-spacing:24.009797px;}
.wsbb{word-spacing:24.072264px;}
.ws6f{word-spacing:24.219911px;}
.ws2a{word-spacing:24.361880px;}
.wsa4{word-spacing:24.753715px;}
.ws9d{word-spacing:24.952471px;}
.wsc1{word-spacing:25.031974px;}
.ws6b{word-spacing:25.037653px;}
.wsa0{word-spacing:25.060368px;}
.ws30{word-spacing:25.293197px;}
.ws151{word-spacing:25.361342px;}
.ws9a{word-spacing:25.497632px;}
.ws119{word-spacing:25.628244px;}
.wsfd{word-spacing:25.838358px;}
.ws145{word-spacing:25.986006px;}
.ws11b{word-spacing:26.008721px;}
.ws197{word-spacing:26.046695px;}
.ws4f{word-spacing:26.244275px;}
.ws116{word-spacing:26.309695px;}
.ws1f{word-spacing:26.372161px;}
.ws25{word-spacing:26.389198px;}
.ws20{word-spacing:26.457343px;}
.wsd2{word-spacing:26.548800px;}
.ws19f{word-spacing:26.804335px;}
.ws74{word-spacing:26.900286px;}
.ws91{word-spacing:26.923001px;}
.ws10b{word-spacing:27.133115px;}
.ws125{word-spacing:27.167188px;}
.wsa3{word-spacing:27.218297px;}
.ws4d{word-spacing:27.445447px;}
.ws3b{word-spacing:27.581737px;}
.ws17{word-spacing:27.740743px;}
.ws17c{word-spacing:27.777164px;}
.ws124{word-spacing:27.814566px;}
.ws31{word-spacing:28.013323px;}
.ws2f{word-spacing:28.092826px;}
.ws33{word-spacing:28.240473px;}
.ws8e{word-spacing:28.382442px;}
.ws13a{word-spacing:28.413761px;}
.ws10e{word-spacing:28.456266px;}
.wsbe{word-spacing:28.496018px;}
.ws139{word-spacing:28.723094px;}
.ws23{word-spacing:29.058215px;}
.ws161{word-spacing:29.143396px;}
.ws154{word-spacing:29.677200px;}
.ws19{word-spacing:29.722630px;}
.ws10f{word-spacing:29.796454px;}
.wsc6{word-spacing:29.875956px;}
.ws8d{word-spacing:29.892993px;}
.ws78{word-spacing:30.233718px;}
.ws12{word-spacing:30.426796px;}
.ws19d{word-spacing:30.547707px;}
.ws133{word-spacing:30.641852px;}
.ws15a{word-spacing:30.693698px;}
.ws183{word-spacing:30.731513px;}
.ws93{word-spacing:31.074175px;}
.wsfa{word-spacing:31.142320px;}
.ws4a{word-spacing:31.216144px;}
.ws14c{word-spacing:31.375149px;}
.wsf5{word-spacing:31.454652px;}
.ws76{word-spacing:31.642051px;}
.ws11c{word-spacing:31.749947px;}
.ws10a{word-spacing:31.801056px;}
.wsbc{word-spacing:31.829450px;}
.wsf9{word-spacing:31.897595px;}
.ws194{word-spacing:32.000225px;}
.ws2{word-spacing:32.074606px;}
.ws1{word-spacing:32.192963px;}
.ws3{word-spacing:32.311319px;}
.ws122{word-spacing:32.442756px;}
.wsc2{word-spacing:32.914093px;}
.ws187{word-spacing:32.946155px;}
.wsa8{word-spacing:33.033347px;}
.ws17b{word-spacing:33.363081px;}
.wsb3{word-spacing:33.516042px;}
.ws38{word-spacing:33.697762px;}
.ws18{word-spacing:33.805658px;}
.ws126{word-spacing:34.083918px;}
.ws13{word-spacing:34.339462px;}
.wsbd{word-spacing:34.350819px;}
.ws47{word-spacing:34.776726px;}
.ws9e{word-spacing:34.958447px;}
.ws14a{word-spacing:35.571753px;}
.ws113{word-spacing:35.867048px;}
.ws60{word-spacing:36.230489px;}
.ws10{word-spacing:36.542821px;}
.ws80{word-spacing:36.826759px;}
.ws7f{word-spacing:36.923298px;}
.wsc3{word-spacing:36.968728px;}
.ws4c{word-spacing:37.031194px;}
.ws7d{word-spacing:37.190199px;}
.ws160{word-spacing:37.746718px;}
.ws111{word-spacing:37.769433px;}
.wsb1{word-spacing:39.138014px;}
.wsf{word-spacing:39.160729px;}
.ws45{word-spacing:39.245910px;}
.ws5f{word-spacing:39.456024px;}
.ws9b{word-spacing:39.898968px;}
.wsfc{word-spacing:39.995507px;}
.wsc4{word-spacing:40.057973px;}
.ws88{word-spacing:40.069331px;}
.ws40{word-spacing:40.540668px;}
.ws153{word-spacing:40.699673px;}
.ws167{word-spacing:40.921145px;}
.ws110{word-spacing:41.233476px;}
.wsff{word-spacing:42.136399px;}
.wsc7{word-spacing:42.284047px;}
.ws123{word-spacing:42.800814px;}
.ws46{word-spacing:43.090431px;}
.ws96{word-spacing:44.373831px;}
.wsfb{word-spacing:44.856525px;}
.ws120{word-spacing:50.904405px;}
.ws72{word-spacing:51.438208px;}
.wsce{word-spacing:86.719079px;}
.ws12c{word-spacing:114.708118px;}
.ws12b{word-spacing:128.607270px;}
.ws129{word-spacing:145.672317px;}
._1a{margin-left:-17.768840px;}
._24{margin-left:-13.010600px;}
._17{margin-left:-9.937830px;}
._20{margin-left:-6.900154px;}
._15{margin-left:-1.061631px;}
._1f{width:1.362856px;}
._25{width:2.792935px;}
._2d{width:3.885262px;}
._0{width:4.922499px;}
._29{width:6.657374px;}
._18{width:8.705539px;}
._e{width:9.773146px;}
._8{width:11.437023px;}
._b{width:12.731780px;}
._10{width:14.248009px;}
._2{width:15.294715px;}
._3{width:16.763394px;}
._f{width:18.149317px;}
._4{width:19.574686px;}
._13{width:20.579826px;}
._a{width:21.766687px;}
._1e{width:22.789050px;}
._d{width:23.850792px;}
._c{width:25.486275px;}
._1b{width:26.502773px;}
._9{width:27.559022px;}
._5{width:29.126360px;}
._6{width:31.079853px;}
._2c{width:32.187212px;}
._1{width:33.430326px;}
._12{width:35.872727px;}
._2b{width:36.877867px;}
._14{width:38.161267px;}
._16{width:40.563383px;}
._19{width:42.267011px;}
._11{width:44.294328px;}
._22{width:45.935490px;}
._7{width:56.361794px;}
._1d{width:110.083279px;}
._1c{width:122.086827px;}
._27{width:127.445166px;}
._28{width:154.158428px;}
._26{width:163.069452px;}
._23{width:165.516193px;}
._2a{width:1914.432371px;}
._21{width:2482.849167px;}
.fc0{color:rgb(35,31,32);}
.fs12{font-size:29.883000px;}
.fs4{font-size:35.860800px;}
.fs6{font-size:36.150600px;}
.fs3{font-size:37.854600px;}
.fse{font-size:38.307000px;}
.fs7{font-size:42.295800px;}
.fs8{font-size:42.622800px;}
.fsc{font-size:44.151000px;}
.fs9{font-size:44.830800px;}
.fs5{font-size:47.821200px;}
.fsb{font-size:50.751600px;}
.fsf{font-size:51.139800px;}
.fs10{font-size:51.199200px;}
.fs11{font-size:51.958200px;}
.fs0{font-size:53.797800px;}
.fs2{font-size:56.787600px;}
.fsd{font-size:65.344200px;}
.fsa{font-size:71.999400px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y5c{bottom:60.888150px;}
.yc1{bottom:62.418900px;}
.y1a5{bottom:66.160650px;}
.y5b{bottom:89.291436px;}
.yc0{bottom:89.608766px;}
.y12b{bottom:89.614005px;}
.y9c{bottom:89.625803px;}
.yef{bottom:89.628571px;}
.y33{bottom:89.792732px;}
.y5a{bottom:102.727997px;}
.ybf{bottom:106.021803px;}
.y12a{bottom:106.027041px;}
.y9b{bottom:106.038839px;}
.yee{bottom:106.041607px;}
.y32{bottom:106.205768px;}
.y59{bottom:119.140233px;}
.ybe{bottom:122.434839px;}
.y129{bottom:122.440078px;}
.y9a{bottom:122.451875px;}
.yed{bottom:122.454643px;}
.y31{bottom:122.618804px;}
.y58{bottom:135.637351px;}
.ybd{bottom:138.933056px;}
.y128{bottom:138.938295px;}
.y99{bottom:138.950092px;}
.yec{bottom:138.952860px;}
.y30{bottom:139.117022px;}
.y57{bottom:152.049587px;}
.ybc{bottom:155.346092px;}
.y127{bottom:155.351331px;}
.y98{bottom:155.363128px;}
.yeb{bottom:155.365896px;}
.y2f{bottom:155.530058px;}
.y56{bottom:165.486149px;}
.ybb{bottom:171.759128px;}
.y126{bottom:171.764367px;}
.y97{bottom:171.776165px;}
.yea{bottom:171.778933px;}
.y2e{bottom:171.943094px;}
.y55{bottom:178.922711px;}
.yba{bottom:188.257346px;}
.y125{bottom:188.262585px;}
.y96{bottom:188.274382px;}
.ye7{bottom:188.276328px;}
.ye9{bottom:188.277150px;}
.y2d{bottom:188.441312px;}
.y54{bottom:192.444155px;}
.ye8{bottom:194.569950px;}
.yb9{bottom:204.670382px;}
.y124{bottom:204.675621px;}
.y95{bottom:204.687418px;}
.ye6{bottom:204.689364px;}
.y2c{bottom:204.854348px;}
.y53{bottom:208.856391px;}
.yb8{bottom:221.083418px;}
.y123{bottom:221.088657px;}
.ye5{bottom:221.102400px;}
.y2b{bottom:221.267384px;}
.y52{bottom:222.292952px;}
.y94{bottom:228.583640px;}
.yb7{bottom:237.496454px;}
.y122{bottom:237.501693px;}
.ye3{bottom:237.513510px;}
.y2a{bottom:237.680420px;}
.y51{bottom:238.705188px;}
.ye4{bottom:243.892800px;}
.y50{bottom:252.141750px;}
.yb6{bottom:253.994672px;}
.y121{bottom:253.999910px;}
.ye2{bottom:254.011728px;}
.y29{bottom:254.178637px;}
.y165{bottom:262.601661px;}
.y1a4{bottom:262.947979px;}
.yb5{bottom:270.407708px;}
.y120{bottom:270.412947px;}
.y93{bottom:270.423324px;}
.ye1{bottom:270.424764px;}
.y28{bottom:270.591673px;}
.y164{bottom:274.507601px;}
.y1a3{bottom:274.937976px;}
.y4e{bottom:284.180946px;}
.y163{bottom:286.497598px;}
.yb4{bottom:286.820744px;}
.y11f{bottom:286.825983px;}
.y92{bottom:286.836360px;}
.ye0{bottom:286.837800px;}
.y1a2{bottom:286.843916px;}
.y27{bottom:287.004709px;}
.y4f{bottom:290.494500px;}
.y1a1{bottom:298.833913px;}
.y4d{bottom:300.593982px;}
.y162{bottom:301.464361px;}
.yb3{bottom:303.318961px;}
.y11e{bottom:303.324200px;}
.y91{bottom:303.334578px;}
.y26{bottom:303.502927px;}
.y1a0{bottom:310.823911px;}
.y161{bottom:313.370300px;}
.y4c{bottom:317.092200px;}
.yb2{bottom:319.731997px;}
.y11d{bottom:319.737236px;}
.y90{bottom:319.747614px;}
.y25{bottom:319.915963px;}
.y19f{bottom:326.470981px;}
.y155{bottom:326.806200px;}
.y153{bottom:326.808974px;}
.y160{bottom:328.337063px;}
.y154{bottom:331.823550px;}
.yb1{bottom:336.145033px;}
.y11c{bottom:336.150272px;}
.y8d{bottom:336.159060px;}
.y8f{bottom:336.160650px;}
.y24{bottom:336.328999px;}
.y19e{bottom:338.460978px;}
.y152{bottom:338.798972px;}
.y15f{bottom:340.327060px;}
.y4b{bottom:340.988422px;}
.y8e{bottom:342.453450px;}
.y151{bottom:350.788969px;}
.y15e{bottom:352.233000px;}
.yb0{bottom:352.643251px;}
.y11b{bottom:352.648490px;}
.y8c{bottom:352.657278px;}
.y23{bottom:352.827217px;}
.y19d{bottom:354.108048px;}
.y150{bottom:362.694909px;}
.y19c{bottom:366.098046px;}
.yaf{bottom:369.056287px;}
.y11a{bottom:369.061526px;}
.y8b{bottom:369.070314px;}
.y22{bottom:369.240253px;}
.y15d{bottom:372.805248px;}
.y4a{bottom:373.813074px;}
.y14f{bottom:374.684906px;}
.y19b{bottom:378.003985px;}
.yae{bottom:385.469323px;}
.y119{bottom:385.474562px;}
.y88{bottom:385.482733px;}
.y8a{bottom:385.483350px;}
.y14e{bottom:386.590846px;}
.y19a{bottom:389.993983px;}
.y49{bottom:390.311292px;}
.y89{bottom:391.776300px;}
.y21{bottom:393.136475px;}
.y14d{bottom:398.580844px;}
.y85{bottom:401.961730px;}
.yad{bottom:401.967541px;}
.y118{bottom:401.972779px;}
.y87{bottom:401.980950px;}
.y199{bottom:405.726231px;}
.y48{bottom:406.724328px;}
.y86{bottom:408.273900px;}
.y15c{bottom:408.692172px;}
.y14c{bottom:410.486783px;}
.y198{bottom:417.632171px;}
.y84{bottom:418.374766px;}
.yac{bottom:418.380577px;}
.y117{bottom:418.385816px;}
.y14b{bottom:422.476781px;}
.y47{bottom:423.137364px;}
.y15b{bottom:425.105208px;}
.y197{bottom:429.622168px;}
.y14a{bottom:434.466778px;}
.y83{bottom:434.787802px;}
.yab{bottom:434.793613px;}
.y116{bottom:434.798852px;}
.y46{bottom:439.635581px;}
.y15a{bottom:441.518244px;}
.y196{bottom:441.528108px;}
.y20{bottom:445.605378px;}
.y149{bottom:446.372718px;}
.y82{bottom:451.200838px;}
.yaa{bottom:451.206649px;}
.y115{bottom:451.211888px;}
.y45{bottom:456.048617px;}
.y195{bottom:457.260357px;}
.y159{bottom:458.016462px;}
.y148{bottom:458.362715px;}
.y1f{bottom:462.018414px;}
.y81{bottom:467.699055px;}
.ya9{bottom:467.704866px;}
.y114{bottom:467.710105px;}
.y194{bottom:469.166296px;}
.y147{bottom:470.268655px;}
.y44{bottom:472.461654px;}
.y158{bottom:474.429498px;}
.y1e{bottom:478.431450px;}
.y193{bottom:481.156294px;}
.y146{bottom:482.258653px;}
.y80{bottom:484.112091px;}
.ya8{bottom:484.117902px;}
.y113{bottom:484.123141px;}
.y43{bottom:488.874690px;}
.y157{bottom:490.842534px;}
.y192{bottom:493.146291px;}
.y145{bottom:494.248650px;}
.y7f{bottom:500.525128px;}
.ya7{bottom:500.530939px;}
.y112{bottom:500.536177px;}
.y42{bottom:505.372907px;}
.y1d{bottom:505.382119px;}
.y191{bottom:508.793361px;}
.y156{bottom:514.738756px;}
.y7e{bottom:517.023345px;}
.ya6{bottom:517.029156px;}
.y111{bottom:517.034395px;}
.y13e{bottom:519.767801px;}
.y190{bottom:520.783359px;}
.y41{bottom:521.785943px;}
.y1c{bottom:521.795155px;}
.y18f{bottom:532.689298px;}
.y7d{bottom:533.436381px;}
.ya5{bottom:533.442192px;}
.y110{bottom:533.447431px;}
.y40{bottom:538.198979px;}
.y1b{bottom:538.208191px;}
.y139{bottom:539.057100px;}
.y18e{bottom:544.679296px;}
.y7c{bottom:549.849417px;}
.ya4{bottom:549.855228px;}
.y10f{bottom:549.860467px;}
.y3f{bottom:554.697197px;}
.y1a{bottom:554.706409px;}
.y18d{bottom:556.585236px;}
.y13a{bottom:565.269810px;}
.y7b{bottom:566.347635px;}
.ya3{bottom:566.353446px;}
.y10e{bottom:566.358685px;}
.y3e{bottom:571.110233px;}
.y19{bottom:571.119445px;}
.y18c{bottom:572.317484px;}
.y7a{bottom:582.760671px;}
.ya2{bottom:582.766482px;}
.y10d{bottom:582.771721px;}
.y18b{bottom:584.223424px;}
.y3d{bottom:587.523269px;}
.y18{bottom:587.532481px;}
.y13b{bottom:591.225245px;}
.y18a{bottom:596.213421px;}
.y79{bottom:599.173707px;}
.ya1{bottom:599.179518px;}
.y10c{bottom:599.184757px;}
.y3c{bottom:604.021486px;}
.y17{bottom:604.030698px;}
.y189{bottom:608.203419px;}
.y78{bottom:615.586743px;}
.ya0{bottom:615.592554px;}
.y10b{bottom:615.597793px;}
.y13c{bottom:617.385476px;}
.y3b{bottom:620.434523px;}
.y16{bottom:620.443735px;}
.y188{bottom:623.085003px;}
.y77{bottom:632.084960px;}
.y9f{bottom:632.090771px;}
.y10a{bottom:632.096010px;}
.y187{bottom:635.075000px;}
.y3a{bottom:636.847559px;}
.y15{bottom:636.856771px;}
.y13d{bottom:643.598187px;}
.y138{bottom:645.435000px;}
.y186{bottom:647.064998px;}
.y76{bottom:648.497997px;}
.y9e{bottom:648.503808px;}
.y109{bottom:648.509046px;}
.y39{bottom:653.345776px;}
.y14{bottom:653.354988px;}
.y137{bottom:658.206482px;}
.y185{bottom:662.712068px;}
.y75{bottom:664.911033px;}
.y9d{bottom:664.916844px;}
.y108{bottom:664.922083px;}
.y38{bottom:669.758812px;}
.y13{bottom:669.768024px;}
.y184{bottom:674.702065px;}
.y74{bottom:681.409250px;}
.y105{bottom:681.412577px;}
.y107{bottom:681.420300px;}
.y37{bottom:686.171848px;}
.y12{bottom:686.181060px;}
.y183{bottom:686.608005px;}
.y106{bottom:687.713250px;}
.y73{bottom:697.822286px;}
.y104{bottom:697.825613px;}
.y144{bottom:698.142379px;}
.y182{bottom:698.598002px;}
.y36{bottom:702.584884px;}
.y11{bottom:702.594096px;}
.y181{bottom:710.503942px;}
.y72{bottom:714.235322px;}
.y103{bottom:714.238649px;}
.y13f{bottom:717.382500px;}
.y35{bottom:719.083102px;}
.y10{bottom:719.092314px;}
.ydf{bottom:722.410191px;}
.y180{bottom:726.236191px;}
.y71{bottom:730.733540px;}
.y102{bottom:730.736867px;}
.yde{bottom:734.316131px;}
.y34{bottom:735.496138px;}
.yf{bottom:735.505350px;}
.y17f{bottom:738.226188px;}
.y140{bottom:744.153963px;}
.ydd{bottom:746.306128px;}
.y70{bottom:747.146576px;}
.y101{bottom:747.149903px;}
.y17e{bottom:750.132128px;}
.ydc{bottom:758.296126px;}
.y17d{bottom:762.122125px;}
.y6f{bottom:763.559612px;}
.y100{bottom:763.562939px;}
.ydb{bottom:770.202065px;}
.y141{bottom:770.874766px;}
.y17c{bottom:777.769195px;}
.y6e{bottom:780.057829px;}
.yff{bottom:780.061156px;}
.yda{bottom:782.192063px;}
.ye{bottom:788.229750px;}
.y17b{bottom:789.759193px;}
.yd9{bottom:794.098003px;}
.yd{bottom:794.267550px;}
.y6d{bottom:796.470866px;}
.yfe{bottom:796.474192px;}
.y142{bottom:797.646228px;}
.y17a{bottom:801.665132px;}
.yc{bottom:803.197052px;}
.yd8{bottom:806.088000px;}
.y6c{bottom:812.883902px;}
.yfd{bottom:812.887228px;}
.y179{bottom:813.655130px;}
.yb{bottom:818.163600px;}
.ya{bottom:824.116350px;}
.y143{bottom:824.417691px;}
.y6b{bottom:829.296938px;}
.yfc{bottom:829.300265px;}
.y178{bottom:829.302200px;}
.yd0{bottom:830.822480px;}
.y9{bottom:833.045852px;}
.y177{bottom:841.292197px;}
.y6a{bottom:845.795155px;}
.yfb{bottom:845.798482px;}
.y136{bottom:846.516450px;}
.y8{bottom:848.012400px;}
.ycf{bottom:852.173400px;}
.y176{bottom:853.282195px;}
.y7{bottom:853.965150px;}
.y69{bottom:862.208191px;}
.yfa{bottom:862.211518px;}
.y5{bottom:867.486450px;}
.y175{bottom:868.163779px;}
.yc2{bottom:868.368900px;}
.y6{bottom:873.779250px;}
.y68{bottom:878.621227px;}
.yf9{bottom:878.624554px;}
.y174{bottom:880.153776px;}
.yc3{bottom:882.470345px;}
.y173{bottom:892.143774px;}
.y133{bottom:893.087342px;}
.y67{bottom:895.119445px;}
.yf8{bottom:895.122772px;}
.yc4{bottom:896.570887px;}
.y172{bottom:904.049713px;}
.yc5{bottom:910.785303px;}
.y66{bottom:911.532481px;}
.yf7{bottom:911.535808px;}
.y12d{bottom:912.383100px;}
.y4{bottom:917.402016px;}
.y171{bottom:919.016476px;}
.yc6{bottom:924.885844px;}
.y65{bottom:927.945517px;}
.yf6{bottom:927.948844px;}
.y170{bottom:930.922416px;}
.yd1{bottom:932.021250px;}
.y12e{bottom:935.496647px;}
.yc7{bottom:938.986386px;}
.y16f{bottom:942.912413px;}
.y64{bottom:944.443735px;}
.y3{bottom:947.252058px;}
.yf5{bottom:951.845066px;}
.yc8{bottom:953.086927px;}
.y16e{bottom:957.879176px;}
.y12f{bottom:958.610195px;}
.y63{bottom:960.856771px;}
.y134{bottom:965.296350px;}
.yc9{bottom:967.244406px;}
.y16d{bottom:969.785115px;}
.y2{bottom:977.102100px;}
.y62{bottom:977.269807px;}
.yf4{bottom:977.271714px;}
.yca{bottom:981.344948px;}
.y130{bottom:981.723742px;}
.y16c{bottom:981.775113px;}
.yd6{bottom:992.503121px;}
.y61{bottom:993.682843px;}
.yf3{bottom:993.684750px;}
.ycb{bottom:995.445489px;}
.y16b{bottom:996.741875px;}
.yd4{bottom:997.315670px;}
.yf2{bottom:1000.062750px;}
.y131{bottom:1004.777657px;}
.y16a{bottom:1008.647815px;}
.ycc{bottom:1009.546031px;}
.y60{bottom:1010.181060px;}
.yd7{bottom:1013.002650px;}
.yd2{bottom:1015.098150px;}
.y169{bottom:1020.638933px;}
.ycd{bottom:1023.760447px;}
.y5f{bottom:1026.594096px;}
.y132{bottom:1027.889935px;}
.y168{bottom:1035.605696px;}
.yce{bottom:1037.860988px;}
.y5e{bottom:1043.007133px;}
.y167{bottom:1047.511636px;}
.yd5{bottom:1051.624716px;}
.y135{bottom:1052.915550px;}
.y12c{bottom:1053.636300px;}
.y166{bottom:1059.501633px;}
.yf0{bottom:1059.502571px;}
.y5d{bottom:1059.505350px;}
.yd3{bottom:1062.497913px;}
.yf1{bottom:1065.798150px;}
.y1{bottom:1089.779250px;}
.h1b{height:22.173186px;}
.h9{height:25.211164px;}
.h15{height:25.933839px;}
.hd{height:26.642992px;}
.h5{height:26.644574px;}
.h4{height:28.088113px;}
.hf{height:28.855636px;}
.h13{height:30.464190px;}
.he{height:31.172005px;}
.h10{height:33.264454px;}
.h12{height:34.358833px;}
.h16{height:34.621645px;}
.h18{height:34.661858px;}
.h1a{height:35.175701px;}
.ha{height:35.483330px;}
.hc{height:35.531152px;}
.h17{height:37.733810px;}
.h19{height:38.293193px;}
.h1{height:39.917968px;}
.h6{height:39.971765px;}
.h8{height:41.000647px;}
.h7{height:41.852461px;}
.h3{height:42.136399px;}
.hb{height:42.193187px;}
.h14{height:48.743594px;}
.h11{height:49.679586px;}
.h2{height:79.836826px;}
.h0{height:1188.000000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x2{left:74.749500px;}
.xd{left:80.362200px;}
.x41{left:85.974750px;}
.x11{left:88.951917px;}
.xe{left:92.692800px;}
.x17{left:95.157008px;}
.x3d{left:98.739900px;}
.x3b{left:101.846850px;}
.x39{left:112.522834px;}
.x1a{left:120.160650px;}
.x1b{left:126.028350px;}
.x40{left:158.606485px;}
.x3f{left:159.624379px;}
.x3a{left:160.625201px;}
.x3{left:167.357400px;}
.x45{left:174.415835px;}
.x1c{left:175.946400px;}
.x4{left:177.732300px;}
.x1d{left:181.899150px;}
.x10{left:190.743690px;}
.x3c{left:196.524450px;}
.x3e{left:202.784336px;}
.x46{left:205.965606px;}
.xf{left:208.516789px;}
.x21{left:223.568148px;}
.x44{left:235.729050px;}
.x42{left:238.365300px;}
.x43{left:245.763750px;}
.x5{left:262.686600px;}
.x6{left:273.061350px;}
.x1e{left:275.952600px;}
.x7{left:368.985750px;}
.x8{left:379.360500px;}
.x2e{left:391.606200px;}
.x1f{left:401.470800px;}
.x20{left:407.338500px;}
.x2d{left:427.492800px;}
.x18{left:429.788850px;}
.x19{left:435.656550px;}
.x13{left:451.303655px;}
.x9{left:456.151050px;}
.x22{left:457.596946px;}
.x16{left:463.294822px;}
.x12{left:465.504814px;}
.xa{left:466.525800px;}
.x2c{left:468.821850px;}
.x23{left:471.795265px;}
.x24{left:474.445950px;}
.x47{left:475.537799px;}
.x1{left:489.911700px;}
.x25{left:517.768500px;}
.x27{left:546.762750px;}
.xb{left:558.793500px;}
.xc{left:564.916350px;}
.x28{left:579.892064px;}
.x33{left:580.904855px;}
.x14{left:590.427596px;}
.x26{left:624.800137px;}
.x38{left:637.284900px;}
.x34{left:655.313250px;}
.x35{left:664.497450px;}
.x29{left:666.818893px;}
.x2b{left:673.897050px;}
.x2a{left:687.545839px;}
.x36{left:708.207750px;}
.x37{left:723.344700px;}
.x2f{left:760.846950px;}
.x30{left:772.497450px;}
.x31{left:784.402950px;}
.x32{left:792.736800px;}
.x15{left:801.836100px;}
@media print{
.v1{vertical-align:-18.494400pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-3.367770pt;}
.ls21{letter-spacing:-2.685114pt;}
.ls24{letter-spacing:-1.136153pt;}
.ls23{letter-spacing:-1.062257pt;}
.ls1e{letter-spacing:-0.102152pt;}
.ls1d{letter-spacing:-0.078491pt;}
.ls1f{letter-spacing:-0.068101pt;}
.ls10{letter-spacing:-0.064268pt;}
.ls1c{letter-spacing:-0.045113pt;}
.ls11{letter-spacing:-0.037887pt;}
.lsf{letter-spacing:-0.035347pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003365pt;}
.ls16{letter-spacing:0.003985pt;}
.ls18{letter-spacing:0.019925pt;}
.lsa{letter-spacing:0.037596pt;}
.ls20{letter-spacing:0.045458pt;}
.lsb{letter-spacing:0.128535pt;}
.ls9{letter-spacing:0.138176pt;}
.ls7{letter-spacing:0.161529pt;}
.ls15{letter-spacing:0.251052pt;}
.ls4{letter-spacing:0.257437pt;}
.ls1b{letter-spacing:3.478176pt;}
.ls13{letter-spacing:4.696215pt;}
.ls17{letter-spacing:6.507440pt;}
.lsc{letter-spacing:6.806312pt;}
.lsd{letter-spacing:6.810297pt;}
.ls6{letter-spacing:8.116841pt;}
.ls1{letter-spacing:8.298561pt;}
.ls12{letter-spacing:8.419708pt;}
.ls5{letter-spacing:8.601428pt;}
.ls8{letter-spacing:10.438823pt;}
.ls0{letter-spacing:11.621614pt;}
.ls2{letter-spacing:16.325839pt;}
.ls19{letter-spacing:16.485780pt;}
.lse{letter-spacing:24.214233pt;}
.ls14{letter-spacing:395.771333pt;}
.ws90{word-spacing:-24.264711pt;}
.ws12a{word-spacing:-15.999867pt;}
.wscd{word-spacing:-9.071391pt;}
.ws68{word-spacing:-8.651906pt;}
.wsd9{word-spacing:-6.846161pt;}
.wscf{word-spacing:-0.160669pt;}
.ws7e{word-spacing:-0.050478pt;}
.ws18a{word-spacing:-0.043835pt;}
.ws5a{word-spacing:-0.042508pt;}
.ws191{word-spacing:-0.039850pt;}
.ws5c{word-spacing:0.000000pt;}
.wsde{word-spacing:0.003213pt;}
.wsd0{word-spacing:0.032134pt;}
.ws182{word-spacing:6.124884pt;}
.ws192{word-spacing:6.356011pt;}
.ws136{word-spacing:6.599094pt;}
.ws132{word-spacing:6.623004pt;}
.wsd6{word-spacing:6.678793pt;}
.wsd8{word-spacing:6.702703pt;}
.ws18b{word-spacing:6.790372pt;}
.ws175{word-spacing:6.814282pt;}
.ws17f{word-spacing:6.838191pt;}
.ws141{word-spacing:6.878041pt;}
.ws134{word-spacing:6.893981pt;}
.ws19c{word-spacing:6.897966pt;}
.ws16b{word-spacing:6.921876pt;}
.ws16d{word-spacing:6.933830pt;}
.ws170{word-spacing:7.013530pt;}
.ws140{word-spacing:7.025484pt;}
.ws130{word-spacing:7.248642pt;}
.ws8a{word-spacing:7.339482pt;}
.ws8c{word-spacing:7.460629pt;}
.wsf1{word-spacing:7.566632pt;}
.ws44{word-spacing:7.586823pt;}
.ws2e{word-spacing:7.632253pt;}
.ws8b{word-spacing:7.702922pt;}
.wsa9{word-spacing:7.733209pt;}
.ws11e{word-spacing:7.763496pt;}
.ws149{word-spacing:8.076459pt;}
.wse2{word-spacing:8.081506pt;}
.ws66{word-spacing:8.101698pt;}
.ws11a{word-spacing:8.137032pt;}
.ws19b{word-spacing:8.149243pt;}
.wsb5{word-spacing:8.162271pt;}
.wsb8{word-spacing:8.167319pt;}
.wsb6{word-spacing:8.268275pt;}
.wsee{word-spacing:8.328848pt;}
.wsa7{word-spacing:8.354087pt;}
.wsb9{word-spacing:8.359135pt;}
.ws67{word-spacing:8.364183pt;}
.ws69{word-spacing:8.369230pt;}
.wsac{word-spacing:8.374278pt;}
.ws8f{word-spacing:8.379326pt;}
.ws32{word-spacing:8.384374pt;}
.ws112{word-spacing:8.394469pt;}
.wse4{word-spacing:8.449995pt;}
.ws87{word-spacing:8.455043pt;}
.wse7{word-spacing:8.480282pt;}
.ws99{word-spacing:8.490377pt;}
.wsb4{word-spacing:8.576190pt;}
.ws86{word-spacing:8.586285pt;}
.ws166{word-spacing:8.641811pt;}
.ws43{word-spacing:8.697336pt;}
.ws89{word-spacing:8.757910pt;}
.ws168{word-spacing:8.782852pt;}
.ws27{word-spacing:8.838674pt;}
.ws85{word-spacing:8.843722pt;}
.ws84{word-spacing:8.874009pt;}
.ws15e{word-spacing:8.904296pt;}
.ws22{word-spacing:8.964869pt;}
.wse0{word-spacing:8.990108pt;}
.ws82{word-spacing:9.005251pt;}
.wsd5{word-spacing:9.009995pt;}
.ws81{word-spacing:9.111255pt;}
.ws83{word-spacing:9.186972pt;}
.ws193{word-spacing:9.396536pt;}
.ws14d{word-spacing:9.398979pt;}
.wsba{word-spacing:9.404027pt;}
.ws18e{word-spacing:9.432400pt;}
.wsa5{word-spacing:9.489839pt;}
.wsa1{word-spacing:9.540317pt;}
.ws162{word-spacing:9.570604pt;}
.ws171{word-spacing:9.591799pt;}
.ws174{word-spacing:9.711348pt;}
.ws16c{word-spacing:9.806987pt;}
.wsed{word-spacing:9.807849pt;}
.ws16a{word-spacing:9.814956pt;}
.ws176{word-spacing:9.822926pt;}
.ws35{word-spacing:9.838136pt;}
.wsdf{word-spacing:9.843184pt;}
.ws18d{word-spacing:9.894656pt;}
.ws14e{word-spacing:9.908805pt;}
.ws16f{word-spacing:9.918565pt;}
.ws143{word-spacing:9.922550pt;}
.ws19e{word-spacing:9.938490pt;}
.ws185{word-spacing:9.954430pt;}
.ws7c{word-spacing:9.959283pt;}
.ws17e{word-spacing:9.998265pt;}
.ws94{word-spacing:10.045095pt;}
.wsdc{word-spacing:10.073979pt;}
.ws127{word-spacing:10.095573pt;}
.wsa6{word-spacing:10.105669pt;}
.ws1e{word-spacing:10.108339pt;}
.ws198{word-spacing:10.109844pt;}
.ws142{word-spacing:10.141723pt;}
.ws10c{word-spacing:10.226816pt;}
.ws19a{word-spacing:10.325031pt;}
.ws95{word-spacing:10.353010pt;}
.ws29{word-spacing:10.373202pt;}
.wsc0{word-spacing:10.383297pt;}
.wsbf{word-spacing:10.453966pt;}
.ws16e{word-spacing:10.603979pt;}
.wseb{word-spacing:10.615495pt;}
.ws14{word-spacing:10.711403pt;}
.wsc8{word-spacing:10.726547pt;}
.wsdb{word-spacing:10.727512pt;}
.ws18f{word-spacing:10.739467pt;}
.wsea{word-spacing:10.756833pt;}
.ws152{word-spacing:10.782072pt;}
.ws61{word-spacing:10.787120pt;}
.wse6{word-spacing:10.832550pt;}
.ws2d{word-spacing:10.913315pt;}
.ws24{word-spacing:10.938554pt;}
.ws115{word-spacing:11.019318pt;}
.ws1a1{word-spacing:11.030369pt;}
.ws148{word-spacing:11.054653pt;}
.ws100{word-spacing:11.059701pt;}
.wse8{word-spacing:11.069796pt;}
.ws15d{word-spacing:11.089987pt;}
.ws73{word-spacing:11.100083pt;}
.ws15b{word-spacing:11.211134pt;}
.ws18c{word-spacing:11.221647pt;}
.ws13b{word-spacing:11.225632pt;}
.ws28{word-spacing:11.307042pt;}
.ws21{word-spacing:11.357520pt;}
.ws15c{word-spacing:11.387807pt;}
.wsec{word-spacing:11.402950pt;}
.ws195{word-spacing:11.440820pt;}
.ws9f{word-spacing:11.524097pt;}
.wsb7{word-spacing:11.544288pt;}
.ws1a0{word-spacing:11.548414pt;}
.ws37{word-spacing:11.579623pt;}
.wse3{word-spacing:11.630100pt;}
.wsb2{word-spacing:11.680578pt;}
.ws106{word-spacing:11.685626pt;}
.ws3d{word-spacing:11.690674pt;}
.wsd1{word-spacing:11.795482pt;}
.ws104{word-spacing:11.821916pt;}
.ws169{word-spacing:11.839316pt;}
.ws164{word-spacing:11.968302pt;}
.ws105{word-spacing:11.998589pt;}
.ws97{word-spacing:12.018780pt;}
.ws63{word-spacing:12.069258pt;}
.ws3e{word-spacing:12.139927pt;}
.ws92{word-spacing:12.170214pt;}
.ws177{word-spacing:12.229842pt;}
.ws102{word-spacing:12.261074pt;}
.ws52{word-spacing:12.267732pt;}
.ws4e{word-spacing:12.271169pt;}
.ws57{word-spacing:12.301738pt;}
.ws178{word-spacing:12.341421pt;}
.ws199{word-spacing:12.361346pt;}
.ws59{word-spacing:12.365500pt;}
.ws55{word-spacing:12.374001pt;}
.ws6c{word-spacing:12.387268pt;}
.wscc{word-spacing:12.408007pt;}
.ws128{word-spacing:12.412258pt;}
.ws163{word-spacing:12.417555pt;}
.ws11d{word-spacing:12.422603pt;}
.ws50{word-spacing:12.446264pt;}
.ws58{word-spacing:12.450515pt;}
.ws98{word-spacing:12.478129pt;}
.ws147{word-spacing:12.483176pt;}
.ws15f{word-spacing:12.518511pt;}
.wsaf{word-spacing:12.533654pt;}
.wsf4{word-spacing:12.594228pt;}
.ws1d{word-spacing:12.604323pt;}
.wscb{word-spacing:12.614419pt;}
.ws173{word-spacing:12.616383pt;}
.ws56{word-spacing:12.650301pt;}
.ws4b{word-spacing:12.750709pt;}
.ws34{word-spacing:12.806235pt;}
.ws64{word-spacing:12.942525pt;}
.ws3c{word-spacing:12.993003pt;}
.ws10d{word-spacing:13.235297pt;}
.wsfe{word-spacing:13.437208pt;}
.wsd7{word-spacing:13.445255pt;}
.ws62{word-spacing:13.477590pt;}
.wsf2{word-spacing:13.492734pt;}
.ws13c{word-spacing:13.520969pt;}
.ws17d{word-spacing:13.903525pt;}
.wsb{word-spacing:13.915698pt;}
.ws17a{word-spacing:14.134653pt;}
.ws138{word-spacing:14.150593pt;}
.ws65{word-spacing:14.159042pt;}
.wsdd{word-spacing:14.173927pt;}
.wsc{word-spacing:14.212183pt;}
.wsa{word-spacing:14.274350pt;}
.wsd{word-spacing:14.279132pt;}
.ws14b{word-spacing:14.345810pt;}
.ws0{word-spacing:14.346080pt;}
.ws101{word-spacing:14.401335pt;}
.ws15{word-spacing:14.406383pt;}
.ws150{word-spacing:14.411431pt;}
.ws144{word-spacing:14.413028pt;}
.ws156{word-spacing:14.461909pt;}
.ws1a{word-spacing:14.527530pt;}
.ws51{word-spacing:14.541896pt;}
.ws9{word-spacing:14.542143pt;}
.ws6a{word-spacing:14.557817pt;}
.wsad{word-spacing:14.689059pt;}
.ws3f{word-spacing:14.840493pt;}
.ws189{word-spacing:14.851946pt;}
.ws8{word-spacing:14.951544pt;}
.ws6{word-spacing:14.976783pt;}
.ws36{word-spacing:14.991926pt;}
.ws117{word-spacing:15.012118pt;}
.ws42{word-spacing:15.022213pt;}
.ws7{word-spacing:15.042404pt;}
.ws179{word-spacing:15.063149pt;}
.ws53{word-spacing:15.128502pt;}
.ws4{word-spacing:15.133264pt;}
.wsae{word-spacing:15.208981pt;}
.ws5{word-spacing:15.279650pt;}
.ws48{word-spacing:15.284698pt;}
.ws11{word-spacing:15.365463pt;}
.ws186{word-spacing:15.385931pt;}
.ws196{word-spacing:15.469615pt;}
.ws7b{word-spacing:15.627948pt;}
.ws12f{word-spacing:15.664878pt;}
.ws12e{word-spacing:15.748562pt;}
.ws158{word-spacing:15.754142pt;}
.wsc5{word-spacing:15.850050pt;}
.ws70{word-spacing:15.925767pt;}
.ws5b{word-spacing:16.005443pt;}
.ws103{word-spacing:16.006532pt;}
.ws181{word-spacing:16.043449pt;}
.wsd4{word-spacing:16.047434pt;}
.ws190{word-spacing:16.099238pt;}
.ws16{word-spacing:16.127678pt;}
.wsd3{word-spacing:16.135103pt;}
.ws77{word-spacing:16.193300pt;}
.wse{word-spacing:16.208443pt;}
.ws1a2{word-spacing:16.326381pt;}
.wsda{word-spacing:16.374201pt;}
.wse5{word-spacing:16.491119pt;}
.ws6e{word-spacing:16.687983pt;}
.wsf7{word-spacing:16.859607pt;}
.ws13e{word-spacing:16.967960pt;}
.ws39{word-spacing:17.066567pt;}
.ws109{word-spacing:17.122092pt;}
.ws75{word-spacing:17.137236pt;}
.ws131{word-spacing:17.179163pt;}
.ws49{word-spacing:17.318956pt;}
.ws2c{word-spacing:17.384577pt;}
.ws7a{word-spacing:17.440103pt;}
.ws114{word-spacing:17.546106pt;}
.ws184{word-spacing:17.788861pt;}
.ws54{word-spacing:17.840496pt;}
.wse1{word-spacing:17.924690pt;}
.ws108{word-spacing:17.960025pt;}
.ws180{word-spacing:18.012019pt;}
.ws11f{word-spacing:18.035742pt;}
.ws26{word-spacing:18.045837pt;}
.ws165{word-spacing:18.071076pt;}
.ws3a{word-spacing:18.212414pt;}
.ws135{word-spacing:18.310891pt;}
.wsb0{word-spacing:18.490043pt;}
.ws159{word-spacing:18.596046pt;}
.wsf8{word-spacing:18.656620pt;}
.wsef{word-spacing:18.676811pt;}
.ws1a3{word-spacing:18.781116pt;}
.wsca{word-spacing:18.903961pt;}
.wsf6{word-spacing:18.989773pt;}
.wsc9{word-spacing:19.131111pt;}
.ws5d{word-spacing:19.252258pt;}
.ws9c{word-spacing:19.302736pt;}
.ws13d{word-spacing:19.362921pt;}
.ws12d{word-spacing:19.374876pt;}
.ws118{word-spacing:19.439026pt;}
.ws79{word-spacing:19.484457pt;}
.ws157{word-spacing:19.499600pt;}
.wsab{word-spacing:19.539982pt;}
.wsf3{word-spacing:19.610651pt;}
.ws188{word-spacing:19.892920pt;}
.ws2b{word-spacing:20.009426pt;}
.ws13f{word-spacing:20.056304pt;}
.ws1b{word-spacing:20.191147pt;}
.wsaa{word-spacing:20.206290pt;}
.ws137{word-spacing:20.287431pt;}
.ws41{word-spacing:20.372867pt;}
.ws1c{word-spacing:20.438488pt;}
.wsf0{word-spacing:20.443536pt;}
.ws121{word-spacing:20.584874pt;}
.ws5e{word-spacing:20.645447pt;}
.wsa2{word-spacing:20.736308pt;}
.wse9{word-spacing:20.741355pt;}
.ws71{word-spacing:20.751451pt;}
.ws172{word-spacing:20.913070pt;}
.ws107{word-spacing:21.029079pt;}
.ws6d{word-spacing:21.054318pt;}
.ws146{word-spacing:21.059366pt;}
.ws14f{word-spacing:21.236039pt;}
.ws155{word-spacing:21.342042pt;}
.wsbb{word-spacing:21.397568pt;}
.ws6f{word-spacing:21.528810pt;}
.ws2a{word-spacing:21.655005pt;}
.wsa4{word-spacing:22.003302pt;}
.ws9d{word-spacing:22.179975pt;}
.wsc1{word-spacing:22.250644pt;}
.ws6b{word-spacing:22.255691pt;}
.wsa0{word-spacing:22.275883pt;}
.ws30{word-spacing:22.482842pt;}
.ws151{word-spacing:22.543415pt;}
.ws9a{word-spacing:22.664562pt;}
.ws119{word-spacing:22.780661pt;}
.wsfd{word-spacing:22.967429pt;}
.ws145{word-spacing:23.098672pt;}
.ws11b{word-spacing:23.118863pt;}
.ws197{word-spacing:23.152618pt;}
.ws4f{word-spacing:23.328244pt;}
.ws116{word-spacing:23.386396pt;}
.ws1f{word-spacing:23.441921pt;}
.ws25{word-spacing:23.457065pt;}
.ws20{word-spacing:23.517638pt;}
.wsd2{word-spacing:23.598933pt;}
.ws19f{word-spacing:23.826076pt;}
.ws74{word-spacing:23.911365pt;}
.ws91{word-spacing:23.931557pt;}
.ws10b{word-spacing:24.118325pt;}
.ws125{word-spacing:24.148611pt;}
.wsa3{word-spacing:24.194041pt;}
.ws4d{word-spacing:24.395953pt;}
.ws3b{word-spacing:24.517100pt;}
.ws17{word-spacing:24.658438pt;}
.ws17c{word-spacing:24.690812pt;}
.ws124{word-spacing:24.724059pt;}
.ws31{word-spacing:24.900732pt;}
.ws2f{word-spacing:24.971401pt;}
.ws33{word-spacing:25.102643pt;}
.ws8e{word-spacing:25.228838pt;}
.ws13a{word-spacing:25.256676pt;}
.ws10e{word-spacing:25.294459pt;}
.wsbe{word-spacing:25.329793pt;}
.ws139{word-spacing:25.531639pt;}
.ws23{word-spacing:25.829524pt;}
.ws161{word-spacing:25.905241pt;}
.ws154{word-spacing:26.379733pt;}
.ws19{word-spacing:26.420115pt;}
.ws10f{word-spacing:26.485737pt;}
.wsc6{word-spacing:26.556406pt;}
.ws8d{word-spacing:26.571549pt;}
.ws78{word-spacing:26.874416pt;}
.ws12{word-spacing:27.046041pt;}
.ws19d{word-spacing:27.153517pt;}
.ws133{word-spacing:27.237202pt;}
.ws15a{word-spacing:27.283287pt;}
.ws183{word-spacing:27.316901pt;}
.ws93{word-spacing:27.621489pt;}
.wsfa{word-spacing:27.682062pt;}
.ws4a{word-spacing:27.747683pt;}
.ws14c{word-spacing:27.889021pt;}
.wsf5{word-spacing:27.959690pt;}
.ws76{word-spacing:28.126267pt;}
.ws11c{word-spacing:28.222175pt;}
.ws10a{word-spacing:28.267605pt;}
.wsbc{word-spacing:28.292844pt;}
.wsf9{word-spacing:28.353418pt;}
.ws194{word-spacing:28.444644pt;}
.ws2{word-spacing:28.510761pt;}
.ws1{word-spacing:28.615967pt;}
.ws3{word-spacing:28.721172pt;}
.ws122{word-spacing:28.838005pt;}
.wsc2{word-spacing:29.256972pt;}
.ws187{word-spacing:29.285471pt;}
.wsa8{word-spacing:29.362975pt;}
.ws17b{word-spacing:29.656072pt;}
.wsb3{word-spacing:29.792037pt;}
.ws38{word-spacing:29.953566pt;}
.ws18{word-spacing:30.049474pt;}
.ws126{word-spacing:30.296816pt;}
.ws13{word-spacing:30.523966pt;}
.wsbd{word-spacing:30.534062pt;}
.ws47{word-spacing:30.912646pt;}
.ws9e{word-spacing:31.074175pt;}
.ws14a{word-spacing:31.619336pt;}
.ws113{word-spacing:31.881821pt;}
.ws60{word-spacing:32.204879pt;}
.ws10{word-spacing:32.482507pt;}
.ws80{word-spacing:32.734897pt;}
.ws7f{word-spacing:32.820709pt;}
.wsc3{word-spacing:32.861091pt;}
.ws4c{word-spacing:32.916617pt;}
.ws7d{word-spacing:33.057955pt;}
.ws160{word-spacing:33.552638pt;}
.ws111{word-spacing:33.572829pt;}
.wsb1{word-spacing:34.789346pt;}
.wsf{word-spacing:34.809537pt;}
.ws45{word-spacing:34.885254pt;}
.ws5f{word-spacing:35.072022pt;}
.ws9b{word-spacing:35.465749pt;}
.wsfc{word-spacing:35.551561pt;}
.wsc4{word-spacing:35.607087pt;}
.ws88{word-spacing:35.617183pt;}
.ws40{word-spacing:36.036149pt;}
.ws153{word-spacing:36.177487pt;}
.ws167{word-spacing:36.374351pt;}
.ws110{word-spacing:36.651979pt;}
.wsff{word-spacing:37.454577pt;}
.wsc7{word-spacing:37.585820pt;}
.ws123{word-spacing:38.045168pt;}
.ws46{word-spacing:38.302605pt;}
.ws96{word-spacing:39.443405pt;}
.wsfb{word-spacing:39.872467pt;}
.ws120{word-spacing:45.248360pt;}
.ws72{word-spacing:45.722852pt;}
.wsce{word-spacing:77.083626pt;}
.ws12c{word-spacing:101.962772pt;}
.ws12b{word-spacing:114.317574pt;}
.ws129{word-spacing:129.486504pt;}
._1a{margin-left:-15.794524pt;}
._24{margin-left:-11.564978pt;}
._17{margin-left:-8.833627pt;}
._20{margin-left:-6.133470pt;}
._15{margin-left:-0.943672pt;}
._1f{width:1.211428pt;}
._25{width:2.482609pt;}
._2d{width:3.453567pt;}
._0{width:4.375554pt;}
._29{width:5.917666pt;}
._18{width:7.738257pt;}
._e{width:8.687241pt;}
._8{width:10.166242pt;}
._b{width:11.317138pt;}
._10{width:12.664897pt;}
._2{width:13.595302pt;}
._3{width:14.900795pt;}
._f{width:16.132726pt;}
._4{width:17.399721pt;}
._13{width:18.293179pt;}
._a{width:19.348166pt;}
._1e{width:20.256933pt;}
._d{width:21.200704pt;}
._c{width:22.654467pt;}
._1b{width:23.558020pt;}
._9{width:24.496909pt;}
._5{width:25.890098pt;}
._6{width:27.626536pt;}
._2c{width:28.610855pt;}
._1{width:29.715845pt;}
._12{width:31.886868pt;}
._2b{width:32.780327pt;}
._14{width:33.921126pt;}
._16{width:36.056340pt;}
._19{width:37.570676pt;}
._11{width:39.372736pt;}
._22{width:40.831546pt;}
._7{width:50.099372pt;}
._1d{width:97.851803pt;}
._1c{width:108.521624pt;}
._27{width:113.284592pt;}
._28{width:137.029714pt;}
._26{width:144.950624pt;}
._23{width:147.125505pt;}
._2a{width:1701.717664pt;}
._21{width:2206.977037pt;}
.fs12{font-size:26.562667pt;}
.fs4{font-size:31.876267pt;}
.fs6{font-size:32.133867pt;}
.fs3{font-size:33.648533pt;}
.fse{font-size:34.050667pt;}
.fs7{font-size:37.596267pt;}
.fs8{font-size:37.886933pt;}
.fsc{font-size:39.245333pt;}
.fs9{font-size:39.849600pt;}
.fs5{font-size:42.507733pt;}
.fsb{font-size:45.112533pt;}
.fsf{font-size:45.457600pt;}
.fs10{font-size:45.510400pt;}
.fs11{font-size:46.185067pt;}
.fs0{font-size:47.820267pt;}
.fs2{font-size:50.477867pt;}
.fsd{font-size:58.083733pt;}
.fsa{font-size:63.999467pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:54.122800pt;}
.yc1{bottom:55.483467pt;}
.y1a5{bottom:58.809467pt;}
.y5b{bottom:79.370165pt;}
.yc0{bottom:79.652237pt;}
.y12b{bottom:79.656894pt;}
.y9c{bottom:79.667380pt;}
.yef{bottom:79.669841pt;}
.y33{bottom:79.815762pt;}
.y5a{bottom:91.313775pt;}
.ybf{bottom:94.241602pt;}
.y12a{bottom:94.246259pt;}
.y9b{bottom:94.256746pt;}
.yee{bottom:94.259206pt;}
.y32{bottom:94.405127pt;}
.y59{bottom:105.902429pt;}
.ybe{bottom:108.830968pt;}
.y129{bottom:108.835624pt;}
.y9a{bottom:108.846111pt;}
.yed{bottom:108.848571pt;}
.y31{bottom:108.994493pt;}
.y58{bottom:120.566535pt;}
.ybd{bottom:123.496050pt;}
.y128{bottom:123.500707pt;}
.y99{bottom:123.511193pt;}
.yec{bottom:123.513654pt;}
.y30{bottom:123.659575pt;}
.y57{bottom:135.155189pt;}
.ybc{bottom:138.085415pt;}
.y127{bottom:138.090072pt;}
.y98{bottom:138.100559pt;}
.yeb{bottom:138.103019pt;}
.y2f{bottom:138.248940pt;}
.y56{bottom:147.098799pt;}
.ybb{bottom:152.674781pt;}
.y126{bottom:152.679438pt;}
.y97{bottom:152.689924pt;}
.yea{bottom:152.692384pt;}
.y2e{bottom:152.838306pt;}
.y55{bottom:159.042409pt;}
.yba{bottom:167.339863pt;}
.y125{bottom:167.344520pt;}
.y96{bottom:167.355006pt;}
.ye7{bottom:167.356736pt;}
.ye9{bottom:167.357467pt;}
.y2d{bottom:167.503388pt;}
.y54{bottom:171.061471pt;}
.ye8{bottom:172.951067pt;}
.yb9{bottom:181.929228pt;}
.y124{bottom:181.933885pt;}
.y95{bottom:181.944372pt;}
.ye6{bottom:181.946101pt;}
.y2c{bottom:182.092753pt;}
.y53{bottom:185.650125pt;}
.yb8{bottom:196.518594pt;}
.y123{bottom:196.523251pt;}
.ye5{bottom:196.535467pt;}
.y2b{bottom:196.682119pt;}
.y52{bottom:197.593736pt;}
.y94{bottom:203.185458pt;}
.yb7{bottom:211.107959pt;}
.y122{bottom:211.112616pt;}
.ye3{bottom:211.123120pt;}
.y2a{bottom:211.271484pt;}
.y51{bottom:212.182390pt;}
.ye4{bottom:216.793600pt;}
.y50{bottom:224.126000pt;}
.yb6{bottom:225.773041pt;}
.y121{bottom:225.777698pt;}
.ye2{bottom:225.788203pt;}
.y29{bottom:225.936566pt;}
.y165{bottom:233.423698pt;}
.y1a4{bottom:233.731537pt;}
.yb5{bottom:240.362407pt;}
.y120{bottom:240.367064pt;}
.y93{bottom:240.376288pt;}
.ye1{bottom:240.377568pt;}
.y28{bottom:240.525932pt;}
.y164{bottom:244.006756pt;}
.y1a3{bottom:244.389312pt;}
.y4e{bottom:252.605285pt;}
.y163{bottom:254.664532pt;}
.yb4{bottom:254.951772pt;}
.y11f{bottom:254.956429pt;}
.y92{bottom:254.965654pt;}
.ye0{bottom:254.966933pt;}
.y1a2{bottom:254.972370pt;}
.y27{bottom:255.115297pt;}
.y4f{bottom:258.217333pt;}
.y1a1{bottom:265.630145pt;}
.y4d{bottom:267.194651pt;}
.y162{bottom:267.968320pt;}
.yb3{bottom:269.616854pt;}
.y11e{bottom:269.621511pt;}
.y91{bottom:269.630736pt;}
.y26{bottom:269.780380pt;}
.y1a0{bottom:276.287921pt;}
.y161{bottom:278.551378pt;}
.y4c{bottom:281.859733pt;}
.yb2{bottom:284.206220pt;}
.y11d{bottom:284.210877pt;}
.y90{bottom:284.220101pt;}
.y25{bottom:284.369745pt;}
.y19f{bottom:290.196427pt;}
.y155{bottom:290.494400pt;}
.y153{bottom:290.496866pt;}
.y160{bottom:291.855167pt;}
.y154{bottom:294.954267pt;}
.yb1{bottom:298.795585pt;}
.y11c{bottom:298.800242pt;}
.y8d{bottom:298.808054pt;}
.y8f{bottom:298.809467pt;}
.y24{bottom:298.959110pt;}
.y19e{bottom:300.854203pt;}
.y152{bottom:301.154642pt;}
.y15f{bottom:302.512942pt;}
.y4b{bottom:303.100819pt;}
.y8e{bottom:304.403067pt;}
.y151{bottom:311.812417pt;}
.y15e{bottom:313.096000pt;}
.yb0{bottom:313.460667pt;}
.y11b{bottom:313.465324pt;}
.y8c{bottom:313.473136pt;}
.y23{bottom:313.624193pt;}
.y19d{bottom:314.762710pt;}
.y150{bottom:322.395475pt;}
.y19c{bottom:325.420485pt;}
.yaf{bottom:328.050033pt;}
.y11a{bottom:328.054690pt;}
.y8b{bottom:328.062501pt;}
.y22{bottom:328.213558pt;}
.y15d{bottom:331.382443pt;}
.y4a{bottom:332.278288pt;}
.y14f{bottom:333.053250pt;}
.y19b{bottom:336.003543pt;}
.yae{bottom:342.639398pt;}
.y119{bottom:342.644055pt;}
.y88{bottom:342.651318pt;}
.y8a{bottom:342.651867pt;}
.y14e{bottom:343.636308pt;}
.y19a{bottom:346.661318pt;}
.y49{bottom:346.943370pt;}
.y89{bottom:348.245600pt;}
.y21{bottom:349.454644pt;}
.y14d{bottom:354.294083pt;}
.y85{bottom:357.299315pt;}
.yad{bottom:357.304481pt;}
.y118{bottom:357.309137pt;}
.y87{bottom:357.316400pt;}
.y199{bottom:360.645539pt;}
.y48{bottom:361.532736pt;}
.y86{bottom:362.910133pt;}
.y15c{bottom:363.281931pt;}
.y14c{bottom:364.877141pt;}
.y198{bottom:371.228596pt;}
.y84{bottom:371.888681pt;}
.yac{bottom:371.893846pt;}
.y117{bottom:371.898503pt;}
.y14b{bottom:375.534916pt;}
.y47{bottom:376.122101pt;}
.y15b{bottom:377.871296pt;}
.y197{bottom:381.886372pt;}
.y14a{bottom:386.192692pt;}
.y83{bottom:386.478046pt;}
.yab{bottom:386.483211pt;}
.y116{bottom:386.487868pt;}
.y46{bottom:390.787183pt;}
.y15a{bottom:392.460662pt;}
.y196{bottom:392.469430pt;}
.y20{bottom:396.093669pt;}
.y149{bottom:396.775749pt;}
.y82{bottom:401.067411pt;}
.yaa{bottom:401.072577pt;}
.y115{bottom:401.077234pt;}
.y45{bottom:405.376549pt;}
.y195{bottom:406.453650pt;}
.y159{bottom:407.125744pt;}
.y148{bottom:407.433525pt;}
.y1f{bottom:410.683035pt;}
.y81{bottom:415.732494pt;}
.ya9{bottom:415.737659pt;}
.y114{bottom:415.742316pt;}
.y194{bottom:417.036708pt;}
.y147{bottom:418.016582pt;}
.y44{bottom:419.965914pt;}
.y158{bottom:421.715109pt;}
.y1e{bottom:425.272400pt;}
.y193{bottom:427.694483pt;}
.y146{bottom:428.674358pt;}
.y80{bottom:430.321859pt;}
.ya8{bottom:430.327024pt;}
.y113{bottom:430.331681pt;}
.y43{bottom:434.555280pt;}
.y157{bottom:436.304475pt;}
.y192{bottom:438.352259pt;}
.y145{bottom:439.332133pt;}
.y7f{bottom:444.911224pt;}
.ya7{bottom:444.916390pt;}
.y112{bottom:444.921047pt;}
.y42{bottom:449.220362pt;}
.y1d{bottom:449.228550pt;}
.y191{bottom:452.260766pt;}
.y156{bottom:457.545561pt;}
.y7e{bottom:459.576307pt;}
.ya6{bottom:459.581472pt;}
.y111{bottom:459.586129pt;}
.y13e{bottom:462.015823pt;}
.y190{bottom:462.918541pt;}
.y41{bottom:463.809727pt;}
.y1c{bottom:463.817916pt;}
.y18f{bottom:473.501599pt;}
.y7d{bottom:474.165672pt;}
.ya5{bottom:474.170837pt;}
.y110{bottom:474.175494pt;}
.y40{bottom:478.399093pt;}
.y1b{bottom:478.407281pt;}
.y139{bottom:479.161867pt;}
.y18e{bottom:484.159374pt;}
.y7c{bottom:488.755038pt;}
.ya4{bottom:488.760203pt;}
.y10f{bottom:488.764860pt;}
.y3f{bottom:493.064175pt;}
.y1a{bottom:493.072363pt;}
.y18d{bottom:494.742432pt;}
.y13a{bottom:502.462054pt;}
.y7b{bottom:503.420120pt;}
.ya3{bottom:503.425285pt;}
.y10e{bottom:503.429942pt;}
.y3e{bottom:507.653540pt;}
.y19{bottom:507.661729pt;}
.y18c{bottom:508.726653pt;}
.y7a{bottom:518.009485pt;}
.ya2{bottom:518.014650pt;}
.y10d{bottom:518.019307pt;}
.y18b{bottom:519.309710pt;}
.y3d{bottom:522.242906pt;}
.y18{bottom:522.251094pt;}
.y13b{bottom:525.533551pt;}
.y18a{bottom:529.967486pt;}
.y79{bottom:532.598851pt;}
.ya1{bottom:532.604016pt;}
.y10c{bottom:532.608673pt;}
.y3c{bottom:536.907988pt;}
.y17{bottom:536.916176pt;}
.y189{bottom:540.625261pt;}
.y78{bottom:547.188216pt;}
.ya0{bottom:547.193381pt;}
.y10b{bottom:547.198038pt;}
.y13c{bottom:548.787090pt;}
.y3b{bottom:551.497353pt;}
.y16{bottom:551.505542pt;}
.y188{bottom:553.853336pt;}
.y77{bottom:561.853298pt;}
.y9f{bottom:561.858463pt;}
.y10a{bottom:561.863120pt;}
.y187{bottom:564.511111pt;}
.y3a{bottom:566.086719pt;}
.y15{bottom:566.094907pt;}
.y13d{bottom:572.087277pt;}
.y138{bottom:573.720000pt;}
.y186{bottom:575.168887pt;}
.y76{bottom:576.442664pt;}
.y9e{bottom:576.447829pt;}
.y109{bottom:576.452486pt;}
.y39{bottom:580.751801pt;}
.y14{bottom:580.759989pt;}
.y137{bottom:585.072429pt;}
.y185{bottom:589.077394pt;}
.y75{bottom:591.032029pt;}
.y9d{bottom:591.037194pt;}
.y108{bottom:591.041851pt;}
.y38{bottom:595.341166pt;}
.y13{bottom:595.349355pt;}
.y184{bottom:599.735169pt;}
.y74{bottom:605.697111pt;}
.y105{bottom:605.700068pt;}
.y107{bottom:605.706933pt;}
.y37{bottom:609.930532pt;}
.y12{bottom:609.938720pt;}
.y183{bottom:610.318227pt;}
.y106{bottom:611.300667pt;}
.y73{bottom:620.286477pt;}
.y104{bottom:620.289434pt;}
.y144{bottom:620.571003pt;}
.y182{bottom:620.976002pt;}
.y36{bottom:624.519897pt;}
.y11{bottom:624.528086pt;}
.y181{bottom:631.559060pt;}
.y72{bottom:634.875842pt;}
.y103{bottom:634.878799pt;}
.y13f{bottom:637.673333pt;}
.y35{bottom:639.184979pt;}
.y10{bottom:639.193168pt;}
.ydf{bottom:642.142392pt;}
.y180{bottom:645.543280pt;}
.y71{bottom:649.540924pt;}
.y102{bottom:649.543881pt;}
.yde{bottom:652.725450pt;}
.y34{bottom:653.774345pt;}
.yf{bottom:653.782533pt;}
.y17f{bottom:656.201056pt;}
.y140{bottom:661.470189pt;}
.ydd{bottom:663.383225pt;}
.y70{bottom:664.130290pt;}
.y101{bottom:664.133247pt;}
.y17e{bottom:666.784114pt;}
.ydc{bottom:674.041001pt;}
.y17d{bottom:677.441889pt;}
.y6f{bottom:678.719655pt;}
.y100{bottom:678.722612pt;}
.ydb{bottom:684.624058pt;}
.y141{bottom:685.222014pt;}
.y17c{bottom:691.350396pt;}
.y6e{bottom:693.384737pt;}
.yff{bottom:693.387695pt;}
.yda{bottom:695.281834pt;}
.ye{bottom:700.648667pt;}
.y17b{bottom:702.008171pt;}
.yd9{bottom:705.864891pt;}
.yd{bottom:706.015600pt;}
.y6d{bottom:707.974103pt;}
.yfe{bottom:707.977060pt;}
.y142{bottom:709.018870pt;}
.y17a{bottom:712.591229pt;}
.yc{bottom:713.952935pt;}
.yd8{bottom:716.522667pt;}
.y6c{bottom:722.563468pt;}
.yfd{bottom:722.566425pt;}
.y179{bottom:723.249004pt;}
.yb{bottom:727.256533pt;}
.ya{bottom:732.547867pt;}
.y143{bottom:732.815725pt;}
.y6b{bottom:737.152834pt;}
.yfc{bottom:737.155791pt;}
.y178{bottom:737.157511pt;}
.yd0{bottom:738.508871pt;}
.y9{bottom:740.485202pt;}
.y177{bottom:747.815286pt;}
.y6a{bottom:751.817916pt;}
.yfb{bottom:751.820873pt;}
.y136{bottom:752.459067pt;}
.y8{bottom:753.788800pt;}
.ycf{bottom:757.487467pt;}
.y176{bottom:758.473062pt;}
.y7{bottom:759.080133pt;}
.y69{bottom:766.407281pt;}
.yfa{bottom:766.410238pt;}
.y5{bottom:771.099067pt;}
.y175{bottom:771.701137pt;}
.yc2{bottom:771.883467pt;}
.y6{bottom:776.692667pt;}
.y68{bottom:780.996647pt;}
.yf9{bottom:780.999604pt;}
.y174{bottom:782.358912pt;}
.yc3{bottom:784.418085pt;}
.y173{bottom:793.016688pt;}
.y133{bottom:793.855415pt;}
.y67{bottom:795.661729pt;}
.yf8{bottom:795.664686pt;}
.yc4{bottom:796.951899pt;}
.y172{bottom:803.599745pt;}
.yc5{bottom:809.586936pt;}
.y66{bottom:810.251094pt;}
.yf7{bottom:810.254051pt;}
.y12d{bottom:811.007200pt;}
.y4{bottom:815.468458pt;}
.y171{bottom:816.903534pt;}
.yc6{bottom:822.120750pt;}
.y65{bottom:824.840460pt;}
.yf6{bottom:824.843417pt;}
.y170{bottom:827.486592pt;}
.yd1{bottom:828.463333pt;}
.y12e{bottom:831.552575pt;}
.yc7{bottom:834.654565pt;}
.y16f{bottom:838.144367pt;}
.y64{bottom:839.505542pt;}
.y3{bottom:842.001829pt;}
.yf5{bottom:846.084503pt;}
.yc8{bottom:847.188380pt;}
.y16e{bottom:851.448156pt;}
.y12f{bottom:852.097951pt;}
.y63{bottom:854.094907pt;}
.y134{bottom:858.041200pt;}
.yc9{bottom:859.772805pt;}
.y16d{bottom:862.031214pt;}
.y2{bottom:868.535200pt;}
.y62{bottom:868.684273pt;}
.yf4{bottom:868.685968pt;}
.yca{bottom:872.306620pt;}
.y130{bottom:872.643326pt;}
.y16c{bottom:872.688989pt;}
.yd6{bottom:882.224997pt;}
.y61{bottom:883.273638pt;}
.yf3{bottom:883.275333pt;}
.ycb{bottom:884.840435pt;}
.y16b{bottom:885.992778pt;}
.yd4{bottom:886.502818pt;}
.yf2{bottom:888.944667pt;}
.y131{bottom:893.135695pt;}
.y16a{bottom:896.575836pt;}
.ycc{bottom:897.374249pt;}
.y60{bottom:897.938720pt;}
.yd7{bottom:900.446800pt;}
.yd2{bottom:902.309467pt;}
.y169{bottom:907.234607pt;}
.ycd{bottom:910.009286pt;}
.y5f{bottom:912.528086pt;}
.y132{bottom:913.679942pt;}
.y168{bottom:920.538396pt;}
.yce{bottom:922.543101pt;}
.y5e{bottom:927.117451pt;}
.y167{bottom:931.121454pt;}
.yd5{bottom:934.777526pt;}
.y135{bottom:935.924933pt;}
.y12c{bottom:936.565600pt;}
.y166{bottom:941.779229pt;}
.yf0{bottom:941.780063pt;}
.y5d{bottom:941.782533pt;}
.yd3{bottom:944.442589pt;}
.yf1{bottom:947.376133pt;}
.y1{bottom:968.692667pt;}
.h1b{height:19.709499pt;}
.h9{height:22.409923pt;}
.h15{height:23.052301pt;}
.hd{height:23.682660pt;}
.h5{height:23.684066pt;}
.h4{height:24.967212pt;}
.hf{height:25.649454pt;}
.h13{height:27.079280pt;}
.he{height:27.708449pt;}
.h10{height:29.568403pt;}
.h12{height:30.541185pt;}
.h16{height:30.774795pt;}
.h18{height:30.810541pt;}
.h1a{height:31.267290pt;}
.ha{height:31.540738pt;}
.hc{height:31.583246pt;}
.h17{height:33.541165pt;}
.h19{height:34.038394pt;}
.h1{height:35.482638pt;}
.h6{height:35.530458pt;}
.h8{height:36.445020pt;}
.h7{height:37.202188pt;}
.h3{height:37.454577pt;}
.hb{height:37.505055pt;}
.h14{height:43.327639pt;}
.h11{height:44.159632pt;}
.h2{height:70.966067pt;}
.h0{height:1056.000000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x2{left:66.444000pt;}
.xd{left:71.433067pt;}
.x41{left:76.422000pt;}
.x11{left:79.068371pt;}
.xe{left:82.393600pt;}
.x17{left:84.584007pt;}
.x3d{left:87.768800pt;}
.x3b{left:90.530533pt;}
.x39{left:100.020297pt;}
.x1a{left:106.809467pt;}
.x1b{left:112.025200pt;}
.x40{left:140.983542pt;}
.x3f{left:141.888337pt;}
.x3a{left:142.777956pt;}
.x3{left:148.762133pt;}
.x45{left:155.036298pt;}
.x1c{left:156.396800pt;}
.x4{left:157.984267pt;}
.x1d{left:161.688133pt;}
.x10{left:169.549947pt;}
.x3c{left:174.688400pt;}
.x3e{left:180.252743pt;}
.x46{left:183.080539pt;}
.xf{left:185.348257pt;}
.x21{left:198.727242pt;}
.x44{left:209.536933pt;}
.x42{left:211.880267pt;}
.x43{left:218.456667pt;}
.x5{left:233.499200pt;}
.x6{left:242.721200pt;}
.x1e{left:245.291200pt;}
.x7{left:327.987333pt;}
.x8{left:337.209333pt;}
.x2e{left:348.094400pt;}
.x1f{left:356.862933pt;}
.x20{left:362.078667pt;}
.x2d{left:379.993600pt;}
.x18{left:382.034533pt;}
.x19{left:387.250267pt;}
.x13{left:401.158804pt;}
.x9{left:405.467600pt;}
.x22{left:406.752841pt;}
.x16{left:411.817619pt;}
.x12{left:413.782057pt;}
.xa{left:414.689600pt;}
.x2c{left:416.730533pt;}
.x23{left:419.373569pt;}
.x24{left:421.729733pt;}
.x47{left:422.700266pt;}
.x1{left:435.477067pt;}
.x25{left:460.238667pt;}
.x27{left:486.011333pt;}
.xb{left:496.705333pt;}
.xc{left:502.147867pt;}
.x28{left:515.459612pt;}
.x33{left:516.359871pt;}
.x14{left:524.824530pt;}
.x26{left:555.377899pt;}
.x38{left:566.475467pt;}
.x34{left:582.500667pt;}
.x35{left:590.664400pt;}
.x29{left:592.727905pt;}
.x2b{left:599.019600pt;}
.x2a{left:611.151857pt;}
.x36{left:629.518000pt;}
.x37{left:642.973067pt;}
.x2f{left:676.308400pt;}
.x30{left:686.664400pt;}
.x31{left:697.247067pt;}
.x32{left:704.654933pt;}
.x15{left:712.743200pt;}
}




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