
    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_0f1a801ebc525b83fb664910.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c639eeaa2e13a813dea0631b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_5b863df8191a5b1c4d476961.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_0a1c72a171955ff0d5f39e0e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4f712b19d929b38422441a5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a648bd550b1d6744ec35095.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8ef87afd400e98e16d74d02c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_5bbc8fcabf0b269bd54a1ff9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_69c47fa11f972c4703093564.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7081280d25f7c5ab18c53d01.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936523;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:ffd;src:url('chunks/assets/font_c076498129151257a50f85e8.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-14.400000px;}
.v1{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.va{vertical-align:5.760000px;}
.v9{vertical-align:14.400000px;}
.v6{vertical-align:17.280000px;}
.v2{vertical-align:27.360000px;}
.v3{vertical-align:36.000000px;}
.v8{vertical-align:57.600000px;}
.lsc{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.381000px;}
.lsa{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.138000px;}
.ls17{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls26{letter-spacing:-0.002880px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.ls24{letter-spacing:0.056880px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.339000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls2a{letter-spacing:2.160000px;}
.ls22{letter-spacing:3.052080px;}
.ls1b{letter-spacing:4.147200px;}
.ls20{letter-spacing:4.867200px;}
.ls29{letter-spacing:5.040000px;}
.ls28{letter-spacing:7.920000px;}
.ls2c{letter-spacing:10.080000px;}
.ls19{letter-spacing:11.640000px;}
.ls2e{letter-spacing:13.680000px;}
.ls23{letter-spacing:15.480000px;}
.ls1a{letter-spacing:15.960000px;}
.ls1c{letter-spacing:19.800000px;}
.ls2f{letter-spacing:26.760000px;}
.ls27{letter-spacing:33.984000px;}
.ls1d{letter-spacing:49.176000px;}
.ls13{letter-spacing:54.144000px;}
.ls21{letter-spacing:57.240000px;}
.ls1e{letter-spacing:110.952000px;}
.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;}
}
.ws1{word-spacing:-19.465920px;}
.ws2{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.ws9{word-spacing:-18.864000px;}
.ws22{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws23{word-spacing:-17.928000px;}
.ws24{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.064000px;}
.ws18{word-spacing:-16.056000px;}
.ws12{word-spacing:-15.984000px;}
.ws13{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.768000px;}
.ws19{word-spacing:-15.696000px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-12.420000px;}
.ws25{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.585400px;}
.ws16{word-spacing:-11.303280px;}
.ws17{word-spacing:-11.246400px;}
.ws1e{word-spacing:-11.243520px;}
.wse{word-spacing:-11.108400px;}
.wsf{word-spacing:-10.865400px;}
.ws5{word-spacing:0.000000px;}
.ws1d{word-spacing:0.216000px;}
.ws20{word-spacing:0.336000px;}
.ws1f{word-spacing:3.816000px;}
.ws1b{word-spacing:4.536000px;}
.ws1c{word-spacing:7.651440px;}
.ws1a{word-spacing:11.971440px;}
.ws21{word-spacing:49.875120px;}
._24{margin-left:-1333.725600px;}
._25{margin-left:-608.688000px;}
._1f{margin-left:-603.799920px;}
._26{margin-left:-312.696000px;}
._20{margin-left:-270.720000px;}
._1e{margin-left:-268.776000px;}
._21{margin-left:-234.720000px;}
._1d{margin-left:-76.715280px;}
._16{margin-left:-5.328000px;}
._b{margin-left:-4.176000px;}
._c{margin-left:-3.096000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._a{width:4.392000px;}
._5{width:5.538720px;}
._8{width:6.634560px;}
._9{width:7.739040px;}
._17{width:8.869920px;}
._18{width:10.642080px;}
._15{width:11.664000px;}
._6{width:13.320000px;}
._7{width:14.464080px;}
._14{width:16.272000px;}
._1a{width:19.008000px;}
._13{width:21.147840px;}
._10{width:22.230720px;}
._11{width:23.371920px;}
._12{width:24.497280px;}
._19{width:25.525440px;}
._1c{width:26.694720px;}
._29{width:28.296000px;}
._2a{width:29.568000px;}
._27{width:32.400000px;}
._28{width:33.552000px;}
._22{width:42.120000px;}
._23{width:43.128000px;}
._e{width:48.021360px;}
._f{width:49.178640px;}
._d{width:50.225040px;}
._2{width:532.260000px;}
._1b{width:910.624560px;}
._3{width:1513.257360px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y139{bottom:4.485000px;}
.y13e{bottom:4.491000px;}
.y147{bottom:4.500000px;}
.y1bc{bottom:4.530000px;}
.y16f{bottom:4.545000px;}
.y163{bottom:6.300000px;}
.y14f{bottom:14.385000px;}
.y152{bottom:14.400000px;}
.y14b{bottom:14.580000px;}
.y164{bottom:14.760000px;}
.y170{bottom:14.805000px;}
.y145{bottom:14.940000px;}
.y146{bottom:25.200000px;}
.y16e{bottom:25.245000px;}
.y161{bottom:27.360000px;}
.y16b{bottom:27.390000px;}
.y7{bottom:39.276000px;}
.y14a{bottom:45.900000px;}
.y6{bottom:58.536000px;}
.y2d{bottom:131.076000px;}
.y2c{bottom:136.296000px;}
.y107{bottom:139.896000px;}
.y13d{bottom:143.325000px;}
.ye9{bottom:146.016000px;}
.y57{bottom:146.196000px;}
.y2b{bottom:149.256000px;}
.y1c7{bottom:150.330000px;}
.ya3{bottom:150.690000px;}
.yb2{bottom:151.590000px;}
.y188{bottom:153.210000px;}
.y11c{bottom:153.750000px;}
.y106{bottom:160.590000px;}
.y13c{bottom:164.925000px;}
.y7f{bottom:165.270000px;}
.y1e1{bottom:165.810000px;}
.y56{bottom:166.890000px;}
.y1c6{bottom:171.030000px;}
.ya2{bottom:171.390000px;}
.yb1{bottom:172.290000px;}
.y187{bottom:173.910000px;}
.y2a{bottom:175.890000px;}
.ye8{bottom:184.710000px;}
.y7e{bottom:185.970000px;}
.y13b{bottom:186.345000px;}
.y168{bottom:186.510000px;}
.y55{bottom:187.590000px;}
.y1a7{bottom:188.130000px;}
.ycc{bottom:191.190000px;}
.ya1{bottom:192.090000px;}
.yb0{bottom:192.990000px;}
.y29{bottom:193.170000px;}
.y11b{bottom:193.710000px;}
.y186{bottom:194.610000px;}
.y105{bottom:199.290000px;}
.ye7{bottom:205.950000px;}
.y7d{bottom:206.490000px;}
.y1e0{bottom:207.210000px;}
.y13a{bottom:207.765000px;}
.y54{bottom:208.290000px;}
.y1a6{bottom:208.830000px;}
.y1c5{bottom:209.730000px;}
.y28{bottom:210.450000px;}
.yaf{bottom:213.690000px;}
.y167{bottom:222.885000px;}
.ye6{bottom:227.010000px;}
.y7c{bottom:227.190000px;}
.y138{bottom:229.185000px;}
.y1a5{bottom:229.530000px;}
.y185{bottom:229.545000px;}
.ycb{bottom:229.890000px;}
.y1c4{bottom:230.430000px;}
.ya0{bottom:230.790000px;}
.y11a{bottom:233.850000px;}
.y104{bottom:237.990000px;}
.y166{bottom:244.305000px;}
.y1df{bottom:245.910000px;}
.y27{bottom:246.450000px;}
.y53{bottom:246.990000px;}
.y7b{bottom:247.890000px;}
.y1a4{bottom:250.230000px;}
.y184{bottom:250.965000px;}
.y1c3{bottom:251.130000px;}
.y9f{bottom:251.490000px;}
.yae{bottom:252.210000px;}
.y119{bottom:254.550000px;}
.y103{bottom:258.690000px;}
.y165{bottom:265.905000px;}
.ye5{bottom:266.610000px;}
.y26{bottom:267.150000px;}
.y52{bottom:267.690000px;}
.y7a{bottom:268.590000px;}
.y137{bottom:270.030000px;}
.y1a3{bottom:270.930000px;}
.y1c2{bottom:271.830000px;}
.y9e{bottom:272.190000px;}
.y183{bottom:272.415000px;}
.y102{bottom:279.435000px;}
.y160{bottom:287.355000px;}
.y51{bottom:288.435000px;}
.y79{bottom:289.335000px;}
.y1c1{bottom:292.575000px;}
.y9d{bottom:292.935000px;}
.y182{bottom:293.835000px;}
.y101{bottom:300.135000px;}
.ye4{bottom:303.915000px;}
.y1de{bottom:305.355000px;}
.y25{bottom:307.695000px;}
.y136{bottom:308.955000px;}
.y50{bottom:309.135000px;}
.y1a2{bottom:309.855000px;}
.y78{bottom:310.035000px;}
.y1c0{bottom:313.275000px;}
.y9c{bottom:313.635000px;}
.y181{bottom:315.435000px;}
.y100{bottom:320.835000px;}
.ye3{bottom:323.535000px;}
.y1dd{bottom:326.055000px;}
.yca{bottom:328.035000px;}
.y24{bottom:328.395000px;}
.y162{bottom:329.475000px;}
.y4f{bottom:329.835000px;}
.y77{bottom:330.735000px;}
.y118{bottom:332.535000px;}
.y9b{bottom:334.335000px;}
.y180{bottom:336.855000px;}
.yff{bottom:341.535000px;}
.y1dc{bottom:346.755000px;}
.y135{bottom:347.655000px;}
.y23{bottom:349.095000px;}
.y1a1{bottom:349.995000px;}
.y4e{bottom:350.535000px;}
.y76{bottom:351.435000px;}
.y1bf{bottom:351.975000px;}
.y9a{bottom:355.035000px;}
.ye2{bottom:357.015000px;}
.yfe{bottom:362.235000px;}
.yc9{bottom:366.735000px;}
.y134{bottom:368.355000px;}
.y22{bottom:369.795000px;}
.y1a0{bottom:370.695000px;}
.y75{bottom:372.135000px;}
.y117{bottom:372.675000px;}
.y15f{bottom:373.935000px;}
.y99{bottom:375.735000px;}
.y17f{bottom:377.535000px;}
.y1db{bottom:385.455000px;}
.y133{bottom:389.055000px;}
.y4d{bottom:389.595000px;}
.y21{bottom:390.495000px;}
.y19f{bottom:391.395000px;}
.y74{bottom:392.835000px;}
.y116{bottom:393.375000px;}
.y98{bottom:396.435000px;}
.ye1{bottom:396.615000px;}
.yfd{bottom:401.295000px;}
.yc8{bottom:405.435000px;}
.y1da{bottom:406.155000px;}
.y132{bottom:409.755000px;}
.y20{bottom:411.195000px;}
.y19e{bottom:412.095000px;}
.y15e{bottom:412.815000px;}
.y73{bottom:413.535000px;}
.y115{bottom:414.075000px;}
.yad{bottom:414.435000px;}
.y17e{bottom:416.415000px;}
.y97{bottom:417.135000px;}
.ye0{bottom:417.315000px;}
.yc7{bottom:426.135000px;}
.y4c{bottom:429.735000px;}
.y1f{bottom:431.895000px;}
.y19d{bottom:432.795000px;}
.y15d{bottom:433.515000px;}
.y72{bottom:434.235000px;}
.y114{bottom:434.775000px;}
.yac{bottom:435.135000px;}
.y17d{bottom:437.115000px;}
.ydf{bottom:438.015000px;}
.yfc{bottom:441.435000px;}
.y1d9{bottom:444.855000px;}
.y131{bottom:448.635000px;}
.y4b{bottom:450.435000px;}
.y1e{bottom:452.595000px;}
.y19c{bottom:453.495000px;}
.y15c{bottom:454.215000px;}
.y71{bottom:454.935000px;}
.y113{bottom:455.475000px;}
.y96{bottom:455.835000px;}
.yde{bottom:458.715000px;}
.yfb{bottom:462.135000px;}
.yc6{bottom:464.835000px;}
.y1d8{bottom:465.555000px;}
.y4a{bottom:471.135000px;}
.y1d{bottom:473.295000px;}
.y19b{bottom:474.195000px;}
.y15b{bottom:474.915000px;}
.y70{bottom:475.635000px;}
.y17c{bottom:475.815000px;}
.y95{bottom:476.535000px;}
.ydd{bottom:479.415000px;}
.yfa{bottom:482.835000px;}
.yc5{bottom:485.535000px;}
.y1d7{bottom:486.255000px;}
.y130{bottom:488.775000px;}
.y49{bottom:491.835000px;}
.y1be{bottom:493.815000px;}
.y1c{bottom:493.995000px;}
.y112{bottom:494.175000px;}
.y19a{bottom:494.895000px;}
.y15a{bottom:495.615000px;}
.y6f{bottom:496.335000px;}
.y17b{bottom:496.515000px;}
.y94{bottom:497.235000px;}
.ydc{bottom:500.115000px;}
.yf9{bottom:503.535000px;}
.y48{bottom:512.535000px;}
.y1b{bottom:514.695000px;}
.y199{bottom:515.595000px;}
.y159{bottom:516.315000px;}
.y6e{bottom:517.035000px;}
.y93{bottom:517.935000px;}
.ydb{bottom:520.815000px;}
.yc4{bottom:523.875000px;}
.yf8{bottom:524.235000px;}
.y1d6{bottom:524.955000px;}
.y12f{bottom:527.475000px;}
.y1bd{bottom:530.895000px;}
.y111{bottom:533.235000px;}
.y17a{bottom:535.215000px;}
.y1a{bottom:535.395000px;}
.y198{bottom:536.295000px;}
.y158{bottom:537.015000px;}
.y92{bottom:538.635000px;}
.y1d5{bottom:545.655000px;}
.y47{bottom:551.235000px;}
.y1bb{bottom:552.315000px;}
.y179{bottom:555.945000px;}
.y19{bottom:556.125000px;}
.y91{bottom:559.365000px;}
.yda{bottom:559.725000px;}
.yf7{bottom:563.145000px;}
.yc3{bottom:564.585000px;}
.y12e{bottom:566.205000px;}
.y110{bottom:568.005000px;}
.y197{bottom:571.245000px;}
.y46{bottom:571.965000px;}
.y10e{bottom:573.585000px;}
.y1ba{bottom:573.765000px;}
.y157{bottom:576.105000px;}
.y10f{bottom:579.705000px;}
.y90{bottom:579.885000px;}
.y1d4{bottom:584.385000px;}
.yc2{bottom:585.285000px;}
.y10b{bottom:585.645000px;}
.y45{bottom:592.665000px;}
.y18{bottom:594.465000px;}
.y178{bottom:594.645000px;}
.y10d{bottom:595.185000px;}
.y6d{bottom:595.905000px;}
.yd9{bottom:599.865000px;}
.yf6{bottom:603.285000px;}
.y12d{bottom:604.905000px;}
.y1d3{bottom:605.085000px;}
.yc1{bottom:605.985000px;}
.y10c{bottom:606.525000px;}
.y44{bottom:613.365000px;}
.y196{bottom:614.085000px;}
.y177{bottom:615.345000px;}
.y156{bottom:616.245000px;}
.yab{bottom:618.585000px;}
.y8f{bottom:618.945000px;}
.yd8{bottom:620.565000px;}
.yf5{bottom:623.985000px;}
.y1d2{bottom:625.785000px;}
.yc0{bottom:626.685000px;}
.y43{bottom:633.885000px;}
.y17{bottom:634.965000px;}
.y195{bottom:635.685000px;}
.y176{bottom:636.045000px;}
.y6c{bottom:636.585000px;}
.y155{bottom:636.945000px;}
.yaa{bottom:639.285000px;}
.yd7{bottom:641.265000px;}
.y12c{bottom:643.605000px;}
.ybf{bottom:647.385000px;}
.y42{bottom:654.585000px;}
.y175{bottom:656.745000px;}
.y194{bottom:657.105000px;}
.y6b{bottom:657.285000px;}
.y154{bottom:657.645000px;}
.y8e{bottom:659.085000px;}
.ya9{bottom:659.985000px;}
.yf4{bottom:662.685000px;}
.y12b{bottom:664.305000px;}
.y1d1{bottom:664.485000px;}
.ybe{bottom:668.085000px;}
.y41{bottom:675.285000px;}
.y16{bottom:675.825000px;}
.y6a{bottom:677.985000px;}
.y153{bottom:678.345000px;}
.y193{bottom:678.525000px;}
.y8d{bottom:679.785000px;}
.yd6{bottom:680.325000px;}
.ya8{bottom:680.685000px;}
.y1d0{bottom:685.185000px;}
.y1e4{bottom:687.885000px;}
.y1b9{bottom:695.625000px;}
.y174{bottom:695.805000px;}
.y40{bottom:695.985000px;}
.y15{bottom:698.325000px;}
.y69{bottom:698.685000px;}
.y8c{bottom:700.485000px;}
.yf3{bottom:701.385000px;}
.y12a{bottom:702.825000px;}
.ybd{bottom:706.605000px;}
.y1e3{bottom:708.585000px;}
.y150{bottom:713.265000px;}
.y1b8{bottom:716.325000px;}
.y3f{bottom:716.685000px;}
.y68{bottom:719.385000px;}
.yd5{bottom:720.465000px;}
.y14{bottom:721.005000px;}
.y8b{bottom:721.185000px;}
.yf2{bottom:722.085000px;}
.y192{bottom:722.445000px;}
.y1cf{bottom:723.885000px;}
.y173{bottom:736.125000px;}
.y1b7{bottom:737.025000px;}
.y3e{bottom:737.385000px;}
.y67{bottom:740.085000px;}
.yd4{bottom:741.165000px;}
.y8a{bottom:741.885000px;}
.yf1{bottom:742.785000px;}
.y129{bottom:743.505000px;}
.y1ce{bottom:744.585000px;}
.ybc{bottom:747.285000px;}
.y151{bottom:754.665000px;}
.y1b6{bottom:757.725000px;}
.y191{bottom:757.905000px;}
.y3d{bottom:758.085000px;}
.y66{bottom:760.785000px;}
.y89{bottom:762.585000px;}
.y13{bottom:762.945000px;}
.yf0{bottom:763.485000px;}
.y128{bottom:764.205000px;}
.ybb{bottom:767.985000px;}
.y172{bottom:772.500000px;}
.y14c{bottom:776.085000px;}
.y14e{bottom:776.100000px;}
.y1b5{bottom:778.425000px;}
.y190{bottom:778.785000px;}
.yd3{bottom:779.505000px;}
.y65{bottom:781.485000px;}
.y1cd{bottom:783.285000px;}
.yef{bottom:784.185000px;}
.y127{bottom:784.905000px;}
.y12{bottom:785.265000px;}
.y171{bottom:794.085000px;}
.y3c{bottom:796.785000px;}
.y1b4{bottom:799.125000px;}
.y18f{bottom:799.485000px;}
.y88{bottom:801.285000px;}
.y64{bottom:802.185000px;}
.y1cc{bottom:803.985000px;}
.yee{bottom:804.885000px;}
.y126{bottom:805.605000px;}
.yba{bottom:806.685000px;}
.y10{bottom:807.945000px;}
.y11{bottom:815.505000px;}
.y3b{bottom:817.485000px;}
.y14d{bottom:817.500000px;}
.y1b3{bottom:819.645000px;}
.yd2{bottom:820.185000px;}
.y10a{bottom:820.545000px;}
.y87{bottom:821.985000px;}
.y63{bottom:822.885000px;}
.y1cb{bottom:824.685000px;}
.yed{bottom:825.585000px;}
.yb9{bottom:827.385000px;}
.y16d{bottom:836.925000px;}
.y16a{bottom:836.940000px;}
.y3a{bottom:838.185000px;}
.y148{bottom:838.950000px;}
.y1b2{bottom:840.390000px;}
.yd1{bottom:840.930000px;}
.y86{bottom:842.730000px;}
.y62{bottom:843.630000px;}
.y125{bottom:844.530000px;}
.yec{bottom:846.330000px;}
.y1e2{bottom:848.130000px;}
.yf{bottom:849.930000px;}
.y39{bottom:858.930000px;}
.y109{bottom:860.730000px;}
.y1b1{bottom:861.090000px;}
.yd0{bottom:861.630000px;}
.y1ca{bottom:863.430000px;}
.y61{bottom:864.330000px;}
.yb8{bottom:866.130000px;}
.yeb{bottom:867.030000px;}
.ye{bottom:872.250000px;}
.y16c{bottom:879.090000px;}
.y38{bottom:879.630000px;}
.y18e{bottom:879.990000px;}
.y149{bottom:880.350000px;}
.y85{bottom:881.430000px;}
.y1b0{bottom:881.790000px;}
.ya7{bottom:882.330000px;}
.y1c9{bottom:884.130000px;}
.y124{bottom:884.670000px;}
.y60{bottom:885.030000px;}
.yb7{bottom:886.830000px;}
.yd{bottom:895.110000px;}
.y37{bottom:900.330000px;}
.y144{bottom:901.770000px;}
.y84{bottom:902.130000px;}
.y1af{bottom:902.490000px;}
.ya6{bottom:903.030000px;}
.y123{bottom:905.370000px;}
.yea{bottom:906.090000px;}
.yb6{bottom:907.530000px;}
.y18d{bottom:920.130000px;}
.yc{bottom:920.670000px;}
.y36{bottom:921.030000px;}
.y1c8{bottom:922.470000px;}
.y83{bottom:922.830000px;}
.y1ae{bottom:923.190000px;}
.y169{bottom:923.550000px;}
.ya5{bottom:923.730000px;}
.y5f{bottom:924.090000px;}
.y122{bottom:926.070000px;}
.y18c{bottom:940.830000px;}
.y35{bottom:941.730000px;}
.y82{bottom:943.530000px;}
.ycf{bottom:944.430000px;}
.yb5{bottom:946.230000px;}
.y1ad{bottom:958.290000px;}
.y18b{bottom:961.530000px;}
.y34{bottom:962.430000px;}
.y143{bottom:963.330000px;}
.y5e{bottom:964.230000px;}
.yce{bottom:965.130000px;}
.yb4{bottom:966.930000px;}
.yb{bottom:973.230000px;}
.y1ac{bottom:979.710000px;}
.y18a{bottom:982.230000px;}
.y33{bottom:983.130000px;}
.y5d{bottom:984.930000px;}
.yb3{bottom:987.630000px;}
.y1ab{bottom:1001.130000px;}
.y142{bottom:1002.210000px;}
.y189{bottom:1002.930000px;}
.ycd{bottom:1003.650000px;}
.y32{bottom:1003.830000px;}
.y121{bottom:1005.270000px;}
.y5c{bottom:1005.630000px;}
.ya{bottom:1007.790000px;}
.y1aa{bottom:1022.550000px;}
.y141{bottom:1022.910000px;}
.y108{bottom:1023.630000px;}
.y31{bottom:1024.530000px;}
.y120{bottom:1025.970000px;}
.y81{bottom:1026.330000px;}
.y9{bottom:1042.170000px;}
.y140{bottom:1043.610000px;}
.y1a9{bottom:1043.970000px;}
.y5b{bottom:1044.330000px;}
.y30{bottom:1045.230000px;}
.y11f{bottom:1046.670000px;}
.y80{bottom:1047.030000px;}
.y5a{bottom:1065.030000px;}
.y1a8{bottom:1065.390000px;}
.y2f{bottom:1065.930000px;}
.y11e{bottom:1067.370000px;}
.y13f{bottom:1082.490000px;}
.y59{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y2e{bottom:1104.450000px;}
.ya4{bottom:1104.990000px;}
.y11d{bottom:1105.890000px;}
.y58{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h1d{height:20.685000px;}
.h1e{height:20.691000px;}
.h23{height:20.700000px;}
.h27{height:20.721000px;}
.h2b{height:20.730000px;}
.h26{height:24.465000px;}
.h11{height:26.995781px;}
.h17{height:36.592734px;}
.hb{height:37.494141px;}
.h21{height:40.665000px;}
.h24{height:40.680000px;}
.h1f{height:41.385000px;}
.h2a{height:41.400000px;}
.h29{height:41.422500px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h13{height:50.027344px;}
.h1b{height:51.539062px;}
.h5{height:53.640000px;}
.h19{height:54.419063px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h20{height:62.085000px;}
.h22{height:62.100000px;}
.h25{height:66.585000px;}
.h28{height:66.621000px;}
.h14{height:70.628906px;}
.hf{height:70.664062px;}
.h10{height:72.562500px;}
.h15{height:74.004654px;}
.h16{height:74.704922px;}
.h12{height:76.279219px;}
.h9{height:76.317188px;}
.hd{height:78.367500px;}
.he{height:79.925027px;}
.h1c{height:80.949375px;}
.h8{height:82.676953px;}
.hc{height:86.585445px;}
.h18{height:106.628906px;}
.h1a{height:109.139062px;}
.h7{height:121.179375px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:55.965000px;}
.w5{width:73.836000px;}
.w9{width:84.420000px;}
.w25{width:89.805000px;}
.w8{width:94.881000px;}
.w21{width:96.471000px;}
.w11{width:99.525000px;}
.wc{width:100.785000px;}
.w7{width:102.951000px;}
.w15{width:102.981000px;}
.w16{width:103.320000px;}
.w1b{width:103.500000px;}
.wa{width:104.076000px;}
.we{width:108.381000px;}
.w13{width:110.541000px;}
.w1c{width:114.516000px;}
.w17{width:114.696000px;}
.w23{width:119.361000px;}
.w2{width:125.460000px;}
.w14{width:131.961000px;}
.w10{width:132.861000px;}
.w24{width:142.596000px;}
.w18{width:144.885000px;}
.w1d{width:144.921000px;}
.w6{width:156.945000px;}
.w26{width:158.775000px;}
.w1a{width:181.995000px;}
.wf{width:202.530000px;}
.w4{width:203.775000px;}
.w1f{width:214.755000px;}
.wb{width:263.715000px;}
.w19{width:322.620000px;}
.w1e{width:401.460000px;}
.w20{width:434.400000px;}
.wd{width:445.230000px;}
.w12{width:446.490000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:8.280000px;}
.x2d{left:9.540000px;}
.x29{left:10.971000px;}
.x30{left:12.600000px;}
.x2b{left:14.025000px;}
.x33{left:17.445000px;}
.x42{left:19.110000px;}
.x26{left:21.045000px;}
.x2e{left:22.500000px;}
.x38{left:24.465000px;}
.x3e{left:30.420000px;}
.x34{left:31.860000px;}
.x47{left:33.690000px;}
.x35{left:35.085000px;}
.x4c{left:36.540000px;}
.x44{left:38.145000px;}
.x37{left:39.405000px;}
.x41{left:40.845000px;}
.x32{left:41.925000px;}
.x40{left:43.365000px;}
.x64{left:45.165000px;}
.x52{left:47.145000px;}
.x2{left:50.399998px;}
.x27{left:52.545000px;}
.x25{left:53.985000px;}
.x4d{left:57.405000px;}
.x50{left:58.845000px;}
.x5c{left:63.705000px;}
.x21{left:70.770000px;}
.x5a{left:75.405000px;}
.x43{left:76.500000px;}
.x51{left:81.885000px;}
.x36{left:92.685000px;}
.x17{left:95.760000px;}
.x5b{left:98.445000px;}
.x31{left:108.885000px;}
.x5e{left:113.265000px;}
.x53{left:115.725000px;}
.x1{left:127.656000px;}
.x14{left:132.516000px;}
.x5{left:141.336000px;}
.x15{left:148.896000px;}
.xd{left:149.976000px;}
.x10{left:151.770000px;}
.x16{left:154.650000px;}
.x56{left:156.645000px;}
.x12{left:159.510000px;}
.x3c{left:161.850000px;}
.x4{left:164.010000px;}
.x8{left:167.250000px;}
.x3a{left:173.205000px;}
.x11{left:180.750000px;}
.x28{left:192.810000px;}
.x1f{left:196.050000px;}
.x5f{left:210.465000px;}
.x49{left:212.445000px;}
.x45{left:215.490000px;}
.x20{left:228.465000px;}
.x2a{left:232.245000px;}
.x55{left:234.030000px;}
.x39{left:247.890000px;}
.x9{left:258.870000px;}
.x5d{left:261.390000px;}
.x60{left:267.165000px;}
.x46{left:273.465000px;}
.x3b{left:274.725000px;}
.x6{left:276.870000px;}
.x48{left:283.890000px;}
.x19{left:315.975000px;}
.x18{left:323.535000px;}
.x2c{left:327.855000px;}
.x1e{left:340.635000px;}
.x13{left:343.695000px;}
.x1d{left:355.035000px;}
.xf{left:359.895000px;}
.x7{left:367.635000px;}
.x57{left:372.315000px;}
.x3d{left:383.835000px;}
.x61{left:387.255000px;}
.xa{left:396.435000px;}
.x1a{left:409.935000px;}
.x2f{left:412.995000px;}
.x4a{left:420.375000px;}
.x1b{left:422.715000px;}
.xe{left:430.995000px;}
.x22{left:433.155000px;}
.x54{left:446.655000px;}
.x3{left:457.275000px;}
.x4e{left:459.975000px;}
.x58{left:476.355000px;}
.x24{left:507.900000px;}
.xb{left:511.282500px;}
.xc{left:518.145000px;}
.x1c{left:524.085000px;}
.x62{left:530.580000px;}
.x4b{left:535.800000px;}
.x4f{left:575.220000px;}
.x3f{left:587.100000px;}
.x59{left:591.780000px;}
.x63{left:621.120000px;}
@media print{
.v5{vertical-align:-12.800000pt;}
.v1{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.va{vertical-align:5.120000pt;}
.v9{vertical-align:12.800000pt;}
.v6{vertical-align:15.360000pt;}
.v2{vertical-align:24.320000pt;}
.v3{vertical-align:32.000000pt;}
.v8{vertical-align:51.200000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.338667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.122667pt;}
.ls17{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls26{letter-spacing:-0.002560pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.ls24{letter-spacing:0.050560pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.301333pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.712960pt;}
.ls1b{letter-spacing:3.686400pt;}
.ls20{letter-spacing:4.326400pt;}
.ls29{letter-spacing:4.480000pt;}
.ls28{letter-spacing:7.040000pt;}
.ls2c{letter-spacing:8.960000pt;}
.ls19{letter-spacing:10.346667pt;}
.ls2e{letter-spacing:12.160000pt;}
.ls23{letter-spacing:13.760000pt;}
.ls1a{letter-spacing:14.186667pt;}
.ls1c{letter-spacing:17.600000pt;}
.ls2f{letter-spacing:23.786667pt;}
.ls27{letter-spacing:30.208000pt;}
.ls1d{letter-spacing:43.712000pt;}
.ls13{letter-spacing:48.128000pt;}
.ls21{letter-spacing:50.880000pt;}
.ls1e{letter-spacing:98.624000pt;}
.ws1{word-spacing:-17.303040pt;}
.ws2{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.ws9{word-spacing:-16.768000pt;}
.ws22{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws23{word-spacing:-15.936000pt;}
.ws24{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws18{word-spacing:-14.272000pt;}
.ws12{word-spacing:-14.208000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws19{word-spacing:-13.952000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws25{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.298133pt;}
.ws16{word-spacing:-10.047360pt;}
.ws17{word-spacing:-9.996800pt;}
.ws1e{word-spacing:-9.994240pt;}
.wse{word-spacing:-9.874133pt;}
.wsf{word-spacing:-9.658133pt;}
.ws5{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws20{word-spacing:0.298667pt;}
.ws1f{word-spacing:3.392000pt;}
.ws1b{word-spacing:4.032000pt;}
.ws1c{word-spacing:6.801280pt;}
.ws1a{word-spacing:10.641280pt;}
.ws21{word-spacing:44.333440pt;}
._24{margin-left:-1185.533867pt;}
._25{margin-left:-541.056000pt;}
._1f{margin-left:-536.711040pt;}
._26{margin-left:-277.952000pt;}
._20{margin-left:-240.640000pt;}
._1e{margin-left:-238.912000pt;}
._21{margin-left:-208.640000pt;}
._1d{margin-left:-68.191360pt;}
._16{margin-left:-4.736000pt;}
._b{margin-left:-3.712000pt;}
._c{margin-left:-2.752000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._a{width:3.904000pt;}
._5{width:4.923307pt;}
._8{width:5.897387pt;}
._9{width:6.879147pt;}
._17{width:7.884373pt;}
._18{width:9.459627pt;}
._15{width:10.368000pt;}
._6{width:11.840000pt;}
._7{width:12.856960pt;}
._14{width:14.464000pt;}
._1a{width:16.896000pt;}
._13{width:18.798080pt;}
._10{width:19.760640pt;}
._11{width:20.775040pt;}
._12{width:21.775360pt;}
._19{width:22.689280pt;}
._1c{width:23.728640pt;}
._29{width:25.152000pt;}
._2a{width:26.282667pt;}
._27{width:28.800000pt;}
._28{width:29.824000pt;}
._22{width:37.440000pt;}
._23{width:38.336000pt;}
._e{width:42.685653pt;}
._f{width:43.714347pt;}
._d{width:44.644480pt;}
._2{width:473.120000pt;}
._1b{width:809.444053pt;}
._3{width:1345.117653pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:3.986667pt;}
.y13e{bottom:3.992000pt;}
.y147{bottom:4.000000pt;}
.y1bc{bottom:4.026667pt;}
.y16f{bottom:4.040000pt;}
.y163{bottom:5.600000pt;}
.y14f{bottom:12.786667pt;}
.y152{bottom:12.800000pt;}
.y14b{bottom:12.960000pt;}
.y164{bottom:13.120000pt;}
.y170{bottom:13.160000pt;}
.y145{bottom:13.280000pt;}
.y146{bottom:22.400000pt;}
.y16e{bottom:22.440000pt;}
.y161{bottom:24.320000pt;}
.y16b{bottom:24.346667pt;}
.y7{bottom:34.912000pt;}
.y14a{bottom:40.800000pt;}
.y6{bottom:52.032000pt;}
.y2d{bottom:116.512000pt;}
.y2c{bottom:121.152000pt;}
.y107{bottom:124.352000pt;}
.y13d{bottom:127.400000pt;}
.ye9{bottom:129.792000pt;}
.y57{bottom:129.952000pt;}
.y2b{bottom:132.672000pt;}
.y1c7{bottom:133.626667pt;}
.ya3{bottom:133.946667pt;}
.yb2{bottom:134.746667pt;}
.y188{bottom:136.186667pt;}
.y11c{bottom:136.666667pt;}
.y106{bottom:142.746667pt;}
.y13c{bottom:146.600000pt;}
.y7f{bottom:146.906667pt;}
.y1e1{bottom:147.386667pt;}
.y56{bottom:148.346667pt;}
.y1c6{bottom:152.026667pt;}
.ya2{bottom:152.346667pt;}
.yb1{bottom:153.146667pt;}
.y187{bottom:154.586667pt;}
.y2a{bottom:156.346667pt;}
.ye8{bottom:164.186667pt;}
.y7e{bottom:165.306667pt;}
.y13b{bottom:165.640000pt;}
.y168{bottom:165.786667pt;}
.y55{bottom:166.746667pt;}
.y1a7{bottom:167.226667pt;}
.ycc{bottom:169.946667pt;}
.ya1{bottom:170.746667pt;}
.yb0{bottom:171.546667pt;}
.y29{bottom:171.706667pt;}
.y11b{bottom:172.186667pt;}
.y186{bottom:172.986667pt;}
.y105{bottom:177.146667pt;}
.ye7{bottom:183.066667pt;}
.y7d{bottom:183.546667pt;}
.y1e0{bottom:184.186667pt;}
.y13a{bottom:184.680000pt;}
.y54{bottom:185.146667pt;}
.y1a6{bottom:185.626667pt;}
.y1c5{bottom:186.426667pt;}
.y28{bottom:187.066667pt;}
.yaf{bottom:189.946667pt;}
.y167{bottom:198.120000pt;}
.ye6{bottom:201.786667pt;}
.y7c{bottom:201.946667pt;}
.y138{bottom:203.720000pt;}
.y1a5{bottom:204.026667pt;}
.y185{bottom:204.040000pt;}
.ycb{bottom:204.346667pt;}
.y1c4{bottom:204.826667pt;}
.ya0{bottom:205.146667pt;}
.y11a{bottom:207.866667pt;}
.y104{bottom:211.546667pt;}
.y166{bottom:217.160000pt;}
.y1df{bottom:218.586667pt;}
.y27{bottom:219.066667pt;}
.y53{bottom:219.546667pt;}
.y7b{bottom:220.346667pt;}
.y1a4{bottom:222.426667pt;}
.y184{bottom:223.080000pt;}
.y1c3{bottom:223.226667pt;}
.y9f{bottom:223.546667pt;}
.yae{bottom:224.186667pt;}
.y119{bottom:226.266667pt;}
.y103{bottom:229.946667pt;}
.y165{bottom:236.360000pt;}
.ye5{bottom:236.986667pt;}
.y26{bottom:237.466667pt;}
.y52{bottom:237.946667pt;}
.y7a{bottom:238.746667pt;}
.y137{bottom:240.026667pt;}
.y1a3{bottom:240.826667pt;}
.y1c2{bottom:241.626667pt;}
.y9e{bottom:241.946667pt;}
.y183{bottom:242.146667pt;}
.y102{bottom:248.386667pt;}
.y160{bottom:255.426667pt;}
.y51{bottom:256.386667pt;}
.y79{bottom:257.186667pt;}
.y1c1{bottom:260.066667pt;}
.y9d{bottom:260.386667pt;}
.y182{bottom:261.186667pt;}
.y101{bottom:266.786667pt;}
.ye4{bottom:270.146667pt;}
.y1de{bottom:271.426667pt;}
.y25{bottom:273.506667pt;}
.y136{bottom:274.626667pt;}
.y50{bottom:274.786667pt;}
.y1a2{bottom:275.426667pt;}
.y78{bottom:275.586667pt;}
.y1c0{bottom:278.466667pt;}
.y9c{bottom:278.786667pt;}
.y181{bottom:280.386667pt;}
.y100{bottom:285.186667pt;}
.ye3{bottom:287.586667pt;}
.y1dd{bottom:289.826667pt;}
.yca{bottom:291.586667pt;}
.y24{bottom:291.906667pt;}
.y162{bottom:292.866667pt;}
.y4f{bottom:293.186667pt;}
.y77{bottom:293.986667pt;}
.y118{bottom:295.586667pt;}
.y9b{bottom:297.186667pt;}
.y180{bottom:299.426667pt;}
.yff{bottom:303.586667pt;}
.y1dc{bottom:308.226667pt;}
.y135{bottom:309.026667pt;}
.y23{bottom:310.306667pt;}
.y1a1{bottom:311.106667pt;}
.y4e{bottom:311.586667pt;}
.y76{bottom:312.386667pt;}
.y1bf{bottom:312.866667pt;}
.y9a{bottom:315.586667pt;}
.ye2{bottom:317.346667pt;}
.yfe{bottom:321.986667pt;}
.yc9{bottom:325.986667pt;}
.y134{bottom:327.426667pt;}
.y22{bottom:328.706667pt;}
.y1a0{bottom:329.506667pt;}
.y75{bottom:330.786667pt;}
.y117{bottom:331.266667pt;}
.y15f{bottom:332.386667pt;}
.y99{bottom:333.986667pt;}
.y17f{bottom:335.586667pt;}
.y1db{bottom:342.626667pt;}
.y133{bottom:345.826667pt;}
.y4d{bottom:346.306667pt;}
.y21{bottom:347.106667pt;}
.y19f{bottom:347.906667pt;}
.y74{bottom:349.186667pt;}
.y116{bottom:349.666667pt;}
.y98{bottom:352.386667pt;}
.ye1{bottom:352.546667pt;}
.yfd{bottom:356.706667pt;}
.yc8{bottom:360.386667pt;}
.y1da{bottom:361.026667pt;}
.y132{bottom:364.226667pt;}
.y20{bottom:365.506667pt;}
.y19e{bottom:366.306667pt;}
.y15e{bottom:366.946667pt;}
.y73{bottom:367.586667pt;}
.y115{bottom:368.066667pt;}
.yad{bottom:368.386667pt;}
.y17e{bottom:370.146667pt;}
.y97{bottom:370.786667pt;}
.ye0{bottom:370.946667pt;}
.yc7{bottom:378.786667pt;}
.y4c{bottom:381.986667pt;}
.y1f{bottom:383.906667pt;}
.y19d{bottom:384.706667pt;}
.y15d{bottom:385.346667pt;}
.y72{bottom:385.986667pt;}
.y114{bottom:386.466667pt;}
.yac{bottom:386.786667pt;}
.y17d{bottom:388.546667pt;}
.ydf{bottom:389.346667pt;}
.yfc{bottom:392.386667pt;}
.y1d9{bottom:395.426667pt;}
.y131{bottom:398.786667pt;}
.y4b{bottom:400.386667pt;}
.y1e{bottom:402.306667pt;}
.y19c{bottom:403.106667pt;}
.y15c{bottom:403.746667pt;}
.y71{bottom:404.386667pt;}
.y113{bottom:404.866667pt;}
.y96{bottom:405.186667pt;}
.yde{bottom:407.746667pt;}
.yfb{bottom:410.786667pt;}
.yc6{bottom:413.186667pt;}
.y1d8{bottom:413.826667pt;}
.y4a{bottom:418.786667pt;}
.y1d{bottom:420.706667pt;}
.y19b{bottom:421.506667pt;}
.y15b{bottom:422.146667pt;}
.y70{bottom:422.786667pt;}
.y17c{bottom:422.946667pt;}
.y95{bottom:423.586667pt;}
.ydd{bottom:426.146667pt;}
.yfa{bottom:429.186667pt;}
.yc5{bottom:431.586667pt;}
.y1d7{bottom:432.226667pt;}
.y130{bottom:434.466667pt;}
.y49{bottom:437.186667pt;}
.y1be{bottom:438.946667pt;}
.y1c{bottom:439.106667pt;}
.y112{bottom:439.266667pt;}
.y19a{bottom:439.906667pt;}
.y15a{bottom:440.546667pt;}
.y6f{bottom:441.186667pt;}
.y17b{bottom:441.346667pt;}
.y94{bottom:441.986667pt;}
.ydc{bottom:444.546667pt;}
.yf9{bottom:447.586667pt;}
.y48{bottom:455.586667pt;}
.y1b{bottom:457.506667pt;}
.y199{bottom:458.306667pt;}
.y159{bottom:458.946667pt;}
.y6e{bottom:459.586667pt;}
.y93{bottom:460.386667pt;}
.ydb{bottom:462.946667pt;}
.yc4{bottom:465.666667pt;}
.yf8{bottom:465.986667pt;}
.y1d6{bottom:466.626667pt;}
.y12f{bottom:468.866667pt;}
.y1bd{bottom:471.906667pt;}
.y111{bottom:473.986667pt;}
.y17a{bottom:475.746667pt;}
.y1a{bottom:475.906667pt;}
.y198{bottom:476.706667pt;}
.y158{bottom:477.346667pt;}
.y92{bottom:478.786667pt;}
.y1d5{bottom:485.026667pt;}
.y47{bottom:489.986667pt;}
.y1bb{bottom:490.946667pt;}
.y179{bottom:494.173333pt;}
.y19{bottom:494.333333pt;}
.y91{bottom:497.213333pt;}
.yda{bottom:497.533333pt;}
.yf7{bottom:500.573333pt;}
.yc3{bottom:501.853333pt;}
.y12e{bottom:503.293333pt;}
.y110{bottom:504.893333pt;}
.y197{bottom:507.773333pt;}
.y46{bottom:508.413333pt;}
.y10e{bottom:509.853333pt;}
.y1ba{bottom:510.013333pt;}
.y157{bottom:512.093333pt;}
.y10f{bottom:515.293333pt;}
.y90{bottom:515.453333pt;}
.y1d4{bottom:519.453333pt;}
.yc2{bottom:520.253333pt;}
.y10b{bottom:520.573333pt;}
.y45{bottom:526.813333pt;}
.y18{bottom:528.413333pt;}
.y178{bottom:528.573333pt;}
.y10d{bottom:529.053333pt;}
.y6d{bottom:529.693333pt;}
.yd9{bottom:533.213333pt;}
.yf6{bottom:536.253333pt;}
.y12d{bottom:537.693333pt;}
.y1d3{bottom:537.853333pt;}
.yc1{bottom:538.653333pt;}
.y10c{bottom:539.133333pt;}
.y44{bottom:545.213333pt;}
.y196{bottom:545.853333pt;}
.y177{bottom:546.973333pt;}
.y156{bottom:547.773333pt;}
.yab{bottom:549.853333pt;}
.y8f{bottom:550.173333pt;}
.yd8{bottom:551.613333pt;}
.yf5{bottom:554.653333pt;}
.y1d2{bottom:556.253333pt;}
.yc0{bottom:557.053333pt;}
.y43{bottom:563.453333pt;}
.y17{bottom:564.413333pt;}
.y195{bottom:565.053333pt;}
.y176{bottom:565.373333pt;}
.y6c{bottom:565.853333pt;}
.y155{bottom:566.173333pt;}
.yaa{bottom:568.253333pt;}
.yd7{bottom:570.013333pt;}
.y12c{bottom:572.093333pt;}
.ybf{bottom:575.453333pt;}
.y42{bottom:581.853333pt;}
.y175{bottom:583.773333pt;}
.y194{bottom:584.093333pt;}
.y6b{bottom:584.253333pt;}
.y154{bottom:584.573333pt;}
.y8e{bottom:585.853333pt;}
.ya9{bottom:586.653333pt;}
.yf4{bottom:589.053333pt;}
.y12b{bottom:590.493333pt;}
.y1d1{bottom:590.653333pt;}
.ybe{bottom:593.853333pt;}
.y41{bottom:600.253333pt;}
.y16{bottom:600.733333pt;}
.y6a{bottom:602.653333pt;}
.y153{bottom:602.973333pt;}
.y193{bottom:603.133333pt;}
.y8d{bottom:604.253333pt;}
.yd6{bottom:604.733333pt;}
.ya8{bottom:605.053333pt;}
.y1d0{bottom:609.053333pt;}
.y1e4{bottom:611.453333pt;}
.y1b9{bottom:618.333333pt;}
.y174{bottom:618.493333pt;}
.y40{bottom:618.653333pt;}
.y15{bottom:620.733333pt;}
.y69{bottom:621.053333pt;}
.y8c{bottom:622.653333pt;}
.yf3{bottom:623.453333pt;}
.y12a{bottom:624.733333pt;}
.ybd{bottom:628.093333pt;}
.y1e3{bottom:629.853333pt;}
.y150{bottom:634.013333pt;}
.y1b8{bottom:636.733333pt;}
.y3f{bottom:637.053333pt;}
.y68{bottom:639.453333pt;}
.yd5{bottom:640.413333pt;}
.y14{bottom:640.893333pt;}
.y8b{bottom:641.053333pt;}
.yf2{bottom:641.853333pt;}
.y192{bottom:642.173333pt;}
.y1cf{bottom:643.453333pt;}
.y173{bottom:654.333333pt;}
.y1b7{bottom:655.133333pt;}
.y3e{bottom:655.453333pt;}
.y67{bottom:657.853333pt;}
.yd4{bottom:658.813333pt;}
.y8a{bottom:659.453333pt;}
.yf1{bottom:660.253333pt;}
.y129{bottom:660.893333pt;}
.y1ce{bottom:661.853333pt;}
.ybc{bottom:664.253333pt;}
.y151{bottom:670.813333pt;}
.y1b6{bottom:673.533333pt;}
.y191{bottom:673.693333pt;}
.y3d{bottom:673.853333pt;}
.y66{bottom:676.253333pt;}
.y89{bottom:677.853333pt;}
.y13{bottom:678.173333pt;}
.yf0{bottom:678.653333pt;}
.y128{bottom:679.293333pt;}
.ybb{bottom:682.653333pt;}
.y172{bottom:686.666667pt;}
.y14c{bottom:689.853333pt;}
.y14e{bottom:689.866667pt;}
.y1b5{bottom:691.933333pt;}
.y190{bottom:692.253333pt;}
.yd3{bottom:692.893333pt;}
.y65{bottom:694.653333pt;}
.y1cd{bottom:696.253333pt;}
.yef{bottom:697.053333pt;}
.y127{bottom:697.693333pt;}
.y12{bottom:698.013333pt;}
.y171{bottom:705.853333pt;}
.y3c{bottom:708.253333pt;}
.y1b4{bottom:710.333333pt;}
.y18f{bottom:710.653333pt;}
.y88{bottom:712.253333pt;}
.y64{bottom:713.053333pt;}
.y1cc{bottom:714.653333pt;}
.yee{bottom:715.453333pt;}
.y126{bottom:716.093333pt;}
.yba{bottom:717.053333pt;}
.y10{bottom:718.173333pt;}
.y11{bottom:724.893333pt;}
.y3b{bottom:726.653333pt;}
.y14d{bottom:726.666667pt;}
.y1b3{bottom:728.573333pt;}
.yd2{bottom:729.053333pt;}
.y10a{bottom:729.373333pt;}
.y87{bottom:730.653333pt;}
.y63{bottom:731.453333pt;}
.y1cb{bottom:733.053333pt;}
.yed{bottom:733.853333pt;}
.yb9{bottom:735.453333pt;}
.y16d{bottom:743.933333pt;}
.y16a{bottom:743.946667pt;}
.y3a{bottom:745.053333pt;}
.y148{bottom:745.733333pt;}
.y1b2{bottom:747.013333pt;}
.yd1{bottom:747.493333pt;}
.y86{bottom:749.093333pt;}
.y62{bottom:749.893333pt;}
.y125{bottom:750.693333pt;}
.yec{bottom:752.293333pt;}
.y1e2{bottom:753.893333pt;}
.yf{bottom:755.493333pt;}
.y39{bottom:763.493333pt;}
.y109{bottom:765.093333pt;}
.y1b1{bottom:765.413333pt;}
.yd0{bottom:765.893333pt;}
.y1ca{bottom:767.493333pt;}
.y61{bottom:768.293333pt;}
.yb8{bottom:769.893333pt;}
.yeb{bottom:770.693333pt;}
.ye{bottom:775.333333pt;}
.y16c{bottom:781.413333pt;}
.y38{bottom:781.893333pt;}
.y18e{bottom:782.213333pt;}
.y149{bottom:782.533333pt;}
.y85{bottom:783.493333pt;}
.y1b0{bottom:783.813333pt;}
.ya7{bottom:784.293333pt;}
.y1c9{bottom:785.893333pt;}
.y124{bottom:786.373333pt;}
.y60{bottom:786.693333pt;}
.yb7{bottom:788.293333pt;}
.yd{bottom:795.653333pt;}
.y37{bottom:800.293333pt;}
.y144{bottom:801.573333pt;}
.y84{bottom:801.893333pt;}
.y1af{bottom:802.213333pt;}
.ya6{bottom:802.693333pt;}
.y123{bottom:804.773333pt;}
.yea{bottom:805.413333pt;}
.yb6{bottom:806.693333pt;}
.y18d{bottom:817.893333pt;}
.yc{bottom:818.373333pt;}
.y36{bottom:818.693333pt;}
.y1c8{bottom:819.973333pt;}
.y83{bottom:820.293333pt;}
.y1ae{bottom:820.613333pt;}
.y169{bottom:820.933333pt;}
.ya5{bottom:821.093333pt;}
.y5f{bottom:821.413333pt;}
.y122{bottom:823.173333pt;}
.y18c{bottom:836.293333pt;}
.y35{bottom:837.093333pt;}
.y82{bottom:838.693333pt;}
.ycf{bottom:839.493333pt;}
.yb5{bottom:841.093333pt;}
.y1ad{bottom:851.813333pt;}
.y18b{bottom:854.693333pt;}
.y34{bottom:855.493333pt;}
.y143{bottom:856.293333pt;}
.y5e{bottom:857.093333pt;}
.yce{bottom:857.893333pt;}
.yb4{bottom:859.493333pt;}
.yb{bottom:865.093333pt;}
.y1ac{bottom:870.853333pt;}
.y18a{bottom:873.093333pt;}
.y33{bottom:873.893333pt;}
.y5d{bottom:875.493333pt;}
.yb3{bottom:877.893333pt;}
.y1ab{bottom:889.893333pt;}
.y142{bottom:890.853333pt;}
.y189{bottom:891.493333pt;}
.ycd{bottom:892.133333pt;}
.y32{bottom:892.293333pt;}
.y121{bottom:893.573333pt;}
.y5c{bottom:893.893333pt;}
.ya{bottom:895.813333pt;}
.y1aa{bottom:908.933333pt;}
.y141{bottom:909.253333pt;}
.y108{bottom:909.893333pt;}
.y31{bottom:910.693333pt;}
.y120{bottom:911.973333pt;}
.y81{bottom:912.293333pt;}
.y9{bottom:926.373333pt;}
.y140{bottom:927.653333pt;}
.y1a9{bottom:927.973333pt;}
.y5b{bottom:928.293333pt;}
.y30{bottom:929.093333pt;}
.y11f{bottom:930.373333pt;}
.y80{bottom:930.693333pt;}
.y5a{bottom:946.693333pt;}
.y1a8{bottom:947.013333pt;}
.y2f{bottom:947.493333pt;}
.y11e{bottom:948.773333pt;}
.y13f{bottom:962.213333pt;}
.y59{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y2e{bottom:981.733333pt;}
.ya4{bottom:982.213333pt;}
.y11d{bottom:983.013333pt;}
.y58{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h1d{height:18.386667pt;}
.h1e{height:18.392000pt;}
.h23{height:18.400000pt;}
.h27{height:18.418667pt;}
.h2b{height:18.426667pt;}
.h26{height:21.746667pt;}
.h11{height:23.996250pt;}
.h17{height:32.526875pt;}
.hb{height:33.328125pt;}
.h21{height:36.146667pt;}
.h24{height:36.160000pt;}
.h1f{height:36.786667pt;}
.h2a{height:36.800000pt;}
.h29{height:36.820000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h13{height:44.468750pt;}
.h1b{height:45.812500pt;}
.h5{height:47.680000pt;}
.h19{height:48.372500pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h20{height:55.186667pt;}
.h22{height:55.200000pt;}
.h25{height:59.186667pt;}
.h28{height:59.218667pt;}
.h14{height:62.781250pt;}
.hf{height:62.812500pt;}
.h10{height:64.500000pt;}
.h15{height:65.781915pt;}
.h16{height:66.404375pt;}
.h12{height:67.803750pt;}
.h9{height:67.837500pt;}
.hd{height:69.660000pt;}
.he{height:71.044468pt;}
.h1c{height:71.955000pt;}
.h8{height:73.490625pt;}
.hc{height:76.964840pt;}
.h18{height:94.781250pt;}
.h1a{height:97.012500pt;}
.h7{height:107.715000pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:49.746667pt;}
.w5{width:65.632000pt;}
.w9{width:75.040000pt;}
.w25{width:79.826667pt;}
.w8{width:84.338667pt;}
.w21{width:85.752000pt;}
.w11{width:88.466667pt;}
.wc{width:89.586667pt;}
.w7{width:91.512000pt;}
.w15{width:91.538667pt;}
.w16{width:91.840000pt;}
.w1b{width:92.000000pt;}
.wa{width:92.512000pt;}
.we{width:96.338667pt;}
.w13{width:98.258667pt;}
.w1c{width:101.792000pt;}
.w17{width:101.952000pt;}
.w23{width:106.098667pt;}
.w2{width:111.520000pt;}
.w14{width:117.298667pt;}
.w10{width:118.098667pt;}
.w24{width:126.752000pt;}
.w18{width:128.786667pt;}
.w1d{width:128.818667pt;}
.w6{width:139.506667pt;}
.w26{width:141.133333pt;}
.w1a{width:161.773333pt;}
.wf{width:180.026667pt;}
.w4{width:181.133333pt;}
.w1f{width:190.893333pt;}
.wb{width:234.413333pt;}
.w19{width:286.773333pt;}
.w1e{width:356.853333pt;}
.w20{width:386.133333pt;}
.wd{width:395.760000pt;}
.w12{width:396.880000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:7.360000pt;}
.x2d{left:8.480000pt;}
.x29{left:9.752000pt;}
.x30{left:11.200000pt;}
.x2b{left:12.466667pt;}
.x33{left:15.506667pt;}
.x42{left:16.986667pt;}
.x26{left:18.706667pt;}
.x2e{left:20.000000pt;}
.x38{left:21.746667pt;}
.x3e{left:27.040000pt;}
.x34{left:28.320000pt;}
.x47{left:29.946667pt;}
.x35{left:31.186667pt;}
.x4c{left:32.480000pt;}
.x44{left:33.906667pt;}
.x37{left:35.026667pt;}
.x41{left:36.306667pt;}
.x32{left:37.266667pt;}
.x40{left:38.546667pt;}
.x64{left:40.146667pt;}
.x52{left:41.906667pt;}
.x2{left:44.799998pt;}
.x27{left:46.706667pt;}
.x25{left:47.986667pt;}
.x4d{left:51.026667pt;}
.x50{left:52.306667pt;}
.x5c{left:56.626667pt;}
.x21{left:62.906667pt;}
.x5a{left:67.026667pt;}
.x43{left:68.000000pt;}
.x51{left:72.786667pt;}
.x36{left:82.386667pt;}
.x17{left:85.120000pt;}
.x5b{left:87.506667pt;}
.x31{left:96.786667pt;}
.x5e{left:100.680000pt;}
.x53{left:102.866667pt;}
.x1{left:113.472000pt;}
.x14{left:117.792000pt;}
.x5{left:125.632000pt;}
.x15{left:132.352000pt;}
.xd{left:133.312000pt;}
.x10{left:134.906667pt;}
.x16{left:137.466667pt;}
.x56{left:139.240000pt;}
.x12{left:141.786667pt;}
.x3c{left:143.866667pt;}
.x4{left:145.786667pt;}
.x8{left:148.666667pt;}
.x3a{left:153.960000pt;}
.x11{left:160.666667pt;}
.x28{left:171.386667pt;}
.x1f{left:174.266667pt;}
.x5f{left:187.080000pt;}
.x49{left:188.840000pt;}
.x45{left:191.546667pt;}
.x20{left:203.080000pt;}
.x2a{left:206.440000pt;}
.x55{left:208.026667pt;}
.x39{left:220.346667pt;}
.x9{left:230.106667pt;}
.x5d{left:232.346667pt;}
.x60{left:237.480000pt;}
.x46{left:243.080000pt;}
.x3b{left:244.200000pt;}
.x6{left:246.106667pt;}
.x48{left:252.346667pt;}
.x19{left:280.866667pt;}
.x18{left:287.586667pt;}
.x2c{left:291.426667pt;}
.x1e{left:302.786667pt;}
.x13{left:305.506667pt;}
.x1d{left:315.586667pt;}
.xf{left:319.906667pt;}
.x7{left:326.786667pt;}
.x57{left:330.946667pt;}
.x3d{left:341.186667pt;}
.x61{left:344.226667pt;}
.xa{left:352.386667pt;}
.x1a{left:364.386667pt;}
.x2f{left:367.106667pt;}
.x4a{left:373.666667pt;}
.x1b{left:375.746667pt;}
.xe{left:383.106667pt;}
.x22{left:385.026667pt;}
.x54{left:397.026667pt;}
.x3{left:406.466667pt;}
.x4e{left:408.866667pt;}
.x58{left:423.426667pt;}
.x24{left:451.466667pt;}
.xb{left:454.473333pt;}
.xc{left:460.573333pt;}
.x1c{left:465.853333pt;}
.x62{left:471.626667pt;}
.x4b{left:476.266667pt;}
.x4f{left:511.306667pt;}
.x3f{left:521.866667pt;}
.x59{left:526.026667pt;}
.x63{left:552.106667pt;}
}




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