
    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_ba87f35656b713a3c10ce5ef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_661edef946707403bd8e214d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_14eb1b749a5712883fa0d5c9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_f2f6eb8f8c68b51d4455f8d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_40846ab092940fc64b98c87f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d1bda6bbc138a6266304eaf7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_bb44081014806e4e17f4f9a2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02e8625fe569e53bf7217945.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_3c9c3558c2a57cd330a51093.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_e6744905ffb1a794e35b36b9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f8690f112897e1eebbe846f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a6c4684dd7401a0d31eecc6a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.063477;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:ffe;src:url('chunks/assets/font_6715996cd915500ad315f650.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_4dc6f58f8085b7a9384e2fd2.woff')format("woff");}.fff{font-family:fff;line-height:1.172852;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:ff10;src:url('chunks/assets/font_74300bcab243f176ae204bec.woff')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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);}
.v4{vertical-align:-89.280000px;}
.v3{vertical-align:-72.720000px;}
.v2{vertical-align:-27.360000px;}
.v10{vertical-align:-23.760000px;}
.v5{vertical-align:-14.400000px;}
.v8{vertical-align:-11.520000px;}
.vc{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.880000px;}
.ve{vertical-align:5.760000px;}
.v6{vertical-align:14.400000px;}
.vf{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v9{vertical-align:36.000000px;}
.v7{vertical-align:42.480000px;}
.vb{vertical-align:66.960000px;}
.va{vertical-align:78.480000px;}
.ls27{letter-spacing:-5.112000px;}
.ls2a{letter-spacing:-4.320000px;}
.ls12{letter-spacing:-3.024000px;}
.ls2c{letter-spacing:-2.880000px;}
.lsa{letter-spacing:-2.592000px;}
.ls25{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.366000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.135600px;}
.ls2e{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.086400px;}
.ls30{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.269280px;}
.ls1c{letter-spacing:0.273600px;}
.lsd{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.396000px;}
.ls24{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.607680px;}
.lsb{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.864000px;}
.ls29{letter-spacing:2.880000px;}
.ls1f{letter-spacing:5.096880px;}
.ls28{letter-spacing:7.200000px;}
.ls2b{letter-spacing:7.920000px;}
.ls2d{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.080000px;}
.ls1e{letter-spacing:11.592000px;}
.ls1a{letter-spacing:16.560000px;}
.ls19{letter-spacing:21.780000px;}
.ls18{letter-spacing:24.536880px;}
.ls8{letter-spacing:33.960000px;}
.ls26{letter-spacing:43.200000px;}
.ls16{letter-spacing:54.840000px;}
.ls23{letter-spacing:56.160000px;}
.ls1b{letter-spacing:74.664000px;}
.ls11{letter-spacing:90.144000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws11{word-spacing:-52.164000px;}
.ws12{word-spacing:-51.120000px;}
.ws13{word-spacing:-50.880000px;}
.ws1b{word-spacing:-41.760000px;}
.ws1{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.999997px;}
.wsf{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.ws17{word-spacing:-15.120000px;}
.ws1e{word-spacing:-15.056640px;}
.ws1d{word-spacing:-14.970240px;}
.ws1a{word-spacing:-14.834640px;}
.ws1c{word-spacing:-14.604240px;}
.ws19{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.680000px;}
.ws18{word-spacing:-13.500000px;}
.ws15{word-spacing:-12.888000px;}
.ws4{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws1f{word-spacing:-9.437760px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-9.588480px;}
._8{margin-left:-8.535840px;}
._5{margin-left:-6.780720px;}
._2{margin-left:-5.368320px;}
._1{margin-left:-4.194000px;}
._0{margin-left:-2.684160px;}
._4{margin-left:-1.580160px;}
._7{width:1.524000px;}
._f{width:2.568000px;}
._6{width:4.248000px;}
._a{width:5.656320px;}
._9{width:7.200000px;}
._b{width:8.640000px;}
._12{width:9.720000px;}
._c{width:10.740720px;}
._13{width:12.384000px;}
._10{width:13.464000px;}
._11{width:14.484000px;}
._14{width:16.460160px;}
._17{width:19.060320px;}
._16{width:20.074320px;}
._15{width:21.096000px;}
._18{width:22.360320px;}
._19{width:24.116160px;}
._1a{width:25.171680px;}
._1b{width:26.308320px;}
._1c{width:27.648000px;}
._1d{width:28.983840px;}
._d{width:30.360000px;}
._e{width:31.776000px;}
._20{width:37.656000px;}
._21{width:38.734320px;}
._24{width:40.968000px;}
._27{width:42.048000px;}
._22{width:47.160000px;}
._23{width:48.240000px;}
._25{width:103.824000px;}
._26{width:105.132000px;}
._3{width:187.122720px;}
._1e{width:198.963840px;}
._28{width:846.156000px;}
.fc1{color:rgb(32,33,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:120.240000px;}
.fs0{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1b1{bottom:2.880000px;}
.y1b4{bottom:3.060000px;}
.y1da{bottom:4.500000px;}
.y1e1{bottom:10.440000px;}
.y1bc{bottom:18.360000px;}
.y1e0{bottom:24.480000px;}
.y1e7{bottom:24.660000px;}
.y1e3{bottom:24.705000px;}
.y1df{bottom:44.640000px;}
.y1e9{bottom:44.820000px;}
.y1e8{bottom:64.980000px;}
.yc1{bottom:112.716000px;}
.y11c{bottom:117.576000px;}
.y153{bottom:118.296000px;}
.y136{bottom:119.016000px;}
.y75{bottom:120.996000px;}
.yf7{bottom:121.716000px;}
.y1b6{bottom:127.476000px;}
.y4c{bottom:129.996000px;}
.ye3{bottom:131.256000px;}
.y175{bottom:134.676000px;}
.yc0{bottom:135.036000px;}
.ycc{bottom:138.456000px;}
.y11b{bottom:139.896000px;}
.y152{bottom:140.616000px;}
.y135{bottom:141.516000px;}
.yaf{bottom:142.956000px;}
.y74{bottom:143.316000px;}
.y1a2{bottom:143.856000px;}
.yf6{bottom:144.036000px;}
.y4b{bottom:152.310000px;}
.y1b5{bottom:152.670000px;}
.ye2{bottom:153.570000px;}
.ybf{bottom:157.350000px;}
.ycb{bottom:159.150000px;}
.y11a{bottom:162.030000px;}
.y151{bottom:162.930000px;}
.y134{bottom:163.830000px;}
.yae{bottom:165.270000px;}
.y73{bottom:165.630000px;}
.yf5{bottom:166.350000px;}
.y1a1{bottom:166.890000px;}
.y9b{bottom:173.730000px;}
.y4a{bottom:174.630000px;}
.y94{bottom:175.350000px;}
.y174{bottom:176.070000px;}
.y1b3{bottom:176.610000px;}
.ybe{bottom:179.670000px;}
.yca{bottom:179.850000px;}
.y150{bottom:185.250000px;}
.y119{bottom:185.790000px;}
.y133{bottom:186.150000px;}
.yad{bottom:187.590000px;}
.y72{bottom:187.950000px;}
.yf4{bottom:188.670000px;}
.y23{bottom:193.350000px;}
.y189{bottom:193.710000px;}
.y9a{bottom:194.430000px;}
.y93{bottom:197.670000px;}
.yc9{bottom:200.550000px;}
.y1d6{bottom:201.810000px;}
.ybd{bottom:201.990000px;}
.y1b2{bottom:202.170000px;}
.y118{bottom:208.110000px;}
.y1a0{bottom:208.290000px;}
.y49{bottom:208.830000px;}
.y71{bottom:210.270000px;}
.yf3{bottom:210.990000px;}
.y99{bottom:215.130000px;}
.y173{bottom:217.470000px;}
.y14f{bottom:219.630000px;}
.y1d5{bottom:219.990000px;}
.y132{bottom:220.350000px;}
.yc8{bottom:221.250000px;}
.yac{bottom:221.970000px;}
.ybc{bottom:224.310000px;}
.y1b0{bottom:227.370000px;}
.y22{bottom:227.730000px;}
.y19f{bottom:228.990000px;}
.y117{bottom:230.430000px;}
.y48{bottom:231.330000px;}
.y92{bottom:232.050000px;}
.y70{bottom:232.590000px;}
.yf2{bottom:233.310000px;}
.y188{bottom:235.110000px;}
.y98{bottom:235.830000px;}
.yc7{bottom:241.950000px;}
.y131{bottom:242.850000px;}
.y1d4{bottom:243.570000px;}
.yab{bottom:244.290000px;}
.ybb{bottom:246.810000px;}
.y19e{bottom:249.690000px;}
.y21{bottom:250.050000px;}
.y116{bottom:252.750000px;}
.y1f2{bottom:253.110000px;}
.y47{bottom:253.650000px;}
.y14e{bottom:254.010000px;}
.y91{bottom:254.370000px;}
.y6f{bottom:254.910000px;}
.yf1{bottom:255.630000px;}
.y97{bottom:256.530000px;}
.y172{bottom:258.870000px;}
.yc6{bottom:262.650000px;}
.y130{bottom:265.170000px;}
.y1d3{bottom:266.070000px;}
.yaa{bottom:266.610000px;}
.yba{bottom:269.130000px;}
.y20{bottom:272.370000px;}
.y115{bottom:275.070000px;}
.y46{bottom:275.970000px;}
.y14d{bottom:276.330000px;}
.y187{bottom:276.510000px;}
.y90{bottom:276.690000px;}
.y6e{bottom:277.230000px;}
.yf0{bottom:277.950000px;}
.y19d{bottom:280.155000px;}
.yc5{bottom:283.395000px;}
.y96{bottom:286.815000px;}
.y12f{bottom:287.535000px;}
.y1d2{bottom:288.615000px;}
.ya9{bottom:288.975000px;}
.y1f1{bottom:294.555000px;}
.y1f{bottom:294.735000px;}
.y114{bottom:297.435000px;}
.y45{bottom:298.335000px;}
.y14c{bottom:298.695000px;}
.y8f{bottom:299.055000px;}
.y6d{bottom:299.595000px;}
.yef{bottom:300.315000px;}
.yc4{bottom:304.095000px;}
.yb9{bottom:304.815000px;}
.y12e{bottom:309.855000px;}
.y1d1{bottom:311.115000px;}
.ya8{bottom:311.295000px;}
.y1af{bottom:315.435000px;}
.y1e{bottom:317.055000px;}
.y186{bottom:317.955000px;}
.y44{bottom:320.655000px;}
.y113{bottom:321.015000px;}
.y8e{bottom:321.375000px;}
.y6c{bottom:321.915000px;}
.y159{bottom:322.635000px;}
.yc3{bottom:324.795000px;}
.yb8{bottom:325.515000px;}
.y12d{bottom:332.175000px;}
.ya7{bottom:333.615000px;}
.yee{bottom:334.695000px;}
.y1f0{bottom:335.955000px;}
.y1ae{bottom:336.135000px;}
.y1d{bottom:339.555000px;}
.y171{bottom:341.715000px;}
.y43{bottom:342.975000px;}
.y14b{bottom:343.335000px;}
.y8d{bottom:343.695000px;}
.y6b{bottom:344.235000px;}
.y112{bottom:344.595000px;}
.y158{bottom:344.955000px;}
.yb7{bottom:346.215000px;}
.y12c{bottom:354.495000px;}
.yc2{bottom:355.035000px;}
.ya6{bottom:355.935000px;}
.y1d0{bottom:356.115000px;}
.y1ad{bottom:356.835000px;}
.yed{bottom:357.015000px;}
.y185{bottom:359.355000px;}
.y1c{bottom:361.875000px;}
.y42{bottom:365.295000px;}
.y14a{bottom:365.655000px;}
.y8c{bottom:366.015000px;}
.y6a{bottom:366.735000px;}
.yb6{bottom:366.915000px;}
.y111{bottom:368.355000px;}
.y1ef{bottom:377.355000px;}
.ya5{bottom:378.255000px;}
.ye1{bottom:378.615000px;}
.yec{bottom:379.335000px;}
.y1ac{bottom:380.055000px;}
.y170{bottom:383.115000px;}
.y1b{bottom:384.195000px;}
.y41{bottom:387.615000px;}
.y149{bottom:387.975000px;}
.y8b{bottom:388.335000px;}
.y12b{bottom:388.875000px;}
.y69{bottom:389.055000px;}
.y110{bottom:390.675000px;}
.ya4{bottom:400.575000px;}
.y184{bottom:400.755000px;}
.ye0{bottom:400.935000px;}
.yeb{bottom:401.655000px;}
.y1cf{bottom:402.735000px;}
.y1a{bottom:406.515000px;}
.y18a{bottom:407.955000px;}
.yb5{bottom:408.315000px;}
.y40{bottom:409.935000px;}
.y148{bottom:410.475000px;}
.y8a{bottom:410.655000px;}
.y68{bottom:411.375000px;}
.y10f{bottom:414.435000px;}
.y1ee{bottom:418.755000px;}
.y1ab{bottom:421.635000px;}
.ydf{bottom:423.255000px;}
.yea{bottom:423.975000px;}
.y16f{bottom:424.515000px;}
.y1ce{bottom:426.315000px;}
.y19{bottom:428.835000px;}
.yb4{bottom:429.015000px;}
.y89{bottom:432.975000px;}
.y67{bottom:433.695000px;}
.y157{bottom:436.035000px;}
.ya3{bottom:436.395000px;}
.y10e{bottom:436.755000px;}
.y183{bottom:442.155000px;}
.y1aa{bottom:442.335000px;}
.y3f{bottom:444.315000px;}
.y147{bottom:444.675000px;}
.y12a{bottom:445.575000px;}
.yde{bottom:445.755000px;}
.ye9{bottom:446.475000px;}
.yb3{bottom:449.715000px;}
.y18{bottom:451.155000px;}
.y88{bottom:455.475000px;}
.y66{bottom:456.015000px;}
.ya2{bottom:457.095000px;}
.y156{bottom:458.355000px;}
.y10d{bottom:459.075000px;}
.y1ed{bottom:460.155000px;}
.y1a9{bottom:463.035000px;}
.y16e{bottom:465.915000px;}
.y3e{bottom:466.635000px;}
.y146{bottom:466.995000px;}
.y129{bottom:467.895000px;}
.ydd{bottom:468.075000px;}
.ye8{bottom:468.795000px;}
.yb2{bottom:470.415000px;}
.y17{bottom:473.475000px;}
.y87{bottom:477.795000px;}
.y155{bottom:480.675000px;}
.y10c{bottom:481.395000px;}
.y65{bottom:482.295000px;}
.y182{bottom:483.555000px;}
.y3d{bottom:488.955000px;}
.y128{bottom:490.215000px;}
.ydc{bottom:490.395000px;}
.yb1{bottom:491.115000px;}
.y1cd{bottom:491.835000px;}
.y1a8{bottom:493.455000px;}
.y16{bottom:495.795000px;}
.ya1{bottom:498.495000px;}
.y86{bottom:500.115000px;}
.y145{bottom:501.375000px;}
.y1ec{bottom:501.555000px;}
.y154{bottom:502.995000px;}
.y10b{bottom:503.535000px;}
.y16d{bottom:507.315000px;}
.y3c{bottom:511.275000px;}
.y127{bottom:512.535000px;}
.ydb{bottom:512.715000px;}
.ye7{bottom:513.435000px;}
.y15{bottom:519.015000px;}
.ya0{bottom:519.195000px;}
.yb0{bottom:521.355000px;}
.y85{bottom:522.435000px;}
.y144{bottom:523.695000px;}
.y1eb{bottom:524.775000px;}
.y181{bottom:524.955000px;}
.y64{bottom:525.315000px;}
.y1cc{bottom:533.235000px;}
.y3b{bottom:533.595000px;}
.y126{bottom:534.855000px;}
.yda{bottom:535.035000px;}
.y10a{bottom:539.385000px;}
.y9f{bottom:539.925000px;}
.y84{bottom:544.785000px;}
.y143{bottom:546.045000px;}
.y63{bottom:547.845000px;}
.y16c{bottom:548.745000px;}
.y1cb{bottom:553.965000px;}
.y3a{bottom:556.125000px;}
.y125{bottom:557.205000px;}
.yd9{bottom:557.385000px;}
.y9e{bottom:560.625000px;}
.y14{bottom:562.245000px;}
.y180{bottom:566.385000px;}
.y83{bottom:567.105000px;}
.y1ea{bottom:568.005000px;}
.y142{bottom:568.365000px;}
.y62{bottom:570.165000px;}
.y109{bottom:573.765000px;}
.y1ca{bottom:574.665000px;}
.y39{bottom:578.445000px;}
.yd8{bottom:579.705000px;}
.y9d{bottom:581.325000px;}
.ye6{bottom:582.045000px;}
.y1e6{bottom:586.185000px;}
.y19c{bottom:588.165000px;}
.y82{bottom:589.425000px;}
.y16b{bottom:590.145000px;}
.y141{bottom:590.865000px;}
.y124{bottom:591.585000px;}
.y61{bottom:592.485000px;}
.y1c9{bottom:595.365000px;}
.y108{bottom:596.085000px;}
.y13{bottom:596.625000px;}
.y9c{bottom:599.505000px;}
.y38{bottom:600.765000px;}
.yd7{bottom:602.025000px;}
.ye5{bottom:604.365000px;}
.y17f{bottom:607.785000px;}
.y140{bottom:613.185000px;}
.y16a{bottom:613.365000px;}
.y123{bottom:613.905000px;}
.y60{bottom:614.805000px;}
.y107{bottom:618.405000px;}
.y37{bottom:623.085000px;}
.ye4{bottom:626.865000px;}
.y1c8{bottom:629.565000px;}
.y12{bottom:631.005000px;}
.y19b{bottom:631.365000px;}
.y13f{bottom:635.505000px;}
.y122{bottom:636.225000px;}
.yd6{bottom:636.405000px;}
.y5f{bottom:637.125000px;}
.y106{bottom:640.725000px;}
.y36{bottom:645.405000px;}
.y1c7{bottom:647.925000px;}
.y81{bottom:649.185000px;}
.y11{bottom:653.325000px;}
.y169{bottom:656.385000px;}
.y13e{bottom:657.825000px;}
.y121{bottom:658.545000px;}
.yd5{bottom:658.725000px;}
.y5e{bottom:659.445000px;}
.y105{bottom:663.045000px;}
.y19a{bottom:665.565000px;}
.y1e5{bottom:666.825000px;}
.y35{bottom:667.725000px;}
.y80{bottom:671.505000px;}
.y1c6{bottom:671.685000px;}
.y13d{bottom:680.145000px;}
.yd4{bottom:681.045000px;}
.y120{bottom:681.405000px;}
.y5d{bottom:681.765000px;}
.y104{bottom:685.365000px;}
.y10{bottom:687.525000px;}
.y34{bottom:690.045000px;}
.y17e{bottom:690.585000px;}
.y168{bottom:690.765000px;}
.y7f{bottom:693.825000px;}
.y1c5{bottom:694.365000px;}
.y199{bottom:699.945000px;}
.y13c{bottom:702.465000px;}
.yd3{bottom:703.365000px;}
.y5c{bottom:704.085000px;}
.y198{bottom:706.785000px;}
.y103{bottom:707.685000px;}
.y1e4{bottom:711.825000px;}
.y33{bottom:712.365000px;}
.y167{bottom:713.085000px;}
.y11f{bottom:714.525000px;}
.y7e{bottom:716.145000px;}
.y1c4{bottom:717.045000px;}
.yf{bottom:721.905000px;}
.y11e{bottom:723.525000px;}
.yd2{bottom:725.685000px;}
.ye{bottom:728.745000px;}
.y102{bottom:730.005000px;}
.y17d{bottom:731.985000px;}
.y197{bottom:734.325000px;}
.y32{bottom:734.685000px;}
.y166{bottom:735.405000px;}
.y13b{bottom:736.845000px;}
.y5b{bottom:738.465000px;}
.y1c3{bottom:739.725000px;}
.y196{bottom:741.165000px;}
.yd1{bottom:748.005000px;}
.y101{bottom:752.505000px;}
.yd{bottom:756.285000px;}
.y31{bottom:757.005000px;}
.y165{bottom:757.725000px;}
.y5a{bottom:760.785000px;}
.y1c2{bottom:762.405000px;}
.yc{bottom:763.125000px;}
.y195{bottom:768.705000px;}
.yd0{bottom:770.505000px;}
.y13a{bottom:771.225000px;}
.y17c{bottom:773.385000px;}
.y100{bottom:774.825000px;}
.y1e2{bottom:779.325000px;}
.y164{bottom:780.225000px;}
.y59{bottom:783.105000px;}
.y1c1{bottom:784.905000px;}
.yb{bottom:790.665000px;}
.y194{bottom:791.025000px;}
.y30{bottom:791.385000px;}
.ycf{bottom:792.825000px;}
.y7d{bottom:795.165000px;}
.yff{bottom:797.145000px;}
.y193{bottom:797.865000px;}
.y58{bottom:805.470000px;}
.y1c0{bottom:807.630000px;}
.ya{bottom:813.030000px;}
.y2f{bottom:813.750000px;}
.y163{bottom:814.470000px;}
.y17b{bottom:814.830000px;}
.yce{bottom:815.010000px;}
.y7c{bottom:817.530000px;}
.yfe{bottom:819.330000px;}
.y1de{bottom:819.690000px;}
.y9{bottom:819.870000px;}
.y192{bottom:825.450000px;}
.y139{bottom:826.350000px;}
.y57{bottom:827.790000px;}
.y1bf{bottom:830.310000px;}
.y2e{bottom:836.070000px;}
.y162{bottom:836.790000px;}
.y7b{bottom:839.850000px;}
.ycd{bottom:841.290000px;}
.yfd{bottom:845.790000px;}
.y8{bottom:847.410000px;}
.y191{bottom:847.770000px;}
.y56{bottom:850.110000px;}
.y1be{bottom:852.990000px;}
.y190{bottom:854.610000px;}
.y17a{bottom:856.230000px;}
.y2d{bottom:858.390000px;}
.y161{bottom:859.110000px;}
.y7a{bottom:862.170000px;}
.y7{bottom:869.730000px;}
.y55{bottom:872.610000px;}
.y6{bottom:876.570000px;}
.y1bd{bottom:877.110000px;}
.y1dd{bottom:879.990000px;}
.y2c{bottom:880.890000px;}
.y160{bottom:881.610000px;}
.y18f{bottom:881.970000px;}
.y1a7{bottom:882.690000px;}
.y79{bottom:884.490000px;}
.yfc{bottom:888.810000px;}
.y54{bottom:894.930000px;}
.y179{bottom:897.630000px;}
.y1bb{bottom:901.050000px;}
.y1dc{bottom:902.490000px;}
.y2b{bottom:903.210000px;}
.y5{bottom:903.930000px;}
.y18e{bottom:904.470000px;}
.y78{bottom:906.810000px;}
.yfb{bottom:911.130000px;}
.y53{bottom:917.250000px;}
.y1a6{bottom:918.330000px;}
.y1db{bottom:924.990000px;}
.y2a{bottom:925.530000px;}
.y15f{bottom:926.250000px;}
.y4{bottom:926.430000px;}
.y77{bottom:929.130000px;}
.yfa{bottom:933.630000px;}
.y18d{bottom:938.670000px;}
.y178{bottom:939.030000px;}
.y11d{bottom:939.570000px;}
.y29{bottom:947.850000px;}
.y15e{bottom:948.570000px;}
.y1d9{bottom:949.110000px;}
.y52{bottom:951.630000px;}
.yf9{bottom:955.950000px;}
.y76{bottom:958.470000px;}
.y1a5{bottom:959.730000px;}
.y3{bottom:960.630000px;}
.y138{bottom:961.890000px;}
.y18c{bottom:963.690000px;}
.y1ba{bottom:966.750000px;}
.y28{bottom:970.170000px;}
.y15d{bottom:970.890000px;}
.y51{bottom:973.950000px;}
.yf8{bottom:978.270000px;}
.y177{bottom:980.430000px;}
.y137{bottom:984.210000px;}
.y1b9{bottom:987.450000px;}
.y2{bottom:988.710000px;}
.y27{bottom:992.490000px;}
.y1d8{bottom:993.030000px;}
.y15c{bottom:993.210000px;}
.y50{bottom:996.270000px;}
.y18b{bottom:1000.230000px;}
.y1a4{bottom:1001.130000px;}
.y95{bottom:1006.530000px;}
.y1b8{bottom:1008.150000px;}
.y26{bottom:1014.810000px;}
.y15b{bottom:1015.530000px;}
.y1d7{bottom:1016.250000px;}
.y4f{bottom:1018.590000px;}
.y176{bottom:1021.830000px;}
.y1b7{bottom:1028.850000px;}
.y25{bottom:1037.130000px;}
.y15a{bottom:1037.850000px;}
.y1{bottom:1040.010000px;}
.y4e{bottom:1040.910000px;}
.y1a3{bottom:1042.530000px;}
.y24{bottom:1060.380000px;}
.y4d{bottom:1063.260000px;}
.h1d{height:22.500000px;}
.h21{height:22.536000px;}
.h1b{height:22.680000px;}
.h1c{height:22.716000px;}
.h20{height:23.580000px;}
.h1e{height:23.760000px;}
.h19{height:23.940000px;}
.h18{height:24.120000px;}
.h17{height:25.200000px;}
.h4{height:34.884492px;}
.h26{height:40.356000px;}
.h25{height:42.124219px;}
.h5{height:43.304062px;}
.h1f{height:45.000000px;}
.h1a{height:45.360000px;}
.h15{height:46.980000px;}
.h6{height:52.066406px;}
.hd{height:52.417969px;}
.h16{height:52.998047px;}
.ha{height:54.878906px;}
.h13{height:57.826406px;}
.h24{height:60.300000px;}
.h3{height:62.244492px;}
.he{height:62.424492px;}
.h12{height:63.559688px;}
.hc{height:64.128867px;}
.h23{height:65.884219px;}
.h22{height:67.824844px;}
.h2{height:70.664062px;}
.hb{height:71.824219px;}
.h8{height:74.004654px;}
.h9{height:74.953125px;}
.h27{height:80.640000px;}
.hf{height:85.562578px;}
.h7{height:87.695156px;}
.h11{height:106.664062px;}
.h14{height:114.486328px;}
.h10{height:121.562578px;}
.h1{height:159.732422px;}
.h0{height:1188.000000px;}
.w23{width:13.860000px;}
.w17{width:14.220000px;}
.w15{width:14.940000px;}
.w9{width:15.840000px;}
.w13{width:16.380000px;}
.w20{width:16.416000px;}
.w7{width:16.560000px;}
.w5{width:18.180000px;}
.w1f{width:34.560000px;}
.w12{width:37.080000px;}
.w4{width:41.040000px;}
.w19{width:53.820000px;}
.w1a{width:54.756000px;}
.w1b{width:57.420000px;}
.w29{width:57.960000px;}
.w10{width:58.500000px;}
.w25{width:58.860000px;}
.w2a{width:59.076000px;}
.wb{width:59.580000px;}
.w26{width:59.760000px;}
.w27{width:60.336000px;}
.wc{width:60.516000px;}
.w1c{width:61.056000px;}
.w28{width:61.200000px;}
.wd{width:63.540000px;}
.we{width:64.800000px;}
.wf{width:74.736000px;}
.w2c{width:83.916000px;}
.w14{width:108.576000px;}
.w1d{width:108.900000px;}
.w16{width:115.920000px;}
.w24{width:117.036000px;}
.w21{width:118.620000px;}
.w2b{width:119.520000px;}
.w6{width:120.096000px;}
.w22{width:121.536000px;}
.w8{width:128.340000px;}
.wa{width:133.236000px;}
.w2e{width:138.636000px;}
.w1e{width:151.560000px;}
.w18{width:169.950000px;}
.w3{width:233.310000px;}
.w11{width:240.870000px;}
.w2d{width:374.970000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:5.220000px;}
.x13{left:6.480000px;}
.x24{left:7.920000px;}
.x15{left:9.180000px;}
.x1f{left:11.340000px;}
.x1c{left:12.960000px;}
.x40{left:14.580000px;}
.x3f{left:15.840000px;}
.x23{left:18.000000px;}
.x2a{left:21.420000px;}
.x22{left:22.860000px;}
.x1e{left:24.840000px;}
.x11{left:28.440000px;}
.x1d{left:30.780000px;}
.x33{left:32.220000px;}
.x20{left:34.740000px;}
.x2b{left:40.860000px;}
.x21{left:45.945000px;}
.x18{left:49.185000px;}
.x41{left:50.400000px;}
.x7{left:53.999973px;}
.x32{left:55.845000px;}
.x4{left:62.999973px;}
.x2e{left:67.365000px;}
.x2{left:71.999973px;}
.x34{left:73.260000px;}
.x3{left:80.999986px;}
.x1{left:108.035986px;}
.x5{left:135.035986px;}
.xc{left:136.835986px;}
.x6{left:162.029986px;}
.x42{left:227.550000px;}
.x35{left:259.590000px;}
.x9{left:270.029986px;}
.x36{left:294.150000px;}
.x37{left:310.575000px;}
.xe{left:341.355000px;}
.x25{left:348.915000px;}
.xa{left:355.394986px;}
.x3c{left:369.435000px;}
.xf{left:382.395000px;}
.x26{left:385.995000px;}
.x10{left:400.575000px;}
.x27{left:402.375000px;}
.xb{left:411.554986px;}
.x38{left:429.195000px;}
.x39{left:444.135000px;}
.x2f{left:456.195000px;}
.x19{left:460.155000px;}
.x3d{left:504.465000px;}
.x28{left:510.945000px;}
.x12{left:520.665000px;}
.x29{left:525.885000px;}
.x14{left:537.225000px;}
.x3a{left:565.665000px;}
.x3b{left:579.525000px;}
.x30{left:583.305000px;}
.x1a{left:600.765000px;}
.x3e{left:637.485000px;}
.x2c{left:641.805000px;}
.x2d{left:656.025000px;}
.x16{left:665.565000px;}
.x17{left:681.405000px;}
.x43{left:686.445000px;}
.x31{left:717.090000px;}
.x1b{left:756.150000px;}
.x8{left:810.149986px;}
@media print{
.v4{vertical-align:-79.360000pt;}
.v3{vertical-align:-64.640000pt;}
.v2{vertical-align:-24.320000pt;}
.v10{vertical-align:-21.120000pt;}
.v5{vertical-align:-12.800000pt;}
.v8{vertical-align:-10.240000pt;}
.vc{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.560000pt;}
.ve{vertical-align:5.120000pt;}
.v6{vertical-align:12.800000pt;}
.vf{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v9{vertical-align:32.000000pt;}
.v7{vertical-align:37.760000pt;}
.vb{vertical-align:59.520000pt;}
.va{vertical-align:69.760000pt;}
.ls27{letter-spacing:-4.544000pt;}
.ls2a{letter-spacing:-3.840000pt;}
.ls12{letter-spacing:-2.688000pt;}
.ls2c{letter-spacing:-2.560000pt;}
.lsa{letter-spacing:-2.304000pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.325333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.120533pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.076800pt;}
.ls30{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.239360pt;}
.ls1c{letter-spacing:0.243200pt;}
.lsd{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.352000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.540160pt;}
.lsb{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls29{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:4.530560pt;}
.ls28{letter-spacing:6.400000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls2d{letter-spacing:8.320000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls1e{letter-spacing:10.304000pt;}
.ls1a{letter-spacing:14.720000pt;}
.ls19{letter-spacing:19.360000pt;}
.ls18{letter-spacing:21.810560pt;}
.ls8{letter-spacing:30.186667pt;}
.ls26{letter-spacing:38.400000pt;}
.ls16{letter-spacing:48.746667pt;}
.ls23{letter-spacing:49.920000pt;}
.ls1b{letter-spacing:66.368000pt;}
.ls11{letter-spacing:80.128000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws11{word-spacing:-46.368000pt;}
.ws12{word-spacing:-45.440000pt;}
.ws13{word-spacing:-45.226667pt;}
.ws1b{word-spacing:-37.120000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.999997pt;}
.wsf{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws17{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.383680pt;}
.ws1d{word-spacing:-13.306880pt;}
.ws1a{word-spacing:-13.186347pt;}
.ws1c{word-spacing:-12.981547pt;}
.ws19{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.160000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.456000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1f{word-spacing:-8.389120pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-8.523093pt;}
._8{margin-left:-7.587413pt;}
._5{margin-left:-6.027307pt;}
._2{margin-left:-4.771840pt;}
._1{margin-left:-3.728000pt;}
._0{margin-left:-2.385920pt;}
._4{margin-left:-1.404587pt;}
._7{width:1.354667pt;}
._f{width:2.282667pt;}
._6{width:3.776000pt;}
._a{width:5.027840pt;}
._9{width:6.400000pt;}
._b{width:7.680000pt;}
._12{width:8.640000pt;}
._c{width:9.547307pt;}
._13{width:11.008000pt;}
._10{width:11.968000pt;}
._11{width:12.874667pt;}
._14{width:14.631253pt;}
._17{width:16.942507pt;}
._16{width:17.843840pt;}
._15{width:18.752000pt;}
._18{width:19.875840pt;}
._19{width:21.436587pt;}
._1a{width:22.374827pt;}
._1b{width:23.385173pt;}
._1c{width:24.576000pt;}
._1d{width:25.763413pt;}
._d{width:26.986667pt;}
._e{width:28.245333pt;}
._20{width:33.472000pt;}
._21{width:34.430507pt;}
._24{width:36.416000pt;}
._27{width:37.376000pt;}
._22{width:41.920000pt;}
._23{width:42.880000pt;}
._25{width:92.288000pt;}
._26{width:93.450667pt;}
._3{width:166.331307pt;}
._1e{width:176.856747pt;}
._28{width:752.138667pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:106.880000pt;}
.fs0{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1b1{bottom:2.560000pt;}
.y1b4{bottom:2.720000pt;}
.y1da{bottom:4.000000pt;}
.y1e1{bottom:9.280000pt;}
.y1bc{bottom:16.320000pt;}
.y1e0{bottom:21.760000pt;}
.y1e7{bottom:21.920000pt;}
.y1e3{bottom:21.960000pt;}
.y1df{bottom:39.680000pt;}
.y1e9{bottom:39.840000pt;}
.y1e8{bottom:57.760000pt;}
.yc1{bottom:100.192000pt;}
.y11c{bottom:104.512000pt;}
.y153{bottom:105.152000pt;}
.y136{bottom:105.792000pt;}
.y75{bottom:107.552000pt;}
.yf7{bottom:108.192000pt;}
.y1b6{bottom:113.312000pt;}
.y4c{bottom:115.552000pt;}
.ye3{bottom:116.672000pt;}
.y175{bottom:119.712000pt;}
.yc0{bottom:120.032000pt;}
.ycc{bottom:123.072000pt;}
.y11b{bottom:124.352000pt;}
.y152{bottom:124.992000pt;}
.y135{bottom:125.792000pt;}
.yaf{bottom:127.072000pt;}
.y74{bottom:127.392000pt;}
.y1a2{bottom:127.872000pt;}
.yf6{bottom:128.032000pt;}
.y4b{bottom:135.386667pt;}
.y1b5{bottom:135.706667pt;}
.ye2{bottom:136.506667pt;}
.ybf{bottom:139.866667pt;}
.ycb{bottom:141.466667pt;}
.y11a{bottom:144.026667pt;}
.y151{bottom:144.826667pt;}
.y134{bottom:145.626667pt;}
.yae{bottom:146.906667pt;}
.y73{bottom:147.226667pt;}
.yf5{bottom:147.866667pt;}
.y1a1{bottom:148.346667pt;}
.y9b{bottom:154.426667pt;}
.y4a{bottom:155.226667pt;}
.y94{bottom:155.866667pt;}
.y174{bottom:156.506667pt;}
.y1b3{bottom:156.986667pt;}
.ybe{bottom:159.706667pt;}
.yca{bottom:159.866667pt;}
.y150{bottom:164.666667pt;}
.y119{bottom:165.146667pt;}
.y133{bottom:165.466667pt;}
.yad{bottom:166.746667pt;}
.y72{bottom:167.066667pt;}
.yf4{bottom:167.706667pt;}
.y23{bottom:171.866667pt;}
.y189{bottom:172.186667pt;}
.y9a{bottom:172.826667pt;}
.y93{bottom:175.706667pt;}
.yc9{bottom:178.266667pt;}
.y1d6{bottom:179.386667pt;}
.ybd{bottom:179.546667pt;}
.y1b2{bottom:179.706667pt;}
.y118{bottom:184.986667pt;}
.y1a0{bottom:185.146667pt;}
.y49{bottom:185.626667pt;}
.y71{bottom:186.906667pt;}
.yf3{bottom:187.546667pt;}
.y99{bottom:191.226667pt;}
.y173{bottom:193.306667pt;}
.y14f{bottom:195.226667pt;}
.y1d5{bottom:195.546667pt;}
.y132{bottom:195.866667pt;}
.yc8{bottom:196.666667pt;}
.yac{bottom:197.306667pt;}
.ybc{bottom:199.386667pt;}
.y1b0{bottom:202.106667pt;}
.y22{bottom:202.426667pt;}
.y19f{bottom:203.546667pt;}
.y117{bottom:204.826667pt;}
.y48{bottom:205.626667pt;}
.y92{bottom:206.266667pt;}
.y70{bottom:206.746667pt;}
.yf2{bottom:207.386667pt;}
.y188{bottom:208.986667pt;}
.y98{bottom:209.626667pt;}
.yc7{bottom:215.066667pt;}
.y131{bottom:215.866667pt;}
.y1d4{bottom:216.506667pt;}
.yab{bottom:217.146667pt;}
.ybb{bottom:219.386667pt;}
.y19e{bottom:221.946667pt;}
.y21{bottom:222.266667pt;}
.y116{bottom:224.666667pt;}
.y1f2{bottom:224.986667pt;}
.y47{bottom:225.466667pt;}
.y14e{bottom:225.786667pt;}
.y91{bottom:226.106667pt;}
.y6f{bottom:226.586667pt;}
.yf1{bottom:227.226667pt;}
.y97{bottom:228.026667pt;}
.y172{bottom:230.106667pt;}
.yc6{bottom:233.466667pt;}
.y130{bottom:235.706667pt;}
.y1d3{bottom:236.506667pt;}
.yaa{bottom:236.986667pt;}
.yba{bottom:239.226667pt;}
.y20{bottom:242.106667pt;}
.y115{bottom:244.506667pt;}
.y46{bottom:245.306667pt;}
.y14d{bottom:245.626667pt;}
.y187{bottom:245.786667pt;}
.y90{bottom:245.946667pt;}
.y6e{bottom:246.426667pt;}
.yf0{bottom:247.066667pt;}
.y19d{bottom:249.026667pt;}
.yc5{bottom:251.906667pt;}
.y96{bottom:254.946667pt;}
.y12f{bottom:255.586667pt;}
.y1d2{bottom:256.546667pt;}
.ya9{bottom:256.866667pt;}
.y1f1{bottom:261.826667pt;}
.y1f{bottom:261.986667pt;}
.y114{bottom:264.386667pt;}
.y45{bottom:265.186667pt;}
.y14c{bottom:265.506667pt;}
.y8f{bottom:265.826667pt;}
.y6d{bottom:266.306667pt;}
.yef{bottom:266.946667pt;}
.yc4{bottom:270.306667pt;}
.yb9{bottom:270.946667pt;}
.y12e{bottom:275.426667pt;}
.y1d1{bottom:276.546667pt;}
.ya8{bottom:276.706667pt;}
.y1af{bottom:280.386667pt;}
.y1e{bottom:281.826667pt;}
.y186{bottom:282.626667pt;}
.y44{bottom:285.026667pt;}
.y113{bottom:285.346667pt;}
.y8e{bottom:285.666667pt;}
.y6c{bottom:286.146667pt;}
.y159{bottom:286.786667pt;}
.yc3{bottom:288.706667pt;}
.yb8{bottom:289.346667pt;}
.y12d{bottom:295.266667pt;}
.ya7{bottom:296.546667pt;}
.yee{bottom:297.506667pt;}
.y1f0{bottom:298.626667pt;}
.y1ae{bottom:298.786667pt;}
.y1d{bottom:301.826667pt;}
.y171{bottom:303.746667pt;}
.y43{bottom:304.866667pt;}
.y14b{bottom:305.186667pt;}
.y8d{bottom:305.506667pt;}
.y6b{bottom:305.986667pt;}
.y112{bottom:306.306667pt;}
.y158{bottom:306.626667pt;}
.yb7{bottom:307.746667pt;}
.y12c{bottom:315.106667pt;}
.yc2{bottom:315.586667pt;}
.ya6{bottom:316.386667pt;}
.y1d0{bottom:316.546667pt;}
.y1ad{bottom:317.186667pt;}
.yed{bottom:317.346667pt;}
.y185{bottom:319.426667pt;}
.y1c{bottom:321.666667pt;}
.y42{bottom:324.706667pt;}
.y14a{bottom:325.026667pt;}
.y8c{bottom:325.346667pt;}
.y6a{bottom:325.986667pt;}
.yb6{bottom:326.146667pt;}
.y111{bottom:327.426667pt;}
.y1ef{bottom:335.426667pt;}
.ya5{bottom:336.226667pt;}
.ye1{bottom:336.546667pt;}
.yec{bottom:337.186667pt;}
.y1ac{bottom:337.826667pt;}
.y170{bottom:340.546667pt;}
.y1b{bottom:341.506667pt;}
.y41{bottom:344.546667pt;}
.y149{bottom:344.866667pt;}
.y8b{bottom:345.186667pt;}
.y12b{bottom:345.666667pt;}
.y69{bottom:345.826667pt;}
.y110{bottom:347.266667pt;}
.ya4{bottom:356.066667pt;}
.y184{bottom:356.226667pt;}
.ye0{bottom:356.386667pt;}
.yeb{bottom:357.026667pt;}
.y1cf{bottom:357.986667pt;}
.y1a{bottom:361.346667pt;}
.y18a{bottom:362.626667pt;}
.yb5{bottom:362.946667pt;}
.y40{bottom:364.386667pt;}
.y148{bottom:364.866667pt;}
.y8a{bottom:365.026667pt;}
.y68{bottom:365.666667pt;}
.y10f{bottom:368.386667pt;}
.y1ee{bottom:372.226667pt;}
.y1ab{bottom:374.786667pt;}
.ydf{bottom:376.226667pt;}
.yea{bottom:376.866667pt;}
.y16f{bottom:377.346667pt;}
.y1ce{bottom:378.946667pt;}
.y19{bottom:381.186667pt;}
.yb4{bottom:381.346667pt;}
.y89{bottom:384.866667pt;}
.y67{bottom:385.506667pt;}
.y157{bottom:387.586667pt;}
.ya3{bottom:387.906667pt;}
.y10e{bottom:388.226667pt;}
.y183{bottom:393.026667pt;}
.y1aa{bottom:393.186667pt;}
.y3f{bottom:394.946667pt;}
.y147{bottom:395.266667pt;}
.y12a{bottom:396.066667pt;}
.yde{bottom:396.226667pt;}
.ye9{bottom:396.866667pt;}
.yb3{bottom:399.746667pt;}
.y18{bottom:401.026667pt;}
.y88{bottom:404.866667pt;}
.y66{bottom:405.346667pt;}
.ya2{bottom:406.306667pt;}
.y156{bottom:407.426667pt;}
.y10d{bottom:408.066667pt;}
.y1ed{bottom:409.026667pt;}
.y1a9{bottom:411.586667pt;}
.y16e{bottom:414.146667pt;}
.y3e{bottom:414.786667pt;}
.y146{bottom:415.106667pt;}
.y129{bottom:415.906667pt;}
.ydd{bottom:416.066667pt;}
.ye8{bottom:416.706667pt;}
.yb2{bottom:418.146667pt;}
.y17{bottom:420.866667pt;}
.y87{bottom:424.706667pt;}
.y155{bottom:427.266667pt;}
.y10c{bottom:427.906667pt;}
.y65{bottom:428.706667pt;}
.y182{bottom:429.826667pt;}
.y3d{bottom:434.626667pt;}
.y128{bottom:435.746667pt;}
.ydc{bottom:435.906667pt;}
.yb1{bottom:436.546667pt;}
.y1cd{bottom:437.186667pt;}
.y1a8{bottom:438.626667pt;}
.y16{bottom:440.706667pt;}
.ya1{bottom:443.106667pt;}
.y86{bottom:444.546667pt;}
.y145{bottom:445.666667pt;}
.y1ec{bottom:445.826667pt;}
.y154{bottom:447.106667pt;}
.y10b{bottom:447.586667pt;}
.y16d{bottom:450.946667pt;}
.y3c{bottom:454.466667pt;}
.y127{bottom:455.586667pt;}
.ydb{bottom:455.746667pt;}
.ye7{bottom:456.386667pt;}
.y15{bottom:461.346667pt;}
.ya0{bottom:461.506667pt;}
.yb0{bottom:463.426667pt;}
.y85{bottom:464.386667pt;}
.y144{bottom:465.506667pt;}
.y1eb{bottom:466.466667pt;}
.y181{bottom:466.626667pt;}
.y64{bottom:466.946667pt;}
.y1cc{bottom:473.986667pt;}
.y3b{bottom:474.306667pt;}
.y126{bottom:475.426667pt;}
.yda{bottom:475.586667pt;}
.y10a{bottom:479.453333pt;}
.y9f{bottom:479.933333pt;}
.y84{bottom:484.253333pt;}
.y143{bottom:485.373333pt;}
.y63{bottom:486.973333pt;}
.y16c{bottom:487.773333pt;}
.y1cb{bottom:492.413333pt;}
.y3a{bottom:494.333333pt;}
.y125{bottom:495.293333pt;}
.yd9{bottom:495.453333pt;}
.y9e{bottom:498.333333pt;}
.y14{bottom:499.773333pt;}
.y180{bottom:503.453333pt;}
.y83{bottom:504.093333pt;}
.y1ea{bottom:504.893333pt;}
.y142{bottom:505.213333pt;}
.y62{bottom:506.813333pt;}
.y109{bottom:510.013333pt;}
.y1ca{bottom:510.813333pt;}
.y39{bottom:514.173333pt;}
.yd8{bottom:515.293333pt;}
.y9d{bottom:516.733333pt;}
.ye6{bottom:517.373333pt;}
.y1e6{bottom:521.053333pt;}
.y19c{bottom:522.813333pt;}
.y82{bottom:523.933333pt;}
.y16b{bottom:524.573333pt;}
.y141{bottom:525.213333pt;}
.y124{bottom:525.853333pt;}
.y61{bottom:526.653333pt;}
.y1c9{bottom:529.213333pt;}
.y108{bottom:529.853333pt;}
.y13{bottom:530.333333pt;}
.y9c{bottom:532.893333pt;}
.y38{bottom:534.013333pt;}
.yd7{bottom:535.133333pt;}
.ye5{bottom:537.213333pt;}
.y17f{bottom:540.253333pt;}
.y140{bottom:545.053333pt;}
.y16a{bottom:545.213333pt;}
.y123{bottom:545.693333pt;}
.y60{bottom:546.493333pt;}
.y107{bottom:549.693333pt;}
.y37{bottom:553.853333pt;}
.ye4{bottom:557.213333pt;}
.y1c8{bottom:559.613333pt;}
.y12{bottom:560.893333pt;}
.y19b{bottom:561.213333pt;}
.y13f{bottom:564.893333pt;}
.y122{bottom:565.533333pt;}
.yd6{bottom:565.693333pt;}
.y5f{bottom:566.333333pt;}
.y106{bottom:569.533333pt;}
.y36{bottom:573.693333pt;}
.y1c7{bottom:575.933333pt;}
.y81{bottom:577.053333pt;}
.y11{bottom:580.733333pt;}
.y169{bottom:583.453333pt;}
.y13e{bottom:584.733333pt;}
.y121{bottom:585.373333pt;}
.yd5{bottom:585.533333pt;}
.y5e{bottom:586.173333pt;}
.y105{bottom:589.373333pt;}
.y19a{bottom:591.613333pt;}
.y1e5{bottom:592.733333pt;}
.y35{bottom:593.533333pt;}
.y80{bottom:596.893333pt;}
.y1c6{bottom:597.053333pt;}
.y13d{bottom:604.573333pt;}
.yd4{bottom:605.373333pt;}
.y120{bottom:605.693333pt;}
.y5d{bottom:606.013333pt;}
.y104{bottom:609.213333pt;}
.y10{bottom:611.133333pt;}
.y34{bottom:613.373333pt;}
.y17e{bottom:613.853333pt;}
.y168{bottom:614.013333pt;}
.y7f{bottom:616.733333pt;}
.y1c5{bottom:617.213333pt;}
.y199{bottom:622.173333pt;}
.y13c{bottom:624.413333pt;}
.yd3{bottom:625.213333pt;}
.y5c{bottom:625.853333pt;}
.y198{bottom:628.253333pt;}
.y103{bottom:629.053333pt;}
.y1e4{bottom:632.733333pt;}
.y33{bottom:633.213333pt;}
.y167{bottom:633.853333pt;}
.y11f{bottom:635.133333pt;}
.y7e{bottom:636.573333pt;}
.y1c4{bottom:637.373333pt;}
.yf{bottom:641.693333pt;}
.y11e{bottom:643.133333pt;}
.yd2{bottom:645.053333pt;}
.ye{bottom:647.773333pt;}
.y102{bottom:648.893333pt;}
.y17d{bottom:650.653333pt;}
.y197{bottom:652.733333pt;}
.y32{bottom:653.053333pt;}
.y166{bottom:653.693333pt;}
.y13b{bottom:654.973333pt;}
.y5b{bottom:656.413333pt;}
.y1c3{bottom:657.533333pt;}
.y196{bottom:658.813333pt;}
.yd1{bottom:664.893333pt;}
.y101{bottom:668.893333pt;}
.yd{bottom:672.253333pt;}
.y31{bottom:672.893333pt;}
.y165{bottom:673.533333pt;}
.y5a{bottom:676.253333pt;}
.y1c2{bottom:677.693333pt;}
.yc{bottom:678.333333pt;}
.y195{bottom:683.293333pt;}
.yd0{bottom:684.893333pt;}
.y13a{bottom:685.533333pt;}
.y17c{bottom:687.453333pt;}
.y100{bottom:688.733333pt;}
.y1e2{bottom:692.733333pt;}
.y164{bottom:693.533333pt;}
.y59{bottom:696.093333pt;}
.y1c1{bottom:697.693333pt;}
.yb{bottom:702.813333pt;}
.y194{bottom:703.133333pt;}
.y30{bottom:703.453333pt;}
.ycf{bottom:704.733333pt;}
.y7d{bottom:706.813333pt;}
.yff{bottom:708.573333pt;}
.y193{bottom:709.213333pt;}
.y58{bottom:715.973333pt;}
.y1c0{bottom:717.893333pt;}
.ya{bottom:722.693333pt;}
.y2f{bottom:723.333333pt;}
.y163{bottom:723.973333pt;}
.y17b{bottom:724.293333pt;}
.yce{bottom:724.453333pt;}
.y7c{bottom:726.693333pt;}
.yfe{bottom:728.293333pt;}
.y1de{bottom:728.613333pt;}
.y9{bottom:728.773333pt;}
.y192{bottom:733.733333pt;}
.y139{bottom:734.533333pt;}
.y57{bottom:735.813333pt;}
.y1bf{bottom:738.053333pt;}
.y2e{bottom:743.173333pt;}
.y162{bottom:743.813333pt;}
.y7b{bottom:746.533333pt;}
.ycd{bottom:747.813333pt;}
.yfd{bottom:751.813333pt;}
.y8{bottom:753.253333pt;}
.y191{bottom:753.573333pt;}
.y56{bottom:755.653333pt;}
.y1be{bottom:758.213333pt;}
.y190{bottom:759.653333pt;}
.y17a{bottom:761.093333pt;}
.y2d{bottom:763.013333pt;}
.y161{bottom:763.653333pt;}
.y7a{bottom:766.373333pt;}
.y7{bottom:773.093333pt;}
.y55{bottom:775.653333pt;}
.y6{bottom:779.173333pt;}
.y1bd{bottom:779.653333pt;}
.y1dd{bottom:782.213333pt;}
.y2c{bottom:783.013333pt;}
.y160{bottom:783.653333pt;}
.y18f{bottom:783.973333pt;}
.y1a7{bottom:784.613333pt;}
.y79{bottom:786.213333pt;}
.yfc{bottom:790.053333pt;}
.y54{bottom:795.493333pt;}
.y179{bottom:797.893333pt;}
.y1bb{bottom:800.933333pt;}
.y1dc{bottom:802.213333pt;}
.y2b{bottom:802.853333pt;}
.y5{bottom:803.493333pt;}
.y18e{bottom:803.973333pt;}
.y78{bottom:806.053333pt;}
.yfb{bottom:809.893333pt;}
.y53{bottom:815.333333pt;}
.y1a6{bottom:816.293333pt;}
.y1db{bottom:822.213333pt;}
.y2a{bottom:822.693333pt;}
.y15f{bottom:823.333333pt;}
.y4{bottom:823.493333pt;}
.y77{bottom:825.893333pt;}
.yfa{bottom:829.893333pt;}
.y18d{bottom:834.373333pt;}
.y178{bottom:834.693333pt;}
.y11d{bottom:835.173333pt;}
.y29{bottom:842.533333pt;}
.y15e{bottom:843.173333pt;}
.y1d9{bottom:843.653333pt;}
.y52{bottom:845.893333pt;}
.yf9{bottom:849.733333pt;}
.y76{bottom:851.973333pt;}
.y1a5{bottom:853.093333pt;}
.y3{bottom:853.893333pt;}
.y138{bottom:855.013333pt;}
.y18c{bottom:856.613333pt;}
.y1ba{bottom:859.333333pt;}
.y28{bottom:862.373333pt;}
.y15d{bottom:863.013333pt;}
.y51{bottom:865.733333pt;}
.yf8{bottom:869.573333pt;}
.y177{bottom:871.493333pt;}
.y137{bottom:874.853333pt;}
.y1b9{bottom:877.733333pt;}
.y2{bottom:878.853333pt;}
.y27{bottom:882.213333pt;}
.y1d8{bottom:882.693333pt;}
.y15c{bottom:882.853333pt;}
.y50{bottom:885.573333pt;}
.y18b{bottom:889.093333pt;}
.y1a4{bottom:889.893333pt;}
.y95{bottom:894.693333pt;}
.y1b8{bottom:896.133333pt;}
.y26{bottom:902.053333pt;}
.y15b{bottom:902.693333pt;}
.y1d7{bottom:903.333333pt;}
.y4f{bottom:905.413333pt;}
.y176{bottom:908.293333pt;}
.y1b7{bottom:914.533333pt;}
.y25{bottom:921.893333pt;}
.y15a{bottom:922.533333pt;}
.y1{bottom:924.453333pt;}
.y4e{bottom:925.253333pt;}
.y1a3{bottom:926.693333pt;}
.y24{bottom:942.560000pt;}
.y4d{bottom:945.120000pt;}
.h1d{height:20.000000pt;}
.h21{height:20.032000pt;}
.h1b{height:20.160000pt;}
.h1c{height:20.192000pt;}
.h20{height:20.960000pt;}
.h1e{height:21.120000pt;}
.h19{height:21.280000pt;}
.h18{height:21.440000pt;}
.h17{height:22.400000pt;}
.h4{height:31.008437pt;}
.h26{height:35.872000pt;}
.h25{height:37.443750pt;}
.h5{height:38.492500pt;}
.h1f{height:40.000000pt;}
.h1a{height:40.320000pt;}
.h15{height:41.760000pt;}
.h6{height:46.281250pt;}
.hd{height:46.593750pt;}
.h16{height:47.109375pt;}
.ha{height:48.781250pt;}
.h13{height:51.401250pt;}
.h24{height:53.600000pt;}
.h3{height:55.328438pt;}
.he{height:55.488437pt;}
.h12{height:56.497500pt;}
.hc{height:57.003438pt;}
.h23{height:58.563750pt;}
.h22{height:60.288750pt;}
.h2{height:62.812500pt;}
.hb{height:63.843750pt;}
.h8{height:65.781915pt;}
.h9{height:66.625000pt;}
.h27{height:71.680000pt;}
.hf{height:76.055625pt;}
.h7{height:77.951250pt;}
.h11{height:94.812500pt;}
.h14{height:101.765625pt;}
.h10{height:108.055625pt;}
.h1{height:141.984375pt;}
.h0{height:1056.000000pt;}
.w23{width:12.320000pt;}
.w17{width:12.640000pt;}
.w15{width:13.280000pt;}
.w9{width:14.080000pt;}
.w13{width:14.560000pt;}
.w20{width:14.592000pt;}
.w7{width:14.720000pt;}
.w5{width:16.160000pt;}
.w1f{width:30.720000pt;}
.w12{width:32.960000pt;}
.w4{width:36.480000pt;}
.w19{width:47.840000pt;}
.w1a{width:48.672000pt;}
.w1b{width:51.040000pt;}
.w29{width:51.520000pt;}
.w10{width:52.000000pt;}
.w25{width:52.320000pt;}
.w2a{width:52.512000pt;}
.wb{width:52.960000pt;}
.w26{width:53.120000pt;}
.w27{width:53.632000pt;}
.wc{width:53.792000pt;}
.w1c{width:54.272000pt;}
.w28{width:54.400000pt;}
.wd{width:56.480000pt;}
.we{width:57.600000pt;}
.wf{width:66.432000pt;}
.w2c{width:74.592000pt;}
.w14{width:96.512000pt;}
.w1d{width:96.800000pt;}
.w16{width:103.040000pt;}
.w24{width:104.032000pt;}
.w21{width:105.440000pt;}
.w2b{width:106.240000pt;}
.w6{width:106.752000pt;}
.w22{width:108.032000pt;}
.w8{width:114.080000pt;}
.wa{width:118.432000pt;}
.w2e{width:123.232000pt;}
.w1e{width:134.720000pt;}
.w18{width:151.066667pt;}
.w3{width:207.386667pt;}
.w11{width:214.106667pt;}
.w2d{width:333.306667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.640000pt;}
.x13{left:5.760000pt;}
.x24{left:7.040000pt;}
.x15{left:8.160000pt;}
.x1f{left:10.080000pt;}
.x1c{left:11.520000pt;}
.x40{left:12.960000pt;}
.x3f{left:14.080000pt;}
.x23{left:16.000000pt;}
.x2a{left:19.040000pt;}
.x22{left:20.320000pt;}
.x1e{left:22.080000pt;}
.x11{left:25.280000pt;}
.x1d{left:27.360000pt;}
.x33{left:28.640000pt;}
.x20{left:30.880000pt;}
.x2b{left:36.320000pt;}
.x21{left:40.840000pt;}
.x18{left:43.720000pt;}
.x41{left:44.800000pt;}
.x7{left:47.999976pt;}
.x32{left:49.640000pt;}
.x4{left:55.999976pt;}
.x2e{left:59.880000pt;}
.x2{left:63.999976pt;}
.x34{left:65.120000pt;}
.x3{left:71.999988pt;}
.x1{left:96.031988pt;}
.x5{left:120.031988pt;}
.xc{left:121.631988pt;}
.x6{left:144.026655pt;}
.x42{left:202.266667pt;}
.x35{left:230.746667pt;}
.x9{left:240.026655pt;}
.x36{left:261.466667pt;}
.x37{left:276.066667pt;}
.xe{left:303.426667pt;}
.x25{left:310.146667pt;}
.xa{left:315.906655pt;}
.x3c{left:328.386667pt;}
.xf{left:339.906667pt;}
.x26{left:343.106667pt;}
.x10{left:356.066667pt;}
.x27{left:357.666667pt;}
.xb{left:365.826655pt;}
.x38{left:381.506667pt;}
.x39{left:394.786667pt;}
.x2f{left:405.506667pt;}
.x19{left:409.026667pt;}
.x3d{left:448.413333pt;}
.x28{left:454.173333pt;}
.x12{left:462.813333pt;}
.x29{left:467.453333pt;}
.x14{left:477.533333pt;}
.x3a{left:502.813333pt;}
.x3b{left:515.133333pt;}
.x30{left:518.493333pt;}
.x1a{left:534.013333pt;}
.x3e{left:566.653333pt;}
.x2c{left:570.493333pt;}
.x2d{left:583.133333pt;}
.x16{left:591.613333pt;}
.x17{left:605.693333pt;}
.x43{left:610.173333pt;}
.x31{left:637.413333pt;}
.x1b{left:672.133333pt;}
.x8{left:720.133321pt;}
}




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