
    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_20ed9be6becdc0e6e5cbc6cc.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_3eb869693217ba5833739136.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_ba6724e1654a686ac9aa82d8.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_1a5742d8c5cc70dcaa74a0df.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_e5e7130f5dc3084d97f3e3c9.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_0aa4775effc4da48ad867bc8.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6950194bfc835e2d7947e339.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_de97b3a3174e671d43777ad1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6d3870c0bbe28dbc53162b1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773926;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);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-66.420000px;}
.v5{vertical-align:-63.360000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls17{letter-spacing:-15.660000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.584400px;}
.ls8{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.269400px;}
.ls19{letter-spacing:-0.206400px;}
.ls2d{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.lsf{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.135600px;}
.lsb{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181440px;}
.ls21{letter-spacing:0.206400px;}
.ls1e{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:1.386720px;}
.ls27{letter-spacing:1.620000px;}
.ls25{letter-spacing:2.340000px;}
.ls22{letter-spacing:3.780000px;}
.ls2a{letter-spacing:4.406400px;}
.ls24{letter-spacing:5.220000px;}
.ls1b{letter-spacing:6.660000px;}
.ls26{letter-spacing:9.540000px;}
.ls1d{letter-spacing:10.260000px;}
.ls28{letter-spacing:15.120000px;}
.ls3{letter-spacing:21.780000px;}
.ls29{letter-spacing:57.780000px;}
.ls4{letter-spacing:66.162720px;}
.lsd{letter-spacing:91.362720px;}
.ls13{letter-spacing:570.600000px;}
.ls10{letter-spacing:661.320000px;}
.ls14{letter-spacing:793.800000px;}
.ls18{letter-spacing:816.096000px;}
.ls11{letter-spacing:974.496000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199920px;}
.ws11{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.580000px;}
.wse{word-spacing:-14.328000px;}
.ws5{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.392000px;}
.wsc{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.240000px;}
.ws9{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.790600px;}
.ws13{word-spacing:-11.700000px;}
.ws15{word-spacing:-11.520000px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-7.020000px;}
._12{margin-left:-4.193280px;}
._7{margin-left:-2.982960px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._b{width:3.669600px;}
._11{width:5.617440px;}
._c{width:7.231680px;}
._8{width:8.532000px;}
._6{width:9.720000px;}
._5{width:11.070000px;}
._4{width:12.091680px;}
._e{width:13.481040px;}
._29{width:14.568000px;}
._13{width:16.194960px;}
._d{width:17.928000px;}
._1c{width:19.021920px;}
._a{width:20.838000px;}
._9{width:22.302000px;}
._23{width:23.648160px;}
._18{width:25.935840px;}
._19{width:27.858000px;}
._1d{width:30.136080px;}
._27{width:31.548960px;}
._1f{width:33.506640px;}
._26{width:35.708160px;}
._20{width:36.793440px;}
._25{width:38.969040px;}
._24{width:39.990960px;}
._1a{width:43.329360px;}
._22{width:47.768160px;}
._1e{width:50.119920px;}
._28{width:51.268320px;}
._1b{width:53.436000px;}
._2a{width:57.422400px;}
._21{width:59.887920px;}
._2b{width:62.765280px;}
._2c{width:64.314720px;}
._14{width:67.656000px;}
._f{width:509.086560px;}
._16{width:736.380000px;}
._10{width:865.686720px;}
._17{width:1073.100000px;}
._3{width:1101.786720px;}
.fc3{color:rgb(19,20,19);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:2.520000px;}
.y32{bottom:2.880000px;}
.yc5{bottom:3.060000px;}
.y13{bottom:3.240000px;}
.yc6{bottom:3.420000px;}
.y16a{bottom:3.600000px;}
.y16c{bottom:3.780000px;}
.yce{bottom:4.140000px;}
.y1e2{bottom:4.500000px;}
.y1d3{bottom:4.680000px;}
.y111{bottom:8.460000px;}
.y1ed{bottom:8.634000px;}
.y3b{bottom:9.000000px;}
.yf6{bottom:9.360000px;}
.yf9{bottom:9.540000px;}
.y41{bottom:12.240000px;}
.yf3{bottom:16.200000px;}
.yf5{bottom:16.380000px;}
.y31{bottom:18.360000px;}
.y173{bottom:20.514000px;}
.y18{bottom:20.520000px;}
.y1ec{bottom:24.114000px;}
.y1d1{bottom:24.300000px;}
.y40{bottom:29.520000px;}
.yf2{bottom:30.060000px;}
.y30{bottom:33.840000px;}
.y172{bottom:37.794000px;}
.y17{bottom:37.800000px;}
.y1eb{bottom:39.774000px;}
.y1d0{bottom:39.780000px;}
.y3f{bottom:46.800000px;}
.y2f{bottom:49.500000px;}
.y171{bottom:55.074000px;}
.y16{bottom:55.080000px;}
.y1ea{bottom:55.254000px;}
.y1cf{bottom:55.260000px;}
.y1e0{bottom:55.440000px;}
.y3e{bottom:64.080000px;}
.y2e{bottom:64.980000px;}
.y3a{bottom:66.060000px;}
.y1e9{bottom:70.734000px;}
.y1ce{bottom:70.740000px;}
.y1d7{bottom:70.920000px;}
.y1df{bottom:70.965000px;}
.y170{bottom:72.174000px;}
.y2d{bottom:80.460000px;}
.y15{bottom:81.180000px;}
.y1e8{bottom:86.214000px;}
.y1cd{bottom:86.400000px;}
.y1de{bottom:86.445000px;}
.y5{bottom:88.200000px;}
.y3d{bottom:90.180000px;}
.y2c{bottom:95.940000px;}
.y1e7{bottom:101.694000px;}
.y1cc{bottom:101.880000px;}
.y1dd{bottom:101.925000px;}
.y175{bottom:111.060000px;}
.y2b{bottom:111.600000px;}
.y10c{bottom:112.320000px;}
.y1e6{bottom:117.354000px;}
.y1cb{bottom:117.360000px;}
.y1dc{bottom:117.585000px;}
.yda{bottom:123.660000px;}
.y1b6{bottom:124.020000px;}
.y4b{bottom:125.820000px;}
.y2a{bottom:127.080000px;}
.y174{bottom:128.340000px;}
.y85{bottom:128.880000px;}
.y10b{bottom:129.600000px;}
.y1ee{bottom:131.220000px;}
.y1e5{bottom:132.834000px;}
.y1ca{bottom:132.840000px;}
.y1d6{bottom:133.020000px;}
.y1db{bottom:133.065000px;}
.y1b5{bottom:137.736000px;}
.y13d{bottom:138.096000px;}
.yd9{bottom:140.976000px;}
.y16f{bottom:142.416000px;}
.y29{bottom:142.560000px;}
.y4a{bottom:143.136000px;}
.y1e3{bottom:145.296000px;}
.yc0{bottom:145.476000px;}
.y84{bottom:146.196000px;}
.y10a{bottom:146.916000px;}
.y1e4{bottom:148.314000px;}
.y1c9{bottom:148.320000px;}
.y1d5{bottom:148.530000px;}
.y1da{bottom:148.545000px;}
.y1b4{bottom:151.590000px;}
.y13c{bottom:155.190000px;}
.y28{bottom:158.070000px;}
.yd8{bottom:158.250000px;}
.y49{bottom:160.410000px;}
.ybf{bottom:162.750000px;}
.y83{bottom:163.470000px;}
.y109{bottom:164.190000px;}
.y1b3{bottom:165.450000px;}
.y13b{bottom:172.470000px;}
.y27{bottom:173.730000px;}
.yd7{bottom:175.350000px;}
.y48{bottom:177.690000px;}
.y1b2{bottom:179.130000px;}
.ybe{bottom:179.850000px;}
.y82{bottom:180.750000px;}
.y108{bottom:181.290000px;}
.y26{bottom:189.210000px;}
.y13a{bottom:189.390000px;}
.yd6{bottom:192.630000px;}
.y1b1{bottom:192.990000px;}
.y47{bottom:194.970000px;}
.ybd{bottom:197.130000px;}
.y81{bottom:197.850000px;}
.y107{bottom:198.570000px;}
.y25{bottom:204.690000px;}
.y139{bottom:205.230000px;}
.y1b0{bottom:206.850000px;}
.yd5{bottom:209.910000px;}
.y46{bottom:212.250000px;}
.y39{bottom:213.840000px;}
.ybc{bottom:214.410000px;}
.y80{bottom:215.130000px;}
.y106{bottom:215.850000px;}
.y24{bottom:220.170000px;}
.y1af{bottom:220.530000px;}
.y138{bottom:222.510000px;}
.yd4{bottom:227.190000px;}
.y45{bottom:229.350000px;}
.y38{bottom:231.120000px;}
.ybb{bottom:231.690000px;}
.y16e{bottom:231.870000px;}
.y7f{bottom:232.410000px;}
.y105{bottom:233.130000px;}
.y1ae{bottom:234.390000px;}
.y23{bottom:235.830000px;}
.y137{bottom:239.790000px;}
.yd3{bottom:244.470000px;}
.y44{bottom:246.630000px;}
.y1ad{bottom:248.250000px;}
.y37{bottom:248.430000px;}
.yba{bottom:248.970000px;}
.y7e{bottom:249.690000px;}
.y104{bottom:250.410000px;}
.y22{bottom:251.310000px;}
.y136{bottom:257.070000px;}
.yd2{bottom:261.750000px;}
.y1ac{bottom:261.930000px;}
.y43{bottom:263.550000px;}
.y16d{bottom:263.910000px;}
.y36{bottom:265.710000px;}
.yb9{bottom:266.250000px;}
.y21{bottom:266.790000px;}
.y7d{bottom:266.970000px;}
.y103{bottom:267.690000px;}
.y135{bottom:274.350000px;}
.y1ab{bottom:275.790000px;}
.yd1{bottom:278.130000px;}
.y42{bottom:279.210000px;}
.y16b{bottom:281.190000px;}
.y20{bottom:282.270000px;}
.y35{bottom:282.990000px;}
.yb8{bottom:283.350000px;}
.y7c{bottom:284.250000px;}
.y102{bottom:284.790000px;}
.y1aa{bottom:289.650000px;}
.y134{bottom:291.450000px;}
.yd0{bottom:291.990000px;}
.y3c{bottom:293.970000px;}
.y1f{bottom:297.930000px;}
.y169{bottom:298.470000px;}
.y34{bottom:300.090000px;}
.yb7{bottom:300.630000px;}
.y7b{bottom:301.350000px;}
.y101{bottom:302.070000px;}
.y1a9{bottom:303.330000px;}
.ycf{bottom:304.050000px;}
.y1e1{bottom:307.290000px;}
.y133{bottom:308.730000px;}
.y1e{bottom:313.410000px;}
.y168{bottom:316.470000px;}
.y1a8{bottom:317.190000px;}
.yb6{bottom:317.910000px;}
.y7a{bottom:318.630000px;}
.y100{bottom:319.350000px;}
.ycd{bottom:321.330000px;}
.y1d9{bottom:324.390000px;}
.y132{bottom:326.010000px;}
.y33{bottom:326.370000px;}
.y1d{bottom:328.890000px;}
.y1a7{bottom:331.050000px;}
.yb5{bottom:335.190000px;}
.y79{bottom:335.910000px;}
.yff{bottom:336.630000px;}
.y167{bottom:337.710000px;}
.ycc{bottom:338.610000px;}
.y131{bottom:342.930000px;}
.y1c{bottom:344.370000px;}
.y1a6{bottom:344.730000px;}
.yb4{bottom:352.470000px;}
.ycb{bottom:353.010000px;}
.y78{bottom:353.190000px;}
.yfe{bottom:353.910000px;}
.y166{bottom:354.810000px;}
.y1a5{bottom:358.590000px;}
.y130{bottom:358.770000px;}
.yb3{bottom:369.750000px;}
.y77{bottom:370.470000px;}
.yfd{bottom:371.010000px;}
.y165{bottom:372.090000px;}
.y1a4{bottom:372.450000px;}
.y12f{bottom:376.050000px;}
.y1a3{bottom:386.130000px;}
.yb2{bottom:386.850000px;}
.yca{bottom:387.435000px;}
.y76{bottom:387.795000px;}
.yfc{bottom:388.335000px;}
.y164{bottom:389.415000px;}
.y12e{bottom:393.375000px;}
.y1a2{bottom:400.035000px;}
.yc9{bottom:401.295000px;}
.yb1{bottom:404.175000px;}
.y75{bottom:404.895000px;}
.yfb{bottom:405.615000px;}
.y163{bottom:406.335000px;}
.y19{bottom:407.955000px;}
.y12d{bottom:410.655000px;}
.yc8{bottom:413.355000px;}
.y1a1{bottom:413.895000px;}
.yb0{bottom:421.455000px;}
.y162{bottom:421.815000px;}
.y74{bottom:422.175000px;}
.y1a0{bottom:427.575000px;}
.y12c{bottom:427.755000px;}
.yc7{bottom:428.835000px;}
.y1a{bottom:431.310000px;}
.yfa{bottom:436.035000px;}
.y161{bottom:437.655000px;}
.yaf{bottom:438.735000px;}
.y73{bottom:439.455000px;}
.y19f{bottom:441.435000px;}
.yc4{bottom:442.515000px;}
.y12b{bottom:445.035000px;}
.yf8{bottom:447.915000px;}
.y160{bottom:454.935000px;}
.y19e{bottom:455.295000px;}
.yae{bottom:456.015000px;}
.y72{bottom:456.735000px;}
.yc3{bottom:458.175000px;}
.y12a{bottom:461.955000px;}
.y19d{bottom:468.975000px;}
.y15f{bottom:471.855000px;}
.yc1{bottom:472.575000px;}
.yad{bottom:473.115000px;}
.y71{bottom:474.015000px;}
.yf7{bottom:475.635000px;}
.y129{bottom:477.795000px;}
.y19c{bottom:482.835000px;}
.y1d8{bottom:486.435000px;}
.y15e{bottom:487.515000px;}
.yac{bottom:490.395000px;}
.y70{bottom:491.115000px;}
.y128{bottom:495.075000px;}
.y1b{bottom:496.335000px;}
.y19b{bottom:496.695000px;}
.yf4{bottom:503.175000px;}
.y15d{bottom:503.355000px;}
.y1d4{bottom:503.715000px;}
.yab{bottom:507.675000px;}
.y6f{bottom:508.395000px;}
.y19a{bottom:510.375000px;}
.y127{bottom:512.355000px;}
.y15c{bottom:520.455000px;}
.y199{bottom:524.235000px;}
.yaa{bottom:524.955000px;}
.y6e{bottom:525.675000px;}
.y126{bottom:529.635000px;}
.yf1{bottom:531.615000px;}
.y15b{bottom:537.735000px;}
.y198{bottom:538.095000px;}
.ya9{bottom:542.235000px;}
.y6d{bottom:542.955000px;}
.y125{bottom:546.915000px;}
.y197{bottom:551.775000px;}
.y15a{bottom:555.015000px;}
.ya8{bottom:559.515000px;}
.y6c{bottom:560.235000px;}
.y124{bottom:564.015000px;}
.y196{bottom:565.635000px;}
.y159{bottom:572.295000px;}
.ya7{bottom:576.615000px;}
.y6b{bottom:577.515000px;}
.y195{bottom:579.495000px;}
.y123{bottom:581.295000px;}
.y158{bottom:589.575000px;}
.y194{bottom:593.175000px;}
.yf0{bottom:593.535000px;}
.ya6{bottom:593.895000px;}
.y6a{bottom:594.615000px;}
.y122{bottom:598.575000px;}
.y157{bottom:606.855000px;}
.y193{bottom:607.035000px;}
.yef{bottom:607.215000px;}
.ya5{bottom:611.175000px;}
.y69{bottom:611.895000px;}
.y121{bottom:615.855000px;}
.y192{bottom:620.895000px;}
.yee{bottom:621.795000px;}
.y156{bottom:623.775000px;}
.ya4{bottom:628.455000px;}
.y68{bottom:629.175000px;}
.y120{bottom:633.135000px;}
.y191{bottom:634.575000px;}
.yed{bottom:639.075000px;}
.y155{bottom:639.255000px;}
.ya3{bottom:645.765000px;}
.y67{bottom:646.485000px;}
.y190{bottom:648.465000px;}
.y11f{bottom:650.445000px;}
.y154{bottom:655.125000px;}
.yec{bottom:656.205000px;}
.y18f{bottom:662.325000px;}
.ya2{bottom:663.045000px;}
.y66{bottom:663.765000px;}
.y1d2{bottom:665.745000px;}
.y11e{bottom:667.545000px;}
.y153{bottom:672.405000px;}
.yeb{bottom:673.485000px;}
.y18e{bottom:676.005000px;}
.ya1{bottom:680.145000px;}
.y65{bottom:681.045000px;}
.y1c8{bottom:683.025000px;}
.y11d{bottom:684.825000px;}
.y152{bottom:689.505000px;}
.y18d{bottom:689.865000px;}
.yea{bottom:690.765000px;}
.ya0{bottom:697.425000px;}
.y64{bottom:698.145000px;}
.y11c{bottom:702.105000px;}
.y18c{bottom:703.725000px;}
.y151{bottom:706.605000px;}
.ye9{bottom:708.045000px;}
.y9f{bottom:714.705000px;}
.y63{bottom:715.425000px;}
.y18b{bottom:717.405000px;}
.y11b{bottom:719.385000px;}
.y150{bottom:722.085000px;}
.ye8{bottom:725.325000px;}
.y18a{bottom:731.265000px;}
.y9e{bottom:731.985000px;}
.y62{bottom:732.705000px;}
.y11a{bottom:736.665000px;}
.y14f{bottom:737.925000px;}
.y189{bottom:745.845000px;}
.y9d{bottom:749.265000px;}
.y61{bottom:749.985000px;}
.y119{bottom:753.945000px;}
.y14e{bottom:755.205000px;}
.y14{bottom:758.085000px;}
.y188{bottom:762.765000px;}
.y9c{bottom:766.545000px;}
.y60{bottom:767.265000px;}
.y118{bottom:771.045000px;}
.y14d{bottom:772.305000px;}
.ye7{bottom:775.365000px;}
.y187{bottom:778.245000px;}
.y9b{bottom:783.645000px;}
.y5f{bottom:784.545000px;}
.y117{bottom:788.325000px;}
.y14c{bottom:789.585000px;}
.ye6{bottom:792.645000px;}
.y186{bottom:794.085000px;}
.y9a{bottom:800.925000px;}
.y5e{bottom:801.645000px;}
.y116{bottom:804.885000px;}
.y14b{bottom:806.865000px;}
.ye5{bottom:809.745000px;}
.y185{bottom:811.365000px;}
.y99{bottom:818.205000px;}
.y115{bottom:818.745000px;}
.y5d{bottom:818.925000px;}
.y14a{bottom:824.145000px;}
.ye4{bottom:827.025000px;}
.y184{bottom:828.465000px;}
.y114{bottom:832.425000px;}
.y98{bottom:835.485000px;}
.y5c{bottom:836.205000px;}
.y149{bottom:841.425000px;}
.ye3{bottom:844.305000px;}
.y113{bottom:844.485000px;}
.y183{bottom:845.745000px;}
.y1c7{bottom:847.905000px;}
.y97{bottom:852.765000px;}
.y5b{bottom:853.485000px;}
.y112{bottom:858.345000px;}
.y148{bottom:858.705000px;}
.ye2{bottom:860.865000px;}
.y12{bottom:863.025000px;}
.y1c6{bottom:863.745000px;}
.y96{bottom:869.865000px;}
.y5a{bottom:870.765000px;}
.y110{bottom:872.025000px;}
.ye1{bottom:874.545000px;}
.y147{bottom:875.805000px;}
.y182{bottom:880.305000px;}
.y1c5{bottom:880.665000px;}
.ye0{bottom:886.605000px;}
.y95{bottom:887.145000px;}
.y59{bottom:887.865000px;}
.y146{bottom:893.130000px;}
.y11{bottom:894.570000px;}
.y1c4{bottom:896.370000px;}
.y181{bottom:897.270000px;}
.y10f{bottom:899.790000px;}
.ydf{bottom:900.510000px;}
.y94{bottom:904.470000px;}
.y58{bottom:905.190000px;}
.y10{bottom:910.050000px;}
.y1c3{bottom:911.490000px;}
.y180{bottom:912.750000px;}
.yde{bottom:914.370000px;}
.y93{bottom:921.750000px;}
.y57{bottom:922.470000px;}
.y1c2{bottom:925.170000px;}
.y145{bottom:925.710000px;}
.y17f{bottom:928.590000px;}
.ydd{bottom:928.770000px;}
.yf{bottom:929.670000px;}
.y92{bottom:939.030000px;}
.y56{bottom:939.750000px;}
.y144{bottom:941.550000px;}
.ye{bottom:943.530000px;}
.y17e{bottom:945.870000px;}
.y1c1{bottom:952.890000px;}
.y91{bottom:956.310000px;}
.y55{bottom:957.030000px;}
.yd{bottom:957.390000px;}
.y143{bottom:958.650000px;}
.y10e{bottom:962.430000px;}
.ydc{bottom:963.150000px;}
.y1c0{bottom:966.570000px;}
.yc{bottom:971.070000px;}
.y90{bottom:973.410000px;}
.y54{bottom:974.310000px;}
.y142{bottom:975.930000px;}
.y10d{bottom:976.290000px;}
.ydb{bottom:977.010000px;}
.y17d{bottom:980.430000px;}
.yb{bottom:981.150000px;}
.y8f{bottom:990.690000px;}
.y53{bottom:991.410000px;}
.y141{bottom:993.210000px;}
.y1bf{bottom:994.290000px;}
.y17c{bottom:997.350000px;}
.ya{bottom:998.070000px;}
.y8e{bottom:1007.970000px;}
.y52{bottom:1008.690000px;}
.y140{bottom:1010.490000px;}
.y17b{bottom:1012.830000px;}
.y9{bottom:1013.550000px;}
.y1be{bottom:1021.830000px;}
.y8d{bottom:1025.250000px;}
.y51{bottom:1025.970000px;}
.y13f{bottom:1027.770000px;}
.y17a{bottom:1028.670000px;}
.y8{bottom:1031.550000px;}
.y1bd{bottom:1035.690000px;}
.y8c{bottom:1042.530000px;}
.y50{bottom:1043.250000px;}
.y13e{bottom:1044.690000px;}
.y179{bottom:1045.950000px;}
.y1bc{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y8b{bottom:1059.810000px;}
.y4f{bottom:1060.530000px;}
.y178{bottom:1063.230000px;}
.y8a{bottom:1076.910000px;}
.y1bb{bottom:1077.090000px;}
.y4e{bottom:1077.810000px;}
.y177{bottom:1080.150000px;}
.y6{bottom:1086.630000px;}
.y1ba{bottom:1090.770000px;}
.y89{bottom:1094.190000px;}
.y4d{bottom:1094.910000px;}
.y176{bottom:1095.630000px;}
.y1b9{bottom:1104.630000px;}
.y88{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y1b8{bottom:1118.490000px;}
.y87{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1b7{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y4c{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h1a{height:13.680000px;}
.h19{height:13.860000px;}
.h1e{height:13.896000px;}
.h1c{height:15.480000px;}
.h1b{height:15.660000px;}
.h16{height:17.100000px;}
.h15{height:17.280000px;}
.ha{height:26.280000px;}
.h20{height:27.540000px;}
.h21{height:27.720000px;}
.h22{height:27.756000px;}
.h8{height:29.678906px;}
.h7{height:30.616875px;}
.h1f{height:41.400000px;}
.h1d{height:47.344922px;}
.hf{height:48.410156px;}
.h12{height:52.971680px;}
.h9{height:52.998047px;}
.h18{height:53.573906px;}
.h6{height:54.421875px;}
.h23{height:55.503491px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h17{height:61.423863px;}
.h27{height:62.184375px;}
.h14{height:62.211094px;}
.hb{height:70.664062px;}
.h24{height:86.220000px;}
.h11{height:87.660000px;}
.h5{height:96.508125px;}
.hc{height:104.220000px;}
.h13{height:113.256000px;}
.h25{height:162.000000px;}
.h26{height:162.030000px;}
.h10{height:349.410000px;}
.he{height:365.970000px;}
.hd{height:454.350000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w2c{width:35.640000px;}
.w2d{width:35.820000px;}
.w2e{width:35.856000px;}
.w26{width:48.960000px;}
.wc{width:49.500000px;}
.wa{width:51.480000px;}
.w28{width:51.696000px;}
.wd{width:52.200000px;}
.w13{width:52.740000px;}
.w1f{width:53.136000px;}
.w1e{width:53.280000px;}
.w11{width:62.460000px;}
.w12{width:63.000000px;}
.w20{width:63.360000px;}
.w1d{width:63.720000px;}
.w29{width:68.760000px;}
.w21{width:68.940000px;}
.w14{width:68.976000px;}
.w9{width:70.560000px;}
.w23{width:74.160000px;}
.w1c{width:74.556000px;}
.wb{width:75.276000px;}
.w27{width:76.140000px;}
.w22{width:80.856000px;}
.we{width:88.056000px;}
.w17{width:92.520000px;}
.w24{width:97.380000px;}
.w25{width:104.976000px;}
.w2a{width:106.200000px;}
.w10{width:122.436000px;}
.wf{width:122.580000px;}
.w16{width:126.936000px;}
.w1b{width:127.080000px;}
.w18{width:130.176000px;}
.w1a{width:133.956000px;}
.w32{width:141.120000px;}
.w15{width:142.560000px;}
.w19{width:157.140000px;}
.w2b{width:158.070000px;}
.w31{width:198.570000px;}
.w3{width:209.190000px;}
.w2f{width:214.770000px;}
.w30{width:244.290000px;}
.w5{width:432.975000px;}
.w33{width:517.965000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x30{left:9.180000px;}
.xd{left:10.620000px;}
.x22{left:12.240000px;}
.x21{left:13.320000px;}
.x18{left:14.574000px;}
.x2b{left:16.200000px;}
.x40{left:18.000000px;}
.x2d{left:19.080000px;}
.x50{left:20.730000px;}
.x36{left:21.954000px;}
.x25{left:24.660000px;}
.x26{left:26.100000px;}
.x56{left:27.540000px;}
.x1e{left:28.650000px;}
.x4a{left:29.925000px;}
.x32{left:31.134000px;}
.x54{left:32.580000px;}
.x24{left:35.274000px;}
.x4c{left:36.534000px;}
.x3c{left:37.800000px;}
.x49{left:40.494000px;}
.x4b{left:42.114000px;}
.x27{left:43.950000px;}
.x55{left:46.440000px;}
.x23{left:50.760000px;}
.x31{left:52.965000px;}
.x3e{left:56.385000px;}
.x28{left:61.200000px;}
.x34{left:63.405000px;}
.x3f{left:66.060000px;}
.x3d{left:68.040000px;}
.x33{left:71.280000px;}
.xf{left:106.380000px;}
.xb{left:125.496000px;}
.x1{left:127.655987px;}
.x65{left:132.294000px;}
.x29{left:135.216000px;}
.x8{left:138.635987px;}
.x35{left:139.716000px;}
.x17{left:141.156000px;}
.x2{left:143.855987px;}
.x12{left:154.649987px;}
.x15{left:157.349987px;}
.x16{left:159.689987px;}
.x3{left:168.689987px;}
.x13{left:170.489987px;}
.x11{left:181.649987px;}
.x6{left:194.429987px;}
.x2a{left:197.670000px;}
.x19{left:211.710000px;}
.x7{left:218.729987px;}
.x4d{left:225.030000px;}
.x37{left:232.230000px;}
.x41{left:254.730000px;}
.x2c{left:260.670000px;}
.x1a{left:263.190000px;}
.x66{left:268.770000px;}
.x57{left:286.095000px;}
.xa{left:301.934987px;}
.x58{left:321.735000px;}
.x42{left:329.295000px;}
.x9{left:335.234987px;}
.x1b{left:338.475000px;}
.x4{left:342.974987px;}
.xe{left:355.935000px;}
.x59{left:357.555000px;}
.x38{left:362.415000px;}
.x4e{left:378.975000px;}
.x1c{left:387.975000px;}
.x43{left:393.015000px;}
.x39{left:414.615000px;}
.x10{left:424.875000px;}
.x5a{left:429.015000px;}
.x1d{left:440.175000px;}
.x44{left:446.295000px;}
.x4f{left:455.115000px;}
.x5{left:457.274987px;}
.x5b{left:464.655000px;}
.x3a{left:483.585000px;}
.x45{left:499.425000px;}
.x5c{left:500.505000px;}
.x51{left:506.805000px;}
.x2e{left:509.865000px;}
.x1f{left:528.225000px;}
.x5d{left:536.145000px;}
.x46{left:562.785000px;}
.x5e{left:571.965000px;}
.x52{left:575.565000px;}
.x64{left:587.445000px;}
.x5f{left:607.605000px;}
.x47{left:631.725000px;}
.x3b{left:640.725000px;}
.x60{left:643.425000px;}
.x20{left:650.805000px;}
.x2f{left:652.425000px;}
.x61{left:679.110000px;}
.x53{left:680.550000px;}
.x48{left:712.590000px;}
.x62{left:714.930000px;}
.x63{left:750.750000px;}
.x14{left:756.870000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-59.040000pt;}
.v5{vertical-align:-56.320000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls17{letter-spacing:-13.920000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.519467pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls19{letter-spacing:-0.183467pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.lsf{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.120533pt;}
.lsb{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161280pt;}
.ls21{letter-spacing:0.183467pt;}
.ls1e{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:1.232640pt;}
.ls27{letter-spacing:1.440000pt;}
.ls25{letter-spacing:2.080000pt;}
.ls22{letter-spacing:3.360000pt;}
.ls2a{letter-spacing:3.916800pt;}
.ls24{letter-spacing:4.640000pt;}
.ls1b{letter-spacing:5.920000pt;}
.ls26{letter-spacing:8.480000pt;}
.ls1d{letter-spacing:9.120000pt;}
.ls28{letter-spacing:13.440000pt;}
.ls3{letter-spacing:19.360000pt;}
.ls29{letter-spacing:51.360000pt;}
.ls4{letter-spacing:58.811307pt;}
.lsd{letter-spacing:81.211307pt;}
.ls13{letter-spacing:507.200000pt;}
.ls10{letter-spacing:587.840000pt;}
.ls14{letter-spacing:705.600000pt;}
.ls18{letter-spacing:725.418667pt;}
.ls11{letter-spacing:866.218667pt;}
.ws12{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.511040pt;}
.ws11{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.736000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.880000pt;}
.ws9{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.480533pt;}
.ws13{word-spacing:-10.400000pt;}
.ws15{word-spacing:-10.240000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-6.240000pt;}
._12{margin-left:-3.727360pt;}
._7{margin-left:-2.651520pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._b{width:3.261867pt;}
._11{width:4.993280pt;}
._c{width:6.428160pt;}
._8{width:7.584000pt;}
._6{width:8.640000pt;}
._5{width:9.840000pt;}
._4{width:10.748160pt;}
._e{width:11.983147pt;}
._29{width:12.949333pt;}
._13{width:14.395520pt;}
._d{width:15.936000pt;}
._1c{width:16.908373pt;}
._a{width:18.522667pt;}
._9{width:19.824000pt;}
._23{width:21.020587pt;}
._18{width:23.054080pt;}
._19{width:24.762667pt;}
._1d{width:26.787627pt;}
._27{width:28.043520pt;}
._1f{width:29.783680pt;}
._26{width:31.740587pt;}
._20{width:32.705280pt;}
._25{width:34.639147pt;}
._24{width:35.547520pt;}
._1a{width:38.514987pt;}
._22{width:42.460587pt;}
._1e{width:44.551040pt;}
._28{width:45.571840pt;}
._1b{width:47.498667pt;}
._2a{width:51.042133pt;}
._21{width:53.233707pt;}
._2b{width:55.791360pt;}
._2c{width:57.168640pt;}
._14{width:60.138667pt;}
._f{width:452.521387pt;}
._16{width:654.560000pt;}
._10{width:769.499307pt;}
._17{width:953.866667pt;}
._3{width:979.365973pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.240000pt;}
.y32{bottom:2.560000pt;}
.yc5{bottom:2.720000pt;}
.y13{bottom:2.880000pt;}
.yc6{bottom:3.040000pt;}
.y16a{bottom:3.200000pt;}
.y16c{bottom:3.360000pt;}
.yce{bottom:3.680000pt;}
.y1e2{bottom:4.000000pt;}
.y1d3{bottom:4.160000pt;}
.y111{bottom:7.520000pt;}
.y1ed{bottom:7.674667pt;}
.y3b{bottom:8.000000pt;}
.yf6{bottom:8.320000pt;}
.yf9{bottom:8.480000pt;}
.y41{bottom:10.880000pt;}
.yf3{bottom:14.400000pt;}
.yf5{bottom:14.560000pt;}
.y31{bottom:16.320000pt;}
.y173{bottom:18.234667pt;}
.y18{bottom:18.240000pt;}
.y1ec{bottom:21.434667pt;}
.y1d1{bottom:21.600000pt;}
.y40{bottom:26.240000pt;}
.yf2{bottom:26.720000pt;}
.y30{bottom:30.080000pt;}
.y172{bottom:33.594667pt;}
.y17{bottom:33.600000pt;}
.y1eb{bottom:35.354667pt;}
.y1d0{bottom:35.360000pt;}
.y3f{bottom:41.600000pt;}
.y2f{bottom:44.000000pt;}
.y171{bottom:48.954667pt;}
.y16{bottom:48.960000pt;}
.y1ea{bottom:49.114667pt;}
.y1cf{bottom:49.120000pt;}
.y1e0{bottom:49.280000pt;}
.y3e{bottom:56.960000pt;}
.y2e{bottom:57.760000pt;}
.y3a{bottom:58.720000pt;}
.y1e9{bottom:62.874667pt;}
.y1ce{bottom:62.880000pt;}
.y1d7{bottom:63.040000pt;}
.y1df{bottom:63.080000pt;}
.y170{bottom:64.154667pt;}
.y2d{bottom:71.520000pt;}
.y15{bottom:72.160000pt;}
.y1e8{bottom:76.634667pt;}
.y1cd{bottom:76.800000pt;}
.y1de{bottom:76.840000pt;}
.y5{bottom:78.400000pt;}
.y3d{bottom:80.160000pt;}
.y2c{bottom:85.280000pt;}
.y1e7{bottom:90.394667pt;}
.y1cc{bottom:90.560000pt;}
.y1dd{bottom:90.600000pt;}
.y175{bottom:98.720000pt;}
.y2b{bottom:99.200000pt;}
.y10c{bottom:99.840000pt;}
.y1e6{bottom:104.314667pt;}
.y1cb{bottom:104.320000pt;}
.y1dc{bottom:104.520000pt;}
.yda{bottom:109.920000pt;}
.y1b6{bottom:110.240000pt;}
.y4b{bottom:111.840000pt;}
.y2a{bottom:112.960000pt;}
.y174{bottom:114.080000pt;}
.y85{bottom:114.560000pt;}
.y10b{bottom:115.200000pt;}
.y1ee{bottom:116.640000pt;}
.y1e5{bottom:118.074667pt;}
.y1ca{bottom:118.080000pt;}
.y1d6{bottom:118.240000pt;}
.y1db{bottom:118.280000pt;}
.y1b5{bottom:122.432000pt;}
.y13d{bottom:122.752000pt;}
.yd9{bottom:125.312000pt;}
.y16f{bottom:126.592000pt;}
.y29{bottom:126.720000pt;}
.y4a{bottom:127.232000pt;}
.y1e3{bottom:129.152000pt;}
.yc0{bottom:129.312000pt;}
.y84{bottom:129.952000pt;}
.y10a{bottom:130.592000pt;}
.y1e4{bottom:131.834667pt;}
.y1c9{bottom:131.840000pt;}
.y1d5{bottom:132.026667pt;}
.y1da{bottom:132.040000pt;}
.y1b4{bottom:134.746667pt;}
.y13c{bottom:137.946667pt;}
.y28{bottom:140.506667pt;}
.yd8{bottom:140.666667pt;}
.y49{bottom:142.586667pt;}
.ybf{bottom:144.666667pt;}
.y83{bottom:145.306667pt;}
.y109{bottom:145.946667pt;}
.y1b3{bottom:147.066667pt;}
.y13b{bottom:153.306667pt;}
.y27{bottom:154.426667pt;}
.yd7{bottom:155.866667pt;}
.y48{bottom:157.946667pt;}
.y1b2{bottom:159.226667pt;}
.ybe{bottom:159.866667pt;}
.y82{bottom:160.666667pt;}
.y108{bottom:161.146667pt;}
.y26{bottom:168.186667pt;}
.y13a{bottom:168.346667pt;}
.yd6{bottom:171.226667pt;}
.y1b1{bottom:171.546667pt;}
.y47{bottom:173.306667pt;}
.ybd{bottom:175.226667pt;}
.y81{bottom:175.866667pt;}
.y107{bottom:176.506667pt;}
.y25{bottom:181.946667pt;}
.y139{bottom:182.426667pt;}
.y1b0{bottom:183.866667pt;}
.yd5{bottom:186.586667pt;}
.y46{bottom:188.666667pt;}
.y39{bottom:190.080000pt;}
.ybc{bottom:190.586667pt;}
.y80{bottom:191.226667pt;}
.y106{bottom:191.866667pt;}
.y24{bottom:195.706667pt;}
.y1af{bottom:196.026667pt;}
.y138{bottom:197.786667pt;}
.yd4{bottom:201.946667pt;}
.y45{bottom:203.866667pt;}
.y38{bottom:205.440000pt;}
.ybb{bottom:205.946667pt;}
.y16e{bottom:206.106667pt;}
.y7f{bottom:206.586667pt;}
.y105{bottom:207.226667pt;}
.y1ae{bottom:208.346667pt;}
.y23{bottom:209.626667pt;}
.y137{bottom:213.146667pt;}
.yd3{bottom:217.306667pt;}
.y44{bottom:219.226667pt;}
.y1ad{bottom:220.666667pt;}
.y37{bottom:220.826667pt;}
.yba{bottom:221.306667pt;}
.y7e{bottom:221.946667pt;}
.y104{bottom:222.586667pt;}
.y22{bottom:223.386667pt;}
.y136{bottom:228.506667pt;}
.yd2{bottom:232.666667pt;}
.y1ac{bottom:232.826667pt;}
.y43{bottom:234.266667pt;}
.y16d{bottom:234.586667pt;}
.y36{bottom:236.186667pt;}
.yb9{bottom:236.666667pt;}
.y21{bottom:237.146667pt;}
.y7d{bottom:237.306667pt;}
.y103{bottom:237.946667pt;}
.y135{bottom:243.866667pt;}
.y1ab{bottom:245.146667pt;}
.yd1{bottom:247.226667pt;}
.y42{bottom:248.186667pt;}
.y16b{bottom:249.946667pt;}
.y20{bottom:250.906667pt;}
.y35{bottom:251.546667pt;}
.yb8{bottom:251.866667pt;}
.y7c{bottom:252.666667pt;}
.y102{bottom:253.146667pt;}
.y1aa{bottom:257.466667pt;}
.y134{bottom:259.066667pt;}
.yd0{bottom:259.546667pt;}
.y3c{bottom:261.306667pt;}
.y1f{bottom:264.826667pt;}
.y169{bottom:265.306667pt;}
.y34{bottom:266.746667pt;}
.yb7{bottom:267.226667pt;}
.y7b{bottom:267.866667pt;}
.y101{bottom:268.506667pt;}
.y1a9{bottom:269.626667pt;}
.ycf{bottom:270.266667pt;}
.y1e1{bottom:273.146667pt;}
.y133{bottom:274.426667pt;}
.y1e{bottom:278.586667pt;}
.y168{bottom:281.306667pt;}
.y1a8{bottom:281.946667pt;}
.yb6{bottom:282.586667pt;}
.y7a{bottom:283.226667pt;}
.y100{bottom:283.866667pt;}
.ycd{bottom:285.626667pt;}
.y1d9{bottom:288.346667pt;}
.y132{bottom:289.786667pt;}
.y33{bottom:290.106667pt;}
.y1d{bottom:292.346667pt;}
.y1a7{bottom:294.266667pt;}
.yb5{bottom:297.946667pt;}
.y79{bottom:298.586667pt;}
.yff{bottom:299.226667pt;}
.y167{bottom:300.186667pt;}
.ycc{bottom:300.986667pt;}
.y131{bottom:304.826667pt;}
.y1c{bottom:306.106667pt;}
.y1a6{bottom:306.426667pt;}
.yb4{bottom:313.306667pt;}
.ycb{bottom:313.786667pt;}
.y78{bottom:313.946667pt;}
.yfe{bottom:314.586667pt;}
.y166{bottom:315.386667pt;}
.y1a5{bottom:318.746667pt;}
.y130{bottom:318.906667pt;}
.yb3{bottom:328.666667pt;}
.y77{bottom:329.306667pt;}
.yfd{bottom:329.786667pt;}
.y165{bottom:330.746667pt;}
.y1a4{bottom:331.066667pt;}
.y12f{bottom:334.266667pt;}
.y1a3{bottom:343.226667pt;}
.yb2{bottom:343.866667pt;}
.yca{bottom:344.386667pt;}
.y76{bottom:344.706667pt;}
.yfc{bottom:345.186667pt;}
.y164{bottom:346.146667pt;}
.y12e{bottom:349.666667pt;}
.y1a2{bottom:355.586667pt;}
.yc9{bottom:356.706667pt;}
.yb1{bottom:359.266667pt;}
.y75{bottom:359.906667pt;}
.yfb{bottom:360.546667pt;}
.y163{bottom:361.186667pt;}
.y19{bottom:362.626667pt;}
.y12d{bottom:365.026667pt;}
.yc8{bottom:367.426667pt;}
.y1a1{bottom:367.906667pt;}
.yb0{bottom:374.626667pt;}
.y162{bottom:374.946667pt;}
.y74{bottom:375.266667pt;}
.y1a0{bottom:380.066667pt;}
.y12c{bottom:380.226667pt;}
.yc7{bottom:381.186667pt;}
.y1a{bottom:383.386667pt;}
.yfa{bottom:387.586667pt;}
.y161{bottom:389.026667pt;}
.yaf{bottom:389.986667pt;}
.y73{bottom:390.626667pt;}
.y19f{bottom:392.386667pt;}
.yc4{bottom:393.346667pt;}
.y12b{bottom:395.586667pt;}
.yf8{bottom:398.146667pt;}
.y160{bottom:404.386667pt;}
.y19e{bottom:404.706667pt;}
.yae{bottom:405.346667pt;}
.y72{bottom:405.986667pt;}
.yc3{bottom:407.266667pt;}
.y12a{bottom:410.626667pt;}
.y19d{bottom:416.866667pt;}
.y15f{bottom:419.426667pt;}
.yc1{bottom:420.066667pt;}
.yad{bottom:420.546667pt;}
.y71{bottom:421.346667pt;}
.yf7{bottom:422.786667pt;}
.y129{bottom:424.706667pt;}
.y19c{bottom:429.186667pt;}
.y1d8{bottom:432.386667pt;}
.y15e{bottom:433.346667pt;}
.yac{bottom:435.906667pt;}
.y70{bottom:436.546667pt;}
.y128{bottom:440.066667pt;}
.y1b{bottom:441.186667pt;}
.y19b{bottom:441.506667pt;}
.yf4{bottom:447.266667pt;}
.y15d{bottom:447.426667pt;}
.y1d4{bottom:447.746667pt;}
.yab{bottom:451.266667pt;}
.y6f{bottom:451.906667pt;}
.y19a{bottom:453.666667pt;}
.y127{bottom:455.426667pt;}
.y15c{bottom:462.626667pt;}
.y199{bottom:465.986667pt;}
.yaa{bottom:466.626667pt;}
.y6e{bottom:467.266667pt;}
.y126{bottom:470.786667pt;}
.yf1{bottom:472.546667pt;}
.y15b{bottom:477.986667pt;}
.y198{bottom:478.306667pt;}
.ya9{bottom:481.986667pt;}
.y6d{bottom:482.626667pt;}
.y125{bottom:486.146667pt;}
.y197{bottom:490.466667pt;}
.y15a{bottom:493.346667pt;}
.ya8{bottom:497.346667pt;}
.y6c{bottom:497.986667pt;}
.y124{bottom:501.346667pt;}
.y196{bottom:502.786667pt;}
.y159{bottom:508.706667pt;}
.ya7{bottom:512.546667pt;}
.y6b{bottom:513.346667pt;}
.y195{bottom:515.106667pt;}
.y123{bottom:516.706667pt;}
.y158{bottom:524.066667pt;}
.y194{bottom:527.266667pt;}
.yf0{bottom:527.586667pt;}
.ya6{bottom:527.906667pt;}
.y6a{bottom:528.546667pt;}
.y122{bottom:532.066667pt;}
.y157{bottom:539.426667pt;}
.y193{bottom:539.586667pt;}
.yef{bottom:539.746667pt;}
.ya5{bottom:543.266667pt;}
.y69{bottom:543.906667pt;}
.y121{bottom:547.426667pt;}
.y192{bottom:551.906667pt;}
.yee{bottom:552.706667pt;}
.y156{bottom:554.466667pt;}
.ya4{bottom:558.626667pt;}
.y68{bottom:559.266667pt;}
.y120{bottom:562.786667pt;}
.y191{bottom:564.066667pt;}
.yed{bottom:568.066667pt;}
.y155{bottom:568.226667pt;}
.ya3{bottom:574.013333pt;}
.y67{bottom:574.653333pt;}
.y190{bottom:576.413333pt;}
.y11f{bottom:578.173333pt;}
.y154{bottom:582.333333pt;}
.yec{bottom:583.293333pt;}
.y18f{bottom:588.733333pt;}
.ya2{bottom:589.373333pt;}
.y66{bottom:590.013333pt;}
.y1d2{bottom:591.773333pt;}
.y11e{bottom:593.373333pt;}
.y153{bottom:597.693333pt;}
.yeb{bottom:598.653333pt;}
.y18e{bottom:600.893333pt;}
.ya1{bottom:604.573333pt;}
.y65{bottom:605.373333pt;}
.y1c8{bottom:607.133333pt;}
.y11d{bottom:608.733333pt;}
.y152{bottom:612.893333pt;}
.y18d{bottom:613.213333pt;}
.yea{bottom:614.013333pt;}
.ya0{bottom:619.933333pt;}
.y64{bottom:620.573333pt;}
.y11c{bottom:624.093333pt;}
.y18c{bottom:625.533333pt;}
.y151{bottom:628.093333pt;}
.ye9{bottom:629.373333pt;}
.y9f{bottom:635.293333pt;}
.y63{bottom:635.933333pt;}
.y18b{bottom:637.693333pt;}
.y11b{bottom:639.453333pt;}
.y150{bottom:641.853333pt;}
.ye8{bottom:644.733333pt;}
.y18a{bottom:650.013333pt;}
.y9e{bottom:650.653333pt;}
.y62{bottom:651.293333pt;}
.y11a{bottom:654.813333pt;}
.y14f{bottom:655.933333pt;}
.y189{bottom:662.973333pt;}
.y9d{bottom:666.013333pt;}
.y61{bottom:666.653333pt;}
.y119{bottom:670.173333pt;}
.y14e{bottom:671.293333pt;}
.y14{bottom:673.853333pt;}
.y188{bottom:678.013333pt;}
.y9c{bottom:681.373333pt;}
.y60{bottom:682.013333pt;}
.y118{bottom:685.373333pt;}
.y14d{bottom:686.493333pt;}
.ye7{bottom:689.213333pt;}
.y187{bottom:691.773333pt;}
.y9b{bottom:696.573333pt;}
.y5f{bottom:697.373333pt;}
.y117{bottom:700.733333pt;}
.y14c{bottom:701.853333pt;}
.ye6{bottom:704.573333pt;}
.y186{bottom:705.853333pt;}
.y9a{bottom:711.933333pt;}
.y5e{bottom:712.573333pt;}
.y116{bottom:715.453333pt;}
.y14b{bottom:717.213333pt;}
.ye5{bottom:719.773333pt;}
.y185{bottom:721.213333pt;}
.y99{bottom:727.293333pt;}
.y115{bottom:727.773333pt;}
.y5d{bottom:727.933333pt;}
.y14a{bottom:732.573333pt;}
.ye4{bottom:735.133333pt;}
.y184{bottom:736.413333pt;}
.y114{bottom:739.933333pt;}
.y98{bottom:742.653333pt;}
.y5c{bottom:743.293333pt;}
.y149{bottom:747.933333pt;}
.ye3{bottom:750.493333pt;}
.y113{bottom:750.653333pt;}
.y183{bottom:751.773333pt;}
.y1c7{bottom:753.693333pt;}
.y97{bottom:758.013333pt;}
.y5b{bottom:758.653333pt;}
.y112{bottom:762.973333pt;}
.y148{bottom:763.293333pt;}
.ye2{bottom:765.213333pt;}
.y12{bottom:767.133333pt;}
.y1c6{bottom:767.773333pt;}
.y96{bottom:773.213333pt;}
.y5a{bottom:774.013333pt;}
.y110{bottom:775.133333pt;}
.ye1{bottom:777.373333pt;}
.y147{bottom:778.493333pt;}
.y182{bottom:782.493333pt;}
.y1c5{bottom:782.813333pt;}
.ye0{bottom:788.093333pt;}
.y95{bottom:788.573333pt;}
.y59{bottom:789.213333pt;}
.y146{bottom:793.893333pt;}
.y11{bottom:795.173333pt;}
.y1c4{bottom:796.773333pt;}
.y181{bottom:797.573333pt;}
.y10f{bottom:799.813333pt;}
.ydf{bottom:800.453333pt;}
.y94{bottom:803.973333pt;}
.y58{bottom:804.613333pt;}
.y10{bottom:808.933333pt;}
.y1c3{bottom:810.213333pt;}
.y180{bottom:811.333333pt;}
.yde{bottom:812.773333pt;}
.y93{bottom:819.333333pt;}
.y57{bottom:819.973333pt;}
.y1c2{bottom:822.373333pt;}
.y145{bottom:822.853333pt;}
.y17f{bottom:825.413333pt;}
.ydd{bottom:825.573333pt;}
.yf{bottom:826.373333pt;}
.y92{bottom:834.693333pt;}
.y56{bottom:835.333333pt;}
.y144{bottom:836.933333pt;}
.ye{bottom:838.693333pt;}
.y17e{bottom:840.773333pt;}
.y1c1{bottom:847.013333pt;}
.y91{bottom:850.053333pt;}
.y55{bottom:850.693333pt;}
.yd{bottom:851.013333pt;}
.y143{bottom:852.133333pt;}
.y10e{bottom:855.493333pt;}
.ydc{bottom:856.133333pt;}
.y1c0{bottom:859.173333pt;}
.yc{bottom:863.173333pt;}
.y90{bottom:865.253333pt;}
.y54{bottom:866.053333pt;}
.y142{bottom:867.493333pt;}
.y10d{bottom:867.813333pt;}
.ydb{bottom:868.453333pt;}
.y17d{bottom:871.493333pt;}
.yb{bottom:872.133333pt;}
.y8f{bottom:880.613333pt;}
.y53{bottom:881.253333pt;}
.y141{bottom:882.853333pt;}
.y1bf{bottom:883.813333pt;}
.y17c{bottom:886.533333pt;}
.ya{bottom:887.173333pt;}
.y8e{bottom:895.973333pt;}
.y52{bottom:896.613333pt;}
.y140{bottom:898.213333pt;}
.y17b{bottom:900.293333pt;}
.y9{bottom:900.933333pt;}
.y1be{bottom:908.293333pt;}
.y8d{bottom:911.333333pt;}
.y51{bottom:911.973333pt;}
.y13f{bottom:913.573333pt;}
.y17a{bottom:914.373333pt;}
.y8{bottom:916.933333pt;}
.y1bd{bottom:920.613333pt;}
.y8c{bottom:926.693333pt;}
.y50{bottom:927.333333pt;}
.y13e{bottom:928.613333pt;}
.y179{bottom:929.733333pt;}
.y1bc{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y8b{bottom:942.053333pt;}
.y4f{bottom:942.693333pt;}
.y178{bottom:945.093333pt;}
.y8a{bottom:957.253333pt;}
.y1bb{bottom:957.413333pt;}
.y4e{bottom:958.053333pt;}
.y177{bottom:960.133333pt;}
.y6{bottom:965.893333pt;}
.y1ba{bottom:969.573333pt;}
.y89{bottom:972.613333pt;}
.y4d{bottom:973.253333pt;}
.y176{bottom:973.893333pt;}
.y1b9{bottom:981.893333pt;}
.y88{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y1b8{bottom:994.213333pt;}
.y87{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1b7{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y4c{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h1a{height:12.160000pt;}
.h19{height:12.320000pt;}
.h1e{height:12.352000pt;}
.h1c{height:13.760000pt;}
.h1b{height:13.920000pt;}
.h16{height:15.200000pt;}
.h15{height:15.360000pt;}
.ha{height:23.360000pt;}
.h20{height:24.480000pt;}
.h21{height:24.640000pt;}
.h22{height:24.672000pt;}
.h8{height:26.381250pt;}
.h7{height:27.215000pt;}
.h1f{height:36.800000pt;}
.h1d{height:42.084375pt;}
.hf{height:43.031250pt;}
.h12{height:47.085938pt;}
.h9{height:47.109375pt;}
.h18{height:47.621250pt;}
.h6{height:48.375000pt;}
.h23{height:49.336436pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h17{height:54.598989pt;}
.h27{height:55.275000pt;}
.h14{height:55.298750pt;}
.hb{height:62.812500pt;}
.h24{height:76.640000pt;}
.h11{height:77.920000pt;}
.h5{height:85.785000pt;}
.hc{height:92.640000pt;}
.h13{height:100.672000pt;}
.h25{height:144.000000pt;}
.h26{height:144.026667pt;}
.h10{height:310.586667pt;}
.he{height:325.306667pt;}
.hd{height:403.866667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w2c{width:31.680000pt;}
.w2d{width:31.840000pt;}
.w2e{width:31.872000pt;}
.w26{width:43.520000pt;}
.wc{width:44.000000pt;}
.wa{width:45.760000pt;}
.w28{width:45.952000pt;}
.wd{width:46.400000pt;}
.w13{width:46.880000pt;}
.w1f{width:47.232000pt;}
.w1e{width:47.360000pt;}
.w11{width:55.520000pt;}
.w12{width:56.000000pt;}
.w20{width:56.320000pt;}
.w1d{width:56.640000pt;}
.w29{width:61.120000pt;}
.w21{width:61.280000pt;}
.w14{width:61.312000pt;}
.w9{width:62.720000pt;}
.w23{width:65.920000pt;}
.w1c{width:66.272000pt;}
.wb{width:66.912000pt;}
.w27{width:67.680000pt;}
.w22{width:71.872000pt;}
.we{width:78.272000pt;}
.w17{width:82.240000pt;}
.w24{width:86.560000pt;}
.w25{width:93.312000pt;}
.w2a{width:94.400000pt;}
.w10{width:108.832000pt;}
.wf{width:108.960000pt;}
.w16{width:112.832000pt;}
.w1b{width:112.960000pt;}
.w18{width:115.712000pt;}
.w1a{width:119.072000pt;}
.w32{width:125.440000pt;}
.w15{width:126.720000pt;}
.w19{width:139.680000pt;}
.w2b{width:140.506667pt;}
.w31{width:176.506667pt;}
.w3{width:185.946667pt;}
.w2f{width:190.906667pt;}
.w30{width:217.146667pt;}
.w5{width:384.866667pt;}
.w33{width:460.413333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x30{left:8.160000pt;}
.xd{left:9.440000pt;}
.x22{left:10.880000pt;}
.x21{left:11.840000pt;}
.x18{left:12.954667pt;}
.x2b{left:14.400000pt;}
.x40{left:16.000000pt;}
.x2d{left:16.960000pt;}
.x50{left:18.426667pt;}
.x36{left:19.514667pt;}
.x25{left:21.920000pt;}
.x26{left:23.200000pt;}
.x56{left:24.480000pt;}
.x1e{left:25.466667pt;}
.x4a{left:26.600000pt;}
.x32{left:27.674667pt;}
.x54{left:28.960000pt;}
.x24{left:31.354667pt;}
.x4c{left:32.474667pt;}
.x3c{left:33.600000pt;}
.x49{left:35.994667pt;}
.x4b{left:37.434667pt;}
.x27{left:39.066667pt;}
.x55{left:41.280000pt;}
.x23{left:45.120000pt;}
.x31{left:47.080000pt;}
.x3e{left:50.120000pt;}
.x28{left:54.400000pt;}
.x34{left:56.360000pt;}
.x3f{left:58.720000pt;}
.x3d{left:60.480000pt;}
.x33{left:63.360000pt;}
.xf{left:94.560000pt;}
.xb{left:111.552000pt;}
.x1{left:113.471988pt;}
.x65{left:117.594667pt;}
.x29{left:120.192000pt;}
.x8{left:123.231988pt;}
.x35{left:124.192000pt;}
.x17{left:125.472000pt;}
.x2{left:127.871988pt;}
.x12{left:137.466655pt;}
.x15{left:139.866655pt;}
.x16{left:141.946655pt;}
.x3{left:149.946655pt;}
.x13{left:151.546655pt;}
.x11{left:161.466655pt;}
.x6{left:172.826655pt;}
.x2a{left:175.706667pt;}
.x19{left:188.186667pt;}
.x7{left:194.426655pt;}
.x4d{left:200.026667pt;}
.x37{left:206.426667pt;}
.x41{left:226.426667pt;}
.x2c{left:231.706667pt;}
.x1a{left:233.946667pt;}
.x66{left:238.906667pt;}
.x57{left:254.306667pt;}
.xa{left:268.386655pt;}
.x58{left:285.986667pt;}
.x42{left:292.706667pt;}
.x9{left:297.986655pt;}
.x1b{left:300.866667pt;}
.x4{left:304.866655pt;}
.xe{left:316.386667pt;}
.x59{left:317.826667pt;}
.x38{left:322.146667pt;}
.x4e{left:336.866667pt;}
.x1c{left:344.866667pt;}
.x43{left:349.346667pt;}
.x39{left:368.546667pt;}
.x10{left:377.666667pt;}
.x5a{left:381.346667pt;}
.x1d{left:391.266667pt;}
.x44{left:396.706667pt;}
.x4f{left:404.546667pt;}
.x5{left:406.466655pt;}
.x5b{left:413.026667pt;}
.x3a{left:429.853333pt;}
.x45{left:443.933333pt;}
.x5c{left:444.893333pt;}
.x51{left:450.493333pt;}
.x2e{left:453.213333pt;}
.x1f{left:469.533333pt;}
.x5d{left:476.573333pt;}
.x46{left:500.253333pt;}
.x5e{left:508.413333pt;}
.x52{left:511.613333pt;}
.x64{left:522.173333pt;}
.x5f{left:540.093333pt;}
.x47{left:561.533333pt;}
.x3b{left:569.533333pt;}
.x60{left:571.933333pt;}
.x20{left:578.493333pt;}
.x2f{left:579.933333pt;}
.x61{left:603.653333pt;}
.x53{left:604.933333pt;}
.x48{left:633.413333pt;}
.x62{left:635.493333pt;}
.x63{left:667.333333pt;}
.x14{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; }
  