
    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_38a3697782965523f1502d40.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_37a5d6833e77e591f7b61784.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_abcdb1455796f5a228a27ac1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_72190f3ba7255ef22cd2697a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_0e65eeabf27b2c7b64d74a67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_0b51863a6408e1697e327343.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_a1273d855aa48cdd91972dbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b76382d12d170783a96489a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_4e6ba494b9d4a161f4f9eb4a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_69ba89a0edadfcadaa6e49be.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.ls21{letter-spacing:-0.942000px;}
.ls19{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.486600px;}
.ls29{letter-spacing:-0.450600px;}
.lsd{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.269400px;}
.ls1e{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.053280px;}
.ls23{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.206640px;}
.ls1d{letter-spacing:0.226200px;}
.lsf{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.314640px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.493800px;}
.ls27{letter-spacing:0.496080px;}
.ls17{letter-spacing:0.513600px;}
.ls2{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.924000px;}
.lse{letter-spacing:1.080000px;}
.ls12{letter-spacing:3.060000px;}
.ls15{letter-spacing:5.220000px;}
.ls4{letter-spacing:5.940000px;}
.ls1f{letter-spacing:6.660000px;}
.ls11{letter-spacing:7.380000px;}
.ls14{letter-spacing:8.100000px;}
.ls6{letter-spacing:8.820000px;}
.ls2b{letter-spacing:9.540000px;}
.ls20{letter-spacing:10.980000px;}
.ls18{letter-spacing:11.700000px;}
.ls28{letter-spacing:17.460000px;}
.ls10{letter-spacing:23.220000px;}
.ls1b{letter-spacing:26.820000px;}
.ls16{letter-spacing:58.500000px;}
.ls3{letter-spacing:66.960000px;}
.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;}
}
.ws3{word-spacing:-36.907200px;}
.ws17{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.453600px;}
.wsd{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.166200px;}
.ws6{word-spacing:-15.146400px;}
.wsf{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.680200px;}
.ws2{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.105360px;}
.ws8{word-spacing:-12.060000px;}
.ws19{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.118000px;}
.ws1{word-spacing:-10.933800px;}
.ws0{word-spacing:-10.440000px;}
.ws7{word-spacing:-7.560000px;}
.ws18{word-spacing:-7.073400px;}
.wse{word-spacing:0.000000px;}
._39{margin-left:-2.060400px;}
._0{margin-left:-1.013040px;}
._2{width:1.327440px;}
._9{width:2.539920px;}
._a{width:4.373280px;}
._8{width:5.379120px;}
._1{width:6.608880px;}
._3{width:7.771680px;}
._7{width:9.746880px;}
._17{width:11.069520px;}
._11{width:12.286080px;}
._15{width:13.679520px;}
._d{width:15.066000px;}
._f{width:16.362000px;}
._10{width:18.009600px;}
._e{width:19.224000px;}
._16{width:20.856240px;}
._b{width:22.842000px;}
._c{width:23.940000px;}
._20{width:25.696800px;}
._13{width:27.656160px;}
._14{width:28.902240px;}
._1c{width:30.123600px;}
._1b{width:31.430880px;}
._1a{width:32.449680px;}
._24{width:33.846240px;}
._12{width:35.258400px;}
._18{width:36.849600px;}
._1f{width:38.545200px;}
._37{width:39.859920px;}
._19{width:40.935600px;}
._21{width:42.130800px;}
._31{width:43.407360px;}
._2f{width:44.936640px;}
._26{width:46.134720px;}
._32{width:47.665920px;}
._55{width:48.982080px;}
._35{width:50.556960px;}
._36{width:52.349760px;}
._33{width:53.378400px;}
._1e{width:54.966480px;}
._1d{width:56.174400px;}
._25{width:57.476400px;}
._29{width:59.266320px;}
._54{width:60.606000px;}
._2b{width:61.625280px;}
._2a{width:63.093840px;}
._6{width:66.839520px;}
._34{width:68.305680px;}
._30{width:69.381360px;}
._4e{width:71.001840px;}
._2d{width:73.086480px;}
._2e{width:74.108160px;}
._4f{width:75.495600px;}
._2c{width:78.120000px;}
._23{width:79.179120px;}
._22{width:80.496720px;}
._4d{width:84.275280px;}
._4b{width:85.490640px;}
._42{width:86.590800px;}
._60{width:98.120160px;}
._61{width:99.312240px;}
._28{width:101.695920px;}
._27{width:102.846960px;}
._49{width:117.257520px;}
._38{width:120.221520px;}
._5a{width:128.173680px;}
._3f{width:132.660000px;}
._3e{width:133.721280px;}
._4a{width:135.251040px;}
._52{width:138.062880px;}
._51{width:139.167840px;}
._40{width:140.663280px;}
._5b{width:145.298880px;}
._5c{width:146.706720px;}
._41{width:151.009920px;}
._50{width:152.144400px;}
._3b{width:162.654000px;}
._45{width:210.962880px;}
._46{width:212.439600px;}
._47{width:218.720160px;}
._48{width:220.442880px;}
._56{width:252.690480px;}
._57{width:253.728480px;}
._58{width:256.878000px;}
._59{width:257.950800px;}
._62{width:264.692880px;}
._3d{width:265.754160px;}
._3c{width:266.863680px;}
._53{width:268.407360px;}
._44{width:273.424320px;}
._4c{width:281.576880px;}
._4{width:291.900000px;}
._3a{width:358.860000px;}
._5e{width:391.757040px;}
._5d{width:393.164880px;}
._43{width:1028.754000px;}
._5f{width:1064.174400px;}
._5{width:1209.960000px;}
.fca{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fc7{color:rgb(146,208,80);}
.fc6{color:rgb(0,32,96);}
.fc8{color:rgb(0,176,240);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(3,50,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:2.880000px;}
.fsd{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y15e{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.y53{bottom:4.140000px;}
.y9{bottom:4.320000px;}
.y142{bottom:5.565000px;}
.y12e{bottom:5.580000px;}
.y138{bottom:5.760000px;}
.y181{bottom:5.940000px;}
.y166{bottom:6.120000px;}
.y14c{bottom:7.905000px;}
.y171{bottom:8.100000px;}
.y15c{bottom:8.280000px;}
.y17b{bottom:8.820000px;}
.y16c{bottom:9.540000px;}
.y136{bottom:10.260000px;}
.y134{bottom:10.290000px;}
.y155{bottom:11.160000px;}
.y12b{bottom:11.880000px;}
.y161{bottom:12.060000px;}
.y148{bottom:14.385000px;}
.y52{bottom:14.400000px;}
.y140{bottom:14.565000px;}
.y12f{bottom:14.580000px;}
.y185{bottom:15.480000px;}
.y164{bottom:16.020000px;}
.y14a{bottom:16.905000px;}
.y174{bottom:18.180000px;}
.y159{bottom:18.360000px;}
.y178{bottom:18.720000px;}
.y169{bottom:19.440000px;}
.y156{bottom:21.060000px;}
.y16f{bottom:22.140000px;}
.y3{bottom:22.320000px;}
.y55{bottom:22.680000px;}
.y143{bottom:23.385000px;}
.y12d{bottom:23.400000px;}
.y141{bottom:23.430000px;}
.y132{bottom:23.580000px;}
.y188{bottom:25.380000px;}
.y14b{bottom:25.725000px;}
.y162{bottom:25.920000px;}
.y172{bottom:28.080000px;}
.y15a{bottom:28.260000px;}
.y17a{bottom:28.800000px;}
.y16a{bottom:29.340000px;}
.y8{bottom:30.780000px;}
.y154{bottom:30.960000px;}
.y160{bottom:31.860000px;}
.y150{bottom:32.400000px;}
.y184{bottom:35.280000px;}
.y163{bottom:35.820000px;}
.y2{bottom:37.080000px;}
.y173{bottom:37.980000px;}
.y158{bottom:38.160000px;}
.y177{bottom:38.700000px;}
.y168{bottom:39.240000px;}
.y144{bottom:41.385000px;}
.y14f{bottom:41.400000px;}
.y13e{bottom:41.745000px;}
.y16e{bottom:41.940000px;}
.y187{bottom:45.180000px;}
.y165{bottom:45.720000px;}
.y175{bottom:47.880000px;}
.y15b{bottom:48.060000px;}
.y179{bottom:48.600000px;}
.y16b{bottom:49.185000px;}
.y1{bottom:49.680000px;}
.y151{bottom:50.256000px;}
.y13a{bottom:51.120000px;}
.y183{bottom:55.080000px;}
.y180{bottom:58.500000px;}
.y14e{bottom:59.250000px;}
.y186{bottom:64.980000px;}
.y7{bottom:66.270000px;}
.y182{bottom:74.880000px;}
.y17f{bottom:78.300000px;}
.yc0{bottom:78.660000px;}
.y87{bottom:80.640000px;}
.y1d9{bottom:81.000000px;}
.y116{bottom:81.720000px;}
.y199{bottom:82.440000px;}
.y5{bottom:83.010000px;}
.y152{bottom:84.420000px;}
.y246{bottom:85.860000px;}
.ydd{bottom:92.520000px;}
.ya4{bottom:93.780000px;}
.y213{bottom:94.320000px;}
.y1d8{bottom:94.860000px;}
.y145{bottom:96.120000px;}
.y192{bottom:97.920000px;}
.ybf{bottom:98.460000px;}
.y146{bottom:98.490000px;}
.y115{bottom:99.000000px;}
.y198{bottom:99.900000px;}
.y86{bottom:100.440000px;}
.y245{bottom:103.680000px;}
.y212{bottom:108.180000px;}
.y1d7{bottom:108.720000px;}
.y50{bottom:108.900000px;}
.ya3{bottom:111.060000px;}
.ydc{bottom:112.500000px;}
.y191{bottom:115.200000px;}
.y114{bottom:116.280000px;}
.y197{bottom:117.180000px;}
.y41{bottom:117.540000px;}
.y1a9{bottom:118.080000px;}
.ybe{bottom:118.440000px;}
.y85{bottom:120.420000px;}
.y244{bottom:121.500000px;}
.y21d{bottom:122.040000px;}
.y211{bottom:127.980000px;}
.ya2{bottom:128.340000px;}
.y1d6{bottom:128.520000px;}
.y4f{bottom:128.700000px;}
.ydb{bottom:132.300000px;}
.y190{bottom:132.480000px;}
.y113{bottom:133.560000px;}
.y196{bottom:134.460000px;}
.y40{bottom:137.340000px;}
.y1a8{bottom:137.880000px;}
.ybd{bottom:138.240000px;}
.y243{bottom:139.320000px;}
.y84{bottom:140.220000px;}
.y210{bottom:141.840000px;}
.y1d5{bottom:142.200000px;}
.ya1{bottom:145.656000px;}
.y4e{bottom:148.716000px;}
.y18f{bottom:149.616000px;}
.y112{bottom:150.690000px;}
.y195{bottom:151.770000px;}
.yda{bottom:152.130000px;}
.y20f{bottom:155.550000px;}
.y1d4{bottom:156.090000px;}
.y3f{bottom:157.170000px;}
.ybc{bottom:158.070000px;}
.y83{bottom:160.050000px;}
.ya0{bottom:162.750000px;}
.y18e{bottom:166.890000px;}
.y111{bottom:167.970000px;}
.y14d{bottom:168.345000px;}
.y4d{bottom:168.510000px;}
.y194{bottom:168.870000px;}
.y20e{bottom:169.410000px;}
.y1d3{bottom:169.950000px;}
.yd9{bottom:171.930000px;}
.y242{bottom:175.170000px;}
.y3e{bottom:176.970000px;}
.ybb{bottom:177.870000px;}
.y82{bottom:179.850000px;}
.y9f{bottom:180.030000px;}
.y18d{bottom:180.390000px;}
.y193{bottom:182.550000px;}
.y21c{bottom:183.270000px;}
.y1d2{bottom:183.630000px;}
.y110{bottom:185.250000px;}
.y4c{bottom:188.310000px;}
.y20d{bottom:189.210000px;}
.yd8{bottom:191.730000px;}
.y241{bottom:192.990000px;}
.y3d{bottom:196.770000px;}
.y21b{bottom:196.950000px;}
.y9e{bottom:197.310000px;}
.yba{bottom:197.670000px;}
.y81{bottom:199.650000px;}
.y10f{bottom:202.530000px;}
.y20c{bottom:203.070000px;}
.y1d1{bottom:203.430000px;}
.y4b{bottom:208.110000px;}
.y21a{bottom:210.810000px;}
.yd7{bottom:211.710000px;}
.y9d{bottom:214.590000px;}
.y3c{bottom:216.750000px;}
.y1d0{bottom:217.290000px;}
.yb9{bottom:217.650000px;}
.y80{bottom:219.630000px;}
.y10e{bottom:219.810000px;}
.y149{bottom:222.705000px;}
.y229{bottom:224.670000px;}
.y4a{bottom:227.910000px;}
.y240{bottom:228.630000px;}
.y20b{bottom:230.610000px;}
.y1cf{bottom:231.150000px;}
.yd6{bottom:231.510000px;}
.y9c{bottom:231.870000px;}
.y3b{bottom:236.550000px;}
.y10d{bottom:236.910000px;}
.y1a7{bottom:237.090000px;}
.yb8{bottom:237.450000px;}
.y7f{bottom:239.430000px;}
.y20a{bottom:244.470000px;}
.y1ce{bottom:244.830000px;}
.y23f{bottom:246.450000px;}
.y49{bottom:247.890000px;}
.y9b{bottom:249.150000px;}
.yd5{bottom:251.310000px;}
.y10c{bottom:254.190000px;}
.y3a{bottom:256.350000px;}
.y1a6{bottom:256.890000px;}
.yb7{bottom:257.250000px;}
.y209{bottom:258.150000px;}
.y1cd{bottom:258.690000px;}
.y7e{bottom:259.230000px;}
.y147{bottom:263.925000px;}
.y23e{bottom:264.270000px;}
.y9a{bottom:266.250000px;}
.y48{bottom:267.690000px;}
.yd4{bottom:271.110000px;}
.y10b{bottom:271.470000px;}
.y219{bottom:272.010000px;}
.y1cc{bottom:272.550000px;}
.y39{bottom:276.150000px;}
.yb6{bottom:277.050000px;}
.y208{bottom:277.950000px;}
.y7d{bottom:279.030000px;}
.y23d{bottom:282.270000px;}
.y99{bottom:283.530000px;}
.y228{bottom:285.870000px;}
.y1cb{bottom:286.230000px;}
.y47{bottom:287.490000px;}
.y10a{bottom:288.750000px;}
.yd3{bottom:290.910000px;}
.y207{bottom:291.810000px;}
.y38{bottom:295.950000px;}
.yb5{bottom:296.850000px;}
.y7c{bottom:298.830000px;}
.y13d{bottom:300.285000px;}
.y98{bottom:300.810000px;}
.y23c{bottom:302.250000px;}
.y206{bottom:305.670000px;}
.y109{bottom:306.030000px;}
.y46{bottom:307.290000px;}
.y4{bottom:309.105000px;}
.yd2{bottom:310.890000px;}
.y37{bottom:315.930000px;}
.yb4{bottom:316.830000px;}
.y97{bottom:318.090000px;}
.y7b{bottom:318.810000px;}
.y205{bottom:319.350000px;}
.y1ca{bottom:319.890000px;}
.y108{bottom:323.310000px;}
.y23b{bottom:323.670000px;}
.y45{bottom:327.090000px;}
.yd1{bottom:330.690000px;}
.y204{bottom:333.210000px;}
.y1c9{bottom:333.750000px;}
.y96{bottom:335.370000px;}
.y36{bottom:335.730000px;}
.yb3{bottom:336.630000px;}
.y7a{bottom:338.610000px;}
.y107{bottom:340.410000px;}
.y44{bottom:347.070000px;}
.y23a{bottom:348.330000px;}
.yd0{bottom:350.490000px;}
.y95{bottom:352.470000px;}
.y203{bottom:353.010000px;}
.y1c8{bottom:353.550000px;}
.y13f{bottom:354.645000px;}
.y35{bottom:355.530000px;}
.yb2{bottom:356.430000px;}
.y106{bottom:357.690000px;}
.y79{bottom:358.410000px;}
.y43{bottom:366.870000px;}
.y1c7{bottom:367.230000px;}
.y94{bottom:369.750000px;}
.ycf{bottom:370.290000px;}
.y239{bottom:372.990000px;}
.y34{bottom:373.530000px;}
.y105{bottom:374.970000px;}
.yb1{bottom:376.230000px;}
.y78{bottom:378.255000px;}
.y202{bottom:380.595000px;}
.y1c6{bottom:381.135000px;}
.y33{bottom:386.535000px;}
.y42{bottom:386.715000px;}
.y93{bottom:387.075000px;}
.yce{bottom:390.135000px;}
.y139{bottom:391.035000px;}
.y104{bottom:392.295000px;}
.y201{bottom:394.455000px;}
.y1c5{bottom:394.815000px;}
.yb0{bottom:396.075000px;}
.y238{bottom:397.515000px;}
.y77{bottom:398.055000px;}
.y92{bottom:404.355000px;}
.y227{bottom:408.315000px;}
.y1c4{bottom:408.675000px;}
.y32{bottom:409.035000px;}
.y103{bottom:409.575000px;}
.ycd{bottom:410.115000px;}
.y200{bottom:414.255000px;}
.yaf{bottom:416.055000px;}
.y76{bottom:418.035000px;}
.y31{bottom:420.735000px;}
.y91{bottom:421.635000px;}
.y226{bottom:421.995000px;}
.y237{bottom:422.175000px;}
.y18c{bottom:424.695000px;}
.y102{bottom:426.855000px;}
.y13c{bottom:427.575000px;}
.y1ff{bottom:428.115000px;}
.y1c3{bottom:428.475000px;}
.ycc{bottom:429.915000px;}
.y30{bottom:432.075000px;}
.yae{bottom:435.855000px;}
.y75{bottom:437.835000px;}
.y90{bottom:438.915000px;}
.y1fe{bottom:441.795000px;}
.y1c2{bottom:442.335000px;}
.y101{bottom:443.955000px;}
.y18b{bottom:444.675000px;}
.y2f{bottom:446.295000px;}
.y236{bottom:446.835000px;}
.ycb{bottom:449.715000px;}
.y1a5{bottom:455.295000px;}
.yad{bottom:455.655000px;}
.y8f{bottom:456.015000px;}
.y2e{bottom:456.375000px;}
.ydf{bottom:457.275000px;}
.y74{bottom:457.635000px;}
.y100{bottom:461.235000px;}
.y18a{bottom:461.595000px;}
.y13b{bottom:463.935000px;}
.yca{bottom:469.515000px;}
.y235{bottom:471.495000px;}
.y2d{bottom:471.855000px;}
.y8e{bottom:473.295000px;}
.y1a4{bottom:475.095000px;}
.yac{bottom:475.455000px;}
.y1c1{bottom:475.815000px;}
.yde{bottom:477.075000px;}
.y73{bottom:477.435000px;}
.yff{bottom:478.515000px;}
.y225{bottom:483.195000px;}
.y2c{bottom:487.335000px;}
.yc9{bottom:489.315000px;}
.y1c0{bottom:489.675000px;}
.y8d{bottom:490.575000px;}
.yab{bottom:494.895000px;}
.y1a3{bottom:495.255000px;}
.yfe{bottom:495.795000px;}
.y234{bottom:496.155000px;}
.y22d{bottom:497.055000px;}
.y72{bottom:497.235000px;}
.y130{bottom:500.475000px;}
.y2b{bottom:502.815000px;}
.y189{bottom:502.995000px;}
.y1bf{bottom:503.535000px;}
.y8c{bottom:507.855000px;}
.yc8{bottom:509.295000px;}
.yfd{bottom:513.075000px;}
.y17e{bottom:514.515000px;}
.yaa{bottom:514.875000px;}
.y1a2{bottom:515.235000px;}
.y1fd{bottom:516.855000px;}
.y71{bottom:517.215000px;}
.y2a{bottom:518.295000px;}
.y233{bottom:520.815000px;}
.y8b{bottom:525.135000px;}
.yc7{bottom:529.095000px;}
.yfc{bottom:530.175000px;}
.y1fc{bottom:530.715000px;}
.y1be{bottom:531.075000px;}
.y29{bottom:533.955000px;}
.ya9{bottom:534.675000px;}
.y1a1{bottom:535.035000px;}
.y137{bottom:536.835000px;}
.y70{bottom:537.015000px;}
.y8a{bottom:542.415000px;}
.y1fb{bottom:544.395000px;}
.y232{bottom:545.475000px;}
.yfb{bottom:547.455000px;}
.yc6{bottom:548.895000px;}
.y28{bottom:549.435000px;}
.y1bd{bottom:550.875000px;}
.y1a0{bottom:554.835000px;}
.ya8{bottom:555.195000px;}
.y6f{bottom:556.815000px;}
.y1fa{bottom:558.255000px;}
.y89{bottom:559.515000px;}
.y218{bottom:564.195000px;}
.yfa{bottom:564.735000px;}
.y27{bottom:564.915000px;}
.yc5{bottom:568.695000px;}
.y231{bottom:570.135000px;}
.y135{bottom:573.375000px;}
.y19f{bottom:574.635000px;}
.y6e{bottom:576.615000px;}
.y88{bottom:576.795000px;}
.y1f9{bottom:578.055000px;}
.y1bc{bottom:578.415000px;}
.y26{bottom:580.395000px;}
.yf9{bottom:582.015000px;}
.yc4{bottom:588.495000px;}
.y1f8{bottom:591.915000px;}
.y1bb{bottom:592.275000px;}
.y19e{bottom:594.435000px;}
.y230{bottom:594.795000px;}
.y25{bottom:596.055000px;}
.y6d{bottom:596.415000px;}
.yf8{bottom:599.295000px;}
.y133{bottom:601.095000px;}
.y1f7{bottom:605.595000px;}
.yc3{bottom:608.115000px;}
.y24{bottom:611.565000px;}
.y1ba{bottom:612.105000px;}
.y17d{bottom:613.185000px;}
.y19d{bottom:614.085000px;}
.y6c{bottom:616.425000px;}
.yf7{bottom:616.605000px;}
.y22f{bottom:618.045000px;}
.y1f6{bottom:619.485000px;}
.y224{bottom:625.425000px;}
.y1b9{bottom:625.965000px;}
.y23{bottom:627.045000px;}
.yc2{bottom:627.945000px;}
.y131{bottom:628.845000px;}
.y1f5{bottom:633.345000px;}
.yf6{bottom:633.705000px;}
.y19c{bottom:633.885000px;}
.y6b{bottom:636.225000px;}
.y217{bottom:639.285000px;}
.y1b8{bottom:639.645000px;}
.y22{bottom:642.525000px;}
.y1f4{bottom:647.025000px;}
.yc1{bottom:650.265000px;}
.yf5{bottom:650.985000px;}
.y216{bottom:653.145000px;}
.y1b7{bottom:653.505000px;}
.y19b{bottom:653.685000px;}
.y6a{bottom:656.025000px;}
.y21{bottom:658.185000px;}
.y17c{bottom:662.145000px;}
.y12c{bottom:665.385000px;}
.y1f3{bottom:666.825000px;}
.yf4{bottom:668.265000px;}
.y176{bottom:673.305000px;}
.y20{bottom:673.665000px;}
.y19a{bottom:674.205000px;}
.y69{bottom:675.825000px;}
.y1f2{bottom:680.685000px;}
.yf3{bottom:685.545000px;}
.y1b6{bottom:687.165000px;}
.y1f{bottom:689.145000px;}
.y1f1{bottom:694.365000px;}
.y68{bottom:695.625000px;}
.y1b5{bottom:700.845000px;}
.y12a{bottom:701.745000px;}
.yf2{bottom:702.825000px;}
.y1e{bottom:704.625000px;}
.y22c{bottom:708.225000px;}
.y1f0{bottom:714.165000px;}
.y1b4{bottom:714.705000px;}
.y67{bottom:715.605000px;}
.yf1{bottom:720.105000px;}
.y1ef{bottom:728.025000px;}
.y1b3{bottom:728.565000px;}
.y1d{bottom:728.925000px;}
.y66{bottom:735.405000px;}
.yf0{bottom:737.205000px;}
.y16d{bottom:739.005000px;}
.y129{bottom:739.725000px;}
.y1ee{bottom:741.885000px;}
.y1b2{bottom:742.245000px;}
.y170{bottom:750.525000px;}
.y1c{bottom:752.685000px;}
.yef{bottom:754.485000px;}
.y65{bottom:755.205000px;}
.y1ed{bottom:755.565000px;}
.y1b1{bottom:756.105000px;}
.y128{bottom:759.165000px;}
.y1ec{bottom:769.425000px;}
.y1b{bottom:769.785000px;}
.yee{bottom:771.765000px;}
.y1b0{bottom:773.025000px;}
.y64{bottom:775.005000px;}
.y223{bottom:775.365000px;}
.y127{bottom:776.985000px;}
.y1a{bottom:779.505000px;}
.y1eb{bottom:783.285000px;}
.yed{bottom:789.045000px;}
.y222{bottom:789.225000px;}
.y19{bottom:791.745000px;}
.y1af{bottom:792.465000px;}
.y126{bottom:794.265000px;}
.y63{bottom:794.805000px;}
.y22b{bottom:796.965000px;}
.y1ea{bottom:803.085000px;}
.y167{bottom:803.625000px;}
.yec{bottom:806.325000px;}
.y18{bottom:807.225000px;}
.y125{bottom:811.365000px;}
.y1ae{bottom:813.525000px;}
.y62{bottom:814.785000px;}
.y1e9{bottom:816.765000px;}
.yeb{bottom:823.605000px;}
.y17{bottom:828.105000px;}
.y124{bottom:828.645000px;}
.y1e8{bottom:830.625000px;}
.y61{bottom:834.585000px;}
.y16{bottom:836.745000px;}
.yea{bottom:840.705000px;}
.y1e7{bottom:844.530000px;}
.y123{bottom:845.970000px;}
.y15{bottom:849.930000px;}
.y60{bottom:854.430000px;}
.ye9{bottom:858.030000px;}
.y22a{bottom:858.210000px;}
.y122{bottom:863.250000px;}
.y1e6{bottom:864.330000px;}
.y15f{bottom:870.810000px;}
.y14{bottom:873.690000px;}
.y1ad{bottom:873.870000px;}
.y5f{bottom:874.230000px;}
.ye8{bottom:875.310000px;}
.y1e5{bottom:878.010000px;}
.y121{bottom:880.530000px;}
.y1e4{bottom:891.870000px;}
.ye7{bottom:892.590000px;}
.y1ac{bottom:893.670000px;}
.y5e{bottom:894.030000px;}
.y13{bottom:896.550000px;}
.y120{bottom:897.810000px;}
.y1e3{bottom:905.730000px;}
.ye6{bottom:909.870000px;}
.y5d{bottom:914.010000px;}
.y11f{bottom:914.910000px;}
.y1e2{bottom:919.410000px;}
.y15d{bottom:919.770000px;}
.y221{bottom:925.530000px;}
.ye5{bottom:926.970000px;}
.y157{bottom:930.930000px;}
.y12{bottom:931.110000px;}
.y11e{bottom:932.190000px;}
.y1e1{bottom:933.270000px;}
.y5c{bottom:933.810000px;}
.y220{bottom:939.210000px;}
.ye4{bottom:944.250000px;}
.y1e0{bottom:947.130000px;}
.y11d{bottom:949.470000px;}
.y215{bottom:953.070000px;}
.y5b{bottom:953.610000px;}
.ye3{bottom:961.530000px;}
.y11{bottom:965.670000px;}
.y11c{bottom:966.750000px;}
.y1df{bottom:966.930000px;}
.y1ab{bottom:973.050000px;}
.y5a{bottom:973.410000px;}
.ye2{bottom:978.810000px;}
.y1de{bottom:980.610000px;}
.y11b{bottom:984.030000px;}
.y22e{bottom:986.730000px;}
.y1aa{bottom:992.850000px;}
.y59{bottom:993.210000px;}
.y1dd{bottom:994.470000px;}
.y153{bottom:995.550000px;}
.ye1{bottom:996.090000px;}
.y10{bottom:998.070000px;}
.y21f{bottom:1000.410000px;}
.y11a{bottom:1001.310000px;}
.y1dc{bottom:1008.330000px;}
.yf{bottom:1012.470000px;}
.y58{bottom:1013.190000px;}
.ye0{bottom:1013.370000px;}
.y21e{bottom:1014.270000px;}
.y119{bottom:1018.410000px;}
.y51{bottom:1020.930000px;}
.y6{bottom:1021.290000px;}
.y214{bottom:1022.010000px;}
.ye{bottom:1026.150000px;}
.y1db{bottom:1028.130000px;}
.y57{bottom:1032.990000px;}
.y118{bottom:1035.690000px;}
.yd{bottom:1041.810000px;}
.ya7{bottom:1052.430000px;}
.y56{bottom:1052.790000px;}
.y117{bottom:1052.970000px;}
.y1da{bottom:1055.670000px;}
.yc{bottom:1057.830000px;}
.yb{bottom:1081.080000px;}
.ya6{bottom:1086.480000px;}
.ya{bottom:1106.640000px;}
.y54{bottom:1113.660000px;}
.ya5{bottom:1122.660000px;}
.h31{height:1.065000px;}
.h35{height:1.080000px;}
.h36{height:2.826563px;}
.h19{height:21.225000px;}
.h12{height:23.319141px;}
.h25{height:26.985000px;}
.h24{height:27.030000px;}
.h11{height:29.664141px;}
.h10{height:29.678906px;}
.h20{height:30.960000px;}
.h15{height:35.332031px;}
.h27{height:35.625000px;}
.h21{height:35.640000px;}
.h2a{height:35.661000px;}
.h26{height:35.805000px;}
.h23{height:35.820000px;}
.h2d{height:40.305000px;}
.h18{height:40.985156px;}
.h16{height:42.086250px;}
.h3d{height:43.246406px;}
.hb{height:47.321367px;}
.h1{height:47.344922px;}
.hc{height:48.616875px;}
.h3b{height:49.583118px;}
.h2f{height:50.385000px;}
.h3c{height:50.558906px;}
.h3{height:52.998047px;}
.h1d{height:53.573906px;}
.h2b{height:53.625000px;}
.h14{height:54.421875px;}
.h3e{height:55.503491px;}
.h5{height:56.084062px;}
.ha{height:58.651172px;}
.h32{height:59.385000px;}
.h38{height:59.400000px;}
.h1a{height:59.439023px;}
.h17{height:60.226875px;}
.h1f{height:61.423863px;}
.h34{height:63.720000px;}
.h30{height:63.885000px;}
.h37{height:64.980000px;}
.h3a{height:65.010937px;}
.hf{height:65.518594px;}
.h1b{height:65.884219px;}
.h33{height:66.262500px;}
.h1c{height:66.757500px;}
.h3f{height:67.824844px;}
.he{height:70.664062px;}
.h8{height:71.324297px;}
.h2e{height:71.496000px;}
.h1e{height:84.898125px;}
.h29{height:90.021000px;}
.h39{height:97.770000px;}
.h4{height:98.661000px;}
.h13{height:105.996094px;}
.h6{height:106.050000px;}
.h28{height:108.705000px;}
.h2{height:108.843750px;}
.hd{height:121.179375px;}
.h7{height:142.038984px;}
.h9{height:145.125000px;}
.h22{height:164.190000px;}
.h2c{height:203.430000px;}
.h0{height:1188.000000px;}
.wd{width:3.814500px;}
.we{width:3.816000px;}
.w3{width:71.134500px;}
.wb{width:73.461000px;}
.w9{width:81.756000px;}
.w2{width:82.965000px;}
.w5{width:93.981000px;}
.wc{width:108.885000px;}
.w4{width:117.705000px;}
.w7{width:128.374500px;}
.wa{width:141.285000px;}
.w8{width:229.875000px;}
.w6{width:480.135000px;}
.w1{width:760.635000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:1.258500px;}
.x1c{left:8.098500px;}
.x4{left:10.798500px;}
.x18{left:14.400000px;}
.x1{left:81.000000px;}
.x3{left:82.081500px;}
.x25{left:91.261500px;}
.xc{left:102.816000px;}
.xb{left:108.936000px;}
.xd{left:126.936000px;}
.xe{left:137.736000px;}
.x1d{left:152.145000px;}
.x28{left:158.250000px;}
.x14{left:162.030000px;}
.xf{left:181.290000px;}
.x12{left:185.790000px;}
.x20{left:209.385000px;}
.x10{left:236.190000px;}
.x1e{left:269.865000px;}
.x11{left:297.255000px;}
.x6{left:336.135000px;}
.x1b{left:347.835000px;}
.x8{left:349.455000px;}
.x1f{left:363.855000px;}
.x5{left:369.795000px;}
.x9{left:394.275000px;}
.x19{left:400.395000px;}
.x13{left:422.895000px;}
.x7{left:429.015000px;}
.x21{left:439.275000px;}
.x1a{left:451.155000px;}
.x2{left:452.235000px;}
.xa{left:462.495000px;}
.x16{left:488.955000px;}
.x15{left:515.985000px;}
.x22{left:521.040000px;}
.x23{left:662.340000px;}
.x24{left:735.810000px;}
.x17{left:761.730000px;}
.x27{left:845.610000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.ls21{letter-spacing:-0.837333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.432533pt;}
.ls29{letter-spacing:-0.400533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.239467pt;}
.ls1e{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.047360pt;}
.ls23{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.183680pt;}
.ls1d{letter-spacing:0.201067pt;}
.lsf{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.279680pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.438933pt;}
.ls27{letter-spacing:0.440960pt;}
.ls17{letter-spacing:0.456533pt;}
.ls2{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.960000pt;}
.ls12{letter-spacing:2.720000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls4{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls11{letter-spacing:6.560000pt;}
.ls14{letter-spacing:7.200000pt;}
.ls6{letter-spacing:7.840000pt;}
.ls2b{letter-spacing:8.480000pt;}
.ls20{letter-spacing:9.760000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls28{letter-spacing:15.520000pt;}
.ls10{letter-spacing:20.640000pt;}
.ls1b{letter-spacing:23.840000pt;}
.ls16{letter-spacing:52.000000pt;}
.ls3{letter-spacing:59.520000pt;}
.ws3{word-spacing:-32.806400pt;}
.ws17{word-spacing:-14.101333pt;}
.ws11{word-spacing:-13.736533pt;}
.wsd{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.481067pt;}
.ws6{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.760320pt;}
.ws8{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.ws16{word-spacing:-9.882667pt;}
.ws1{word-spacing:-9.718933pt;}
.ws0{word-spacing:-9.280000pt;}
.ws7{word-spacing:-6.720000pt;}
.ws18{word-spacing:-6.287467pt;}
.wse{word-spacing:0.000000pt;}
._39{margin-left:-1.831467pt;}
._0{margin-left:-0.900480pt;}
._2{width:1.179947pt;}
._9{width:2.257707pt;}
._a{width:3.887360pt;}
._8{width:4.781440pt;}
._1{width:5.874560pt;}
._3{width:6.908160pt;}
._7{width:8.663893pt;}
._17{width:9.839573pt;}
._11{width:10.920960pt;}
._15{width:12.159573pt;}
._d{width:13.392000pt;}
._f{width:14.544000pt;}
._10{width:16.008533pt;}
._e{width:17.088000pt;}
._16{width:18.538880pt;}
._b{width:20.304000pt;}
._c{width:21.280000pt;}
._20{width:22.841600pt;}
._13{width:24.583253pt;}
._14{width:25.690880pt;}
._1c{width:26.776533pt;}
._1b{width:27.938560pt;}
._1a{width:28.844160pt;}
._24{width:30.085547pt;}
._12{width:31.340800pt;}
._18{width:32.755200pt;}
._1f{width:34.262400pt;}
._37{width:35.431040pt;}
._19{width:36.387200pt;}
._21{width:37.449600pt;}
._31{width:38.584320pt;}
._2f{width:39.943680pt;}
._26{width:41.008640pt;}
._32{width:42.369707pt;}
._55{width:43.539627pt;}
._35{width:44.939520pt;}
._36{width:46.533120pt;}
._33{width:47.447467pt;}
._1e{width:48.859093pt;}
._1d{width:49.932800pt;}
._25{width:51.090133pt;}
._29{width:52.681173pt;}
._54{width:53.872000pt;}
._2b{width:54.778027pt;}
._2a{width:56.083413pt;}
._6{width:59.412907pt;}
._34{width:60.716160pt;}
._30{width:61.672320pt;}
._4e{width:63.112747pt;}
._2d{width:64.965760pt;}
._2e{width:65.873920pt;}
._4f{width:67.107200pt;}
._2c{width:69.440000pt;}
._23{width:70.381440pt;}
._22{width:71.552640pt;}
._4d{width:74.911360pt;}
._4b{width:75.991680pt;}
._42{width:76.969600pt;}
._60{width:87.217920pt;}
._61{width:88.277547pt;}
._28{width:90.396373pt;}
._27{width:91.419520pt;}
._49{width:104.228907pt;}
._38{width:106.863573pt;}
._5a{width:113.932160pt;}
._3f{width:117.920000pt;}
._3e{width:118.863360pt;}
._4a{width:120.223147pt;}
._52{width:122.722560pt;}
._51{width:123.704747pt;}
._40{width:125.034027pt;}
._5b{width:129.154560pt;}
._5c{width:130.405973pt;}
._41{width:134.231040pt;}
._50{width:135.239467pt;}
._3b{width:144.581333pt;}
._45{width:187.522560pt;}
._46{width:188.835200pt;}
._47{width:194.417920pt;}
._48{width:195.949227pt;}
._56{width:224.613760pt;}
._57{width:225.536427pt;}
._58{width:228.336000pt;}
._59{width:229.289600pt;}
._62{width:235.282560pt;}
._3d{width:236.225920pt;}
._3c{width:237.212160pt;}
._53{width:238.584320pt;}
._44{width:243.043840pt;}
._4c{width:250.290560pt;}
._4{width:259.466667pt;}
._3a{width:318.986667pt;}
._5e{width:348.228480pt;}
._5d{width:349.479893pt;}
._43{width:914.448000pt;}
._5f{width:945.932800pt;}
._5{width:1075.520000pt;}
.fsf{font-size:2.560000pt;}
.fsd{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y15e{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.680000pt;}
.y9{bottom:3.840000pt;}
.y142{bottom:4.946667pt;}
.y12e{bottom:4.960000pt;}
.y138{bottom:5.120000pt;}
.y181{bottom:5.280000pt;}
.y166{bottom:5.440000pt;}
.y14c{bottom:7.026667pt;}
.y171{bottom:7.200000pt;}
.y15c{bottom:7.360000pt;}
.y17b{bottom:7.840000pt;}
.y16c{bottom:8.480000pt;}
.y136{bottom:9.120000pt;}
.y134{bottom:9.146667pt;}
.y155{bottom:9.920000pt;}
.y12b{bottom:10.560000pt;}
.y161{bottom:10.720000pt;}
.y148{bottom:12.786667pt;}
.y52{bottom:12.800000pt;}
.y140{bottom:12.946667pt;}
.y12f{bottom:12.960000pt;}
.y185{bottom:13.760000pt;}
.y164{bottom:14.240000pt;}
.y14a{bottom:15.026667pt;}
.y174{bottom:16.160000pt;}
.y159{bottom:16.320000pt;}
.y178{bottom:16.640000pt;}
.y169{bottom:17.280000pt;}
.y156{bottom:18.720000pt;}
.y16f{bottom:19.680000pt;}
.y3{bottom:19.840000pt;}
.y55{bottom:20.160000pt;}
.y143{bottom:20.786667pt;}
.y12d{bottom:20.800000pt;}
.y141{bottom:20.826667pt;}
.y132{bottom:20.960000pt;}
.y188{bottom:22.560000pt;}
.y14b{bottom:22.866667pt;}
.y162{bottom:23.040000pt;}
.y172{bottom:24.960000pt;}
.y15a{bottom:25.120000pt;}
.y17a{bottom:25.600000pt;}
.y16a{bottom:26.080000pt;}
.y8{bottom:27.360000pt;}
.y154{bottom:27.520000pt;}
.y160{bottom:28.320000pt;}
.y150{bottom:28.800000pt;}
.y184{bottom:31.360000pt;}
.y163{bottom:31.840000pt;}
.y2{bottom:32.960000pt;}
.y173{bottom:33.760000pt;}
.y158{bottom:33.920000pt;}
.y177{bottom:34.400000pt;}
.y168{bottom:34.880000pt;}
.y144{bottom:36.786667pt;}
.y14f{bottom:36.800000pt;}
.y13e{bottom:37.106667pt;}
.y16e{bottom:37.280000pt;}
.y187{bottom:40.160000pt;}
.y165{bottom:40.640000pt;}
.y175{bottom:42.560000pt;}
.y15b{bottom:42.720000pt;}
.y179{bottom:43.200000pt;}
.y16b{bottom:43.720000pt;}
.y1{bottom:44.160000pt;}
.y151{bottom:44.672000pt;}
.y13a{bottom:45.440000pt;}
.y183{bottom:48.960000pt;}
.y180{bottom:52.000000pt;}
.y14e{bottom:52.666667pt;}
.y186{bottom:57.760000pt;}
.y7{bottom:58.906667pt;}
.y182{bottom:66.560000pt;}
.y17f{bottom:69.600000pt;}
.yc0{bottom:69.920000pt;}
.y87{bottom:71.680000pt;}
.y1d9{bottom:72.000000pt;}
.y116{bottom:72.640000pt;}
.y199{bottom:73.280000pt;}
.y5{bottom:73.786667pt;}
.y152{bottom:75.040000pt;}
.y246{bottom:76.320000pt;}
.ydd{bottom:82.240000pt;}
.ya4{bottom:83.360000pt;}
.y213{bottom:83.840000pt;}
.y1d8{bottom:84.320000pt;}
.y145{bottom:85.440000pt;}
.y192{bottom:87.040000pt;}
.ybf{bottom:87.520000pt;}
.y146{bottom:87.546667pt;}
.y115{bottom:88.000000pt;}
.y198{bottom:88.800000pt;}
.y86{bottom:89.280000pt;}
.y245{bottom:92.160000pt;}
.y212{bottom:96.160000pt;}
.y1d7{bottom:96.640000pt;}
.y50{bottom:96.800000pt;}
.ya3{bottom:98.720000pt;}
.ydc{bottom:100.000000pt;}
.y191{bottom:102.400000pt;}
.y114{bottom:103.360000pt;}
.y197{bottom:104.160000pt;}
.y41{bottom:104.480000pt;}
.y1a9{bottom:104.960000pt;}
.ybe{bottom:105.280000pt;}
.y85{bottom:107.040000pt;}
.y244{bottom:108.000000pt;}
.y21d{bottom:108.480000pt;}
.y211{bottom:113.760000pt;}
.ya2{bottom:114.080000pt;}
.y1d6{bottom:114.240000pt;}
.y4f{bottom:114.400000pt;}
.ydb{bottom:117.600000pt;}
.y190{bottom:117.760000pt;}
.y113{bottom:118.720000pt;}
.y196{bottom:119.520000pt;}
.y40{bottom:122.080000pt;}
.y1a8{bottom:122.560000pt;}
.ybd{bottom:122.880000pt;}
.y243{bottom:123.840000pt;}
.y84{bottom:124.640000pt;}
.y210{bottom:126.080000pt;}
.y1d5{bottom:126.400000pt;}
.ya1{bottom:129.472000pt;}
.y4e{bottom:132.192000pt;}
.y18f{bottom:132.992000pt;}
.y112{bottom:133.946667pt;}
.y195{bottom:134.906667pt;}
.yda{bottom:135.226667pt;}
.y20f{bottom:138.266667pt;}
.y1d4{bottom:138.746667pt;}
.y3f{bottom:139.706667pt;}
.ybc{bottom:140.506667pt;}
.y83{bottom:142.266667pt;}
.ya0{bottom:144.666667pt;}
.y18e{bottom:148.346667pt;}
.y111{bottom:149.306667pt;}
.y14d{bottom:149.640000pt;}
.y4d{bottom:149.786667pt;}
.y194{bottom:150.106667pt;}
.y20e{bottom:150.586667pt;}
.y1d3{bottom:151.066667pt;}
.yd9{bottom:152.826667pt;}
.y242{bottom:155.706667pt;}
.y3e{bottom:157.306667pt;}
.ybb{bottom:158.106667pt;}
.y82{bottom:159.866667pt;}
.y9f{bottom:160.026667pt;}
.y18d{bottom:160.346667pt;}
.y193{bottom:162.266667pt;}
.y21c{bottom:162.906667pt;}
.y1d2{bottom:163.226667pt;}
.y110{bottom:164.666667pt;}
.y4c{bottom:167.386667pt;}
.y20d{bottom:168.186667pt;}
.yd8{bottom:170.426667pt;}
.y241{bottom:171.546667pt;}
.y3d{bottom:174.906667pt;}
.y21b{bottom:175.066667pt;}
.y9e{bottom:175.386667pt;}
.yba{bottom:175.706667pt;}
.y81{bottom:177.466667pt;}
.y10f{bottom:180.026667pt;}
.y20c{bottom:180.506667pt;}
.y1d1{bottom:180.826667pt;}
.y4b{bottom:184.986667pt;}
.y21a{bottom:187.386667pt;}
.yd7{bottom:188.186667pt;}
.y9d{bottom:190.746667pt;}
.y3c{bottom:192.666667pt;}
.y1d0{bottom:193.146667pt;}
.yb9{bottom:193.466667pt;}
.y80{bottom:195.226667pt;}
.y10e{bottom:195.386667pt;}
.y149{bottom:197.960000pt;}
.y229{bottom:199.706667pt;}
.y4a{bottom:202.586667pt;}
.y240{bottom:203.226667pt;}
.y20b{bottom:204.986667pt;}
.y1cf{bottom:205.466667pt;}
.yd6{bottom:205.786667pt;}
.y9c{bottom:206.106667pt;}
.y3b{bottom:210.266667pt;}
.y10d{bottom:210.586667pt;}
.y1a7{bottom:210.746667pt;}
.yb8{bottom:211.066667pt;}
.y7f{bottom:212.826667pt;}
.y20a{bottom:217.306667pt;}
.y1ce{bottom:217.626667pt;}
.y23f{bottom:219.066667pt;}
.y49{bottom:220.346667pt;}
.y9b{bottom:221.466667pt;}
.yd5{bottom:223.386667pt;}
.y10c{bottom:225.946667pt;}
.y3a{bottom:227.866667pt;}
.y1a6{bottom:228.346667pt;}
.yb7{bottom:228.666667pt;}
.y209{bottom:229.466667pt;}
.y1cd{bottom:229.946667pt;}
.y7e{bottom:230.426667pt;}
.y147{bottom:234.600000pt;}
.y23e{bottom:234.906667pt;}
.y9a{bottom:236.666667pt;}
.y48{bottom:237.946667pt;}
.yd4{bottom:240.986667pt;}
.y10b{bottom:241.306667pt;}
.y219{bottom:241.786667pt;}
.y1cc{bottom:242.266667pt;}
.y39{bottom:245.466667pt;}
.yb6{bottom:246.266667pt;}
.y208{bottom:247.066667pt;}
.y7d{bottom:248.026667pt;}
.y23d{bottom:250.906667pt;}
.y99{bottom:252.026667pt;}
.y228{bottom:254.106667pt;}
.y1cb{bottom:254.426667pt;}
.y47{bottom:255.546667pt;}
.y10a{bottom:256.666667pt;}
.yd3{bottom:258.586667pt;}
.y207{bottom:259.386667pt;}
.y38{bottom:263.066667pt;}
.yb5{bottom:263.866667pt;}
.y7c{bottom:265.626667pt;}
.y13d{bottom:266.920000pt;}
.y98{bottom:267.386667pt;}
.y23c{bottom:268.666667pt;}
.y206{bottom:271.706667pt;}
.y109{bottom:272.026667pt;}
.y46{bottom:273.146667pt;}
.y4{bottom:274.760000pt;}
.yd2{bottom:276.346667pt;}
.y37{bottom:280.826667pt;}
.yb4{bottom:281.626667pt;}
.y97{bottom:282.746667pt;}
.y7b{bottom:283.386667pt;}
.y205{bottom:283.866667pt;}
.y1ca{bottom:284.346667pt;}
.y108{bottom:287.386667pt;}
.y23b{bottom:287.706667pt;}
.y45{bottom:290.746667pt;}
.yd1{bottom:293.946667pt;}
.y204{bottom:296.186667pt;}
.y1c9{bottom:296.666667pt;}
.y96{bottom:298.106667pt;}
.y36{bottom:298.426667pt;}
.yb3{bottom:299.226667pt;}
.y7a{bottom:300.986667pt;}
.y107{bottom:302.586667pt;}
.y44{bottom:308.506667pt;}
.y23a{bottom:309.626667pt;}
.yd0{bottom:311.546667pt;}
.y95{bottom:313.306667pt;}
.y203{bottom:313.786667pt;}
.y1c8{bottom:314.266667pt;}
.y13f{bottom:315.240000pt;}
.y35{bottom:316.026667pt;}
.yb2{bottom:316.826667pt;}
.y106{bottom:317.946667pt;}
.y79{bottom:318.586667pt;}
.y43{bottom:326.106667pt;}
.y1c7{bottom:326.426667pt;}
.y94{bottom:328.666667pt;}
.ycf{bottom:329.146667pt;}
.y239{bottom:331.546667pt;}
.y34{bottom:332.026667pt;}
.y105{bottom:333.306667pt;}
.yb1{bottom:334.426667pt;}
.y78{bottom:336.226667pt;}
.y202{bottom:338.306667pt;}
.y1c6{bottom:338.786667pt;}
.y33{bottom:343.586667pt;}
.y42{bottom:343.746667pt;}
.y93{bottom:344.066667pt;}
.yce{bottom:346.786667pt;}
.y139{bottom:347.586667pt;}
.y104{bottom:348.706667pt;}
.y201{bottom:350.626667pt;}
.y1c5{bottom:350.946667pt;}
.yb0{bottom:352.066667pt;}
.y238{bottom:353.346667pt;}
.y77{bottom:353.826667pt;}
.y92{bottom:359.426667pt;}
.y227{bottom:362.946667pt;}
.y1c4{bottom:363.266667pt;}
.y32{bottom:363.586667pt;}
.y103{bottom:364.066667pt;}
.ycd{bottom:364.546667pt;}
.y200{bottom:368.226667pt;}
.yaf{bottom:369.826667pt;}
.y76{bottom:371.586667pt;}
.y31{bottom:373.986667pt;}
.y91{bottom:374.786667pt;}
.y226{bottom:375.106667pt;}
.y237{bottom:375.266667pt;}
.y18c{bottom:377.506667pt;}
.y102{bottom:379.426667pt;}
.y13c{bottom:380.066667pt;}
.y1ff{bottom:380.546667pt;}
.y1c3{bottom:380.866667pt;}
.ycc{bottom:382.146667pt;}
.y30{bottom:384.066667pt;}
.yae{bottom:387.426667pt;}
.y75{bottom:389.186667pt;}
.y90{bottom:390.146667pt;}
.y1fe{bottom:392.706667pt;}
.y1c2{bottom:393.186667pt;}
.y101{bottom:394.626667pt;}
.y18b{bottom:395.266667pt;}
.y2f{bottom:396.706667pt;}
.y236{bottom:397.186667pt;}
.ycb{bottom:399.746667pt;}
.y1a5{bottom:404.706667pt;}
.yad{bottom:405.026667pt;}
.y8f{bottom:405.346667pt;}
.y2e{bottom:405.666667pt;}
.ydf{bottom:406.466667pt;}
.y74{bottom:406.786667pt;}
.y100{bottom:409.986667pt;}
.y18a{bottom:410.306667pt;}
.y13b{bottom:412.386667pt;}
.yca{bottom:417.346667pt;}
.y235{bottom:419.106667pt;}
.y2d{bottom:419.426667pt;}
.y8e{bottom:420.706667pt;}
.y1a4{bottom:422.306667pt;}
.yac{bottom:422.626667pt;}
.y1c1{bottom:422.946667pt;}
.yde{bottom:424.066667pt;}
.y73{bottom:424.386667pt;}
.yff{bottom:425.346667pt;}
.y225{bottom:429.506667pt;}
.y2c{bottom:433.186667pt;}
.yc9{bottom:434.946667pt;}
.y1c0{bottom:435.266667pt;}
.y8d{bottom:436.066667pt;}
.yab{bottom:439.906667pt;}
.y1a3{bottom:440.226667pt;}
.yfe{bottom:440.706667pt;}
.y234{bottom:441.026667pt;}
.y22d{bottom:441.826667pt;}
.y72{bottom:441.986667pt;}
.y130{bottom:444.866667pt;}
.y2b{bottom:446.946667pt;}
.y189{bottom:447.106667pt;}
.y1bf{bottom:447.586667pt;}
.y8c{bottom:451.426667pt;}
.yc8{bottom:452.706667pt;}
.yfd{bottom:456.066667pt;}
.y17e{bottom:457.346667pt;}
.yaa{bottom:457.666667pt;}
.y1a2{bottom:457.986667pt;}
.y1fd{bottom:459.426667pt;}
.y71{bottom:459.746667pt;}
.y2a{bottom:460.706667pt;}
.y233{bottom:462.946667pt;}
.y8b{bottom:466.786667pt;}
.yc7{bottom:470.306667pt;}
.yfc{bottom:471.266667pt;}
.y1fc{bottom:471.746667pt;}
.y1be{bottom:472.066667pt;}
.y29{bottom:474.626667pt;}
.ya9{bottom:475.266667pt;}
.y1a1{bottom:475.586667pt;}
.y137{bottom:477.186667pt;}
.y70{bottom:477.346667pt;}
.y8a{bottom:482.146667pt;}
.y1fb{bottom:483.906667pt;}
.y232{bottom:484.866667pt;}
.yfb{bottom:486.626667pt;}
.yc6{bottom:487.906667pt;}
.y28{bottom:488.386667pt;}
.y1bd{bottom:489.666667pt;}
.y1a0{bottom:493.186667pt;}
.ya8{bottom:493.506667pt;}
.y6f{bottom:494.946667pt;}
.y1fa{bottom:496.226667pt;}
.y89{bottom:497.346667pt;}
.y218{bottom:501.506667pt;}
.yfa{bottom:501.986667pt;}
.y27{bottom:502.146667pt;}
.yc5{bottom:505.506667pt;}
.y231{bottom:506.786667pt;}
.y135{bottom:509.666667pt;}
.y19f{bottom:510.786667pt;}
.y6e{bottom:512.546667pt;}
.y88{bottom:512.706667pt;}
.y1f9{bottom:513.826667pt;}
.y1bc{bottom:514.146667pt;}
.y26{bottom:515.906667pt;}
.yf9{bottom:517.346667pt;}
.yc4{bottom:523.106667pt;}
.y1f8{bottom:526.146667pt;}
.y1bb{bottom:526.466667pt;}
.y19e{bottom:528.386667pt;}
.y230{bottom:528.706667pt;}
.y25{bottom:529.826667pt;}
.y6d{bottom:530.146667pt;}
.yf8{bottom:532.706667pt;}
.y133{bottom:534.306667pt;}
.y1f7{bottom:538.306667pt;}
.yc3{bottom:540.546667pt;}
.y24{bottom:543.613333pt;}
.y1ba{bottom:544.093333pt;}
.y17d{bottom:545.053333pt;}
.y19d{bottom:545.853333pt;}
.y6c{bottom:547.933333pt;}
.yf7{bottom:548.093333pt;}
.y22f{bottom:549.373333pt;}
.y1f6{bottom:550.653333pt;}
.y224{bottom:555.933333pt;}
.y1b9{bottom:556.413333pt;}
.y23{bottom:557.373333pt;}
.yc2{bottom:558.173333pt;}
.y131{bottom:558.973333pt;}
.y1f5{bottom:562.973333pt;}
.yf6{bottom:563.293333pt;}
.y19c{bottom:563.453333pt;}
.y6b{bottom:565.533333pt;}
.y217{bottom:568.253333pt;}
.y1b8{bottom:568.573333pt;}
.y22{bottom:571.133333pt;}
.y1f4{bottom:575.133333pt;}
.yc1{bottom:578.013333pt;}
.yf5{bottom:578.653333pt;}
.y216{bottom:580.573333pt;}
.y1b7{bottom:580.893333pt;}
.y19b{bottom:581.053333pt;}
.y6a{bottom:583.133333pt;}
.y21{bottom:585.053333pt;}
.y17c{bottom:588.573333pt;}
.y12c{bottom:591.453333pt;}
.y1f3{bottom:592.733333pt;}
.yf4{bottom:594.013333pt;}
.y176{bottom:598.493333pt;}
.y20{bottom:598.813333pt;}
.y19a{bottom:599.293333pt;}
.y69{bottom:600.733333pt;}
.y1f2{bottom:605.053333pt;}
.yf3{bottom:609.373333pt;}
.y1b6{bottom:610.813333pt;}
.y1f{bottom:612.573333pt;}
.y1f1{bottom:617.213333pt;}
.y68{bottom:618.333333pt;}
.y1b5{bottom:622.973333pt;}
.y12a{bottom:623.773333pt;}
.yf2{bottom:624.733333pt;}
.y1e{bottom:626.333333pt;}
.y22c{bottom:629.533333pt;}
.y1f0{bottom:634.813333pt;}
.y1b4{bottom:635.293333pt;}
.y67{bottom:636.093333pt;}
.yf1{bottom:640.093333pt;}
.y1ef{bottom:647.133333pt;}
.y1b3{bottom:647.613333pt;}
.y1d{bottom:647.933333pt;}
.y66{bottom:653.693333pt;}
.yf0{bottom:655.293333pt;}
.y16d{bottom:656.893333pt;}
.y129{bottom:657.533333pt;}
.y1ee{bottom:659.453333pt;}
.y1b2{bottom:659.773333pt;}
.y170{bottom:667.133333pt;}
.y1c{bottom:669.053333pt;}
.yef{bottom:670.653333pt;}
.y65{bottom:671.293333pt;}
.y1ed{bottom:671.613333pt;}
.y1b1{bottom:672.093333pt;}
.y128{bottom:674.813333pt;}
.y1ec{bottom:683.933333pt;}
.y1b{bottom:684.253333pt;}
.yee{bottom:686.013333pt;}
.y1b0{bottom:687.133333pt;}
.y64{bottom:688.893333pt;}
.y223{bottom:689.213333pt;}
.y127{bottom:690.653333pt;}
.y1a{bottom:692.893333pt;}
.y1eb{bottom:696.253333pt;}
.yed{bottom:701.373333pt;}
.y222{bottom:701.533333pt;}
.y19{bottom:703.773333pt;}
.y1af{bottom:704.413333pt;}
.y126{bottom:706.013333pt;}
.y63{bottom:706.493333pt;}
.y22b{bottom:708.413333pt;}
.y1ea{bottom:713.853333pt;}
.y167{bottom:714.333333pt;}
.yec{bottom:716.733333pt;}
.y18{bottom:717.533333pt;}
.y125{bottom:721.213333pt;}
.y1ae{bottom:723.133333pt;}
.y62{bottom:724.253333pt;}
.y1e9{bottom:726.013333pt;}
.yeb{bottom:732.093333pt;}
.y17{bottom:736.093333pt;}
.y124{bottom:736.573333pt;}
.y1e8{bottom:738.333333pt;}
.y61{bottom:741.853333pt;}
.y16{bottom:743.773333pt;}
.yea{bottom:747.293333pt;}
.y1e7{bottom:750.693333pt;}
.y123{bottom:751.973333pt;}
.y15{bottom:755.493333pt;}
.y60{bottom:759.493333pt;}
.ye9{bottom:762.693333pt;}
.y22a{bottom:762.853333pt;}
.y122{bottom:767.333333pt;}
.y1e6{bottom:768.293333pt;}
.y15f{bottom:774.053333pt;}
.y14{bottom:776.613333pt;}
.y1ad{bottom:776.773333pt;}
.y5f{bottom:777.093333pt;}
.ye8{bottom:778.053333pt;}
.y1e5{bottom:780.453333pt;}
.y121{bottom:782.693333pt;}
.y1e4{bottom:792.773333pt;}
.ye7{bottom:793.413333pt;}
.y1ac{bottom:794.373333pt;}
.y5e{bottom:794.693333pt;}
.y13{bottom:796.933333pt;}
.y120{bottom:798.053333pt;}
.y1e3{bottom:805.093333pt;}
.ye6{bottom:808.773333pt;}
.y5d{bottom:812.453333pt;}
.y11f{bottom:813.253333pt;}
.y1e2{bottom:817.253333pt;}
.y15d{bottom:817.573333pt;}
.y221{bottom:822.693333pt;}
.ye5{bottom:823.973333pt;}
.y157{bottom:827.493333pt;}
.y12{bottom:827.653333pt;}
.y11e{bottom:828.613333pt;}
.y1e1{bottom:829.573333pt;}
.y5c{bottom:830.053333pt;}
.y220{bottom:834.853333pt;}
.ye4{bottom:839.333333pt;}
.y1e0{bottom:841.893333pt;}
.y11d{bottom:843.973333pt;}
.y215{bottom:847.173333pt;}
.y5b{bottom:847.653333pt;}
.ye3{bottom:854.693333pt;}
.y11{bottom:858.373333pt;}
.y11c{bottom:859.333333pt;}
.y1df{bottom:859.493333pt;}
.y1ab{bottom:864.933333pt;}
.y5a{bottom:865.253333pt;}
.ye2{bottom:870.053333pt;}
.y1de{bottom:871.653333pt;}
.y11b{bottom:874.693333pt;}
.y22e{bottom:877.093333pt;}
.y1aa{bottom:882.533333pt;}
.y59{bottom:882.853333pt;}
.y1dd{bottom:883.973333pt;}
.y153{bottom:884.933333pt;}
.ye1{bottom:885.413333pt;}
.y10{bottom:887.173333pt;}
.y21f{bottom:889.253333pt;}
.y11a{bottom:890.053333pt;}
.y1dc{bottom:896.293333pt;}
.yf{bottom:899.973333pt;}
.y58{bottom:900.613333pt;}
.ye0{bottom:900.773333pt;}
.y21e{bottom:901.573333pt;}
.y119{bottom:905.253333pt;}
.y51{bottom:907.493333pt;}
.y6{bottom:907.813333pt;}
.y214{bottom:908.453333pt;}
.ye{bottom:912.133333pt;}
.y1db{bottom:913.893333pt;}
.y57{bottom:918.213333pt;}
.y118{bottom:920.613333pt;}
.yd{bottom:926.053333pt;}
.ya7{bottom:935.493333pt;}
.y56{bottom:935.813333pt;}
.y117{bottom:935.973333pt;}
.y1da{bottom:938.373333pt;}
.yc{bottom:940.293333pt;}
.yb{bottom:960.960000pt;}
.ya6{bottom:965.760000pt;}
.ya{bottom:983.680000pt;}
.y54{bottom:989.920000pt;}
.ya5{bottom:997.920000pt;}
.h31{height:0.946667pt;}
.h35{height:0.960000pt;}
.h36{height:2.512500pt;}
.h19{height:18.866667pt;}
.h12{height:20.728125pt;}
.h25{height:23.986667pt;}
.h24{height:24.026667pt;}
.h11{height:26.368125pt;}
.h10{height:26.381250pt;}
.h20{height:27.520000pt;}
.h15{height:31.406250pt;}
.h27{height:31.666667pt;}
.h21{height:31.680000pt;}
.h2a{height:31.698667pt;}
.h26{height:31.826667pt;}
.h23{height:31.840000pt;}
.h2d{height:35.826667pt;}
.h18{height:36.431250pt;}
.h16{height:37.410000pt;}
.h3d{height:38.441250pt;}
.hb{height:42.063437pt;}
.h1{height:42.084375pt;}
.hc{height:43.215000pt;}
.h3b{height:44.073883pt;}
.h2f{height:44.786667pt;}
.h3c{height:44.941250pt;}
.h3{height:47.109375pt;}
.h1d{height:47.621250pt;}
.h2b{height:47.666667pt;}
.h14{height:48.375000pt;}
.h3e{height:49.336436pt;}
.h5{height:49.852500pt;}
.ha{height:52.134375pt;}
.h32{height:52.786667pt;}
.h38{height:52.800000pt;}
.h1a{height:52.834688pt;}
.h17{height:53.535000pt;}
.h1f{height:54.598989pt;}
.h34{height:56.640000pt;}
.h30{height:56.786667pt;}
.h37{height:57.760000pt;}
.h3a{height:57.787500pt;}
.hf{height:58.238750pt;}
.h1b{height:58.563750pt;}
.h33{height:58.900000pt;}
.h1c{height:59.340000pt;}
.h3f{height:60.288750pt;}
.he{height:62.812500pt;}
.h8{height:63.399375pt;}
.h2e{height:63.552000pt;}
.h1e{height:75.465000pt;}
.h29{height:80.018667pt;}
.h39{height:86.906667pt;}
.h4{height:87.698667pt;}
.h13{height:94.218750pt;}
.h6{height:94.266667pt;}
.h28{height:96.626667pt;}
.h2{height:96.750000pt;}
.hd{height:107.715000pt;}
.h7{height:126.256875pt;}
.h9{height:129.000000pt;}
.h22{height:145.946667pt;}
.h2c{height:180.826667pt;}
.h0{height:1056.000000pt;}
.wd{width:3.390667pt;}
.we{width:3.392000pt;}
.w3{width:63.230667pt;}
.wb{width:65.298667pt;}
.w9{width:72.672000pt;}
.w2{width:73.746667pt;}
.w5{width:83.538667pt;}
.wc{width:96.786667pt;}
.w4{width:104.626667pt;}
.w7{width:114.110667pt;}
.wa{width:125.586667pt;}
.w8{width:204.333333pt;}
.w6{width:426.786667pt;}
.w1{width:676.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:1.118667pt;}
.x1c{left:7.198667pt;}
.x4{left:9.598667pt;}
.x18{left:12.800000pt;}
.x1{left:72.000000pt;}
.x3{left:72.961333pt;}
.x25{left:81.121333pt;}
.xc{left:91.392000pt;}
.xb{left:96.832000pt;}
.xd{left:112.832000pt;}
.xe{left:122.432000pt;}
.x1d{left:135.240000pt;}
.x28{left:140.666667pt;}
.x14{left:144.026667pt;}
.xf{left:161.146667pt;}
.x12{left:165.146667pt;}
.x20{left:186.120000pt;}
.x10{left:209.946667pt;}
.x1e{left:239.880000pt;}
.x11{left:264.226667pt;}
.x6{left:298.786667pt;}
.x1b{left:309.186667pt;}
.x8{left:310.626667pt;}
.x1f{left:323.426667pt;}
.x5{left:328.706667pt;}
.x9{left:350.466667pt;}
.x19{left:355.906667pt;}
.x13{left:375.906667pt;}
.x7{left:381.346667pt;}
.x21{left:390.466667pt;}
.x1a{left:401.026667pt;}
.x2{left:401.986667pt;}
.xa{left:411.106667pt;}
.x16{left:434.626667pt;}
.x15{left:458.653333pt;}
.x22{left:463.146667pt;}
.x23{left:588.746667pt;}
.x24{left:654.053333pt;}
.x17{left:677.093333pt;}
.x27{left:751.653333pt;}
}




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