
    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_d5125daacb0b9c1080fd43d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_944dfdecfb8b66c33e4762ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb367927e8f3d82d10a5509a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_39e4d07635f51089fb40e6d4.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_47c9659f4e6805d82aa69736.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_90297d09c0680d81b49fb74e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_ebb1f18cf8df5f74a08bab60.woff')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_4227b963f173d657b717c33c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793945;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_595420d8a7c75d186eb57866.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_c316602a66acd0bdae90cea0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_edbb6397d90cb3cdbd9b5b19.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_38bf46afba1c14bc1476cf2d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.689453;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.740000px;}
.ls19{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.415200px;}
.ls6{letter-spacing:-0.336000px;}
.ls23{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.030000px;}
.ls4{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.384000px;}
.ls21{letter-spacing:0.414000px;}
.ls3{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.816000px;}
.ls15{letter-spacing:0.960000px;}
.lse{letter-spacing:22.656000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws2{word-spacing:-36.816000px;}
.ws0{word-spacing:-35.664000px;}
.ws1{word-spacing:-35.568000px;}
.wsc{word-spacing:-33.840000px;}
.ws19{word-spacing:-15.540000px;}
.ws16{word-spacing:-15.240000px;}
.ws9{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.000000px;}
.ws24{word-spacing:-14.880000px;}
.ws13{word-spacing:-14.760000px;}
.ws17{word-spacing:-14.460000px;}
.ws25{word-spacing:-13.920000px;}
.ws1f{word-spacing:-13.800000px;}
.ws20{word-spacing:-13.560000px;}
.ws6{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.476000px;}
.wsa{word-spacing:-13.260000px;}
.ws1c{word-spacing:-12.144000px;}
.ws8{word-spacing:-12.000000px;}
.ws1d{word-spacing:-11.712000px;}
.ws27{word-spacing:-11.100000px;}
.ws21{word-spacing:-10.984800px;}
.ws26{word-spacing:-10.500000px;}
.ws29{word-spacing:-10.176000px;}
.ws28{word-spacing:-10.038000px;}
.ws22{word-spacing:-9.900000px;}
.wse{word-spacing:-0.270000px;}
.wsd{word-spacing:0.000000px;}
.ws10{word-spacing:0.126000px;}
.wsf{word-spacing:1.320000px;}
.ws1e{word-spacing:10.740000px;}
.ws18{word-spacing:12.120000px;}
.ws15{word-spacing:13.440000px;}
.ws14{word-spacing:17.640000px;}
.ws12{word-spacing:18.120000px;}
.ws23{word-spacing:20.640000px;}
.ws11{word-spacing:20.880000px;}
.ws7{word-spacing:31.560000px;}
.ws1b{word-spacing:43.020000px;}
.ws1a{word-spacing:47.100000px;}
._1f{margin-left:-1531.200000px;}
._23{margin-left:-4.854000px;}
._12{margin-left:-3.840000px;}
._2{margin-left:-2.826000px;}
._0{margin-left:-1.440000px;}
._1{width:1.206000px;}
._7{width:2.538000px;}
._b{width:3.654000px;}
._4{width:5.274000px;}
._5{width:6.984000px;}
._a{width:8.070000px;}
._1a{width:9.156000px;}
._18{width:10.848000px;}
._e{width:12.132000px;}
._19{width:13.452000px;}
._3{width:14.634000px;}
._13{width:16.200000px;}
._9{width:17.610000px;}
._6{width:18.846000px;}
._c{width:19.962000px;}
._22{width:21.096000px;}
._d{width:22.098000px;}
._1c{width:23.106000px;}
._1b{width:24.900000px;}
._17{width:25.962000px;}
._8{width:27.810000px;}
._14{width:29.640000px;}
._1e{width:31.380000px;}
._1d{width:32.640000px;}
._2b{width:34.200000px;}
._24{width:35.580000px;}
._25{width:36.846000px;}
._2d{width:38.820000px;}
._2e{width:40.560000px;}
._30{width:41.562000px;}
._21{width:43.020000px;}
._20{width:44.400000px;}
._16{width:48.720000px;}
._15{width:51.000000px;}
._10{width:53.700000px;}
._11{width:55.422000px;}
._2c{width:57.822000px;}
._2f{width:59.028000px;}
._f{width:72.318000px;}
._29{width:83.118000px;}
._28{width:85.776000px;}
._2a{width:98.922000px;}
._27{width:101.790000px;}
._26{width:117.744000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:45.600000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y113{bottom:11.085000px;}
.yfa{bottom:11.100000px;}
.y12b{bottom:11.130000px;}
.yf6{bottom:11.400000px;}
.y142{bottom:11.415000px;}
.y110{bottom:11.430000px;}
.y106{bottom:11.445000px;}
.y135{bottom:11.700000px;}
.y12d{bottom:11.985000px;}
.y12f{bottom:12.000000px;}
.y131{bottom:12.015000px;}
.y129{bottom:15.630000px;}
.y108{bottom:18.000000px;}
.y127{bottom:22.230000px;}
.y10b{bottom:24.300000px;}
.y160{bottom:24.330000px;}
.y109{bottom:24.600000px;}
.y115{bottom:24.615000px;}
.y10f{bottom:24.630000px;}
.y104{bottom:24.645000px;}
.y128{bottom:28.830000px;}
.y71{bottom:30.000000px;}
.y152{bottom:30.900000px;}
.y15d{bottom:30.930000px;}
.y13f{bottom:31.200000px;}
.y155{bottom:31.245000px;}
.y112{bottom:37.485000px;}
.y10c{bottom:37.500000px;}
.y15a{bottom:37.515000px;}
.y15f{bottom:37.530000px;}
.y116{bottom:37.800000px;}
.y105{bottom:37.830000px;}
.y157{bottom:37.845000px;}
.y153{bottom:50.700000px;}
.y159{bottom:50.715000px;}
.y15e{bottom:50.730000px;}
.y156{bottom:50.745000px;}
.y9f{bottom:114.037500px;}
.y14e{bottom:114.337500px;}
.y1cc{bottom:117.937500px;}
.y70{bottom:122.437500px;}
.y3e{bottom:126.037500px;}
.y9e{bottom:130.537500px;}
.y14d{bottom:131.737500px;}
.y174{bottom:133.237500px;}
.y1cb{bottom:135.937500px;}
.yca{bottom:139.237500px;}
.y6f{bottom:139.537500px;}
.y3d{bottom:143.437500px;}
.y9d{bottom:146.737500px;}
.y14c{bottom:148.837500px;}
.y173{bottom:150.330000px;}
.yfd{bottom:151.530000px;}
.y6e{bottom:156.930000px;}
.y3c{bottom:160.530000px;}
.y9c{bottom:163.245000px;}
.y14b{bottom:166.245000px;}
.y172{bottom:167.745000px;}
.y6d{bottom:174.075000px;}
.yfc{bottom:174.375000px;}
.y1ca{bottom:174.975000px;}
.y3b{bottom:177.975000px;}
.y9b{bottom:179.775000px;}
.y14a{bottom:183.375000px;}
.y171{bottom:184.875000px;}
.y6c{bottom:191.475000px;}
.y1c9{bottom:192.975000px;}
.y3a{bottom:195.075000px;}
.y9a{bottom:195.975000px;}
.yfb{bottom:197.475000px;}
.y149{bottom:200.775000px;}
.y170{bottom:202.275000px;}
.y6b{bottom:208.575000px;}
.y39{bottom:212.475000px;}
.y1c8{bottom:213.975000px;}
.y148{bottom:217.875000px;}
.y16f{bottom:219.375000px;}
.yf9{bottom:220.275000px;}
.y6a{bottom:225.975000px;}
.y99{bottom:228.975000px;}
.y38{bottom:229.575000px;}
.y1c7{bottom:231.975000px;}
.y1a0{bottom:235.275000px;}
.y16e{bottom:236.775000px;}
.y69{bottom:243.075000px;}
.y37{bottom:246.975000px;}
.y147{bottom:249.675000px;}
.y98{bottom:249.975000px;}
.y19f{bottom:252.375000px;}
.y16d{bottom:253.875000px;}
.y68{bottom:260.475000px;}
.y72{bottom:263.904000px;}
.y36{bottom:264.075000px;}
.yf8{bottom:265.875000px;}
.y19e{bottom:269.475000px;}
.y1c6{bottom:270.975000px;}
.y16c{bottom:271.275000px;}
.y146{bottom:272.775000px;}
.y97{bottom:276.375000px;}
.y67{bottom:277.575000px;}
.y35{bottom:281.175000px;}
.y19d{bottom:286.875000px;}
.y16b{bottom:288.375000px;}
.yf7{bottom:288.675000px;}
.y1c5{bottom:288.975000px;}
.y96{bottom:293.775000px;}
.y66{bottom:294.975000px;}
.y145{bottom:295.575000px;}
.y34{bottom:298.575000px;}
.y19c{bottom:303.975000px;}
.y16a{bottom:305.775000px;}
.y1c4{bottom:309.975000px;}
.y95{bottom:310.875000px;}
.yf5{bottom:311.475000px;}
.y65{bottom:312.075000px;}
.y33{bottom:315.675000px;}
.y144{bottom:318.375000px;}
.y19b{bottom:321.375000px;}
.y169{bottom:322.875000px;}
.y1c3{bottom:327.975000px;}
.y94{bottom:328.275000px;}
.y64{bottom:329.475000px;}
.y32{bottom:333.075000px;}
.y19a{bottom:338.505000px;}
.y168{bottom:340.320000px;}
.y143{bottom:341.205000px;}
.y93{bottom:345.420000px;}
.yf4{bottom:345.705000px;}
.y1c2{bottom:346.005000px;}
.y63{bottom:346.620000px;}
.y31{bottom:350.205000px;}
.y199{bottom:355.920000px;}
.y167{bottom:357.405000px;}
.y92{bottom:362.820000px;}
.y62{bottom:364.005000px;}
.y1c1{bottom:367.005000px;}
.y30{bottom:367.605000px;}
.y166{bottom:374.805000px;}
.yf3{bottom:377.505000px;}
.y198{bottom:378.720000px;}
.y91{bottom:379.905000px;}
.y61{bottom:381.105000px;}
.yc9{bottom:384.105000px;}
.y2f{bottom:384.705000px;}
.y1c0{bottom:385.005000px;}
.y141{bottom:387.105000px;}
.y165{bottom:391.905000px;}
.y1f0{bottom:393.120000px;}
.yf2{bottom:394.605000px;}
.y90{bottom:397.320000px;}
.y60{bottom:398.505000px;}
.yc8{bottom:401.205000px;}
.y2e{bottom:402.120000px;}
.y1bf{bottom:403.005000px;}
.y197{bottom:407.820000px;}
.y140{bottom:409.905000px;}
.y1ef{bottom:411.120000px;}
.y164{bottom:413.505000px;}
.y8f{bottom:414.405000px;}
.y5f{bottom:415.620000px;}
.yf1{bottom:416.205000px;}
.yc7{bottom:418.605000px;}
.y1be{bottom:421.005000px;}
.y196{bottom:424.320000px;}
.y2d{bottom:424.905000px;}
.y1ee{bottom:429.120000px;}
.y8e{bottom:431.820000px;}
.y13e{bottom:432.705000px;}
.y5e{bottom:433.005000px;}
.yc6{bottom:435.705000px;}
.y163{bottom:439.905000px;}
.y195{bottom:440.820000px;}
.y1bd{bottom:442.005000px;}
.yf0{bottom:442.620000px;}
.y209{bottom:447.120000px;}
.y8d{bottom:448.905000px;}
.y5d{bottom:450.120000px;}
.y194{bottom:457.005000px;}
.yc5{bottom:457.320000px;}
.yef{bottom:460.005000px;}
.y2c{bottom:463.005000px;}
.y208{bottom:465.120000px;}
.y8c{bottom:466.320000px;}
.y162{bottom:466.605000px;}
.y5c{bottom:467.505000px;}
.y1ed{bottom:468.120000px;}
.y193{bottom:473.505000px;}
.yee{bottom:477.120000px;}
.y1bc{bottom:478.005000px;}
.y2b{bottom:478.620000px;}
.y207{bottom:483.120000px;}
.y5b{bottom:484.605000px;}
.y1ec{bottom:486.105000px;}
.y8b{bottom:487.620000px;}
.yc4{bottom:489.405000px;}
.y192{bottom:490.005000px;}
.y13d{bottom:493.005000px;}
.yed{bottom:494.505000px;}
.y1bb{bottom:499.005000px;}
.y5a{bottom:502.005000px;}
.y206{bottom:504.120000px;}
.y191{bottom:506.220000px;}
.y1eb{bottom:507.150000px;}
.yec{bottom:511.650000px;}
.y8a{bottom:514.350000px;}
.y1ba{bottom:517.050000px;}
.yc3{bottom:518.550000px;}
.y2a{bottom:518.850000px;}
.y59{bottom:519.150000px;}
.y205{bottom:522.150000px;}
.y190{bottom:522.750000px;}
.y1ea{bottom:525.150000px;}
.y13c{bottom:528.750000px;}
.yeb{bottom:529.050000px;}
.y89{bottom:531.450000px;}
.y29{bottom:534.150000px;}
.yc2{bottom:535.050000px;}
.y58{bottom:536.550000px;}
.y18f{bottom:538.950000px;}
.y204{bottom:540.150000px;}
.y1e9{bottom:543.150000px;}
.yea{bottom:546.150000px;}
.y88{bottom:548.850000px;}
.y28{bottom:549.750000px;}
.yc1{bottom:551.250000px;}
.y57{bottom:553.650000px;}
.y13b{bottom:554.850000px;}
.y18e{bottom:555.450000px;}
.y1b9{bottom:556.050000px;}
.y11c{bottom:556.350000px;}
.y203{bottom:561.150000px;}
.ye9{bottom:563.550000px;}
.y1e8{bottom:564.150000px;}
.y27{bottom:565.350000px;}
.y87{bottom:565.950000px;}
.yc0{bottom:567.750000px;}
.y56{bottom:571.050000px;}
.y13a{bottom:571.350000px;}
.y18d{bottom:572.250000px;}
.y11b{bottom:573.450000px;}
.y1b8{bottom:574.050000px;}
.y202{bottom:579.150000px;}
.ye8{bottom:580.650000px;}
.y26{bottom:580.950000px;}
.y1e7{bottom:582.150000px;}
.y86{bottom:583.350000px;}
.ybf{bottom:584.250000px;}
.y139{bottom:587.850000px;}
.y55{bottom:588.150000px;}
.y11a{bottom:590.550000px;}
.y161{bottom:590.850000px;}
.y1b7{bottom:592.050000px;}
.y25{bottom:596.250000px;}
.y201{bottom:597.150000px;}
.ye7{bottom:598.050000px;}
.y18c{bottom:598.650000px;}
.y1e6{bottom:600.150000px;}
.y85{bottom:600.450000px;}
.y138{bottom:604.050000px;}
.y54{bottom:605.550000px;}
.y1b6{bottom:610.050000px;}
.y24{bottom:611.850000px;}
.y119{bottom:612.150000px;}
.ye6{bottom:615.150000px;}
.y18b{bottom:615.750000px;}
.ybe{bottom:616.950000px;}
.y84{bottom:617.850000px;}
.y1e5{bottom:618.150000px;}
.y137{bottom:620.550000px;}
.y53{bottom:622.650000px;}
.y23{bottom:627.450000px;}
.y1b5{bottom:631.050000px;}
.ye5{bottom:632.550000px;}
.y18a{bottom:633.150000px;}
.ybd{bottom:633.450000px;}
.y1e4{bottom:636.150000px;}
.y52{bottom:640.050000px;}
.y22{bottom:643.050000px;}
.y118{bottom:644.250000px;}
.y1b4{bottom:649.050000px;}
.y83{bottom:649.350000px;}
.ye4{bottom:649.650000px;}
.ybc{bottom:650.250000px;}
.y136{bottom:651.150000px;}
.y15c{bottom:653.250000px;}
.y200{bottom:654.150000px;}
.y51{bottom:657.150000px;}
.y21{bottom:658.350000px;}
.ye3{bottom:667.050000px;}
.y189{bottom:667.650000px;}
.y1ff{bottom:672.150000px;}
.y20{bottom:673.950000px;}
.y50{bottom:674.550000px;}
.y1e3{bottom:675.150000px;}
.ybb{bottom:676.080000px;}
.y134{bottom:677.280000px;}
.ye2{bottom:684.180000px;}
.y188{bottom:684.780000px;}
.y1b3{bottom:688.080000px;}
.y1f{bottom:689.580000px;}
.y4f{bottom:691.695000px;}
.yba{bottom:692.280000px;}
.y1e2{bottom:693.195000px;}
.y117{bottom:696.780000px;}
.ye1{bottom:701.280000px;}
.y187{bottom:702.195000px;}
.y133{bottom:703.380000px;}
.y1e{bottom:705.195000px;}
.y1b2{bottom:706.080000px;}
.yb9{bottom:708.780000px;}
.y4e{bottom:709.080000px;}
.y1fe{bottom:711.180000px;}
.y1e1{bottom:714.195000px;}
.y15b{bottom:715.380000px;}
.ye0{bottom:718.695000px;}
.y186{bottom:719.280000px;}
.y1d{bottom:720.495000px;}
.y1b1{bottom:724.095000px;}
.yb8{bottom:724.980000px;}
.y4d{bottom:726.195000px;}
.y1fd{bottom:729.195000px;}
.y132{bottom:729.480000px;}
.y1e0{bottom:732.195000px;}
.ydf{bottom:735.780000px;}
.y1c{bottom:736.080000px;}
.y185{bottom:736.680000px;}
.yb7{bottom:741.480000px;}
.y1b0{bottom:742.080000px;}
.y4c{bottom:743.580000px;}
.y114{bottom:745.680000px;}
.y1fc{bottom:747.195000px;}
.y1df{bottom:750.180000px;}
.y1b{bottom:751.680000px;}
.yde{bottom:753.195000px;}
.y184{bottom:753.780000px;}
.y130{bottom:755.580000px;}
.yb6{bottom:757.980000px;}
.y4b{bottom:760.695000px;}
.y1af{bottom:763.080000px;}
.y1a{bottom:767.280000px;}
.y1de{bottom:768.195000px;}
.ydd{bottom:770.295000px;}
.y183{bottom:771.195000px;}
.yb5{bottom:774.195000px;}
.y158{bottom:777.480000px;}
.y4a{bottom:778.080000px;}
.y1ae{bottom:781.080000px;}
.y12e{bottom:781.695000px;}
.y19{bottom:782.580000px;}
.y1fb{bottom:786.195000px;}
.ydc{bottom:787.695000px;}
.y182{bottom:788.295000px;}
.y1dd{bottom:789.195000px;}
.yb4{bottom:790.695000px;}
.y111{bottom:794.895000px;}
.y49{bottom:795.195000px;}
.y18{bottom:798.195000px;}
.y1ad{bottom:799.080000px;}
.y1fa{bottom:804.195000px;}
.ydb{bottom:804.795000px;}
.y181{bottom:805.695000px;}
.yb3{bottom:807.195000px;}
.y12c{bottom:807.795000px;}
.y48{bottom:812.580000px;}
.y17{bottom:813.795000px;}
.y1ac{bottom:820.080000px;}
.yda{bottom:822.195000px;}
.y180{bottom:822.780000px;}
.y1dc{bottom:825.195000px;}
.yb2{bottom:828.195000px;}
.y16{bottom:829.380000px;}
.y47{bottom:829.695000px;}
.y126{bottom:834.195000px;}
.y1ab{bottom:838.080000px;}
.yd9{bottom:839.295000px;}
.y154{bottom:839.580000px;}
.y17f{bottom:840.195000px;}
.y1f9{bottom:843.195000px;}
.y10e{bottom:843.795000px;}
.y15{bottom:844.695000px;}
.y1db{bottom:846.225000px;}
.y46{bottom:847.125000px;}
.yb1{bottom:854.625000px;}
.y12a{bottom:856.125000px;}
.yd8{bottom:856.725000px;}
.y17e{bottom:857.325000px;}
.y14{bottom:860.325000px;}
.y1f8{bottom:861.225000px;}
.y45{bottom:864.225000px;}
.yb0{bottom:872.025000px;}
.y17d{bottom:874.725000px;}
.y13{bottom:875.925000px;}
.y1aa{bottom:877.125000px;}
.y82{bottom:877.725000px;}
.yd7{bottom:878.025000px;}
.y44{bottom:881.625000px;}
.y1da{bottom:882.225000px;}
.yaf{bottom:889.125000px;}
.y125{bottom:890.325000px;}
.y12{bottom:891.525000px;}
.y17c{bottom:891.825000px;}
.y10d{bottom:893.025000px;}
.y81{bottom:894.825000px;}
.y1a9{bottom:895.125000px;}
.y43{bottom:898.725000px;}
.y1f7{bottom:900.225000px;}
.y151{bottom:902.025000px;}
.y1d9{bottom:903.225000px;}
.yd6{bottom:904.725000px;}
.yae{bottom:906.525000px;}
.y11{bottom:906.825000px;}
.y17b{bottom:909.225000px;}
.y80{bottom:912.225000px;}
.y1a8{bottom:913.125000px;}
.y42{bottom:916.125000px;}
.y1d8{bottom:921.225000px;}
.yd5{bottom:921.825000px;}
.y10{bottom:922.425000px;}
.yad{bottom:923.625000px;}
.y17a{bottom:926.325000px;}
.y10a{bottom:929.025000px;}
.y7f{bottom:929.325000px;}
.y41{bottom:933.225000px;}
.y1a7{bottom:934.125000px;}
.yf{bottom:938.025000px;}
.yd4{bottom:939.225000px;}
.yac{bottom:941.025000px;}
.y179{bottom:943.725000px;}
.y7e{bottom:946.725000px;}
.y40{bottom:950.625000px;}
.y1a6{bottom:952.125000px;}
.ye{bottom:953.625000px;}
.yd3{bottom:956.325000px;}
.y1d7{bottom:957.225000px;}
.yab{bottom:958.125000px;}
.y178{bottom:960.825000px;}
.y7d{bottom:963.825000px;}
.y150{bottom:964.125000px;}
.y3f{bottom:967.725000px;}
.yd{bottom:968.925000px;}
.y1a5{bottom:973.125000px;}
.yd2{bottom:973.725000px;}
.y1d6{bottom:975.225000px;}
.yaa{bottom:975.525000px;}
.y107{bottom:977.925000px;}
.y177{bottom:978.225000px;}
.y7c{bottom:981.225000px;}
.y124{bottom:990.825000px;}
.y1a4{bottom:991.125000px;}
.ya9{bottom:992.625000px;}
.y176{bottom:995.325000px;}
.y1d5{bottom:996.225000px;}
.y7b{bottom:998.325000px;}
.yd1{bottom:999.525000px;}
.y123{bottom:1008.225000px;}
.y1a3{bottom:1009.125000px;}
.ya8{bottom:1010.025000px;}
.y175{bottom:1012.725000px;}
.y103{bottom:1013.925000px;}
.y1d4{bottom:1014.225000px;}
.y7{bottom:1017.309000px;}
.yc{bottom:1019.272500px;}
.y7a{bottom:1019.955000px;}
.yd0{bottom:1020.570000px;}
.y122{bottom:1025.370000px;}
.ya7{bottom:1027.170000px;}
.y14f{bottom:1029.855000px;}
.y1d3{bottom:1032.255000px;}
.y6{bottom:1032.834000px;}
.yb{bottom:1034.797500px;}
.y1f6{bottom:1035.255000px;}
.y121{bottom:1042.755000px;}
.ya6{bottom:1044.570000px;}
.y1a2{bottom:1045.155000px;}
.y79{bottom:1046.370000px;}
.ycf{bottom:1047.255000px;}
.y5{bottom:1048.359000px;}
.ya{bottom:1050.322500px;}
.y1d2{bottom:1053.255000px;}
.y120{bottom:1059.870000px;}
.ya5{bottom:1061.670000px;}
.y102{bottom:1063.170000px;}
.y78{bottom:1063.755000px;}
.y4{bottom:1063.884000px;}
.yce{bottom:1064.355000px;}
.y9{bottom:1065.847500px;}
.y1d1{bottom:1071.255000px;}
.y1f5{bottom:1074.255000px;}
.y11f{bottom:1077.255000px;}
.ya4{bottom:1079.070000px;}
.y3{bottom:1079.409000px;}
.y77{bottom:1080.870000px;}
.y8{bottom:1081.372500px;}
.ycd{bottom:1081.755000px;}
.y1a1{bottom:1086.570000px;}
.y1d0{bottom:1089.255000px;}
.y1f4{bottom:1092.255000px;}
.y11e{bottom:1094.370000px;}
.y101{bottom:1097.370000px;}
.ycc{bottom:1098.870000px;}
.ya3{bottom:1100.370000px;}
.y76{bottom:1103.955000px;}
.y1cf{bottom:1110.255000px;}
.y11d{bottom:1111.755000px;}
.y1f3{bottom:1113.255000px;}
.ycb{bottom:1116.255000px;}
.y1ce{bottom:1128.255000px;}
.y100{bottom:1128.870000px;}
.y1f2{bottom:1131.255000px;}
.y75{bottom:1133.355000px;}
.ya2{bottom:1135.455000px;}
.y2{bottom:1139.655000px;}
.yff{bottom:1146.255000px;}
.y1f1{bottom:1149.255000px;}
.y74{bottom:1150.755000px;}
.ya1{bottom:1151.955000px;}
.y1cd{bottom:1167.255000px;}
.yfe{bottom:1167.570000px;}
.y73{bottom:1167.870000px;}
.ya0{bottom:1168.155000px;}
.y1{bottom:1181.070000px;}
.h18{height:21.037500px;}
.he{height:21.900000px;}
.h10{height:22.185000px;}
.hc{height:22.200000px;}
.hf{height:22.237500px;}
.h1b{height:25.200000px;}
.h1c{height:25.237500px;}
.h1a{height:25.500000px;}
.hd{height:33.867188px;}
.h19{height:34.355859px;}
.h9{height:34.453125px;}
.h22{height:34.617188px;}
.h14{height:35.100000px;}
.h12{height:35.400000px;}
.h21{height:37.652344px;}
.h6{height:38.100586px;}
.h16{height:40.546875px;}
.h5{height:40.684570px;}
.hb{height:43.031250px;}
.h8{height:43.066406px;}
.h17{height:44.137500px;}
.h4{height:44.507812px;}
.h15{height:48.285000px;}
.h13{height:48.300000px;}
.h11{height:48.337500px;}
.h3{height:48.410156px;}
.ha{height:49.453125px;}
.h7{height:53.789062px;}
.h1d{height:61.200000px;}
.h20{height:61.237500px;}
.h1f{height:61.500000px;}
.h1e{height:61.537500px;}
.h2{height:129.093750px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w11{width:46.500000px;}
.wd{width:52.537500px;}
.w10{width:54.937500px;}
.w8{width:56.437500px;}
.w7{width:59.100000px;}
.w2{width:60.300000px;}
.wc{width:60.900000px;}
.wa{width:61.237500px;}
.w9{width:61.500000px;}
.wf{width:65.100000px;}
.w12{width:66.937500px;}
.w13{width:71.437500px;}
.w5{width:77.137500px;}
.w4{width:106.837500px;}
.w15{width:114.037500px;}
.wb{width:114.337500px;}
.we{width:120.037500px;}
.w14{width:170.145000px;}
.w3{width:187.275000px;}
.w6{width:277.275000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.800000px;}
.x39{left:9.585000px;}
.x18{left:11.100000px;}
.x2c{left:12.300000px;}
.x30{left:13.785000px;}
.x20{left:15.900000px;}
.x37{left:17.085000px;}
.x21{left:18.300000px;}
.x2a{left:19.807500px;}
.x1f{left:22.500000px;}
.x32{left:24.600000px;}
.x11{left:26.400000px;}
.x3f{left:28.200000px;}
.x26{left:31.200000px;}
.x1c{left:33.600000px;}
.x2f{left:40.785000px;}
.x1e{left:43.500000px;}
.x34{left:48.000000px;}
.x3d{left:55.815000px;}
.x1{left:67.837500px;}
.x1a{left:71.437500px;}
.x17{left:76.837500px;}
.xb{left:88.537500px;}
.xd{left:89.737500px;}
.x3a{left:95.137500px;}
.x25{left:109.230000px;}
.x14{left:116.437500px;}
.x28{left:129.337500px;}
.x16{left:134.137500px;}
.x29{left:136.537500px;}
.x19{left:137.737500px;}
.x15{left:143.437500px;}
.x4{left:158.274000px;}
.x33{left:160.530000px;}
.x3{left:164.574000px;}
.x2{left:167.430000px;}
.x12{left:172.845000px;}
.x5{left:189.234000px;}
.x41{left:190.575000px;}
.xc{left:192.075000px;}
.x2b{left:193.875000px;}
.x2d{left:255.975000px;}
.x35{left:258.975000px;}
.x36{left:314.820000px;}
.x2e{left:318.120000px;}
.x1b{left:325.620000px;}
.x38{left:361.920000px;}
.x31{left:379.920000px;}
.x10{left:435.300000px;}
.xe{left:460.050000px;}
.x3b{left:464.250000px;}
.x23{left:469.050000px;}
.xf{left:481.650000px;}
.x43{left:487.050000px;}
.x22{left:525.150000px;}
.x3c{left:536.280000px;}
.x7{left:538.539000px;}
.x8{left:545.724000px;}
.x24{left:547.095000px;}
.x27{left:549.495000px;}
.xa{left:556.080000px;}
.x6{left:570.324000px;}
.x13{left:577.095000px;}
.x40{left:587.595000px;}
.x9{left:591.913500px;}
.x42{left:603.780000px;}
.x3e{left:707.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.546667pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.369067pt;}
.ls6{letter-spacing:-0.298667pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.026667pt;}
.ls4{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.341333pt;}
.ls21{letter-spacing:0.368000pt;}
.ls3{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.725333pt;}
.ls15{letter-spacing:0.853333pt;}
.lse{letter-spacing:20.138667pt;}
.ws4{word-spacing:-48.000000pt;}
.ws2{word-spacing:-32.725333pt;}
.ws0{word-spacing:-31.701333pt;}
.ws1{word-spacing:-31.616000pt;}
.wsc{word-spacing:-30.080000pt;}
.ws19{word-spacing:-13.813333pt;}
.ws16{word-spacing:-13.546667pt;}
.ws9{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws24{word-spacing:-13.226667pt;}
.ws13{word-spacing:-13.120000pt;}
.ws17{word-spacing:-12.853333pt;}
.ws25{word-spacing:-12.373333pt;}
.ws1f{word-spacing:-12.266667pt;}
.ws20{word-spacing:-12.053333pt;}
.ws6{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.978667pt;}
.wsa{word-spacing:-11.786667pt;}
.ws1c{word-spacing:-10.794667pt;}
.ws8{word-spacing:-10.666667pt;}
.ws1d{word-spacing:-10.410667pt;}
.ws27{word-spacing:-9.866667pt;}
.ws21{word-spacing:-9.764267pt;}
.ws26{word-spacing:-9.333333pt;}
.ws29{word-spacing:-9.045333pt;}
.ws28{word-spacing:-8.922667pt;}
.ws22{word-spacing:-8.800000pt;}
.wse{word-spacing:-0.240000pt;}
.wsd{word-spacing:0.000000pt;}
.ws10{word-spacing:0.112000pt;}
.wsf{word-spacing:1.173333pt;}
.ws1e{word-spacing:9.546667pt;}
.ws18{word-spacing:10.773333pt;}
.ws15{word-spacing:11.946667pt;}
.ws14{word-spacing:15.680000pt;}
.ws12{word-spacing:16.106667pt;}
.ws23{word-spacing:18.346667pt;}
.ws11{word-spacing:18.560000pt;}
.ws7{word-spacing:28.053333pt;}
.ws1b{word-spacing:38.240000pt;}
.ws1a{word-spacing:41.866667pt;}
._1f{margin-left:-1361.066667pt;}
._23{margin-left:-4.314667pt;}
._12{margin-left:-3.413333pt;}
._2{margin-left:-2.512000pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.072000pt;}
._7{width:2.256000pt;}
._b{width:3.248000pt;}
._4{width:4.688000pt;}
._5{width:6.208000pt;}
._a{width:7.173333pt;}
._1a{width:8.138667pt;}
._18{width:9.642667pt;}
._e{width:10.784000pt;}
._19{width:11.957333pt;}
._3{width:13.008000pt;}
._13{width:14.400000pt;}
._9{width:15.653333pt;}
._6{width:16.752000pt;}
._c{width:17.744000pt;}
._22{width:18.752000pt;}
._d{width:19.642667pt;}
._1c{width:20.538667pt;}
._1b{width:22.133333pt;}
._17{width:23.077333pt;}
._8{width:24.720000pt;}
._14{width:26.346667pt;}
._1e{width:27.893333pt;}
._1d{width:29.013333pt;}
._2b{width:30.400000pt;}
._24{width:31.626667pt;}
._25{width:32.752000pt;}
._2d{width:34.506667pt;}
._2e{width:36.053333pt;}
._30{width:36.944000pt;}
._21{width:38.240000pt;}
._20{width:39.466667pt;}
._16{width:43.306667pt;}
._15{width:45.333333pt;}
._10{width:47.733333pt;}
._11{width:49.264000pt;}
._2c{width:51.397333pt;}
._2f{width:52.469333pt;}
._f{width:64.282667pt;}
._29{width:73.882667pt;}
._28{width:76.245333pt;}
._2a{width:87.930667pt;}
._27{width:90.480000pt;}
._26{width:104.661333pt;}
.fs4{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:40.533333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y113{bottom:9.853333pt;}
.yfa{bottom:9.866667pt;}
.y12b{bottom:9.893333pt;}
.yf6{bottom:10.133333pt;}
.y142{bottom:10.146667pt;}
.y110{bottom:10.160000pt;}
.y106{bottom:10.173333pt;}
.y135{bottom:10.400000pt;}
.y12d{bottom:10.653333pt;}
.y12f{bottom:10.666667pt;}
.y131{bottom:10.680000pt;}
.y129{bottom:13.893333pt;}
.y108{bottom:16.000000pt;}
.y127{bottom:19.760000pt;}
.y10b{bottom:21.600000pt;}
.y160{bottom:21.626667pt;}
.y109{bottom:21.866667pt;}
.y115{bottom:21.880000pt;}
.y10f{bottom:21.893333pt;}
.y104{bottom:21.906667pt;}
.y128{bottom:25.626667pt;}
.y71{bottom:26.666667pt;}
.y152{bottom:27.466667pt;}
.y15d{bottom:27.493333pt;}
.y13f{bottom:27.733333pt;}
.y155{bottom:27.773333pt;}
.y112{bottom:33.320000pt;}
.y10c{bottom:33.333333pt;}
.y15a{bottom:33.346667pt;}
.y15f{bottom:33.360000pt;}
.y116{bottom:33.600000pt;}
.y105{bottom:33.626667pt;}
.y157{bottom:33.640000pt;}
.y153{bottom:45.066667pt;}
.y159{bottom:45.080000pt;}
.y15e{bottom:45.093333pt;}
.y156{bottom:45.106667pt;}
.y9f{bottom:101.366667pt;}
.y14e{bottom:101.633333pt;}
.y1cc{bottom:104.833333pt;}
.y70{bottom:108.833333pt;}
.y3e{bottom:112.033333pt;}
.y9e{bottom:116.033333pt;}
.y14d{bottom:117.100000pt;}
.y174{bottom:118.433333pt;}
.y1cb{bottom:120.833333pt;}
.yca{bottom:123.766667pt;}
.y6f{bottom:124.033333pt;}
.y3d{bottom:127.500000pt;}
.y9d{bottom:130.433333pt;}
.y14c{bottom:132.300000pt;}
.y173{bottom:133.626667pt;}
.yfd{bottom:134.693333pt;}
.y6e{bottom:139.493333pt;}
.y3c{bottom:142.693333pt;}
.y9c{bottom:145.106667pt;}
.y14b{bottom:147.773333pt;}
.y172{bottom:149.106667pt;}
.y6d{bottom:154.733333pt;}
.yfc{bottom:155.000000pt;}
.y1ca{bottom:155.533333pt;}
.y3b{bottom:158.200000pt;}
.y9b{bottom:159.800000pt;}
.y14a{bottom:163.000000pt;}
.y171{bottom:164.333333pt;}
.y6c{bottom:170.200000pt;}
.y1c9{bottom:171.533333pt;}
.y3a{bottom:173.400000pt;}
.y9a{bottom:174.200000pt;}
.yfb{bottom:175.533333pt;}
.y149{bottom:178.466667pt;}
.y170{bottom:179.800000pt;}
.y6b{bottom:185.400000pt;}
.y39{bottom:188.866667pt;}
.y1c8{bottom:190.200000pt;}
.y148{bottom:193.666667pt;}
.y16f{bottom:195.000000pt;}
.yf9{bottom:195.800000pt;}
.y6a{bottom:200.866667pt;}
.y99{bottom:203.533333pt;}
.y38{bottom:204.066667pt;}
.y1c7{bottom:206.200000pt;}
.y1a0{bottom:209.133333pt;}
.y16e{bottom:210.466667pt;}
.y69{bottom:216.066667pt;}
.y37{bottom:219.533333pt;}
.y147{bottom:221.933333pt;}
.y98{bottom:222.200000pt;}
.y19f{bottom:224.333333pt;}
.y16d{bottom:225.666667pt;}
.y68{bottom:231.533333pt;}
.y72{bottom:234.581333pt;}
.y36{bottom:234.733333pt;}
.yf8{bottom:236.333333pt;}
.y19e{bottom:239.533333pt;}
.y1c6{bottom:240.866667pt;}
.y16c{bottom:241.133333pt;}
.y146{bottom:242.466667pt;}
.y97{bottom:245.666667pt;}
.y67{bottom:246.733333pt;}
.y35{bottom:249.933333pt;}
.y19d{bottom:255.000000pt;}
.y16b{bottom:256.333333pt;}
.yf7{bottom:256.600000pt;}
.y1c5{bottom:256.866667pt;}
.y96{bottom:261.133333pt;}
.y66{bottom:262.200000pt;}
.y145{bottom:262.733333pt;}
.y34{bottom:265.400000pt;}
.y19c{bottom:270.200000pt;}
.y16a{bottom:271.800000pt;}
.y1c4{bottom:275.533333pt;}
.y95{bottom:276.333333pt;}
.yf5{bottom:276.866667pt;}
.y65{bottom:277.400000pt;}
.y33{bottom:280.600000pt;}
.y144{bottom:283.000000pt;}
.y19b{bottom:285.666667pt;}
.y169{bottom:287.000000pt;}
.y1c3{bottom:291.533333pt;}
.y94{bottom:291.800000pt;}
.y64{bottom:292.866667pt;}
.y32{bottom:296.066667pt;}
.y19a{bottom:300.893333pt;}
.y168{bottom:302.506667pt;}
.y143{bottom:303.293333pt;}
.y93{bottom:307.040000pt;}
.yf4{bottom:307.293333pt;}
.y1c2{bottom:307.560000pt;}
.y63{bottom:308.106667pt;}
.y31{bottom:311.293333pt;}
.y199{bottom:316.373333pt;}
.y167{bottom:317.693333pt;}
.y92{bottom:322.506667pt;}
.y62{bottom:323.560000pt;}
.y1c1{bottom:326.226667pt;}
.y30{bottom:326.760000pt;}
.y166{bottom:333.160000pt;}
.yf3{bottom:335.560000pt;}
.y198{bottom:336.640000pt;}
.y91{bottom:337.693333pt;}
.y61{bottom:338.760000pt;}
.yc9{bottom:341.426667pt;}
.y2f{bottom:341.960000pt;}
.y1c0{bottom:342.226667pt;}
.y141{bottom:344.093333pt;}
.y165{bottom:348.360000pt;}
.y1f0{bottom:349.440000pt;}
.yf2{bottom:350.760000pt;}
.y90{bottom:353.173333pt;}
.y60{bottom:354.226667pt;}
.yc8{bottom:356.626667pt;}
.y2e{bottom:357.440000pt;}
.y1bf{bottom:358.226667pt;}
.y197{bottom:362.506667pt;}
.y140{bottom:364.360000pt;}
.y1ef{bottom:365.440000pt;}
.y164{bottom:367.560000pt;}
.y8f{bottom:368.360000pt;}
.y5f{bottom:369.440000pt;}
.yf1{bottom:369.960000pt;}
.yc7{bottom:372.093333pt;}
.y1be{bottom:374.226667pt;}
.y196{bottom:377.173333pt;}
.y2d{bottom:377.693333pt;}
.y1ee{bottom:381.440000pt;}
.y8e{bottom:383.840000pt;}
.y13e{bottom:384.626667pt;}
.y5e{bottom:384.893333pt;}
.yc6{bottom:387.293333pt;}
.y163{bottom:391.026667pt;}
.y195{bottom:391.840000pt;}
.y1bd{bottom:392.893333pt;}
.yf0{bottom:393.440000pt;}
.y209{bottom:397.440000pt;}
.y8d{bottom:399.026667pt;}
.y5d{bottom:400.106667pt;}
.y194{bottom:406.226667pt;}
.yc5{bottom:406.506667pt;}
.yef{bottom:408.893333pt;}
.y2c{bottom:411.560000pt;}
.y208{bottom:413.440000pt;}
.y8c{bottom:414.506667pt;}
.y162{bottom:414.760000pt;}
.y5c{bottom:415.560000pt;}
.y1ed{bottom:416.106667pt;}
.y193{bottom:420.893333pt;}
.yee{bottom:424.106667pt;}
.y1bc{bottom:424.893333pt;}
.y2b{bottom:425.440000pt;}
.y207{bottom:429.440000pt;}
.y5b{bottom:430.760000pt;}
.y1ec{bottom:432.093333pt;}
.y8b{bottom:433.440000pt;}
.yc4{bottom:435.026667pt;}
.y192{bottom:435.560000pt;}
.y13d{bottom:438.226667pt;}
.yed{bottom:439.560000pt;}
.y1bb{bottom:443.560000pt;}
.y5a{bottom:446.226667pt;}
.y206{bottom:448.106667pt;}
.y191{bottom:449.973333pt;}
.y1eb{bottom:450.800000pt;}
.yec{bottom:454.800000pt;}
.y8a{bottom:457.200000pt;}
.y1ba{bottom:459.600000pt;}
.yc3{bottom:460.933333pt;}
.y2a{bottom:461.200000pt;}
.y59{bottom:461.466667pt;}
.y205{bottom:464.133333pt;}
.y190{bottom:464.666667pt;}
.y1ea{bottom:466.800000pt;}
.y13c{bottom:470.000000pt;}
.yeb{bottom:470.266667pt;}
.y89{bottom:472.400000pt;}
.y29{bottom:474.800000pt;}
.yc2{bottom:475.600000pt;}
.y58{bottom:476.933333pt;}
.y18f{bottom:479.066667pt;}
.y204{bottom:480.133333pt;}
.y1e9{bottom:482.800000pt;}
.yea{bottom:485.466667pt;}
.y88{bottom:487.866667pt;}
.y28{bottom:488.666667pt;}
.yc1{bottom:490.000000pt;}
.y57{bottom:492.133333pt;}
.y13b{bottom:493.200000pt;}
.y18e{bottom:493.733333pt;}
.y1b9{bottom:494.266667pt;}
.y11c{bottom:494.533333pt;}
.y203{bottom:498.800000pt;}
.ye9{bottom:500.933333pt;}
.y1e8{bottom:501.466667pt;}
.y27{bottom:502.533333pt;}
.y87{bottom:503.066667pt;}
.yc0{bottom:504.666667pt;}
.y56{bottom:507.600000pt;}
.y13a{bottom:507.866667pt;}
.y18d{bottom:508.666667pt;}
.y11b{bottom:509.733333pt;}
.y1b8{bottom:510.266667pt;}
.y202{bottom:514.800000pt;}
.ye8{bottom:516.133333pt;}
.y26{bottom:516.400000pt;}
.y1e7{bottom:517.466667pt;}
.y86{bottom:518.533333pt;}
.ybf{bottom:519.333333pt;}
.y139{bottom:522.533333pt;}
.y55{bottom:522.800000pt;}
.y11a{bottom:524.933333pt;}
.y161{bottom:525.200000pt;}
.y1b7{bottom:526.266667pt;}
.y25{bottom:530.000000pt;}
.y201{bottom:530.800000pt;}
.ye7{bottom:531.600000pt;}
.y18c{bottom:532.133333pt;}
.y1e6{bottom:533.466667pt;}
.y85{bottom:533.733333pt;}
.y138{bottom:536.933333pt;}
.y54{bottom:538.266667pt;}
.y1b6{bottom:542.266667pt;}
.y24{bottom:543.866667pt;}
.y119{bottom:544.133333pt;}
.ye6{bottom:546.800000pt;}
.y18b{bottom:547.333333pt;}
.ybe{bottom:548.400000pt;}
.y84{bottom:549.200000pt;}
.y1e5{bottom:549.466667pt;}
.y137{bottom:551.600000pt;}
.y53{bottom:553.466667pt;}
.y23{bottom:557.733333pt;}
.y1b5{bottom:560.933333pt;}
.ye5{bottom:562.266667pt;}
.y18a{bottom:562.800000pt;}
.ybd{bottom:563.066667pt;}
.y1e4{bottom:565.466667pt;}
.y52{bottom:568.933333pt;}
.y22{bottom:571.600000pt;}
.y118{bottom:572.666667pt;}
.y1b4{bottom:576.933333pt;}
.y83{bottom:577.200000pt;}
.ye4{bottom:577.466667pt;}
.ybc{bottom:578.000000pt;}
.y136{bottom:578.800000pt;}
.y15c{bottom:580.666667pt;}
.y200{bottom:581.466667pt;}
.y51{bottom:584.133333pt;}
.y21{bottom:585.200000pt;}
.ye3{bottom:592.933333pt;}
.y189{bottom:593.466667pt;}
.y1ff{bottom:597.466667pt;}
.y20{bottom:599.066667pt;}
.y50{bottom:599.600000pt;}
.y1e3{bottom:600.133333pt;}
.ybb{bottom:600.960000pt;}
.y134{bottom:602.026667pt;}
.ye2{bottom:608.160000pt;}
.y188{bottom:608.693333pt;}
.y1b3{bottom:611.626667pt;}
.y1f{bottom:612.960000pt;}
.y4f{bottom:614.840000pt;}
.yba{bottom:615.360000pt;}
.y1e2{bottom:616.173333pt;}
.y117{bottom:619.360000pt;}
.ye1{bottom:623.360000pt;}
.y187{bottom:624.173333pt;}
.y133{bottom:625.226667pt;}
.y1e{bottom:626.840000pt;}
.y1b2{bottom:627.626667pt;}
.yb9{bottom:630.026667pt;}
.y4e{bottom:630.293333pt;}
.y1fe{bottom:632.160000pt;}
.y1e1{bottom:634.840000pt;}
.y15b{bottom:635.893333pt;}
.ye0{bottom:638.840000pt;}
.y186{bottom:639.360000pt;}
.y1d{bottom:640.440000pt;}
.y1b1{bottom:643.640000pt;}
.yb8{bottom:644.426667pt;}
.y4d{bottom:645.506667pt;}
.y1fd{bottom:648.173333pt;}
.y132{bottom:648.426667pt;}
.y1e0{bottom:650.840000pt;}
.ydf{bottom:654.026667pt;}
.y1c{bottom:654.293333pt;}
.y185{bottom:654.826667pt;}
.yb7{bottom:659.093333pt;}
.y1b0{bottom:659.626667pt;}
.y4c{bottom:660.960000pt;}
.y114{bottom:662.826667pt;}
.y1fc{bottom:664.173333pt;}
.y1df{bottom:666.826667pt;}
.y1b{bottom:668.160000pt;}
.yde{bottom:669.506667pt;}
.y184{bottom:670.026667pt;}
.y130{bottom:671.626667pt;}
.yb6{bottom:673.760000pt;}
.y4b{bottom:676.173333pt;}
.y1af{bottom:678.293333pt;}
.y1a{bottom:682.026667pt;}
.y1de{bottom:682.840000pt;}
.ydd{bottom:684.706667pt;}
.y183{bottom:685.506667pt;}
.yb5{bottom:688.173333pt;}
.y158{bottom:691.093333pt;}
.y4a{bottom:691.626667pt;}
.y1ae{bottom:694.293333pt;}
.y12e{bottom:694.840000pt;}
.y19{bottom:695.626667pt;}
.y1fb{bottom:698.840000pt;}
.ydc{bottom:700.173333pt;}
.y182{bottom:700.706667pt;}
.y1dd{bottom:701.506667pt;}
.yb4{bottom:702.840000pt;}
.y111{bottom:706.573333pt;}
.y49{bottom:706.840000pt;}
.y18{bottom:709.506667pt;}
.y1ad{bottom:710.293333pt;}
.y1fa{bottom:714.840000pt;}
.ydb{bottom:715.373333pt;}
.y181{bottom:716.173333pt;}
.yb3{bottom:717.506667pt;}
.y12c{bottom:718.040000pt;}
.y48{bottom:722.293333pt;}
.y17{bottom:723.373333pt;}
.y1ac{bottom:728.960000pt;}
.yda{bottom:730.840000pt;}
.y180{bottom:731.360000pt;}
.y1dc{bottom:733.506667pt;}
.yb2{bottom:736.173333pt;}
.y16{bottom:737.226667pt;}
.y47{bottom:737.506667pt;}
.y126{bottom:741.506667pt;}
.y1ab{bottom:744.960000pt;}
.yd9{bottom:746.040000pt;}
.y154{bottom:746.293333pt;}
.y17f{bottom:746.840000pt;}
.y1f9{bottom:749.506667pt;}
.y10e{bottom:750.040000pt;}
.y15{bottom:750.840000pt;}
.y1db{bottom:752.200000pt;}
.y46{bottom:753.000000pt;}
.yb1{bottom:759.666667pt;}
.y12a{bottom:761.000000pt;}
.yd8{bottom:761.533333pt;}
.y17e{bottom:762.066667pt;}
.y14{bottom:764.733333pt;}
.y1f8{bottom:765.533333pt;}
.y45{bottom:768.200000pt;}
.yb0{bottom:775.133333pt;}
.y17d{bottom:777.533333pt;}
.y13{bottom:778.600000pt;}
.y1aa{bottom:779.666667pt;}
.y82{bottom:780.200000pt;}
.yd7{bottom:780.466667pt;}
.y44{bottom:783.666667pt;}
.y1da{bottom:784.200000pt;}
.yaf{bottom:790.333333pt;}
.y125{bottom:791.400000pt;}
.y12{bottom:792.466667pt;}
.y17c{bottom:792.733333pt;}
.y10d{bottom:793.800000pt;}
.y81{bottom:795.400000pt;}
.y1a9{bottom:795.666667pt;}
.y43{bottom:798.866667pt;}
.y1f7{bottom:800.200000pt;}
.y151{bottom:801.800000pt;}
.y1d9{bottom:802.866667pt;}
.yd6{bottom:804.200000pt;}
.yae{bottom:805.800000pt;}
.y11{bottom:806.066667pt;}
.y17b{bottom:808.200000pt;}
.y80{bottom:810.866667pt;}
.y1a8{bottom:811.666667pt;}
.y42{bottom:814.333333pt;}
.y1d8{bottom:818.866667pt;}
.yd5{bottom:819.400000pt;}
.y10{bottom:819.933333pt;}
.yad{bottom:821.000000pt;}
.y17a{bottom:823.400000pt;}
.y10a{bottom:825.800000pt;}
.y7f{bottom:826.066667pt;}
.y41{bottom:829.533333pt;}
.y1a7{bottom:830.333333pt;}
.yf{bottom:833.800000pt;}
.yd4{bottom:834.866667pt;}
.yac{bottom:836.466667pt;}
.y179{bottom:838.866667pt;}
.y7e{bottom:841.533333pt;}
.y40{bottom:845.000000pt;}
.y1a6{bottom:846.333333pt;}
.ye{bottom:847.666667pt;}
.yd3{bottom:850.066667pt;}
.y1d7{bottom:850.866667pt;}
.yab{bottom:851.666667pt;}
.y178{bottom:854.066667pt;}
.y7d{bottom:856.733333pt;}
.y150{bottom:857.000000pt;}
.y3f{bottom:860.200000pt;}
.yd{bottom:861.266667pt;}
.y1a5{bottom:865.000000pt;}
.yd2{bottom:865.533333pt;}
.y1d6{bottom:866.866667pt;}
.yaa{bottom:867.133333pt;}
.y107{bottom:869.266667pt;}
.y177{bottom:869.533333pt;}
.y7c{bottom:872.200000pt;}
.y124{bottom:880.733333pt;}
.y1a4{bottom:881.000000pt;}
.ya9{bottom:882.333333pt;}
.y176{bottom:884.733333pt;}
.y1d5{bottom:885.533333pt;}
.y7b{bottom:887.400000pt;}
.yd1{bottom:888.466667pt;}
.y123{bottom:896.200000pt;}
.y1a3{bottom:897.000000pt;}
.ya8{bottom:897.800000pt;}
.y175{bottom:900.200000pt;}
.y103{bottom:901.266667pt;}
.y1d4{bottom:901.533333pt;}
.y7{bottom:904.274667pt;}
.yc{bottom:906.020000pt;}
.y7a{bottom:906.626667pt;}
.yd0{bottom:907.173333pt;}
.y122{bottom:911.440000pt;}
.ya7{bottom:913.040000pt;}
.y14f{bottom:915.426667pt;}
.y1d3{bottom:917.560000pt;}
.y6{bottom:918.074667pt;}
.yb{bottom:919.820000pt;}
.y1f6{bottom:920.226667pt;}
.y121{bottom:926.893333pt;}
.ya6{bottom:928.506667pt;}
.y1a2{bottom:929.026667pt;}
.y79{bottom:930.106667pt;}
.ycf{bottom:930.893333pt;}
.y5{bottom:931.874667pt;}
.ya{bottom:933.620000pt;}
.y1d2{bottom:936.226667pt;}
.y120{bottom:942.106667pt;}
.ya5{bottom:943.706667pt;}
.y102{bottom:945.040000pt;}
.y78{bottom:945.560000pt;}
.y4{bottom:945.674667pt;}
.yce{bottom:946.093333pt;}
.y9{bottom:947.420000pt;}
.y1d1{bottom:952.226667pt;}
.y1f5{bottom:954.893333pt;}
.y11f{bottom:957.560000pt;}
.ya4{bottom:959.173333pt;}
.y3{bottom:959.474667pt;}
.y77{bottom:960.773333pt;}
.y8{bottom:961.220000pt;}
.ycd{bottom:961.560000pt;}
.y1a1{bottom:965.840000pt;}
.y1d0{bottom:968.226667pt;}
.y1f4{bottom:970.893333pt;}
.y11e{bottom:972.773333pt;}
.y101{bottom:975.440000pt;}
.ycc{bottom:976.773333pt;}
.ya3{bottom:978.106667pt;}
.y76{bottom:981.293333pt;}
.y1cf{bottom:986.893333pt;}
.y11d{bottom:988.226667pt;}
.y1f3{bottom:989.560000pt;}
.ycb{bottom:992.226667pt;}
.y1ce{bottom:1002.893333pt;}
.y100{bottom:1003.440000pt;}
.y1f2{bottom:1005.560000pt;}
.y75{bottom:1007.426667pt;}
.ya2{bottom:1009.293333pt;}
.y2{bottom:1013.026667pt;}
.yff{bottom:1018.893333pt;}
.y1f1{bottom:1021.560000pt;}
.y74{bottom:1022.893333pt;}
.ya1{bottom:1023.960000pt;}
.y1cd{bottom:1037.560000pt;}
.yfe{bottom:1037.840000pt;}
.y73{bottom:1038.106667pt;}
.ya0{bottom:1038.360000pt;}
.y1{bottom:1049.840000pt;}
.h18{height:18.700000pt;}
.he{height:19.466667pt;}
.h10{height:19.720000pt;}
.hc{height:19.733333pt;}
.hf{height:19.766667pt;}
.h1b{height:22.400000pt;}
.h1c{height:22.433333pt;}
.h1a{height:22.666667pt;}
.hd{height:30.104167pt;}
.h19{height:30.538542pt;}
.h9{height:30.625000pt;}
.h22{height:30.770833pt;}
.h14{height:31.200000pt;}
.h12{height:31.466667pt;}
.h21{height:33.468750pt;}
.h6{height:33.867188pt;}
.h16{height:36.041667pt;}
.h5{height:36.164062pt;}
.hb{height:38.250000pt;}
.h8{height:38.281250pt;}
.h17{height:39.233333pt;}
.h4{height:39.562500pt;}
.h15{height:42.920000pt;}
.h13{height:42.933333pt;}
.h11{height:42.966667pt;}
.h3{height:43.031250pt;}
.ha{height:43.958333pt;}
.h7{height:47.812500pt;}
.h1d{height:54.400000pt;}
.h20{height:54.433333pt;}
.h1f{height:54.666667pt;}
.h1e{height:54.700000pt;}
.h2{height:114.750000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w11{width:41.333333pt;}
.wd{width:46.700000pt;}
.w10{width:48.833333pt;}
.w8{width:50.166667pt;}
.w7{width:52.533333pt;}
.w2{width:53.600000pt;}
.wc{width:54.133333pt;}
.wa{width:54.433333pt;}
.w9{width:54.666667pt;}
.wf{width:57.866667pt;}
.w12{width:59.500000pt;}
.w13{width:63.500000pt;}
.w5{width:68.566667pt;}
.w4{width:94.966667pt;}
.w15{width:101.366667pt;}
.wb{width:101.633333pt;}
.we{width:106.700000pt;}
.w14{width:151.240000pt;}
.w3{width:166.466667pt;}
.w6{width:246.466667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.933333pt;}
.x39{left:8.520000pt;}
.x18{left:9.866667pt;}
.x2c{left:10.933333pt;}
.x30{left:12.253333pt;}
.x20{left:14.133333pt;}
.x37{left:15.186667pt;}
.x21{left:16.266667pt;}
.x2a{left:17.606667pt;}
.x1f{left:20.000000pt;}
.x32{left:21.866667pt;}
.x11{left:23.466667pt;}
.x3f{left:25.066667pt;}
.x26{left:27.733333pt;}
.x1c{left:29.866667pt;}
.x2f{left:36.253333pt;}
.x1e{left:38.666667pt;}
.x34{left:42.666667pt;}
.x3d{left:49.613333pt;}
.x1{left:60.300000pt;}
.x1a{left:63.500000pt;}
.x17{left:68.300000pt;}
.xb{left:78.700000pt;}
.xd{left:79.766667pt;}
.x3a{left:84.566667pt;}
.x25{left:97.093333pt;}
.x14{left:103.500000pt;}
.x28{left:114.966667pt;}
.x16{left:119.233333pt;}
.x29{left:121.366667pt;}
.x19{left:122.433333pt;}
.x15{left:127.500000pt;}
.x4{left:140.688000pt;}
.x33{left:142.693333pt;}
.x3{left:146.288000pt;}
.x2{left:148.826667pt;}
.x12{left:153.640000pt;}
.x5{left:168.208000pt;}
.x41{left:169.400000pt;}
.xc{left:170.733333pt;}
.x2b{left:172.333333pt;}
.x2d{left:227.533333pt;}
.x35{left:230.200000pt;}
.x36{left:279.840000pt;}
.x2e{left:282.773333pt;}
.x1b{left:289.440000pt;}
.x38{left:321.706667pt;}
.x31{left:337.706667pt;}
.x10{left:386.933333pt;}
.xe{left:408.933333pt;}
.x3b{left:412.666667pt;}
.x23{left:416.933333pt;}
.xf{left:428.133333pt;}
.x43{left:432.933333pt;}
.x22{left:466.800000pt;}
.x3c{left:476.693333pt;}
.x7{left:478.701333pt;}
.x8{left:485.088000pt;}
.x24{left:486.306667pt;}
.x27{left:488.440000pt;}
.xa{left:494.293333pt;}
.x6{left:506.954667pt;}
.x13{left:512.973333pt;}
.x40{left:522.306667pt;}
.x9{left:526.145333pt;}
.x42{left:536.693333pt;}
.x3e{left:628.733333pt;}
}




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