
    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_5c11e35d17bdb63cff8094d0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_1ab604d1d74e251af516b0ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_a8cb7ac6e0aab31a18753ca7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_2951389a49e23ffd1a944cd6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_1fdae4c957b55f1b8b15d1f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.680664;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_ed211566dc0f2660a712c98c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.306152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-25.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.400000px;}
.v6{vertical-align:13.200000px;}
.v1{vertical-align:25.800000px;}
.v3{vertical-align:34.800000px;}
.v5{vertical-align:69.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls2{letter-spacing:3.000000px;}
.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;}
}
.ws13{word-spacing:-22.176000px;}
.ws1{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.000000px;}
.wse{word-spacing:-14.250000px;}
.ws0{word-spacing:-9.600000px;}
.ws1d{word-spacing:-6.426000px;}
.ws12{word-spacing:-6.270000px;}
.ws22{word-spacing:-5.940000px;}
.ws10{word-spacing:-5.676000px;}
.ws23{word-spacing:-5.610000px;}
.ws11{word-spacing:-5.544000px;}
.ws16{word-spacing:-5.214000px;}
.ws18{word-spacing:-5.016000px;}
.ws21{word-spacing:-4.752000px;}
.ws1f{word-spacing:-4.422000px;}
.ws1c{word-spacing:-3.828000px;}
.ws1e{word-spacing:-3.432000px;}
.ws15{word-spacing:-2.574000px;}
.ws2{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.330000px;}
.ws1b{word-spacing:0.462000px;}
.ws19{word-spacing:3.960000px;}
.ws20{word-spacing:4.224000px;}
.ws17{word-spacing:4.620000px;}
.ws14{word-spacing:7.854000px;}
.ws6{word-spacing:91.500000px;}
.ws4{word-spacing:107.934000px;}
.wsf{word-spacing:113.421000px;}
.ws5{word-spacing:120.234000px;}
.ws8{word-spacing:173.820000px;}
.wsb{word-spacing:220.620000px;}
.wsd{word-spacing:260.520000px;}
.wsc{word-spacing:263.820000px;}
.ws9{word-spacing:430.500000px;}
.wsa{word-spacing:546.120000px;}
._aa{margin-left:-2779.092000px;}
._bc{margin-left:-2773.758000px;}
._b1{margin-left:-2767.194000px;}
._52{margin-left:-2749.014000px;}
._a2{margin-left:-2727.780000px;}
._6f{margin-left:-2719.974000px;}
._8f{margin-left:-2699.184000px;}
._67{margin-left:-2665.509000px;}
._9e{margin-left:-2650.446000px;}
._79{margin-left:-2642.478000px;}
._8a{margin-left:-2637.384000px;}
._7e{margin-left:-2596.620000px;}
._af{margin-left:-2582.898000px;}
._82{margin-left:-2578.095000px;}
._5e{margin-left:-2556.408000px;}
._95{margin-left:-2535.171000px;}
._9a{margin-left:-2502.270000px;}
._b7{margin-left:-2473.350000px;}
._40{margin-left:-2090.100000px;}
._c0{margin-left:-2025.582000px;}
._c3{margin-left:-1772.037000px;}
._45{margin-left:-1518.864000px;}
._14{margin-left:-837.282000px;}
._46{margin-left:-742.956000px;}
._17{margin-left:-722.310000px;}
._be{margin-left:-614.622000px;}
._44{margin-left:-591.012000px;}
._3a{margin-left:-341.922000px;}
._bf{margin-left:-172.656000px;}
._41{margin-left:-18.084000px;}
._5f{margin-left:-16.764000px;}
._6b{margin-left:-6.300000px;}
._4{margin-left:-1.206000px;}
._1{width:1.230000px;}
._0{width:2.244000px;}
._7{width:3.366000px;}
._a{width:4.578000px;}
._5{width:5.664000px;}
._8{width:6.702000px;}
._9{width:7.728000px;}
._2{width:8.730000px;}
._3{width:10.128000px;}
._6{width:11.364000px;}
._c{width:12.402000px;}
._e{width:14.064000px;}
._f{width:15.312000px;}
._10{width:17.616000px;}
._12{width:19.080000px;}
._11{width:20.112000px;}
._d{width:21.912000px;}
._37{width:24.156000px;}
._38{width:25.212000px;}
._b2{width:28.248000px;}
._63{width:29.634000px;}
._98{width:30.660000px;}
._2b{width:31.680000px;}
._2c{width:32.736000px;}
._36{width:33.858000px;}
._86{width:35.310000px;}
._78{width:37.422000px;}
._8b{width:38.874000px;}
._b4{width:40.128000px;}
._59{width:41.316000px;}
._4a{width:42.891000px;}
._b3{width:44.088000px;}
._7f{width:47.322000px;}
._ba{width:48.708000px;}
._a7{width:49.770000px;}
._49{width:51.810000px;}
._70{width:53.592000px;}
._94{width:55.704000px;}
._58{width:57.222000px;}
._13{width:58.500000px;}
._89{width:59.664000px;}
._77{width:60.852000px;}
._16{width:62.262000px;}
._27{width:64.260000px;}
._53{width:65.910000px;}
._4f{width:67.800000px;}
._19{width:69.522000px;}
._69{width:73.458000px;}
._84{width:77.106000px;}
._1d{width:81.840000px;}
._b8{width:84.270000px;}
._b9{width:86.064000px;}
._71{width:87.366000px;}
._7a{width:89.514000px;}
._93{width:90.816000px;}
._2d{width:92.730000px;}
._6e{width:95.964000px;}
._c2{width:97.152000px;}
._51{width:99.858000px;}
._97{width:102.234000px;}
._64{width:104.346000px;}
._7c{width:105.534000px;}
._80{width:106.722000px;}
._b{width:108.000000px;}
._4d{width:111.210000px;}
._bd{width:112.728000px;}
._61{width:114.132000px;}
._3e{width:115.290000px;}
._9d{width:116.376000px;}
._5a{width:117.810000px;}
._74{width:119.922000px;}
._ab{width:123.948000px;}
._76{width:127.116000px;}
._a1{width:128.841000px;}
._91{width:131.142000px;}
._2e{width:133.830000px;}
._7b{width:135.630000px;}
._65{width:138.534000px;}
._33{width:140.211000px;}
._57{width:141.504000px;}
._31{width:143.520000px;}
._4e{width:145.329000px;}
._30{width:146.595000px;}
._a5{width:147.840000px;}
._60{width:149.952000px;}
._4c{width:151.734000px;}
._24{width:153.780000px;}
._3b{width:155.874000px;}
._9f{width:158.169000px;}
._85{width:159.753000px;}
._47{width:161.040000px;}
._29{width:162.600000px;}
._6c{width:164.010000px;}
._55{width:165.858000px;}
._87{width:168.318000px;}
._50{width:170.346000px;}
._83{width:171.969000px;}
._ac{width:173.451000px;}
._34{width:174.924000px;}
._73{width:176.766000px;}
._9b{width:178.365000px;}
._bb{width:179.718000px;}
._62{width:181.434000px;}
._b0{width:182.952000px;}
._75{width:185.064000px;}
._42{width:186.252000px;}
._7d{width:187.770000px;}
._39{width:189.222000px;}
._32{width:190.884000px;}
._56{width:192.627000px;}
._5c{width:194.634000px;}
._72{width:195.714000px;}
._66{width:196.746000px;}
._25{width:198.180000px;}
._54{width:199.716000px;}
._2f{width:200.871000px;}
._3c{width:203.016000px;}
._1b{width:204.840000px;}
._b6{width:206.127000px;}
._ad{width:208.266000px;}
._43{width:212.058000px;}
._6d{width:216.060000px;}
._2a{width:217.200000px;}
._68{width:218.256000px;}
._3d{width:219.732000px;}
._99{width:221.250000px;}
._a4{width:222.966000px;}
._a9{width:224.205000px;}
._9c{width:225.951000px;}
._a0{width:227.709000px;}
._81{width:229.152000px;}
._1e{width:230.460000px;}
._8c{width:232.092000px;}
._8d{width:233.994000px;}
._22{width:235.560000px;}
._a8{width:240.639000px;}
._90{width:242.022000px;}
._92{width:243.786000px;}
._35{width:247.887000px;}
._1f{width:249.660000px;}
._ae{width:251.121000px;}
._88{width:252.516000px;}
._a3{width:254.958000px;}
._96{width:260.040000px;}
._4b{width:273.504000px;}
._23{width:275.520000px;}
._1c{width:285.360000px;}
._3f{width:291.852000px;}
._a6{width:296.934000px;}
._b5{width:298.122000px;}
._21{width:302.100000px;}
._5d{width:304.458000px;}
._48{width:311.652000px;}
._8e{width:322.146000px;}
._6a{width:324.498000px;}
._5b{width:326.304000px;}
._26{width:342.000000px;}
._28{width:352.200000px;}
._20{width:358.800000px;}
._c1{width:366.696000px;}
._1a{width:388.380000px;}
._18{width:689.040000px;}
._15{width:804.540000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.400000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yb6{bottom:113.808000px;}
.y1a7{bottom:115.758000px;}
.y1bc{bottom:115.833000px;}
.y18e{bottom:116.808000px;}
.y102{bottom:117.183000px;}
.y53{bottom:122.658000px;}
.y7a{bottom:124.983000px;}
.yef{bottom:125.433000px;}
.y1ee{bottom:126.858000px;}
.ya0{bottom:127.833000px;}
.y162{bottom:128.358000px;}
.yce{bottom:131.658000px;}
.y206{bottom:133.758000px;}
.y94{bottom:134.583000px;}
.yb5{bottom:135.558000px;}
.y101{bottom:138.933000px;}
.y13a{bottom:142.758000px;}
.y1ed{bottom:143.283000px;}
.y52{bottom:144.408000px;}
.y22e{bottom:145.683000px;}
.yf3{bottom:146.658000px;}
.y79{bottom:146.733000px;}
.yee{bottom:147.183000px;}
.y9f{bottom:149.583000px;}
.y161{bottom:150.108000px;}
.ycd{bottom:153.408000px;}
.y1a6{bottom:153.708000px;}
.y1bb{bottom:153.783000px;}
.y18d{bottom:154.758000px;}
.y93{bottom:156.333000px;}
.yb4{bottom:157.308000px;}
.y1ec{bottom:159.708000px;}
.y100{bottom:160.683000px;}
.y139{bottom:162.558000px;}
.y22d{bottom:164.658000px;}
.y51{bottom:166.158000px;}
.yf2{bottom:168.408000px;}
.y138{bottom:171.258000px;}
.y9e{bottom:171.333000px;}
.y160{bottom:171.858000px;}
.y203{bottom:173.733000px;}
.ycc{bottom:175.158000px;}
.y1eb{bottom:176.133000px;}
.y92{bottom:178.083000px;}
.yb3{bottom:179.058000px;}
.y22c{bottom:183.633000px;}
.yed{bottom:183.933000px;}
.y50{bottom:187.908000px;}
.yff{bottom:188.658000px;}
.yf1{bottom:190.158000px;}
.y1a5{bottom:191.658000px;}
.y1ba{bottom:191.733000px;}
.y1ea{bottom:192.558000px;}
.y18c{bottom:192.708000px;}
.y9d{bottom:193.083000px;}
.y78{bottom:193.158000px;}
.y15f{bottom:193.608000px;}
.ycb{bottom:196.908000px;}
.y137{bottom:198.333000px;}
.y91{bottom:199.833000px;}
.yb2{bottom:200.808000px;}
.y22b{bottom:202.608000px;}
.yec{bottom:205.683000px;}
.y10e{bottom:206.583000px;}
.y136{bottom:207.033000px;}
.y1e9{bottom:208.983000px;}
.y4f{bottom:209.658000px;}
.y202{bottom:211.683000px;}
.yf0{bottom:211.908000px;}
.y9c{bottom:214.833000px;}
.y15e{bottom:215.358000px;}
.yca{bottom:218.658000px;}
.y77{bottom:221.583000px;}
.yb1{bottom:222.558000px;}
.y1e8{bottom:225.408000px;}
.yeb{bottom:227.433000px;}
.y1a4{bottom:229.608000px;}
.y1b9{bottom:229.683000px;}
.y18b{bottom:230.658000px;}
.y4e{bottom:231.408000px;}
.yd9{bottom:233.658000px;}
.y135{bottom:234.108000px;}
.y9b{bottom:236.583000px;}
.y15d{bottom:237.108000px;}
.yd6{bottom:240.408000px;}
.y22a{bottom:240.558000px;}
.y1e7{bottom:241.833000px;}
.y90{bottom:243.333000px;}
.yb0{bottom:244.308000px;}
.yea{bottom:249.183000px;}
.y201{bottom:249.633000px;}
.y134{bottom:251.433000px;}
.y4d{bottom:253.158000px;}
.yc9{bottom:255.408000px;}
.y1e6{bottom:258.258000px;}
.y76{bottom:258.333000px;}
.y229{bottom:259.533000px;}
.yd5{bottom:262.158000px;}
.y8f{bottom:265.083000px;}
.y1a3{bottom:267.558000px;}
.y1b8{bottom:267.633000px;}
.y18a{bottom:268.608000px;}
.y131{bottom:268.758000px;}
.ye9{bottom:270.933000px;}
.yaf{bottom:272.358000px;}
.y15c{bottom:273.858000px;}
.y1e5{bottom:274.683000px;}
.y4c{bottom:274.908000px;}
.yc8{bottom:277.158000px;}
.y228{bottom:278.508000px;}
.y21{bottom:278.808000px;}
.y75{bottom:280.083000px;}
.yd4{bottom:283.908000px;}
.y133{bottom:286.083000px;}
.y8e{bottom:286.833000px;}
.y200{bottom:287.583000px;}
.y1e4{bottom:291.108000px;}
.ye8{bottom:292.683000px;}
.y15b{bottom:295.608000px;}
.y227{bottom:297.483000px;}
.y20{bottom:297.783000px;}
.yc7{bottom:298.908000px;}
.y74{bottom:301.833000px;}
.y132{bottom:303.408000px;}
.y1a2{bottom:305.508000px;}
.y1b7{bottom:305.583000px;}
.yd3{bottom:305.658000px;}
.y189{bottom:306.558000px;}
.y1e3{bottom:309.033000px;}
.y4b{bottom:311.658000px;}
.ye7{bottom:314.433000px;}
.y226{bottom:316.458000px;}
.y1f{bottom:316.758000px;}
.y15a{bottom:317.358000px;}
.yc6{bottom:320.658000px;}
.y73{bottom:323.583000px;}
.yae{bottom:324.108000px;}
.y130{bottom:325.008000px;}
.y1e2{bottom:325.458000px;}
.y1ff{bottom:325.533000px;}
.yd2{bottom:327.408000px;}
.y4a{bottom:333.408000px;}
.y225{bottom:335.433000px;}
.y1e{bottom:335.733000px;}
.ye6{bottom:336.183000px;}
.y159{bottom:339.108000px;}
.y1e1{bottom:341.883000px;}
.yc5{bottom:342.408000px;}
.y1a1{bottom:343.458000px;}
.y1b6{bottom:343.533000px;}
.y188{bottom:344.508000px;}
.y72{bottom:345.333000px;}
.yad{bottom:345.858000px;}
.y12f{bottom:346.608000px;}
.yfe{bottom:349.158000px;}
.y224{bottom:354.408000px;}
.y49{bottom:355.158000px;}
.ye5{bottom:357.933000px;}
.y1e0{bottom:358.308000px;}
.y9a{bottom:360.333000px;}
.y158{bottom:360.858000px;}
.y1fe{bottom:363.483000px;}
.y12e{bottom:363.933000px;}
.yc4{bottom:364.158000px;}
.y71{bottom:367.083000px;}
.yac{bottom:367.608000px;}
.y27{bottom:369.708000px;}
.yfd{bottom:370.908000px;}
.y223{bottom:373.383000px;}
.y1df{bottom:374.733000px;}
.y48{bottom:376.908000px;}
.ye4{bottom:379.683000px;}
.y249{bottom:380.283000px;}
.y1a0{bottom:381.408000px;}
.y1b5{bottom:381.483000px;}
.y99{bottom:382.083000px;}
.y12d{bottom:382.383000px;}
.y187{bottom:382.458000px;}
.y157{bottom:382.608000px;}
.yc3{bottom:385.908000px;}
.y70{bottom:388.833000px;}
.yab{bottom:389.358000px;}
.y1de{bottom:391.158000px;}
.y222{bottom:392.358000px;}
.yfc{bottom:392.658000px;}
.y47{bottom:398.658000px;}
.y12b{bottom:399.708000px;}
.ye3{bottom:401.433000px;}
.y1d{bottom:403.683000px;}
.y98{bottom:403.833000px;}
.y156{bottom:404.358000px;}
.yc2{bottom:407.658000px;}
.y1dd{bottom:409.083000px;}
.y6f{bottom:410.583000px;}
.yaa{bottom:411.108000px;}
.y221{bottom:411.333000px;}
.y248{bottom:414.258000px;}
.yfb{bottom:414.408000px;}
.y12c{bottom:417.033000px;}
.y175{bottom:418.758000px;}
.y10d{bottom:418.833000px;}
.y19f{bottom:419.358000px;}
.y1b4{bottom:419.433000px;}
.y46{bottom:420.408000px;}
.ye2{bottom:423.183000px;}
.y1dc{bottom:425.508000px;}
.y97{bottom:425.583000px;}
.y155{bottom:426.108000px;}
.yc1{bottom:429.408000px;}
.y220{bottom:430.308000px;}
.y6e{bottom:432.333000px;}
.ya9{bottom:432.858000px;}
.y247{bottom:433.233000px;}
.y174{bottom:436.083000px;}
.y1c{bottom:437.658000px;}
.y12a{bottom:438.633000px;}
.y1fd{bottom:439.383000px;}
.y10c{bottom:440.583000px;}
.y1db{bottom:441.933000px;}
.ye1{bottom:444.933000px;}
.y96{bottom:447.333000px;}
.y21f{bottom:449.283000px;}
.yc0{bottom:451.158000px;}
.y246{bottom:452.208000px;}
.y173{bottom:453.408000px;}
.y6d{bottom:454.083000px;}
.ya8{bottom:454.608000px;}
.y26{bottom:456.483000px;}
.y19e{bottom:457.308000px;}
.y45{bottom:457.383000px;}
.y186{bottom:458.358000px;}
.y10b{bottom:462.333000px;}
.y129{bottom:462.633000px;}
.y154{bottom:462.858000px;}
.ye0{bottom:466.683000px;}
.y21e{bottom:468.258000px;}
.y95{bottom:469.083000px;}
.y172{bottom:470.733000px;}
.y245{bottom:471.183000px;}
.ybf{bottom:472.908000px;}
.y1da{bottom:474.783000px;}
.y1b{bottom:475.608000px;}
.y8d{bottom:475.833000px;}
.ya7{bottom:476.358000px;}
.y1fc{bottom:477.333000px;}
.y128{bottom:479.958000px;}
.y10a{bottom:484.083000px;}
.y153{bottom:484.608000px;}
.y44{bottom:485.358000px;}
.y21d{bottom:487.233000px;}
.y171{bottom:488.058000px;}
.ydf{bottom:488.433000px;}
.y244{bottom:490.158000px;}
.y6c{bottom:490.833000px;}
.y1d9{bottom:491.208000px;}
.y1a{bottom:494.583000px;}
.ybe{bottom:494.658000px;}
.y19d{bottom:495.258000px;}
.y1b3{bottom:495.333000px;}
.y185{bottom:496.308000px;}
.y8c{bottom:497.583000px;}
.ya6{bottom:498.108000px;}
.y127{bottom:503.883000px;}
.y170{bottom:505.383000px;}
.y109{bottom:505.833000px;}
.y21c{bottom:506.208000px;}
.y152{bottom:506.358000px;}
.y1d8{bottom:507.633000px;}
.y243{bottom:509.133000px;}
.yd8{bottom:509.658000px;}
.yde{bottom:510.183000px;}
.y6b{bottom:512.583000px;}
.y19{bottom:513.558000px;}
.y1fb{bottom:515.283000px;}
.ybd{bottom:516.408000px;}
.y8b{bottom:519.333000px;}
.ya5{bottom:519.858000px;}
.y16f{bottom:522.708000px;}
.y1d7{bottom:525.558000px;}
.y108{bottom:527.583000px;}
.y151{bottom:528.108000px;}
.y126{bottom:528.633000px;}
.y3c{bottom:528.858000px;}
.yd7{bottom:531.408000px;}
.ydd{bottom:531.933000px;}
.y18{bottom:532.533000px;}
.y19c{bottom:533.208000px;}
.y1b2{bottom:533.283000px;}
.y184{bottom:534.258000px;}
.y6a{bottom:534.333000px;}
.y43{bottom:537.108000px;}
.yfa{bottom:538.158000px;}
.y16e{bottom:540.033000px;}
.y8a{bottom:541.083000px;}
.ya4{bottom:541.608000px;}
.y1d6{bottom:541.983000px;}
.y21b{bottom:546.183000px;}
.y242{bottom:547.083000px;}
.y107{bottom:549.333000px;}
.y150{bottom:549.858000px;}
.y3b{bottom:550.608000px;}
.y17{bottom:551.508000px;}
.y123{bottom:551.808000px;}
.y125{bottom:552.633000px;}
.ybc{bottom:553.158000px;}
.y1fa{bottom:553.233000px;}
.y69{bottom:556.083000px;}
.y16d{bottom:557.358000px;}
.y1d5{bottom:558.408000px;}
.y42{bottom:558.858000px;}
.yf9{bottom:559.908000px;}
.y89{bottom:562.833000px;}
.ya3{bottom:563.358000px;}
.y241{bottom:566.058000px;}
.y122{bottom:569.358000px;}
.y124{bottom:569.958000px;}
.y16{bottom:570.483000px;}
.y106{bottom:571.083000px;}
.y19b{bottom:571.158000px;}
.y1b1{bottom:571.233000px;}
.y14f{bottom:571.608000px;}
.y183{bottom:572.208000px;}
.y16c{bottom:574.683000px;}
.y1d4{bottom:574.833000px;}
.ybb{bottom:574.908000px;}
.y68{bottom:577.833000px;}
.ydc{bottom:578.358000px;}
.y41{bottom:580.608000px;}
.yf8{bottom:581.658000px;}
.y88{bottom:584.583000px;}
.y240{bottom:585.033000px;}
.ya2{bottom:585.108000px;}
.y22f{bottom:586.158000px;}
.y3d{bottom:587.358000px;}
.y15{bottom:589.458000px;}
.y205{bottom:591.183000px;}
.y1d3{bottom:591.258000px;}
.y105{bottom:592.833000px;}
.y14e{bottom:593.358000px;}
.yba{bottom:596.658000px;}
.y67{bottom:599.583000px;}
.y121{bottom:601.533000px;}
.y40{bottom:602.358000px;}
.yf7{bottom:603.408000px;}
.y23f{bottom:604.008000px;}
.ydb{bottom:606.333000px;}
.y14{bottom:608.433000px;}
.y19a{bottom:609.108000px;}
.y1b0{bottom:609.183000px;}
.y182{bottom:610.158000px;}
.ya1{bottom:613.083000px;}
.y104{bottom:614.583000px;}
.y14d{bottom:615.108000px;}
.yb9{bottom:618.408000px;}
.y120{bottom:618.858000px;}
.y66{bottom:621.333000px;}
.y23e{bottom:622.983000px;}
.y3a{bottom:624.108000px;}
.yf6{bottom:625.158000px;}
.y1d2{bottom:625.608000px;}
.y21a{bottom:626.133000px;}
.y13{bottom:627.408000px;}
.y1f9{bottom:629.133000px;}
.y103{bottom:636.333000px;}
.yb8{bottom:640.158000px;}
.y23d{bottom:641.958000px;}
.y1d1{bottom:642.033000px;}
.y65{bottom:643.083000px;}
.y219{bottom:645.108000px;}
.y3f{bottom:645.858000px;}
.y12{bottom:646.383000px;}
.yf5{bottom:646.908000px;}
.y199{bottom:647.058000px;}
.y1af{bottom:647.133000px;}
.y181{bottom:648.108000px;}
.y16b{bottom:649.308000px;}
.y11f{bottom:650.508000px;}
.y14c{bottom:651.858000px;}
.yda{bottom:658.083000px;}
.y1d0{bottom:658.458000px;}
.y39{bottom:660.858000px;}
.y23c{bottom:660.933000px;}
.yb7{bottom:661.908000px;}
.y218{bottom:664.083000px;}
.y87{bottom:664.833000px;}
.y11{bottom:665.358000px;}
.y1f8{bottom:667.083000px;}
.y3e{bottom:667.608000px;}
.y11e{bottom:667.833000px;}
.y16a{bottom:669.183000px;}
.y14b{bottom:673.608000px;}
.y1cf{bottom:674.883000px;}
.y64{bottom:679.833000px;}
.y23b{bottom:679.908000px;}
.y38{bottom:682.608000px;}
.y217{bottom:683.058000px;}
.y10{bottom:684.333000px;}
.y198{bottom:685.008000px;}
.y1ae{bottom:685.083000px;}
.y180{bottom:686.058000px;}
.y86{bottom:686.583000px;}
.y169{bottom:689.058000px;}
.y11d{bottom:691.008000px;}
.y1ce{bottom:691.308000px;}
.yf4{bottom:693.333000px;}
.y14a{bottom:695.358000px;}
.y23a{bottom:698.883000px;}
.y11c{bottom:699.633000px;}
.y63{bottom:701.583000px;}
.y216{bottom:702.033000px;}
.yf{bottom:703.308000px;}
.y37{bottom:704.358000px;}
.y1f7{bottom:705.033000px;}
.y1cd{bottom:707.733000px;}
.y85{bottom:708.333000px;}
.y168{bottom:708.933000px;}
.y149{bottom:717.108000px;}
.y239{bottom:717.858000px;}
.y215{bottom:721.008000px;}
.ye{bottom:722.283000px;}
.y197{bottom:722.958000px;}
.y1ad{bottom:723.033000px;}
.y62{bottom:723.333000px;}
.y17f{bottom:724.008000px;}
.y1cc{bottom:724.158000px;}
.y36{bottom:726.108000px;}
.y167{bottom:728.808000px;}
.y84{bottom:730.083000px;}
.y11b{bottom:731.658000px;}
.y238{bottom:736.833000px;}
.y148{bottom:738.858000px;}
.y214{bottom:739.983000px;}
.y1cb{bottom:740.583000px;}
.yd{bottom:741.258000px;}
.y1f6{bottom:742.983000px;}
.y61{bottom:745.083000px;}
.y35{bottom:747.858000px;}
.y166{bottom:748.683000px;}
.y83{bottom:751.833000px;}
.y237{bottom:755.808000px;}
.y11a{bottom:757.008000px;}
.y1ca{bottom:758.508000px;}
.y213{bottom:758.958000px;}
.yc{bottom:760.233000px;}
.y147{bottom:760.608000px;}
.y196{bottom:760.908000px;}
.y1ac{bottom:760.983000px;}
.y17e{bottom:761.958000px;}
.y60{bottom:766.833000px;}
.y165{bottom:768.558000px;}
.y34{bottom:769.608000px;}
.y82{bottom:773.583000px;}
.y1c9{bottom:774.933000px;}
.y212{bottom:777.933000px;}
.y119{bottom:778.608000px;}
.yb{bottom:779.208000px;}
.y1f5{bottom:780.933000px;}
.y146{bottom:782.358000px;}
.y118{bottom:787.308000px;}
.y164{bottom:788.433000px;}
.y5f{bottom:788.583000px;}
.y236{bottom:789.783000px;}
.y33{bottom:791.358000px;}
.y81{bottom:795.333000px;}
.y211{bottom:796.908000px;}
.ya{bottom:798.183000px;}
.y195{bottom:798.858000px;}
.y1ab{bottom:798.933000px;}
.y17d{bottom:799.908000px;}
.y145{bottom:804.108000px;}
.y1c8{bottom:807.783000px;}
.y5e{bottom:810.333000px;}
.y32{bottom:813.108000px;}
.y210{bottom:815.883000px;}
.y80{bottom:817.083000px;}
.y9{bottom:817.158000px;}
.y117{bottom:817.533000px;}
.y1f4{bottom:818.883000px;}
.y235{bottom:823.758000px;}
.y163{bottom:823.833000px;}
.y1c7{bottom:824.208000px;}
.y144{bottom:825.858000px;}
.y5d{bottom:832.083000px;}
.y31{bottom:834.858000px;}
.y8{bottom:836.133000px;}
.y194{bottom:836.808000px;}
.y1aa{bottom:836.883000px;}
.y17c{bottom:837.858000px;}
.yd1{bottom:838.833000px;}
.y1c6{bottom:840.633000px;}
.y116{bottom:842.283000px;}
.y5c{bottom:853.833000px;}
.y7{bottom:855.108000px;}
.y30{bottom:856.608000px;}
.y1f3{bottom:856.833000px;}
.y1c5{bottom:857.058000px;}
.y234{bottom:857.733000px;}
.y176{bottom:860.433000px;}
.y143{bottom:862.608000px;}
.y20f{bottom:872.808000px;}
.y1c4{bottom:873.483000px;}
.y25{bottom:874.083000px;}
.y193{bottom:874.758000px;}
.y1a9{bottom:874.833000px;}
.y115{bottom:874.908000px;}
.y7f{bottom:875.583000px;}
.y17b{bottom:875.808000px;}
.y2f{bottom:878.358000px;}
.y6{bottom:880.533000px;}
.y142{bottom:884.358000px;}
.y5b{bottom:890.583000px;}
.y1c3{bottom:891.408000px;}
.y232{bottom:891.708000px;}
.y20e{bottom:891.783000px;}
.y1f2{bottom:894.783000px;}
.y7e{bottom:897.333000px;}
.y233{bottom:898.158000px;}
.y2e{bottom:900.108000px;}
.y141{bottom:906.108000px;}
.y1c2{bottom:907.833000px;}
.y20d{bottom:910.758000px;}
.y24{bottom:910.833000px;}
.y5a{bottom:912.333000px;}
.y192{bottom:912.708000px;}
.y1a8{bottom:912.783000px;}
.y17a{bottom:913.758000px;}
.y114{bottom:915.183000px;}
.y7d{bottom:919.083000px;}
.y2d{bottom:921.858000px;}
.y1c1{bottom:924.258000px;}
.y231{bottom:925.683000px;}
.y140{bottom:927.858000px;}
.y20c{bottom:929.733000px;}
.y113{bottom:932.508000px;}
.y1f1{bottom:932.733000px;}
.y59{bottom:934.083000px;}
.y1c0{bottom:940.683000px;}
.y7c{bottom:940.833000px;}
.y2c{bottom:943.608000px;}
.y5{bottom:947.583000px;}
.y20b{bottom:948.708000px;}
.y13f{bottom:949.608000px;}
.y191{bottom:950.733000px;}
.y179{bottom:951.708000px;}
.y58{bottom:955.833000px;}
.y1bf{bottom:957.108000px;}
.y7b{bottom:962.583000px;}
.y112{bottom:964.158000px;}
.y2b{bottom:965.358000px;}
.y24a{bottom:965.658000px;}
.y20a{bottom:967.683000px;}
.y4{bottom:969.333000px;}
.y1f0{bottom:970.683000px;}
.y13e{bottom:971.358000px;}
.y111{bottom:972.783000px;}
.y1be{bottom:973.533000px;}
.y57{bottom:977.583000px;}
.yd0{bottom:984.333000px;}
.y209{bottom:986.658000px;}
.y2a{bottom:987.108000px;}
.y190{bottom:988.683000px;}
.y178{bottom:989.658000px;}
.y3{bottom:991.083000px;}
.y1bd{bottom:991.458000px;}
.y13d{bottom:993.108000px;}
.y56{bottom:999.333000px;}
.y208{bottom:1005.633000px;}
.ycf{bottom:1006.083000px;}
.y1ef{bottom:1008.633000px;}
.y29{bottom:1008.858000px;}
.y110{bottom:1013.283000px;}
.y13c{bottom:1014.858000px;}
.y55{bottom:1021.083000px;}
.y207{bottom:1024.608000px;}
.y18f{bottom:1026.633000px;}
.y204{bottom:1027.458000px;}
.y177{bottom:1027.608000px;}
.y23{bottom:1027.833000px;}
.y28{bottom:1030.608000px;}
.y13b{bottom:1036.608000px;}
.y54{bottom:1042.833000px;}
.y230{bottom:1045.608000px;}
.y10f{bottom:1053.783000px;}
.y2{bottom:1064.583000px;}
.y22{bottom:1118.508000px;}
.h4{height:27.750000px;}
.h12{height:31.106250px;}
.hf{height:40.133789px;}
.h9{height:42.246094px;}
.h8{height:46.083984px;}
.h10{height:46.173340px;}
.h2{height:46.470703px;}
.h6{height:47.695312px;}
.ha{height:48.603516px;}
.hd{height:51.003516px;}
.h7{height:53.463867px;}
.h5{height:53.550000px;}
.h3{height:56.906250px;}
.h11{height:63.937500px;}
.h13{height:77.137500px;}
.hc{height:83.103516px;}
.hb{height:83.403516px;}
.he{height:117.903516px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:59.400000px;}
.x5{left:68.625000px;}
.x4{left:77.775000px;}
.x11{left:99.975000px;}
.x2{left:108.150000px;}
.x3{left:116.625000px;}
.x21{left:121.650000px;}
.x7{left:122.775000px;}
.x14{left:126.300000px;}
.x23{left:127.875000px;}
.x1d{left:131.175000px;}
.x26{left:132.375000px;}
.xb{left:135.150000px;}
.x24{left:138.450000px;}
.x25{left:150.600000px;}
.x20{left:155.100000px;}
.x22{left:156.975000px;}
.x9{left:161.325000px;}
.x1f{left:162.375000px;}
.x8{left:164.400000px;}
.x16{left:167.475000px;}
.x1e{left:172.575000px;}
.x1{left:186.225000px;}
.xc{left:189.150000px;}
.x1a{left:213.525000px;}
.xd{left:216.150000px;}
.x10{left:225.300000px;}
.xf{left:229.875000px;}
.xe{left:234.450000px;}
.x15{left:252.375000px;}
.x13{left:269.400000px;}
.x17{left:316.650000px;}
.x12{left:393.225000px;}
.x19{left:395.250000px;}
.x18{left:430.050000px;}
.x6{left:441.975000px;}
.x1b{left:453.225000px;}
.x27{left:609.900000px;}
.x28{left:721.650000px;}
.x1c{left:768.225000px;}
@media print{
.v2{vertical-align:-22.933333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.133333pt;}
.v6{vertical-align:11.733333pt;}
.v1{vertical-align:22.933333pt;}
.v3{vertical-align:30.933333pt;}
.v5{vertical-align:61.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls2{letter-spacing:2.666667pt;}
.ws13{word-spacing:-19.712000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.333333pt;}
.wse{word-spacing:-12.666667pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1d{word-spacing:-5.712000pt;}
.ws12{word-spacing:-5.573333pt;}
.ws22{word-spacing:-5.280000pt;}
.ws10{word-spacing:-5.045333pt;}
.ws23{word-spacing:-4.986667pt;}
.ws11{word-spacing:-4.928000pt;}
.ws16{word-spacing:-4.634667pt;}
.ws18{word-spacing:-4.458667pt;}
.ws21{word-spacing:-4.224000pt;}
.ws1f{word-spacing:-3.930667pt;}
.ws1c{word-spacing:-3.402667pt;}
.ws1e{word-spacing:-3.050667pt;}
.ws15{word-spacing:-2.288000pt;}
.ws2{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.410667pt;}
.ws19{word-spacing:3.520000pt;}
.ws20{word-spacing:3.754667pt;}
.ws17{word-spacing:4.106667pt;}
.ws14{word-spacing:6.981333pt;}
.ws6{word-spacing:81.333333pt;}
.ws4{word-spacing:95.941333pt;}
.wsf{word-spacing:100.818667pt;}
.ws5{word-spacing:106.874667pt;}
.ws8{word-spacing:154.506667pt;}
.wsb{word-spacing:196.106667pt;}
.wsd{word-spacing:231.573333pt;}
.wsc{word-spacing:234.506667pt;}
.ws9{word-spacing:382.666667pt;}
.wsa{word-spacing:485.440000pt;}
._aa{margin-left:-2470.304000pt;}
._bc{margin-left:-2465.562667pt;}
._b1{margin-left:-2459.728000pt;}
._52{margin-left:-2443.568000pt;}
._a2{margin-left:-2424.693333pt;}
._6f{margin-left:-2417.754667pt;}
._8f{margin-left:-2399.274667pt;}
._67{margin-left:-2369.341333pt;}
._9e{margin-left:-2355.952000pt;}
._79{margin-left:-2348.869333pt;}
._8a{margin-left:-2344.341333pt;}
._7e{margin-left:-2308.106667pt;}
._af{margin-left:-2295.909333pt;}
._82{margin-left:-2291.640000pt;}
._5e{margin-left:-2272.362667pt;}
._95{margin-left:-2253.485333pt;}
._9a{margin-left:-2224.240000pt;}
._b7{margin-left:-2198.533333pt;}
._40{margin-left:-1857.866667pt;}
._c0{margin-left:-1800.517333pt;}
._c3{margin-left:-1575.144000pt;}
._45{margin-left:-1350.101333pt;}
._14{margin-left:-744.250667pt;}
._46{margin-left:-660.405333pt;}
._17{margin-left:-642.053333pt;}
._be{margin-left:-546.330667pt;}
._44{margin-left:-525.344000pt;}
._3a{margin-left:-303.930667pt;}
._bf{margin-left:-153.472000pt;}
._41{margin-left:-16.074667pt;}
._5f{margin-left:-14.901333pt;}
._6b{margin-left:-5.600000pt;}
._4{margin-left:-1.072000pt;}
._1{width:1.093333pt;}
._0{width:1.994667pt;}
._7{width:2.992000pt;}
._a{width:4.069333pt;}
._5{width:5.034667pt;}
._8{width:5.957333pt;}
._9{width:6.869333pt;}
._2{width:7.760000pt;}
._3{width:9.002667pt;}
._6{width:10.101333pt;}
._c{width:11.024000pt;}
._e{width:12.501333pt;}
._f{width:13.610667pt;}
._10{width:15.658667pt;}
._12{width:16.960000pt;}
._11{width:17.877333pt;}
._d{width:19.477333pt;}
._37{width:21.472000pt;}
._38{width:22.410667pt;}
._b2{width:25.109333pt;}
._63{width:26.341333pt;}
._98{width:27.253333pt;}
._2b{width:28.160000pt;}
._2c{width:29.098667pt;}
._36{width:30.096000pt;}
._86{width:31.386667pt;}
._78{width:33.264000pt;}
._8b{width:34.554667pt;}
._b4{width:35.669333pt;}
._59{width:36.725333pt;}
._4a{width:38.125333pt;}
._b3{width:39.189333pt;}
._7f{width:42.064000pt;}
._ba{width:43.296000pt;}
._a7{width:44.240000pt;}
._49{width:46.053333pt;}
._70{width:47.637333pt;}
._94{width:49.514667pt;}
._58{width:50.864000pt;}
._13{width:52.000000pt;}
._89{width:53.034667pt;}
._77{width:54.090667pt;}
._16{width:55.344000pt;}
._27{width:57.120000pt;}
._53{width:58.586667pt;}
._4f{width:60.266667pt;}
._19{width:61.797333pt;}
._69{width:65.296000pt;}
._84{width:68.538667pt;}
._1d{width:72.746667pt;}
._b8{width:74.906667pt;}
._b9{width:76.501333pt;}
._71{width:77.658667pt;}
._7a{width:79.568000pt;}
._93{width:80.725333pt;}
._2d{width:82.426667pt;}
._6e{width:85.301333pt;}
._c2{width:86.357333pt;}
._51{width:88.762667pt;}
._97{width:90.874667pt;}
._64{width:92.752000pt;}
._7c{width:93.808000pt;}
._80{width:94.864000pt;}
._b{width:96.000000pt;}
._4d{width:98.853333pt;}
._bd{width:100.202667pt;}
._61{width:101.450667pt;}
._3e{width:102.480000pt;}
._9d{width:103.445333pt;}
._5a{width:104.720000pt;}
._74{width:106.597333pt;}
._ab{width:110.176000pt;}
._76{width:112.992000pt;}
._a1{width:114.525333pt;}
._91{width:116.570667pt;}
._2e{width:118.960000pt;}
._7b{width:120.560000pt;}
._65{width:123.141333pt;}
._33{width:124.632000pt;}
._57{width:125.781333pt;}
._31{width:127.573333pt;}
._4e{width:129.181333pt;}
._30{width:130.306667pt;}
._a5{width:131.413333pt;}
._60{width:133.290667pt;}
._4c{width:134.874667pt;}
._24{width:136.693333pt;}
._3b{width:138.554667pt;}
._9f{width:140.594667pt;}
._85{width:142.002667pt;}
._47{width:143.146667pt;}
._29{width:144.533333pt;}
._6c{width:145.786667pt;}
._55{width:147.429333pt;}
._87{width:149.616000pt;}
._50{width:151.418667pt;}
._83{width:152.861333pt;}
._ac{width:154.178667pt;}
._34{width:155.488000pt;}
._73{width:157.125333pt;}
._9b{width:158.546667pt;}
._bb{width:159.749333pt;}
._62{width:161.274667pt;}
._b0{width:162.624000pt;}
._75{width:164.501333pt;}
._42{width:165.557333pt;}
._7d{width:166.906667pt;}
._39{width:168.197333pt;}
._32{width:169.674667pt;}
._56{width:171.224000pt;}
._5c{width:173.008000pt;}
._72{width:173.968000pt;}
._66{width:174.885333pt;}
._25{width:176.160000pt;}
._54{width:177.525333pt;}
._2f{width:178.552000pt;}
._3c{width:180.458667pt;}
._1b{width:182.080000pt;}
._b6{width:183.224000pt;}
._ad{width:185.125333pt;}
._43{width:188.496000pt;}
._6d{width:192.053333pt;}
._2a{width:193.066667pt;}
._68{width:194.005333pt;}
._3d{width:195.317333pt;}
._99{width:196.666667pt;}
._a4{width:198.192000pt;}
._a9{width:199.293333pt;}
._9c{width:200.845333pt;}
._a0{width:202.408000pt;}
._81{width:203.690667pt;}
._1e{width:204.853333pt;}
._8c{width:206.304000pt;}
._8d{width:207.994667pt;}
._22{width:209.386667pt;}
._a8{width:213.901333pt;}
._90{width:215.130667pt;}
._92{width:216.698667pt;}
._35{width:220.344000pt;}
._1f{width:221.920000pt;}
._ae{width:223.218667pt;}
._88{width:224.458667pt;}
._a3{width:226.629333pt;}
._96{width:231.146667pt;}
._4b{width:243.114667pt;}
._23{width:244.906667pt;}
._1c{width:253.653333pt;}
._3f{width:259.424000pt;}
._a6{width:263.941333pt;}
._b5{width:264.997333pt;}
._21{width:268.533333pt;}
._5d{width:270.629333pt;}
._48{width:277.024000pt;}
._8e{width:286.352000pt;}
._6a{width:288.442667pt;}
._5b{width:290.048000pt;}
._26{width:304.000000pt;}
._28{width:313.066667pt;}
._20{width:318.933333pt;}
._c1{width:325.952000pt;}
._1a{width:345.226667pt;}
._18{width:612.480000pt;}
._15{width:715.146667pt;}
.fs1{font-size:34.133333pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yb6{bottom:101.162667pt;}
.y1a7{bottom:102.896000pt;}
.y1bc{bottom:102.962667pt;}
.y18e{bottom:103.829333pt;}
.y102{bottom:104.162667pt;}
.y53{bottom:109.029333pt;}
.y7a{bottom:111.096000pt;}
.yef{bottom:111.496000pt;}
.y1ee{bottom:112.762667pt;}
.ya0{bottom:113.629333pt;}
.y162{bottom:114.096000pt;}
.yce{bottom:117.029333pt;}
.y206{bottom:118.896000pt;}
.y94{bottom:119.629333pt;}
.yb5{bottom:120.496000pt;}
.y101{bottom:123.496000pt;}
.y13a{bottom:126.896000pt;}
.y1ed{bottom:127.362667pt;}
.y52{bottom:128.362667pt;}
.y22e{bottom:129.496000pt;}
.yf3{bottom:130.362667pt;}
.y79{bottom:130.429333pt;}
.yee{bottom:130.829333pt;}
.y9f{bottom:132.962667pt;}
.y161{bottom:133.429333pt;}
.ycd{bottom:136.362667pt;}
.y1a6{bottom:136.629333pt;}
.y1bb{bottom:136.696000pt;}
.y18d{bottom:137.562667pt;}
.y93{bottom:138.962667pt;}
.yb4{bottom:139.829333pt;}
.y1ec{bottom:141.962667pt;}
.y100{bottom:142.829333pt;}
.y139{bottom:144.496000pt;}
.y22d{bottom:146.362667pt;}
.y51{bottom:147.696000pt;}
.yf2{bottom:149.696000pt;}
.y138{bottom:152.229333pt;}
.y9e{bottom:152.296000pt;}
.y160{bottom:152.762667pt;}
.y203{bottom:154.429333pt;}
.ycc{bottom:155.696000pt;}
.y1eb{bottom:156.562667pt;}
.y92{bottom:158.296000pt;}
.yb3{bottom:159.162667pt;}
.y22c{bottom:163.229333pt;}
.yed{bottom:163.496000pt;}
.y50{bottom:167.029333pt;}
.yff{bottom:167.696000pt;}
.yf1{bottom:169.029333pt;}
.y1a5{bottom:170.362667pt;}
.y1ba{bottom:170.429333pt;}
.y1ea{bottom:171.162667pt;}
.y18c{bottom:171.296000pt;}
.y9d{bottom:171.629333pt;}
.y78{bottom:171.696000pt;}
.y15f{bottom:172.096000pt;}
.ycb{bottom:175.029333pt;}
.y137{bottom:176.296000pt;}
.y91{bottom:177.629333pt;}
.yb2{bottom:178.496000pt;}
.y22b{bottom:180.096000pt;}
.yec{bottom:182.829333pt;}
.y10e{bottom:183.629333pt;}
.y136{bottom:184.029333pt;}
.y1e9{bottom:185.762667pt;}
.y4f{bottom:186.362667pt;}
.y202{bottom:188.162667pt;}
.yf0{bottom:188.362667pt;}
.y9c{bottom:190.962667pt;}
.y15e{bottom:191.429333pt;}
.yca{bottom:194.362667pt;}
.y77{bottom:196.962667pt;}
.yb1{bottom:197.829333pt;}
.y1e8{bottom:200.362667pt;}
.yeb{bottom:202.162667pt;}
.y1a4{bottom:204.096000pt;}
.y1b9{bottom:204.162667pt;}
.y18b{bottom:205.029333pt;}
.y4e{bottom:205.696000pt;}
.yd9{bottom:207.696000pt;}
.y135{bottom:208.096000pt;}
.y9b{bottom:210.296000pt;}
.y15d{bottom:210.762667pt;}
.yd6{bottom:213.696000pt;}
.y22a{bottom:213.829333pt;}
.y1e7{bottom:214.962667pt;}
.y90{bottom:216.296000pt;}
.yb0{bottom:217.162667pt;}
.yea{bottom:221.496000pt;}
.y201{bottom:221.896000pt;}
.y134{bottom:223.496000pt;}
.y4d{bottom:225.029333pt;}
.yc9{bottom:227.029333pt;}
.y1e6{bottom:229.562667pt;}
.y76{bottom:229.629333pt;}
.y229{bottom:230.696000pt;}
.yd5{bottom:233.029333pt;}
.y8f{bottom:235.629333pt;}
.y1a3{bottom:237.829333pt;}
.y1b8{bottom:237.896000pt;}
.y18a{bottom:238.762667pt;}
.y131{bottom:238.896000pt;}
.ye9{bottom:240.829333pt;}
.yaf{bottom:242.096000pt;}
.y15c{bottom:243.429333pt;}
.y1e5{bottom:244.162667pt;}
.y4c{bottom:244.362667pt;}
.yc8{bottom:246.362667pt;}
.y228{bottom:247.562667pt;}
.y21{bottom:247.829333pt;}
.y75{bottom:248.962667pt;}
.yd4{bottom:252.362667pt;}
.y133{bottom:254.296000pt;}
.y8e{bottom:254.962667pt;}
.y200{bottom:255.629333pt;}
.y1e4{bottom:258.762667pt;}
.ye8{bottom:260.162667pt;}
.y15b{bottom:262.762667pt;}
.y227{bottom:264.429333pt;}
.y20{bottom:264.696000pt;}
.yc7{bottom:265.696000pt;}
.y74{bottom:268.296000pt;}
.y132{bottom:269.696000pt;}
.y1a2{bottom:271.562667pt;}
.y1b7{bottom:271.629333pt;}
.yd3{bottom:271.696000pt;}
.y189{bottom:272.496000pt;}
.y1e3{bottom:274.696000pt;}
.y4b{bottom:277.029333pt;}
.ye7{bottom:279.496000pt;}
.y226{bottom:281.296000pt;}
.y1f{bottom:281.562667pt;}
.y15a{bottom:282.096000pt;}
.yc6{bottom:285.029333pt;}
.y73{bottom:287.629333pt;}
.yae{bottom:288.096000pt;}
.y130{bottom:288.896000pt;}
.y1e2{bottom:289.296000pt;}
.y1ff{bottom:289.362667pt;}
.yd2{bottom:291.029333pt;}
.y4a{bottom:296.362667pt;}
.y225{bottom:298.162667pt;}
.y1e{bottom:298.429333pt;}
.ye6{bottom:298.829333pt;}
.y159{bottom:301.429333pt;}
.y1e1{bottom:303.896000pt;}
.yc5{bottom:304.362667pt;}
.y1a1{bottom:305.296000pt;}
.y1b6{bottom:305.362667pt;}
.y188{bottom:306.229333pt;}
.y72{bottom:306.962667pt;}
.yad{bottom:307.429333pt;}
.y12f{bottom:308.096000pt;}
.yfe{bottom:310.362667pt;}
.y224{bottom:315.029333pt;}
.y49{bottom:315.696000pt;}
.ye5{bottom:318.162667pt;}
.y1e0{bottom:318.496000pt;}
.y9a{bottom:320.296000pt;}
.y158{bottom:320.762667pt;}
.y1fe{bottom:323.096000pt;}
.y12e{bottom:323.496000pt;}
.yc4{bottom:323.696000pt;}
.y71{bottom:326.296000pt;}
.yac{bottom:326.762667pt;}
.y27{bottom:328.629333pt;}
.yfd{bottom:329.696000pt;}
.y223{bottom:331.896000pt;}
.y1df{bottom:333.096000pt;}
.y48{bottom:335.029333pt;}
.ye4{bottom:337.496000pt;}
.y249{bottom:338.029333pt;}
.y1a0{bottom:339.029333pt;}
.y1b5{bottom:339.096000pt;}
.y99{bottom:339.629333pt;}
.y12d{bottom:339.896000pt;}
.y187{bottom:339.962667pt;}
.y157{bottom:340.096000pt;}
.yc3{bottom:343.029333pt;}
.y70{bottom:345.629333pt;}
.yab{bottom:346.096000pt;}
.y1de{bottom:347.696000pt;}
.y222{bottom:348.762667pt;}
.yfc{bottom:349.029333pt;}
.y47{bottom:354.362667pt;}
.y12b{bottom:355.296000pt;}
.ye3{bottom:356.829333pt;}
.y1d{bottom:358.829333pt;}
.y98{bottom:358.962667pt;}
.y156{bottom:359.429333pt;}
.yc2{bottom:362.362667pt;}
.y1dd{bottom:363.629333pt;}
.y6f{bottom:364.962667pt;}
.yaa{bottom:365.429333pt;}
.y221{bottom:365.629333pt;}
.y248{bottom:368.229333pt;}
.yfb{bottom:368.362667pt;}
.y12c{bottom:370.696000pt;}
.y175{bottom:372.229333pt;}
.y10d{bottom:372.296000pt;}
.y19f{bottom:372.762667pt;}
.y1b4{bottom:372.829333pt;}
.y46{bottom:373.696000pt;}
.ye2{bottom:376.162667pt;}
.y1dc{bottom:378.229333pt;}
.y97{bottom:378.296000pt;}
.y155{bottom:378.762667pt;}
.yc1{bottom:381.696000pt;}
.y220{bottom:382.496000pt;}
.y6e{bottom:384.296000pt;}
.ya9{bottom:384.762667pt;}
.y247{bottom:385.096000pt;}
.y174{bottom:387.629333pt;}
.y1c{bottom:389.029333pt;}
.y12a{bottom:389.896000pt;}
.y1fd{bottom:390.562667pt;}
.y10c{bottom:391.629333pt;}
.y1db{bottom:392.829333pt;}
.ye1{bottom:395.496000pt;}
.y96{bottom:397.629333pt;}
.y21f{bottom:399.362667pt;}
.yc0{bottom:401.029333pt;}
.y246{bottom:401.962667pt;}
.y173{bottom:403.029333pt;}
.y6d{bottom:403.629333pt;}
.ya8{bottom:404.096000pt;}
.y26{bottom:405.762667pt;}
.y19e{bottom:406.496000pt;}
.y45{bottom:406.562667pt;}
.y186{bottom:407.429333pt;}
.y10b{bottom:410.962667pt;}
.y129{bottom:411.229333pt;}
.y154{bottom:411.429333pt;}
.ye0{bottom:414.829333pt;}
.y21e{bottom:416.229333pt;}
.y95{bottom:416.962667pt;}
.y172{bottom:418.429333pt;}
.y245{bottom:418.829333pt;}
.ybf{bottom:420.362667pt;}
.y1da{bottom:422.029333pt;}
.y1b{bottom:422.762667pt;}
.y8d{bottom:422.962667pt;}
.ya7{bottom:423.429333pt;}
.y1fc{bottom:424.296000pt;}
.y128{bottom:426.629333pt;}
.y10a{bottom:430.296000pt;}
.y153{bottom:430.762667pt;}
.y44{bottom:431.429333pt;}
.y21d{bottom:433.096000pt;}
.y171{bottom:433.829333pt;}
.ydf{bottom:434.162667pt;}
.y244{bottom:435.696000pt;}
.y6c{bottom:436.296000pt;}
.y1d9{bottom:436.629333pt;}
.y1a{bottom:439.629333pt;}
.ybe{bottom:439.696000pt;}
.y19d{bottom:440.229333pt;}
.y1b3{bottom:440.296000pt;}
.y185{bottom:441.162667pt;}
.y8c{bottom:442.296000pt;}
.ya6{bottom:442.762667pt;}
.y127{bottom:447.896000pt;}
.y170{bottom:449.229333pt;}
.y109{bottom:449.629333pt;}
.y21c{bottom:449.962667pt;}
.y152{bottom:450.096000pt;}
.y1d8{bottom:451.229333pt;}
.y243{bottom:452.562667pt;}
.yd8{bottom:453.029333pt;}
.yde{bottom:453.496000pt;}
.y6b{bottom:455.629333pt;}
.y19{bottom:456.496000pt;}
.y1fb{bottom:458.029333pt;}
.ybd{bottom:459.029333pt;}
.y8b{bottom:461.629333pt;}
.ya5{bottom:462.096000pt;}
.y16f{bottom:464.629333pt;}
.y1d7{bottom:467.162667pt;}
.y108{bottom:468.962667pt;}
.y151{bottom:469.429333pt;}
.y126{bottom:469.896000pt;}
.y3c{bottom:470.096000pt;}
.yd7{bottom:472.362667pt;}
.ydd{bottom:472.829333pt;}
.y18{bottom:473.362667pt;}
.y19c{bottom:473.962667pt;}
.y1b2{bottom:474.029333pt;}
.y184{bottom:474.896000pt;}
.y6a{bottom:474.962667pt;}
.y43{bottom:477.429333pt;}
.yfa{bottom:478.362667pt;}
.y16e{bottom:480.029333pt;}
.y8a{bottom:480.962667pt;}
.ya4{bottom:481.429333pt;}
.y1d6{bottom:481.762667pt;}
.y21b{bottom:485.496000pt;}
.y242{bottom:486.296000pt;}
.y107{bottom:488.296000pt;}
.y150{bottom:488.762667pt;}
.y3b{bottom:489.429333pt;}
.y17{bottom:490.229333pt;}
.y123{bottom:490.496000pt;}
.y125{bottom:491.229333pt;}
.ybc{bottom:491.696000pt;}
.y1fa{bottom:491.762667pt;}
.y69{bottom:494.296000pt;}
.y16d{bottom:495.429333pt;}
.y1d5{bottom:496.362667pt;}
.y42{bottom:496.762667pt;}
.yf9{bottom:497.696000pt;}
.y89{bottom:500.296000pt;}
.ya3{bottom:500.762667pt;}
.y241{bottom:503.162667pt;}
.y122{bottom:506.096000pt;}
.y124{bottom:506.629333pt;}
.y16{bottom:507.096000pt;}
.y106{bottom:507.629333pt;}
.y19b{bottom:507.696000pt;}
.y1b1{bottom:507.762667pt;}
.y14f{bottom:508.096000pt;}
.y183{bottom:508.629333pt;}
.y16c{bottom:510.829333pt;}
.y1d4{bottom:510.962667pt;}
.ybb{bottom:511.029333pt;}
.y68{bottom:513.629333pt;}
.ydc{bottom:514.096000pt;}
.y41{bottom:516.096000pt;}
.yf8{bottom:517.029333pt;}
.y88{bottom:519.629333pt;}
.y240{bottom:520.029333pt;}
.ya2{bottom:520.096000pt;}
.y22f{bottom:521.029333pt;}
.y3d{bottom:522.096000pt;}
.y15{bottom:523.962667pt;}
.y205{bottom:525.496000pt;}
.y1d3{bottom:525.562667pt;}
.y105{bottom:526.962667pt;}
.y14e{bottom:527.429333pt;}
.yba{bottom:530.362667pt;}
.y67{bottom:532.962667pt;}
.y121{bottom:534.696000pt;}
.y40{bottom:535.429333pt;}
.yf7{bottom:536.362667pt;}
.y23f{bottom:536.896000pt;}
.ydb{bottom:538.962667pt;}
.y14{bottom:540.829333pt;}
.y19a{bottom:541.429333pt;}
.y1b0{bottom:541.496000pt;}
.y182{bottom:542.362667pt;}
.ya1{bottom:544.962667pt;}
.y104{bottom:546.296000pt;}
.y14d{bottom:546.762667pt;}
.yb9{bottom:549.696000pt;}
.y120{bottom:550.096000pt;}
.y66{bottom:552.296000pt;}
.y23e{bottom:553.762667pt;}
.y3a{bottom:554.762667pt;}
.yf6{bottom:555.696000pt;}
.y1d2{bottom:556.096000pt;}
.y21a{bottom:556.562667pt;}
.y13{bottom:557.696000pt;}
.y1f9{bottom:559.229333pt;}
.y103{bottom:565.629333pt;}
.yb8{bottom:569.029333pt;}
.y23d{bottom:570.629333pt;}
.y1d1{bottom:570.696000pt;}
.y65{bottom:571.629333pt;}
.y219{bottom:573.429333pt;}
.y3f{bottom:574.096000pt;}
.y12{bottom:574.562667pt;}
.yf5{bottom:575.029333pt;}
.y199{bottom:575.162667pt;}
.y1af{bottom:575.229333pt;}
.y181{bottom:576.096000pt;}
.y16b{bottom:577.162667pt;}
.y11f{bottom:578.229333pt;}
.y14c{bottom:579.429333pt;}
.yda{bottom:584.962667pt;}
.y1d0{bottom:585.296000pt;}
.y39{bottom:587.429333pt;}
.y23c{bottom:587.496000pt;}
.yb7{bottom:588.362667pt;}
.y218{bottom:590.296000pt;}
.y87{bottom:590.962667pt;}
.y11{bottom:591.429333pt;}
.y1f8{bottom:592.962667pt;}
.y3e{bottom:593.429333pt;}
.y11e{bottom:593.629333pt;}
.y16a{bottom:594.829333pt;}
.y14b{bottom:598.762667pt;}
.y1cf{bottom:599.896000pt;}
.y64{bottom:604.296000pt;}
.y23b{bottom:604.362667pt;}
.y38{bottom:606.762667pt;}
.y217{bottom:607.162667pt;}
.y10{bottom:608.296000pt;}
.y198{bottom:608.896000pt;}
.y1ae{bottom:608.962667pt;}
.y180{bottom:609.829333pt;}
.y86{bottom:610.296000pt;}
.y169{bottom:612.496000pt;}
.y11d{bottom:614.229333pt;}
.y1ce{bottom:614.496000pt;}
.yf4{bottom:616.296000pt;}
.y14a{bottom:618.096000pt;}
.y23a{bottom:621.229333pt;}
.y11c{bottom:621.896000pt;}
.y63{bottom:623.629333pt;}
.y216{bottom:624.029333pt;}
.yf{bottom:625.162667pt;}
.y37{bottom:626.096000pt;}
.y1f7{bottom:626.696000pt;}
.y1cd{bottom:629.096000pt;}
.y85{bottom:629.629333pt;}
.y168{bottom:630.162667pt;}
.y149{bottom:637.429333pt;}
.y239{bottom:638.096000pt;}
.y215{bottom:640.896000pt;}
.ye{bottom:642.029333pt;}
.y197{bottom:642.629333pt;}
.y1ad{bottom:642.696000pt;}
.y62{bottom:642.962667pt;}
.y17f{bottom:643.562667pt;}
.y1cc{bottom:643.696000pt;}
.y36{bottom:645.429333pt;}
.y167{bottom:647.829333pt;}
.y84{bottom:648.962667pt;}
.y11b{bottom:650.362667pt;}
.y238{bottom:654.962667pt;}
.y148{bottom:656.762667pt;}
.y214{bottom:657.762667pt;}
.y1cb{bottom:658.296000pt;}
.yd{bottom:658.896000pt;}
.y1f6{bottom:660.429333pt;}
.y61{bottom:662.296000pt;}
.y35{bottom:664.762667pt;}
.y166{bottom:665.496000pt;}
.y83{bottom:668.296000pt;}
.y237{bottom:671.829333pt;}
.y11a{bottom:672.896000pt;}
.y1ca{bottom:674.229333pt;}
.y213{bottom:674.629333pt;}
.yc{bottom:675.762667pt;}
.y147{bottom:676.096000pt;}
.y196{bottom:676.362667pt;}
.y1ac{bottom:676.429333pt;}
.y17e{bottom:677.296000pt;}
.y60{bottom:681.629333pt;}
.y165{bottom:683.162667pt;}
.y34{bottom:684.096000pt;}
.y82{bottom:687.629333pt;}
.y1c9{bottom:688.829333pt;}
.y212{bottom:691.496000pt;}
.y119{bottom:692.096000pt;}
.yb{bottom:692.629333pt;}
.y1f5{bottom:694.162667pt;}
.y146{bottom:695.429333pt;}
.y118{bottom:699.829333pt;}
.y164{bottom:700.829333pt;}
.y5f{bottom:700.962667pt;}
.y236{bottom:702.029333pt;}
.y33{bottom:703.429333pt;}
.y81{bottom:706.962667pt;}
.y211{bottom:708.362667pt;}
.ya{bottom:709.496000pt;}
.y195{bottom:710.096000pt;}
.y1ab{bottom:710.162667pt;}
.y17d{bottom:711.029333pt;}
.y145{bottom:714.762667pt;}
.y1c8{bottom:718.029333pt;}
.y5e{bottom:720.296000pt;}
.y32{bottom:722.762667pt;}
.y210{bottom:725.229333pt;}
.y80{bottom:726.296000pt;}
.y9{bottom:726.362667pt;}
.y117{bottom:726.696000pt;}
.y1f4{bottom:727.896000pt;}
.y235{bottom:732.229333pt;}
.y163{bottom:732.296000pt;}
.y1c7{bottom:732.629333pt;}
.y144{bottom:734.096000pt;}
.y5d{bottom:739.629333pt;}
.y31{bottom:742.096000pt;}
.y8{bottom:743.229333pt;}
.y194{bottom:743.829333pt;}
.y1aa{bottom:743.896000pt;}
.y17c{bottom:744.762667pt;}
.yd1{bottom:745.629333pt;}
.y1c6{bottom:747.229333pt;}
.y116{bottom:748.696000pt;}
.y5c{bottom:758.962667pt;}
.y7{bottom:760.096000pt;}
.y30{bottom:761.429333pt;}
.y1f3{bottom:761.629333pt;}
.y1c5{bottom:761.829333pt;}
.y234{bottom:762.429333pt;}
.y176{bottom:764.829333pt;}
.y143{bottom:766.762667pt;}
.y20f{bottom:775.829333pt;}
.y1c4{bottom:776.429333pt;}
.y25{bottom:776.962667pt;}
.y193{bottom:777.562667pt;}
.y1a9{bottom:777.629333pt;}
.y115{bottom:777.696000pt;}
.y7f{bottom:778.296000pt;}
.y17b{bottom:778.496000pt;}
.y2f{bottom:780.762667pt;}
.y6{bottom:782.696000pt;}
.y142{bottom:786.096000pt;}
.y5b{bottom:791.629333pt;}
.y1c3{bottom:792.362667pt;}
.y232{bottom:792.629333pt;}
.y20e{bottom:792.696000pt;}
.y1f2{bottom:795.362667pt;}
.y7e{bottom:797.629333pt;}
.y233{bottom:798.362667pt;}
.y2e{bottom:800.096000pt;}
.y141{bottom:805.429333pt;}
.y1c2{bottom:806.962667pt;}
.y20d{bottom:809.562667pt;}
.y24{bottom:809.629333pt;}
.y5a{bottom:810.962667pt;}
.y192{bottom:811.296000pt;}
.y1a8{bottom:811.362667pt;}
.y17a{bottom:812.229333pt;}
.y114{bottom:813.496000pt;}
.y7d{bottom:816.962667pt;}
.y2d{bottom:819.429333pt;}
.y1c1{bottom:821.562667pt;}
.y231{bottom:822.829333pt;}
.y140{bottom:824.762667pt;}
.y20c{bottom:826.429333pt;}
.y113{bottom:828.896000pt;}
.y1f1{bottom:829.096000pt;}
.y59{bottom:830.296000pt;}
.y1c0{bottom:836.162667pt;}
.y7c{bottom:836.296000pt;}
.y2c{bottom:838.762667pt;}
.y5{bottom:842.296000pt;}
.y20b{bottom:843.296000pt;}
.y13f{bottom:844.096000pt;}
.y191{bottom:845.096000pt;}
.y179{bottom:845.962667pt;}
.y58{bottom:849.629333pt;}
.y1bf{bottom:850.762667pt;}
.y7b{bottom:855.629333pt;}
.y112{bottom:857.029333pt;}
.y2b{bottom:858.096000pt;}
.y24a{bottom:858.362667pt;}
.y20a{bottom:860.162667pt;}
.y4{bottom:861.629333pt;}
.y1f0{bottom:862.829333pt;}
.y13e{bottom:863.429333pt;}
.y111{bottom:864.696000pt;}
.y1be{bottom:865.362667pt;}
.y57{bottom:868.962667pt;}
.yd0{bottom:874.962667pt;}
.y209{bottom:877.029333pt;}
.y2a{bottom:877.429333pt;}
.y190{bottom:878.829333pt;}
.y178{bottom:879.696000pt;}
.y3{bottom:880.962667pt;}
.y1bd{bottom:881.296000pt;}
.y13d{bottom:882.762667pt;}
.y56{bottom:888.296000pt;}
.y208{bottom:893.896000pt;}
.ycf{bottom:894.296000pt;}
.y1ef{bottom:896.562667pt;}
.y29{bottom:896.762667pt;}
.y110{bottom:900.696000pt;}
.y13c{bottom:902.096000pt;}
.y55{bottom:907.629333pt;}
.y207{bottom:910.762667pt;}
.y18f{bottom:912.562667pt;}
.y204{bottom:913.296000pt;}
.y177{bottom:913.429333pt;}
.y23{bottom:913.629333pt;}
.y28{bottom:916.096000pt;}
.y13b{bottom:921.429333pt;}
.y54{bottom:926.962667pt;}
.y230{bottom:929.429333pt;}
.y10f{bottom:936.696000pt;}
.y2{bottom:946.296000pt;}
.y22{bottom:994.229333pt;}
.h4{height:24.666667pt;}
.h12{height:27.650000pt;}
.hf{height:35.674479pt;}
.h9{height:37.552083pt;}
.h8{height:40.963542pt;}
.h10{height:41.042969pt;}
.h2{height:41.307292pt;}
.h6{height:42.395833pt;}
.ha{height:43.203125pt;}
.hd{height:45.336458pt;}
.h7{height:47.523438pt;}
.h5{height:47.600000pt;}
.h3{height:50.583333pt;}
.h11{height:56.833333pt;}
.h13{height:68.566667pt;}
.hc{height:73.869792pt;}
.hb{height:74.136458pt;}
.he{height:104.803125pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:52.800000pt;}
.x5{left:61.000000pt;}
.x4{left:69.133333pt;}
.x11{left:88.866667pt;}
.x2{left:96.133333pt;}
.x3{left:103.666667pt;}
.x21{left:108.133333pt;}
.x7{left:109.133333pt;}
.x14{left:112.266667pt;}
.x23{left:113.666667pt;}
.x1d{left:116.600000pt;}
.x26{left:117.666667pt;}
.xb{left:120.133333pt;}
.x24{left:123.066667pt;}
.x25{left:133.866667pt;}
.x20{left:137.866667pt;}
.x22{left:139.533333pt;}
.x9{left:143.400000pt;}
.x1f{left:144.333333pt;}
.x8{left:146.133333pt;}
.x16{left:148.866667pt;}
.x1e{left:153.400000pt;}
.x1{left:165.533333pt;}
.xc{left:168.133333pt;}
.x1a{left:189.800000pt;}
.xd{left:192.133333pt;}
.x10{left:200.266667pt;}
.xf{left:204.333333pt;}
.xe{left:208.400000pt;}
.x15{left:224.333333pt;}
.x13{left:239.466667pt;}
.x17{left:281.466667pt;}
.x12{left:349.533333pt;}
.x19{left:351.333333pt;}
.x18{left:382.266667pt;}
.x6{left:392.866667pt;}
.x1b{left:402.866667pt;}
.x27{left:542.133333pt;}
.x28{left:641.466667pt;}
.x1c{left:682.866667pt;}
}




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