
    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_05c22f3299a2bd7137ed4c26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7db922fd1bb128edce0819fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c943ecda5a78816a4e659484.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b31823a81973e245965c7ae1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a4fd004bc17c2e295d446b71.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d08dbc158ae38baa1a2bb5f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_02fb5e2c06e4bd235c30aa24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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_e6c5685525236f3a7a94e14e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_468b1c3863cf25ce69065d62.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_b1e782ba3318976bf7132604.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f8720e27fc55a5343f8f01e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706543;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.176000px;}
.ls1d{letter-spacing:-1.134000px;}
.ls23{letter-spacing:-1.056000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.334200px;}
.lsb{letter-spacing:-0.305400px;}
.ls1b{letter-spacing:-0.219000px;}
.ls1a{letter-spacing:-0.166800px;}
.ls16{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.051840px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.051840px;}
.ls4{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152400px;}
.ls17{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.219000px;}
.lsf{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.385800px;}
.ls7{letter-spacing:0.501000px;}
.ls22{letter-spacing:0.553200px;}
.ls11{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.828000px;}
.ls13{letter-spacing:14.929920px;}
.ls1f{letter-spacing:47.185920px;}
.ls1e{letter-spacing:78.865920px;}
.ls3{letter-spacing:118.385280px;}
.ls14{letter-spacing:118.529280px;}
.ls19{letter-spacing:154.224000px;}
.lsd{letter-spacing:513.516000px;}
.ls1{letter-spacing:532.200000px;}
.ls18{letter-spacing:1017.660000px;}
.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;}
}
.wsb{word-spacing:-63.360000px;}
.ws13{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.450800px;}
.ws6{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.059000px;}
.ws7{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.891840px;}
.ws3{word-spacing:-15.840000px;}
.wse{word-spacing:-15.673200px;}
.ws14{word-spacing:-15.621000px;}
.ws11{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.384000px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.120000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-2.263200px;}
._2{margin-left:-1.077360px;}
._0{width:1.195200px;}
._4{width:2.879280px;}
._5{width:3.970560px;}
._9{width:5.083680px;}
._e{width:6.539280px;}
._6{width:8.046960px;}
._7{width:9.250320px;}
._8{width:10.265280px;}
._a{width:12.167040px;}
._b{width:13.708800px;}
._10{width:14.970240px;}
._d{width:17.749440px;}
._c{width:19.739520px;}
._f{width:21.061440px;}
._20{width:22.936560px;}
._18{width:24.111360px;}
._22{width:25.444320px;}
._1b{width:27.158400px;}
._12{width:28.880640px;}
._13{width:30.024240px;}
._14{width:31.772160px;}
._15{width:32.791680px;}
._28{width:33.832320px;}
._1a{width:34.939920px;}
._19{width:36.829440px;}
._17{width:38.130240px;}
._16{width:39.430320px;}
._29{width:40.861200px;}
._21{width:42.278640px;}
._23{width:46.849200px;}
._24{width:49.150080px;}
._2a{width:79.453440px;}
._2b{width:91.238400px;}
._27{width:138.384000px;}
._26{width:154.224000px;}
._11{width:603.871440px;}
._1{width:625.116000px;}
._1d{width:699.494640px;}
._1c{width:790.176000px;}
._1e{width:846.180000px;}
._25{width:1033.122720px;}
._1f{width:1620.420000px;}
.fc2{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.yf4{bottom:-68.400000px;}
.yf3{bottom:-49.860000px;}
.yf2{bottom:-31.680000px;}
.yf1{bottom:-13.680000px;}
.y0{bottom:0.000000px;}
.y126{bottom:3.960000px;}
.yf6{bottom:7.200000px;}
.yf8{bottom:7.560000px;}
.y135{bottom:7.920000px;}
.y13a{bottom:8.085000px;}
.y12c{bottom:8.100000px;}
.y13e{bottom:9.345000px;}
.y12b{bottom:9.360000px;}
.yed{bottom:9.720000px;}
.ye9{bottom:9.750000px;}
.y122{bottom:9.900000px;}
.y153{bottom:9.945000px;}
.yf0{bottom:10.440000px;}
.y124{bottom:11.160000px;}
.y127{bottom:11.520000px;}
.yeb{bottom:13.500000px;}
.y156{bottom:13.680000px;}
.y64{bottom:22.500000px;}
.y133{bottom:24.120000px;}
.y13c{bottom:24.285000px;}
.y129{bottom:24.300000px;}
.y12e{bottom:24.330000px;}
.y121{bottom:28.080000px;}
.y152{bottom:28.125000px;}
.yfb{bottom:46.980000px;}
.y23{bottom:57.600000px;}
.y4{bottom:97.125005px;}
.y147{bottom:110.880000px;}
.y52{bottom:112.140000px;}
.yc2{bottom:113.940000px;}
.y1a3{bottom:114.660000px;}
.yee{bottom:116.280000px;}
.y19d{bottom:119.520000px;}
.y93{bottom:119.880000px;}
.y11f{bottom:120.060000px;}
.y191{bottom:125.640000px;}
.y11d{bottom:126.180000px;}
.y1d1{bottom:127.080000px;}
.y63{bottom:127.980000px;}
.y51{bottom:133.920000px;}
.y1a2{bottom:135.360000px;}
.ya1{bottom:135.720000px;}
.y20{bottom:139.264499px;}
.y146{bottom:140.760000px;}
.y19c{bottom:141.480000px;}
.y92{bottom:141.660000px;}
.y11e{bottom:142.020000px;}
.yec{bottom:146.880000px;}
.y190{bottom:147.420000px;}
.y1d0{bottom:147.780000px;}
.y11c{bottom:147.960000px;}
.y62{bottom:149.760000px;}
.y217{bottom:152.640000px;}
.y50{bottom:155.880000px;}
.y1a1{bottom:156.240000px;}
.yc1{bottom:157.500000px;}
.y19b{bottom:163.260000px;}
.y91{bottom:163.440000px;}
.y166{bottom:163.620000px;}
.y1fe{bottom:166.140000px;}
.y216{bottom:168.660000px;}
.y18f{bottom:169.200000px;}
.y11b{bottom:169.740000px;}
.y145{bottom:170.460000px;}
.y61{bottom:171.720000px;}
.y1a0{bottom:177.300000px;}
.yea{bottom:177.480000px;}
.y4f{bottom:177.660000px;}
.yc0{bottom:179.280000px;}
.y19a{bottom:185.040000px;}
.y90{bottom:185.400000px;}
.y1fd{bottom:186.840000px;}
.y215{bottom:189.540000px;}
.y18e{bottom:190.980000px;}
.y11a{bottom:191.520000px;}
.y1cf{bottom:192.420000px;}
.y60{bottom:193.500000px;}
.y17{bottom:196.933500px;}
.y19f{bottom:198.900000px;}
.y4e{bottom:199.440000px;}
.y144{bottom:200.340000px;}
.ybf{bottom:201.240000px;}
.y199{bottom:206.820000px;}
.y8f{bottom:207.180000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y214{bottom:210.240000px;}
.y1fc{bottom:210.780000px;}
.y18d{bottom:212.940000px;}
.y1ce{bottom:213.300000px;}
.y119{bottom:213.480000px;}
.y5f{bottom:215.280000px;}
.ye8{bottom:216.360000px;}
.y4d{bottom:221.220000px;}
.y19e{bottom:221.580000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ybe{bottom:223.020000px;}
.y8e{bottom:228.990000px;}
.y143{bottom:230.085000px;}
.y213{bottom:231.150000px;}
.y1fb{bottom:231.690000px;}
.y1cd{bottom:234.210000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y18c{bottom:234.750000px;}
.y118{bottom:235.290000px;}
.y5e{bottom:237.090000px;}
.y4c{bottom:243.210000px;}
.ybd{bottom:244.830000px;}
.y8d{bottom:250.770000px;}
.y1fa{bottom:252.390000px;}
.y212{bottom:255.090000px;}
.y18b{bottom:256.530000px;}
.y117{bottom:257.070000px;}
.y1cc{bottom:257.970000px;}
.y5d{bottom:258.870000px;}
.y141{bottom:259.785000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y4b{bottom:264.990000px;}
.ye7{bottom:271.470000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y8c{bottom:272.730000px;}
.y1f9{bottom:273.270000px;}
.y211{bottom:275.790000px;}
.y18a{bottom:278.310000px;}
.y116{bottom:278.850000px;}
.y5c{bottom:280.830000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y4a{bottom:286.770000px;}
.ydd{bottom:288.390000px;}
.y142{bottom:289.665000px;}
.y8b{bottom:294.510000px;}
.y210{bottom:296.670000px;}
.y1f8{bottom:297.030000px;}
.y1cb{bottom:299.730000px;}
.y189{bottom:300.270000px;}
.yae{bottom:300.450000px;}
.y115{bottom:300.630000px;}
.y5b{bottom:302.610000px;}
.y49{bottom:308.550000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ydc{bottom:310.350000px;}
.y8a{bottom:316.290000px;}
.y1f7{bottom:317.910000px;}
.y13f{bottom:319.365000px;}
.y1ca{bottom:320.430000px;}
.y188{bottom:322.050000px;}
.yad{bottom:322.230000px;}
.y114{bottom:322.590000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y5a{bottom:324.390000px;}
.y48{bottom:330.330000px;}
.ydb{bottom:332.130000px;}
.y89{bottom:338.070000px;}
.y1f6{bottom:338.790000px;}
.y20f{bottom:341.310000px;}
.y187{bottom:343.830000px;}
.yac{bottom:344.190000px;}
.y1c9{bottom:344.370000px;}
.y59{bottom:346.170000px;}
.ye{bottom:348.133500px;}
.y140{bottom:349.245000px;}
.y113{bottom:350.310000px;}
.y47{bottom:352.290000px;}
.yda{bottom:353.910000px;}
.y1f5{bottom:359.490000px;}
.y88{bottom:359.850000px;}
.y165{bottom:360.030000px;}
.y20e{bottom:362.190000px;}
.y1c8{bottom:365.070000px;}
.y186{bottom:365.610000px;}
.yab{bottom:365.970000px;}
.y58{bottom:368.130000px;}
.y112{bottom:372.270000px;}
.y46{bottom:374.070000px;}
.yd9{bottom:375.690000px;}
.y13b{bottom:378.945000px;}
.ybc{bottom:381.810000px;}
.y20d{bottom:382.890000px;}
.y1f4{bottom:383.430000px;}
.y1c7{bottom:385.950000px;}
.yd{bottom:386.785499px;}
.y185{bottom:387.030000px;}
.y198{bottom:387.390000px;}
.y87{bottom:387.750000px;}
.y57{bottom:389.910000px;}
.y45{bottom:395.850000px;}
.yd8{bottom:397.650000px;}
.y111{bottom:402.150000px;}
.y164{bottom:403.425000px;}
.ybb{bottom:403.590000px;}
.y1f3{bottom:404.310000px;}
.y1c6{bottom:406.830000px;}
.yc{bottom:408.044999px;}
.y13d{bottom:408.645000px;}
.y184{bottom:408.990000px;}
.y197{bottom:409.350000px;}
.y86{bottom:409.530000px;}
.y56{bottom:411.690000px;}
.y44{bottom:417.630000px;}
.yd7{bottom:419.430000px;}
.y1f2{bottom:425.010000px;}
.yba{bottom:425.370000px;}
.y1c5{bottom:427.710000px;}
.y196{bottom:431.130000px;}
.y85{bottom:431.310000px;}
.y163{bottom:433.305000px;}
.y55{bottom:433.470000px;}
.y183{bottom:437.070000px;}
.y138{bottom:438.525000px;}
.y43{bottom:439.590000px;}
.yd6{bottom:441.210000px;}
.yb9{bottom:447.150000px;}
.y20c{bottom:448.410000px;}
.y1f1{bottom:448.950000px;}
.y1c4{bottom:451.470000px;}
.y195{bottom:452.910000px;}
.y84{bottom:453.270000px;}
.y54{bottom:455.250000px;}
.y182{bottom:458.895000px;}
.y42{bottom:461.415000px;}
.yd5{bottom:462.675000px;}
.y162{bottom:463.035000px;}
.y139{bottom:468.255000px;}
.yb8{bottom:469.155000px;}
.y1f0{bottom:469.695000px;}
.y1c3{bottom:472.395000px;}
.y194{bottom:474.735000px;}
.y83{bottom:475.095000px;}
.y181{bottom:480.855000px;}
.y41{bottom:483.195000px;}
.yd4{bottom:484.815000px;}
.y1ef{bottom:490.575000px;}
.yb7{bottom:490.935000px;}
.y161{bottom:492.735000px;}
.y1c2{bottom:493.095000px;}
.y193{bottom:496.515000px;}
.y82{bottom:496.875000px;}
.y136{bottom:498.135000px;}
.y180{bottom:502.635000px;}
.yaa{bottom:502.815000px;}
.yb{bottom:502.864502px;}
.y40{bottom:504.975000px;}
.y1ee{bottom:511.455000px;}
.yb6{bottom:512.715000px;}
.y1c1{bottom:513.975000px;}
.y192{bottom:518.475000px;}
.y81{bottom:518.655000px;}
.ya{bottom:520.864502px;}
.y160{bottom:522.615000px;}
.y17f{bottom:524.415000px;}
.ya9{bottom:524.775000px;}
.y3f{bottom:526.755000px;}
.y137{bottom:527.835000px;}
.yd3{bottom:534.495000px;}
.y20b{bottom:534.855000px;}
.y1ed{bottom:535.215000px;}
.y1c0{bottom:537.735000px;}
.y9{bottom:538.864499px;}
.y80{bottom:540.615000px;}
.y17e{bottom:546.195000px;}
.ya8{bottom:546.555000px;}
.y3e{bottom:548.715000px;}
.y15e{bottom:552.315000px;}
.y1ec{bottom:556.095000px;}
.yd2{bottom:556.275000px;}
.y8{bottom:556.864499px;}
.y132{bottom:557.715000px;}
.y1bf{bottom:558.615000px;}
.y7f{bottom:562.395000px;}
.y17d{bottom:567.975000px;}
.ya7{bottom:568.335000px;}
.y3d{bottom:570.495000px;}
.y1eb{bottom:576.975000px;}
.yd1{bottom:578.235000px;}
.y1be{bottom:579.495000px;}
.y15f{bottom:582.195000px;}
.y7e{bottom:584.175000px;}
.y134{bottom:587.415000px;}
.y17c{bottom:589.935000px;}
.ya6{bottom:590.115000px;}
.y3c{bottom:592.275000px;}
.y1ea{bottom:597.675000px;}
.yd0{bottom:600.015000px;}
.y1bd{bottom:600.375000px;}
.y7d{bottom:605.955000px;}
.y17b{bottom:611.715000px;}
.y15c{bottom:611.895000px;}
.ya5{bottom:612.075000px;}
.y3b{bottom:614.055000px;}
.y130{bottom:617.115000px;}
.ye6{bottom:618.015000px;}
.y20a{bottom:621.075000px;}
.y1e9{bottom:621.615000px;}
.ycf{bottom:621.795000px;}
.y1bc{bottom:624.135000px;}
.y7c{bottom:627.735000px;}
.y17a{bottom:633.495000px;}
.ya4{bottom:633.855000px;}
.y3a{bottom:635.475000px;}
.y53{bottom:635.835000px;}
.ye5{bottom:639.795000px;}
.y15d{bottom:641.775000px;}
.y1e8{bottom:642.315000px;}
.yce{bottom:643.575000px;}
.y1bb{bottom:645.015000px;}
.y7{bottom:645.510000px;}
.y131{bottom:646.995000px;}
.ya0{bottom:649.335000px;}
.y7b{bottom:649.695000px;}
.y179{bottom:655.275000px;}
.ya3{bottom:655.635000px;}
.y39{bottom:658.335000px;}
.ye4{bottom:661.575000px;}
.y1e7{bottom:663.195000px;}
.ycd{bottom:665.535000px;}
.y1ba{bottom:665.715000px;}
.y6{bottom:666.771000px;}
.y9f{bottom:671.115000px;}
.y7a{bottom:671.475000px;}
.y110{bottom:675.615000px;}
.y12d{bottom:676.695000px;}
.y178{bottom:677.235000px;}
.ya2{bottom:677.415000px;}
.ye3{bottom:683.535000px;}
.y1e6{bottom:684.075000px;}
.y38{bottom:687.135000px;}
.ycc{bottom:687.315000px;}
.y1b9{bottom:689.685000px;}
.yb5{bottom:693.285000px;}
.y177{bottom:699.045000px;}
.y79{bottom:699.225000px;}
.y15b{bottom:701.205000px;}
.y109{bottom:702.285000px;}
.y10f{bottom:704.805000px;}
.ye2{bottom:705.345000px;}
.y12f{bottom:706.605000px;}
.y1e5{bottom:707.865000px;}
.ycb{bottom:709.125000px;}
.y1b8{bottom:710.385000px;}
.y37{bottom:713.985000px;}
.yb4{bottom:715.065000px;}
.y176{bottom:718.485000px;}
.y78{bottom:721.185000px;}
.y108{bottom:724.065000px;}
.y5{bottom:726.298500px;}
.ye1{bottom:727.125000px;}
.y1e4{bottom:728.745000px;}
.yca{bottom:730.905000px;}
.y159{bottom:731.085000px;}
.y1b7{bottom:731.265000px;}
.y128{bottom:736.305000px;}
.yb3{bottom:737.025000px;}
.y175{bottom:738.465000px;}
.y36{bottom:740.805000px;}
.y77{bottom:742.965000px;}
.y10e{bottom:745.845000px;}
.ye0{bottom:748.905000px;}
.y1e3{bottom:749.625000px;}
.y107{bottom:751.965000px;}
.y1b6{bottom:752.145000px;}
.y3{bottom:752.599495px;}
.y174{bottom:756.645000px;}
.yb2{bottom:758.805000px;}
.y15a{bottom:760.785000px;}
.y35{bottom:761.865000px;}
.y76{bottom:764.745000px;}
.y12a{bottom:766.005000px;}
.y10d{bottom:767.625000px;}
.ydf{bottom:770.685000px;}
.y209{bottom:773.025000px;}
.y1e2{bottom:773.385000px;}
.y106{bottom:773.745000px;}
.y1b5{bottom:775.905000px;}
.yb1{bottom:780.585000px;}
.y173{bottom:780.765000px;}
.y34{bottom:782.565000px;}
.y75{bottom:786.525000px;}
.y10c{bottom:789.585000px;}
.y157{bottom:790.665000px;}
.yde{bottom:792.645000px;}
.y1e1{bottom:794.265000px;}
.y105{bottom:795.525000px;}
.y125{bottom:795.885000px;}
.y1b4{bottom:796.785000px;}
.yb0{bottom:802.365000px;}
.y33{bottom:803.445000px;}
.y172{bottom:807.945000px;}
.y74{bottom:808.485000px;}
.y10b{bottom:811.365000px;}
.y9e{bottom:814.425000px;}
.y1e0{bottom:814.965000px;}
.y104{bottom:817.305000px;}
.y1b3{bottom:817.665000px;}
.y158{bottom:820.365000px;}
.yaf{bottom:824.145000px;}
.y32{bottom:824.325000px;}
.y123{bottom:829.905000px;}
.y73{bottom:830.265000px;}
.y10a{bottom:833.145000px;}
.y171{bottom:835.665000px;}
.y1df{bottom:835.845000px;}
.y9d{bottom:836.205000px;}
.y208{bottom:838.365000px;}
.y103{bottom:839.085000px;}
.y1b2{bottom:841.425000px;}
.y31{bottom:845.025000px;}
.yc9{bottom:849.165000px;}
.y155{bottom:850.065000px;}
.y72{bottom:852.045000px;}
.y9c{bottom:857.985000px;}
.y207{bottom:859.245000px;}
.y1de{bottom:859.605000px;}
.y102{bottom:861.045000px;}
.y1b1{bottom:862.305000px;}
.y170{bottom:863.565000px;}
.y120{bottom:863.925000px;}
.y30{bottom:865.905000px;}
.yc8{bottom:870.945000px;}
.y71{bottom:873.825000px;}
.y2{bottom:879.369000px;}
.y9b{bottom:879.945000px;}
.y1dd{bottom:880.485000px;}
.y101{bottom:882.825000px;}
.y1b0{bottom:883.005000px;}
.y206{bottom:883.545000px;}
.y2f{bottom:886.785000px;}
.y154{bottom:888.405000px;}
.y16f{bottom:891.285000px;}
.yc7{bottom:892.725000px;}
.y70{bottom:895.605000px;}
.y1dc{bottom:901.365000px;}
.y9a{bottom:901.725000px;}
.y205{bottom:904.245000px;}
.y100{bottom:904.605000px;}
.y1af{bottom:906.945000px;}
.y2e{bottom:907.665000px;}
.yc6{bottom:914.505000px;}
.y6f{bottom:917.565000px;}
.y151{bottom:918.105000px;}
.y16e{bottom:919.185000px;}
.y1db{bottom:922.290000px;}
.y99{bottom:923.550000px;}
.y204{bottom:925.170000px;}
.y1ae{bottom:927.690000px;}
.y2d{bottom:928.410000px;}
.yff{bottom:932.550000px;}
.yc5{bottom:936.330000px;}
.y6e{bottom:939.390000px;}
.y98{bottom:945.330000px;}
.y1da{bottom:946.050000px;}
.y16d{bottom:946.950000px;}
.yfa{bottom:948.210000px;}
.y1ad{bottom:948.570000px;}
.y2c{bottom:949.290000px;}
.yc4{bottom:958.110000px;}
.y6d{bottom:961.170000px;}
.y1{bottom:966.726000px;}
.y1d9{bottom:966.930000px;}
.y97{bottom:967.110000px;}
.y1ac{bottom:969.450000px;}
.y203{bottom:969.810000px;}
.y2b{bottom:970.170000px;}
.yfe{bottom:974.490000px;}
.y16c{bottom:974.850000px;}
.y150{bottom:982.050000px;}
.y6c{bottom:982.950000px;}
.yc3{bottom:983.130000px;}
.y1d8{bottom:987.630000px;}
.y96{bottom:989.070000px;}
.y1ab{bottom:990.330000px;}
.y202{bottom:990.690000px;}
.y2a{bottom:996.810000px;}
.yfd{bottom:1000.770000px;}
.y16b{bottom:1002.570000px;}
.y14f{bottom:1004.010000px;}
.y6b{bottom:1004.910000px;}
.y1d7{bottom:1008.510000px;}
.y95{bottom:1010.850000px;}
.y201{bottom:1011.570000px;}
.y1aa{bottom:1014.090000px;}
.y29{bottom:1017.690000px;}
.y14e{bottom:1025.790000px;}
.y6a{bottom:1026.690000px;}
.yfc{bottom:1026.870000px;}
.y16a{bottom:1030.470000px;}
.y94{bottom:1032.630000px;}
.y1d6{bottom:1033.350000px;}
.y1a9{bottom:1034.970000px;}
.y200{bottom:1035.330000px;}
.y28{bottom:1038.570000px;}
.y14d{bottom:1047.570000px;}
.yf9{bottom:1053.150000px;}
.y69{bottom:1054.410000px;}
.y1a8{bottom:1055.670000px;}
.y1d5{bottom:1056.210000px;}
.y169{bottom:1058.370000px;}
.y27{bottom:1065.210000px;}
.y14c{bottom:1069.350000px;}
.y68{bottom:1076.370000px;}
.y1a7{bottom:1076.550000px;}
.y1d4{bottom:1076.910000px;}
.yf7{bottom:1079.430000px;}
.y168{bottom:1086.090000px;}
.y26{bottom:1086.270000px;}
.y14b{bottom:1091.130000px;}
.y1d3{bottom:1097.790000px;}
.y67{bottom:1098.150000px;}
.y1a6{bottom:1100.310000px;}
.y1ff{bottom:1100.850000px;}
.yf5{bottom:1105.710000px;}
.y25{bottom:1112.190000px;}
.y14a{bottom:1113.090000px;}
.y167{bottom:1113.990000px;}
.y66{bottom:1119.930000px;}
.y1a5{bottom:1121.190000px;}
.y1d2{bottom:1121.550000px;}
.yef{bottom:1131.990000px;}
.y149{bottom:1134.870000px;}
.y24{bottom:1140.630000px;}
.y65{bottom:1141.710000px;}
.y1a4{bottom:1142.430000px;}
.y148{bottom:1151.250000px;}
.y22{bottom:1179.000000px;}
.y21{bottom:1196.460000px;}
.h1b{height:12.919922px;}
.h2f{height:17.054297px;}
.h36{height:21.705469px;}
.h16{height:24.690000px;}
.h1a{height:25.365000px;}
.h18{height:25.545000px;}
.h28{height:26.265000px;}
.h33{height:26.280000px;}
.h26{height:26.445000px;}
.h20{height:26.460000px;}
.h2b{height:26.481000px;}
.h23{height:26.490000px;}
.h25{height:28.965000px;}
.h2d{height:28.978500px;}
.h22{height:28.980000px;}
.h34{height:29.001000px;}
.h2c{height:29.016000px;}
.h2a{height:29.145000px;}
.h2e{height:29.158500px;}
.h1f{height:29.160000px;}
.h14{height:29.698500px;}
.h15{height:29.878500px;}
.h12{height:29.916000px;}
.h10{height:30.577148px;}
.h7{height:32.130000px;}
.h1d{height:33.300000px;}
.h31{height:37.620000px;}
.h13{height:38.160000px;}
.h9{height:42.894141px;}
.h17{height:42.941250px;}
.h35{height:43.993125px;}
.h11{height:44.893125px;}
.hd{height:45.478125px;}
.h6{height:45.900000px;}
.h1c{height:46.620000px;}
.hb{height:46.845000px;}
.he{height:47.415937px;}
.hf{height:47.545312px;}
.h3{height:48.195000px;}
.hc{height:49.612500px;}
.h30{height:51.142500px;}
.ha{height:51.679688px;}
.h2{height:55.080000px;}
.h27{height:58.665000px;}
.h32{height:58.680000px;}
.h24{height:58.845000px;}
.h1e{height:58.860000px;}
.h29{height:58.881000px;}
.h21{height:58.890000px;}
.h5{height:78.030000px;}
.h19{height:104.205000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w7{width:112.161000px;}
.w6{width:115.054500px;}
.wa{width:119.361000px;}
.w8{width:123.120000px;}
.w9{width:128.736000px;}
.wb{width:139.530000px;}
.w18{width:216.570000px;}
.w17{width:222.735000px;}
.w13{width:225.960000px;}
.w12{width:233.130000px;}
.w11{width:294.373500px;}
.w16{width:295.579500px;}
.wd{width:351.964500px;}
.we{width:387.240000px;}
.w2{width:637.794021px;}
.w15{width:736.335000px;}
.w14{width:737.055000px;}
.wc{width:740.835000px;}
.w5{width:742.498500px;}
.w10{width:755.098500px;}
.wf{width:755.818500px;}
.w4{width:892.500000px;}
.w3{width:892.620000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.845000px;}
.x1b{left:8.100000px;}
.x16{left:25.954500px;}
.x1f{left:27.214500px;}
.x18{left:37.065000px;}
.x25{left:42.285000px;}
.x27{left:43.725000px;}
.x26{left:46.650000px;}
.x20{left:50.025000px;}
.x23{left:51.465000px;}
.x22{left:54.570000px;}
.x21{left:57.780000px;}
.x31{left:59.941500px;}
.x24{left:65.160000px;}
.x14{left:66.601500px;}
.x11{left:68.040000px;}
.x3f{left:73.243500px;}
.x45{left:75.990000px;}
.x3b{left:77.790000px;}
.x39{left:79.050000px;}
.x3e{left:80.130000px;}
.x3d{left:81.210000px;}
.x3c{left:82.470000px;}
.x3a{left:83.730000px;}
.x6{left:84.996000px;}
.x38{left:86.970000px;}
.x37{left:88.590000px;}
.x43{left:92.370000px;}
.x15{left:95.248500px;}
.x35{left:97.770000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4a{left:110.556000px;}
.x48{left:122.076000px;}
.xe{left:127.476000px;}
.x29{left:136.603500px;}
.x8{left:141.696000px;}
.x2c{left:145.783500px;}
.x2d{left:148.845000px;}
.x9{left:162.030000px;}
.x2e{left:171.390000px;}
.x7{left:173.370000px;}
.x17{left:182.925000px;}
.xb{left:188.670000px;}
.x2b{left:193.530000px;}
.x12{left:195.870000px;}
.x46{left:199.290000px;}
.x4{left:203.484001px;}
.x33{left:232.273500px;}
.x41{left:233.308500px;}
.x40{left:264.448500px;}
.x32{left:271.873500px;}
.x10{left:290.130000px;}
.x19{left:295.815000px;}
.x5{left:320.295000px;}
.x47{left:334.335000px;}
.xd{left:342.615000px;}
.xa{left:344.415000px;}
.x34{left:355.575000px;}
.xc{left:364.575000px;}
.x28{left:370.318500px;}
.x42{left:383.115000px;}
.x1a{left:419.655000px;}
.x2a{left:437.700000px;}
.x3{left:454.959000px;}
.xf{left:471.885000px;}
.x2f{left:492.945000px;}
.x4b{left:497.085000px;}
.x13{left:508.965000px;}
.x49{left:514.185000px;}
.x1c{left:549.120000px;}
.x36{left:589.440000px;}
.x44{left:606.570000px;}
.x1e{left:669.210000px;}
.x30{left:825.660000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.045333pt;}
.ls1d{letter-spacing:-1.008000pt;}
.ls23{letter-spacing:-0.938667pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.297067pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.194667pt;}
.ls1a{letter-spacing:-0.148267pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.046080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.046080pt;}
.ls4{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135467pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.194667pt;}
.lsf{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls7{letter-spacing:0.445333pt;}
.ls22{letter-spacing:0.491733pt;}
.ls11{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls13{letter-spacing:13.271040pt;}
.ls1f{letter-spacing:41.943040pt;}
.ls1e{letter-spacing:70.103040pt;}
.ls3{letter-spacing:105.231360pt;}
.ls14{letter-spacing:105.359360pt;}
.ls19{letter-spacing:137.088000pt;}
.lsd{letter-spacing:456.458667pt;}
.ls1{letter-spacing:473.066667pt;}
.ls18{letter-spacing:904.586667pt;}
.wsb{word-spacing:-56.320000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.622933pt;}
.ws6{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.274667pt;}
.ws7{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.126080pt;}
.ws3{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.931733pt;}
.ws14{word-spacing:-13.885333pt;}
.ws11{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-2.011733pt;}
._2{margin-left:-0.957653pt;}
._0{width:1.062400pt;}
._4{width:2.559360pt;}
._5{width:3.529387pt;}
._9{width:4.518827pt;}
._e{width:5.812693pt;}
._6{width:7.152853pt;}
._7{width:8.222507pt;}
._8{width:9.124693pt;}
._a{width:10.815147pt;}
._b{width:12.185600pt;}
._10{width:13.306880pt;}
._d{width:15.777280pt;}
._c{width:17.546240pt;}
._f{width:18.721280pt;}
._20{width:20.388053pt;}
._18{width:21.432320pt;}
._22{width:22.617173pt;}
._1b{width:24.140800pt;}
._12{width:25.671680pt;}
._13{width:26.688213pt;}
._14{width:28.241920pt;}
._15{width:29.148160pt;}
._28{width:30.073173pt;}
._1a{width:31.057707pt;}
._19{width:32.737280pt;}
._17{width:33.893547pt;}
._16{width:35.049173pt;}
._29{width:36.321067pt;}
._21{width:37.581013pt;}
._23{width:41.643733pt;}
._24{width:43.688960pt;}
._2a{width:70.625280pt;}
._2b{width:81.100800pt;}
._27{width:123.008000pt;}
._26{width:137.088000pt;}
._11{width:536.774613pt;}
._1{width:555.658667pt;}
._1d{width:621.773013pt;}
._1c{width:702.378667pt;}
._1e{width:752.160000pt;}
._25{width:918.331307pt;}
._1f{width:1440.373333pt;}
.fs9{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.yf4{bottom:-60.800000pt;}
.yf3{bottom:-44.320000pt;}
.yf2{bottom:-28.160000pt;}
.yf1{bottom:-12.160000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:3.520000pt;}
.yf6{bottom:6.400000pt;}
.yf8{bottom:6.720000pt;}
.y135{bottom:7.040000pt;}
.y13a{bottom:7.186667pt;}
.y12c{bottom:7.200000pt;}
.y13e{bottom:8.306667pt;}
.y12b{bottom:8.320000pt;}
.yed{bottom:8.640000pt;}
.ye9{bottom:8.666667pt;}
.y122{bottom:8.800000pt;}
.y153{bottom:8.840000pt;}
.yf0{bottom:9.280000pt;}
.y124{bottom:9.920000pt;}
.y127{bottom:10.240000pt;}
.yeb{bottom:12.000000pt;}
.y156{bottom:12.160000pt;}
.y64{bottom:20.000000pt;}
.y133{bottom:21.440000pt;}
.y13c{bottom:21.586667pt;}
.y129{bottom:21.600000pt;}
.y12e{bottom:21.626667pt;}
.y121{bottom:24.960000pt;}
.y152{bottom:25.000000pt;}
.yfb{bottom:41.760000pt;}
.y23{bottom:51.200000pt;}
.y4{bottom:86.333337pt;}
.y147{bottom:98.560000pt;}
.y52{bottom:99.680000pt;}
.yc2{bottom:101.280000pt;}
.y1a3{bottom:101.920000pt;}
.yee{bottom:103.360000pt;}
.y19d{bottom:106.240000pt;}
.y93{bottom:106.560000pt;}
.y11f{bottom:106.720000pt;}
.y191{bottom:111.680000pt;}
.y11d{bottom:112.160000pt;}
.y1d1{bottom:112.960000pt;}
.y63{bottom:113.760000pt;}
.y51{bottom:119.040000pt;}
.y1a2{bottom:120.320000pt;}
.ya1{bottom:120.640000pt;}
.y20{bottom:123.790666pt;}
.y146{bottom:125.120000pt;}
.y19c{bottom:125.760000pt;}
.y92{bottom:125.920000pt;}
.y11e{bottom:126.240000pt;}
.yec{bottom:130.560000pt;}
.y190{bottom:131.040000pt;}
.y1d0{bottom:131.360000pt;}
.y11c{bottom:131.520000pt;}
.y62{bottom:133.120000pt;}
.y217{bottom:135.680000pt;}
.y50{bottom:138.560000pt;}
.y1a1{bottom:138.880000pt;}
.yc1{bottom:140.000000pt;}
.y19b{bottom:145.120000pt;}
.y91{bottom:145.280000pt;}
.y166{bottom:145.440000pt;}
.y1fe{bottom:147.680000pt;}
.y216{bottom:149.920000pt;}
.y18f{bottom:150.400000pt;}
.y11b{bottom:150.880000pt;}
.y145{bottom:151.520000pt;}
.y61{bottom:152.640000pt;}
.y1a0{bottom:157.600000pt;}
.yea{bottom:157.760000pt;}
.y4f{bottom:157.920000pt;}
.yc0{bottom:159.360000pt;}
.y19a{bottom:164.480000pt;}
.y90{bottom:164.800000pt;}
.y1fd{bottom:166.080000pt;}
.y215{bottom:168.480000pt;}
.y18e{bottom:169.760000pt;}
.y11a{bottom:170.240000pt;}
.y1cf{bottom:171.040000pt;}
.y60{bottom:172.000000pt;}
.y17{bottom:175.052000pt;}
.y19f{bottom:176.800000pt;}
.y4e{bottom:177.280000pt;}
.y144{bottom:178.080000pt;}
.ybf{bottom:178.880000pt;}
.y199{bottom:183.840000pt;}
.y8f{bottom:184.160000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y214{bottom:186.880000pt;}
.y1fc{bottom:187.360000pt;}
.y18d{bottom:189.280000pt;}
.y1ce{bottom:189.600000pt;}
.y119{bottom:189.760000pt;}
.y5f{bottom:191.360000pt;}
.ye8{bottom:192.320000pt;}
.y4d{bottom:196.640000pt;}
.y19e{bottom:196.960000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ybe{bottom:198.240000pt;}
.y8e{bottom:203.546667pt;}
.y143{bottom:204.520000pt;}
.y213{bottom:205.466667pt;}
.y1fb{bottom:205.946667pt;}
.y1cd{bottom:208.186667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y18c{bottom:208.666667pt;}
.y118{bottom:209.146667pt;}
.y5e{bottom:210.746667pt;}
.y4c{bottom:216.186667pt;}
.ybd{bottom:217.626667pt;}
.y8d{bottom:222.906667pt;}
.y1fa{bottom:224.346667pt;}
.y212{bottom:226.746667pt;}
.y18b{bottom:228.026667pt;}
.y117{bottom:228.506667pt;}
.y1cc{bottom:229.306667pt;}
.y5d{bottom:230.106667pt;}
.y141{bottom:230.920000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y4b{bottom:235.546667pt;}
.ye7{bottom:241.306667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y8c{bottom:242.426667pt;}
.y1f9{bottom:242.906667pt;}
.y211{bottom:245.146667pt;}
.y18a{bottom:247.386667pt;}
.y116{bottom:247.866667pt;}
.y5c{bottom:249.626667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y4a{bottom:254.906667pt;}
.ydd{bottom:256.346667pt;}
.y142{bottom:257.480000pt;}
.y8b{bottom:261.786667pt;}
.y210{bottom:263.706667pt;}
.y1f8{bottom:264.026667pt;}
.y1cb{bottom:266.426667pt;}
.y189{bottom:266.906667pt;}
.yae{bottom:267.066667pt;}
.y115{bottom:267.226667pt;}
.y5b{bottom:268.986667pt;}
.y49{bottom:274.266667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ydc{bottom:275.866667pt;}
.y8a{bottom:281.146667pt;}
.y1f7{bottom:282.586667pt;}
.y13f{bottom:283.880000pt;}
.y1ca{bottom:284.826667pt;}
.y188{bottom:286.266667pt;}
.yad{bottom:286.426667pt;}
.y114{bottom:286.746667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y5a{bottom:288.346667pt;}
.y48{bottom:293.626667pt;}
.ydb{bottom:295.226667pt;}
.y89{bottom:300.506667pt;}
.y1f6{bottom:301.146667pt;}
.y20f{bottom:303.386667pt;}
.y187{bottom:305.626667pt;}
.yac{bottom:305.946667pt;}
.y1c9{bottom:306.106667pt;}
.y59{bottom:307.706667pt;}
.ye{bottom:309.452000pt;}
.y140{bottom:310.440000pt;}
.y113{bottom:311.386667pt;}
.y47{bottom:313.146667pt;}
.yda{bottom:314.586667pt;}
.y1f5{bottom:319.546667pt;}
.y88{bottom:319.866667pt;}
.y165{bottom:320.026667pt;}
.y20e{bottom:321.946667pt;}
.y1c8{bottom:324.506667pt;}
.y186{bottom:324.986667pt;}
.yab{bottom:325.306667pt;}
.y58{bottom:327.226667pt;}
.y112{bottom:330.906667pt;}
.y46{bottom:332.506667pt;}
.yd9{bottom:333.946667pt;}
.y13b{bottom:336.840000pt;}
.ybc{bottom:339.386667pt;}
.y20d{bottom:340.346667pt;}
.y1f4{bottom:340.826667pt;}
.y1c7{bottom:343.066667pt;}
.yd{bottom:343.809333pt;}
.y185{bottom:344.026667pt;}
.y198{bottom:344.346667pt;}
.y87{bottom:344.666667pt;}
.y57{bottom:346.586667pt;}
.y45{bottom:351.866667pt;}
.yd8{bottom:353.466667pt;}
.y111{bottom:357.466667pt;}
.y164{bottom:358.600000pt;}
.ybb{bottom:358.746667pt;}
.y1f3{bottom:359.386667pt;}
.y1c6{bottom:361.626667pt;}
.yc{bottom:362.706666pt;}
.y13d{bottom:363.240000pt;}
.y184{bottom:363.546667pt;}
.y197{bottom:363.866667pt;}
.y86{bottom:364.026667pt;}
.y56{bottom:365.946667pt;}
.y44{bottom:371.226667pt;}
.yd7{bottom:372.826667pt;}
.y1f2{bottom:377.786667pt;}
.yba{bottom:378.106667pt;}
.y1c5{bottom:380.186667pt;}
.y196{bottom:383.226667pt;}
.y85{bottom:383.386667pt;}
.y163{bottom:385.160000pt;}
.y55{bottom:385.306667pt;}
.y183{bottom:388.506667pt;}
.y138{bottom:389.800000pt;}
.y43{bottom:390.746667pt;}
.yd6{bottom:392.186667pt;}
.yb9{bottom:397.466667pt;}
.y20c{bottom:398.586667pt;}
.y1f1{bottom:399.066667pt;}
.y1c4{bottom:401.306667pt;}
.y195{bottom:402.586667pt;}
.y84{bottom:402.906667pt;}
.y54{bottom:404.666667pt;}
.y182{bottom:407.906667pt;}
.y42{bottom:410.146667pt;}
.yd5{bottom:411.266667pt;}
.y162{bottom:411.586667pt;}
.y139{bottom:416.226667pt;}
.yb8{bottom:417.026667pt;}
.y1f0{bottom:417.506667pt;}
.y1c3{bottom:419.906667pt;}
.y194{bottom:421.986667pt;}
.y83{bottom:422.306667pt;}
.y181{bottom:427.426667pt;}
.y41{bottom:429.506667pt;}
.yd4{bottom:430.946667pt;}
.y1ef{bottom:436.066667pt;}
.yb7{bottom:436.386667pt;}
.y161{bottom:437.986667pt;}
.y1c2{bottom:438.306667pt;}
.y193{bottom:441.346667pt;}
.y82{bottom:441.666667pt;}
.y136{bottom:442.786667pt;}
.y180{bottom:446.786667pt;}
.yaa{bottom:446.946667pt;}
.yb{bottom:446.990669pt;}
.y40{bottom:448.866667pt;}
.y1ee{bottom:454.626667pt;}
.yb6{bottom:455.746667pt;}
.y1c1{bottom:456.866667pt;}
.y192{bottom:460.866667pt;}
.y81{bottom:461.026667pt;}
.ya{bottom:462.990669pt;}
.y160{bottom:464.546667pt;}
.y17f{bottom:466.146667pt;}
.ya9{bottom:466.466667pt;}
.y3f{bottom:468.226667pt;}
.y137{bottom:469.186667pt;}
.yd3{bottom:475.106667pt;}
.y20b{bottom:475.426667pt;}
.y1ed{bottom:475.746667pt;}
.y1c0{bottom:477.986667pt;}
.y9{bottom:478.990666pt;}
.y80{bottom:480.546667pt;}
.y17e{bottom:485.506667pt;}
.ya8{bottom:485.826667pt;}
.y3e{bottom:487.746667pt;}
.y15e{bottom:490.946667pt;}
.y1ec{bottom:494.306667pt;}
.yd2{bottom:494.466667pt;}
.y8{bottom:494.990666pt;}
.y132{bottom:495.746667pt;}
.y1bf{bottom:496.546667pt;}
.y7f{bottom:499.906667pt;}
.y17d{bottom:504.866667pt;}
.ya7{bottom:505.186667pt;}
.y3d{bottom:507.106667pt;}
.y1eb{bottom:512.866667pt;}
.yd1{bottom:513.986667pt;}
.y1be{bottom:515.106667pt;}
.y15f{bottom:517.506667pt;}
.y7e{bottom:519.266667pt;}
.y134{bottom:522.146667pt;}
.y17c{bottom:524.386667pt;}
.ya6{bottom:524.546667pt;}
.y3c{bottom:526.466667pt;}
.y1ea{bottom:531.266667pt;}
.yd0{bottom:533.346667pt;}
.y1bd{bottom:533.666667pt;}
.y7d{bottom:538.626667pt;}
.y17b{bottom:543.746667pt;}
.y15c{bottom:543.906667pt;}
.ya5{bottom:544.066667pt;}
.y3b{bottom:545.826667pt;}
.y130{bottom:548.546667pt;}
.ye6{bottom:549.346667pt;}
.y20a{bottom:552.066667pt;}
.y1e9{bottom:552.546667pt;}
.ycf{bottom:552.706667pt;}
.y1bc{bottom:554.786667pt;}
.y7c{bottom:557.986667pt;}
.y17a{bottom:563.106667pt;}
.ya4{bottom:563.426667pt;}
.y3a{bottom:564.866667pt;}
.y53{bottom:565.186667pt;}
.ye5{bottom:568.706667pt;}
.y15d{bottom:570.466667pt;}
.y1e8{bottom:570.946667pt;}
.yce{bottom:572.066667pt;}
.y1bb{bottom:573.346667pt;}
.y7{bottom:573.786667pt;}
.y131{bottom:575.106667pt;}
.ya0{bottom:577.186667pt;}
.y7b{bottom:577.506667pt;}
.y179{bottom:582.466667pt;}
.ya3{bottom:582.786667pt;}
.y39{bottom:585.186667pt;}
.ye4{bottom:588.066667pt;}
.y1e7{bottom:589.506667pt;}
.ycd{bottom:591.586667pt;}
.y1ba{bottom:591.746667pt;}
.y6{bottom:592.685334pt;}
.y9f{bottom:596.546667pt;}
.y7a{bottom:596.866667pt;}
.y110{bottom:600.546667pt;}
.y12d{bottom:601.506667pt;}
.y178{bottom:601.986667pt;}
.ya2{bottom:602.146667pt;}
.ye3{bottom:607.586667pt;}
.y1e6{bottom:608.066667pt;}
.y38{bottom:610.786667pt;}
.ycc{bottom:610.946667pt;}
.y1b9{bottom:613.053333pt;}
.yb5{bottom:616.253333pt;}
.y177{bottom:621.373333pt;}
.y79{bottom:621.533333pt;}
.y15b{bottom:623.293333pt;}
.y109{bottom:624.253333pt;}
.y10f{bottom:626.493333pt;}
.ye2{bottom:626.973333pt;}
.y12f{bottom:628.093333pt;}
.y1e5{bottom:629.213333pt;}
.ycb{bottom:630.333333pt;}
.y1b8{bottom:631.453333pt;}
.y37{bottom:634.653333pt;}
.yb4{bottom:635.613333pt;}
.y176{bottom:638.653333pt;}
.y78{bottom:641.053333pt;}
.y108{bottom:643.613333pt;}
.y5{bottom:645.598667pt;}
.ye1{bottom:646.333333pt;}
.y1e4{bottom:647.773333pt;}
.yca{bottom:649.693333pt;}
.y159{bottom:649.853333pt;}
.y1b7{bottom:650.013333pt;}
.y128{bottom:654.493333pt;}
.yb3{bottom:655.133333pt;}
.y175{bottom:656.413333pt;}
.y36{bottom:658.493333pt;}
.y77{bottom:660.413333pt;}
.y10e{bottom:662.973333pt;}
.ye0{bottom:665.693333pt;}
.y1e3{bottom:666.333333pt;}
.y107{bottom:668.413333pt;}
.y1b6{bottom:668.573333pt;}
.y3{bottom:668.977329pt;}
.y174{bottom:672.573333pt;}
.yb2{bottom:674.493333pt;}
.y15a{bottom:676.253333pt;}
.y35{bottom:677.213333pt;}
.y76{bottom:679.773333pt;}
.y12a{bottom:680.893333pt;}
.y10d{bottom:682.333333pt;}
.ydf{bottom:685.053333pt;}
.y209{bottom:687.133333pt;}
.y1e2{bottom:687.453333pt;}
.y106{bottom:687.773333pt;}
.y1b5{bottom:689.693333pt;}
.yb1{bottom:693.853333pt;}
.y173{bottom:694.013333pt;}
.y34{bottom:695.613333pt;}
.y75{bottom:699.133333pt;}
.y10c{bottom:701.853333pt;}
.y157{bottom:702.813333pt;}
.yde{bottom:704.573333pt;}
.y1e1{bottom:706.013333pt;}
.y105{bottom:707.133333pt;}
.y125{bottom:707.453333pt;}
.y1b4{bottom:708.253333pt;}
.yb0{bottom:713.213333pt;}
.y33{bottom:714.173333pt;}
.y172{bottom:718.173333pt;}
.y74{bottom:718.653333pt;}
.y10b{bottom:721.213333pt;}
.y9e{bottom:723.933333pt;}
.y1e0{bottom:724.413333pt;}
.y104{bottom:726.493333pt;}
.y1b3{bottom:726.813333pt;}
.y158{bottom:729.213333pt;}
.yaf{bottom:732.573333pt;}
.y32{bottom:732.733333pt;}
.y123{bottom:737.693333pt;}
.y73{bottom:738.013333pt;}
.y10a{bottom:740.573333pt;}
.y171{bottom:742.813333pt;}
.y1df{bottom:742.973333pt;}
.y9d{bottom:743.293333pt;}
.y208{bottom:745.213333pt;}
.y103{bottom:745.853333pt;}
.y1b2{bottom:747.933333pt;}
.y31{bottom:751.133333pt;}
.yc9{bottom:754.813333pt;}
.y155{bottom:755.613333pt;}
.y72{bottom:757.373333pt;}
.y9c{bottom:762.653333pt;}
.y207{bottom:763.773333pt;}
.y1de{bottom:764.093333pt;}
.y102{bottom:765.373333pt;}
.y1b1{bottom:766.493333pt;}
.y170{bottom:767.613333pt;}
.y120{bottom:767.933333pt;}
.y30{bottom:769.693333pt;}
.yc8{bottom:774.173333pt;}
.y71{bottom:776.733333pt;}
.y2{bottom:781.661334pt;}
.y9b{bottom:782.173333pt;}
.y1dd{bottom:782.653333pt;}
.y101{bottom:784.733333pt;}
.y1b0{bottom:784.893333pt;}
.y206{bottom:785.373333pt;}
.y2f{bottom:788.253333pt;}
.y154{bottom:789.693333pt;}
.y16f{bottom:792.253333pt;}
.yc7{bottom:793.533333pt;}
.y70{bottom:796.093333pt;}
.y1dc{bottom:801.213333pt;}
.y9a{bottom:801.533333pt;}
.y205{bottom:803.773333pt;}
.y100{bottom:804.093333pt;}
.y1af{bottom:806.173333pt;}
.y2e{bottom:806.813333pt;}
.yc6{bottom:812.893333pt;}
.y6f{bottom:815.613333pt;}
.y151{bottom:816.093333pt;}
.y16e{bottom:817.053333pt;}
.y1db{bottom:819.813333pt;}
.y99{bottom:820.933333pt;}
.y204{bottom:822.373333pt;}
.y1ae{bottom:824.613333pt;}
.y2d{bottom:825.253333pt;}
.yff{bottom:828.933333pt;}
.yc5{bottom:832.293333pt;}
.y6e{bottom:835.013333pt;}
.y98{bottom:840.293333pt;}
.y1da{bottom:840.933333pt;}
.y16d{bottom:841.733333pt;}
.yfa{bottom:842.853333pt;}
.y1ad{bottom:843.173333pt;}
.y2c{bottom:843.813333pt;}
.yc4{bottom:851.653333pt;}
.y6d{bottom:854.373333pt;}
.y1{bottom:859.312000pt;}
.y1d9{bottom:859.493333pt;}
.y97{bottom:859.653333pt;}
.y1ac{bottom:861.733333pt;}
.y203{bottom:862.053333pt;}
.y2b{bottom:862.373333pt;}
.yfe{bottom:866.213333pt;}
.y16c{bottom:866.533333pt;}
.y150{bottom:872.933333pt;}
.y6c{bottom:873.733333pt;}
.yc3{bottom:873.893333pt;}
.y1d8{bottom:877.893333pt;}
.y96{bottom:879.173333pt;}
.y1ab{bottom:880.293333pt;}
.y202{bottom:880.613333pt;}
.y2a{bottom:886.053333pt;}
.yfd{bottom:889.573333pt;}
.y16b{bottom:891.173333pt;}
.y14f{bottom:892.453333pt;}
.y6b{bottom:893.253333pt;}
.y1d7{bottom:896.453333pt;}
.y95{bottom:898.533333pt;}
.y201{bottom:899.173333pt;}
.y1aa{bottom:901.413333pt;}
.y29{bottom:904.613333pt;}
.y14e{bottom:911.813333pt;}
.y6a{bottom:912.613333pt;}
.yfc{bottom:912.773333pt;}
.y16a{bottom:915.973333pt;}
.y94{bottom:917.893333pt;}
.y1d6{bottom:918.533333pt;}
.y1a9{bottom:919.973333pt;}
.y200{bottom:920.293333pt;}
.y28{bottom:923.173333pt;}
.y14d{bottom:931.173333pt;}
.yf9{bottom:936.133333pt;}
.y69{bottom:937.253333pt;}
.y1a8{bottom:938.373333pt;}
.y1d5{bottom:938.853333pt;}
.y169{bottom:940.773333pt;}
.y27{bottom:946.853333pt;}
.y14c{bottom:950.533333pt;}
.y68{bottom:956.773333pt;}
.y1a7{bottom:956.933333pt;}
.y1d4{bottom:957.253333pt;}
.yf7{bottom:959.493333pt;}
.y168{bottom:965.413333pt;}
.y26{bottom:965.573333pt;}
.y14b{bottom:969.893333pt;}
.y1d3{bottom:975.813333pt;}
.y67{bottom:976.133333pt;}
.y1a6{bottom:978.053333pt;}
.y1ff{bottom:978.533333pt;}
.yf5{bottom:982.853333pt;}
.y25{bottom:988.613333pt;}
.y14a{bottom:989.413333pt;}
.y167{bottom:990.213333pt;}
.y66{bottom:995.493333pt;}
.y1a5{bottom:996.613333pt;}
.y1d2{bottom:996.933333pt;}
.yef{bottom:1006.213333pt;}
.y149{bottom:1008.773333pt;}
.y24{bottom:1013.893333pt;}
.y65{bottom:1014.853333pt;}
.y1a4{bottom:1015.493333pt;}
.y148{bottom:1023.333333pt;}
.y22{bottom:1048.000000pt;}
.y21{bottom:1063.520000pt;}
.h1b{height:11.484375pt;}
.h2f{height:15.159375pt;}
.h36{height:19.293750pt;}
.h16{height:21.946667pt;}
.h1a{height:22.546667pt;}
.h18{height:22.706667pt;}
.h28{height:23.346667pt;}
.h33{height:23.360000pt;}
.h26{height:23.506667pt;}
.h20{height:23.520000pt;}
.h2b{height:23.538667pt;}
.h23{height:23.546667pt;}
.h25{height:25.746667pt;}
.h2d{height:25.758667pt;}
.h22{height:25.760000pt;}
.h34{height:25.778667pt;}
.h2c{height:25.792000pt;}
.h2a{height:25.906667pt;}
.h2e{height:25.918667pt;}
.h1f{height:25.920000pt;}
.h14{height:26.398667pt;}
.h15{height:26.558667pt;}
.h12{height:26.592000pt;}
.h10{height:27.179688pt;}
.h7{height:28.560000pt;}
.h1d{height:29.600000pt;}
.h31{height:33.440000pt;}
.h13{height:33.920000pt;}
.h9{height:38.128125pt;}
.h17{height:38.170000pt;}
.h35{height:39.105000pt;}
.h11{height:39.905000pt;}
.hd{height:40.425000pt;}
.h6{height:40.800000pt;}
.h1c{height:41.440000pt;}
.hb{height:41.640000pt;}
.he{height:42.147500pt;}
.hf{height:42.262500pt;}
.h3{height:42.840000pt;}
.hc{height:44.100000pt;}
.h30{height:45.460000pt;}
.ha{height:45.937500pt;}
.h2{height:48.960000pt;}
.h27{height:52.146667pt;}
.h32{height:52.160000pt;}
.h24{height:52.306667pt;}
.h1e{height:52.320000pt;}
.h29{height:52.338667pt;}
.h21{height:52.346667pt;}
.h5{height:69.360000pt;}
.h19{height:92.626667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w7{width:99.698667pt;}
.w6{width:102.270667pt;}
.wa{width:106.098667pt;}
.w8{width:109.440000pt;}
.w9{width:114.432000pt;}
.wb{width:124.026667pt;}
.w18{width:192.506667pt;}
.w17{width:197.986667pt;}
.w13{width:200.853333pt;}
.w12{width:207.226667pt;}
.w11{width:261.665333pt;}
.w16{width:262.737333pt;}
.wd{width:312.857333pt;}
.we{width:344.213333pt;}
.w2{width:566.928019pt;}
.w15{width:654.520000pt;}
.w14{width:655.160000pt;}
.wc{width:658.520000pt;}
.w5{width:659.998667pt;}
.w10{width:671.198667pt;}
.wf{width:671.838667pt;}
.w4{width:793.333333pt;}
.w3{width:793.440000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.306667pt;}
.x1b{left:7.200000pt;}
.x16{left:23.070667pt;}
.x1f{left:24.190667pt;}
.x18{left:32.946667pt;}
.x25{left:37.586667pt;}
.x27{left:38.866667pt;}
.x26{left:41.466667pt;}
.x20{left:44.466667pt;}
.x23{left:45.746667pt;}
.x22{left:48.506667pt;}
.x21{left:51.360000pt;}
.x31{left:53.281333pt;}
.x24{left:57.920000pt;}
.x14{left:59.201333pt;}
.x11{left:60.480000pt;}
.x3f{left:65.105333pt;}
.x45{left:67.546667pt;}
.x3b{left:69.146667pt;}
.x39{left:70.266667pt;}
.x3e{left:71.226667pt;}
.x3d{left:72.186667pt;}
.x3c{left:73.306667pt;}
.x3a{left:74.426667pt;}
.x6{left:75.552000pt;}
.x38{left:77.306667pt;}
.x37{left:78.746667pt;}
.x43{left:82.106667pt;}
.x15{left:84.665333pt;}
.x35{left:86.906667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4a{left:98.272000pt;}
.x48{left:108.512000pt;}
.xe{left:113.312000pt;}
.x29{left:121.425333pt;}
.x8{left:125.952000pt;}
.x2c{left:129.585333pt;}
.x2d{left:132.306667pt;}
.x9{left:144.026667pt;}
.x2e{left:152.346667pt;}
.x7{left:154.106667pt;}
.x17{left:162.600000pt;}
.xb{left:167.706667pt;}
.x2b{left:172.026667pt;}
.x12{left:174.106667pt;}
.x46{left:177.146667pt;}
.x4{left:180.874667pt;}
.x33{left:206.465333pt;}
.x41{left:207.385333pt;}
.x40{left:235.065333pt;}
.x32{left:241.665333pt;}
.x10{left:257.893333pt;}
.x19{left:262.946667pt;}
.x5{left:284.706667pt;}
.x47{left:297.186667pt;}
.xd{left:304.546667pt;}
.xa{left:306.146667pt;}
.x34{left:316.066667pt;}
.xc{left:324.066667pt;}
.x28{left:329.172000pt;}
.x42{left:340.546667pt;}
.x1a{left:373.026667pt;}
.x2a{left:389.066667pt;}
.x3{left:404.408000pt;}
.xf{left:419.453333pt;}
.x2f{left:438.173333pt;}
.x4b{left:441.853333pt;}
.x13{left:452.413333pt;}
.x49{left:457.053333pt;}
.x1c{left:488.106667pt;}
.x36{left:523.946667pt;}
.x44{left:539.173333pt;}
.x1e{left:594.853333pt;}
.x30{left:733.920000pt;}
}




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