
    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_72b3332321d6e1779ee6d233.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_96e0dde06a91a4473d66bdeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_81b83201757c07fc449263fc.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_a8fb70df76eeacfe0c7f8ddd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c8e9599bf5febcb5a44b9ae6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d59d445e854e4b4ec3f5db8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_7516166d141c0f2bb0549f49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;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_0b94613d93483720c993c2b4.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_b68a5fabe564dd053d32788b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_5faf6e8b3b0e56957c2d4727.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_27870f5a38b5730622b38a6e.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a9ad6f5e2094681e54a3db13.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-76.320000px;}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls16{letter-spacing:-0.828000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls28{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.052560px;}
.lsd{letter-spacing:-0.000003px;}
.lsc{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.106800px;}
.ls20{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.305400px;}
.ls1f{letter-spacing:0.354240px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.900000px;}
.ls2b{letter-spacing:1.620000px;}
.ls8{letter-spacing:3.060000px;}
.ls18{letter-spacing:3.600000px;}
.ls22{letter-spacing:3.780000px;}
.ls17{letter-spacing:4.320000px;}
.ls9{letter-spacing:4.469760px;}
.ls29{letter-spacing:4.500000px;}
.ls27{letter-spacing:8.100000px;}
.ls26{letter-spacing:8.820000px;}
.ls6{letter-spacing:9.509760px;}
.ls24{letter-spacing:15.300000px;}
.ls2a{letter-spacing:24.660000px;}
.lsb{letter-spacing:28.980000px;}
.ls13{letter-spacing:37.001280px;}
.ls7{letter-spacing:41.940000px;}
.ls14{letter-spacing:59.321280px;}
.ls3{letter-spacing:1335.216000px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.ws0{word-spacing:-17.639997px;}
.wsb{word-spacing:-16.865400px;}
.ws16{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.wsf{word-spacing:-15.732000px;}
.ws3{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.113200px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._19{margin-left:-4.548240px;}
._e{margin-left:-3.489840px;}
._7{margin-left:-2.138400px;}
._1{margin-left:-1.088640px;}
._0{width:1.020000px;}
._3{width:2.259360px;}
._a{width:3.406320px;}
._4{width:4.408080px;}
._6{width:5.726880px;}
._5{width:6.762960px;}
._9{width:8.724960px;}
._8{width:10.697040px;}
._b{width:12.609360px;}
._16{width:13.976640px;}
._17{width:15.129840px;}
._20{width:16.194960px;}
._1f{width:17.330400px;}
._f{width:18.372240px;}
._c{width:19.555680px;}
._d{width:20.566560px;}
._1d{width:22.819440px;}
._15{width:24.376320px;}
._14{width:26.117280px;}
._11{width:28.505520px;}
._10{width:29.640960px;}
._1e{width:30.822480px;}
._1c{width:32.070720px;}
._27{width:34.899840px;}
._12{width:41.832000px;}
._13{width:42.907680px;}
._26{width:43.967040px;}
._2{width:53.712000px;}
._21{width:76.253760px;}
._22{width:77.376960px;}
._24{width:79.038240px;}
._23{width:80.087280px;}
._25{width:85.217760px;}
._1a{width:97.875840px;}
._28{width:144.798480px;}
._1b{width:198.180000px;}
._18{width:246.972000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y51{bottom:-63.045000px;}
.y50{bottom:-47.529000px;}
.y4f{bottom:-32.049000px;}
.y18{bottom:-26.820000px;}
.y42{bottom:-18.360000px;}
.y41{bottom:-1.080000px;}
.y4e{bottom:-0.909000px;}
.y0{bottom:0.000000px;}
.y158{bottom:3.240000px;}
.y123{bottom:3.405000px;}
.y12d{bottom:3.411000px;}
.ye4{bottom:3.420000px;}
.y120{bottom:3.450000px;}
.y124{bottom:3.765000px;}
.y12e{bottom:3.771000px;}
.ye6{bottom:3.780000px;}
.y121{bottom:3.810000px;}
.y168{bottom:3.825000px;}
.y103{bottom:4.140000px;}
.y141{bottom:5.400000px;}
.y145{bottom:5.445000px;}
.y13f{bottom:5.580000px;}
.y7{bottom:5.751000px;}
.y142{bottom:5.760000px;}
.y146{bottom:5.805000px;}
.y140{bottom:5.940000px;}
.y10d{bottom:6.120000px;}
.y55{bottom:6.291000px;}
.y8{bottom:7.731000px;}
.y17{bottom:7.740000px;}
.y56{bottom:8.631000px;}
.y178{bottom:12.045000px;}
.y15a{bottom:12.060000px;}
.y17b{bottom:12.405000px;}
.y15d{bottom:12.420000px;}
.y4{bottom:13.140000px;}
.y11{bottom:14.400000px;}
.y4d{bottom:14.571000px;}
.y2{bottom:15.300000px;}
.y40{bottom:16.200000px;}
.y2c{bottom:16.560000px;}
.y13c{bottom:16.920000px;}
.y139{bottom:17.280000px;}
.y149{bottom:18.900000px;}
.y137{bottom:20.520000px;}
.y157{bottom:20.550000px;}
.y179{bottom:20.685000px;}
.y15c{bottom:20.700000px;}
.y126{bottom:21.405000px;}
.yeb{bottom:21.420000px;}
.y10c{bottom:22.860000px;}
.y57{bottom:24.156000px;}
.y9{bottom:25.776000px;}
.y4c{bottom:30.051000px;}
.y16{bottom:30.060000px;}
.y10{bottom:33.300000px;}
.y3f{bottom:33.480000px;}
.y2b{bottom:33.840000px;}
.y13b{bottom:34.200000px;}
.y148{bottom:36.180000px;}
.y54{bottom:36.765000px;}
.yff{bottom:39.420000px;}
.y11e{bottom:39.450000px;}
.y10b{bottom:40.500000px;}
.y6{bottom:41.265000px;}
.y4b{bottom:45.711000px;}
.y15{bottom:47.340000px;}
.y3e{bottom:50.760000px;}
.y2a{bottom:51.120000px;}
.yf{bottom:51.660000px;}
.y43{bottom:56.925000px;}
.y10a{bottom:57.420000px;}
.y4a{bottom:61.191000px;}
.y14{bottom:64.800000px;}
.y3d{bottom:68.085000px;}
.y29{bottom:68.400000px;}
.ye{bottom:69.660000px;}
.y129{bottom:75.405000px;}
.y116{bottom:75.420000px;}
.yf2{bottom:75.465000px;}
.y49{bottom:76.671000px;}
.y13{bottom:82.980000px;}
.y3c{bottom:85.185000px;}
.y28{bottom:85.680000px;}
.yd{bottom:90.360000px;}
.y48{bottom:92.151000px;}
.yf8{bottom:93.420000px;}
.y3b{bottom:102.465000px;}
.y27{bottom:102.780000px;}
.y47{bottom:107.445000px;}
.yc{bottom:111.060000px;}
.y162{bottom:114.156000px;}
.y8e{bottom:114.876000px;}
.y1b7{bottom:117.036000px;}
.y128{bottom:119.025000px;}
.y3a{bottom:119.745000px;}
.y26{bottom:120.060000px;}
.y46{bottom:122.025000px;}
.y1a1{bottom:122.976000px;}
.y20e{bottom:125.316000px;}
.yb7{bottom:125.856000px;}
.ye1{bottom:130.896000px;}
.y8d{bottom:133.776000px;}
.y1b6{bottom:135.936000px;}
.y39{bottom:137.025000px;}
.y25{bottom:137.340000px;}
.y45{bottom:139.305000px;}
.y1d4{bottom:140.076000px;}
.y161{bottom:141.696000px;}
.y1a0{bottom:142.056000px;}
.y20d{bottom:142.596000px;}
.yb6{bottom:144.936000px;}
.y8c{bottom:153.210000px;}
.y38{bottom:154.305000px;}
.y24{bottom:154.620000px;}
.y1b5{bottom:154.830000px;}
.y12c{bottom:155.025000px;}
.y44{bottom:156.405000px;}
.y1d3{bottom:157.350000px;}
.y20c{bottom:159.870000px;}
.y19f{bottom:160.950000px;}
.ye0{bottom:161.130000px;}
.yb5{bottom:163.830000px;}
.y160{bottom:167.610000px;}
.y37{bottom:171.585000px;}
.y23{bottom:171.900000px;}
.y8b{bottom:172.110000px;}
.y12b{bottom:173.025000px;}
.y1b4{bottom:173.910000px;}
.y1d2{bottom:174.630000px;}
.y20b{bottom:176.970000px;}
.y19e{bottom:180.030000px;}
.y17d{bottom:182.550000px;}
.yb4{bottom:182.910000px;}
.y36{bottom:188.685000px;}
.y22{bottom:189.000000px;}
.y12a{bottom:191.025000px;}
.y8a{bottom:191.190000px;}
.ydf{bottom:191.370000px;}
.y1d1{bottom:192.270000px;}
.y1b3{bottom:192.810000px;}
.y20a{bottom:194.250000px;}
.y17c{bottom:198.765000px;}
.y19d{bottom:198.930000px;}
.yb3{bottom:201.810000px;}
.y35{bottom:205.965000px;}
.y21{bottom:206.280000px;}
.y125{bottom:209.025000px;}
.y89{bottom:210.090000px;}
.y209{bottom:211.530000px;}
.y1b2{bottom:211.890000px;}
.y17a{bottom:216.765000px;}
.y19c{bottom:218.010000px;}
.yb2{bottom:220.710000px;}
.yde{bottom:221.430000px;}
.y34{bottom:223.245000px;}
.y20{bottom:223.560000px;}
.y2d{bottom:226.830000px;}
.y127{bottom:227.025000px;}
.y1d0{bottom:227.730000px;}
.y208{bottom:228.810000px;}
.y88{bottom:228.990000px;}
.y1b1{bottom:230.790000px;}
.y19b{bottom:236.910000px;}
.yb1{bottom:239.430000px;}
.y33{bottom:240.525000px;}
.y1f{bottom:240.840000px;}
.y11d{bottom:245.025000px;}
.y207{bottom:246.090000px;}
.y1cf{bottom:246.450000px;}
.y87{bottom:248.070000px;}
.y1b0{bottom:249.690000px;}
.ydd{bottom:251.670000px;}
.y177{bottom:252.045000px;}
.y32{bottom:257.805000px;}
.y1e{bottom:258.120000px;}
.yb0{bottom:258.690000px;}
.y122{bottom:263.025000px;}
.y206{bottom:263.190000px;}
.y1ce{bottom:263.730000px;}
.y86{bottom:266.970000px;}
.y1af{bottom:268.770000px;}
.y31{bottom:275.085000px;}
.y1d{bottom:275.400000px;}
.y19a{bottom:276.150000px;}
.yaf{bottom:277.770000px;}
.y205{bottom:280.470000px;}
.y1cd{bottom:280.650000px;}
.y11f{bottom:281.025000px;}
.ydc{bottom:281.955000px;}
.y85{bottom:286.095000px;}
.y176{bottom:287.355000px;}
.y1ae{bottom:287.715000px;}
.y30{bottom:292.185000px;}
.y1c{bottom:292.545000px;}
.y199{bottom:295.095000px;}
.yae{bottom:296.715000px;}
.y204{bottom:297.795000px;}
.y1cc{bottom:298.335000px;}
.y11b{bottom:299.055000px;}
.y84{bottom:304.995000px;}
.y1ad{bottom:306.795000px;}
.y2f{bottom:309.465000px;}
.y1b{bottom:309.825000px;}
.ydb{bottom:312.195000px;}
.y198{bottom:313.995000px;}
.y203{bottom:315.075000px;}
.y1cb{bottom:315.435000px;}
.yad{bottom:315.615000px;}
.y11c{bottom:317.055000px;}
.y83{bottom:323.895000px;}
.y1ac{bottom:325.695000px;}
.y175{bottom:325.875000px;}
.y2e{bottom:326.385000px;}
.y1a{bottom:326.745000px;}
.y202{bottom:332.355000px;}
.y1ca{bottom:332.715000px;}
.y197{bottom:333.075000px;}
.yac{bottom:334.695000px;}
.y115{bottom:335.055000px;}
.yda{bottom:342.435000px;}
.y82{bottom:342.975000px;}
.y1ab{bottom:344.595000px;}
.y174{bottom:344.775000px;}
.y1c9{bottom:349.635000px;}
.y196{bottom:351.975000px;}
.y11a{bottom:353.055000px;}
.yab{bottom:353.595000px;}
.yd9{bottom:361.515000px;}
.y81{bottom:361.875000px;}
.y1aa{bottom:363.675000px;}
.y173{bottom:363.855000px;}
.y201{bottom:366.735000px;}
.y1c8{bottom:367.275000px;}
.y119{bottom:371.055000px;}
.yaa{bottom:372.675000px;}
.y80{bottom:380.955000px;}
.y1a9{bottom:382.575000px;}
.y172{bottom:382.755000px;}
.y200{bottom:384.015000px;}
.y1c7{bottom:384.555000px;}
.y118{bottom:389.055000px;}
.y195{bottom:389.955000px;}
.ya9{bottom:391.575000px;}
.y7f{bottom:399.855000px;}
.y1ff{bottom:401.295000px;}
.y1c6{bottom:401.475000px;}
.y171{bottom:401.655000px;}
.y117{bottom:407.055000px;}
.y194{bottom:409.035000px;}
.ya8{bottom:410.475000px;}
.y1fe{bottom:418.575000px;}
.y7e{bottom:418.935000px;}
.y1a8{bottom:420.555000px;}
.y170{bottom:420.735000px;}
.y111{bottom:425.055000px;}
.y193{bottom:427.935000px;}
.ya7{bottom:429.555000px;}
.y1fd{bottom:435.855000px;}
.y1c5{bottom:436.215000px;}
.y7d{bottom:437.835000px;}
.y1a7{bottom:439.455000px;}
.y16f{bottom:439.635000px;}
.y114{bottom:443.055000px;}
.y15f{bottom:445.935000px;}
.y192{bottom:446.835000px;}
.ya6{bottom:448.455000px;}
.y1c4{bottom:453.135000px;}
.y7c{bottom:456.735000px;}
.y1a6{bottom:458.535000px;}
.y16e{bottom:458.715000px;}
.y113{bottom:461.055000px;}
.y15e{bottom:462.135000px;}
.y191{bottom:465.915000px;}
.ya5{bottom:467.175000px;}
.y1fc{bottom:470.235000px;}
.y1c3{bottom:470.955000px;}
.y7b{bottom:475.815000px;}
.y1a5{bottom:477.435000px;}
.y16d{bottom:477.615000px;}
.y112{bottom:479.055000px;}
.y15b{bottom:480.135000px;}
.y190{bottom:484.815000px;}
.ya4{bottom:486.435000px;}
.y1fb{bottom:487.515000px;}
.y1c2{bottom:490.035000px;}
.y7a{bottom:494.715000px;}
.y1a4{bottom:496.515000px;}
.y109{bottom:497.055000px;}
.y16c{bottom:500.295000px;}
.y18f{bottom:503.895000px;}
.y1fa{bottom:504.795000px;}
.ya3{bottom:505.335000px;}
.y1c1{bottom:509.115000px;}
.y79{bottom:513.795000px;}
.y110{bottom:515.055000px;}
.y159{bottom:515.415000px;}
.y1f9{bottom:522.075000px;}
.y18e{bottom:522.795000px;}
.ya2{bottom:524.415000px;}
.y16b{bottom:527.655000px;}
.y1c0{bottom:529.095000px;}
.y78{bottom:532.695000px;}
.y10f{bottom:533.055000px;}
.yd8{bottom:534.495000px;}
.y1f8{bottom:539.355000px;}
.y18d{bottom:542.955000px;}
.ya1{bottom:543.315000px;}
.y1bf{bottom:548.175000px;}
.y156{bottom:550.695000px;}
.y10e{bottom:551.055000px;}
.y77{bottom:551.595000px;}
.yd7{bottom:553.395000px;}
.y16a{bottom:553.755000px;}
.y1f7{bottom:556.635000px;}
.y18c{bottom:562.035000px;}
.ya0{bottom:562.395000px;}
.y19{bottom:567.105000px;}
.y107{bottom:569.085000px;}
.y76{bottom:570.705000px;}
.yd6{bottom:572.325000px;}
.y1f6{bottom:573.765000px;}
.y9f{bottom:580.965000px;}
.y1be{bottom:586.185000px;}
.y108{bottom:587.085000px;}
.y155{bottom:589.245000px;}
.y75{bottom:589.605000px;}
.y1f5{bottom:591.045000px;}
.yd5{bottom:591.405000px;}
.y18b{bottom:599.865000px;}
.y9e{bottom:600.405000px;}
.y105{bottom:605.085000px;}
.y1bd{bottom:606.165000px;}
.y154{bottom:608.145000px;}
.y1f4{bottom:608.325000px;}
.y74{bottom:608.685000px;}
.yd4{bottom:610.305000px;}
.y18a{bottom:618.945000px;}
.y9d{bottom:619.305000px;}
.y106{bottom:623.085000px;}
.y1bc{bottom:625.245000px;}
.y1f3{bottom:625.605000px;}
.y153{bottom:627.045000px;}
.y73{bottom:627.585000px;}
.yd3{bottom:629.385000px;}
.y9c{bottom:637.845000px;}
.y102{bottom:641.085000px;}
.y1f2{bottom:642.885000px;}
.y1bb{bottom:645.405000px;}
.y152{bottom:646.125000px;}
.y72{bottom:646.485000px;}
.yd2{bottom:648.285000px;}
.y189{bottom:656.925000px;}
.y9b{bottom:657.285000px;}
.y104{bottom:659.085000px;}
.y1f1{bottom:659.985000px;}
.y1ba{bottom:664.305000px;}
.y151{bottom:665.025000px;}
.y71{bottom:665.565000px;}
.yd1{bottom:667.185000px;}
.y188{bottom:675.825000px;}
.yfe{bottom:677.085000px;}
.y1f0{bottom:677.265000px;}
.y9a{bottom:677.445000px;}
.y1b9{bottom:683.385000px;}
.y150{bottom:684.105000px;}
.y70{bottom:684.465000px;}
.yd0{bottom:685.905000px;}
.y1a3{bottom:686.265000px;}
.y1ef{bottom:694.545000px;}
.y187{bottom:694.905000px;}
.y101{bottom:695.085000px;}
.y99{bottom:697.245000px;}
.y14f{bottom:703.005000px;}
.y6f{bottom:703.545000px;}
.ycf{bottom:705.165000px;}
.y1ee{bottom:711.825000px;}
.y100{bottom:713.085000px;}
.y186{bottom:713.805000px;}
.y98{bottom:716.685000px;}
.y14e{bottom:722.085000px;}
.y6e{bottom:722.445000px;}
.yce{bottom:724.245000px;}
.y1ed{bottom:729.105000px;}
.yf7{bottom:731.085000px;}
.y185{bottom:732.705000px;}
.y97{bottom:736.845000px;}
.y14d{bottom:740.985000px;}
.y6d{bottom:741.345000px;}
.ycd{bottom:743.145000px;}
.y1ec{bottom:746.385000px;}
.yfd{bottom:749.085000px;}
.y184{bottom:751.785000px;}
.y96{bottom:757.005000px;}
.y14c{bottom:759.885000px;}
.y6c{bottom:760.425000px;}
.ycc{bottom:762.045000px;}
.y1eb{bottom:763.485000px;}
.yfc{bottom:767.085000px;}
.y183{bottom:770.685000px;}
.y147{bottom:775.725000px;}
.y95{bottom:777.165000px;}
.y6b{bottom:779.325000px;}
.y1ea{bottom:780.765000px;}
.ycb{bottom:781.125000px;}
.yfb{bottom:785.085000px;}
.y182{bottom:789.765000px;}
.y94{bottom:797.325000px;}
.y14b{bottom:797.865000px;}
.y1e9{bottom:798.045000px;}
.y6a{bottom:798.405000px;}
.yca{bottom:800.025000px;}
.yfa{bottom:803.085000px;}
.y181{bottom:808.845000px;}
.y1e8{bottom:815.325000px;}
.y93{bottom:816.945000px;}
.y69{bottom:817.305000px;}
.yc9{bottom:819.105000px;}
.y14a{bottom:820.005000px;}
.yf9{bottom:821.085000px;}
.y169{bottom:827.565000px;}
.y1e7{bottom:832.605000px;}
.y180{bottom:832.965000px;}
.y68{bottom:836.205000px;}
.yc8{bottom:838.005000px;}
.yf1{bottom:839.085000px;}
.y144{bottom:842.325000px;}
.y167{bottom:843.765000px;}
.y1e6{bottom:849.930000px;}
.y67{bottom:855.330000px;}
.yc7{bottom:856.590000px;}
.y1a2{bottom:856.950000px;}
.yf6{bottom:857.130000px;}
.y17f{bottom:860.550000px;}
.y166{bottom:861.810000px;}
.y143{bottom:864.510000px;}
.y1e5{bottom:867.030000px;}
.y66{bottom:874.230000px;}
.y1b8{bottom:874.410000px;}
.yf5{bottom:875.130000px;}
.yc6{bottom:876.030000px;}
.y13a{bottom:882.510000px;}
.y1e4{bottom:884.310000px;}
.y17e{bottom:886.650000px;}
.yf4{bottom:893.130000px;}
.y65{bottom:893.310000px;}
.yc5{bottom:894.930000px;}
.y165{bottom:897.090000px;}
.y1e3{bottom:901.590000px;}
.y13e{bottom:904.650000px;}
.y12{bottom:907.710000px;}
.yf3{bottom:911.130000px;}
.y92{bottom:911.850000px;}
.y64{bottom:912.210000px;}
.yc4{bottom:914.010000px;}
.y1e2{bottom:918.870000px;}
.y13d{bottom:926.790000px;}
.yef{bottom:929.130000px;}
.y63{bottom:931.290000px;}
.y164{bottom:932.370000px;}
.yc3{bottom:932.910000px;}
.y1e1{bottom:936.150000px;}
.y138{bottom:944.790000px;}
.yf0{bottom:947.130000px;}
.y62{bottom:950.190000px;}
.yc2{bottom:951.990000px;}
.y1e0{bottom:953.430000px;}
.y136{bottom:964.410000px;}
.yed{bottom:965.130000px;}
.y91{bottom:968.730000px;}
.y61{bottom:969.090000px;}
.y1df{bottom:970.530000px;}
.yc1{bottom:970.890000px;}
.yee{bottom:983.130000px;}
.y1de{bottom:987.810000px;}
.y60{bottom:988.170000px;}
.yc0{bottom:989.790000px;}
.yea{bottom:1001.130000px;}
.yb{bottom:1002.930000px;}
.y1dd{bottom:1005.090000px;}
.y5f{bottom:1007.070000px;}
.ybf{bottom:1008.870000px;}
.yec{bottom:1019.130000px;}
.y135{bottom:1021.830000px;}
.y1dc{bottom:1022.370000px;}
.y5e{bottom:1026.150000px;}
.ybe{bottom:1027.770000px;}
.ye9{bottom:1037.130000px;}
.y1db{bottom:1039.650000px;}
.y134{bottom:1040.910000px;}
.y5d{bottom:1045.050000px;}
.ybd{bottom:1046.850000px;}
.ye8{bottom:1055.130000px;}
.y1da{bottom:1056.750000px;}
.y133{bottom:1059.810000px;}
.y5c{bottom:1063.950000px;}
.ybc{bottom:1065.750000px;}
.ye7{bottom:1073.130000px;}
.y1d9{bottom:1074.030000px;}
.y132{bottom:1078.890000px;}
.y90{bottom:1082.670000px;}
.y5b{bottom:1083.030000px;}
.ybb{bottom:1084.650000px;}
.ye5{bottom:1091.130000px;}
.y1d8{bottom:1091.310000px;}
.y131{bottom:1097.790000px;}
.y5a{bottom:1101.930000px;}
.yba{bottom:1103.730000px;}
.y1d7{bottom:1108.590000px;}
.ye3{bottom:1109.130000px;}
.y130{bottom:1120.470000px;}
.y8f{bottom:1120.650000px;}
.y59{bottom:1121.010000px;}
.yb9{bottom:1122.630000px;}
.y1d6{bottom:1125.870000px;}
.ya{bottom:1134.720000px;}
.y58{bottom:1140.120000px;}
.ye2{bottom:1141.200000px;}
.yb8{bottom:1141.380000px;}
.y163{bottom:1141.740000px;}
.y1d5{bottom:1143.180000px;}
.y5{bottom:1144.440000px;}
.y12f{bottom:1145.880000px;}
.y3{bottom:1155.240000px;}
.y53{bottom:1179.000000px;}
.y1{bottom:1188.360000px;}
.y52{bottom:1196.280000px;}
.h23{height:17.265000px;}
.h32{height:17.271000px;}
.h28{height:17.280000px;}
.h30{height:17.301000px;}
.h26{height:17.302500px;}
.h2c{height:17.310000px;}
.h7{height:21.231000px;}
.h35{height:21.405000px;}
.h38{height:21.420000px;}
.h36{height:21.442500px;}
.h1d{height:22.131000px;}
.hb{height:29.678906px;}
.h2{height:32.040000px;}
.h4{height:32.400000px;}
.h5{height:34.020000px;}
.h33{height:34.365000px;}
.h39{height:34.410000px;}
.h3a{height:34.545000px;}
.h3b{height:34.581000px;}
.h24{height:35.265000px;}
.h2a{height:35.280000px;}
.h14{height:38.158594px;}
.h13{height:40.985156px;}
.h12{height:45.004219px;}
.h1a{height:47.321367px;}
.h6{height:47.344922px;}
.h16{height:49.868086px;}
.h3c{height:50.772656px;}
.h18{height:51.239531px;}
.h1c{height:52.971680px;}
.h1b{height:52.998047px;}
.h29{height:53.280000px;}
.h2f{height:53.301000px;}
.h3{height:54.000000px;}
.hf{height:55.275469px;}
.h1e{height:55.503491px;}
.h22{height:56.278125px;}
.h8{height:58.621992px;}
.h9{height:58.651172px;}
.he{height:60.226875px;}
.h34{height:61.545000px;}
.h1f{height:65.010937px;}
.h37{height:65.700000px;}
.ha{height:65.884219px;}
.h20{height:66.757500px;}
.h21{height:68.084282px;}
.h2d{height:71.265000px;}
.h2b{height:71.310000px;}
.hd{height:72.562500px;}
.h2e{height:89.265000px;}
.h31{height:89.271000px;}
.h25{height:89.302500px;}
.h10{height:93.983203px;}
.h11{height:95.220000px;}
.h27{height:107.280000px;}
.hc{height:127.650000px;}
.h19{height:169.911000px;}
.h17{height:340.275000px;}
.h15{height:340.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.785000px;}
.w7{width:30.405000px;}
.w22{width:53.625000px;}
.w23{width:57.405000px;}
.w19{width:58.305000px;}
.w25{width:58.860000px;}
.w26{width:63.756000px;}
.w17{width:64.836000px;}
.w21{width:66.981000px;}
.w1a{width:68.421000px;}
.w18{width:68.565000px;}
.w27{width:68.601000px;}
.w16{width:69.300000px;}
.wd{width:70.005000px;}
.w1b{width:70.185000px;}
.w20{width:71.265000px;}
.w1f{width:71.316000px;}
.w15{width:75.240000px;}
.wc{width:78.321000px;}
.w1d{width:81.000000px;}
.w1e{width:92.700000px;}
.w10{width:129.765000px;}
.w11{width:138.981000px;}
.wb{width:148.341000px;}
.w13{width:174.450000px;}
.w1c{width:186.135000px;}
.w14{width:205.581000px;}
.w24{width:222.861000px;}
.w12{width:237.261000px;}
.w9{width:244.281000px;}
.wa{width:287.130000px;}
.wf{width:411.720000px;}
.w6{width:652.410000px;}
.w3{width:659.070000px;}
.w8{width:679.770000px;}
.w2{width:680.310000px;}
.we{width:680.490000px;}
.w5{width:691.305000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.091000px;}
.x35{left:9.720000px;}
.x22{left:10.965000px;}
.x19{left:12.405000px;}
.x34{left:14.025000px;}
.x2{left:15.291000px;}
.x2e{left:16.410000px;}
.x24{left:17.640000px;}
.x10{left:18.720000px;}
.x29{left:20.700000px;}
.xc{left:22.680000px;}
.x32{left:24.120000px;}
.xb{left:25.200000px;}
.x1d{left:27.540000px;}
.x1e{left:31.710000px;}
.x1b{left:34.950000px;}
.x1a{left:42.330000px;}
.x36{left:46.260000px;}
.x8{left:54.714000px;}
.x7{left:65.154000px;}
.x5{left:95.805000px;}
.x9{left:97.194000px;}
.x1{left:106.425000px;}
.xe{left:110.334000px;}
.x17{left:111.420000px;}
.x15{left:133.056000px;}
.x14{left:159.330000px;}
.xf{left:174.279000px;}
.xd{left:201.639000px;}
.x1f{left:205.770000px;}
.x2b{left:292.395000px;}
.x23{left:311.835000px;}
.x37{left:329.115000px;}
.xa{left:344.019000px;}
.x16{left:350.535000px;}
.x2c{left:373.395000px;}
.x2a{left:374.835000px;}
.x11{left:381.315000px;}
.x25{left:387.075000px;}
.x4{left:446.475000px;}
.x26{left:456.375000px;}
.x2d{left:466.095000px;}
.x20{left:517.980000px;}
.x27{left:521.220000px;}
.x2f{left:537.420000px;}
.x28{left:589.800000px;}
.x30{left:608.700000px;}
.x18{left:637.680000px;}
.x21{left:647.760000px;}
.x31{left:675.690000px;}
.x1c{left:716.010000px;}
.x33{left:729.330000px;}
.x6{left:754.890000px;}
.x12{left:758.670000px;}
.x13{left:786.750000px;}
@media print{
.v5{vertical-align:-67.840000pt;}
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.046720pt;}
.lsd{letter-spacing:-0.000003pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls20{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.271467pt;}
.ls1f{letter-spacing:0.314880pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls22{letter-spacing:3.360000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls9{letter-spacing:3.973120pt;}
.ls29{letter-spacing:4.000000pt;}
.ls27{letter-spacing:7.200000pt;}
.ls26{letter-spacing:7.840000pt;}
.ls6{letter-spacing:8.453120pt;}
.ls24{letter-spacing:13.600000pt;}
.ls2a{letter-spacing:21.920000pt;}
.lsb{letter-spacing:25.760000pt;}
.ls13{letter-spacing:32.890027pt;}
.ls7{letter-spacing:37.280000pt;}
.ls14{letter-spacing:52.730027pt;}
.ls3{letter-spacing:1186.858667pt;}
.wsd{word-spacing:-58.880000pt;}
.ws0{word-spacing:-15.679997pt;}
.wsb{word-spacing:-14.991467pt;}
.ws16{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.wsf{word-spacing:-13.984000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws14{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.878400pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._19{margin-left:-4.042880pt;}
._e{margin-left:-3.102080pt;}
._7{margin-left:-1.900800pt;}
._1{margin-left:-0.967680pt;}
._0{width:0.906667pt;}
._3{width:2.008320pt;}
._a{width:3.027840pt;}
._4{width:3.918293pt;}
._6{width:5.090560pt;}
._5{width:6.011520pt;}
._9{width:7.755520pt;}
._8{width:9.508480pt;}
._b{width:11.208320pt;}
._16{width:12.423680pt;}
._17{width:13.448747pt;}
._20{width:14.395520pt;}
._1f{width:15.404800pt;}
._f{width:16.330880pt;}
._c{width:17.382827pt;}
._d{width:18.281387pt;}
._1d{width:20.283947pt;}
._15{width:21.667840pt;}
._14{width:23.215360pt;}
._11{width:25.338240pt;}
._10{width:26.347520pt;}
._1e{width:27.397760pt;}
._1c{width:28.507307pt;}
._27{width:31.022080pt;}
._12{width:37.184000pt;}
._13{width:38.140160pt;}
._26{width:39.081813pt;}
._2{width:47.744000pt;}
._21{width:67.781120pt;}
._22{width:68.779520pt;}
._24{width:70.256213pt;}
._23{width:71.188693pt;}
._25{width:75.749120pt;}
._1a{width:87.000747pt;}
._28{width:128.709760pt;}
._1b{width:176.160000pt;}
._18{width:219.530667pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y51{bottom:-56.040000pt;}
.y50{bottom:-42.248000pt;}
.y4f{bottom:-28.488000pt;}
.y18{bottom:-23.840000pt;}
.y42{bottom:-16.320000pt;}
.y41{bottom:-0.960000pt;}
.y4e{bottom:-0.808000pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:2.880000pt;}
.y123{bottom:3.026667pt;}
.y12d{bottom:3.032000pt;}
.ye4{bottom:3.040000pt;}
.y120{bottom:3.066667pt;}
.y124{bottom:3.346667pt;}
.y12e{bottom:3.352000pt;}
.ye6{bottom:3.360000pt;}
.y121{bottom:3.386667pt;}
.y168{bottom:3.400000pt;}
.y103{bottom:3.680000pt;}
.y141{bottom:4.800000pt;}
.y145{bottom:4.840000pt;}
.y13f{bottom:4.960000pt;}
.y7{bottom:5.112000pt;}
.y142{bottom:5.120000pt;}
.y146{bottom:5.160000pt;}
.y140{bottom:5.280000pt;}
.y10d{bottom:5.440000pt;}
.y55{bottom:5.592000pt;}
.y8{bottom:6.872000pt;}
.y17{bottom:6.880000pt;}
.y56{bottom:7.672000pt;}
.y178{bottom:10.706667pt;}
.y15a{bottom:10.720000pt;}
.y17b{bottom:11.026667pt;}
.y15d{bottom:11.040000pt;}
.y4{bottom:11.680000pt;}
.y11{bottom:12.800000pt;}
.y4d{bottom:12.952000pt;}
.y2{bottom:13.600000pt;}
.y40{bottom:14.400000pt;}
.y2c{bottom:14.720000pt;}
.y13c{bottom:15.040000pt;}
.y139{bottom:15.360000pt;}
.y149{bottom:16.800000pt;}
.y137{bottom:18.240000pt;}
.y157{bottom:18.266667pt;}
.y179{bottom:18.386667pt;}
.y15c{bottom:18.400000pt;}
.y126{bottom:19.026667pt;}
.yeb{bottom:19.040000pt;}
.y10c{bottom:20.320000pt;}
.y57{bottom:21.472000pt;}
.y9{bottom:22.912000pt;}
.y4c{bottom:26.712000pt;}
.y16{bottom:26.720000pt;}
.y10{bottom:29.600000pt;}
.y3f{bottom:29.760000pt;}
.y2b{bottom:30.080000pt;}
.y13b{bottom:30.400000pt;}
.y148{bottom:32.160000pt;}
.y54{bottom:32.680000pt;}
.yff{bottom:35.040000pt;}
.y11e{bottom:35.066667pt;}
.y10b{bottom:36.000000pt;}
.y6{bottom:36.680000pt;}
.y4b{bottom:40.632000pt;}
.y15{bottom:42.080000pt;}
.y3e{bottom:45.120000pt;}
.y2a{bottom:45.440000pt;}
.yf{bottom:45.920000pt;}
.y43{bottom:50.600000pt;}
.y10a{bottom:51.040000pt;}
.y4a{bottom:54.392000pt;}
.y14{bottom:57.600000pt;}
.y3d{bottom:60.520000pt;}
.y29{bottom:60.800000pt;}
.ye{bottom:61.920000pt;}
.y129{bottom:67.026667pt;}
.y116{bottom:67.040000pt;}
.yf2{bottom:67.080000pt;}
.y49{bottom:68.152000pt;}
.y13{bottom:73.760000pt;}
.y3c{bottom:75.720000pt;}
.y28{bottom:76.160000pt;}
.yd{bottom:80.320000pt;}
.y48{bottom:81.912000pt;}
.yf8{bottom:83.040000pt;}
.y3b{bottom:91.080000pt;}
.y27{bottom:91.360000pt;}
.y47{bottom:95.506667pt;}
.yc{bottom:98.720000pt;}
.y162{bottom:101.472000pt;}
.y8e{bottom:102.112000pt;}
.y1b7{bottom:104.032000pt;}
.y128{bottom:105.800000pt;}
.y3a{bottom:106.440000pt;}
.y26{bottom:106.720000pt;}
.y46{bottom:108.466667pt;}
.y1a1{bottom:109.312000pt;}
.y20e{bottom:111.392000pt;}
.yb7{bottom:111.872000pt;}
.ye1{bottom:116.352000pt;}
.y8d{bottom:118.912000pt;}
.y1b6{bottom:120.832000pt;}
.y39{bottom:121.800000pt;}
.y25{bottom:122.080000pt;}
.y45{bottom:123.826667pt;}
.y1d4{bottom:124.512000pt;}
.y161{bottom:125.952000pt;}
.y1a0{bottom:126.272000pt;}
.y20d{bottom:126.752000pt;}
.yb6{bottom:128.832000pt;}
.y8c{bottom:136.186667pt;}
.y38{bottom:137.160000pt;}
.y24{bottom:137.440000pt;}
.y1b5{bottom:137.626667pt;}
.y12c{bottom:137.800000pt;}
.y44{bottom:139.026667pt;}
.y1d3{bottom:139.866667pt;}
.y20c{bottom:142.106667pt;}
.y19f{bottom:143.066667pt;}
.ye0{bottom:143.226667pt;}
.yb5{bottom:145.626667pt;}
.y160{bottom:148.986667pt;}
.y37{bottom:152.520000pt;}
.y23{bottom:152.800000pt;}
.y8b{bottom:152.986667pt;}
.y12b{bottom:153.800000pt;}
.y1b4{bottom:154.586667pt;}
.y1d2{bottom:155.226667pt;}
.y20b{bottom:157.306667pt;}
.y19e{bottom:160.026667pt;}
.y17d{bottom:162.266667pt;}
.yb4{bottom:162.586667pt;}
.y36{bottom:167.720000pt;}
.y22{bottom:168.000000pt;}
.y12a{bottom:169.800000pt;}
.y8a{bottom:169.946667pt;}
.ydf{bottom:170.106667pt;}
.y1d1{bottom:170.906667pt;}
.y1b3{bottom:171.386667pt;}
.y20a{bottom:172.666667pt;}
.y17c{bottom:176.680000pt;}
.y19d{bottom:176.826667pt;}
.yb3{bottom:179.386667pt;}
.y35{bottom:183.080000pt;}
.y21{bottom:183.360000pt;}
.y125{bottom:185.800000pt;}
.y89{bottom:186.746667pt;}
.y209{bottom:188.026667pt;}
.y1b2{bottom:188.346667pt;}
.y17a{bottom:192.680000pt;}
.y19c{bottom:193.786667pt;}
.yb2{bottom:196.186667pt;}
.yde{bottom:196.826667pt;}
.y34{bottom:198.440000pt;}
.y20{bottom:198.720000pt;}
.y2d{bottom:201.626667pt;}
.y127{bottom:201.800000pt;}
.y1d0{bottom:202.426667pt;}
.y208{bottom:203.386667pt;}
.y88{bottom:203.546667pt;}
.y1b1{bottom:205.146667pt;}
.y19b{bottom:210.586667pt;}
.yb1{bottom:212.826667pt;}
.y33{bottom:213.800000pt;}
.y1f{bottom:214.080000pt;}
.y11d{bottom:217.800000pt;}
.y207{bottom:218.746667pt;}
.y1cf{bottom:219.066667pt;}
.y87{bottom:220.506667pt;}
.y1b0{bottom:221.946667pt;}
.ydd{bottom:223.706667pt;}
.y177{bottom:224.040000pt;}
.y32{bottom:229.160000pt;}
.y1e{bottom:229.440000pt;}
.yb0{bottom:229.946667pt;}
.y122{bottom:233.800000pt;}
.y206{bottom:233.946667pt;}
.y1ce{bottom:234.426667pt;}
.y86{bottom:237.306667pt;}
.y1af{bottom:238.906667pt;}
.y31{bottom:244.520000pt;}
.y1d{bottom:244.800000pt;}
.y19a{bottom:245.466667pt;}
.yaf{bottom:246.906667pt;}
.y205{bottom:249.306667pt;}
.y1cd{bottom:249.466667pt;}
.y11f{bottom:249.800000pt;}
.ydc{bottom:250.626667pt;}
.y85{bottom:254.306667pt;}
.y176{bottom:255.426667pt;}
.y1ae{bottom:255.746667pt;}
.y30{bottom:259.720000pt;}
.y1c{bottom:260.040000pt;}
.y199{bottom:262.306667pt;}
.yae{bottom:263.746667pt;}
.y204{bottom:264.706667pt;}
.y1cc{bottom:265.186667pt;}
.y11b{bottom:265.826667pt;}
.y84{bottom:271.106667pt;}
.y1ad{bottom:272.706667pt;}
.y2f{bottom:275.080000pt;}
.y1b{bottom:275.400000pt;}
.ydb{bottom:277.506667pt;}
.y198{bottom:279.106667pt;}
.y203{bottom:280.066667pt;}
.y1cb{bottom:280.386667pt;}
.yad{bottom:280.546667pt;}
.y11c{bottom:281.826667pt;}
.y83{bottom:287.906667pt;}
.y1ac{bottom:289.506667pt;}
.y175{bottom:289.666667pt;}
.y2e{bottom:290.120000pt;}
.y1a{bottom:290.440000pt;}
.y202{bottom:295.426667pt;}
.y1ca{bottom:295.746667pt;}
.y197{bottom:296.066667pt;}
.yac{bottom:297.506667pt;}
.y115{bottom:297.826667pt;}
.yda{bottom:304.386667pt;}
.y82{bottom:304.866667pt;}
.y1ab{bottom:306.306667pt;}
.y174{bottom:306.466667pt;}
.y1c9{bottom:310.786667pt;}
.y196{bottom:312.866667pt;}
.y11a{bottom:313.826667pt;}
.yab{bottom:314.306667pt;}
.yd9{bottom:321.346667pt;}
.y81{bottom:321.666667pt;}
.y1aa{bottom:323.266667pt;}
.y173{bottom:323.426667pt;}
.y201{bottom:325.986667pt;}
.y1c8{bottom:326.466667pt;}
.y119{bottom:329.826667pt;}
.yaa{bottom:331.266667pt;}
.y80{bottom:338.626667pt;}
.y1a9{bottom:340.066667pt;}
.y172{bottom:340.226667pt;}
.y200{bottom:341.346667pt;}
.y1c7{bottom:341.826667pt;}
.y118{bottom:345.826667pt;}
.y195{bottom:346.626667pt;}
.ya9{bottom:348.066667pt;}
.y7f{bottom:355.426667pt;}
.y1ff{bottom:356.706667pt;}
.y1c6{bottom:356.866667pt;}
.y171{bottom:357.026667pt;}
.y117{bottom:361.826667pt;}
.y194{bottom:363.586667pt;}
.ya8{bottom:364.866667pt;}
.y1fe{bottom:372.066667pt;}
.y7e{bottom:372.386667pt;}
.y1a8{bottom:373.826667pt;}
.y170{bottom:373.986667pt;}
.y111{bottom:377.826667pt;}
.y193{bottom:380.386667pt;}
.ya7{bottom:381.826667pt;}
.y1fd{bottom:387.426667pt;}
.y1c5{bottom:387.746667pt;}
.y7d{bottom:389.186667pt;}
.y1a7{bottom:390.626667pt;}
.y16f{bottom:390.786667pt;}
.y114{bottom:393.826667pt;}
.y15f{bottom:396.386667pt;}
.y192{bottom:397.186667pt;}
.ya6{bottom:398.626667pt;}
.y1c4{bottom:402.786667pt;}
.y7c{bottom:405.986667pt;}
.y1a6{bottom:407.586667pt;}
.y16e{bottom:407.746667pt;}
.y113{bottom:409.826667pt;}
.y15e{bottom:410.786667pt;}
.y191{bottom:414.146667pt;}
.ya5{bottom:415.266667pt;}
.y1fc{bottom:417.986667pt;}
.y1c3{bottom:418.626667pt;}
.y7b{bottom:422.946667pt;}
.y1a5{bottom:424.386667pt;}
.y16d{bottom:424.546667pt;}
.y112{bottom:425.826667pt;}
.y15b{bottom:426.786667pt;}
.y190{bottom:430.946667pt;}
.ya4{bottom:432.386667pt;}
.y1fb{bottom:433.346667pt;}
.y1c2{bottom:435.586667pt;}
.y7a{bottom:439.746667pt;}
.y1a4{bottom:441.346667pt;}
.y109{bottom:441.826667pt;}
.y16c{bottom:444.706667pt;}
.y18f{bottom:447.906667pt;}
.y1fa{bottom:448.706667pt;}
.ya3{bottom:449.186667pt;}
.y1c1{bottom:452.546667pt;}
.y79{bottom:456.706667pt;}
.y110{bottom:457.826667pt;}
.y159{bottom:458.146667pt;}
.y1f9{bottom:464.066667pt;}
.y18e{bottom:464.706667pt;}
.ya2{bottom:466.146667pt;}
.y16b{bottom:469.026667pt;}
.y1c0{bottom:470.306667pt;}
.y78{bottom:473.506667pt;}
.y10f{bottom:473.826667pt;}
.yd8{bottom:475.106667pt;}
.y1f8{bottom:479.426667pt;}
.y18d{bottom:482.626667pt;}
.ya1{bottom:482.946667pt;}
.y1bf{bottom:487.266667pt;}
.y156{bottom:489.506667pt;}
.y10e{bottom:489.826667pt;}
.y77{bottom:490.306667pt;}
.yd7{bottom:491.906667pt;}
.y16a{bottom:492.226667pt;}
.y1f7{bottom:494.786667pt;}
.y18c{bottom:499.586667pt;}
.ya0{bottom:499.906667pt;}
.y19{bottom:504.093333pt;}
.y107{bottom:505.853333pt;}
.y76{bottom:507.293333pt;}
.yd6{bottom:508.733333pt;}
.y1f6{bottom:510.013333pt;}
.y9f{bottom:516.413333pt;}
.y1be{bottom:521.053333pt;}
.y108{bottom:521.853333pt;}
.y155{bottom:523.773333pt;}
.y75{bottom:524.093333pt;}
.y1f5{bottom:525.373333pt;}
.yd5{bottom:525.693333pt;}
.y18b{bottom:533.213333pt;}
.y9e{bottom:533.693333pt;}
.y105{bottom:537.853333pt;}
.y1bd{bottom:538.813333pt;}
.y154{bottom:540.573333pt;}
.y1f4{bottom:540.733333pt;}
.y74{bottom:541.053333pt;}
.yd4{bottom:542.493333pt;}
.y18a{bottom:550.173333pt;}
.y9d{bottom:550.493333pt;}
.y106{bottom:553.853333pt;}
.y1bc{bottom:555.773333pt;}
.y1f3{bottom:556.093333pt;}
.y153{bottom:557.373333pt;}
.y73{bottom:557.853333pt;}
.yd3{bottom:559.453333pt;}
.y9c{bottom:566.973333pt;}
.y102{bottom:569.853333pt;}
.y1f2{bottom:571.453333pt;}
.y1bb{bottom:573.693333pt;}
.y152{bottom:574.333333pt;}
.y72{bottom:574.653333pt;}
.yd2{bottom:576.253333pt;}
.y189{bottom:583.933333pt;}
.y9b{bottom:584.253333pt;}
.y104{bottom:585.853333pt;}
.y1f1{bottom:586.653333pt;}
.y1ba{bottom:590.493333pt;}
.y151{bottom:591.133333pt;}
.y71{bottom:591.613333pt;}
.yd1{bottom:593.053333pt;}
.y188{bottom:600.733333pt;}
.yfe{bottom:601.853333pt;}
.y1f0{bottom:602.013333pt;}
.y9a{bottom:602.173333pt;}
.y1b9{bottom:607.453333pt;}
.y150{bottom:608.093333pt;}
.y70{bottom:608.413333pt;}
.yd0{bottom:609.693333pt;}
.y1a3{bottom:610.013333pt;}
.y1ef{bottom:617.373333pt;}
.y187{bottom:617.693333pt;}
.y101{bottom:617.853333pt;}
.y99{bottom:619.773333pt;}
.y14f{bottom:624.893333pt;}
.y6f{bottom:625.373333pt;}
.ycf{bottom:626.813333pt;}
.y1ee{bottom:632.733333pt;}
.y100{bottom:633.853333pt;}
.y186{bottom:634.493333pt;}
.y98{bottom:637.053333pt;}
.y14e{bottom:641.853333pt;}
.y6e{bottom:642.173333pt;}
.yce{bottom:643.773333pt;}
.y1ed{bottom:648.093333pt;}
.yf7{bottom:649.853333pt;}
.y185{bottom:651.293333pt;}
.y97{bottom:654.973333pt;}
.y14d{bottom:658.653333pt;}
.y6d{bottom:658.973333pt;}
.ycd{bottom:660.573333pt;}
.y1ec{bottom:663.453333pt;}
.yfd{bottom:665.853333pt;}
.y184{bottom:668.253333pt;}
.y96{bottom:672.893333pt;}
.y14c{bottom:675.453333pt;}
.y6c{bottom:675.933333pt;}
.ycc{bottom:677.373333pt;}
.y1eb{bottom:678.653333pt;}
.yfc{bottom:681.853333pt;}
.y183{bottom:685.053333pt;}
.y147{bottom:689.533333pt;}
.y95{bottom:690.813333pt;}
.y6b{bottom:692.733333pt;}
.y1ea{bottom:694.013333pt;}
.ycb{bottom:694.333333pt;}
.yfb{bottom:697.853333pt;}
.y182{bottom:702.013333pt;}
.y94{bottom:708.733333pt;}
.y14b{bottom:709.213333pt;}
.y1e9{bottom:709.373333pt;}
.y6a{bottom:709.693333pt;}
.yca{bottom:711.133333pt;}
.yfa{bottom:713.853333pt;}
.y181{bottom:718.973333pt;}
.y1e8{bottom:724.733333pt;}
.y93{bottom:726.173333pt;}
.y69{bottom:726.493333pt;}
.yc9{bottom:728.093333pt;}
.y14a{bottom:728.893333pt;}
.yf9{bottom:729.853333pt;}
.y169{bottom:735.613333pt;}
.y1e7{bottom:740.093333pt;}
.y180{bottom:740.413333pt;}
.y68{bottom:743.293333pt;}
.yc8{bottom:744.893333pt;}
.yf1{bottom:745.853333pt;}
.y144{bottom:748.733333pt;}
.y167{bottom:750.013333pt;}
.y1e6{bottom:755.493333pt;}
.y67{bottom:760.293333pt;}
.yc7{bottom:761.413333pt;}
.y1a2{bottom:761.733333pt;}
.yf6{bottom:761.893333pt;}
.y17f{bottom:764.933333pt;}
.y166{bottom:766.053333pt;}
.y143{bottom:768.453333pt;}
.y1e5{bottom:770.693333pt;}
.y66{bottom:777.093333pt;}
.y1b8{bottom:777.253333pt;}
.yf5{bottom:777.893333pt;}
.yc6{bottom:778.693333pt;}
.y13a{bottom:784.453333pt;}
.y1e4{bottom:786.053333pt;}
.y17e{bottom:788.133333pt;}
.yf4{bottom:793.893333pt;}
.y65{bottom:794.053333pt;}
.yc5{bottom:795.493333pt;}
.y165{bottom:797.413333pt;}
.y1e3{bottom:801.413333pt;}
.y13e{bottom:804.133333pt;}
.y12{bottom:806.853333pt;}
.yf3{bottom:809.893333pt;}
.y92{bottom:810.533333pt;}
.y64{bottom:810.853333pt;}
.yc4{bottom:812.453333pt;}
.y1e2{bottom:816.773333pt;}
.y13d{bottom:823.813333pt;}
.yef{bottom:825.893333pt;}
.y63{bottom:827.813333pt;}
.y164{bottom:828.773333pt;}
.yc3{bottom:829.253333pt;}
.y1e1{bottom:832.133333pt;}
.y138{bottom:839.813333pt;}
.yf0{bottom:841.893333pt;}
.y62{bottom:844.613333pt;}
.yc2{bottom:846.213333pt;}
.y1e0{bottom:847.493333pt;}
.y136{bottom:857.253333pt;}
.yed{bottom:857.893333pt;}
.y91{bottom:861.093333pt;}
.y61{bottom:861.413333pt;}
.y1df{bottom:862.693333pt;}
.yc1{bottom:863.013333pt;}
.yee{bottom:873.893333pt;}
.y1de{bottom:878.053333pt;}
.y60{bottom:878.373333pt;}
.yc0{bottom:879.813333pt;}
.yea{bottom:889.893333pt;}
.yb{bottom:891.493333pt;}
.y1dd{bottom:893.413333pt;}
.y5f{bottom:895.173333pt;}
.ybf{bottom:896.773333pt;}
.yec{bottom:905.893333pt;}
.y135{bottom:908.293333pt;}
.y1dc{bottom:908.773333pt;}
.y5e{bottom:912.133333pt;}
.ybe{bottom:913.573333pt;}
.ye9{bottom:921.893333pt;}
.y1db{bottom:924.133333pt;}
.y134{bottom:925.253333pt;}
.y5d{bottom:928.933333pt;}
.ybd{bottom:930.533333pt;}
.ye8{bottom:937.893333pt;}
.y1da{bottom:939.333333pt;}
.y133{bottom:942.053333pt;}
.y5c{bottom:945.733333pt;}
.ybc{bottom:947.333333pt;}
.ye7{bottom:953.893333pt;}
.y1d9{bottom:954.693333pt;}
.y132{bottom:959.013333pt;}
.y90{bottom:962.373333pt;}
.y5b{bottom:962.693333pt;}
.ybb{bottom:964.133333pt;}
.ye5{bottom:969.893333pt;}
.y1d8{bottom:970.053333pt;}
.y131{bottom:975.813333pt;}
.y5a{bottom:979.493333pt;}
.yba{bottom:981.093333pt;}
.y1d7{bottom:985.413333pt;}
.ye3{bottom:985.893333pt;}
.y130{bottom:995.973333pt;}
.y8f{bottom:996.133333pt;}
.y59{bottom:996.453333pt;}
.yb9{bottom:997.893333pt;}
.y1d6{bottom:1000.773333pt;}
.ya{bottom:1008.640000pt;}
.y58{bottom:1013.440000pt;}
.ye2{bottom:1014.400000pt;}
.yb8{bottom:1014.560000pt;}
.y163{bottom:1014.880000pt;}
.y1d5{bottom:1016.160000pt;}
.y5{bottom:1017.280000pt;}
.y12f{bottom:1018.560000pt;}
.y3{bottom:1026.880000pt;}
.y53{bottom:1048.000000pt;}
.y1{bottom:1056.320000pt;}
.y52{bottom:1063.360000pt;}
.h23{height:15.346667pt;}
.h32{height:15.352000pt;}
.h28{height:15.360000pt;}
.h30{height:15.378667pt;}
.h26{height:15.380000pt;}
.h2c{height:15.386667pt;}
.h7{height:18.872000pt;}
.h35{height:19.026667pt;}
.h38{height:19.040000pt;}
.h36{height:19.060000pt;}
.h1d{height:19.672000pt;}
.hb{height:26.381250pt;}
.h2{height:28.480000pt;}
.h4{height:28.800000pt;}
.h5{height:30.240000pt;}
.h33{height:30.546667pt;}
.h39{height:30.586667pt;}
.h3a{height:30.706667pt;}
.h3b{height:30.738667pt;}
.h24{height:31.346667pt;}
.h2a{height:31.360000pt;}
.h14{height:33.918750pt;}
.h13{height:36.431250pt;}
.h12{height:40.003750pt;}
.h1a{height:42.063437pt;}
.h6{height:42.084375pt;}
.h16{height:44.327188pt;}
.h3c{height:45.131250pt;}
.h18{height:45.546250pt;}
.h1c{height:47.085938pt;}
.h1b{height:47.109375pt;}
.h29{height:47.360000pt;}
.h2f{height:47.378667pt;}
.h3{height:48.000000pt;}
.hf{height:49.133750pt;}
.h1e{height:49.336436pt;}
.h22{height:50.025000pt;}
.h8{height:52.108438pt;}
.h9{height:52.134375pt;}
.he{height:53.535000pt;}
.h34{height:54.706667pt;}
.h1f{height:57.787500pt;}
.h37{height:58.400000pt;}
.ha{height:58.563750pt;}
.h20{height:59.340000pt;}
.h21{height:60.519362pt;}
.h2d{height:63.346667pt;}
.h2b{height:63.386667pt;}
.hd{height:64.500000pt;}
.h2e{height:79.346667pt;}
.h31{height:79.352000pt;}
.h25{height:79.380000pt;}
.h10{height:83.540625pt;}
.h11{height:84.640000pt;}
.h27{height:95.360000pt;}
.hc{height:113.466667pt;}
.h19{height:151.032000pt;}
.h17{height:302.466667pt;}
.h15{height:302.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.586667pt;}
.w7{width:27.026667pt;}
.w22{width:47.666667pt;}
.w23{width:51.026667pt;}
.w19{width:51.826667pt;}
.w25{width:52.320000pt;}
.w26{width:56.672000pt;}
.w17{width:57.632000pt;}
.w21{width:59.538667pt;}
.w1a{width:60.818667pt;}
.w18{width:60.946667pt;}
.w27{width:60.978667pt;}
.w16{width:61.600000pt;}
.wd{width:62.226667pt;}
.w1b{width:62.386667pt;}
.w20{width:63.346667pt;}
.w1f{width:63.392000pt;}
.w15{width:66.880000pt;}
.wc{width:69.618667pt;}
.w1d{width:72.000000pt;}
.w1e{width:82.400000pt;}
.w10{width:115.346667pt;}
.w11{width:123.538667pt;}
.wb{width:131.858667pt;}
.w13{width:155.066667pt;}
.w1c{width:165.453333pt;}
.w14{width:182.738667pt;}
.w24{width:198.098667pt;}
.w12{width:210.898667pt;}
.w9{width:217.138667pt;}
.wa{width:255.226667pt;}
.wf{width:365.973333pt;}
.w6{width:579.920000pt;}
.w3{width:585.840000pt;}
.w8{width:604.240000pt;}
.w2{width:604.720000pt;}
.we{width:604.880000pt;}
.w5{width:614.493333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.192000pt;}
.x35{left:8.640000pt;}
.x22{left:9.746667pt;}
.x19{left:11.026667pt;}
.x34{left:12.466667pt;}
.x2{left:13.592000pt;}
.x2e{left:14.586667pt;}
.x24{left:15.680000pt;}
.x10{left:16.640000pt;}
.x29{left:18.400000pt;}
.xc{left:20.160000pt;}
.x32{left:21.440000pt;}
.xb{left:22.400000pt;}
.x1d{left:24.480000pt;}
.x1e{left:28.186667pt;}
.x1b{left:31.066667pt;}
.x1a{left:37.626667pt;}
.x36{left:41.120000pt;}
.x8{left:48.634667pt;}
.x7{left:57.914667pt;}
.x5{left:85.160000pt;}
.x9{left:86.394667pt;}
.x1{left:94.600000pt;}
.xe{left:98.074667pt;}
.x17{left:99.040000pt;}
.x15{left:118.272000pt;}
.x14{left:141.626667pt;}
.xf{left:154.914667pt;}
.xd{left:179.234667pt;}
.x1f{left:182.906667pt;}
.x2b{left:259.906667pt;}
.x23{left:277.186667pt;}
.x37{left:292.546667pt;}
.xa{left:305.794667pt;}
.x16{left:311.586667pt;}
.x2c{left:331.906667pt;}
.x2a{left:333.186667pt;}
.x11{left:338.946667pt;}
.x25{left:344.066667pt;}
.x4{left:396.866667pt;}
.x26{left:405.666667pt;}
.x2d{left:414.306667pt;}
.x20{left:460.426667pt;}
.x27{left:463.306667pt;}
.x2f{left:477.706667pt;}
.x28{left:524.266667pt;}
.x30{left:541.066667pt;}
.x18{left:566.826667pt;}
.x21{left:575.786667pt;}
.x31{left:600.613333pt;}
.x1c{left:636.453333pt;}
.x33{left:648.293333pt;}
.x6{left:671.013333pt;}
.x12{left:674.373333pt;}
.x13{left:699.333333pt;}
}




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