
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_96b14c4fe8317f77dafbda2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_5ef9c0d3546c06ba72b57c4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_51a8b55fdf51bc15fbb494bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_fedd40e8c28ec9cac96e9de5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d18820106ac9a8adada98fc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_33a3fd2eba044de379286d4d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_ca4d173e3c855b4b863fd6b0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96a44c643d26169ac49eb470.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125488;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_9102b16419a75164a3ba6732.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.332031;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_b89fef002a4ebe0e44e374c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls15{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.754143px;}
.ls6{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls17{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.008000px;}
.ls1{letter-spacing:1.357829px;}
.lsd{letter-spacing:8.640000px;}
.ls18{letter-spacing:29.520000px;}
.lse{letter-spacing:33.984000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws9{word-spacing:-71.856000px;}
.wsa{word-spacing:-71.712000px;}
.ws11{word-spacing:-21.096000px;}
.wse{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.568000px;}
.wsd{word-spacing:-17.208000px;}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-12.941438px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:420.975840px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._14{margin-left:-3.915360px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._8{width:2.808000px;}
._a{width:4.032000px;}
._b{width:5.328000px;}
._6{width:7.200000px;}
._7{width:8.495520px;}
._d{width:10.224000px;}
._12{width:11.304000px;}
._13{width:12.456000px;}
._11{width:13.962960px;}
._e{width:15.048000px;}
._9{width:16.128000px;}
._c{width:19.301760px;}
._1f{width:20.414160px;}
._1c{width:21.600000px;}
._19{width:22.824000px;}
._1a{width:24.025200px;}
._1b{width:25.736400px;}
._15{width:26.904000px;}
._16{width:28.157760px;}
._17{width:29.376000px;}
._18{width:30.384000px;}
._1d{width:31.824000px;}
._1e{width:32.898960px;}
._23{width:34.263840px;}
._27{width:35.983440px;}
._24{width:37.944000px;}
._20{width:39.960000px;}
._21{width:41.328000px;}
._f{width:42.768000px;}
._10{width:43.997760px;}
._22{width:45.318720px;}
._2a{width:49.464000px;}
._2c{width:50.721120px;}
._28{width:52.039440px;}
._29{width:53.064000px;}
._2b{width:54.576000px;}
._2d{width:55.728000px;}
._26{width:353.496720px;}
._5{width:431.756880px;}
._25{width:2351.256000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:49.264682px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330266px;}
.y202{bottom:4.485000px;}
.y1bc{bottom:4.500000px;}
.y14{bottom:15.840000px;}
.yf{bottom:17.100000px;}
.y44{bottom:18.720000px;}
.y1ff{bottom:20.865000px;}
.y1ad{bottom:21.225000px;}
.y1b3{bottom:21.240000px;}
.y1b1{bottom:21.270000px;}
.y1d1{bottom:21.285000px;}
.y1ab{bottom:21.405000px;}
.y1a9{bottom:21.420000px;}
.y1df{bottom:21.450000px;}
.y1a7{bottom:22.860000px;}
.y1e8{bottom:23.025000px;}
.y1ce{bottom:23.040000px;}
.y1a6{bottom:23.400000px;}
.y1e7{bottom:23.565000px;}
.y1cd{bottom:23.580000px;}
.y1bd{bottom:24.660000px;}
.y201{bottom:25.185000px;}
.y1bb{bottom:25.200000px;}
.y1fe{bottom:41.565000px;}
.y1f3{bottom:45.360000px;}
.y1f2{bottom:45.900000px;}
.ye{bottom:46.800000px;}
.y15{bottom:53.460000px;}
.yc{bottom:56.700000px;}
.y119{bottom:111.780000px;}
.y23b{bottom:113.400000px;}
.y72{bottom:114.480000px;}
.y197{bottom:116.640000px;}
.y22f{bottom:119.160000px;}
.y204{bottom:120.060000px;}
.y85{bottom:122.400000px;}
.yf7{bottom:122.940000px;}
.y13a{bottom:124.020000px;}
.yd6{bottom:124.560000px;}
.y18c{bottom:127.440000px;}
.y42{bottom:131.940000px;}
.ya1{bottom:132.300000px;}
.y23a{bottom:134.100000px;}
.y71{bottom:135.180000px;}
.y22e{bottom:139.860000px;}
.y107{bottom:143.100000px;}
.yf6{bottom:143.640000px;}
.y139{bottom:144.720000px;}
.yd5{bottom:145.620000px;}
.y18b{bottom:148.140000px;}
.y16d{bottom:151.740000px;}
.y1e9{bottom:152.460000px;}
.y41{bottom:152.640000px;}
.y1cb{bottom:152.820000px;}
.ya0{bottom:153.360000px;}
.yde{bottom:154.800000px;}
.y70{bottom:155.880000px;}
.y106{bottom:159.480000px;}
.y22d{bottom:160.560000px;}
.y138{bottom:160.920000px;}
.y158{bottom:162.180000px;}
.yf5{bottom:164.340000px;}
.yd4{bottom:166.320000px;}
.y149{bottom:166.860000px;}
.y18a{bottom:168.840000px;}
.y123{bottom:170.280000px;}
.y16c{bottom:172.440000px;}
.y40{bottom:173.340000px;}
.y1ca{bottom:173.520000px;}
.y9f{bottom:173.880000px;}
.y203{bottom:174.780000px;}
.y239{bottom:175.500000px;}
.ydd{bottom:176.040000px;}
.y6f{bottom:176.580000px;}
.y22c{bottom:181.260000px;}
.y157{bottom:182.880000px;}
.yf4{bottom:185.040000px;}
.yd3{bottom:187.020000px;}
.y148{bottom:187.560000px;}
.y189{bottom:189.540000px;}
.y16b{bottom:192.960000px;}
.y3f{bottom:194.040000px;}
.y1c9{bottom:194.220000px;}
.y9e{bottom:195.120000px;}
.y238{bottom:196.200000px;}
.ydc{bottom:196.740000px;}
.y6e{bottom:197.280000px;}
.y1b0{bottom:198.000000px;}
.y22b{bottom:201.960000px;}
.y156{bottom:203.580000px;}
.y147{bottom:203.760000px;}
.yf3{bottom:205.770000px;}
.y1e6{bottom:207.225000px;}
.yd2{bottom:207.750000px;}
.y188{bottom:209.910000px;}
.yb8{bottom:210.090000px;}
.y9d{bottom:211.350000px;}
.y16a{bottom:213.870000px;}
.y3e{bottom:214.770000px;}
.y1c8{bottom:214.950000px;}
.y237{bottom:216.930000px;}
.ydb{bottom:217.470000px;}
.y6d{bottom:218.010000px;}
.y22a{bottom:222.690000px;}
.y155{bottom:224.670000px;}
.yf2{bottom:226.470000px;}
.yd1{bottom:228.450000px;}
.y187{bottom:230.610000px;}
.yb7{bottom:230.790000px;}
.y196{bottom:232.950000px;}
.y200{bottom:233.505000px;}
.yda{bottom:233.670000px;}
.y169{bottom:234.570000px;}
.y1c7{bottom:235.290000px;}
.y3d{bottom:235.470000px;}
.y236{bottom:237.630000px;}
.y137{bottom:237.810000px;}
.y230{bottom:238.350000px;}
.y118{bottom:238.530000px;}
.y6c{bottom:238.710000px;}
.y229{bottom:243.390000px;}
.y154{bottom:245.730000px;}
.yf1{bottom:246.810000px;}
.yd0{bottom:249.150000px;}
.yb6{bottom:251.130000px;}
.y186{bottom:251.670000px;}
.y1af{bottom:252.765000px;}
.y117{bottom:254.910000px;}
.y168{bottom:255.630000px;}
.y1c6{bottom:255.990000px;}
.y3c{bottom:256.170000px;}
.y235{bottom:258.330000px;}
.y136{bottom:258.510000px;}
.y84{bottom:259.050000px;}
.y6b{bottom:259.410000px;}
.y1e5{bottom:260.310000px;}
.y153{bottom:262.470000px;}
.y228{bottom:264.090000px;}
.ycf{bottom:265.350000px;}
.yf0{bottom:267.510000px;}
.yb5{bottom:272.190000px;}
.y185{bottom:272.370000px;}
.y9c{bottom:273.270000px;}
.y167{bottom:276.330000px;}
.y3b{bottom:276.870000px;}
.y1c5{bottom:277.050000px;}
.y122{bottom:278.130000px;}
.y234{bottom:279.030000px;}
.y135{bottom:279.210000px;}
.y83{bottom:279.750000px;}
.y6a{bottom:280.110000px;}
.y1e4{bottom:280.830000px;}
.y105{bottom:282.990000px;}
.y227{bottom:284.790000px;}
.yef{bottom:288.570000px;}
.y1fd{bottom:292.005000px;}
.yb4{bottom:292.890000px;}
.y184{bottom:293.070000px;}
.y121{bottom:294.330000px;}
.y166{bottom:296.670000px;}
.y3a{bottom:297.570000px;}
.y134{bottom:299.730000px;}
.y82{bottom:300.450000px;}
.y69{bottom:300.810000px;}
.y1e3{bottom:301.890000px;}
.y1c4{bottom:302.985000px;}
.y226{bottom:305.490000px;}
.y1ae{bottom:307.485000px;}
.yee{bottom:309.270000px;}
.yb3{bottom:313.230000px;}
.y183{bottom:313.770000px;}
.y165{bottom:317.370000px;}
.y39{bottom:318.270000px;}
.y233{bottom:320.430000px;}
.y133{bottom:320.970000px;}
.y7a{bottom:321.150000px;}
.y68{bottom:321.510000px;}
.y1e2{bottom:322.590000px;}
.y225{bottom:326.190000px;}
.yed{bottom:329.970000px;}
.y9b{bottom:333.930000px;}
.y182{bottom:334.470000px;}
.y164{bottom:338.430000px;}
.y38{bottom:338.970000px;}
.y232{bottom:340.590000px;}
.y132{bottom:341.670000px;}
.y79{bottom:341.850000px;}
.y67{bottom:342.210000px;}
.y1e1{bottom:343.290000px;}
.y224{bottom:346.890000px;}
.y9a{bottom:350.310000px;}
.yec{bottom:350.670000px;}
.y146{bottom:353.730000px;}
.yb2{bottom:354.990000px;}
.y181{bottom:355.170000px;}
.y1c3{bottom:357.705000px;}
.y131{bottom:358.050000px;}
.y163{bottom:359.130000px;}
.y37{bottom:359.670000px;}
.y1ac{bottom:362.205000px;}
.y66{bottom:362.910000px;}
.y1fc{bottom:363.990000px;}
.yd9{bottom:365.070000px;}
.y223{bottom:367.590000px;}
.y1e0{bottom:369.225000px;}
.y195{bottom:369.930000px;}
.y116{bottom:370.110000px;}
.yeb{bottom:371.370000px;}
.y145{bottom:374.430000px;}
.y162{bottom:375.330000px;}
.y180{bottom:375.510000px;}
.yb1{bottom:375.690000px;}
.y36{bottom:380.370000px;}
.yd8{bottom:381.450000px;}
.y77{bottom:383.250000px;}
.y65{bottom:383.610000px;}
.y1fb{bottom:384.690000px;}
.yce{bottom:385.410000px;}
.y222{bottom:388.290000px;}
.y194{bottom:390.270000px;}
.y115{bottom:390.810000px;}
.yea{bottom:392.070000px;}
.y104{bottom:392.970000px;}
.y17f{bottom:396.210000px;}
.yb0{bottom:396.390000px;}
.y35{bottom:401.070000px;}
.y120{bottom:403.230000px;}
.y7e{bottom:403.950000px;}
.y64{bottom:404.310000px;}
.y1fa{bottom:405.930000px;}
.ycd{bottom:406.110000px;}
.y99{bottom:407.370000px;}
.ye9{bottom:408.270000px;}
.y221{bottom:408.990000px;}
.y193{bottom:410.970000px;}
.y114{bottom:411.510000px;}
.y1c2{bottom:412.425000px;}
.y103{bottom:413.670000px;}
.y1aa{bottom:416.925000px;}
.yaf{bottom:417.090000px;}
.y17e{bottom:417.270000px;}
.y34{bottom:421.770000px;}
.y1de{bottom:423.945000px;}
.y7d{bottom:424.650000px;}
.y63{bottom:425.010000px;}
.y1f9{bottom:426.270000px;}
.ycc{bottom:426.450000px;}
.y98{bottom:428.610000px;}
.y220{bottom:429.690000px;}
.y102{bottom:430.050000px;}
.y113{bottom:431.850000px;}
.y192{bottom:432.030000px;}
.yae{bottom:433.290000px;}
.y17d{bottom:437.790000px;}
.y33{bottom:442.515000px;}
.y62{bottom:445.755000px;}
.y1f8{bottom:447.015000px;}
.ycb{bottom:447.195000px;}
.y97{bottom:449.355000px;}
.y21f{bottom:450.435000px;}
.y112{bottom:452.595000px;}
.y191{bottom:452.775000px;}
.y17c{bottom:459.075000px;}
.y32{bottom:463.215000px;}
.y61{bottom:466.455000px;}
.y1c1{bottom:467.175000px;}
.y1f7{bottom:468.075000px;}
.yca{bottom:468.255000px;}
.y190{bottom:469.155000px;}
.y96{bottom:470.055000px;}
.y21e{bottom:471.135000px;}
.y1a8{bottom:471.675000px;}
.y111{bottom:473.655000px;}
.y1dd{bottom:478.695000px;}
.y17b{bottom:479.775000px;}
.y31{bottom:483.915000px;}
.y60{bottom:487.155000px;}
.yc9{bottom:488.955000px;}
.y95{bottom:490.755000px;}
.y21d{bottom:491.835000px;}
.y1f6{bottom:493.995000px;}
.y110{bottom:494.355000px;}
.y17a{bottom:500.475000px;}
.y30{bottom:504.615000px;}
.y5f{bottom:507.855000px;}
.y152{bottom:509.115000px;}
.y144{bottom:509.475000px;}
.yc8{bottom:509.655000px;}
.y130{bottom:510.555000px;}
.y94{bottom:511.455000px;}
.y21c{bottom:512.535000px;}
.y10f{bottom:515.055000px;}
.y43{bottom:518.115000px;}
.y161{bottom:520.095000px;}
.y179{bottom:521.175000px;}
.y1c0{bottom:521.895000px;}
.y2f{bottom:525.315000px;}
.ye8{bottom:526.575000px;}
.y11f{bottom:527.115000px;}
.y81{bottom:528.015000px;}
.y5e{bottom:528.375000px;}
.y151{bottom:529.635000px;}
.y143{bottom:530.175000px;}
.yc7{bottom:530.355000px;}
.y93{bottom:532.155000px;}
.y21b{bottom:533.235000px;}
.y1dc{bottom:533.595000px;}
.y10e{bottom:535.755000px;}
.y160{bottom:540.795000px;}
.y178{bottom:541.875000px;}
.ye7{bottom:542.955000px;}
.y2e{bottom:546.015000px;}
.y11e{bottom:548.175000px;}
.y80{bottom:548.715000px;}
.y5d{bottom:549.075000px;}
.y142{bottom:550.515000px;}
.yc6{bottom:550.875000px;}
.y10d{bottom:551.955000px;}
.y92{bottom:552.855000px;}
.y21a{bottom:553.935000px;}
.yad{bottom:554.835000px;}
.y15f{bottom:561.495000px;}
.y177{bottom:562.575000px;}
.y91{bottom:569.055000px;}
.y11d{bottom:569.235000px;}
.y5c{bottom:569.775000px;}
.y101{bottom:569.955000px;}
.y150{bottom:571.215000px;}
.y141{bottom:571.575000px;}
.y219{bottom:574.635000px;}
.yac{bottom:575.535000px;}
.y2d{bottom:576.795000px;}
.y176{bottom:578.955000px;}
.y1a5{bottom:579.495000px;}
.y15e{bottom:582.195000px;}
.y100{bottom:586.335000px;}
.y140{bottom:587.955000px;}
.y1db{bottom:588.315000px;}
.y11c{bottom:590.115000px;}
.y5b{bottom:590.475000px;}
.y14f{bottom:592.275000px;}
.y218{bottom:595.335000px;}
.yab{bottom:595.875000px;}
.y15d{bottom:598.395000px;}
.y1a4{bottom:600.015000px;}
.y1f5{bottom:603.435000px;}
.y2c{bottom:607.935000px;}
.y11b{bottom:610.815000px;}
.y5a{bottom:611.175000px;}
.y12f{bottom:611.715000px;}
.y14e{bottom:612.975000px;}
.y217{bottom:616.035000px;}
.yaa{bottom:616.575000px;}
.y1a3{bottom:621.075000px;}
.y2b{bottom:628.815000px;}
.y11a{bottom:631.515000px;}
.y59{bottom:631.875000px;}
.y12e{bottom:632.415000px;}
.y14d{bottom:633.675000px;}
.y216{bottom:636.735000px;}
.y90{bottom:637.635000px;}
.y1a2{bottom:641.775000px;}
.y1da{bottom:641.955000px;}
.y2a{bottom:649.155000px;}
.y14c{bottom:649.875000px;}
.y58{bottom:652.575000px;}
.y12d{bottom:653.115000px;}
.y215{bottom:657.255000px;}
.y1f4{bottom:658.155000px;}
.ya9{bottom:658.335000px;}
.y1a1{bottom:662.475000px;}
.y1d9{bottom:662.835000px;}
.y29{bottom:669.855000px;}
.y57{bottom:673.275000px;}
.y12c{bottom:673.995000px;}
.yc5{bottom:674.895000px;}
.y214{bottom:677.985000px;}
.y175{bottom:678.885000px;}
.ya8{bottom:679.065000px;}
.y1a0{bottom:683.025000px;}
.y1d8{bottom:683.925000px;}
.y10c{bottom:685.905000px;}
.y1bf{bottom:686.265000px;}
.ye6{bottom:687.165000px;}
.y28{bottom:690.945000px;}
.y18f{bottom:693.465000px;}
.y56{bottom:694.005000px;}
.y12b{bottom:695.085000px;}
.yc4{bottom:695.625000px;}
.y8f{bottom:696.165000px;}
.y213{bottom:698.685000px;}
.y174{bottom:699.585000px;}
.ya7{bottom:699.765000px;}
.yff{bottom:702.465000px;}
.y19f{bottom:704.265000px;}
.y1d7{bottom:704.985000px;}
.y10b{bottom:706.605000px;}
.ye5{bottom:707.865000px;}
.y13f{bottom:711.465000px;}
.y27{bottom:711.645000px;}
.y1f1{bottom:712.905000px;}
.y18e{bottom:714.345000px;}
.y55{bottom:714.705000px;}
.y12a{bottom:715.785000px;}
.ya6{bottom:715.965000px;}
.yc3{bottom:716.325000px;}
.y8e{bottom:716.865000px;}
.y212{bottom:719.385000px;}
.y173{bottom:719.925000px;}
.yfe{bottom:723.165000px;}
.y19e{bottom:724.605000px;}
.y1d6{bottom:725.865000px;}
.y10a{bottom:727.305000px;}
.ye4{bottom:728.565000px;}
.y26{bottom:731.985000px;}
.y54{bottom:735.405000px;}
.y129{bottom:736.485000px;}
.yc2{bottom:737.025000px;}
.y8d{bottom:737.205000px;}
.y211{bottom:739.725000px;}
.y172{bottom:740.625000px;}
.y1be{bottom:740.985000px;}
.yfd{bottom:743.505000px;}
.y109{bottom:743.685000px;}
.ye3{bottom:744.945000px;}
.y19d{bottom:745.305000px;}
.y1d5{bottom:746.565000px;}
.y25{bottom:752.685000px;}
.yd7{bottom:755.745000px;}
.y53{bottom:756.105000px;}
.y128{bottom:757.185000px;}
.yc1{bottom:757.725000px;}
.y8c{bottom:757.905000px;}
.y210{bottom:760.425000px;}
.y171{bottom:761.685000px;}
.yfc{bottom:764.205000px;}
.y19c{bottom:766.365000px;}
.y1d4{bottom:767.625000px;}
.y24{bottom:773.745000px;}
.y7c{bottom:776.445000px;}
.y52{bottom:776.805000px;}
.y127{bottom:777.885000px;}
.yc0{bottom:778.425000px;}
.y8b{bottom:778.785000px;}
.y20f{bottom:781.125000px;}
.y170{bottom:782.385000px;}
.yfb{bottom:785.265000px;}
.y19b{bottom:787.065000px;}
.y1f0{bottom:789.225000px;}
.y1d3{bottom:793.725000px;}
.y126{bottom:794.085000px;}
.y23{bottom:794.445000px;}
.y1ba{bottom:795.705000px;}
.y7b{bottom:797.145000px;}
.y51{bottom:797.505000px;}
.ybf{bottom:799.125000px;}
.y8a{bottom:800.025000px;}
.y20e{bottom:802.185000px;}
.y16f{bottom:803.085000px;}
.y19a{bottom:803.445000px;}
.yfa{bottom:805.965000px;}
.y1ef{bottom:809.925000px;}
.y15c{bottom:813.165000px;}
.y22{bottom:814.785000px;}
.y50{bottom:818.205000px;}
.ybe{bottom:819.825000px;}
.y13e{bottom:820.725000px;}
.y89{bottom:821.265000px;}
.yf9{bottom:822.165000px;}
.y20d{bottom:822.885000px;}
.y16e{bottom:823.605000px;}
.y1ee{bottom:830.625000px;}
.y15b{bottom:833.685000px;}
.y21{bottom:835.485000px;}
.y18d{bottom:838.545000px;}
.y4f{bottom:838.905000px;}
.ybd{bottom:840.525000px;}
.y13d{bottom:841.245000px;}
.y88{bottom:841.965000px;}
.y20c{bottom:843.585000px;}
.y1d2{bottom:848.445000px;}
.y1b9{bottom:850.965000px;}
.y1ed{bottom:851.325000px;}
.ya5{bottom:852.045000px;}
.y15a{bottom:854.925000px;}
.y20{bottom:856.545000px;}
.y13c{bottom:858.165000px;}
.y231{bottom:859.245000px;}
.y4e{bottom:859.605000px;}
.ybc{bottom:861.225000px;}
.y87{bottom:862.665000px;}
.y20b{bottom:864.285000px;}
.ya4{bottom:868.785000px;}
.y159{bottom:871.305000px;}
.y1b8{bottom:871.665000px;}
.y1ec{bottom:872.025000px;}
.y1f{bottom:877.245000px;}
.y86{bottom:878.865000px;}
.y4d{bottom:879.945000px;}
.y75{bottom:880.305000px;}
.ybb{bottom:881.925000px;}
.y20a{bottom:884.985000px;}
.ye2{bottom:887.145000px;}
.y14b{bottom:891.465000px;}
.y1eb{bottom:892.365000px;}
.y1b7{bottom:892.725000px;}
.y1e{bottom:897.585000px;}
.y4c{bottom:900.645000px;}
.y74{bottom:901.005000px;}
.yba{bottom:902.625000px;}
.y1d0{bottom:903.165000px;}
.y209{bottom:906.225000px;}
.y14a{bottom:907.665000px;}
.ye1{bottom:907.845000px;}
.y1ea{bottom:913.110000px;}
.y1b6{bottom:913.470000px;}
.yf8{bottom:917.790000px;}
.y1d{bottom:918.330000px;}
.yb9{bottom:918.870000px;}
.y76{bottom:921.390000px;}
.y4b{bottom:921.750000px;}
.y199{bottom:924.630000px;}
.y208{bottom:926.610000px;}
.ye0{bottom:928.590000px;}
.y1b5{bottom:934.170000px;}
.y125{bottom:938.850000px;}
.y1c{bottom:939.390000px;}
.y198{bottom:940.830000px;}
.y78{bottom:942.090000px;}
.y4a{bottom:942.450000px;}
.ydf{bottom:944.790000px;}
.y207{bottom:947.310000px;}
.y124{bottom:955.590000px;}
.y1cf{bottom:957.930000px;}
.y1b{bottom:960.090000px;}
.y1b4{bottom:960.270000px;}
.y7f{bottom:962.790000px;}
.y49{bottom:963.150000px;}
.y206{bottom:968.370000px;}
.y1a{bottom:980.430000px;}
.ya3{bottom:983.310000px;}
.y108{bottom:983.490000px;}
.y48{bottom:983.850000px;}
.y205{bottom:989.070000px;}
.y19{bottom:1000.950000px;}
.y47{bottom:1004.190000px;}
.y73{bottom:1004.550000px;}
.y1cc{bottom:1012.650000px;}
.y1b2{bottom:1014.990000px;}
.y18{bottom:1018.590000px;}
.y13b{bottom:1024.890000px;}
.y46{bottom:1025.250000px;}
.y17{bottom:1042.710000px;}
.ya2{bottom:1045.590000px;}
.y45{bottom:1045.950000px;}
.yd{bottom:1056.750000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.635319px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.790000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.648467px;}
.hc{height:16.198500px;}
.hb{height:29.685000px;}
.h7{height:31.952109px;}
.h1b{height:37.425000px;}
.h28{height:37.438500px;}
.h1f{height:37.440000px;}
.h20{height:37.461000px;}
.h22{height:37.462500px;}
.h1c{height:37.476000px;}
.h19{height:37.605000px;}
.h1d{height:37.618500px;}
.h1a{height:37.641000px;}
.h24{height:37.650000px;}
.h6{height:39.247031px;}
.h18{height:39.585000px;}
.h21{height:39.765000px;}
.hf{height:40.472227px;}
.h4{height:41.027344px;}
.hd{height:41.291016px;}
.h26{height:41.385000px;}
.h1e{height:41.400000px;}
.h27{height:41.436000px;}
.h2{height:42.602344px;}
.h14{height:49.665000px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.381523px;}
.h25{height:57.765000px;}
.h5{height:58.845000px;}
.h23{height:62.100000px;}
.h16{height:65.496094px;}
.h15{height:66.757500px;}
.h11{height:70.664062px;}
.h12{height:72.562500px;}
.h17{height:75.093750px;}
.h13{height:80.464922px;}
.h10{height:81.736875px;}
.he{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:33.105000px;}
.w1e{width:38.329500px;}
.w13{width:41.929500px;}
.w1b{width:41.961000px;}
.wc{width:42.105000px;}
.w7{width:46.429500px;}
.wb{width:54.345000px;}
.w12{width:54.360000px;}
.we{width:54.396000px;}
.w14{width:60.105000px;}
.w9{width:60.120000px;}
.wd{width:60.141000px;}
.w5{width:63.036000px;}
.w10{width:69.141000px;}
.w11{width:73.429500px;}
.w19{width:76.849500px;}
.w1c{width:89.280000px;}
.w16{width:91.476000px;}
.w8{width:96.141000px;}
.w18{width:97.185000px;}
.wa{width:101.700000px;}
.w1d{width:101.736000px;}
.w1f{width:103.521000px;}
.w3{width:103.946873px;}
.wf{width:118.429500px;}
.w20{width:118.440000px;}
.w21{width:122.616000px;}
.w15{width:127.641000px;}
.w22{width:151.215000px;}
.w23{width:154.470000px;}
.w17{width:187.215000px;}
.w6{width:199.830000px;}
.w2{width:330.733500px;}
.w4{width:403.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:6.289500px;}
.x5{left:10.798500px;}
.x9{left:15.105000px;}
.xe{left:47.880000px;}
.x4{left:59.221500px;}
.xf{left:61.560000px;}
.x6{left:74.514189px;}
.x10{left:84.960000px;}
.x11{left:97.770000px;}
.x12{left:111.450000px;}
.x13{left:125.310000px;}
.x42{left:128.746500px;}
.x3{left:135.036000px;}
.x14{left:139.170000px;}
.xb{left:148.176000px;}
.x15{left:152.130000px;}
.x22{left:162.030000px;}
.x57{left:169.245000px;}
.x4f{left:172.845000px;}
.x44{left:177.345000px;}
.x23{left:189.030000px;}
.x7{left:199.168689px;}
.x1{left:204.150000px;}
.x53{left:207.765000px;}
.x48{left:221.625000px;}
.x50{left:235.125000px;}
.x54{left:243.045000px;}
.x4b{left:249.345000px;}
.x45{left:275.655000px;}
.x49{left:283.935000px;}
.x55{left:287.355000px;}
.x4c{left:320.655000px;}
.x46{left:337.935000px;}
.xd{left:345.315000px;}
.xc{left:346.575000px;}
.x51{left:364.935000px;}
.x4e{left:379.515000px;}
.x4a{left:387.795000px;}
.x58{left:395.535000px;}
.xa{left:414.975000px;}
.x4d{left:424.515000px;}
.x47{left:441.840000px;}
.x1a{left:444.705000px;}
.x1b{left:447.945000px;}
.x52{left:458.760000px;}
.x1c{left:465.045000px;}
.x2{left:475.305000px;}
.x56{left:482.700000px;}
.x8{left:487.380000px;}
.x19{left:510.765000px;}
.x18{left:512.025000px;}
.x59{left:520.500000px;}
.x21{left:564.225000px;}
.x17{left:578.265000px;}
.x30{left:581.145000px;}
.x33{left:605.805000px;}
.x34{left:620.430000px;}
.x24{left:626.010000px;}
.x31{left:628.350000px;}
.x32{left:630.510000px;}
.x2d{left:632.850000px;}
.x36{left:638.430000px;}
.x37{left:641.490000px;}
.x20{left:646.350000px;}
.x1e{left:648.510000px;}
.x39{left:655.350000px;}
.x2f{left:656.610000px;}
.x3a{left:666.510000px;}
.x2e{left:667.770000px;}
.x16{left:674.610000px;}
.x2b{left:680.730000px;}
.x1d{left:685.770000px;}
.x26{left:690.270000px;}
.x3b{left:693.510000px;}
.x27{left:698.010000px;}
.x25{left:703.410000px;}
.x3e{left:709.350000px;}
.x41{left:711.510000px;}
.x3c{left:713.850000px;}
.x40{left:717.270000px;}
.x3f{left:721.230000px;}
.x1f{left:723.930000px;}
.x38{left:729.510000px;}
.x28{left:731.850000px;}
.x2a{left:736.350000px;}
.x3d{left:737.430000px;}
.x35{left:742.830000px;}
.x2c{left:774.510000px;}
.x29{left:837.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.670349pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.896000pt;}
.ls1{letter-spacing:1.206959pt;}
.lsd{letter-spacing:7.680000pt;}
.ls18{letter-spacing:26.240000pt;}
.lse{letter-spacing:30.208000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws9{word-spacing:-63.872000pt;}
.wsa{word-spacing:-63.744000pt;}
.ws11{word-spacing:-18.752000pt;}
.wse{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.616000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-11.503501pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:374.200747pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._14{margin-left:-3.480320pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._8{width:2.496000pt;}
._a{width:3.584000pt;}
._b{width:4.736000pt;}
._6{width:6.400000pt;}
._7{width:7.551573pt;}
._d{width:9.088000pt;}
._12{width:10.048000pt;}
._13{width:11.072000pt;}
._11{width:12.411520pt;}
._e{width:13.376000pt;}
._9{width:14.336000pt;}
._c{width:17.157120pt;}
._1f{width:18.145920pt;}
._1c{width:19.200000pt;}
._19{width:20.288000pt;}
._1a{width:21.355733pt;}
._1b{width:22.876800pt;}
._15{width:23.914667pt;}
._16{width:25.029120pt;}
._17{width:26.112000pt;}
._18{width:27.008000pt;}
._1d{width:28.288000pt;}
._1e{width:29.243520pt;}
._23{width:30.456747pt;}
._27{width:31.985280pt;}
._24{width:33.728000pt;}
._20{width:35.520000pt;}
._21{width:36.736000pt;}
._f{width:38.016000pt;}
._10{width:39.109120pt;}
._22{width:40.283307pt;}
._2a{width:43.968000pt;}
._2c{width:45.085440pt;}
._28{width:46.257280pt;}
._29{width:47.168000pt;}
._2b{width:48.512000pt;}
._2d{width:49.536000pt;}
._26{width:314.219307pt;}
._5{width:383.783893pt;}
._25{width:2090.005333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:43.790828pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960237pt;}
.y202{bottom:3.986667pt;}
.y1bc{bottom:4.000000pt;}
.y14{bottom:14.080000pt;}
.yf{bottom:15.200000pt;}
.y44{bottom:16.640000pt;}
.y1ff{bottom:18.546667pt;}
.y1ad{bottom:18.866667pt;}
.y1b3{bottom:18.880000pt;}
.y1b1{bottom:18.906667pt;}
.y1d1{bottom:18.920000pt;}
.y1ab{bottom:19.026667pt;}
.y1a9{bottom:19.040000pt;}
.y1df{bottom:19.066667pt;}
.y1a7{bottom:20.320000pt;}
.y1e8{bottom:20.466667pt;}
.y1ce{bottom:20.480000pt;}
.y1a6{bottom:20.800000pt;}
.y1e7{bottom:20.946667pt;}
.y1cd{bottom:20.960000pt;}
.y1bd{bottom:21.920000pt;}
.y201{bottom:22.386667pt;}
.y1bb{bottom:22.400000pt;}
.y1fe{bottom:36.946667pt;}
.y1f3{bottom:40.320000pt;}
.y1f2{bottom:40.800000pt;}
.ye{bottom:41.600000pt;}
.y15{bottom:47.520000pt;}
.yc{bottom:50.400000pt;}
.y119{bottom:99.360000pt;}
.y23b{bottom:100.800000pt;}
.y72{bottom:101.760000pt;}
.y197{bottom:103.680000pt;}
.y22f{bottom:105.920000pt;}
.y204{bottom:106.720000pt;}
.y85{bottom:108.800000pt;}
.yf7{bottom:109.280000pt;}
.y13a{bottom:110.240000pt;}
.yd6{bottom:110.720000pt;}
.y18c{bottom:113.280000pt;}
.y42{bottom:117.280000pt;}
.ya1{bottom:117.600000pt;}
.y23a{bottom:119.200000pt;}
.y71{bottom:120.160000pt;}
.y22e{bottom:124.320000pt;}
.y107{bottom:127.200000pt;}
.yf6{bottom:127.680000pt;}
.y139{bottom:128.640000pt;}
.yd5{bottom:129.440000pt;}
.y18b{bottom:131.680000pt;}
.y16d{bottom:134.880000pt;}
.y1e9{bottom:135.520000pt;}
.y41{bottom:135.680000pt;}
.y1cb{bottom:135.840000pt;}
.ya0{bottom:136.320000pt;}
.yde{bottom:137.600000pt;}
.y70{bottom:138.560000pt;}
.y106{bottom:141.760000pt;}
.y22d{bottom:142.720000pt;}
.y138{bottom:143.040000pt;}
.y158{bottom:144.160000pt;}
.yf5{bottom:146.080000pt;}
.yd4{bottom:147.840000pt;}
.y149{bottom:148.320000pt;}
.y18a{bottom:150.080000pt;}
.y123{bottom:151.360000pt;}
.y16c{bottom:153.280000pt;}
.y40{bottom:154.080000pt;}
.y1ca{bottom:154.240000pt;}
.y9f{bottom:154.560000pt;}
.y203{bottom:155.360000pt;}
.y239{bottom:156.000000pt;}
.ydd{bottom:156.480000pt;}
.y6f{bottom:156.960000pt;}
.y22c{bottom:161.120000pt;}
.y157{bottom:162.560000pt;}
.yf4{bottom:164.480000pt;}
.yd3{bottom:166.240000pt;}
.y148{bottom:166.720000pt;}
.y189{bottom:168.480000pt;}
.y16b{bottom:171.520000pt;}
.y3f{bottom:172.480000pt;}
.y1c9{bottom:172.640000pt;}
.y9e{bottom:173.440000pt;}
.y238{bottom:174.400000pt;}
.ydc{bottom:174.880000pt;}
.y6e{bottom:175.360000pt;}
.y1b0{bottom:176.000000pt;}
.y22b{bottom:179.520000pt;}
.y156{bottom:180.960000pt;}
.y147{bottom:181.120000pt;}
.yf3{bottom:182.906667pt;}
.y1e6{bottom:184.200000pt;}
.yd2{bottom:184.666667pt;}
.y188{bottom:186.586667pt;}
.yb8{bottom:186.746667pt;}
.y9d{bottom:187.866667pt;}
.y16a{bottom:190.106667pt;}
.y3e{bottom:190.906667pt;}
.y1c8{bottom:191.066667pt;}
.y237{bottom:192.826667pt;}
.ydb{bottom:193.306667pt;}
.y6d{bottom:193.786667pt;}
.y22a{bottom:197.946667pt;}
.y155{bottom:199.706667pt;}
.yf2{bottom:201.306667pt;}
.yd1{bottom:203.066667pt;}
.y187{bottom:204.986667pt;}
.yb7{bottom:205.146667pt;}
.y196{bottom:207.066667pt;}
.y200{bottom:207.560000pt;}
.yda{bottom:207.706667pt;}
.y169{bottom:208.506667pt;}
.y1c7{bottom:209.146667pt;}
.y3d{bottom:209.306667pt;}
.y236{bottom:211.226667pt;}
.y137{bottom:211.386667pt;}
.y230{bottom:211.866667pt;}
.y118{bottom:212.026667pt;}
.y6c{bottom:212.186667pt;}
.y229{bottom:216.346667pt;}
.y154{bottom:218.426667pt;}
.yf1{bottom:219.386667pt;}
.yd0{bottom:221.466667pt;}
.yb6{bottom:223.226667pt;}
.y186{bottom:223.706667pt;}
.y1af{bottom:224.680000pt;}
.y117{bottom:226.586667pt;}
.y168{bottom:227.226667pt;}
.y1c6{bottom:227.546667pt;}
.y3c{bottom:227.706667pt;}
.y235{bottom:229.626667pt;}
.y136{bottom:229.786667pt;}
.y84{bottom:230.266667pt;}
.y6b{bottom:230.586667pt;}
.y1e5{bottom:231.386667pt;}
.y153{bottom:233.306667pt;}
.y228{bottom:234.746667pt;}
.ycf{bottom:235.866667pt;}
.yf0{bottom:237.786667pt;}
.yb5{bottom:241.946667pt;}
.y185{bottom:242.106667pt;}
.y9c{bottom:242.906667pt;}
.y167{bottom:245.626667pt;}
.y3b{bottom:246.106667pt;}
.y1c5{bottom:246.266667pt;}
.y122{bottom:247.226667pt;}
.y234{bottom:248.026667pt;}
.y135{bottom:248.186667pt;}
.y83{bottom:248.666667pt;}
.y6a{bottom:248.986667pt;}
.y1e4{bottom:249.626667pt;}
.y105{bottom:251.546667pt;}
.y227{bottom:253.146667pt;}
.yef{bottom:256.506667pt;}
.y1fd{bottom:259.560000pt;}
.yb4{bottom:260.346667pt;}
.y184{bottom:260.506667pt;}
.y121{bottom:261.626667pt;}
.y166{bottom:263.706667pt;}
.y3a{bottom:264.506667pt;}
.y134{bottom:266.426667pt;}
.y82{bottom:267.066667pt;}
.y69{bottom:267.386667pt;}
.y1e3{bottom:268.346667pt;}
.y1c4{bottom:269.320000pt;}
.y226{bottom:271.546667pt;}
.y1ae{bottom:273.320000pt;}
.yee{bottom:274.906667pt;}
.yb3{bottom:278.426667pt;}
.y183{bottom:278.906667pt;}
.y165{bottom:282.106667pt;}
.y39{bottom:282.906667pt;}
.y233{bottom:284.826667pt;}
.y133{bottom:285.306667pt;}
.y7a{bottom:285.466667pt;}
.y68{bottom:285.786667pt;}
.y1e2{bottom:286.746667pt;}
.y225{bottom:289.946667pt;}
.yed{bottom:293.306667pt;}
.y9b{bottom:296.826667pt;}
.y182{bottom:297.306667pt;}
.y164{bottom:300.826667pt;}
.y38{bottom:301.306667pt;}
.y232{bottom:302.746667pt;}
.y132{bottom:303.706667pt;}
.y79{bottom:303.866667pt;}
.y67{bottom:304.186667pt;}
.y1e1{bottom:305.146667pt;}
.y224{bottom:308.346667pt;}
.y9a{bottom:311.386667pt;}
.yec{bottom:311.706667pt;}
.y146{bottom:314.426667pt;}
.yb2{bottom:315.546667pt;}
.y181{bottom:315.706667pt;}
.y1c3{bottom:317.960000pt;}
.y131{bottom:318.266667pt;}
.y163{bottom:319.226667pt;}
.y37{bottom:319.706667pt;}
.y1ac{bottom:321.960000pt;}
.y66{bottom:322.586667pt;}
.y1fc{bottom:323.546667pt;}
.yd9{bottom:324.506667pt;}
.y223{bottom:326.746667pt;}
.y1e0{bottom:328.200000pt;}
.y195{bottom:328.826667pt;}
.y116{bottom:328.986667pt;}
.yeb{bottom:330.106667pt;}
.y145{bottom:332.826667pt;}
.y162{bottom:333.626667pt;}
.y180{bottom:333.786667pt;}
.yb1{bottom:333.946667pt;}
.y36{bottom:338.106667pt;}
.yd8{bottom:339.066667pt;}
.y77{bottom:340.666667pt;}
.y65{bottom:340.986667pt;}
.y1fb{bottom:341.946667pt;}
.yce{bottom:342.586667pt;}
.y222{bottom:345.146667pt;}
.y194{bottom:346.906667pt;}
.y115{bottom:347.386667pt;}
.yea{bottom:348.506667pt;}
.y104{bottom:349.306667pt;}
.y17f{bottom:352.186667pt;}
.yb0{bottom:352.346667pt;}
.y35{bottom:356.506667pt;}
.y120{bottom:358.426667pt;}
.y7e{bottom:359.066667pt;}
.y64{bottom:359.386667pt;}
.y1fa{bottom:360.826667pt;}
.ycd{bottom:360.986667pt;}
.y99{bottom:362.106667pt;}
.ye9{bottom:362.906667pt;}
.y221{bottom:363.546667pt;}
.y193{bottom:365.306667pt;}
.y114{bottom:365.786667pt;}
.y1c2{bottom:366.600000pt;}
.y103{bottom:367.706667pt;}
.y1aa{bottom:370.600000pt;}
.yaf{bottom:370.746667pt;}
.y17e{bottom:370.906667pt;}
.y34{bottom:374.906667pt;}
.y1de{bottom:376.840000pt;}
.y7d{bottom:377.466667pt;}
.y63{bottom:377.786667pt;}
.y1f9{bottom:378.906667pt;}
.ycc{bottom:379.066667pt;}
.y98{bottom:380.986667pt;}
.y220{bottom:381.946667pt;}
.y102{bottom:382.266667pt;}
.y113{bottom:383.866667pt;}
.y192{bottom:384.026667pt;}
.yae{bottom:385.146667pt;}
.y17d{bottom:389.146667pt;}
.y33{bottom:393.346667pt;}
.y62{bottom:396.226667pt;}
.y1f8{bottom:397.346667pt;}
.ycb{bottom:397.506667pt;}
.y97{bottom:399.426667pt;}
.y21f{bottom:400.386667pt;}
.y112{bottom:402.306667pt;}
.y191{bottom:402.466667pt;}
.y17c{bottom:408.066667pt;}
.y32{bottom:411.746667pt;}
.y61{bottom:414.626667pt;}
.y1c1{bottom:415.266667pt;}
.y1f7{bottom:416.066667pt;}
.yca{bottom:416.226667pt;}
.y190{bottom:417.026667pt;}
.y96{bottom:417.826667pt;}
.y21e{bottom:418.786667pt;}
.y1a8{bottom:419.266667pt;}
.y111{bottom:421.026667pt;}
.y1dd{bottom:425.506667pt;}
.y17b{bottom:426.466667pt;}
.y31{bottom:430.146667pt;}
.y60{bottom:433.026667pt;}
.yc9{bottom:434.626667pt;}
.y95{bottom:436.226667pt;}
.y21d{bottom:437.186667pt;}
.y1f6{bottom:439.106667pt;}
.y110{bottom:439.426667pt;}
.y17a{bottom:444.866667pt;}
.y30{bottom:448.546667pt;}
.y5f{bottom:451.426667pt;}
.y152{bottom:452.546667pt;}
.y144{bottom:452.866667pt;}
.yc8{bottom:453.026667pt;}
.y130{bottom:453.826667pt;}
.y94{bottom:454.626667pt;}
.y21c{bottom:455.586667pt;}
.y10f{bottom:457.826667pt;}
.y43{bottom:460.546667pt;}
.y161{bottom:462.306667pt;}
.y179{bottom:463.266667pt;}
.y1c0{bottom:463.906667pt;}
.y2f{bottom:466.946667pt;}
.ye8{bottom:468.066667pt;}
.y11f{bottom:468.546667pt;}
.y81{bottom:469.346667pt;}
.y5e{bottom:469.666667pt;}
.y151{bottom:470.786667pt;}
.y143{bottom:471.266667pt;}
.yc7{bottom:471.426667pt;}
.y93{bottom:473.026667pt;}
.y21b{bottom:473.986667pt;}
.y1dc{bottom:474.306667pt;}
.y10e{bottom:476.226667pt;}
.y160{bottom:480.706667pt;}
.y178{bottom:481.666667pt;}
.ye7{bottom:482.626667pt;}
.y2e{bottom:485.346667pt;}
.y11e{bottom:487.266667pt;}
.y80{bottom:487.746667pt;}
.y5d{bottom:488.066667pt;}
.y142{bottom:489.346667pt;}
.yc6{bottom:489.666667pt;}
.y10d{bottom:490.626667pt;}
.y92{bottom:491.426667pt;}
.y21a{bottom:492.386667pt;}
.yad{bottom:493.186667pt;}
.y15f{bottom:499.106667pt;}
.y177{bottom:500.066667pt;}
.y91{bottom:505.826667pt;}
.y11d{bottom:505.986667pt;}
.y5c{bottom:506.466667pt;}
.y101{bottom:506.626667pt;}
.y150{bottom:507.746667pt;}
.y141{bottom:508.066667pt;}
.y219{bottom:510.786667pt;}
.yac{bottom:511.586667pt;}
.y2d{bottom:512.706667pt;}
.y176{bottom:514.626667pt;}
.y1a5{bottom:515.106667pt;}
.y15e{bottom:517.506667pt;}
.y100{bottom:521.186667pt;}
.y140{bottom:522.626667pt;}
.y1db{bottom:522.946667pt;}
.y11c{bottom:524.546667pt;}
.y5b{bottom:524.866667pt;}
.y14f{bottom:526.466667pt;}
.y218{bottom:529.186667pt;}
.yab{bottom:529.666667pt;}
.y15d{bottom:531.906667pt;}
.y1a4{bottom:533.346667pt;}
.y1f5{bottom:536.386667pt;}
.y2c{bottom:540.386667pt;}
.y11b{bottom:542.946667pt;}
.y5a{bottom:543.266667pt;}
.y12f{bottom:543.746667pt;}
.y14e{bottom:544.866667pt;}
.y217{bottom:547.586667pt;}
.yaa{bottom:548.066667pt;}
.y1a3{bottom:552.066667pt;}
.y2b{bottom:558.946667pt;}
.y11a{bottom:561.346667pt;}
.y59{bottom:561.666667pt;}
.y12e{bottom:562.146667pt;}
.y14d{bottom:563.266667pt;}
.y216{bottom:565.986667pt;}
.y90{bottom:566.786667pt;}
.y1a2{bottom:570.466667pt;}
.y1da{bottom:570.626667pt;}
.y2a{bottom:577.026667pt;}
.y14c{bottom:577.666667pt;}
.y58{bottom:580.066667pt;}
.y12d{bottom:580.546667pt;}
.y215{bottom:584.226667pt;}
.y1f4{bottom:585.026667pt;}
.ya9{bottom:585.186667pt;}
.y1a1{bottom:588.866667pt;}
.y1d9{bottom:589.186667pt;}
.y29{bottom:595.426667pt;}
.y57{bottom:598.466667pt;}
.y12c{bottom:599.106667pt;}
.yc5{bottom:599.906667pt;}
.y214{bottom:602.653333pt;}
.y175{bottom:603.453333pt;}
.ya8{bottom:603.613333pt;}
.y1a0{bottom:607.133333pt;}
.y1d8{bottom:607.933333pt;}
.y10c{bottom:609.693333pt;}
.y1bf{bottom:610.013333pt;}
.ye6{bottom:610.813333pt;}
.y28{bottom:614.173333pt;}
.y18f{bottom:616.413333pt;}
.y56{bottom:616.893333pt;}
.y12b{bottom:617.853333pt;}
.yc4{bottom:618.333333pt;}
.y8f{bottom:618.813333pt;}
.y213{bottom:621.053333pt;}
.y174{bottom:621.853333pt;}
.ya7{bottom:622.013333pt;}
.yff{bottom:624.413333pt;}
.y19f{bottom:626.013333pt;}
.y1d7{bottom:626.653333pt;}
.y10b{bottom:628.093333pt;}
.ye5{bottom:629.213333pt;}
.y13f{bottom:632.413333pt;}
.y27{bottom:632.573333pt;}
.y1f1{bottom:633.693333pt;}
.y18e{bottom:634.973333pt;}
.y55{bottom:635.293333pt;}
.y12a{bottom:636.253333pt;}
.ya6{bottom:636.413333pt;}
.yc3{bottom:636.733333pt;}
.y8e{bottom:637.213333pt;}
.y212{bottom:639.453333pt;}
.y173{bottom:639.933333pt;}
.yfe{bottom:642.813333pt;}
.y19e{bottom:644.093333pt;}
.y1d6{bottom:645.213333pt;}
.y10a{bottom:646.493333pt;}
.ye4{bottom:647.613333pt;}
.y26{bottom:650.653333pt;}
.y54{bottom:653.693333pt;}
.y129{bottom:654.653333pt;}
.yc2{bottom:655.133333pt;}
.y8d{bottom:655.293333pt;}
.y211{bottom:657.533333pt;}
.y172{bottom:658.333333pt;}
.y1be{bottom:658.653333pt;}
.yfd{bottom:660.893333pt;}
.y109{bottom:661.053333pt;}
.ye3{bottom:662.173333pt;}
.y19d{bottom:662.493333pt;}
.y1d5{bottom:663.613333pt;}
.y25{bottom:669.053333pt;}
.yd7{bottom:671.773333pt;}
.y53{bottom:672.093333pt;}
.y128{bottom:673.053333pt;}
.yc1{bottom:673.533333pt;}
.y8c{bottom:673.693333pt;}
.y210{bottom:675.933333pt;}
.y171{bottom:677.053333pt;}
.yfc{bottom:679.293333pt;}
.y19c{bottom:681.213333pt;}
.y1d4{bottom:682.333333pt;}
.y24{bottom:687.773333pt;}
.y7c{bottom:690.173333pt;}
.y52{bottom:690.493333pt;}
.y127{bottom:691.453333pt;}
.yc0{bottom:691.933333pt;}
.y8b{bottom:692.253333pt;}
.y20f{bottom:694.333333pt;}
.y170{bottom:695.453333pt;}
.yfb{bottom:698.013333pt;}
.y19b{bottom:699.613333pt;}
.y1f0{bottom:701.533333pt;}
.y1d3{bottom:705.533333pt;}
.y126{bottom:705.853333pt;}
.y23{bottom:706.173333pt;}
.y1ba{bottom:707.293333pt;}
.y7b{bottom:708.573333pt;}
.y51{bottom:708.893333pt;}
.ybf{bottom:710.333333pt;}
.y8a{bottom:711.133333pt;}
.y20e{bottom:713.053333pt;}
.y16f{bottom:713.853333pt;}
.y19a{bottom:714.173333pt;}
.yfa{bottom:716.413333pt;}
.y1ef{bottom:719.933333pt;}
.y15c{bottom:722.813333pt;}
.y22{bottom:724.253333pt;}
.y50{bottom:727.293333pt;}
.ybe{bottom:728.733333pt;}
.y13e{bottom:729.533333pt;}
.y89{bottom:730.013333pt;}
.yf9{bottom:730.813333pt;}
.y20d{bottom:731.453333pt;}
.y16e{bottom:732.093333pt;}
.y1ee{bottom:738.333333pt;}
.y15b{bottom:741.053333pt;}
.y21{bottom:742.653333pt;}
.y18d{bottom:745.373333pt;}
.y4f{bottom:745.693333pt;}
.ybd{bottom:747.133333pt;}
.y13d{bottom:747.773333pt;}
.y88{bottom:748.413333pt;}
.y20c{bottom:749.853333pt;}
.y1d2{bottom:754.173333pt;}
.y1b9{bottom:756.413333pt;}
.y1ed{bottom:756.733333pt;}
.ya5{bottom:757.373333pt;}
.y15a{bottom:759.933333pt;}
.y20{bottom:761.373333pt;}
.y13c{bottom:762.813333pt;}
.y231{bottom:763.773333pt;}
.y4e{bottom:764.093333pt;}
.ybc{bottom:765.533333pt;}
.y87{bottom:766.813333pt;}
.y20b{bottom:768.253333pt;}
.ya4{bottom:772.253333pt;}
.y159{bottom:774.493333pt;}
.y1b8{bottom:774.813333pt;}
.y1ec{bottom:775.133333pt;}
.y1f{bottom:779.773333pt;}
.y86{bottom:781.213333pt;}
.y4d{bottom:782.173333pt;}
.y75{bottom:782.493333pt;}
.ybb{bottom:783.933333pt;}
.y20a{bottom:786.653333pt;}
.ye2{bottom:788.573333pt;}
.y14b{bottom:792.413333pt;}
.y1eb{bottom:793.213333pt;}
.y1b7{bottom:793.533333pt;}
.y1e{bottom:797.853333pt;}
.y4c{bottom:800.573333pt;}
.y74{bottom:800.893333pt;}
.yba{bottom:802.333333pt;}
.y1d0{bottom:802.813333pt;}
.y209{bottom:805.533333pt;}
.y14a{bottom:806.813333pt;}
.ye1{bottom:806.973333pt;}
.y1ea{bottom:811.653333pt;}
.y1b6{bottom:811.973333pt;}
.yf8{bottom:815.813333pt;}
.y1d{bottom:816.293333pt;}
.yb9{bottom:816.773333pt;}
.y76{bottom:819.013333pt;}
.y4b{bottom:819.333333pt;}
.y199{bottom:821.893333pt;}
.y208{bottom:823.653333pt;}
.ye0{bottom:825.413333pt;}
.y1b5{bottom:830.373333pt;}
.y125{bottom:834.533333pt;}
.y1c{bottom:835.013333pt;}
.y198{bottom:836.293333pt;}
.y78{bottom:837.413333pt;}
.y4a{bottom:837.733333pt;}
.ydf{bottom:839.813333pt;}
.y207{bottom:842.053333pt;}
.y124{bottom:849.413333pt;}
.y1cf{bottom:851.493333pt;}
.y1b{bottom:853.413333pt;}
.y1b4{bottom:853.573333pt;}
.y7f{bottom:855.813333pt;}
.y49{bottom:856.133333pt;}
.y206{bottom:860.773333pt;}
.y1a{bottom:871.493333pt;}
.ya3{bottom:874.053333pt;}
.y108{bottom:874.213333pt;}
.y48{bottom:874.533333pt;}
.y205{bottom:879.173333pt;}
.y19{bottom:889.733333pt;}
.y47{bottom:892.613333pt;}
.y73{bottom:892.933333pt;}
.y1cc{bottom:900.133333pt;}
.y1b2{bottom:902.213333pt;}
.y18{bottom:905.413333pt;}
.y13b{bottom:911.013333pt;}
.y46{bottom:911.333333pt;}
.y17{bottom:926.853333pt;}
.ya2{bottom:929.413333pt;}
.y45{bottom:929.733333pt;}
.yd{bottom:939.333333pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.564728pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.813333pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.909749pt;}
.hc{height:14.398667pt;}
.hb{height:26.386667pt;}
.h7{height:28.401875pt;}
.h1b{height:33.266667pt;}
.h28{height:33.278667pt;}
.h1f{height:33.280000pt;}
.h20{height:33.298667pt;}
.h22{height:33.300000pt;}
.h1c{height:33.312000pt;}
.h19{height:33.426667pt;}
.h1d{height:33.438667pt;}
.h1a{height:33.458667pt;}
.h24{height:33.466667pt;}
.h6{height:34.886250pt;}
.h18{height:35.186667pt;}
.h21{height:35.346667pt;}
.hf{height:35.975313pt;}
.h4{height:36.468750pt;}
.hd{height:36.703125pt;}
.h26{height:36.786667pt;}
.h1e{height:36.800000pt;}
.h27{height:36.832000pt;}
.h2{height:37.868750pt;}
.h14{height:44.146667pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.672465pt;}
.h25{height:51.346667pt;}
.h5{height:52.306667pt;}
.h23{height:55.200000pt;}
.h16{height:58.218750pt;}
.h15{height:59.340000pt;}
.h11{height:62.812500pt;}
.h12{height:64.500000pt;}
.h17{height:66.750000pt;}
.h13{height:71.524375pt;}
.h10{height:72.655000pt;}
.he{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:29.426667pt;}
.w1e{width:34.070667pt;}
.w13{width:37.270667pt;}
.w1b{width:37.298667pt;}
.wc{width:37.426667pt;}
.w7{width:41.270667pt;}
.wb{width:48.306667pt;}
.w12{width:48.320000pt;}
.we{width:48.352000pt;}
.w14{width:53.426667pt;}
.w9{width:53.440000pt;}
.wd{width:53.458667pt;}
.w5{width:56.032000pt;}
.w10{width:61.458667pt;}
.w11{width:65.270667pt;}
.w19{width:68.310667pt;}
.w1c{width:79.360000pt;}
.w16{width:81.312000pt;}
.w8{width:85.458667pt;}
.w18{width:86.386667pt;}
.wa{width:90.400000pt;}
.w1d{width:90.432000pt;}
.w1f{width:92.018667pt;}
.w3{width:92.397221pt;}
.wf{width:105.270667pt;}
.w20{width:105.280000pt;}
.w21{width:108.992000pt;}
.w15{width:113.458667pt;}
.w22{width:134.413333pt;}
.w23{width:137.306667pt;}
.w17{width:166.413333pt;}
.w6{width:177.626667pt;}
.w2{width:293.985333pt;}
.w4{width:359.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:5.590667pt;}
.x5{left:9.598667pt;}
.x9{left:13.426667pt;}
.xe{left:42.560000pt;}
.x4{left:52.641333pt;}
.xf{left:54.720000pt;}
.x6{left:66.234834pt;}
.x10{left:75.520000pt;}
.x11{left:86.906667pt;}
.x12{left:99.066667pt;}
.x13{left:111.386667pt;}
.x42{left:114.441333pt;}
.x3{left:120.032000pt;}
.x14{left:123.706667pt;}
.xb{left:131.712000pt;}
.x15{left:135.226667pt;}
.x22{left:144.026667pt;}
.x57{left:150.440000pt;}
.x4f{left:153.640000pt;}
.x44{left:157.640000pt;}
.x23{left:168.026667pt;}
.x7{left:177.038834pt;}
.x1{left:181.466667pt;}
.x53{left:184.680000pt;}
.x48{left:197.000000pt;}
.x50{left:209.000000pt;}
.x54{left:216.040000pt;}
.x4b{left:221.640000pt;}
.x45{left:245.026667pt;}
.x49{left:252.386667pt;}
.x55{left:255.426667pt;}
.x4c{left:285.026667pt;}
.x46{left:300.386667pt;}
.xd{left:306.946667pt;}
.xc{left:308.066667pt;}
.x51{left:324.386667pt;}
.x4e{left:337.346667pt;}
.x4a{left:344.706667pt;}
.x58{left:351.586667pt;}
.xa{left:368.866667pt;}
.x4d{left:377.346667pt;}
.x47{left:392.746667pt;}
.x1a{left:395.293333pt;}
.x1b{left:398.173333pt;}
.x52{left:407.786667pt;}
.x1c{left:413.373333pt;}
.x2{left:422.493333pt;}
.x56{left:429.066667pt;}
.x8{left:433.226667pt;}
.x19{left:454.013333pt;}
.x18{left:455.133333pt;}
.x59{left:462.666667pt;}
.x21{left:501.533333pt;}
.x17{left:514.013333pt;}
.x30{left:516.573333pt;}
.x33{left:538.493333pt;}
.x34{left:551.493333pt;}
.x24{left:556.453333pt;}
.x31{left:558.533333pt;}
.x32{left:560.453333pt;}
.x2d{left:562.533333pt;}
.x36{left:567.493333pt;}
.x37{left:570.213333pt;}
.x20{left:574.533333pt;}
.x1e{left:576.453333pt;}
.x39{left:582.533333pt;}
.x2f{left:583.653333pt;}
.x3a{left:592.453333pt;}
.x2e{left:593.573333pt;}
.x16{left:599.653333pt;}
.x2b{left:605.093333pt;}
.x1d{left:609.573333pt;}
.x26{left:613.573333pt;}
.x3b{left:616.453333pt;}
.x27{left:620.453333pt;}
.x25{left:625.253333pt;}
.x3e{left:630.533333pt;}
.x41{left:632.453333pt;}
.x3c{left:634.533333pt;}
.x40{left:637.573333pt;}
.x3f{left:641.093333pt;}
.x1f{left:643.493333pt;}
.x38{left:648.453333pt;}
.x28{left:650.533333pt;}
.x2a{left:654.533333pt;}
.x3d{left:655.493333pt;}
.x35{left:660.293333pt;}
.x2c{left:688.453333pt;}
.x29{left:744.160000pt;}
}




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