
    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_17e9bea7da5b7acade436825.woff2')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_e23f1e8e0ca1a4dd0617c400.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8db763c96940d49372d8b84b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0940686f58101f443cebba2.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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a7eee248fb04ddd5472beecf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_41df260eb341289321358d7c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-68.400000px;}
.v7{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.880000px;}
.v3{vertical-align:30.240000px;}
.ls19{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.220800px;}
.ls11{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls16{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.126000px;}
.ls1d{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.468000px;}
.ls13{letter-spacing:0.936000px;}
.ls15{letter-spacing:0.954000px;}
.ls25{letter-spacing:1.080000px;}
.ls4{letter-spacing:3.060000px;}
.ls3{letter-spacing:4.500000px;}
.ls1f{letter-spacing:6.749280px;}
.ls29{letter-spacing:24.588000px;}
.ls1e{letter-spacing:31.229280px;}
.ls28{letter-spacing:38.988000px;}
.ls10{letter-spacing:45.468000px;}
.ls2{letter-spacing:66.420000px;}
.ls1b{letter-spacing:68.508000px;}
.ls0{letter-spacing:169.380000px;}
.ls26{letter-spacing:661.260000px;}
.ls22{letter-spacing:914.880000px;}
.ls21{letter-spacing:1118.640000px;}
.ls18{letter-spacing:1164.720000px;}
.ls8{letter-spacing:1226.640000px;}
.ls27{letter-spacing:1356.240000px;}
.ls1c{letter-spacing:1373.640000px;}
.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;}
}
.ws15{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.454000px;}
.ws10{word-spacing:-14.436000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.999200px;}
.ws14{word-spacing:-13.968000px;}
.wsa{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.482000px;}
.ws17{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.996000px;}
.ws1d{word-spacing:-12.960000px;}
.wsd{word-spacing:-12.906000px;}
.ws16{word-spacing:-12.528000px;}
.ws1a{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.329400px;}
.ws18{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.313280px;}
._7{width:3.294720px;}
._8{width:4.500720px;}
._9{width:5.777280px;}
._a{width:6.984000px;}
._5{width:7.992000px;}
._6{width:9.048000px;}
._d{width:10.401600px;}
._f{width:12.042000px;}
._11{width:14.796000px;}
._12{width:16.596000px;}
._13{width:18.090000px;}
._e{width:19.104720px;}
._c{width:20.466000px;}
._b{width:21.654000px;}
._15{width:25.332000px;}
._14{width:26.406000px;}
._16{width:34.896720px;}
._18{width:924.456000px;}
._10{width:1041.420000px;}
._17{width:1222.500000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.700000px;}
.y67{bottom:2.880000px;}
.y75{bottom:3.045000px;}
.y7f{bottom:3.046500px;}
.y6e{bottom:3.060000px;}
.y70{bottom:3.225000px;}
.y7b{bottom:3.226500px;}
.y82{bottom:3.232500px;}
.y6a{bottom:3.240000px;}
.yad{bottom:3.405000px;}
.y72{bottom:3.420000px;}
.y1ca{bottom:4.320000px;}
.y120{bottom:16.560000px;}
.y125{bottom:16.920000px;}
.y79{bottom:18.525000px;}
.y7e{bottom:18.526500px;}
.y68{bottom:18.540000px;}
.ya8{bottom:18.705000px;}
.y1d6{bottom:18.712500px;}
.y6d{bottom:18.720000px;}
.y74{bottom:18.750000px;}
.yaf{bottom:18.885000px;}
.y81{bottom:18.892500px;}
.ya6{bottom:18.900000px;}
.y65{bottom:26.280000px;}
.y124{bottom:30.600000px;}
.y145{bottom:34.020000px;}
.y78{bottom:34.185000px;}
.y7d{bottom:34.186500px;}
.y6c{bottom:34.200000px;}
.y73{bottom:34.230000px;}
.ya9{bottom:34.365000px;}
.y1d5{bottom:34.372500px;}
.ya0{bottom:34.380000px;}
.y64{bottom:41.760000px;}
.y123{bottom:44.460000px;}
.y77{bottom:49.665000px;}
.y7c{bottom:49.666500px;}
.y6b{bottom:49.680000px;}
.yae{bottom:49.845000px;}
.y9f{bottom:49.860000px;}
.yab{bottom:49.890000px;}
.y15c{bottom:53.085000px;}
.y3{bottom:57.996000px;}
.y127{bottom:58.320000px;}
.y165{bottom:65.145000px;}
.y144{bottom:65.160000px;}
.y9e{bottom:65.340000px;}
.yaa{bottom:65.370000px;}
.yb0{bottom:65.505000px;}
.y15b{bottom:66.765000px;}
.y126{bottom:72.000000px;}
.y14c{bottom:73.800000px;}
.y2{bottom:76.896000px;}
.y15a{bottom:80.625000px;}
.y12a{bottom:80.640000px;}
.y164{bottom:80.805000px;}
.ya3{bottom:80.820000px;}
.y14b{bottom:87.480000px;}
.y159{bottom:94.485000px;}
.y129{bottom:94.500000px;}
.yb4{bottom:95.436000px;}
.y1{bottom:95.976000px;}
.y143{bottom:96.120000px;}
.y163{bottom:96.285000px;}
.y14d{bottom:96.300000px;}
.ya2{bottom:96.510000px;}
.y169{bottom:96.696000px;}
.y1c0{bottom:96.876000px;}
.y17a{bottom:97.236000px;}
.yf1{bottom:98.856000px;}
.y14a{bottom:101.340000px;}
.y1a3{bottom:104.256000px;}
.y83{bottom:104.976000px;}
.y1d4{bottom:105.163500px;}
.y158{bottom:108.165000px;}
.y128{bottom:108.360000px;}
.y11d{bottom:108.936000px;}
.yb3{bottom:111.096000px;}
.y162{bottom:111.765000px;}
.y142{bottom:111.780000px;}
.y1d0{bottom:111.960000px;}
.y168{bottom:112.356000px;}
.y179{bottom:112.716000px;}
.yf0{bottom:114.516000px;}
.y149{bottom:115.020000px;}
.y80{bottom:117.943500px;}
.y32{bottom:118.116000px;}
.y1a2{bottom:119.736000px;}
.y157{bottom:122.025000px;}
.y11c{bottom:124.416000px;}
.yb2{bottom:126.756000px;}
.y141{bottom:127.260000px;}
.y161{bottom:127.290000px;}
.y167{bottom:127.836000px;}
.y178{bottom:128.376000px;}
.y148{bottom:128.880000px;}
.y31{bottom:130.536000px;}
.y1a1{bottom:135.216000px;}
.y156{bottom:135.930000px;}
.y11b{bottom:140.076000px;}
.yb1{bottom:142.236000px;}
.y140{bottom:142.740000px;}
.y160{bottom:142.950000px;}
.y1bf{bottom:143.316000px;}
.y166{bottom:143.856000px;}
.yef{bottom:145.656000px;}
.y155{bottom:149.610000px;}
.y7a{bottom:149.803500px;}
.y1a0{bottom:150.870000px;}
.y1d3{bottom:152.505000px;}
.yac{bottom:155.565000px;}
.y11a{bottom:155.730000px;}
.y147{bottom:156.450000px;}
.y14f{bottom:156.825000px;}
.y13f{bottom:158.220000px;}
.y15f{bottom:158.430000px;}
.y1be{bottom:158.970000px;}
.yee{bottom:161.130000px;}
.y154{bottom:163.470000px;}
.y1f6{bottom:164.010000px;}
.y19f{bottom:166.350000px;}
.y119{bottom:171.210000px;}
.y13e{bottom:173.880000px;}
.y15e{bottom:173.910000px;}
.y1bd{bottom:174.450000px;}
.y177{bottom:175.170000px;}
.yed{bottom:176.610000px;}
.y153{bottom:177.330000px;}
.y1f5{bottom:179.490000px;}
.y19e{bottom:182.010000px;}
.y118{bottom:186.870000px;}
.y176{bottom:187.590000px;}
.y13d{bottom:189.360000px;}
.y15d{bottom:189.390000px;}
.y1bc{bottom:189.930000px;}
.y152{bottom:191.010000px;}
.yec{bottom:192.270000px;}
.y1f4{bottom:194.970000px;}
.y19d{bottom:197.490000px;}
.y1d2{bottom:199.845000px;}
.y117{bottom:202.710000px;}
.y13c{bottom:204.840000px;}
.y151{bottom:204.870000px;}
.y1bb{bottom:205.590000px;}
.yeb{bottom:207.390000px;}
.y1f3{bottom:210.630000px;}
.y76{bottom:212.625000px;}
.y19c{bottom:212.970000px;}
.y116{bottom:218.190000px;}
.y150{bottom:218.730000px;}
.y13b{bottom:220.320000px;}
.y1ba{bottom:221.070000px;}
.yea{bottom:223.050000px;}
.y1f2{bottom:226.110000px;}
.y19b{bottom:228.630000px;}
.y115{bottom:233.850000px;}
.ya7{bottom:234.045000px;}
.y13a{bottom:235.980000px;}
.y1b9{bottom:236.730000px;}
.ye9{bottom:239.070000px;}
.y1f1{bottom:241.590000px;}
.y19a{bottom:244.110000px;}
.y1d1{bottom:247.185000px;}
.y114{bottom:249.330000px;}
.y139{bottom:251.460000px;}
.y1b8{bottom:252.210000px;}
.ye8{bottom:254.550000px;}
.y1f0{bottom:257.070000px;}
.y199{bottom:259.590000px;}
.y113{bottom:264.810000px;}
.y138{bottom:266.985000px;}
.y1b7{bottom:267.690000px;}
.ye7{bottom:270.030000px;}
.y1ef{bottom:272.730000px;}
.y198{bottom:275.250000px;}
.y6f{bottom:275.445000px;}
.y133{bottom:275.625000px;}
.y112{bottom:280.290000px;}
.y137{bottom:282.465000px;}
.y1b6{bottom:283.215000px;}
.ye6{bottom:285.735000px;}
.y1ee{bottom:288.255000px;}
.y132{bottom:289.305000px;}
.y197{bottom:290.775000px;}
.y1cf{bottom:294.555000px;}
.y111{bottom:295.995000px;}
.y136{bottom:298.125000px;}
.y1b5{bottom:298.875000px;}
.y71{bottom:299.415000px;}
.ye5{bottom:301.215000px;}
.y131{bottom:303.165000px;}
.y1ed{bottom:303.735000px;}
.y196{bottom:306.255000px;}
.y110{bottom:311.475000px;}
.ya5{bottom:312.375000px;}
.y135{bottom:313.605000px;}
.y1b4{bottom:314.355000px;}
.ye4{bottom:316.695000px;}
.y130{bottom:317.025000px;}
.y1ec{bottom:319.215000px;}
.y30{bottom:320.475000px;}
.y195{bottom:321.735000px;}
.y69{bottom:322.815000px;}
.y10f{bottom:327.135000px;}
.y134{bottom:329.085000px;}
.y1b3{bottom:329.835000px;}
.y12f{bottom:330.705000px;}
.ye3{bottom:332.355000px;}
.y1eb{bottom:334.875000px;}
.y2f{bottom:335.955000px;}
.y194{bottom:337.395000px;}
.y10e{bottom:342.615000px;}
.y12e{bottom:344.565000px;}
.y1b2{bottom:345.495000px;}
.ye2{bottom:347.835000px;}
.y1ea{bottom:350.355000px;}
.y2e{bottom:351.615000px;}
.y193{bottom:352.875000px;}
.y10d{bottom:358.095000px;}
.y12d{bottom:358.245000px;}
.y1b1{bottom:360.975000px;}
.ye1{bottom:363.315000px;}
.y1e9{bottom:365.835000px;}
.y2d{bottom:366.915000px;}
.y192{bottom:368.535000px;}
.y12c{bottom:372.105000px;}
.y10c{bottom:373.575000px;}
.y1b0{bottom:376.455000px;}
.ye0{bottom:378.795000px;}
.y1e8{bottom:381.315000px;}
.y191{bottom:384.015000px;}
.y63{bottom:385.635000px;}
.y14e{bottom:387.075000px;}
.y10b{bottom:389.235000px;}
.ya4{bottom:390.855000px;}
.y1af{bottom:391.935000px;}
.ydf{bottom:394.455000px;}
.y1e7{bottom:396.795000px;}
.y2c{bottom:397.875000px;}
.y190{bottom:399.495000px;}
.y10a{bottom:404.715000px;}
.y1ae{bottom:407.595000px;}
.yde{bottom:409.935000px;}
.y1e6{bottom:412.455000px;}
.y146{bottom:413.535000px;}
.y18f{bottom:414.975000px;}
.y2b{bottom:416.055000px;}
.y66{bottom:417.495000px;}
.y1ce{bottom:419.475000px;}
.y109{bottom:420.195000px;}
.y1ad{bottom:423.075000px;}
.ydd{bottom:425.415000px;}
.y1e5{bottom:427.935000px;}
.y2a{bottom:428.835000px;}
.y18e{bottom:430.635000px;}
.y108{bottom:435.855000px;}
.y1ac{bottom:438.555000px;}
.ydc{bottom:440.895000px;}
.y1e4{bottom:443.415000px;}
.y62{bottom:444.135000px;}
.y29{bottom:445.035000px;}
.y18d{bottom:446.115000px;}
.y107{bottom:451.335000px;}
.y1ab{bottom:454.215000px;}
.ydb{bottom:456.555000px;}
.y1e3{bottom:459.075000px;}
.y61{bottom:459.615000px;}
.y18c{bottom:461.595000px;}
.y28{bottom:463.395000px;}
.y106{bottom:466.815000px;}
.ya1{bottom:469.155000px;}
.y1aa{bottom:469.695000px;}
.yda{bottom:472.035000px;}
.y1e2{bottom:474.555000px;}
.y60{bottom:475.275000px;}
.y18b{bottom:477.255000px;}
.y27{bottom:478.875000px;}
.y105{bottom:482.475000px;}
.y1a9{bottom:485.175000px;}
.yd9{bottom:487.515000px;}
.y1e1{bottom:489.855000px;}
.y5f{bottom:490.755000px;}
.y18a{bottom:492.735000px;}
.y26{bottom:494.355000px;}
.y104{bottom:497.595000px;}
.y1a8{bottom:500.835000px;}
.yd8{bottom:502.995000px;}
.y175{bottom:503.535000px;}
.y1e0{bottom:505.515000px;}
.y5e{bottom:506.235000px;}
.y189{bottom:508.215000px;}
.y25{bottom:509.835000px;}
.y103{bottom:513.255000px;}
.y1a7{bottom:516.315000px;}
.yd7{bottom:518.475000px;}
.y174{bottom:519.195000px;}
.y1df{bottom:520.995000px;}
.y5d{bottom:521.715000px;}
.y188{bottom:523.695000px;}
.y24{bottom:525.495000px;}
.y102{bottom:528.915000px;}
.y1a6{bottom:531.615000px;}
.yd6{bottom:534.135000px;}
.y173{bottom:534.675000px;}
.y1de{bottom:537.015000px;}
.y5c{bottom:537.375000px;}
.y187{bottom:539.355000px;}
.y23{bottom:540.975000px;}
.y1cd{bottom:545.115000px;}
.y1a5{bottom:547.455000px;}
.yd5{bottom:549.615000px;}
.y172{bottom:550.155000px;}
.y1dd{bottom:552.315000px;}
.y5b{bottom:552.855000px;}
.y186{bottom:554.835000px;}
.y22{bottom:556.455000px;}
.y1a4{bottom:559.875000px;}
.y101{bottom:560.055000px;}
.yd4{bottom:565.305000px;}
.y171{bottom:565.665000px;}
.y5a{bottom:568.365000px;}
.y185{bottom:570.525000px;}
.y21{bottom:571.965000px;}
.y100{bottom:575.745000px;}
.y1cc{bottom:577.005000px;}
.y9d{bottom:578.625000px;}
.yd3{bottom:580.785000px;}
.y170{bottom:581.325000px;}
.y12b{bottom:581.685000px;}
.y1dc{bottom:583.665000px;}
.y59{bottom:583.845000px;}
.y184{bottom:586.005000px;}
.y20{bottom:587.445000px;}
.yff{bottom:591.585000px;}
.yd2{bottom:596.265000px;}
.y16f{bottom:596.985000px;}
.y183{bottom:598.965000px;}
.y1db{bottom:599.325000px;}
.y58{bottom:599.505000px;}
.y1f{bottom:603.105000px;}
.yfe{bottom:607.245000px;}
.yd1{bottom:611.745000px;}
.y16e{bottom:612.105000px;}
.y1da{bottom:614.625000px;}
.y57{bottom:614.985000px;}
.y1e{bottom:618.585000px;}
.yfd{bottom:622.725000px;}
.y1cb{bottom:624.345000px;}
.yd0{bottom:627.405000px;}
.y16d{bottom:627.765000px;}
.y56{bottom:630.465000px;}
.y1d{bottom:634.065000px;}
.yfc{bottom:638.205000px;}
.ycf{bottom:642.885000px;}
.y16c{bottom:643.785000px;}
.y55{bottom:646.125000px;}
.y1c{bottom:649.545000px;}
.y182{bottom:652.785000px;}
.yfb{bottom:653.685000px;}
.y16b{bottom:656.025000px;}
.y9c{bottom:656.925000px;}
.yce{bottom:658.365000px;}
.y54{bottom:661.605000px;}
.y1b{bottom:665.205000px;}
.yfa{bottom:669.345000px;}
.ycd{bottom:673.845000px;}
.y53{bottom:677.085000px;}
.y1d9{bottom:677.265000px;}
.y1a{bottom:680.685000px;}
.yf9{bottom:684.825000px;}
.ycc{bottom:689.505000px;}
.y52{bottom:692.565000px;}
.y1d8{bottom:692.745000px;}
.y19{bottom:696.165000px;}
.yf8{bottom:700.305000px;}
.y1c9{bottom:702.645000px;}
.ycb{bottom:704.985000px;}
.y9b{bottom:707.685000px;}
.y51{bottom:708.225000px;}
.y18{bottom:711.825000px;}
.y181{bottom:715.605000px;}
.yf7{bottom:715.785000px;}
.yca{bottom:720.465000px;}
.y9a{bottom:723.165000px;}
.y50{bottom:723.705000px;}
.yf6{bottom:731.445000px;}
.y17{bottom:733.965000px;}
.yc9{bottom:735.765000px;}
.y99{bottom:738.825000px;}
.y4f{bottom:739.185000px;}
.y1c8{bottom:739.365000px;}
.yf5{bottom:746.925000px;}
.yc8{bottom:751.425000px;}
.y98{bottom:754.305000px;}
.y4e{bottom:754.665000px;}
.y1c7{bottom:754.845000px;}
.y16{bottom:760.785000px;}
.yf4{bottom:762.585000px;}
.yc7{bottom:767.265000px;}
.y180{bottom:769.425000px;}
.y97{bottom:769.965000px;}
.y4d{bottom:770.325000px;}
.y15{bottom:776.265000px;}
.yf3{bottom:778.245000px;}
.yc6{bottom:782.925000px;}
.y96{bottom:785.085000px;}
.y4c{bottom:785.805000px;}
.y1c6{bottom:785.985000px;}
.yf2{bottom:790.485000px;}
.y14{bottom:791.745000px;}
.yc5{bottom:798.405000px;}
.y95{bottom:800.745000px;}
.y4b{bottom:801.465000px;}
.yc4{bottom:813.885000px;}
.y94{bottom:816.765000px;}
.y4a{bottom:816.945000px;}
.y17f{bottom:823.245000px;}
.y13{bottom:826.485000px;}
.yc3{bottom:829.365000px;}
.y93{bottom:832.245000px;}
.y49{bottom:832.425000px;}
.yc2{bottom:844.845000px;}
.y92{bottom:847.770000px;}
.y12{bottom:847.950000px;}
.y1c5{bottom:848.130000px;}
.yc1{bottom:861.630000px;}
.y48{bottom:863.430000px;}
.y1c4{bottom:863.610000px;}
.yc0{bottom:877.110000px;}
.y91{bottom:878.910000px;}
.y47{bottom:879.090000px;}
.y11{bottom:884.850000px;}
.y10{bottom:892.050000px;}
.ybf{bottom:892.590000px;}
.y90{bottom:894.390000px;}
.y46{bottom:894.570000px;}
.ybe{bottom:908.070000px;}
.y8f{bottom:909.870000px;}
.y45{bottom:910.050000px;}
.y1c3{bottom:910.230000px;}
.yf{bottom:917.430000px;}
.ybd{bottom:924.630000px;}
.y44{bottom:925.530000px;}
.y1c2{bottom:925.710000px;}
.y17e{bottom:930.750000px;}
.ybc{bottom:940.290000px;}
.y8e{bottom:941.010000px;}
.y43{bottom:941.190000px;}
.y1c1{bottom:941.370000px;}
.ybb{bottom:955.770000px;}
.y42{bottom:956.490000px;}
.ye{bottom:956.670000px;}
.y16a{bottom:956.850000px;}
.y122{bottom:965.310000px;}
.y41{bottom:971.970000px;}
.y8d{bottom:972.150000px;}
.yba{bottom:972.330000px;}
.y8c{bottom:987.630000px;}
.yb9{bottom:987.810000px;}
.y40{bottom:987.990000px;}
.y8b{bottom:1003.110000px;}
.y1d7{bottom:1003.290000px;}
.y3f{bottom:1003.470000px;}
.yd{bottom:1016.070000px;}
.y8a{bottom:1018.770000px;}
.yb8{bottom:1018.950000px;}
.y3e{bottom:1019.130000px;}
.ya{bottom:1034.070000px;}
.yb7{bottom:1034.430000px;}
.y3d{bottom:1034.610000px;}
.yc{bottom:1039.290000px;}
.y89{bottom:1049.550000px;}
.yb6{bottom:1049.910000px;}
.y3c{bottom:1050.090000px;}
.y9{bottom:1057.290000px;}
.y88{bottom:1065.210000px;}
.yb5{bottom:1065.390000px;}
.y3b{bottom:1065.570000px;}
.y17d{bottom:1065.750000px;}
.yb{bottom:1071.330000px;}
.y87{bottom:1081.050000px;}
.y3a{bottom:1081.230000px;}
.y121{bottom:1085.190000px;}
.y8{bottom:1086.630000px;}
.y86{bottom:1096.530000px;}
.y39{bottom:1096.710000px;}
.y7{bottom:1105.710000px;}
.y11e{bottom:1111.650000px;}
.y38{bottom:1112.190000px;}
.y6{bottom:1122.990000px;}
.y37{bottom:1127.670000px;}
.y17c{bottom:1127.850000px;}
.y5{bottom:1140.300000px;}
.y85{bottom:1143.000000px;}
.y36{bottom:1143.360000px;}
.y4{bottom:1158.300000px;}
.y84{bottom:1158.660000px;}
.y17b{bottom:1158.840000px;}
.y35{bottom:1159.020000px;}
.y34{bottom:1175.220000px;}
.y33{bottom:1193.760000px;}
.hc{height:12.335625px;}
.h32{height:16.920000px;}
.h15{height:22.485000px;}
.h1a{height:22.665000px;}
.h1b{height:23.241000px;}
.h25{height:25.725000px;}
.h24{height:27.570000px;}
.h34{height:30.990000px;}
.h16{height:31.125000px;}
.h1d{height:31.132500px;}
.h1e{height:31.140000px;}
.h27{height:34.884492px;}
.hd{height:35.314453px;}
.h11{height:38.158594px;}
.h33{height:46.440000px;}
.h37{height:46.461000px;}
.h38{height:46.605000px;}
.h39{height:46.612500px;}
.h19{height:46.641000px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.h28{height:49.583118px;}
.h2d{height:52.905000px;}
.h2e{height:52.942500px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.h2c{height:53.085000px;}
.h2f{height:53.100000px;}
.h14{height:54.345000px;}
.hf{height:54.421875px;}
.h18{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h3a{height:59.092031px;}
.h31{height:59.212031px;}
.h4{height:60.226875px;}
.h17{height:62.085000px;}
.h1c{height:62.092500px;}
.h30{height:62.100000px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.hb{height:72.326250px;}
.h3{height:72.562500px;}
.h21{height:77.565000px;}
.h1f{height:77.580000px;}
.h22{height:77.601000px;}
.h23{height:77.745000px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h35{height:93.045000px;}
.h20{height:108.750000px;}
.h26{height:119.145000px;}
.h36{height:124.185000px;}
.h2a{height:167.250000px;}
.h2b{height:229.515000px;}
.h29{height:382.890000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:63.345000px;}
.w5{width:63.360000px;}
.w19{width:70.380000px;}
.w12{width:70.740000px;}
.w8{width:73.965000px;}
.w6{width:74.016000px;}
.w18{width:79.941000px;}
.w11{width:80.301000px;}
.w10{width:85.849500px;}
.w1e{width:94.129500px;}
.w20{width:94.536000px;}
.w1b{width:99.165000px;}
.w14{width:99.525000px;}
.wd{width:101.505000px;}
.we{width:105.861000px;}
.wf{width:110.325000px;}
.w21{width:113.745000px;}
.wc{width:115.056000px;}
.wb{width:119.001000px;}
.w1c{width:124.581000px;}
.w1a{width:124.596000px;}
.w15{width:124.941000px;}
.w13{width:124.956000px;}
.w1f{width:133.761000px;}
.w25{width:134.841000px;}
.w24{width:135.936000px;}
.w26{width:136.245000px;}
.w1d{width:138.090000px;}
.w16{width:138.450000px;}
.w2{width:138.622500px;}
.w23{width:141.321000px;}
.w22{width:204.720000px;}
.w4{width:219.120000px;}
.w9{width:219.480000px;}
.w3{width:275.970000px;}
.w27{width:549.630000px;}
.wa{width:634.815000px;}
.w17{width:726.975000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x20{left:-13.155000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x29{left:9.885000px;}
.x33{left:11.145000px;}
.x17{left:12.225000px;}
.x31{left:13.500000px;}
.x34{left:14.745000px;}
.x2b{left:15.840000px;}
.x4d{left:16.905000px;}
.x13{left:17.989500px;}
.x30{left:19.800000px;}
.x35{left:21.060000px;}
.x21{left:22.140000px;}
.x22{left:23.565000px;}
.x1f{left:24.825000px;}
.x28{left:26.265000px;}
.x1c{left:28.080000px;}
.x1e{left:29.505000px;}
.x2e{left:30.600000px;}
.x37{left:32.205000px;}
.x1d{left:33.300000px;}
.x23{left:34.920000px;}
.x2c{left:36.900000px;}
.x2d{left:37.965000px;}
.x1b{left:39.763500px;}
.x2f{left:41.025000px;}
.x32{left:42.660000px;}
.x40{left:44.280000px;}
.x36{left:45.360000px;}
.x53{left:46.470000px;}
.x5d{left:47.505000px;}
.x46{left:49.485000px;}
.x43{left:50.760000px;}
.x3{left:53.100000px;}
.x14{left:54.163500px;}
.x57{left:55.425000px;}
.x47{left:57.630000px;}
.x45{left:62.640000px;}
.x5c{left:68.220000px;}
.x5b{left:70.410000px;}
.xd{left:73.440000px;}
.x3d{left:77.806500px;}
.x51{left:79.050000px;}
.x38{left:80.136000px;}
.x15{left:81.900000px;}
.x50{left:84.630000px;}
.x52{left:85.890000px;}
.x39{left:107.136000px;}
.x4b{left:120.106500px;}
.x12{left:123.886500px;}
.x26{left:164.745000px;}
.x56{left:166.545000px;}
.xf{left:168.330000px;}
.x3c{left:211.170000px;}
.x4c{left:214.605000px;}
.xa{left:226.470000px;}
.x9{left:232.590000px;}
.x3e{left:244.695000px;}
.x4{left:263.595000px;}
.x6{left:267.195000px;}
.x55{left:272.415000px;}
.x11{left:280.155000px;}
.x27{left:284.115000px;}
.x44{left:300.448500px;}
.x58{left:308.235000px;}
.x5{left:313.635000px;}
.x3f{left:315.795000px;}
.x19{left:326.595000px;}
.x49{left:334.155000px;}
.x3b{left:349.455000px;}
.x24{left:366.735000px;}
.x5e{left:395.895000px;}
.xc{left:400.425000px;}
.x10{left:428.865000px;}
.x2{left:434.085000px;}
.xb{left:437.145000px;}
.x25{left:441.285000px;}
.x4e{left:443.640000px;}
.x59{left:444.720000px;}
.x1{left:446.505000px;}
.x1a{left:464.880000px;}
.x7{left:502.125000px;}
.x8{left:529.665000px;}
.x16{left:539.580000px;}
.x41{left:541.020000px;}
.x4f{left:557.760000px;}
.x5a{left:579.930000px;}
.xe{left:604.410000px;}
.x2a{left:607.650000px;}
.x42{left:666.330000px;}
.x54{left:672.990000px;}
.x4a{left:691.530000px;}
.x48{left:716.910000px;}
.x3a{left:723.600000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v7{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.226667pt;}
.v3{vertical-align:26.880000pt;}
.ls19{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.112000pt;}
.ls1d{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.848000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:5.999360pt;}
.ls29{letter-spacing:21.856000pt;}
.ls1e{letter-spacing:27.759360pt;}
.ls28{letter-spacing:34.656000pt;}
.ls10{letter-spacing:40.416000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls1b{letter-spacing:60.896000pt;}
.ls0{letter-spacing:150.560000pt;}
.ls26{letter-spacing:587.786667pt;}
.ls22{letter-spacing:813.226667pt;}
.ls21{letter-spacing:994.346667pt;}
.ls18{letter-spacing:1035.306667pt;}
.ls8{letter-spacing:1090.346667pt;}
.ls27{letter-spacing:1205.546667pt;}
.ls1c{letter-spacing:1221.013333pt;}
.ws15{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.848000pt;}
.ws10{word-spacing:-12.832000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.443733pt;}
.ws14{word-spacing:-12.416000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.984000pt;}
.ws17{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.552000pt;}
.ws1d{word-spacing:-11.520000pt;}
.wsd{word-spacing:-11.472000pt;}
.ws16{word-spacing:-11.136000pt;}
.ws1a{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.959467pt;}
.ws18{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.167360pt;}
._7{width:2.928640pt;}
._8{width:4.000640pt;}
._9{width:5.135360pt;}
._a{width:6.208000pt;}
._5{width:7.104000pt;}
._6{width:8.042667pt;}
._d{width:9.245867pt;}
._f{width:10.704000pt;}
._11{width:13.152000pt;}
._12{width:14.752000pt;}
._13{width:16.080000pt;}
._e{width:16.981973pt;}
._c{width:18.192000pt;}
._b{width:19.248000pt;}
._15{width:22.517333pt;}
._14{width:23.472000pt;}
._16{width:31.019307pt;}
._18{width:821.738667pt;}
._10{width:925.706667pt;}
._17{width:1086.666667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:2.400000pt;}
.y67{bottom:2.560000pt;}
.y75{bottom:2.706667pt;}
.y7f{bottom:2.708000pt;}
.y6e{bottom:2.720000pt;}
.y70{bottom:2.866667pt;}
.y7b{bottom:2.868000pt;}
.y82{bottom:2.873333pt;}
.y6a{bottom:2.880000pt;}
.yad{bottom:3.026667pt;}
.y72{bottom:3.040000pt;}
.y1ca{bottom:3.840000pt;}
.y120{bottom:14.720000pt;}
.y125{bottom:15.040000pt;}
.y79{bottom:16.466667pt;}
.y7e{bottom:16.468000pt;}
.y68{bottom:16.480000pt;}
.ya8{bottom:16.626667pt;}
.y1d6{bottom:16.633333pt;}
.y6d{bottom:16.640000pt;}
.y74{bottom:16.666667pt;}
.yaf{bottom:16.786667pt;}
.y81{bottom:16.793333pt;}
.ya6{bottom:16.800000pt;}
.y65{bottom:23.360000pt;}
.y124{bottom:27.200000pt;}
.y145{bottom:30.240000pt;}
.y78{bottom:30.386667pt;}
.y7d{bottom:30.388000pt;}
.y6c{bottom:30.400000pt;}
.y73{bottom:30.426667pt;}
.ya9{bottom:30.546667pt;}
.y1d5{bottom:30.553333pt;}
.ya0{bottom:30.560000pt;}
.y64{bottom:37.120000pt;}
.y123{bottom:39.520000pt;}
.y77{bottom:44.146667pt;}
.y7c{bottom:44.148000pt;}
.y6b{bottom:44.160000pt;}
.yae{bottom:44.306667pt;}
.y9f{bottom:44.320000pt;}
.yab{bottom:44.346667pt;}
.y15c{bottom:47.186667pt;}
.y3{bottom:51.552000pt;}
.y127{bottom:51.840000pt;}
.y165{bottom:57.906667pt;}
.y144{bottom:57.920000pt;}
.y9e{bottom:58.080000pt;}
.yaa{bottom:58.106667pt;}
.yb0{bottom:58.226667pt;}
.y15b{bottom:59.346667pt;}
.y126{bottom:64.000000pt;}
.y14c{bottom:65.600000pt;}
.y2{bottom:68.352000pt;}
.y15a{bottom:71.666667pt;}
.y12a{bottom:71.680000pt;}
.y164{bottom:71.826667pt;}
.ya3{bottom:71.840000pt;}
.y14b{bottom:77.760000pt;}
.y159{bottom:83.986667pt;}
.y129{bottom:84.000000pt;}
.yb4{bottom:84.832000pt;}
.y1{bottom:85.312000pt;}
.y143{bottom:85.440000pt;}
.y163{bottom:85.586667pt;}
.y14d{bottom:85.600000pt;}
.ya2{bottom:85.786667pt;}
.y169{bottom:85.952000pt;}
.y1c0{bottom:86.112000pt;}
.y17a{bottom:86.432000pt;}
.yf1{bottom:87.872000pt;}
.y14a{bottom:90.080000pt;}
.y1a3{bottom:92.672000pt;}
.y83{bottom:93.312000pt;}
.y1d4{bottom:93.478667pt;}
.y158{bottom:96.146667pt;}
.y128{bottom:96.320000pt;}
.y11d{bottom:96.832000pt;}
.yb3{bottom:98.752000pt;}
.y162{bottom:99.346667pt;}
.y142{bottom:99.360000pt;}
.y1d0{bottom:99.520000pt;}
.y168{bottom:99.872000pt;}
.y179{bottom:100.192000pt;}
.yf0{bottom:101.792000pt;}
.y149{bottom:102.240000pt;}
.y80{bottom:104.838667pt;}
.y32{bottom:104.992000pt;}
.y1a2{bottom:106.432000pt;}
.y157{bottom:108.466667pt;}
.y11c{bottom:110.592000pt;}
.yb2{bottom:112.672000pt;}
.y141{bottom:113.120000pt;}
.y161{bottom:113.146667pt;}
.y167{bottom:113.632000pt;}
.y178{bottom:114.112000pt;}
.y148{bottom:114.560000pt;}
.y31{bottom:116.032000pt;}
.y1a1{bottom:120.192000pt;}
.y156{bottom:120.826667pt;}
.y11b{bottom:124.512000pt;}
.yb1{bottom:126.432000pt;}
.y140{bottom:126.880000pt;}
.y160{bottom:127.066667pt;}
.y1bf{bottom:127.392000pt;}
.y166{bottom:127.872000pt;}
.yef{bottom:129.472000pt;}
.y155{bottom:132.986667pt;}
.y7a{bottom:133.158667pt;}
.y1a0{bottom:134.106667pt;}
.y1d3{bottom:135.560000pt;}
.yac{bottom:138.280000pt;}
.y11a{bottom:138.426667pt;}
.y147{bottom:139.066667pt;}
.y14f{bottom:139.400000pt;}
.y13f{bottom:140.640000pt;}
.y15f{bottom:140.826667pt;}
.y1be{bottom:141.306667pt;}
.yee{bottom:143.226667pt;}
.y154{bottom:145.306667pt;}
.y1f6{bottom:145.786667pt;}
.y19f{bottom:147.866667pt;}
.y119{bottom:152.186667pt;}
.y13e{bottom:154.560000pt;}
.y15e{bottom:154.586667pt;}
.y1bd{bottom:155.066667pt;}
.y177{bottom:155.706667pt;}
.yed{bottom:156.986667pt;}
.y153{bottom:157.626667pt;}
.y1f5{bottom:159.546667pt;}
.y19e{bottom:161.786667pt;}
.y118{bottom:166.106667pt;}
.y176{bottom:166.746667pt;}
.y13d{bottom:168.320000pt;}
.y15d{bottom:168.346667pt;}
.y1bc{bottom:168.826667pt;}
.y152{bottom:169.786667pt;}
.yec{bottom:170.906667pt;}
.y1f4{bottom:173.306667pt;}
.y19d{bottom:175.546667pt;}
.y1d2{bottom:177.640000pt;}
.y117{bottom:180.186667pt;}
.y13c{bottom:182.080000pt;}
.y151{bottom:182.106667pt;}
.y1bb{bottom:182.746667pt;}
.yeb{bottom:184.346667pt;}
.y1f3{bottom:187.226667pt;}
.y76{bottom:189.000000pt;}
.y19c{bottom:189.306667pt;}
.y116{bottom:193.946667pt;}
.y150{bottom:194.426667pt;}
.y13b{bottom:195.840000pt;}
.y1ba{bottom:196.506667pt;}
.yea{bottom:198.266667pt;}
.y1f2{bottom:200.986667pt;}
.y19b{bottom:203.226667pt;}
.y115{bottom:207.866667pt;}
.ya7{bottom:208.040000pt;}
.y13a{bottom:209.760000pt;}
.y1b9{bottom:210.426667pt;}
.ye9{bottom:212.506667pt;}
.y1f1{bottom:214.746667pt;}
.y19a{bottom:216.986667pt;}
.y1d1{bottom:219.720000pt;}
.y114{bottom:221.626667pt;}
.y139{bottom:223.520000pt;}
.y1b8{bottom:224.186667pt;}
.ye8{bottom:226.266667pt;}
.y1f0{bottom:228.506667pt;}
.y199{bottom:230.746667pt;}
.y113{bottom:235.386667pt;}
.y138{bottom:237.320000pt;}
.y1b7{bottom:237.946667pt;}
.ye7{bottom:240.026667pt;}
.y1ef{bottom:242.426667pt;}
.y198{bottom:244.666667pt;}
.y6f{bottom:244.840000pt;}
.y133{bottom:245.000000pt;}
.y112{bottom:249.146667pt;}
.y137{bottom:251.080000pt;}
.y1b6{bottom:251.746667pt;}
.ye6{bottom:253.986667pt;}
.y1ee{bottom:256.226667pt;}
.y132{bottom:257.160000pt;}
.y197{bottom:258.466667pt;}
.y1cf{bottom:261.826667pt;}
.y111{bottom:263.106667pt;}
.y136{bottom:265.000000pt;}
.y1b5{bottom:265.666667pt;}
.y71{bottom:266.146667pt;}
.ye5{bottom:267.746667pt;}
.y131{bottom:269.480000pt;}
.y1ed{bottom:269.986667pt;}
.y196{bottom:272.226667pt;}
.y110{bottom:276.866667pt;}
.ya5{bottom:277.666667pt;}
.y135{bottom:278.760000pt;}
.y1b4{bottom:279.426667pt;}
.ye4{bottom:281.506667pt;}
.y130{bottom:281.800000pt;}
.y1ec{bottom:283.746667pt;}
.y30{bottom:284.866667pt;}
.y195{bottom:285.986667pt;}
.y69{bottom:286.946667pt;}
.y10f{bottom:290.786667pt;}
.y134{bottom:292.520000pt;}
.y1b3{bottom:293.186667pt;}
.y12f{bottom:293.960000pt;}
.ye3{bottom:295.426667pt;}
.y1eb{bottom:297.666667pt;}
.y2f{bottom:298.626667pt;}
.y194{bottom:299.906667pt;}
.y10e{bottom:304.546667pt;}
.y12e{bottom:306.280000pt;}
.y1b2{bottom:307.106667pt;}
.ye2{bottom:309.186667pt;}
.y1ea{bottom:311.426667pt;}
.y2e{bottom:312.546667pt;}
.y193{bottom:313.666667pt;}
.y10d{bottom:318.306667pt;}
.y12d{bottom:318.440000pt;}
.y1b1{bottom:320.866667pt;}
.ye1{bottom:322.946667pt;}
.y1e9{bottom:325.186667pt;}
.y2d{bottom:326.146667pt;}
.y192{bottom:327.586667pt;}
.y12c{bottom:330.760000pt;}
.y10c{bottom:332.066667pt;}
.y1b0{bottom:334.626667pt;}
.ye0{bottom:336.706667pt;}
.y1e8{bottom:338.946667pt;}
.y191{bottom:341.346667pt;}
.y63{bottom:342.786667pt;}
.y14e{bottom:344.066667pt;}
.y10b{bottom:345.986667pt;}
.ya4{bottom:347.426667pt;}
.y1af{bottom:348.386667pt;}
.ydf{bottom:350.626667pt;}
.y1e7{bottom:352.706667pt;}
.y2c{bottom:353.666667pt;}
.y190{bottom:355.106667pt;}
.y10a{bottom:359.746667pt;}
.y1ae{bottom:362.306667pt;}
.yde{bottom:364.386667pt;}
.y1e6{bottom:366.626667pt;}
.y146{bottom:367.586667pt;}
.y18f{bottom:368.866667pt;}
.y2b{bottom:369.826667pt;}
.y66{bottom:371.106667pt;}
.y1ce{bottom:372.866667pt;}
.y109{bottom:373.506667pt;}
.y1ad{bottom:376.066667pt;}
.ydd{bottom:378.146667pt;}
.y1e5{bottom:380.386667pt;}
.y2a{bottom:381.186667pt;}
.y18e{bottom:382.786667pt;}
.y108{bottom:387.426667pt;}
.y1ac{bottom:389.826667pt;}
.ydc{bottom:391.906667pt;}
.y1e4{bottom:394.146667pt;}
.y62{bottom:394.786667pt;}
.y29{bottom:395.586667pt;}
.y18d{bottom:396.546667pt;}
.y107{bottom:401.186667pt;}
.y1ab{bottom:403.746667pt;}
.ydb{bottom:405.826667pt;}
.y1e3{bottom:408.066667pt;}
.y61{bottom:408.546667pt;}
.y18c{bottom:410.306667pt;}
.y28{bottom:411.906667pt;}
.y106{bottom:414.946667pt;}
.ya1{bottom:417.026667pt;}
.y1aa{bottom:417.506667pt;}
.yda{bottom:419.586667pt;}
.y1e2{bottom:421.826667pt;}
.y60{bottom:422.466667pt;}
.y18b{bottom:424.226667pt;}
.y27{bottom:425.666667pt;}
.y105{bottom:428.866667pt;}
.y1a9{bottom:431.266667pt;}
.yd9{bottom:433.346667pt;}
.y1e1{bottom:435.426667pt;}
.y5f{bottom:436.226667pt;}
.y18a{bottom:437.986667pt;}
.y26{bottom:439.426667pt;}
.y104{bottom:442.306667pt;}
.y1a8{bottom:445.186667pt;}
.yd8{bottom:447.106667pt;}
.y175{bottom:447.586667pt;}
.y1e0{bottom:449.346667pt;}
.y5e{bottom:449.986667pt;}
.y189{bottom:451.746667pt;}
.y25{bottom:453.186667pt;}
.y103{bottom:456.226667pt;}
.y1a7{bottom:458.946667pt;}
.yd7{bottom:460.866667pt;}
.y174{bottom:461.506667pt;}
.y1df{bottom:463.106667pt;}
.y5d{bottom:463.746667pt;}
.y188{bottom:465.506667pt;}
.y24{bottom:467.106667pt;}
.y102{bottom:470.146667pt;}
.y1a6{bottom:472.546667pt;}
.yd6{bottom:474.786667pt;}
.y173{bottom:475.266667pt;}
.y1de{bottom:477.346667pt;}
.y5c{bottom:477.666667pt;}
.y187{bottom:479.426667pt;}
.y23{bottom:480.866667pt;}
.y1cd{bottom:484.546667pt;}
.y1a5{bottom:486.626667pt;}
.yd5{bottom:488.546667pt;}
.y172{bottom:489.026667pt;}
.y1dd{bottom:490.946667pt;}
.y5b{bottom:491.426667pt;}
.y186{bottom:493.186667pt;}
.y22{bottom:494.626667pt;}
.y1a4{bottom:497.666667pt;}
.y101{bottom:497.826667pt;}
.yd4{bottom:502.493333pt;}
.y171{bottom:502.813333pt;}
.y5a{bottom:505.213333pt;}
.y185{bottom:507.133333pt;}
.y21{bottom:508.413333pt;}
.y100{bottom:511.773333pt;}
.y1cc{bottom:512.893333pt;}
.y9d{bottom:514.333333pt;}
.yd3{bottom:516.253333pt;}
.y170{bottom:516.733333pt;}
.y12b{bottom:517.053333pt;}
.y1dc{bottom:518.813333pt;}
.y59{bottom:518.973333pt;}
.y184{bottom:520.893333pt;}
.y20{bottom:522.173333pt;}
.yff{bottom:525.853333pt;}
.yd2{bottom:530.013333pt;}
.y16f{bottom:530.653333pt;}
.y183{bottom:532.413333pt;}
.y1db{bottom:532.733333pt;}
.y58{bottom:532.893333pt;}
.y1f{bottom:536.093333pt;}
.yfe{bottom:539.773333pt;}
.yd1{bottom:543.773333pt;}
.y16e{bottom:544.093333pt;}
.y1da{bottom:546.333333pt;}
.y57{bottom:546.653333pt;}
.y1e{bottom:549.853333pt;}
.yfd{bottom:553.533333pt;}
.y1cb{bottom:554.973333pt;}
.yd0{bottom:557.693333pt;}
.y16d{bottom:558.013333pt;}
.y56{bottom:560.413333pt;}
.y1d{bottom:563.613333pt;}
.yfc{bottom:567.293333pt;}
.ycf{bottom:571.453333pt;}
.y16c{bottom:572.253333pt;}
.y55{bottom:574.333333pt;}
.y1c{bottom:577.373333pt;}
.y182{bottom:580.253333pt;}
.yfb{bottom:581.053333pt;}
.y16b{bottom:583.133333pt;}
.y9c{bottom:583.933333pt;}
.yce{bottom:585.213333pt;}
.y54{bottom:588.093333pt;}
.y1b{bottom:591.293333pt;}
.yfa{bottom:594.973333pt;}
.ycd{bottom:598.973333pt;}
.y53{bottom:601.853333pt;}
.y1d9{bottom:602.013333pt;}
.y1a{bottom:605.053333pt;}
.yf9{bottom:608.733333pt;}
.ycc{bottom:612.893333pt;}
.y52{bottom:615.613333pt;}
.y1d8{bottom:615.773333pt;}
.y19{bottom:618.813333pt;}
.yf8{bottom:622.493333pt;}
.y1c9{bottom:624.573333pt;}
.ycb{bottom:626.653333pt;}
.y9b{bottom:629.053333pt;}
.y51{bottom:629.533333pt;}
.y18{bottom:632.733333pt;}
.y181{bottom:636.093333pt;}
.yf7{bottom:636.253333pt;}
.yca{bottom:640.413333pt;}
.y9a{bottom:642.813333pt;}
.y50{bottom:643.293333pt;}
.yf6{bottom:650.173333pt;}
.y17{bottom:652.413333pt;}
.yc9{bottom:654.013333pt;}
.y99{bottom:656.733333pt;}
.y4f{bottom:657.053333pt;}
.y1c8{bottom:657.213333pt;}
.yf5{bottom:663.933333pt;}
.yc8{bottom:667.933333pt;}
.y98{bottom:670.493333pt;}
.y4e{bottom:670.813333pt;}
.y1c7{bottom:670.973333pt;}
.y16{bottom:676.253333pt;}
.yf4{bottom:677.853333pt;}
.yc7{bottom:682.013333pt;}
.y180{bottom:683.933333pt;}
.y97{bottom:684.413333pt;}
.y4d{bottom:684.733333pt;}
.y15{bottom:690.013333pt;}
.yf3{bottom:691.773333pt;}
.yc6{bottom:695.933333pt;}
.y96{bottom:697.853333pt;}
.y4c{bottom:698.493333pt;}
.y1c6{bottom:698.653333pt;}
.yf2{bottom:702.653333pt;}
.y14{bottom:703.773333pt;}
.yc5{bottom:709.693333pt;}
.y95{bottom:711.773333pt;}
.y4b{bottom:712.413333pt;}
.yc4{bottom:723.453333pt;}
.y94{bottom:726.013333pt;}
.y4a{bottom:726.173333pt;}
.y17f{bottom:731.773333pt;}
.y13{bottom:734.653333pt;}
.yc3{bottom:737.213333pt;}
.y93{bottom:739.773333pt;}
.y49{bottom:739.933333pt;}
.yc2{bottom:750.973333pt;}
.y92{bottom:753.573333pt;}
.y12{bottom:753.733333pt;}
.y1c5{bottom:753.893333pt;}
.yc1{bottom:765.893333pt;}
.y48{bottom:767.493333pt;}
.y1c4{bottom:767.653333pt;}
.yc0{bottom:779.653333pt;}
.y91{bottom:781.253333pt;}
.y47{bottom:781.413333pt;}
.y11{bottom:786.533333pt;}
.y10{bottom:792.933333pt;}
.ybf{bottom:793.413333pt;}
.y90{bottom:795.013333pt;}
.y46{bottom:795.173333pt;}
.ybe{bottom:807.173333pt;}
.y8f{bottom:808.773333pt;}
.y45{bottom:808.933333pt;}
.y1c3{bottom:809.093333pt;}
.yf{bottom:815.493333pt;}
.ybd{bottom:821.893333pt;}
.y44{bottom:822.693333pt;}
.y1c2{bottom:822.853333pt;}
.y17e{bottom:827.333333pt;}
.ybc{bottom:835.813333pt;}
.y8e{bottom:836.453333pt;}
.y43{bottom:836.613333pt;}
.y1c1{bottom:836.773333pt;}
.ybb{bottom:849.573333pt;}
.y42{bottom:850.213333pt;}
.ye{bottom:850.373333pt;}
.y16a{bottom:850.533333pt;}
.y122{bottom:858.053333pt;}
.y41{bottom:863.973333pt;}
.y8d{bottom:864.133333pt;}
.yba{bottom:864.293333pt;}
.y8c{bottom:877.893333pt;}
.yb9{bottom:878.053333pt;}
.y40{bottom:878.213333pt;}
.y8b{bottom:891.653333pt;}
.y1d7{bottom:891.813333pt;}
.y3f{bottom:891.973333pt;}
.yd{bottom:903.173333pt;}
.y8a{bottom:905.573333pt;}
.yb8{bottom:905.733333pt;}
.y3e{bottom:905.893333pt;}
.ya{bottom:919.173333pt;}
.yb7{bottom:919.493333pt;}
.y3d{bottom:919.653333pt;}
.yc{bottom:923.813333pt;}
.y89{bottom:932.933333pt;}
.yb6{bottom:933.253333pt;}
.y3c{bottom:933.413333pt;}
.y9{bottom:939.813333pt;}
.y88{bottom:946.853333pt;}
.yb5{bottom:947.013333pt;}
.y3b{bottom:947.173333pt;}
.y17d{bottom:947.333333pt;}
.yb{bottom:952.293333pt;}
.y87{bottom:960.933333pt;}
.y3a{bottom:961.093333pt;}
.y121{bottom:964.613333pt;}
.y8{bottom:965.893333pt;}
.y86{bottom:974.693333pt;}
.y39{bottom:974.853333pt;}
.y7{bottom:982.853333pt;}
.y11e{bottom:988.133333pt;}
.y38{bottom:988.613333pt;}
.y6{bottom:998.213333pt;}
.y37{bottom:1002.373333pt;}
.y17c{bottom:1002.533333pt;}
.y5{bottom:1013.600000pt;}
.y85{bottom:1016.000000pt;}
.y36{bottom:1016.320000pt;}
.y4{bottom:1029.600000pt;}
.y84{bottom:1029.920000pt;}
.y17b{bottom:1030.080000pt;}
.y35{bottom:1030.240000pt;}
.y34{bottom:1044.640000pt;}
.y33{bottom:1061.120000pt;}
.hc{height:10.965000pt;}
.h32{height:15.040000pt;}
.h15{height:19.986667pt;}
.h1a{height:20.146667pt;}
.h1b{height:20.658667pt;}
.h25{height:22.866667pt;}
.h24{height:24.506667pt;}
.h34{height:27.546667pt;}
.h16{height:27.666667pt;}
.h1d{height:27.673333pt;}
.h1e{height:27.680000pt;}
.h27{height:31.008437pt;}
.hd{height:31.390625pt;}
.h11{height:33.918750pt;}
.h33{height:41.280000pt;}
.h37{height:41.298667pt;}
.h38{height:41.426667pt;}
.h39{height:41.433333pt;}
.h19{height:41.458667pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.h28{height:44.073883pt;}
.h2d{height:47.026667pt;}
.h2e{height:47.060000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.h2c{height:47.186667pt;}
.h2f{height:47.200000pt;}
.h14{height:48.306667pt;}
.hf{height:48.375000pt;}
.h18{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h3a{height:52.526250pt;}
.h31{height:52.632917pt;}
.h4{height:53.535000pt;}
.h17{height:55.186667pt;}
.h1c{height:55.193333pt;}
.h30{height:55.200000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.hb{height:64.290000pt;}
.h3{height:64.500000pt;}
.h21{height:68.946667pt;}
.h1f{height:68.960000pt;}
.h22{height:68.978667pt;}
.h23{height:69.106667pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h35{height:82.706667pt;}
.h20{height:96.666667pt;}
.h26{height:105.906667pt;}
.h36{height:110.386667pt;}
.h2a{height:148.666667pt;}
.h2b{height:204.013333pt;}
.h29{height:340.346667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:56.306667pt;}
.w5{width:56.320000pt;}
.w19{width:62.560000pt;}
.w12{width:62.880000pt;}
.w8{width:65.746667pt;}
.w6{width:65.792000pt;}
.w18{width:71.058667pt;}
.w11{width:71.378667pt;}
.w10{width:76.310667pt;}
.w1e{width:83.670667pt;}
.w20{width:84.032000pt;}
.w1b{width:88.146667pt;}
.w14{width:88.466667pt;}
.wd{width:90.226667pt;}
.we{width:94.098667pt;}
.wf{width:98.066667pt;}
.w21{width:101.106667pt;}
.wc{width:102.272000pt;}
.wb{width:105.778667pt;}
.w1c{width:110.738667pt;}
.w1a{width:110.752000pt;}
.w15{width:111.058667pt;}
.w13{width:111.072000pt;}
.w1f{width:118.898667pt;}
.w25{width:119.858667pt;}
.w24{width:120.832000pt;}
.w26{width:121.106667pt;}
.w1d{width:122.746667pt;}
.w16{width:123.066667pt;}
.w2{width:123.220000pt;}
.w23{width:125.618667pt;}
.w22{width:181.973333pt;}
.w4{width:194.773333pt;}
.w9{width:195.093333pt;}
.w3{width:245.306667pt;}
.w27{width:488.560000pt;}
.wa{width:564.280000pt;}
.w17{width:646.200000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x20{left:-11.693333pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x29{left:8.786667pt;}
.x33{left:9.906667pt;}
.x17{left:10.866667pt;}
.x31{left:12.000000pt;}
.x34{left:13.106667pt;}
.x2b{left:14.080000pt;}
.x4d{left:15.026667pt;}
.x13{left:15.990667pt;}
.x30{left:17.600000pt;}
.x35{left:18.720000pt;}
.x21{left:19.680000pt;}
.x22{left:20.946667pt;}
.x1f{left:22.066667pt;}
.x28{left:23.346667pt;}
.x1c{left:24.960000pt;}
.x1e{left:26.226667pt;}
.x2e{left:27.200000pt;}
.x37{left:28.626667pt;}
.x1d{left:29.600000pt;}
.x23{left:31.040000pt;}
.x2c{left:32.800000pt;}
.x2d{left:33.746667pt;}
.x1b{left:35.345333pt;}
.x2f{left:36.466667pt;}
.x32{left:37.920000pt;}
.x40{left:39.360000pt;}
.x36{left:40.320000pt;}
.x53{left:41.306667pt;}
.x5d{left:42.226667pt;}
.x46{left:43.986667pt;}
.x43{left:45.120000pt;}
.x3{left:47.200000pt;}
.x14{left:48.145333pt;}
.x57{left:49.266667pt;}
.x47{left:51.226667pt;}
.x45{left:55.680000pt;}
.x5c{left:60.640000pt;}
.x5b{left:62.586667pt;}
.xd{left:65.280000pt;}
.x3d{left:69.161333pt;}
.x51{left:70.266667pt;}
.x38{left:71.232000pt;}
.x15{left:72.800000pt;}
.x50{left:75.226667pt;}
.x52{left:76.346667pt;}
.x39{left:95.232000pt;}
.x4b{left:106.761333pt;}
.x12{left:110.121333pt;}
.x26{left:146.440000pt;}
.x56{left:148.040000pt;}
.xf{left:149.626667pt;}
.x3c{left:187.706667pt;}
.x4c{left:190.760000pt;}
.xa{left:201.306667pt;}
.x9{left:206.746667pt;}
.x3e{left:217.506667pt;}
.x4{left:234.306667pt;}
.x6{left:237.506667pt;}
.x55{left:242.146667pt;}
.x11{left:249.026667pt;}
.x27{left:252.546667pt;}
.x44{left:267.065333pt;}
.x58{left:273.986667pt;}
.x5{left:278.786667pt;}
.x3f{left:280.706667pt;}
.x19{left:290.306667pt;}
.x49{left:297.026667pt;}
.x3b{left:310.626667pt;}
.x24{left:325.986667pt;}
.x5e{left:351.906667pt;}
.xc{left:355.933333pt;}
.x10{left:381.213333pt;}
.x2{left:385.853333pt;}
.xb{left:388.573333pt;}
.x25{left:392.253333pt;}
.x4e{left:394.346667pt;}
.x59{left:395.306667pt;}
.x1{left:396.893333pt;}
.x1a{left:413.226667pt;}
.x7{left:446.333333pt;}
.x8{left:470.813333pt;}
.x16{left:479.626667pt;}
.x41{left:480.906667pt;}
.x4f{left:495.786667pt;}
.x5a{left:515.493333pt;}
.xe{left:537.253333pt;}
.x2a{left:540.133333pt;}
.x42{left:592.293333pt;}
.x54{left:598.213333pt;}
.x4a{left:614.693333pt;}
.x48{left:637.253333pt;}
.x3a{left:643.200000pt;}
}




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