
    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_63f63cae266c689017732186.woff')format("woff");}.ff1{font-family:ff1;line-height:1.255859;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_c1cbbfc30169d425e400719b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_6c9202b2d9c263c73c3ee84d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_d721f4674351c077ddd0e6dc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e77edb5461b919631ddf7086.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_1f9fd9d2088d43da8561c140.woff')format("woff");}.ff6{font-family:ff6;line-height:1.276855;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_5edd856db670ec50788e4f23.woff')format("woff");}.ff7{font-family:ff7;line-height:1.276855;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_3449e563931732ca3b778e6b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.928711;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_33db627c0c6119004078ce75.woff')format("woff");}.ff9{font-family:ff9;line-height:0.928711;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);}
.m1{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);}
.v1{vertical-align:-82.440000px;}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:29.880000px;}
.ls3f{letter-spacing:-2.694000px;}
.ls36{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.220200px;}
.ls2a{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.116400px;}
.lsb{letter-spacing:-0.112200px;}
.ls6e{letter-spacing:-0.099600px;}
.ls4a{letter-spacing:-0.097800px;}
.ls35{letter-spacing:-0.072000px;}
.ls6d{letter-spacing:-0.037080px;}
.ls9{letter-spacing:-0.032400px;}
.ls7{letter-spacing:-0.031680px;}
.ls49{letter-spacing:-0.029520px;}
.ls6c{letter-spacing:-0.004680px;}
.ls6f{letter-spacing:-0.003960px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012600px;}
.ls48{letter-spacing:0.016200px;}
.ls1a{letter-spacing:0.026280px;}
.ls50{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.072000px;}
.ls40{letter-spacing:0.083400px;}
.ls29{letter-spacing:0.108000px;}
.ls59{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.139800px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.146280px;}
.ls45{letter-spacing:0.147600px;}
.lsa{letter-spacing:0.153600px;}
.ls1b{letter-spacing:0.172080px;}
.ls3{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.192000px;}
.ls1c{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.247680px;}
.ls14{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.432000px;}
.ls6b{letter-spacing:0.552000px;}
.ls6a{letter-spacing:0.648000px;}
.ls3c{letter-spacing:1.008000px;}
.ls61{letter-spacing:1.656000px;}
.ls5a{letter-spacing:2.088000px;}
.ls57{letter-spacing:2.208000px;}
.ls32{letter-spacing:2.376000px;}
.ls37{letter-spacing:2.448000px;}
.ls64{letter-spacing:2.808000px;}
.ls60{letter-spacing:3.096000px;}
.ls31{letter-spacing:3.168000px;}
.ls18{letter-spacing:3.816000px;}
.ls2d{letter-spacing:3.888000px;}
.ls65{letter-spacing:4.176000px;}
.ls25{letter-spacing:4.248000px;}
.ls13{letter-spacing:5.688000px;}
.ls23{letter-spacing:6.048000px;}
.ls0{letter-spacing:6.866280px;}
.ls1{letter-spacing:7.586280px;}
.ls58{letter-spacing:8.568000px;}
.lsc{letter-spacing:9.026280px;}
.ls5c{letter-spacing:10.008000px;}
.ls5b{letter-spacing:10.368000px;}
.ls17{letter-spacing:11.088000px;}
.ls43{letter-spacing:11.736000px;}
.ls4f{letter-spacing:11.808000px;}
.ls68{letter-spacing:11.880000px;}
.ls46{letter-spacing:13.248000px;}
.ls12{letter-spacing:13.608000px;}
.ls4c{letter-spacing:13.968000px;}
.ls1f{letter-spacing:14.688000px;}
.ls5e{letter-spacing:14.976000px;}
.ls41{letter-spacing:15.048000px;}
.ls19{letter-spacing:15.408000px;}
.ls55{letter-spacing:15.768000px;}
.ls56{letter-spacing:16.128000px;}
.ls38{letter-spacing:16.848000px;}
.ls5f{letter-spacing:17.208000px;}
.ls30{letter-spacing:17.568000px;}
.ls3b{letter-spacing:18.288000px;}
.ls15{letter-spacing:18.648000px;}
.ls62{letter-spacing:18.936000px;}
.ls5d{letter-spacing:19.296000px;}
.lsd{letter-spacing:19.368000px;}
.ls52{letter-spacing:21.096000px;}
.ls3e{letter-spacing:21.528000px;}
.ls69{letter-spacing:23.688000px;}
.ls2f{letter-spacing:24.048000px;}
.ls66{letter-spacing:24.408000px;}
.ls39{letter-spacing:25.128000px;}
.ls2e{letter-spacing:25.416000px;}
.ls51{letter-spacing:26.136000px;}
.ls3a{letter-spacing:26.496000px;}
.ls54{letter-spacing:26.568000px;}
.ls26{letter-spacing:26.928000px;}
.ls22{letter-spacing:27.288000px;}
.ls63{letter-spacing:27.648000px;}
.ls4e{letter-spacing:28.008000px;}
.lse{letter-spacing:29.088000px;}
.ls67{letter-spacing:29.880000px;}
.ls3d{letter-spacing:31.320000px;}
.ls20{letter-spacing:33.168000px;}
.ls2c{letter-spacing:33.408000px;}
.ls2b{letter-spacing:33.528000px;}
.ls4d{letter-spacing:34.848000px;}
.ls47{letter-spacing:37.008000px;}
.ls16{letter-spacing:42.768000px;}
.ls28{letter-spacing:43.776000px;}
.ls44{letter-spacing:45.648000px;}
.ls34{letter-spacing:46.728000px;}
.ls27{letter-spacing:47.160000px;}
.ls53{letter-spacing:76.728000px;}
.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;}
}
.ws5{word-spacing:-22.647600px;}
.ws14{word-spacing:-20.592000px;}
.wsf{word-spacing:-20.376000px;}
.ws11{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws24{word-spacing:-20.160000px;}
.ws13{word-spacing:-20.088000px;}
.ws15{word-spacing:-20.016000px;}
.ws1e{word-spacing:-19.944000px;}
.ws25{word-spacing:-19.872000px;}
.wsd{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.665880px;}
.ws7{word-spacing:-18.512280px;}
.ws22{word-spacing:-18.144000px;}
.ws1c{word-spacing:-17.928000px;}
.ws18{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws17{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.640000px;}
.ws23{word-spacing:-17.424000px;}
.wsc{word-spacing:-17.073720px;}
.ws12{word-spacing:-17.033520px;}
.ws1d{word-spacing:-16.977120px;}
.ws3{word-spacing:-16.893720px;}
.ws29{word-spacing:-16.889760px;}
.ws26{word-spacing:-16.889040px;}
.ws4{word-spacing:-16.861320px;}
.ws28{word-spacing:-16.856640px;}
.ws1{word-spacing:-16.713720px;}
.ws21{word-spacing:-16.673520px;}
.ws0{word-spacing:-16.232400px;}
.ws27{word-spacing:-16.134600px;}
.wsb{word-spacing:-14.849640px;}
.ws1f{word-spacing:-14.820120px;}
.ws1b{word-spacing:-12.155640px;}
.ws19{word-spacing:-11.835720px;}
.ws1a{word-spacing:-0.144000px;}
.wse{word-spacing:-0.072000px;}
.ws8{word-spacing:-0.065880px;}
.ws2{word-spacing:-0.060120px;}
.wsa{word-spacing:0.000000px;}
.ws20{word-spacing:0.037680px;}
._30{margin-left:-7.200000px;}
._31{margin-left:-6.191760px;}
._20{margin-left:-5.119080px;}
._15{margin-left:-3.860040px;}
._1f{margin-left:-2.382480px;}
._0{margin-left:-1.201080px;}
._3{width:1.027200px;}
._8{width:2.075040px;}
._4{width:3.967920px;}
._2{width:5.931960px;}
._1{width:7.034040px;}
._6{width:8.368440px;}
._9{width:9.619200px;}
._5{width:11.603160px;}
._d{width:12.685320px;}
._13{width:13.744080px;}
._12{width:15.264000px;}
._c{width:16.472880px;}
._11{width:17.799120px;}
._f{width:19.368000px;}
._19{width:20.520000px;}
._1d{width:22.032000px;}
._1e{width:23.184000px;}
._17{width:24.192000px;}
._16{width:25.200000px;}
._e{width:26.280840px;}
._a{width:28.114320px;}
._b{width:29.890920px;}
._18{width:31.464000px;}
._14{width:32.688000px;}
._1c{width:34.344000px;}
._24{width:36.000000px;}
._25{width:37.008000px;}
._23{width:38.088000px;}
._2d{width:39.168000px;}
._21{width:40.968000px;}
._10{width:42.120000px;}
._1b{width:43.344000px;}
._28{width:44.601600px;}
._2a{width:46.440000px;}
._2b{width:47.548800px;}
._1a{width:48.576000px;}
._22{width:50.544000px;}
._2c{width:53.064000px;}
._2f{width:60.984000px;}
._29{width:62.400000px;}
._2e{width:76.320000px;}
._26{width:78.912000px;}
._27{width:80.352000px;}
._7{width:956.359320px;}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(71,71,71);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.790000px;}
.y6{bottom:3.960000px;}
.y1d6{bottom:3.990000px;}
.y179{bottom:4.050000px;}
.y5{bottom:25.470000px;}
.y176{bottom:25.500000px;}
.y178{bottom:25.560000px;}
.y4{bottom:46.980000px;}
.y3{bottom:68.490000px;}
.y5f{bottom:76.410000px;}
.y11{bottom:92.340000px;}
.y5e{bottom:94.320000px;}
.y10{bottom:112.410000px;}
.y89{bottom:115.020000px;}
.y1c1{bottom:116.550000px;}
.y174{bottom:117.630000px;}
.ya5{bottom:121.050000px;}
.yb6{bottom:128.430000px;}
.y34{bottom:130.320000px;}
.y125{bottom:133.830000px;}
.y88{bottom:136.530000px;}
.y1c0{bottom:138.870000px;}
.ye5{bottom:141.210000px;}
.y173{bottom:143.460000px;}
.y19c{bottom:149.490000px;}
.yf{bottom:150.930000px;}
.y141{bottom:151.830000px;}
.yb5{bottom:154.260000px;}
.y131{bottom:156.330000px;}
.ybf{bottom:156.960000px;}
.y87{bottom:158.040000px;}
.y124{bottom:159.660000px;}
.y1bf{bottom:161.100000px;}
.y86{bottom:164.070000px;}
.y15b{bottom:165.330000px;}
.ye4{bottom:167.130000px;}
.y172{bottom:169.200000px;}
.y19b{bottom:171.810000px;}
.ye{bottom:172.440000px;}
.y152{bottom:173.160000px;}
.y140{bottom:177.660000px;}
.y5d{bottom:178.470000px;}
.y85{bottom:179.550000px;}
.y9d{bottom:179.640000px;}
.yb4{bottom:180.090000px;}
.y130{bottom:182.160000px;}
.y1be{bottom:183.330000px;}
.yb9{bottom:185.580000px;}
.y104{bottom:186.660000px;}
.y123{bottom:189.990000px;}
.y15a{bottom:191.160000px;}
.ye3{bottom:192.960000px;}
.yd{bottom:193.950000px;}
.y5c{bottom:194.040000px;}
.y151{bottom:198.990000px;}
.y8b{bottom:199.980000px;}
.y84{bottom:201.060000px;}
.yb8{bottom:201.150000px;}
.y171{bottom:203.130000px;}
.y13f{bottom:203.490000px;}
.y1bd{bottom:205.650000px;}
.y9c{bottom:205.830000px;}
.y94{bottom:207.090000px;}
.y12f{bottom:207.990000px;}
.y16f{bottom:209.790000px;}
.y103{bottom:212.490000px;}
.yc{bottom:215.550000px;}
.y122{bottom:215.820000px;}
.y19a{bottom:216.270000px;}
.y159{bottom:216.990000px;}
.ye2{bottom:218.790000px;}
.y93{bottom:222.570000px;}
.y83{bottom:222.660000px;}
.y1bc{bottom:227.910000px;}
.y150{bottom:229.350000px;}
.y5a{bottom:230.160000px;}
.y9b{bottom:231.690000px;}
.y13e{bottom:233.850000px;}
.yb{bottom:237.090000px;}
.y5b{bottom:237.630000px;}
.y12e{bottom:238.350000px;}
.y199{bottom:238.620000px;}
.y16e{bottom:239.520000px;}
.y102{bottom:242.850000px;}
.y92{bottom:244.110000px;}
.ye1{bottom:244.650000px;}
.y1e7{bottom:245.460000px;}
.y121{bottom:246.180000px;}
.y1bb{bottom:250.230000px;}
.y14f{bottom:255.180000px;}
.y59{bottom:255.900000px;}
.y9a{bottom:257.520000px;}
.ya{bottom:258.600000px;}
.y198{bottom:260.850000px;}
.y12d{bottom:264.180000px;}
.yb3{bottom:264.630000px;}
.y16d{bottom:265.350000px;}
.y91{bottom:265.620000px;}
.y1e6{bottom:267.240000px;}
.y101{bottom:268.680000px;}
.y98{bottom:270.390000px;}
.ye0{bottom:270.480000px;}
.y1ba{bottom:272.460000px;}
.y158{bottom:273.180000px;}
.y120{bottom:276.510000px;}
.y9{bottom:280.110000px;}
.y14e{bottom:281.010000px;}
.y58{bottom:281.730000px;}
.y197{bottom:283.170000px;}
.y82{bottom:283.350000px;}
.ybe{bottom:286.140000px;}
.y90{bottom:287.130000px;}
.y1e5{bottom:289.470000px;}
.y13d{bottom:290.010000px;}
.y16c{bottom:291.180000px;}
.y8f{bottom:293.160000px;}
.y100{bottom:294.510000px;}
.y1b9{bottom:294.780000px;}
.ydf{bottom:296.310000px;}
.y157{bottom:299.010000px;}
.yb2{bottom:301.620000px;}
.y11f{bottom:302.340000px;}
.y196{bottom:305.400000px;}
.y57{bottom:307.560000px;}
.ybd{bottom:307.650000px;}
.ya4{bottom:308.640000px;}
.y8e{bottom:308.730000px;}
.y97{bottom:309.090000px;}
.y81{bottom:309.180000px;}
.y14d{bottom:311.340000px;}
.y1e4{bottom:311.790000px;}
.ya3{bottom:314.670000px;}
.y13c{bottom:315.840000px;}
.y16b{bottom:317.010000px;}
.y8{bottom:318.900000px;}
.y12c{bottom:320.340000px;}
.yde{bottom:322.140000px;}
.yb1{bottom:323.130000px;}
.ybc{bottom:323.220000px;}
.yff{bottom:324.840000px;}
.y195{bottom:327.720000px;}
.yb0{bottom:329.160000px;}
.ya2{bottom:330.240000px;}
.y11e{bottom:332.670000px;}
.y56{bottom:333.390000px;}
.y1e3{bottom:334.020000px;}
.y80{bottom:335.010000px;}
.y14c{bottom:337.170000px;}
.y1b8{bottom:339.240000px;}
.y16a{bottom:342.840000px;}
.yaf{bottom:344.640000px;}
.y12b{bottom:346.170000px;}
.ydd{bottom:347.880000px;}
.y194{bottom:349.950000px;}
.yfe{bottom:350.670000px;}
.y156{bottom:355.170000px;}
.y1e2{bottom:356.340000px;}
.y55{bottom:359.220000px;}
.y31{bottom:359.400000px;}
.y7f{bottom:360.840000px;}
.y1b7{bottom:361.560000px;}
.y11d{bottom:363.000000px;}
.yae{bottom:366.150000px;}
.ya1{bottom:368.310000px;}
.y169{bottom:368.670000px;}
.y13b{bottom:372.000000px;}
.yad{bottom:372.180000px;}
.ydc{bottom:373.710000px;}
.yfd{bottom:376.500000px;}
.y30{bottom:380.910000px;}
.y155{bottom:381.000000px;}
.y1b6{bottom:383.790000px;}
.y54{bottom:385.050000px;}
.y7e{bottom:386.670000px;}
.yac{bottom:387.660000px;}
.y11c{bottom:388.830000px;}
.y14b{bottom:393.330000px;}
.yab{bottom:393.690000px;}
.y168{bottom:394.500000px;}
.y13a{bottom:397.830000px;}
.ydb{bottom:399.540000px;}
.y1e1{bottom:400.080000px;}
.yfc{bottom:402.330000px;}
.y2f{bottom:402.420000px;}
.y1b5{bottom:406.110000px;}
.y154{bottom:406.830000px;}
.yaa{bottom:409.260000px;}
.y53{bottom:410.880000px;}
.y7d{bottom:412.500000px;}
.y193{bottom:416.730000px;}
.y11b{bottom:419.160000px;}
.y167{bottom:420.330000px;}
.y1e0{bottom:422.400000px;}
.y2e{bottom:423.930000px;}
.yda{bottom:425.370000px;}
.yfb{bottom:428.160000px;}
.y1b4{bottom:428.340000px;}
.y153{bottom:432.660000px;}
.y52{bottom:436.710000px;}
.y7c{bottom:438.330000px;}
.y192{bottom:439.050000px;}
.y1df{bottom:444.630000px;}
.y11a{bottom:444.900000px;}
.y2d{bottom:445.440000px;}
.y8d{bottom:445.800000px;}
.y166{bottom:446.160000px;}
.y1b3{bottom:450.660000px;}
.yd9{bottom:451.200000px;}
.yfa{bottom:458.400000px;}
.y191{bottom:461.280000px;}
.y51{bottom:462.540000px;}
.y7b{bottom:464.160000px;}
.y1de{bottom:466.860000px;}
.y2c{bottom:466.950000px;}
.y165{bottom:471.900000px;}
.y1b2{bottom:472.890000px;}
.y119{bottom:475.230000px;}
.yd8{bottom:477.030000px;}
.y190{bottom:483.600000px;}
.yf9{bottom:484.230000px;}
.y50{bottom:488.370000px;}
.y1dd{bottom:489.180000px;}
.y2b{bottom:489.360000px;}
.y7a{bottom:489.900000px;}
.y1b1{bottom:495.120000px;}
.ybb{bottom:497.370000px;}
.y164{bottom:497.730000px;}
.y118{bottom:501.060000px;}
.yd7{bottom:502.860000px;}
.y18f{bottom:505.830000px;}
.yf8{bottom:510.060000px;}
.y1dc{bottom:511.410000px;}
.y4f{bottom:514.200000px;}
.y2a{bottom:514.380000px;}
.y139{bottom:514.560000px;}
.y79{bottom:515.730000px;}
.y1b0{bottom:517.440000px;}
.y8a{bottom:523.200000px;}
.y163{bottom:523.560000px;}
.y117{bottom:526.890000px;}
.y18e{bottom:528.060000px;}
.yd6{bottom:528.690000px;}
.y1db{bottom:533.730000px;}
.y29{bottom:535.350000px;}
.yf7{bottom:535.890000px;}
.y1af{bottom:539.670000px;}
.y4e{bottom:540.030000px;}
.y12a{bottom:540.390000px;}
.y78{bottom:541.560000px;}
.yb7{bottom:549.030000px;}
.y162{bottom:549.390000px;}
.y18d{bottom:550.380000px;}
.y14a{bottom:552.720000px;}
.yd5{bottom:554.520000px;}
.y1da{bottom:555.960000px;}
.y116{bottom:557.220000px;}
.y28{bottom:559.020000px;}
.y1ae{bottom:561.990000px;}
.y4d{bottom:565.770000px;}
.yf6{bottom:566.220000px;}
.y77{bottom:567.390000px;}
.y138{bottom:570.720000px;}
.y161{bottom:575.220000px;}
.y1d9{bottom:578.280000px;}
.yd4{bottom:580.350000px;}
.y27{bottom:582.690000px;}
.y115{bottom:583.050000px;}
.y4c{bottom:591.600000px;}
.yf5{bottom:592.050000px;}
.y76{bottom:593.220000px;}
.y18c{bottom:594.120000px;}
.y137{bottom:596.550000px;}
.y1d8{bottom:600.510000px;}
.y8c{bottom:600.690000px;}
.y160{bottom:601.050000px;}
.y1ad{bottom:605.730000px;}
.yd3{bottom:606.180000px;}
.y26{bottom:606.360000px;}
.y149{bottom:608.880000px;}
.y114{bottom:613.380000px;}
.y18b{bottom:616.440000px;}
.y4b{bottom:617.430000px;}
.yf4{bottom:617.880000px;}
.y75{bottom:619.050000px;}
.y1d7{bottom:622.740000px;}
.y136{bottom:626.880000px;}
.y1ac{bottom:628.050000px;}
.y25{bottom:630.030000px;}
.yd2{bottom:632.010000px;}
.y148{bottom:634.710000px;}
.y18a{bottom:638.670000px;}
.y113{bottom:639.210000px;}
.y4a{bottom:643.260000px;}
.y129{bottom:643.710000px;}
.y74{bottom:644.880000px;}
.y1d5{bottom:645.060000px;}
.yf3{bottom:648.240000px;}
.y1ab{bottom:650.310000px;}
.y99{bottom:652.380000px;}
.y135{bottom:652.740000px;}
.y24{bottom:653.730000px;}
.yd1{bottom:657.780000px;}
.y189{bottom:661.020000px;}
.y112{bottom:665.070000px;}
.y1d4{bottom:667.320000px;}
.y49{bottom:669.120000px;}
.y73{bottom:670.740000px;}
.y1aa{bottom:672.630000px;}
.yf2{bottom:674.070000px;}
.y23{bottom:677.400000px;}
.y134{bottom:678.570000px;}
.y188{bottom:683.250000px;}
.yd0{bottom:683.610000px;}
.y1d3{bottom:689.640000px;}
.y147{bottom:690.900000px;}
.y1a9{bottom:694.860000px;}
.y48{bottom:694.950000px;}
.y111{bottom:695.400000px;}
.y72{bottom:696.570000px;}
.y128{bottom:699.900000px;}
.y22{bottom:701.070000px;}
.yf1{bottom:704.400000px;}
.y187{bottom:705.480000px;}
.ycf{bottom:709.440000px;}
.y1d2{bottom:711.870000px;}
.y1a8{bottom:717.090000px;}
.y47{bottom:720.780000px;}
.y110{bottom:721.230000px;}
.y71{bottom:722.400000px;}
.y21{bottom:724.740000px;}
.y127{bottom:725.730000px;}
.y186{bottom:727.800000px;}
.ya0{bottom:729.870000px;}
.yf0{bottom:730.230000px;}
.y1d1{bottom:734.190000px;}
.y15f{bottom:734.730000px;}
.yce{bottom:735.270000px;}
.y1a7{bottom:739.410000px;}
.y46{bottom:746.610000px;}
.y146{bottom:747.060000px;}
.y70{bottom:748.230000px;}
.y20{bottom:748.410000px;}
.y185{bottom:750.030000px;}
.y10f{bottom:751.560000px;}
.yef{bottom:756.060000px;}
.y133{bottom:760.560000px;}
.ycd{bottom:761.100000px;}
.y1a6{bottom:761.640000px;}
.y1f{bottom:772.080000px;}
.y184{bottom:772.350000px;}
.y45{bottom:772.440000px;}
.y6f{bottom:774.060000px;}
.y10e{bottom:777.300000px;}
.y1d0{bottom:777.930000px;}
.ya9{bottom:781.530000px;}
.y126{bottom:781.800000px;}
.y1a5{bottom:783.960000px;}
.yee{bottom:786.300000px;}
.ycc{bottom:786.930000px;}
.y183{bottom:794.580000px;}
.y1e{bottom:795.750000px;}
.y6e{bottom:799.800000px;}
.y1cf{bottom:800.160000px;}
.y145{bottom:803.130000px;}
.y1a4{bottom:806.190000px;}
.y10d{bottom:807.630000px;}
.yed{bottom:812.130000px;}
.y44{bottom:812.760000px;}
.y15e{bottom:816.630000px;}
.y182{bottom:816.900000px;}
.y1d{bottom:819.420000px;}
.y1ce{bottom:822.480000px;}
.y6d{bottom:825.630000px;}
.y10c{bottom:833.460000px;}
.y43{bottom:837.780000px;}
.yec{bottom:837.960000px;}
.ycb{bottom:838.590000px;}
.y181{bottom:839.130000px;}
.y15d{bottom:842.460000px;}
.y1c{bottom:843.090000px;}
.y1cd{bottom:844.710000px;}
.y1a3{bottom:850.020000px;}
.y6c{bottom:851.460000px;}
.y9f{bottom:858.930000px;}
.y42{bottom:859.200000px;}
.y10b{bottom:859.290000px;}
.y180{bottom:861.360000px;}
.yeb{bottom:863.790000px;}
.yca{bottom:864.420000px;}
.y1b{bottom:866.760000px;}
.y1cc{bottom:867.030000px;}
.y15c{bottom:868.290000px;}
.y6b{bottom:877.290000px;}
.y41{bottom:880.710000px;}
.y17f{bottom:883.680000px;}
.ya8{bottom:884.760000px;}
.y1cb{bottom:889.260000px;}
.y10a{bottom:889.620000px;}
.yc9{bottom:890.250000px;}
.y1a{bottom:890.430000px;}
.y1a2{bottom:893.760000px;}
.yea{bottom:894.120000px;}
.y40{bottom:902.220000px;}
.y6a{bottom:903.120000px;}
.y17e{bottom:905.910000px;}
.y1ca{bottom:911.580000px;}
.y19{bottom:914.100000px;}
.y109{bottom:915.450000px;}
.yc8{bottom:916.080000px;}
.ye9{bottom:919.950000px;}
.y3f{bottom:923.730000px;}
.y17d{bottom:928.230000px;}
.y69{bottom:928.950000px;}
.y1c9{bottom:933.810000px;}
.y1a1{bottom:937.590000px;}
.y18{bottom:937.770000px;}
.y144{bottom:941.280000px;}
.yc7{bottom:941.820000px;}
.y3e{bottom:945.240000px;}
.ye8{bottom:945.780000px;}
.y132{bottom:950.280000px;}
.y17c{bottom:950.460000px;}
.y68{bottom:954.780000px;}
.y1c8{bottom:956.040000px;}
.y17{bottom:961.440000px;}
.ya7{bottom:962.250000px;}
.y3d{bottom:966.840000px;}
.yc6{bottom:967.650000px;}
.y108{bottom:971.610000px;}
.y17b{bottom:972.780000px;}
.ye7{bottom:976.110000px;}
.y1c7{bottom:978.360000px;}
.y66{bottom:980.610000px;}
.y1a0{bottom:981.330000px;}
.y16{bottom:984.750000px;}
.y67{bottom:988.080000px;}
.y3c{bottom:988.350000px;}
.yc5{bottom:993.480000px;}
.y17a{bottom:995.010000px;}
.y143{bottom:997.440000px;}
.y1c6{bottom:1000.590000px;}
.ye6{bottom:1001.940000px;}
.y65{bottom:1006.440000px;}
.y15{bottom:1007.160000px;}
.y3b{bottom:1009.860000px;}
.yba{bottom:1013.910000px;}
.y177{bottom:1017.240000px;}
.yc4{bottom:1019.310000px;}
.y1c5{bottom:1022.910000px;}
.y142{bottom:1023.270000px;}
.y19f{bottom:1025.160000px;}
.y107{bottom:1027.770000px;}
.y3a{bottom:1031.370000px;}
.y64{bottom:1032.270000px;}
.y14{bottom:1033.710000px;}
.y9e{bottom:1039.740000px;}
.yc3{bottom:1045.140000px;}
.y39{bottom:1052.880000px;}
.y106{bottom:1053.600000px;}
.y63{bottom:1058.100000px;}
.y175{bottom:1061.070000px;}
.y13{bottom:1063.770000px;}
.ya6{bottom:1065.570000px;}
.y1c4{bottom:1067.490000px;}
.y19e{bottom:1068.930000px;}
.yc2{bottom:1071.000000px;}
.y38{bottom:1074.420000px;}
.y105{bottom:1079.460000px;}
.y62{bottom:1083.960000px;}
.y1c3{bottom:1089.720000px;}
.y12{bottom:1092.690000px;}
.y37{bottom:1095.930000px;}
.yc1{bottom:1096.830000px;}
.y170{bottom:1105.830000px;}
.y61{bottom:1109.700000px;}
.y1c2{bottom:1111.950000px;}
.y19d{bottom:1112.760000px;}
.y7{bottom:1116.090000px;}
.y96{bottom:1117.170000px;}
.y36{bottom:1117.440000px;}
.y1{bottom:1134.270000px;}
.yc0{bottom:1135.440000px;}
.y60{bottom:1135.530000px;}
.y35{bottom:1138.950000px;}
.y95{bottom:1143.000000px;}
.y33{bottom:1182.960000px;}
.y32{bottom:1203.660000px;}
.h18{height:21.508500px;}
.h14{height:21.510000px;}
.h19{height:21.532500px;}
.h16{height:21.540000px;}
.h15{height:21.600000px;}
.h10{height:36.826172px;}
.h17{height:43.020000px;}
.h12{height:43.042500px;}
.hf{height:43.086621px;}
.h13{height:43.110000px;}
.h11{height:50.097656px;}
.h4{height:51.929824px;}
.h6{height:55.239258px;}
.h3{height:61.499707px;}
.ha{height:62.191406px;}
.hc{height:62.262949px;}
.h7{height:62.703281px;}
.h8{height:67.391895px;}
.h9{height:72.452988px;}
.hb{height:73.652344px;}
.hd{height:74.566406px;}
.h5{height:75.093750px;}
.h2{height:86.040000px;}
.he{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w7{width:190.380000px;}
.w6{width:212.484000px;}
.w8{width:246.540000px;}
.w4{width:329.700000px;}
.w2{width:331.888500px;}
.w5{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x3b{left:31.230000px;}
.x42{left:49.170000px;}
.x40{left:52.290000px;}
.x41{left:63.630000px;}
.x3e{left:64.920000px;}
.x3c{left:75.960000px;}
.x1{left:98.281500px;}
.x8{left:104.670000px;}
.x6{left:106.380000px;}
.xe{left:110.880000px;}
.x24{left:115.410000px;}
.xf{left:117.030000px;}
.x3a{left:121.080000px;}
.x39{left:127.290000px;}
.x33{left:136.110000px;}
.x9{left:159.600000px;}
.x1d{left:164.550000px;}
.x17{left:165.718125px;}
.x18{left:171.030000px;}
.xb{left:176.788125px;}
.xc{left:182.100000px;}
.x2{left:203.878500px;}
.x2a{left:232.318125px;}
.x2b{left:242.940000px;}
.x38{left:250.050000px;}
.xd{left:322.410000px;}
.x3d{left:334.290000px;}
.x20{left:339.598125px;}
.x21{left:350.220000px;}
.x3{left:430.170000px;}
.x7{left:446.550000px;}
.x26{left:473.458125px;}
.x36{left:474.988125px;}
.x5{left:481.020000px;}
.x27{left:484.080000px;}
.x37{left:485.610000px;}
.x13{left:516.838125px;}
.x14{left:522.150000px;}
.x3f{left:525.480000px;}
.x1b{left:590.458125px;}
.x1c{left:595.770000px;}
.x23{left:608.038125px;}
.x1e{left:612.088125px;}
.x19{left:613.528125px;}
.x1f{left:617.400000px;}
.x1a{left:620.910000px;}
.x2c{left:635.848125px;}
.x2d{left:646.470000px;}
.x30{left:649.078125px;}
.x2e{left:657.898125px;}
.x31{left:659.700000px;}
.x2f{left:668.790000px;}
.x28{left:692.548125px;}
.x29{left:710.190000px;}
.x15{left:714.778125px;}
.x16{left:720.090000px;}
.x22{left:724.590000px;}
.x10{left:753.928125px;}
.x11{left:759.510000px;}
.x25{left:766.710000px;}
.x34{left:769.588125px;}
.x32{left:771.030000px;}
.xa{left:776.700000px;}
.x35{left:782.010000px;}
.x12{left:786.690000px;}
@media print{
.v1{vertical-align:-73.280000pt;}
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.560000pt;}
.ls3f{letter-spacing:-2.394667pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.195733pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.103467pt;}
.lsb{letter-spacing:-0.099733pt;}
.ls6e{letter-spacing:-0.088533pt;}
.ls4a{letter-spacing:-0.086933pt;}
.ls35{letter-spacing:-0.064000pt;}
.ls6d{letter-spacing:-0.032960pt;}
.ls9{letter-spacing:-0.028800pt;}
.ls7{letter-spacing:-0.028160pt;}
.ls49{letter-spacing:-0.026240pt;}
.ls6c{letter-spacing:-0.004160pt;}
.ls6f{letter-spacing:-0.003520pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011200pt;}
.ls48{letter-spacing:0.014400pt;}
.ls1a{letter-spacing:0.023360pt;}
.ls50{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.064000pt;}
.ls40{letter-spacing:0.074133pt;}
.ls29{letter-spacing:0.096000pt;}
.ls59{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.124267pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.130027pt;}
.ls45{letter-spacing:0.131200pt;}
.lsa{letter-spacing:0.136533pt;}
.ls1b{letter-spacing:0.152960pt;}
.ls3{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.170667pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.220160pt;}
.ls14{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.384000pt;}
.ls6b{letter-spacing:0.490667pt;}
.ls6a{letter-spacing:0.576000pt;}
.ls3c{letter-spacing:0.896000pt;}
.ls61{letter-spacing:1.472000pt;}
.ls5a{letter-spacing:1.856000pt;}
.ls57{letter-spacing:1.962667pt;}
.ls32{letter-spacing:2.112000pt;}
.ls37{letter-spacing:2.176000pt;}
.ls64{letter-spacing:2.496000pt;}
.ls60{letter-spacing:2.752000pt;}
.ls31{letter-spacing:2.816000pt;}
.ls18{letter-spacing:3.392000pt;}
.ls2d{letter-spacing:3.456000pt;}
.ls65{letter-spacing:3.712000pt;}
.ls25{letter-spacing:3.776000pt;}
.ls13{letter-spacing:5.056000pt;}
.ls23{letter-spacing:5.376000pt;}
.ls0{letter-spacing:6.103360pt;}
.ls1{letter-spacing:6.743360pt;}
.ls58{letter-spacing:7.616000pt;}
.lsc{letter-spacing:8.023360pt;}
.ls5c{letter-spacing:8.896000pt;}
.ls5b{letter-spacing:9.216000pt;}
.ls17{letter-spacing:9.856000pt;}
.ls43{letter-spacing:10.432000pt;}
.ls4f{letter-spacing:10.496000pt;}
.ls68{letter-spacing:10.560000pt;}
.ls46{letter-spacing:11.776000pt;}
.ls12{letter-spacing:12.096000pt;}
.ls4c{letter-spacing:12.416000pt;}
.ls1f{letter-spacing:13.056000pt;}
.ls5e{letter-spacing:13.312000pt;}
.ls41{letter-spacing:13.376000pt;}
.ls19{letter-spacing:13.696000pt;}
.ls55{letter-spacing:14.016000pt;}
.ls56{letter-spacing:14.336000pt;}
.ls38{letter-spacing:14.976000pt;}
.ls5f{letter-spacing:15.296000pt;}
.ls30{letter-spacing:15.616000pt;}
.ls3b{letter-spacing:16.256000pt;}
.ls15{letter-spacing:16.576000pt;}
.ls62{letter-spacing:16.832000pt;}
.ls5d{letter-spacing:17.152000pt;}
.lsd{letter-spacing:17.216000pt;}
.ls52{letter-spacing:18.752000pt;}
.ls3e{letter-spacing:19.136000pt;}
.ls69{letter-spacing:21.056000pt;}
.ls2f{letter-spacing:21.376000pt;}
.ls66{letter-spacing:21.696000pt;}
.ls39{letter-spacing:22.336000pt;}
.ls2e{letter-spacing:22.592000pt;}
.ls51{letter-spacing:23.232000pt;}
.ls3a{letter-spacing:23.552000pt;}
.ls54{letter-spacing:23.616000pt;}
.ls26{letter-spacing:23.936000pt;}
.ls22{letter-spacing:24.256000pt;}
.ls63{letter-spacing:24.576000pt;}
.ls4e{letter-spacing:24.896000pt;}
.lse{letter-spacing:25.856000pt;}
.ls67{letter-spacing:26.560000pt;}
.ls3d{letter-spacing:27.840000pt;}
.ls20{letter-spacing:29.482667pt;}
.ls2c{letter-spacing:29.696000pt;}
.ls2b{letter-spacing:29.802667pt;}
.ls4d{letter-spacing:30.976000pt;}
.ls47{letter-spacing:32.896000pt;}
.ls16{letter-spacing:38.016000pt;}
.ls28{letter-spacing:38.912000pt;}
.ls44{letter-spacing:40.576000pt;}
.ls34{letter-spacing:41.536000pt;}
.ls27{letter-spacing:41.920000pt;}
.ls53{letter-spacing:68.202667pt;}
.ws5{word-spacing:-20.131200pt;}
.ws14{word-spacing:-18.304000pt;}
.wsf{word-spacing:-18.112000pt;}
.ws11{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws24{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.856000pt;}
.ws15{word-spacing:-17.792000pt;}
.ws1e{word-spacing:-17.728000pt;}
.ws25{word-spacing:-17.664000pt;}
.wsd{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.591893pt;}
.ws7{word-spacing:-16.455360pt;}
.ws22{word-spacing:-16.128000pt;}
.ws1c{word-spacing:-15.936000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws17{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.680000pt;}
.ws23{word-spacing:-15.488000pt;}
.wsc{word-spacing:-15.176640pt;}
.ws12{word-spacing:-15.140907pt;}
.ws1d{word-spacing:-15.090773pt;}
.ws3{word-spacing:-15.016640pt;}
.ws29{word-spacing:-15.013120pt;}
.ws26{word-spacing:-15.012480pt;}
.ws4{word-spacing:-14.987840pt;}
.ws28{word-spacing:-14.983680pt;}
.ws1{word-spacing:-14.856640pt;}
.ws21{word-spacing:-14.820907pt;}
.ws0{word-spacing:-14.428800pt;}
.ws27{word-spacing:-14.341867pt;}
.wsb{word-spacing:-13.199680pt;}
.ws1f{word-spacing:-13.173440pt;}
.ws1b{word-spacing:-10.805013pt;}
.ws19{word-spacing:-10.520640pt;}
.ws1a{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.064000pt;}
.ws8{word-spacing:-0.058560pt;}
.ws2{word-spacing:-0.053440pt;}
.wsa{word-spacing:0.000000pt;}
.ws20{word-spacing:0.033493pt;}
._30{margin-left:-6.400000pt;}
._31{margin-left:-5.503787pt;}
._20{margin-left:-4.550293pt;}
._15{margin-left:-3.431147pt;}
._1f{margin-left:-2.117760pt;}
._0{margin-left:-1.067627pt;}
._3{width:0.913067pt;}
._8{width:1.844480pt;}
._4{width:3.527040pt;}
._2{width:5.272853pt;}
._1{width:6.252480pt;}
._6{width:7.438613pt;}
._9{width:8.550400pt;}
._5{width:10.313920pt;}
._d{width:11.275840pt;}
._13{width:12.216960pt;}
._12{width:13.568000pt;}
._c{width:14.642560pt;}
._11{width:15.821440pt;}
._f{width:17.216000pt;}
._19{width:18.240000pt;}
._1d{width:19.584000pt;}
._1e{width:20.608000pt;}
._17{width:21.504000pt;}
._16{width:22.400000pt;}
._e{width:23.360747pt;}
._a{width:24.990507pt;}
._b{width:26.569707pt;}
._18{width:27.968000pt;}
._14{width:29.056000pt;}
._1c{width:30.528000pt;}
._24{width:32.000000pt;}
._25{width:32.896000pt;}
._23{width:33.856000pt;}
._2d{width:34.816000pt;}
._21{width:36.416000pt;}
._10{width:37.440000pt;}
._1b{width:38.528000pt;}
._28{width:39.645867pt;}
._2a{width:41.280000pt;}
._2b{width:42.265600pt;}
._1a{width:43.178667pt;}
._22{width:44.928000pt;}
._2c{width:47.168000pt;}
._2f{width:54.208000pt;}
._29{width:55.466667pt;}
._2e{width:67.840000pt;}
._26{width:70.144000pt;}
._27{width:71.424000pt;}
._7{width:850.097173pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.480000pt;}
.y6{bottom:3.520000pt;}
.y1d6{bottom:3.546667pt;}
.y179{bottom:3.600000pt;}
.y5{bottom:22.640000pt;}
.y176{bottom:22.666667pt;}
.y178{bottom:22.720000pt;}
.y4{bottom:41.760000pt;}
.y3{bottom:60.880000pt;}
.y5f{bottom:67.920000pt;}
.y11{bottom:82.080000pt;}
.y5e{bottom:83.840000pt;}
.y10{bottom:99.920000pt;}
.y89{bottom:102.240000pt;}
.y1c1{bottom:103.600000pt;}
.y174{bottom:104.560000pt;}
.ya5{bottom:107.600000pt;}
.yb6{bottom:114.160000pt;}
.y34{bottom:115.840000pt;}
.y125{bottom:118.960000pt;}
.y88{bottom:121.360000pt;}
.y1c0{bottom:123.440000pt;}
.ye5{bottom:125.520000pt;}
.y173{bottom:127.520000pt;}
.y19c{bottom:132.880000pt;}
.yf{bottom:134.160000pt;}
.y141{bottom:134.960000pt;}
.yb5{bottom:137.120000pt;}
.y131{bottom:138.960000pt;}
.ybf{bottom:139.520000pt;}
.y87{bottom:140.480000pt;}
.y124{bottom:141.920000pt;}
.y1bf{bottom:143.200000pt;}
.y86{bottom:145.840000pt;}
.y15b{bottom:146.960000pt;}
.ye4{bottom:148.560000pt;}
.y172{bottom:150.400000pt;}
.y19b{bottom:152.720000pt;}
.ye{bottom:153.280000pt;}
.y152{bottom:153.920000pt;}
.y140{bottom:157.920000pt;}
.y5d{bottom:158.640000pt;}
.y85{bottom:159.600000pt;}
.y9d{bottom:159.680000pt;}
.yb4{bottom:160.080000pt;}
.y130{bottom:161.920000pt;}
.y1be{bottom:162.960000pt;}
.yb9{bottom:164.960000pt;}
.y104{bottom:165.920000pt;}
.y123{bottom:168.880000pt;}
.y15a{bottom:169.920000pt;}
.ye3{bottom:171.520000pt;}
.yd{bottom:172.400000pt;}
.y5c{bottom:172.480000pt;}
.y151{bottom:176.880000pt;}
.y8b{bottom:177.760000pt;}
.y84{bottom:178.720000pt;}
.yb8{bottom:178.800000pt;}
.y171{bottom:180.560000pt;}
.y13f{bottom:180.880000pt;}
.y1bd{bottom:182.800000pt;}
.y9c{bottom:182.960000pt;}
.y94{bottom:184.080000pt;}
.y12f{bottom:184.880000pt;}
.y16f{bottom:186.480000pt;}
.y103{bottom:188.880000pt;}
.yc{bottom:191.600000pt;}
.y122{bottom:191.840000pt;}
.y19a{bottom:192.240000pt;}
.y159{bottom:192.880000pt;}
.ye2{bottom:194.480000pt;}
.y93{bottom:197.840000pt;}
.y83{bottom:197.920000pt;}
.y1bc{bottom:202.586667pt;}
.y150{bottom:203.866667pt;}
.y5a{bottom:204.586667pt;}
.y9b{bottom:205.946667pt;}
.y13e{bottom:207.866667pt;}
.yb{bottom:210.746667pt;}
.y5b{bottom:211.226667pt;}
.y12e{bottom:211.866667pt;}
.y199{bottom:212.106667pt;}
.y16e{bottom:212.906667pt;}
.y102{bottom:215.866667pt;}
.y92{bottom:216.986667pt;}
.ye1{bottom:217.466667pt;}
.y1e7{bottom:218.186667pt;}
.y121{bottom:218.826667pt;}
.y1bb{bottom:222.426667pt;}
.y14f{bottom:226.826667pt;}
.y59{bottom:227.466667pt;}
.y9a{bottom:228.906667pt;}
.ya{bottom:229.866667pt;}
.y198{bottom:231.866667pt;}
.y12d{bottom:234.826667pt;}
.yb3{bottom:235.226667pt;}
.y16d{bottom:235.866667pt;}
.y91{bottom:236.106667pt;}
.y1e6{bottom:237.546667pt;}
.y101{bottom:238.826667pt;}
.y98{bottom:240.346667pt;}
.ye0{bottom:240.426667pt;}
.y1ba{bottom:242.186667pt;}
.y158{bottom:242.826667pt;}
.y120{bottom:245.786667pt;}
.y9{bottom:248.986667pt;}
.y14e{bottom:249.786667pt;}
.y58{bottom:250.426667pt;}
.y197{bottom:251.706667pt;}
.y82{bottom:251.866667pt;}
.ybe{bottom:254.346667pt;}
.y90{bottom:255.226667pt;}
.y1e5{bottom:257.306667pt;}
.y13d{bottom:257.786667pt;}
.y16c{bottom:258.826667pt;}
.y8f{bottom:260.586667pt;}
.y100{bottom:261.786667pt;}
.y1b9{bottom:262.026667pt;}
.ydf{bottom:263.386667pt;}
.y157{bottom:265.786667pt;}
.yb2{bottom:268.106667pt;}
.y11f{bottom:268.746667pt;}
.y196{bottom:271.466667pt;}
.y57{bottom:273.386667pt;}
.ybd{bottom:273.466667pt;}
.ya4{bottom:274.346667pt;}
.y8e{bottom:274.426667pt;}
.y97{bottom:274.746667pt;}
.y81{bottom:274.826667pt;}
.y14d{bottom:276.746667pt;}
.y1e4{bottom:277.146667pt;}
.ya3{bottom:279.706667pt;}
.y13c{bottom:280.746667pt;}
.y16b{bottom:281.786667pt;}
.y8{bottom:283.466667pt;}
.y12c{bottom:284.746667pt;}
.yde{bottom:286.346667pt;}
.yb1{bottom:287.226667pt;}
.ybc{bottom:287.306667pt;}
.yff{bottom:288.746667pt;}
.y195{bottom:291.306667pt;}
.yb0{bottom:292.586667pt;}
.ya2{bottom:293.546667pt;}
.y11e{bottom:295.706667pt;}
.y56{bottom:296.346667pt;}
.y1e3{bottom:296.906667pt;}
.y80{bottom:297.786667pt;}
.y14c{bottom:299.706667pt;}
.y1b8{bottom:301.546667pt;}
.y16a{bottom:304.746667pt;}
.yaf{bottom:306.346667pt;}
.y12b{bottom:307.706667pt;}
.ydd{bottom:309.226667pt;}
.y194{bottom:311.066667pt;}
.yfe{bottom:311.706667pt;}
.y156{bottom:315.706667pt;}
.y1e2{bottom:316.746667pt;}
.y55{bottom:319.306667pt;}
.y31{bottom:319.466667pt;}
.y7f{bottom:320.746667pt;}
.y1b7{bottom:321.386667pt;}
.y11d{bottom:322.666667pt;}
.yae{bottom:325.466667pt;}
.ya1{bottom:327.386667pt;}
.y169{bottom:327.706667pt;}
.y13b{bottom:330.666667pt;}
.yad{bottom:330.826667pt;}
.ydc{bottom:332.186667pt;}
.yfd{bottom:334.666667pt;}
.y30{bottom:338.586667pt;}
.y155{bottom:338.666667pt;}
.y1b6{bottom:341.146667pt;}
.y54{bottom:342.266667pt;}
.y7e{bottom:343.706667pt;}
.yac{bottom:344.586667pt;}
.y11c{bottom:345.626667pt;}
.y14b{bottom:349.626667pt;}
.yab{bottom:349.946667pt;}
.y168{bottom:350.666667pt;}
.y13a{bottom:353.626667pt;}
.ydb{bottom:355.146667pt;}
.y1e1{bottom:355.626667pt;}
.yfc{bottom:357.626667pt;}
.y2f{bottom:357.706667pt;}
.y1b5{bottom:360.986667pt;}
.y154{bottom:361.626667pt;}
.yaa{bottom:363.786667pt;}
.y53{bottom:365.226667pt;}
.y7d{bottom:366.666667pt;}
.y193{bottom:370.426667pt;}
.y11b{bottom:372.586667pt;}
.y167{bottom:373.626667pt;}
.y1e0{bottom:375.466667pt;}
.y2e{bottom:376.826667pt;}
.yda{bottom:378.106667pt;}
.yfb{bottom:380.586667pt;}
.y1b4{bottom:380.746667pt;}
.y153{bottom:384.586667pt;}
.y52{bottom:388.186667pt;}
.y7c{bottom:389.626667pt;}
.y192{bottom:390.266667pt;}
.y1df{bottom:395.226667pt;}
.y11a{bottom:395.466667pt;}
.y2d{bottom:395.946667pt;}
.y8d{bottom:396.266667pt;}
.y166{bottom:396.586667pt;}
.y1b3{bottom:400.586667pt;}
.yd9{bottom:401.066667pt;}
.yfa{bottom:407.466667pt;}
.y191{bottom:410.026667pt;}
.y51{bottom:411.146667pt;}
.y7b{bottom:412.586667pt;}
.y1de{bottom:414.986667pt;}
.y2c{bottom:415.066667pt;}
.y165{bottom:419.466667pt;}
.y1b2{bottom:420.346667pt;}
.y119{bottom:422.426667pt;}
.yd8{bottom:424.026667pt;}
.y190{bottom:429.866667pt;}
.yf9{bottom:430.426667pt;}
.y50{bottom:434.106667pt;}
.y1dd{bottom:434.826667pt;}
.y2b{bottom:434.986667pt;}
.y7a{bottom:435.466667pt;}
.y1b1{bottom:440.106667pt;}
.ybb{bottom:442.106667pt;}
.y164{bottom:442.426667pt;}
.y118{bottom:445.386667pt;}
.yd7{bottom:446.986667pt;}
.y18f{bottom:449.626667pt;}
.yf8{bottom:453.386667pt;}
.y1dc{bottom:454.586667pt;}
.y4f{bottom:457.066667pt;}
.y2a{bottom:457.226667pt;}
.y139{bottom:457.386667pt;}
.y79{bottom:458.426667pt;}
.y1b0{bottom:459.946667pt;}
.y8a{bottom:465.066667pt;}
.y163{bottom:465.386667pt;}
.y117{bottom:468.346667pt;}
.y18e{bottom:469.386667pt;}
.yd6{bottom:469.946667pt;}
.y1db{bottom:474.426667pt;}
.y29{bottom:475.866667pt;}
.yf7{bottom:476.346667pt;}
.y1af{bottom:479.706667pt;}
.y4e{bottom:480.026667pt;}
.y12a{bottom:480.346667pt;}
.y78{bottom:481.386667pt;}
.yb7{bottom:488.026667pt;}
.y162{bottom:488.346667pt;}
.y18d{bottom:489.226667pt;}
.y14a{bottom:491.306667pt;}
.yd5{bottom:492.906667pt;}
.y1da{bottom:494.186667pt;}
.y116{bottom:495.306667pt;}
.y28{bottom:496.906667pt;}
.y1ae{bottom:499.546667pt;}
.y4d{bottom:502.906667pt;}
.yf6{bottom:503.306667pt;}
.y77{bottom:504.346667pt;}
.y138{bottom:507.306667pt;}
.y161{bottom:511.306667pt;}
.y1d9{bottom:514.026667pt;}
.yd4{bottom:515.866667pt;}
.y27{bottom:517.946667pt;}
.y115{bottom:518.266667pt;}
.y4c{bottom:525.866667pt;}
.yf5{bottom:526.266667pt;}
.y76{bottom:527.306667pt;}
.y18c{bottom:528.106667pt;}
.y137{bottom:530.266667pt;}
.y1d8{bottom:533.786667pt;}
.y8c{bottom:533.946667pt;}
.y160{bottom:534.266667pt;}
.y1ad{bottom:538.426667pt;}
.yd3{bottom:538.826667pt;}
.y26{bottom:538.986667pt;}
.y149{bottom:541.226667pt;}
.y114{bottom:545.226667pt;}
.y18b{bottom:547.946667pt;}
.y4b{bottom:548.826667pt;}
.yf4{bottom:549.226667pt;}
.y75{bottom:550.266667pt;}
.y1d7{bottom:553.546667pt;}
.y136{bottom:557.226667pt;}
.y1ac{bottom:558.266667pt;}
.y25{bottom:560.026667pt;}
.yd2{bottom:561.786667pt;}
.y148{bottom:564.186667pt;}
.y18a{bottom:567.706667pt;}
.y113{bottom:568.186667pt;}
.y4a{bottom:571.786667pt;}
.y129{bottom:572.186667pt;}
.y74{bottom:573.226667pt;}
.y1d5{bottom:573.386667pt;}
.yf3{bottom:576.213333pt;}
.y1ab{bottom:578.053333pt;}
.y99{bottom:579.893333pt;}
.y135{bottom:580.213333pt;}
.y24{bottom:581.093333pt;}
.yd1{bottom:584.693333pt;}
.y189{bottom:587.573333pt;}
.y112{bottom:591.173333pt;}
.y1d4{bottom:593.173333pt;}
.y49{bottom:594.773333pt;}
.y73{bottom:596.213333pt;}
.y1aa{bottom:597.893333pt;}
.yf2{bottom:599.173333pt;}
.y23{bottom:602.133333pt;}
.y134{bottom:603.173333pt;}
.y188{bottom:607.333333pt;}
.yd0{bottom:607.653333pt;}
.y1d3{bottom:613.013333pt;}
.y147{bottom:614.133333pt;}
.y1a9{bottom:617.653333pt;}
.y48{bottom:617.733333pt;}
.y111{bottom:618.133333pt;}
.y72{bottom:619.173333pt;}
.y128{bottom:622.133333pt;}
.y22{bottom:623.173333pt;}
.yf1{bottom:626.133333pt;}
.y187{bottom:627.093333pt;}
.ycf{bottom:630.613333pt;}
.y1d2{bottom:632.773333pt;}
.y1a8{bottom:637.413333pt;}
.y47{bottom:640.693333pt;}
.y110{bottom:641.093333pt;}
.y71{bottom:642.133333pt;}
.y21{bottom:644.213333pt;}
.y127{bottom:645.093333pt;}
.y186{bottom:646.933333pt;}
.ya0{bottom:648.773333pt;}
.yf0{bottom:649.093333pt;}
.y1d1{bottom:652.613333pt;}
.y15f{bottom:653.093333pt;}
.yce{bottom:653.573333pt;}
.y1a7{bottom:657.253333pt;}
.y46{bottom:663.653333pt;}
.y146{bottom:664.053333pt;}
.y70{bottom:665.093333pt;}
.y20{bottom:665.253333pt;}
.y185{bottom:666.693333pt;}
.y10f{bottom:668.053333pt;}
.yef{bottom:672.053333pt;}
.y133{bottom:676.053333pt;}
.ycd{bottom:676.533333pt;}
.y1a6{bottom:677.013333pt;}
.y1f{bottom:686.293333pt;}
.y184{bottom:686.533333pt;}
.y45{bottom:686.613333pt;}
.y6f{bottom:688.053333pt;}
.y10e{bottom:690.933333pt;}
.y1d0{bottom:691.493333pt;}
.ya9{bottom:694.693333pt;}
.y126{bottom:694.933333pt;}
.y1a5{bottom:696.853333pt;}
.yee{bottom:698.933333pt;}
.ycc{bottom:699.493333pt;}
.y183{bottom:706.293333pt;}
.y1e{bottom:707.333333pt;}
.y6e{bottom:710.933333pt;}
.y1cf{bottom:711.253333pt;}
.y145{bottom:713.893333pt;}
.y1a4{bottom:716.613333pt;}
.y10d{bottom:717.893333pt;}
.yed{bottom:721.893333pt;}
.y44{bottom:722.453333pt;}
.y15e{bottom:725.893333pt;}
.y182{bottom:726.133333pt;}
.y1d{bottom:728.373333pt;}
.y1ce{bottom:731.093333pt;}
.y6d{bottom:733.893333pt;}
.y10c{bottom:740.853333pt;}
.y43{bottom:744.693333pt;}
.yec{bottom:744.853333pt;}
.ycb{bottom:745.413333pt;}
.y181{bottom:745.893333pt;}
.y15d{bottom:748.853333pt;}
.y1c{bottom:749.413333pt;}
.y1cd{bottom:750.853333pt;}
.y1a3{bottom:755.573333pt;}
.y6c{bottom:756.853333pt;}
.y9f{bottom:763.493333pt;}
.y42{bottom:763.733333pt;}
.y10b{bottom:763.813333pt;}
.y180{bottom:765.653333pt;}
.yeb{bottom:767.813333pt;}
.yca{bottom:768.373333pt;}
.y1b{bottom:770.453333pt;}
.y1cc{bottom:770.693333pt;}
.y15c{bottom:771.813333pt;}
.y6b{bottom:779.813333pt;}
.y41{bottom:782.853333pt;}
.y17f{bottom:785.493333pt;}
.ya8{bottom:786.453333pt;}
.y1cb{bottom:790.453333pt;}
.y10a{bottom:790.773333pt;}
.yc9{bottom:791.333333pt;}
.y1a{bottom:791.493333pt;}
.y1a2{bottom:794.453333pt;}
.yea{bottom:794.773333pt;}
.y40{bottom:801.973333pt;}
.y6a{bottom:802.773333pt;}
.y17e{bottom:805.253333pt;}
.y1ca{bottom:810.293333pt;}
.y19{bottom:812.533333pt;}
.y109{bottom:813.733333pt;}
.yc8{bottom:814.293333pt;}
.ye9{bottom:817.733333pt;}
.y3f{bottom:821.093333pt;}
.y17d{bottom:825.093333pt;}
.y69{bottom:825.733333pt;}
.y1c9{bottom:830.053333pt;}
.y1a1{bottom:833.413333pt;}
.y18{bottom:833.573333pt;}
.y144{bottom:836.693333pt;}
.yc7{bottom:837.173333pt;}
.y3e{bottom:840.213333pt;}
.ye8{bottom:840.693333pt;}
.y132{bottom:844.693333pt;}
.y17c{bottom:844.853333pt;}
.y68{bottom:848.693333pt;}
.y1c8{bottom:849.813333pt;}
.y17{bottom:854.613333pt;}
.ya7{bottom:855.333333pt;}
.y3d{bottom:859.413333pt;}
.yc6{bottom:860.133333pt;}
.y108{bottom:863.653333pt;}
.y17b{bottom:864.693333pt;}
.ye7{bottom:867.653333pt;}
.y1c7{bottom:869.653333pt;}
.y66{bottom:871.653333pt;}
.y1a0{bottom:872.293333pt;}
.y16{bottom:875.333333pt;}
.y67{bottom:878.293333pt;}
.y3c{bottom:878.533333pt;}
.yc5{bottom:883.093333pt;}
.y17a{bottom:884.453333pt;}
.y143{bottom:886.613333pt;}
.y1c6{bottom:889.413333pt;}
.ye6{bottom:890.613333pt;}
.y65{bottom:894.613333pt;}
.y15{bottom:895.253333pt;}
.y3b{bottom:897.653333pt;}
.yba{bottom:901.253333pt;}
.y177{bottom:904.213333pt;}
.yc4{bottom:906.053333pt;}
.y1c5{bottom:909.253333pt;}
.y142{bottom:909.573333pt;}
.y19f{bottom:911.253333pt;}
.y107{bottom:913.573333pt;}
.y3a{bottom:916.773333pt;}
.y64{bottom:917.573333pt;}
.y14{bottom:918.853333pt;}
.y9e{bottom:924.213333pt;}
.yc3{bottom:929.013333pt;}
.y39{bottom:935.893333pt;}
.y106{bottom:936.533333pt;}
.y63{bottom:940.533333pt;}
.y175{bottom:943.173333pt;}
.y13{bottom:945.573333pt;}
.ya6{bottom:947.173333pt;}
.y1c4{bottom:948.880000pt;}
.y19e{bottom:950.160000pt;}
.yc2{bottom:952.000000pt;}
.y38{bottom:955.040000pt;}
.y105{bottom:959.520000pt;}
.y62{bottom:963.520000pt;}
.y1c3{bottom:968.640000pt;}
.y12{bottom:971.280000pt;}
.y37{bottom:974.160000pt;}
.yc1{bottom:974.960000pt;}
.y170{bottom:982.960000pt;}
.y61{bottom:986.400000pt;}
.y1c2{bottom:988.400000pt;}
.y19d{bottom:989.120000pt;}
.y7{bottom:992.080000pt;}
.y96{bottom:993.040000pt;}
.y36{bottom:993.280000pt;}
.y1{bottom:1008.240000pt;}
.yc0{bottom:1009.280000pt;}
.y60{bottom:1009.360000pt;}
.y35{bottom:1012.400000pt;}
.y95{bottom:1016.000000pt;}
.y33{bottom:1051.520000pt;}
.y32{bottom:1069.920000pt;}
.h18{height:19.118667pt;}
.h14{height:19.120000pt;}
.h19{height:19.140000pt;}
.h16{height:19.146667pt;}
.h15{height:19.200000pt;}
.h10{height:32.734375pt;}
.h17{height:38.240000pt;}
.h12{height:38.260000pt;}
.hf{height:38.299219pt;}
.h13{height:38.320000pt;}
.h11{height:44.531250pt;}
.h4{height:46.159844pt;}
.h6{height:49.101562pt;}
.h3{height:54.666406pt;}
.ha{height:55.281250pt;}
.hc{height:55.344844pt;}
.h7{height:55.736250pt;}
.h8{height:59.903906pt;}
.h9{height:64.402656pt;}
.hb{height:65.468750pt;}
.hd{height:66.281250pt;}
.h5{height:66.750000pt;}
.h2{height:76.480000pt;}
.he{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w7{width:169.226667pt;}
.w6{width:188.874667pt;}
.w8{width:219.146667pt;}
.w4{width:293.066667pt;}
.w2{width:295.012000pt;}
.w5{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x3b{left:27.760000pt;}
.x42{left:43.706667pt;}
.x40{left:46.480000pt;}
.x41{left:56.560000pt;}
.x3e{left:57.706667pt;}
.x3c{left:67.520000pt;}
.x1{left:87.361333pt;}
.x8{left:93.040000pt;}
.x6{left:94.560000pt;}
.xe{left:98.560000pt;}
.x24{left:102.586667pt;}
.xf{left:104.026667pt;}
.x3a{left:107.626667pt;}
.x39{left:113.146667pt;}
.x33{left:120.986667pt;}
.x9{left:141.866667pt;}
.x1d{left:146.266667pt;}
.x17{left:147.305000pt;}
.x18{left:152.026667pt;}
.xb{left:157.145000pt;}
.xc{left:161.866667pt;}
.x2{left:181.225333pt;}
.x2a{left:206.505000pt;}
.x2b{left:215.946667pt;}
.x38{left:222.266667pt;}
.xd{left:286.586667pt;}
.x3d{left:297.146667pt;}
.x20{left:301.865000pt;}
.x21{left:311.306667pt;}
.x3{left:382.373333pt;}
.x7{left:396.933333pt;}
.x26{left:420.851667pt;}
.x36{left:422.211667pt;}
.x5{left:427.573333pt;}
.x27{left:430.293333pt;}
.x37{left:431.653333pt;}
.x13{left:459.411667pt;}
.x14{left:464.133333pt;}
.x3f{left:467.093333pt;}
.x1b{left:524.851667pt;}
.x1c{left:529.573333pt;}
.x23{left:540.478333pt;}
.x1e{left:544.078333pt;}
.x19{left:545.358333pt;}
.x1f{left:548.800000pt;}
.x1a{left:551.920000pt;}
.x2c{left:565.198333pt;}
.x2d{left:574.640000pt;}
.x30{left:576.958333pt;}
.x2e{left:584.798333pt;}
.x31{left:586.400000pt;}
.x2f{left:594.480000pt;}
.x28{left:615.598333pt;}
.x29{left:631.280000pt;}
.x15{left:635.358333pt;}
.x16{left:640.080000pt;}
.x22{left:644.080000pt;}
.x10{left:670.158333pt;}
.x11{left:675.120000pt;}
.x25{left:681.520000pt;}
.x34{left:684.078333pt;}
.x32{left:685.360000pt;}
.xa{left:690.400000pt;}
.x35{left:695.120000pt;}
.x12{left:699.280000pt;}
}




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