
    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_1712e3ad38ef2f0401df5a7d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4159ad7f737fe9fdaafbada9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c16ff25575d5b06bf119f345.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f7319055b9367760d536621.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_b75d645216a016cf03c88043.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_706c65a49a5afd088cce5db9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v4{vertical-align:-69.240000px;}
.v5{vertical-align:-66.240000px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls30{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.223800px;}
.ls32{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.181200px;}
.ls2a{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.008640px;}
.ls33{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.033840px;}
.ls22{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls29{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.181200px;}
.ls28{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.206640px;}
.ls25{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.223800px;}
.ls7{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.460080px;}
.ls3{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.620000px;}
.ls31{letter-spacing:3.240000px;}
.ls2e{letter-spacing:5.340000px;}
.ls2c{letter-spacing:5.940000px;}
.ls1d{letter-spacing:8.100000px;}
.ls2d{letter-spacing:9.540000px;}
.ls24{letter-spacing:11.700000px;}
.ls1b{letter-spacing:18.156000px;}
.ls18{letter-spacing:31.116000px;}
.ls21{letter-spacing:31.140000px;}
.ls26{letter-spacing:38.340000px;}
.ls20{letter-spacing:51.300000px;}
.ls4{letter-spacing:66.162720px;}
.lse{letter-spacing:128.340000px;}
.lsf{letter-spacing:200.316000px;}
.lsd{letter-spacing:280.980000px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.146400px;}
.ws12{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.626000px;}
.ws1d{word-spacing:-13.518000px;}
.ws15{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.284000px;}
.wsb{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.283800px;}
.ws1b{word-spacing:-12.240000px;}
.wsf{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.878800px;}
.wse{word-spacing:-11.836200px;}
.ws19{word-spacing:-11.790600px;}
.ws1a{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.609400px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-7.020000px;}
._29{margin-left:-4.222800px;}
._19{margin-left:-3.191040px;}
._c{margin-left:-2.164320px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._11{width:3.942000px;}
._10{width:5.292000px;}
._6{width:7.236000px;}
._5{width:8.370000px;}
._7{width:9.450000px;}
._15{width:10.577520px;}
._b{width:12.249360px;}
._18{width:13.460400px;}
._12{width:14.791680px;}
._9{width:16.416000px;}
._8{width:17.766000px;}
._14{width:19.769520px;}
._13{width:21.095280px;}
._1f{width:22.230720px;}
._1e{width:23.306400px;}
._20{width:24.472080px;}
._1d{width:25.629120px;}
._f{width:27.378000px;}
._2d{width:29.427840px;}
._21{width:30.836160px;}
._22{width:32.031360px;}
._23{width:34.740000px;}
._4{width:36.180000px;}
._a{width:37.206000px;}
._25{width:39.749760px;}
._26{width:40.752720px;}
._d{width:42.390000px;}
._e{width:43.499280px;}
._2c{width:56.893680px;}
._30{width:58.721520px;}
._24{width:59.828160px;}
._2b{width:61.392000px;}
._2a{width:62.874000px;}
._2e{width:63.881280px;}
._2f{width:65.040480px;}
._27{width:69.102000px;}
._28{width:70.218000px;}
._16{width:509.086560px;}
._1b{width:736.380000px;}
._17{width:865.686720px;}
._1c{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:0.900000px;}
.ya4{bottom:2.520000px;}
.y1f5{bottom:2.874000px;}
.y32{bottom:2.880000px;}
.y1e6{bottom:3.060000px;}
.y15{bottom:3.240000px;}
.y14b{bottom:3.285000px;}
.y144{bottom:3.780000px;}
.y14c{bottom:3.825000px;}
.y155{bottom:4.680000px;}
.y3b{bottom:9.000000px;}
.y41{bottom:12.240000px;}
.ye6{bottom:16.200000px;}
.yf2{bottom:16.380000px;}
.y31{bottom:18.360000px;}
.y146{bottom:20.340000px;}
.y1a{bottom:20.520000px;}
.y147{bottom:20.880000px;}
.y150{bottom:21.060000px;}
.y40{bottom:29.520000px;}
.ye5{bottom:30.060000px;}
.y108{bottom:30.240000px;}
.y30{bottom:34.020000px;}
.y19{bottom:37.800000px;}
.y3f{bottom:46.800000px;}
.y1f7{bottom:48.780000px;}
.y2f{bottom:49.500000px;}
.y18{bottom:54.900000px;}
.y154{bottom:55.080000px;}
.y207{bottom:57.960000px;}
.y3e{bottom:64.080000px;}
.y1dd{bottom:64.260000px;}
.y1ee{bottom:64.485000px;}
.y2e{bottom:64.980000px;}
.y3a{bottom:66.060000px;}
.y153{bottom:72.180000px;}
.y206{bottom:73.440000px;}
.y1dc{bottom:79.740000px;}
.y1f3{bottom:79.920000px;}
.y1ed{bottom:79.965000px;}
.y2d{bottom:80.460000px;}
.y17{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y205{bottom:89.100000px;}
.y3d{bottom:90.225000px;}
.y1e4{bottom:95.220000px;}
.y1db{bottom:95.400000px;}
.y1fe{bottom:95.430000px;}
.y1ec{bottom:95.445000px;}
.y2c{bottom:96.120000px;}
.y204{bottom:104.580000px;}
.y1da{bottom:110.880000px;}
.y1e3{bottom:110.910000px;}
.y1eb{bottom:110.925000px;}
.y2b{bottom:111.600000px;}
.y17b{bottom:113.940000px;}
.y203{bottom:120.060000px;}
.ye1{bottom:123.660000px;}
.y1c5{bottom:124.020000px;}
.y4b{bottom:125.820000px;}
.y1d9{bottom:126.360000px;}
.y1e2{bottom:126.390000px;}
.y1ea{bottom:126.585000px;}
.y2a{bottom:127.080000px;}
.y17a{bottom:127.620000px;}
.y13b{bottom:128.160000px;}
.y85{bottom:128.880000px;}
.y202{bottom:135.540000px;}
.y1c4{bottom:137.736000px;}
.ye0{bottom:140.976000px;}
.y179{bottom:141.516000px;}
.y1d8{bottom:141.840000px;}
.y1e1{bottom:141.870000px;}
.y1f2{bottom:142.020000px;}
.y1fd{bottom:142.050000px;}
.y1e9{bottom:142.065000px;}
.y29{bottom:142.590000px;}
.y4a{bottom:143.136000px;}
.y120{bottom:144.396000px;}
.y13a{bottom:145.476000px;}
.y84{bottom:146.196000px;}
.y1f4{bottom:148.896000px;}
.y201{bottom:151.020000px;}
.y1c3{bottom:151.590000px;}
.y178{bottom:155.370000px;}
.y1d7{bottom:157.320000px;}
.y1e0{bottom:157.350000px;}
.y1f1{bottom:157.500000px;}
.y1fc{bottom:157.530000px;}
.y1e8{bottom:157.545000px;}
.y28{bottom:158.250000px;}
.y49{bottom:160.410000px;}
.y11f{bottom:161.670000px;}
.y139{bottom:162.750000px;}
.y83{bottom:163.470000px;}
.y1f0{bottom:164.370000px;}
.y1c2{bottom:165.450000px;}
.y177{bottom:169.050000px;}
.y27{bottom:173.730000px;}
.ydf{bottom:175.350000px;}
.y48{bottom:177.690000px;}
.y11e{bottom:178.950000px;}
.y1c1{bottom:179.130000px;}
.y138{bottom:179.850000px;}
.y82{bottom:180.750000px;}
.y39{bottom:182.880000px;}
.y176{bottom:182.910000px;}
.y26{bottom:189.210000px;}
.yde{bottom:192.630000px;}
.y1c0{bottom:192.990000px;}
.y47{bottom:194.970000px;}
.y11d{bottom:196.050000px;}
.y175{bottom:196.770000px;}
.y137{bottom:197.130000px;}
.y81{bottom:197.850000px;}
.y38{bottom:200.160000px;}
.y25{bottom:204.690000px;}
.y1bf{bottom:206.850000px;}
.ydd{bottom:209.910000px;}
.y174{bottom:210.450000px;}
.y46{bottom:212.250000px;}
.y11c{bottom:213.330000px;}
.y136{bottom:214.410000px;}
.y80{bottom:215.130000px;}
.y37{bottom:217.440000px;}
.y24{bottom:220.350000px;}
.y1be{bottom:220.530000px;}
.y173{bottom:224.310000px;}
.ydc{bottom:227.190000px;}
.y45{bottom:229.350000px;}
.y11b{bottom:229.890000px;}
.y135{bottom:231.690000px;}
.y7f{bottom:232.410000px;}
.y1bd{bottom:234.390000px;}
.y36{bottom:234.570000px;}
.y23{bottom:235.830000px;}
.y172{bottom:238.170000px;}
.ydb{bottom:244.470000px;}
.y44{bottom:246.630000px;}
.y1bc{bottom:248.250000px;}
.y134{bottom:248.970000px;}
.y7e{bottom:249.690000px;}
.y22{bottom:251.310000px;}
.y35{bottom:251.850000px;}
.yda{bottom:261.570000px;}
.y11a{bottom:261.750000px;}
.y1bb{bottom:261.930000px;}
.y43{bottom:263.910000px;}
.y171{bottom:265.710000px;}
.y133{bottom:266.250000px;}
.y21{bottom:266.790000px;}
.y7d{bottom:266.970000px;}
.y34{bottom:269.130000px;}
.y1ba{bottom:275.790000px;}
.yd9{bottom:278.850000px;}
.y170{bottom:279.570000px;}
.y42{bottom:281.190000px;}
.y20{bottom:282.450000px;}
.y132{bottom:283.350000px;}
.y7c{bottom:284.250000px;}
.y1b9{bottom:289.650000px;}
.y16f{bottom:293.250000px;}
.y33{bottom:295.410000px;}
.yd8{bottom:296.130000px;}
.y3c{bottom:297.390000px;}
.y1f{bottom:297.930000px;}
.yb8{bottom:298.470000px;}
.y131{bottom:300.630000px;}
.y7b{bottom:301.350000px;}
.y1b8{bottom:303.330000px;}
.y16e{bottom:307.110000px;}
.y119{bottom:312.690000px;}
.y1e{bottom:313.410000px;}
.yb7{bottom:315.750000px;}
.y1b7{bottom:317.190000px;}
.y130{bottom:317.910000px;}
.y7a{bottom:318.630000px;}
.y16d{bottom:320.790000px;}
.y118{bottom:326.550000px;}
.yd7{bottom:330.690000px;}
.y1b6{bottom:331.050000px;}
.yb6{bottom:332.850000px;}
.y16c{bottom:334.650000px;}
.y12f{bottom:335.190000px;}
.y1ef{bottom:335.370000px;}
.y79{bottom:335.910000px;}
.y117{bottom:340.230000px;}
.y1b5{bottom:344.730000px;}
.yd6{bottom:347.970000px;}
.y16b{bottom:349.230000px;}
.yb5{bottom:350.130000px;}
.y1e7{bottom:350.850000px;}
.y12e{bottom:352.470000px;}
.y78{bottom:353.190000px;}
.y116{bottom:354.090000px;}
.y1b4{bottom:358.590000px;}
.yd5{bottom:365.070000px;}
.y16a{bottom:365.790000px;}
.yb4{bottom:367.410000px;}
.y115{bottom:367.950000px;}
.y12d{bottom:369.750000px;}
.y77{bottom:370.470000px;}
.y1b3{bottom:372.450000px;}
.y169{bottom:379.470000px;}
.y114{bottom:380.010000px;}
.yd4{bottom:382.350000px;}
.yb3{bottom:384.690000px;}
.y1b2{bottom:386.130000px;}
.y12c{bottom:386.850000px;}
.y209{bottom:387.030000px;}
.y76{bottom:387.795000px;}
.y113{bottom:393.735000px;}
.y168{bottom:394.095000px;}
.yd3{bottom:399.675000px;}
.y1b1{bottom:400.035000px;}
.y1c{bottom:400.350000px;}
.yb2{bottom:402.015000px;}
.y12b{bottom:404.175000px;}
.y208{bottom:404.355000px;}
.y75{bottom:404.895000px;}
.y112{bottom:407.595000px;}
.y1b{bottom:411.375000px;}
.y1b0{bottom:413.895000px;}
.yd2{bottom:416.955000px;}
.y200{bottom:418.395000px;}
.yb1{bottom:419.295000px;}
.y111{bottom:421.455000px;}
.y74{bottom:422.175000px;}
.y1af{bottom:427.575000px;}
.y167{bottom:428.655000px;}
.yd1{bottom:434.235000px;}
.y110{bottom:435.135000px;}
.yb0{bottom:436.395000px;}
.y12a{bottom:438.735000px;}
.y73{bottom:439.455000px;}
.y1ae{bottom:441.435000px;}
.y166{bottom:445.035000px;}
.y10f{bottom:448.995000px;}
.yd0{bottom:451.515000px;}
.yaf{bottom:453.675000px;}
.y1ad{bottom:455.295000px;}
.y129{bottom:456.015000px;}
.y72{bottom:456.735000px;}
.y165{bottom:458.895000px;}
.y10e{bottom:462.675000px;}
.ycf{bottom:468.615000px;}
.y1ac{bottom:468.975000px;}
.yae{bottom:470.955000px;}
.y128{bottom:473.115000px;}
.y164{bottom:473.475000px;}
.y71{bottom:474.015000px;}
.y10d{bottom:476.535000px;}
.y1ab{bottom:482.835000px;}
.yad{bottom:485.715000px;}
.yce{bottom:485.895000px;}
.y10c{bottom:490.395000px;}
.y163{bottom:490.755000px;}
.y70{bottom:491.115000px;}
.y1aa{bottom:496.695000px;}
.yac{bottom:499.575000px;}
.y1d{bottom:499.755000px;}
.ycd{bottom:503.175000px;}
.y10b{bottom:504.075000px;}
.y127{bottom:507.675000px;}
.y162{bottom:507.855000px;}
.y6f{bottom:508.395000px;}
.y1a9{bottom:510.375000px;}
.yab{bottom:513.255000px;}
.ycc{bottom:520.455000px;}
.y1e5{bottom:521.895000px;}
.y1a8{bottom:524.235000px;}
.y126{bottom:524.955000px;}
.y161{bottom:525.135000px;}
.y6e{bottom:525.675000px;}
.yaa{bottom:527.115000px;}
.y10a{bottom:531.795000px;}
.y1df{bottom:537.555000px;}
.ycb{bottom:537.735000px;}
.y1a7{bottom:538.095000px;}
.ya9{bottom:540.975000px;}
.y125{bottom:542.235000px;}
.y160{bottom:542.415000px;}
.y6d{bottom:542.955000px;}
.y1a6{bottom:551.775000px;}
.yca{bottom:554.295000px;}
.ya8{bottom:554.655000px;}
.y15f{bottom:558.975000px;}
.y124{bottom:559.515000px;}
.y107{bottom:560.055000px;}
.y6c{bottom:560.235000px;}
.y1a5{bottom:565.635000px;}
.yc9{bottom:567.975000px;}
.ya7{bottom:568.515000px;}
.y15e{bottom:572.835000px;}
.y123{bottom:576.615000px;}
.y6b{bottom:577.515000px;}
.y1a4{bottom:579.495000px;}
.yc8{bottom:581.835000px;}
.ya6{bottom:582.375000px;}
.y1ff{bottom:583.095000px;}
.y15d{bottom:587.235000px;}
.y109{bottom:587.775000px;}
.y1a3{bottom:593.175000px;}
.yc7{bottom:593.895000px;}
.y6a{bottom:594.615000px;}
.ya5{bottom:596.055000px;}
.y1fb{bottom:598.575000px;}
.y15c{bottom:604.515000px;}
.y1a2{bottom:607.035000px;}
.yc6{bottom:607.575000px;}
.ya3{bottom:610.635000px;}
.y122{bottom:611.175000px;}
.y69{bottom:611.895000px;}
.y1a1{bottom:620.895000px;}
.y15b{bottom:621.075000px;}
.yc5{bottom:621.435000px;}
.y106{bottom:621.975000px;}
.y121{bottom:628.455000px;}
.y68{bottom:629.175000px;}
.y1a0{bottom:634.575000px;}
.y15a{bottom:634.935000px;}
.yc4{bottom:635.295000px;}
.y105{bottom:635.835000px;}
.ya2{bottom:645.765000px;}
.y67{bottom:646.485000px;}
.y19f{bottom:648.465000px;}
.yc3{bottom:649.005000px;}
.y159{bottom:649.365000px;}
.y104{bottom:650.445000px;}
.y19e{bottom:662.325000px;}
.yc2{bottom:662.865000px;}
.ya1{bottom:663.045000px;}
.y66{bottom:663.765000px;}
.y158{bottom:666.645000px;}
.y103{bottom:667.545000px;}
.y19d{bottom:676.005000px;}
.yc1{bottom:677.445000px;}
.ya0{bottom:680.145000px;}
.y65{bottom:681.045000px;}
.y102{bottom:682.305000px;}
.y157{bottom:683.205000px;}
.y19c{bottom:689.865000px;}
.yc0{bottom:695.265000px;}
.y101{bottom:696.165000px;}
.y156{bottom:696.885000px;}
.y9f{bottom:697.425000px;}
.y64{bottom:698.145000px;}
.y19b{bottom:703.725000px;}
.y152{bottom:708.225000px;}
.y1de{bottom:708.585000px;}
.y100{bottom:710.025000px;}
.ybf{bottom:712.365000px;}
.y9e{bottom:714.705000px;}
.y63{bottom:715.425000px;}
.y19a{bottom:717.405000px;}
.yff{bottom:723.705000px;}
.y1d6{bottom:724.065000px;}
.ybe{bottom:729.645000px;}
.y16{bottom:730.545000px;}
.y199{bottom:731.265000px;}
.y9d{bottom:731.985000px;}
.y62{bottom:732.705000px;}
.yfe{bottom:737.565000px;}
.y198{bottom:745.125000px;}
.ybd{bottom:746.925000px;}
.y9c{bottom:749.265000px;}
.y61{bottom:749.985000px;}
.yfd{bottom:751.425000px;}
.y197{bottom:758.805000px;}
.ybc{bottom:764.205000px;}
.yfc{bottom:765.105000px;}
.y9b{bottom:766.545000px;}
.y60{bottom:767.265000px;}
.y1fa{bottom:769.605000px;}
.y196{bottom:772.665000px;}
.yfb{bottom:778.965000px;}
.ybb{bottom:781.485000px;}
.y9a{bottom:783.645000px;}
.y5f{bottom:784.545000px;}
.y1f9{bottom:785.085000px;}
.y195{bottom:786.525000px;}
.yfa{bottom:792.825000px;}
.y151{bottom:796.605000px;}
.yba{bottom:798.765000px;}
.y194{bottom:800.205000px;}
.y99{bottom:800.925000px;}
.y5e{bottom:801.645000px;}
.y14f{bottom:805.605000px;}
.yf9{bottom:806.505000px;}
.yb9{bottom:812.625000px;}
.y193{bottom:814.065000px;}
.y98{bottom:818.205000px;}
.y5d{bottom:818.925000px;}
.yf8{bottom:820.365000px;}
.y192{bottom:827.745000px;}
.yf7{bottom:834.225000px;}
.y14{bottom:835.485000px;}
.y5c{bottom:836.205000px;}
.y14e{bottom:840.165000px;}
.y191{bottom:841.605000px;}
.yf6{bottom:847.905000px;}
.y97{bottom:852.765000px;}
.y5b{bottom:853.485000px;}
.y190{bottom:855.465000px;}
.yf5{bottom:861.765000px;}
.y13{bottom:867.165000px;}
.y18f{bottom:869.145000px;}
.y96{bottom:869.865000px;}
.y5a{bottom:870.765000px;}
.y14d{bottom:874.545000px;}
.yf4{bottom:875.625000px;}
.y18e{bottom:883.005000px;}
.y12{bottom:884.445000px;}
.y95{bottom:887.145000px;}
.y59{bottom:887.865000px;}
.yf3{bottom:889.305000px;}
.y14a{bottom:891.825000px;}
.y18d{bottom:896.910000px;}
.y1d5{bottom:898.350000px;}
.yf1{bottom:903.210000px;}
.y94{bottom:904.470000px;}
.y58{bottom:905.190000px;}
.y11{bottom:905.550000px;}
.y149{bottom:909.150000px;}
.y18c{bottom:910.590000px;}
.y1d4{bottom:915.630000px;}
.y10{bottom:919.410000px;}
.y93{bottom:921.750000px;}
.y57{bottom:922.470000px;}
.y18b{bottom:924.450000px;}
.y148{bottom:926.430000px;}
.yf0{bottom:930.750000px;}
.y1d3{bottom:932.910000px;}
.yf{bottom:933.090000px;}
.y18a{bottom:938.310000px;}
.y92{bottom:939.030000px;}
.y56{bottom:939.750000px;}
.y145{bottom:943.710000px;}
.yef{bottom:944.610000px;}
.ye{bottom:946.950000px;}
.y1d2{bottom:950.010000px;}
.y189{bottom:951.990000px;}
.y1f8{bottom:956.130000px;}
.y91{bottom:956.310000px;}
.y55{bottom:957.030000px;}
.yee{bottom:958.470000px;}
.yd{bottom:960.810000px;}
.y188{bottom:965.850000px;}
.y1d1{bottom:966.570000px;}
.yc{bottom:970.710000px;}
.y1f6{bottom:971.790000px;}
.y90{bottom:973.410000px;}
.y54{bottom:974.310000px;}
.y143{bottom:978.090000px;}
.y187{bottom:979.710000px;}
.y1d0{bottom:980.430000px;}
.yed{bottom:986.010000px;}
.yb{bottom:987.990000px;}
.y8f{bottom:990.690000px;}
.y53{bottom:991.410000px;}
.y186{bottom:993.390000px;}
.y1cf{bottom:994.290000px;}
.y142{bottom:996.090000px;}
.yec{bottom:999.870000px;}
.ya{bottom:1005.270000px;}
.y185{bottom:1007.250000px;}
.y8e{bottom:1007.970000px;}
.y52{bottom:1008.690000px;}
.yeb{bottom:1013.550000px;}
.y141{bottom:1016.970000px;}
.y184{bottom:1021.110000px;}
.y1ce{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y8d{bottom:1025.250000px;}
.ye2{bottom:1025.610000px;}
.y51{bottom:1025.970000px;}
.yea{bottom:1027.410000px;}
.y140{bottom:1032.810000px;}
.y183{bottom:1034.790000px;}
.y1cd{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.ye9{bottom:1041.270000px;}
.y8c{bottom:1042.530000px;}
.y50{bottom:1043.250000px;}
.y182{bottom:1048.650000px;}
.y1cc{bottom:1049.370000px;}
.y13f{bottom:1050.090000px;}
.ye8{bottom:1054.950000px;}
.y7{bottom:1059.090000px;}
.y8b{bottom:1059.810000px;}
.y4f{bottom:1060.530000px;}
.y181{bottom:1062.510000px;}
.y1cb{bottom:1063.230000px;}
.y13e{bottom:1067.370000px;}
.ye7{bottom:1068.810000px;}
.y180{bottom:1076.190000px;}
.y8a{bottom:1076.910000px;}
.y1ca{bottom:1077.090000px;}
.y4e{bottom:1077.810000px;}
.ye4{bottom:1083.390000px;}
.y13d{bottom:1083.930000px;}
.y6{bottom:1086.630000px;}
.y17f{bottom:1090.050000px;}
.y1c9{bottom:1090.770000px;}
.y89{bottom:1094.190000px;}
.y4d{bottom:1094.910000px;}
.y13c{bottom:1097.790000px;}
.y17e{bottom:1103.910000px;}
.y1c8{bottom:1104.630000px;}
.y88{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y17d{bottom:1117.590000px;}
.y1c7{bottom:1118.490000px;}
.y87{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y17c{bottom:1131.450000px;}
.y1c6{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y4c{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h18{height:13.680000px;}
.h19{height:13.716000px;}
.h16{height:13.860000px;}
.h20{height:13.860150px;}
.h1e{height:13.896000px;}
.h1a{height:14.220000px;}
.h28{height:15.480000px;}
.h29{height:15.660000px;}
.h14{height:17.100000px;}
.h13{height:17.280000px;}
.h22{height:17.316000px;}
.h7{height:26.280000px;}
.h1d{height:27.540000px;}
.h1f{height:27.720000px;}
.h6{height:29.678906px;}
.h21{height:34.380000px;}
.h23{height:34.560000px;}
.h24{height:35.332031px;}
.h1c{height:41.400000px;}
.h17{height:47.344922px;}
.hd{height:48.410156px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h15{height:53.573906px;}
.h27{height:54.421875px;}
.h1b{height:57.324375px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h12{height:62.211094px;}
.h8{height:70.664062px;}
.h25{height:86.220000px;}
.hf{height:87.660000px;}
.h5{height:96.508125px;}
.h9{height:104.220000px;}
.h11{height:113.256000px;}
.h2b{height:164.700000px;}
.h2a{height:171.000000px;}
.h26{height:171.030000px;}
.he{height:318.450000px;}
.hb{height:335.010000px;}
.ha{height:423.390000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:17.820000px;}
.w4{width:21.060000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w21{width:35.100000px;}
.w1b{width:35.280000px;}
.w20{width:35.316000px;}
.w1c{width:35.640000px;}
.w22{width:36.036000px;}
.w1d{width:36.180000px;}
.w1f{width:36.360000px;}
.w1e{width:36.540000px;}
.w19{width:76.140000px;}
.wa{width:82.800000px;}
.w15{width:89.460000px;}
.w13{width:95.616000px;}
.w12{width:109.080000px;}
.w18{width:110.916000px;}
.wc{width:126.396000px;}
.w14{width:135.576000px;}
.wf{width:142.596000px;}
.w9{width:144.216000px;}
.w26{width:149.040000px;}
.w1a{width:158.070000px;}
.w10{width:178.950000px;}
.w17{width:187.050000px;}
.w25{width:200.010000px;}
.w3{width:209.190000px;}
.w23{width:221.430000px;}
.wd{width:227.010000px;}
.w11{width:229.350000px;}
.w24{width:237.630000px;}
.w5{width:433.155000px;}
.w16{width:472.035000px;}
.we{width:513.795000px;}
.w27{width:530.025000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x10{left:10.620000px;}
.x2e{left:11.880000px;}
.x3f{left:17.100000px;}
.x3e{left:19.620000px;}
.x31{left:21.420000px;}
.x39{left:22.680000px;}
.x2b{left:24.510000px;}
.x1a{left:26.100000px;}
.x37{left:27.180000px;}
.x27{left:28.260000px;}
.x2a{left:29.370000px;}
.x28{left:31.140000px;}
.x33{left:33.120000px;}
.x2c{left:34.230000px;}
.x38{left:36.210000px;}
.x32{left:45.360000px;}
.x3c{left:46.440000px;}
.x35{left:48.420000px;}
.x34{left:50.220000px;}
.x36{left:51.660000px;}
.x22{left:54.585000px;}
.x23{left:56.025000px;}
.x2f{left:58.680000px;}
.x3a{left:67.680000px;}
.x25{left:68.934000px;}
.x51{left:74.514000px;}
.x12{left:106.560000px;}
.x4e{left:117.036000px;}
.xd{left:125.496000px;}
.x1{left:127.655987px;}
.x52{left:136.254000px;}
.x4f{left:138.594000px;}
.x2{left:141.515987px;}
.x1e{left:147.455987px;}
.x15{left:154.649987px;}
.x18{left:157.349987px;}
.x4d{left:159.689987px;}
.x5{left:175.529987px;}
.x20{left:180.389987px;}
.x14{left:181.649987px;}
.xb{left:188.849987px;}
.x8{left:191.009987px;}
.xa{left:208.289987px;}
.x1f{left:214.589987px;}
.x6{left:227.369987px;}
.x9{left:243.929987px;}
.x50{left:266.070000px;}
.x16{left:275.969987px;}
.x40{left:285.735000px;}
.x3{left:290.954987px;}
.xc{left:305.174987px;}
.x41{left:321.015000px;}
.xf{left:334.695000px;}
.x7{left:341.714987px;}
.x19{left:343.695000px;}
.x4b{left:349.095000px;}
.x11{left:355.755000px;}
.x26{left:357.015000px;}
.x1c{left:361.515000px;}
.x24{left:384.375000px;}
.x42{left:392.835000px;}
.x13{left:425.055000px;}
.x43{left:429.375000px;}
.x4{left:457.274987px;}
.x29{left:466.095000px;}
.x1b{left:487.905000px;}
.x44{left:501.045000px;}
.x45{left:536.325000px;}
.x2d{left:561.705000px;}
.x46{left:571.605000px;}
.x4c{left:586.725000px;}
.x3b{left:599.685000px;}
.x47{left:606.705000px;}
.x21{left:641.445000px;}
.x48{left:678.030000px;}
.x30{left:697.290000px;}
.x3d{left:710.610000px;}
.x49{left:714.390000px;}
.x4a{left:749.490000px;}
.x1d{left:755.429987px;}
.x17{left:756.870000px;}
@media print{
.v4{vertical-align:-61.546667pt;}
.v5{vertical-align:-58.880000pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls30{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.198933pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls2a{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.007680pt;}
.ls33{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls22{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls29{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.161067pt;}
.ls28{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.183680pt;}
.ls25{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.198933pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.408960pt;}
.ls3{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls31{letter-spacing:2.880000pt;}
.ls2e{letter-spacing:4.746667pt;}
.ls2c{letter-spacing:5.280000pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls2d{letter-spacing:8.480000pt;}
.ls24{letter-spacing:10.400000pt;}
.ls1b{letter-spacing:16.138667pt;}
.ls18{letter-spacing:27.658667pt;}
.ls21{letter-spacing:27.680000pt;}
.ls26{letter-spacing:34.080000pt;}
.ls20{letter-spacing:45.600000pt;}
.ls4{letter-spacing:58.811307pt;}
.lse{letter-spacing:114.080000pt;}
.lsf{letter-spacing:178.058667pt;}
.lsd{letter-spacing:249.760000pt;}
.ws14{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.192000pt;}
.ws18{word-spacing:-12.112000pt;}
.ws1d{word-spacing:-12.016000pt;}
.ws15{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.918933pt;}
.ws1b{word-spacing:-10.880000pt;}
.wsf{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.521067pt;}
.ws19{word-spacing:-10.480533pt;}
.ws1a{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.319467pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-6.240000pt;}
._29{margin-left:-3.753600pt;}
._19{margin-left:-2.836480pt;}
._c{margin-left:-1.923840pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._11{width:3.504000pt;}
._10{width:4.704000pt;}
._6{width:6.432000pt;}
._5{width:7.440000pt;}
._7{width:8.400000pt;}
._15{width:9.402240pt;}
._b{width:10.888320pt;}
._18{width:11.964800pt;}
._12{width:13.148160pt;}
._9{width:14.592000pt;}
._8{width:15.792000pt;}
._14{width:17.572907pt;}
._13{width:18.751360pt;}
._1f{width:19.760640pt;}
._1e{width:20.716800pt;}
._20{width:21.752960pt;}
._1d{width:22.781440pt;}
._f{width:24.336000pt;}
._2d{width:26.158080pt;}
._21{width:27.409920pt;}
._22{width:28.472320pt;}
._23{width:30.880000pt;}
._4{width:32.160000pt;}
._a{width:33.072000pt;}
._25{width:35.333120pt;}
._26{width:36.224640pt;}
._d{width:37.680000pt;}
._e{width:38.666027pt;}
._2c{width:50.572160pt;}
._30{width:52.196907pt;}
._24{width:53.180587pt;}
._2b{width:54.570667pt;}
._2a{width:55.888000pt;}
._2e{width:56.783360pt;}
._2f{width:57.813760pt;}
._27{width:61.424000pt;}
._28{width:62.416000pt;}
._16{width:452.521387pt;}
._1b{width:654.560000pt;}
._17{width:769.499307pt;}
._1c{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:0.800000pt;}
.ya4{bottom:2.240000pt;}
.y1f5{bottom:2.554667pt;}
.y32{bottom:2.560000pt;}
.y1e6{bottom:2.720000pt;}
.y15{bottom:2.880000pt;}
.y14b{bottom:2.920000pt;}
.y144{bottom:3.360000pt;}
.y14c{bottom:3.400000pt;}
.y155{bottom:4.160000pt;}
.y3b{bottom:8.000000pt;}
.y41{bottom:10.880000pt;}
.ye6{bottom:14.400000pt;}
.yf2{bottom:14.560000pt;}
.y31{bottom:16.320000pt;}
.y146{bottom:18.080000pt;}
.y1a{bottom:18.240000pt;}
.y147{bottom:18.560000pt;}
.y150{bottom:18.720000pt;}
.y40{bottom:26.240000pt;}
.ye5{bottom:26.720000pt;}
.y108{bottom:26.880000pt;}
.y30{bottom:30.240000pt;}
.y19{bottom:33.600000pt;}
.y3f{bottom:41.600000pt;}
.y1f7{bottom:43.360000pt;}
.y2f{bottom:44.000000pt;}
.y18{bottom:48.800000pt;}
.y154{bottom:48.960000pt;}
.y207{bottom:51.520000pt;}
.y3e{bottom:56.960000pt;}
.y1dd{bottom:57.120000pt;}
.y1ee{bottom:57.320000pt;}
.y2e{bottom:57.760000pt;}
.y3a{bottom:58.720000pt;}
.y153{bottom:64.160000pt;}
.y206{bottom:65.280000pt;}
.y1dc{bottom:70.880000pt;}
.y1f3{bottom:71.040000pt;}
.y1ed{bottom:71.080000pt;}
.y2d{bottom:71.520000pt;}
.y17{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y205{bottom:79.200000pt;}
.y3d{bottom:80.200000pt;}
.y1e4{bottom:84.640000pt;}
.y1db{bottom:84.800000pt;}
.y1fe{bottom:84.826667pt;}
.y1ec{bottom:84.840000pt;}
.y2c{bottom:85.440000pt;}
.y204{bottom:92.960000pt;}
.y1da{bottom:98.560000pt;}
.y1e3{bottom:98.586667pt;}
.y1eb{bottom:98.600000pt;}
.y2b{bottom:99.200000pt;}
.y17b{bottom:101.280000pt;}
.y203{bottom:106.720000pt;}
.ye1{bottom:109.920000pt;}
.y1c5{bottom:110.240000pt;}
.y4b{bottom:111.840000pt;}
.y1d9{bottom:112.320000pt;}
.y1e2{bottom:112.346667pt;}
.y1ea{bottom:112.520000pt;}
.y2a{bottom:112.960000pt;}
.y17a{bottom:113.440000pt;}
.y13b{bottom:113.920000pt;}
.y85{bottom:114.560000pt;}
.y202{bottom:120.480000pt;}
.y1c4{bottom:122.432000pt;}
.ye0{bottom:125.312000pt;}
.y179{bottom:125.792000pt;}
.y1d8{bottom:126.080000pt;}
.y1e1{bottom:126.106667pt;}
.y1f2{bottom:126.240000pt;}
.y1fd{bottom:126.266667pt;}
.y1e9{bottom:126.280000pt;}
.y29{bottom:126.746667pt;}
.y4a{bottom:127.232000pt;}
.y120{bottom:128.352000pt;}
.y13a{bottom:129.312000pt;}
.y84{bottom:129.952000pt;}
.y1f4{bottom:132.352000pt;}
.y201{bottom:134.240000pt;}
.y1c3{bottom:134.746667pt;}
.y178{bottom:138.106667pt;}
.y1d7{bottom:139.840000pt;}
.y1e0{bottom:139.866667pt;}
.y1f1{bottom:140.000000pt;}
.y1fc{bottom:140.026667pt;}
.y1e8{bottom:140.040000pt;}
.y28{bottom:140.666667pt;}
.y49{bottom:142.586667pt;}
.y11f{bottom:143.706667pt;}
.y139{bottom:144.666667pt;}
.y83{bottom:145.306667pt;}
.y1f0{bottom:146.106667pt;}
.y1c2{bottom:147.066667pt;}
.y177{bottom:150.266667pt;}
.y27{bottom:154.426667pt;}
.ydf{bottom:155.866667pt;}
.y48{bottom:157.946667pt;}
.y11e{bottom:159.066667pt;}
.y1c1{bottom:159.226667pt;}
.y138{bottom:159.866667pt;}
.y82{bottom:160.666667pt;}
.y39{bottom:162.560000pt;}
.y176{bottom:162.586667pt;}
.y26{bottom:168.186667pt;}
.yde{bottom:171.226667pt;}
.y1c0{bottom:171.546667pt;}
.y47{bottom:173.306667pt;}
.y11d{bottom:174.266667pt;}
.y175{bottom:174.906667pt;}
.y137{bottom:175.226667pt;}
.y81{bottom:175.866667pt;}
.y38{bottom:177.920000pt;}
.y25{bottom:181.946667pt;}
.y1bf{bottom:183.866667pt;}
.ydd{bottom:186.586667pt;}
.y174{bottom:187.066667pt;}
.y46{bottom:188.666667pt;}
.y11c{bottom:189.626667pt;}
.y136{bottom:190.586667pt;}
.y80{bottom:191.226667pt;}
.y37{bottom:193.280000pt;}
.y24{bottom:195.866667pt;}
.y1be{bottom:196.026667pt;}
.y173{bottom:199.386667pt;}
.ydc{bottom:201.946667pt;}
.y45{bottom:203.866667pt;}
.y11b{bottom:204.346667pt;}
.y135{bottom:205.946667pt;}
.y7f{bottom:206.586667pt;}
.y1bd{bottom:208.346667pt;}
.y36{bottom:208.506667pt;}
.y23{bottom:209.626667pt;}
.y172{bottom:211.706667pt;}
.ydb{bottom:217.306667pt;}
.y44{bottom:219.226667pt;}
.y1bc{bottom:220.666667pt;}
.y134{bottom:221.306667pt;}
.y7e{bottom:221.946667pt;}
.y22{bottom:223.386667pt;}
.y35{bottom:223.866667pt;}
.yda{bottom:232.506667pt;}
.y11a{bottom:232.666667pt;}
.y1bb{bottom:232.826667pt;}
.y43{bottom:234.586667pt;}
.y171{bottom:236.186667pt;}
.y133{bottom:236.666667pt;}
.y21{bottom:237.146667pt;}
.y7d{bottom:237.306667pt;}
.y34{bottom:239.226667pt;}
.y1ba{bottom:245.146667pt;}
.yd9{bottom:247.866667pt;}
.y170{bottom:248.506667pt;}
.y42{bottom:249.946667pt;}
.y20{bottom:251.066667pt;}
.y132{bottom:251.866667pt;}
.y7c{bottom:252.666667pt;}
.y1b9{bottom:257.466667pt;}
.y16f{bottom:260.666667pt;}
.y33{bottom:262.586667pt;}
.yd8{bottom:263.226667pt;}
.y3c{bottom:264.346667pt;}
.y1f{bottom:264.826667pt;}
.yb8{bottom:265.306667pt;}
.y131{bottom:267.226667pt;}
.y7b{bottom:267.866667pt;}
.y1b8{bottom:269.626667pt;}
.y16e{bottom:272.986667pt;}
.y119{bottom:277.946667pt;}
.y1e{bottom:278.586667pt;}
.yb7{bottom:280.666667pt;}
.y1b7{bottom:281.946667pt;}
.y130{bottom:282.586667pt;}
.y7a{bottom:283.226667pt;}
.y16d{bottom:285.146667pt;}
.y118{bottom:290.266667pt;}
.yd7{bottom:293.946667pt;}
.y1b6{bottom:294.266667pt;}
.yb6{bottom:295.866667pt;}
.y16c{bottom:297.466667pt;}
.y12f{bottom:297.946667pt;}
.y1ef{bottom:298.106667pt;}
.y79{bottom:298.586667pt;}
.y117{bottom:302.426667pt;}
.y1b5{bottom:306.426667pt;}
.yd6{bottom:309.306667pt;}
.y16b{bottom:310.426667pt;}
.yb5{bottom:311.226667pt;}
.y1e7{bottom:311.866667pt;}
.y12e{bottom:313.306667pt;}
.y78{bottom:313.946667pt;}
.y116{bottom:314.746667pt;}
.y1b4{bottom:318.746667pt;}
.yd5{bottom:324.506667pt;}
.y16a{bottom:325.146667pt;}
.yb4{bottom:326.586667pt;}
.y115{bottom:327.066667pt;}
.y12d{bottom:328.666667pt;}
.y77{bottom:329.306667pt;}
.y1b3{bottom:331.066667pt;}
.y169{bottom:337.306667pt;}
.y114{bottom:337.786667pt;}
.yd4{bottom:339.866667pt;}
.yb3{bottom:341.946667pt;}
.y1b2{bottom:343.226667pt;}
.y12c{bottom:343.866667pt;}
.y209{bottom:344.026667pt;}
.y76{bottom:344.706667pt;}
.y113{bottom:349.986667pt;}
.y168{bottom:350.306667pt;}
.yd3{bottom:355.266667pt;}
.y1b1{bottom:355.586667pt;}
.y1c{bottom:355.866667pt;}
.yb2{bottom:357.346667pt;}
.y12b{bottom:359.266667pt;}
.y208{bottom:359.426667pt;}
.y75{bottom:359.906667pt;}
.y112{bottom:362.306667pt;}
.y1b{bottom:365.666667pt;}
.y1b0{bottom:367.906667pt;}
.yd2{bottom:370.626667pt;}
.y200{bottom:371.906667pt;}
.yb1{bottom:372.706667pt;}
.y111{bottom:374.626667pt;}
.y74{bottom:375.266667pt;}
.y1af{bottom:380.066667pt;}
.y167{bottom:381.026667pt;}
.yd1{bottom:385.986667pt;}
.y110{bottom:386.786667pt;}
.yb0{bottom:387.906667pt;}
.y12a{bottom:389.986667pt;}
.y73{bottom:390.626667pt;}
.y1ae{bottom:392.386667pt;}
.y166{bottom:395.586667pt;}
.y10f{bottom:399.106667pt;}
.yd0{bottom:401.346667pt;}
.yaf{bottom:403.266667pt;}
.y1ad{bottom:404.706667pt;}
.y129{bottom:405.346667pt;}
.y72{bottom:405.986667pt;}
.y165{bottom:407.906667pt;}
.y10e{bottom:411.266667pt;}
.ycf{bottom:416.546667pt;}
.y1ac{bottom:416.866667pt;}
.yae{bottom:418.626667pt;}
.y128{bottom:420.546667pt;}
.y164{bottom:420.866667pt;}
.y71{bottom:421.346667pt;}
.y10d{bottom:423.586667pt;}
.y1ab{bottom:429.186667pt;}
.yad{bottom:431.746667pt;}
.yce{bottom:431.906667pt;}
.y10c{bottom:435.906667pt;}
.y163{bottom:436.226667pt;}
.y70{bottom:436.546667pt;}
.y1aa{bottom:441.506667pt;}
.yac{bottom:444.066667pt;}
.y1d{bottom:444.226667pt;}
.ycd{bottom:447.266667pt;}
.y10b{bottom:448.066667pt;}
.y127{bottom:451.266667pt;}
.y162{bottom:451.426667pt;}
.y6f{bottom:451.906667pt;}
.y1a9{bottom:453.666667pt;}
.yab{bottom:456.226667pt;}
.ycc{bottom:462.626667pt;}
.y1e5{bottom:463.906667pt;}
.y1a8{bottom:465.986667pt;}
.y126{bottom:466.626667pt;}
.y161{bottom:466.786667pt;}
.y6e{bottom:467.266667pt;}
.yaa{bottom:468.546667pt;}
.y10a{bottom:472.706667pt;}
.y1df{bottom:477.826667pt;}
.ycb{bottom:477.986667pt;}
.y1a7{bottom:478.306667pt;}
.ya9{bottom:480.866667pt;}
.y125{bottom:481.986667pt;}
.y160{bottom:482.146667pt;}
.y6d{bottom:482.626667pt;}
.y1a6{bottom:490.466667pt;}
.yca{bottom:492.706667pt;}
.ya8{bottom:493.026667pt;}
.y15f{bottom:496.866667pt;}
.y124{bottom:497.346667pt;}
.y107{bottom:497.826667pt;}
.y6c{bottom:497.986667pt;}
.y1a5{bottom:502.786667pt;}
.yc9{bottom:504.866667pt;}
.ya7{bottom:505.346667pt;}
.y15e{bottom:509.186667pt;}
.y123{bottom:512.546667pt;}
.y6b{bottom:513.346667pt;}
.y1a4{bottom:515.106667pt;}
.yc8{bottom:517.186667pt;}
.ya6{bottom:517.666667pt;}
.y1ff{bottom:518.306667pt;}
.y15d{bottom:521.986667pt;}
.y109{bottom:522.466667pt;}
.y1a3{bottom:527.266667pt;}
.yc7{bottom:527.906667pt;}
.y6a{bottom:528.546667pt;}
.ya5{bottom:529.826667pt;}
.y1fb{bottom:532.066667pt;}
.y15c{bottom:537.346667pt;}
.y1a2{bottom:539.586667pt;}
.yc6{bottom:540.066667pt;}
.ya3{bottom:542.786667pt;}
.y122{bottom:543.266667pt;}
.y69{bottom:543.906667pt;}
.y1a1{bottom:551.906667pt;}
.y15b{bottom:552.066667pt;}
.yc5{bottom:552.386667pt;}
.y106{bottom:552.866667pt;}
.y121{bottom:558.626667pt;}
.y68{bottom:559.266667pt;}
.y1a0{bottom:564.066667pt;}
.y15a{bottom:564.386667pt;}
.yc4{bottom:564.706667pt;}
.y105{bottom:565.186667pt;}
.ya2{bottom:574.013333pt;}
.y67{bottom:574.653333pt;}
.y19f{bottom:576.413333pt;}
.yc3{bottom:576.893333pt;}
.y159{bottom:577.213333pt;}
.y104{bottom:578.173333pt;}
.y19e{bottom:588.733333pt;}
.yc2{bottom:589.213333pt;}
.ya1{bottom:589.373333pt;}
.y66{bottom:590.013333pt;}
.y158{bottom:592.573333pt;}
.y103{bottom:593.373333pt;}
.y19d{bottom:600.893333pt;}
.yc1{bottom:602.173333pt;}
.ya0{bottom:604.573333pt;}
.y65{bottom:605.373333pt;}
.y102{bottom:606.493333pt;}
.y157{bottom:607.293333pt;}
.y19c{bottom:613.213333pt;}
.yc0{bottom:618.013333pt;}
.y101{bottom:618.813333pt;}
.y156{bottom:619.453333pt;}
.y9f{bottom:619.933333pt;}
.y64{bottom:620.573333pt;}
.y19b{bottom:625.533333pt;}
.y152{bottom:629.533333pt;}
.y1de{bottom:629.853333pt;}
.y100{bottom:631.133333pt;}
.ybf{bottom:633.213333pt;}
.y9e{bottom:635.293333pt;}
.y63{bottom:635.933333pt;}
.y19a{bottom:637.693333pt;}
.yff{bottom:643.293333pt;}
.y1d6{bottom:643.613333pt;}
.ybe{bottom:648.573333pt;}
.y16{bottom:649.373333pt;}
.y199{bottom:650.013333pt;}
.y9d{bottom:650.653333pt;}
.y62{bottom:651.293333pt;}
.yfe{bottom:655.613333pt;}
.y198{bottom:662.333333pt;}
.ybd{bottom:663.933333pt;}
.y9c{bottom:666.013333pt;}
.y61{bottom:666.653333pt;}
.yfd{bottom:667.933333pt;}
.y197{bottom:674.493333pt;}
.ybc{bottom:679.293333pt;}
.yfc{bottom:680.093333pt;}
.y9b{bottom:681.373333pt;}
.y60{bottom:682.013333pt;}
.y1fa{bottom:684.093333pt;}
.y196{bottom:686.813333pt;}
.yfb{bottom:692.413333pt;}
.ybb{bottom:694.653333pt;}
.y9a{bottom:696.573333pt;}
.y5f{bottom:697.373333pt;}
.y1f9{bottom:697.853333pt;}
.y195{bottom:699.133333pt;}
.yfa{bottom:704.733333pt;}
.y151{bottom:708.093333pt;}
.yba{bottom:710.013333pt;}
.y194{bottom:711.293333pt;}
.y99{bottom:711.933333pt;}
.y5e{bottom:712.573333pt;}
.y14f{bottom:716.093333pt;}
.yf9{bottom:716.893333pt;}
.yb9{bottom:722.333333pt;}
.y193{bottom:723.613333pt;}
.y98{bottom:727.293333pt;}
.y5d{bottom:727.933333pt;}
.yf8{bottom:729.213333pt;}
.y192{bottom:735.773333pt;}
.yf7{bottom:741.533333pt;}
.y14{bottom:742.653333pt;}
.y5c{bottom:743.293333pt;}
.y14e{bottom:746.813333pt;}
.y191{bottom:748.093333pt;}
.yf6{bottom:753.693333pt;}
.y97{bottom:758.013333pt;}
.y5b{bottom:758.653333pt;}
.y190{bottom:760.413333pt;}
.yf5{bottom:766.013333pt;}
.y13{bottom:770.813333pt;}
.y18f{bottom:772.573333pt;}
.y96{bottom:773.213333pt;}
.y5a{bottom:774.013333pt;}
.y14d{bottom:777.373333pt;}
.yf4{bottom:778.333333pt;}
.y18e{bottom:784.893333pt;}
.y12{bottom:786.173333pt;}
.y95{bottom:788.573333pt;}
.y59{bottom:789.213333pt;}
.yf3{bottom:790.493333pt;}
.y14a{bottom:792.733333pt;}
.y18d{bottom:797.253333pt;}
.y1d5{bottom:798.533333pt;}
.yf1{bottom:802.853333pt;}
.y94{bottom:803.973333pt;}
.y58{bottom:804.613333pt;}
.y11{bottom:804.933333pt;}
.y149{bottom:808.133333pt;}
.y18c{bottom:809.413333pt;}
.y1d4{bottom:813.893333pt;}
.y10{bottom:817.253333pt;}
.y93{bottom:819.333333pt;}
.y57{bottom:819.973333pt;}
.y18b{bottom:821.733333pt;}
.y148{bottom:823.493333pt;}
.yf0{bottom:827.333333pt;}
.y1d3{bottom:829.253333pt;}
.yf{bottom:829.413333pt;}
.y18a{bottom:834.053333pt;}
.y92{bottom:834.693333pt;}
.y56{bottom:835.333333pt;}
.y145{bottom:838.853333pt;}
.yef{bottom:839.653333pt;}
.ye{bottom:841.733333pt;}
.y1d2{bottom:844.453333pt;}
.y189{bottom:846.213333pt;}
.y1f8{bottom:849.893333pt;}
.y91{bottom:850.053333pt;}
.y55{bottom:850.693333pt;}
.yee{bottom:851.973333pt;}
.yd{bottom:854.053333pt;}
.y188{bottom:858.533333pt;}
.y1d1{bottom:859.173333pt;}
.yc{bottom:862.853333pt;}
.y1f6{bottom:863.813333pt;}
.y90{bottom:865.253333pt;}
.y54{bottom:866.053333pt;}
.y143{bottom:869.413333pt;}
.y187{bottom:870.853333pt;}
.y1d0{bottom:871.493333pt;}
.yed{bottom:876.453333pt;}
.yb{bottom:878.213333pt;}
.y8f{bottom:880.613333pt;}
.y53{bottom:881.253333pt;}
.y186{bottom:883.013333pt;}
.y1cf{bottom:883.813333pt;}
.y142{bottom:885.413333pt;}
.yec{bottom:888.773333pt;}
.ya{bottom:893.573333pt;}
.y185{bottom:895.333333pt;}
.y8e{bottom:895.973333pt;}
.y52{bottom:896.613333pt;}
.yeb{bottom:900.933333pt;}
.y141{bottom:903.973333pt;}
.y184{bottom:907.653333pt;}
.y1ce{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y8d{bottom:911.333333pt;}
.ye2{bottom:911.653333pt;}
.y51{bottom:911.973333pt;}
.yea{bottom:913.253333pt;}
.y140{bottom:918.053333pt;}
.y183{bottom:919.813333pt;}
.y1cd{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.ye9{bottom:925.573333pt;}
.y8c{bottom:926.693333pt;}
.y50{bottom:927.333333pt;}
.y182{bottom:932.133333pt;}
.y1cc{bottom:932.773333pt;}
.y13f{bottom:933.413333pt;}
.ye8{bottom:937.733333pt;}
.y7{bottom:941.413333pt;}
.y8b{bottom:942.053333pt;}
.y4f{bottom:942.693333pt;}
.y181{bottom:944.453333pt;}
.y1cb{bottom:945.093333pt;}
.y13e{bottom:948.773333pt;}
.ye7{bottom:950.053333pt;}
.y180{bottom:956.613333pt;}
.y8a{bottom:957.253333pt;}
.y1ca{bottom:957.413333pt;}
.y4e{bottom:958.053333pt;}
.ye4{bottom:963.013333pt;}
.y13d{bottom:963.493333pt;}
.y6{bottom:965.893333pt;}
.y17f{bottom:968.933333pt;}
.y1c9{bottom:969.573333pt;}
.y89{bottom:972.613333pt;}
.y4d{bottom:973.253333pt;}
.y13c{bottom:975.813333pt;}
.y17e{bottom:981.253333pt;}
.y1c8{bottom:981.893333pt;}
.y88{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y17d{bottom:993.413333pt;}
.y1c7{bottom:994.213333pt;}
.y87{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y17c{bottom:1005.733333pt;}
.y1c6{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y4c{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h18{height:12.160000pt;}
.h19{height:12.192000pt;}
.h16{height:12.320000pt;}
.h20{height:12.320133pt;}
.h1e{height:12.352000pt;}
.h1a{height:12.640000pt;}
.h28{height:13.760000pt;}
.h29{height:13.920000pt;}
.h14{height:15.200000pt;}
.h13{height:15.360000pt;}
.h22{height:15.392000pt;}
.h7{height:23.360000pt;}
.h1d{height:24.480000pt;}
.h1f{height:24.640000pt;}
.h6{height:26.381250pt;}
.h21{height:30.560000pt;}
.h23{height:30.720000pt;}
.h24{height:31.406250pt;}
.h1c{height:36.800000pt;}
.h17{height:42.084375pt;}
.hd{height:43.031250pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h15{height:47.621250pt;}
.h27{height:48.375000pt;}
.h1b{height:50.955000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h12{height:55.298750pt;}
.h8{height:62.812500pt;}
.h25{height:76.640000pt;}
.hf{height:77.920000pt;}
.h5{height:85.785000pt;}
.h9{height:92.640000pt;}
.h11{height:100.672000pt;}
.h2b{height:146.400000pt;}
.h2a{height:152.000000pt;}
.h26{height:152.026667pt;}
.he{height:283.066667pt;}
.hb{height:297.786667pt;}
.ha{height:376.346667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:15.840000pt;}
.w4{width:18.720000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w21{width:31.200000pt;}
.w1b{width:31.360000pt;}
.w20{width:31.392000pt;}
.w1c{width:31.680000pt;}
.w22{width:32.032000pt;}
.w1d{width:32.160000pt;}
.w1f{width:32.320000pt;}
.w1e{width:32.480000pt;}
.w19{width:67.680000pt;}
.wa{width:73.600000pt;}
.w15{width:79.520000pt;}
.w13{width:84.992000pt;}
.w12{width:96.960000pt;}
.w18{width:98.592000pt;}
.wc{width:112.352000pt;}
.w14{width:120.512000pt;}
.wf{width:126.752000pt;}
.w9{width:128.192000pt;}
.w26{width:132.480000pt;}
.w1a{width:140.506667pt;}
.w10{width:159.066667pt;}
.w17{width:166.266667pt;}
.w25{width:177.786667pt;}
.w3{width:185.946667pt;}
.w23{width:196.826667pt;}
.wd{width:201.786667pt;}
.w11{width:203.866667pt;}
.w24{width:211.226667pt;}
.w5{width:385.026667pt;}
.w16{width:419.586667pt;}
.we{width:456.706667pt;}
.w27{width:471.133333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x10{left:9.440000pt;}
.x2e{left:10.560000pt;}
.x3f{left:15.200000pt;}
.x3e{left:17.440000pt;}
.x31{left:19.040000pt;}
.x39{left:20.160000pt;}
.x2b{left:21.786667pt;}
.x1a{left:23.200000pt;}
.x37{left:24.160000pt;}
.x27{left:25.120000pt;}
.x2a{left:26.106667pt;}
.x28{left:27.680000pt;}
.x33{left:29.440000pt;}
.x2c{left:30.426667pt;}
.x38{left:32.186667pt;}
.x32{left:40.320000pt;}
.x3c{left:41.280000pt;}
.x35{left:43.040000pt;}
.x34{left:44.640000pt;}
.x36{left:45.920000pt;}
.x22{left:48.520000pt;}
.x23{left:49.800000pt;}
.x2f{left:52.160000pt;}
.x3a{left:60.160000pt;}
.x25{left:61.274667pt;}
.x51{left:66.234667pt;}
.x12{left:94.720000pt;}
.x4e{left:104.032000pt;}
.xd{left:111.552000pt;}
.x1{left:113.471988pt;}
.x52{left:121.114667pt;}
.x4f{left:123.194667pt;}
.x2{left:125.791988pt;}
.x1e{left:131.071988pt;}
.x15{left:137.466655pt;}
.x18{left:139.866655pt;}
.x4d{left:141.946655pt;}
.x5{left:156.026655pt;}
.x20{left:160.346655pt;}
.x14{left:161.466655pt;}
.xb{left:167.866655pt;}
.x8{left:169.786655pt;}
.xa{left:185.146655pt;}
.x1f{left:190.746655pt;}
.x6{left:202.106655pt;}
.x9{left:216.826655pt;}
.x50{left:236.506667pt;}
.x16{left:245.306655pt;}
.x40{left:253.986667pt;}
.x3{left:258.626655pt;}
.xc{left:271.266655pt;}
.x41{left:285.346667pt;}
.xf{left:297.506667pt;}
.x7{left:303.746655pt;}
.x19{left:305.506667pt;}
.x4b{left:310.306667pt;}
.x11{left:316.226667pt;}
.x26{left:317.346667pt;}
.x1c{left:321.346667pt;}
.x24{left:341.666667pt;}
.x42{left:349.186667pt;}
.x13{left:377.826667pt;}
.x43{left:381.666667pt;}
.x4{left:406.466655pt;}
.x29{left:414.306667pt;}
.x1b{left:433.693333pt;}
.x44{left:445.373333pt;}
.x45{left:476.733333pt;}
.x2d{left:499.293333pt;}
.x46{left:508.093333pt;}
.x4c{left:521.533333pt;}
.x3b{left:533.053333pt;}
.x47{left:539.293333pt;}
.x21{left:570.173333pt;}
.x48{left:602.693333pt;}
.x30{left:619.813333pt;}
.x3d{left:631.653333pt;}
.x49{left:635.013333pt;}
.x4a{left:666.213333pt;}
.x1d{left:671.493322pt;}
.x17{left:672.773333pt;}
}




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