
    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_85956371301b63b85a24d9ed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ebbefa25c76fb69e7a1796a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.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_b0ecff7bee3e673f365a060d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_96463ac26654d2731c1e074a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c2000ec4446b98f82f85fdab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e39a26de6fa2d04ce7184251.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_d1c427bc7705f7dd71887b86.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fb12dd94fa4a2293c55c1999.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773926;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);}
.v4{vertical-align:-69.120000px;}
.v3{vertical-align:-66.384000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls2f{letter-spacing:-0.942000px;}
.ls12{letter-spacing:-0.612000px;}
.ls1f{letter-spacing:-0.584400px;}
.ls18{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.269400px;}
.ls36{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.178800px;}
.ls9{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.033840px;}
.lsd{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.119520px;}
.ls25{letter-spacing:0.135600px;}
.ls1e{letter-spacing:0.144720px;}
.ls10{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181200px;}
.ls2d{letter-spacing:0.206400px;}
.ls2a{letter-spacing:0.206640px;}
.ls20{letter-spacing:0.223800px;}
.ls8{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.531360px;}
.ls34{letter-spacing:1.080000px;}
.ls38{letter-spacing:2.520000px;}
.ls2e{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.220000px;}
.ls32{letter-spacing:5.400000px;}
.ls35{letter-spacing:6.240000px;}
.ls27{letter-spacing:6.660000px;}
.ls4{letter-spacing:7.380000px;}
.ls37{letter-spacing:7.560000px;}
.lsf{letter-spacing:8.100000px;}
.ls29{letter-spacing:10.260000px;}
.ls24{letter-spacing:12.600000px;}
.ls2b{letter-spacing:13.140000px;}
.ls39{letter-spacing:14.040000px;}
.ls23{letter-spacing:18.900000px;}
.ls3{letter-spacing:26.820000px;}
.ls22{letter-spacing:38.340000px;}
.ls1d{letter-spacing:45.540000px;}
.ls1a{letter-spacing:48.186720px;}
.ls33{letter-spacing:54.180000px;}
.ls31{letter-spacing:59.220000px;}
.ls5{letter-spacing:66.162720px;}
.lsb{letter-spacing:112.476000px;}
.ls15{letter-spacing:200.316000px;}
.ls13{letter-spacing:226.236000px;}
.ls14{letter-spacing:373.836000px;}
.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;}
}
.ws16{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.wsf{word-spacing:-14.355600px;}
.ws4{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws1a{word-spacing:-12.888000px;}
.wsd{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.060000px;}
.ws19{word-spacing:-11.881200px;}
.ws11{word-spacing:-11.790600px;}
.ws17{word-spacing:-11.700000px;}
.ws18{word-spacing:-11.118000px;}
.wsc{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-3.285360px;}
._13{margin-left:-2.188320px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._7{width:3.672000px;}
._a{width:4.914000px;}
._4{width:6.840000px;}
._b{width:8.423280px;}
._6{width:9.774000px;}
._10{width:10.790640px;}
._f{width:12.101040px;}
._14{width:13.878480px;}
._8{width:15.498000px;}
._9{width:16.968000px;}
._c{width:18.900000px;}
._d{width:20.040960px;}
._19{width:21.394080px;}
._29{width:22.834560px;}
._e{width:26.298000px;}
._15{width:27.324480px;}
._16{width:28.542480px;}
._1a{width:30.136080px;}
._1d{width:33.506640px;}
._2c{width:34.614000px;}
._21{width:35.708160px;}
._1e{width:36.793440px;}
._22{width:38.312160px;}
._24{width:41.137200px;}
._23{width:42.228000px;}
._1c{width:50.119920px;}
._27{width:55.328880px;}
._28{width:56.340000px;}
._26{width:58.589280px;}
._1f{width:59.828160px;}
._20{width:62.016480px;}
._2a{width:67.031280px;}
._2b{width:68.797440px;}
._25{width:70.872000px;}
._5{width:155.700000px;}
._17{width:509.086560px;}
._11{width:735.660000px;}
._18{width:865.686720px;}
._12{width:1073.100000px;}
._3{width:1101.912000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs3{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:2.520000px;}
.yf6{bottom:2.565000px;}
.y34{bottom:2.880000px;}
.y1fa{bottom:3.060000px;}
.y14{bottom:3.240000px;}
.y16a{bottom:3.600000px;}
.y168{bottom:3.780000px;}
.y3c{bottom:9.045000px;}
.y42{bottom:12.240000px;}
.ycf{bottom:16.200000px;}
.ye5{bottom:16.380000px;}
.yf4{bottom:16.425000px;}
.y33{bottom:18.360000px;}
.y1f9{bottom:18.540000px;}
.y207{bottom:18.576000px;}
.y19{bottom:20.340000px;}
.y175{bottom:20.550000px;}
.y1eb{bottom:24.300000px;}
.y1de{bottom:25.200000px;}
.y41{bottom:29.520000px;}
.y10e{bottom:30.060000px;}
.y106{bottom:30.240000px;}
.y211{bottom:33.840000px;}
.y32{bottom:34.020000px;}
.y206{bottom:34.050000px;}
.y18{bottom:37.620000px;}
.y174{bottom:37.650000px;}
.y1ea{bottom:39.810000px;}
.y20f{bottom:40.680000px;}
.y1fd{bottom:40.890000px;}
.y40{bottom:46.800000px;}
.y31{bottom:49.500000px;}
.y205{bottom:49.530000px;}
.y1f8{bottom:49.545000px;}
.y17{bottom:54.900000px;}
.y173{bottom:54.930000px;}
.y1db{bottom:55.260000px;}
.y1e9{bottom:55.290000px;}
.y209{bottom:56.340000px;}
.y3f{bottom:64.080000px;}
.y30{bottom:64.980000px;}
.y1f7{bottom:65.025000px;}
.y204{bottom:65.190000px;}
.y3b{bottom:66.105000px;}
.y1da{bottom:70.740000px;}
.y1d4{bottom:70.770000px;}
.y1e8{bottom:70.950000px;}
.ye9{bottom:71.640000px;}
.y172{bottom:72.210000px;}
.y2f{bottom:80.460000px;}
.y203{bottom:80.670000px;}
.y1f6{bottom:80.685000px;}
.y16{bottom:81.180000px;}
.y1d9{bottom:86.220000px;}
.y1d3{bottom:86.250000px;}
.y1e7{bottom:86.430000px;}
.y214{bottom:87.300000px;}
.y1ee{bottom:87.525000px;}
.y5{bottom:88.200000px;}
.y3e{bottom:90.180000px;}
.y210{bottom:95.940000px;}
.y2e{bottom:96.120000px;}
.y202{bottom:96.150000px;}
.y1f5{bottom:96.165000px;}
.y1d2{bottom:101.730000px;}
.y1d8{bottom:101.880000px;}
.y1e6{bottom:101.910000px;}
.y208{bottom:109.260000px;}
.y2d{bottom:111.600000px;}
.y201{bottom:111.630000px;}
.y1f4{bottom:111.645000px;}
.yda{bottom:112.860000px;}
.y1d7{bottom:117.360000px;}
.y1d1{bottom:117.390000px;}
.y193{bottom:118.980000px;}
.yc2{bottom:120.240000px;}
.y1ce{bottom:121.680000px;}
.y1fc{bottom:122.940000px;}
.y13d{bottom:123.120000px;}
.y2c{bottom:127.080000px;}
.y1e2{bottom:127.125000px;}
.y200{bottom:127.290000px;}
.y4a{bottom:127.620000px;}
.y87{bottom:128.160000px;}
.yd9{bottom:130.140000px;}
.y192{bottom:132.840000px;}
.y1d0{bottom:132.870000px;}
.y1e5{bottom:133.050000px;}
.y15c{bottom:135.036000px;}
.y109{bottom:135.576000px;}
.yc1{bottom:137.556000px;}
.y13c{bottom:140.436000px;}
.y2b{bottom:142.560000px;}
.y1e1{bottom:142.605000px;}
.y1ff{bottom:142.770000px;}
.y1f3{bottom:142.785000px;}
.y49{bottom:144.936000px;}
.y86{bottom:145.476000px;}
.y191{bottom:146.736000px;}
.yd8{bottom:147.456000px;}
.y1d6{bottom:148.320000px;}
.y1cf{bottom:148.350000px;}
.y1e4{bottom:148.530000px;}
.yc9{bottom:149.616000px;}
.y105{bottom:150.330000px;}
.y15b{bottom:152.310000px;}
.yc0{bottom:154.830000px;}
.y13b{bottom:157.710000px;}
.y2a{bottom:158.040000px;}
.y20d{bottom:158.220000px;}
.y1fe{bottom:158.250000px;}
.y1e0{bottom:158.265000px;}
.y190{bottom:160.410000px;}
.yc8{bottom:160.950000px;}
.y48{bottom:162.210000px;}
.y85{bottom:162.750000px;}
.y108{bottom:164.190000px;}
.yd7{bottom:164.550000px;}
.y15a{bottom:169.590000px;}
.ybf{bottom:171.750000px;}
.y20c{bottom:173.700000px;}
.y29{bottom:173.730000px;}
.y1df{bottom:173.745000px;}
.y18f{bottom:174.270000px;}
.y13a{bottom:174.990000px;}
.y107{bottom:178.050000px;}
.y47{bottom:179.310000px;}
.y84{bottom:179.850000px;}
.yd6{bottom:181.830000px;}
.y159{bottom:186.870000px;}
.ybe{bottom:187.590000px;}
.y18e{bottom:188.130000px;}
.y20b{bottom:189.180000px;}
.y28{bottom:189.210000px;}
.y1f2{bottom:189.225000px;}
.y103{bottom:191.730000px;}
.y139{bottom:192.270000px;}
.y46{bottom:196.590000px;}
.y83{bottom:197.130000px;}
.yd5{bottom:199.110000px;}
.y18d{bottom:201.810000px;}
.y158{bottom:204.150000px;}
.y20a{bottom:204.660000px;}
.y27{bottom:204.690000px;}
.ybd{bottom:204.870000px;}
.y1f1{bottom:204.885000px;}
.y104{bottom:205.590000px;}
.y138{bottom:209.550000px;}
.y45{bottom:213.870000px;}
.y82{bottom:214.410000px;}
.yd4{bottom:215.670000px;}
.y101{bottom:219.450000px;}
.y26{bottom:220.170000px;}
.y1f0{bottom:220.365000px;}
.y157{bottom:221.250000px;}
.ybc{bottom:222.150000px;}
.y137{bottom:226.650000px;}
.yd3{bottom:229.350000px;}
.y18c{bottom:229.530000px;}
.y44{bottom:231.150000px;}
.y81{bottom:231.690000px;}
.y102{bottom:233.130000px;}
.y215{bottom:235.650000px;}
.y25{bottom:235.830000px;}
.y1ef{bottom:235.845000px;}
.y156{bottom:238.530000px;}
.ybb{bottom:239.250000px;}
.yd2{bottom:241.410000px;}
.y18b{bottom:243.210000px;}
.y136{bottom:243.930000px;}
.y3a{bottom:246.645000px;}
.yff{bottom:246.990000px;}
.y43{bottom:248.430000px;}
.y80{bottom:248.970000px;}
.y24{bottom:251.310000px;}
.yd1{bottom:255.270000px;}
.y155{bottom:255.810000px;}
.yba{bottom:256.530000px;}
.y18a{bottom:257.070000px;}
.y100{bottom:260.850000px;}
.y135{bottom:261.210000px;}
.y39{bottom:263.955000px;}
.y3d{bottom:264.630000px;}
.y7f{bottom:265.530000px;}
.y23{bottom:266.790000px;}
.yce{bottom:269.850000px;}
.y189{bottom:270.930000px;}
.y154{bottom:273.090000px;}
.yb9{bottom:273.450000px;}
.yfd{bottom:274.530000px;}
.y134{bottom:278.490000px;}
.y7e{bottom:279.930000px;}
.y38{bottom:281.235000px;}
.y22{bottom:282.270000px;}
.y188{bottom:285.330000px;}
.y1cd{bottom:286.230000px;}
.yfe{bottom:288.390000px;}
.yb8{bottom:289.290000px;}
.y153{bottom:290.370000px;}
.y133{bottom:295.770000px;}
.y7d{bottom:297.210000px;}
.y21{bottom:297.930000px;}
.y37{bottom:298.515000px;}
.y1cc{bottom:300.630000px;}
.y187{bottom:301.890000px;}
.yfb{bottom:302.070000px;}
.yb7{bottom:306.570000px;}
.y152{bottom:306.930000px;}
.y132{bottom:313.050000px;}
.y20{bottom:313.410000px;}
.y7c{bottom:314.490000px;}
.y186{bottom:315.750000px;}
.y36{bottom:315.795000px;}
.yfc{bottom:315.930000px;}
.y1cb{bottom:317.190000px;}
.ycd{bottom:317.910000px;}
.y151{bottom:320.610000px;}
.yb6{bottom:323.850000px;}
.y1fb{bottom:325.830000px;}
.y1f{bottom:328.890000px;}
.yf9{bottom:329.790000px;}
.y131{bottom:330.150000px;}
.y1ca{bottom:331.050000px;}
.y7b{bottom:331.770000px;}
.y150{bottom:335.190000px;}
.yb5{bottom:341.130000px;}
.y1ed{bottom:341.310000px;}
.y35{bottom:341.895000px;}
.yfa{bottom:343.470000px;}
.y1e{bottom:344.370000px;}
.y1c9{bottom:344.730000px;}
.y130{bottom:347.430000px;}
.y7a{bottom:349.050000px;}
.y14f{bottom:352.470000px;}
.yf7{bottom:357.330000px;}
.yb4{bottom:358.410000px;}
.y1c8{bottom:358.590000px;}
.y1d{bottom:360.030000px;}
.ycc{bottom:362.730000px;}
.y12f{bottom:364.710000px;}
.y79{bottom:365.430000px;}
.y14e{bottom:369.750000px;}
.yf8{bottom:371.190000px;}
.y1c7{bottom:372.450000px;}
.ycb{bottom:374.070000px;}
.yb3{bottom:375.510000px;}
.y1a{bottom:378.570000px;}
.y78{bottom:380.010000px;}
.y185{bottom:381.270000px;}
.y12e{bottom:381.990000px;}
.yf3{bottom:384.870000px;}
.y1c6{bottom:386.130000px;}
.y14d{bottom:386.850000px;}
.yb2{bottom:392.835000px;}
.y184{bottom:395.175000px;}
.y77{bottom:397.335000px;}
.yf5{bottom:398.775000px;}
.y12d{bottom:399.315000px;}
.y1c5{bottom:400.035000px;}
.y14c{bottom:404.175000px;}
.y183{bottom:409.575000px;}
.yb1{bottom:410.115000px;}
.yf1{bottom:412.635000px;}
.y1c4{bottom:413.895000px;}
.y76{bottom:414.615000px;}
.y12c{bottom:416.595000px;}
.y14b{bottom:421.455000px;}
.yf2{bottom:426.315000px;}
.y182{bottom:426.855000px;}
.yb0{bottom:427.395000px;}
.y1c3{bottom:427.575000px;}
.y216{bottom:430.635000px;}
.y75{bottom:431.895000px;}
.y12b{bottom:433.695000px;}
.y14a{bottom:438.735000px;}
.yef{bottom:440.175000px;}
.y1c2{bottom:441.435000px;}
.y181{bottom:444.135000px;}
.yaf{bottom:444.315000px;}
.y213{bottom:444.675000px;}
.y1b{bottom:447.015000px;}
.y74{bottom:448.995000px;}
.y12a{bottom:450.975000px;}
.yf0{bottom:454.035000px;}
.y1c1{bottom:455.295000px;}
.y149{bottom:456.015000px;}
.yae{bottom:460.155000px;}
.y180{bottom:461.415000px;}
.y73{bottom:466.275000px;}
.y1c{bottom:466.995000px;}
.ye8{bottom:467.715000px;}
.y129{bottom:468.255000px;}
.y1c0{bottom:468.975000px;}
.y148{bottom:473.115000px;}
.yad{bottom:477.435000px;}
.y17f{bottom:477.795000px;}
.yee{bottom:481.575000px;}
.y1bf{bottom:482.835000px;}
.y72{bottom:483.555000px;}
.y128{bottom:485.535000px;}
.y147{bottom:490.395000px;}
.y17e{bottom:491.655000px;}
.yac{bottom:494.715000px;}
.yed{bottom:495.435000px;}
.y1be{bottom:496.695000px;}
.y71{bottom:500.835000px;}
.y127{bottom:502.815000px;}
.y17d{bottom:506.235000px;}
.y146{bottom:507.675000px;}
.yec{bottom:509.115000px;}
.y1bd{bottom:510.375000px;}
.yab{bottom:511.815000px;}
.y70{bottom:517.395000px;}
.y126{bottom:519.915000px;}
.yeb{bottom:522.975000px;}
.y17c{bottom:523.515000px;}
.y1bc{bottom:524.235000px;}
.y145{bottom:524.955000px;}
.yaa{bottom:528.915000px;}
.y6f{bottom:531.795000px;}
.yea{bottom:536.835000px;}
.y125{bottom:537.195000px;}
.y1bb{bottom:538.095000px;}
.y17b{bottom:539.895000px;}
.y144{bottom:542.235000px;}
.ya9{bottom:544.395000px;}
.y6e{bottom:549.075000px;}
.ye6{bottom:550.515000px;}
.y1ba{bottom:551.775000px;}
.y17a{bottom:553.755000px;}
.y124{bottom:554.475000px;}
.y143{bottom:559.515000px;}
.ya8{bottom:560.235000px;}
.ye7{bottom:564.375000px;}
.y1b9{bottom:565.635000px;}
.y6d{bottom:566.355000px;}
.y179{bottom:568.335000px;}
.y123{bottom:571.755000px;}
.y142{bottom:576.615000px;}
.ya7{bottom:577.515000px;}
.ye4{bottom:578.955000px;}
.y1b8{bottom:579.495000px;}
.y6c{bottom:583.635000px;}
.y178{bottom:585.615000px;}
.y122{bottom:589.035000px;}
.y1ec{bottom:590.835000px;}
.y1b7{bottom:593.175000px;}
.yc7{bottom:593.895000px;}
.ya6{bottom:594.615000px;}
.y6b{bottom:600.915000px;}
.y177{bottom:601.995000px;}
.y1e3{bottom:604.515000px;}
.y121{bottom:606.315000px;}
.y1b6{bottom:607.035000px;}
.yc6{bottom:611.175000px;}
.ya5{bottom:611.895000px;}
.y176{bottom:615.855000px;}
.y6a{bottom:618.015000px;}
.y1b5{bottom:620.895000px;}
.y120{bottom:623.415000px;}
.y171{bottom:627.195000px;}
.ye3{bottom:627.735000px;}
.yc5{bottom:628.455000px;}
.ya4{bottom:629.175000px;}
.y1b4{bottom:634.575000px;}
.y69{bottom:635.295000px;}
.y11f{bottom:640.725000px;}
.ye2{bottom:645.045000px;}
.yc4{bottom:645.765000px;}
.ya3{bottom:646.485000px;}
.y1b3{bottom:648.465000px;}
.yca{bottom:649.185000px;}
.y68{bottom:652.605000px;}
.y11e{bottom:658.005000px;}
.yc3{bottom:659.625000px;}
.ye1{bottom:662.325000px;}
.y141{bottom:663.045000px;}
.ya2{bottom:663.765000px;}
.y67{bottom:669.885000px;}
.y11d{bottom:675.285000px;}
.y1b2{bottom:676.005000px;}
.ye0{bottom:679.605000px;}
.y140{bottom:680.145000px;}
.ya1{bottom:681.045000px;}
.y66{bottom:687.165000px;}
.y1b1{bottom:689.865000px;}
.y11c{bottom:692.565000px;}
.y212{bottom:694.005000px;}
.ydf{bottom:696.705000px;}
.y13f{bottom:697.425000px;}
.ya0{bottom:698.145000px;}
.y65{bottom:703.725000px;}
.y20e{bottom:707.865000px;}
.y11b{bottom:709.125000px;}
.yde{bottom:713.985000px;}
.y13e{bottom:714.705000px;}
.y9f{bottom:715.425000px;}
.y170{bottom:715.965000px;}
.y64{bottom:717.405000px;}
.y11a{bottom:722.805000px;}
.y16f{bottom:728.025000px;}
.ydd{bottom:731.265000px;}
.y63{bottom:731.985000px;}
.y9e{bottom:732.705000px;}
.y119{bottom:734.865000px;}
.y15{bottom:744.405000px;}
.y1b0{bottom:745.125000px;}
.y16e{bottom:745.305000px;}
.ydc{bottom:748.725000px;}
.y62{bottom:749.265000px;}
.y9d{bottom:749.985000px;}
.y1af{bottom:758.805000px;}
.y117{bottom:762.405000px;}
.ydb{bottom:766.365000px;}
.y61{bottom:766.545000px;}
.y9c{bottom:767.265000px;}
.y1ae{bottom:772.665000px;}
.y118{bottom:776.265000px;}
.y16d{bottom:779.685000px;}
.y1dd{bottom:780.405000px;}
.y60{bottom:783.645000px;}
.y9b{bottom:784.545000px;}
.y1ad{bottom:786.525000px;}
.y115{bottom:790.125000px;}
.y16c{bottom:796.965000px;}
.y1ac{bottom:800.205000px;}
.y5f{bottom:800.925000px;}
.y9a{bottom:801.645000px;}
.y116{bottom:803.805000px;}
.y1ab{bottom:814.065000px;}
.y16b{bottom:814.245000px;}
.y113{bottom:817.665000px;}
.y5e{bottom:818.205000px;}
.y99{bottom:818.925000px;}
.y1aa{bottom:827.745000px;}
.y114{bottom:831.525000px;}
.y5d{bottom:835.485000px;}
.y98{bottom:836.205000px;}
.y1a9{bottom:841.605000px;}
.y111{bottom:845.205000px;}
.y169{bottom:848.625000px;}
.y13{bottom:849.345000px;}
.y5c{bottom:852.765000px;}
.y97{bottom:853.485000px;}
.y1a8{bottom:855.465000px;}
.y112{bottom:859.065000px;}
.y167{bottom:865.905000px;}
.y1a7{bottom:869.145000px;}
.y5b{bottom:869.865000px;}
.y96{bottom:870.765000px;}
.y10f{bottom:872.925000px;}
.y12{bottom:881.025000px;}
.y1a6{bottom:883.005000px;}
.y166{bottom:883.905000px;}
.y110{bottom:886.605000px;}
.y5a{bottom:887.145000px;}
.y95{bottom:887.865000px;}
.y1a5{bottom:896.910000px;}
.y11{bottom:898.350000px;}
.y10d{bottom:901.230000px;}
.y59{bottom:904.470000px;}
.y94{bottom:905.190000px;}
.y1a4{bottom:910.590000px;}
.y165{bottom:919.050000px;}
.y10{bottom:919.410000px;}
.y58{bottom:921.750000px;}
.y93{bottom:922.470000px;}
.y1a3{bottom:924.450000px;}
.yf{bottom:933.090000px;}
.y164{bottom:936.330000px;}
.y1a2{bottom:938.310000px;}
.y57{bottom:939.030000px;}
.y92{bottom:939.750000px;}
.y10c{bottom:946.590000px;}
.ye{bottom:946.950000px;}
.y1a1{bottom:951.990000px;}
.y163{bottom:953.610000px;}
.y56{bottom:956.310000px;}
.y91{bottom:957.030000px;}
.yd{bottom:960.810000px;}
.y1a0{bottom:965.850000px;}
.y1dc{bottom:967.650000px;}
.y162{bottom:969.990000px;}
.yc{bottom:970.710000px;}
.y55{bottom:973.410000px;}
.y90{bottom:974.310000px;}
.y19f{bottom:979.710000px;}
.y10b{bottom:980.430000px;}
.y1d5{bottom:981.510000px;}
.y161{bottom:983.850000px;}
.yb{bottom:987.990000px;}
.y54{bottom:990.690000px;}
.y8f{bottom:991.410000px;}
.y19e{bottom:993.390000px;}
.y10a{bottom:994.290000px;}
.y160{bottom:998.430000px;}
.ya{bottom:1005.270000px;}
.y19d{bottom:1007.250000px;}
.y53{bottom:1007.970000px;}
.y8e{bottom:1008.690000px;}
.y15f{bottom:1015.710000px;}
.y19c{bottom:1021.110000px;}
.y9{bottom:1022.550000px;}
.y52{bottom:1025.250000px;}
.y8d{bottom:1025.970000px;}
.y15e{bottom:1032.090000px;}
.y19b{bottom:1034.790000px;}
.y8{bottom:1039.830000px;}
.y51{bottom:1042.530000px;}
.y8c{bottom:1043.250000px;}
.y15d{bottom:1045.950000px;}
.y19a{bottom:1048.650000px;}
.y7{bottom:1059.090000px;}
.y50{bottom:1059.810000px;}
.y8b{bottom:1060.530000px;}
.y199{bottom:1062.510000px;}
.y198{bottom:1076.190000px;}
.y4f{bottom:1076.910000px;}
.y8a{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y197{bottom:1090.050000px;}
.y4e{bottom:1094.190000px;}
.y89{bottom:1094.910000px;}
.y196{bottom:1103.910000px;}
.y4d{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y195{bottom:1117.590000px;}
.y4c{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y194{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y88{bottom:1160.640000px;}
.y4b{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h28{height:2.826563px;}
.h1e{height:13.680000px;}
.h1a{height:13.860000px;}
.h1f{height:13.860150px;}
.h21{height:13.896000px;}
.h2d{height:15.480000px;}
.h13{height:17.100000px;}
.h16{height:17.280000px;}
.h24{height:17.316000px;}
.h7{height:26.280000px;}
.h19{height:27.540000px;}
.h23{height:27.576000px;}
.h1c{height:27.720000px;}
.h20{height:27.756000px;}
.h6{height:29.678906px;}
.h2b{height:39.049805px;}
.h22{height:41.400000px;}
.h15{height:43.215117px;}
.h14{height:47.344922px;}
.h26{height:47.678906px;}
.h17{height:48.616875px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.hd{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h18{height:59.038594px;}
.h2{height:60.226875px;}
.h1b{height:61.423863px;}
.h12{height:62.211094px;}
.h8{height:70.664062px;}
.h1d{height:82.800000px;}
.h25{height:86.256000px;}
.hf{height:87.696000px;}
.h5{height:96.508125px;}
.h9{height:104.220000px;}
.h11{height:113.220000px;}
.h29{height:162.000000px;}
.h27{height:162.030000px;}
.h2a{height:187.230000px;}
.h30{height:202.710000px;}
.h2e{height:202.890000px;}
.h2f{height:218.340000px;}
.h31{height:249.330000px;}
.h2c{height:249.510000px;}
.he{height:364.935000px;}
.hb{height:381.630000px;}
.ha{height:470.055000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w23{width:28.260000px;}
.w29{width:29.340000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w24{width:31.140000px;}
.w1e{width:32.040000px;}
.w25{width:32.220000px;}
.w26{width:32.400000px;}
.w1f{width:34.920000px;}
.w27{width:35.856000px;}
.w20{width:36.900000px;}
.w22{width:37.836000px;}
.w28{width:37.980000px;}
.w2a{width:38.700000px;}
.w21{width:39.600000px;}
.w14{width:44.640000px;}
.w1a{width:51.660000px;}
.w12{width:59.040000px;}
.w13{width:60.516000px;}
.w11{width:63.000000px;}
.w10{width:63.036000px;}
.w16{width:67.500000px;}
.w17{width:68.436000px;}
.w1c{width:78.300000px;}
.wd{width:79.416000px;}
.wf{width:79.920000px;}
.w9{width:79.956000px;}
.wa{width:106.560000px;}
.w18{width:107.280000px;}
.wb{width:116.136000px;}
.wc{width:118.620000px;}
.w19{width:120.996000px;}
.w2e{width:135.360000px;}
.w1b{width:170.850000px;}
.we{width:181.470000px;}
.w1d{width:196.950000px;}
.w2d{width:198.570000px;}
.w3{width:209.010000px;}
.w2b{width:214.770000px;}
.w2c{width:244.290000px;}
.w15{width:249.150000px;}
.w5{width:433.155000px;}
.w2f{width:539.925000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:4.320000px;}
.x36{left:5.400000px;}
.x32{left:7.020000px;}
.xd{left:8.100000px;}
.x21{left:9.540000px;}
.xf{left:10.620000px;}
.x41{left:11.880000px;}
.x20{left:13.140000px;}
.x35{left:15.480000px;}
.x2c{left:17.460000px;}
.x31{left:18.900000px;}
.x40{left:20.700000px;}
.x34{left:22.320000px;}
.x2f{left:24.120000px;}
.x3c{left:25.230000px;}
.x33{left:30.105000px;}
.x1d{left:34.380000px;}
.x23{left:36.000000px;}
.x26{left:39.060000px;}
.x27{left:40.320000px;}
.x24{left:43.200000px;}
.x22{left:47.160000px;}
.x25{left:50.220000px;}
.x43{left:60.525000px;}
.x52{left:67.674000px;}
.x28{left:69.840000px;}
.x39{left:103.854000px;}
.x11{left:106.560000px;}
.x44{left:119.556000px;}
.xc{left:125.496000px;}
.x1{left:127.655987px;}
.x38{left:129.816000px;}
.x15{left:132.875987px;}
.x2{left:152.669987px;}
.x14{left:154.649987px;}
.x51{left:159.689987px;}
.x13{left:181.649987px;}
.x6{left:192.629987px;}
.x5{left:199.109987px;}
.x8{left:205.409987px;}
.x1b{left:206.850000px;}
.x18{left:254.009987px;}
.x9{left:257.969987px;}
.x3{left:268.589987px;}
.x1c{left:286.815000px;}
.xa{left:288.074987px;}
.x42{left:300.675000px;}
.xb{left:317.234987px;}
.xe{left:334.515000px;}
.x50{left:343.155000px;}
.x45{left:348.555000px;}
.x10{left:355.755000px;}
.x29{left:362.955000px;}
.x3a{left:378.975000px;}
.x46{left:383.475000px;}
.x7{left:392.834987px;}
.x37{left:416.054987px;}
.x47{left:420.375000px;}
.x12{left:425.055000px;}
.x2b{left:442.875000px;}
.x3b{left:446.475000px;}
.x4{left:457.274987px;}
.x48{left:459.975000px;}
.x49{left:497.805000px;}
.x2d{left:505.905000px;}
.x1e{left:509.505000px;}
.x3d{left:514.905000px;}
.x4a{left:526.065000px;}
.x4b{left:557.205000px;}
.x2e{left:568.905000px;}
.x17{left:573.044987px;}
.x4c{left:588.345000px;}
.x4d{left:620.565000px;}
.x3e{left:622.185000px;}
.x1f{left:628.125000px;}
.x4e{left:652.965000px;}
.x1a{left:678.929987px;}
.x30{left:688.470000px;}
.x4f{left:726.810000px;}
.x3f{left:743.190000px;}
.x16{left:756.870000px;}
.x19{left:760.469987px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v3{vertical-align:-59.008000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2f{letter-spacing:-0.837333pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls1f{letter-spacing:-0.519467pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.239467pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.158933pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.030080pt;}
.lsd{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.106240pt;}
.ls25{letter-spacing:0.120533pt;}
.ls1e{letter-spacing:0.128640pt;}
.ls10{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161067pt;}
.ls2d{letter-spacing:0.183467pt;}
.ls2a{letter-spacing:0.183680pt;}
.ls20{letter-spacing:0.198933pt;}
.ls8{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.472320pt;}
.ls34{letter-spacing:0.960000pt;}
.ls38{letter-spacing:2.240000pt;}
.ls2e{letter-spacing:4.000000pt;}
.lsc{letter-spacing:4.640000pt;}
.ls32{letter-spacing:4.800000pt;}
.ls35{letter-spacing:5.546667pt;}
.ls27{letter-spacing:5.920000pt;}
.ls4{letter-spacing:6.560000pt;}
.ls37{letter-spacing:6.720000pt;}
.lsf{letter-spacing:7.200000pt;}
.ls29{letter-spacing:9.120000pt;}
.ls24{letter-spacing:11.200000pt;}
.ls2b{letter-spacing:11.680000pt;}
.ls39{letter-spacing:12.480000pt;}
.ls23{letter-spacing:16.800000pt;}
.ls3{letter-spacing:23.840000pt;}
.ls22{letter-spacing:34.080000pt;}
.ls1d{letter-spacing:40.480000pt;}
.ls1a{letter-spacing:42.832640pt;}
.ls33{letter-spacing:48.160000pt;}
.ls31{letter-spacing:52.640000pt;}
.ls5{letter-spacing:58.811307pt;}
.lsb{letter-spacing:99.978667pt;}
.ls15{letter-spacing:178.058667pt;}
.ls13{letter-spacing:201.098667pt;}
.ls14{letter-spacing:332.298667pt;}
.ws16{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.wsf{word-spacing:-12.760533pt;}
.ws4{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.456000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.561067pt;}
.ws11{word-spacing:-10.480533pt;}
.ws17{word-spacing:-10.400000pt;}
.ws18{word-spacing:-9.882667pt;}
.wsc{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-2.920320pt;}
._13{margin-left:-1.945173pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._7{width:3.264000pt;}
._a{width:4.368000pt;}
._4{width:6.080000pt;}
._b{width:7.487360pt;}
._6{width:8.688000pt;}
._10{width:9.591680pt;}
._f{width:10.756480pt;}
._14{width:12.336427pt;}
._8{width:13.776000pt;}
._9{width:15.082667pt;}
._c{width:16.800000pt;}
._d{width:17.814187pt;}
._19{width:19.016960pt;}
._29{width:20.297387pt;}
._e{width:23.376000pt;}
._15{width:24.288427pt;}
._16{width:25.371093pt;}
._1a{width:26.787627pt;}
._1d{width:29.783680pt;}
._2c{width:30.768000pt;}
._21{width:31.740587pt;}
._1e{width:32.705280pt;}
._22{width:34.055253pt;}
._24{width:36.566400pt;}
._23{width:37.536000pt;}
._1c{width:44.551040pt;}
._27{width:49.181227pt;}
._28{width:50.080000pt;}
._26{width:52.079360pt;}
._1f{width:53.180587pt;}
._20{width:55.125760pt;}
._2a{width:59.583360pt;}
._2b{width:61.153280pt;}
._25{width:62.997333pt;}
._5{width:138.400000pt;}
._17{width:452.521387pt;}
._11{width:653.920000pt;}
._18{width:769.499307pt;}
._12{width:953.866667pt;}
._3{width:979.477333pt;}
.fs8{font-size:2.560000pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:2.240000pt;}
.yf6{bottom:2.280000pt;}
.y34{bottom:2.560000pt;}
.y1fa{bottom:2.720000pt;}
.y14{bottom:2.880000pt;}
.y16a{bottom:3.200000pt;}
.y168{bottom:3.360000pt;}
.y3c{bottom:8.040000pt;}
.y42{bottom:10.880000pt;}
.ycf{bottom:14.400000pt;}
.ye5{bottom:14.560000pt;}
.yf4{bottom:14.600000pt;}
.y33{bottom:16.320000pt;}
.y1f9{bottom:16.480000pt;}
.y207{bottom:16.512000pt;}
.y19{bottom:18.080000pt;}
.y175{bottom:18.266667pt;}
.y1eb{bottom:21.600000pt;}
.y1de{bottom:22.400000pt;}
.y41{bottom:26.240000pt;}
.y10e{bottom:26.720000pt;}
.y106{bottom:26.880000pt;}
.y211{bottom:30.080000pt;}
.y32{bottom:30.240000pt;}
.y206{bottom:30.266667pt;}
.y18{bottom:33.440000pt;}
.y174{bottom:33.466667pt;}
.y1ea{bottom:35.386667pt;}
.y20f{bottom:36.160000pt;}
.y1fd{bottom:36.346667pt;}
.y40{bottom:41.600000pt;}
.y31{bottom:44.000000pt;}
.y205{bottom:44.026667pt;}
.y1f8{bottom:44.040000pt;}
.y17{bottom:48.800000pt;}
.y173{bottom:48.826667pt;}
.y1db{bottom:49.120000pt;}
.y1e9{bottom:49.146667pt;}
.y209{bottom:50.080000pt;}
.y3f{bottom:56.960000pt;}
.y30{bottom:57.760000pt;}
.y1f7{bottom:57.800000pt;}
.y204{bottom:57.946667pt;}
.y3b{bottom:58.760000pt;}
.y1da{bottom:62.880000pt;}
.y1d4{bottom:62.906667pt;}
.y1e8{bottom:63.066667pt;}
.ye9{bottom:63.680000pt;}
.y172{bottom:64.186667pt;}
.y2f{bottom:71.520000pt;}
.y203{bottom:71.706667pt;}
.y1f6{bottom:71.720000pt;}
.y16{bottom:72.160000pt;}
.y1d9{bottom:76.640000pt;}
.y1d3{bottom:76.666667pt;}
.y1e7{bottom:76.826667pt;}
.y214{bottom:77.600000pt;}
.y1ee{bottom:77.800000pt;}
.y5{bottom:78.400000pt;}
.y3e{bottom:80.160000pt;}
.y210{bottom:85.280000pt;}
.y2e{bottom:85.440000pt;}
.y202{bottom:85.466667pt;}
.y1f5{bottom:85.480000pt;}
.y1d2{bottom:90.426667pt;}
.y1d8{bottom:90.560000pt;}
.y1e6{bottom:90.586667pt;}
.y208{bottom:97.120000pt;}
.y2d{bottom:99.200000pt;}
.y201{bottom:99.226667pt;}
.y1f4{bottom:99.240000pt;}
.yda{bottom:100.320000pt;}
.y1d7{bottom:104.320000pt;}
.y1d1{bottom:104.346667pt;}
.y193{bottom:105.760000pt;}
.yc2{bottom:106.880000pt;}
.y1ce{bottom:108.160000pt;}
.y1fc{bottom:109.280000pt;}
.y13d{bottom:109.440000pt;}
.y2c{bottom:112.960000pt;}
.y1e2{bottom:113.000000pt;}
.y200{bottom:113.146667pt;}
.y4a{bottom:113.440000pt;}
.y87{bottom:113.920000pt;}
.yd9{bottom:115.680000pt;}
.y192{bottom:118.080000pt;}
.y1d0{bottom:118.106667pt;}
.y1e5{bottom:118.266667pt;}
.y15c{bottom:120.032000pt;}
.y109{bottom:120.512000pt;}
.yc1{bottom:122.272000pt;}
.y13c{bottom:124.832000pt;}
.y2b{bottom:126.720000pt;}
.y1e1{bottom:126.760000pt;}
.y1ff{bottom:126.906667pt;}
.y1f3{bottom:126.920000pt;}
.y49{bottom:128.832000pt;}
.y86{bottom:129.312000pt;}
.y191{bottom:130.432000pt;}
.yd8{bottom:131.072000pt;}
.y1d6{bottom:131.840000pt;}
.y1cf{bottom:131.866667pt;}
.y1e4{bottom:132.026667pt;}
.yc9{bottom:132.992000pt;}
.y105{bottom:133.626667pt;}
.y15b{bottom:135.386667pt;}
.yc0{bottom:137.626667pt;}
.y13b{bottom:140.186667pt;}
.y2a{bottom:140.480000pt;}
.y20d{bottom:140.640000pt;}
.y1fe{bottom:140.666667pt;}
.y1e0{bottom:140.680000pt;}
.y190{bottom:142.586667pt;}
.yc8{bottom:143.066667pt;}
.y48{bottom:144.186667pt;}
.y85{bottom:144.666667pt;}
.y108{bottom:145.946667pt;}
.yd7{bottom:146.266667pt;}
.y15a{bottom:150.746667pt;}
.ybf{bottom:152.666667pt;}
.y20c{bottom:154.400000pt;}
.y29{bottom:154.426667pt;}
.y1df{bottom:154.440000pt;}
.y18f{bottom:154.906667pt;}
.y13a{bottom:155.546667pt;}
.y107{bottom:158.266667pt;}
.y47{bottom:159.386667pt;}
.y84{bottom:159.866667pt;}
.yd6{bottom:161.626667pt;}
.y159{bottom:166.106667pt;}
.ybe{bottom:166.746667pt;}
.y18e{bottom:167.226667pt;}
.y20b{bottom:168.160000pt;}
.y28{bottom:168.186667pt;}
.y1f2{bottom:168.200000pt;}
.y103{bottom:170.426667pt;}
.y139{bottom:170.906667pt;}
.y46{bottom:174.746667pt;}
.y83{bottom:175.226667pt;}
.yd5{bottom:176.986667pt;}
.y18d{bottom:179.386667pt;}
.y158{bottom:181.466667pt;}
.y20a{bottom:181.920000pt;}
.y27{bottom:181.946667pt;}
.ybd{bottom:182.106667pt;}
.y1f1{bottom:182.120000pt;}
.y104{bottom:182.746667pt;}
.y138{bottom:186.266667pt;}
.y45{bottom:190.106667pt;}
.y82{bottom:190.586667pt;}
.yd4{bottom:191.706667pt;}
.y101{bottom:195.066667pt;}
.y26{bottom:195.706667pt;}
.y1f0{bottom:195.880000pt;}
.y157{bottom:196.666667pt;}
.ybc{bottom:197.466667pt;}
.y137{bottom:201.466667pt;}
.yd3{bottom:203.866667pt;}
.y18c{bottom:204.026667pt;}
.y44{bottom:205.466667pt;}
.y81{bottom:205.946667pt;}
.y102{bottom:207.226667pt;}
.y215{bottom:209.466667pt;}
.y25{bottom:209.626667pt;}
.y1ef{bottom:209.640000pt;}
.y156{bottom:212.026667pt;}
.ybb{bottom:212.666667pt;}
.yd2{bottom:214.586667pt;}
.y18b{bottom:216.186667pt;}
.y136{bottom:216.826667pt;}
.y3a{bottom:219.240000pt;}
.yff{bottom:219.546667pt;}
.y43{bottom:220.826667pt;}
.y80{bottom:221.306667pt;}
.y24{bottom:223.386667pt;}
.yd1{bottom:226.906667pt;}
.y155{bottom:227.386667pt;}
.yba{bottom:228.026667pt;}
.y18a{bottom:228.506667pt;}
.y100{bottom:231.866667pt;}
.y135{bottom:232.186667pt;}
.y39{bottom:234.626667pt;}
.y3d{bottom:235.226667pt;}
.y7f{bottom:236.026667pt;}
.y23{bottom:237.146667pt;}
.yce{bottom:239.866667pt;}
.y189{bottom:240.826667pt;}
.y154{bottom:242.746667pt;}
.yb9{bottom:243.066667pt;}
.yfd{bottom:244.026667pt;}
.y134{bottom:247.546667pt;}
.y7e{bottom:248.826667pt;}
.y38{bottom:249.986667pt;}
.y22{bottom:250.906667pt;}
.y188{bottom:253.626667pt;}
.y1cd{bottom:254.426667pt;}
.yfe{bottom:256.346667pt;}
.yb8{bottom:257.146667pt;}
.y153{bottom:258.106667pt;}
.y133{bottom:262.906667pt;}
.y7d{bottom:264.186667pt;}
.y21{bottom:264.826667pt;}
.y37{bottom:265.346667pt;}
.y1cc{bottom:267.226667pt;}
.y187{bottom:268.346667pt;}
.yfb{bottom:268.506667pt;}
.yb7{bottom:272.506667pt;}
.y152{bottom:272.826667pt;}
.y132{bottom:278.266667pt;}
.y20{bottom:278.586667pt;}
.y7c{bottom:279.546667pt;}
.y186{bottom:280.666667pt;}
.y36{bottom:280.706667pt;}
.yfc{bottom:280.826667pt;}
.y1cb{bottom:281.946667pt;}
.ycd{bottom:282.586667pt;}
.y151{bottom:284.986667pt;}
.yb6{bottom:287.866667pt;}
.y1fb{bottom:289.626667pt;}
.y1f{bottom:292.346667pt;}
.yf9{bottom:293.146667pt;}
.y131{bottom:293.466667pt;}
.y1ca{bottom:294.266667pt;}
.y7b{bottom:294.906667pt;}
.y150{bottom:297.946667pt;}
.yb5{bottom:303.226667pt;}
.y1ed{bottom:303.386667pt;}
.y35{bottom:303.906667pt;}
.yfa{bottom:305.306667pt;}
.y1e{bottom:306.106667pt;}
.y1c9{bottom:306.426667pt;}
.y130{bottom:308.826667pt;}
.y7a{bottom:310.266667pt;}
.y14f{bottom:313.306667pt;}
.yf7{bottom:317.626667pt;}
.yb4{bottom:318.586667pt;}
.y1c8{bottom:318.746667pt;}
.y1d{bottom:320.026667pt;}
.ycc{bottom:322.426667pt;}
.y12f{bottom:324.186667pt;}
.y79{bottom:324.826667pt;}
.y14e{bottom:328.666667pt;}
.yf8{bottom:329.946667pt;}
.y1c7{bottom:331.066667pt;}
.ycb{bottom:332.506667pt;}
.yb3{bottom:333.786667pt;}
.y1a{bottom:336.506667pt;}
.y78{bottom:337.786667pt;}
.y185{bottom:338.906667pt;}
.y12e{bottom:339.546667pt;}
.yf3{bottom:342.106667pt;}
.y1c6{bottom:343.226667pt;}
.y14d{bottom:343.866667pt;}
.yb2{bottom:349.186667pt;}
.y184{bottom:351.266667pt;}
.y77{bottom:353.186667pt;}
.yf5{bottom:354.466667pt;}
.y12d{bottom:354.946667pt;}
.y1c5{bottom:355.586667pt;}
.y14c{bottom:359.266667pt;}
.y183{bottom:364.066667pt;}
.yb1{bottom:364.546667pt;}
.yf1{bottom:366.786667pt;}
.y1c4{bottom:367.906667pt;}
.y76{bottom:368.546667pt;}
.y12c{bottom:370.306667pt;}
.y14b{bottom:374.626667pt;}
.yf2{bottom:378.946667pt;}
.y182{bottom:379.426667pt;}
.yb0{bottom:379.906667pt;}
.y1c3{bottom:380.066667pt;}
.y216{bottom:382.786667pt;}
.y75{bottom:383.906667pt;}
.y12b{bottom:385.506667pt;}
.y14a{bottom:389.986667pt;}
.yef{bottom:391.266667pt;}
.y1c2{bottom:392.386667pt;}
.y181{bottom:394.786667pt;}
.yaf{bottom:394.946667pt;}
.y213{bottom:395.266667pt;}
.y1b{bottom:397.346667pt;}
.y74{bottom:399.106667pt;}
.y12a{bottom:400.866667pt;}
.yf0{bottom:403.586667pt;}
.y1c1{bottom:404.706667pt;}
.y149{bottom:405.346667pt;}
.yae{bottom:409.026667pt;}
.y180{bottom:410.146667pt;}
.y73{bottom:414.466667pt;}
.y1c{bottom:415.106667pt;}
.ye8{bottom:415.746667pt;}
.y129{bottom:416.226667pt;}
.y1c0{bottom:416.866667pt;}
.y148{bottom:420.546667pt;}
.yad{bottom:424.386667pt;}
.y17f{bottom:424.706667pt;}
.yee{bottom:428.066667pt;}
.y1bf{bottom:429.186667pt;}
.y72{bottom:429.826667pt;}
.y128{bottom:431.586667pt;}
.y147{bottom:435.906667pt;}
.y17e{bottom:437.026667pt;}
.yac{bottom:439.746667pt;}
.yed{bottom:440.386667pt;}
.y1be{bottom:441.506667pt;}
.y71{bottom:445.186667pt;}
.y127{bottom:446.946667pt;}
.y17d{bottom:449.986667pt;}
.y146{bottom:451.266667pt;}
.yec{bottom:452.546667pt;}
.y1bd{bottom:453.666667pt;}
.yab{bottom:454.946667pt;}
.y70{bottom:459.906667pt;}
.y126{bottom:462.146667pt;}
.yeb{bottom:464.866667pt;}
.y17c{bottom:465.346667pt;}
.y1bc{bottom:465.986667pt;}
.y145{bottom:466.626667pt;}
.yaa{bottom:470.146667pt;}
.y6f{bottom:472.706667pt;}
.yea{bottom:477.186667pt;}
.y125{bottom:477.506667pt;}
.y1bb{bottom:478.306667pt;}
.y17b{bottom:479.906667pt;}
.y144{bottom:481.986667pt;}
.ya9{bottom:483.906667pt;}
.y6e{bottom:488.066667pt;}
.ye6{bottom:489.346667pt;}
.y1ba{bottom:490.466667pt;}
.y17a{bottom:492.226667pt;}
.y124{bottom:492.866667pt;}
.y143{bottom:497.346667pt;}
.ya8{bottom:497.986667pt;}
.ye7{bottom:501.666667pt;}
.y1b9{bottom:502.786667pt;}
.y6d{bottom:503.426667pt;}
.y179{bottom:505.186667pt;}
.y123{bottom:508.226667pt;}
.y142{bottom:512.546667pt;}
.ya7{bottom:513.346667pt;}
.ye4{bottom:514.626667pt;}
.y1b8{bottom:515.106667pt;}
.y6c{bottom:518.786667pt;}
.y178{bottom:520.546667pt;}
.y122{bottom:523.586667pt;}
.y1ec{bottom:525.186667pt;}
.y1b7{bottom:527.266667pt;}
.yc7{bottom:527.906667pt;}
.ya6{bottom:528.546667pt;}
.y6b{bottom:534.146667pt;}
.y177{bottom:535.106667pt;}
.y1e3{bottom:537.346667pt;}
.y121{bottom:538.946667pt;}
.y1b6{bottom:539.586667pt;}
.yc6{bottom:543.266667pt;}
.ya5{bottom:543.906667pt;}
.y176{bottom:547.426667pt;}
.y6a{bottom:549.346667pt;}
.y1b5{bottom:551.906667pt;}
.y120{bottom:554.146667pt;}
.y171{bottom:557.506667pt;}
.ye3{bottom:557.986667pt;}
.yc5{bottom:558.626667pt;}
.ya4{bottom:559.266667pt;}
.y1b4{bottom:564.066667pt;}
.y69{bottom:564.706667pt;}
.y11f{bottom:569.533333pt;}
.ye2{bottom:573.373333pt;}
.yc4{bottom:574.013333pt;}
.ya3{bottom:574.653333pt;}
.y1b3{bottom:576.413333pt;}
.yca{bottom:577.053333pt;}
.y68{bottom:580.093333pt;}
.y11e{bottom:584.893333pt;}
.yc3{bottom:586.333333pt;}
.ye1{bottom:588.733333pt;}
.y141{bottom:589.373333pt;}
.ya2{bottom:590.013333pt;}
.y67{bottom:595.453333pt;}
.y11d{bottom:600.253333pt;}
.y1b2{bottom:600.893333pt;}
.ye0{bottom:604.093333pt;}
.y140{bottom:604.573333pt;}
.ya1{bottom:605.373333pt;}
.y66{bottom:610.813333pt;}
.y1b1{bottom:613.213333pt;}
.y11c{bottom:615.613333pt;}
.y212{bottom:616.893333pt;}
.ydf{bottom:619.293333pt;}
.y13f{bottom:619.933333pt;}
.ya0{bottom:620.573333pt;}
.y65{bottom:625.533333pt;}
.y20e{bottom:629.213333pt;}
.y11b{bottom:630.333333pt;}
.yde{bottom:634.653333pt;}
.y13e{bottom:635.293333pt;}
.y9f{bottom:635.933333pt;}
.y170{bottom:636.413333pt;}
.y64{bottom:637.693333pt;}
.y11a{bottom:642.493333pt;}
.y16f{bottom:647.133333pt;}
.ydd{bottom:650.013333pt;}
.y63{bottom:650.653333pt;}
.y9e{bottom:651.293333pt;}
.y119{bottom:653.213333pt;}
.y15{bottom:661.693333pt;}
.y1b0{bottom:662.333333pt;}
.y16e{bottom:662.493333pt;}
.ydc{bottom:665.533333pt;}
.y62{bottom:666.013333pt;}
.y9d{bottom:666.653333pt;}
.y1af{bottom:674.493333pt;}
.y117{bottom:677.693333pt;}
.ydb{bottom:681.213333pt;}
.y61{bottom:681.373333pt;}
.y9c{bottom:682.013333pt;}
.y1ae{bottom:686.813333pt;}
.y118{bottom:690.013333pt;}
.y16d{bottom:693.053333pt;}
.y1dd{bottom:693.693333pt;}
.y60{bottom:696.573333pt;}
.y9b{bottom:697.373333pt;}
.y1ad{bottom:699.133333pt;}
.y115{bottom:702.333333pt;}
.y16c{bottom:708.413333pt;}
.y1ac{bottom:711.293333pt;}
.y5f{bottom:711.933333pt;}
.y9a{bottom:712.573333pt;}
.y116{bottom:714.493333pt;}
.y1ab{bottom:723.613333pt;}
.y16b{bottom:723.773333pt;}
.y113{bottom:726.813333pt;}
.y5e{bottom:727.293333pt;}
.y99{bottom:727.933333pt;}
.y1aa{bottom:735.773333pt;}
.y114{bottom:739.133333pt;}
.y5d{bottom:742.653333pt;}
.y98{bottom:743.293333pt;}
.y1a9{bottom:748.093333pt;}
.y111{bottom:751.293333pt;}
.y169{bottom:754.333333pt;}
.y13{bottom:754.973333pt;}
.y5c{bottom:758.013333pt;}
.y97{bottom:758.653333pt;}
.y1a8{bottom:760.413333pt;}
.y112{bottom:763.613333pt;}
.y167{bottom:769.693333pt;}
.y1a7{bottom:772.573333pt;}
.y5b{bottom:773.213333pt;}
.y96{bottom:774.013333pt;}
.y10f{bottom:775.933333pt;}
.y12{bottom:783.133333pt;}
.y1a6{bottom:784.893333pt;}
.y166{bottom:785.693333pt;}
.y110{bottom:788.093333pt;}
.y5a{bottom:788.573333pt;}
.y95{bottom:789.213333pt;}
.y1a5{bottom:797.253333pt;}
.y11{bottom:798.533333pt;}
.y10d{bottom:801.093333pt;}
.y59{bottom:803.973333pt;}
.y94{bottom:804.613333pt;}
.y1a4{bottom:809.413333pt;}
.y165{bottom:816.933333pt;}
.y10{bottom:817.253333pt;}
.y58{bottom:819.333333pt;}
.y93{bottom:819.973333pt;}
.y1a3{bottom:821.733333pt;}
.yf{bottom:829.413333pt;}
.y164{bottom:832.293333pt;}
.y1a2{bottom:834.053333pt;}
.y57{bottom:834.693333pt;}
.y92{bottom:835.333333pt;}
.y10c{bottom:841.413333pt;}
.ye{bottom:841.733333pt;}
.y1a1{bottom:846.213333pt;}
.y163{bottom:847.653333pt;}
.y56{bottom:850.053333pt;}
.y91{bottom:850.693333pt;}
.yd{bottom:854.053333pt;}
.y1a0{bottom:858.533333pt;}
.y1dc{bottom:860.133333pt;}
.y162{bottom:862.213333pt;}
.yc{bottom:862.853333pt;}
.y55{bottom:865.253333pt;}
.y90{bottom:866.053333pt;}
.y19f{bottom:870.853333pt;}
.y10b{bottom:871.493333pt;}
.y1d5{bottom:872.453333pt;}
.y161{bottom:874.533333pt;}
.yb{bottom:878.213333pt;}
.y54{bottom:880.613333pt;}
.y8f{bottom:881.253333pt;}
.y19e{bottom:883.013333pt;}
.y10a{bottom:883.813333pt;}
.y160{bottom:887.493333pt;}
.ya{bottom:893.573333pt;}
.y19d{bottom:895.333333pt;}
.y53{bottom:895.973333pt;}
.y8e{bottom:896.613333pt;}
.y15f{bottom:902.853333pt;}
.y19c{bottom:907.653333pt;}
.y9{bottom:908.933333pt;}
.y52{bottom:911.333333pt;}
.y8d{bottom:911.973333pt;}
.y15e{bottom:917.413333pt;}
.y19b{bottom:919.813333pt;}
.y8{bottom:924.293333pt;}
.y51{bottom:926.693333pt;}
.y8c{bottom:927.333333pt;}
.y15d{bottom:929.733333pt;}
.y19a{bottom:932.133333pt;}
.y7{bottom:941.413333pt;}
.y50{bottom:942.053333pt;}
.y8b{bottom:942.693333pt;}
.y199{bottom:944.453333pt;}
.y198{bottom:956.613333pt;}
.y4f{bottom:957.253333pt;}
.y8a{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y197{bottom:968.933333pt;}
.y4e{bottom:972.613333pt;}
.y89{bottom:973.253333pt;}
.y196{bottom:981.253333pt;}
.y4d{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y195{bottom:993.413333pt;}
.y4c{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y194{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y88{bottom:1031.680000pt;}
.y4b{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h28{height:2.512500pt;}
.h1e{height:12.160000pt;}
.h1a{height:12.320000pt;}
.h1f{height:12.320133pt;}
.h21{height:12.352000pt;}
.h2d{height:13.760000pt;}
.h13{height:15.200000pt;}
.h16{height:15.360000pt;}
.h24{height:15.392000pt;}
.h7{height:23.360000pt;}
.h19{height:24.480000pt;}
.h23{height:24.512000pt;}
.h1c{height:24.640000pt;}
.h20{height:24.672000pt;}
.h6{height:26.381250pt;}
.h2b{height:34.710938pt;}
.h22{height:36.800000pt;}
.h15{height:38.413438pt;}
.h14{height:42.084375pt;}
.h26{height:42.381250pt;}
.h17{height:43.215000pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.hd{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h18{height:52.478750pt;}
.h2{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h12{height:55.298750pt;}
.h8{height:62.812500pt;}
.h1d{height:73.600000pt;}
.h25{height:76.672000pt;}
.hf{height:77.952000pt;}
.h5{height:85.785000pt;}
.h9{height:92.640000pt;}
.h11{height:100.640000pt;}
.h29{height:144.000000pt;}
.h27{height:144.026667pt;}
.h2a{height:166.426667pt;}
.h30{height:180.186667pt;}
.h2e{height:180.346667pt;}
.h2f{height:194.080000pt;}
.h31{height:221.626667pt;}
.h2c{height:221.786667pt;}
.he{height:324.386667pt;}
.hb{height:339.226667pt;}
.ha{height:417.826667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w23{width:25.120000pt;}
.w29{width:26.080000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w24{width:27.680000pt;}
.w1e{width:28.480000pt;}
.w25{width:28.640000pt;}
.w26{width:28.800000pt;}
.w1f{width:31.040000pt;}
.w27{width:31.872000pt;}
.w20{width:32.800000pt;}
.w22{width:33.632000pt;}
.w28{width:33.760000pt;}
.w2a{width:34.400000pt;}
.w21{width:35.200000pt;}
.w14{width:39.680000pt;}
.w1a{width:45.920000pt;}
.w12{width:52.480000pt;}
.w13{width:53.792000pt;}
.w11{width:56.000000pt;}
.w10{width:56.032000pt;}
.w16{width:60.000000pt;}
.w17{width:60.832000pt;}
.w1c{width:69.600000pt;}
.wd{width:70.592000pt;}
.wf{width:71.040000pt;}
.w9{width:71.072000pt;}
.wa{width:94.720000pt;}
.w18{width:95.360000pt;}
.wb{width:103.232000pt;}
.wc{width:105.440000pt;}
.w19{width:107.552000pt;}
.w2e{width:120.320000pt;}
.w1b{width:151.866667pt;}
.we{width:161.306667pt;}
.w1d{width:175.066667pt;}
.w2d{width:176.506667pt;}
.w3{width:185.786667pt;}
.w2b{width:190.906667pt;}
.w2c{width:217.146667pt;}
.w15{width:221.466667pt;}
.w5{width:385.026667pt;}
.w2f{width:479.933333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:3.840000pt;}
.x36{left:4.800000pt;}
.x32{left:6.240000pt;}
.xd{left:7.200000pt;}
.x21{left:8.480000pt;}
.xf{left:9.440000pt;}
.x41{left:10.560000pt;}
.x20{left:11.680000pt;}
.x35{left:13.760000pt;}
.x2c{left:15.520000pt;}
.x31{left:16.800000pt;}
.x40{left:18.400000pt;}
.x34{left:19.840000pt;}
.x2f{left:21.440000pt;}
.x3c{left:22.426667pt;}
.x33{left:26.760000pt;}
.x1d{left:30.560000pt;}
.x23{left:32.000000pt;}
.x26{left:34.720000pt;}
.x27{left:35.840000pt;}
.x24{left:38.400000pt;}
.x22{left:41.920000pt;}
.x25{left:44.640000pt;}
.x43{left:53.800000pt;}
.x52{left:60.154667pt;}
.x28{left:62.080000pt;}
.x39{left:92.314667pt;}
.x11{left:94.720000pt;}
.x44{left:106.272000pt;}
.xc{left:111.552000pt;}
.x1{left:113.471988pt;}
.x38{left:115.392000pt;}
.x15{left:118.111988pt;}
.x2{left:135.706655pt;}
.x14{left:137.466655pt;}
.x51{left:141.946655pt;}
.x13{left:161.466655pt;}
.x6{left:171.226655pt;}
.x5{left:176.986655pt;}
.x8{left:182.586655pt;}
.x1b{left:183.866667pt;}
.x18{left:225.786655pt;}
.x9{left:229.306655pt;}
.x3{left:238.746655pt;}
.x1c{left:254.946667pt;}
.xa{left:256.066655pt;}
.x42{left:267.266667pt;}
.xb{left:281.986655pt;}
.xe{left:297.346667pt;}
.x50{left:305.026667pt;}
.x45{left:309.826667pt;}
.x10{left:316.226667pt;}
.x29{left:322.626667pt;}
.x3a{left:336.866667pt;}
.x46{left:340.866667pt;}
.x7{left:349.186655pt;}
.x37{left:369.826655pt;}
.x47{left:373.666667pt;}
.x12{left:377.826667pt;}
.x2b{left:393.666667pt;}
.x3b{left:396.866667pt;}
.x4{left:406.466655pt;}
.x48{left:408.866667pt;}
.x49{left:442.493333pt;}
.x2d{left:449.693333pt;}
.x1e{left:452.893333pt;}
.x3d{left:457.693333pt;}
.x4a{left:467.613333pt;}
.x4b{left:495.293333pt;}
.x2e{left:505.693333pt;}
.x17{left:509.373322pt;}
.x4c{left:522.973333pt;}
.x4d{left:551.613333pt;}
.x3e{left:553.053333pt;}
.x1f{left:558.333333pt;}
.x4e{left:580.413333pt;}
.x1a{left:603.493322pt;}
.x30{left:611.973333pt;}
.x4f{left:646.053333pt;}
.x3f{left:660.613333pt;}
.x16{left:672.773333pt;}
.x19{left:675.973322pt;}
}




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