
    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_3814fb537dbfe609469fafc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_530ba0e1d911890578855730.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bbdecc2148d6acd477be0f2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ae65fc76a5101acf59145058.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_16c818fbade5ac62d9766ee3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_392c89bbcfdd33707c1b6198.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27090ac3232cacc67c9a687b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f540d549a1a318363cca26bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943359;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_7b7ef12af65a5847366427a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_6bbd9f14eab0bf4b70d8cd5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_6f9151e19cf1b1d0c24fe9d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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:-73.440000px;}
.v5{vertical-align:-67.680000px;}
.v4{vertical-align:-66.240000px;}
.v3{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-1.980000px;}
.ls11{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.057600px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005040px;}
.ls7{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.084000px;}
.ls16{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:3.780000px;}
.ls4{letter-spacing:8.789760px;}
.ls2{letter-spacing:13.860000px;}
.ls1d{letter-spacing:25.308000px;}
.ls15{letter-spacing:52.668000px;}
.ls17{letter-spacing:91.440000px;}
.ls0{letter-spacing:1064.460000px;}
.ls18{letter-spacing:1273.260000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.wsc{word-spacing:-15.901200px;}
.wsb{word-spacing:-15.838560px;}
.wsd{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.wse{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.824000px;}
.wsf{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.672000px;}
.ws9{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.wsa{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-3.307680px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._a{width:2.350080px;}
._c{width:3.464640px;}
._b{width:4.752000px;}
._d{width:5.836800px;}
._12{width:7.726320px;}
._7{width:8.802000px;}
._8{width:9.977040px;}
._9{width:11.610000px;}
._3{width:14.530320px;}
._e{width:15.580080px;}
._6{width:17.424000px;}
._2b{width:18.436320px;}
._14{width:19.440000px;}
._21{width:20.628000px;}
._15{width:21.807360px;}
._11{width:23.116320px;}
._27{width:24.138000px;}
._1d{width:25.218000px;}
._1c{width:26.518320px;}
._1b{width:27.540000px;}
._1f{width:28.620000px;}
._16{width:30.348000px;}
._1e{width:32.337360px;}
._28{width:34.020000px;}
._f{width:35.262000px;}
._10{width:36.376320px;}
._22{width:37.461360px;}
._29{width:38.556000px;}
._2c{width:39.623040px;}
._20{width:41.004000px;}
._2a{width:42.593040px;}
._17{width:44.712000px;}
._18{width:45.954000px;}
._25{width:47.003040px;}
._19{width:49.032000px;}
._1a{width:50.153040px;}
._13{width:53.784000px;}
._23{width:55.404000px;}
._24{width:56.421360px;}
._26{width:58.860000px;}
._36{width:60.718320px;}
._35{width:61.722000px;}
._37{width:65.502000px;}
._31{width:68.962320px;}
._30{width:69.984000px;}
._32{width:117.126000px;}
._4{width:124.528320px;}
._33{width:170.370000px;}
._34{width:171.396000px;}
._2e{width:339.762000px;}
._2f{width:347.880000px;}
._2d{width:353.442000px;}
._2{width:391.163760px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,204);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y126{bottom:3.420000px;}
.y128{bottom:3.600000px;}
.yf8{bottom:3.630000px;}
.y111{bottom:3.960000px;}
.y10e{bottom:4.140000px;}
.y168{bottom:5.220000px;}
.y148{bottom:5.565000px;}
.y2c{bottom:5.580000px;}
.y147{bottom:5.610000px;}
.y152{bottom:5.745000px;}
.y15a{bottom:5.760000px;}
.y184{bottom:5.925000px;}
.y141{bottom:5.940000px;}
.y142{bottom:6.660000px;}
.y114{bottom:16.560000px;}
.y115{bottom:16.920000px;}
.y2e{bottom:23.580000px;}
.y14a{bottom:24.105000px;}
.y158{bottom:24.120000px;}
.y144{bottom:24.150000px;}
.y2b{bottom:32.400000px;}
.y2a{bottom:50.220000px;}
.y4b{bottom:58.500000px;}
.y4{bottom:76.860000px;}
.y29{bottom:77.070000px;}
.y4a{bottom:77.220000px;}
.y28{bottom:95.070000px;}
.y15e{bottom:95.400000px;}
.y1b5{bottom:95.580000px;}
.yda{bottom:96.660000px;}
.yb4{bottom:96.840000px;}
.y10c{bottom:97.920000px;}
.y199{bottom:99.900000px;}
.y194{bottom:102.780000px;}
.y160{bottom:104.400000px;}
.y6{bottom:105.120000px;}
.y84{bottom:108.720000px;}
.y46{bottom:110.340000px;}
.y15d{bottom:110.880000px;}
.y27{bottom:112.890000px;}
.yd9{bottom:114.480000px;}
.yb3{bottom:114.660000px;}
.y107{bottom:117.720000px;}
.y1b4{bottom:119.340000px;}
.y15f{bottom:119.880000px;}
.y193{bottom:120.600000px;}
.y207{bottom:123.120000px;}
.yf0{bottom:123.480000px;}
.y83{bottom:126.720000px;}
.y45{bottom:128.340000px;}
.y1ea{bottom:129.240000px;}
.y26{bottom:130.710000px;}
.yd8{bottom:132.300000px;}
.yb2{bottom:132.480000px;}
.y15c{bottom:134.100000px;}
.y106{bottom:135.540000px;}
.y1ab{bottom:135.720000px;}
.y192{bottom:138.420000px;}
.y206{bottom:140.940000px;}
.yef{bottom:141.300000px;}
.y1b3{bottom:141.840000px;}
.y157{bottom:142.740000px;}
.y82{bottom:144.540000px;}
.y44{bottom:146.160000px;}
.y1e9{bottom:147.060000px;}
.yd7{bottom:150.120000px;}
.yb1{bottom:150.300000px;}
.y1aa{bottom:153.540000px;}
.y191{bottom:156.420000px;}
.y25{bottom:157.530000px;}
.yee{bottom:159.120000px;}
.y1b2{bottom:159.660000px;}
.y15b{bottom:161.280000px;}
.y81{bottom:162.360000px;}
.y43{bottom:163.980000px;}
.y1e8{bottom:164.880000px;}
.yd6{bottom:167.940000px;}
.yb0{bottom:168.120000px;}
.y1a9{bottom:171.360000px;}
.y190{bottom:174.240000px;}
.y24{bottom:175.350000px;}
.yed{bottom:176.940000px;}
.y1b1{bottom:177.480000px;}
.y159{bottom:179.820000px;}
.y105{bottom:180.180000px;}
.y198{bottom:180.360000px;}
.y42{bottom:181.800000px;}
.y1e7{bottom:182.880000px;}
.y205{bottom:185.760000px;}
.yaf{bottom:185.940000px;}
.y80{bottom:188.820000px;}
.y1a8{bottom:189.180000px;}
.y18f{bottom:192.060000px;}
.y23{bottom:193.350000px;}
.yec{bottom:194.940000px;}
.y1b0{bottom:195.300000px;}
.y104{bottom:198.000000px;}
.y197{bottom:198.180000px;}
.y154{bottom:198.540000px;}
.y41{bottom:199.620000px;}
.y204{bottom:203.580000px;}
.y1a7{bottom:207.030000px;}
.y16{bottom:208.830000px;}
.y1e6{bottom:209.730000px;}
.y22{bottom:211.170000px;}
.yd5{bottom:212.790000px;}
.yae{bottom:212.970000px;}
.y1af{bottom:213.150000px;}
.y103{bottom:216.030000px;}
.y156{bottom:217.125000px;}
.y7f{bottom:217.470000px;}
.y40{bottom:217.650000px;}
.y18e{bottom:220.350000px;}
.y203{bottom:221.430000px;}
.y10b{bottom:224.670000px;}
.y1a6{bottom:225.030000px;}
.y1e5{bottom:227.550000px;}
.y21{bottom:228.990000px;}
.yd4{bottom:230.610000px;}
.yad{bottom:230.790000px;}
.y1ae{bottom:230.970000px;}
.y102{bottom:233.850000px;}
.y3f{bottom:235.470000px;}
.y15{bottom:235.650000px;}
.y155{bottom:235.665000px;}
.y1e4{bottom:245.370000px;}
.y20{bottom:246.810000px;}
.y202{bottom:248.250000px;}
.yd3{bottom:248.430000px;}
.yac{bottom:248.610000px;}
.y7e{bottom:248.970000px;}
.y18d{bottom:251.670000px;}
.y3e{bottom:253.290000px;}
.y150{bottom:254.385000px;}
.y101{bottom:260.670000px;}
.y14{bottom:262.470000px;}
.y1e3{bottom:263.190000px;}
.y1f{bottom:264.630000px;}
.y201{bottom:266.070000px;}
.yd2{bottom:266.250000px;}
.yab{bottom:266.430000px;}
.y7d{bottom:266.790000px;}
.y18c{bottom:269.670000px;}
.y3d{bottom:271.110000px;}
.y153{bottom:272.925000px;}
.y100{bottom:278.490000px;}
.yd1{bottom:284.070000px;}
.yaa{bottom:284.250000px;}
.y7c{bottom:284.610000px;}
.y18b{bottom:287.490000px;}
.y13{bottom:288.930000px;}
.y1e2{bottom:290.190000px;}
.y1e{bottom:291.450000px;}
.y151{bottom:291.465000px;}
.yff{bottom:296.310000px;}
.y196{bottom:296.490000px;}
.y200{bottom:301.890000px;}
.ya9{bottom:302.070000px;}
.y7b{bottom:302.430000px;}
.y18a{bottom:305.310000px;}
.y47{bottom:306.750000px;}
.y1e1{bottom:308.010000px;}
.y1d{bottom:309.495000px;}
.y14d{bottom:310.185000px;}
.yfe{bottom:314.130000px;}
.y195{bottom:314.310000px;}
.y3c{bottom:315.750000px;}
.y12{bottom:316.335000px;}
.yeb{bottom:319.890000px;}
.ya8{bottom:320.070000px;}
.y7a{bottom:320.250000px;}
.y189{bottom:323.130000px;}
.y1c{bottom:327.315000px;}
.y1ff{bottom:328.710000px;}
.y14f{bottom:328.725000px;}
.yd0{bottom:328.890000px;}
.yfd{bottom:332.130000px;}
.y3b{bottom:333.750000px;}
.y1e0{bottom:334.830000px;}
.yea{bottom:337.710000px;}
.y79{bottom:338.070000px;}
.y188{bottom:340.950000px;}
.y11{bottom:343.155000px;}
.y1b{bottom:345.135000px;}
.y1fe{bottom:346.530000px;}
.ycf{bottom:346.710000px;}
.ya7{bottom:346.890000px;}
.y14e{bottom:347.445000px;}
.yfc{bottom:349.950000px;}
.y3a{bottom:351.570000px;}
.y1df{bottom:352.650000px;}
.y78{bottom:356.070000px;}
.y10{bottom:360.975000px;}
.y1a{bottom:362.955000px;}
.y1fd{bottom:364.350000px;}
.yce{bottom:364.530000px;}
.ya6{bottom:364.710000px;}
.y149{bottom:365.985000px;}
.y187{bottom:367.410000px;}
.yfb{bottom:367.770000px;}
.y39{bottom:369.390000px;}
.y1de{bottom:370.470000px;}
.y10a{bottom:373.890000px;}
.y19{bottom:380.775000px;}
.ycd{bottom:382.350000px;}
.ya5{bottom:382.530000px;}
.y77{bottom:382.890000px;}
.y186{bottom:384.330000px;}
.y14c{bottom:384.525000px;}
.y38{bottom:387.210000px;}
.y1dd{bottom:388.290000px;}
.y109{bottom:391.710000px;}
.yf{bottom:392.835000px;}
.yfa{bottom:396.030000px;}
.y18{bottom:398.595000px;}
.ya4{bottom:400.350000px;}
.y76{bottom:400.710000px;}
.y185{bottom:400.725000px;}
.y14b{bottom:403.245000px;}
.y37{bottom:405.030000px;}
.y1fc{bottom:409.170000px;}
.y108{bottom:409.530000px;}
.y1dc{bottom:415.290000px;}
.ye{bottom:416.235000px;}
.y17{bottom:416.595000px;}
.ycc{bottom:418.170000px;}
.ya3{bottom:418.350000px;}
.y75{bottom:418.530000px;}
.y143{bottom:421.785000px;}
.y36{bottom:423.030000px;}
.yf9{bottom:426.450000px;}
.y1fb{bottom:426.990000px;}
.y1a5{bottom:427.350000px;}
.y183{bottom:428.625000px;}
.y1db{bottom:433.110000px;}
.ycb{bottom:435.990000px;}
.ya2{bottom:436.170000px;}
.y74{bottom:436.350000px;}
.y146{bottom:440.325000px;}
.yf6{bottom:440.505000px;}
.y35{bottom:440.895000px;}
.y1fa{bottom:444.855000px;}
.y1a4{bottom:445.395000px;}
.y1da{bottom:450.975000px;}
.ye9{bottom:453.855000px;}
.ya1{bottom:454.035000px;}
.y73{bottom:454.395000px;}
.y182{bottom:458.175000px;}
.y34{bottom:458.715000px;}
.y145{bottom:459.075000px;}
.yca{bottom:462.495000px;}
.y1a3{bottom:463.215000px;}
.y1d9{bottom:468.795000px;}
.ye8{bottom:471.675000px;}
.y72{bottom:472.215000px;}
.y33{bottom:476.535000px;}
.y140{bottom:479.055000px;}
.ya0{bottom:480.855000px;}
.y1ad{bottom:481.035000px;}
.ye7{bottom:489.495000px;}
.yc9{bottom:489.675000px;}
.y71{bottom:490.035000px;}
.y32{bottom:494.355000px;}
.y1d8{bottom:495.615000px;}
.y9f{bottom:498.675000px;}
.yc8{bottom:507.495000px;}
.y70{bottom:507.855000px;}
.y31{bottom:512.175000px;}
.y1d7{bottom:513.615000px;}
.y13f{bottom:514.695000px;}
.ye6{bottom:516.135000px;}
.y9e{bottom:516.495000px;}
.y1f9{bottom:525.315000px;}
.y6f{bottom:525.675000px;}
.y1d6{bottom:531.435000px;}
.y30{bottom:533.955000px;}
.y9d{bottom:534.495000px;}
.y181{bottom:535.755000px;}
.y2f{bottom:539.355000px;}
.y137{bottom:541.875000px;}
.ye5{bottom:543.315000px;}
.y6e{bottom:543.495000px;}
.y1f8{bottom:552.135000px;}
.y9c{bottom:552.315000px;}
.y17e{bottom:553.575000px;}
.y1d5{bottom:558.255000px;}
.y136{bottom:559.875000px;}
.ye4{bottom:561.135000px;}
.y1a2{bottom:561.495000px;}
.y2d{bottom:565.635000px;}
.y1f7{bottom:569.955000px;}
.y9b{bottom:570.135000px;}
.y6d{bottom:570.495000px;}
.y17d{bottom:571.395000px;}
.y1d4{bottom:576.075000px;}
.y135{bottom:577.695000px;}
.y1a1{bottom:579.315000px;}
.y1f6{bottom:587.775000px;}
.y9a{bottom:587.955000px;}
.y6c{bottom:588.315000px;}
.y17c{bottom:589.215000px;}
.y1d3{bottom:593.895000px;}
.yf7{bottom:595.185000px;}
.y1a0{bottom:597.135000px;}
.y134{bottom:604.155000px;}
.yc7{bottom:605.775000px;}
.y6b{bottom:606.135000px;}
.y17b{bottom:607.035000px;}
.yd{bottom:611.175000px;}
.y1d2{bottom:611.715000px;}
.y99{bottom:614.415000px;}
.y1f5{bottom:614.775000px;}
.y19f{bottom:614.955000px;}
.y13e{bottom:622.515000px;}
.yc6{bottom:623.775000px;}
.y6a{bottom:623.955000px;}
.y17a{bottom:625.035000px;}
.y133{bottom:631.335000px;}
.y1f4{bottom:632.595000px;}
.y19e{bottom:632.775000px;}
.y1d1{bottom:638.715000px;}
.y13d{bottom:640.335000px;}
.ye3{bottom:641.595000px;}
.y69{bottom:641.775000px;}
.y179{bottom:642.855000px;}
.y216{bottom:646.995000px;}
.y132{bottom:649.155000px;}
.y1f3{bottom:650.415000px;}
.yc5{bottom:650.595000px;}
.y1ac{bottom:650.775000px;}
.y1d0{bottom:656.535000px;}
.y13c{bottom:658.155000px;}
.ye2{bottom:659.415000px;}
.y98{bottom:659.595000px;}
.y68{bottom:659.775000px;}
.y178{bottom:660.675000px;}
.y131{bottom:666.975000px;}
.y1f2{bottom:668.235000px;}
.yc4{bottom:668.415000px;}
.y180{bottom:669.675000px;}
.y1cf{bottom:674.355000px;}
.y13b{bottom:676.005000px;}
.y212{bottom:677.085000px;}
.ye1{bottom:677.265000px;}
.y67{bottom:677.625000px;}
.y130{bottom:685.005000px;}
.yc3{bottom:686.265000px;}
.y97{bottom:686.445000px;}
.y177{bottom:687.165000px;}
.y17f{bottom:687.525000px;}
.y1ce{bottom:692.205000px;}
.y13a{bottom:694.005000px;}
.y211{bottom:694.905000px;}
.y1f1{bottom:695.085000px;}
.y66{bottom:695.445000px;}
.y12f{bottom:702.825000px;}
.yc2{bottom:704.085000px;}
.y96{bottom:704.265000px;}
.y1cd{bottom:710.025000px;}
.y139{bottom:711.825000px;}
.y1f0{bottom:712.905000px;}
.y176{bottom:713.085000px;}
.y65{bottom:713.265000px;}
.y12e{bottom:720.645000px;}
.yc1{bottom:721.905000px;}
.y95{bottom:722.085000px;}
.y138{bottom:729.645000px;}
.y175{bottom:730.365000px;}
.y1ef{bottom:730.905000px;}
.y64{bottom:731.085000px;}
.y1cc{bottom:737.025000px;}
.y210{bottom:739.725000px;}
.y94{bottom:739.905000px;}
.y12d{bottom:741.885000px;}
.y174{bottom:746.025000px;}
.y1ee{bottom:748.725000px;}
.y63{bottom:748.905000px;}
.y1cb{bottom:754.845000px;}
.y20f{bottom:757.545000px;}
.yc0{bottom:757.725000px;}
.y93{bottom:757.905000px;}
.y173{bottom:758.985000px;}
.y19d{bottom:766.905000px;}
.y1ca{bottom:772.665000px;}
.y12c{bottom:773.385000px;}
.ye0{bottom:775.545000px;}
.y92{bottom:775.725000px;}
.y62{bottom:775.905000px;}
.y20e{bottom:784.365000px;}
.ybf{bottom:784.545000px;}
.y19c{bottom:784.725000px;}
.y172{bottom:786.525000px;}
.y1c9{bottom:790.485000px;}
.y12b{bottom:791.385000px;}
.ydf{bottom:793.365000px;}
.y91{bottom:793.545000px;}
.y61{bottom:793.725000px;}
.y20d{bottom:802.185000px;}
.ybe{bottom:802.365000px;}
.y19b{bottom:802.545000px;}
.y12a{bottom:809.385000px;}
.y215{bottom:811.185000px;}
.y60{bottom:811.545000px;}
.y171{bottom:814.065000px;}
.y1c8{bottom:818.745000px;}
.ybd{bottom:820.185000px;}
.y90{bottom:820.365000px;}
.y129{bottom:827.385000px;}
.y214{bottom:829.185000px;}
.y5f{bottom:829.365000px;}
.y8f{bottom:838.185000px;}
.y170{bottom:841.785000px;}
.y127{bottom:845.385000px;}
.y20c{bottom:847.005000px;}
.y5e{bottom:847.185000px;}
.y1c7{bottom:850.065000px;}
.ybc{bottom:856.005000px;}
.y8e{bottom:856.185000px;}
.y125{bottom:864.825000px;}
.y5d{bottom:865.185000px;}
.y1c6{bottom:868.065000px;}
.y16f{bottom:869.325000px;}
.ybb{bottom:873.825000px;}
.y8d{bottom:874.005000px;}
.y20b{bottom:882.645000px;}
.y5c{bottom:883.005000px;}
.y1c5{bottom:885.885000px;}
.yde{bottom:891.645000px;}
.y8c{bottom:891.825000px;}
.y124{bottom:896.145000px;}
.y16e{bottom:896.865000px;}
.y20a{bottom:900.465000px;}
.yba{bottom:900.645000px;}
.y5b{bottom:900.825000px;}
.ydd{bottom:909.465000px;}
.y8b{bottom:909.645000px;}
.y1c4{bottom:912.390000px;}
.yb9{bottom:918.510000px;}
.y5a{bottom:918.690000px;}
.y11c{bottom:923.550000px;}
.y209{bottom:927.330000px;}
.y16d{bottom:929.850000px;}
.y123{bottom:932.550000px;}
.yb8{bottom:936.330000px;}
.y59{bottom:936.510000px;}
.y1c3{bottom:939.570000px;}
.y11b{bottom:941.370000px;}
.y208{bottom:945.330000px;}
.y122{bottom:950.370000px;}
.y58{bottom:954.330000px;}
.y16b{bottom:957.030000px;}
.y1c2{bottom:957.390000px;}
.y11a{bottom:959.190000px;}
.y121{bottom:968.190000px;}
.yb7{bottom:972.150000px;}
.y57{bottom:972.330000px;}
.y16c{bottom:974.850000px;}
.y1c1{bottom:975.390000px;}
.y119{bottom:977.010000px;}
.y19a{bottom:981.330000px;}
.y120{bottom:986.010000px;}
.yb6{bottom:989.970000px;}
.y8a{bottom:990.150000px;}
.y16a{bottom:991.410000px;}
.y1c0{bottom:993.210000px;}
.y118{bottom:994.830000px;}
.y1ed{bottom:998.970000px;}
.y56{bottom:999.150000px;}
.y11f{bottom:1003.830000px;}
.ydc{bottom:1007.790000px;}
.y89{bottom:1007.970000px;}
.y1bf{bottom:1011.030000px;}
.y117{bottom:1012.830000px;}
.yb5{bottom:1016.430000px;}
.y1ec{bottom:1016.790000px;}
.y55{bottom:1016.970000px;}
.y11e{bottom:1021.830000px;}
.y88{bottom:1025.790000px;}
.y1be{bottom:1028.850000px;}
.y116{bottom:1030.650000px;}
.ydb{bottom:1034.250000px;}
.y1eb{bottom:1034.610000px;}
.y54{bottom:1034.790000px;}
.y169{bottom:1035.690000px;}
.y11d{bottom:1039.650000px;}
.y87{bottom:1043.610000px;}
.y1bd{bottom:1046.670000px;}
.y113{bottom:1051.890000px;}
.y53{bottom:1052.610000px;}
.yc{bottom:1055.310000px;}
.yf5{bottom:1056.390000px;}
.y86{bottom:1061.610000px;}
.y1bc{bottom:1064.490000px;}
.y167{bottom:1065.210000px;}
.y213{bottom:1070.430000px;}
.y52{bottom:1070.610000px;}
.yf4{bottom:1077.630000px;}
.y85{bottom:1079.430000px;}
.yb{bottom:1081.770000px;}
.y1bb{bottom:1082.490000px;}
.y51{bottom:1088.430000px;}
.y112{bottom:1092.390000px;}
.yf3{bottom:1097.250000px;}
.y1ba{bottom:1100.310000px;}
.y50{bottom:1106.250000px;}
.ya{bottom:1108.050000px;}
.y110{bottom:1109.850000px;}
.y5{bottom:1112.940000px;}
.yf2{bottom:1115.070000px;}
.y1b9{bottom:1118.130000px;}
.y4f{bottom:1124.070000px;}
.y10f{bottom:1127.130000px;}
.y166{bottom:1131.090000px;}
.y9{bottom:1132.350000px;}
.yf1{bottom:1132.890000px;}
.y1b8{bottom:1135.950000px;}
.y163{bottom:1137.570000px;}
.y4e{bottom:1141.890000px;}
.y10d{bottom:1146.060000px;}
.y165{bottom:1146.600000px;}
.y162{bottom:1153.080000px;}
.y1b7{bottom:1153.800000px;}
.y4d{bottom:1159.740000px;}
.y164{bottom:1162.080000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y1b6{bottom:1173.240000px;}
.y161{bottom:1177.380000px;}
.y4c{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y49{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y48{bottom:1198.080000px;}
.h13{height:5.805000px;}
.h1d{height:16.545000px;}
.h1c{height:16.725000px;}
.h1a{height:17.100000px;}
.h1f{height:17.280000px;}
.h15{height:17.666016px;}
.h24{height:17.805000px;}
.h2d{height:17.818500px;}
.h2c{height:17.820000px;}
.h25{height:17.841000px;}
.h29{height:17.856000px;}
.h27{height:17.985000px;}
.h2b{height:18.000000px;}
.h22{height:19.245000px;}
.h2e{height:20.479922px;}
.h2f{height:26.805000px;}
.h33{height:26.820000px;}
.h34{height:27.000000px;}
.h32{height:27.022500px;}
.h30{height:27.165000px;}
.h35{height:27.201000px;}
.h21{height:29.160000px;}
.h19{height:37.291289px;}
.h1e{height:38.145000px;}
.hf{height:39.049805px;}
.h1b{height:40.472227px;}
.h11{height:44.805000px;}
.h16{height:44.860781px;}
.h5{height:47.344922px;}
.h14{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h10{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h26{height:55.065000px;}
.h2a{height:55.078500px;}
.h23{height:55.101000px;}
.h28{height:55.116000px;}
.h31{height:55.503491px;}
.h2{height:58.651172px;}
.hb{height:59.092031px;}
.ha{height:60.041250px;}
.h20{height:60.226875px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:70.664062px;}
.h12{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:437.820000px;}
.h17{height:611.385000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.we{width:41.254500px;}
.w1b{width:53.314500px;}
.wc{width:68.974500px;}
.w13{width:69.334500px;}
.w7{width:73.834500px;}
.w1a{width:78.510000px;}
.w22{width:94.845000px;}
.w19{width:107.625000px;}
.w25{width:114.300000px;}
.w16{width:116.640000px;}
.w17{width:119.736000px;}
.w18{width:126.561000px;}
.w20{width:134.841000px;}
.w1c{width:146.149500px;}
.w23{width:158.775000px;}
.w21{width:158.970000px;}
.w1e{width:163.275000px;}
.w8{width:174.619500px;}
.w26{width:174.810000px;}
.w1f{width:180.030000px;}
.w10{width:208.470000px;}
.w24{width:208.513500px;}
.w3{width:210.133500px;}
.w9{width:215.130000px;}
.wd{width:216.019500px;}
.w14{width:216.919500px;}
.w1d{width:230.820000px;}
.w15{width:234.793500px;}
.wb{width:249.373500px;}
.w11{width:256.200000px;}
.wf{width:268.219500px;}
.w27{width:276.540000px;}
.wa{width:310.200000px;}
.w12{width:310.213500px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w6{width:792.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.098500px;}
.x3{left:12.090000px;}
.x23{left:16.918500px;}
.x2e{left:21.405000px;}
.x2c{left:24.660000px;}
.x31{left:27.360000px;}
.x2a{left:31.320000px;}
.x3b{left:34.905000px;}
.x36{left:36.750000px;}
.x34{left:38.340000px;}
.x4b{left:41.940000px;}
.x32{left:44.670000px;}
.x1e{left:45.901500px;}
.x33{left:48.045000px;}
.x12{left:50.044500px;}
.x35{left:51.300000px;}
.x28{left:52.741500px;}
.x1{left:54.000000px;}
.x3d{left:56.340000px;}
.x38{left:58.321500px;}
.x48{left:60.330000px;}
.x6{left:61.740000px;}
.x3e{left:69.825000px;}
.xa{left:72.901500px;}
.x4c{left:75.630000px;}
.xd{left:81.000000px;}
.x21{left:92.190000px;}
.x16{left:95.256000px;}
.x15{left:96.516000px;}
.x25{left:100.470000px;}
.x4a{left:106.050000px;}
.x4e{left:108.036000px;}
.x26{left:110.190000px;}
.x24{left:111.403500px;}
.x1f{left:114.886500px;}
.x1b{left:117.750000px;}
.x18{left:128.746500px;}
.x1c{left:132.510000px;}
.x1d{left:143.490000px;}
.x40{left:171.765000px;}
.x7{left:208.110000px;}
.x44{left:234.750000px;}
.x45{left:251.670000px;}
.x39{left:259.245000px;}
.x46{left:267.735000px;}
.xc{left:283.755000px;}
.x29{left:288.255000px;}
.x27{left:289.335000px;}
.x17{left:292.935000px;}
.x9{left:299.775000px;}
.x19{left:304.275000px;}
.x41{left:307.335000px;}
.x14{left:323.170500px;}
.x3f{left:353.235000px;}
.x20{left:364.935000px;}
.x37{left:378.435000px;}
.x47{left:382.755000px;}
.x8{left:388.155000px;}
.x2b{left:405.615000px;}
.x11{left:438.195000px;}
.x42{left:467.040000px;}
.xf{left:473.505000px;}
.x3a{left:490.800000px;}
.xe{left:500.505000px;}
.x4d{left:514.725000px;}
.x1a{left:520.320000px;}
.x2d{left:526.080000px;}
.x4f{left:527.505000px;}
.x49{left:558.300000px;}
.x43{left:562.620000px;}
.x22{left:574.320000px;}
.x2f{left:653.550000px;}
.x3c{left:654.810000px;}
.x10{left:668.490000px;}
.x13{left:746.095500px;}
.x30{left:761.910000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v5{vertical-align:-60.160000pt;}
.v4{vertical-align:-58.880000pt;}
.v3{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-1.760000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.051200pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.004480pt;}
.ls7{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.074667pt;}
.ls16{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:3.360000pt;}
.ls4{letter-spacing:7.813120pt;}
.ls2{letter-spacing:12.320000pt;}
.ls1d{letter-spacing:22.496000pt;}
.ls15{letter-spacing:46.816000pt;}
.ls17{letter-spacing:81.280000pt;}
.ls0{letter-spacing:946.186667pt;}
.ls18{letter-spacing:1131.786667pt;}
.ws4{word-spacing:-19.040000pt;}
.wsc{word-spacing:-14.134400pt;}
.wsb{word-spacing:-14.078720pt;}
.wsd{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.288000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.264000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2.940160pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._a{width:2.088960pt;}
._c{width:3.079680pt;}
._b{width:4.224000pt;}
._d{width:5.188267pt;}
._12{width:6.867840pt;}
._7{width:7.824000pt;}
._8{width:8.868480pt;}
._9{width:10.320000pt;}
._3{width:12.915840pt;}
._e{width:13.848960pt;}
._6{width:15.488000pt;}
._2b{width:16.387840pt;}
._14{width:17.280000pt;}
._21{width:18.336000pt;}
._15{width:19.384320pt;}
._11{width:20.547840pt;}
._27{width:21.456000pt;}
._1d{width:22.416000pt;}
._1c{width:23.571840pt;}
._1b{width:24.480000pt;}
._1f{width:25.440000pt;}
._16{width:26.976000pt;}
._1e{width:28.744320pt;}
._28{width:30.240000pt;}
._f{width:31.344000pt;}
._10{width:32.334507pt;}
._22{width:33.298987pt;}
._29{width:34.272000pt;}
._2c{width:35.220480pt;}
._20{width:36.448000pt;}
._2a{width:37.860480pt;}
._17{width:39.744000pt;}
._18{width:40.848000pt;}
._25{width:41.780480pt;}
._19{width:43.584000pt;}
._1a{width:44.580480pt;}
._13{width:47.808000pt;}
._23{width:49.248000pt;}
._24{width:50.152320pt;}
._26{width:52.320000pt;}
._36{width:53.971840pt;}
._35{width:54.864000pt;}
._37{width:58.224000pt;}
._31{width:61.299840pt;}
._30{width:62.208000pt;}
._32{width:104.112000pt;}
._4{width:110.691840pt;}
._33{width:151.440000pt;}
._34{width:152.352000pt;}
._2e{width:302.010667pt;}
._2f{width:309.226667pt;}
._2d{width:314.170667pt;}
._2{width:347.701120pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:3.040000pt;}
.y128{bottom:3.200000pt;}
.yf8{bottom:3.226667pt;}
.y111{bottom:3.520000pt;}
.y10e{bottom:3.680000pt;}
.y168{bottom:4.640000pt;}
.y148{bottom:4.946667pt;}
.y2c{bottom:4.960000pt;}
.y147{bottom:4.986667pt;}
.y152{bottom:5.106667pt;}
.y15a{bottom:5.120000pt;}
.y184{bottom:5.266667pt;}
.y141{bottom:5.280000pt;}
.y142{bottom:5.920000pt;}
.y114{bottom:14.720000pt;}
.y115{bottom:15.040000pt;}
.y2e{bottom:20.960000pt;}
.y14a{bottom:21.426667pt;}
.y158{bottom:21.440000pt;}
.y144{bottom:21.466667pt;}
.y2b{bottom:28.800000pt;}
.y2a{bottom:44.640000pt;}
.y4b{bottom:52.000000pt;}
.y4{bottom:68.320000pt;}
.y29{bottom:68.506667pt;}
.y4a{bottom:68.640000pt;}
.y28{bottom:84.506667pt;}
.y15e{bottom:84.800000pt;}
.y1b5{bottom:84.960000pt;}
.yda{bottom:85.920000pt;}
.yb4{bottom:86.080000pt;}
.y10c{bottom:87.040000pt;}
.y199{bottom:88.800000pt;}
.y194{bottom:91.360000pt;}
.y160{bottom:92.800000pt;}
.y6{bottom:93.440000pt;}
.y84{bottom:96.640000pt;}
.y46{bottom:98.080000pt;}
.y15d{bottom:98.560000pt;}
.y27{bottom:100.346667pt;}
.yd9{bottom:101.760000pt;}
.yb3{bottom:101.920000pt;}
.y107{bottom:104.640000pt;}
.y1b4{bottom:106.080000pt;}
.y15f{bottom:106.560000pt;}
.y193{bottom:107.200000pt;}
.y207{bottom:109.440000pt;}
.yf0{bottom:109.760000pt;}
.y83{bottom:112.640000pt;}
.y45{bottom:114.080000pt;}
.y1ea{bottom:114.880000pt;}
.y26{bottom:116.186667pt;}
.yd8{bottom:117.600000pt;}
.yb2{bottom:117.760000pt;}
.y15c{bottom:119.200000pt;}
.y106{bottom:120.480000pt;}
.y1ab{bottom:120.640000pt;}
.y192{bottom:123.040000pt;}
.y206{bottom:125.280000pt;}
.yef{bottom:125.600000pt;}
.y1b3{bottom:126.080000pt;}
.y157{bottom:126.880000pt;}
.y82{bottom:128.480000pt;}
.y44{bottom:129.920000pt;}
.y1e9{bottom:130.720000pt;}
.yd7{bottom:133.440000pt;}
.yb1{bottom:133.600000pt;}
.y1aa{bottom:136.480000pt;}
.y191{bottom:139.040000pt;}
.y25{bottom:140.026667pt;}
.yee{bottom:141.440000pt;}
.y1b2{bottom:141.920000pt;}
.y15b{bottom:143.360000pt;}
.y81{bottom:144.320000pt;}
.y43{bottom:145.760000pt;}
.y1e8{bottom:146.560000pt;}
.yd6{bottom:149.280000pt;}
.yb0{bottom:149.440000pt;}
.y1a9{bottom:152.320000pt;}
.y190{bottom:154.880000pt;}
.y24{bottom:155.866667pt;}
.yed{bottom:157.280000pt;}
.y1b1{bottom:157.760000pt;}
.y159{bottom:159.840000pt;}
.y105{bottom:160.160000pt;}
.y198{bottom:160.320000pt;}
.y42{bottom:161.600000pt;}
.y1e7{bottom:162.560000pt;}
.y205{bottom:165.120000pt;}
.yaf{bottom:165.280000pt;}
.y80{bottom:167.840000pt;}
.y1a8{bottom:168.160000pt;}
.y18f{bottom:170.720000pt;}
.y23{bottom:171.866667pt;}
.yec{bottom:173.280000pt;}
.y1b0{bottom:173.600000pt;}
.y104{bottom:176.000000pt;}
.y197{bottom:176.160000pt;}
.y154{bottom:176.480000pt;}
.y41{bottom:177.440000pt;}
.y204{bottom:180.960000pt;}
.y1a7{bottom:184.026667pt;}
.y16{bottom:185.626667pt;}
.y1e6{bottom:186.426667pt;}
.y22{bottom:187.706667pt;}
.yd5{bottom:189.146667pt;}
.yae{bottom:189.306667pt;}
.y1af{bottom:189.466667pt;}
.y103{bottom:192.026667pt;}
.y156{bottom:193.000000pt;}
.y7f{bottom:193.306667pt;}
.y40{bottom:193.466667pt;}
.y18e{bottom:195.866667pt;}
.y203{bottom:196.826667pt;}
.y10b{bottom:199.706667pt;}
.y1a6{bottom:200.026667pt;}
.y1e5{bottom:202.266667pt;}
.y21{bottom:203.546667pt;}
.yd4{bottom:204.986667pt;}
.yad{bottom:205.146667pt;}
.y1ae{bottom:205.306667pt;}
.y102{bottom:207.866667pt;}
.y3f{bottom:209.306667pt;}
.y15{bottom:209.466667pt;}
.y155{bottom:209.480000pt;}
.y1e4{bottom:218.106667pt;}
.y20{bottom:219.386667pt;}
.y202{bottom:220.666667pt;}
.yd3{bottom:220.826667pt;}
.yac{bottom:220.986667pt;}
.y7e{bottom:221.306667pt;}
.y18d{bottom:223.706667pt;}
.y3e{bottom:225.146667pt;}
.y150{bottom:226.120000pt;}
.y101{bottom:231.706667pt;}
.y14{bottom:233.306667pt;}
.y1e3{bottom:233.946667pt;}
.y1f{bottom:235.226667pt;}
.y201{bottom:236.506667pt;}
.yd2{bottom:236.666667pt;}
.yab{bottom:236.826667pt;}
.y7d{bottom:237.146667pt;}
.y18c{bottom:239.706667pt;}
.y3d{bottom:240.986667pt;}
.y153{bottom:242.600000pt;}
.y100{bottom:247.546667pt;}
.yd1{bottom:252.506667pt;}
.yaa{bottom:252.666667pt;}
.y7c{bottom:252.986667pt;}
.y18b{bottom:255.546667pt;}
.y13{bottom:256.826667pt;}
.y1e2{bottom:257.946667pt;}
.y1e{bottom:259.066667pt;}
.y151{bottom:259.080000pt;}
.yff{bottom:263.386667pt;}
.y196{bottom:263.546667pt;}
.y200{bottom:268.346667pt;}
.ya9{bottom:268.506667pt;}
.y7b{bottom:268.826667pt;}
.y18a{bottom:271.386667pt;}
.y47{bottom:272.666667pt;}
.y1e1{bottom:273.786667pt;}
.y1d{bottom:275.106667pt;}
.y14d{bottom:275.720000pt;}
.yfe{bottom:279.226667pt;}
.y195{bottom:279.386667pt;}
.y3c{bottom:280.666667pt;}
.y12{bottom:281.186667pt;}
.yeb{bottom:284.346667pt;}
.ya8{bottom:284.506667pt;}
.y7a{bottom:284.666667pt;}
.y189{bottom:287.226667pt;}
.y1c{bottom:290.946667pt;}
.y1ff{bottom:292.186667pt;}
.y14f{bottom:292.200000pt;}
.yd0{bottom:292.346667pt;}
.yfd{bottom:295.226667pt;}
.y3b{bottom:296.666667pt;}
.y1e0{bottom:297.626667pt;}
.yea{bottom:300.186667pt;}
.y79{bottom:300.506667pt;}
.y188{bottom:303.066667pt;}
.y11{bottom:305.026667pt;}
.y1b{bottom:306.786667pt;}
.y1fe{bottom:308.026667pt;}
.ycf{bottom:308.186667pt;}
.ya7{bottom:308.346667pt;}
.y14e{bottom:308.840000pt;}
.yfc{bottom:311.066667pt;}
.y3a{bottom:312.506667pt;}
.y1df{bottom:313.466667pt;}
.y78{bottom:316.506667pt;}
.y10{bottom:320.866667pt;}
.y1a{bottom:322.626667pt;}
.y1fd{bottom:323.866667pt;}
.yce{bottom:324.026667pt;}
.ya6{bottom:324.186667pt;}
.y149{bottom:325.320000pt;}
.y187{bottom:326.586667pt;}
.yfb{bottom:326.906667pt;}
.y39{bottom:328.346667pt;}
.y1de{bottom:329.306667pt;}
.y10a{bottom:332.346667pt;}
.y19{bottom:338.466667pt;}
.ycd{bottom:339.866667pt;}
.ya5{bottom:340.026667pt;}
.y77{bottom:340.346667pt;}
.y186{bottom:341.626667pt;}
.y14c{bottom:341.800000pt;}
.y38{bottom:344.186667pt;}
.y1dd{bottom:345.146667pt;}
.y109{bottom:348.186667pt;}
.yf{bottom:349.186667pt;}
.yfa{bottom:352.026667pt;}
.y18{bottom:354.306667pt;}
.ya4{bottom:355.866667pt;}
.y76{bottom:356.186667pt;}
.y185{bottom:356.200000pt;}
.y14b{bottom:358.440000pt;}
.y37{bottom:360.026667pt;}
.y1fc{bottom:363.706667pt;}
.y108{bottom:364.026667pt;}
.y1dc{bottom:369.146667pt;}
.ye{bottom:369.986667pt;}
.y17{bottom:370.306667pt;}
.ycc{bottom:371.706667pt;}
.ya3{bottom:371.866667pt;}
.y75{bottom:372.026667pt;}
.y143{bottom:374.920000pt;}
.y36{bottom:376.026667pt;}
.yf9{bottom:379.066667pt;}
.y1fb{bottom:379.546667pt;}
.y1a5{bottom:379.866667pt;}
.y183{bottom:381.000000pt;}
.y1db{bottom:384.986667pt;}
.ycb{bottom:387.546667pt;}
.ya2{bottom:387.706667pt;}
.y74{bottom:387.866667pt;}
.y146{bottom:391.400000pt;}
.yf6{bottom:391.560000pt;}
.y35{bottom:391.906667pt;}
.y1fa{bottom:395.426667pt;}
.y1a4{bottom:395.906667pt;}
.y1da{bottom:400.866667pt;}
.ye9{bottom:403.426667pt;}
.ya1{bottom:403.586667pt;}
.y73{bottom:403.906667pt;}
.y182{bottom:407.266667pt;}
.y34{bottom:407.746667pt;}
.y145{bottom:408.066667pt;}
.yca{bottom:411.106667pt;}
.y1a3{bottom:411.746667pt;}
.y1d9{bottom:416.706667pt;}
.ye8{bottom:419.266667pt;}
.y72{bottom:419.746667pt;}
.y33{bottom:423.586667pt;}
.y140{bottom:425.826667pt;}
.ya0{bottom:427.426667pt;}
.y1ad{bottom:427.586667pt;}
.ye7{bottom:435.106667pt;}
.yc9{bottom:435.266667pt;}
.y71{bottom:435.586667pt;}
.y32{bottom:439.426667pt;}
.y1d8{bottom:440.546667pt;}
.y9f{bottom:443.266667pt;}
.yc8{bottom:451.106667pt;}
.y70{bottom:451.426667pt;}
.y31{bottom:455.266667pt;}
.y1d7{bottom:456.546667pt;}
.y13f{bottom:457.506667pt;}
.ye6{bottom:458.786667pt;}
.y9e{bottom:459.106667pt;}
.y1f9{bottom:466.946667pt;}
.y6f{bottom:467.266667pt;}
.y1d6{bottom:472.386667pt;}
.y30{bottom:474.626667pt;}
.y9d{bottom:475.106667pt;}
.y181{bottom:476.226667pt;}
.y2f{bottom:479.426667pt;}
.y137{bottom:481.666667pt;}
.ye5{bottom:482.946667pt;}
.y6e{bottom:483.106667pt;}
.y1f8{bottom:490.786667pt;}
.y9c{bottom:490.946667pt;}
.y17e{bottom:492.066667pt;}
.y1d5{bottom:496.226667pt;}
.y136{bottom:497.666667pt;}
.ye4{bottom:498.786667pt;}
.y1a2{bottom:499.106667pt;}
.y2d{bottom:502.786667pt;}
.y1f7{bottom:506.626667pt;}
.y9b{bottom:506.786667pt;}
.y6d{bottom:507.106667pt;}
.y17d{bottom:507.906667pt;}
.y1d4{bottom:512.066667pt;}
.y135{bottom:513.506667pt;}
.y1a1{bottom:514.946667pt;}
.y1f6{bottom:522.466667pt;}
.y9a{bottom:522.626667pt;}
.y6c{bottom:522.946667pt;}
.y17c{bottom:523.746667pt;}
.y1d3{bottom:527.906667pt;}
.yf7{bottom:529.053333pt;}
.y1a0{bottom:530.786667pt;}
.y134{bottom:537.026667pt;}
.yc7{bottom:538.466667pt;}
.y6b{bottom:538.786667pt;}
.y17b{bottom:539.586667pt;}
.yd{bottom:543.266667pt;}
.y1d2{bottom:543.746667pt;}
.y99{bottom:546.146667pt;}
.y1f5{bottom:546.466667pt;}
.y19f{bottom:546.626667pt;}
.y13e{bottom:553.346667pt;}
.yc6{bottom:554.466667pt;}
.y6a{bottom:554.626667pt;}
.y17a{bottom:555.586667pt;}
.y133{bottom:561.186667pt;}
.y1f4{bottom:562.306667pt;}
.y19e{bottom:562.466667pt;}
.y1d1{bottom:567.746667pt;}
.y13d{bottom:569.186667pt;}
.ye3{bottom:570.306667pt;}
.y69{bottom:570.466667pt;}
.y179{bottom:571.426667pt;}
.y216{bottom:575.106667pt;}
.y132{bottom:577.026667pt;}
.y1f3{bottom:578.146667pt;}
.yc5{bottom:578.306667pt;}
.y1ac{bottom:578.466667pt;}
.y1d0{bottom:583.586667pt;}
.y13c{bottom:585.026667pt;}
.ye2{bottom:586.146667pt;}
.y98{bottom:586.306667pt;}
.y68{bottom:586.466667pt;}
.y178{bottom:587.266667pt;}
.y131{bottom:592.866667pt;}
.y1f2{bottom:593.986667pt;}
.yc4{bottom:594.146667pt;}
.y180{bottom:595.266667pt;}
.y1cf{bottom:599.426667pt;}
.y13b{bottom:600.893333pt;}
.y212{bottom:601.853333pt;}
.ye1{bottom:602.013333pt;}
.y67{bottom:602.333333pt;}
.y130{bottom:608.893333pt;}
.yc3{bottom:610.013333pt;}
.y97{bottom:610.173333pt;}
.y177{bottom:610.813333pt;}
.y17f{bottom:611.133333pt;}
.y1ce{bottom:615.293333pt;}
.y13a{bottom:616.893333pt;}
.y211{bottom:617.693333pt;}
.y1f1{bottom:617.853333pt;}
.y66{bottom:618.173333pt;}
.y12f{bottom:624.733333pt;}
.yc2{bottom:625.853333pt;}
.y96{bottom:626.013333pt;}
.y1cd{bottom:631.133333pt;}
.y139{bottom:632.733333pt;}
.y1f0{bottom:633.693333pt;}
.y176{bottom:633.853333pt;}
.y65{bottom:634.013333pt;}
.y12e{bottom:640.573333pt;}
.yc1{bottom:641.693333pt;}
.y95{bottom:641.853333pt;}
.y138{bottom:648.573333pt;}
.y175{bottom:649.213333pt;}
.y1ef{bottom:649.693333pt;}
.y64{bottom:649.853333pt;}
.y1cc{bottom:655.133333pt;}
.y210{bottom:657.533333pt;}
.y94{bottom:657.693333pt;}
.y12d{bottom:659.453333pt;}
.y174{bottom:663.133333pt;}
.y1ee{bottom:665.533333pt;}
.y63{bottom:665.693333pt;}
.y1cb{bottom:670.973333pt;}
.y20f{bottom:673.373333pt;}
.yc0{bottom:673.533333pt;}
.y93{bottom:673.693333pt;}
.y173{bottom:674.653333pt;}
.y19d{bottom:681.693333pt;}
.y1ca{bottom:686.813333pt;}
.y12c{bottom:687.453333pt;}
.ye0{bottom:689.373333pt;}
.y92{bottom:689.533333pt;}
.y62{bottom:689.693333pt;}
.y20e{bottom:697.213333pt;}
.ybf{bottom:697.373333pt;}
.y19c{bottom:697.533333pt;}
.y172{bottom:699.133333pt;}
.y1c9{bottom:702.653333pt;}
.y12b{bottom:703.453333pt;}
.ydf{bottom:705.213333pt;}
.y91{bottom:705.373333pt;}
.y61{bottom:705.533333pt;}
.y20d{bottom:713.053333pt;}
.ybe{bottom:713.213333pt;}
.y19b{bottom:713.373333pt;}
.y12a{bottom:719.453333pt;}
.y215{bottom:721.053333pt;}
.y60{bottom:721.373333pt;}
.y171{bottom:723.613333pt;}
.y1c8{bottom:727.773333pt;}
.ybd{bottom:729.053333pt;}
.y90{bottom:729.213333pt;}
.y129{bottom:735.453333pt;}
.y214{bottom:737.053333pt;}
.y5f{bottom:737.213333pt;}
.y8f{bottom:745.053333pt;}
.y170{bottom:748.253333pt;}
.y127{bottom:751.453333pt;}
.y20c{bottom:752.893333pt;}
.y5e{bottom:753.053333pt;}
.y1c7{bottom:755.613333pt;}
.ybc{bottom:760.893333pt;}
.y8e{bottom:761.053333pt;}
.y125{bottom:768.733333pt;}
.y5d{bottom:769.053333pt;}
.y1c6{bottom:771.613333pt;}
.y16f{bottom:772.733333pt;}
.ybb{bottom:776.733333pt;}
.y8d{bottom:776.893333pt;}
.y20b{bottom:784.573333pt;}
.y5c{bottom:784.893333pt;}
.y1c5{bottom:787.453333pt;}
.yde{bottom:792.573333pt;}
.y8c{bottom:792.733333pt;}
.y124{bottom:796.573333pt;}
.y16e{bottom:797.213333pt;}
.y20a{bottom:800.413333pt;}
.yba{bottom:800.573333pt;}
.y5b{bottom:800.733333pt;}
.ydd{bottom:808.413333pt;}
.y8b{bottom:808.573333pt;}
.y1c4{bottom:811.013333pt;}
.yb9{bottom:816.453333pt;}
.y5a{bottom:816.613333pt;}
.y11c{bottom:820.933333pt;}
.y209{bottom:824.293333pt;}
.y16d{bottom:826.533333pt;}
.y123{bottom:828.933333pt;}
.yb8{bottom:832.293333pt;}
.y59{bottom:832.453333pt;}
.y1c3{bottom:835.173333pt;}
.y11b{bottom:836.773333pt;}
.y208{bottom:840.293333pt;}
.y122{bottom:844.773333pt;}
.y58{bottom:848.293333pt;}
.y16b{bottom:850.693333pt;}
.y1c2{bottom:851.013333pt;}
.y11a{bottom:852.613333pt;}
.y121{bottom:860.613333pt;}
.yb7{bottom:864.133333pt;}
.y57{bottom:864.293333pt;}
.y16c{bottom:866.533333pt;}
.y1c1{bottom:867.013333pt;}
.y119{bottom:868.453333pt;}
.y19a{bottom:872.293333pt;}
.y120{bottom:876.453333pt;}
.yb6{bottom:879.973333pt;}
.y8a{bottom:880.133333pt;}
.y16a{bottom:881.253333pt;}
.y1c0{bottom:882.853333pt;}
.y118{bottom:884.293333pt;}
.y1ed{bottom:887.973333pt;}
.y56{bottom:888.133333pt;}
.y11f{bottom:892.293333pt;}
.ydc{bottom:895.813333pt;}
.y89{bottom:895.973333pt;}
.y1bf{bottom:898.693333pt;}
.y117{bottom:900.293333pt;}
.yb5{bottom:903.493333pt;}
.y1ec{bottom:903.813333pt;}
.y55{bottom:903.973333pt;}
.y11e{bottom:908.293333pt;}
.y88{bottom:911.813333pt;}
.y1be{bottom:914.533333pt;}
.y116{bottom:916.133333pt;}
.ydb{bottom:919.333333pt;}
.y1eb{bottom:919.653333pt;}
.y54{bottom:919.813333pt;}
.y169{bottom:920.613333pt;}
.y11d{bottom:924.133333pt;}
.y87{bottom:927.653333pt;}
.y1bd{bottom:930.373333pt;}
.y113{bottom:935.013333pt;}
.y53{bottom:935.653333pt;}
.yc{bottom:938.053333pt;}
.yf5{bottom:939.013333pt;}
.y86{bottom:943.653333pt;}
.y1bc{bottom:946.213333pt;}
.y167{bottom:946.853333pt;}
.y213{bottom:951.493333pt;}
.y52{bottom:951.653333pt;}
.yf4{bottom:957.893333pt;}
.y85{bottom:959.493333pt;}
.yb{bottom:961.573333pt;}
.y1bb{bottom:962.213333pt;}
.y51{bottom:967.493333pt;}
.y112{bottom:971.013333pt;}
.yf3{bottom:975.333333pt;}
.y1ba{bottom:978.053333pt;}
.y50{bottom:983.333333pt;}
.ya{bottom:984.933333pt;}
.y110{bottom:986.533333pt;}
.y5{bottom:989.280000pt;}
.yf2{bottom:991.173333pt;}
.y1b9{bottom:993.893333pt;}
.y4f{bottom:999.173333pt;}
.y10f{bottom:1001.893333pt;}
.y166{bottom:1005.413333pt;}
.y9{bottom:1006.533333pt;}
.yf1{bottom:1007.013333pt;}
.y1b8{bottom:1009.733333pt;}
.y163{bottom:1011.173333pt;}
.y4e{bottom:1015.013333pt;}
.y10d{bottom:1018.720000pt;}
.y165{bottom:1019.200000pt;}
.y162{bottom:1024.960000pt;}
.y1b7{bottom:1025.600000pt;}
.y4d{bottom:1030.880000pt;}
.y164{bottom:1032.960000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y1b6{bottom:1042.880000pt;}
.y161{bottom:1046.560000pt;}
.y4c{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y49{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y48{bottom:1064.960000pt;}
.h13{height:5.160000pt;}
.h1d{height:14.706667pt;}
.h1c{height:14.866667pt;}
.h1a{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h15{height:15.703125pt;}
.h24{height:15.826667pt;}
.h2d{height:15.838667pt;}
.h2c{height:15.840000pt;}
.h25{height:15.858667pt;}
.h29{height:15.872000pt;}
.h27{height:15.986667pt;}
.h2b{height:16.000000pt;}
.h22{height:17.106667pt;}
.h2e{height:18.204375pt;}
.h2f{height:23.826667pt;}
.h33{height:23.840000pt;}
.h34{height:24.000000pt;}
.h32{height:24.020000pt;}
.h30{height:24.146667pt;}
.h35{height:24.178667pt;}
.h21{height:25.920000pt;}
.h19{height:33.147812pt;}
.h1e{height:33.906667pt;}
.hf{height:34.710938pt;}
.h1b{height:35.975313pt;}
.h11{height:39.826667pt;}
.h16{height:39.876250pt;}
.h5{height:42.084375pt;}
.h14{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h10{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h26{height:48.946667pt;}
.h2a{height:48.958667pt;}
.h23{height:48.978667pt;}
.h28{height:48.992000pt;}
.h31{height:49.336436pt;}
.h2{height:52.134375pt;}
.hb{height:52.526250pt;}
.ha{height:53.370000pt;}
.h20{height:53.535000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:62.812500pt;}
.h12{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:389.173333pt;}
.h17{height:543.453333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.we{width:36.670667pt;}
.w1b{width:47.390667pt;}
.wc{width:61.310667pt;}
.w13{width:61.630667pt;}
.w7{width:65.630667pt;}
.w1a{width:69.786667pt;}
.w22{width:84.306667pt;}
.w19{width:95.666667pt;}
.w25{width:101.600000pt;}
.w16{width:103.680000pt;}
.w17{width:106.432000pt;}
.w18{width:112.498667pt;}
.w20{width:119.858667pt;}
.w1c{width:129.910667pt;}
.w23{width:141.133333pt;}
.w21{width:141.306667pt;}
.w1e{width:145.133333pt;}
.w8{width:155.217333pt;}
.w26{width:155.386667pt;}
.w1f{width:160.026667pt;}
.w10{width:185.306667pt;}
.w24{width:185.345333pt;}
.w3{width:186.785333pt;}
.w9{width:191.226667pt;}
.wd{width:192.017333pt;}
.w14{width:192.817333pt;}
.w1d{width:205.173333pt;}
.w15{width:208.705333pt;}
.wb{width:221.665333pt;}
.w11{width:227.733333pt;}
.wf{width:238.417333pt;}
.w27{width:245.813333pt;}
.wa{width:275.733333pt;}
.w12{width:275.745333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w6{width:704.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.198667pt;}
.x3{left:10.746667pt;}
.x23{left:15.038667pt;}
.x2e{left:19.026667pt;}
.x2c{left:21.920000pt;}
.x31{left:24.320000pt;}
.x2a{left:27.840000pt;}
.x3b{left:31.026667pt;}
.x36{left:32.666667pt;}
.x34{left:34.080000pt;}
.x4b{left:37.280000pt;}
.x32{left:39.706667pt;}
.x1e{left:40.801333pt;}
.x33{left:42.706667pt;}
.x12{left:44.484000pt;}
.x35{left:45.600000pt;}
.x28{left:46.881333pt;}
.x1{left:48.000000pt;}
.x3d{left:50.080000pt;}
.x38{left:51.841333pt;}
.x48{left:53.626667pt;}
.x6{left:54.880000pt;}
.x3e{left:62.066667pt;}
.xa{left:64.801333pt;}
.x4c{left:67.226667pt;}
.xd{left:72.000000pt;}
.x21{left:81.946667pt;}
.x16{left:84.672000pt;}
.x15{left:85.792000pt;}
.x25{left:89.306667pt;}
.x4a{left:94.266667pt;}
.x4e{left:96.032000pt;}
.x26{left:97.946667pt;}
.x24{left:99.025333pt;}
.x1f{left:102.121333pt;}
.x1b{left:104.666667pt;}
.x18{left:114.441333pt;}
.x1c{left:117.786667pt;}
.x1d{left:127.546667pt;}
.x40{left:152.680000pt;}
.x7{left:184.986667pt;}
.x44{left:208.666667pt;}
.x45{left:223.706667pt;}
.x39{left:230.440000pt;}
.x46{left:237.986667pt;}
.xc{left:252.226667pt;}
.x29{left:256.226667pt;}
.x27{left:257.186667pt;}
.x17{left:260.386667pt;}
.x9{left:266.466667pt;}
.x19{left:270.466667pt;}
.x41{left:273.186667pt;}
.x14{left:287.262667pt;}
.x3f{left:313.986667pt;}
.x20{left:324.386667pt;}
.x37{left:336.386667pt;}
.x47{left:340.226667pt;}
.x8{left:345.026667pt;}
.x2b{left:360.546667pt;}
.x11{left:389.506667pt;}
.x42{left:415.146667pt;}
.xf{left:420.893333pt;}
.x3a{left:436.266667pt;}
.xe{left:444.893333pt;}
.x4d{left:457.533333pt;}
.x1a{left:462.506667pt;}
.x2d{left:467.626667pt;}
.x4f{left:468.893333pt;}
.x49{left:496.266667pt;}
.x43{left:500.106667pt;}
.x22{left:510.506667pt;}
.x2f{left:580.933333pt;}
.x3c{left:582.053333pt;}
.x10{left:594.213333pt;}
.x13{left:663.196000pt;}
.x30{left:677.253333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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