
    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_5f8297a648d94595e71c4e79.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_bd73ed8ec2f0b071007b18ce.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_a5cf4fffee27dde07a996684.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_aa025a89893684d1140532a9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff76dbbd255444219d807be5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4af4d2fb465933b014ae0bdd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_60cfcfbfd04f3c3c54403d81.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_c02880b2b52c821a96e27a35.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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);}
.m2{transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-65.520000px;}
.v2{vertical-align:-58.500000px;}
.v6{vertical-align:-13.471825px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:67.254877px;}
.v4{vertical-align:69.179423px;}
.ls1a{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.269400px;}
.ls20{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls9{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls14{letter-spacing:0.241294px;}
.ls6{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.269400px;}
.ls1d{letter-spacing:0.306720px;}
.ls8{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls25{letter-spacing:2.520000px;}
.lse{letter-spacing:3.546720px;}
.ls19{letter-spacing:3.780000px;}
.lsf{letter-spacing:6.426720px;}
.ls17{letter-spacing:6.629760px;}
.ls1c{letter-spacing:6.660000px;}
.ls1e{letter-spacing:10.260000px;}
.ls24{letter-spacing:10.440000px;}
.lsd{letter-spacing:20.106720px;}
.ls10{letter-spacing:22.986720px;}
.lsc{letter-spacing:36.666720px;}
.ls16{letter-spacing:56.340000px;}
.ls3{letter-spacing:66.162720px;}
.ls13{letter-spacing:157.836000px;}
.ls12{letter-spacing:201.036000px;}
.ls15{letter-spacing:407.608756px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-59.760000px;}
.ws10{word-spacing:-15.553813px;}
.ws1{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.479800px;}
.ws3{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.657241px;}
.wsc{word-spacing:-13.415947px;}
.ws9{word-spacing:-12.420000px;}
.ws16{word-spacing:-12.329400px;}
.ws17{word-spacing:-12.241200px;}
.wsa{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.790600px;}
.ws15{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:120.836395px;}
.wsf{word-spacing:192.124800px;}
.wse{word-spacing:268.300727px;}
.ws11{word-spacing:740.334474px;}
._13{margin-left:-7.020000px;}
._a{margin-left:-3.456000px;}
._9{margin-left:-2.289600px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._7{width:3.743280px;}
._5{width:5.737680px;}
._4{width:6.840000px;}
._8{width:8.262000px;}
._b{width:10.159200px;}
._6{width:11.551680px;}
._c{width:12.647520px;}
._10{width:13.723680px;}
._20{width:14.892960px;}
._d{width:15.955920px;}
._11{width:17.151120px;}
._1a{width:18.976080px;}
._16{width:20.421840px;}
._12{width:21.812400px;}
._18{width:25.338240px;}
._19{width:26.963760px;}
._1b{width:30.136080px;}
._22{width:32.146800px;}
._1d{width:33.506640px;}
._21{width:35.708160px;}
._1e{width:36.793440px;}
._1c{width:50.119920px;}
._26{width:54.825840px;}
._25{width:56.534160px;}
._1f{width:59.828160px;}
._24{width:63.415920px;}
._23{width:64.504080px;}
._e{width:509.086560px;}
._14{width:736.380000px;}
._17{width:807.647520px;}
._f{width:865.686720px;}
._15{width:1073.100000px;}
._3{width:1101.912000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:48.258802px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:55.948969px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y20e{bottom:0.900000px;}
.y207{bottom:1.620000px;}
.ya1{bottom:2.520000px;}
.y2e{bottom:2.880000px;}
.y218{bottom:3.060000px;}
.y10{bottom:3.240000px;}
.ye9{bottom:4.862282px;}
.yfa{bottom:5.823123px;}
.y36{bottom:9.000000px;}
.y3c{bottom:12.240000px;}
.y10b{bottom:16.200000px;}
.y116{bottom:16.380000px;}
.y2d{bottom:18.360000px;}
.y217{bottom:18.540000px;}
.y15{bottom:20.520000px;}
.y19d{bottom:21.060000px;}
.y3b{bottom:29.520000px;}
.ye7{bottom:29.892612px;}
.yf8{bottom:30.852852px;}
.y2c{bottom:33.840000px;}
.y216{bottom:34.056000px;}
.y14{bottom:37.620000px;}
.y1a3{bottom:37.800000px;}
.y106{bottom:41.902968px;}
.y3a{bottom:46.845000px;}
.y2b{bottom:49.500000px;}
.y215{bottom:49.530000px;}
.y13{bottom:54.900000px;}
.y1a2{bottom:55.080000px;}
.ye8{bottom:55.354761px;}
.yf9{bottom:56.317005px;}
.yfd{bottom:60.687343px;}
.y39{bottom:63.945000px;}
.y2a{bottom:64.980000px;}
.y214{bottom:65.190000px;}
.y35{bottom:65.880000px;}
.y1a1{bottom:72.180000px;}
.y29{bottom:80.460000px;}
.y213{bottom:80.670000px;}
.y12{bottom:81.180000px;}
.yfb{bottom:85.670362px;}
.y5{bottom:88.200000px;}
.y104{bottom:90.042674px;}
.y38{bottom:90.225000px;}
.y28{bottom:95.970000px;}
.y20c{bottom:95.985000px;}
.y212{bottom:96.150000px;}
.y105{bottom:110.220347px;}
.yfc{bottom:110.701492px;}
.y82{bottom:111.600000px;}
.y27{bottom:111.630000px;}
.y20b{bottom:111.645000px;}
.y219{bottom:113.760000px;}
.ye5{bottom:115.020000px;}
.y1a9{bottom:115.560000px;}
.y15f{bottom:118.620000px;}
.y100{bottom:123.720261px;}
.yf1{bottom:125.642773px;}
.y26{bottom:127.110000px;}
.y20a{bottom:127.125000px;}
.y211{bottom:127.290000px;}
.y1e6{bottom:127.440000px;}
.y81{bottom:128.880000px;}
.y1a8{bottom:129.420000px;}
.yc1{bottom:132.120000px;}
.ye4{bottom:132.300000px;}
.y190{bottom:135.036000px;}
.y15e{bottom:135.756000px;}
.y1e5{bottom:141.336000px;}
.y25{bottom:142.590000px;}
.y209{bottom:142.605000px;}
.y210{bottom:142.770000px;}
.y1a7{bottom:143.136000px;}
.y80{bottom:146.196000px;}
.yc0{bottom:146.556000px;}
.yfe{bottom:148.751394px;}
.ye3{bottom:149.616000px;}
.yef{bottom:149.711646px;}
.y18f{bottom:152.310000px;}
.y15d{bottom:153.030000px;}
.y102{bottom:153.075599px;}
.y140{bottom:153.570000px;}
.y1e4{bottom:155.010000px;}
.y47{bottom:155.190000px;}
.y1a6{bottom:157.710000px;}
.y24{bottom:158.070000px;}
.y208{bottom:158.085000px;}
.y20f{bottom:158.250000px;}
.ybf{bottom:163.110000px;}
.y7f{bottom:163.470000px;}
.ye2{bottom:166.890000px;}
.y1e3{bottom:168.870000px;}
.y18e{bottom:169.590000px;}
.y15c{bottom:170.310000px;}
.y13f{bottom:170.850000px;}
.y46{bottom:172.470000px;}
.y23{bottom:173.730000px;}
.yff{bottom:174.213542px;}
.yed{bottom:174.742779px;}
.y1a5{bottom:174.990000px;}
.yf0{bottom:176.184168px;}
.ybe{bottom:177.690000px;}
.y7e{bottom:180.750000px;}
.y1e2{bottom:182.730000px;}
.ye1{bottom:184.170000px;}
.y18d{bottom:186.870000px;}
.y15b{bottom:187.590000px;}
.y13e{bottom:187.950000px;}
.y22{bottom:189.210000px;}
.y45{bottom:189.750000px;}
.y1a4{bottom:191.550000px;}
.ybd{bottom:194.970000px;}
.y1e1{bottom:196.410000px;}
.y7d{bottom:197.850000px;}
.yee{bottom:200.204927px;}
.ye0{bottom:201.270000px;}
.y18c{bottom:204.150000px;}
.y21{bottom:204.690000px;}
.y15a{bottom:204.870000px;}
.y13d{bottom:205.230000px;}
.y44{bottom:207.030000px;}
.y1e0{bottom:210.270000px;}
.y103{bottom:211.780263px;}
.ybc{bottom:212.250000px;}
.y7c{bottom:215.130000px;}
.y34{bottom:215.670000px;}
.y1a0{bottom:216.570000px;}
.ydf{bottom:218.550000px;}
.y20{bottom:220.170000px;}
.y18b{bottom:221.250000px;}
.y159{bottom:222.150000px;}
.y13c{bottom:222.510000px;}
.y1df{bottom:224.130000px;}
.y43{bottom:224.310000px;}
.y101{bottom:228.600010px;}
.ybb{bottom:229.350000px;}
.y7b{bottom:232.410000px;}
.y33{bottom:232.950000px;}
.y1f{bottom:235.830000px;}
.y1de{bottom:237.810000px;}
.y18a{bottom:238.530000px;}
.y158{bottom:239.250000px;}
.y13b{bottom:239.790000px;}
.y42{bottom:241.410000px;}
.yf4{bottom:241.610739px;}
.yf7{bottom:242.572998px;}
.yec{bottom:242.573027px;}
.yba{bottom:246.630000px;}
.y7a{bottom:249.690000px;}
.y32{bottom:250.050000px;}
.y1e{bottom:251.310000px;}
.y1dd{bottom:251.670000px;}
.yde{bottom:253.110000px;}
.y189{bottom:255.810000px;}
.y157{bottom:256.530000px;}
.y13a{bottom:257.070000px;}
.y41{bottom:258.690000px;}
.yb9{bottom:263.910000px;}
.y1dc{bottom:265.530000px;}
.yf2{bottom:266.649892px;}
.y1d{bottom:266.790000px;}
.y79{bottom:266.970000px;}
.y31{bottom:267.330000px;}
.yf5{bottom:267.612151px;}
.yea{bottom:267.612181px;}
.ydd{bottom:270.390000px;}
.y188{bottom:273.090000px;}
.y156{bottom:273.810000px;}
.y139{bottom:274.350000px;}
.y40{bottom:275.970000px;}
.y1db{bottom:279.210000px;}
.yb8{bottom:281.190000px;}
.y1c{bottom:282.270000px;}
.y78{bottom:284.250000px;}
.y30{bottom:284.610000px;}
.y20d{bottom:286.950000px;}
.ydc{bottom:287.670000px;}
.y187{bottom:290.370000px;}
.y155{bottom:291.090000px;}
.y138{bottom:291.450000px;}
.yf3{bottom:292.150130px;}
.y1da{bottom:293.070000px;}
.yf6{bottom:293.112388px;}
.yeb{bottom:293.112417px;}
.y3f{bottom:293.250000px;}
.y1b{bottom:297.750000px;}
.y77{bottom:301.350000px;}
.y206{bottom:302.430000px;}
.ydb{bottom:304.770000px;}
.y19f{bottom:306.030000px;}
.y1d9{bottom:306.930000px;}
.y186{bottom:307.650000px;}
.y154{bottom:308.370000px;}
.y137{bottom:308.730000px;}
.y3e{bottom:310.530000px;}
.y2f{bottom:310.890000px;}
.yb7{bottom:312.150000px;}
.y1a{bottom:313.410000px;}
.y76{bottom:318.630000px;}
.y1d8{bottom:320.610000px;}
.y19e{bottom:320.790000px;}
.yda{bottom:322.050000px;}
.y185{bottom:324.750000px;}
.y153{bottom:325.650000px;}
.y136{bottom:326.010000px;}
.y3d{bottom:327.810000px;}
.y19{bottom:328.890000px;}
.yb6{bottom:329.430000px;}
.y1d7{bottom:334.470000px;}
.y75{bottom:335.910000px;}
.yd9{bottom:339.330000px;}
.y184{bottom:342.030000px;}
.y152{bottom:342.750000px;}
.y135{bottom:343.290000px;}
.y37{bottom:344.010000px;}
.yb5{bottom:346.710000px;}
.y1d6{bottom:348.330000px;}
.y74{bottom:353.190000px;}
.y19c{bottom:355.350000px;}
.yd8{bottom:356.610000px;}
.y183{bottom:359.310000px;}
.y151{bottom:360.030000px;}
.y134{bottom:360.570000px;}
.y1d5{bottom:362.010000px;}
.yb4{bottom:363.990000px;}
.y73{bottom:370.470000px;}
.yd7{bottom:373.890000px;}
.y1d4{bottom:375.870000px;}
.y150{bottom:376.590000px;}
.y133{bottom:377.130000px;}
.yb3{bottom:381.270000px;}
.y72{bottom:387.795000px;}
.y1d3{bottom:389.775000px;}
.y19b{bottom:390.675000px;}
.yd6{bottom:391.215000px;}
.y132{bottom:391.575000px;}
.y182{bottom:393.915000px;}
.yb2{bottom:397.875000px;}
.y1d2{bottom:403.455000px;}
.y71{bottom:404.895000px;}
.yd5{bottom:408.315000px;}
.y14f{bottom:408.495000px;}
.y131{bottom:408.855000px;}
.y181{bottom:411.195000px;}
.yb1{bottom:412.275000px;}
.y17{bottom:415.830000px;}
.y1d1{bottom:417.315000px;}
.y70{bottom:422.175000px;}
.yd4{bottom:425.595000px;}
.y130{bottom:426.135000px;}
.yb0{bottom:427.035000px;}
.y180{bottom:428.295000px;}
.y1d0{bottom:431.175000px;}
.y6f{bottom:439.455000px;}
.yaf{bottom:440.895000px;}
.yd3{bottom:442.875000px;}
.y12f{bottom:443.415000px;}
.y1cf{bottom:444.855000px;}
.y17f{bottom:445.575000px;}
.yae{bottom:454.575000px;}
.y6e{bottom:456.735000px;}
.y16{bottom:457.995000px;}
.y1ce{bottom:458.715000px;}
.yd2{bottom:460.155000px;}
.y12e{bottom:460.515000px;}
.y17e{bottom:462.855000px;}
.yad{bottom:468.435000px;}
.y1cd{bottom:472.395000px;}
.y6d{bottom:474.015000px;}
.y19a{bottom:476.715000px;}
.yd1{bottom:477.435000px;}
.y12d{bottom:477.795000px;}
.y17d{bottom:480.135000px;}
.yac{bottom:482.295000px;}
.y1cc{bottom:486.255000px;}
.y199{bottom:490.395000px;}
.y6c{bottom:491.115000px;}
.y14e{bottom:494.715000px;}
.y12c{bottom:495.075000px;}
.yab{bottom:495.975000px;}
.y17c{bottom:497.415000px;}
.y1cb{bottom:500.115000px;}
.y198{bottom:504.975000px;}
.y6b{bottom:508.395000px;}
.yaa{bottom:509.835000px;}
.yd0{bottom:511.095000px;}
.y14d{bottom:511.815000px;}
.y12b{bottom:512.355000px;}
.y1ca{bottom:513.795000px;}
.y17b{bottom:514.515000px;}
.y197{bottom:522.255000px;}
.ya9{bottom:523.695000px;}
.ycf{bottom:524.955000px;}
.y6a{bottom:525.675000px;}
.y1c9{bottom:527.655000px;}
.y14c{bottom:529.095000px;}
.y12a{bottom:529.635000px;}
.y17a{bottom:531.795000px;}
.ya8{bottom:537.375000px;}
.y205{bottom:538.815000px;}
.yce{bottom:539.535000px;}
.y1c8{bottom:541.515000px;}
.y69{bottom:542.955000px;}
.y18{bottom:546.375000px;}
.y129{bottom:546.915000px;}
.y179{bottom:549.075000px;}
.ya7{bottom:551.235000px;}
.y204{bottom:552.495000px;}
.y1c7{bottom:555.195000px;}
.ycd{bottom:555.915000px;}
.y196{bottom:556.095000px;}
.y68{bottom:560.235000px;}
.y14b{bottom:563.655000px;}
.y128{bottom:564.015000px;}
.ya6{bottom:565.095000px;}
.y178{bottom:566.355000px;}
.ycc{bottom:567.255000px;}
.ye6{bottom:568.440000px;}
.y1c6{bottom:569.055000px;}
.y195{bottom:569.775000px;}
.y67{bottom:577.515000px;}
.ya5{bottom:578.775000px;}
.y203{bottom:580.215000px;}
.y14a{bottom:580.935000px;}
.y127{bottom:581.295000px;}
.y1c5{bottom:582.915000px;}
.y177{bottom:583.635000px;}
.y194{bottom:584.355000px;}
.ya4{bottom:592.635000px;}
.y202{bottom:593.895000px;}
.y66{bottom:594.615000px;}
.y1c4{bottom:596.595000px;}
.y149{bottom:598.215000px;}
.y126{bottom:598.575000px;}
.y176{bottom:600.915000px;}
.y193{bottom:601.635000px;}
.ya3{bottom:606.495000px;}
.y201{bottom:607.755000px;}
.y1c3{bottom:610.455000px;}
.y65{bottom:611.895000px;}
.y148{bottom:615.315000px;}
.y125{bottom:615.855000px;}
.y175{bottom:618.015000px;}
.y192{bottom:618.915000px;}
.ya2{bottom:620.175000px;}
.y200{bottom:621.615000px;}
.y1c2{bottom:624.315000px;}
.y64{bottom:629.175000px;}
.y147{bottom:632.595000px;}
.y124{bottom:633.135000px;}
.ya0{bottom:634.755000px;}
.y174{bottom:635.295000px;}
.y1c1{bottom:637.995000px;}
.y63{bottom:646.485000px;}
.y191{bottom:649.185000px;}
.y146{bottom:649.905000px;}
.y123{bottom:650.445000px;}
.y1c0{bottom:651.885000px;}
.y9f{bottom:652.605000px;}
.y1ff{bottom:663.045000px;}
.y62{bottom:663.765000px;}
.y1bf{bottom:665.745000px;}
.y122{bottom:666.825000px;}
.y145{bottom:667.185000px;}
.y9e{bottom:669.885000px;}
.y1fe{bottom:676.725000px;}
.y1be{bottom:679.425000px;}
.y61{bottom:681.045000px;}
.y121{bottom:681.405000px;}
.y144{bottom:684.465000px;}
.y173{bottom:687.165000px;}
.y1fd{bottom:690.585000px;}
.y1bd{bottom:693.285000px;}
.y60{bottom:698.145000px;}
.y120{bottom:698.685000px;}
.y143{bottom:701.745000px;}
.y9d{bottom:704.445000px;}
.y1bc{bottom:707.145000px;}
.y5f{bottom:715.425000px;}
.y11f{bottom:715.965000px;}
.y1fc{bottom:718.125000px;}
.y142{bottom:718.845000px;}
.y1bb{bottom:720.825000px;}
.y9c{bottom:721.545000px;}
.y1fb{bottom:731.985000px;}
.y5e{bottom:732.705000px;}
.y11e{bottom:733.245000px;}
.y1ba{bottom:734.685000px;}
.y141{bottom:735.405000px;}
.y9b{bottom:738.825000px;}
.y1fa{bottom:745.845000px;}
.y1b9{bottom:748.545000px;}
.y5d{bottom:749.985000px;}
.y172{bottom:755.385000px;}
.y9a{bottom:756.105000px;}
.y1f9{bottom:759.525000px;}
.y1b8{bottom:762.225000px;}
.y11d{bottom:766.905000px;}
.y5c{bottom:767.265000px;}
.y171{bottom:769.965000px;}
.y99{bottom:773.385000px;}
.y1b7{bottom:776.085000px;}
.y11c{bottom:780.765000px;}
.y5b{bottom:784.545000px;}
.y170{bottom:787.245000px;}
.y1b6{bottom:789.945000px;}
.y98{bottom:790.665000px;}
.y11{bottom:792.645000px;}
.y11b{bottom:792.825000px;}
.y1f8{bottom:800.925000px;}
.y5a{bottom:801.645000px;}
.y1b5{bottom:803.625000px;}
.y16f{bottom:804.345000px;}
.y11a{bottom:806.505000px;}
.y97{bottom:807.945000px;}
.y1f7{bottom:814.785000px;}
.y1b4{bottom:817.485000px;}
.y59{bottom:818.925000px;}
.y119{bottom:820.365000px;}
.y16e{bottom:821.625000px;}
.y96{bottom:825.045000px;}
.y1f6{bottom:828.645000px;}
.y1b3{bottom:831.345000px;}
.y118{bottom:834.225000px;}
.y58{bottom:836.205000px;}
.y16d{bottom:838.905000px;}
.y95{bottom:842.325000px;}
.y1b2{bottom:845.025000px;}
.y117{bottom:847.905000px;}
.y57{bottom:853.485000px;}
.y16c{bottom:856.185000px;}
.y1b1{bottom:858.885000px;}
.y94{bottom:859.605000px;}
.y115{bottom:861.765000px;}
.y1f5{bottom:870.045000px;}
.y56{bottom:870.765000px;}
.y1b0{bottom:872.745000px;}
.y16b{bottom:873.465000px;}
.y93{bottom:876.885000px;}
.y1f4{bottom:883.725000px;}
.y1af{bottom:887.145000px;}
.y55{bottom:887.865000px;}
.y114{bottom:889.305000px;}
.y16a{bottom:890.565000px;}
.y92{bottom:894.210000px;}
.ycb{bottom:894.930000px;}
.yf{bottom:897.630000px;}
.y113{bottom:903.210000px;}
.y1ae{bottom:904.470000px;}
.y54{bottom:905.190000px;}
.y169{bottom:907.890000px;}
.y91{bottom:911.310000px;}
.y1f3{bottom:911.490000px;}
.yca{bottom:912.210000px;}
.y112{bottom:917.070000px;}
.y1ad{bottom:921.750000px;}
.y53{bottom:922.470000px;}
.y168{bottom:925.170000px;}
.y90{bottom:928.590000px;}
.ye{bottom:929.310000px;}
.y111{bottom:930.750000px;}
.y1ac{bottom:939.030000px;}
.y52{bottom:939.750000px;}
.y167{bottom:942.450000px;}
.y110{bottom:944.610000px;}
.y8f{bottom:945.870000px;}
.yd{bottom:946.590000px;}
.y1f2{bottom:952.890000px;}
.y1ab{bottom:956.310000px;}
.y51{bottom:957.030000px;}
.y10f{bottom:958.470000px;}
.y166{bottom:959.730000px;}
.y8e{bottom:962.430000px;}
.yc{bottom:963.150000px;}
.yc9{bottom:963.870000px;}
.y1f1{bottom:966.570000px;}
.y10e{bottom:972.150000px;}
.y1aa{bottom:973.410000px;}
.y50{bottom:974.310000px;}
.y8d{bottom:976.290000px;}
.y165{bottom:977.010000px;}
.yb{bottom:977.730000px;}
.y1f0{bottom:980.430000px;}
.yc8{bottom:981.150000px;}
.y10d{bottom:986.010000px;}
.y8c{bottom:990.690000px;}
.y4f{bottom:991.410000px;}
.y164{bottom:994.110000px;}
.y1ef{bottom:994.290000px;}
.ya{bottom:995.010000px;}
.yc7{bottom:998.430000px;}
.y10a{bottom:1000.590000px;}
.y8b{bottom:1007.970000px;}
.y4e{bottom:1008.690000px;}
.y163{bottom:1011.390000px;}
.y9{bottom:1012.110000px;}
.y10c{bottom:1014.270000px;}
.yc6{bottom:1014.990000px;}
.y1ee{bottom:1021.830000px;}
.y8a{bottom:1025.250000px;}
.y4d{bottom:1025.970000px;}
.y162{bottom:1028.670000px;}
.yc5{bottom:1029.390000px;}
.y8{bottom:1031.550000px;}
.y109{bottom:1032.090000px;}
.y1ed{bottom:1035.690000px;}
.y89{bottom:1042.530000px;}
.y4c{bottom:1043.250000px;}
.y161{bottom:1045.950000px;}
.yc4{bottom:1046.670000px;}
.y1ec{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y88{bottom:1059.810000px;}
.y4b{bottom:1060.530000px;}
.y160{bottom:1063.230000px;}
.yc3{bottom:1063.950000px;}
.y108{bottom:1065.930000px;}
.y87{bottom:1076.910000px;}
.y1eb{bottom:1077.090000px;}
.y4a{bottom:1077.810000px;}
.y107{bottom:1079.790000px;}
.yc2{bottom:1080.510000px;}
.y6{bottom:1086.630000px;}
.y1ea{bottom:1090.770000px;}
.y86{bottom:1094.190000px;}
.y49{bottom:1094.910000px;}
.y1e9{bottom:1104.630000px;}
.y85{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y1e8{bottom:1118.490000px;}
.y84{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1e7{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y48{bottom:1160.640000px;}
.y83{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h29{height:5.653125px;}
.h17{height:13.680000px;}
.h16{height:13.860000px;}
.h15{height:13.896000px;}
.h27{height:15.480000px;}
.h13{height:17.100000px;}
.h12{height:17.280000px;}
.h7{height:26.280000px;}
.h1f{height:27.540000px;}
.h22{height:34.560000px;}
.h21{height:34.596000px;}
.h14{height:41.726953px;}
.h6{height:47.344922px;}
.h24{height:48.616875px;}
.h1a{height:50.332422px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h26{height:54.421875px;}
.h1d{height:58.353026px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h18{height:61.423863px;}
.h11{height:62.211094px;}
.h20{height:65.884219px;}
.h8{height:70.664062px;}
.h23{height:86.220000px;}
.he{height:87.480000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h10{height:113.256000px;}
.h1e{height:125.607902px;}
.h1b{height:127.532449px;}
.h1c{height:127.534854px;}
.h25{height:171.750000px;}
.h28{height:171.930000px;}
.h19{height:309.420000px;}
.hd{height:333.930000px;}
.hb{height:350.535000px;}
.ha{height:438.915000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:16.740000px;}
.w4{width:21.240000px;}
.wb{width:28.080000px;}
.w10{width:28.296000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w9{width:30.960000px;}
.we{width:30.996000px;}
.w24{width:35.100000px;}
.w1f{width:35.280000px;}
.w23{width:35.316000px;}
.w20{width:35.640000px;}
.w25{width:36.036000px;}
.w21{width:36.180000px;}
.w26{width:36.360000px;}
.w27{width:36.540000px;}
.w22{width:36.720000px;}
.w14{width:42.660000px;}
.wc{width:43.200000px;}
.w1b{width:53.100000px;}
.w1d{width:63.720000px;}
.w16{width:63.900000px;}
.w18{width:84.636000px;}
.w17{width:95.580000px;}
.w1c{width:116.496000px;}
.w13{width:128.016000px;}
.w2b{width:143.820000px;}
.wa{width:144.936000px;}
.wf{width:153.360000px;}
.w1e{width:158.070000px;}
.w15{width:180.210000px;}
.w1a{width:191.010000px;}
.w2a{width:198.570000px;}
.w3{width:209.010000px;}
.w28{width:214.770000px;}
.w12{width:244.110000px;}
.w29{width:244.290000px;}
.w5{width:433.155000px;}
.w2c{width:526.605000px;}
.w11{width:611.850000px;}
.w19{width:658.905000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x1f{left:12.420000px;}
.x20{left:14.040000px;}
.x22{left:15.480000px;}
.x18{left:16.560000px;}
.x3f{left:18.180000px;}
.x43{left:19.800000px;}
.x21{left:21.600000px;}
.x35{left:28.724653px;}
.x29{left:48.199999px;}
.x15{left:49.545000px;}
.x1c{left:53.820000px;}
.x2a{left:55.501982px;}
.x2b{left:67.673311px;}
.x41{left:71.460000px;}
.x3c{left:72.894000px;}
.x23{left:76.680000px;}
.xd{left:106.740000px;}
.x57{left:116.496000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x25{left:129.995987px;}
.x58{left:135.534000px;}
.x24{left:148.895987px;}
.x28{left:151.125000px;}
.x10{left:154.649987px;}
.x2{left:155.729987px;}
.x12{left:157.349987px;}
.x56{left:159.689987px;}
.x47{left:170.129987px;}
.xf{left:181.649987px;}
.x37{left:191.969485px;}
.x36{left:194.938198px;}
.x7{left:196.769987px;}
.x3{left:202.169987px;}
.x14{left:228.270000px;}
.x30{left:247.081593px;}
.x2c{left:252.442340px;}
.x34{left:258.270123px;}
.x59{left:260.310000px;}
.x2d{left:274.839694px;}
.x6{left:286.814987px;}
.x3a{left:297.277665px;}
.x45{left:318.675000px;}
.x48{left:321.375000px;}
.x4{left:325.154987px;}
.x27{left:329.114987px;}
.xa{left:334.515000px;}
.x3b{left:340.814987px;}
.x54{left:343.155000px;}
.x13{left:350.534987px;}
.xc{left:355.755000px;}
.x49{left:357.015000px;}
.x3d{left:371.775000px;}
.x16{left:373.215000px;}
.x4a{left:393.195000px;}
.x17{left:401.295000px;}
.x38{left:404.533167px;}
.xe{left:425.235000px;}
.x4b{left:429.915000px;}
.x19{left:444.495000px;}
.x5{left:457.274987px;}
.x1a{left:461.235000px;}
.x31{left:465.430414px;}
.x33{left:478.101273px;}
.x1b{left:492.225000px;}
.x2e{left:494.203809px;}
.x3e{left:499.785000px;}
.x4c{left:501.405000px;}
.x32{left:504.437956px;}
.x2f{left:506.387321px;}
.x39{left:515.626485px;}
.x4d{left:536.685000px;}
.x40{left:542.445000px;}
.x4e{left:571.965000px;}
.x55{left:587.445000px;}
.x4f{left:607.065000px;}
.x44{left:638.025000px;}
.x50{left:642.345000px;}
.x1d{left:645.585000px;}
.x46{left:658.950000px;}
.x1e{left:673.890000px;}
.x51{left:678.390000px;}
.x52{left:714.750000px;}
.x42{left:722.670000px;}
.x53{left:749.850000px;}
.x11{left:756.870000px;}
.x26{left:763.349987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.240000pt;}
.v2{vertical-align:-52.000000pt;}
.v6{vertical-align:-11.974955pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:59.782112pt;}
.v4{vertical-align:61.492820pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.239467pt;}
.ls20{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls9{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls14{letter-spacing:0.214484pt;}
.ls6{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.239467pt;}
.ls1d{letter-spacing:0.272640pt;}
.ls8{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls25{letter-spacing:2.240000pt;}
.lse{letter-spacing:3.152640pt;}
.ls19{letter-spacing:3.360000pt;}
.lsf{letter-spacing:5.712640pt;}
.ls17{letter-spacing:5.893120pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:9.120000pt;}
.ls24{letter-spacing:9.280000pt;}
.lsd{letter-spacing:17.872640pt;}
.ls10{letter-spacing:20.432640pt;}
.lsc{letter-spacing:32.592640pt;}
.ls16{letter-spacing:50.080000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls13{letter-spacing:140.298667pt;}
.ls12{letter-spacing:178.698667pt;}
.ls15{letter-spacing:362.318894pt;}
.ws14{word-spacing:-53.120000pt;}
.ws10{word-spacing:-13.825612pt;}
.ws1{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.870933pt;}
.ws3{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.139770pt;}
.wsc{word-spacing:-11.925286pt;}
.ws9{word-spacing:-11.040000pt;}
.ws16{word-spacing:-10.959467pt;}
.ws17{word-spacing:-10.881067pt;}
.wsa{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.480533pt;}
.ws15{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:107.410129pt;}
.wsf{word-spacing:170.777600pt;}
.wse{word-spacing:238.489535pt;}
.ws11{word-spacing:658.075088pt;}
._13{margin-left:-6.240000pt;}
._a{margin-left:-3.072000pt;}
._9{margin-left:-2.035200pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._7{width:3.327360pt;}
._5{width:5.100160pt;}
._4{width:6.080000pt;}
._8{width:7.344000pt;}
._b{width:9.030400pt;}
._6{width:10.268160pt;}
._c{width:11.242240pt;}
._10{width:12.198827pt;}
._20{width:13.238187pt;}
._d{width:14.183040pt;}
._11{width:15.245440pt;}
._1a{width:16.867627pt;}
._16{width:18.152747pt;}
._12{width:19.388800pt;}
._18{width:22.522880pt;}
._19{width:23.967787pt;}
._1b{width:26.787627pt;}
._22{width:28.574933pt;}
._1d{width:29.783680pt;}
._21{width:31.740587pt;}
._1e{width:32.705280pt;}
._1c{width:44.551040pt;}
._26{width:48.734080pt;}
._25{width:50.252587pt;}
._1f{width:53.180587pt;}
._24{width:56.369707pt;}
._23{width:57.336960pt;}
._e{width:452.521387pt;}
._14{width:654.560000pt;}
._17{width:717.908907pt;}
._f{width:769.499307pt;}
._15{width:953.866667pt;}
._3{width:979.477333pt;}
.fs8{font-size:5.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:42.896713pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:49.732416pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y20e{bottom:0.800000pt;}
.y207{bottom:1.440000pt;}
.ya1{bottom:2.240000pt;}
.y2e{bottom:2.560000pt;}
.y218{bottom:2.720000pt;}
.y10{bottom:2.880000pt;}
.ye9{bottom:4.322028pt;}
.yfa{bottom:5.176109pt;}
.y36{bottom:8.000000pt;}
.y3c{bottom:10.880000pt;}
.y10b{bottom:14.400000pt;}
.y116{bottom:14.560000pt;}
.y2d{bottom:16.320000pt;}
.y217{bottom:16.480000pt;}
.y15{bottom:18.240000pt;}
.y19d{bottom:18.720000pt;}
.y3b{bottom:26.240000pt;}
.ye7{bottom:26.571211pt;}
.yf8{bottom:27.424757pt;}
.y2c{bottom:30.080000pt;}
.y216{bottom:30.272000pt;}
.y14{bottom:33.440000pt;}
.y1a3{bottom:33.600000pt;}
.y106{bottom:37.247083pt;}
.y3a{bottom:41.640000pt;}
.y2b{bottom:44.000000pt;}
.y215{bottom:44.026667pt;}
.y13{bottom:48.800000pt;}
.y1a2{bottom:48.960000pt;}
.ye8{bottom:49.204232pt;}
.yf9{bottom:50.059560pt;}
.yfd{bottom:53.944305pt;}
.y39{bottom:56.840000pt;}
.y2a{bottom:57.760000pt;}
.y214{bottom:57.946667pt;}
.y35{bottom:58.560000pt;}
.y1a1{bottom:64.160000pt;}
.y29{bottom:71.520000pt;}
.y213{bottom:71.706667pt;}
.y12{bottom:72.160000pt;}
.yfb{bottom:76.151433pt;}
.y5{bottom:78.400000pt;}
.y104{bottom:80.037932pt;}
.y38{bottom:80.200000pt;}
.y28{bottom:85.306667pt;}
.y20c{bottom:85.320000pt;}
.y212{bottom:85.466667pt;}
.y105{bottom:97.973642pt;}
.yfc{bottom:98.401327pt;}
.y82{bottom:99.200000pt;}
.y27{bottom:99.226667pt;}
.y20b{bottom:99.240000pt;}
.y219{bottom:101.120000pt;}
.ye5{bottom:102.240000pt;}
.y1a9{bottom:102.720000pt;}
.y15f{bottom:105.440000pt;}
.y100{bottom:109.973565pt;}
.yf1{bottom:111.682465pt;}
.y26{bottom:112.986667pt;}
.y20a{bottom:113.000000pt;}
.y211{bottom:113.146667pt;}
.y1e6{bottom:113.280000pt;}
.y81{bottom:114.560000pt;}
.y1a8{bottom:115.040000pt;}
.yc1{bottom:117.440000pt;}
.ye4{bottom:117.600000pt;}
.y190{bottom:120.032000pt;}
.y15e{bottom:120.672000pt;}
.y1e5{bottom:125.632000pt;}
.y25{bottom:126.746667pt;}
.y209{bottom:126.760000pt;}
.y210{bottom:126.906667pt;}
.y1a7{bottom:127.232000pt;}
.y80{bottom:129.952000pt;}
.yc0{bottom:130.272000pt;}
.yfe{bottom:132.223462pt;}
.ye3{bottom:132.992000pt;}
.yef{bottom:133.077018pt;}
.y18f{bottom:135.386667pt;}
.y15d{bottom:136.026667pt;}
.y102{bottom:136.067199pt;}
.y140{bottom:136.506667pt;}
.y1e4{bottom:137.786667pt;}
.y47{bottom:137.946667pt;}
.y1a6{bottom:140.186667pt;}
.y24{bottom:140.506667pt;}
.y208{bottom:140.520000pt;}
.y20f{bottom:140.666667pt;}
.ybf{bottom:144.986667pt;}
.y7f{bottom:145.306667pt;}
.ye2{bottom:148.346667pt;}
.y1e3{bottom:150.106667pt;}
.y18e{bottom:150.746667pt;}
.y15c{bottom:151.386667pt;}
.y13f{bottom:151.866667pt;}
.y46{bottom:153.306667pt;}
.y23{bottom:154.426667pt;}
.yff{bottom:154.856482pt;}
.yed{bottom:155.326915pt;}
.y1a5{bottom:155.546667pt;}
.yf0{bottom:156.608149pt;}
.ybe{bottom:157.946667pt;}
.y7e{bottom:160.666667pt;}
.y1e2{bottom:162.426667pt;}
.ye1{bottom:163.706667pt;}
.y18d{bottom:166.106667pt;}
.y15b{bottom:166.746667pt;}
.y13e{bottom:167.066667pt;}
.y22{bottom:168.186667pt;}
.y45{bottom:168.666667pt;}
.y1a4{bottom:170.266667pt;}
.ybd{bottom:173.306667pt;}
.y1e1{bottom:174.586667pt;}
.y7d{bottom:175.866667pt;}
.yee{bottom:177.959935pt;}
.ye0{bottom:178.906667pt;}
.y18c{bottom:181.466667pt;}
.y21{bottom:181.946667pt;}
.y15a{bottom:182.106667pt;}
.y13d{bottom:182.426667pt;}
.y44{bottom:184.026667pt;}
.y1e0{bottom:186.906667pt;}
.y103{bottom:188.249122pt;}
.ybc{bottom:188.666667pt;}
.y7c{bottom:191.226667pt;}
.y34{bottom:191.706667pt;}
.y1a0{bottom:192.506667pt;}
.ydf{bottom:194.266667pt;}
.y20{bottom:195.706667pt;}
.y18b{bottom:196.666667pt;}
.y159{bottom:197.466667pt;}
.y13c{bottom:197.786667pt;}
.y1df{bottom:199.226667pt;}
.y43{bottom:199.386667pt;}
.y101{bottom:203.200009pt;}
.ybb{bottom:203.866667pt;}
.y7b{bottom:206.586667pt;}
.y33{bottom:207.066667pt;}
.y1f{bottom:209.626667pt;}
.y1de{bottom:211.386667pt;}
.y18a{bottom:212.026667pt;}
.y158{bottom:212.666667pt;}
.y13b{bottom:213.146667pt;}
.y42{bottom:214.586667pt;}
.yf4{bottom:214.765102pt;}
.yf7{bottom:215.620443pt;}
.yec{bottom:215.620468pt;}
.yba{bottom:219.226667pt;}
.y7a{bottom:221.946667pt;}
.y32{bottom:222.266667pt;}
.y1e{bottom:223.386667pt;}
.y1dd{bottom:223.706667pt;}
.yde{bottom:224.986667pt;}
.y189{bottom:227.386667pt;}
.y157{bottom:228.026667pt;}
.y13a{bottom:228.506667pt;}
.y41{bottom:229.946667pt;}
.yb9{bottom:234.586667pt;}
.y1dc{bottom:236.026667pt;}
.yf2{bottom:237.022126pt;}
.y1d{bottom:237.146667pt;}
.y79{bottom:237.306667pt;}
.y31{bottom:237.626667pt;}
.yf5{bottom:237.877467pt;}
.yea{bottom:237.877494pt;}
.ydd{bottom:240.346667pt;}
.y188{bottom:242.746667pt;}
.y156{bottom:243.386667pt;}
.y139{bottom:243.866667pt;}
.y40{bottom:245.306667pt;}
.y1db{bottom:248.186667pt;}
.yb8{bottom:249.946667pt;}
.y1c{bottom:250.906667pt;}
.y78{bottom:252.666667pt;}
.y30{bottom:252.986667pt;}
.y20d{bottom:255.066667pt;}
.ydc{bottom:255.706667pt;}
.y187{bottom:258.106667pt;}
.y155{bottom:258.746667pt;}
.y138{bottom:259.066667pt;}
.yf3{bottom:259.689004pt;}
.y1da{bottom:260.506667pt;}
.yf6{bottom:260.544345pt;}
.yeb{bottom:260.544371pt;}
.y3f{bottom:260.666667pt;}
.y1b{bottom:264.666667pt;}
.y77{bottom:267.866667pt;}
.y206{bottom:268.826667pt;}
.ydb{bottom:270.906667pt;}
.y19f{bottom:272.026667pt;}
.y1d9{bottom:272.826667pt;}
.y186{bottom:273.466667pt;}
.y154{bottom:274.106667pt;}
.y137{bottom:274.426667pt;}
.y3e{bottom:276.026667pt;}
.y2f{bottom:276.346667pt;}
.yb7{bottom:277.466667pt;}
.y1a{bottom:278.586667pt;}
.y76{bottom:283.226667pt;}
.y1d8{bottom:284.986667pt;}
.y19e{bottom:285.146667pt;}
.yda{bottom:286.266667pt;}
.y185{bottom:288.666667pt;}
.y153{bottom:289.466667pt;}
.y136{bottom:289.786667pt;}
.y3d{bottom:291.386667pt;}
.y19{bottom:292.346667pt;}
.yb6{bottom:292.826667pt;}
.y1d7{bottom:297.306667pt;}
.y75{bottom:298.586667pt;}
.yd9{bottom:301.626667pt;}
.y184{bottom:304.026667pt;}
.y152{bottom:304.666667pt;}
.y135{bottom:305.146667pt;}
.y37{bottom:305.786667pt;}
.yb5{bottom:308.186667pt;}
.y1d6{bottom:309.626667pt;}
.y74{bottom:313.946667pt;}
.y19c{bottom:315.866667pt;}
.yd8{bottom:316.986667pt;}
.y183{bottom:319.386667pt;}
.y151{bottom:320.026667pt;}
.y134{bottom:320.506667pt;}
.y1d5{bottom:321.786667pt;}
.yb4{bottom:323.546667pt;}
.y73{bottom:329.306667pt;}
.yd7{bottom:332.346667pt;}
.y1d4{bottom:334.106667pt;}
.y150{bottom:334.746667pt;}
.y133{bottom:335.226667pt;}
.yb3{bottom:338.906667pt;}
.y72{bottom:344.706667pt;}
.y1d3{bottom:346.466667pt;}
.y19b{bottom:347.266667pt;}
.yd6{bottom:347.746667pt;}
.y132{bottom:348.066667pt;}
.y182{bottom:350.146667pt;}
.yb2{bottom:353.666667pt;}
.y1d2{bottom:358.626667pt;}
.y71{bottom:359.906667pt;}
.yd5{bottom:362.946667pt;}
.y14f{bottom:363.106667pt;}
.y131{bottom:363.426667pt;}
.y181{bottom:365.506667pt;}
.yb1{bottom:366.466667pt;}
.y17{bottom:369.626667pt;}
.y1d1{bottom:370.946667pt;}
.y70{bottom:375.266667pt;}
.yd4{bottom:378.306667pt;}
.y130{bottom:378.786667pt;}
.yb0{bottom:379.586667pt;}
.y180{bottom:380.706667pt;}
.y1d0{bottom:383.266667pt;}
.y6f{bottom:390.626667pt;}
.yaf{bottom:391.906667pt;}
.yd3{bottom:393.666667pt;}
.y12f{bottom:394.146667pt;}
.y1cf{bottom:395.426667pt;}
.y17f{bottom:396.066667pt;}
.yae{bottom:404.066667pt;}
.y6e{bottom:405.986667pt;}
.y16{bottom:407.106667pt;}
.y1ce{bottom:407.746667pt;}
.yd2{bottom:409.026667pt;}
.y12e{bottom:409.346667pt;}
.y17e{bottom:411.426667pt;}
.yad{bottom:416.386667pt;}
.y1cd{bottom:419.906667pt;}
.y6d{bottom:421.346667pt;}
.y19a{bottom:423.746667pt;}
.yd1{bottom:424.386667pt;}
.y12d{bottom:424.706667pt;}
.y17d{bottom:426.786667pt;}
.yac{bottom:428.706667pt;}
.y1cc{bottom:432.226667pt;}
.y199{bottom:435.906667pt;}
.y6c{bottom:436.546667pt;}
.y14e{bottom:439.746667pt;}
.y12c{bottom:440.066667pt;}
.yab{bottom:440.866667pt;}
.y17c{bottom:442.146667pt;}
.y1cb{bottom:444.546667pt;}
.y198{bottom:448.866667pt;}
.y6b{bottom:451.906667pt;}
.yaa{bottom:453.186667pt;}
.yd0{bottom:454.306667pt;}
.y14d{bottom:454.946667pt;}
.y12b{bottom:455.426667pt;}
.y1ca{bottom:456.706667pt;}
.y17b{bottom:457.346667pt;}
.y197{bottom:464.226667pt;}
.ya9{bottom:465.506667pt;}
.ycf{bottom:466.626667pt;}
.y6a{bottom:467.266667pt;}
.y1c9{bottom:469.026667pt;}
.y14c{bottom:470.306667pt;}
.y12a{bottom:470.786667pt;}
.y17a{bottom:472.706667pt;}
.ya8{bottom:477.666667pt;}
.y205{bottom:478.946667pt;}
.yce{bottom:479.586667pt;}
.y1c8{bottom:481.346667pt;}
.y69{bottom:482.626667pt;}
.y18{bottom:485.666667pt;}
.y129{bottom:486.146667pt;}
.y179{bottom:488.066667pt;}
.ya7{bottom:489.986667pt;}
.y204{bottom:491.106667pt;}
.y1c7{bottom:493.506667pt;}
.ycd{bottom:494.146667pt;}
.y196{bottom:494.306667pt;}
.y68{bottom:497.986667pt;}
.y14b{bottom:501.026667pt;}
.y128{bottom:501.346667pt;}
.ya6{bottom:502.306667pt;}
.y178{bottom:503.426667pt;}
.ycc{bottom:504.226667pt;}
.ye6{bottom:505.280000pt;}
.y1c6{bottom:505.826667pt;}
.y195{bottom:506.466667pt;}
.y67{bottom:513.346667pt;}
.ya5{bottom:514.466667pt;}
.y203{bottom:515.746667pt;}
.y14a{bottom:516.386667pt;}
.y127{bottom:516.706667pt;}
.y1c5{bottom:518.146667pt;}
.y177{bottom:518.786667pt;}
.y194{bottom:519.426667pt;}
.ya4{bottom:526.786667pt;}
.y202{bottom:527.906667pt;}
.y66{bottom:528.546667pt;}
.y1c4{bottom:530.306667pt;}
.y149{bottom:531.746667pt;}
.y126{bottom:532.066667pt;}
.y176{bottom:534.146667pt;}
.y193{bottom:534.786667pt;}
.ya3{bottom:539.106667pt;}
.y201{bottom:540.226667pt;}
.y1c3{bottom:542.626667pt;}
.y65{bottom:543.906667pt;}
.y148{bottom:546.946667pt;}
.y125{bottom:547.426667pt;}
.y175{bottom:549.346667pt;}
.y192{bottom:550.146667pt;}
.ya2{bottom:551.266667pt;}
.y200{bottom:552.546667pt;}
.y1c2{bottom:554.946667pt;}
.y64{bottom:559.266667pt;}
.y147{bottom:562.306667pt;}
.y124{bottom:562.786667pt;}
.ya0{bottom:564.226667pt;}
.y174{bottom:564.706667pt;}
.y1c1{bottom:567.106667pt;}
.y63{bottom:574.653333pt;}
.y191{bottom:577.053333pt;}
.y146{bottom:577.693333pt;}
.y123{bottom:578.173333pt;}
.y1c0{bottom:579.453333pt;}
.y9f{bottom:580.093333pt;}
.y1ff{bottom:589.373333pt;}
.y62{bottom:590.013333pt;}
.y1bf{bottom:591.773333pt;}
.y122{bottom:592.733333pt;}
.y145{bottom:593.053333pt;}
.y9e{bottom:595.453333pt;}
.y1fe{bottom:601.533333pt;}
.y1be{bottom:603.933333pt;}
.y61{bottom:605.373333pt;}
.y121{bottom:605.693333pt;}
.y144{bottom:608.413333pt;}
.y173{bottom:610.813333pt;}
.y1fd{bottom:613.853333pt;}
.y1bd{bottom:616.253333pt;}
.y60{bottom:620.573333pt;}
.y120{bottom:621.053333pt;}
.y143{bottom:623.773333pt;}
.y9d{bottom:626.173333pt;}
.y1bc{bottom:628.573333pt;}
.y5f{bottom:635.933333pt;}
.y11f{bottom:636.413333pt;}
.y1fc{bottom:638.333333pt;}
.y142{bottom:638.973333pt;}
.y1bb{bottom:640.733333pt;}
.y9c{bottom:641.373333pt;}
.y1fb{bottom:650.653333pt;}
.y5e{bottom:651.293333pt;}
.y11e{bottom:651.773333pt;}
.y1ba{bottom:653.053333pt;}
.y141{bottom:653.693333pt;}
.y9b{bottom:656.733333pt;}
.y1fa{bottom:662.973333pt;}
.y1b9{bottom:665.373333pt;}
.y5d{bottom:666.653333pt;}
.y172{bottom:671.453333pt;}
.y9a{bottom:672.093333pt;}
.y1f9{bottom:675.133333pt;}
.y1b8{bottom:677.533333pt;}
.y11d{bottom:681.693333pt;}
.y5c{bottom:682.013333pt;}
.y171{bottom:684.413333pt;}
.y99{bottom:687.453333pt;}
.y1b7{bottom:689.853333pt;}
.y11c{bottom:694.013333pt;}
.y5b{bottom:697.373333pt;}
.y170{bottom:699.773333pt;}
.y1b6{bottom:702.173333pt;}
.y98{bottom:702.813333pt;}
.y11{bottom:704.573333pt;}
.y11b{bottom:704.733333pt;}
.y1f8{bottom:711.933333pt;}
.y5a{bottom:712.573333pt;}
.y1b5{bottom:714.333333pt;}
.y16f{bottom:714.973333pt;}
.y11a{bottom:716.893333pt;}
.y97{bottom:718.173333pt;}
.y1f7{bottom:724.253333pt;}
.y1b4{bottom:726.653333pt;}
.y59{bottom:727.933333pt;}
.y119{bottom:729.213333pt;}
.y16e{bottom:730.333333pt;}
.y96{bottom:733.373333pt;}
.y1f6{bottom:736.573333pt;}
.y1b3{bottom:738.973333pt;}
.y118{bottom:741.533333pt;}
.y58{bottom:743.293333pt;}
.y16d{bottom:745.693333pt;}
.y95{bottom:748.733333pt;}
.y1b2{bottom:751.133333pt;}
.y117{bottom:753.693333pt;}
.y57{bottom:758.653333pt;}
.y16c{bottom:761.053333pt;}
.y1b1{bottom:763.453333pt;}
.y94{bottom:764.093333pt;}
.y115{bottom:766.013333pt;}
.y1f5{bottom:773.373333pt;}
.y56{bottom:774.013333pt;}
.y1b0{bottom:775.773333pt;}
.y16b{bottom:776.413333pt;}
.y93{bottom:779.453333pt;}
.y1f4{bottom:785.533333pt;}
.y1af{bottom:788.573333pt;}
.y55{bottom:789.213333pt;}
.y114{bottom:790.493333pt;}
.y16a{bottom:791.613333pt;}
.y92{bottom:794.853333pt;}
.ycb{bottom:795.493333pt;}
.yf{bottom:797.893333pt;}
.y113{bottom:802.853333pt;}
.y1ae{bottom:803.973333pt;}
.y54{bottom:804.613333pt;}
.y169{bottom:807.013333pt;}
.y91{bottom:810.053333pt;}
.y1f3{bottom:810.213333pt;}
.yca{bottom:810.853333pt;}
.y112{bottom:815.173333pt;}
.y1ad{bottom:819.333333pt;}
.y53{bottom:819.973333pt;}
.y168{bottom:822.373333pt;}
.y90{bottom:825.413333pt;}
.ye{bottom:826.053333pt;}
.y111{bottom:827.333333pt;}
.y1ac{bottom:834.693333pt;}
.y52{bottom:835.333333pt;}
.y167{bottom:837.733333pt;}
.y110{bottom:839.653333pt;}
.y8f{bottom:840.773333pt;}
.yd{bottom:841.413333pt;}
.y1f2{bottom:847.013333pt;}
.y1ab{bottom:850.053333pt;}
.y51{bottom:850.693333pt;}
.y10f{bottom:851.973333pt;}
.y166{bottom:853.093333pt;}
.y8e{bottom:855.493333pt;}
.yc{bottom:856.133333pt;}
.yc9{bottom:856.773333pt;}
.y1f1{bottom:859.173333pt;}
.y10e{bottom:864.133333pt;}
.y1aa{bottom:865.253333pt;}
.y50{bottom:866.053333pt;}
.y8d{bottom:867.813333pt;}
.y165{bottom:868.453333pt;}
.yb{bottom:869.093333pt;}
.y1f0{bottom:871.493333pt;}
.yc8{bottom:872.133333pt;}
.y10d{bottom:876.453333pt;}
.y8c{bottom:880.613333pt;}
.y4f{bottom:881.253333pt;}
.y164{bottom:883.653333pt;}
.y1ef{bottom:883.813333pt;}
.ya{bottom:884.453333pt;}
.yc7{bottom:887.493333pt;}
.y10a{bottom:889.413333pt;}
.y8b{bottom:895.973333pt;}
.y4e{bottom:896.613333pt;}
.y163{bottom:899.013333pt;}
.y9{bottom:899.653333pt;}
.y10c{bottom:901.573333pt;}
.yc6{bottom:902.213333pt;}
.y1ee{bottom:908.293333pt;}
.y8a{bottom:911.333333pt;}
.y4d{bottom:911.973333pt;}
.y162{bottom:914.373333pt;}
.yc5{bottom:915.013333pt;}
.y8{bottom:916.933333pt;}
.y109{bottom:917.413333pt;}
.y1ed{bottom:920.613333pt;}
.y89{bottom:926.693333pt;}
.y4c{bottom:927.333333pt;}
.y161{bottom:929.733333pt;}
.yc4{bottom:930.373333pt;}
.y1ec{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y88{bottom:942.053333pt;}
.y4b{bottom:942.693333pt;}
.y160{bottom:945.093333pt;}
.yc3{bottom:945.733333pt;}
.y108{bottom:947.493333pt;}
.y87{bottom:957.253333pt;}
.y1eb{bottom:957.413333pt;}
.y4a{bottom:958.053333pt;}
.y107{bottom:959.813333pt;}
.yc2{bottom:960.453333pt;}
.y6{bottom:965.893333pt;}
.y1ea{bottom:969.573333pt;}
.y86{bottom:972.613333pt;}
.y49{bottom:973.253333pt;}
.y1e9{bottom:981.893333pt;}
.y85{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y1e8{bottom:994.213333pt;}
.y84{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1e7{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y48{bottom:1031.680000pt;}
.y83{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h29{height:5.025000pt;}
.h17{height:12.160000pt;}
.h16{height:12.320000pt;}
.h15{height:12.352000pt;}
.h27{height:13.760000pt;}
.h13{height:15.200000pt;}
.h12{height:15.360000pt;}
.h7{height:23.360000pt;}
.h1f{height:24.480000pt;}
.h22{height:30.720000pt;}
.h21{height:30.752000pt;}
.h14{height:37.090625pt;}
.h6{height:42.084375pt;}
.h24{height:43.215000pt;}
.h1a{height:44.739931pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h26{height:48.375000pt;}
.h1d{height:51.869356pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h18{height:54.598989pt;}
.h11{height:55.298750pt;}
.h20{height:58.563750pt;}
.h8{height:62.812500pt;}
.h23{height:76.640000pt;}
.he{height:77.760000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h10{height:100.672000pt;}
.h1e{height:111.651469pt;}
.h1b{height:113.362177pt;}
.h1c{height:113.364315pt;}
.h25{height:152.666667pt;}
.h28{height:152.826667pt;}
.h19{height:275.040000pt;}
.hd{height:296.826667pt;}
.hb{height:311.586667pt;}
.ha{height:390.146667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:14.880000pt;}
.w4{width:18.880000pt;}
.wb{width:24.960000pt;}
.w10{width:25.152000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w9{width:27.520000pt;}
.we{width:27.552000pt;}
.w24{width:31.200000pt;}
.w1f{width:31.360000pt;}
.w23{width:31.392000pt;}
.w20{width:31.680000pt;}
.w25{width:32.032000pt;}
.w21{width:32.160000pt;}
.w26{width:32.320000pt;}
.w27{width:32.480000pt;}
.w22{width:32.640000pt;}
.w14{width:37.920000pt;}
.wc{width:38.400000pt;}
.w1b{width:47.200000pt;}
.w1d{width:56.640000pt;}
.w16{width:56.800000pt;}
.w18{width:75.232000pt;}
.w17{width:84.960000pt;}
.w1c{width:103.552000pt;}
.w13{width:113.792000pt;}
.w2b{width:127.840000pt;}
.wa{width:128.832000pt;}
.wf{width:136.320000pt;}
.w1e{width:140.506667pt;}
.w15{width:160.186667pt;}
.w1a{width:169.786667pt;}
.w2a{width:176.506667pt;}
.w3{width:185.786667pt;}
.w28{width:190.906667pt;}
.w12{width:216.986667pt;}
.w29{width:217.146667pt;}
.w5{width:385.026667pt;}
.w2c{width:468.093333pt;}
.w11{width:543.866667pt;}
.w19{width:585.693333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x1f{left:11.040000pt;}
.x20{left:12.480000pt;}
.x22{left:13.760000pt;}
.x18{left:14.720000pt;}
.x3f{left:16.160000pt;}
.x43{left:17.600000pt;}
.x21{left:19.200000pt;}
.x35{left:25.533025pt;}
.x29{left:42.844443pt;}
.x15{left:44.040000pt;}
.x1c{left:47.840000pt;}
.x2a{left:49.335095pt;}
.x2b{left:60.154054pt;}
.x41{left:63.520000pt;}
.x3c{left:64.794667pt;}
.x23{left:68.160000pt;}
.xd{left:94.880000pt;}
.x57{left:103.552000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x25{left:115.551988pt;}
.x58{left:120.474667pt;}
.x24{left:132.351988pt;}
.x28{left:134.333333pt;}
.x10{left:137.466655pt;}
.x2{left:138.426655pt;}
.x12{left:139.866655pt;}
.x56{left:141.946655pt;}
.x47{left:151.226655pt;}
.xf{left:161.466655pt;}
.x37{left:170.639542pt;}
.x36{left:173.278398pt;}
.x7{left:174.906655pt;}
.x3{left:179.706655pt;}
.x14{left:202.906667pt;}
.x30{left:219.628082pt;}
.x2c{left:224.393191pt;}
.x34{left:229.573442pt;}
.x59{left:231.386667pt;}
.x2d{left:244.301950pt;}
.x6{left:254.946655pt;}
.x3a{left:264.246813pt;}
.x45{left:283.266667pt;}
.x48{left:285.666667pt;}
.x4{left:289.026655pt;}
.x27{left:292.546655pt;}
.xa{left:297.346667pt;}
.x3b{left:302.946655pt;}
.x54{left:305.026667pt;}
.x13{left:311.586655pt;}
.xc{left:316.226667pt;}
.x49{left:317.346667pt;}
.x3d{left:330.466667pt;}
.x16{left:331.746667pt;}
.x4a{left:349.506667pt;}
.x17{left:356.706667pt;}
.x38{left:359.585037pt;}
.xe{left:377.986667pt;}
.x4b{left:382.146667pt;}
.x19{left:395.106667pt;}
.x5{left:406.466655pt;}
.x1a{left:409.986667pt;}
.x31{left:413.715924pt;}
.x33{left:424.978909pt;}
.x1b{left:437.533333pt;}
.x2e{left:439.292274pt;}
.x3e{left:444.253333pt;}
.x4c{left:445.693333pt;}
.x32{left:448.389294pt;}
.x2f{left:450.122063pt;}
.x39{left:458.334653pt;}
.x4d{left:477.053333pt;}
.x40{left:482.173333pt;}
.x4e{left:508.413333pt;}
.x55{left:522.173333pt;}
.x4f{left:539.613333pt;}
.x44{left:567.133333pt;}
.x50{left:570.973333pt;}
.x1d{left:573.853333pt;}
.x46{left:585.733333pt;}
.x1e{left:599.013333pt;}
.x51{left:603.013333pt;}
.x52{left:635.333333pt;}
.x42{left:642.373333pt;}
.x53{left:666.533333pt;}
.x11{left:672.773333pt;}
.x26{left:678.533322pt;}
}




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