
    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_4ef5024596d138281c94e73d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5de46f7ee1216df9eb837414.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.896973;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_e0908dbb53197b83bcb1aed6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_b0d49a911708b22783e7ea4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074219;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_c9617818dec60df487134b40.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_542182d78b7d0786e5ca885a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_cd9ecff8bf5a6e47cd5aeed7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931641;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_e7412cf9ade97b0c8cf26348.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_c8b644e2d11637ba9b1ff460.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.m1{transform:matrix(0.241377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241377,0.000000,0.000000,0.250000,0,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);}
.v6{vertical-align:-22.800000px;}
.v5{vertical-align:-8.400000px;}
.v2{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.200000px;}
.v1{vertical-align:27.600000px;}
.v3{vertical-align:34.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.132000px;}
.ls17{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.168000px;}
.lsf{letter-spacing:0.216000px;}
.lse{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.456000px;}
.ls14{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.728000px;}
.ls7{letter-spacing:3.300000px;}
.ls6{letter-spacing:3.900000px;}
.lsa{letter-spacing:6.552000px;}
.lsd{letter-spacing:8.400000px;}
.ls3{letter-spacing:10.200000px;}
.ls5{letter-spacing:13.200000px;}
.ls13{letter-spacing:13.800000px;}
.ls4{letter-spacing:16.800000px;}
.ls19{letter-spacing:42.642000px;}
.ls18{letter-spacing:82.440000px;}
.ls2{letter-spacing:173.400000px;}
.ls12{letter-spacing:328.800000px;}
.ls10{letter-spacing:414.000000px;}
.ls11{letter-spacing:900.600000px;}
.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:-18.000000px;}
.ws6{word-spacing:-16.620000px;}
.ws5{word-spacing:-10.500000px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:37.200000px;}
.ws15{word-spacing:38.376000px;}
.wsf{word-spacing:45.672000px;}
.ws13{word-spacing:55.200000px;}
.ws10{word-spacing:97.152000px;}
.wsc{word-spacing:117.672000px;}
.wse{word-spacing:129.792000px;}
.ws3{word-spacing:137.400000px;}
.ws4{word-spacing:138.576000px;}
.ws11{word-spacing:142.320000px;}
.wsd{word-spacing:152.472000px;}
.ws8{word-spacing:222.528000px;}
.wsb{word-spacing:246.600000px;}
.wsa{word-spacing:282.600000px;}
.ws9{word-spacing:354.600000px;}
.ws7{word-spacing:405.600000px;}
.ws12{word-spacing:472.872000px;}
.ws17{word-spacing:1038.000000px;}
.ws16{word-spacing:1166.400000px;}
.ws2{word-spacing:1768.320000px;}
._89{margin-left:-18.600000px;}
._49{margin-left:-10.152000px;}
._7{margin-left:-8.424000px;}
._12{margin-left:-7.416000px;}
._c{margin-left:-6.120000px;}
._8{margin-left:-4.896000px;}
._6{margin-left:-3.456000px;}
._b{margin-left:-2.016000px;}
._3{margin-left:-1.008000px;}
._2{width:1.032000px;}
._9{width:2.232000px;}
._a{width:3.384000px;}
._1a{width:5.040000px;}
._11{width:6.528000px;}
._e{width:7.584000px;}
._d{width:9.072000px;}
._16{width:10.152000px;}
._10{width:11.736000px;}
._f{width:13.032000px;}
._18{width:14.904000px;}
._19{width:15.960000px;}
._35{width:16.992000px;}
._34{width:19.080000px;}
._31{width:20.304000px;}
._39{width:21.408000px;}
._4{width:22.536000px;}
._5{width:23.760000px;}
._0{width:25.344000px;}
._1{width:26.352000px;}
._30{width:28.152000px;}
._75{width:29.688000px;}
._2f{width:31.008000px;}
._2e{width:32.328000px;}
._37{width:34.056000px;}
._3c{width:35.136000px;}
._13{width:36.216000px;}
._8a{width:37.440000px;}
._3a{width:38.592000px;}
._60{width:39.816000px;}
._38{width:41.760000px;}
._70{width:42.984000px;}
._54{width:45.360000px;}
._48{width:46.872000px;}
._4c{width:48.528000px;}
._6c{width:49.752000px;}
._9b{width:50.952000px;}
._8f{width:52.416000px;}
._33{width:53.496000px;}
._72{width:54.864000px;}
._71{width:56.016000px;}
._6d{width:58.824000px;}
._6e{width:59.832000px;}
._52{width:63.696000px;}
._90{width:64.920000px;}
._36{width:67.032000px;}
._9d{width:68.040000px;}
._99{width:71.064000px;}
._98{width:72.216000px;}
._3b{width:76.872000px;}
._91{width:78.696000px;}
._6b{width:79.704000px;}
._50{width:82.728000px;}
._8e{width:84.312000px;}
._6f{width:87.840000px;}
._97{width:89.208000px;}
._8c{width:90.336000px;}
._8b{width:91.992000px;}
._65{width:99.744000px;}
._9c{width:101.256000px;}
._23{width:106.440000px;}
._73{width:108.504000px;}
._74{width:109.536000px;}
._5f{width:114.912000px;}
._64{width:134.016000px;}
._62{width:139.200000px;}
._32{width:142.320000px;}
._9a{width:143.976000px;}
._2c{width:146.064000px;}
._5d{width:149.328000px;}
._29{width:155.400000px;}
._92{width:158.424000px;}
._66{width:166.200000px;}
._69{width:167.616000px;}
._61{width:171.120000px;}
._67{width:172.248000px;}
._22{width:173.400000px;}
._96{width:176.616000px;}
._3d{width:180.192000px;}
._94{width:188.928000px;}
._95{width:189.936000px;}
._17{width:198.000000px;}
._2a{width:204.288000px;}
._63{width:207.744000px;}
._4a{width:217.560000px;}
._41{width:221.664000px;}
._4f{width:227.112000px;}
._4d{width:241.656000px;}
._14{width:252.936000px;}
._3e{width:254.856000px;}
._15{width:259.536000px;}
._46{width:261.696000px;}
._5a{width:262.800000px;}
._76{width:274.152000px;}
._2b{width:275.184000px;}
._6a{width:279.360000px;}
._43{width:293.664000px;}
._44{width:296.520000px;}
._5e{width:300.600000px;}
._47{width:336.696000px;}
._68{width:337.896000px;}
._5b{width:354.600000px;}
._5c{width:372.600000px;}
._93{width:378.312000px;}
._53{width:399.624000px;}
._51{width:417.624000px;}
._79{width:438.984000px;}
._3f{width:441.624000px;}
._42{width:456.504000px;}
._24{width:471.912000px;}
._59{width:495.240000px;}
._4b{width:513.576000px;}
._55{width:516.288000px;}
._4e{width:544.920000px;}
._58{width:550.296000px;}
._45{width:568.248000px;}
._57{width:569.328000px;}
._7a{width:660.576000px;}
._40{width:668.184000px;}
._26{width:708.264000px;}
._78{width:724.728000px;}
._28{width:729.168000px;}
._7f{width:752.520000px;}
._7e{width:768.504000px;}
._27{width:791.232000px;}
._1f{width:798.168000px;}
._25{width:799.512000px;}
._2d{width:811.056000px;}
._7c{width:856.416000px;}
._8d{width:934.704000px;}
._77{width:968.160000px;}
._80{width:1012.728000px;}
._7d{width:1024.536000px;}
._56{width:1031.520000px;}
._21{width:1126.104000px;}
._81{width:1140.744000px;}
._85{width:1160.712000px;}
._20{width:1202.640000px;}
._83{width:1228.728000px;}
._1c{width:1275.816000px;}
._82{width:1280.568000px;}
._1d{width:1361.808000px;}
._88{width:1364.376000px;}
._87{width:1366.584000px;}
._7b{width:1372.440000px;}
._84{width:1384.464000px;}
._86{width:1500.240000px;}
._1b{width:1514.712000px;}
._1e{width:1564.632000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:88.200000px;}
.yc7{bottom:132.000000px;}
.ybc{bottom:132.150000px;}
.yd5{bottom:133.200000px;}
.y14e{bottom:133.950000px;}
.ye0{bottom:135.750000px;}
.y136{bottom:136.050000px;}
.y130{bottom:136.350000px;}
.y113{bottom:136.650000px;}
.y1b6{bottom:138.450000px;}
.y1df{bottom:140.400000px;}
.y8a{bottom:140.700000px;}
.y1c5{bottom:141.150000px;}
.yae{bottom:142.500000px;}
.y219{bottom:143.850000px;}
.ya{bottom:144.450000px;}
.y1cb{bottom:144.600000px;}
.ya2{bottom:144.900000px;}
.y179{bottom:146.850000px;}
.yf5{bottom:147.600000px;}
.y122{bottom:148.500000px;}
.y60{bottom:150.750000px;}
.y225{bottom:151.200000px;}
.y19b{bottom:151.950000px;}
.y207{bottom:152.700000px;}
.ya0{bottom:152.850000px;}
.y1a3{bottom:153.600000px;}
.y107{bottom:153.900000px;}
.y78{bottom:155.400000px;}
.y15c{bottom:155.700000px;}
.y46{bottom:157.050000px;}
.ycb{bottom:159.000000px;}
.y1dc{bottom:159.150000px;}
.y1d5{bottom:161.250000px;}
.yc6{bottom:163.050000px;}
.y117{bottom:163.200000px;}
.ye1{bottom:163.800000px;}
.y166{bottom:164.250000px;}
.y135{bottom:165.000000px;}
.y161{bottom:166.950000px;}
.ye8{bottom:167.100000px;}
.y12f{bottom:167.400000px;}
.y112{bottom:167.700000px;}
.y1de{bottom:169.350000px;}
.y1b5{bottom:169.500000px;}
.y89{bottom:169.650000px;}
.y1c4{bottom:172.200000px;}
.yad{bottom:173.550000px;}
.y206{bottom:174.150000px;}
.y218{bottom:174.900000px;}
.yf7{bottom:175.500000px;}
.y178{bottom:177.900000px;}
.yf4{bottom:178.650000px;}
.y121{bottom:179.550000px;}
.yde{bottom:179.700000px;}
.y5f{bottom:181.800000px;}
.y224{bottom:182.250000px;}
.y19a{bottom:183.000000px;}
.y9f{bottom:183.900000px;}
.y77{bottom:184.350000px;}
.y106{bottom:184.950000px;}
.y1ca{bottom:186.000000px;}
.y15b{bottom:186.750000px;}
.y45{bottom:188.100000px;}
.y189{bottom:188.250000px;}
.yca{bottom:190.050000px;}
.ye2{bottom:191.850000px;}
.y1d4{bottom:192.300000px;}
.y134{bottom:193.950000px;}
.yc5{bottom:194.100000px;}
.ybb{bottom:194.250000px;}
.yd4{bottom:195.300000px;}
.y14d{bottom:196.050000px;}
.y160{bottom:198.000000px;}
.y12e{bottom:198.450000px;}
.y88{bottom:198.600000px;}
.y111{bottom:198.750000px;}
.y1dd{bottom:200.400000px;}
.y1b4{bottom:200.550000px;}
.y9{bottom:202.500000px;}
.y1c3{bottom:203.250000px;}
.y233{bottom:203.400000px;}
.yac{bottom:204.600000px;}
.y205{bottom:205.200000px;}
.y217{bottom:205.950000px;}
.yf6{bottom:206.550000px;}
.y177{bottom:208.950000px;}
.yf3{bottom:209.700000px;}
.y120{bottom:210.600000px;}
.ydd{bottom:210.750000px;}
.y5e{bottom:212.850000px;}
.y223{bottom:213.300000px;}
.y199{bottom:214.050000px;}
.y9e{bottom:214.950000px;}
.y76{bottom:215.400000px;}
.y105{bottom:216.000000px;}
.y15a{bottom:217.800000px;}
.y44{bottom:219.150000px;}
.y188{bottom:219.300000px;}
.ye3{bottom:219.900000px;}
.yc9{bottom:221.100000px;}
.y1d3{bottom:223.350000px;}
.yc4{bottom:225.150000px;}
.y116{bottom:225.300000px;}
.y1db{bottom:225.450000px;}
.y1a2{bottom:226.050000px;}
.y14c{bottom:227.100000px;}
.y15f{bottom:229.050000px;}
.y12d{bottom:229.500000px;}
.y87{bottom:229.650000px;}
.y110{bottom:229.800000px;}
.y1f3{bottom:230.100000px;}
.y1b3{bottom:231.600000px;}
.y8{bottom:233.550000px;}
.y1c2{bottom:234.300000px;}
.y232{bottom:234.450000px;}
.yab{bottom:235.650000px;}
.y204{bottom:236.250000px;}
.y216{bottom:237.000000px;}
.y148{bottom:237.600000px;}
.y2a{bottom:239.100000px;}
.y176{bottom:240.000000px;}
.yf2{bottom:240.750000px;}
.y11f{bottom:241.650000px;}
.ydc{bottom:241.800000px;}
.y5d{bottom:243.900000px;}
.y75{bottom:244.350000px;}
.y198{bottom:245.100000px;}
.y9d{bottom:246.000000px;}
.y104{bottom:247.050000px;}
.ye4{bottom:247.950000px;}
.y159{bottom:248.850000px;}
.y43{bottom:250.200000px;}
.y187{bottom:250.350000px;}
.yc8{bottom:252.150000px;}
.y133{bottom:254.250000px;}
.y1d2{bottom:254.400000px;}
.yc3{bottom:256.200000px;}
.y1da{bottom:256.500000px;}
.y1a1{bottom:257.100000px;}
.y86{bottom:258.600000px;}
.y15e{bottom:260.100000px;}
.y12c{bottom:260.550000px;}
.y10f{bottom:260.850000px;}
.y1f2{bottom:261.150000px;}
.y1b2{bottom:262.650000px;}
.y7{bottom:264.600000px;}
.y1c1{bottom:265.350000px;}
.y231{bottom:265.500000px;}
.ycf{bottom:266.550000px;}
.yaa{bottom:266.700000px;}
.y203{bottom:267.300000px;}
.yd3{bottom:267.750000px;}
.y29{bottom:270.150000px;}
.yf1{bottom:271.800000px;}
.y11e{bottom:272.700000px;}
.ydb{bottom:272.850000px;}
.y5c{bottom:274.950000px;}
.y74{bottom:275.400000px;}
.ye5{bottom:276.150000px;}
.y9c{bottom:277.050000px;}
.y103{bottom:278.100000px;}
.y158{bottom:279.900000px;}
.y42{bottom:281.250000px;}
.y186{bottom:281.400000px;}
.y132{bottom:283.200000px;}
.y1c9{bottom:285.300000px;}
.y1d1{bottom:285.450000px;}
.yc2{bottom:287.250000px;}
.y115{bottom:287.400000px;}
.y1a0{bottom:288.150000px;}
.y14b{bottom:289.200000px;}
.y85{bottom:289.650000px;}
.y1f1{bottom:290.100000px;}
.y15d{bottom:291.150000px;}
.y12b{bottom:291.600000px;}
.y10e{bottom:291.900000px;}
.y1b1{bottom:293.700000px;}
.yce{bottom:297.600000px;}
.ya9{bottom:297.750000px;}
.y202{bottom:298.350000px;}
.yd2{bottom:298.800000px;}
.y147{bottom:299.700000px;}
.y28{bottom:301.200000px;}
.yf0{bottom:302.850000px;}
.y11d{bottom:303.750000px;}
.yda{bottom:303.900000px;}
.ye6{bottom:304.200000px;}
.y5b{bottom:306.000000px;}
.y73{bottom:306.450000px;}
.y197{bottom:307.200000px;}
.y9b{bottom:308.100000px;}
.y102{bottom:309.150000px;}
.y157{bottom:310.950000px;}
.y41{bottom:312.300000px;}
.y1d0{bottom:316.500000px;}
.yc1{bottom:318.300000px;}
.y114{bottom:318.450000px;}
.y84{bottom:318.600000px;}
.y1f0{bottom:319.050000px;}
.y19f{bottom:319.200000px;}
.y14a{bottom:320.250000px;}
.y12a{bottom:322.650000px;}
.y10d{bottom:322.950000px;}
.y131{bottom:324.600000px;}
.y1b0{bottom:324.750000px;}
.y1c8{bottom:326.700000px;}
.y1c0{bottom:327.450000px;}
.ycd{bottom:328.650000px;}
.ya8{bottom:328.800000px;}
.y201{bottom:329.400000px;}
.yd1{bottom:329.850000px;}
.y146{bottom:330.750000px;}
.ye7{bottom:332.250000px;}
.yef{bottom:333.900000px;}
.y11c{bottom:334.800000px;}
.yd9{bottom:334.950000px;}
.y72{bottom:335.400000px;}
.y5a{bottom:337.050000px;}
.y196{bottom:338.250000px;}
.y9a{bottom:339.150000px;}
.y1f6{bottom:339.300000px;}
.y101{bottom:340.200000px;}
.y156{bottom:342.000000px;}
.y40{bottom:343.350000px;}
.y1d9{bottom:345.450000px;}
.y27{bottom:347.250000px;}
.y1cf{bottom:347.550000px;}
.y175{bottom:347.700000px;}
.y1ef{bottom:348.000000px;}
.y230{bottom:348.600000px;}
.y83{bottom:349.650000px;}
.y19e{bottom:350.250000px;}
.y149{bottom:351.300000px;}
.y10c{bottom:354.000000px;}
.y1af{bottom:355.800000px;}
.y1bf{bottom:358.500000px;}
.ycc{bottom:359.700000px;}
.ya7{bottom:359.850000px;}
.y200{bottom:360.450000px;}
.yd0{bottom:360.900000px;}
.y145{bottom:361.800000px;}
.yee{bottom:364.950000px;}
.y11b{bottom:365.850000px;}
.y71{bottom:366.450000px;}
.y59{bottom:368.100000px;}
.y195{bottom:369.300000px;}
.y99{bottom:370.200000px;}
.y1f5{bottom:370.350000px;}
.y100{bottom:371.250000px;}
.y3f{bottom:374.400000px;}
.y1d8{bottom:376.500000px;}
.y1ee{bottom:376.950000px;}
.y82{bottom:378.600000px;}
.y185{bottom:378.750000px;}
.yc0{bottom:380.400000px;}
.y19d{bottom:381.300000px;}
.y129{bottom:384.750000px;}
.y10b{bottom:385.050000px;}
.y1ae{bottom:386.850000px;}
.y174{bottom:389.100000px;}
.yba{bottom:390.900000px;}
.y1ff{bottom:391.500000px;}
.y165{bottom:391.950000px;}
.y144{bottom:392.850000px;}
.y70{bottom:395.400000px;}
.y11a{bottom:396.900000px;}
.yd8{bottom:397.050000px;}
.y58{bottom:399.150000px;}
.y6{bottom:399.300000px;}
.y98{bottom:401.250000px;}
.y1f4{bottom:401.400000px;}
.yff{bottom:402.300000px;}
.y3e{bottom:403.350000px;}
.y155{bottom:404.100000px;}
.y1d7{bottom:405.450000px;}
.y1ed{bottom:405.900000px;}
.y194{bottom:406.800000px;}
.y81{bottom:409.650000px;}
.y184{bottom:409.800000px;}
.ybf{bottom:411.450000px;}
.y19c{bottom:412.350000px;}
.y128{bottom:415.800000px;}
.y10a{bottom:416.100000px;}
.y1ad{bottom:417.900000px;}
.y1be{bottom:420.600000px;}
.y22f{bottom:421.200000px;}
.ya6{bottom:421.950000px;}
.y1fe{bottom:422.550000px;}
.y164{bottom:423.000000px;}
.y19{bottom:423.450000px;}
.y143{bottom:423.900000px;}
.y6f{bottom:426.450000px;}
.yed{bottom:427.050000px;}
.y119{bottom:427.950000px;}
.y57{bottom:430.200000px;}
.y173{bottom:430.500000px;}
.y97{bottom:432.300000px;}
.yfe{bottom:433.350000px;}
.y3d{bottom:434.400000px;}
.y1ec{bottom:434.850000px;}
.y94{bottom:436.500000px;}
.y193{bottom:437.850000px;}
.y1c7{bottom:438.450000px;}
.y80{bottom:440.700000px;}
.y5{bottom:440.850000px;}
.ybe{bottom:442.500000px;}
.y26{bottom:445.350000px;}
.y127{bottom:446.850000px;}
.y18{bottom:447.150000px;}
.y1ac{bottom:448.950000px;}
.y1bd{bottom:451.650000px;}
.y22e{bottom:452.250000px;}
.ya5{bottom:453.000000px;}
.y163{bottom:454.050000px;}
.y142{bottom:454.950000px;}
.y6e{bottom:455.400000px;}
.y1f9{bottom:457.950000px;}
.yec{bottom:458.100000px;}
.y118{bottom:459.000000px;}
.y172{bottom:459.450000px;}
.y56{bottom:461.250000px;}
.y96{bottom:463.350000px;}
.y1eb{bottom:463.800000px;}
.yfd{bottom:464.400000px;}
.y3c{bottom:465.450000px;}
.y154{bottom:466.200000px;}
.y93{bottom:467.550000px;}
.y17{bottom:467.850000px;}
.y192{bottom:468.900000px;}
.yd7{bottom:469.500000px;}
.y7f{bottom:469.650000px;}
.y183{bottom:469.800000px;}
.y4{bottom:471.900000px;}
.ybd{bottom:473.550000px;}
.y126{bottom:477.900000px;}
.y109{bottom:478.200000px;}
.y1c6{bottom:479.850000px;}
.y1ab{bottom:480.000000px;}
.y1bc{bottom:482.700000px;}
.y22d{bottom:483.300000px;}
.ya4{bottom:484.050000px;}
.y6d{bottom:484.350000px;}
.y1fd{bottom:484.650000px;}
.y162{bottom:485.100000px;}
.y141{bottom:486.000000px;}
.y1f8{bottom:489.000000px;}
.yeb{bottom:489.150000px;}
.y55{bottom:492.300000px;}
.y1ea{bottom:492.750000px;}
.ya1{bottom:494.400000px;}
.yfc{bottom:495.450000px;}
.y3b{bottom:496.500000px;}
.y153{bottom:497.250000px;}
.y182{bottom:498.750000px;}
.y191{bottom:499.950000px;}
.yd6{bottom:500.550000px;}
.y7e{bottom:500.700000px;}
.y171{bottom:500.850000px;}
.y21a{bottom:506.250000px;}
.y1ce{bottom:507.000000px;}
.y125{bottom:508.950000px;}
.y16{bottom:509.250000px;}
.y1aa{bottom:511.050000px;}
.y6c{bottom:513.300000px;}
.y1bb{bottom:513.750000px;}
.y22c{bottom:514.500000px;}
.yb9{bottom:515.100000px;}
.y140{bottom:517.050000px;}
.y1f7{bottom:520.050000px;}
.yea{bottom:520.200000px;}
.y1e9{bottom:521.700000px;}
.y54{bottom:523.350000px;}
.y25{bottom:525.450000px;}
.yfb{bottom:526.500000px;}
.y3a{bottom:527.550000px;}
.ydf{bottom:527.700000px;}
.y152{bottom:528.300000px;}
.y7d{bottom:529.650000px;}
.y170{bottom:529.800000px;}
.y15{bottom:529.950000px;}
.y190{bottom:531.000000px;}
.y227{bottom:531.600000px;}
.y3{bottom:534.000000px;}
.y1cd{bottom:538.050000px;}
.y226{bottom:538.200000px;}
.y108{bottom:540.300000px;}
.y1a9{bottom:542.100000px;}
.y6b{bottom:542.250000px;}
.y1ba{bottom:544.800000px;}
.ya3{bottom:546.150000px;}
.y1fc{bottom:546.750000px;}
.y13f{bottom:548.100000px;}
.y14{bottom:550.650000px;}
.ye9{bottom:551.250000px;}
.y53{bottom:554.400000px;}
.y215{bottom:555.900000px;}
.y24{bottom:556.500000px;}
.y181{bottom:556.650000px;}
.y39{bottom:558.600000px;}
.y151{bottom:559.350000px;}
.y7c{bottom:560.700000px;}
.y18f{bottom:562.050000px;}
.y2{bottom:565.050000px;}
.y1cc{bottom:569.100000px;}
.y6a{bottom:571.200000px;}
.y13{bottom:571.350000px;}
.y1a8{bottom:573.150000px;}
.y1b9{bottom:575.850000px;}
.yb8{bottom:577.200000px;}
.y1fb{bottom:577.800000px;}
.y13e{bottom:579.150000px;}
.y1e8{bottom:579.600000px;}
.y52{bottom:583.350000px;}
.y1d6{bottom:585.450000px;}
.y180{bottom:585.600000px;}
.y214{bottom:586.950000px;}
.y23{bottom:587.550000px;}
.yfa{bottom:588.600000px;}
.y38{bottom:589.650000px;}
.y150{bottom:590.400000px;}
.y18e{bottom:593.100000px;}
.y1{bottom:596.100000px;}
.y22b{bottom:597.600000px;}
.y69{bottom:600.150000px;}
.y1a7{bottom:604.200000px;}
.y1b8{bottom:606.900000px;}
.yb7{bottom:608.250000px;}
.y1e7{bottom:608.550000px;}
.y1fa{bottom:608.850000px;}
.y13d{bottom:610.200000px;}
.y51{bottom:614.400000px;}
.y17f{bottom:614.550000px;}
.y92{bottom:616.500000px;}
.y213{bottom:618.000000px;}
.y222{bottom:618.300000px;}
.y22{bottom:618.600000px;}
.y37{bottom:620.700000px;}
.y14f{bottom:621.450000px;}
.y18d{bottom:624.150000px;}
.y22a{bottom:628.650000px;}
.y16f{bottom:629.100000px;}
.y68{bottom:631.200000px;}
.y1e6{bottom:637.500000px;}
.y1b7{bottom:637.950000px;}
.y13c{bottom:641.250000px;}
.y17e{bottom:643.500000px;}
.y50{bottom:645.450000px;}
.y91{bottom:647.550000px;}
.y212{bottom:649.050000px;}
.y221{bottom:649.350000px;}
.y95{bottom:649.650000px;}
.y36{bottom:651.750000px;}
.y18c{bottom:655.200000px;}
.y16e{bottom:658.050000px;}
.y229{bottom:659.700000px;}
.y67{bottom:660.150000px;}
.yf9{bottom:661.050000px;}
.y1e5{bottom:666.450000px;}
.yb6{bottom:670.350000px;}
.y1a6{bottom:670.500000px;}
.y13b{bottom:672.300000px;}
.y17d{bottom:672.450000px;}
.y4f{bottom:676.500000px;}
.y211{bottom:680.250000px;}
.y220{bottom:680.400000px;}
.y21{bottom:680.700000px;}
.y35{bottom:682.800000px;}
.y18b{bottom:686.250000px;}
.y16d{bottom:687.000000px;}
.y228{bottom:690.750000px;}
.y66{bottom:691.200000px;}
.yf8{bottom:692.100000px;}
.y1e4{bottom:695.400000px;}
.y1a5{bottom:699.450000px;}
.y17c{bottom:701.400000px;}
.y13a{bottom:703.350000px;}
.y12{bottom:705.300000px;}
.y4e{bottom:707.550000px;}
.y210{bottom:711.300000px;}
.y21f{bottom:711.450000px;}
.y20{bottom:711.750000px;}
.y34{bottom:713.850000px;}
.y18a{bottom:717.300000px;}
.y65{bottom:720.150000px;}
.y1e3{bottom:724.350000px;}
.y16c{bottom:728.400000px;}
.y11{bottom:729.150000px;}
.y17b{bottom:730.350000px;}
.yb5{bottom:732.450000px;}
.y139{bottom:734.400000px;}
.y90{bottom:736.500000px;}
.y4d{bottom:738.600000px;}
.y20f{bottom:742.350000px;}
.y21e{bottom:742.500000px;}
.y1f{bottom:742.800000px;}
.y33{bottom:744.900000px;}
.y64{bottom:749.100000px;}
.y10{bottom:752.850000px;}
.y1e2{bottom:753.300000px;}
.y2c{bottom:755.850000px;}
.y16b{bottom:757.350000px;}
.y17a{bottom:759.300000px;}
.yb4{bottom:763.500000px;}
.y138{bottom:765.450000px;}
.y8f{bottom:767.550000px;}
.y4c{bottom:769.650000px;}
.y7b{bottom:771.750000px;}
.y20e{bottom:773.400000px;}
.y21d{bottom:773.550000px;}
.y1e{bottom:773.850000px;}
.y32{bottom:775.950000px;}
.y63{bottom:780.150000px;}
.y1e1{bottom:782.250000px;}
.y16a{bottom:786.300000px;}
.yb3{bottom:794.550000px;}
.y8e{bottom:796.500000px;}
.y1a4{bottom:798.750000px;}
.yf{bottom:800.400000px;}
.y4b{bottom:800.700000px;}
.y7a{bottom:802.800000px;}
.y20d{bottom:804.450000px;}
.y21c{bottom:804.750000px;}
.y1d{bottom:804.900000px;}
.y31{bottom:807.000000px;}
.y62{bottom:809.100000px;}
.y1e0{bottom:811.200000px;}
.ye{bottom:824.250000px;}
.yb2{bottom:825.600000px;}
.y8d{bottom:827.550000px;}
.y169{bottom:827.700000px;}
.y124{bottom:831.600000px;}
.y4a{bottom:831.750000px;}
.y79{bottom:833.850000px;}
.y20c{bottom:835.650000px;}
.y21b{bottom:835.800000px;}
.y1c{bottom:835.950000px;}
.y30{bottom:838.050000px;}
.y61{bottom:840.150000px;}
.yd{bottom:847.950000px;}
.y8c{bottom:856.500000px;}
.yb1{bottom:856.650000px;}
.y49{bottom:862.800000px;}
.y20b{bottom:866.700000px;}
.y2b{bottom:867.000000px;}
.y2f{bottom:869.100000px;}
.y8b{bottom:885.450000px;}
.y168{bottom:885.600000px;}
.yb0{bottom:887.700000px;}
.y137{bottom:889.650000px;}
.y123{bottom:893.700000px;}
.y48{bottom:893.850000px;}
.y20a{bottom:897.900000px;}
.y1b{bottom:898.050000px;}
.y167{bottom:914.550000px;}
.yaf{bottom:918.750000px;}
.y47{bottom:924.900000px;}
.y2e{bottom:927.000000px;}
.y209{bottom:928.950000px;}
.y1a{bottom:929.100000px;}
.y2d{bottom:955.950000px;}
.y208{bottom:960.000000px;}
.yc{bottom:960.150000px;}
.h8{height:43.476562px;}
.h2{height:48.796875px;}
.h1{height:49.042969px;}
.h5{height:49.992188px;}
.h9{height:50.695312px;}
.h4{height:61.804688px;}
.h3{height:63.175781px;}
.h6{height:64.452539px;}
.h7{height:345.600000px;}
.h0{height:1062.000000px;}
.w1{width:611.400000px;}
.w0{width:748.500000px;}
.x0{left:0.000000px;}
.xb{left:37.500000px;}
.xe{left:38.550000px;}
.x2e{left:52.050000px;}
.x2d{left:68.400000px;}
.x52{left:82.950000px;}
.x1{left:85.200000px;}
.x13{left:87.300000px;}
.x1b{left:89.400000px;}
.x26{left:93.750000px;}
.x4f{left:95.100000px;}
.x4e{left:99.600000px;}
.x2a{left:102.000000px;}
.x39{left:107.550000px;}
.x49{left:109.200000px;}
.x53{left:112.200000px;}
.x24{left:120.150000px;}
.x21{left:124.650000px;}
.x50{left:130.200000px;}
.x16{left:139.200000px;}
.x1c{left:143.400000px;}
.x33{left:152.850000px;}
.x31{left:157.800000px;}
.x11{left:160.050000px;}
.x22{left:177.000000px;}
.x18{left:191.550000px;}
.x17{left:193.200000px;}
.x1d{left:197.400000px;}
.x3b{left:205.050000px;}
.x4c{left:217.200000px;}
.x45{left:219.450000px;}
.x3c{left:223.500000px;}
.x2c{left:235.200000px;}
.x3a{left:238.650000px;}
.x12{left:240.900000px;}
.x6{left:241.950000px;}
.x4a{left:252.300000px;}
.x7{left:259.650000px;}
.x15{left:264.900000px;}
.x4{left:267.150000px;}
.x5{left:278.700000px;}
.x2{left:286.500000px;}
.x14{left:297.150000px;}
.x34{left:299.250000px;}
.x3{left:300.450000px;}
.x32{left:301.500000px;}
.x29{left:304.350000px;}
.x54{left:307.350000px;}
.x19{left:309.000000px;}
.x8{left:315.150000px;}
.x20{left:318.600000px;}
.x25{left:320.400000px;}
.x55{left:321.600000px;}
.xa{left:323.400000px;}
.x27{left:325.500000px;}
.x46{left:328.050000px;}
.x30{left:329.850000px;}
.x2b{left:333.300000px;}
.x28{left:336.900000px;}
.x36{left:346.050000px;}
.x3d{left:350.850000px;}
.x56{left:360.900000px;}
.x1f{left:365.400000px;}
.x9{left:369.900000px;}
.x35{left:390.600000px;}
.x4b{left:391.950000px;}
.x51{left:424.950000px;}
.x3e{left:445.500000px;}
.x40{left:454.800000px;}
.x47{left:457.200000px;}
.x38{left:468.600000px;}
.x3f{left:477.450000px;}
.xc{left:484.050000px;}
.xf{left:485.100000px;}
.x37{left:501.450000px;}
.xd{left:515.400000px;}
.x10{left:516.450000px;}
.x2f{left:540.600000px;}
.x41{left:561.150000px;}
.x4d{left:565.950000px;}
.x44{left:577.200000px;}
.x43{left:582.150000px;}
.x48{left:592.200000px;}
.x42{left:593.250000px;}
.x1a{left:616.500000px;}
.x1e{left:624.900000px;}
.x23{left:632.550000px;}
@media print{
.v6{vertical-align:-20.266667pt;}
.v5{vertical-align:-7.466667pt;}
.v2{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.400000pt;}
.v1{vertical-align:24.533333pt;}
.v3{vertical-align:30.933333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.117333pt;}
.ls17{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.149333pt;}
.lsf{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.405333pt;}
.ls14{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.536000pt;}
.ls7{letter-spacing:2.933333pt;}
.ls6{letter-spacing:3.466667pt;}
.lsa{letter-spacing:5.824000pt;}
.lsd{letter-spacing:7.466667pt;}
.ls3{letter-spacing:9.066667pt;}
.ls5{letter-spacing:11.733333pt;}
.ls13{letter-spacing:12.266667pt;}
.ls4{letter-spacing:14.933333pt;}
.ls19{letter-spacing:37.904000pt;}
.ls18{letter-spacing:73.280000pt;}
.ls2{letter-spacing:154.133333pt;}
.ls12{letter-spacing:292.266667pt;}
.ls10{letter-spacing:368.000000pt;}
.ls11{letter-spacing:800.533333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.773333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:33.066667pt;}
.ws15{word-spacing:34.112000pt;}
.wsf{word-spacing:40.597333pt;}
.ws13{word-spacing:49.066667pt;}
.ws10{word-spacing:86.357333pt;}
.wsc{word-spacing:104.597333pt;}
.wse{word-spacing:115.370667pt;}
.ws3{word-spacing:122.133333pt;}
.ws4{word-spacing:123.178667pt;}
.ws11{word-spacing:126.506667pt;}
.wsd{word-spacing:135.530667pt;}
.ws8{word-spacing:197.802667pt;}
.wsb{word-spacing:219.200000pt;}
.wsa{word-spacing:251.200000pt;}
.ws9{word-spacing:315.200000pt;}
.ws7{word-spacing:360.533333pt;}
.ws12{word-spacing:420.330667pt;}
.ws17{word-spacing:922.666667pt;}
.ws16{word-spacing:1036.800000pt;}
.ws2{word-spacing:1571.840000pt;}
._89{margin-left:-16.533333pt;}
._49{margin-left:-9.024000pt;}
._7{margin-left:-7.488000pt;}
._12{margin-left:-6.592000pt;}
._c{margin-left:-5.440000pt;}
._8{margin-left:-4.352000pt;}
._6{margin-left:-3.072000pt;}
._b{margin-left:-1.792000pt;}
._3{margin-left:-0.896000pt;}
._2{width:0.917333pt;}
._9{width:1.984000pt;}
._a{width:3.008000pt;}
._1a{width:4.480000pt;}
._11{width:5.802667pt;}
._e{width:6.741333pt;}
._d{width:8.064000pt;}
._16{width:9.024000pt;}
._10{width:10.432000pt;}
._f{width:11.584000pt;}
._18{width:13.248000pt;}
._19{width:14.186667pt;}
._35{width:15.104000pt;}
._34{width:16.960000pt;}
._31{width:18.048000pt;}
._39{width:19.029333pt;}
._4{width:20.032000pt;}
._5{width:21.120000pt;}
._0{width:22.528000pt;}
._1{width:23.424000pt;}
._30{width:25.024000pt;}
._75{width:26.389333pt;}
._2f{width:27.562667pt;}
._2e{width:28.736000pt;}
._37{width:30.272000pt;}
._3c{width:31.232000pt;}
._13{width:32.192000pt;}
._8a{width:33.280000pt;}
._3a{width:34.304000pt;}
._60{width:35.392000pt;}
._38{width:37.120000pt;}
._70{width:38.208000pt;}
._54{width:40.320000pt;}
._48{width:41.664000pt;}
._4c{width:43.136000pt;}
._6c{width:44.224000pt;}
._9b{width:45.290667pt;}
._8f{width:46.592000pt;}
._33{width:47.552000pt;}
._72{width:48.768000pt;}
._71{width:49.792000pt;}
._6d{width:52.288000pt;}
._6e{width:53.184000pt;}
._52{width:56.618667pt;}
._90{width:57.706667pt;}
._36{width:59.584000pt;}
._9d{width:60.480000pt;}
._99{width:63.168000pt;}
._98{width:64.192000pt;}
._3b{width:68.330667pt;}
._91{width:69.952000pt;}
._6b{width:70.848000pt;}
._50{width:73.536000pt;}
._8e{width:74.944000pt;}
._6f{width:78.080000pt;}
._97{width:79.296000pt;}
._8c{width:80.298667pt;}
._8b{width:81.770667pt;}
._65{width:88.661333pt;}
._9c{width:90.005333pt;}
._23{width:94.613333pt;}
._73{width:96.448000pt;}
._74{width:97.365333pt;}
._5f{width:102.144000pt;}
._64{width:119.125333pt;}
._62{width:123.733333pt;}
._32{width:126.506667pt;}
._9a{width:127.978667pt;}
._2c{width:129.834667pt;}
._5d{width:132.736000pt;}
._29{width:138.133333pt;}
._92{width:140.821333pt;}
._66{width:147.733333pt;}
._69{width:148.992000pt;}
._61{width:152.106667pt;}
._67{width:153.109333pt;}
._22{width:154.133333pt;}
._96{width:156.992000pt;}
._3d{width:160.170667pt;}
._94{width:167.936000pt;}
._95{width:168.832000pt;}
._17{width:176.000000pt;}
._2a{width:181.589333pt;}
._63{width:184.661333pt;}
._4a{width:193.386667pt;}
._41{width:197.034667pt;}
._4f{width:201.877333pt;}
._4d{width:214.805333pt;}
._14{width:224.832000pt;}
._3e{width:226.538667pt;}
._15{width:230.698667pt;}
._46{width:232.618667pt;}
._5a{width:233.600000pt;}
._76{width:243.690667pt;}
._2b{width:244.608000pt;}
._6a{width:248.320000pt;}
._43{width:261.034667pt;}
._44{width:263.573333pt;}
._5e{width:267.200000pt;}
._47{width:299.285333pt;}
._68{width:300.352000pt;}
._5b{width:315.200000pt;}
._5c{width:331.200000pt;}
._93{width:336.277333pt;}
._53{width:355.221333pt;}
._51{width:371.221333pt;}
._79{width:390.208000pt;}
._3f{width:392.554667pt;}
._42{width:405.781333pt;}
._24{width:419.477333pt;}
._59{width:440.213333pt;}
._4b{width:456.512000pt;}
._55{width:458.922667pt;}
._4e{width:484.373333pt;}
._58{width:489.152000pt;}
._45{width:505.109333pt;}
._57{width:506.069333pt;}
._7a{width:587.178667pt;}
._40{width:593.941333pt;}
._26{width:629.568000pt;}
._78{width:644.202667pt;}
._28{width:648.149333pt;}
._7f{width:668.906667pt;}
._7e{width:683.114667pt;}
._27{width:703.317333pt;}
._1f{width:709.482667pt;}
._25{width:710.677333pt;}
._2d{width:720.938667pt;}
._7c{width:761.258667pt;}
._8d{width:830.848000pt;}
._77{width:860.586667pt;}
._80{width:900.202667pt;}
._7d{width:910.698667pt;}
._56{width:916.906667pt;}
._21{width:1000.981333pt;}
._81{width:1013.994667pt;}
._85{width:1031.744000pt;}
._20{width:1069.013333pt;}
._83{width:1092.202667pt;}
._1c{width:1134.058667pt;}
._82{width:1138.282667pt;}
._1d{width:1210.496000pt;}
._88{width:1212.778667pt;}
._87{width:1214.741333pt;}
._7b{width:1219.946667pt;}
._84{width:1230.634667pt;}
._86{width:1333.546667pt;}
._1b{width:1346.410667pt;}
._1e{width:1390.784000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:78.400000pt;}
.yc7{bottom:117.333333pt;}
.ybc{bottom:117.466667pt;}
.yd5{bottom:118.400000pt;}
.y14e{bottom:119.066667pt;}
.ye0{bottom:120.666667pt;}
.y136{bottom:120.933333pt;}
.y130{bottom:121.200000pt;}
.y113{bottom:121.466667pt;}
.y1b6{bottom:123.066667pt;}
.y1df{bottom:124.800000pt;}
.y8a{bottom:125.066667pt;}
.y1c5{bottom:125.466667pt;}
.yae{bottom:126.666667pt;}
.y219{bottom:127.866667pt;}
.ya{bottom:128.400000pt;}
.y1cb{bottom:128.533333pt;}
.ya2{bottom:128.800000pt;}
.y179{bottom:130.533333pt;}
.yf5{bottom:131.200000pt;}
.y122{bottom:132.000000pt;}
.y60{bottom:134.000000pt;}
.y225{bottom:134.400000pt;}
.y19b{bottom:135.066667pt;}
.y207{bottom:135.733333pt;}
.ya0{bottom:135.866667pt;}
.y1a3{bottom:136.533333pt;}
.y107{bottom:136.800000pt;}
.y78{bottom:138.133333pt;}
.y15c{bottom:138.400000pt;}
.y46{bottom:139.600000pt;}
.ycb{bottom:141.333333pt;}
.y1dc{bottom:141.466667pt;}
.y1d5{bottom:143.333333pt;}
.yc6{bottom:144.933333pt;}
.y117{bottom:145.066667pt;}
.ye1{bottom:145.600000pt;}
.y166{bottom:146.000000pt;}
.y135{bottom:146.666667pt;}
.y161{bottom:148.400000pt;}
.ye8{bottom:148.533333pt;}
.y12f{bottom:148.800000pt;}
.y112{bottom:149.066667pt;}
.y1de{bottom:150.533333pt;}
.y1b5{bottom:150.666667pt;}
.y89{bottom:150.800000pt;}
.y1c4{bottom:153.066667pt;}
.yad{bottom:154.266667pt;}
.y206{bottom:154.800000pt;}
.y218{bottom:155.466667pt;}
.yf7{bottom:156.000000pt;}
.y178{bottom:158.133333pt;}
.yf4{bottom:158.800000pt;}
.y121{bottom:159.600000pt;}
.yde{bottom:159.733333pt;}
.y5f{bottom:161.600000pt;}
.y224{bottom:162.000000pt;}
.y19a{bottom:162.666667pt;}
.y9f{bottom:163.466667pt;}
.y77{bottom:163.866667pt;}
.y106{bottom:164.400000pt;}
.y1ca{bottom:165.333333pt;}
.y15b{bottom:166.000000pt;}
.y45{bottom:167.200000pt;}
.y189{bottom:167.333333pt;}
.yca{bottom:168.933333pt;}
.ye2{bottom:170.533333pt;}
.y1d4{bottom:170.933333pt;}
.y134{bottom:172.400000pt;}
.yc5{bottom:172.533333pt;}
.ybb{bottom:172.666667pt;}
.yd4{bottom:173.600000pt;}
.y14d{bottom:174.266667pt;}
.y160{bottom:176.000000pt;}
.y12e{bottom:176.400000pt;}
.y88{bottom:176.533333pt;}
.y111{bottom:176.666667pt;}
.y1dd{bottom:178.133333pt;}
.y1b4{bottom:178.266667pt;}
.y9{bottom:180.000000pt;}
.y1c3{bottom:180.666667pt;}
.y233{bottom:180.800000pt;}
.yac{bottom:181.866667pt;}
.y205{bottom:182.400000pt;}
.y217{bottom:183.066667pt;}
.yf6{bottom:183.600000pt;}
.y177{bottom:185.733333pt;}
.yf3{bottom:186.400000pt;}
.y120{bottom:187.200000pt;}
.ydd{bottom:187.333333pt;}
.y5e{bottom:189.200000pt;}
.y223{bottom:189.600000pt;}
.y199{bottom:190.266667pt;}
.y9e{bottom:191.066667pt;}
.y76{bottom:191.466667pt;}
.y105{bottom:192.000000pt;}
.y15a{bottom:193.600000pt;}
.y44{bottom:194.800000pt;}
.y188{bottom:194.933333pt;}
.ye3{bottom:195.466667pt;}
.yc9{bottom:196.533333pt;}
.y1d3{bottom:198.533333pt;}
.yc4{bottom:200.133333pt;}
.y116{bottom:200.266667pt;}
.y1db{bottom:200.400000pt;}
.y1a2{bottom:200.933333pt;}
.y14c{bottom:201.866667pt;}
.y15f{bottom:203.600000pt;}
.y12d{bottom:204.000000pt;}
.y87{bottom:204.133333pt;}
.y110{bottom:204.266667pt;}
.y1f3{bottom:204.533333pt;}
.y1b3{bottom:205.866667pt;}
.y8{bottom:207.600000pt;}
.y1c2{bottom:208.266667pt;}
.y232{bottom:208.400000pt;}
.yab{bottom:209.466667pt;}
.y204{bottom:210.000000pt;}
.y216{bottom:210.666667pt;}
.y148{bottom:211.200000pt;}
.y2a{bottom:212.533333pt;}
.y176{bottom:213.333333pt;}
.yf2{bottom:214.000000pt;}
.y11f{bottom:214.800000pt;}
.ydc{bottom:214.933333pt;}
.y5d{bottom:216.800000pt;}
.y75{bottom:217.200000pt;}
.y198{bottom:217.866667pt;}
.y9d{bottom:218.666667pt;}
.y104{bottom:219.600000pt;}
.ye4{bottom:220.400000pt;}
.y159{bottom:221.200000pt;}
.y43{bottom:222.400000pt;}
.y187{bottom:222.533333pt;}
.yc8{bottom:224.133333pt;}
.y133{bottom:226.000000pt;}
.y1d2{bottom:226.133333pt;}
.yc3{bottom:227.733333pt;}
.y1da{bottom:228.000000pt;}
.y1a1{bottom:228.533333pt;}
.y86{bottom:229.866667pt;}
.y15e{bottom:231.200000pt;}
.y12c{bottom:231.600000pt;}
.y10f{bottom:231.866667pt;}
.y1f2{bottom:232.133333pt;}
.y1b2{bottom:233.466667pt;}
.y7{bottom:235.200000pt;}
.y1c1{bottom:235.866667pt;}
.y231{bottom:236.000000pt;}
.ycf{bottom:236.933333pt;}
.yaa{bottom:237.066667pt;}
.y203{bottom:237.600000pt;}
.yd3{bottom:238.000000pt;}
.y29{bottom:240.133333pt;}
.yf1{bottom:241.600000pt;}
.y11e{bottom:242.400000pt;}
.ydb{bottom:242.533333pt;}
.y5c{bottom:244.400000pt;}
.y74{bottom:244.800000pt;}
.ye5{bottom:245.466667pt;}
.y9c{bottom:246.266667pt;}
.y103{bottom:247.200000pt;}
.y158{bottom:248.800000pt;}
.y42{bottom:250.000000pt;}
.y186{bottom:250.133333pt;}
.y132{bottom:251.733333pt;}
.y1c9{bottom:253.600000pt;}
.y1d1{bottom:253.733333pt;}
.yc2{bottom:255.333333pt;}
.y115{bottom:255.466667pt;}
.y1a0{bottom:256.133333pt;}
.y14b{bottom:257.066667pt;}
.y85{bottom:257.466667pt;}
.y1f1{bottom:257.866667pt;}
.y15d{bottom:258.800000pt;}
.y12b{bottom:259.200000pt;}
.y10e{bottom:259.466667pt;}
.y1b1{bottom:261.066667pt;}
.yce{bottom:264.533333pt;}
.ya9{bottom:264.666667pt;}
.y202{bottom:265.200000pt;}
.yd2{bottom:265.600000pt;}
.y147{bottom:266.400000pt;}
.y28{bottom:267.733333pt;}
.yf0{bottom:269.200000pt;}
.y11d{bottom:270.000000pt;}
.yda{bottom:270.133333pt;}
.ye6{bottom:270.400000pt;}
.y5b{bottom:272.000000pt;}
.y73{bottom:272.400000pt;}
.y197{bottom:273.066667pt;}
.y9b{bottom:273.866667pt;}
.y102{bottom:274.800000pt;}
.y157{bottom:276.400000pt;}
.y41{bottom:277.600000pt;}
.y1d0{bottom:281.333333pt;}
.yc1{bottom:282.933333pt;}
.y114{bottom:283.066667pt;}
.y84{bottom:283.200000pt;}
.y1f0{bottom:283.600000pt;}
.y19f{bottom:283.733333pt;}
.y14a{bottom:284.666667pt;}
.y12a{bottom:286.800000pt;}
.y10d{bottom:287.066667pt;}
.y131{bottom:288.533333pt;}
.y1b0{bottom:288.666667pt;}
.y1c8{bottom:290.400000pt;}
.y1c0{bottom:291.066667pt;}
.ycd{bottom:292.133333pt;}
.ya8{bottom:292.266667pt;}
.y201{bottom:292.800000pt;}
.yd1{bottom:293.200000pt;}
.y146{bottom:294.000000pt;}
.ye7{bottom:295.333333pt;}
.yef{bottom:296.800000pt;}
.y11c{bottom:297.600000pt;}
.yd9{bottom:297.733333pt;}
.y72{bottom:298.133333pt;}
.y5a{bottom:299.600000pt;}
.y196{bottom:300.666667pt;}
.y9a{bottom:301.466667pt;}
.y1f6{bottom:301.600000pt;}
.y101{bottom:302.400000pt;}
.y156{bottom:304.000000pt;}
.y40{bottom:305.200000pt;}
.y1d9{bottom:307.066667pt;}
.y27{bottom:308.666667pt;}
.y1cf{bottom:308.933333pt;}
.y175{bottom:309.066667pt;}
.y1ef{bottom:309.333333pt;}
.y230{bottom:309.866667pt;}
.y83{bottom:310.800000pt;}
.y19e{bottom:311.333333pt;}
.y149{bottom:312.266667pt;}
.y10c{bottom:314.666667pt;}
.y1af{bottom:316.266667pt;}
.y1bf{bottom:318.666667pt;}
.ycc{bottom:319.733333pt;}
.ya7{bottom:319.866667pt;}
.y200{bottom:320.400000pt;}
.yd0{bottom:320.800000pt;}
.y145{bottom:321.600000pt;}
.yee{bottom:324.400000pt;}
.y11b{bottom:325.200000pt;}
.y71{bottom:325.733333pt;}
.y59{bottom:327.200000pt;}
.y195{bottom:328.266667pt;}
.y99{bottom:329.066667pt;}
.y1f5{bottom:329.200000pt;}
.y100{bottom:330.000000pt;}
.y3f{bottom:332.800000pt;}
.y1d8{bottom:334.666667pt;}
.y1ee{bottom:335.066667pt;}
.y82{bottom:336.533333pt;}
.y185{bottom:336.666667pt;}
.yc0{bottom:338.133333pt;}
.y19d{bottom:338.933333pt;}
.y129{bottom:342.000000pt;}
.y10b{bottom:342.266667pt;}
.y1ae{bottom:343.866667pt;}
.y174{bottom:345.866667pt;}
.yba{bottom:347.466667pt;}
.y1ff{bottom:348.000000pt;}
.y165{bottom:348.400000pt;}
.y144{bottom:349.200000pt;}
.y70{bottom:351.466667pt;}
.y11a{bottom:352.800000pt;}
.yd8{bottom:352.933333pt;}
.y58{bottom:354.800000pt;}
.y6{bottom:354.933333pt;}
.y98{bottom:356.666667pt;}
.y1f4{bottom:356.800000pt;}
.yff{bottom:357.600000pt;}
.y3e{bottom:358.533333pt;}
.y155{bottom:359.200000pt;}
.y1d7{bottom:360.400000pt;}
.y1ed{bottom:360.800000pt;}
.y194{bottom:361.600000pt;}
.y81{bottom:364.133333pt;}
.y184{bottom:364.266667pt;}
.ybf{bottom:365.733333pt;}
.y19c{bottom:366.533333pt;}
.y128{bottom:369.600000pt;}
.y10a{bottom:369.866667pt;}
.y1ad{bottom:371.466667pt;}
.y1be{bottom:373.866667pt;}
.y22f{bottom:374.400000pt;}
.ya6{bottom:375.066667pt;}
.y1fe{bottom:375.600000pt;}
.y164{bottom:376.000000pt;}
.y19{bottom:376.400000pt;}
.y143{bottom:376.800000pt;}
.y6f{bottom:379.066667pt;}
.yed{bottom:379.600000pt;}
.y119{bottom:380.400000pt;}
.y57{bottom:382.400000pt;}
.y173{bottom:382.666667pt;}
.y97{bottom:384.266667pt;}
.yfe{bottom:385.200000pt;}
.y3d{bottom:386.133333pt;}
.y1ec{bottom:386.533333pt;}
.y94{bottom:388.000000pt;}
.y193{bottom:389.200000pt;}
.y1c7{bottom:389.733333pt;}
.y80{bottom:391.733333pt;}
.y5{bottom:391.866667pt;}
.ybe{bottom:393.333333pt;}
.y26{bottom:395.866667pt;}
.y127{bottom:397.200000pt;}
.y18{bottom:397.466667pt;}
.y1ac{bottom:399.066667pt;}
.y1bd{bottom:401.466667pt;}
.y22e{bottom:402.000000pt;}
.ya5{bottom:402.666667pt;}
.y163{bottom:403.600000pt;}
.y142{bottom:404.400000pt;}
.y6e{bottom:404.800000pt;}
.y1f9{bottom:407.066667pt;}
.yec{bottom:407.200000pt;}
.y118{bottom:408.000000pt;}
.y172{bottom:408.400000pt;}
.y56{bottom:410.000000pt;}
.y96{bottom:411.866667pt;}
.y1eb{bottom:412.266667pt;}
.yfd{bottom:412.800000pt;}
.y3c{bottom:413.733333pt;}
.y154{bottom:414.400000pt;}
.y93{bottom:415.600000pt;}
.y17{bottom:415.866667pt;}
.y192{bottom:416.800000pt;}
.yd7{bottom:417.333333pt;}
.y7f{bottom:417.466667pt;}
.y183{bottom:417.600000pt;}
.y4{bottom:419.466667pt;}
.ybd{bottom:420.933333pt;}
.y126{bottom:424.800000pt;}
.y109{bottom:425.066667pt;}
.y1c6{bottom:426.533333pt;}
.y1ab{bottom:426.666667pt;}
.y1bc{bottom:429.066667pt;}
.y22d{bottom:429.600000pt;}
.ya4{bottom:430.266667pt;}
.y6d{bottom:430.533333pt;}
.y1fd{bottom:430.800000pt;}
.y162{bottom:431.200000pt;}
.y141{bottom:432.000000pt;}
.y1f8{bottom:434.666667pt;}
.yeb{bottom:434.800000pt;}
.y55{bottom:437.600000pt;}
.y1ea{bottom:438.000000pt;}
.ya1{bottom:439.466667pt;}
.yfc{bottom:440.400000pt;}
.y3b{bottom:441.333333pt;}
.y153{bottom:442.000000pt;}
.y182{bottom:443.333333pt;}
.y191{bottom:444.400000pt;}
.yd6{bottom:444.933333pt;}
.y7e{bottom:445.066667pt;}
.y171{bottom:445.200000pt;}
.y21a{bottom:450.000000pt;}
.y1ce{bottom:450.666667pt;}
.y125{bottom:452.400000pt;}
.y16{bottom:452.666667pt;}
.y1aa{bottom:454.266667pt;}
.y6c{bottom:456.266667pt;}
.y1bb{bottom:456.666667pt;}
.y22c{bottom:457.333333pt;}
.yb9{bottom:457.866667pt;}
.y140{bottom:459.600000pt;}
.y1f7{bottom:462.266667pt;}
.yea{bottom:462.400000pt;}
.y1e9{bottom:463.733333pt;}
.y54{bottom:465.200000pt;}
.y25{bottom:467.066667pt;}
.yfb{bottom:468.000000pt;}
.y3a{bottom:468.933333pt;}
.ydf{bottom:469.066667pt;}
.y152{bottom:469.600000pt;}
.y7d{bottom:470.800000pt;}
.y170{bottom:470.933333pt;}
.y15{bottom:471.066667pt;}
.y190{bottom:472.000000pt;}
.y227{bottom:472.533333pt;}
.y3{bottom:474.666667pt;}
.y1cd{bottom:478.266667pt;}
.y226{bottom:478.400000pt;}
.y108{bottom:480.266667pt;}
.y1a9{bottom:481.866667pt;}
.y6b{bottom:482.000000pt;}
.y1ba{bottom:484.266667pt;}
.ya3{bottom:485.466667pt;}
.y1fc{bottom:486.000000pt;}
.y13f{bottom:487.200000pt;}
.y14{bottom:489.466667pt;}
.ye9{bottom:490.000000pt;}
.y53{bottom:492.800000pt;}
.y215{bottom:494.133333pt;}
.y24{bottom:494.666667pt;}
.y181{bottom:494.800000pt;}
.y39{bottom:496.533333pt;}
.y151{bottom:497.200000pt;}
.y7c{bottom:498.400000pt;}
.y18f{bottom:499.600000pt;}
.y2{bottom:502.266667pt;}
.y1cc{bottom:505.866667pt;}
.y6a{bottom:507.733333pt;}
.y13{bottom:507.866667pt;}
.y1a8{bottom:509.466667pt;}
.y1b9{bottom:511.866667pt;}
.yb8{bottom:513.066667pt;}
.y1fb{bottom:513.600000pt;}
.y13e{bottom:514.800000pt;}
.y1e8{bottom:515.200000pt;}
.y52{bottom:518.533333pt;}
.y1d6{bottom:520.400000pt;}
.y180{bottom:520.533333pt;}
.y214{bottom:521.733333pt;}
.y23{bottom:522.266667pt;}
.yfa{bottom:523.200000pt;}
.y38{bottom:524.133333pt;}
.y150{bottom:524.800000pt;}
.y18e{bottom:527.200000pt;}
.y1{bottom:529.866667pt;}
.y22b{bottom:531.200000pt;}
.y69{bottom:533.466667pt;}
.y1a7{bottom:537.066667pt;}
.y1b8{bottom:539.466667pt;}
.yb7{bottom:540.666667pt;}
.y1e7{bottom:540.933333pt;}
.y1fa{bottom:541.200000pt;}
.y13d{bottom:542.400000pt;}
.y51{bottom:546.133333pt;}
.y17f{bottom:546.266667pt;}
.y92{bottom:548.000000pt;}
.y213{bottom:549.333333pt;}
.y222{bottom:549.600000pt;}
.y22{bottom:549.866667pt;}
.y37{bottom:551.733333pt;}
.y14f{bottom:552.400000pt;}
.y18d{bottom:554.800000pt;}
.y22a{bottom:558.800000pt;}
.y16f{bottom:559.200000pt;}
.y68{bottom:561.066667pt;}
.y1e6{bottom:566.666667pt;}
.y1b7{bottom:567.066667pt;}
.y13c{bottom:570.000000pt;}
.y17e{bottom:572.000000pt;}
.y50{bottom:573.733333pt;}
.y91{bottom:575.600000pt;}
.y212{bottom:576.933333pt;}
.y221{bottom:577.200000pt;}
.y95{bottom:577.466667pt;}
.y36{bottom:579.333333pt;}
.y18c{bottom:582.400000pt;}
.y16e{bottom:584.933333pt;}
.y229{bottom:586.400000pt;}
.y67{bottom:586.800000pt;}
.yf9{bottom:587.600000pt;}
.y1e5{bottom:592.400000pt;}
.yb6{bottom:595.866667pt;}
.y1a6{bottom:596.000000pt;}
.y13b{bottom:597.600000pt;}
.y17d{bottom:597.733333pt;}
.y4f{bottom:601.333333pt;}
.y211{bottom:604.666667pt;}
.y220{bottom:604.800000pt;}
.y21{bottom:605.066667pt;}
.y35{bottom:606.933333pt;}
.y18b{bottom:610.000000pt;}
.y16d{bottom:610.666667pt;}
.y228{bottom:614.000000pt;}
.y66{bottom:614.400000pt;}
.yf8{bottom:615.200000pt;}
.y1e4{bottom:618.133333pt;}
.y1a5{bottom:621.733333pt;}
.y17c{bottom:623.466667pt;}
.y13a{bottom:625.200000pt;}
.y12{bottom:626.933333pt;}
.y4e{bottom:628.933333pt;}
.y210{bottom:632.266667pt;}
.y21f{bottom:632.400000pt;}
.y20{bottom:632.666667pt;}
.y34{bottom:634.533333pt;}
.y18a{bottom:637.600000pt;}
.y65{bottom:640.133333pt;}
.y1e3{bottom:643.866667pt;}
.y16c{bottom:647.466667pt;}
.y11{bottom:648.133333pt;}
.y17b{bottom:649.200000pt;}
.yb5{bottom:651.066667pt;}
.y139{bottom:652.800000pt;}
.y90{bottom:654.666667pt;}
.y4d{bottom:656.533333pt;}
.y20f{bottom:659.866667pt;}
.y21e{bottom:660.000000pt;}
.y1f{bottom:660.266667pt;}
.y33{bottom:662.133333pt;}
.y64{bottom:665.866667pt;}
.y10{bottom:669.200000pt;}
.y1e2{bottom:669.600000pt;}
.y2c{bottom:671.866667pt;}
.y16b{bottom:673.200000pt;}
.y17a{bottom:674.933333pt;}
.yb4{bottom:678.666667pt;}
.y138{bottom:680.400000pt;}
.y8f{bottom:682.266667pt;}
.y4c{bottom:684.133333pt;}
.y7b{bottom:686.000000pt;}
.y20e{bottom:687.466667pt;}
.y21d{bottom:687.600000pt;}
.y1e{bottom:687.866667pt;}
.y32{bottom:689.733333pt;}
.y63{bottom:693.466667pt;}
.y1e1{bottom:695.333333pt;}
.y16a{bottom:698.933333pt;}
.yb3{bottom:706.266667pt;}
.y8e{bottom:708.000000pt;}
.y1a4{bottom:710.000000pt;}
.yf{bottom:711.466667pt;}
.y4b{bottom:711.733333pt;}
.y7a{bottom:713.600000pt;}
.y20d{bottom:715.066667pt;}
.y21c{bottom:715.333333pt;}
.y1d{bottom:715.466667pt;}
.y31{bottom:717.333333pt;}
.y62{bottom:719.200000pt;}
.y1e0{bottom:721.066667pt;}
.ye{bottom:732.666667pt;}
.yb2{bottom:733.866667pt;}
.y8d{bottom:735.600000pt;}
.y169{bottom:735.733333pt;}
.y124{bottom:739.200000pt;}
.y4a{bottom:739.333333pt;}
.y79{bottom:741.200000pt;}
.y20c{bottom:742.800000pt;}
.y21b{bottom:742.933333pt;}
.y1c{bottom:743.066667pt;}
.y30{bottom:744.933333pt;}
.y61{bottom:746.800000pt;}
.yd{bottom:753.733333pt;}
.y8c{bottom:761.333333pt;}
.yb1{bottom:761.466667pt;}
.y49{bottom:766.933333pt;}
.y20b{bottom:770.400000pt;}
.y2b{bottom:770.666667pt;}
.y2f{bottom:772.533333pt;}
.y8b{bottom:787.066667pt;}
.y168{bottom:787.200000pt;}
.yb0{bottom:789.066667pt;}
.y137{bottom:790.800000pt;}
.y123{bottom:794.400000pt;}
.y48{bottom:794.533333pt;}
.y20a{bottom:798.133333pt;}
.y1b{bottom:798.266667pt;}
.y167{bottom:812.933333pt;}
.yaf{bottom:816.666667pt;}
.y47{bottom:822.133333pt;}
.y2e{bottom:824.000000pt;}
.y209{bottom:825.733333pt;}
.y1a{bottom:825.866667pt;}
.y2d{bottom:849.733333pt;}
.y208{bottom:853.333333pt;}
.yc{bottom:853.466667pt;}
.h8{height:38.645833pt;}
.h2{height:43.375000pt;}
.h1{height:43.593750pt;}
.h5{height:44.437500pt;}
.h9{height:45.062500pt;}
.h4{height:54.937500pt;}
.h3{height:56.156250pt;}
.h6{height:57.291146pt;}
.h7{height:307.200000pt;}
.h0{height:944.000000pt;}
.w1{width:543.466667pt;}
.w0{width:665.333333pt;}
.x0{left:0.000000pt;}
.xb{left:33.333333pt;}
.xe{left:34.266667pt;}
.x2e{left:46.266667pt;}
.x2d{left:60.800000pt;}
.x52{left:73.733333pt;}
.x1{left:75.733333pt;}
.x13{left:77.600000pt;}
.x1b{left:79.466667pt;}
.x26{left:83.333333pt;}
.x4f{left:84.533333pt;}
.x4e{left:88.533333pt;}
.x2a{left:90.666667pt;}
.x39{left:95.600000pt;}
.x49{left:97.066667pt;}
.x53{left:99.733333pt;}
.x24{left:106.800000pt;}
.x21{left:110.800000pt;}
.x50{left:115.733333pt;}
.x16{left:123.733333pt;}
.x1c{left:127.466667pt;}
.x33{left:135.866667pt;}
.x31{left:140.266667pt;}
.x11{left:142.266667pt;}
.x22{left:157.333333pt;}
.x18{left:170.266667pt;}
.x17{left:171.733333pt;}
.x1d{left:175.466667pt;}
.x3b{left:182.266667pt;}
.x4c{left:193.066667pt;}
.x45{left:195.066667pt;}
.x3c{left:198.666667pt;}
.x2c{left:209.066667pt;}
.x3a{left:212.133333pt;}
.x12{left:214.133333pt;}
.x6{left:215.066667pt;}
.x4a{left:224.266667pt;}
.x7{left:230.800000pt;}
.x15{left:235.466667pt;}
.x4{left:237.466667pt;}
.x5{left:247.733333pt;}
.x2{left:254.666667pt;}
.x14{left:264.133333pt;}
.x34{left:266.000000pt;}
.x3{left:267.066667pt;}
.x32{left:268.000000pt;}
.x29{left:270.533333pt;}
.x54{left:273.200000pt;}
.x19{left:274.666667pt;}
.x8{left:280.133333pt;}
.x20{left:283.200000pt;}
.x25{left:284.800000pt;}
.x55{left:285.866667pt;}
.xa{left:287.466667pt;}
.x27{left:289.333333pt;}
.x46{left:291.600000pt;}
.x30{left:293.200000pt;}
.x2b{left:296.266667pt;}
.x28{left:299.466667pt;}
.x36{left:307.600000pt;}
.x3d{left:311.866667pt;}
.x56{left:320.800000pt;}
.x1f{left:324.800000pt;}
.x9{left:328.800000pt;}
.x35{left:347.200000pt;}
.x4b{left:348.400000pt;}
.x51{left:377.733333pt;}
.x3e{left:396.000000pt;}
.x40{left:404.266667pt;}
.x47{left:406.400000pt;}
.x38{left:416.533333pt;}
.x3f{left:424.400000pt;}
.xc{left:430.266667pt;}
.xf{left:431.200000pt;}
.x37{left:445.733333pt;}
.xd{left:458.133333pt;}
.x10{left:459.066667pt;}
.x2f{left:480.533333pt;}
.x41{left:498.800000pt;}
.x4d{left:503.066667pt;}
.x44{left:513.066667pt;}
.x43{left:517.466667pt;}
.x48{left:526.400000pt;}
.x42{left:527.333333pt;}
.x1a{left:548.000000pt;}
.x1e{left:555.466667pt;}
.x23{left:562.266667pt;}
}




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