
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_9c7fc8015a6cf248ec834e83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_4581dc7aef92c3a70366e892.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_1db9ea3cbe4b7261ebb1da8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_2bfe2acdc11a0f056715c80b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.940000px;}
.lsf{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.678000px;}
.ls8{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.lsb{letter-spacing:46.026720px;}
.ls13{letter-spacing:61.146720px;}
.lsc{letter-spacing:64.026720px;}
.lse{letter-spacing:64.170720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws4{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.479800px;}
.wse{word-spacing:-14.262000px;}
.wsc{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-1.170720px;}
._0{width:1.135440px;}
._b{width:2.431680px;}
._d{width:3.645360px;}
._15{width:5.400000px;}
._14{width:7.074000px;}
._21{width:8.154720px;}
._11{width:9.561600px;}
._10{width:10.637280px;}
._c{width:11.772720px;}
._8{width:13.505760px;}
._34{width:15.050880px;}
._f{width:16.773600px;}
._a{width:17.979600px;}
._9{width:19.063440px;}
._27{width:20.378160px;}
._1d{width:21.573360px;}
._13{width:22.828320px;}
._1e{width:23.994720px;}
._e{width:25.502160px;}
._1f{width:26.712720px;}
._12{width:27.728640px;}
._33{width:28.744560px;}
._22{width:29.760480px;}
._20{width:31.015440px;}
._23{width:32.514480px;}
._17{width:33.741360px;}
._19{width:35.198640px;}
._18{width:36.274320px;}
._1a{width:37.529280px;}
._1c{width:38.724480px;}
._7{width:40.218480px;}
._25{width:41.891760px;}
._2d{width:42.935760px;}
._6{width:44.254080px;}
._5{width:45.417600px;}
._31{width:46.686240px;}
._2e{width:48.281520px;}
._2f{width:49.784640px;}
._29{width:50.796000px;}
._24{width:53.117760px;}
._2c{width:54.540240px;}
._28{width:56.044800px;}
._30{width:58.076640px;}
._2a{width:60.127920px;}
._2b{width:61.493040px;}
._32{width:63.537600px;}
._16{width:71.982000px;}
._1b{width:74.281680px;}
._26{width:77.797440px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._4{width:944.265120px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y39{bottom:2.880000px;}
.y13{bottom:3.240000px;}
.y32{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.y1da{bottom:9.360000px;}
.y1df{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y1d9{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.y1dc{bottom:16.380000px;}
.y30{bottom:19.260000px;}
.y253{bottom:19.800000px;}
.y37{bottom:25.020000px;}
.y24c{bottom:30.060000px;}
.y252{bottom:33.660000px;}
.y7{bottom:35.460000px;}
.y2f{bottom:35.640000px;}
.y36{bottom:40.680000px;}
.y27{bottom:42.300000px;}
.y24b{bottom:43.920000px;}
.y251{bottom:47.520000px;}
.y2e{bottom:51.300000px;}
.y35{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.y26{bottom:59.580000px;}
.y250{bottom:61.200000px;}
.y2d{bottom:66.780000px;}
.y34{bottom:71.640000px;}
.y24f{bottom:75.060000px;}
.y25{bottom:76.860000px;}
.y2c{bottom:82.260000px;}
.y24{bottom:94.140000px;}
.y2b{bottom:97.740000px;}
.y38{bottom:106.200000px;}
.y23{bottom:111.420000px;}
.y174{bottom:111.996000px;}
.y2a{bottom:113.400000px;}
.y48{bottom:113.976000px;}
.yea{bottom:119.556000px;}
.y19f{bottom:120.636000px;}
.y81{bottom:121.176000px;}
.y247{bottom:123.876000px;}
.y205{bottom:124.056000px;}
.y219{bottom:126.036000px;}
.y14b{bottom:127.116000px;}
.y11d{bottom:128.196000px;}
.y22{bottom:128.520000px;}
.y29{bottom:128.880000px;}
.y173{bottom:129.276000px;}
.y47{bottom:129.456000px;}
.yb2{bottom:134.136000px;}
.y227{bottom:135.756000px;}
.ye9{bottom:136.836000px;}
.y1d6{bottom:137.916000px;}
.y80{bottom:138.456000px;}
.y19e{bottom:138.996000px;}
.y246{bottom:141.156000px;}
.y204{bottom:141.336000px;}
.y218{bottom:143.316000px;}
.y14a{bottom:144.396000px;}
.y46{bottom:144.936000px;}
.y21{bottom:145.800000px;}
.y11c{bottom:146.556000px;}
.yb1{bottom:151.410000px;}
.y226{bottom:153.030000px;}
.ye8{bottom:154.110000px;}
.y1c1{bottom:155.190000px;}
.y7f{bottom:155.730000px;}
.y19d{bottom:157.350000px;}
.y245{bottom:158.430000px;}
.y203{bottom:159.690000px;}
.y45{bottom:160.590000px;}
.y149{bottom:161.670000px;}
.y20{bottom:163.080000px;}
.y11b{bottom:164.910000px;}
.yb0{bottom:168.510000px;}
.y225{bottom:170.310000px;}
.ye7{bottom:171.390000px;}
.y1c0{bottom:172.470000px;}
.y7e{bottom:172.830000px;}
.y19c{bottom:175.710000px;}
.y44{bottom:176.070000px;}
.y217{bottom:177.870000px;}
.y202{bottom:178.050000px;}
.y148{bottom:178.950000px;}
.y1f{bottom:180.360000px;}
.y11a{bottom:183.270000px;}
.yaf{bottom:185.790000px;}
.y224{bottom:187.590000px;}
.ye6{bottom:188.670000px;}
.y1bf{bottom:189.750000px;}
.y7d{bottom:190.110000px;}
.y43{bottom:191.550000px;}
.y19b{bottom:192.990000px;}
.y201{bottom:195.150000px;}
.y147{bottom:196.230000px;}
.y1e{bottom:197.640000px;}
.y119{bottom:201.630000px;}
.yae{bottom:203.070000px;}
.y223{bottom:204.870000px;}
.ye5{bottom:205.770000px;}
.y42{bottom:207.030000px;}
.y7c{bottom:207.390000px;}
.y1be{bottom:208.110000px;}
.y244{bottom:210.090000px;}
.y19a{bottom:210.270000px;}
.y216{bottom:212.250000px;}
.y200{bottom:212.430000px;}
.y146{bottom:213.330000px;}
.y1d{bottom:214.920000px;}
.y118{bottom:219.810000px;}
.yad{bottom:220.350000px;}
.y222{bottom:221.970000px;}
.y41{bottom:222.690000px;}
.ye4{bottom:223.050000px;}
.y1d5{bottom:224.130000px;}
.y7b{bottom:224.670000px;}
.y1bd{bottom:226.290000px;}
.y199{bottom:227.370000px;}
.y215{bottom:229.530000px;}
.y1ff{bottom:229.710000px;}
.y145{bottom:230.610000px;}
.y1c{bottom:232.050000px;}
.y172{bottom:237.090000px;}
.yac{bottom:237.630000px;}
.y40{bottom:238.170000px;}
.y221{bottom:239.250000px;}
.ye3{bottom:240.330000px;}
.y7a{bottom:241.950000px;}
.y1d4{bottom:242.490000px;}
.y1bc{bottom:243.570000px;}
.y198{bottom:244.650000px;}
.y214{bottom:246.810000px;}
.y1fe{bottom:246.990000px;}
.y144{bottom:247.890000px;}
.y1b{bottom:249.330000px;}
.y3f{bottom:253.650000px;}
.y171{bottom:254.370000px;}
.yab{bottom:254.910000px;}
.y117{bottom:255.450000px;}
.y220{bottom:256.530000px;}
.ye2{bottom:257.610000px;}
.y79{bottom:259.050000px;}
.y1d3{bottom:260.850000px;}
.y197{bottom:261.930000px;}
.y1fd{bottom:264.270000px;}
.y143{bottom:265.170000px;}
.y1a{bottom:266.610000px;}
.y3e{bottom:269.130000px;}
.y170{bottom:271.650000px;}
.yaa{bottom:272.010000px;}
.y116{bottom:272.730000px;}
.y21f{bottom:273.810000px;}
.ye1{bottom:274.890000px;}
.y78{bottom:276.330000px;}
.y1d2{bottom:278.130000px;}
.y196{bottom:279.210000px;}
.y1fc{bottom:281.550000px;}
.y142{bottom:282.450000px;}
.y213{bottom:283.530000px;}
.y19{bottom:283.890000px;}
.y3d{bottom:284.790000px;}
.y16f{bottom:288.930000px;}
.ya9{bottom:289.290000px;}
.y115{bottom:290.010000px;}
.y21e{bottom:291.090000px;}
.ye0{bottom:292.170000px;}
.y77{bottom:293.610000px;}
.y195{bottom:296.490000px;}
.y1fb{bottom:298.650000px;}
.y141{bottom:299.730000px;}
.y3c{bottom:300.630000px;}
.y18{bottom:301.170000px;}
.y212{bottom:301.890000px;}
.y16e{bottom:306.030000px;}
.ya8{bottom:306.570000px;}
.y114{bottom:307.110000px;}
.y21d{bottom:308.190000px;}
.ydf{bottom:309.270000px;}
.y76{bottom:310.890000px;}
.y194{bottom:313.590000px;}
.y1bb{bottom:314.670000px;}
.y1fa{bottom:315.930000px;}
.y140{bottom:316.830000px;}
.y3b{bottom:317.775000px;}
.y17{bottom:318.270000px;}
.y211{bottom:320.115000px;}
.y16d{bottom:323.355000px;}
.ya7{bottom:323.895000px;}
.y113{bottom:324.435000px;}
.y21c{bottom:325.515000px;}
.yde{bottom:326.595000px;}
.y75{bottom:328.215000px;}
.y193{bottom:330.915000px;}
.y1ba{bottom:331.995000px;}
.y1f9{bottom:333.255000px;}
.y13f{bottom:334.155000px;}
.y3a{bottom:334.695000px;}
.y16{bottom:335.550000px;}
.y210{bottom:338.475000px;}
.ya6{bottom:341.175000px;}
.y112{bottom:341.715000px;}
.y21b{bottom:342.795000px;}
.ydd{bottom:343.875000px;}
.y74{bottom:345.495000px;}
.y14{bottom:348.195000px;}
.y1d1{bottom:349.275000px;}
.y1b9{bottom:350.355000px;}
.y13e{bottom:351.435000px;}
.y1f8{bottom:351.615000px;}
.y15{bottom:352.830000px;}
.y20f{bottom:355.755000px;}
.ya5{bottom:358.455000px;}
.y111{bottom:358.995000px;}
.y21a{bottom:360.075000px;}
.ydc{bottom:361.155000px;}
.y73{bottom:362.595000px;}
.y192{bottom:365.475000px;}
.y1b8{bottom:367.635000px;}
.y13d{bottom:368.715000px;}
.y1f7{bottom:368.895000px;}
.y20e{bottom:374.115000px;}
.ya4{bottom:375.555000px;}
.y110{bottom:376.275000px;}
.y16c{bottom:377.355000px;}
.ydb{bottom:378.435000px;}
.y72{bottom:379.875000px;}
.y191{bottom:382.755000px;}
.y1d0{bottom:384.915000px;}
.y1b7{bottom:385.995000px;}
.y13c{bottom:387.075000px;}
.y20d{bottom:392.475000px;}
.ya3{bottom:392.835000px;}
.y10f{bottom:393.555000px;}
.y16b{bottom:394.635000px;}
.yda{bottom:395.715000px;}
.y71{bottom:397.155000px;}
.y243{bottom:399.855000px;}
.y190{bottom:400.035000px;}
.y1cf{bottom:402.195000px;}
.y1b6{bottom:403.275000px;}
.y1f6{bottom:404.355000px;}
.y13b{bottom:405.435000px;}
.y20c{bottom:409.575000px;}
.ya2{bottom:410.115000px;}
.y10e{bottom:410.655000px;}
.y16a{bottom:411.735000px;}
.yd9{bottom:412.815000px;}
.y70{bottom:414.435000px;}
.y18f{bottom:417.135000px;}
.y1ce{bottom:419.295000px;}
.y1b5{bottom:420.375000px;}
.y1f5{bottom:422.715000px;}
.y13a{bottom:423.615000px;}
.y20b{bottom:426.855000px;}
.ya1{bottom:427.395000px;}
.y10d{bottom:427.935000px;}
.y169{bottom:429.015000px;}
.yd8{bottom:430.095000px;}
.y6f{bottom:431.715000px;}
.y18e{bottom:434.415000px;}
.y1cd{bottom:436.575000px;}
.y1b4{bottom:437.655000px;}
.y1f4{bottom:439.995000px;}
.y139{bottom:441.975000px;}
.y20a{bottom:444.135000px;}
.ya0{bottom:444.675000px;}
.y10c{bottom:445.215000px;}
.y168{bottom:446.295000px;}
.yd7{bottom:447.375000px;}
.y6e{bottom:448.995000px;}
.y18d{bottom:451.695000px;}
.y1cc{bottom:453.855000px;}
.y1b3{bottom:454.935000px;}
.y1f3{bottom:458.355000px;}
.y138{bottom:460.335000px;}
.y209{bottom:461.415000px;}
.y9f{bottom:461.775000px;}
.y10b{bottom:462.495000px;}
.y167{bottom:463.575000px;}
.yd6{bottom:464.655000px;}
.y6d{bottom:466.095000px;}
.y33{bottom:467.715000px;}
.y18c{bottom:468.975000px;}
.y1cb{bottom:472.215000px;}
.y1b2{bottom:473.295000px;}
.y1f2{bottom:475.635000px;}
.y137{bottom:477.615000px;}
.y208{bottom:478.695000px;}
.y9e{bottom:479.055000px;}
.y10a{bottom:479.775000px;}
.y166{bottom:480.855000px;}
.yd5{bottom:481.935000px;}
.y6c{bottom:483.375000px;}
.y18b{bottom:486.255000px;}
.y1ca{bottom:490.575000px;}
.y1b1{bottom:491.655000px;}
.y1f1{bottom:493.815000px;}
.y136{bottom:494.895000px;}
.y207{bottom:495.975000px;}
.y9d{bottom:496.335000px;}
.y109{bottom:497.055000px;}
.y165{bottom:498.135000px;}
.yd4{bottom:499.215000px;}
.y6b{bottom:500.655000px;}
.y242{bottom:503.355000px;}
.y18a{bottom:503.535000px;}
.y1c9{bottom:507.675000px;}
.y1b0{bottom:509.835000px;}
.y135{bottom:511.995000px;}
.y1f0{bottom:512.175000px;}
.y206{bottom:513.075000px;}
.y9c{bottom:513.615000px;}
.y108{bottom:514.155000px;}
.y164{bottom:515.235000px;}
.yd3{bottom:516.315000px;}
.y6a{bottom:517.935000px;}
.y189{bottom:520.635000px;}
.y1c8{bottom:526.035000px;}
.y1af{bottom:527.115000px;}
.y134{bottom:529.275000px;}
.y1ef{bottom:529.455000px;}
.y9b{bottom:530.895000px;}
.y107{bottom:531.435000px;}
.y163{bottom:532.515000px;}
.yd2{bottom:533.595000px;}
.y69{bottom:535.215000px;}
.y188{bottom:537.915000px;}
.y1c7{bottom:543.315000px;}
.y1ae{bottom:544.395000px;}
.y133{bottom:546.555000px;}
.y1ee{bottom:547.815000px;}
.y9a{bottom:548.175000px;}
.y106{bottom:548.715000px;}
.y162{bottom:549.795000px;}
.yd1{bottom:550.875000px;}
.y68{bottom:552.495000px;}
.y31{bottom:552.675000px;}
.y187{bottom:555.195000px;}
.y1c6{bottom:560.595000px;}
.y1ad{bottom:561.675000px;}
.y132{bottom:563.835000px;}
.y1ed{bottom:565.095000px;}
.y99{bottom:565.275000px;}
.y105{bottom:565.995000px;}
.y161{bottom:567.075000px;}
.yd0{bottom:568.185000px;}
.y67{bottom:569.625000px;}
.y241{bottom:572.505000px;}
.y28{bottom:573.585000px;}
.y1ac{bottom:578.985000px;}
.y131{bottom:581.145000px;}
.y98{bottom:582.585000px;}
.y104{bottom:583.305000px;}
.y160{bottom:584.385000px;}
.ycf{bottom:585.465000px;}
.y66{bottom:586.905000px;}
.y240{bottom:589.785000px;}
.y186{bottom:590.865000px;}
.y1ab{bottom:596.265000px;}
.y130{bottom:598.425000px;}
.y97{bottom:599.865000px;}
.y103{bottom:600.585000px;}
.y15f{bottom:601.485000px;}
.y1ec{bottom:601.665000px;}
.yce{bottom:602.565000px;}
.y65{bottom:604.185000px;}
.y23f{bottom:606.885000px;}
.y185{bottom:609.045000px;}
.y1aa{bottom:613.365000px;}
.y1c5{bottom:614.445000px;}
.y12f{bottom:615.525000px;}
.y96{bottom:617.145000px;}
.y102{bottom:617.685000px;}
.y15e{bottom:618.765000px;}
.y1eb{bottom:618.945000px;}
.ycd{bottom:619.845000px;}
.y64{bottom:621.465000px;}
.y23e{bottom:624.165000px;}
.y184{bottom:626.325000px;}
.y1a9{bottom:630.645000px;}
.y1c4{bottom:631.725000px;}
.y12e{bottom:632.805000px;}
.y95{bottom:634.425000px;}
.y101{bottom:634.965000px;}
.y15d{bottom:636.045000px;}
.y1ea{bottom:636.225000px;}
.ycc{bottom:637.125000px;}
.y63{bottom:638.745000px;}
.y23d{bottom:641.445000px;}
.y183{bottom:644.685000px;}
.y1a8{bottom:647.925000px;}
.y12d{bottom:650.085000px;}
.y94{bottom:651.705000px;}
.y100{bottom:652.245000px;}
.y15c{bottom:653.325000px;}
.y1e9{bottom:653.505000px;}
.ycb{bottom:654.405000px;}
.y62{bottom:655.845000px;}
.y248{bottom:658.005000px;}
.y23c{bottom:658.725000px;}
.y182{bottom:661.965000px;}
.y1a7{bottom:666.285000px;}
.y12c{bottom:667.365000px;}
.y93{bottom:668.805000px;}
.yff{bottom:669.525000px;}
.y15b{bottom:670.605000px;}
.y1e8{bottom:670.785000px;}
.yca{bottom:671.685000px;}
.y24e{bottom:672.765000px;}
.y61{bottom:673.125000px;}
.y23b{bottom:676.005000px;}
.y181{bottom:680.325000px;}
.y1a6{bottom:683.565000px;}
.y12b{bottom:684.645000px;}
.y92{bottom:686.085000px;}
.yfe{bottom:686.805000px;}
.y15a{bottom:687.885000px;}
.yc9{bottom:688.965000px;}
.y60{bottom:690.405000px;}
.y23a{bottom:693.285000px;}
.y180{bottom:697.605000px;}
.y12a{bottom:701.745000px;}
.y91{bottom:703.365000px;}
.yfd{bottom:703.905000px;}
.y159{bottom:704.985000px;}
.y1e7{bottom:705.165000px;}
.yc8{bottom:706.065000px;}
.y5f{bottom:707.685000px;}
.y239{bottom:710.385000px;}
.y12{bottom:715.785000px;}
.y129{bottom:719.025000px;}
.y1a5{bottom:720.105000px;}
.y90{bottom:720.645000px;}
.yfc{bottom:721.185000px;}
.y158{bottom:722.265000px;}
.y1e6{bottom:722.445000px;}
.yc7{bottom:723.345000px;}
.y5e{bottom:724.965000px;}
.y238{bottom:727.665000px;}
.y17f{bottom:733.065000px;}
.y128{bottom:736.305000px;}
.y1a4{bottom:737.385000px;}
.y8f{bottom:737.925000px;}
.yfb{bottom:738.465000px;}
.y157{bottom:739.545000px;}
.y1e5{bottom:739.725000px;}
.yc6{bottom:740.625000px;}
.y5d{bottom:742.245000px;}
.y237{bottom:744.945000px;}
.y11{bottom:750.345000px;}
.y127{bottom:753.585000px;}
.y8e{bottom:755.205000px;}
.yfa{bottom:755.745000px;}
.y156{bottom:756.825000px;}
.y1e4{bottom:757.005000px;}
.yc5{bottom:757.905000px;}
.y5c{bottom:759.345000px;}
.y24d{bottom:759.885000px;}
.y236{bottom:762.225000px;}
.y17e{bottom:768.705000px;}
.y10{bottom:770.325000px;}
.y126{bottom:771.945000px;}
.y8d{bottom:772.305000px;}
.yf9{bottom:773.025000px;}
.y155{bottom:774.105000px;}
.y24a{bottom:774.465000px;}
.yc4{bottom:775.185000px;}
.y5b{bottom:776.625000px;}
.y235{bottom:779.505000px;}
.y17d{bottom:787.065000px;}
.y125{bottom:789.225000px;}
.y8c{bottom:789.585000px;}
.yf8{bottom:790.305000px;}
.y154{bottom:791.385000px;}
.yc3{bottom:792.465000px;}
.y5a{bottom:793.905000px;}
.y234{bottom:796.605000px;}
.yf{bottom:799.125000px;}
.y17c{bottom:805.245000px;}
.y8b{bottom:806.865000px;}
.yf7{bottom:807.405000px;}
.y153{bottom:808.485000px;}
.y1e3{bottom:808.665000px;}
.yc2{bottom:809.565000px;}
.y59{bottom:811.185000px;}
.y233{bottom:813.885000px;}
.ye{bottom:818.025000px;}
.y17b{bottom:822.570000px;}
.y124{bottom:824.730000px;}
.y8a{bottom:825.270000px;}
.yf6{bottom:825.810000px;}
.y1e2{bottom:825.990000px;}
.yc1{bottom:826.890000px;}
.y58{bottom:828.510000px;}
.y249{bottom:830.310000px;}
.y232{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y17a{bottom:839.850000px;}
.y89{bottom:842.550000px;}
.yf5{bottom:843.090000px;}
.y1e1{bottom:843.270000px;}
.yc0{bottom:844.170000px;}
.y57{bottom:845.790000px;}
.y231{bottom:848.490000px;}
.y179{bottom:857.130000px;}
.y88{bottom:859.650000px;}
.y123{bottom:860.370000px;}
.y1e0{bottom:860.550000px;}
.ybf{bottom:861.450000px;}
.y56{bottom:862.890000px;}
.y230{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.y178{bottom:875.490000px;}
.y122{bottom:877.650000px;}
.y87{bottom:878.010000px;}
.ybe{bottom:878.730000px;}
.y1c3{bottom:879.810000px;}
.y55{bottom:880.170000px;}
.y22f{bottom:883.050000px;}
.y177{bottom:893.850000px;}
.y121{bottom:894.930000px;}
.y86{bottom:895.290000px;}
.ybd{bottom:895.830000px;}
.y1a3{bottom:896.910000px;}
.y54{bottom:897.450000px;}
.y22e{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y1de{bottom:909.690000px;}
.y120{bottom:912.030000px;}
.y85{bottom:912.570000px;}
.ybc{bottom:913.110000px;}
.yf4{bottom:914.190000px;}
.y53{bottom:914.730000px;}
.y22d{bottom:917.430000px;}
.y11f{bottom:929.310000px;}
.ya{bottom:930.210000px;}
.ybb{bottom:930.390000px;}
.y84{bottom:930.930000px;}
.yf3{bottom:931.470000px;}
.y52{bottom:932.010000px;}
.y22c{bottom:934.710000px;}
.y1dd{bottom:938.130000px;}
.y8{bottom:945.510000px;}
.y152{bottom:946.590000px;}
.yba{bottom:947.670000px;}
.y83{bottom:948.210000px;}
.yf2{bottom:948.750000px;}
.y51{bottom:949.290000px;}
.y1a2{bottom:949.830000px;}
.y22b{bottom:951.990000px;}
.y151{bottom:963.870000px;}
.yb9{bottom:964.950000px;}
.y82{bottom:965.310000px;}
.y176{bottom:966.030000px;}
.y50{bottom:966.390000px;}
.yf1{bottom:967.110000px;}
.y22a{bottom:969.270000px;}
.y1db{bottom:980.970000px;}
.y150{bottom:981.150000px;}
.yb8{bottom:983.310000px;}
.y4f{bottom:983.670000px;}
.yf0{bottom:984.390000px;}
.y1a1{bottom:985.470000px;}
.y229{bottom:986.550000px;}
.y14f{bottom:998.250000px;}
.yb7{bottom:1000.410000px;}
.y4e{bottom:1000.950000px;}
.y11e{bottom:1001.490000px;}
.yef{bottom:1002.570000px;}
.y228{bottom:1003.650000px;}
.y1d8{bottom:1009.410000px;}
.y14e{bottom:1016.610000px;}
.y1c2{bottom:1017.690000px;}
.y4d{bottom:1018.230000px;}
.yb6{bottom:1018.770000px;}
.yee{bottom:1019.850000px;}
.y1a0{bottom:1020.930000px;}
.y14d{bottom:1034.970000px;}
.y4c{bottom:1035.510000px;}
.yb5{bottom:1036.050000px;}
.y175{bottom:1037.130000px;}
.y1d7{bottom:1037.670000px;}
.yed{bottom:1038.210000px;}
.y4b{bottom:1052.610000px;}
.y14c{bottom:1053.330000px;}
.yb4{bottom:1054.410000px;}
.yec{bottom:1055.490000px;}
.y4a{bottom:1069.890000px;}
.yb3{bottom:1071.720000px;}
.yeb{bottom:1072.800000px;}
.y49{bottom:1086.840000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.680000px;}
.h19{height:13.860000px;}
.he{height:17.280000px;}
.h13{height:20.196000px;}
.h1b{height:27.540000px;}
.h3{height:27.576000px;}
.h1c{height:27.720000px;}
.h5{height:33.683203px;}
.h1a{height:34.036523px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.h4{height:41.726953px;}
.hd{height:42.164648px;}
.h1d{height:42.281367px;}
.h18{height:43.506914px;}
.h12{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.h1e{height:55.116000px;}
.hb{height:65.884219px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h14{height:84.240000px;}
.h20{height:86.400000px;}
.h17{height:118.800000px;}
.h10{height:141.480000px;}
.h7{height:153.930000px;}
.hf{height:366.870000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.wc{width:68.436000px;}
.w9{width:69.660000px;}
.w8{width:72.036000px;}
.wa{width:107.280000px;}
.w7{width:124.560000px;}
.w6{width:220.170000px;}
.wd{width:310.170000px;}
.wb{width:379.515000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:6.480000px;}
.x3{left:8.460000px;}
.x26{left:9.540000px;}
.x1c{left:14.400000px;}
.x24{left:16.920000px;}
.xf{left:19.980000px;}
.x1e{left:21.240000px;}
.x23{left:22.860000px;}
.x22{left:23.940000px;}
.x13{left:27.360000px;}
.x20{left:30.060000px;}
.x11{left:34.065000px;}
.x12{left:35.865000px;}
.x21{left:37.620000px;}
.x1f{left:39.240000px;}
.x25{left:42.660000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x14{left:65.519986px;}
.x29{left:73.296000px;}
.x19{left:88.199986px;}
.x18{left:92.555986px;}
.x4{left:100.836000px;}
.x28{left:106.590000px;}
.x5{left:108.035986px;}
.x27{left:118.470000px;}
.x9{left:123.875986px;}
.x2a{left:130.536000px;}
.xc{left:306.074986px;}
.xb{left:395.714986px;}
.x8{left:459.074986px;}
.xa{left:464.294986px;}
.xd{left:465.374986px;}
.x15{left:478.334986px;}
.x16{left:479.804986px;}
.x17{left:506.804986px;}
.x1a{left:605.805000px;}
.xe{left:642.345000px;}
.x1b{left:678.750000px;}
.x1d{left:749.130000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.280000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.602667pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.lsb{letter-spacing:40.912640pt;}
.ls13{letter-spacing:54.352640pt;}
.lsc{letter-spacing:56.912640pt;}
.lse{letter-spacing:57.040640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.677333pt;}
.wsc{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-1.040640pt;}
._0{width:1.009280pt;}
._b{width:2.161493pt;}
._d{width:3.240320pt;}
._15{width:4.800000pt;}
._14{width:6.288000pt;}
._21{width:7.248640pt;}
._11{width:8.499200pt;}
._10{width:9.455360pt;}
._c{width:10.464640pt;}
._8{width:12.005120pt;}
._34{width:13.378560pt;}
._f{width:14.909867pt;}
._a{width:15.981867pt;}
._9{width:16.945280pt;}
._27{width:18.113920pt;}
._1d{width:19.176320pt;}
._13{width:20.291840pt;}
._1e{width:21.328640pt;}
._e{width:22.668587pt;}
._1f{width:23.744640pt;}
._12{width:24.647680pt;}
._33{width:25.550720pt;}
._22{width:26.453760pt;}
._20{width:27.569280pt;}
._23{width:28.901760pt;}
._17{width:29.992320pt;}
._19{width:31.287680pt;}
._18{width:32.243840pt;}
._1a{width:33.359360pt;}
._1c{width:34.421760pt;}
._7{width:35.749760pt;}
._25{width:37.237120pt;}
._2d{width:38.165120pt;}
._6{width:39.336960pt;}
._5{width:40.371200pt;}
._31{width:41.498880pt;}
._2e{width:42.916907pt;}
._2f{width:44.253013pt;}
._29{width:45.152000pt;}
._24{width:47.215787pt;}
._2c{width:48.480213pt;}
._28{width:49.817600pt;}
._30{width:51.623680pt;}
._2a{width:53.447040pt;}
._2b{width:54.660480pt;}
._32{width:56.477867pt;}
._16{width:63.984000pt;}
._1b{width:66.028160pt;}
._26{width:69.153280pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._4{width:839.346773pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y39{bottom:2.560000pt;}
.y13{bottom:2.880000pt;}
.y32{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.y1da{bottom:8.320000pt;}
.y1df{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y1d9{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.y1dc{bottom:14.560000pt;}
.y30{bottom:17.120000pt;}
.y253{bottom:17.600000pt;}
.y37{bottom:22.240000pt;}
.y24c{bottom:26.720000pt;}
.y252{bottom:29.920000pt;}
.y7{bottom:31.520000pt;}
.y2f{bottom:31.680000pt;}
.y36{bottom:36.160000pt;}
.y27{bottom:37.600000pt;}
.y24b{bottom:39.040000pt;}
.y251{bottom:42.240000pt;}
.y2e{bottom:45.600000pt;}
.y35{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.y26{bottom:52.960000pt;}
.y250{bottom:54.400000pt;}
.y2d{bottom:59.360000pt;}
.y34{bottom:63.680000pt;}
.y24f{bottom:66.720000pt;}
.y25{bottom:68.320000pt;}
.y2c{bottom:73.120000pt;}
.y24{bottom:83.680000pt;}
.y2b{bottom:86.880000pt;}
.y38{bottom:94.400000pt;}
.y23{bottom:99.040000pt;}
.y174{bottom:99.552000pt;}
.y2a{bottom:100.800000pt;}
.y48{bottom:101.312000pt;}
.yea{bottom:106.272000pt;}
.y19f{bottom:107.232000pt;}
.y81{bottom:107.712000pt;}
.y247{bottom:110.112000pt;}
.y205{bottom:110.272000pt;}
.y219{bottom:112.032000pt;}
.y14b{bottom:112.992000pt;}
.y11d{bottom:113.952000pt;}
.y22{bottom:114.240000pt;}
.y29{bottom:114.560000pt;}
.y173{bottom:114.912000pt;}
.y47{bottom:115.072000pt;}
.yb2{bottom:119.232000pt;}
.y227{bottom:120.672000pt;}
.ye9{bottom:121.632000pt;}
.y1d6{bottom:122.592000pt;}
.y80{bottom:123.072000pt;}
.y19e{bottom:123.552000pt;}
.y246{bottom:125.472000pt;}
.y204{bottom:125.632000pt;}
.y218{bottom:127.392000pt;}
.y14a{bottom:128.352000pt;}
.y46{bottom:128.832000pt;}
.y21{bottom:129.600000pt;}
.y11c{bottom:130.272000pt;}
.yb1{bottom:134.586667pt;}
.y226{bottom:136.026667pt;}
.ye8{bottom:136.986667pt;}
.y1c1{bottom:137.946667pt;}
.y7f{bottom:138.426667pt;}
.y19d{bottom:139.866667pt;}
.y245{bottom:140.826667pt;}
.y203{bottom:141.946667pt;}
.y45{bottom:142.746667pt;}
.y149{bottom:143.706667pt;}
.y20{bottom:144.960000pt;}
.y11b{bottom:146.586667pt;}
.yb0{bottom:149.786667pt;}
.y225{bottom:151.386667pt;}
.ye7{bottom:152.346667pt;}
.y1c0{bottom:153.306667pt;}
.y7e{bottom:153.626667pt;}
.y19c{bottom:156.186667pt;}
.y44{bottom:156.506667pt;}
.y217{bottom:158.106667pt;}
.y202{bottom:158.266667pt;}
.y148{bottom:159.066667pt;}
.y1f{bottom:160.320000pt;}
.y11a{bottom:162.906667pt;}
.yaf{bottom:165.146667pt;}
.y224{bottom:166.746667pt;}
.ye6{bottom:167.706667pt;}
.y1bf{bottom:168.666667pt;}
.y7d{bottom:168.986667pt;}
.y43{bottom:170.266667pt;}
.y19b{bottom:171.546667pt;}
.y201{bottom:173.466667pt;}
.y147{bottom:174.426667pt;}
.y1e{bottom:175.680000pt;}
.y119{bottom:179.226667pt;}
.yae{bottom:180.506667pt;}
.y223{bottom:182.106667pt;}
.ye5{bottom:182.906667pt;}
.y42{bottom:184.026667pt;}
.y7c{bottom:184.346667pt;}
.y1be{bottom:184.986667pt;}
.y244{bottom:186.746667pt;}
.y19a{bottom:186.906667pt;}
.y216{bottom:188.666667pt;}
.y200{bottom:188.826667pt;}
.y146{bottom:189.626667pt;}
.y1d{bottom:191.040000pt;}
.y118{bottom:195.386667pt;}
.yad{bottom:195.866667pt;}
.y222{bottom:197.306667pt;}
.y41{bottom:197.946667pt;}
.ye4{bottom:198.266667pt;}
.y1d5{bottom:199.226667pt;}
.y7b{bottom:199.706667pt;}
.y1bd{bottom:201.146667pt;}
.y199{bottom:202.106667pt;}
.y215{bottom:204.026667pt;}
.y1ff{bottom:204.186667pt;}
.y145{bottom:204.986667pt;}
.y1c{bottom:206.266667pt;}
.y172{bottom:210.746667pt;}
.yac{bottom:211.226667pt;}
.y40{bottom:211.706667pt;}
.y221{bottom:212.666667pt;}
.ye3{bottom:213.626667pt;}
.y7a{bottom:215.066667pt;}
.y1d4{bottom:215.546667pt;}
.y1bc{bottom:216.506667pt;}
.y198{bottom:217.466667pt;}
.y214{bottom:219.386667pt;}
.y1fe{bottom:219.546667pt;}
.y144{bottom:220.346667pt;}
.y1b{bottom:221.626667pt;}
.y3f{bottom:225.466667pt;}
.y171{bottom:226.106667pt;}
.yab{bottom:226.586667pt;}
.y117{bottom:227.066667pt;}
.y220{bottom:228.026667pt;}
.ye2{bottom:228.986667pt;}
.y79{bottom:230.266667pt;}
.y1d3{bottom:231.866667pt;}
.y197{bottom:232.826667pt;}
.y1fd{bottom:234.906667pt;}
.y143{bottom:235.706667pt;}
.y1a{bottom:236.986667pt;}
.y3e{bottom:239.226667pt;}
.y170{bottom:241.466667pt;}
.yaa{bottom:241.786667pt;}
.y116{bottom:242.426667pt;}
.y21f{bottom:243.386667pt;}
.ye1{bottom:244.346667pt;}
.y78{bottom:245.626667pt;}
.y1d2{bottom:247.226667pt;}
.y196{bottom:248.186667pt;}
.y1fc{bottom:250.266667pt;}
.y142{bottom:251.066667pt;}
.y213{bottom:252.026667pt;}
.y19{bottom:252.346667pt;}
.y3d{bottom:253.146667pt;}
.y16f{bottom:256.826667pt;}
.ya9{bottom:257.146667pt;}
.y115{bottom:257.786667pt;}
.y21e{bottom:258.746667pt;}
.ye0{bottom:259.706667pt;}
.y77{bottom:260.986667pt;}
.y195{bottom:263.546667pt;}
.y1fb{bottom:265.466667pt;}
.y141{bottom:266.426667pt;}
.y3c{bottom:267.226667pt;}
.y18{bottom:267.706667pt;}
.y212{bottom:268.346667pt;}
.y16e{bottom:272.026667pt;}
.ya8{bottom:272.506667pt;}
.y114{bottom:272.986667pt;}
.y21d{bottom:273.946667pt;}
.ydf{bottom:274.906667pt;}
.y76{bottom:276.346667pt;}
.y194{bottom:278.746667pt;}
.y1bb{bottom:279.706667pt;}
.y1fa{bottom:280.826667pt;}
.y140{bottom:281.626667pt;}
.y3b{bottom:282.466667pt;}
.y17{bottom:282.906667pt;}
.y211{bottom:284.546667pt;}
.y16d{bottom:287.426667pt;}
.ya7{bottom:287.906667pt;}
.y113{bottom:288.386667pt;}
.y21c{bottom:289.346667pt;}
.yde{bottom:290.306667pt;}
.y75{bottom:291.746667pt;}
.y193{bottom:294.146667pt;}
.y1ba{bottom:295.106667pt;}
.y1f9{bottom:296.226667pt;}
.y13f{bottom:297.026667pt;}
.y3a{bottom:297.506667pt;}
.y16{bottom:298.266667pt;}
.y210{bottom:300.866667pt;}
.ya6{bottom:303.266667pt;}
.y112{bottom:303.746667pt;}
.y21b{bottom:304.706667pt;}
.ydd{bottom:305.666667pt;}
.y74{bottom:307.106667pt;}
.y14{bottom:309.506667pt;}
.y1d1{bottom:310.466667pt;}
.y1b9{bottom:311.426667pt;}
.y13e{bottom:312.386667pt;}
.y1f8{bottom:312.546667pt;}
.y15{bottom:313.626667pt;}
.y20f{bottom:316.226667pt;}
.ya5{bottom:318.626667pt;}
.y111{bottom:319.106667pt;}
.y21a{bottom:320.066667pt;}
.ydc{bottom:321.026667pt;}
.y73{bottom:322.306667pt;}
.y192{bottom:324.866667pt;}
.y1b8{bottom:326.786667pt;}
.y13d{bottom:327.746667pt;}
.y1f7{bottom:327.906667pt;}
.y20e{bottom:332.546667pt;}
.ya4{bottom:333.826667pt;}
.y110{bottom:334.466667pt;}
.y16c{bottom:335.426667pt;}
.ydb{bottom:336.386667pt;}
.y72{bottom:337.666667pt;}
.y191{bottom:340.226667pt;}
.y1d0{bottom:342.146667pt;}
.y1b7{bottom:343.106667pt;}
.y13c{bottom:344.066667pt;}
.y20d{bottom:348.866667pt;}
.ya3{bottom:349.186667pt;}
.y10f{bottom:349.826667pt;}
.y16b{bottom:350.786667pt;}
.yda{bottom:351.746667pt;}
.y71{bottom:353.026667pt;}
.y243{bottom:355.426667pt;}
.y190{bottom:355.586667pt;}
.y1cf{bottom:357.506667pt;}
.y1b6{bottom:358.466667pt;}
.y1f6{bottom:359.426667pt;}
.y13b{bottom:360.386667pt;}
.y20c{bottom:364.066667pt;}
.ya2{bottom:364.546667pt;}
.y10e{bottom:365.026667pt;}
.y16a{bottom:365.986667pt;}
.yd9{bottom:366.946667pt;}
.y70{bottom:368.386667pt;}
.y18f{bottom:370.786667pt;}
.y1ce{bottom:372.706667pt;}
.y1b5{bottom:373.666667pt;}
.y1f5{bottom:375.746667pt;}
.y13a{bottom:376.546667pt;}
.y20b{bottom:379.426667pt;}
.ya1{bottom:379.906667pt;}
.y10d{bottom:380.386667pt;}
.y169{bottom:381.346667pt;}
.yd8{bottom:382.306667pt;}
.y6f{bottom:383.746667pt;}
.y18e{bottom:386.146667pt;}
.y1cd{bottom:388.066667pt;}
.y1b4{bottom:389.026667pt;}
.y1f4{bottom:391.106667pt;}
.y139{bottom:392.866667pt;}
.y20a{bottom:394.786667pt;}
.ya0{bottom:395.266667pt;}
.y10c{bottom:395.746667pt;}
.y168{bottom:396.706667pt;}
.yd7{bottom:397.666667pt;}
.y6e{bottom:399.106667pt;}
.y18d{bottom:401.506667pt;}
.y1cc{bottom:403.426667pt;}
.y1b3{bottom:404.386667pt;}
.y1f3{bottom:407.426667pt;}
.y138{bottom:409.186667pt;}
.y209{bottom:410.146667pt;}
.y9f{bottom:410.466667pt;}
.y10b{bottom:411.106667pt;}
.y167{bottom:412.066667pt;}
.yd6{bottom:413.026667pt;}
.y6d{bottom:414.306667pt;}
.y33{bottom:415.746667pt;}
.y18c{bottom:416.866667pt;}
.y1cb{bottom:419.746667pt;}
.y1b2{bottom:420.706667pt;}
.y1f2{bottom:422.786667pt;}
.y137{bottom:424.546667pt;}
.y208{bottom:425.506667pt;}
.y9e{bottom:425.826667pt;}
.y10a{bottom:426.466667pt;}
.y166{bottom:427.426667pt;}
.yd5{bottom:428.386667pt;}
.y6c{bottom:429.666667pt;}
.y18b{bottom:432.226667pt;}
.y1ca{bottom:436.066667pt;}
.y1b1{bottom:437.026667pt;}
.y1f1{bottom:438.946667pt;}
.y136{bottom:439.906667pt;}
.y207{bottom:440.866667pt;}
.y9d{bottom:441.186667pt;}
.y109{bottom:441.826667pt;}
.y165{bottom:442.786667pt;}
.yd4{bottom:443.746667pt;}
.y6b{bottom:445.026667pt;}
.y242{bottom:447.426667pt;}
.y18a{bottom:447.586667pt;}
.y1c9{bottom:451.266667pt;}
.y1b0{bottom:453.186667pt;}
.y135{bottom:455.106667pt;}
.y1f0{bottom:455.266667pt;}
.y206{bottom:456.066667pt;}
.y9c{bottom:456.546667pt;}
.y108{bottom:457.026667pt;}
.y164{bottom:457.986667pt;}
.yd3{bottom:458.946667pt;}
.y6a{bottom:460.386667pt;}
.y189{bottom:462.786667pt;}
.y1c8{bottom:467.586667pt;}
.y1af{bottom:468.546667pt;}
.y134{bottom:470.466667pt;}
.y1ef{bottom:470.626667pt;}
.y9b{bottom:471.906667pt;}
.y107{bottom:472.386667pt;}
.y163{bottom:473.346667pt;}
.yd2{bottom:474.306667pt;}
.y69{bottom:475.746667pt;}
.y188{bottom:478.146667pt;}
.y1c7{bottom:482.946667pt;}
.y1ae{bottom:483.906667pt;}
.y133{bottom:485.826667pt;}
.y1ee{bottom:486.946667pt;}
.y9a{bottom:487.266667pt;}
.y106{bottom:487.746667pt;}
.y162{bottom:488.706667pt;}
.yd1{bottom:489.666667pt;}
.y68{bottom:491.106667pt;}
.y31{bottom:491.266667pt;}
.y187{bottom:493.506667pt;}
.y1c6{bottom:498.306667pt;}
.y1ad{bottom:499.266667pt;}
.y132{bottom:501.186667pt;}
.y1ed{bottom:502.306667pt;}
.y99{bottom:502.466667pt;}
.y105{bottom:503.106667pt;}
.y161{bottom:504.066667pt;}
.yd0{bottom:505.053333pt;}
.y67{bottom:506.333333pt;}
.y241{bottom:508.893333pt;}
.y28{bottom:509.853333pt;}
.y1ac{bottom:514.653333pt;}
.y131{bottom:516.573333pt;}
.y98{bottom:517.853333pt;}
.y104{bottom:518.493333pt;}
.y160{bottom:519.453333pt;}
.ycf{bottom:520.413333pt;}
.y66{bottom:521.693333pt;}
.y240{bottom:524.253333pt;}
.y186{bottom:525.213333pt;}
.y1ab{bottom:530.013333pt;}
.y130{bottom:531.933333pt;}
.y97{bottom:533.213333pt;}
.y103{bottom:533.853333pt;}
.y15f{bottom:534.653333pt;}
.y1ec{bottom:534.813333pt;}
.yce{bottom:535.613333pt;}
.y65{bottom:537.053333pt;}
.y23f{bottom:539.453333pt;}
.y185{bottom:541.373333pt;}
.y1aa{bottom:545.213333pt;}
.y1c5{bottom:546.173333pt;}
.y12f{bottom:547.133333pt;}
.y96{bottom:548.573333pt;}
.y102{bottom:549.053333pt;}
.y15e{bottom:550.013333pt;}
.y1eb{bottom:550.173333pt;}
.ycd{bottom:550.973333pt;}
.y64{bottom:552.413333pt;}
.y23e{bottom:554.813333pt;}
.y184{bottom:556.733333pt;}
.y1a9{bottom:560.573333pt;}
.y1c4{bottom:561.533333pt;}
.y12e{bottom:562.493333pt;}
.y95{bottom:563.933333pt;}
.y101{bottom:564.413333pt;}
.y15d{bottom:565.373333pt;}
.y1ea{bottom:565.533333pt;}
.ycc{bottom:566.333333pt;}
.y63{bottom:567.773333pt;}
.y23d{bottom:570.173333pt;}
.y183{bottom:573.053333pt;}
.y1a8{bottom:575.933333pt;}
.y12d{bottom:577.853333pt;}
.y94{bottom:579.293333pt;}
.y100{bottom:579.773333pt;}
.y15c{bottom:580.733333pt;}
.y1e9{bottom:580.893333pt;}
.ycb{bottom:581.693333pt;}
.y62{bottom:582.973333pt;}
.y248{bottom:584.893333pt;}
.y23c{bottom:585.533333pt;}
.y182{bottom:588.413333pt;}
.y1a7{bottom:592.253333pt;}
.y12c{bottom:593.213333pt;}
.y93{bottom:594.493333pt;}
.yff{bottom:595.133333pt;}
.y15b{bottom:596.093333pt;}
.y1e8{bottom:596.253333pt;}
.yca{bottom:597.053333pt;}
.y24e{bottom:598.013333pt;}
.y61{bottom:598.333333pt;}
.y23b{bottom:600.893333pt;}
.y181{bottom:604.733333pt;}
.y1a6{bottom:607.613333pt;}
.y12b{bottom:608.573333pt;}
.y92{bottom:609.853333pt;}
.yfe{bottom:610.493333pt;}
.y15a{bottom:611.453333pt;}
.yc9{bottom:612.413333pt;}
.y60{bottom:613.693333pt;}
.y23a{bottom:616.253333pt;}
.y180{bottom:620.093333pt;}
.y12a{bottom:623.773333pt;}
.y91{bottom:625.213333pt;}
.yfd{bottom:625.693333pt;}
.y159{bottom:626.653333pt;}
.y1e7{bottom:626.813333pt;}
.yc8{bottom:627.613333pt;}
.y5f{bottom:629.053333pt;}
.y239{bottom:631.453333pt;}
.y12{bottom:636.253333pt;}
.y129{bottom:639.133333pt;}
.y1a5{bottom:640.093333pt;}
.y90{bottom:640.573333pt;}
.yfc{bottom:641.053333pt;}
.y158{bottom:642.013333pt;}
.y1e6{bottom:642.173333pt;}
.yc7{bottom:642.973333pt;}
.y5e{bottom:644.413333pt;}
.y238{bottom:646.813333pt;}
.y17f{bottom:651.613333pt;}
.y128{bottom:654.493333pt;}
.y1a4{bottom:655.453333pt;}
.y8f{bottom:655.933333pt;}
.yfb{bottom:656.413333pt;}
.y157{bottom:657.373333pt;}
.y1e5{bottom:657.533333pt;}
.yc6{bottom:658.333333pt;}
.y5d{bottom:659.773333pt;}
.y237{bottom:662.173333pt;}
.y11{bottom:666.973333pt;}
.y127{bottom:669.853333pt;}
.y8e{bottom:671.293333pt;}
.yfa{bottom:671.773333pt;}
.y156{bottom:672.733333pt;}
.y1e4{bottom:672.893333pt;}
.yc5{bottom:673.693333pt;}
.y5c{bottom:674.973333pt;}
.y24d{bottom:675.453333pt;}
.y236{bottom:677.533333pt;}
.y17e{bottom:683.293333pt;}
.y10{bottom:684.733333pt;}
.y126{bottom:686.173333pt;}
.y8d{bottom:686.493333pt;}
.yf9{bottom:687.133333pt;}
.y155{bottom:688.093333pt;}
.y24a{bottom:688.413333pt;}
.yc4{bottom:689.053333pt;}
.y5b{bottom:690.333333pt;}
.y235{bottom:692.893333pt;}
.y17d{bottom:699.613333pt;}
.y125{bottom:701.533333pt;}
.y8c{bottom:701.853333pt;}
.yf8{bottom:702.493333pt;}
.y154{bottom:703.453333pt;}
.yc3{bottom:704.413333pt;}
.y5a{bottom:705.693333pt;}
.y234{bottom:708.093333pt;}
.yf{bottom:710.333333pt;}
.y17c{bottom:715.773333pt;}
.y8b{bottom:717.213333pt;}
.yf7{bottom:717.693333pt;}
.y153{bottom:718.653333pt;}
.y1e3{bottom:718.813333pt;}
.yc2{bottom:719.613333pt;}
.y59{bottom:721.053333pt;}
.y233{bottom:723.453333pt;}
.ye{bottom:727.133333pt;}
.y17b{bottom:731.173333pt;}
.y124{bottom:733.093333pt;}
.y8a{bottom:733.573333pt;}
.yf6{bottom:734.053333pt;}
.y1e2{bottom:734.213333pt;}
.yc1{bottom:735.013333pt;}
.y58{bottom:736.453333pt;}
.y249{bottom:738.053333pt;}
.y232{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y17a{bottom:746.533333pt;}
.y89{bottom:748.933333pt;}
.yf5{bottom:749.413333pt;}
.y1e1{bottom:749.573333pt;}
.yc0{bottom:750.373333pt;}
.y57{bottom:751.813333pt;}
.y231{bottom:754.213333pt;}
.y179{bottom:761.893333pt;}
.y88{bottom:764.133333pt;}
.y123{bottom:764.773333pt;}
.y1e0{bottom:764.933333pt;}
.ybf{bottom:765.733333pt;}
.y56{bottom:767.013333pt;}
.y230{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.y178{bottom:778.213333pt;}
.y122{bottom:780.133333pt;}
.y87{bottom:780.453333pt;}
.ybe{bottom:781.093333pt;}
.y1c3{bottom:782.053333pt;}
.y55{bottom:782.373333pt;}
.y22f{bottom:784.933333pt;}
.y177{bottom:794.533333pt;}
.y121{bottom:795.493333pt;}
.y86{bottom:795.813333pt;}
.ybd{bottom:796.293333pt;}
.y1a3{bottom:797.253333pt;}
.y54{bottom:797.733333pt;}
.y22e{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y1de{bottom:808.613333pt;}
.y120{bottom:810.693333pt;}
.y85{bottom:811.173333pt;}
.ybc{bottom:811.653333pt;}
.yf4{bottom:812.613333pt;}
.y53{bottom:813.093333pt;}
.y22d{bottom:815.493333pt;}
.y11f{bottom:826.053333pt;}
.ya{bottom:826.853333pt;}
.ybb{bottom:827.013333pt;}
.y84{bottom:827.493333pt;}
.yf3{bottom:827.973333pt;}
.y52{bottom:828.453333pt;}
.y22c{bottom:830.853333pt;}
.y1dd{bottom:833.893333pt;}
.y8{bottom:840.453333pt;}
.y152{bottom:841.413333pt;}
.yba{bottom:842.373333pt;}
.y83{bottom:842.853333pt;}
.yf2{bottom:843.333333pt;}
.y51{bottom:843.813333pt;}
.y1a2{bottom:844.293333pt;}
.y22b{bottom:846.213333pt;}
.y151{bottom:856.773333pt;}
.yb9{bottom:857.733333pt;}
.y82{bottom:858.053333pt;}
.y176{bottom:858.693333pt;}
.y50{bottom:859.013333pt;}
.yf1{bottom:859.653333pt;}
.y22a{bottom:861.573333pt;}
.y1db{bottom:871.973333pt;}
.y150{bottom:872.133333pt;}
.yb8{bottom:874.053333pt;}
.y4f{bottom:874.373333pt;}
.yf0{bottom:875.013333pt;}
.y1a1{bottom:875.973333pt;}
.y229{bottom:876.933333pt;}
.y14f{bottom:887.333333pt;}
.yb7{bottom:889.253333pt;}
.y4e{bottom:889.733333pt;}
.y11e{bottom:890.213333pt;}
.yef{bottom:891.173333pt;}
.y228{bottom:892.133333pt;}
.y1d8{bottom:897.253333pt;}
.y14e{bottom:903.653333pt;}
.y1c2{bottom:904.613333pt;}
.y4d{bottom:905.093333pt;}
.yb6{bottom:905.573333pt;}
.yee{bottom:906.533333pt;}
.y1a0{bottom:907.493333pt;}
.y14d{bottom:919.973333pt;}
.y4c{bottom:920.453333pt;}
.yb5{bottom:920.933333pt;}
.y175{bottom:921.893333pt;}
.y1d7{bottom:922.373333pt;}
.yed{bottom:922.853333pt;}
.y4b{bottom:935.653333pt;}
.y14c{bottom:936.293333pt;}
.yb4{bottom:937.253333pt;}
.yec{bottom:938.213333pt;}
.y4a{bottom:951.013333pt;}
.yb3{bottom:952.640000pt;}
.yeb{bottom:953.600000pt;}
.y49{bottom:966.080000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.160000pt;}
.h19{height:12.320000pt;}
.he{height:15.360000pt;}
.h13{height:17.952000pt;}
.h1b{height:24.480000pt;}
.h3{height:24.512000pt;}
.h1c{height:24.640000pt;}
.h5{height:29.940625pt;}
.h1a{height:30.254687pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.h4{height:37.090625pt;}
.hd{height:37.479688pt;}
.h1d{height:37.583438pt;}
.h18{height:38.672812pt;}
.h12{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.h1e{height:48.992000pt;}
.hb{height:58.563750pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h14{height:74.880000pt;}
.h20{height:76.800000pt;}
.h17{height:105.600000pt;}
.h10{height:125.760000pt;}
.h7{height:136.826667pt;}
.hf{height:326.106667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.wc{width:60.832000pt;}
.w9{width:61.920000pt;}
.w8{width:64.032000pt;}
.wa{width:95.360000pt;}
.w7{width:110.720000pt;}
.w6{width:195.706667pt;}
.wd{width:275.706667pt;}
.wb{width:337.346667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.760000pt;}
.x3{left:7.520000pt;}
.x26{left:8.480000pt;}
.x1c{left:12.800000pt;}
.x24{left:15.040000pt;}
.xf{left:17.760000pt;}
.x1e{left:18.880000pt;}
.x23{left:20.320000pt;}
.x22{left:21.280000pt;}
.x13{left:24.320000pt;}
.x20{left:26.720000pt;}
.x11{left:30.280000pt;}
.x12{left:31.880000pt;}
.x21{left:33.440000pt;}
.x1f{left:34.880000pt;}
.x25{left:37.920000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x14{left:58.239988pt;}
.x29{left:65.152000pt;}
.x19{left:78.399988pt;}
.x18{left:82.271988pt;}
.x4{left:89.632000pt;}
.x28{left:94.746667pt;}
.x5{left:96.031988pt;}
.x27{left:105.306667pt;}
.x9{left:110.111988pt;}
.x2a{left:116.032000pt;}
.xc{left:272.066655pt;}
.xb{left:351.746655pt;}
.x8{left:408.066655pt;}
.xa{left:412.706655pt;}
.xd{left:413.666655pt;}
.x15{left:425.186655pt;}
.x16{left:426.493321pt;}
.x17{left:450.493321pt;}
.x1a{left:538.493333pt;}
.xe{left:570.973333pt;}
.x1b{left:603.333333pt;}
.x1d{left:665.893333pt;}
.x7{left:722.213333pt;}
}




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