
    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_11c541dd5bbe49a7150f0b38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_1bf18c4499fca7d5f2971b7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_5c067c0a42906655001daccb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_69e039c0ceb1a17a299d12e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_83313ac1683b1758914821f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_4fff587d0531a2eb57f743e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_d980de7bb06520efdbee8760.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_1cd74c3cf9a3c94f7261c645.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_11d8771755fe98c15ac982af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_eef0ca4951874bc9c48e6df2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_a7f26eb6fdb969bab51315f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_a5b6e1f4c36aee7491e4efe0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.795000;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_eef0ca4951874bc9c48e6df2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_bcd7617d5e9664e0c5098763.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989000;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_39179bcf824b41535f6ef122.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.965200px;}
.v3{vertical-align:-3.216000px;}
.v5{vertical-align:-2.194200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls21{letter-spacing:-3.168000px;}
.ls22{letter-spacing:-2.448000px;}
.ls10{letter-spacing:-2.304000px;}
.ls28{letter-spacing:-2.256000px;}
.ls20{letter-spacing:-2.112000px;}
.ls25{letter-spacing:-2.064000px;}
.ls1e{letter-spacing:-1.632000px;}
.ls11{letter-spacing:-1.104000px;}
.ls14{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.816000px;}
.ls29{letter-spacing:-0.624000px;}
.ls8{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.132000px;}
.ls24{letter-spacing:-0.096000px;}
.ls27{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls5{letter-spacing:0.006000px;}
.ls1f{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.096000px;}
.ls1d{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.384000px;}
.ls1b{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.624000px;}
.ls16{letter-spacing:0.672000px;}
.ls18{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.152000px;}
.lse{letter-spacing:1.632000px;}
.ls2{letter-spacing:3.480000px;}
.lsb{letter-spacing:123.597000px;}
.lsa{letter-spacing:168.292800px;}
.ls4{letter-spacing:275.456400px;}
.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;}
}
.wsf{word-spacing:-15.012000px;}
.ws44{word-spacing:-14.976000px;}
.ws42{word-spacing:-14.496000px;}
.ws43{word-spacing:-14.448000px;}
.ws55{word-spacing:-13.776000px;}
.ws45{word-spacing:-13.488000px;}
.ws56{word-spacing:-13.296000px;}
.ws3{word-spacing:-12.336000px;}
.ws46{word-spacing:-11.712000px;}
.ws54{word-spacing:-11.280000px;}
.ws41{word-spacing:-11.040000px;}
.ws1{word-spacing:-10.508400px;}
.ws1e{word-spacing:-10.130400px;}
.ws2e{word-spacing:-4.320000px;}
.ws2d{word-spacing:-2.970000px;}
.wse{word-spacing:-2.400000px;}
.ws21{word-spacing:-2.322000px;}
.ws24{word-spacing:-1.944000px;}
.ws15{word-spacing:-1.728000px;}
.ws19{word-spacing:-1.458000px;}
.wsa{word-spacing:-1.134000px;}
.ws4c{word-spacing:-0.672000px;}
.ws4d{word-spacing:-0.624000px;}
.ws18{word-spacing:-0.594000px;}
.ws49{word-spacing:-0.576000px;}
.ws20{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.384000px;}
.ws59{word-spacing:-0.336000px;}
.ws23{word-spacing:-0.270000px;}
.ws4e{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.189000px;}
.ws34{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.096000px;}
.ws51{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws5c{word-spacing:0.048000px;}
.ws5a{word-spacing:0.096000px;}
.ws47{word-spacing:0.132000px;}
.ws4b{word-spacing:0.240000px;}
.ws14{word-spacing:0.270000px;}
.ws35{word-spacing:0.432000px;}
.ws33{word-spacing:0.480000px;}
.ws12{word-spacing:0.540000px;}
.ws5d{word-spacing:0.624000px;}
.ws5b{word-spacing:0.816000px;}
.ws4a{word-spacing:0.864000px;}
.ws1c{word-spacing:0.960000px;}
.ws40{word-spacing:1.026000px;}
.ws48{word-spacing:1.104000px;}
.ws36{word-spacing:1.188000px;}
.ws1d{word-spacing:1.488000px;}
.ws3d{word-spacing:1.512000px;}
.ws9{word-spacing:1.566000px;}
.ws27{word-spacing:1.728000px;}
.ws52{word-spacing:2.112000px;}
.ws1b{word-spacing:2.160000px;}
.ws28{word-spacing:2.256000px;}
.ws5e{word-spacing:2.304000px;}
.ws10{word-spacing:2.376000px;}
.ws26{word-spacing:2.430000px;}
.ws58{word-spacing:2.448000px;}
.ws8{word-spacing:2.592000px;}
.wsc{word-spacing:2.976000px;}
.ws17{word-spacing:3.024000px;}
.ws57{word-spacing:3.168000px;}
.ws1a{word-spacing:3.726000px;}
.ws6{word-spacing:3.780000px;}
.ws25{word-spacing:4.536000px;}
.ws7{word-spacing:4.752000px;}
.ws16{word-spacing:4.860000px;}
.ws3f{word-spacing:5.724000px;}
.ws39{word-spacing:6.048000px;}
.ws1f{word-spacing:6.426000px;}
.ws31{word-spacing:6.912000px;}
.ws11{word-spacing:7.452000px;}
.ws30{word-spacing:7.560000px;}
.ws3b{word-spacing:8.208000px;}
.ws38{word-spacing:8.640000px;}
.ws3c{word-spacing:9.018000px;}
.ws3a{word-spacing:10.098000px;}
.ws5{word-spacing:10.746000px;}
.wsb{word-spacing:12.258000px;}
.ws13{word-spacing:15.606000px;}
.ws3e{word-spacing:19.602000px;}
.ws2f{word-spacing:22.242000px;}
.ws2{word-spacing:105.456000px;}
.ws22{word-spacing:129.006000px;}
.ws53{word-spacing:245.436000px;}
.ws2a{word-spacing:281.328000px;}
.ws2c{word-spacing:321.360000px;}
.ws2b{word-spacing:323.568000px;}
.ws29{word-spacing:356.928000px;}
.ws0{word-spacing:1242.054000px;}
._e{margin-left:-28.398600px;}
._f{margin-left:-18.770400px;}
._c{margin-left:-14.380200px;}
._14{margin-left:-4.444200px;}
._9{margin-left:-3.099600px;}
._3{margin-left:-2.062800px;}
._8{margin-left:-1.058400px;}
._2{width:1.819800px;}
._7{width:3.007800px;}
._5{width:4.649400px;}
._6{width:6.037200px;}
._1{width:7.084800px;}
._4{width:8.121600px;}
._a{width:9.212400px;}
._b{width:10.659600px;}
._12{width:11.772000px;}
._d{width:12.943800px;}
._21{width:13.980600px;}
._27{width:14.984400px;}
._0{width:16.070400px;}
._13{width:17.323200px;}
._11{width:18.603000px;}
._20{width:19.612800px;}
._29{width:20.971800px;}
._22{width:22.091400px;}
._24{width:23.320800px;}
._25{width:39.848400px;}
._26{width:41.280000px;}
._23{width:43.342800px;}
._28{width:45.724200px;}
._17{width:113.994000px;}
._16{width:129.006000px;}
._1f{width:207.494400px;}
._1d{width:214.166400px;}
._1b{width:332.016000px;}
._1a{width:380.256000px;}
._18{width:401.568000px;}
._19{width:412.272000px;}
._1e{width:466.906200px;}
._1c{width:493.643400px;}
._15{width:943.429800px;}
._10{width:1361.538600px;}
.fc9{color:rgb(16,15,13);}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:17.301750px;}
.y3b{bottom:46.967550px;}
.y3c{bottom:47.167950px;}
.y9b{bottom:47.171700px;}
.y9a{bottom:47.916000px;}
.y35{bottom:59.074650px;}
.y39{bottom:59.194650px;}
.y34{bottom:77.074650px;}
.y38{bottom:77.194650px;}
.y1d2{bottom:80.658600px;}
.y1b6{bottom:80.829900px;}
.ya7{bottom:90.309450px;}
.yc9{bottom:92.274750px;}
.y190{bottom:92.288250px;}
.y99{bottom:92.291250px;}
.y6a{bottom:92.298750px;}
.yf3{bottom:92.301750px;}
.y125{bottom:94.806750px;}
.y104{bottom:94.821450px;}
.y33{bottom:95.074650px;}
.y37{bottom:95.194650px;}
.y1d1{bottom:97.158600px;}
.y1b5{bottom:97.329900px;}
.ya6{bottom:106.809450px;}
.yc8{bottom:111.026250px;}
.y18f{bottom:111.039750px;}
.y16d{bottom:111.041250px;}
.y98{bottom:111.042750px;}
.y69{bottom:111.050250px;}
.y124{bottom:111.306750px;}
.y103{bottom:111.321450px;}
.y32{bottom:113.074650px;}
.y36{bottom:113.194650px;}
.y1d0{bottom:113.658600px;}
.y1b4{bottom:113.829900px;}
.ya5{bottom:123.309450px;}
.y123{bottom:127.806750px;}
.y102{bottom:127.821450px;}
.yc7{bottom:129.777750px;}
.y18e{bottom:129.791250px;}
.y16c{bottom:129.792750px;}
.y97{bottom:129.794250px;}
.y68{bottom:129.801750px;}
.y1cf{bottom:130.158600px;}
.y1b3{bottom:130.329900px;}
.ya4{bottom:139.809450px;}
.y122{bottom:144.306750px;}
.y14a{bottom:144.309450px;}
.y101{bottom:144.321450px;}
.y1ce{bottom:146.658600px;}
.y1b2{bottom:146.829900px;}
.yc6{bottom:148.529250px;}
.y18d{bottom:148.542750px;}
.y16b{bottom:148.544250px;}
.y96{bottom:148.545750px;}
.y28{bottom:159.373050px;}
.y121{bottom:160.806750px;}
.y149{bottom:160.809450px;}
.y100{bottom:160.821450px;}
.y1cd{bottom:163.158600px;}
.y1b1{bottom:163.329900px;}
.yc5{bottom:167.280750px;}
.y18c{bottom:167.294250px;}
.y16a{bottom:167.295750px;}
.y95{bottom:167.297250px;}
.y67{bottom:167.301750px;}
.y120{bottom:177.306750px;}
.y148{bottom:177.309450px;}
.yff{bottom:177.321450px;}
.y1cc{bottom:179.658600px;}
.y1b0{bottom:179.829900px;}
.yf2{bottom:186.021750px;}
.yc4{bottom:186.032250px;}
.y18b{bottom:186.045750px;}
.y169{bottom:186.047250px;}
.y2e{bottom:187.813050px;}
.y6{bottom:187.814400px;}
.y1cb{bottom:196.158600px;}
.y1af{bottom:196.329900px;}
.y2d{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.yf1{bottom:204.773250px;}
.yc3{bottom:204.783750px;}
.y18a{bottom:204.797250px;}
.y168{bottom:204.798750px;}
.y94{bottom:204.800250px;}
.y1ca{bottom:212.658600px;}
.y1ae{bottom:212.829900px;}
.y2c{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y11f{bottom:223.438950px;}
.yf0{bottom:223.524750px;}
.y66{bottom:223.544250px;}
.y189{bottom:223.548750px;}
.y93{bottom:223.550250px;}
.y1c9{bottom:229.158600px;}
.y1ad{bottom:229.329900px;}
.y2b{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y92{bottom:242.244750px;}
.yef{bottom:242.276250px;}
.yc2{bottom:242.286750px;}
.y65{bottom:242.295750px;}
.y167{bottom:242.300250px;}
.y1c8{bottom:245.658600px;}
.y1ac{bottom:245.829900px;}
.y11e{bottom:250.279500px;}
.y2a{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y91{bottom:260.996250px;}
.yee{bottom:261.027750px;}
.yc1{bottom:261.038250px;}
.y188{bottom:261.045750px;}
.y64{bottom:261.047250px;}
.y166{bottom:261.050250px;}
.y1c7{bottom:262.158600px;}
.y1ab{bottom:262.329900px;}
.y29{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y11d{bottom:276.571500px;}
.y1c6{bottom:278.658600px;}
.y1aa{bottom:278.829900px;}
.y90{bottom:279.747750px;}
.yed{bottom:279.779250px;}
.yc0{bottom:279.789750px;}
.y187{bottom:279.797250px;}
.y63{bottom:279.798750px;}
.y165{bottom:279.800250px;}
.y1c5{bottom:295.158600px;}
.y1a9{bottom:295.329900px;}
.y8f{bottom:298.499250px;}
.yec{bottom:298.530750px;}
.ybf{bottom:298.541250px;}
.y164{bottom:298.548750px;}
.y11c{bottom:302.311500px;}
.y1c4{bottom:311.658600px;}
.y1a8{bottom:311.829900px;}
.y8e{bottom:317.250750px;}
.ybe{bottom:317.292750px;}
.y62{bottom:317.295750px;}
.y163{bottom:317.300250px;}
.y11b{bottom:318.811500px;}
.y31{bottom:325.473450px;}
.y1c3{bottom:328.158600px;}
.y1a7{bottom:328.329900px;}
.y8d{bottom:336.002250px;}
.yeb{bottom:336.033750px;}
.ybd{bottom:336.044250px;}
.y61{bottom:336.047250px;}
.y162{bottom:336.051750px;}
.y1c2{bottom:344.658600px;}
.y1a6{bottom:344.829900px;}
.y8c{bottom:354.753750px;}
.ybc{bottom:354.795750px;}
.y60{bottom:354.798750px;}
.y1c1{bottom:361.158600px;}
.y1a5{bottom:361.329900px;}
.y143{bottom:373.494750px;}
.y8b{bottom:373.505250px;}
.yea{bottom:373.536750px;}
.y161{bottom:373.544250px;}
.y186{bottom:373.547250px;}
.y11a{bottom:373.548750px;}
.y5f{bottom:373.550250px;}
.y1c0{bottom:377.658600px;}
.y1a4{bottom:377.829900px;}
.y142{bottom:392.246250px;}
.ye9{bottom:392.288250px;}
.y5e{bottom:392.292750px;}
.y160{bottom:392.295750px;}
.ybb{bottom:392.298750px;}
.y119{bottom:392.300250px;}
.y1bf{bottom:394.158600px;}
.y1a3{bottom:394.329900px;}
.y1be{bottom:410.658600px;}
.y1a2{bottom:410.829900px;}
.y141{bottom:410.997750px;}
.y8a{bottom:411.008250px;}
.ye8{bottom:411.039750px;}
.y5d{bottom:411.044250px;}
.y15f{bottom:411.047250px;}
.y185{bottom:411.050250px;}
.y118{bottom:411.051750px;}
.y1bd{bottom:427.158600px;}
.y1a1{bottom:427.329900px;}
.y140{bottom:429.749250px;}
.y89{bottom:429.759750px;}
.yba{bottom:429.789750px;}
.y5c{bottom:429.795750px;}
.y15e{bottom:429.798750px;}
.y184{bottom:429.801750px;}
.y1bc{bottom:443.658600px;}
.y1a0{bottom:443.829900px;}
.y13f{bottom:448.500750px;}
.y88{bottom:448.511250px;}
.ye7{bottom:448.542750px;}
.y5b{bottom:448.547250px;}
.y15d{bottom:448.550250px;}
.y117{bottom:448.557750px;}
.y1bb{bottom:460.158600px;}
.y19f{bottom:460.329900px;}
.y27{bottom:461.964600px;}
.y13e{bottom:467.252250px;}
.y87{bottom:467.262750px;}
.yb9{bottom:467.292750px;}
.ye6{bottom:467.294250px;}
.y15c{bottom:467.295750px;}
.y5a{bottom:467.298750px;}
.y116{bottom:467.301750px;}
.y1ba{bottom:476.658600px;}
.y19e{bottom:476.829900px;}
.y13d{bottom:486.003750px;}
.y86{bottom:486.014250px;}
.yb8{bottom:486.044250px;}
.ye5{bottom:486.045750px;}
.y15b{bottom:486.047250px;}
.y59{bottom:486.050250px;}
.y1b9{bottom:493.158600px;}
.y19d{bottom:493.329900px;}
.y85{bottom:504.765750px;}
.y183{bottom:504.795750px;}
.ye4{bottom:504.797250px;}
.y15a{bottom:504.798750px;}
.y58{bottom:504.801750px;}
.y1b8{bottom:509.658600px;}
.y1f1{bottom:518.565450px;}
.y13c{bottom:523.506750px;}
.y84{bottom:523.517250px;}
.y115{bottom:523.539750px;}
.yb7{bottom:523.547250px;}
.ye3{bottom:523.548750px;}
.y159{bottom:523.550250px;}
.y1b7{bottom:526.158600px;}
.y19c{bottom:526.329900px;}
.y1f0{bottom:535.065450px;}
.y13b{bottom:542.258250px;}
.y83{bottom:542.268750px;}
.y114{bottom:542.291250px;}
.yb6{bottom:542.298750px;}
.ye2{bottom:542.300250px;}
.y57{bottom:542.301750px;}
.y1ef{bottom:551.565450px;}
.ya3{bottom:554.553450px;}
.y1e{bottom:558.757950px;}
.y13a{bottom:561.009750px;}
.y82{bottom:561.020250px;}
.y113{bottom:561.042750px;}
.yb5{bottom:561.050250px;}
.ye1{bottom:561.051750px;}
.y1ee{bottom:568.065450px;}
.ya2{bottom:571.053450px;}
.yfe{bottom:573.321450px;}
.y1d{bottom:573.756450px;}
.y139{bottom:579.761250px;}
.y158{bottom:579.791250px;}
.y112{bottom:579.794250px;}
.yb4{bottom:579.798750px;}
.y182{bottom:579.801750px;}
.y1ed{bottom:584.565450px;}
.y1c{bottom:588.754950px;}
.yfd{bottom:589.821450px;}
.y138{bottom:598.512750px;}
.y81{bottom:598.523250px;}
.y157{bottom:598.542750px;}
.y195{bottom:598.544250px;}
.y56{bottom:598.545750px;}
.ye0{bottom:598.551750px;}
.y19b{bottom:601.043850px;}
.y1ec{bottom:601.065450px;}
.y1b{bottom:603.753450px;}
.y147{bottom:608.565450px;}
.ya1{bottom:615.309450px;}
.y137{bottom:617.264250px;}
.y80{bottom:617.274750px;}
.y156{bottom:617.294250px;}
.y194{bottom:617.295750px;}
.y55{bottom:617.297250px;}
.yb3{bottom:617.298750px;}
.y19a{bottom:617.543850px;}
.y1eb{bottom:617.565450px;}
.y1a{bottom:618.751950px;}
.ya0{bottom:631.809450px;}
.y19{bottom:633.750450px;}
.y199{bottom:634.043850px;}
.y1ea{bottom:634.065450px;}
.y136{bottom:636.015750px;}
.y7f{bottom:636.026250px;}
.y155{bottom:636.045750px;}
.y193{bottom:636.047250px;}
.y54{bottom:636.048750px;}
.y181{bottom:636.050250px;}
.yfc{bottom:645.321450px;}
.y9f{bottom:648.309450px;}
.y18{bottom:648.748950px;}
.y198{bottom:650.543850px;}
.y146{bottom:650.565450px;}
.ydf{bottom:654.738750px;}
.y135{bottom:654.767250px;}
.y7e{bottom:654.777750px;}
.yb2{bottom:654.782250px;}
.y154{bottom:654.797250px;}
.y180{bottom:654.798750px;}
.y53{bottom:654.800250px;}
.yfb{bottom:661.821450px;}
.y17{bottom:663.747450px;}
.y9e{bottom:664.809450px;}
.y197{bottom:667.043850px;}
.y145{bottom:667.065450px;}
.yde{bottom:673.490250px;}
.y134{bottom:673.518750px;}
.y7d{bottom:673.529250px;}
.y52{bottom:673.544250px;}
.y111{bottom:673.545750px;}
.y153{bottom:673.548750px;}
.y17f{bottom:673.550250px;}
.yfa{bottom:678.321450px;}
.y16{bottom:678.745950px;}
.y144{bottom:683.565450px;}
.ydd{bottom:692.241750px;}
.y133{bottom:692.270250px;}
.y7c{bottom:692.280750px;}
.yb1{bottom:692.285250px;}
.y51{bottom:692.295750px;}
.y110{bottom:692.297250px;}
.y152{bottom:692.300250px;}
.y17e{bottom:692.301750px;}
.y15{bottom:693.744450px;}
.yf9{bottom:694.821450px;}
.y1e9{bottom:700.065450px;}
.y14{bottom:708.742950px;}
.ydc{bottom:710.993250px;}
.y132{bottom:711.021750px;}
.y7b{bottom:711.032250px;}
.y151{bottom:711.036750px;}
.y50{bottom:711.047250px;}
.y10f{bottom:711.048750px;}
.yf8{bottom:711.321450px;}
.y1e8{bottom:716.565450px;}
.y13{bottom:723.741450px;}
.yf7{bottom:727.821450px;}
.ydb{bottom:729.744750px;}
.y196{bottom:729.773250px;}
.y7a{bottom:729.783750px;}
.yb0{bottom:729.788250px;}
.y4f{bottom:729.798750px;}
.y192{bottom:729.801750px;}
.y1e7{bottom:733.065450px;}
.y12{bottom:738.739950px;}
.yf6{bottom:744.321450px;}
.yda{bottom:748.496250px;}
.y131{bottom:748.524750px;}
.y79{bottom:748.535250px;}
.yaf{bottom:748.539750px;}
.y10e{bottom:748.548750px;}
.y4e{bottom:748.550250px;}
.y1e6{bottom:749.565450px;}
.y11{bottom:753.738450px;}
.yf5{bottom:760.821450px;}
.y1e5{bottom:766.065450px;}
.yd9{bottom:767.247750px;}
.y130{bottom:767.276250px;}
.y4d{bottom:767.291250px;}
.y17d{bottom:767.298750px;}
.y10d{bottom:767.300250px;}
.y10{bottom:768.736950px;}
.yf4{bottom:777.321450px;}
.y1e4{bottom:782.565450px;}
.yf{bottom:783.735450px;}
.y12f{bottom:786.027750px;}
.y78{bottom:786.038250px;}
.y10c{bottom:786.041250px;}
.y4c{bottom:786.042750px;}
.y17c{bottom:786.050250px;}
.ye{bottom:798.733950px;}
.y1e3{bottom:799.065450px;}
.yd8{bottom:804.750750px;}
.y12e{bottom:804.779250px;}
.y77{bottom:804.789750px;}
.y10b{bottom:804.792750px;}
.y4b{bottom:804.794250px;}
.y17b{bottom:804.800250px;}
.yd{bottom:813.732450px;}
.y1e2{bottom:815.565450px;}
.yd7{bottom:823.502250px;}
.y12d{bottom:823.530750px;}
.y76{bottom:823.541250px;}
.y10a{bottom:823.544250px;}
.y4a{bottom:823.545750px;}
.y17a{bottom:823.548750px;}
.yc{bottom:828.730950px;}
.y1e1{bottom:832.065450px;}
.yd6{bottom:842.253750px;}
.y12c{bottom:842.282250px;}
.y75{bottom:842.292750px;}
.y109{bottom:842.295750px;}
.y49{bottom:842.297250px;}
.y179{bottom:842.300250px;}
.yb{bottom:843.729450px;}
.y1e0{bottom:848.565450px;}
.ya{bottom:858.727950px;}
.yd5{bottom:861.005250px;}
.y12b{bottom:861.033750px;}
.y74{bottom:861.044250px;}
.y108{bottom:861.047250px;}
.y48{bottom:861.048750px;}
.y178{bottom:861.051750px;}
.y1df{bottom:865.065450px;}
.y9{bottom:873.726450px;}
.yd4{bottom:879.756750px;}
.y191{bottom:879.785250px;}
.y73{bottom:879.795750px;}
.y107{bottom:879.798750px;}
.y47{bottom:879.800250px;}
.y1de{bottom:881.565450px;}
.y8{bottom:888.724950px;}
.y1dd{bottom:898.065450px;}
.yd3{bottom:898.508250px;}
.y12a{bottom:898.536750px;}
.y177{bottom:898.541250px;}
.y150{bottom:898.545750px;}
.y72{bottom:898.547250px;}
.y46{bottom:898.548750px;}
.y106{bottom:898.550250px;}
.yae{bottom:898.551750px;}
.y7{bottom:903.723450px;}
.y1dc{bottom:914.565450px;}
.yd2{bottom:917.259750px;}
.y129{bottom:917.288250px;}
.y176{bottom:917.292750px;}
.y14f{bottom:917.297250px;}
.y71{bottom:917.298750px;}
.y45{bottom:917.300250px;}
.y105{bottom:917.301750px;}
.y1f{bottom:923.289300px;}
.y1db{bottom:931.065450px;}
.yd1{bottom:936.011250px;}
.y128{bottom:936.039750px;}
.y44{bottom:936.042750px;}
.y175{bottom:936.044250px;}
.y14e{bottom:936.048750px;}
.y70{bottom:936.050250px;}
.yad{bottom:936.051750px;}
.y1da{bottom:947.565450px;}
.yd0{bottom:954.762750px;}
.y127{bottom:954.791250px;}
.y43{bottom:954.794250px;}
.y174{bottom:954.795750px;}
.y14d{bottom:954.800250px;}
.y6f{bottom:954.801750px;}
.y1d9{bottom:964.065450px;}
.ycf{bottom:973.514250px;}
.y126{bottom:973.542750px;}
.y42{bottom:973.545750px;}
.y173{bottom:973.547250px;}
.y14c{bottom:973.551750px;}
.y1d8{bottom:980.565450px;}
.y26{bottom:982.473300px;}
.yac{bottom:992.294250px;}
.y41{bottom:992.297250px;}
.y172{bottom:992.298750px;}
.y6e{bottom:992.301750px;}
.y1d7{bottom:997.065450px;}
.yce{bottom:1011.017250px;}
.yab{bottom:1011.045750px;}
.y40{bottom:1011.048750px;}
.y171{bottom:1011.050250px;}
.y14b{bottom:1011.051750px;}
.y1d6{bottom:1013.565450px;}
.y30{bottom:1021.700700px;}
.ycd{bottom:1029.768750px;}
.yaa{bottom:1029.797250px;}
.y3f{bottom:1029.800250px;}
.y1d5{bottom:1030.065450px;}
.y2f{bottom:1043.300700px;}
.y1d4{bottom:1046.565450px;}
.ycc{bottom:1048.520250px;}
.y170{bottom:1048.535250px;}
.y6d{bottom:1048.544250px;}
.ya9{bottom:1048.548750px;}
.y3e{bottom:1048.551750px;}
.y1d3{bottom:1063.065450px;}
.ycb{bottom:1067.271750px;}
.y16f{bottom:1067.286750px;}
.y6c{bottom:1067.295750px;}
.ya8{bottom:1067.300250px;}
.y22{bottom:1071.977850px;}
.y9d{bottom:1079.565450px;}
.y25{bottom:1082.937000px;}
.yca{bottom:1086.023250px;}
.y16e{bottom:1086.038250px;}
.y6b{bottom:1086.047250px;}
.y3d{bottom:1086.051750px;}
.y9c{bottom:1096.065450px;}
.y24{bottom:1097.937000px;}
.y21{bottom:1104.377850px;}
.y23{bottom:1112.937000px;}
.y20{bottom:1136.777850px;}
.h9{height:27.519434px;}
.hf{height:34.320000px;}
.h2{height:34.945312px;}
.ha{height:34.968750px;}
.he{height:35.616000px;}
.hd{height:36.336000px;}
.h21{height:37.119277px;}
.h22{height:37.136677px;}
.h3{height:39.313477px;}
.h4{height:39.339844px;}
.h1d{height:39.351844px;}
.h10{height:39.359077px;}
.h1e{height:39.387844px;}
.h1c{height:39.417844px;}
.h1b{height:42.290677px;}
.h7{height:44.520000px;}
.h1a{height:45.507434px;}
.h20{height:45.513434px;}
.hc{height:45.519291px;}
.h26{height:45.519434px;}
.h8{height:45.519891px;}
.h17{height:45.525434px;}
.h24{height:45.525891px;}
.h13{height:45.531891px;}
.h12{height:45.537434px;}
.h1f{height:45.543434px;}
.h16{height:45.543891px;}
.h15{height:45.549891px;}
.h14{height:45.561891px;}
.h25{height:45.567434px;}
.h27{height:45.573891px;}
.h23{height:45.579891px;}
.h28{height:45.615891px;}
.h19{height:45.729434px;}
.h5{height:47.244141px;}
.h18{height:51.942000px;}
.hb{height:54.504000px;}
.h11{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x14{left:88.365900px;}
.x15{left:89.559000px;}
.x1a{left:98.491500px;}
.x1b{left:103.039350px;}
.x16{left:107.559000px;}
.x1d{left:112.039350px;}
.x1f{left:116.291250px;}
.x12{left:139.339200px;}
.x10{left:211.050600px;}
.x11{left:262.314600px;}
.x6{left:270.660900px;}
.x3{left:319.676400px;}
.xa{left:320.688900px;}
.xe{left:322.290600px;}
.x9{left:324.672900px;}
.xb{left:347.364900px;}
.xf{left:348.510600px;}
.x7{left:356.676900px;}
.xc{left:374.715000px;}
.x8{left:394.056900px;}
.x4{left:418.226400px;}
.x19{left:451.325100px;}
.x13{left:455.592300px;}
.x1{left:469.770150px;}
.x17{left:474.097350px;}
.x1c{left:487.837950px;}
.x18{left:492.094500px;}
.x1e{left:496.961100px;}
.x20{left:501.095250px;}
.xd{left:513.045000px;}
.x5{left:515.399400px;}
@media print{
.v2{vertical-align:-15.969067pt;}
.v3{vertical-align:-2.858667pt;}
.v5{vertical-align:-1.950400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls21{letter-spacing:-2.816000pt;}
.ls22{letter-spacing:-2.176000pt;}
.ls10{letter-spacing:-2.048000pt;}
.ls28{letter-spacing:-2.005333pt;}
.ls20{letter-spacing:-1.877333pt;}
.ls25{letter-spacing:-1.834667pt;}
.ls1e{letter-spacing:-1.450667pt;}
.ls11{letter-spacing:-0.981333pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.725333pt;}
.ls29{letter-spacing:-0.554667pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.117333pt;}
.ls24{letter-spacing:-0.085333pt;}
.ls27{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls5{letter-spacing:0.005333pt;}
.ls1f{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.085333pt;}
.ls1d{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.341333pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.597333pt;}
.ls18{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.450667pt;}
.ls2{letter-spacing:3.093333pt;}
.lsb{letter-spacing:109.864000pt;}
.lsa{letter-spacing:149.593600pt;}
.ls4{letter-spacing:244.850133pt;}
.wsf{word-spacing:-13.344000pt;}
.ws44{word-spacing:-13.312000pt;}
.ws42{word-spacing:-12.885333pt;}
.ws43{word-spacing:-12.842667pt;}
.ws55{word-spacing:-12.245333pt;}
.ws45{word-spacing:-11.989333pt;}
.ws56{word-spacing:-11.818667pt;}
.ws3{word-spacing:-10.965333pt;}
.ws46{word-spacing:-10.410667pt;}
.ws54{word-spacing:-10.026667pt;}
.ws41{word-spacing:-9.813333pt;}
.ws1{word-spacing:-9.340800pt;}
.ws1e{word-spacing:-9.004800pt;}
.ws2e{word-spacing:-3.840000pt;}
.ws2d{word-spacing:-2.640000pt;}
.wse{word-spacing:-2.133333pt;}
.ws21{word-spacing:-2.064000pt;}
.ws24{word-spacing:-1.728000pt;}
.ws15{word-spacing:-1.536000pt;}
.ws19{word-spacing:-1.296000pt;}
.wsa{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.597333pt;}
.ws4d{word-spacing:-0.554667pt;}
.ws18{word-spacing:-0.528000pt;}
.ws49{word-spacing:-0.512000pt;}
.ws20{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.341333pt;}
.ws59{word-spacing:-0.298667pt;}
.ws23{word-spacing:-0.240000pt;}
.ws4e{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.168000pt;}
.ws34{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.085333pt;}
.ws51{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.042667pt;}
.ws5a{word-spacing:0.085333pt;}
.ws47{word-spacing:0.117333pt;}
.ws4b{word-spacing:0.213333pt;}
.ws14{word-spacing:0.240000pt;}
.ws35{word-spacing:0.384000pt;}
.ws33{word-spacing:0.426667pt;}
.ws12{word-spacing:0.480000pt;}
.ws5d{word-spacing:0.554667pt;}
.ws5b{word-spacing:0.725333pt;}
.ws4a{word-spacing:0.768000pt;}
.ws1c{word-spacing:0.853333pt;}
.ws40{word-spacing:0.912000pt;}
.ws48{word-spacing:0.981333pt;}
.ws36{word-spacing:1.056000pt;}
.ws1d{word-spacing:1.322667pt;}
.ws3d{word-spacing:1.344000pt;}
.ws9{word-spacing:1.392000pt;}
.ws27{word-spacing:1.536000pt;}
.ws52{word-spacing:1.877333pt;}
.ws1b{word-spacing:1.920000pt;}
.ws28{word-spacing:2.005333pt;}
.ws5e{word-spacing:2.048000pt;}
.ws10{word-spacing:2.112000pt;}
.ws26{word-spacing:2.160000pt;}
.ws58{word-spacing:2.176000pt;}
.ws8{word-spacing:2.304000pt;}
.wsc{word-spacing:2.645333pt;}
.ws17{word-spacing:2.688000pt;}
.ws57{word-spacing:2.816000pt;}
.ws1a{word-spacing:3.312000pt;}
.ws6{word-spacing:3.360000pt;}
.ws25{word-spacing:4.032000pt;}
.ws7{word-spacing:4.224000pt;}
.ws16{word-spacing:4.320000pt;}
.ws3f{word-spacing:5.088000pt;}
.ws39{word-spacing:5.376000pt;}
.ws1f{word-spacing:5.712000pt;}
.ws31{word-spacing:6.144000pt;}
.ws11{word-spacing:6.624000pt;}
.ws30{word-spacing:6.720000pt;}
.ws3b{word-spacing:7.296000pt;}
.ws38{word-spacing:7.680000pt;}
.ws3c{word-spacing:8.016000pt;}
.ws3a{word-spacing:8.976000pt;}
.ws5{word-spacing:9.552000pt;}
.wsb{word-spacing:10.896000pt;}
.ws13{word-spacing:13.872000pt;}
.ws3e{word-spacing:17.424000pt;}
.ws2f{word-spacing:19.770667pt;}
.ws2{word-spacing:93.738667pt;}
.ws22{word-spacing:114.672000pt;}
.ws53{word-spacing:218.165333pt;}
.ws2a{word-spacing:250.069333pt;}
.ws2c{word-spacing:285.653333pt;}
.ws2b{word-spacing:287.616000pt;}
.ws29{word-spacing:317.269333pt;}
.ws0{word-spacing:1104.048000pt;}
._e{margin-left:-25.243200pt;}
._f{margin-left:-16.684800pt;}
._c{margin-left:-12.782400pt;}
._14{margin-left:-3.950400pt;}
._9{margin-left:-2.755200pt;}
._3{margin-left:-1.833600pt;}
._8{margin-left:-0.940800pt;}
._2{width:1.617600pt;}
._7{width:2.673600pt;}
._5{width:4.132800pt;}
._6{width:5.366400pt;}
._1{width:6.297600pt;}
._4{width:7.219200pt;}
._a{width:8.188800pt;}
._b{width:9.475200pt;}
._12{width:10.464000pt;}
._d{width:11.505600pt;}
._21{width:12.427200pt;}
._27{width:13.319467pt;}
._0{width:14.284800pt;}
._13{width:15.398400pt;}
._11{width:16.536000pt;}
._20{width:17.433600pt;}
._29{width:18.641600pt;}
._22{width:19.636800pt;}
._24{width:20.729600pt;}
._25{width:35.420800pt;}
._26{width:36.693333pt;}
._23{width:38.526933pt;}
._28{width:40.643733pt;}
._17{width:101.328000pt;}
._16{width:114.672000pt;}
._1f{width:184.439467pt;}
._1d{width:190.370133pt;}
._1b{width:295.125333pt;}
._1a{width:338.005333pt;}
._18{width:356.949333pt;}
._19{width:366.464000pt;}
._1e{width:415.027733pt;}
._1c{width:438.794133pt;}
._15{width:838.604267pt;}
._10{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:15.379333pt;}
.y3b{bottom:41.748933pt;}
.y3c{bottom:41.927067pt;}
.y9b{bottom:41.930400pt;}
.y9a{bottom:42.592000pt;}
.y35{bottom:52.510800pt;}
.y39{bottom:52.617467pt;}
.y34{bottom:68.510800pt;}
.y38{bottom:68.617467pt;}
.y1d2{bottom:71.696533pt;}
.y1b6{bottom:71.848800pt;}
.ya7{bottom:80.275067pt;}
.yc9{bottom:82.022000pt;}
.y190{bottom:82.034000pt;}
.y99{bottom:82.036667pt;}
.y6a{bottom:82.043333pt;}
.yf3{bottom:82.046000pt;}
.y125{bottom:84.272667pt;}
.y104{bottom:84.285733pt;}
.y33{bottom:84.510800pt;}
.y37{bottom:84.617467pt;}
.y1d1{bottom:86.363200pt;}
.y1b5{bottom:86.515467pt;}
.ya6{bottom:94.941733pt;}
.yc8{bottom:98.690000pt;}
.y18f{bottom:98.702000pt;}
.y16d{bottom:98.703333pt;}
.y98{bottom:98.704667pt;}
.y69{bottom:98.711333pt;}
.y124{bottom:98.939333pt;}
.y103{bottom:98.952400pt;}
.y32{bottom:100.510800pt;}
.y36{bottom:100.617467pt;}
.y1d0{bottom:101.029867pt;}
.y1b4{bottom:101.182133pt;}
.ya5{bottom:109.608400pt;}
.y123{bottom:113.606000pt;}
.y102{bottom:113.619067pt;}
.yc7{bottom:115.358000pt;}
.y18e{bottom:115.370000pt;}
.y16c{bottom:115.371333pt;}
.y97{bottom:115.372667pt;}
.y68{bottom:115.379333pt;}
.y1cf{bottom:115.696533pt;}
.y1b3{bottom:115.848800pt;}
.ya4{bottom:124.275067pt;}
.y122{bottom:128.272667pt;}
.y14a{bottom:128.275067pt;}
.y101{bottom:128.285733pt;}
.y1ce{bottom:130.363200pt;}
.y1b2{bottom:130.515467pt;}
.yc6{bottom:132.026000pt;}
.y18d{bottom:132.038000pt;}
.y16b{bottom:132.039333pt;}
.y96{bottom:132.040667pt;}
.y28{bottom:141.664933pt;}
.y121{bottom:142.939333pt;}
.y149{bottom:142.941733pt;}
.y100{bottom:142.952400pt;}
.y1cd{bottom:145.029867pt;}
.y1b1{bottom:145.182133pt;}
.yc5{bottom:148.694000pt;}
.y18c{bottom:148.706000pt;}
.y16a{bottom:148.707333pt;}
.y95{bottom:148.708667pt;}
.y67{bottom:148.712667pt;}
.y120{bottom:157.606000pt;}
.y148{bottom:157.608400pt;}
.yff{bottom:157.619067pt;}
.y1cc{bottom:159.696533pt;}
.y1b0{bottom:159.848800pt;}
.yf2{bottom:165.352667pt;}
.yc4{bottom:165.362000pt;}
.y18b{bottom:165.374000pt;}
.y169{bottom:165.375333pt;}
.y2e{bottom:166.944933pt;}
.y6{bottom:166.946133pt;}
.y1cb{bottom:174.363200pt;}
.y1af{bottom:174.515467pt;}
.y2d{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.yf1{bottom:182.020667pt;}
.yc3{bottom:182.030000pt;}
.y18a{bottom:182.042000pt;}
.y168{bottom:182.043333pt;}
.y94{bottom:182.044667pt;}
.y1ca{bottom:189.029867pt;}
.y1ae{bottom:189.182133pt;}
.y2c{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y11f{bottom:198.612400pt;}
.yf0{bottom:198.688667pt;}
.y66{bottom:198.706000pt;}
.y189{bottom:198.710000pt;}
.y93{bottom:198.711333pt;}
.y1c9{bottom:203.696533pt;}
.y1ad{bottom:203.848800pt;}
.y2b{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y92{bottom:215.328667pt;}
.yef{bottom:215.356667pt;}
.yc2{bottom:215.366000pt;}
.y65{bottom:215.374000pt;}
.y167{bottom:215.378000pt;}
.y1c8{bottom:218.363200pt;}
.y1ac{bottom:218.515467pt;}
.y11e{bottom:222.470667pt;}
.y2a{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y91{bottom:231.996667pt;}
.yee{bottom:232.024667pt;}
.yc1{bottom:232.034000pt;}
.y188{bottom:232.040667pt;}
.y64{bottom:232.042000pt;}
.y166{bottom:232.044667pt;}
.y1c7{bottom:233.029867pt;}
.y1ab{bottom:233.182133pt;}
.y29{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y11d{bottom:245.841333pt;}
.y1c6{bottom:247.696533pt;}
.y1aa{bottom:247.848800pt;}
.y90{bottom:248.664667pt;}
.yed{bottom:248.692667pt;}
.yc0{bottom:248.702000pt;}
.y187{bottom:248.708667pt;}
.y63{bottom:248.710000pt;}
.y165{bottom:248.711333pt;}
.y1c5{bottom:262.363200pt;}
.y1a9{bottom:262.515467pt;}
.y8f{bottom:265.332667pt;}
.yec{bottom:265.360667pt;}
.ybf{bottom:265.370000pt;}
.y164{bottom:265.376667pt;}
.y11c{bottom:268.721333pt;}
.y1c4{bottom:277.029867pt;}
.y1a8{bottom:277.182133pt;}
.y8e{bottom:282.000667pt;}
.ybe{bottom:282.038000pt;}
.y62{bottom:282.040667pt;}
.y163{bottom:282.044667pt;}
.y11b{bottom:283.388000pt;}
.y31{bottom:289.309733pt;}
.y1c3{bottom:291.696533pt;}
.y1a7{bottom:291.848800pt;}
.y8d{bottom:298.668667pt;}
.yeb{bottom:298.696667pt;}
.ybd{bottom:298.706000pt;}
.y61{bottom:298.708667pt;}
.y162{bottom:298.712667pt;}
.y1c2{bottom:306.363200pt;}
.y1a6{bottom:306.515467pt;}
.y8c{bottom:315.336667pt;}
.ybc{bottom:315.374000pt;}
.y60{bottom:315.376667pt;}
.y1c1{bottom:321.029867pt;}
.y1a5{bottom:321.182133pt;}
.y143{bottom:331.995333pt;}
.y8b{bottom:332.004667pt;}
.yea{bottom:332.032667pt;}
.y161{bottom:332.039333pt;}
.y186{bottom:332.042000pt;}
.y11a{bottom:332.043333pt;}
.y5f{bottom:332.044667pt;}
.y1c0{bottom:335.696533pt;}
.y1a4{bottom:335.848800pt;}
.y142{bottom:348.663333pt;}
.ye9{bottom:348.700667pt;}
.y5e{bottom:348.704667pt;}
.y160{bottom:348.707333pt;}
.ybb{bottom:348.710000pt;}
.y119{bottom:348.711333pt;}
.y1bf{bottom:350.363200pt;}
.y1a3{bottom:350.515467pt;}
.y1be{bottom:365.029867pt;}
.y1a2{bottom:365.182133pt;}
.y141{bottom:365.331333pt;}
.y8a{bottom:365.340667pt;}
.ye8{bottom:365.368667pt;}
.y5d{bottom:365.372667pt;}
.y15f{bottom:365.375333pt;}
.y185{bottom:365.378000pt;}
.y118{bottom:365.379333pt;}
.y1bd{bottom:379.696533pt;}
.y1a1{bottom:379.848800pt;}
.y140{bottom:381.999333pt;}
.y89{bottom:382.008667pt;}
.yba{bottom:382.035333pt;}
.y5c{bottom:382.040667pt;}
.y15e{bottom:382.043333pt;}
.y184{bottom:382.046000pt;}
.y1bc{bottom:394.363200pt;}
.y1a0{bottom:394.515467pt;}
.y13f{bottom:398.667333pt;}
.y88{bottom:398.676667pt;}
.ye7{bottom:398.704667pt;}
.y5b{bottom:398.708667pt;}
.y15d{bottom:398.711333pt;}
.y117{bottom:398.718000pt;}
.y1bb{bottom:409.029867pt;}
.y19f{bottom:409.182133pt;}
.y27{bottom:410.635200pt;}
.y13e{bottom:415.335333pt;}
.y87{bottom:415.344667pt;}
.yb9{bottom:415.371333pt;}
.ye6{bottom:415.372667pt;}
.y15c{bottom:415.374000pt;}
.y5a{bottom:415.376667pt;}
.y116{bottom:415.379333pt;}
.y1ba{bottom:423.696533pt;}
.y19e{bottom:423.848800pt;}
.y13d{bottom:432.003333pt;}
.y86{bottom:432.012667pt;}
.yb8{bottom:432.039333pt;}
.ye5{bottom:432.040667pt;}
.y15b{bottom:432.042000pt;}
.y59{bottom:432.044667pt;}
.y1b9{bottom:438.363200pt;}
.y19d{bottom:438.515467pt;}
.y85{bottom:448.680667pt;}
.y183{bottom:448.707333pt;}
.ye4{bottom:448.708667pt;}
.y15a{bottom:448.710000pt;}
.y58{bottom:448.712667pt;}
.y1b8{bottom:453.029867pt;}
.y1f1{bottom:460.947067pt;}
.y13c{bottom:465.339333pt;}
.y84{bottom:465.348667pt;}
.y115{bottom:465.368667pt;}
.yb7{bottom:465.375333pt;}
.ye3{bottom:465.376667pt;}
.y159{bottom:465.378000pt;}
.y1b7{bottom:467.696533pt;}
.y19c{bottom:467.848800pt;}
.y1f0{bottom:475.613733pt;}
.y13b{bottom:482.007333pt;}
.y83{bottom:482.016667pt;}
.y114{bottom:482.036667pt;}
.yb6{bottom:482.043333pt;}
.ye2{bottom:482.044667pt;}
.y57{bottom:482.046000pt;}
.y1ef{bottom:490.280400pt;}
.ya3{bottom:492.936400pt;}
.y1e{bottom:496.673733pt;}
.y13a{bottom:498.675333pt;}
.y82{bottom:498.684667pt;}
.y113{bottom:498.704667pt;}
.yb5{bottom:498.711333pt;}
.ye1{bottom:498.712667pt;}
.y1ee{bottom:504.947067pt;}
.ya2{bottom:507.603067pt;}
.yfe{bottom:509.619067pt;}
.y1d{bottom:510.005733pt;}
.y139{bottom:515.343333pt;}
.y158{bottom:515.370000pt;}
.y112{bottom:515.372667pt;}
.yb4{bottom:515.376667pt;}
.y182{bottom:515.379333pt;}
.y1ed{bottom:519.613733pt;}
.y1c{bottom:523.337733pt;}
.yfd{bottom:524.285733pt;}
.y138{bottom:532.011333pt;}
.y81{bottom:532.020667pt;}
.y157{bottom:532.038000pt;}
.y195{bottom:532.039333pt;}
.y56{bottom:532.040667pt;}
.ye0{bottom:532.046000pt;}
.y19b{bottom:534.261200pt;}
.y1ec{bottom:534.280400pt;}
.y1b{bottom:536.669733pt;}
.y147{bottom:540.947067pt;}
.ya1{bottom:546.941733pt;}
.y137{bottom:548.679333pt;}
.y80{bottom:548.688667pt;}
.y156{bottom:548.706000pt;}
.y194{bottom:548.707333pt;}
.y55{bottom:548.708667pt;}
.yb3{bottom:548.710000pt;}
.y19a{bottom:548.927867pt;}
.y1eb{bottom:548.947067pt;}
.y1a{bottom:550.001733pt;}
.ya0{bottom:561.608400pt;}
.y19{bottom:563.333733pt;}
.y199{bottom:563.594533pt;}
.y1ea{bottom:563.613733pt;}
.y136{bottom:565.347333pt;}
.y7f{bottom:565.356667pt;}
.y155{bottom:565.374000pt;}
.y193{bottom:565.375333pt;}
.y54{bottom:565.376667pt;}
.y181{bottom:565.378000pt;}
.yfc{bottom:573.619067pt;}
.y9f{bottom:576.275067pt;}
.y18{bottom:576.665733pt;}
.y198{bottom:578.261200pt;}
.y146{bottom:578.280400pt;}
.ydf{bottom:581.990000pt;}
.y135{bottom:582.015333pt;}
.y7e{bottom:582.024667pt;}
.yb2{bottom:582.028667pt;}
.y154{bottom:582.042000pt;}
.y180{bottom:582.043333pt;}
.y53{bottom:582.044667pt;}
.yfb{bottom:588.285733pt;}
.y17{bottom:589.997733pt;}
.y9e{bottom:590.941733pt;}
.y197{bottom:592.927867pt;}
.y145{bottom:592.947067pt;}
.yde{bottom:598.658000pt;}
.y134{bottom:598.683333pt;}
.y7d{bottom:598.692667pt;}
.y52{bottom:598.706000pt;}
.y111{bottom:598.707333pt;}
.y153{bottom:598.710000pt;}
.y17f{bottom:598.711333pt;}
.yfa{bottom:602.952400pt;}
.y16{bottom:603.329733pt;}
.y144{bottom:607.613733pt;}
.ydd{bottom:615.326000pt;}
.y133{bottom:615.351333pt;}
.y7c{bottom:615.360667pt;}
.yb1{bottom:615.364667pt;}
.y51{bottom:615.374000pt;}
.y110{bottom:615.375333pt;}
.y152{bottom:615.378000pt;}
.y17e{bottom:615.379333pt;}
.y15{bottom:616.661733pt;}
.yf9{bottom:617.619067pt;}
.y1e9{bottom:622.280400pt;}
.y14{bottom:629.993733pt;}
.ydc{bottom:631.994000pt;}
.y132{bottom:632.019333pt;}
.y7b{bottom:632.028667pt;}
.y151{bottom:632.032667pt;}
.y50{bottom:632.042000pt;}
.y10f{bottom:632.043333pt;}
.yf8{bottom:632.285733pt;}
.y1e8{bottom:636.947067pt;}
.y13{bottom:643.325733pt;}
.yf7{bottom:646.952400pt;}
.ydb{bottom:648.662000pt;}
.y196{bottom:648.687333pt;}
.y7a{bottom:648.696667pt;}
.yb0{bottom:648.700667pt;}
.y4f{bottom:648.710000pt;}
.y192{bottom:648.712667pt;}
.y1e7{bottom:651.613733pt;}
.y12{bottom:656.657733pt;}
.yf6{bottom:661.619067pt;}
.yda{bottom:665.330000pt;}
.y131{bottom:665.355333pt;}
.y79{bottom:665.364667pt;}
.yaf{bottom:665.368667pt;}
.y10e{bottom:665.376667pt;}
.y4e{bottom:665.378000pt;}
.y1e6{bottom:666.280400pt;}
.y11{bottom:669.989733pt;}
.yf5{bottom:676.285733pt;}
.y1e5{bottom:680.947067pt;}
.yd9{bottom:681.998000pt;}
.y130{bottom:682.023333pt;}
.y4d{bottom:682.036667pt;}
.y17d{bottom:682.043333pt;}
.y10d{bottom:682.044667pt;}
.y10{bottom:683.321733pt;}
.yf4{bottom:690.952400pt;}
.y1e4{bottom:695.613733pt;}
.yf{bottom:696.653733pt;}
.y12f{bottom:698.691333pt;}
.y78{bottom:698.700667pt;}
.y10c{bottom:698.703333pt;}
.y4c{bottom:698.704667pt;}
.y17c{bottom:698.711333pt;}
.ye{bottom:709.985733pt;}
.y1e3{bottom:710.280400pt;}
.yd8{bottom:715.334000pt;}
.y12e{bottom:715.359333pt;}
.y77{bottom:715.368667pt;}
.y10b{bottom:715.371333pt;}
.y4b{bottom:715.372667pt;}
.y17b{bottom:715.378000pt;}
.yd{bottom:723.317733pt;}
.y1e2{bottom:724.947067pt;}
.yd7{bottom:732.002000pt;}
.y12d{bottom:732.027333pt;}
.y76{bottom:732.036667pt;}
.y10a{bottom:732.039333pt;}
.y4a{bottom:732.040667pt;}
.y17a{bottom:732.043333pt;}
.yc{bottom:736.649733pt;}
.y1e1{bottom:739.613733pt;}
.yd6{bottom:748.670000pt;}
.y12c{bottom:748.695333pt;}
.y75{bottom:748.704667pt;}
.y109{bottom:748.707333pt;}
.y49{bottom:748.708667pt;}
.y179{bottom:748.711333pt;}
.yb{bottom:749.981733pt;}
.y1e0{bottom:754.280400pt;}
.ya{bottom:763.313733pt;}
.yd5{bottom:765.338000pt;}
.y12b{bottom:765.363333pt;}
.y74{bottom:765.372667pt;}
.y108{bottom:765.375333pt;}
.y48{bottom:765.376667pt;}
.y178{bottom:765.379333pt;}
.y1df{bottom:768.947067pt;}
.y9{bottom:776.645733pt;}
.yd4{bottom:782.006000pt;}
.y191{bottom:782.031333pt;}
.y73{bottom:782.040667pt;}
.y107{bottom:782.043333pt;}
.y47{bottom:782.044667pt;}
.y1de{bottom:783.613733pt;}
.y8{bottom:789.977733pt;}
.y1dd{bottom:798.280400pt;}
.yd3{bottom:798.674000pt;}
.y12a{bottom:798.699333pt;}
.y177{bottom:798.703333pt;}
.y150{bottom:798.707333pt;}
.y72{bottom:798.708667pt;}
.y46{bottom:798.710000pt;}
.y106{bottom:798.711333pt;}
.yae{bottom:798.712667pt;}
.y7{bottom:803.309733pt;}
.y1dc{bottom:812.947067pt;}
.yd2{bottom:815.342000pt;}
.y129{bottom:815.367333pt;}
.y176{bottom:815.371333pt;}
.y14f{bottom:815.375333pt;}
.y71{bottom:815.376667pt;}
.y45{bottom:815.378000pt;}
.y105{bottom:815.379333pt;}
.y1f{bottom:820.701600pt;}
.y1db{bottom:827.613733pt;}
.yd1{bottom:832.010000pt;}
.y128{bottom:832.035333pt;}
.y44{bottom:832.038000pt;}
.y175{bottom:832.039333pt;}
.y14e{bottom:832.043333pt;}
.y70{bottom:832.044667pt;}
.yad{bottom:832.046000pt;}
.y1da{bottom:842.280400pt;}
.yd0{bottom:848.678000pt;}
.y127{bottom:848.703333pt;}
.y43{bottom:848.706000pt;}
.y174{bottom:848.707333pt;}
.y14d{bottom:848.711333pt;}
.y6f{bottom:848.712667pt;}
.y1d9{bottom:856.947067pt;}
.ycf{bottom:865.346000pt;}
.y126{bottom:865.371333pt;}
.y42{bottom:865.374000pt;}
.y173{bottom:865.375333pt;}
.y14c{bottom:865.379333pt;}
.y1d8{bottom:871.613733pt;}
.y26{bottom:873.309600pt;}
.yac{bottom:882.039333pt;}
.y41{bottom:882.042000pt;}
.y172{bottom:882.043333pt;}
.y6e{bottom:882.046000pt;}
.y1d7{bottom:886.280400pt;}
.yce{bottom:898.682000pt;}
.yab{bottom:898.707333pt;}
.y40{bottom:898.710000pt;}
.y171{bottom:898.711333pt;}
.y14b{bottom:898.712667pt;}
.y1d6{bottom:900.947067pt;}
.y30{bottom:908.178400pt;}
.ycd{bottom:915.350000pt;}
.yaa{bottom:915.375333pt;}
.y3f{bottom:915.378000pt;}
.y1d5{bottom:915.613733pt;}
.y2f{bottom:927.378400pt;}
.y1d4{bottom:930.280400pt;}
.ycc{bottom:932.018000pt;}
.y170{bottom:932.031333pt;}
.y6d{bottom:932.039333pt;}
.ya9{bottom:932.043333pt;}
.y3e{bottom:932.046000pt;}
.y1d3{bottom:944.947067pt;}
.ycb{bottom:948.686000pt;}
.y16f{bottom:948.699333pt;}
.y6c{bottom:948.707333pt;}
.ya8{bottom:948.711333pt;}
.y22{bottom:952.869200pt;}
.y9d{bottom:959.613733pt;}
.y25{bottom:962.610667pt;}
.yca{bottom:965.354000pt;}
.y16e{bottom:965.367333pt;}
.y6b{bottom:965.375333pt;}
.y3d{bottom:965.379333pt;}
.y9c{bottom:974.280400pt;}
.y24{bottom:975.944000pt;}
.y21{bottom:981.669200pt;}
.y23{bottom:989.277333pt;}
.y20{bottom:1010.469200pt;}
.h9{height:24.461719pt;}
.hf{height:30.506667pt;}
.h2{height:31.062500pt;}
.ha{height:31.083333pt;}
.he{height:31.658667pt;}
.hd{height:32.298667pt;}
.h21{height:32.994913pt;}
.h22{height:33.010379pt;}
.h3{height:34.945312pt;}
.h4{height:34.968750pt;}
.h1d{height:34.979417pt;}
.h10{height:34.985846pt;}
.h1e{height:35.011417pt;}
.h1c{height:35.038083pt;}
.h1b{height:37.591712pt;}
.h7{height:39.573333pt;}
.h1a{height:40.451052pt;}
.h20{height:40.456385pt;}
.hc{height:40.461592pt;}
.h26{height:40.461719pt;}
.h8{height:40.462125pt;}
.h17{height:40.467052pt;}
.h24{height:40.467458pt;}
.h13{height:40.472792pt;}
.h12{height:40.477719pt;}
.h1f{height:40.483052pt;}
.h16{height:40.483458pt;}
.h15{height:40.488792pt;}
.h14{height:40.499458pt;}
.h25{height:40.504385pt;}
.h27{height:40.510125pt;}
.h23{height:40.515458pt;}
.h28{height:40.547458pt;}
.h19{height:40.648385pt;}
.h5{height:41.994792pt;}
.h18{height:46.170667pt;}
.hb{height:48.448000pt;}
.h11{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x14{left:78.547467pt;}
.x15{left:79.608000pt;}
.x1a{left:87.548000pt;}
.x1b{left:91.590533pt;}
.x16{left:95.608000pt;}
.x1d{left:99.590533pt;}
.x1f{left:103.370000pt;}
.x12{left:123.857067pt;}
.x10{left:187.600533pt;}
.x11{left:233.168533pt;}
.x6{left:240.587467pt;}
.x3{left:284.156800pt;}
.xa{left:285.056800pt;}
.xe{left:286.480533pt;}
.x9{left:288.598133pt;}
.xb{left:308.768800pt;}
.xf{left:309.787200pt;}
.x7{left:317.046133pt;}
.xc{left:333.080000pt;}
.x8{left:350.272800pt;}
.x4{left:371.756800pt;}
.x19{left:401.177867pt;}
.x13{left:404.970933pt;}
.x1{left:417.573467pt;}
.x17{left:421.419867pt;}
.x1c{left:433.633733pt;}
.x18{left:437.417333pt;}
.x1e{left:441.743200pt;}
.x20{left:445.418000pt;}
.xd{left:456.040000pt;}
.x5{left:458.132800pt;}
}




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