
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a9c4c434351e347db9dc069a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4175a437a5904da5e6a59aa5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_258dbd955f7a1462723c29b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_b57868ec6a6471e8e81da6f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972168;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_0e2c5af5cf222949607fe210.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b40dd969ab2a1ea1b189df83.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_55b2c942fda19c1aa4742c53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_a5f4c1cd0666ee05ef44bc3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_826199e11f58d9d31ab12f2b.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-60.480000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.726000px;}
.ls3{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.507000px;}
.lsb{letter-spacing:-0.466800px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.089400px;}
.ls5{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.714000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:16.306560px;}
.lsf{letter-spacing:46.546560px;}
.lsc{letter-spacing:201.024000px;}
.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;}
}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.613000px;}
.wse{word-spacing:-14.400000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.434000px;}
.wsa{word-spacing:-9.732960px;}
.ws1{word-spacing:-9.720000px;}
.wsd{word-spacing:-8.994000px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-3.888960px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:5.178720px;}
._9{width:6.206400px;}
._b{width:7.257600px;}
._e{width:8.369280px;}
._6{width:10.031040px;}
._7{width:11.208480px;}
._f{width:12.525600px;}
._10{width:13.526400px;}
._8{width:16.591680px;}
._c{width:17.890560px;}
._d{width:18.933120px;}
._12{width:20.204640px;}
._11{width:21.288960px;}
._5{width:23.218560px;}
._15{width:29.730240px;}
._16{width:96.914880px;}
._17{width:98.115360px;}
._13{width:185.904000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y90{bottom:2.160000px;}
.y56{bottom:3.235500px;}
.ya5{bottom:3.240000px;}
.y125{bottom:3.585000px;}
.y9c{bottom:3.600000px;}
.y13a{bottom:3.615000px;}
.yba{bottom:3.945000px;}
.ycc{bottom:3.949500px;}
.y128{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y12e{bottom:4.005000px;}
.yaa{bottom:4.320000px;}
.y59{bottom:5.370000px;}
.yde{bottom:5.385000px;}
.yfe{bottom:5.400000px;}
.y13b{bottom:5.415000px;}
.ydc{bottom:5.745000px;}
.ycf{bottom:5.760000px;}
.yda{bottom:5.775000px;}
.ye4{bottom:6.105000px;}
.yd5{bottom:6.120000px;}
.yd1{bottom:6.165000px;}
.ye2{bottom:6.825000px;}
.ye9{bottom:7.185000px;}
.yd7{bottom:7.200000px;}
.yf4{bottom:7.560000px;}
.y2{bottom:7.920000px;}
.yf1{bottom:8.280000px;}
.yec{bottom:8.640000px;}
.y123{bottom:9.705000px;}
.y138{bottom:9.720000px;}
.y114{bottom:10.080000px;}
.y135{bottom:11.895000px;}
.y120{bottom:12.225000px;}
.y111{bottom:12.240000px;}
.y48{bottom:16.915500px;}
.y55{bottom:18.715500px;}
.y136{bottom:20.535000px;}
.y121{bottom:20.865000px;}
.y112{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y134{bottom:29.175000px;}
.y11f{bottom:29.505000px;}
.y110{bottom:29.520000px;}
.y54{bottom:34.234500px;}
.y7a{bottom:34.560000px;}
.y139{bottom:37.815000px;}
.y124{bottom:38.145000px;}
.y115{bottom:38.160000px;}
.y3f{bottom:38.520000px;}
.y3{bottom:44.280000px;}
.y47{bottom:46.474500px;}
.y53{bottom:50.074500px;}
.y3e{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y46{bottom:58.354500px;}
.y52{bottom:67.354500px;}
.y45{bottom:71.674500px;}
.y3d{bottom:73.080000px;}
.y51{bottom:83.194500px;}
.y44{bottom:84.634500px;}
.y3c{bottom:90.405000px;}
.y1b4{bottom:93.996000px;}
.y50{bottom:98.674500px;}
.y12a{bottom:99.760500px;}
.y86{bottom:100.116000px;}
.y57{bottom:102.996000px;}
.y43{bottom:106.234500px;}
.y3b{bottom:107.325000px;}
.y1b3{bottom:111.276000px;}
.y4f{bottom:111.634500px;}
.y85{bottom:117.396000px;}
.y40{bottom:117.400500px;}
.y4e{bottom:117.754500px;}
.y129{bottom:117.760500px;}
.y192{bottom:120.996000px;}
.y3a{bottom:124.605000px;}
.y160{bottom:124.956000px;}
.ycd{bottom:126.396000px;}
.y1b2{bottom:128.556000px;}
.y105{bottom:130.716000px;}
.y4d{bottom:133.594500px;}
.y84{bottom:134.676000px;}
.y127{bottom:135.760500px;}
.y191{bottom:138.276000px;}
.y39{bottom:141.885000px;}
.y15f{bottom:142.272000px;}
.y1b1{bottom:145.872000px;}
.y104{bottom:148.032000px;}
.y4c{bottom:149.434500px;}
.ycb{bottom:149.845500px;}
.y83{bottom:151.995000px;}
.y126{bottom:153.810000px;}
.y190{bottom:155.595000px;}
.y38{bottom:159.165000px;}
.y15e{bottom:159.555000px;}
.y1b0{bottom:163.155000px;}
.y4b{bottom:164.944500px;}
.y103{bottom:165.315000px;}
.yca{bottom:167.850000px;}
.y42{bottom:168.544500px;}
.y82{bottom:169.275000px;}
.y11e{bottom:171.810000px;}
.y18f{bottom:172.875000px;}
.y37{bottom:176.445000px;}
.y15d{bottom:176.475000px;}
.y41{bottom:179.344500px;}
.y102{bottom:179.370000px;}
.y4a{bottom:180.424500px;}
.y1af{bottom:180.435000px;}
.yc9{bottom:185.850000px;}
.y81{bottom:186.195000px;}
.y18e{bottom:190.155000px;}
.y15c{bottom:193.395000px;}
.y36{bottom:193.725000px;}
.y122{bottom:194.130000px;}
.y49{bottom:195.544500px;}
.y1ae{bottom:197.715000px;}
.y101{bottom:200.250000px;}
.y80{bottom:203.115000px;}
.yc8{bottom:203.850000px;}
.y18d{bottom:207.435000px;}
.y35{bottom:211.035000px;}
.y1ad{bottom:214.995000px;}
.yb6{bottom:215.715000px;}
.y100{bottom:220.050000px;}
.y7f{bottom:220.755000px;}
.yc7{bottom:221.850000px;}
.y18c{bottom:224.715000px;}
.y34{bottom:228.315000px;}
.y1ac{bottom:232.275000px;}
.yb5{bottom:232.995000px;}
.y7e{bottom:238.035000px;}
.y21{bottom:239.835000px;}
.yc6{bottom:239.850000px;}
.y18b{bottom:241.995000px;}
.y33{bottom:245.595000px;}
.y1ab{bottom:249.195000px;}
.yb4{bottom:250.275000px;}
.y7d{bottom:254.955000px;}
.y18a{bottom:259.275000px;}
.yff{bottom:259.650000px;}
.yc5{bottom:261.795000px;}
.y32{bottom:262.875000px;}
.y20{bottom:263.955000px;}
.y1aa{bottom:266.475000px;}
.y11d{bottom:268.650000px;}
.y7c{bottom:272.235000px;}
.yc4{bottom:275.505000px;}
.yb3{bottom:276.225000px;}
.yfd{bottom:279.465000px;}
.y31{bottom:280.155000px;}
.y15b{bottom:280.185000px;}
.y1a9{bottom:283.785000px;}
.y11c{bottom:286.665000px;}
.y1f{bottom:288.075000px;}
.y7b{bottom:289.545000px;}
.yb2{bottom:290.625000px;}
.y189{bottom:293.505000px;}
.y30{bottom:297.075000px;}
.y15a{bottom:297.105000px;}
.yfc{bottom:298.905000px;}
.y1a8{bottom:301.065000px;}
.y11b{bottom:304.665000px;}
.yb1{bottom:308.625000px;}
.y188{bottom:310.785000px;}
.y1e{bottom:312.195000px;}
.y79{bottom:312.225000px;}
.y2f{bottom:314.355000px;}
.y159{bottom:314.745000px;}
.y1a7{bottom:318.345000px;}
.y99{bottom:319.065000px;}
.yfb{bottom:322.665000px;}
.y12{bottom:326.265000px;}
.yb0{bottom:326.625000px;}
.y187{bottom:328.065000px;}
.y2e{bottom:331.635000px;}
.y158{bottom:332.025000px;}
.y1a6{bottom:335.625000px;}
.y1d{bottom:336.315000px;}
.y98{bottom:336.345000px;}
.y11a{bottom:340.665000px;}
.yaf{bottom:344.625000px;}
.y186{bottom:345.345000px;}
.yfa{bottom:348.585000px;}
.y2d{bottom:348.945000px;}
.y157{bottom:349.305000px;}
.y1a5{bottom:352.905000px;}
.y97{bottom:353.625000px;}
.y119{bottom:358.665000px;}
.y1c{bottom:360.465000px;}
.yae{bottom:362.625000px;}
.yf9{bottom:362.985000px;}
.y2c{bottom:366.225000px;}
.y1a4{bottom:370.185000px;}
.y96{bottom:370.905000px;}
.y118{bottom:376.665000px;}
.y185{bottom:379.905000px;}
.yad{bottom:380.625000px;}
.y156{bottom:383.145000px;}
.y2b{bottom:383.505000px;}
.yf8{bottom:384.585000px;}
.y1b{bottom:384.945000px;}
.y1a3{bottom:387.465000px;}
.y95{bottom:388.185000px;}
.y117{bottom:394.665000px;}
.y184{bottom:397.185000px;}
.y2a{bottom:400.425000px;}
.y155{bottom:400.785000px;}
.yac{bottom:402.585000px;}
.y1a2{bottom:404.745000px;}
.y94{bottom:405.510000px;}
.yf7{bottom:406.590000px;}
.y1a{bottom:409.065000px;}
.y116{bottom:412.710000px;}
.y183{bottom:414.510000px;}
.y154{bottom:418.110000px;}
.y1a1{bottom:422.070000px;}
.y93{bottom:422.430000px;}
.yab{bottom:425.670000px;}
.y29{bottom:426.345000px;}
.yf6{bottom:428.190000px;}
.y10f{bottom:430.710000px;}
.y182{bottom:431.790000px;}
.y19{bottom:433.185000px;}
.y153{bottom:435.390000px;}
.y1a0{bottom:439.350000px;}
.y92{bottom:439.710000px;}
.y28{bottom:441.825000px;}
.ya9{bottom:443.670000px;}
.y181{bottom:449.070000px;}
.yf5{bottom:450.150000px;}
.y113{bottom:452.670000px;}
.y19f{bottom:456.270000px;}
.y18{bottom:457.305000px;}
.y91{bottom:457.350000px;}
.ya8{bottom:462.390000px;}
.y180{bottom:466.350000px;}
.y152{bottom:469.590000px;}
.y8f{bottom:471.390000px;}
.yf3{bottom:471.750000px;}
.y27{bottom:472.785000px;}
.y19e{bottom:473.550000px;}
.ya7{bottom:480.390000px;}
.y17{bottom:481.470000px;}
.y17f{bottom:483.270000px;}
.y10e{bottom:487.230000px;}
.y26{bottom:488.670000px;}
.y19d{bottom:490.830000px;}
.yf2{bottom:497.310000px;}
.ya6{bottom:498.390000px;}
.y17e{bottom:500.550000px;}
.y25{bottom:504.150000px;}
.y10d{bottom:504.510000px;}
.y16{bottom:505.590000px;}
.y19c{bottom:507.750000px;}
.ya4{bottom:516.390000px;}
.y17d{bottom:517.830000px;}
.y24{bottom:519.630000px;}
.yf0{bottom:520.710000px;}
.y151{bottom:521.790000px;}
.y15{bottom:529.710000px;}
.y10c{bottom:530.790000px;}
.y19b{bottom:534.390000px;}
.y23{bottom:535.110000px;}
.ya3{bottom:538.020000px;}
.y150{bottom:539.100000px;}
.yef{bottom:543.060000px;}
.y10b{bottom:547.740000px;}
.y19a{bottom:551.700000px;}
.y17c{bottom:552.420000px;}
.y14{bottom:553.830000px;}
.ya2{bottom:555.300000px;}
.y14f{bottom:556.020000px;}
.y10a{bottom:565.020000px;}
.y22{bottom:565.710000px;}
.yee{bottom:565.740000px;}
.y199{bottom:568.980000px;}
.ya1{bottom:569.340000px;}
.y17b{bottom:569.700000px;}
.y14e{bottom:573.300000px;}
.y13{bottom:577.950000px;}
.y78{bottom:577.980000px;}
.y109{bottom:581.940000px;}
.y198{bottom:586.260000px;}
.y17a{bottom:586.980000px;}
.ya0{bottom:587.340000px;}
.yed{bottom:588.420000px;}
.y14d{bottom:590.580000px;}
.y77{bottom:595.260000px;}
.y108{bottom:595.980000px;}
.y197{bottom:603.540000px;}
.y179{bottom:604.260000px;}
.y9f{bottom:605.340000px;}
.y14c{bottom:607.860000px;}
.yc3{bottom:611.100000px;}
.y76{bottom:612.540000px;}
.y196{bottom:620.460000px;}
.y178{bottom:621.540000px;}
.y9e{bottom:623.340000px;}
.y14b{bottom:625.140000px;}
.yc2{bottom:628.020000px;}
.y75{bottom:629.820000px;}
.yeb{bottom:633.780000px;}
.y177{bottom:638.820000px;}
.y9d{bottom:641.340000px;}
.y14a{bottom:642.420000px;}
.yc1{bottom:645.300000px;}
.y74{bottom:647.100000px;}
.y176{bottom:655.740000px;}
.y1b6{bottom:656.100000px;}
.y9b{bottom:659.340000px;}
.yea{bottom:660.420000px;}
.yc0{bottom:662.580000px;}
.y73{bottom:664.020000px;}
.y175{bottom:673.050000px;}
.y149{bottom:677.010000px;}
.ybf{bottom:679.890000px;}
.y72{bottom:681.330000px;}
.ye8{bottom:683.505000px;}
.y174{bottom:690.330000px;}
.y148{bottom:694.290000px;}
.ybe{bottom:696.810000px;}
.y71{bottom:698.610000px;}
.y9a{bottom:703.650000px;}
.ye7{bottom:704.745000px;}
.y173{bottom:707.610000px;}
.ybd{bottom:711.225000px;}
.y147{bottom:711.570000px;}
.y70{bottom:715.890000px;}
.y172{bottom:724.890000px;}
.ye6{bottom:724.905000px;}
.y146{bottom:728.850000px;}
.ybc{bottom:729.225000px;}
.y6f{bottom:733.170000px;}
.y171{bottom:742.170000px;}
.ye5{bottom:745.065000px;}
.y145{bottom:745.770000px;}
.ybb{bottom:747.225000px;}
.y6e{bottom:750.450000px;}
.y170{bottom:759.450000px;}
.yb9{bottom:765.225000px;}
.y6d{bottom:767.730000px;}
.y144{bottom:769.185000px;}
.y16f{bottom:776.730000px;}
.y6c{bottom:785.010000px;}
.ye3{bottom:785.385000px;}
.yb8{bottom:787.170000px;}
.y143{bottom:787.185000px;}
.y16e{bottom:793.650000px;}
.y1b5{bottom:794.010000px;}
.y8e{bottom:801.975000px;}
.y6b{bottom:802.335000px;}
.y142{bottom:805.230000px;}
.yb7{bottom:809.535000px;}
.y16d{bottom:811.335000px;}
.y8d{bottom:819.255000px;}
.y6a{bottom:819.615000px;}
.y141{bottom:823.230000px;}
.y16c{bottom:828.615000px;}
.ye1{bottom:832.590000px;}
.y69{bottom:836.895000px;}
.y140{bottom:841.230000px;}
.y16b{bottom:845.895000px;}
.ye0{bottom:853.470000px;}
.y195{bottom:853.815000px;}
.y68{bottom:854.175000px;}
.y13f{bottom:859.230000px;}
.y16a{bottom:863.175000px;}
.y67{bottom:871.095000px;}
.ydf{bottom:873.270000px;}
.y13e{bottom:877.230000px;}
.y169{bottom:880.095000px;}
.y8c{bottom:888.015000px;}
.y66{bottom:888.375000px;}
.ydd{bottom:893.070000px;}
.y13d{bottom:895.230000px;}
.y168{bottom:897.375000px;}
.y65{bottom:905.655000px;}
.ydb{bottom:912.510000px;}
.y13c{bottom:913.230000px;}
.y167{bottom:914.295000px;}
.y194{bottom:914.655000px;}
.y11{bottom:916.455000px;}
.y10{bottom:921.855000px;}
.y64{bottom:922.935000px;}
.y133{bottom:931.230000px;}
.y166{bottom:931.575000px;}
.y193{bottom:931.935000px;}
.yd9{bottom:932.310000px;}
.y63{bottom:940.245000px;}
.yf{bottom:946.005000px;}
.y165{bottom:949.245000px;}
.y137{bottom:953.205000px;}
.yd8{bottom:956.085000px;}
.ye{bottom:956.445000px;}
.y8b{bottom:957.165000px;}
.y62{bottom:957.525000px;}
.y164{bottom:966.525000px;}
.y61{bottom:974.805000px;}
.yd6{bottom:979.125000px;}
.yd{bottom:980.565000px;}
.y163{bottom:983.805000px;}
.y132{bottom:987.405000px;}
.yc{bottom:990.645000px;}
.y60{bottom:992.085000px;}
.yd4{bottom:1000.365000px;}
.y162{bottom:1001.085000px;}
.y131{bottom:1004.685000px;}
.y8a{bottom:1009.005000px;}
.y5f{bottom:1009.365000px;}
.yb{bottom:1009.725000px;}
.y161{bottom:1018.005000px;}
.y107{bottom:1018.365000px;}
.yd3{bottom:1020.525000px;}
.y89{bottom:1026.285000px;}
.y5e{bottom:1026.645000px;}
.y130{bottom:1027.725000px;}
.ya{bottom:1034.205000px;}
.y106{bottom:1035.645000px;}
.yd2{bottom:1040.685000px;}
.y5d{bottom:1043.565000px;}
.y12f{bottom:1045.725000px;}
.y88{bottom:1052.925000px;}
.y9{bottom:1058.685000px;}
.yd0{bottom:1060.485000px;}
.y12d{bottom:1063.725000px;}
.y5c{bottom:1069.890000px;}
.yce{bottom:1080.690000px;}
.y12c{bottom:1081.770000px;}
.y8{bottom:1086.450000px;}
.y5b{bottom:1087.170000px;}
.y58{bottom:1089.720000px;}
.y12b{bottom:1099.770000px;}
.y87{bottom:1104.090000px;}
.y5a{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hd{height:4.165313px;}
.h17{height:5.650313px;}
.h20{height:16.905000px;}
.h22{height:17.265000px;}
.h24{height:17.266500px;}
.h39{height:17.275500px;}
.h1f{height:17.280000px;}
.h3c{height:17.301000px;}
.h35{height:17.310000px;}
.h38{height:17.311500px;}
.h1e{height:17.316000px;}
.h21{height:17.625000px;}
.h2a{height:18.705000px;}
.h32{height:18.720000px;}
.h25{height:19.065000px;}
.h29{height:19.080000px;}
.h27{height:19.425000px;}
.h2c{height:19.461000px;}
.h26{height:19.470000px;}
.h2b{height:20.145000px;}
.h28{height:20.505000px;}
.h2f{height:20.865000px;}
.h30{height:21.225000px;}
.h3b{height:21.240000px;}
.h31{height:21.270000px;}
.h37{height:21.585000px;}
.h2e{height:21.630000px;}
.h2d{height:21.960000px;}
.h18{height:27.720000px;}
.h36{height:29.505000px;}
.h15{height:29.678906px;}
.h34{height:29.865000px;}
.h6{height:30.077578px;}
.h14{height:35.332031px;}
.hb{height:38.158594px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.h12{height:42.229688px;}
.h3a{height:51.480000px;}
.h33{height:51.825000px;}
.h11{height:53.677969px;}
.h16{height:55.147500px;}
.h7{height:58.050000px;}
.h1b{height:59.328281px;}
.h5{height:59.357813px;}
.hc{height:60.952500px;}
.h3d{height:62.163910px;}
.h19{height:63.455625px;}
.h8{height:63.577969px;}
.h9{height:64.067344px;}
.h1d{height:65.518594px;}
.h23{height:65.698594px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h13{height:208.125000px;}
.h1a{height:252.795000px;}
.h1c{height:257.115000px;}
.he{height:587.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3f{width:47.902500px;}
.w11{width:59.745000px;}
.w1e{width:60.465000px;}
.w19{width:63.360000px;}
.wb{width:65.145000px;}
.w10{width:65.880000px;}
.w22{width:66.937500px;}
.wc{width:66.945000px;}
.w27{width:67.657500px;}
.w2c{width:69.097500px;}
.w31{width:69.457500px;}
.w36{width:70.177500px;}
.w3b{width:71.662500px;}
.w16{width:72.030000px;}
.w15{width:74.160000px;}
.w46{width:100.440000px;}
.w45{width:100.461000px;}
.w44{width:100.470000px;}
.w43{width:100.830000px;}
.w2{width:103.702500px;}
.wf{width:104.760000px;}
.w41{width:107.310000px;}
.w23{width:108.045000px;}
.w1d{width:108.720000px;}
.w28{width:109.845000px;}
.w1c{width:111.621000px;}
.w2d{width:111.645000px;}
.w32{width:112.005000px;}
.w37{width:113.085000px;}
.w1b{width:123.192000px;}
.w18{width:127.440000px;}
.w13{width:127.476000px;}
.wd{width:127.512000px;}
.w40{width:127.800000px;}
.w20{width:130.392000px;}
.w21{width:131.760000px;}
.w4{width:132.502500px;}
.w17{width:134.310000px;}
.w12{width:134.712000px;}
.w24{width:138.630000px;}
.w25{width:138.672000px;}
.w26{width:139.320000px;}
.w29{width:140.070000px;}
.w2a{width:140.112000px;}
.w2b{width:141.480000px;}
.w2e{width:142.590000px;}
.w2f{width:142.992000px;}
.w30{width:143.640000px;}
.w33{width:143.670000px;}
.w34{width:143.712000px;}
.w38{width:144.750000px;}
.w39{width:144.792000px;}
.w35{width:145.125000px;}
.w3a{width:146.205000px;}
.w1a{width:154.470000px;}
.w3e{width:162.045000px;}
.w6{width:163.080000px;}
.w14{width:164.925000px;}
.w1f{width:185.835000px;}
.w3d{width:199.875000px;}
.w3c{width:199.890000px;}
.we{width:213.915000px;}
.w42{width:302.880000px;}
.w7{width:316.935000px;}
.wa{width:317.655000px;}
.w9{width:337.095000px;}
.w8{width:348.255000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x19{left:8.266500px;}
.x5d{left:9.345000px;}
.x2f{left:10.425000px;}
.x35{left:12.225000px;}
.x4{left:13.305000px;}
.x16{left:14.386500px;}
.x44{left:16.200000px;}
.x31{left:17.280000px;}
.x1d{left:18.346500px;}
.x5{left:19.425000px;}
.x18{left:20.866500px;}
.x36{left:21.960000px;}
.x48{left:23.385000px;}
.x46{left:24.840000px;}
.x17{left:26.266500px;}
.x53{left:27.705000px;}
.x1f{left:29.146500px;}
.x6d{left:30.940500px;}
.x7d{left:32.065500px;}
.x49{left:33.105000px;}
.x3e{left:34.950000px;}
.x4f{left:36.000000px;}
.x62{left:38.535000px;}
.x6a{left:40.335000px;}
.x55{left:42.465000px;}
.x11{left:43.906500px;}
.x78{left:45.015000px;}
.x54{left:46.065000px;}
.x1e{left:47.542500px;}
.x38{left:48.615000px;}
.x6{left:50.055000px;}
.x37{left:51.525000px;}
.x40{left:53.325000px;}
.x10{left:55.102500px;}
.x3f{left:56.925000px;}
.x15{left:57.982500px;}
.x4a{left:59.745000px;}
.x68{left:60.870000px;}
.x1b{left:62.295000px;}
.x77{left:63.735000px;}
.x20{left:66.265500px;}
.x71{left:68.415000px;}
.x7e{left:77.055000px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x14{left:88.945500px;}
.x13{left:90.025500px;}
.x39{left:93.630000px;}
.x2{left:95.425500px;}
.x80{left:96.516000px;}
.x85{left:98.310000px;}
.xb{left:102.276000px;}
.x1c{left:106.945500px;}
.x23{left:114.169500px;}
.x27{left:118.849500px;}
.x12{left:124.585500px;}
.x2d{left:127.116000px;}
.x7a{left:128.929500px;}
.x79{left:131.436000px;}
.x73{left:135.814500px;}
.x6e{left:137.974500px;}
.x22{left:140.472000px;}
.x65{left:145.534500px;}
.x60{left:149.494500px;}
.x82{left:150.570000px;}
.x2e{left:155.970000px;}
.x58{left:159.210000px;}
.x4d{left:164.610000px;}
.x3a{left:168.930000px;}
.x41{left:177.570000px;}
.x4c{left:180.435000px;}
.x3{left:182.250000px;}
.x72{left:186.195000px;}
.x57{left:187.995000px;}
.x7b{left:201.330000px;}
.x74{left:206.730000px;}
.x6f{left:208.530000px;}
.x69{left:209.970000px;}
.x66{left:213.930000px;}
.x61{left:217.170000px;}
.x1a{left:218.970000px;}
.x30{left:221.865000px;}
.x59{left:223.305000px;}
.x4e{left:228.705000px;}
.x3b{left:235.545000px;}
.x42{left:252.465000px;}
.x83{left:279.105000px;}
.x2b{left:282.345000px;}
.x5a{left:284.505000px;}
.x32{left:289.545000px;}
.x3c{left:296.025000px;}
.x24{left:308.650500px;}
.x2a{left:309.750000px;}
.x75{left:320.550000px;}
.x6b{left:322.350000px;}
.x43{left:325.230000px;}
.x28{left:329.170500px;}
.x26{left:339.630000px;}
.x81{left:356.550000px;}
.xa{left:381.030000px;}
.x50{left:383.910000px;}
.x84{left:387.150000px;}
.x7c{left:401.940000px;}
.xd{left:405.900000px;}
.x33{left:417.780000px;}
.x25{left:431.100000px;}
.x5e{left:446.580000px;}
.x29{left:457.020000px;}
.x45{left:460.260000px;}
.x63{left:465.300000px;}
.x5b{left:471.420000px;}
.x87{left:488.385000px;}
.x51{left:507.825000px;}
.x3d{left:559.665000px;}
.xc{left:562.890000px;}
.xe{left:574.050000px;}
.x47{left:588.510000px;}
.x88{left:589.590000px;}
.x5c{left:602.550000px;}
.x64{left:604.710000px;}
.x67{left:606.510000px;}
.x6c{left:609.390000px;}
.x70{left:610.470000px;}
.x76{left:611.550000px;}
.x52{left:620.190000px;}
.x34{left:632.430000px;}
.x86{left:690.765000px;}
.x2c{left:736.845000px;}
.x4b{left:756.330000px;}
.x9{left:766.050000px;}
.x7f{left:769.650000px;}
.x56{left:772.890000px;}
.x5f{left:791.970000px;}
.x8{left:799.530000px;}
.xf{left:807.090000px;}
@media print{
.v3{vertical-align:-53.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.645333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.450667pt;}
.lsb{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.634667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:14.494720pt;}
.lsf{letter-spacing:41.374720pt;}
.lsc{letter-spacing:178.688000pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.025067pt;}
.wsc{word-spacing:-12.989333pt;}
.wse{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.274667pt;}
.wsa{word-spacing:-8.651520pt;}
.ws1{word-spacing:-8.640000pt;}
.wsd{word-spacing:-7.994667pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-3.456853pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.603307pt;}
._9{width:5.516800pt;}
._b{width:6.451200pt;}
._e{width:7.439360pt;}
._6{width:8.916480pt;}
._7{width:9.963093pt;}
._f{width:11.133867pt;}
._10{width:12.023467pt;}
._8{width:14.748160pt;}
._c{width:15.902720pt;}
._d{width:16.829440pt;}
._12{width:17.959680pt;}
._11{width:18.923520pt;}
._5{width:20.638720pt;}
._15{width:26.426880pt;}
._16{width:86.146560pt;}
._17{width:87.213653pt;}
._13{width:165.248000pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:1.920000pt;}
.y56{bottom:2.876000pt;}
.ya5{bottom:2.880000pt;}
.y125{bottom:3.186667pt;}
.y9c{bottom:3.200000pt;}
.y13a{bottom:3.213333pt;}
.yba{bottom:3.506667pt;}
.ycc{bottom:3.510667pt;}
.y128{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y12e{bottom:3.560000pt;}
.yaa{bottom:3.840000pt;}
.y59{bottom:4.773333pt;}
.yde{bottom:4.786667pt;}
.yfe{bottom:4.800000pt;}
.y13b{bottom:4.813333pt;}
.ydc{bottom:5.106667pt;}
.ycf{bottom:5.120000pt;}
.yda{bottom:5.133333pt;}
.ye4{bottom:5.426667pt;}
.yd5{bottom:5.440000pt;}
.yd1{bottom:5.480000pt;}
.ye2{bottom:6.066667pt;}
.ye9{bottom:6.386667pt;}
.yd7{bottom:6.400000pt;}
.yf4{bottom:6.720000pt;}
.y2{bottom:7.040000pt;}
.yf1{bottom:7.360000pt;}
.yec{bottom:7.680000pt;}
.y123{bottom:8.626667pt;}
.y138{bottom:8.640000pt;}
.y114{bottom:8.960000pt;}
.y135{bottom:10.573333pt;}
.y120{bottom:10.866667pt;}
.y111{bottom:10.880000pt;}
.y48{bottom:15.036000pt;}
.y55{bottom:16.636000pt;}
.y136{bottom:18.253333pt;}
.y121{bottom:18.546667pt;}
.y112{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y134{bottom:25.933333pt;}
.y11f{bottom:26.226667pt;}
.y110{bottom:26.240000pt;}
.y54{bottom:30.430667pt;}
.y7a{bottom:30.720000pt;}
.y139{bottom:33.613333pt;}
.y124{bottom:33.906667pt;}
.y115{bottom:33.920000pt;}
.y3f{bottom:34.240000pt;}
.y3{bottom:39.360000pt;}
.y47{bottom:41.310667pt;}
.y53{bottom:44.510667pt;}
.y3e{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y46{bottom:51.870667pt;}
.y52{bottom:59.870667pt;}
.y45{bottom:63.710667pt;}
.y3d{bottom:64.960000pt;}
.y51{bottom:73.950667pt;}
.y44{bottom:75.230667pt;}
.y3c{bottom:80.360000pt;}
.y1b4{bottom:83.552000pt;}
.y50{bottom:87.710667pt;}
.y12a{bottom:88.676000pt;}
.y86{bottom:88.992000pt;}
.y57{bottom:91.552000pt;}
.y43{bottom:94.430667pt;}
.y3b{bottom:95.400000pt;}
.y1b3{bottom:98.912000pt;}
.y4f{bottom:99.230667pt;}
.y85{bottom:104.352000pt;}
.y40{bottom:104.356000pt;}
.y4e{bottom:104.670667pt;}
.y129{bottom:104.676000pt;}
.y192{bottom:107.552000pt;}
.y3a{bottom:110.760000pt;}
.y160{bottom:111.072000pt;}
.ycd{bottom:112.352000pt;}
.y1b2{bottom:114.272000pt;}
.y105{bottom:116.192000pt;}
.y4d{bottom:118.750667pt;}
.y84{bottom:119.712000pt;}
.y127{bottom:120.676000pt;}
.y191{bottom:122.912000pt;}
.y39{bottom:126.120000pt;}
.y15f{bottom:126.464000pt;}
.y1b1{bottom:129.664000pt;}
.y104{bottom:131.584000pt;}
.y4c{bottom:132.830667pt;}
.ycb{bottom:133.196000pt;}
.y83{bottom:135.106667pt;}
.y126{bottom:136.720000pt;}
.y190{bottom:138.306667pt;}
.y38{bottom:141.480000pt;}
.y15e{bottom:141.826667pt;}
.y1b0{bottom:145.026667pt;}
.y4b{bottom:146.617333pt;}
.y103{bottom:146.946667pt;}
.yca{bottom:149.200000pt;}
.y42{bottom:149.817333pt;}
.y82{bottom:150.466667pt;}
.y11e{bottom:152.720000pt;}
.y18f{bottom:153.666667pt;}
.y37{bottom:156.840000pt;}
.y15d{bottom:156.866667pt;}
.y41{bottom:159.417333pt;}
.y102{bottom:159.440000pt;}
.y4a{bottom:160.377333pt;}
.y1af{bottom:160.386667pt;}
.yc9{bottom:165.200000pt;}
.y81{bottom:165.506667pt;}
.y18e{bottom:169.026667pt;}
.y15c{bottom:171.906667pt;}
.y36{bottom:172.200000pt;}
.y122{bottom:172.560000pt;}
.y49{bottom:173.817333pt;}
.y1ae{bottom:175.746667pt;}
.y101{bottom:178.000000pt;}
.y80{bottom:180.546667pt;}
.yc8{bottom:181.200000pt;}
.y18d{bottom:184.386667pt;}
.y35{bottom:187.586667pt;}
.y1ad{bottom:191.106667pt;}
.yb6{bottom:191.746667pt;}
.y100{bottom:195.600000pt;}
.y7f{bottom:196.226667pt;}
.yc7{bottom:197.200000pt;}
.y18c{bottom:199.746667pt;}
.y34{bottom:202.946667pt;}
.y1ac{bottom:206.466667pt;}
.yb5{bottom:207.106667pt;}
.y7e{bottom:211.586667pt;}
.y21{bottom:213.186667pt;}
.yc6{bottom:213.200000pt;}
.y18b{bottom:215.106667pt;}
.y33{bottom:218.306667pt;}
.y1ab{bottom:221.506667pt;}
.yb4{bottom:222.466667pt;}
.y7d{bottom:226.626667pt;}
.y18a{bottom:230.466667pt;}
.yff{bottom:230.800000pt;}
.yc5{bottom:232.706667pt;}
.y32{bottom:233.666667pt;}
.y20{bottom:234.626667pt;}
.y1aa{bottom:236.866667pt;}
.y11d{bottom:238.800000pt;}
.y7c{bottom:241.986667pt;}
.yc4{bottom:244.893333pt;}
.yb3{bottom:245.533333pt;}
.yfd{bottom:248.413333pt;}
.y31{bottom:249.026667pt;}
.y15b{bottom:249.053333pt;}
.y1a9{bottom:252.253333pt;}
.y11c{bottom:254.813333pt;}
.y1f{bottom:256.066667pt;}
.y7b{bottom:257.373333pt;}
.yb2{bottom:258.333333pt;}
.y189{bottom:260.893333pt;}
.y30{bottom:264.066667pt;}
.y15a{bottom:264.093333pt;}
.yfc{bottom:265.693333pt;}
.y1a8{bottom:267.613333pt;}
.y11b{bottom:270.813333pt;}
.yb1{bottom:274.333333pt;}
.y188{bottom:276.253333pt;}
.y1e{bottom:277.506667pt;}
.y79{bottom:277.533333pt;}
.y2f{bottom:279.426667pt;}
.y159{bottom:279.773333pt;}
.y1a7{bottom:282.973333pt;}
.y99{bottom:283.613333pt;}
.yfb{bottom:286.813333pt;}
.y12{bottom:290.013333pt;}
.yb0{bottom:290.333333pt;}
.y187{bottom:291.613333pt;}
.y2e{bottom:294.786667pt;}
.y158{bottom:295.133333pt;}
.y1a6{bottom:298.333333pt;}
.y1d{bottom:298.946667pt;}
.y98{bottom:298.973333pt;}
.y11a{bottom:302.813333pt;}
.yaf{bottom:306.333333pt;}
.y186{bottom:306.973333pt;}
.yfa{bottom:309.853333pt;}
.y2d{bottom:310.173333pt;}
.y157{bottom:310.493333pt;}
.y1a5{bottom:313.693333pt;}
.y97{bottom:314.333333pt;}
.y119{bottom:318.813333pt;}
.y1c{bottom:320.413333pt;}
.yae{bottom:322.333333pt;}
.yf9{bottom:322.653333pt;}
.y2c{bottom:325.533333pt;}
.y1a4{bottom:329.053333pt;}
.y96{bottom:329.693333pt;}
.y118{bottom:334.813333pt;}
.y185{bottom:337.693333pt;}
.yad{bottom:338.333333pt;}
.y156{bottom:340.573333pt;}
.y2b{bottom:340.893333pt;}
.yf8{bottom:341.853333pt;}
.y1b{bottom:342.173333pt;}
.y1a3{bottom:344.413333pt;}
.y95{bottom:345.053333pt;}
.y117{bottom:350.813333pt;}
.y184{bottom:353.053333pt;}
.y2a{bottom:355.933333pt;}
.y155{bottom:356.253333pt;}
.yac{bottom:357.853333pt;}
.y1a2{bottom:359.773333pt;}
.y94{bottom:360.453333pt;}
.yf7{bottom:361.413333pt;}
.y1a{bottom:363.613333pt;}
.y116{bottom:366.853333pt;}
.y183{bottom:368.453333pt;}
.y154{bottom:371.653333pt;}
.y1a1{bottom:375.173333pt;}
.y93{bottom:375.493333pt;}
.yab{bottom:378.373333pt;}
.y29{bottom:378.973333pt;}
.yf6{bottom:380.613333pt;}
.y10f{bottom:382.853333pt;}
.y182{bottom:383.813333pt;}
.y19{bottom:385.053333pt;}
.y153{bottom:387.013333pt;}
.y1a0{bottom:390.533333pt;}
.y92{bottom:390.853333pt;}
.y28{bottom:392.733333pt;}
.ya9{bottom:394.373333pt;}
.y181{bottom:399.173333pt;}
.yf5{bottom:400.133333pt;}
.y113{bottom:402.373333pt;}
.y19f{bottom:405.573333pt;}
.y18{bottom:406.493333pt;}
.y91{bottom:406.533333pt;}
.ya8{bottom:411.013333pt;}
.y180{bottom:414.533333pt;}
.y152{bottom:417.413333pt;}
.y8f{bottom:419.013333pt;}
.yf3{bottom:419.333333pt;}
.y27{bottom:420.253333pt;}
.y19e{bottom:420.933333pt;}
.ya7{bottom:427.013333pt;}
.y17{bottom:427.973333pt;}
.y17f{bottom:429.573333pt;}
.y10e{bottom:433.093333pt;}
.y26{bottom:434.373333pt;}
.y19d{bottom:436.293333pt;}
.yf2{bottom:442.053333pt;}
.ya6{bottom:443.013333pt;}
.y17e{bottom:444.933333pt;}
.y25{bottom:448.133333pt;}
.y10d{bottom:448.453333pt;}
.y16{bottom:449.413333pt;}
.y19c{bottom:451.333333pt;}
.ya4{bottom:459.013333pt;}
.y17d{bottom:460.293333pt;}
.y24{bottom:461.893333pt;}
.yf0{bottom:462.853333pt;}
.y151{bottom:463.813333pt;}
.y15{bottom:470.853333pt;}
.y10c{bottom:471.813333pt;}
.y19b{bottom:475.013333pt;}
.y23{bottom:475.653333pt;}
.ya3{bottom:478.240000pt;}
.y150{bottom:479.200000pt;}
.yef{bottom:482.720000pt;}
.y10b{bottom:486.880000pt;}
.y19a{bottom:490.400000pt;}
.y17c{bottom:491.040000pt;}
.y14{bottom:492.293333pt;}
.ya2{bottom:493.600000pt;}
.y14f{bottom:494.240000pt;}
.y10a{bottom:502.240000pt;}
.y22{bottom:502.853333pt;}
.yee{bottom:502.880000pt;}
.y199{bottom:505.760000pt;}
.ya1{bottom:506.080000pt;}
.y17b{bottom:506.400000pt;}
.y14e{bottom:509.600000pt;}
.y13{bottom:513.733333pt;}
.y78{bottom:513.760000pt;}
.y109{bottom:517.280000pt;}
.y198{bottom:521.120000pt;}
.y17a{bottom:521.760000pt;}
.ya0{bottom:522.080000pt;}
.yed{bottom:523.040000pt;}
.y14d{bottom:524.960000pt;}
.y77{bottom:529.120000pt;}
.y108{bottom:529.760000pt;}
.y197{bottom:536.480000pt;}
.y179{bottom:537.120000pt;}
.y9f{bottom:538.080000pt;}
.y14c{bottom:540.320000pt;}
.yc3{bottom:543.200000pt;}
.y76{bottom:544.480000pt;}
.y196{bottom:551.520000pt;}
.y178{bottom:552.480000pt;}
.y9e{bottom:554.080000pt;}
.y14b{bottom:555.680000pt;}
.yc2{bottom:558.240000pt;}
.y75{bottom:559.840000pt;}
.yeb{bottom:563.360000pt;}
.y177{bottom:567.840000pt;}
.y9d{bottom:570.080000pt;}
.y14a{bottom:571.040000pt;}
.yc1{bottom:573.600000pt;}
.y74{bottom:575.200000pt;}
.y176{bottom:582.880000pt;}
.y1b6{bottom:583.200000pt;}
.y9b{bottom:586.080000pt;}
.yea{bottom:587.040000pt;}
.yc0{bottom:588.960000pt;}
.y73{bottom:590.240000pt;}
.y175{bottom:598.266667pt;}
.y149{bottom:601.786667pt;}
.ybf{bottom:604.346667pt;}
.y72{bottom:605.626667pt;}
.ye8{bottom:607.560000pt;}
.y174{bottom:613.626667pt;}
.y148{bottom:617.146667pt;}
.ybe{bottom:619.386667pt;}
.y71{bottom:620.986667pt;}
.y9a{bottom:625.466667pt;}
.ye7{bottom:626.440000pt;}
.y173{bottom:628.986667pt;}
.ybd{bottom:632.200000pt;}
.y147{bottom:632.506667pt;}
.y70{bottom:636.346667pt;}
.y172{bottom:644.346667pt;}
.ye6{bottom:644.360000pt;}
.y146{bottom:647.866667pt;}
.ybc{bottom:648.200000pt;}
.y6f{bottom:651.706667pt;}
.y171{bottom:659.706667pt;}
.ye5{bottom:662.280000pt;}
.y145{bottom:662.906667pt;}
.ybb{bottom:664.200000pt;}
.y6e{bottom:667.066667pt;}
.y170{bottom:675.066667pt;}
.yb9{bottom:680.200000pt;}
.y6d{bottom:682.426667pt;}
.y144{bottom:683.720000pt;}
.y16f{bottom:690.426667pt;}
.y6c{bottom:697.786667pt;}
.ye3{bottom:698.120000pt;}
.yb8{bottom:699.706667pt;}
.y143{bottom:699.720000pt;}
.y16e{bottom:705.466667pt;}
.y1b5{bottom:705.786667pt;}
.y8e{bottom:712.866667pt;}
.y6b{bottom:713.186667pt;}
.y142{bottom:715.760000pt;}
.yb7{bottom:719.586667pt;}
.y16d{bottom:721.186667pt;}
.y8d{bottom:728.226667pt;}
.y6a{bottom:728.546667pt;}
.y141{bottom:731.760000pt;}
.y16c{bottom:736.546667pt;}
.ye1{bottom:740.080000pt;}
.y69{bottom:743.906667pt;}
.y140{bottom:747.760000pt;}
.y16b{bottom:751.906667pt;}
.ye0{bottom:758.640000pt;}
.y195{bottom:758.946667pt;}
.y68{bottom:759.266667pt;}
.y13f{bottom:763.760000pt;}
.y16a{bottom:767.266667pt;}
.y67{bottom:774.306667pt;}
.ydf{bottom:776.240000pt;}
.y13e{bottom:779.760000pt;}
.y169{bottom:782.306667pt;}
.y8c{bottom:789.346667pt;}
.y66{bottom:789.666667pt;}
.ydd{bottom:793.840000pt;}
.y13d{bottom:795.760000pt;}
.y168{bottom:797.666667pt;}
.y65{bottom:805.026667pt;}
.ydb{bottom:811.120000pt;}
.y13c{bottom:811.760000pt;}
.y167{bottom:812.706667pt;}
.y194{bottom:813.026667pt;}
.y11{bottom:814.626667pt;}
.y10{bottom:819.426667pt;}
.y64{bottom:820.386667pt;}
.y133{bottom:827.760000pt;}
.y166{bottom:828.066667pt;}
.y193{bottom:828.386667pt;}
.yd9{bottom:828.720000pt;}
.y63{bottom:835.773333pt;}
.yf{bottom:840.893333pt;}
.y165{bottom:843.773333pt;}
.y137{bottom:847.293333pt;}
.yd8{bottom:849.853333pt;}
.ye{bottom:850.173333pt;}
.y8b{bottom:850.813333pt;}
.y62{bottom:851.133333pt;}
.y164{bottom:859.133333pt;}
.y61{bottom:866.493333pt;}
.yd6{bottom:870.333333pt;}
.yd{bottom:871.613333pt;}
.y163{bottom:874.493333pt;}
.y132{bottom:877.693333pt;}
.yc{bottom:880.573333pt;}
.y60{bottom:881.853333pt;}
.yd4{bottom:889.213333pt;}
.y162{bottom:889.853333pt;}
.y131{bottom:893.053333pt;}
.y8a{bottom:896.893333pt;}
.y5f{bottom:897.213333pt;}
.yb{bottom:897.533333pt;}
.y161{bottom:904.893333pt;}
.y107{bottom:905.213333pt;}
.yd3{bottom:907.133333pt;}
.y89{bottom:912.253333pt;}
.y5e{bottom:912.573333pt;}
.y130{bottom:913.533333pt;}
.ya{bottom:919.293333pt;}
.y106{bottom:920.573333pt;}
.yd2{bottom:925.053333pt;}
.y5d{bottom:927.613333pt;}
.y12f{bottom:929.533333pt;}
.y88{bottom:935.933333pt;}
.y9{bottom:941.053333pt;}
.yd0{bottom:942.653333pt;}
.y12d{bottom:945.533333pt;}
.y5c{bottom:951.013333pt;}
.yce{bottom:960.613333pt;}
.y12c{bottom:961.573333pt;}
.y8{bottom:965.733333pt;}
.y5b{bottom:966.373333pt;}
.y58{bottom:968.640000pt;}
.y12b{bottom:977.573333pt;}
.y87{bottom:981.413333pt;}
.y5a{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hd{height:3.702500pt;}
.h17{height:5.022500pt;}
.h20{height:15.026667pt;}
.h22{height:15.346667pt;}
.h24{height:15.348000pt;}
.h39{height:15.356000pt;}
.h1f{height:15.360000pt;}
.h3c{height:15.378667pt;}
.h35{height:15.386667pt;}
.h38{height:15.388000pt;}
.h1e{height:15.392000pt;}
.h21{height:15.666667pt;}
.h2a{height:16.626667pt;}
.h32{height:16.640000pt;}
.h25{height:16.946667pt;}
.h29{height:16.960000pt;}
.h27{height:17.266667pt;}
.h2c{height:17.298667pt;}
.h26{height:17.306667pt;}
.h2b{height:17.906667pt;}
.h28{height:18.226667pt;}
.h2f{height:18.546667pt;}
.h30{height:18.866667pt;}
.h3b{height:18.880000pt;}
.h31{height:18.906667pt;}
.h37{height:19.186667pt;}
.h2e{height:19.226667pt;}
.h2d{height:19.520000pt;}
.h18{height:24.640000pt;}
.h36{height:26.226667pt;}
.h15{height:26.381250pt;}
.h34{height:26.546667pt;}
.h6{height:26.735625pt;}
.h14{height:31.406250pt;}
.hb{height:33.918750pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.h12{height:37.537500pt;}
.h3a{height:45.760000pt;}
.h33{height:46.066667pt;}
.h11{height:47.713750pt;}
.h16{height:49.020000pt;}
.h7{height:51.600000pt;}
.h1b{height:52.736250pt;}
.h5{height:52.762500pt;}
.hc{height:54.180000pt;}
.h3d{height:55.256809pt;}
.h19{height:56.405000pt;}
.h8{height:56.513750pt;}
.h9{height:56.948750pt;}
.h1d{height:58.238750pt;}
.h23{height:58.398750pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h13{height:185.000000pt;}
.h1a{height:224.706667pt;}
.h1c{height:228.546667pt;}
.he{height:522.053333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3f{width:42.580000pt;}
.w11{width:53.106667pt;}
.w1e{width:53.746667pt;}
.w19{width:56.320000pt;}
.wb{width:57.906667pt;}
.w10{width:58.560000pt;}
.w22{width:59.500000pt;}
.wc{width:59.506667pt;}
.w27{width:60.140000pt;}
.w2c{width:61.420000pt;}
.w31{width:61.740000pt;}
.w36{width:62.380000pt;}
.w3b{width:63.700000pt;}
.w16{width:64.026667pt;}
.w15{width:65.920000pt;}
.w46{width:89.280000pt;}
.w45{width:89.298667pt;}
.w44{width:89.306667pt;}
.w43{width:89.626667pt;}
.w2{width:92.180000pt;}
.wf{width:93.120000pt;}
.w41{width:95.386667pt;}
.w23{width:96.040000pt;}
.w1d{width:96.640000pt;}
.w28{width:97.640000pt;}
.w1c{width:99.218667pt;}
.w2d{width:99.240000pt;}
.w32{width:99.560000pt;}
.w37{width:100.520000pt;}
.w1b{width:109.504000pt;}
.w18{width:113.280000pt;}
.w13{width:113.312000pt;}
.wd{width:113.344000pt;}
.w40{width:113.600000pt;}
.w20{width:115.904000pt;}
.w21{width:117.120000pt;}
.w4{width:117.780000pt;}
.w17{width:119.386667pt;}
.w12{width:119.744000pt;}
.w24{width:123.226667pt;}
.w25{width:123.264000pt;}
.w26{width:123.840000pt;}
.w29{width:124.506667pt;}
.w2a{width:124.544000pt;}
.w2b{width:125.760000pt;}
.w2e{width:126.746667pt;}
.w2f{width:127.104000pt;}
.w30{width:127.680000pt;}
.w33{width:127.706667pt;}
.w34{width:127.744000pt;}
.w38{width:128.666667pt;}
.w39{width:128.704000pt;}
.w35{width:129.000000pt;}
.w3a{width:129.960000pt;}
.w1a{width:137.306667pt;}
.w3e{width:144.040000pt;}
.w6{width:144.960000pt;}
.w14{width:146.600000pt;}
.w1f{width:165.186667pt;}
.w3d{width:177.666667pt;}
.w3c{width:177.680000pt;}
.we{width:190.146667pt;}
.w42{width:269.226667pt;}
.w7{width:281.720000pt;}
.wa{width:282.360000pt;}
.w9{width:299.640000pt;}
.w8{width:309.560000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x19{left:7.348000pt;}
.x5d{left:8.306667pt;}
.x2f{left:9.266667pt;}
.x35{left:10.866667pt;}
.x4{left:11.826667pt;}
.x16{left:12.788000pt;}
.x44{left:14.400000pt;}
.x31{left:15.360000pt;}
.x1d{left:16.308000pt;}
.x5{left:17.266667pt;}
.x18{left:18.548000pt;}
.x36{left:19.520000pt;}
.x48{left:20.786667pt;}
.x46{left:22.080000pt;}
.x17{left:23.348000pt;}
.x53{left:24.626667pt;}
.x1f{left:25.908000pt;}
.x6d{left:27.502667pt;}
.x7d{left:28.502667pt;}
.x49{left:29.426667pt;}
.x3e{left:31.066667pt;}
.x4f{left:32.000000pt;}
.x62{left:34.253333pt;}
.x6a{left:35.853333pt;}
.x55{left:37.746667pt;}
.x11{left:39.028000pt;}
.x78{left:40.013333pt;}
.x54{left:40.946667pt;}
.x1e{left:42.260000pt;}
.x38{left:43.213333pt;}
.x6{left:44.493333pt;}
.x37{left:45.800000pt;}
.x40{left:47.400000pt;}
.x10{left:48.980000pt;}
.x3f{left:50.600000pt;}
.x15{left:51.540000pt;}
.x4a{left:53.106667pt;}
.x68{left:54.106667pt;}
.x1b{left:55.373333pt;}
.x77{left:56.653333pt;}
.x20{left:58.902667pt;}
.x71{left:60.813333pt;}
.x7e{left:68.493333pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x14{left:79.062667pt;}
.x13{left:80.022667pt;}
.x39{left:83.226667pt;}
.x2{left:84.822667pt;}
.x80{left:85.792000pt;}
.x85{left:87.386667pt;}
.xb{left:90.912000pt;}
.x1c{left:95.062667pt;}
.x23{left:101.484000pt;}
.x27{left:105.644000pt;}
.x12{left:110.742667pt;}
.x2d{left:112.992000pt;}
.x7a{left:114.604000pt;}
.x79{left:116.832000pt;}
.x73{left:120.724000pt;}
.x6e{left:122.644000pt;}
.x22{left:124.864000pt;}
.x65{left:129.364000pt;}
.x60{left:132.884000pt;}
.x82{left:133.840000pt;}
.x2e{left:138.640000pt;}
.x58{left:141.520000pt;}
.x4d{left:146.320000pt;}
.x3a{left:150.160000pt;}
.x41{left:157.840000pt;}
.x4c{left:160.386667pt;}
.x3{left:162.000000pt;}
.x72{left:165.506667pt;}
.x57{left:167.106667pt;}
.x7b{left:178.960000pt;}
.x74{left:183.760000pt;}
.x6f{left:185.360000pt;}
.x69{left:186.640000pt;}
.x66{left:190.160000pt;}
.x61{left:193.040000pt;}
.x1a{left:194.640000pt;}
.x30{left:197.213333pt;}
.x59{left:198.493333pt;}
.x4e{left:203.293333pt;}
.x3b{left:209.373333pt;}
.x42{left:224.413333pt;}
.x83{left:248.093333pt;}
.x2b{left:250.973333pt;}
.x5a{left:252.893333pt;}
.x32{left:257.373333pt;}
.x3c{left:263.133333pt;}
.x24{left:274.356000pt;}
.x2a{left:275.333333pt;}
.x75{left:284.933333pt;}
.x6b{left:286.533333pt;}
.x43{left:289.093333pt;}
.x28{left:292.596000pt;}
.x26{left:301.893333pt;}
.x81{left:316.933333pt;}
.xa{left:338.693333pt;}
.x50{left:341.253333pt;}
.x84{left:344.133333pt;}
.x7c{left:357.280000pt;}
.xd{left:360.800000pt;}
.x33{left:371.360000pt;}
.x25{left:383.200000pt;}
.x5e{left:396.960000pt;}
.x29{left:406.240000pt;}
.x45{left:409.120000pt;}
.x63{left:413.600000pt;}
.x5b{left:419.040000pt;}
.x87{left:434.120000pt;}
.x51{left:451.400000pt;}
.x3d{left:497.480000pt;}
.xc{left:500.346667pt;}
.xe{left:510.266667pt;}
.x47{left:523.120000pt;}
.x88{left:524.080000pt;}
.x5c{left:535.600000pt;}
.x64{left:537.520000pt;}
.x67{left:539.120000pt;}
.x6c{left:541.680000pt;}
.x70{left:542.640000pt;}
.x76{left:543.600000pt;}
.x52{left:551.280000pt;}
.x34{left:562.160000pt;}
.x86{left:614.013333pt;}
.x2c{left:654.973333pt;}
.x4b{left:672.293333pt;}
.x9{left:680.933333pt;}
.x7f{left:684.133333pt;}
.x56{left:687.013333pt;}
.x5f{left:703.973333pt;}
.x8{left:710.693333pt;}
.xf{left:717.413333pt;}
}




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