
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_742b32bd40d034eb9be0a00d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.089844;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_8bc315708b02c0717f28e808.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_fa0ab446e23a17febcf91956.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_a248644655f7d262f135c042.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_5e99ea132ad88fb3b3dd81ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_d3798b72c5029bd81150e8be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053711;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_130a63f7365ba43ea6ad5328.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_aaeecb9dd34d78fcdd6d4403.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020508;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_72540015f972482912ed551e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.087891;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_e763f5850bf906eecb8bdd74.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053711;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:20.880000px;}
.ls22{letter-spacing:-2.250000px;}
.lsb{letter-spacing:-1.326000px;}
.ls9{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.942000px;}
.ls1b{letter-spacing:-0.834000px;}
.ls2e{letter-spacing:-0.606000px;}
.lsa{letter-spacing:-0.388800px;}
.ls5{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.241200px;}
.ls4{letter-spacing:-0.231600px;}
.ls13{letter-spacing:-0.220800px;}
.ls6{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.129600px;}
.ls24{letter-spacing:-0.118200px;}
.ls17{letter-spacing:-0.115200px;}
.ls1e{letter-spacing:-0.087000px;}
.ls1d{letter-spacing:-0.067200px;}
.ls15{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.033120px;}
.ls2d{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.038160px;}
.ls2f{letter-spacing:0.067200px;}
.ls3{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.123000px;}
.ls12{letter-spacing:0.132000px;}
.lsc{letter-spacing:0.147000px;}
.ls1c{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.ls29{letter-spacing:0.195000px;}
.ls7{letter-spacing:0.273000px;}
.ls2a{letter-spacing:0.285600px;}
.ls8{letter-spacing:0.331200px;}
.ls28{letter-spacing:0.478800px;}
.ls26{letter-spacing:0.479520px;}
.lse{letter-spacing:0.486000px;}
.ls23{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.606000px;}
.ls16{letter-spacing:0.852000px;}
.ls18{letter-spacing:1.293120px;}
.ls0{letter-spacing:3.258000px;}
.ls1{letter-spacing:3.438000px;}
.ls2b{letter-spacing:9.534240px;}
.lsf{letter-spacing:13.716000px;}
.ls2c{letter-spacing:72.174240px;}
.ls20{letter-spacing:292.470240px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(70,120,134),0 0.015em rgb(70,120,134),0.015em 0 rgb(70,120,134),0 -0.015em  rgb(70,120,134);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(70,120,134);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.117240px;}
.ws3{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.357760px;}
.ws18{word-spacing:-14.105760px;}
.ws1a{word-spacing:-13.700760px;}
.ws4{word-spacing:-13.644240px;}
.ws10{word-spacing:-13.637760px;}
.ws9{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.438560px;}
.ws15{word-spacing:-13.418760px;}
.ws11{word-spacing:-13.390560px;}
.ws19{word-spacing:-13.387560px;}
.ws12{word-spacing:-13.376160px;}
.wsd{word-spacing:-13.284960px;}
.ws13{word-spacing:-12.671760px;}
.wse{word-spacing:-12.563760px;}
.wsa{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.131280px;}
.ws1{word-spacing:-11.899680px;}
.ws16{word-spacing:-11.255760px;}
.ws1c{word-spacing:-10.969440px;}
.ws2{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.422000px;}
.ws1b{word-spacing:-10.296240px;}
.ws6{word-spacing:-10.260000px;}
.wsc{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-10.104000px;}
._a{margin-left:-7.570800px;}
._1{margin-left:-5.688240px;}
._3{margin-left:-3.826320px;}
._4{margin-left:-2.459280px;}
._2{margin-left:-1.129680px;}
._0{width:1.075680px;}
._9{width:2.086560px;}
._b{width:3.400320px;}
._c{width:4.777680px;}
._7{width:6.760080px;}
._6{width:7.800720px;}
._8{width:8.948160px;}
._13{width:10.096560px;}
._f{width:11.178000px;}
._12{width:12.484080px;}
._10{width:13.764000px;}
._11{width:15.053760px;}
._18{width:16.105920px;}
._d{width:17.164560px;}
._e{width:18.897360px;}
._22{width:19.971840px;}
._19{width:21.035520px;}
._17{width:22.536000px;}
._14{width:24.322320px;}
._15{width:25.435440px;}
._1d{width:27.050160px;}
._1c{width:28.087200px;}
._16{width:32.626320px;}
._1b{width:33.713760px;}
._1a{width:47.055360px;}
._1e{width:66.751920px;}
._1f{width:67.767840px;}
._20{width:72.249840px;}
._21{width:78.823440px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y35{bottom:-36.180000px;}
.y5{bottom:-21.420000px;}
.y34{bottom:-2.520000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.540000px;}
.y1f0{bottom:3.240000px;}
.yc6{bottom:3.960000px;}
.y138{bottom:3.990000px;}
.y160{bottom:8.460000px;}
.y115{bottom:8.640000px;}
.y11b{bottom:9.000000px;}
.y19e{bottom:9.360000px;}
.y1a8{bottom:9.540000px;}
.y112{bottom:9.720000px;}
.y1f8{bottom:10.620000px;}
.y10d{bottom:12.240000px;}
.y1e6{bottom:12.420000px;}
.y169{bottom:12.600000px;}
.y165{bottom:14.400000px;}
.y4{bottom:14.580000px;}
.y38{bottom:14.760000px;}
.y133{bottom:14.940000px;}
.y131{bottom:15.120000px;}
.y33{bottom:16.590000px;}
.y1f7{bottom:17.820000px;}
.y1fa{bottom:17.865000px;}
.y1f5{bottom:18.000000px;}
.y197{bottom:18.540000px;}
.y1a1{bottom:18.570000px;}
.y192{bottom:18.720000px;}
.y1a9{bottom:18.765000px;}
.y118{bottom:19.980000px;}
.y1e1{bottom:20.700000px;}
.y1e5{bottom:20.880000px;}
.yd7{bottom:22.140000px;}
.y137{bottom:22.170000px;}
.yc5{bottom:22.320000px;}
.ycd{bottom:22.365000px;}
.y109{bottom:22.860000px;}
.y1f2{bottom:25.200000px;}
.y1fc{bottom:25.245000px;}
.y200{bottom:25.380000px;}
.y3a{bottom:26.100000px;}
.y15f{bottom:26.820000px;}
.y114{bottom:27.000000px;}
.y11a{bottom:27.360000px;}
.y19d{bottom:27.720000px;}
.y111{bottom:28.080000px;}
.y1e3{bottom:29.160000px;}
.y158{bottom:30.060000px;}
.y10c{bottom:30.600000px;}
.y168{bottom:30.960000px;}
.y37{bottom:31.680000px;}
.y1f4{bottom:32.580000px;}
.y1fb{bottom:32.625000px;}
.y164{bottom:32.760000px;}
.y130{bottom:33.300000px;}
.y3{bottom:35.100000px;}
.y117{bottom:38.340000px;}
.yd2{bottom:40.500000px;}
.y136{bottom:40.530000px;}
.ycc{bottom:40.545000px;}
.y15b{bottom:40.680000px;}
.y15e{bottom:45.030000px;}
.y110{bottom:46.470000px;}
.y1f3{bottom:47.160000px;}
.y201{bottom:47.340000px;}
.y31{bottom:47.520000px;}
.y10b{bottom:48.960000px;}
.y167{bottom:49.140000px;}
.y163{bottom:50.940000px;}
.y2{bottom:58.860000px;}
.ybb{bottom:58.896000px;}
.ycb{bottom:58.905000px;}
.y15a{bottom:59.040000px;}
.y162{bottom:69.300000px;}
.yd1{bottom:77.220000px;}
.yd6{bottom:77.250000px;}
.yca{bottom:77.265000px;}
.y195{bottom:82.080000px;}
.y1a4{bottom:82.125000px;}
.y19b{bottom:91.290000px;}
.yd0{bottom:95.400000px;}
.yd5{bottom:95.430000px;}
.yc9{bottom:95.625000px;}
.y194{bottom:100.440000px;}
.y1a3{bottom:100.485000px;}
.y8a{bottom:111.996000px;}
.y1b6{bottom:113.256000px;}
.y170{bottom:113.436000px;}
.ycf{bottom:113.760000px;}
.yd4{bottom:113.790000px;}
.yc8{bottom:113.805000px;}
.y1b0{bottom:115.596000px;}
.y65{bottom:116.136000px;}
.y124{bottom:121.716000px;}
.y1d8{bottom:125.856000px;}
.y147{bottom:126.216000px;}
.ye8{bottom:129.456000px;}
.y89{bottom:130.176000px;}
.yad{bottom:131.616000px;}
.y12d{bottom:131.796000px;}
.y103{bottom:140.796000px;}
.y1d7{bottom:144.216000px;}
.y88{bottom:148.356000px;}
.y184{bottom:149.976000px;}
.y1af{bottom:152.130000px;}
.y2f{bottom:153.210000px;}
.y146{bottom:153.750000px;}
.y123{bottom:158.250000px;}
.yac{bottom:159.150000px;}
.y64{bottom:160.050000px;}
.ye7{bottom:162.390000px;}
.y1d6{bottom:162.570000px;}
.y87{bottom:166.710000px;}
.y102{bottom:168.150000px;}
.y16f{bottom:168.330000px;}
.y202{bottom:170.850000px;}
.y183{bottom:177.330000px;}
.y1b5{bottom:177.510000px;}
.y1d5{bottom:180.930000px;}
.y145{bottom:181.290000px;}
.y86{bottom:185.070000px;}
.y1ff{bottom:185.970000px;}
.yab{bottom:186.510000px;}
.y12c{bottom:186.690000px;}
.y1ae{bottom:188.850000px;}
.y2e{bottom:189.570000px;}
.y85{bottom:190.290000px;}
.y122{bottom:194.970000px;}
.ye6{bottom:195.510000px;}
.y101{bottom:195.690000px;}
.y1d4{bottom:199.110000px;}
.y63{bottom:203.970000px;}
.y84{bottom:204.510000px;}
.y182{bottom:204.870000px;}
.y144{bottom:208.650000px;}
.yaa{bottom:214.050000px;}
.y12b{bottom:214.230000px;}
.yc3{bottom:215.670000px;}
.y1ad{bottom:216.030000px;}
.y1d3{bottom:217.470000px;}
.y2d{bottom:222.690000px;}
.y100{bottom:223.230000px;}
.ye5{bottom:228.450000px;}
.y121{bottom:231.510000px;}
.y181{bottom:232.410000px;}
.y1d2{bottom:235.830000px;}
.yb8{bottom:236.010000px;}
.ya9{bottom:241.410000px;}
.y12a{bottom:241.590000px;}
.yc2{bottom:243.030000px;}
.y1ac{bottom:243.570000px;}
.y1fe{bottom:245.370000px;}
.y143{bottom:245.550000px;}
.y62{bottom:247.890000px;}
.yff{bottom:250.590000px;}
.y16e{bottom:250.770000px;}
.y83{bottom:252.390000px;}
.y1d1{bottom:254.010000px;}
.y2c{bottom:255.990000px;}
.y120{bottom:258.870000px;}
.y180{bottom:259.770000px;}
.y154{bottom:259.950000px;}
.ye4{bottom:261.390000px;}
.yb7{bottom:263.370000px;}
.y30{bottom:266.250000px;}
.y32{bottom:266.400000px;}
.ya8{bottom:268.950000px;}
.yc1{bottom:270.615000px;}
.y1ab{bottom:271.110000px;}
.y1d0{bottom:272.370000px;}
.y142{bottom:272.730000px;}
.y1fd{bottom:275.430000px;}
.y16d{bottom:278.130000px;}
.y129{bottom:278.490000px;}
.y82{bottom:279.930000px;}
.y11f{bottom:286.230000px;}
.y17f{bottom:287.310000px;}
.yfe{bottom:287.490000px;}
.y2b{bottom:289.110000px;}
.y1cf{bottom:290.730000px;}
.yb6{bottom:290.910000px;}
.y61{bottom:291.810000px;}
.ya7{bottom:296.490000px;}
.y153{bottom:296.670000px;}
.yc0{bottom:297.975000px;}
.y1aa{bottom:298.470000px;}
.y141{bottom:300.270000px;}
.ye3{bottom:300.810000px;}
.y1bb{bottom:305.490000px;}
.y16c{bottom:305.670000px;}
.y81{bottom:307.470000px;}
.y1ce{bottom:309.090000px;}
.y1a2{bottom:313.590000px;}
.y11e{bottom:313.770000px;}
.yfd{bottom:314.670000px;}
.y1dc{bottom:314.850000px;}
.y128{bottom:315.030000px;}
.yb5{bottom:318.495000px;}
.y2a{bottom:322.455000px;}
.ya6{bottom:323.895000px;}
.ybf{bottom:325.515000px;}
.y1cd{bottom:327.315000px;}
.y140{bottom:327.675000px;}
.y16b{bottom:333.075000px;}
.y152{bottom:333.255000px;}
.y80{bottom:334.875000px;}
.ye2{bottom:335.415000px;}
.y60{bottom:335.955000px;}
.y11d{bottom:341.355000px;}
.yfc{bottom:342.255000px;}
.y1cc{bottom:345.675000px;}
.yb4{bottom:345.855000px;}
.y1f9{bottom:350.175000px;}
.y127{bottom:351.255000px;}
.ya5{bottom:351.435000px;}
.ybe{bottom:353.055000px;}
.y13f{bottom:355.215000px;}
.y16a{bottom:360.615000px;}
.y1a7{bottom:362.055000px;}
.y7f{bottom:362.415000px;}
.y29{bottom:363.315000px;}
.y1cb{bottom:364.035000px;}
.yd3{bottom:368.175000px;}
.yfb{bottom:369.615000px;}
.y151{bottom:369.795000px;}
.ye1{bottom:372.855000px;}
.yb3{bottom:373.395000px;}
.y166{bottom:375.735000px;}
.y11c{bottom:378.075000px;}
.ya4{bottom:378.795000px;}
.y18f{bottom:378.975000px;}
.y5f{bottom:379.875000px;}
.y1ca{bottom:382.395000px;}
.y13e{bottom:382.755000px;}
.y28{bottom:384.915000px;}
.y1ba{bottom:387.975000px;}
.y7e{bottom:389.775000px;}
.y119{bottom:393.015000px;}
.yfa{bottom:397.155000px;}
.y1c9{bottom:400.575000px;}
.yb2{bottom:400.755000px;}
.y27{bottom:405.075000px;}
.ya3{bottom:406.335000px;}
.y150{bottom:406.515000px;}
.y1f6{bottom:409.575000px;}
.y13d{bottom:410.115000px;}
.ye0{bottom:410.295000px;}
.y1a6{bottom:410.475000px;}
.y1b9{bottom:415.515000px;}
.y18e{bottom:415.695000px;}
.y7d{bottom:417.315000px;}
.y1c8{bottom:418.935000px;}
.y5e{bottom:423.795000px;}
.yf9{bottom:424.695000px;}
.y26{bottom:425.235000px;}
.yb1{bottom:428.295000px;}
.ya2{bottom:433.695000px;}
.y116{bottom:435.495000px;}
.y1c7{bottom:437.295000px;}
.y13c{bottom:437.655000px;}
.y161{bottom:439.995000px;}
.y18d{bottom:442.875000px;}
.y14f{bottom:443.055000px;}
.y7c{bottom:444.855000px;}
.y25{bottom:445.395000px;}
.ydf{bottom:447.735000px;}
.y17e{bottom:452.055000px;}
.y1f1{bottom:454.215000px;}
.y1c6{bottom:455.475000px;}
.yb0{bottom:455.835000px;}
.y1a5{bottom:458.895000px;}
.ya1{bottom:461.235000px;}
.yf8{bottom:461.415000px;}
.y13b{bottom:465.015000px;}
.y24{bottom:465.555000px;}
.y5d{bottom:467.715000px;}
.y18c{bottom:470.415000px;}
.y7b{bottom:472.215000px;}
.y1c5{bottom:473.835000px;}
.y17d{bottom:479.595000px;}
.y14e{bottom:479.775000px;}
.yde{bottom:485.355000px;}
.y23{bottom:485.715000px;}
.yae{bottom:486.075000px;}
.ya0{bottom:488.775000px;}
.y113{bottom:488.955000px;}
.yaf{bottom:492.015000px;}
.y1c4{bottom:492.195000px;}
.yce{bottom:496.365000px;}
.y18b{bottom:497.955000px;}
.y7a{bottom:499.755000px;}
.y13a{bottom:501.915000px;}
.y22{bottom:505.695000px;}
.y17c{bottom:506.955000px;}
.y19a{bottom:507.135000px;}
.y1c3{bottom:510.555000px;}
.y5c{bottom:511.635000px;}
.y1ef{bottom:513.615000px;}
.y9f{bottom:516.135000px;}
.y14d{bottom:516.315000px;}
.y139{bottom:516.855000px;}
.ydd{bottom:522.795000px;}
.y15d{bottom:524.415000px;}
.y18a{bottom:525.315000px;}
.y21{bottom:525.855000px;}
.y79{bottom:527.115000px;}
.y1c2{bottom:528.735000px;}
.y10f{bottom:531.075000px;}
.y5b{bottom:533.235000px;}
.y17b{bottom:534.495000px;}
.y1b8{bottom:534.675000px;}
.y1ee{bottom:540.795000px;}
.y9e{bottom:543.675000px;}
.y20{bottom:546.015000px;}
.y1c1{bottom:547.095000px;}
.y189{bottom:552.855000px;}
.y14c{bottom:553.035000px;}
.y5a{bottom:553.395000px;}
.y78{bottom:554.655000px;}
.y1a0{bottom:555.555000px;}
.ydc{bottom:560.235000px;}
.y17a{bottom:562.035000px;}
.y135{bottom:565.275000px;}
.y1c0{bottom:565.455000px;}
.y1ed{bottom:565.635000px;}
.y1f{bottom:566.175000px;}
.y9d{bottom:571.065000px;}
.y1b7{bottom:571.245000px;}
.y59{bottom:572.685000px;}
.y188{bottom:580.245000px;}
.y77{bottom:582.045000px;}
.y15c{bottom:584.565000px;}
.y1e{bottom:586.365000px;}
.y58{bottom:589.065000px;}
.y179{bottom:589.425000px;}
.y14b{bottom:589.605000px;}
.y1ec{bottom:590.325000px;}
.y10e{bottom:592.665000px;}
.ydb{bottom:597.705000px;}
.y9c{bottom:598.605000px;}
.y1bf{bottom:602.205000px;}
.y19f{bottom:604.005000px;}
.y57{bottom:605.625000px;}
.y1d{bottom:606.525000px;}
.y187{bottom:607.785000px;}
.y76{bottom:609.585000px;}
.y134{bottom:620.925000px;}
.y56{bottom:622.185000px;}
.y1eb{bottom:623.265000px;}
.yc7{bottom:624.525000px;}
.y9b{bottom:626.145000px;}
.y14a{bottom:626.325000px;}
.y1c{bottom:626.685000px;}
.yda{bottom:635.145000px;}
.y1be{bottom:635.325000px;}
.y75{bottom:637.125000px;}
.y55{bottom:638.565000px;}
.y159{bottom:640.185000px;}
.y1db{bottom:644.505000px;}
.y1b{bottom:646.845000px;}
.y10a{bottom:648.285000px;}
.y19c{bottom:652.425000px;}
.y9a{bottom:653.505000px;}
.y54{bottom:655.125000px;}
.y186{bottom:662.685000px;}
.yf7{bottom:662.865000px;}
.y74{bottom:664.485000px;}
.y1a{bottom:667.005000px;}
.y1ea{bottom:668.085000px;}
.y132{bottom:669.345000px;}
.y53{bottom:671.505000px;}
.yd9{bottom:672.585000px;}
.y99{bottom:681.045000px;}
.y1e9{bottom:681.765000px;}
.y19{bottom:687.165000px;}
.y52{bottom:688.065000px;}
.yf6{bottom:690.225000px;}
.y72{bottom:692.025000px;}
.y73{bottom:697.245000px;}
.y149{bottom:699.405000px;}
.y193{bottom:700.665000px;}
.y51{bottom:704.445000px;}
.y18{bottom:707.145000px;}
.y98{bottom:708.405000px;}
.yd8{bottom:708.585000px;}
.y108{bottom:712.365000px;}
.y157{bottom:714.345000px;}
.yf5{bottom:717.585000px;}
.y71{bottom:719.385000px;}
.y50{bottom:721.005000px;}
.y1b4{bottom:726.765000px;}
.y1bd{bottom:726.945000px;}
.y17{bottom:727.305000px;}
.y1e8{bottom:730.185000px;}
.y97{bottom:735.945000px;}
.y148{bottom:736.125000px;}
.y4f{bottom:737.385000px;}
.yf4{bottom:745.125000px;}
.y70{bottom:746.925000px;}
.y16{bottom:747.465000px;}
.y199{bottom:749.085000px;}
.yc4{bottom:753.450000px;}
.y4e{bottom:753.945000px;}
.y1b3{bottom:754.305000px;}
.y96{bottom:763.485000px;}
.y1bc{bottom:763.665000px;}
.y12f{bottom:766.005000px;}
.y15{bottom:767.625000px;}
.y4d{bottom:770.325000px;}
.yf3{bottom:772.485000px;}
.y107{bottom:772.665000px;}
.y6f{bottom:774.465000px;}
.y1e7{bottom:778.605000px;}
.y1b2{bottom:781.665000px;}
.y156{bottom:781.845000px;}
.y4c{bottom:786.885000px;}
.y14{bottom:787.785000px;}
.y95{bottom:790.845000px;}
.ybd{bottom:795.570000px;}
.y198{bottom:797.505000px;}
.yf2{bottom:800.025000px;}
.y178{bottom:800.205000px;}
.y6e{bottom:801.825000px;}
.y4b{bottom:803.445000px;}
.y13{bottom:807.945000px;}
.y1b1{bottom:809.205000px;}
.y106{bottom:809.385000px;}
.y94{bottom:818.385000px;}
.y155{bottom:818.565000px;}
.y4a{bottom:819.870000px;}
.yba{bottom:825.090000px;}
.y1e4{bottom:826.890000px;}
.y177{bottom:827.610000px;}
.y12{bottom:828.150000px;}
.y6d{bottom:829.410000px;}
.y49{bottom:836.430000px;}
.y105{bottom:836.610000px;}
.yf1{bottom:836.790000px;}
.y93{bottom:845.790000px;}
.y196{bottom:845.970000px;}
.yb9{bottom:847.080000px;}
.y11{bottom:848.310000px;}
.ybc{bottom:849.960000px;}
.y48{bottom:852.810000px;}
.y176{bottom:854.970000px;}
.y6c{bottom:856.770000px;}
.yf0{bottom:864.150000px;}
.y10{bottom:868.470000px;}
.y47{bottom:869.370000px;}
.y92{bottom:873.330000px;}
.y12e{bottom:873.510000px;}
.y1e2{bottom:875.310000px;}
.y175{bottom:882.510000px;}
.y6b{bottom:884.310000px;}
.y46{bottom:885.750000px;}
.yf{bottom:888.630000px;}
.yef{bottom:891.690000px;}
.y191{bottom:894.210000px;}
.y91{bottom:900.690000px;}
.y1da{bottom:900.870000px;}
.y45{bottom:902.310000px;}
.ye{bottom:908.610000px;}
.y174{bottom:909.870000px;}
.y6a{bottom:911.850000px;}
.y44{bottom:918.690000px;}
.yee{bottom:919.050000px;}
.y1e0{bottom:923.730000px;}
.y90{bottom:928.230000px;}
.yd{bottom:928.770000px;}
.y43{bottom:935.250000px;}
.y173{bottom:937.410000px;}
.y69{bottom:939.210000px;}
.yed{bottom:946.590000px;}
.yc{bottom:948.930000px;}
.y42{bottom:951.810000px;}
.y8f{bottom:955.770000px;}
.y172{bottom:964.950000px;}
.y68{bottom:966.750000px;}
.yb{bottom:968.010000px;}
.y41{bottom:968.190000px;}
.yec{bottom:973.950000px;}
.y185{bottom:974.130000px;}
.ya{bottom:982.950000px;}
.y8e{bottom:983.130000px;}
.y190{bottom:983.310000px;}
.y40{bottom:985.110000px;}
.y171{bottom:992.310000px;}
.y126{bottom:992.490000px;}
.y67{bottom:994.110000px;}
.y9{bottom:999.690000px;}
.yeb{bottom:1001.490000px;}
.y3f{bottom:1003.290000px;}
.y8d{bottom:1010.670000px;}
.y104{bottom:1010.850000px;}
.y1df{bottom:1016.970000px;}
.y8{bottom:1018.950000px;}
.y66{bottom:1021.650000px;}
.y3e{bottom:1022.550000px;}
.yea{bottom:1029.030000px;}
.y125{bottom:1029.210000px;}
.y8c{bottom:1038.030000px;}
.y7{bottom:1040.910000px;}
.y1de{bottom:1041.630000px;}
.y3d{bottom:1044.150000px;}
.y1d9{bottom:1047.390000px;}
.y6{bottom:1062.870000px;}
.y3c{bottom:1064.310000px;}
.y8b{bottom:1065.570000px;}
.ye9{bottom:1065.750000px;}
.y1dd{bottom:1067.010000px;}
.y36{bottom:1095.120000px;}
.y1{bottom:1117.080000px;}
.y39{bottom:1119.960000px;}
.h2d{height:14.580000px;}
.h2{height:28.620000px;}
.hf{height:28.800000px;}
.h16{height:28.836000px;}
.h31{height:29.160000px;}
.h32{height:29.340000px;}
.h17{height:36.720000px;}
.h12{height:37.019531px;}
.h1a{height:37.260000px;}
.h1e{height:41.400000px;}
.h20{height:41.760000px;}
.h10{height:43.200000px;}
.h2f{height:43.920000px;}
.h30{height:43.956000px;}
.h24{height:44.460000px;}
.h8{height:45.931641px;}
.hc{height:46.669922px;}
.h2c{height:47.276367px;}
.h22{height:47.520000px;}
.h2a{height:47.556000px;}
.h21{height:47.700000px;}
.h2b{height:47.736000px;}
.h13{height:50.510039px;}
.h7{height:51.416016px;}
.ha{height:51.648047px;}
.h3{height:51.881484px;}
.h14{height:52.319180px;}
.h1f{height:52.740000px;}
.h1c{height:54.900000px;}
.h23{height:54.936000px;}
.h6{height:56.900391px;}
.he{height:57.248437px;}
.h11{height:57.899531px;}
.h2e{height:58.500000px;}
.h33{height:58.680000px;}
.h26{height:59.436000px;}
.hd{height:60.300000px;}
.hb{height:60.336000px;}
.h1d{height:60.696000px;}
.h1{height:60.855469px;}
.h4{height:62.507812px;}
.h9{height:63.070312px;}
.h1b{height:63.360000px;}
.h28{height:63.540000px;}
.h5{height:68.554688px;}
.h25{height:73.260000px;}
.h27{height:83.700000px;}
.h19{height:128.160000px;}
.h18{height:128.196000px;}
.h29{height:192.810000px;}
.h15{height:918.000000px;}
.h0{height:1188.000000px;}
.w22{width:83.520000px;}
.w13{width:104.580000px;}
.w20{width:116.316000px;}
.wb{width:116.676000px;}
.w11{width:117.036000px;}
.w10{width:119.340000px;}
.w12{width:121.320000px;}
.we{width:121.500000px;}
.wd{width:121.536000px;}
.wc{width:126.360000px;}
.wf{width:128.376000px;}
.w1d{width:131.940000px;}
.w1a{width:132.300000px;}
.w14{width:169.590000px;}
.w17{width:174.960000px;}
.w19{width:174.990000px;}
.w25{width:196.050000px;}
.w16{width:212.070000px;}
.w15{width:214.410000px;}
.w1f{width:219.630000px;}
.w1c{width:219.990000px;}
.w26{width:222.150000px;}
.w18{width:229.395000px;}
.w23{width:232.950000px;}
.w24{width:233.130000px;}
.w27{width:323.670000px;}
.w1e{width:347.655000px;}
.w1b{width:348.375000px;}
.w21{width:552.705000px;}
.w4{width:571.320000px;}
.w3{width:571.425000px;}
.w2{width:669.885000px;}
.w5{width:669.930000px;}
.wa{width:761.865000px;}
.w6{width:761.910000px;}
.w7{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w9{width:1187.999982px;}
.w8{width:1188.000000px;}
.x0{left:0.000000px;}
.x39{left:8.100000px;}
.x22{left:9.180000px;}
.x25{left:10.800000px;}
.x2f{left:12.060000px;}
.xb{left:13.140000px;}
.x20{left:14.400000px;}
.x27{left:16.020000px;}
.x37{left:17.460000px;}
.x2c{left:18.540000px;}
.x29{left:20.520000px;}
.x10{left:22.536000px;}
.x2e{left:23.580000px;}
.x33{left:24.840000px;}
.x30{left:26.325000px;}
.x3a{left:27.360000px;}
.x1c{left:29.016000px;}
.x2d{left:30.096000px;}
.x34{left:31.905000px;}
.x1e{left:33.300000px;}
.x64{left:35.100000px;}
.x32{left:36.210000px;}
.x2b{left:37.620000px;}
.x31{left:39.105000px;}
.x38{left:40.905000px;}
.x35{left:41.940000px;}
.x36{left:45.360000px;}
.x23{left:46.440000px;}
.x3b{left:47.700000px;}
.x47{left:49.140000px;}
.x3f{left:51.300000px;}
.x63{left:52.374000px;}
.x3c{left:54.000000px;}
.x41{left:55.080000px;}
.x49{left:56.880000px;}
.x61{left:58.500000px;}
.x3{left:60.834000px;}
.x53{left:63.540000px;}
.x42{left:65.700000px;}
.x48{left:69.165000px;}
.x40{left:70.740000px;}
.x65{left:72.540000px;}
.x5f{left:74.514000px;}
.xf{left:78.120000px;}
.x52{left:79.245000px;}
.x44{left:80.325000px;}
.x54{left:81.900000px;}
.x4a{left:83.925000px;}
.x3e{left:87.300000px;}
.x67{left:88.740000px;}
.x50{left:91.845000px;}
.x4f{left:95.625000px;}
.x66{left:97.200000px;}
.x5c{left:98.685000px;}
.x59{left:99.714000px;}
.x5d{left:101.565000px;}
.x5e{left:104.625000px;}
.x4c{left:106.965000px;}
.x1{left:108.035986px;}
.x17{left:112.895986px;}
.x5{left:118.655986px;}
.x4e{left:126.045000px;}
.xc{left:131.295000px;}
.x58{left:133.595986px;}
.x2{left:139.896000px;}
.x51{left:149.805000px;}
.x13{left:161.129986px;}
.xa{left:172.470000px;}
.x55{left:198.930000px;}
.x1b{left:213.150000px;}
.x1d{left:224.670000px;}
.x8{left:228.089986px;}
.xe{left:238.890000px;}
.x4b{left:241.050000px;}
.x57{left:258.525000px;}
.x11{left:268.995000px;}
.x43{left:283.710000px;}
.x12{left:288.974986px;}
.x60{left:294.555000px;}
.x16{left:324.074986px;}
.x4{left:334.839000px;}
.x5a{left:342.615000px;}
.x1f{left:351.030000px;}
.x6{left:382.574986px;}
.x9{left:396.974986px;}
.x21{left:472.575000px;}
.x45{left:513.105000px;}
.x62{left:517.605000px;}
.x5b{left:576.285000px;}
.x18{left:585.644973px;}
.x4d{left:589.425000px;}
.x19{left:591.764986px;}
.x24{left:594.075000px;}
.x3d{left:597.345000px;}
.x46{left:634.425000px;}
.x14{left:649.724973px;}
.x15{left:654.584986px;}
.x7{left:718.709986px;}
.x26{left:722.445000px;}
.x56{left:752.550000px;}
.xd{left:810.149986px;}
.x28{left:841.785000px;}
.x2a{left:958.830000px;}
.x1a{left:1080.149982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls22{letter-spacing:-2.000000pt;}
.lsb{letter-spacing:-1.178667pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.837333pt;}
.ls1b{letter-spacing:-0.741333pt;}
.ls2e{letter-spacing:-0.538667pt;}
.lsa{letter-spacing:-0.345600pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.214400pt;}
.ls4{letter-spacing:-0.205867pt;}
.ls13{letter-spacing:-0.196267pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.115200pt;}
.ls24{letter-spacing:-0.105067pt;}
.ls17{letter-spacing:-0.102400pt;}
.ls1e{letter-spacing:-0.077333pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.029440pt;}
.ls2d{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.033920pt;}
.ls2f{letter-spacing:0.059733pt;}
.ls3{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.109333pt;}
.ls12{letter-spacing:0.117333pt;}
.lsc{letter-spacing:0.130667pt;}
.ls1c{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.ls29{letter-spacing:0.173333pt;}
.ls7{letter-spacing:0.242667pt;}
.ls2a{letter-spacing:0.253867pt;}
.ls8{letter-spacing:0.294400pt;}
.ls28{letter-spacing:0.425600pt;}
.ls26{letter-spacing:0.426240pt;}
.lse{letter-spacing:0.432000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.538667pt;}
.ls16{letter-spacing:0.757333pt;}
.ls18{letter-spacing:1.149440pt;}
.ls0{letter-spacing:2.896000pt;}
.ls1{letter-spacing:3.056000pt;}
.ls2b{letter-spacing:8.474880pt;}
.lsf{letter-spacing:12.192000pt;}
.ls2c{letter-spacing:64.154880pt;}
.ls20{letter-spacing:259.973547pt;}
.wsb{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.437547pt;}
.ws3{word-spacing:-13.306880pt;}
.ws17{word-spacing:-12.762453pt;}
.ws18{word-spacing:-12.538453pt;}
.ws1a{word-spacing:-12.178453pt;}
.ws4{word-spacing:-12.128213pt;}
.ws10{word-spacing:-12.122453pt;}
.ws9{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.945387pt;}
.ws15{word-spacing:-11.927787pt;}
.ws11{word-spacing:-11.902720pt;}
.ws19{word-spacing:-11.900053pt;}
.ws12{word-spacing:-11.889920pt;}
.wsd{word-spacing:-11.808853pt;}
.ws13{word-spacing:-11.263787pt;}
.wse{word-spacing:-11.167787pt;}
.wsa{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.783360pt;}
.ws1{word-spacing:-10.577493pt;}
.ws16{word-spacing:-10.005120pt;}
.ws1c{word-spacing:-9.750613pt;}
.ws2{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.264000pt;}
.ws1b{word-spacing:-9.152213pt;}
.ws6{word-spacing:-9.120000pt;}
.wsc{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-8.981333pt;}
._a{margin-left:-6.729600pt;}
._1{margin-left:-5.056213pt;}
._3{margin-left:-3.401173pt;}
._4{margin-left:-2.186027pt;}
._2{margin-left:-1.004160pt;}
._0{width:0.956160pt;}
._9{width:1.854720pt;}
._b{width:3.022507pt;}
._c{width:4.246827pt;}
._7{width:6.008960pt;}
._6{width:6.933973pt;}
._8{width:7.953920pt;}
._13{width:8.974720pt;}
._f{width:9.936000pt;}
._12{width:11.096960pt;}
._10{width:12.234667pt;}
._11{width:13.381120pt;}
._18{width:14.316373pt;}
._d{width:15.257387pt;}
._e{width:16.797653pt;}
._22{width:17.752747pt;}
._19{width:18.698240pt;}
._17{width:20.032000pt;}
._14{width:21.619840pt;}
._15{width:22.609280pt;}
._1d{width:24.044587pt;}
._1c{width:24.966400pt;}
._16{width:29.001173pt;}
._1b{width:29.967787pt;}
._1a{width:41.826987pt;}
._1e{width:59.335040pt;}
._1f{width:60.238080pt;}
._20{width:64.222080pt;}
._21{width:70.065280pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y35{bottom:-32.160000pt;}
.y5{bottom:-19.040000pt;}
.y34{bottom:-2.240000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.480000pt;}
.y1f0{bottom:2.880000pt;}
.yc6{bottom:3.520000pt;}
.y138{bottom:3.546667pt;}
.y160{bottom:7.520000pt;}
.y115{bottom:7.680000pt;}
.y11b{bottom:8.000000pt;}
.y19e{bottom:8.320000pt;}
.y1a8{bottom:8.480000pt;}
.y112{bottom:8.640000pt;}
.y1f8{bottom:9.440000pt;}
.y10d{bottom:10.880000pt;}
.y1e6{bottom:11.040000pt;}
.y169{bottom:11.200000pt;}
.y165{bottom:12.800000pt;}
.y4{bottom:12.960000pt;}
.y38{bottom:13.120000pt;}
.y133{bottom:13.280000pt;}
.y131{bottom:13.440000pt;}
.y33{bottom:14.746667pt;}
.y1f7{bottom:15.840000pt;}
.y1fa{bottom:15.880000pt;}
.y1f5{bottom:16.000000pt;}
.y197{bottom:16.480000pt;}
.y1a1{bottom:16.506667pt;}
.y192{bottom:16.640000pt;}
.y1a9{bottom:16.680000pt;}
.y118{bottom:17.760000pt;}
.y1e1{bottom:18.400000pt;}
.y1e5{bottom:18.560000pt;}
.yd7{bottom:19.680000pt;}
.y137{bottom:19.706667pt;}
.yc5{bottom:19.840000pt;}
.ycd{bottom:19.880000pt;}
.y109{bottom:20.320000pt;}
.y1f2{bottom:22.400000pt;}
.y1fc{bottom:22.440000pt;}
.y200{bottom:22.560000pt;}
.y3a{bottom:23.200000pt;}
.y15f{bottom:23.840000pt;}
.y114{bottom:24.000000pt;}
.y11a{bottom:24.320000pt;}
.y19d{bottom:24.640000pt;}
.y111{bottom:24.960000pt;}
.y1e3{bottom:25.920000pt;}
.y158{bottom:26.720000pt;}
.y10c{bottom:27.200000pt;}
.y168{bottom:27.520000pt;}
.y37{bottom:28.160000pt;}
.y1f4{bottom:28.960000pt;}
.y1fb{bottom:29.000000pt;}
.y164{bottom:29.120000pt;}
.y130{bottom:29.600000pt;}
.y3{bottom:31.200000pt;}
.y117{bottom:34.080000pt;}
.yd2{bottom:36.000000pt;}
.y136{bottom:36.026667pt;}
.ycc{bottom:36.040000pt;}
.y15b{bottom:36.160000pt;}
.y15e{bottom:40.026667pt;}
.y110{bottom:41.306667pt;}
.y1f3{bottom:41.920000pt;}
.y201{bottom:42.080000pt;}
.y31{bottom:42.240000pt;}
.y10b{bottom:43.520000pt;}
.y167{bottom:43.680000pt;}
.y163{bottom:45.280000pt;}
.y2{bottom:52.320000pt;}
.ybb{bottom:52.352000pt;}
.ycb{bottom:52.360000pt;}
.y15a{bottom:52.480000pt;}
.y162{bottom:61.600000pt;}
.yd1{bottom:68.640000pt;}
.yd6{bottom:68.666667pt;}
.yca{bottom:68.680000pt;}
.y195{bottom:72.960000pt;}
.y1a4{bottom:73.000000pt;}
.y19b{bottom:81.146667pt;}
.yd0{bottom:84.800000pt;}
.yd5{bottom:84.826667pt;}
.yc9{bottom:85.000000pt;}
.y194{bottom:89.280000pt;}
.y1a3{bottom:89.320000pt;}
.y8a{bottom:99.552000pt;}
.y1b6{bottom:100.672000pt;}
.y170{bottom:100.832000pt;}
.ycf{bottom:101.120000pt;}
.yd4{bottom:101.146667pt;}
.yc8{bottom:101.160000pt;}
.y1b0{bottom:102.752000pt;}
.y65{bottom:103.232000pt;}
.y124{bottom:108.192000pt;}
.y1d8{bottom:111.872000pt;}
.y147{bottom:112.192000pt;}
.ye8{bottom:115.072000pt;}
.y89{bottom:115.712000pt;}
.yad{bottom:116.992000pt;}
.y12d{bottom:117.152000pt;}
.y103{bottom:125.152000pt;}
.y1d7{bottom:128.192000pt;}
.y88{bottom:131.872000pt;}
.y184{bottom:133.312000pt;}
.y1af{bottom:135.226667pt;}
.y2f{bottom:136.186667pt;}
.y146{bottom:136.666667pt;}
.y123{bottom:140.666667pt;}
.yac{bottom:141.466667pt;}
.y64{bottom:142.266667pt;}
.ye7{bottom:144.346667pt;}
.y1d6{bottom:144.506667pt;}
.y87{bottom:148.186667pt;}
.y102{bottom:149.466667pt;}
.y16f{bottom:149.626667pt;}
.y202{bottom:151.866667pt;}
.y183{bottom:157.626667pt;}
.y1b5{bottom:157.786667pt;}
.y1d5{bottom:160.826667pt;}
.y145{bottom:161.146667pt;}
.y86{bottom:164.506667pt;}
.y1ff{bottom:165.306667pt;}
.yab{bottom:165.786667pt;}
.y12c{bottom:165.946667pt;}
.y1ae{bottom:167.866667pt;}
.y2e{bottom:168.506667pt;}
.y85{bottom:169.146667pt;}
.y122{bottom:173.306667pt;}
.ye6{bottom:173.786667pt;}
.y101{bottom:173.946667pt;}
.y1d4{bottom:176.986667pt;}
.y63{bottom:181.306667pt;}
.y84{bottom:181.786667pt;}
.y182{bottom:182.106667pt;}
.y144{bottom:185.466667pt;}
.yaa{bottom:190.266667pt;}
.y12b{bottom:190.426667pt;}
.yc3{bottom:191.706667pt;}
.y1ad{bottom:192.026667pt;}
.y1d3{bottom:193.306667pt;}
.y2d{bottom:197.946667pt;}
.y100{bottom:198.426667pt;}
.ye5{bottom:203.066667pt;}
.y121{bottom:205.786667pt;}
.y181{bottom:206.586667pt;}
.y1d2{bottom:209.626667pt;}
.yb8{bottom:209.786667pt;}
.ya9{bottom:214.586667pt;}
.y12a{bottom:214.746667pt;}
.yc2{bottom:216.026667pt;}
.y1ac{bottom:216.506667pt;}
.y1fe{bottom:218.106667pt;}
.y143{bottom:218.266667pt;}
.y62{bottom:220.346667pt;}
.yff{bottom:222.746667pt;}
.y16e{bottom:222.906667pt;}
.y83{bottom:224.346667pt;}
.y1d1{bottom:225.786667pt;}
.y2c{bottom:227.546667pt;}
.y120{bottom:230.106667pt;}
.y180{bottom:230.906667pt;}
.y154{bottom:231.066667pt;}
.ye4{bottom:232.346667pt;}
.yb7{bottom:234.106667pt;}
.y30{bottom:236.666667pt;}
.y32{bottom:236.800000pt;}
.ya8{bottom:239.066667pt;}
.yc1{bottom:240.546667pt;}
.y1ab{bottom:240.986667pt;}
.y1d0{bottom:242.106667pt;}
.y142{bottom:242.426667pt;}
.y1fd{bottom:244.826667pt;}
.y16d{bottom:247.226667pt;}
.y129{bottom:247.546667pt;}
.y82{bottom:248.826667pt;}
.y11f{bottom:254.426667pt;}
.y17f{bottom:255.386667pt;}
.yfe{bottom:255.546667pt;}
.y2b{bottom:256.986667pt;}
.y1cf{bottom:258.426667pt;}
.yb6{bottom:258.586667pt;}
.y61{bottom:259.386667pt;}
.ya7{bottom:263.546667pt;}
.y153{bottom:263.706667pt;}
.yc0{bottom:264.866667pt;}
.y1aa{bottom:265.306667pt;}
.y141{bottom:266.906667pt;}
.ye3{bottom:267.386667pt;}
.y1bb{bottom:271.546667pt;}
.y16c{bottom:271.706667pt;}
.y81{bottom:273.306667pt;}
.y1ce{bottom:274.746667pt;}
.y1a2{bottom:278.746667pt;}
.y11e{bottom:278.906667pt;}
.yfd{bottom:279.706667pt;}
.y1dc{bottom:279.866667pt;}
.y128{bottom:280.026667pt;}
.yb5{bottom:283.106667pt;}
.y2a{bottom:286.626667pt;}
.ya6{bottom:287.906667pt;}
.ybf{bottom:289.346667pt;}
.y1cd{bottom:290.946667pt;}
.y140{bottom:291.266667pt;}
.y16b{bottom:296.066667pt;}
.y152{bottom:296.226667pt;}
.y80{bottom:297.666667pt;}
.ye2{bottom:298.146667pt;}
.y60{bottom:298.626667pt;}
.y11d{bottom:303.426667pt;}
.yfc{bottom:304.226667pt;}
.y1cc{bottom:307.266667pt;}
.yb4{bottom:307.426667pt;}
.y1f9{bottom:311.266667pt;}
.y127{bottom:312.226667pt;}
.ya5{bottom:312.386667pt;}
.ybe{bottom:313.826667pt;}
.y13f{bottom:315.746667pt;}
.y16a{bottom:320.546667pt;}
.y1a7{bottom:321.826667pt;}
.y7f{bottom:322.146667pt;}
.y29{bottom:322.946667pt;}
.y1cb{bottom:323.586667pt;}
.yd3{bottom:327.266667pt;}
.yfb{bottom:328.546667pt;}
.y151{bottom:328.706667pt;}
.ye1{bottom:331.426667pt;}
.yb3{bottom:331.906667pt;}
.y166{bottom:333.986667pt;}
.y11c{bottom:336.066667pt;}
.ya4{bottom:336.706667pt;}
.y18f{bottom:336.866667pt;}
.y5f{bottom:337.666667pt;}
.y1ca{bottom:339.906667pt;}
.y13e{bottom:340.226667pt;}
.y28{bottom:342.146667pt;}
.y1ba{bottom:344.866667pt;}
.y7e{bottom:346.466667pt;}
.y119{bottom:349.346667pt;}
.yfa{bottom:353.026667pt;}
.y1c9{bottom:356.066667pt;}
.yb2{bottom:356.226667pt;}
.y27{bottom:360.066667pt;}
.ya3{bottom:361.186667pt;}
.y150{bottom:361.346667pt;}
.y1f6{bottom:364.066667pt;}
.y13d{bottom:364.546667pt;}
.ye0{bottom:364.706667pt;}
.y1a6{bottom:364.866667pt;}
.y1b9{bottom:369.346667pt;}
.y18e{bottom:369.506667pt;}
.y7d{bottom:370.946667pt;}
.y1c8{bottom:372.386667pt;}
.y5e{bottom:376.706667pt;}
.yf9{bottom:377.506667pt;}
.y26{bottom:377.986667pt;}
.yb1{bottom:380.706667pt;}
.ya2{bottom:385.506667pt;}
.y116{bottom:387.106667pt;}
.y1c7{bottom:388.706667pt;}
.y13c{bottom:389.026667pt;}
.y161{bottom:391.106667pt;}
.y18d{bottom:393.666667pt;}
.y14f{bottom:393.826667pt;}
.y7c{bottom:395.426667pt;}
.y25{bottom:395.906667pt;}
.ydf{bottom:397.986667pt;}
.y17e{bottom:401.826667pt;}
.y1f1{bottom:403.746667pt;}
.y1c6{bottom:404.866667pt;}
.yb0{bottom:405.186667pt;}
.y1a5{bottom:407.906667pt;}
.ya1{bottom:409.986667pt;}
.yf8{bottom:410.146667pt;}
.y13b{bottom:413.346667pt;}
.y24{bottom:413.826667pt;}
.y5d{bottom:415.746667pt;}
.y18c{bottom:418.146667pt;}
.y7b{bottom:419.746667pt;}
.y1c5{bottom:421.186667pt;}
.y17d{bottom:426.306667pt;}
.y14e{bottom:426.466667pt;}
.yde{bottom:431.426667pt;}
.y23{bottom:431.746667pt;}
.yae{bottom:432.066667pt;}
.ya0{bottom:434.466667pt;}
.y113{bottom:434.626667pt;}
.yaf{bottom:437.346667pt;}
.y1c4{bottom:437.506667pt;}
.yce{bottom:441.213333pt;}
.y18b{bottom:442.626667pt;}
.y7a{bottom:444.226667pt;}
.y13a{bottom:446.146667pt;}
.y22{bottom:449.506667pt;}
.y17c{bottom:450.626667pt;}
.y19a{bottom:450.786667pt;}
.y1c3{bottom:453.826667pt;}
.y5c{bottom:454.786667pt;}
.y1ef{bottom:456.546667pt;}
.y9f{bottom:458.786667pt;}
.y14d{bottom:458.946667pt;}
.y139{bottom:459.426667pt;}
.ydd{bottom:464.706667pt;}
.y15d{bottom:466.146667pt;}
.y18a{bottom:466.946667pt;}
.y21{bottom:467.426667pt;}
.y79{bottom:468.546667pt;}
.y1c2{bottom:469.986667pt;}
.y10f{bottom:472.066667pt;}
.y5b{bottom:473.986667pt;}
.y17b{bottom:475.106667pt;}
.y1b8{bottom:475.266667pt;}
.y1ee{bottom:480.706667pt;}
.y9e{bottom:483.266667pt;}
.y20{bottom:485.346667pt;}
.y1c1{bottom:486.306667pt;}
.y189{bottom:491.426667pt;}
.y14c{bottom:491.586667pt;}
.y5a{bottom:491.906667pt;}
.y78{bottom:493.026667pt;}
.y1a0{bottom:493.826667pt;}
.ydc{bottom:497.986667pt;}
.y17a{bottom:499.586667pt;}
.y135{bottom:502.466667pt;}
.y1c0{bottom:502.626667pt;}
.y1ed{bottom:502.786667pt;}
.y1f{bottom:503.266667pt;}
.y9d{bottom:507.613333pt;}
.y1b7{bottom:507.773333pt;}
.y59{bottom:509.053333pt;}
.y188{bottom:515.773333pt;}
.y77{bottom:517.373333pt;}
.y15c{bottom:519.613333pt;}
.y1e{bottom:521.213333pt;}
.y58{bottom:523.613333pt;}
.y179{bottom:523.933333pt;}
.y14b{bottom:524.093333pt;}
.y1ec{bottom:524.733333pt;}
.y10e{bottom:526.813333pt;}
.ydb{bottom:531.293333pt;}
.y9c{bottom:532.093333pt;}
.y1bf{bottom:535.293333pt;}
.y19f{bottom:536.893333pt;}
.y57{bottom:538.333333pt;}
.y1d{bottom:539.133333pt;}
.y187{bottom:540.253333pt;}
.y76{bottom:541.853333pt;}
.y134{bottom:551.933333pt;}
.y56{bottom:553.053333pt;}
.y1eb{bottom:554.013333pt;}
.yc7{bottom:555.133333pt;}
.y9b{bottom:556.573333pt;}
.y14a{bottom:556.733333pt;}
.y1c{bottom:557.053333pt;}
.yda{bottom:564.573333pt;}
.y1be{bottom:564.733333pt;}
.y75{bottom:566.333333pt;}
.y55{bottom:567.613333pt;}
.y159{bottom:569.053333pt;}
.y1db{bottom:572.893333pt;}
.y1b{bottom:574.973333pt;}
.y10a{bottom:576.253333pt;}
.y19c{bottom:579.933333pt;}
.y9a{bottom:580.893333pt;}
.y54{bottom:582.333333pt;}
.y186{bottom:589.053333pt;}
.yf7{bottom:589.213333pt;}
.y74{bottom:590.653333pt;}
.y1a{bottom:592.893333pt;}
.y1ea{bottom:593.853333pt;}
.y132{bottom:594.973333pt;}
.y53{bottom:596.893333pt;}
.yd9{bottom:597.853333pt;}
.y99{bottom:605.373333pt;}
.y1e9{bottom:606.013333pt;}
.y19{bottom:610.813333pt;}
.y52{bottom:611.613333pt;}
.yf6{bottom:613.533333pt;}
.y72{bottom:615.133333pt;}
.y73{bottom:619.773333pt;}
.y149{bottom:621.693333pt;}
.y193{bottom:622.813333pt;}
.y51{bottom:626.173333pt;}
.y18{bottom:628.573333pt;}
.y98{bottom:629.693333pt;}
.yd8{bottom:629.853333pt;}
.y108{bottom:633.213333pt;}
.y157{bottom:634.973333pt;}
.yf5{bottom:637.853333pt;}
.y71{bottom:639.453333pt;}
.y50{bottom:640.893333pt;}
.y1b4{bottom:646.013333pt;}
.y1bd{bottom:646.173333pt;}
.y17{bottom:646.493333pt;}
.y1e8{bottom:649.053333pt;}
.y97{bottom:654.173333pt;}
.y148{bottom:654.333333pt;}
.y4f{bottom:655.453333pt;}
.yf4{bottom:662.333333pt;}
.y70{bottom:663.933333pt;}
.y16{bottom:664.413333pt;}
.y199{bottom:665.853333pt;}
.yc4{bottom:669.733333pt;}
.y4e{bottom:670.173333pt;}
.y1b3{bottom:670.493333pt;}
.y96{bottom:678.653333pt;}
.y1bc{bottom:678.813333pt;}
.y12f{bottom:680.893333pt;}
.y15{bottom:682.333333pt;}
.y4d{bottom:684.733333pt;}
.yf3{bottom:686.653333pt;}
.y107{bottom:686.813333pt;}
.y6f{bottom:688.413333pt;}
.y1e7{bottom:692.093333pt;}
.y1b2{bottom:694.813333pt;}
.y156{bottom:694.973333pt;}
.y4c{bottom:699.453333pt;}
.y14{bottom:700.253333pt;}
.y95{bottom:702.973333pt;}
.ybd{bottom:707.173333pt;}
.y198{bottom:708.893333pt;}
.yf2{bottom:711.133333pt;}
.y178{bottom:711.293333pt;}
.y6e{bottom:712.733333pt;}
.y4b{bottom:714.173333pt;}
.y13{bottom:718.173333pt;}
.y1b1{bottom:719.293333pt;}
.y106{bottom:719.453333pt;}
.y94{bottom:727.453333pt;}
.y155{bottom:727.613333pt;}
.y4a{bottom:728.773333pt;}
.yba{bottom:733.413333pt;}
.y1e4{bottom:735.013333pt;}
.y177{bottom:735.653333pt;}
.y12{bottom:736.133333pt;}
.y6d{bottom:737.253333pt;}
.y49{bottom:743.493333pt;}
.y105{bottom:743.653333pt;}
.yf1{bottom:743.813333pt;}
.y93{bottom:751.813333pt;}
.y196{bottom:751.973333pt;}
.yb9{bottom:752.960000pt;}
.y11{bottom:754.053333pt;}
.ybc{bottom:755.520000pt;}
.y48{bottom:758.053333pt;}
.y176{bottom:759.973333pt;}
.y6c{bottom:761.573333pt;}
.yf0{bottom:768.133333pt;}
.y10{bottom:771.973333pt;}
.y47{bottom:772.773333pt;}
.y92{bottom:776.293333pt;}
.y12e{bottom:776.453333pt;}
.y1e2{bottom:778.053333pt;}
.y175{bottom:784.453333pt;}
.y6b{bottom:786.053333pt;}
.y46{bottom:787.333333pt;}
.yf{bottom:789.893333pt;}
.yef{bottom:792.613333pt;}
.y191{bottom:794.853333pt;}
.y91{bottom:800.613333pt;}
.y1da{bottom:800.773333pt;}
.y45{bottom:802.053333pt;}
.ye{bottom:807.653333pt;}
.y174{bottom:808.773333pt;}
.y6a{bottom:810.533333pt;}
.y44{bottom:816.613333pt;}
.yee{bottom:816.933333pt;}
.y1e0{bottom:821.093333pt;}
.y90{bottom:825.093333pt;}
.yd{bottom:825.573333pt;}
.y43{bottom:831.333333pt;}
.y173{bottom:833.253333pt;}
.y69{bottom:834.853333pt;}
.yed{bottom:841.413333pt;}
.yc{bottom:843.493333pt;}
.y42{bottom:846.053333pt;}
.y8f{bottom:849.573333pt;}
.y172{bottom:857.733333pt;}
.y68{bottom:859.333333pt;}
.yb{bottom:860.453333pt;}
.y41{bottom:860.613333pt;}
.yec{bottom:865.733333pt;}
.y185{bottom:865.893333pt;}
.ya{bottom:873.733333pt;}
.y8e{bottom:873.893333pt;}
.y190{bottom:874.053333pt;}
.y40{bottom:875.653333pt;}
.y171{bottom:882.053333pt;}
.y126{bottom:882.213333pt;}
.y67{bottom:883.653333pt;}
.y9{bottom:888.613333pt;}
.yeb{bottom:890.213333pt;}
.y3f{bottom:891.813333pt;}
.y8d{bottom:898.373333pt;}
.y104{bottom:898.533333pt;}
.y1df{bottom:903.973333pt;}
.y8{bottom:905.733333pt;}
.y66{bottom:908.133333pt;}
.y3e{bottom:908.933333pt;}
.yea{bottom:914.693333pt;}
.y125{bottom:914.853333pt;}
.y8c{bottom:922.693333pt;}
.y7{bottom:925.253333pt;}
.y1de{bottom:925.893333pt;}
.y3d{bottom:928.133333pt;}
.y1d9{bottom:931.013333pt;}
.y6{bottom:944.773333pt;}
.y3c{bottom:946.053333pt;}
.y8b{bottom:947.173333pt;}
.ye9{bottom:947.333333pt;}
.y1dd{bottom:948.453333pt;}
.y36{bottom:973.440000pt;}
.y1{bottom:992.960000pt;}
.y39{bottom:995.520000pt;}
.h2d{height:12.960000pt;}
.h2{height:25.440000pt;}
.hf{height:25.600000pt;}
.h16{height:25.632000pt;}
.h31{height:25.920000pt;}
.h32{height:26.080000pt;}
.h17{height:32.640000pt;}
.h12{height:32.906250pt;}
.h1a{height:33.120000pt;}
.h1e{height:36.800000pt;}
.h20{height:37.120000pt;}
.h10{height:38.400000pt;}
.h2f{height:39.040000pt;}
.h30{height:39.072000pt;}
.h24{height:39.520000pt;}
.h8{height:40.828125pt;}
.hc{height:41.484375pt;}
.h2c{height:42.023438pt;}
.h22{height:42.240000pt;}
.h2a{height:42.272000pt;}
.h21{height:42.400000pt;}
.h2b{height:42.432000pt;}
.h13{height:44.897813pt;}
.h7{height:45.703125pt;}
.ha{height:45.909375pt;}
.h3{height:46.116875pt;}
.h14{height:46.505938pt;}
.h1f{height:46.880000pt;}
.h1c{height:48.800000pt;}
.h23{height:48.832000pt;}
.h6{height:50.578125pt;}
.he{height:50.887500pt;}
.h11{height:51.466250pt;}
.h2e{height:52.000000pt;}
.h33{height:52.160000pt;}
.h26{height:52.832000pt;}
.hd{height:53.600000pt;}
.hb{height:53.632000pt;}
.h1d{height:53.952000pt;}
.h1{height:54.093750pt;}
.h4{height:55.562500pt;}
.h9{height:56.062500pt;}
.h1b{height:56.320000pt;}
.h28{height:56.480000pt;}
.h5{height:60.937500pt;}
.h25{height:65.120000pt;}
.h27{height:74.400000pt;}
.h19{height:113.920000pt;}
.h18{height:113.952000pt;}
.h29{height:171.386667pt;}
.h15{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w22{width:74.240000pt;}
.w13{width:92.960000pt;}
.w20{width:103.392000pt;}
.wb{width:103.712000pt;}
.w11{width:104.032000pt;}
.w10{width:106.080000pt;}
.w12{width:107.840000pt;}
.we{width:108.000000pt;}
.wd{width:108.032000pt;}
.wc{width:112.320000pt;}
.wf{width:114.112000pt;}
.w1d{width:117.280000pt;}
.w1a{width:117.600000pt;}
.w14{width:150.746667pt;}
.w17{width:155.520000pt;}
.w19{width:155.546667pt;}
.w25{width:174.266667pt;}
.w16{width:188.506667pt;}
.w15{width:190.586667pt;}
.w1f{width:195.226667pt;}
.w1c{width:195.546667pt;}
.w26{width:197.466667pt;}
.w18{width:203.906667pt;}
.w23{width:207.066667pt;}
.w24{width:207.226667pt;}
.w27{width:287.706667pt;}
.w1e{width:309.026667pt;}
.w1b{width:309.666667pt;}
.w21{width:491.293333pt;}
.w4{width:507.840000pt;}
.w3{width:507.933333pt;}
.w2{width:595.453333pt;}
.w5{width:595.493333pt;}
.wa{width:677.213333pt;}
.w6{width:677.253333pt;}
.w7{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w9{width:1055.999984pt;}
.w8{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x39{left:7.200000pt;}
.x22{left:8.160000pt;}
.x25{left:9.600000pt;}
.x2f{left:10.720000pt;}
.xb{left:11.680000pt;}
.x20{left:12.800000pt;}
.x27{left:14.240000pt;}
.x37{left:15.520000pt;}
.x2c{left:16.480000pt;}
.x29{left:18.240000pt;}
.x10{left:20.032000pt;}
.x2e{left:20.960000pt;}
.x33{left:22.080000pt;}
.x30{left:23.400000pt;}
.x3a{left:24.320000pt;}
.x1c{left:25.792000pt;}
.x2d{left:26.752000pt;}
.x34{left:28.360000pt;}
.x1e{left:29.600000pt;}
.x64{left:31.200000pt;}
.x32{left:32.186667pt;}
.x2b{left:33.440000pt;}
.x31{left:34.760000pt;}
.x38{left:36.360000pt;}
.x35{left:37.280000pt;}
.x36{left:40.320000pt;}
.x23{left:41.280000pt;}
.x3b{left:42.400000pt;}
.x47{left:43.680000pt;}
.x3f{left:45.600000pt;}
.x63{left:46.554667pt;}
.x3c{left:48.000000pt;}
.x41{left:48.960000pt;}
.x49{left:50.560000pt;}
.x61{left:52.000000pt;}
.x3{left:54.074667pt;}
.x53{left:56.480000pt;}
.x42{left:58.400000pt;}
.x48{left:61.480000pt;}
.x40{left:62.880000pt;}
.x65{left:64.480000pt;}
.x5f{left:66.234667pt;}
.xf{left:69.440000pt;}
.x52{left:70.440000pt;}
.x44{left:71.400000pt;}
.x54{left:72.800000pt;}
.x4a{left:74.600000pt;}
.x3e{left:77.600000pt;}
.x67{left:78.880000pt;}
.x50{left:81.640000pt;}
.x4f{left:85.000000pt;}
.x66{left:86.400000pt;}
.x5c{left:87.720000pt;}
.x59{left:88.634667pt;}
.x5d{left:90.280000pt;}
.x5e{left:93.000000pt;}
.x4c{left:95.080000pt;}
.x1{left:96.031988pt;}
.x17{left:100.351988pt;}
.x5{left:105.471988pt;}
.x4e{left:112.040000pt;}
.xc{left:116.706667pt;}
.x58{left:118.751988pt;}
.x2{left:124.352000pt;}
.x51{left:133.160000pt;}
.x13{left:143.226655pt;}
.xa{left:153.306667pt;}
.x55{left:176.826667pt;}
.x1b{left:189.466667pt;}
.x1d{left:199.706667pt;}
.x8{left:202.746655pt;}
.xe{left:212.346667pt;}
.x4b{left:214.266667pt;}
.x57{left:229.800000pt;}
.x11{left:239.106667pt;}
.x43{left:252.186667pt;}
.x12{left:256.866655pt;}
.x60{left:261.826667pt;}
.x16{left:288.066655pt;}
.x4{left:297.634667pt;}
.x5a{left:304.546667pt;}
.x1f{left:312.026667pt;}
.x6{left:340.066655pt;}
.x9{left:352.866655pt;}
.x21{left:420.066667pt;}
.x45{left:456.093333pt;}
.x62{left:460.093333pt;}
.x5b{left:512.253333pt;}
.x18{left:520.573309pt;}
.x4d{left:523.933333pt;}
.x19{left:526.013321pt;}
.x24{left:528.066667pt;}
.x3d{left:530.973333pt;}
.x46{left:563.933333pt;}
.x14{left:577.533309pt;}
.x15{left:581.853321pt;}
.x7{left:638.853321pt;}
.x26{left:642.173333pt;}
.x56{left:668.933333pt;}
.xd{left:720.133321pt;}
.x28{left:748.253333pt;}
.x2a{left:852.293333pt;}
.x1a{left:960.133318pt;}
}




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