
    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_b80d1982ee5bb411c3f13cd9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_5948b62be21ff975dda348e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.078000;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_6e62aa8e8f208819857bf44c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_06fe092cfdf2a0d38ff68ab2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_92b80c7f833035bf8bbe25a2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_c40c94571c613f679c876ed3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e890a41f7e9f97dec0f14ab.woff')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_5214ac09d9a6741acf58dd3e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_2c7f81a2ba60534d68149e99.woff')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_7e18382c7ad7ca8aaad81e95.woff')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_a33b914ae5b35a77ee06a106.woff')format("woff");}.ffb{font-family:ffb;line-height:0.858000;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_f973c96aa2685e7d14078c59.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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_4ff59c5aa6d0449048ca6f0c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.858000;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_475b4b91cb615095360d7ed4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.858000;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);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.975400px;}
.lsa{letter-spacing:-4.704000px;}
.ls0{letter-spacing:-2.520000px;}
.ls30{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.982800px;}
.ls1d{letter-spacing:-0.864000px;}
.ls3{letter-spacing:-0.810000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.702000px;}
.ls20{letter-spacing:-0.665280px;}
.ls15{letter-spacing:-0.598416px;}
.ls1c{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.406937px;}
.ls28{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.302054px;}
.ls11{letter-spacing:-0.299208px;}
.ls7{letter-spacing:-0.240000px;}
.ls22{letter-spacing:-0.203468px;}
.ls4{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.179525px;}
.ls31{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.119683px;}
.lsf{letter-spacing:-0.100685px;}
.ls25{letter-spacing:-0.067823px;}
.ls14{letter-spacing:-0.059842px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.050342px;}
.lsc{letter-spacing:0.059842px;}
.ls18{letter-spacing:0.120960px;}
.ls17{letter-spacing:0.181440px;}
.ls2c{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.241920px;}
.ls24{letter-spacing:0.271291px;}
.ls2a{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.672000px;}
.ls6{letter-spacing:0.864000px;}
.ls26{letter-spacing:1.020000px;}
.ls2e{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.200000px;}
.ls19{letter-spacing:3.709200px;}
.ls23{letter-spacing:12.343750px;}
.ls2b{letter-spacing:14.518200px;}
.ls1a{letter-spacing:159.660988px;}
.lsd{letter-spacing:273.064685px;}
.lsb{letter-spacing:281.917642px;}
.ls1f{letter-spacing:513.293760px;}
.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;}
}
.wsf1{word-spacing:-513.293760px;}
.ws3{word-spacing:-54.000000px;}
.wse0{word-spacing:-27.671702px;}
.ws7{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.wse2{word-spacing:-15.124484px;}
.wsde{word-spacing:-14.921016px;}
.ws169{word-spacing:-14.820000px;}
.wsbc{word-spacing:-13.584043px;}
.wsba{word-spacing:-13.404518px;}
.wsb9{word-spacing:-13.344677px;}
.ws2{word-spacing:-13.338000px;}
.wsb8{word-spacing:-13.224994px;}
.ws4{word-spacing:-12.798000px;}
.wsf5{word-spacing:-12.343750px;}
.ws16a{word-spacing:-12.258000px;}
.ws19b{word-spacing:-11.952000px;}
.ws16c{word-spacing:-11.568000px;}
.ws19f{word-spacing:-11.556000px;}
.ws5{word-spacing:-11.448000px;}
.ws0{word-spacing:-11.214000px;}
.ws16b{word-spacing:-11.088000px;}
.ws1{word-spacing:-10.896000px;}
.ws19e{word-spacing:-10.656000px;}
.ws85{word-spacing:-10.512000px;}
.wsd5{word-spacing:-10.416000px;}
.ws19d{word-spacing:-10.176000px;}
.ws19c{word-spacing:-9.696000px;}
.ws9f{word-spacing:-5.160000px;}
.ws1c6{word-spacing:-4.290000px;}
.ws159{word-spacing:-3.960000px;}
.ws158{word-spacing:-3.900000px;}
.ws162{word-spacing:-3.540000px;}
.wse1{word-spacing:-3.526786px;}
.ws15a{word-spacing:-3.420000px;}
.wsad{word-spacing:-3.300000px;}
.ws78{word-spacing:-3.240000px;}
.ws137{word-spacing:-3.120000px;}
.ws15b{word-spacing:-3.000000px;}
.ws19{word-spacing:-2.880000px;}
.ws1b3{word-spacing:-2.784000px;}
.wsd2{word-spacing:-2.754000px;}
.wse6{word-spacing:-2.700000px;}
.wsc6{word-spacing:-2.640000px;}
.ws96{word-spacing:-2.592000px;}
.ws1b{word-spacing:-2.580000px;}
.wsd3{word-spacing:-2.538000px;}
.ws144{word-spacing:-2.520000px;}
.ws1cc{word-spacing:-2.484000px;}
.ws93{word-spacing:-2.460000px;}
.wsc7{word-spacing:-2.430000px;}
.ws44{word-spacing:-2.400000px;}
.ws81{word-spacing:-2.340000px;}
.ws176{word-spacing:-2.322000px;}
.ws34{word-spacing:-2.280000px;}
.ws58{word-spacing:-2.220000px;}
.wsc8{word-spacing:-2.214000px;}
.wsb1{word-spacing:-2.160000px;}
.ws10c{word-spacing:-2.100000px;}
.ws11d{word-spacing:-2.052000px;}
.ws6e{word-spacing:-2.040000px;}
.ws149{word-spacing:-1.980000px;}
.ws184{word-spacing:-1.968000px;}
.ws15c{word-spacing:-1.920000px;}
.ws1af{word-spacing:-1.872000px;}
.ws111{word-spacing:-1.860000px;}
.wsf0{word-spacing:-1.824000px;}
.ws15{word-spacing:-1.800000px;}
.ws1b4{word-spacing:-1.776000px;}
.wsa2{word-spacing:-1.740000px;}
.ws17f{word-spacing:-1.728000px;}
.wsa9{word-spacing:-1.680000px;}
.ws1c8{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.500000px;}
.ws17{word-spacing:-1.440000px;}
.ws13a{word-spacing:-1.380000px;}
.ws131{word-spacing:-1.320000px;}
.ws16e{word-spacing:-1.296000px;}
.ws43{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.200000px;}
.ws13b{word-spacing:-1.140000px;}
.ws4d{word-spacing:-1.080000px;}
.ws28{word-spacing:-1.058400px;}
.ws13{word-spacing:-1.026000px;}
.ws12f{word-spacing:-1.020000px;}
.ws18{word-spacing:-0.960000px;}
.ws2a{word-spacing:-0.936000px;}
.ws94{word-spacing:-0.900000px;}
.ws17e{word-spacing:-0.864000px;}
.wsaf{word-spacing:-0.840000px;}
.ws17b{word-spacing:-0.816000px;}
.wse4{word-spacing:-0.780000px;}
.ws14e{word-spacing:-0.720000px;}
.ws108{word-spacing:-0.660000px;}
.ws1a6{word-spacing:-0.624000px;}
.ws8b{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.540000px;}
.ws192{word-spacing:-0.528000px;}
.ws3f{word-spacing:-0.480000px;}
.ws11e{word-spacing:-0.432000px;}
.ws12e{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.378000px;}
.ws123{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.300000px;}
.ws17c{word-spacing:-0.288000px;}
.wsf6{word-spacing:-0.271291px;}
.wsa{word-spacing:-0.270000px;}
.wsda{word-spacing:-0.241920px;}
.ws10d{word-spacing:-0.240000px;}
.ws6f{word-spacing:-0.216000px;}
.ws18e{word-spacing:-0.192000px;}
.wsdb{word-spacing:-0.181440px;}
.ws15d{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.120960px;}
.ws3d{word-spacing:-0.120000px;}
.wse{word-spacing:-0.108000px;}
.ws27{word-spacing:-0.075600px;}
.wsdd{word-spacing:-0.060480px;}
.ws33{word-spacing:-0.060000px;}
.wscc{word-spacing:-0.050342px;}
.ws8{word-spacing:0.000000px;}
.wsd1{word-spacing:0.059842px;}
.ws21{word-spacing:0.060000px;}
.wsf7{word-spacing:0.067823px;}
.wscd{word-spacing:0.100685px;}
.wscf{word-spacing:0.119683px;}
.ws23{word-spacing:0.120000px;}
.wsb{word-spacing:0.162000px;}
.wsd0{word-spacing:0.179525px;}
.ws5e{word-spacing:0.180000px;}
.wsf8{word-spacing:0.203468px;}
.ws120{word-spacing:0.240000px;}
.wsce{word-spacing:0.299208px;}
.ws63{word-spacing:0.300000px;}
.wscb{word-spacing:0.302054px;}
.ws9e{word-spacing:0.360000px;}
.ws170{word-spacing:0.378000px;}
.ws121{word-spacing:0.384000px;}
.ws22{word-spacing:0.420000px;}
.ws11f{word-spacing:0.432000px;}
.ws16{word-spacing:0.480000px;}
.ws18f{word-spacing:0.528000px;}
.ws29{word-spacing:0.540000px;}
.ws122{word-spacing:0.576000px;}
.ws6a{word-spacing:0.600000px;}
.wsdc{word-spacing:0.604800px;}
.ws1a0{word-spacing:0.624000px;}
.ws7b{word-spacing:0.660000px;}
.ws66{word-spacing:0.720000px;}
.ws11c{word-spacing:0.756000px;}
.ws13e{word-spacing:0.780000px;}
.ws11b{word-spacing:0.810000px;}
.ws10e{word-spacing:0.840000px;}
.ws10{word-spacing:0.864000px;}
.wsbe{word-spacing:0.900000px;}
.ws61{word-spacing:0.960000px;}
.wsc9{word-spacing:1.026000px;}
.ws4b{word-spacing:1.080000px;}
.ws52{word-spacing:1.140000px;}
.wsbf{word-spacing:1.200000px;}
.wsd4{word-spacing:1.242000px;}
.wse3{word-spacing:1.260000px;}
.ws16f{word-spacing:1.296000px;}
.ws133{word-spacing:1.320000px;}
.ws62{word-spacing:1.380000px;}
.ws9d{word-spacing:1.440000px;}
.ws8d{word-spacing:1.500000px;}
.ws11{word-spacing:1.512000px;}
.ws30{word-spacing:1.560000px;}
.ws1c0{word-spacing:1.584000px;}
.wsef{word-spacing:1.620000px;}
.ws103{word-spacing:1.680000px;}
.ws194{word-spacing:1.776000px;}
.ws117{word-spacing:1.800000px;}
.ws1cb{word-spacing:1.836000px;}
.ws25{word-spacing:1.852200px;}
.ws57{word-spacing:1.860000px;}
.ws1b0{word-spacing:1.872000px;}
.ws88{word-spacing:1.920000px;}
.ws3c{word-spacing:1.980000px;}
.wsd{word-spacing:2.052000px;}
.ws1bf{word-spacing:2.064000px;}
.ws67{word-spacing:2.100000px;}
.ws68{word-spacing:2.160000px;}
.ws8f{word-spacing:2.220000px;}
.ws1a5{word-spacing:2.256000px;}
.wsb6{word-spacing:2.268000px;}
.ws164{word-spacing:2.280000px;}
.ws1a8{word-spacing:2.304000px;}
.ws12d{word-spacing:2.340000px;}
.ws6c{word-spacing:2.400000px;}
.ws174{word-spacing:2.430000px;}
.wsb5{word-spacing:2.484000px;}
.ws87{word-spacing:2.520000px;}
.ws26{word-spacing:2.532600px;}
.ws1c2{word-spacing:2.544000px;}
.ws36{word-spacing:2.580000px;}
.ws2f{word-spacing:2.640000px;}
.ws14{word-spacing:2.646000px;}
.ws48{word-spacing:2.700000px;}
.ws1a2{word-spacing:2.736000px;}
.ws10a{word-spacing:2.820000px;}
.wsea{word-spacing:2.880000px;}
.ws196{word-spacing:2.928000px;}
.ws35{word-spacing:2.940000px;}
.ws10b{word-spacing:3.060000px;}
.ws38{word-spacing:3.120000px;}
.ws171{word-spacing:3.132000px;}
.ws64{word-spacing:3.180000px;}
.wsed{word-spacing:3.240000px;}
.ws1ad{word-spacing:3.264000px;}
.ws20{word-spacing:3.300000px;}
.ws132{word-spacing:3.360000px;}
.ws40{word-spacing:3.420000px;}
.ws193{word-spacing:3.456000px;}
.ws9b{word-spacing:3.540000px;}
.ws54{word-spacing:3.600000px;}
.ws183{word-spacing:3.648000px;}
.wsa8{word-spacing:3.660000px;}
.ws1a7{word-spacing:3.696000px;}
.ws14c{word-spacing:3.720000px;}
.ws1aa{word-spacing:3.792000px;}
.ws5d{word-spacing:3.840000px;}
.wsf4{word-spacing:3.888000px;}
.wsa3{word-spacing:3.900000px;}
.ws17d{word-spacing:3.936000px;}
.wse9{word-spacing:4.020000px;}
.ws53{word-spacing:4.080000px;}
.ws6b{word-spacing:4.140000px;}
.ws1ae{word-spacing:4.176000px;}
.ws6d{word-spacing:4.200000px;}
.wsf3{word-spacing:4.212000px;}
.ws50{word-spacing:4.260000px;}
.ws45{word-spacing:4.320000px;}
.wsc{word-spacing:4.374000px;}
.ws109{word-spacing:4.380000px;}
.ws191{word-spacing:4.416000px;}
.wsa4{word-spacing:4.440000px;}
.ws1b8{word-spacing:4.464000px;}
.ws125{word-spacing:4.560000px;}
.ws77{word-spacing:4.620000px;}
.ws1a1{word-spacing:4.656000px;}
.wsae{word-spacing:4.680000px;}
.ws197{word-spacing:4.704000px;}
.wsa7{word-spacing:4.740000px;}
.wsc4{word-spacing:4.800000px;}
.ws2c{word-spacing:4.860000px;}
.ws1bd{word-spacing:4.944000px;}
.wsb4{word-spacing:4.980000px;}
.ws12c{word-spacing:5.040000px;}
.ws181{word-spacing:5.088000px;}
.ws14a{word-spacing:5.100000px;}
.ws166{word-spacing:5.160000px;}
.wsf{word-spacing:5.184000px;}
.ws79{word-spacing:5.220000px;}
.ws136{word-spacing:5.280000px;}
.ws155{word-spacing:5.340000px;}
.ws91{word-spacing:5.400000px;}
.ws154{word-spacing:5.460000px;}
.wsa0{word-spacing:5.520000px;}
.ws18b{word-spacing:5.568000px;}
.ws3a{word-spacing:5.580000px;}
.wsac{word-spacing:5.700000px;}
.ws177{word-spacing:5.712000px;}
.wsc1{word-spacing:5.760000px;}
.ws18c{word-spacing:5.808000px;}
.ws89{word-spacing:5.820000px;}
.ws1c7{word-spacing:5.832000px;}
.ws18d{word-spacing:5.856000px;}
.ws69{word-spacing:5.880000px;}
.wsfd{word-spacing:5.940000px;}
.ws92{word-spacing:6.000000px;}
.ws190{word-spacing:6.048000px;}
.wse5{word-spacing:6.060000px;}
.ws55{word-spacing:6.120000px;}
.ws172{word-spacing:6.156000px;}
.wsc5{word-spacing:6.180000px;}
.ws17a{word-spacing:6.240000px;}
.ws4c{word-spacing:6.300000px;}
.ws1b1{word-spacing:6.336000px;}
.ws9a{word-spacing:6.360000px;}
.ws18a{word-spacing:6.384000px;}
.ws1a9{word-spacing:6.432000px;}
.ws7e{word-spacing:6.480000px;}
.ws180{word-spacing:6.528000px;}
.ws2e{word-spacing:6.540000px;}
.ws82{word-spacing:6.600000px;}
.ws1b2{word-spacing:6.624000px;}
.ws41{word-spacing:6.660000px;}
.ws76{word-spacing:6.720000px;}
.ws115{word-spacing:6.780000px;}
.ws1be{word-spacing:6.816000px;}
.ws75{word-spacing:6.840000px;}
.ws7a{word-spacing:6.900000px;}
.wsca{word-spacing:6.912000px;}
.ws7c{word-spacing:6.960000px;}
.ws12a{word-spacing:7.020000px;}
.ws1c1{word-spacing:7.056000px;}
.ws13f{word-spacing:7.080000px;}
.ws4f{word-spacing:7.140000px;}
.ws1d{word-spacing:7.200000px;}
.ws195{word-spacing:7.248000px;}
.ws1e{word-spacing:7.260000px;}
.ws140{word-spacing:7.320000px;}
.ws104{word-spacing:7.380000px;}
.ws178{word-spacing:7.392000px;}
.ws152{word-spacing:7.440000px;}
.ws145{word-spacing:7.500000px;}
.ws16d{word-spacing:7.620000px;}
.ws1a4{word-spacing:7.632000px;}
.ws7f{word-spacing:7.680000px;}
.ws42{word-spacing:7.740000px;}
.ws1c3{word-spacing:7.788000px;}
.ws60{word-spacing:7.800000px;}
.wsab{word-spacing:7.860000px;}
.ws80{word-spacing:7.920000px;}
.ws1ba{word-spacing:7.968000px;}
.ws15f{word-spacing:7.980000px;}
.ws142{word-spacing:8.040000px;}
.ws187{word-spacing:8.064000px;}
.ws95{word-spacing:8.160000px;}
.ws56{word-spacing:8.220000px;}
.ws1c4{word-spacing:8.316000px;}
.ws49{word-spacing:8.340000px;}
.wsc3{word-spacing:8.400000px;}
.ws129{word-spacing:8.460000px;}
.ws32{word-spacing:8.580000px;}
.ws101{word-spacing:8.640000px;}
.ws124{word-spacing:8.700000px;}
.ws4e{word-spacing:8.760000px;}
.ws31{word-spacing:8.820000px;}
.ws11a{word-spacing:8.880000px;}
.ws199{word-spacing:8.928000px;}
.ws134{word-spacing:8.940000px;}
.ws8c{word-spacing:9.000000px;}
.ws130{word-spacing:9.060000px;}
.ws14d{word-spacing:9.120000px;}
.wsff{word-spacing:9.180000px;}
.ws185{word-spacing:9.216000px;}
.ws112{word-spacing:9.240000px;}
.ws102{word-spacing:9.300000px;}
.ws1bc{word-spacing:9.312000px;}
.ws1b7{word-spacing:9.360000px;}
.wsfe{word-spacing:9.420000px;}
.ws147{word-spacing:9.480000px;}
.ws47{word-spacing:9.540000px;}
.ws5f{word-spacing:9.600000px;}
.ws7d{word-spacing:9.660000px;}
.ws19a{word-spacing:9.744000px;}
.wsa1{word-spacing:9.780000px;}
.ws9c{word-spacing:9.840000px;}
.ws148{word-spacing:9.900000px;}
.ws5c{word-spacing:9.960000px;}
.ws1f{word-spacing:10.020000px;}
.ws113{word-spacing:10.080000px;}
.ws157{word-spacing:10.140000px;}
.ws106{word-spacing:10.260000px;}
.ws110{word-spacing:10.320000px;}
.ws186{word-spacing:10.368000px;}
.ws99{word-spacing:10.380000px;}
.ws156{word-spacing:10.440000px;}
.ws179{word-spacing:10.464000px;}
.ws1a{word-spacing:10.560000px;}
.ws5b{word-spacing:10.620000px;}
.ws116{word-spacing:10.680000px;}
.ws139{word-spacing:10.740000px;}
.ws168{word-spacing:10.800000px;}
.ws188{word-spacing:10.848000px;}
.wsb0{word-spacing:10.920000px;}
.wse8{word-spacing:11.040000px;}
.ws12b{word-spacing:11.100000px;}
.ws173{word-spacing:11.232000px;}
.ws74{word-spacing:11.400000px;}
.ws51{word-spacing:11.460000px;}
.wsc0{word-spacing:11.520000px;}
.wsb2{word-spacing:11.700000px;}
.ws105{word-spacing:11.760000px;}
.ws8a{word-spacing:11.820000px;}
.ws14b{word-spacing:11.880000px;}
.ws161{word-spacing:12.000000px;}
.ws2b{word-spacing:12.060000px;}
.wse7{word-spacing:12.120000px;}
.wsb3{word-spacing:12.240000px;}
.ws1ca{word-spacing:12.258000px;}
.ws138{word-spacing:12.480000px;}
.ws165{word-spacing:12.600000px;}
.ws150{word-spacing:12.660000px;}
.ws126{word-spacing:12.720000px;}
.ws160{word-spacing:12.780000px;}
.ws114{word-spacing:12.900000px;}
.ws4a{word-spacing:12.960000px;}
.ws72{word-spacing:13.140000px;}
.ws1b6{word-spacing:13.152000px;}
.ws119{word-spacing:13.320000px;}
.ws39{word-spacing:13.380000px;}
.ws97{word-spacing:13.500000px;}
.wsa5{word-spacing:13.560000px;}
.ws1b9{word-spacing:13.920000px;}
.ws13d{word-spacing:13.980000px;}
.ws1ab{word-spacing:14.016000px;}
.ws13c{word-spacing:14.040000px;}
.ws143{word-spacing:14.100000px;}
.ws46{word-spacing:14.160000px;}
.wsfa{word-spacing:14.280000px;}
.ws71{word-spacing:14.400000px;}
.ws182{word-spacing:14.448000px;}
.ws3e{word-spacing:14.460000px;}
.ws175{word-spacing:14.526000px;}
.ws1ac{word-spacing:14.640000px;}
.ws151{word-spacing:14.700000px;}
.ws107{word-spacing:14.820000px;}
.ws65{word-spacing:15.000000px;}
.ws10f{word-spacing:15.060000px;}
.ws135{word-spacing:15.120000px;}
.ws2d{word-spacing:15.360000px;}
.ws118{word-spacing:15.420000px;}
.ws198{word-spacing:15.600000px;}
.ws167{word-spacing:15.720000px;}
.ws90{word-spacing:15.840000px;}
.ws14f{word-spacing:15.960000px;}
.ws1bb{word-spacing:16.176000px;}
.ws8e{word-spacing:16.260000px;}
.wsc2{word-spacing:16.440000px;}
.ws70{word-spacing:16.500000px;}
.ws98{word-spacing:17.040000px;}
.wsfc{word-spacing:17.400000px;}
.wseb{word-spacing:17.940000px;}
.wsee{word-spacing:18.000000px;}
.ws1b5{word-spacing:18.672000px;}
.ws127{word-spacing:19.260000px;}
.ws128{word-spacing:19.680000px;}
.wsec{word-spacing:19.920000px;}
.ws1c5{word-spacing:19.932000px;}
.ws141{word-spacing:19.980000px;}
.ws5a{word-spacing:20.700000px;}
.ws146{word-spacing:20.820000px;}
.ws100{word-spacing:22.080000px;}
.wsa6{word-spacing:22.620000px;}
.ws153{word-spacing:22.800000px;}
.ws59{word-spacing:23.160000px;}
.ws163{word-spacing:23.220000px;}
.wsfb{word-spacing:23.700000px;}
.ws15e{word-spacing:24.060000px;}
.ws1a3{word-spacing:25.488000px;}
.ws73{word-spacing:26.640000px;}
.wsaa{word-spacing:27.420000px;}
.wsf9{word-spacing:28.920000px;}
.ws189{word-spacing:31.968000px;}
.wsdf{word-spacing:32.080184px;}
.ws1c9{word-spacing:53.460000px;}
.wsbb{word-spacing:88.453349px;}
.wsd6{word-spacing:139.877400px;}
.wsd8{word-spacing:214.468800px;}
.wsd9{word-spacing:243.413400px;}
.wsbd{word-spacing:297.895349px;}
.ws84{word-spacing:345.022200px;}
.wsd7{word-spacing:388.816200px;}
.wsb7{word-spacing:478.202458px;}
.ws83{word-spacing:653.289600px;}
.ws86{word-spacing:2277.546000px;}
._8{margin-left:-2823.450600px;}
._4a{margin-left:-12.072458px;}
._5{margin-left:-7.639200px;}
._9{margin-left:-6.357600px;}
._4{margin-left:-5.256000px;}
._1{margin-left:-3.528000px;}
._0{margin-left:-2.079000px;}
._7{margin-left:-1.012200px;}
._3{width:1.045800px;}
._2{width:2.734200px;}
._20{width:4.176000px;}
._21{width:5.760000px;}
._6{width:22.320000px;}
._49{width:30.045500px;}
._5c{width:42.858000px;}
._2e{width:65.474174px;}
._16{width:80.733600px;}
._b{width:86.829600px;}
._17{width:111.004200px;}
._1e{width:128.656800px;}
._38{width:131.472000px;}
._37{width:133.851600px;}
._2f{width:140.377402px;}
._42{width:141.870600px;}
._36{width:145.710600px;}
._3e{width:147.206400px;}
._31{width:149.974800px;}
._1f{width:152.569200px;}
._4c{width:158.993063px;}
._4b{width:160.471958px;}
._10{width:162.538800px;}
._39{width:171.208200px;}
._30{width:176.297218px;}
._2d{width:186.710256px;}
._46{width:190.386600px;}
._35{width:191.845800px;}
._4d{width:195.984600px;}
._3a{width:200.821800px;}
._3b{width:212.980800px;}
._40{width:218.277000px;}
._32{width:232.084800px;}
._f{width:233.896800px;}
._41{width:235.044000px;}
._3f{width:241.636200px;}
._1a{width:242.963400px;}
._3c{width:251.180400px;}
._19{width:257.652600px;}
._3d{width:268.572000px;}
._d{width:278.013600px;}
._13{width:305.468400px;}
._14{width:311.133600px;}
._11{width:312.405600px;}
._1c{width:322.150800px;}
._e{width:323.925600px;}
._2c{width:328.175798px;}
._15{width:335.445600px;}
._45{width:340.879800px;}
._33{width:360.214200px;}
._22{width:370.163400px;}
._34{width:399.351000px;}
._1d{width:406.824600px;}
._48{width:421.673400px;}
._47{width:427.003800px;}
._43{width:438.119400px;}
._53{width:450.278400px;}
._44{width:453.433200px;}
._25{width:468.101400px;}
._5a{width:502.688400px;}
._50{width:511.737000px;}
._5b{width:566.736600px;}
._4e{width:594.534600px;}
._24{width:599.848800px;}
._56{width:606.272400px;}
._51{width:608.564400px;}
._26{width:623.461800px;}
._52{width:631.918200px;}
._57{width:648.253800px;}
._2b{width:660.550800px;}
._4f{width:663.806400px;}
._58{width:670.568400px;}
._59{width:680.983800px;}
._54{width:682.968000px;}
._1b{width:714.511200px;}
._12{width:773.868600px;}
._55{width:786.593400px;}
._23{width:805.266000px;}
._29{width:812.887800px;}
._18{width:817.346400px;}
._28{width:837.714000px;}
._c{width:849.421800px;}
._2a{width:894.160800px;}
._27{width:897.232800px;}
._a{width:2369.514000px;}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:50.342400px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:59.841600px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:60.480000px;}
.fse{font-size:66.000000px;}
.fsd{font-size:67.822800px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.935100px;}
.yd3{bottom:4.677000px;}
.yf8{bottom:4.725750px;}
.y105{bottom:5.299350px;}
.yd1{bottom:23.034750px;}
.yf6{bottom:27.031500px;}
.y103{bottom:30.495000px;}
.y26{bottom:64.661700px;}
.y25{bottom:77.261700px;}
.y24{bottom:89.861700px;}
.y104{bottom:98.380950px;}
.yc5{bottom:109.780800px;}
.yf7{bottom:120.820950px;}
.ya3{bottom:123.307050px;}
.yd2{bottom:124.167054px;}
.y14a{bottom:125.267700px;}
.y64{bottom:125.291250px;}
.ya7{bottom:125.291400px;}
.ybb{bottom:138.307050px;}
.y149{bottom:143.267700px;}
.y63{bottom:143.291250px;}
.y21{bottom:143.291400px;}
.ya2{bottom:146.288400px;}
.y148{bottom:161.267700px;}
.yba{bottom:161.288400px;}
.y62{bottom:161.291250px;}
.y20{bottom:161.291400px;}
.ya1{bottom:162.665850px;}
.yb9{bottom:177.665700px;}
.ya0{bottom:179.043300px;}
.y147{bottom:179.267700px;}
.y61{bottom:179.291250px;}
.y1f{bottom:179.291400px;}
.yb8{bottom:194.043150px;}
.y9f{bottom:195.420600px;}
.y146{bottom:197.267700px;}
.y60{bottom:197.291250px;}
.y1e{bottom:197.291400px;}
.yb7{bottom:210.420600px;}
.y9e{bottom:211.798050px;}
.y145{bottom:215.267700px;}
.y5f{bottom:215.291250px;}
.y1d{bottom:215.291400px;}
.yc3{bottom:215.612250px;}
.yb6{bottom:226.798050px;}
.y9d{bottom:228.175500px;}
.y144{bottom:233.267700px;}
.y5e{bottom:233.291250px;}
.y1c{bottom:233.291400px;}
.yf4{bottom:237.275100px;}
.y106{bottom:239.737800px;}
.yb5{bottom:243.175500px;}
.y9c{bottom:244.552950px;}
.y143{bottom:251.267700px;}
.y5d{bottom:251.291250px;}
.y1b{bottom:251.291400px;}
.y17d{bottom:256.315500px;}
.yb4{bottom:259.552800px;}
.y9b{bottom:260.930400px;}
.y142{bottom:269.267700px;}
.y5c{bottom:269.291250px;}
.y1a{bottom:269.291400px;}
.y17c{bottom:274.315500px;}
.yb3{bottom:275.930250px;}
.y9a{bottom:277.307700px;}
.y141{bottom:287.267700px;}
.y5b{bottom:287.291250px;}
.y19{bottom:287.291400px;}
.yb2{bottom:292.307700px;}
.y17b{bottom:292.315500px;}
.y99{bottom:293.685150px;}
.y140{bottom:305.267700px;}
.y5a{bottom:305.291250px;}
.y23{bottom:305.291400px;}
.yb1{bottom:307.307700px;}
.y17a{bottom:310.315500px;}
.y98{bottom:310.437600px;}
.ye9{bottom:320.992350px;}
.y13f{bottom:323.267700px;}
.y59{bottom:323.291250px;}
.y22{bottom:323.291400px;}
.yb0{bottom:323.685150px;}
.y179{bottom:328.315500px;}
.yd4{bottom:333.598800px;}
.y18{bottom:334.129200px;}
.y97{bottom:336.591600px;}
.yaf{bottom:340.062600px;}
.y13e{bottom:341.267700px;}
.y58{bottom:341.291250px;}
.ya6{bottom:341.291400px;}
.yf3{bottom:342.286500px;}
.y178{bottom:346.315500px;}
.y96{bottom:354.591600px;}
.yae{bottom:356.439900px;}
.y13d{bottom:359.267700px;}
.y57{bottom:359.291250px;}
.ya5{bottom:359.291400px;}
.y177{bottom:364.315500px;}
.yf5{bottom:369.318000px;}
.yad{bottom:372.817350px;}
.y13c{bottom:377.267700px;}
.y56{bottom:377.291250px;}
.ya4{bottom:377.291400px;}
.y176{bottom:382.315500px;}
.yea{bottom:388.913550px;}
.yac{bottom:389.569800px;}
.y13b{bottom:395.267700px;}
.y55{bottom:395.291250px;}
.y8d{bottom:395.291400px;}
.y175{bottom:400.315500px;}
.yab{bottom:404.569800px;}
.yeb{bottom:410.096670px;}
.y17{bottom:410.404800px;}
.y13a{bottom:413.267700px;}
.y54{bottom:413.291250px;}
.y8c{bottom:413.291400px;}
.y174{bottom:418.315500px;}
.yaa{bottom:430.723800px;}
.y139{bottom:431.267700px;}
.yec{bottom:431.279790px;}
.y53{bottom:431.291250px;}
.y8b{bottom:431.291400px;}
.y173{bottom:436.315500px;}
.y16{bottom:436.908750px;}
.ya9{bottom:448.723800px;}
.y138{bottom:449.267700px;}
.y52{bottom:449.291250px;}
.y8a{bottom:449.291400px;}
.yed{bottom:452.462910px;}
.y172{bottom:454.315500px;}
.ya8{bottom:466.723800px;}
.y137{bottom:467.267700px;}
.y51{bottom:467.291250px;}
.y89{bottom:467.291400px;}
.y171{bottom:472.315500px;}
.yee{bottom:473.646030px;}
.y182{bottom:480.795750px;}
.y136{bottom:485.267700px;}
.y50{bottom:485.291250px;}
.y88{bottom:485.291400px;}
.y170{bottom:490.315500px;}
.yef{bottom:494.829150px;}
.ybc{bottom:497.140650px;}
.y15{bottom:497.428350px;}
.y181{bottom:498.795750px;}
.y135{bottom:503.267700px;}
.y4f{bottom:503.291250px;}
.y95{bottom:503.291400px;}
.y16f{bottom:508.315500px;}
.y14{bottom:515.428350px;}
.yf0{bottom:516.012270px;}
.y180{bottom:516.795750px;}
.y87{bottom:518.031450px;}
.yc2{bottom:518.434500px;}
.y134{bottom:521.267700px;}
.y4e{bottom:521.291250px;}
.y94{bottom:521.291400px;}
.y16e{bottom:526.315500px;}
.y13{bottom:533.428350px;}
.y17f{bottom:534.795750px;}
.yf1{bottom:537.195390px;}
.y133{bottom:539.267700px;}
.y4d{bottom:539.291250px;}
.y93{bottom:539.291400px;}
.yc4{bottom:541.110150px;}
.y16d{bottom:544.315500px;}
.y12{bottom:551.428350px;}
.y132{bottom:557.267700px;}
.y4c{bottom:557.291250px;}
.y86{bottom:557.291400px;}
.ybd{bottom:557.407500px;}
.yf2{bottom:558.378510px;}
.y16c{bottom:562.315500px;}
.y17e{bottom:565.551600px;}
.y11{bottom:569.428350px;}
.y131{bottom:575.267700px;}
.y4b{bottom:575.291250px;}
.y85{bottom:575.291400px;}
.y107{bottom:578.527500px;}
.y16b{bottom:580.315500px;}
.y66{bottom:583.771650px;}
.y10{bottom:587.428350px;}
.ybe{bottom:592.735279px;}
.y130{bottom:593.267700px;}
.y4a{bottom:593.291250px;}
.y84{bottom:593.291400px;}
.y16a{bottom:598.315500px;}
.yf{bottom:605.428350px;}
.y12f{bottom:611.267700px;}
.y49{bottom:611.291250px;}
.y83{bottom:611.291400px;}
.yfa{bottom:613.126350px;}
.y65{bottom:614.527500px;}
.y169{bottom:616.315500px;}
.ye{bottom:623.428350px;}
.ybf{bottom:628.063058px;}
.y12e{bottom:629.267700px;}
.y48{bottom:629.291250px;}
.y82{bottom:629.291400px;}
.yf9{bottom:631.126350px;}
.y168{bottom:634.315500px;}
.yd{bottom:641.428350px;}
.y12d{bottom:647.267700px;}
.y47{bottom:647.291250px;}
.y81{bottom:647.291400px;}
.y167{bottom:652.315500px;}
.y102{bottom:652.422000px;}
.yc{bottom:659.428350px;}
.yc0{bottom:663.390838px;}
.y12c{bottom:665.267700px;}
.y46{bottom:665.291250px;}
.y80{bottom:665.291400px;}
.y11f{bottom:668.527500px;}
.y166{bottom:670.315500px;}
.yb{bottom:677.428350px;}
.y101{bottom:682.917101px;}
.y12b{bottom:683.267700px;}
.y45{bottom:683.291250px;}
.y7f{bottom:683.291400px;}
.y165{bottom:688.315500px;}
.yc1{bottom:698.718617px;}
.y12a{bottom:701.267700px;}
.y44{bottom:701.291250px;}
.y7e{bottom:701.291400px;}
.ya{bottom:703.932300px;}
.yfb{bottom:704.925600px;}
.y164{bottom:706.315500px;}
.y43{bottom:719.291250px;}
.y7d{bottom:719.291400px;}
.y163{bottom:724.315500px;}
.y129{bottom:732.023550px;}
.yfc{bottom:735.801930px;}
.y42{bottom:737.291250px;}
.y92{bottom:737.291400px;}
.y162{bottom:742.315500px;}
.y7c{bottom:752.031450px;}
.y41{bottom:755.291250px;}
.y91{bottom:755.291400px;}
.y9{bottom:760.200000px;}
.y161{bottom:760.315500px;}
.yd9{bottom:761.941200px;}
.yfd{bottom:766.678259px;}
.y40{bottom:773.291250px;}
.y90{bottom:773.291400px;}
.y11e{bottom:775.447950px;}
.y8{bottom:778.200000px;}
.y160{bottom:778.315500px;}
.yd8{bottom:779.941200px;}
.y11d{bottom:790.447950px;}
.y3f{bottom:791.291250px;}
.y7b{bottom:791.291400px;}
.y15f{bottom:796.315500px;}
.yfe{bottom:797.554589px;}
.yd7{bottom:797.941200px;}
.y3e{bottom:809.291250px;}
.y7a{bottom:809.291400px;}
.y7{bottom:813.208050px;}
.y11c{bottom:813.429450px;}
.y15e{bottom:814.315500px;}
.yd0{bottom:819.235500px;}
.y3d{bottom:827.291250px;}
.y79{bottom:827.291400px;}
.yff{bottom:828.430919px;}
.y128{bottom:829.741950px;}
.y11b{bottom:829.806750px;}
.y15d{bottom:832.315500px;}
.ycf{bottom:842.269958px;}
.y3c{bottom:845.291250px;}
.y78{bottom:845.291400px;}
.y11a{bottom:846.184200px;}
.yce{bottom:849.810000px;}
.y15c{bottom:850.315500px;}
.y100{bottom:859.307249px;}
.y6{bottom:860.971800px;}
.y119{bottom:862.561650px;}
.y3b{bottom:863.291250px;}
.y77{bottom:863.291400px;}
.y15b{bottom:868.315500px;}
.yc7{bottom:869.417250px;}
.y118{bottom:878.939100px;}
.y3a{bottom:881.291250px;}
.y76{bottom:881.291400px;}
.y15a{bottom:886.315500px;}
.y5{bottom:887.475750px;}
.y117{bottom:895.316400px;}
.y39{bottom:899.291250px;}
.y75{bottom:899.291400px;}
.y127{bottom:901.741950px;}
.yc8{bottom:903.272635px;}
.y159{bottom:904.315500px;}
.y116{bottom:911.693850px;}
.y4{bottom:913.979700px;}
.y38{bottom:917.291250px;}
.y74{bottom:917.291400px;}
.y8f{bottom:920.527650px;}
.y158{bottom:922.315500px;}
.ye8{bottom:927.222150px;}
.y115{bottom:928.071300px;}
.y37{bottom:935.291250px;}
.y73{bottom:935.291400px;}
.yc9{bottom:937.128020px;}
.y157{bottom:940.315500px;}
.ye7{bottom:942.222150px;}
.y114{bottom:944.448600px;}
.y36{bottom:953.291250px;}
.y72{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.y123{bottom:955.741950px;}
.y156{bottom:958.315500px;}
.y113{bottom:960.826200px;}
.ye6{bottom:965.203500px;}
.yca{bottom:970.983406px;}
.y35{bottom:971.291250px;}
.y71{bottom:971.291400px;}
.y126{bottom:973.741800px;}
.y155{bottom:976.315500px;}
.y112{bottom:977.203650px;}
.ye5{bottom:981.580950px;}
.y34{bottom:989.291250px;}
.y70{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y111{bottom:993.580950px;}
.y154{bottom:994.315500px;}
.ye4{bottom:996.580950px;}
.ye3{bottom:997.958250px;}
.ycb{bottom:1004.838791px;}
.y33{bottom:1007.291250px;}
.y6f{bottom:1007.291400px;}
.y110{bottom:1009.958400px;}
.y153{bottom:1012.315500px;}
.ye2{bottom:1012.958250px;}
.y122{bottom:1015.771500px;}
.y32{bottom:1025.291250px;}
.y6e{bottom:1025.291400px;}
.y10f{bottom:1026.335850px;}
.y125{bottom:1027.741800px;}
.y1{bottom:1029.178200px;}
.ye1{bottom:1029.335700px;}
.y152{bottom:1030.315500px;}
.ycc{bottom:1038.694176px;}
.y10e{bottom:1042.713300px;}
.y31{bottom:1043.291250px;}
.y6d{bottom:1043.291400px;}
.ye0{bottom:1045.713150px;}
.y121{bottom:1046.527500px;}
.y151{bottom:1048.315500px;}
.y10d{bottom:1059.090600px;}
.y30{bottom:1061.291250px;}
.y6c{bottom:1061.291400px;}
.ydf{bottom:1062.090600px;}
.y150{bottom:1066.315500px;}
.ycd{bottom:1072.549561px;}
.y10c{bottom:1075.468050px;}
.y8e{bottom:1076.031600px;}
.yde{bottom:1078.467900px;}
.y2f{bottom:1079.291250px;}
.y6b{bottom:1079.291400px;}
.y124{bottom:1081.741800px;}
.y14f{bottom:1084.315500px;}
.y10b{bottom:1092.220500px;}
.ydd{bottom:1095.220350px;}
.y2e{bottom:1097.291250px;}
.y6a{bottom:1097.291400px;}
.yd6{bottom:1099.872300px;}
.y14e{bottom:1102.315500px;}
.ydc{bottom:1110.220350px;}
.y2d{bottom:1115.291250px;}
.y69{bottom:1115.291400px;}
.y10a{bottom:1118.374500px;}
.y14d{bottom:1120.315500px;}
.yd5{bottom:1126.353900px;}
.y29{bottom:1126.725000px;}
.y2c{bottom:1133.291250px;}
.y68{bottom:1133.291400px;}
.ydb{bottom:1136.374350px;}
.y109{bottom:1136.374500px;}
.y14c{bottom:1138.315500px;}
.y120{bottom:1148.449350px;}
.y2b{bottom:1151.291250px;}
.y67{bottom:1151.291400px;}
.yda{bottom:1154.374350px;}
.y108{bottom:1154.374500px;}
.y14b{bottom:1156.315500px;}
.y28{bottom:1166.037750px;}
.y27{bottom:1183.789800px;}
.y2a{bottom:1193.518650px;}
.hc{height:27.575100px;}
.hd{height:32.827500px;}
.he{height:33.947754px;}
.h4{height:34.176000px;}
.h10{height:34.232832px;}
.hf{height:34.272000px;}
.h5{height:35.016000px;}
.h6{height:39.408000px;}
.h7{height:39.555000px;}
.h12{height:40.692288px;}
.h14{height:41.126400px;}
.h18{height:43.950000px;}
.h8{height:44.334000px;}
.h16{height:46.119504px;}
.h19{height:48.345000px;}
.hb{height:49.260000px;}
.h9{height:52.740000px;}
.h3{height:59.112000px;}
.ha{height:61.530000px;}
.h2{height:92.295000px;}
.h11{height:225.880500px;}
.h15{height:249.610500px;}
.h17{height:253.572000px;}
.h13{height:345.804000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:381.976500px;}
.w4{width:422.818500px;}
.w3{width:603.852000px;}
.w5{width:705.826500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:10.268550px;}
.x34{left:12.208205px;}
.x4d{left:13.834950px;}
.x18{left:17.097450px;}
.x44{left:20.206950px;}
.x4f{left:69.864150px;}
.x1{left:93.543300px;}
.x10{left:96.094500px;}
.x35{left:104.781450px;}
.x37{left:107.573400px;}
.xe{left:110.551200px;}
.x4a{left:116.583941px;}
.x49{left:129.402450px;}
.x50{left:132.907200px;}
.x3{left:145.222950px;}
.x46{left:153.421350px;}
.x4b{left:159.515773px;}
.x1a{left:165.009300px;}
.x13{left:166.014900px;}
.xf{left:184.498800px;}
.x39{left:190.584900px;}
.x48{left:197.660100px;}
.x1b{left:202.185450px;}
.x38{left:205.374600px;}
.x2{left:211.839150px;}
.x3e{left:219.708600px;}
.x1c{left:223.803228px;}
.x4{left:230.000400px;}
.x43{left:235.047000px;}
.x1d{left:245.421006px;}
.x36{left:249.312450px;}
.x17{left:255.468000px;}
.x42{left:262.919700px;}
.x1e{left:267.038784px;}
.x16{left:272.565372px;}
.x15{left:278.921100px;}
.x5{left:285.094500px;}
.x1f{left:288.656562px;}
.x3f{left:293.089800px;}
.x40{left:299.936250px;}
.x41{left:301.238100px;}
.x3a{left:308.299800px;}
.x20{left:310.274340px;}
.x21{left:331.892118px;}
.x14{left:337.041000px;}
.x4e{left:340.573200px;}
.x12{left:349.879650px;}
.x22{left:353.509896px;}
.x45{left:359.460450px;}
.x11{left:366.685350px;}
.xc{left:375.582450px;}
.xd{left:378.815700px;}
.x3b{left:386.187450px;}
.x23{left:396.745452px;}
.x6{left:413.260050px;}
.x24{left:418.363230px;}
.x25{left:439.981008px;}
.x8{left:455.455950px;}
.x26{left:461.598786px;}
.x7{left:469.944750px;}
.x9{left:472.463850px;}
.x27{left:483.216564px;}
.x28{left:504.834342px;}
.x29{left:526.452120px;}
.x47{left:532.330200px;}
.x2a{left:548.069898px;}
.x3c{left:561.751950px;}
.x2b{left:569.687676px;}
.x2c{left:591.305454px;}
.x33{left:598.102350px;}
.xb{left:601.212600px;}
.x2d{left:612.923232px;}
.x2e{left:634.541010px;}
.x2f{left:656.158788px;}
.x30{left:677.776566px;}
.x4c{left:687.156000px;}
.xa{left:695.534100px;}
.x3d{left:696.581100px;}
.x31{left:699.394344px;}
.x32{left:721.012122px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.311467pt;}
.lsa{letter-spacing:-4.181333pt;}
.ls0{letter-spacing:-2.240000pt;}
.ls30{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.873600pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.624000pt;}
.ls20{letter-spacing:-0.591360pt;}
.ls15{letter-spacing:-0.531925pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.361722pt;}
.ls28{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.268493pt;}
.ls11{letter-spacing:-0.265963pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls22{letter-spacing:-0.180861pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.159578pt;}
.ls31{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.106385pt;}
.lsf{letter-spacing:-0.089498pt;}
.ls25{letter-spacing:-0.060287pt;}
.ls14{letter-spacing:-0.053193pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.044749pt;}
.lsc{letter-spacing:0.053193pt;}
.ls18{letter-spacing:0.107520pt;}
.ls17{letter-spacing:0.161280pt;}
.ls2c{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.215040pt;}
.ls24{letter-spacing:0.241148pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.597333pt;}
.ls6{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.906667pt;}
.ls2e{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.066667pt;}
.ls19{letter-spacing:3.297067pt;}
.ls23{letter-spacing:10.972222pt;}
.ls2b{letter-spacing:12.905067pt;}
.ls1a{letter-spacing:141.920878pt;}
.lsd{letter-spacing:242.724164pt;}
.lsb{letter-spacing:250.593459pt;}
.ls1f{letter-spacing:456.261120pt;}
.wsf1{word-spacing:-456.261120pt;}
.ws3{word-spacing:-48.000000pt;}
.wse0{word-spacing:-24.597069pt;}
.ws7{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.wse2{word-spacing:-13.443986pt;}
.wsde{word-spacing:-13.263125pt;}
.ws169{word-spacing:-13.173333pt;}
.wsbc{word-spacing:-12.074705pt;}
.wsba{word-spacing:-11.915127pt;}
.wsb9{word-spacing:-11.861935pt;}
.ws2{word-spacing:-11.856000pt;}
.wsb8{word-spacing:-11.755550pt;}
.ws4{word-spacing:-11.376000pt;}
.wsf5{word-spacing:-10.972222pt;}
.ws16a{word-spacing:-10.896000pt;}
.ws19b{word-spacing:-10.624000pt;}
.ws16c{word-spacing:-10.282667pt;}
.ws19f{word-spacing:-10.272000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws0{word-spacing:-9.968000pt;}
.ws16b{word-spacing:-9.856000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws19e{word-spacing:-9.472000pt;}
.ws85{word-spacing:-9.344000pt;}
.wsd5{word-spacing:-9.258667pt;}
.ws19d{word-spacing:-9.045333pt;}
.ws19c{word-spacing:-8.618667pt;}
.ws9f{word-spacing:-4.586667pt;}
.ws1c6{word-spacing:-3.813333pt;}
.ws159{word-spacing:-3.520000pt;}
.ws158{word-spacing:-3.466667pt;}
.ws162{word-spacing:-3.146667pt;}
.wse1{word-spacing:-3.134921pt;}
.ws15a{word-spacing:-3.040000pt;}
.wsad{word-spacing:-2.933333pt;}
.ws78{word-spacing:-2.880000pt;}
.ws137{word-spacing:-2.773333pt;}
.ws15b{word-spacing:-2.666667pt;}
.ws19{word-spacing:-2.560000pt;}
.ws1b3{word-spacing:-2.474667pt;}
.wsd2{word-spacing:-2.448000pt;}
.wse6{word-spacing:-2.400000pt;}
.wsc6{word-spacing:-2.346667pt;}
.ws96{word-spacing:-2.304000pt;}
.ws1b{word-spacing:-2.293333pt;}
.wsd3{word-spacing:-2.256000pt;}
.ws144{word-spacing:-2.240000pt;}
.ws1cc{word-spacing:-2.208000pt;}
.ws93{word-spacing:-2.186667pt;}
.wsc7{word-spacing:-2.160000pt;}
.ws44{word-spacing:-2.133333pt;}
.ws81{word-spacing:-2.080000pt;}
.ws176{word-spacing:-2.064000pt;}
.ws34{word-spacing:-2.026667pt;}
.ws58{word-spacing:-1.973333pt;}
.wsc8{word-spacing:-1.968000pt;}
.wsb1{word-spacing:-1.920000pt;}
.ws10c{word-spacing:-1.866667pt;}
.ws11d{word-spacing:-1.824000pt;}
.ws6e{word-spacing:-1.813333pt;}
.ws149{word-spacing:-1.760000pt;}
.ws184{word-spacing:-1.749333pt;}
.ws15c{word-spacing:-1.706667pt;}
.ws1af{word-spacing:-1.664000pt;}
.ws111{word-spacing:-1.653333pt;}
.wsf0{word-spacing:-1.621333pt;}
.ws15{word-spacing:-1.600000pt;}
.ws1b4{word-spacing:-1.578667pt;}
.wsa2{word-spacing:-1.546667pt;}
.ws17f{word-spacing:-1.536000pt;}
.wsa9{word-spacing:-1.493333pt;}
.ws1c8{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.333333pt;}
.ws17{word-spacing:-1.280000pt;}
.ws13a{word-spacing:-1.226667pt;}
.ws131{word-spacing:-1.173333pt;}
.ws16e{word-spacing:-1.152000pt;}
.ws43{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws13b{word-spacing:-1.013333pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws28{word-spacing:-0.940800pt;}
.ws13{word-spacing:-0.912000pt;}
.ws12f{word-spacing:-0.906667pt;}
.ws18{word-spacing:-0.853333pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws94{word-spacing:-0.800000pt;}
.ws17e{word-spacing:-0.768000pt;}
.wsaf{word-spacing:-0.746667pt;}
.ws17b{word-spacing:-0.725333pt;}
.wse4{word-spacing:-0.693333pt;}
.ws14e{word-spacing:-0.640000pt;}
.ws108{word-spacing:-0.586667pt;}
.ws1a6{word-spacing:-0.554667pt;}
.ws8b{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.480000pt;}
.ws192{word-spacing:-0.469333pt;}
.ws3f{word-spacing:-0.426667pt;}
.ws11e{word-spacing:-0.384000pt;}
.ws12e{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.336000pt;}
.ws123{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.266667pt;}
.ws17c{word-spacing:-0.256000pt;}
.wsf6{word-spacing:-0.241148pt;}
.wsa{word-spacing:-0.240000pt;}
.wsda{word-spacing:-0.215040pt;}
.ws10d{word-spacing:-0.213333pt;}
.ws6f{word-spacing:-0.192000pt;}
.ws18e{word-spacing:-0.170667pt;}
.wsdb{word-spacing:-0.161280pt;}
.ws15d{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.107520pt;}
.ws3d{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.096000pt;}
.ws27{word-spacing:-0.067200pt;}
.wsdd{word-spacing:-0.053760pt;}
.ws33{word-spacing:-0.053333pt;}
.wscc{word-spacing:-0.044749pt;}
.ws8{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.053193pt;}
.ws21{word-spacing:0.053333pt;}
.wsf7{word-spacing:0.060287pt;}
.wscd{word-spacing:0.089498pt;}
.wscf{word-spacing:0.106385pt;}
.ws23{word-spacing:0.106667pt;}
.wsb{word-spacing:0.144000pt;}
.wsd0{word-spacing:0.159578pt;}
.ws5e{word-spacing:0.160000pt;}
.wsf8{word-spacing:0.180861pt;}
.ws120{word-spacing:0.213333pt;}
.wsce{word-spacing:0.265963pt;}
.ws63{word-spacing:0.266667pt;}
.wscb{word-spacing:0.268493pt;}
.ws9e{word-spacing:0.320000pt;}
.ws170{word-spacing:0.336000pt;}
.ws121{word-spacing:0.341333pt;}
.ws22{word-spacing:0.373333pt;}
.ws11f{word-spacing:0.384000pt;}
.ws16{word-spacing:0.426667pt;}
.ws18f{word-spacing:0.469333pt;}
.ws29{word-spacing:0.480000pt;}
.ws122{word-spacing:0.512000pt;}
.ws6a{word-spacing:0.533333pt;}
.wsdc{word-spacing:0.537600pt;}
.ws1a0{word-spacing:0.554667pt;}
.ws7b{word-spacing:0.586667pt;}
.ws66{word-spacing:0.640000pt;}
.ws11c{word-spacing:0.672000pt;}
.ws13e{word-spacing:0.693333pt;}
.ws11b{word-spacing:0.720000pt;}
.ws10e{word-spacing:0.746667pt;}
.ws10{word-spacing:0.768000pt;}
.wsbe{word-spacing:0.800000pt;}
.ws61{word-spacing:0.853333pt;}
.wsc9{word-spacing:0.912000pt;}
.ws4b{word-spacing:0.960000pt;}
.ws52{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.066667pt;}
.wsd4{word-spacing:1.104000pt;}
.wse3{word-spacing:1.120000pt;}
.ws16f{word-spacing:1.152000pt;}
.ws133{word-spacing:1.173333pt;}
.ws62{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.280000pt;}
.ws8d{word-spacing:1.333333pt;}
.ws11{word-spacing:1.344000pt;}
.ws30{word-spacing:1.386667pt;}
.ws1c0{word-spacing:1.408000pt;}
.wsef{word-spacing:1.440000pt;}
.ws103{word-spacing:1.493333pt;}
.ws194{word-spacing:1.578667pt;}
.ws117{word-spacing:1.600000pt;}
.ws1cb{word-spacing:1.632000pt;}
.ws25{word-spacing:1.646400pt;}
.ws57{word-spacing:1.653333pt;}
.ws1b0{word-spacing:1.664000pt;}
.ws88{word-spacing:1.706667pt;}
.ws3c{word-spacing:1.760000pt;}
.wsd{word-spacing:1.824000pt;}
.ws1bf{word-spacing:1.834667pt;}
.ws67{word-spacing:1.866667pt;}
.ws68{word-spacing:1.920000pt;}
.ws8f{word-spacing:1.973333pt;}
.ws1a5{word-spacing:2.005333pt;}
.wsb6{word-spacing:2.016000pt;}
.ws164{word-spacing:2.026667pt;}
.ws1a8{word-spacing:2.048000pt;}
.ws12d{word-spacing:2.080000pt;}
.ws6c{word-spacing:2.133333pt;}
.ws174{word-spacing:2.160000pt;}
.wsb5{word-spacing:2.208000pt;}
.ws87{word-spacing:2.240000pt;}
.ws26{word-spacing:2.251200pt;}
.ws1c2{word-spacing:2.261333pt;}
.ws36{word-spacing:2.293333pt;}
.ws2f{word-spacing:2.346667pt;}
.ws14{word-spacing:2.352000pt;}
.ws48{word-spacing:2.400000pt;}
.ws1a2{word-spacing:2.432000pt;}
.ws10a{word-spacing:2.506667pt;}
.wsea{word-spacing:2.560000pt;}
.ws196{word-spacing:2.602667pt;}
.ws35{word-spacing:2.613333pt;}
.ws10b{word-spacing:2.720000pt;}
.ws38{word-spacing:2.773333pt;}
.ws171{word-spacing:2.784000pt;}
.ws64{word-spacing:2.826667pt;}
.wsed{word-spacing:2.880000pt;}
.ws1ad{word-spacing:2.901333pt;}
.ws20{word-spacing:2.933333pt;}
.ws132{word-spacing:2.986667pt;}
.ws40{word-spacing:3.040000pt;}
.ws193{word-spacing:3.072000pt;}
.ws9b{word-spacing:3.146667pt;}
.ws54{word-spacing:3.200000pt;}
.ws183{word-spacing:3.242667pt;}
.wsa8{word-spacing:3.253333pt;}
.ws1a7{word-spacing:3.285333pt;}
.ws14c{word-spacing:3.306667pt;}
.ws1aa{word-spacing:3.370667pt;}
.ws5d{word-spacing:3.413333pt;}
.wsf4{word-spacing:3.456000pt;}
.wsa3{word-spacing:3.466667pt;}
.ws17d{word-spacing:3.498667pt;}
.wse9{word-spacing:3.573333pt;}
.ws53{word-spacing:3.626667pt;}
.ws6b{word-spacing:3.680000pt;}
.ws1ae{word-spacing:3.712000pt;}
.ws6d{word-spacing:3.733333pt;}
.wsf3{word-spacing:3.744000pt;}
.ws50{word-spacing:3.786667pt;}
.ws45{word-spacing:3.840000pt;}
.wsc{word-spacing:3.888000pt;}
.ws109{word-spacing:3.893333pt;}
.ws191{word-spacing:3.925333pt;}
.wsa4{word-spacing:3.946667pt;}
.ws1b8{word-spacing:3.968000pt;}
.ws125{word-spacing:4.053333pt;}
.ws77{word-spacing:4.106667pt;}
.ws1a1{word-spacing:4.138667pt;}
.wsae{word-spacing:4.160000pt;}
.ws197{word-spacing:4.181333pt;}
.wsa7{word-spacing:4.213333pt;}
.wsc4{word-spacing:4.266667pt;}
.ws2c{word-spacing:4.320000pt;}
.ws1bd{word-spacing:4.394667pt;}
.wsb4{word-spacing:4.426667pt;}
.ws12c{word-spacing:4.480000pt;}
.ws181{word-spacing:4.522667pt;}
.ws14a{word-spacing:4.533333pt;}
.ws166{word-spacing:4.586667pt;}
.wsf{word-spacing:4.608000pt;}
.ws79{word-spacing:4.640000pt;}
.ws136{word-spacing:4.693333pt;}
.ws155{word-spacing:4.746667pt;}
.ws91{word-spacing:4.800000pt;}
.ws154{word-spacing:4.853333pt;}
.wsa0{word-spacing:4.906667pt;}
.ws18b{word-spacing:4.949333pt;}
.ws3a{word-spacing:4.960000pt;}
.wsac{word-spacing:5.066667pt;}
.ws177{word-spacing:5.077333pt;}
.wsc1{word-spacing:5.120000pt;}
.ws18c{word-spacing:5.162667pt;}
.ws89{word-spacing:5.173333pt;}
.ws1c7{word-spacing:5.184000pt;}
.ws18d{word-spacing:5.205333pt;}
.ws69{word-spacing:5.226667pt;}
.wsfd{word-spacing:5.280000pt;}
.ws92{word-spacing:5.333333pt;}
.ws190{word-spacing:5.376000pt;}
.wse5{word-spacing:5.386667pt;}
.ws55{word-spacing:5.440000pt;}
.ws172{word-spacing:5.472000pt;}
.wsc5{word-spacing:5.493333pt;}
.ws17a{word-spacing:5.546667pt;}
.ws4c{word-spacing:5.600000pt;}
.ws1b1{word-spacing:5.632000pt;}
.ws9a{word-spacing:5.653333pt;}
.ws18a{word-spacing:5.674667pt;}
.ws1a9{word-spacing:5.717333pt;}
.ws7e{word-spacing:5.760000pt;}
.ws180{word-spacing:5.802667pt;}
.ws2e{word-spacing:5.813333pt;}
.ws82{word-spacing:5.866667pt;}
.ws1b2{word-spacing:5.888000pt;}
.ws41{word-spacing:5.920000pt;}
.ws76{word-spacing:5.973333pt;}
.ws115{word-spacing:6.026667pt;}
.ws1be{word-spacing:6.058667pt;}
.ws75{word-spacing:6.080000pt;}
.ws7a{word-spacing:6.133333pt;}
.wsca{word-spacing:6.144000pt;}
.ws7c{word-spacing:6.186667pt;}
.ws12a{word-spacing:6.240000pt;}
.ws1c1{word-spacing:6.272000pt;}
.ws13f{word-spacing:6.293333pt;}
.ws4f{word-spacing:6.346667pt;}
.ws1d{word-spacing:6.400000pt;}
.ws195{word-spacing:6.442667pt;}
.ws1e{word-spacing:6.453333pt;}
.ws140{word-spacing:6.506667pt;}
.ws104{word-spacing:6.560000pt;}
.ws178{word-spacing:6.570667pt;}
.ws152{word-spacing:6.613333pt;}
.ws145{word-spacing:6.666667pt;}
.ws16d{word-spacing:6.773333pt;}
.ws1a4{word-spacing:6.784000pt;}
.ws7f{word-spacing:6.826667pt;}
.ws42{word-spacing:6.880000pt;}
.ws1c3{word-spacing:6.922667pt;}
.ws60{word-spacing:6.933333pt;}
.wsab{word-spacing:6.986667pt;}
.ws80{word-spacing:7.040000pt;}
.ws1ba{word-spacing:7.082667pt;}
.ws15f{word-spacing:7.093333pt;}
.ws142{word-spacing:7.146667pt;}
.ws187{word-spacing:7.168000pt;}
.ws95{word-spacing:7.253333pt;}
.ws56{word-spacing:7.306667pt;}
.ws1c4{word-spacing:7.392000pt;}
.ws49{word-spacing:7.413333pt;}
.wsc3{word-spacing:7.466667pt;}
.ws129{word-spacing:7.520000pt;}
.ws32{word-spacing:7.626667pt;}
.ws101{word-spacing:7.680000pt;}
.ws124{word-spacing:7.733333pt;}
.ws4e{word-spacing:7.786667pt;}
.ws31{word-spacing:7.840000pt;}
.ws11a{word-spacing:7.893333pt;}
.ws199{word-spacing:7.936000pt;}
.ws134{word-spacing:7.946667pt;}
.ws8c{word-spacing:8.000000pt;}
.ws130{word-spacing:8.053333pt;}
.ws14d{word-spacing:8.106667pt;}
.wsff{word-spacing:8.160000pt;}
.ws185{word-spacing:8.192000pt;}
.ws112{word-spacing:8.213333pt;}
.ws102{word-spacing:8.266667pt;}
.ws1bc{word-spacing:8.277333pt;}
.ws1b7{word-spacing:8.320000pt;}
.wsfe{word-spacing:8.373333pt;}
.ws147{word-spacing:8.426667pt;}
.ws47{word-spacing:8.480000pt;}
.ws5f{word-spacing:8.533333pt;}
.ws7d{word-spacing:8.586667pt;}
.ws19a{word-spacing:8.661333pt;}
.wsa1{word-spacing:8.693333pt;}
.ws9c{word-spacing:8.746667pt;}
.ws148{word-spacing:8.800000pt;}
.ws5c{word-spacing:8.853333pt;}
.ws1f{word-spacing:8.906667pt;}
.ws113{word-spacing:8.960000pt;}
.ws157{word-spacing:9.013333pt;}
.ws106{word-spacing:9.120000pt;}
.ws110{word-spacing:9.173333pt;}
.ws186{word-spacing:9.216000pt;}
.ws99{word-spacing:9.226667pt;}
.ws156{word-spacing:9.280000pt;}
.ws179{word-spacing:9.301333pt;}
.ws1a{word-spacing:9.386667pt;}
.ws5b{word-spacing:9.440000pt;}
.ws116{word-spacing:9.493333pt;}
.ws139{word-spacing:9.546667pt;}
.ws168{word-spacing:9.600000pt;}
.ws188{word-spacing:9.642667pt;}
.wsb0{word-spacing:9.706667pt;}
.wse8{word-spacing:9.813333pt;}
.ws12b{word-spacing:9.866667pt;}
.ws173{word-spacing:9.984000pt;}
.ws74{word-spacing:10.133333pt;}
.ws51{word-spacing:10.186667pt;}
.wsc0{word-spacing:10.240000pt;}
.wsb2{word-spacing:10.400000pt;}
.ws105{word-spacing:10.453333pt;}
.ws8a{word-spacing:10.506667pt;}
.ws14b{word-spacing:10.560000pt;}
.ws161{word-spacing:10.666667pt;}
.ws2b{word-spacing:10.720000pt;}
.wse7{word-spacing:10.773333pt;}
.wsb3{word-spacing:10.880000pt;}
.ws1ca{word-spacing:10.896000pt;}
.ws138{word-spacing:11.093333pt;}
.ws165{word-spacing:11.200000pt;}
.ws150{word-spacing:11.253333pt;}
.ws126{word-spacing:11.306667pt;}
.ws160{word-spacing:11.360000pt;}
.ws114{word-spacing:11.466667pt;}
.ws4a{word-spacing:11.520000pt;}
.ws72{word-spacing:11.680000pt;}
.ws1b6{word-spacing:11.690667pt;}
.ws119{word-spacing:11.840000pt;}
.ws39{word-spacing:11.893333pt;}
.ws97{word-spacing:12.000000pt;}
.wsa5{word-spacing:12.053333pt;}
.ws1b9{word-spacing:12.373333pt;}
.ws13d{word-spacing:12.426667pt;}
.ws1ab{word-spacing:12.458667pt;}
.ws13c{word-spacing:12.480000pt;}
.ws143{word-spacing:12.533333pt;}
.ws46{word-spacing:12.586667pt;}
.wsfa{word-spacing:12.693333pt;}
.ws71{word-spacing:12.800000pt;}
.ws182{word-spacing:12.842667pt;}
.ws3e{word-spacing:12.853333pt;}
.ws175{word-spacing:12.912000pt;}
.ws1ac{word-spacing:13.013333pt;}
.ws151{word-spacing:13.066667pt;}
.ws107{word-spacing:13.173333pt;}
.ws65{word-spacing:13.333333pt;}
.ws10f{word-spacing:13.386667pt;}
.ws135{word-spacing:13.440000pt;}
.ws2d{word-spacing:13.653333pt;}
.ws118{word-spacing:13.706667pt;}
.ws198{word-spacing:13.866667pt;}
.ws167{word-spacing:13.973333pt;}
.ws90{word-spacing:14.080000pt;}
.ws14f{word-spacing:14.186667pt;}
.ws1bb{word-spacing:14.378667pt;}
.ws8e{word-spacing:14.453333pt;}
.wsc2{word-spacing:14.613333pt;}
.ws70{word-spacing:14.666667pt;}
.ws98{word-spacing:15.146667pt;}
.wsfc{word-spacing:15.466667pt;}
.wseb{word-spacing:15.946667pt;}
.wsee{word-spacing:16.000000pt;}
.ws1b5{word-spacing:16.597333pt;}
.ws127{word-spacing:17.120000pt;}
.ws128{word-spacing:17.493333pt;}
.wsec{word-spacing:17.706667pt;}
.ws1c5{word-spacing:17.717333pt;}
.ws141{word-spacing:17.760000pt;}
.ws5a{word-spacing:18.400000pt;}
.ws146{word-spacing:18.506667pt;}
.ws100{word-spacing:19.626667pt;}
.wsa6{word-spacing:20.106667pt;}
.ws153{word-spacing:20.266667pt;}
.ws59{word-spacing:20.586667pt;}
.ws163{word-spacing:20.640000pt;}
.wsfb{word-spacing:21.066667pt;}
.ws15e{word-spacing:21.386667pt;}
.ws1a3{word-spacing:22.656000pt;}
.ws73{word-spacing:23.680000pt;}
.wsaa{word-spacing:24.373333pt;}
.wsf9{word-spacing:25.706667pt;}
.ws189{word-spacing:28.416000pt;}
.wsdf{word-spacing:28.515719pt;}
.ws1c9{word-spacing:47.520000pt;}
.wsbb{word-spacing:78.625199pt;}
.wsd6{word-spacing:124.335467pt;}
.wsd8{word-spacing:190.638933pt;}
.wsd9{word-spacing:216.367467pt;}
.wsbd{word-spacing:264.795866pt;}
.ws84{word-spacing:306.686400pt;}
.wsd7{word-spacing:345.614400pt;}
.wsb7{word-spacing:425.068851pt;}
.ws83{word-spacing:580.701867pt;}
.ws86{word-spacing:2024.485333pt;}
._8{margin-left:-2509.733867pt;}
._4a{margin-left:-10.731074pt;}
._5{margin-left:-6.790400pt;}
._9{margin-left:-5.651200pt;}
._4{margin-left:-4.672000pt;}
._1{margin-left:-3.136000pt;}
._0{margin-left:-1.848000pt;}
._7{margin-left:-0.899733pt;}
._3{width:0.929600pt;}
._2{width:2.430400pt;}
._20{width:3.712000pt;}
._21{width:5.120000pt;}
._6{width:19.840000pt;}
._49{width:26.707111pt;}
._5c{width:38.096000pt;}
._2e{width:58.199266pt;}
._16{width:71.763200pt;}
._b{width:77.181867pt;}
._17{width:98.670400pt;}
._1e{width:114.361600pt;}
._38{width:116.864000pt;}
._37{width:118.979200pt;}
._2f{width:124.779913pt;}
._42{width:126.107200pt;}
._36{width:129.520533pt;}
._3e{width:130.850133pt;}
._31{width:133.310933pt;}
._1f{width:135.617067pt;}
._4c{width:141.327167pt;}
._4b{width:142.641741pt;}
._10{width:144.478933pt;}
._39{width:152.185067pt;}
._30{width:156.708638pt;}
._2d{width:165.964672pt;}
._46{width:169.232533pt;}
._35{width:170.529600pt;}
._4d{width:174.208533pt;}
._3a{width:178.508267pt;}
._3b{width:189.316267pt;}
._40{width:194.024000pt;}
._32{width:206.297600pt;}
._f{width:207.908267pt;}
._41{width:208.928000pt;}
._3f{width:214.787733pt;}
._1a{width:215.967467pt;}
._3c{width:223.271467pt;}
._19{width:229.024533pt;}
._3d{width:238.730667pt;}
._d{width:247.123200pt;}
._13{width:271.527467pt;}
._14{width:276.563200pt;}
._11{width:277.693867pt;}
._1c{width:286.356267pt;}
._e{width:287.933867pt;}
._2c{width:291.711821pt;}
._15{width:298.173867pt;}
._45{width:303.004267pt;}
._33{width:320.190400pt;}
._22{width:329.034133pt;}
._34{width:354.978667pt;}
._1d{width:361.621867pt;}
._48{width:374.820800pt;}
._47{width:379.558933pt;}
._43{width:389.439467pt;}
._53{width:400.247467pt;}
._44{width:403.051733pt;}
._25{width:416.090133pt;}
._5a{width:446.834133pt;}
._50{width:454.877333pt;}
._5b{width:503.765867pt;}
._4e{width:528.475200pt;}
._24{width:533.198933pt;}
._56{width:538.908800pt;}
._51{width:540.946133pt;}
._26{width:554.188267pt;}
._52{width:561.705067pt;}
._57{width:576.225600pt;}
._2b{width:587.156267pt;}
._4f{width:590.050133pt;}
._58{width:596.060800pt;}
._59{width:605.318933pt;}
._54{width:607.082667pt;}
._1b{width:635.121067pt;}
._12{width:687.883200pt;}
._55{width:699.194133pt;}
._23{width:715.792000pt;}
._29{width:722.566933pt;}
._18{width:726.530133pt;}
._28{width:744.634667pt;}
._c{width:755.041600pt;}
._2a{width:794.809600pt;}
._27{width:797.540267pt;}
._a{width:2106.234667pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:44.748800pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:53.192533pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:53.760000pt;}
.fse{font-size:58.666667pt;}
.fsd{font-size:60.286933pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:3.497867pt;}
.yd3{bottom:4.157333pt;}
.yf8{bottom:4.200667pt;}
.y105{bottom:4.710533pt;}
.yd1{bottom:20.475333pt;}
.yf6{bottom:24.028000pt;}
.y103{bottom:27.106667pt;}
.y26{bottom:57.477067pt;}
.y25{bottom:68.677067pt;}
.y24{bottom:79.877067pt;}
.y104{bottom:87.449733pt;}
.yc5{bottom:97.582933pt;}
.yf7{bottom:107.396400pt;}
.ya3{bottom:109.606267pt;}
.yd2{bottom:110.370715pt;}
.y14a{bottom:111.349067pt;}
.y64{bottom:111.370000pt;}
.ya7{bottom:111.370133pt;}
.ybb{bottom:122.939600pt;}
.y149{bottom:127.349067pt;}
.y63{bottom:127.370000pt;}
.y21{bottom:127.370133pt;}
.ya2{bottom:130.034133pt;}
.y148{bottom:143.349067pt;}
.yba{bottom:143.367467pt;}
.y62{bottom:143.370000pt;}
.y20{bottom:143.370133pt;}
.ya1{bottom:144.591867pt;}
.yb9{bottom:157.925067pt;}
.ya0{bottom:159.149600pt;}
.y147{bottom:159.349067pt;}
.y61{bottom:159.370000pt;}
.y1f{bottom:159.370133pt;}
.yb8{bottom:172.482800pt;}
.y9f{bottom:173.707200pt;}
.y146{bottom:175.349067pt;}
.y60{bottom:175.370000pt;}
.y1e{bottom:175.370133pt;}
.yb7{bottom:187.040533pt;}
.y9e{bottom:188.264933pt;}
.y145{bottom:191.349067pt;}
.y5f{bottom:191.370000pt;}
.y1d{bottom:191.370133pt;}
.yc3{bottom:191.655333pt;}
.yb6{bottom:201.598267pt;}
.y9d{bottom:202.822667pt;}
.y144{bottom:207.349067pt;}
.y5e{bottom:207.370000pt;}
.y1c{bottom:207.370133pt;}
.yf4{bottom:210.911200pt;}
.y106{bottom:213.100267pt;}
.yb5{bottom:216.156000pt;}
.y9c{bottom:217.380400pt;}
.y143{bottom:223.349067pt;}
.y5d{bottom:223.370000pt;}
.y1b{bottom:223.370133pt;}
.y17d{bottom:227.836000pt;}
.yb4{bottom:230.713600pt;}
.y9b{bottom:231.938133pt;}
.y142{bottom:239.349067pt;}
.y5c{bottom:239.370000pt;}
.y1a{bottom:239.370133pt;}
.y17c{bottom:243.836000pt;}
.yb3{bottom:245.271333pt;}
.y9a{bottom:246.495733pt;}
.y141{bottom:255.349067pt;}
.y5b{bottom:255.370000pt;}
.y19{bottom:255.370133pt;}
.yb2{bottom:259.829067pt;}
.y17b{bottom:259.836000pt;}
.y99{bottom:261.053467pt;}
.y140{bottom:271.349067pt;}
.y5a{bottom:271.370000pt;}
.y23{bottom:271.370133pt;}
.yb1{bottom:273.162400pt;}
.y17a{bottom:275.836000pt;}
.y98{bottom:275.944533pt;}
.ye9{bottom:285.326533pt;}
.y13f{bottom:287.349067pt;}
.y59{bottom:287.370000pt;}
.y22{bottom:287.370133pt;}
.yb0{bottom:287.720133pt;}
.y179{bottom:291.836000pt;}
.yd4{bottom:296.532267pt;}
.y18{bottom:297.003733pt;}
.y97{bottom:299.192533pt;}
.yaf{bottom:302.277867pt;}
.y13e{bottom:303.349067pt;}
.y58{bottom:303.370000pt;}
.ya6{bottom:303.370133pt;}
.yf3{bottom:304.254667pt;}
.y178{bottom:307.836000pt;}
.y96{bottom:315.192533pt;}
.yae{bottom:316.835467pt;}
.y13d{bottom:319.349067pt;}
.y57{bottom:319.370000pt;}
.ya5{bottom:319.370133pt;}
.y177{bottom:323.836000pt;}
.yf5{bottom:328.282667pt;}
.yad{bottom:331.393200pt;}
.y13c{bottom:335.349067pt;}
.y56{bottom:335.370000pt;}
.ya4{bottom:335.370133pt;}
.y176{bottom:339.836000pt;}
.yea{bottom:345.700933pt;}
.yac{bottom:346.284267pt;}
.y13b{bottom:351.349067pt;}
.y55{bottom:351.370000pt;}
.y8d{bottom:351.370133pt;}
.y175{bottom:355.836000pt;}
.yab{bottom:359.617600pt;}
.yeb{bottom:364.530373pt;}
.y17{bottom:364.804267pt;}
.y13a{bottom:367.349067pt;}
.y54{bottom:367.370000pt;}
.y8c{bottom:367.370133pt;}
.y174{bottom:371.836000pt;}
.yaa{bottom:382.865600pt;}
.y139{bottom:383.349067pt;}
.yec{bottom:383.359813pt;}
.y53{bottom:383.370000pt;}
.y8b{bottom:383.370133pt;}
.y173{bottom:387.836000pt;}
.y16{bottom:388.363333pt;}
.ya9{bottom:398.865600pt;}
.y138{bottom:399.349067pt;}
.y52{bottom:399.370000pt;}
.y8a{bottom:399.370133pt;}
.yed{bottom:402.189253pt;}
.y172{bottom:403.836000pt;}
.ya8{bottom:414.865600pt;}
.y137{bottom:415.349067pt;}
.y51{bottom:415.370000pt;}
.y89{bottom:415.370133pt;}
.y171{bottom:419.836000pt;}
.yee{bottom:421.018693pt;}
.y182{bottom:427.374000pt;}
.y136{bottom:431.349067pt;}
.y50{bottom:431.370000pt;}
.y88{bottom:431.370133pt;}
.y170{bottom:435.836000pt;}
.yef{bottom:439.848133pt;}
.ybc{bottom:441.902800pt;}
.y15{bottom:442.158533pt;}
.y181{bottom:443.374000pt;}
.y135{bottom:447.349067pt;}
.y4f{bottom:447.370000pt;}
.y95{bottom:447.370133pt;}
.y16f{bottom:451.836000pt;}
.y14{bottom:458.158533pt;}
.yf0{bottom:458.677573pt;}
.y180{bottom:459.374000pt;}
.y87{bottom:460.472400pt;}
.yc2{bottom:460.830667pt;}
.y134{bottom:463.349067pt;}
.y4e{bottom:463.370000pt;}
.y94{bottom:463.370133pt;}
.y16e{bottom:467.836000pt;}
.y13{bottom:474.158533pt;}
.y17f{bottom:475.374000pt;}
.yf1{bottom:477.507013pt;}
.y133{bottom:479.349067pt;}
.y4d{bottom:479.370000pt;}
.y93{bottom:479.370133pt;}
.yc4{bottom:480.986800pt;}
.y16d{bottom:483.836000pt;}
.y12{bottom:490.158533pt;}
.y132{bottom:495.349067pt;}
.y4c{bottom:495.370000pt;}
.y86{bottom:495.370133pt;}
.ybd{bottom:495.473333pt;}
.yf2{bottom:496.336453pt;}
.y16c{bottom:499.836000pt;}
.y17e{bottom:502.712533pt;}
.y11{bottom:506.158533pt;}
.y131{bottom:511.349067pt;}
.y4b{bottom:511.370000pt;}
.y85{bottom:511.370133pt;}
.y107{bottom:514.246667pt;}
.y16b{bottom:515.836000pt;}
.y66{bottom:518.908133pt;}
.y10{bottom:522.158533pt;}
.ybe{bottom:526.875804pt;}
.y130{bottom:527.349067pt;}
.y4a{bottom:527.370000pt;}
.y84{bottom:527.370133pt;}
.y16a{bottom:531.836000pt;}
.yf{bottom:538.158533pt;}
.y12f{bottom:543.349067pt;}
.y49{bottom:543.370000pt;}
.y83{bottom:543.370133pt;}
.yfa{bottom:545.001200pt;}
.y65{bottom:546.246667pt;}
.y169{bottom:547.836000pt;}
.ye{bottom:554.158533pt;}
.ybf{bottom:558.278274pt;}
.y12e{bottom:559.349067pt;}
.y48{bottom:559.370000pt;}
.y82{bottom:559.370133pt;}
.yf9{bottom:561.001200pt;}
.y168{bottom:563.836000pt;}
.yd{bottom:570.158533pt;}
.y12d{bottom:575.349067pt;}
.y47{bottom:575.370000pt;}
.y81{bottom:575.370133pt;}
.y167{bottom:579.836000pt;}
.y102{bottom:579.930667pt;}
.yc{bottom:586.158533pt;}
.yc0{bottom:589.680745pt;}
.y12c{bottom:591.349067pt;}
.y46{bottom:591.370000pt;}
.y80{bottom:591.370133pt;}
.y11f{bottom:594.246667pt;}
.y166{bottom:595.836000pt;}
.yb{bottom:602.158533pt;}
.y101{bottom:607.037423pt;}
.y12b{bottom:607.349067pt;}
.y45{bottom:607.370000pt;}
.y7f{bottom:607.370133pt;}
.y165{bottom:611.836000pt;}
.yc1{bottom:621.083215pt;}
.y12a{bottom:623.349067pt;}
.y44{bottom:623.370000pt;}
.y7e{bottom:623.370133pt;}
.ya{bottom:625.717600pt;}
.yfb{bottom:626.600533pt;}
.y164{bottom:627.836000pt;}
.y43{bottom:639.370000pt;}
.y7d{bottom:639.370133pt;}
.y163{bottom:643.836000pt;}
.y129{bottom:650.687600pt;}
.yfc{bottom:654.046160pt;}
.y42{bottom:655.370000pt;}
.y92{bottom:655.370133pt;}
.y162{bottom:659.836000pt;}
.y7c{bottom:668.472400pt;}
.y41{bottom:671.370000pt;}
.y91{bottom:671.370133pt;}
.y9{bottom:675.733333pt;}
.y161{bottom:675.836000pt;}
.yd9{bottom:677.281067pt;}
.yfd{bottom:681.491786pt;}
.y40{bottom:687.370000pt;}
.y90{bottom:687.370133pt;}
.y11e{bottom:689.287067pt;}
.y8{bottom:691.733333pt;}
.y160{bottom:691.836000pt;}
.yd8{bottom:693.281067pt;}
.y11d{bottom:702.620400pt;}
.y3f{bottom:703.370000pt;}
.y7b{bottom:703.370133pt;}
.y15f{bottom:707.836000pt;}
.yfe{bottom:708.937413pt;}
.yd7{bottom:709.281067pt;}
.y3e{bottom:719.370000pt;}
.y7a{bottom:719.370133pt;}
.y7{bottom:722.851600pt;}
.y11c{bottom:723.048400pt;}
.y15e{bottom:723.836000pt;}
.yd0{bottom:728.209333pt;}
.y3d{bottom:735.370000pt;}
.y79{bottom:735.370133pt;}
.yff{bottom:736.383039pt;}
.y128{bottom:737.548400pt;}
.y11b{bottom:737.606000pt;}
.y15d{bottom:739.836000pt;}
.ycf{bottom:748.684407pt;}
.y3c{bottom:751.370000pt;}
.y78{bottom:751.370133pt;}
.y11a{bottom:752.163733pt;}
.yce{bottom:755.386667pt;}
.y15c{bottom:755.836000pt;}
.y100{bottom:763.828665pt;}
.y6{bottom:765.308267pt;}
.y119{bottom:766.721467pt;}
.y3b{bottom:767.370000pt;}
.y77{bottom:767.370133pt;}
.y15b{bottom:771.836000pt;}
.yc7{bottom:772.815333pt;}
.y118{bottom:781.279200pt;}
.y3a{bottom:783.370000pt;}
.y76{bottom:783.370133pt;}
.y15a{bottom:787.836000pt;}
.y5{bottom:788.867333pt;}
.y117{bottom:795.836800pt;}
.y39{bottom:799.370000pt;}
.y75{bottom:799.370133pt;}
.y127{bottom:801.548400pt;}
.yc8{bottom:802.909009pt;}
.y159{bottom:803.836000pt;}
.y116{bottom:810.394533pt;}
.y4{bottom:812.426400pt;}
.y38{bottom:815.370000pt;}
.y74{bottom:815.370133pt;}
.y8f{bottom:818.246800pt;}
.y158{bottom:819.836000pt;}
.ye8{bottom:824.197467pt;}
.y115{bottom:824.952267pt;}
.y37{bottom:831.370000pt;}
.y73{bottom:831.370133pt;}
.yc9{bottom:833.002685pt;}
.y157{bottom:835.836000pt;}
.ye7{bottom:837.530800pt;}
.y114{bottom:839.509867pt;}
.y36{bottom:847.370000pt;}
.y72{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.y123{bottom:849.548400pt;}
.y156{bottom:851.836000pt;}
.y113{bottom:854.067733pt;}
.ye6{bottom:857.958667pt;}
.yca{bottom:863.096361pt;}
.y35{bottom:863.370000pt;}
.y71{bottom:863.370133pt;}
.y126{bottom:865.548267pt;}
.y155{bottom:867.836000pt;}
.y112{bottom:868.625467pt;}
.ye5{bottom:872.516400pt;}
.y34{bottom:879.370000pt;}
.y70{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y111{bottom:883.183067pt;}
.y154{bottom:883.836000pt;}
.ye4{bottom:885.849733pt;}
.ye3{bottom:887.074000pt;}
.ycb{bottom:893.190036pt;}
.y33{bottom:895.370000pt;}
.y6f{bottom:895.370133pt;}
.y110{bottom:897.740800pt;}
.y153{bottom:899.836000pt;}
.ye2{bottom:900.407333pt;}
.y122{bottom:902.908000pt;}
.y32{bottom:911.370000pt;}
.y6e{bottom:911.370133pt;}
.y10f{bottom:912.298533pt;}
.y125{bottom:913.548267pt;}
.y1{bottom:914.825067pt;}
.ye1{bottom:914.965067pt;}
.y152{bottom:915.836000pt;}
.ycc{bottom:923.283712pt;}
.y10e{bottom:926.856267pt;}
.y31{bottom:927.370000pt;}
.y6d{bottom:927.370133pt;}
.ye0{bottom:929.522800pt;}
.y121{bottom:930.246667pt;}
.y151{bottom:931.836000pt;}
.y10d{bottom:941.413867pt;}
.y30{bottom:943.370000pt;}
.y6c{bottom:943.370133pt;}
.ydf{bottom:944.080533pt;}
.y150{bottom:947.836000pt;}
.ycd{bottom:953.377388pt;}
.y10c{bottom:955.971600pt;}
.y8e{bottom:956.472533pt;}
.yde{bottom:958.638133pt;}
.y2f{bottom:959.370000pt;}
.y6b{bottom:959.370133pt;}
.y124{bottom:961.548267pt;}
.y14f{bottom:963.836000pt;}
.y10b{bottom:970.862667pt;}
.ydd{bottom:973.529200pt;}
.y2e{bottom:975.370000pt;}
.y6a{bottom:975.370133pt;}
.yd6{bottom:977.664267pt;}
.y14e{bottom:979.836000pt;}
.ydc{bottom:986.862533pt;}
.y2d{bottom:991.370000pt;}
.y69{bottom:991.370133pt;}
.y10a{bottom:994.110667pt;}
.y14d{bottom:995.836000pt;}
.yd5{bottom:1001.203467pt;}
.y29{bottom:1001.533333pt;}
.y2c{bottom:1007.370000pt;}
.y68{bottom:1007.370133pt;}
.ydb{bottom:1010.110533pt;}
.y109{bottom:1010.110667pt;}
.y14c{bottom:1011.836000pt;}
.y120{bottom:1020.843867pt;}
.y2b{bottom:1023.370000pt;}
.y67{bottom:1023.370133pt;}
.yda{bottom:1026.110533pt;}
.y108{bottom:1026.110667pt;}
.y14b{bottom:1027.836000pt;}
.y28{bottom:1036.478000pt;}
.y27{bottom:1052.257600pt;}
.y2a{bottom:1060.905467pt;}
.hc{height:24.511200pt;}
.hd{height:29.180000pt;}
.he{height:30.175781pt;}
.h4{height:30.378667pt;}
.h10{height:30.429184pt;}
.hf{height:30.464000pt;}
.h5{height:31.125333pt;}
.h6{height:35.029333pt;}
.h7{height:35.160000pt;}
.h12{height:36.170923pt;}
.h14{height:36.556800pt;}
.h18{height:39.066667pt;}
.h8{height:39.408000pt;}
.h16{height:40.995115pt;}
.h19{height:42.973333pt;}
.hb{height:43.786667pt;}
.h9{height:46.880000pt;}
.h3{height:52.544000pt;}
.ha{height:54.693333pt;}
.h2{height:82.040000pt;}
.h11{height:200.782667pt;}
.h15{height:221.876000pt;}
.h17{height:225.397333pt;}
.h13{height:307.381333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:339.534667pt;}
.w4{width:375.838667pt;}
.w3{width:536.757333pt;}
.w5{width:627.401333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.127600pt;}
.x34{left:10.851738pt;}
.x4d{left:12.297733pt;}
.x18{left:15.197733pt;}
.x44{left:17.961733pt;}
.x4f{left:62.101467pt;}
.x1{left:83.149600pt;}
.x10{left:85.417333pt;}
.x35{left:93.139067pt;}
.x37{left:95.620800pt;}
.xe{left:98.267733pt;}
.x4a{left:103.630170pt;}
.x49{left:115.024400pt;}
.x50{left:118.139733pt;}
.x3{left:129.087067pt;}
.x46{left:136.374533pt;}
.x4b{left:141.791798pt;}
.x1a{left:146.674933pt;}
.x13{left:147.568800pt;}
.xf{left:163.998933pt;}
.x39{left:169.408800pt;}
.x48{left:175.697867pt;}
.x1b{left:179.720400pt;}
.x38{left:182.555200pt;}
.x2{left:188.301467pt;}
.x3e{left:195.296533pt;}
.x1c{left:198.936203pt;}
.x4{left:204.444800pt;}
.x43{left:208.930667pt;}
.x1d{left:218.152005pt;}
.x36{left:221.611067pt;}
.x17{left:227.082667pt;}
.x42{left:233.706400pt;}
.x1e{left:237.367808pt;}
.x16{left:242.280331pt;}
.x15{left:247.929867pt;}
.x5{left:253.417333pt;}
.x1f{left:256.583611pt;}
.x3f{left:260.524267pt;}
.x40{left:266.610000pt;}
.x41{left:267.767200pt;}
.x3a{left:274.044267pt;}
.x20{left:275.799413pt;}
.x21{left:295.015216pt;}
.x14{left:299.592000pt;}
.x4e{left:302.731733pt;}
.x12{left:311.004133pt;}
.x22{left:314.231019pt;}
.x45{left:319.520400pt;}
.x11{left:325.942533pt;}
.xc{left:333.851067pt;}
.xd{left:336.725067pt;}
.x3b{left:343.277733pt;}
.x23{left:352.662624pt;}
.x6{left:367.342267pt;}
.x24{left:371.878427pt;}
.x25{left:391.094229pt;}
.x8{left:404.849733pt;}
.x26{left:410.310032pt;}
.x7{left:417.728667pt;}
.x9{left:419.967867pt;}
.x27{left:429.525835pt;}
.x28{left:448.741637pt;}
.x29{left:467.957440pt;}
.x47{left:473.182400pt;}
.x2a{left:487.173243pt;}
.x3c{left:499.335067pt;}
.x2b{left:506.389045pt;}
.x2c{left:525.604848pt;}
.x33{left:531.646533pt;}
.xb{left:534.411200pt;}
.x2d{left:544.820651pt;}
.x2e{left:564.036453pt;}
.x2f{left:583.252256pt;}
.x30{left:602.468059pt;}
.x4c{left:610.805333pt;}
.xa{left:618.252533pt;}
.x3d{left:619.183200pt;}
.x31{left:621.683861pt;}
.x32{left:640.899664pt;}
}




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