
    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_5c5af0612c1cd330294d1613.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a7cba42969bf4e454fd481.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf7068f9624f328bcd8da3be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f6ecb7e4b9df4a930c64888a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b04c56d86784770dfcd13dd6.woff')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_abfecd2b113ce6071acad12b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_9b546f08c1d41bef68e6cdf0.woff')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_87d7c96dae07bcbd6a98070f.woff')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_618f6e1f933990625875d9f7.woff')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;}
.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);}
.v1{vertical-align:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls14{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lse{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.540000px;}
.lsa{letter-spacing:25.308000px;}
.ls11{letter-spacing:52.668000px;}
.ls3{letter-spacing:71.280000px;}
.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;}
}
.ws6{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.431360px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.626000px;}
.wsf{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
.ws2{word-spacing:60.840000px;}
._12{margin-left:-10.673280px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._6{width:2.235840px;}
._f{width:3.263760px;}
._9{width:4.290240px;}
._7{width:5.796720px;}
._8{width:6.840480px;}
._c{width:8.066160px;}
._d{width:9.796560px;}
._e{width:11.263968px;}
._a{width:12.759552px;}
._b{width:13.805136px;}
._19{width:14.918448px;}
._10{width:15.969840px;}
._13{width:17.712000px;}
._14{width:19.062000px;}
._1d{width:20.109840px;}
._11{width:21.886080px;}
._16{width:23.082000px;}
._15{width:24.084000px;}
._1a{width:25.164000px;}
._22{width:26.220000px;}
._27{width:27.756000px;}
._1c{width:29.268000px;}
._1e{width:31.020000px;}
._18{width:32.400000px;}
._17{width:33.696000px;}
._20{width:34.776000px;}
._21{width:35.856000px;}
._2b{width:37.044000px;}
._1f{width:38.124000px;}
._2e{width:39.258000px;}
._26{width:40.392000px;}
._25{width:41.526000px;}
._3c{width:42.786000px;}
._35{width:44.478000px;}
._2a{width:45.846000px;}
._3a{width:47.814000px;}
._34{width:49.788000px;}
._24{width:51.354000px;}
._23{width:52.542000px;}
._36{width:53.670000px;}
._1b{width:55.134000px;}
._3e{width:57.024000px;}
._3d{width:58.158000px;}
._31{width:62.586000px;}
._38{width:64.524000px;}
._28{width:65.556000px;}
._29{width:66.798000px;}
._32{width:68.634000px;}
._43{width:72.360000px;}
._42{width:73.440000px;}
._39{width:76.320000px;}
._3{width:78.192000px;}
._2c{width:80.244000px;}
._41{width:81.378000px;}
._40{width:83.160000px;}
._33{width:99.846000px;}
._30{width:105.840000px;}
._2d{width:117.774000px;}
._3b{width:142.668000px;}
._4{width:157.860000px;}
._2f{width:168.642000px;}
._37{width:257.163840px;}
._3f{width:335.934000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y39{bottom:-7.740000px;}
.y16c{bottom:-3.420000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y164{bottom:10.065000px;}
.y169{bottom:10.080000px;}
.y1a8{bottom:10.110000px;}
.y1b9{bottom:10.245000px;}
.y181{bottom:10.260000px;}
.y4{bottom:15.660000px;}
.y1ad{bottom:18.720000px;}
.y2{bottom:18.900000px;}
.y189{bottom:19.065000px;}
.y17f{bottom:19.080000px;}
.y1a9{bottom:19.110000px;}
.y1b8{bottom:19.245000px;}
.y1b0{bottom:19.260000px;}
.y1b3{bottom:19.425000px;}
.y1ab{bottom:19.440000px;}
.y18d{bottom:27.885000px;}
.y186{bottom:27.900000px;}
.y18b{bottom:27.930000px;}
.y1b6{bottom:28.065000px;}
.y180{bottom:28.080000px;}
.y18f{bottom:36.885000px;}
.y183{bottom:36.900000px;}
.y188{bottom:36.930000px;}
.y5{bottom:39.780000px;}
.y18a{bottom:45.750000px;}
.y18e{bottom:45.885000px;}
.y184{bottom:45.900000px;}
.y1{bottom:60.660000px;}
.y36{bottom:68.610000px;}
.y35{bottom:88.590000px;}
.y1a5{bottom:102.420000px;}
.y1c0{bottom:103.680000px;}
.y107{bottom:107.100000px;}
.y13c{bottom:107.820000px;}
.y75{bottom:108.180000px;}
.y34{bottom:108.390000px;}
.y19a{bottom:111.240000px;}
.ydd{bottom:116.100000px;}
.yaf{bottom:117.000000px;}
.y1a4{bottom:120.240000px;}
.y1bf{bottom:121.680000px;}
.y16b{bottom:122.400000px;}
.y106{bottom:124.920000px;}
.y1e1{bottom:125.100000px;}
.y225{bottom:125.280000px;}
.y13b{bottom:125.640000px;}
.y74{bottom:126.000000px;}
.y28{bottom:126.720000px;}
.y1f0{bottom:126.900000px;}
.y33{bottom:128.190000px;}
.y199{bottom:129.060000px;}
.ydc{bottom:133.920000px;}
.yae{bottom:135.000000px;}
.y1a3{bottom:138.060000px;}
.y1be{bottom:139.500000px;}
.y105{bottom:142.740000px;}
.y1e0{bottom:142.920000px;}
.y224{bottom:143.100000px;}
.y13a{bottom:143.460000px;}
.y73{bottom:144.000000px;}
.y1ef{bottom:144.720000px;}
.y198{bottom:146.880000px;}
.y32{bottom:147.990000px;}
.ydb{bottom:151.740000px;}
.yad{bottom:152.820000px;}
.y16a{bottom:155.160000px;}
.y1a2{bottom:155.880000px;}
.y1bd{bottom:157.320000px;}
.y104{bottom:160.560000px;}
.y1df{bottom:160.740000px;}
.y223{bottom:161.100000px;}
.y139{bottom:161.280000px;}
.y72{bottom:161.820000px;}
.y1ee{bottom:162.540000px;}
.y197{bottom:164.880000px;}
.y29{bottom:165.420000px;}
.y1c3{bottom:166.320000px;}
.y31{bottom:167.790000px;}
.yda{bottom:169.560000px;}
.yac{bottom:170.640000px;}
.y1a1{bottom:173.880000px;}
.y1bc{bottom:175.140000px;}
.y103{bottom:178.380000px;}
.y1de{bottom:178.560000px;}
.y222{bottom:178.920000px;}
.y1cf{bottom:179.100000px;}
.y138{bottom:179.280000px;}
.y27{bottom:179.460000px;}
.y71{bottom:179.640000px;}
.y1ed{bottom:180.360000px;}
.y196{bottom:182.700000px;}
.y1c2{bottom:184.140000px;}
.y38{bottom:185.400000px;}
.yd9{bottom:187.380000px;}
.y30{bottom:187.770000px;}
.y168{bottom:188.100000px;}
.yab{bottom:188.460000px;}
.y1a0{bottom:191.700000px;}
.y1bb{bottom:192.960000px;}
.y102{bottom:196.200000px;}
.y1dd{bottom:196.380000px;}
.y221{bottom:196.740000px;}
.y137{bottom:197.100000px;}
.y70{bottom:197.460000px;}
.y1ec{bottom:198.180000px;}
.y1c1{bottom:201.960000px;}
.y37{bottom:205.200000px;}
.yaa{bottom:206.310000px;}
.y2f{bottom:207.570000px;}
.y195{bottom:209.550000px;}
.y101{bottom:214.230000px;}
.y136{bottom:214.590000px;}
.y1ce{bottom:214.950000px;}
.y6f{bottom:215.310000px;}
.y1eb{bottom:216.210000px;}
.y1ba{bottom:219.990000px;}
.y167{bottom:220.905000px;}
.yd8{bottom:223.230000px;}
.ya9{bottom:224.310000px;}
.y2e{bottom:227.370000px;}
.y100{bottom:232.050000px;}
.y26{bottom:232.230000px;}
.y220{bottom:232.410000px;}
.y1cd{bottom:232.770000px;}
.y1ea{bottom:234.030000px;}
.y19f{bottom:236.370000px;}
.y110{bottom:241.050000px;}
.y135{bottom:241.770000px;}
.ya8{bottom:242.130000px;}
.y6e{bottom:242.310000px;}
.y194{bottom:245.190000px;}
.y1b7{bottom:246.105000px;}
.y2d{bottom:247.170000px;}
.yff{bottom:249.870000px;}
.yd7{bottom:250.050000px;}
.y21f{bottom:250.230000px;}
.y1cc{bottom:250.590000px;}
.y1e9{bottom:251.850000px;}
.y166{bottom:253.845000px;}
.y19e{bottom:254.190000px;}
.y10f{bottom:258.870000px;}
.y134{bottom:259.590000px;}
.y1fc{bottom:259.950000px;}
.y6d{bottom:260.130000px;}
.y193{bottom:263.010000px;}
.y25{bottom:266.970000px;}
.yfe{bottom:267.690000px;}
.yd6{bottom:267.870000px;}
.y21e{bottom:268.230000px;}
.y1cb{bottom:268.410000px;}
.ya7{bottom:268.950000px;}
.y1e8{bottom:271.650000px;}
.y19d{bottom:272.010000px;}
.y10e{bottom:276.330000px;}
.y1fb{bottom:277.770000px;}
.y6c{bottom:277.950000px;}
.y192{bottom:281.010000px;}
.yfd{bottom:285.510000px;}
.yd5{bottom:285.690000px;}
.y21d{bottom:286.050000px;}
.y1ca{bottom:286.230000px;}
.y133{bottom:286.410000px;}
.y165{bottom:286.605000px;}
.ya6{bottom:286.770000px;}
.y2c{bottom:286.995000px;}
.y19c{bottom:290.010000px;}
.y1fa{bottom:295.590000px;}
.y6b{bottom:295.770000px;}
.y1b5{bottom:297.225000px;}
.y1e7{bottom:297.570000px;}
.y191{bottom:298.830000px;}
.y23{bottom:301.890000px;}
.yd4{bottom:303.510000px;}
.y21c{bottom:303.870000px;}
.y1c9{bottom:304.230000px;}
.y132{bottom:304.410000px;}
.ya5{bottom:304.590000px;}
.y2b{bottom:306.795000px;}
.y19b{bottom:307.830000px;}
.y6a{bottom:313.590000px;}
.y1f9{bottom:315.570000px;}
.y163{bottom:319.545000px;}
.yfc{bottom:321.330000px;}
.yd3{bottom:321.510000px;}
.y21b{bottom:321.690000px;}
.y1c8{bottom:322.050000px;}
.y131{bottom:322.230000px;}
.ya4{bottom:322.410000px;}
.y190{bottom:325.650000px;}
.y1e6{bottom:330.330000px;}
.y1dc{bottom:330.510000px;}
.y69{bottom:331.410000px;}
.y22{bottom:336.630000px;}
.y2a{bottom:337.035000px;}
.yd2{bottom:339.330000px;}
.y1c7{bottom:339.510000px;}
.y1d0{bottom:339.870000px;}
.ya3{bottom:340.410000px;}
.y24{bottom:342.210000px;}
.y1b4{bottom:347.985000px;}
.yfb{bottom:348.150000px;}
.y1db{bottom:348.330000px;}
.y130{bottom:349.050000px;}
.y68{bottom:349.410000px;}
.y18c{bottom:351.765000px;}
.y162{bottom:356.790000px;}
.yd1{bottom:357.150000px;}
.y21a{bottom:357.510000px;}
.ya2{bottom:358.230000px;}
.yfa{bottom:365.970000px;}
.y1da{bottom:366.150000px;}
.y1c6{bottom:366.690000px;}
.y12f{bottom:366.870000px;}
.y67{bottom:367.230000px;}
.y21{bottom:371.370000px;}
.yd0{bottom:374.970000px;}
.y219{bottom:375.330000px;}
.ya1{bottom:376.050000px;}
.y1b2{bottom:380.745000px;}
.y156{bottom:383.250000px;}
.yf9{bottom:383.790000px;}
.y1d9{bottom:383.970000px;}
.y12e{bottom:384.690000px;}
.y66{bottom:385.050000px;}
.ycf{bottom:392.790000px;}
.y218{bottom:393.150000px;}
.y1c5{bottom:393.510000px;}
.y161{bottom:393.690000px;}
.ya0{bottom:393.870000px;}
.yf8{bottom:401.610000px;}
.y1d8{bottom:401.790000px;}
.y12d{bottom:402.690000px;}
.y65{bottom:402.870000px;}
.y1f{bottom:404.130000px;}
.yce{bottom:410.610000px;}
.y217{bottom:410.970000px;}
.y9f{bottom:411.690000px;}
.y1c4{bottom:417.270000px;}
.yf7{bottom:419.610000px;}
.y187{bottom:420.345000px;}
.y64{bottom:420.690000px;}
.y155{bottom:428.430000px;}
.ycd{bottom:428.610000px;}
.y216{bottom:428.790000px;}
.y12c{bottom:429.510000px;}
.y9e{bottom:429.690000px;}
.y1e{bottom:431.130000px;}
.y1b1{bottom:432.045000px;}
.yf6{bottom:437.430000px;}
.y10d{bottom:437.610000px;}
.y63{bottom:438.690000px;}
.y154{bottom:446.295000px;}
.ycc{bottom:446.475000px;}
.y1f8{bottom:446.655000px;}
.y12b{bottom:447.375000px;}
.y9d{bottom:447.555000px;}
.yf5{bottom:455.295000px;}
.y10c{bottom:455.475000px;}
.y62{bottom:456.555000px;}
.y1d{bottom:457.995000px;}
.y153{bottom:464.115000px;}
.y1f7{bottom:464.475000px;}
.y215{bottom:464.655000px;}
.y1af{bottom:465.015000px;}
.y12a{bottom:465.195000px;}
.y9c{bottom:465.375000px;}
.y228{bottom:471.495000px;}
.yf4{bottom:473.115000px;}
.ycb{bottom:473.295000px;}
.y61{bottom:474.375000px;}
.y152{bottom:481.935000px;}
.y1e5{bottom:482.115000px;}
.y1f6{bottom:482.295000px;}
.y214{bottom:482.475000px;}
.y129{bottom:483.015000px;}
.y1c{bottom:484.815000px;}
.y185{bottom:488.955000px;}
.yf3{bottom:490.935000px;}
.yca{bottom:491.115000px;}
.y160{bottom:492.015000px;}
.y60{bottom:492.195000px;}
.y151{bottom:499.935000px;}
.y1f5{bottom:500.115000px;}
.y213{bottom:500.295000px;}
.y128{bottom:500.835000px;}
.y227{bottom:504.435000px;}
.yc9{bottom:508.935000px;}
.y15f{bottom:509.835000px;}
.y9b{bottom:510.015000px;}
.y1b{bottom:511.635000px;}
.y1ae{bottom:516.135000px;}
.y150{bottom:517.395000px;}
.y1e4{bottom:517.935000px;}
.y212{bottom:518.115000px;}
.y127{bottom:518.835000px;}
.y5f{bottom:519.015000px;}
.yf2{bottom:526.395000px;}
.yc8{bottom:526.935000px;}
.y9a{bottom:527.835000px;}
.y226{bottom:531.975000px;}
.y1e3{bottom:535.755000px;}
.y1f4{bottom:535.935000px;}
.y5e{bottom:536.835000px;}
.y1a{bottom:538.095000px;}
.y20{bottom:538.455000px;}
.y182{bottom:539.535000px;}
.y14f{bottom:544.575000px;}
.yc7{bottom:544.755000px;}
.y126{bottom:545.655000px;}
.y99{bottom:545.835000px;}
.yf1{bottom:553.575000px;}
.y1f3{bottom:553.755000px;}
.y211{bottom:553.935000px;}
.y5d{bottom:554.835000px;}
.y14e{bottom:562.395000px;}
.yc6{bottom:562.575000px;}
.y125{bottom:563.115000px;}
.y15e{bottom:563.475000px;}
.y98{bottom:563.655000px;}
.y1ac{bottom:566.535000px;}
.y19{bottom:566.715000px;}
.yf0{bottom:571.395000px;}
.y1f2{bottom:571.575000px;}
.y210{bottom:571.755000px;}
.y5c{bottom:572.655000px;}
.y14d{bottom:580.215000px;}
.yc5{bottom:580.395000px;}
.y15d{bottom:581.295000px;}
.y97{bottom:581.475000px;}
.yef{bottom:589.215000px;}
.y1f1{bottom:589.395000px;}
.y20f{bottom:589.575000px;}
.y124{bottom:590.295000px;}
.y5b{bottom:590.475000px;}
.y18{bottom:592.995000px;}
.y14c{bottom:598.035000px;}
.yc4{bottom:598.215000px;}
.y15c{bottom:599.115000px;}
.y96{bottom:599.295000px;}
.yee{bottom:607.035000px;}
.y1d7{bottom:607.215000px;}
.y20e{bottom:607.395000px;}
.y123{bottom:608.115000px;}
.y5a{bottom:608.295000px;}
.yc3{bottom:616.035000px;}
.y1aa{bottom:616.755000px;}
.y95{bottom:617.115000px;}
.y17{bottom:623.775000px;}
.y1d6{bottom:625.035000px;}
.y20d{bottom:625.215000px;}
.y59{bottom:626.115000px;}
.y14b{bottom:633.495000px;}
.yc2{bottom:634.035000px;}
.y15b{bottom:634.935000px;}
.y94{bottom:635.115000px;}
.y1d5{bottom:643.035000px;}
.y122{bottom:643.935000px;}
.y58{bottom:644.115000px;}
.yc1{bottom:651.855000px;}
.y15a{bottom:652.755000px;}
.y93{bottom:652.935000px;}
.y17e{bottom:658.875000px;}
.y14a{bottom:660.675000px;}
.y1d4{bottom:660.855000px;}
.y20c{bottom:661.035000px;}
.y121{bottom:661.755000px;}
.y57{bottom:661.935000px;}
.y1a7{bottom:668.055000px;}
.yc0{bottom:669.675000px;}
.y92{bottom:670.755000px;}
.y159{bottom:672.555000px;}
.y149{bottom:678.525000px;}
.y10b{bottom:678.705000px;}
.y20b{bottom:678.885000px;}
.y120{bottom:679.605000px;}
.y56{bottom:679.785000px;}
.y16{bottom:680.145000px;}
.yed{bottom:687.525000px;}
.y91{bottom:688.605000px;}
.y17d{bottom:696.165000px;}
.y148{bottom:696.345000px;}
.ybf{bottom:696.525000px;}
.y20a{bottom:696.705000px;}
.y11f{bottom:697.425000px;}
.y55{bottom:697.605000px;}
.yec{bottom:705.345000px;}
.y90{bottom:706.425000px;}
.y15{bottom:710.925000px;}
.y147{bottom:714.165000px;}
.ybe{bottom:714.345000px;}
.y209{bottom:714.525000px;}
.y11e{bottom:715.245000px;}
.y54{bottom:715.425000px;}
.yeb{bottom:723.165000px;}
.y8f{bottom:723.885000px;}
.ybd{bottom:732.165000px;}
.y208{bottom:732.345000px;}
.y53{bottom:733.245000px;}
.y178{bottom:740.985000px;}
.yea{bottom:741.165000px;}
.y8e{bottom:744.225000px;}
.y14{bottom:747.465000px;}
.y146{bottom:749.985000px;}
.ybc{bottom:750.165000px;}
.y11d{bottom:751.065000px;}
.y52{bottom:751.245000px;}
.ye9{bottom:758.985000px;}
.y145{bottom:767.805000px;}
.ybb{bottom:767.985000px;}
.y207{bottom:768.165000px;}
.y11c{bottom:768.885000px;}
.y51{bottom:769.065000px;}
.ye8{bottom:776.805000px;}
.y8d{bottom:776.985000px;}
.y17c{bottom:785.265000px;}
.y144{bottom:785.625000px;}
.yba{bottom:785.805000px;}
.y206{bottom:785.985000px;}
.y11b{bottom:786.345000px;}
.ye7{bottom:794.265000px;}
.y158{bottom:794.625000px;}
.y8c{bottom:794.805000px;}
.y50{bottom:795.885000px;}
.y13{bottom:800.565000px;}
.y1d3{bottom:803.265000px;}
.y143{bottom:803.445000px;}
.yb9{bottom:803.625000px;}
.y205{bottom:803.805000px;}
.y157{bottom:812.445000px;}
.y8b{bottom:812.625000px;}
.y11a{bottom:813.525000px;}
.y4f{bottom:813.705000px;}
.yb8{bottom:821.445000px;}
.y204{bottom:821.625000px;}
.y12{bottom:828.465000px;}
.y8a{bottom:830.445000px;}
.y119{bottom:831.345000px;}
.y4e{bottom:831.525000px;}
.y142{bottom:838.905000px;}
.y177{bottom:839.265000px;}
.yb7{bottom:839.445000px;}
.y17b{bottom:848.265000px;}
.y89{bottom:848.445000px;}
.y4d{bottom:849.345000px;}
.y176{bottom:857.085000px;}
.yb6{bottom:857.265000px;}
.y203{bottom:857.445000px;}
.y141{bottom:866.085000px;}
.y88{bottom:866.265000px;}
.y118{bottom:867.165000px;}
.y4c{bottom:867.345000px;}
.y11{bottom:874.545000px;}
.yb5{bottom:875.085000px;}
.y202{bottom:875.265000px;}
.y140{bottom:883.905000px;}
.y87{bottom:884.085000px;}
.y117{bottom:884.985000px;}
.y4b{bottom:885.165000px;}
.yb4{bottom:892.905000px;}
.y201{bottom:893.085000px;}
.y10{bottom:899.745000px;}
.y13f{bottom:901.725000px;}
.y86{bottom:901.905000px;}
.y116{bottom:902.805000px;}
.y4a{bottom:902.985000px;}
.y1a6{bottom:910.410000px;}
.ye6{bottom:910.770000px;}
.y200{bottom:910.950000px;}
.yf{bottom:919.590000px;}
.y85{bottom:919.770000px;}
.y115{bottom:920.670000px;}
.y49{bottom:920.850000px;}
.ye5{bottom:928.590000px;}
.y1ff{bottom:928.770000px;}
.y84{bottom:937.590000px;}
.y48{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.ye4{bottom:946.590000px;}
.y13e{bottom:955.410000px;}
.y83{bottom:955.590000px;}
.y114{bottom:956.490000px;}
.y47{bottom:956.670000px;}
.yd{bottom:959.010000px;}
.ye3{bottom:964.410000px;}
.y1fe{bottom:964.590000px;}
.y13d{bottom:973.230000px;}
.y82{bottom:973.410000px;}
.y113{bottom:974.310000px;}
.y46{bottom:974.490000px;}
.yc{bottom:979.170000px;}
.ye2{bottom:982.230000px;}
.y1fd{bottom:982.410000px;}
.y175{bottom:991.050000px;}
.y81{bottom:991.230000px;}
.y112{bottom:991.770000px;}
.y45{bottom:992.310000px;}
.ye1{bottom:1000.050000px;}
.y1d2{bottom:1000.230000px;}
.y174{bottom:1008.870000px;}
.y80{bottom:1009.050000px;}
.y44{bottom:1010.130000px;}
.y111{bottom:1011.930000px;}
.ye0{bottom:1017.870000px;}
.y1d1{bottom:1018.050000px;}
.yb{bottom:1019.130000px;}
.y7f{bottom:1026.870000px;}
.y43{bottom:1027.950000px;}
.ya{bottom:1031.190000px;}
.ydf{bottom:1035.510000px;}
.y17a{bottom:1035.870000px;}
.y9{bottom:1043.250000px;}
.yb3{bottom:1044.870000px;}
.y42{bottom:1045.770000px;}
.y173{bottom:1053.690000px;}
.y7e{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.yb2{bottom:1062.690000px;}
.y41{bottom:1063.770000px;}
.y7{bottom:1069.890000px;}
.y172{bottom:1071.510000px;}
.y7d{bottom:1071.690000px;}
.yb1{bottom:1080.510000px;}
.y40{bottom:1081.590000px;}
.y171{bottom:1089.330000px;}
.y7c{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.yb0{bottom:1098.330000px;}
.y3f{bottom:1099.410000px;}
.y170{bottom:1107.150000px;}
.y7b{bottom:1107.330000px;}
.yde{bottom:1115.790000px;}
.y10a{bottom:1116.150000px;}
.y3e{bottom:1117.230000px;}
.y16f{bottom:1124.970000px;}
.y7a{bottom:1125.150000px;}
.y109{bottom:1133.970000px;}
.y3d{bottom:1135.050000px;}
.y79{bottom:1142.970000px;}
.y108{bottom:1152.000000px;}
.y3c{bottom:1153.080000px;}
.y16e{bottom:1160.820000px;}
.y78{bottom:1161.000000px;}
.y179{bottom:1169.820000px;}
.y3b{bottom:1170.900000px;}
.y77{bottom:1178.820000px;}
.y16d{bottom:1187.640000px;}
.y3a{bottom:1190.700000px;}
.y1e2{bottom:1196.280000px;}
.y76{bottom:1196.640000px;}
.h15{height:26.805000px;}
.h18{height:26.815500px;}
.h17{height:26.820000px;}
.h23{height:26.841000px;}
.h19{height:26.850000px;}
.h16{height:26.856000px;}
.h2{height:31.135500px;}
.h1b{height:37.705078px;}
.h7{height:40.985156px;}
.h21{height:44.265000px;}
.h1d{height:44.625000px;}
.h1a{height:44.805000px;}
.h22{height:45.165000px;}
.h20{height:45.345000px;}
.h25{height:52.971680px;}
.h3{height:52.998047px;}
.he{height:54.421875px;}
.h24{height:55.503491px;}
.h14{height:56.214844px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h9{height:60.226875px;}
.h1e{height:62.481000px;}
.h1f{height:62.490000px;}
.h1c{height:62.625000px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.h26{height:70.664062px;}
.hb{height:72.326250px;}
.hf{height:78.367500px;}
.h13{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h10{height:364.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:37.065000px;}
.we{width:42.502500px;}
.w8{width:51.825000px;}
.w3{width:80.310000px;}
.w10{width:124.956000px;}
.wd{width:131.070000px;}
.w6{width:140.616000px;}
.wf{width:152.991000px;}
.wa{width:160.405500px;}
.w11{width:163.290000px;}
.wb{width:186.870000px;}
.w5{width:239.470500px;}
.w12{width:280.860000px;}
.wc{width:289.695000px;}
.w9{width:290.940000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:1.255500px;}
.x1e{left:4.665000px;}
.x20{left:5.925000px;}
.x32{left:7.555500px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x2c{left:12.960000px;}
.x1c{left:14.040000px;}
.x22{left:15.105000px;}
.x2e{left:20.565000px;}
.x23{left:22.305000px;}
.x25{left:33.480000px;}
.x12{left:38.340000px;}
.x1{left:45.364500px;}
.x35{left:47.025000px;}
.x14{left:49.140000px;}
.x33{left:50.445000px;}
.x5{left:54.000000px;}
.x26{left:56.884500px;}
.x19{left:59.044500px;}
.x30{left:60.690000px;}
.xb{left:64.080000px;}
.x24{left:66.780000px;}
.x34{left:70.050000px;}
.x15{left:80.856000px;}
.x2b{left:103.176000px;}
.x38{left:108.036000px;}
.xd{left:148.536000px;}
.x2a{left:214.410000px;}
.xf{left:218.190000px;}
.x27{left:221.070000px;}
.x2{left:222.370500px;}
.x2d{left:259.950000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.xe{left:287.175000px;}
.x9{left:297.795000px;}
.x1b{left:302.295000px;}
.x10{left:314.355000px;}
.xc{left:321.195000px;}
.x18{left:358.995000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x2f{left:388.515000px;}
.x28{left:411.735000px;}
.x1d{left:446.700000px;}
.x11{left:473.505000px;}
.x1f{left:487.560000px;}
.x17{left:498.345000px;}
.x16{left:500.505000px;}
.x37{left:525.345000px;}
.x39{left:527.505000px;}
.x21{left:543.180000px;}
.x31{left:555.420000px;}
.x29{left:705.210000px;}
.x4{left:767.490000px;}
.x36{left:812.520000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.480000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls11{letter-spacing:46.816000pt;}
.ls3{letter-spacing:63.360000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.272320pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.112000pt;}
.wsf{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
.ws2{word-spacing:54.080000pt;}
._12{margin-left:-9.487360pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._6{width:1.987413pt;}
._f{width:2.901120pt;}
._9{width:3.813547pt;}
._7{width:5.152640pt;}
._8{width:6.080427pt;}
._c{width:7.169920pt;}
._d{width:8.708053pt;}
._e{width:10.012416pt;}
._a{width:11.341824pt;}
._b{width:12.271232pt;}
._19{width:13.260843pt;}
._10{width:14.195413pt;}
._13{width:15.744000pt;}
._14{width:16.944000pt;}
._1d{width:17.875413pt;}
._11{width:19.454293pt;}
._16{width:20.517333pt;}
._15{width:21.408000pt;}
._1a{width:22.368000pt;}
._22{width:23.306667pt;}
._27{width:24.672000pt;}
._1c{width:26.016000pt;}
._1e{width:27.573333pt;}
._18{width:28.800000pt;}
._17{width:29.952000pt;}
._20{width:30.912000pt;}
._21{width:31.872000pt;}
._2b{width:32.928000pt;}
._1f{width:33.888000pt;}
._2e{width:34.896000pt;}
._26{width:35.904000pt;}
._25{width:36.912000pt;}
._3c{width:38.032000pt;}
._35{width:39.536000pt;}
._2a{width:40.752000pt;}
._3a{width:42.501333pt;}
._34{width:44.256000pt;}
._24{width:45.648000pt;}
._23{width:46.704000pt;}
._36{width:47.706667pt;}
._1b{width:49.008000pt;}
._3e{width:50.688000pt;}
._3d{width:51.696000pt;}
._31{width:55.632000pt;}
._38{width:57.354667pt;}
._28{width:58.272000pt;}
._29{width:59.376000pt;}
._32{width:61.008000pt;}
._43{width:64.320000pt;}
._42{width:65.280000pt;}
._39{width:67.840000pt;}
._3{width:69.504000pt;}
._2c{width:71.328000pt;}
._41{width:72.336000pt;}
._40{width:73.920000pt;}
._33{width:88.752000pt;}
._30{width:94.080000pt;}
._2d{width:104.688000pt;}
._3b{width:126.816000pt;}
._4{width:140.320000pt;}
._2f{width:149.904000pt;}
._37{width:228.590080pt;}
._3f{width:298.608000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y39{bottom:-6.880000pt;}
.y16c{bottom:-3.040000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y164{bottom:8.946667pt;}
.y169{bottom:8.960000pt;}
.y1a8{bottom:8.986667pt;}
.y1b9{bottom:9.106667pt;}
.y181{bottom:9.120000pt;}
.y4{bottom:13.920000pt;}
.y1ad{bottom:16.640000pt;}
.y2{bottom:16.800000pt;}
.y189{bottom:16.946667pt;}
.y17f{bottom:16.960000pt;}
.y1a9{bottom:16.986667pt;}
.y1b8{bottom:17.106667pt;}
.y1b0{bottom:17.120000pt;}
.y1b3{bottom:17.266667pt;}
.y1ab{bottom:17.280000pt;}
.y18d{bottom:24.786667pt;}
.y186{bottom:24.800000pt;}
.y18b{bottom:24.826667pt;}
.y1b6{bottom:24.946667pt;}
.y180{bottom:24.960000pt;}
.y18f{bottom:32.786667pt;}
.y183{bottom:32.800000pt;}
.y188{bottom:32.826667pt;}
.y5{bottom:35.360000pt;}
.y18a{bottom:40.666667pt;}
.y18e{bottom:40.786667pt;}
.y184{bottom:40.800000pt;}
.y1{bottom:53.920000pt;}
.y36{bottom:60.986667pt;}
.y35{bottom:78.746667pt;}
.y1a5{bottom:91.040000pt;}
.y1c0{bottom:92.160000pt;}
.y107{bottom:95.200000pt;}
.y13c{bottom:95.840000pt;}
.y75{bottom:96.160000pt;}
.y34{bottom:96.346667pt;}
.y19a{bottom:98.880000pt;}
.ydd{bottom:103.200000pt;}
.yaf{bottom:104.000000pt;}
.y1a4{bottom:106.880000pt;}
.y1bf{bottom:108.160000pt;}
.y16b{bottom:108.800000pt;}
.y106{bottom:111.040000pt;}
.y1e1{bottom:111.200000pt;}
.y225{bottom:111.360000pt;}
.y13b{bottom:111.680000pt;}
.y74{bottom:112.000000pt;}
.y28{bottom:112.640000pt;}
.y1f0{bottom:112.800000pt;}
.y33{bottom:113.946667pt;}
.y199{bottom:114.720000pt;}
.ydc{bottom:119.040000pt;}
.yae{bottom:120.000000pt;}
.y1a3{bottom:122.720000pt;}
.y1be{bottom:124.000000pt;}
.y105{bottom:126.880000pt;}
.y1e0{bottom:127.040000pt;}
.y224{bottom:127.200000pt;}
.y13a{bottom:127.520000pt;}
.y73{bottom:128.000000pt;}
.y1ef{bottom:128.640000pt;}
.y198{bottom:130.560000pt;}
.y32{bottom:131.546667pt;}
.ydb{bottom:134.880000pt;}
.yad{bottom:135.840000pt;}
.y16a{bottom:137.920000pt;}
.y1a2{bottom:138.560000pt;}
.y1bd{bottom:139.840000pt;}
.y104{bottom:142.720000pt;}
.y1df{bottom:142.880000pt;}
.y223{bottom:143.200000pt;}
.y139{bottom:143.360000pt;}
.y72{bottom:143.840000pt;}
.y1ee{bottom:144.480000pt;}
.y197{bottom:146.560000pt;}
.y29{bottom:147.040000pt;}
.y1c3{bottom:147.840000pt;}
.y31{bottom:149.146667pt;}
.yda{bottom:150.720000pt;}
.yac{bottom:151.680000pt;}
.y1a1{bottom:154.560000pt;}
.y1bc{bottom:155.680000pt;}
.y103{bottom:158.560000pt;}
.y1de{bottom:158.720000pt;}
.y222{bottom:159.040000pt;}
.y1cf{bottom:159.200000pt;}
.y138{bottom:159.360000pt;}
.y27{bottom:159.520000pt;}
.y71{bottom:159.680000pt;}
.y1ed{bottom:160.320000pt;}
.y196{bottom:162.400000pt;}
.y1c2{bottom:163.680000pt;}
.y38{bottom:164.800000pt;}
.yd9{bottom:166.560000pt;}
.y30{bottom:166.906667pt;}
.y168{bottom:167.200000pt;}
.yab{bottom:167.520000pt;}
.y1a0{bottom:170.400000pt;}
.y1bb{bottom:171.520000pt;}
.y102{bottom:174.400000pt;}
.y1dd{bottom:174.560000pt;}
.y221{bottom:174.880000pt;}
.y137{bottom:175.200000pt;}
.y70{bottom:175.520000pt;}
.y1ec{bottom:176.160000pt;}
.y1c1{bottom:179.520000pt;}
.y37{bottom:182.400000pt;}
.yaa{bottom:183.386667pt;}
.y2f{bottom:184.506667pt;}
.y195{bottom:186.266667pt;}
.y101{bottom:190.426667pt;}
.y136{bottom:190.746667pt;}
.y1ce{bottom:191.066667pt;}
.y6f{bottom:191.386667pt;}
.y1eb{bottom:192.186667pt;}
.y1ba{bottom:195.546667pt;}
.y167{bottom:196.360000pt;}
.yd8{bottom:198.426667pt;}
.ya9{bottom:199.386667pt;}
.y2e{bottom:202.106667pt;}
.y100{bottom:206.266667pt;}
.y26{bottom:206.426667pt;}
.y220{bottom:206.586667pt;}
.y1cd{bottom:206.906667pt;}
.y1ea{bottom:208.026667pt;}
.y19f{bottom:210.106667pt;}
.y110{bottom:214.266667pt;}
.y135{bottom:214.906667pt;}
.ya8{bottom:215.226667pt;}
.y6e{bottom:215.386667pt;}
.y194{bottom:217.946667pt;}
.y1b7{bottom:218.760000pt;}
.y2d{bottom:219.706667pt;}
.yff{bottom:222.106667pt;}
.yd7{bottom:222.266667pt;}
.y21f{bottom:222.426667pt;}
.y1cc{bottom:222.746667pt;}
.y1e9{bottom:223.866667pt;}
.y166{bottom:225.640000pt;}
.y19e{bottom:225.946667pt;}
.y10f{bottom:230.106667pt;}
.y134{bottom:230.746667pt;}
.y1fc{bottom:231.066667pt;}
.y6d{bottom:231.226667pt;}
.y193{bottom:233.786667pt;}
.y25{bottom:237.306667pt;}
.yfe{bottom:237.946667pt;}
.yd6{bottom:238.106667pt;}
.y21e{bottom:238.426667pt;}
.y1cb{bottom:238.586667pt;}
.ya7{bottom:239.066667pt;}
.y1e8{bottom:241.466667pt;}
.y19d{bottom:241.786667pt;}
.y10e{bottom:245.626667pt;}
.y1fb{bottom:246.906667pt;}
.y6c{bottom:247.066667pt;}
.y192{bottom:249.786667pt;}
.yfd{bottom:253.786667pt;}
.yd5{bottom:253.946667pt;}
.y21d{bottom:254.266667pt;}
.y1ca{bottom:254.426667pt;}
.y133{bottom:254.586667pt;}
.y165{bottom:254.760000pt;}
.ya6{bottom:254.906667pt;}
.y2c{bottom:255.106667pt;}
.y19c{bottom:257.786667pt;}
.y1fa{bottom:262.746667pt;}
.y6b{bottom:262.906667pt;}
.y1b5{bottom:264.200000pt;}
.y1e7{bottom:264.506667pt;}
.y191{bottom:265.626667pt;}
.y23{bottom:268.346667pt;}
.yd4{bottom:269.786667pt;}
.y21c{bottom:270.106667pt;}
.y1c9{bottom:270.426667pt;}
.y132{bottom:270.586667pt;}
.ya5{bottom:270.746667pt;}
.y2b{bottom:272.706667pt;}
.y19b{bottom:273.626667pt;}
.y6a{bottom:278.746667pt;}
.y1f9{bottom:280.506667pt;}
.y163{bottom:284.040000pt;}
.yfc{bottom:285.626667pt;}
.yd3{bottom:285.786667pt;}
.y21b{bottom:285.946667pt;}
.y1c8{bottom:286.266667pt;}
.y131{bottom:286.426667pt;}
.ya4{bottom:286.586667pt;}
.y190{bottom:289.466667pt;}
.y1e6{bottom:293.626667pt;}
.y1dc{bottom:293.786667pt;}
.y69{bottom:294.586667pt;}
.y22{bottom:299.226667pt;}
.y2a{bottom:299.586667pt;}
.yd2{bottom:301.626667pt;}
.y1c7{bottom:301.786667pt;}
.y1d0{bottom:302.106667pt;}
.ya3{bottom:302.586667pt;}
.y24{bottom:304.186667pt;}
.y1b4{bottom:309.320000pt;}
.yfb{bottom:309.466667pt;}
.y1db{bottom:309.626667pt;}
.y130{bottom:310.266667pt;}
.y68{bottom:310.586667pt;}
.y18c{bottom:312.680000pt;}
.y162{bottom:317.146667pt;}
.yd1{bottom:317.466667pt;}
.y21a{bottom:317.786667pt;}
.ya2{bottom:318.426667pt;}
.yfa{bottom:325.306667pt;}
.y1da{bottom:325.466667pt;}
.y1c6{bottom:325.946667pt;}
.y12f{bottom:326.106667pt;}
.y67{bottom:326.426667pt;}
.y21{bottom:330.106667pt;}
.yd0{bottom:333.306667pt;}
.y219{bottom:333.626667pt;}
.ya1{bottom:334.266667pt;}
.y1b2{bottom:338.440000pt;}
.y156{bottom:340.666667pt;}
.yf9{bottom:341.146667pt;}
.y1d9{bottom:341.306667pt;}
.y12e{bottom:341.946667pt;}
.y66{bottom:342.266667pt;}
.ycf{bottom:349.146667pt;}
.y218{bottom:349.466667pt;}
.y1c5{bottom:349.786667pt;}
.y161{bottom:349.946667pt;}
.ya0{bottom:350.106667pt;}
.yf8{bottom:356.986667pt;}
.y1d8{bottom:357.146667pt;}
.y12d{bottom:357.946667pt;}
.y65{bottom:358.106667pt;}
.y1f{bottom:359.226667pt;}
.yce{bottom:364.986667pt;}
.y217{bottom:365.306667pt;}
.y9f{bottom:365.946667pt;}
.y1c4{bottom:370.906667pt;}
.yf7{bottom:372.986667pt;}
.y187{bottom:373.640000pt;}
.y64{bottom:373.946667pt;}
.y155{bottom:380.826667pt;}
.ycd{bottom:380.986667pt;}
.y216{bottom:381.146667pt;}
.y12c{bottom:381.786667pt;}
.y9e{bottom:381.946667pt;}
.y1e{bottom:383.226667pt;}
.y1b1{bottom:384.040000pt;}
.yf6{bottom:388.826667pt;}
.y10d{bottom:388.986667pt;}
.y63{bottom:389.946667pt;}
.y154{bottom:396.706667pt;}
.ycc{bottom:396.866667pt;}
.y1f8{bottom:397.026667pt;}
.y12b{bottom:397.666667pt;}
.y9d{bottom:397.826667pt;}
.yf5{bottom:404.706667pt;}
.y10c{bottom:404.866667pt;}
.y62{bottom:405.826667pt;}
.y1d{bottom:407.106667pt;}
.y153{bottom:412.546667pt;}
.y1f7{bottom:412.866667pt;}
.y215{bottom:413.026667pt;}
.y1af{bottom:413.346667pt;}
.y12a{bottom:413.506667pt;}
.y9c{bottom:413.666667pt;}
.y228{bottom:419.106667pt;}
.yf4{bottom:420.546667pt;}
.ycb{bottom:420.706667pt;}
.y61{bottom:421.666667pt;}
.y152{bottom:428.386667pt;}
.y1e5{bottom:428.546667pt;}
.y1f6{bottom:428.706667pt;}
.y214{bottom:428.866667pt;}
.y129{bottom:429.346667pt;}
.y1c{bottom:430.946667pt;}
.y185{bottom:434.626667pt;}
.yf3{bottom:436.386667pt;}
.yca{bottom:436.546667pt;}
.y160{bottom:437.346667pt;}
.y60{bottom:437.506667pt;}
.y151{bottom:444.386667pt;}
.y1f5{bottom:444.546667pt;}
.y213{bottom:444.706667pt;}
.y128{bottom:445.186667pt;}
.y227{bottom:448.386667pt;}
.yc9{bottom:452.386667pt;}
.y15f{bottom:453.186667pt;}
.y9b{bottom:453.346667pt;}
.y1b{bottom:454.786667pt;}
.y1ae{bottom:458.786667pt;}
.y150{bottom:459.906667pt;}
.y1e4{bottom:460.386667pt;}
.y212{bottom:460.546667pt;}
.y127{bottom:461.186667pt;}
.y5f{bottom:461.346667pt;}
.yf2{bottom:467.906667pt;}
.yc8{bottom:468.386667pt;}
.y9a{bottom:469.186667pt;}
.y226{bottom:472.866667pt;}
.y1e3{bottom:476.226667pt;}
.y1f4{bottom:476.386667pt;}
.y5e{bottom:477.186667pt;}
.y1a{bottom:478.306667pt;}
.y20{bottom:478.626667pt;}
.y182{bottom:479.586667pt;}
.y14f{bottom:484.066667pt;}
.yc7{bottom:484.226667pt;}
.y126{bottom:485.026667pt;}
.y99{bottom:485.186667pt;}
.yf1{bottom:492.066667pt;}
.y1f3{bottom:492.226667pt;}
.y211{bottom:492.386667pt;}
.y5d{bottom:493.186667pt;}
.y14e{bottom:499.906667pt;}
.yc6{bottom:500.066667pt;}
.y125{bottom:500.546667pt;}
.y15e{bottom:500.866667pt;}
.y98{bottom:501.026667pt;}
.y1ac{bottom:503.586667pt;}
.y19{bottom:503.746667pt;}
.yf0{bottom:507.906667pt;}
.y1f2{bottom:508.066667pt;}
.y210{bottom:508.226667pt;}
.y5c{bottom:509.026667pt;}
.y14d{bottom:515.746667pt;}
.yc5{bottom:515.906667pt;}
.y15d{bottom:516.706667pt;}
.y97{bottom:516.866667pt;}
.yef{bottom:523.746667pt;}
.y1f1{bottom:523.906667pt;}
.y20f{bottom:524.066667pt;}
.y124{bottom:524.706667pt;}
.y5b{bottom:524.866667pt;}
.y18{bottom:527.106667pt;}
.y14c{bottom:531.586667pt;}
.yc4{bottom:531.746667pt;}
.y15c{bottom:532.546667pt;}
.y96{bottom:532.706667pt;}
.yee{bottom:539.586667pt;}
.y1d7{bottom:539.746667pt;}
.y20e{bottom:539.906667pt;}
.y123{bottom:540.546667pt;}
.y5a{bottom:540.706667pt;}
.yc3{bottom:547.586667pt;}
.y1aa{bottom:548.226667pt;}
.y95{bottom:548.546667pt;}
.y17{bottom:554.466667pt;}
.y1d6{bottom:555.586667pt;}
.y20d{bottom:555.746667pt;}
.y59{bottom:556.546667pt;}
.y14b{bottom:563.106667pt;}
.yc2{bottom:563.586667pt;}
.y15b{bottom:564.386667pt;}
.y94{bottom:564.546667pt;}
.y1d5{bottom:571.586667pt;}
.y122{bottom:572.386667pt;}
.y58{bottom:572.546667pt;}
.yc1{bottom:579.426667pt;}
.y15a{bottom:580.226667pt;}
.y93{bottom:580.386667pt;}
.y17e{bottom:585.666667pt;}
.y14a{bottom:587.266667pt;}
.y1d4{bottom:587.426667pt;}
.y20c{bottom:587.586667pt;}
.y121{bottom:588.226667pt;}
.y57{bottom:588.386667pt;}
.y1a7{bottom:593.826667pt;}
.yc0{bottom:595.266667pt;}
.y92{bottom:596.226667pt;}
.y159{bottom:597.826667pt;}
.y149{bottom:603.133333pt;}
.y10b{bottom:603.293333pt;}
.y20b{bottom:603.453333pt;}
.y120{bottom:604.093333pt;}
.y56{bottom:604.253333pt;}
.y16{bottom:604.573333pt;}
.yed{bottom:611.133333pt;}
.y91{bottom:612.093333pt;}
.y17d{bottom:618.813333pt;}
.y148{bottom:618.973333pt;}
.ybf{bottom:619.133333pt;}
.y20a{bottom:619.293333pt;}
.y11f{bottom:619.933333pt;}
.y55{bottom:620.093333pt;}
.yec{bottom:626.973333pt;}
.y90{bottom:627.933333pt;}
.y15{bottom:631.933333pt;}
.y147{bottom:634.813333pt;}
.ybe{bottom:634.973333pt;}
.y209{bottom:635.133333pt;}
.y11e{bottom:635.773333pt;}
.y54{bottom:635.933333pt;}
.yeb{bottom:642.813333pt;}
.y8f{bottom:643.453333pt;}
.ybd{bottom:650.813333pt;}
.y208{bottom:650.973333pt;}
.y53{bottom:651.773333pt;}
.y178{bottom:658.653333pt;}
.yea{bottom:658.813333pt;}
.y8e{bottom:661.533333pt;}
.y14{bottom:664.413333pt;}
.y146{bottom:666.653333pt;}
.ybc{bottom:666.813333pt;}
.y11d{bottom:667.613333pt;}
.y52{bottom:667.773333pt;}
.ye9{bottom:674.653333pt;}
.y145{bottom:682.493333pt;}
.ybb{bottom:682.653333pt;}
.y207{bottom:682.813333pt;}
.y11c{bottom:683.453333pt;}
.y51{bottom:683.613333pt;}
.ye8{bottom:690.493333pt;}
.y8d{bottom:690.653333pt;}
.y17c{bottom:698.013333pt;}
.y144{bottom:698.333333pt;}
.yba{bottom:698.493333pt;}
.y206{bottom:698.653333pt;}
.y11b{bottom:698.973333pt;}
.ye7{bottom:706.013333pt;}
.y158{bottom:706.333333pt;}
.y8c{bottom:706.493333pt;}
.y50{bottom:707.453333pt;}
.y13{bottom:711.613333pt;}
.y1d3{bottom:714.013333pt;}
.y143{bottom:714.173333pt;}
.yb9{bottom:714.333333pt;}
.y205{bottom:714.493333pt;}
.y157{bottom:722.173333pt;}
.y8b{bottom:722.333333pt;}
.y11a{bottom:723.133333pt;}
.y4f{bottom:723.293333pt;}
.yb8{bottom:730.173333pt;}
.y204{bottom:730.333333pt;}
.y12{bottom:736.413333pt;}
.y8a{bottom:738.173333pt;}
.y119{bottom:738.973333pt;}
.y4e{bottom:739.133333pt;}
.y142{bottom:745.693333pt;}
.y177{bottom:746.013333pt;}
.yb7{bottom:746.173333pt;}
.y17b{bottom:754.013333pt;}
.y89{bottom:754.173333pt;}
.y4d{bottom:754.973333pt;}
.y176{bottom:761.853333pt;}
.yb6{bottom:762.013333pt;}
.y203{bottom:762.173333pt;}
.y141{bottom:769.853333pt;}
.y88{bottom:770.013333pt;}
.y118{bottom:770.813333pt;}
.y4c{bottom:770.973333pt;}
.y11{bottom:777.373333pt;}
.yb5{bottom:777.853333pt;}
.y202{bottom:778.013333pt;}
.y140{bottom:785.693333pt;}
.y87{bottom:785.853333pt;}
.y117{bottom:786.653333pt;}
.y4b{bottom:786.813333pt;}
.yb4{bottom:793.693333pt;}
.y201{bottom:793.853333pt;}
.y10{bottom:799.773333pt;}
.y13f{bottom:801.533333pt;}
.y86{bottom:801.693333pt;}
.y116{bottom:802.493333pt;}
.y4a{bottom:802.653333pt;}
.y1a6{bottom:809.253333pt;}
.ye6{bottom:809.573333pt;}
.y200{bottom:809.733333pt;}
.yf{bottom:817.413333pt;}
.y85{bottom:817.573333pt;}
.y115{bottom:818.373333pt;}
.y49{bottom:818.533333pt;}
.ye5{bottom:825.413333pt;}
.y1ff{bottom:825.573333pt;}
.y84{bottom:833.413333pt;}
.y48{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.ye4{bottom:841.413333pt;}
.y13e{bottom:849.253333pt;}
.y83{bottom:849.413333pt;}
.y114{bottom:850.213333pt;}
.y47{bottom:850.373333pt;}
.yd{bottom:852.453333pt;}
.ye3{bottom:857.253333pt;}
.y1fe{bottom:857.413333pt;}
.y13d{bottom:865.093333pt;}
.y82{bottom:865.253333pt;}
.y113{bottom:866.053333pt;}
.y46{bottom:866.213333pt;}
.yc{bottom:870.373333pt;}
.ye2{bottom:873.093333pt;}
.y1fd{bottom:873.253333pt;}
.y175{bottom:880.933333pt;}
.y81{bottom:881.093333pt;}
.y112{bottom:881.573333pt;}
.y45{bottom:882.053333pt;}
.ye1{bottom:888.933333pt;}
.y1d2{bottom:889.093333pt;}
.y174{bottom:896.773333pt;}
.y80{bottom:896.933333pt;}
.y44{bottom:897.893333pt;}
.y111{bottom:899.493333pt;}
.ye0{bottom:904.773333pt;}
.y1d1{bottom:904.933333pt;}
.yb{bottom:905.893333pt;}
.y7f{bottom:912.773333pt;}
.y43{bottom:913.733333pt;}
.ya{bottom:916.613333pt;}
.ydf{bottom:920.453333pt;}
.y17a{bottom:920.773333pt;}
.y9{bottom:927.333333pt;}
.yb3{bottom:928.773333pt;}
.y42{bottom:929.573333pt;}
.y173{bottom:936.613333pt;}
.y7e{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.yb2{bottom:944.613333pt;}
.y41{bottom:945.573333pt;}
.y7{bottom:951.013333pt;}
.y172{bottom:952.453333pt;}
.y7d{bottom:952.613333pt;}
.yb1{bottom:960.453333pt;}
.y40{bottom:961.413333pt;}
.y171{bottom:968.293333pt;}
.y7c{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.yb0{bottom:976.293333pt;}
.y3f{bottom:977.253333pt;}
.y170{bottom:984.133333pt;}
.y7b{bottom:984.293333pt;}
.yde{bottom:991.813333pt;}
.y10a{bottom:992.133333pt;}
.y3e{bottom:993.093333pt;}
.y16f{bottom:999.973333pt;}
.y7a{bottom:1000.133333pt;}
.y109{bottom:1007.973333pt;}
.y3d{bottom:1008.933333pt;}
.y79{bottom:1015.973333pt;}
.y108{bottom:1024.000000pt;}
.y3c{bottom:1024.960000pt;}
.y16e{bottom:1031.840000pt;}
.y78{bottom:1032.000000pt;}
.y179{bottom:1039.840000pt;}
.y3b{bottom:1040.800000pt;}
.y77{bottom:1047.840000pt;}
.y16d{bottom:1055.680000pt;}
.y3a{bottom:1058.400000pt;}
.y1e2{bottom:1063.360000pt;}
.y76{bottom:1063.680000pt;}
.h15{height:23.826667pt;}
.h18{height:23.836000pt;}
.h17{height:23.840000pt;}
.h23{height:23.858667pt;}
.h19{height:23.866667pt;}
.h16{height:23.872000pt;}
.h2{height:27.676000pt;}
.h1b{height:33.515625pt;}
.h7{height:36.431250pt;}
.h21{height:39.346667pt;}
.h1d{height:39.666667pt;}
.h1a{height:39.826667pt;}
.h22{height:40.146667pt;}
.h20{height:40.306667pt;}
.h25{height:47.085938pt;}
.h3{height:47.109375pt;}
.he{height:48.375000pt;}
.h24{height:49.336436pt;}
.h14{height:49.968750pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h9{height:53.535000pt;}
.h1e{height:55.538667pt;}
.h1f{height:55.546667pt;}
.h1c{height:55.666667pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.h26{height:62.812500pt;}
.hb{height:64.290000pt;}
.hf{height:69.660000pt;}
.h13{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h10{height:323.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:32.946667pt;}
.we{width:37.780000pt;}
.w8{width:46.066667pt;}
.w3{width:71.386667pt;}
.w10{width:111.072000pt;}
.wd{width:116.506667pt;}
.w6{width:124.992000pt;}
.wf{width:135.992000pt;}
.wa{width:142.582667pt;}
.w11{width:145.146667pt;}
.wb{width:166.106667pt;}
.w5{width:212.862667pt;}
.w12{width:249.653333pt;}
.wc{width:257.506667pt;}
.w9{width:258.613333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.116000pt;}
.x1e{left:4.146667pt;}
.x20{left:5.266667pt;}
.x32{left:6.716000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x2c{left:11.520000pt;}
.x1c{left:12.480000pt;}
.x22{left:13.426667pt;}
.x2e{left:18.280000pt;}
.x23{left:19.826667pt;}
.x25{left:29.760000pt;}
.x12{left:34.080000pt;}
.x1{left:40.324000pt;}
.x35{left:41.800000pt;}
.x14{left:43.680000pt;}
.x33{left:44.840000pt;}
.x5{left:48.000000pt;}
.x26{left:50.564000pt;}
.x19{left:52.484000pt;}
.x30{left:53.946667pt;}
.xb{left:56.960000pt;}
.x24{left:59.360000pt;}
.x34{left:62.266667pt;}
.x15{left:71.872000pt;}
.x2b{left:91.712000pt;}
.x38{left:96.032000pt;}
.xd{left:132.032000pt;}
.x2a{left:190.586667pt;}
.xf{left:193.946667pt;}
.x27{left:196.506667pt;}
.x2{left:197.662667pt;}
.x2d{left:231.066667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.xe{left:255.266667pt;}
.x9{left:264.706667pt;}
.x1b{left:268.706667pt;}
.x10{left:279.426667pt;}
.xc{left:285.506667pt;}
.x18{left:319.106667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x2f{left:345.346667pt;}
.x28{left:365.986667pt;}
.x1d{left:397.066667pt;}
.x11{left:420.893333pt;}
.x1f{left:433.386667pt;}
.x17{left:442.973333pt;}
.x16{left:444.893333pt;}
.x37{left:466.973333pt;}
.x39{left:468.893333pt;}
.x21{left:482.826667pt;}
.x31{left:493.706667pt;}
.x29{left:626.853333pt;}
.x4{left:682.213333pt;}
.x36{left:722.240000pt;}
}




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