
    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_a2490643c4eb6c6ec81b65b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7de329975eaacc54b413e054.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_01b0b4629047dd0fa12119b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9071f71586e9c735cb40f45d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_000c69d1fe70a5e9f3749732.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e46d842a71b34328437840d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da731844b9b05ca093d48bd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_09da3a4c174d87e36c9a8e6e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-68.400000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls27{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.181200px;}
.ls24{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls1d{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls2a{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls25{letter-spacing:0.206400px;}
.ls22{letter-spacing:0.206640px;}
.ls2b{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.480000px;}
.ls12{letter-spacing:1.386720px;}
.ls17{letter-spacing:2.340000px;}
.ls28{letter-spacing:2.520000px;}
.ls1f{letter-spacing:6.660000px;}
.ls21{letter-spacing:10.260000px;}
.ls11{letter-spacing:15.066720px;}
.ls10{letter-spacing:31.626720px;}
.ls3{letter-spacing:66.162720px;}
.ls1a{letter-spacing:141.276000px;}
.lsf{letter-spacing:201.036000px;}
.lse{letter-spacing:852.096000px;}
.ls13{letter-spacing:859.296000px;}
.ls16{letter-spacing:996.816000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.274000px;}
.ws8{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.716000px;}
.ws18{word-spacing:-12.996000px;}
.wsb{word-spacing:-12.420000px;}
.wse{word-spacing:-12.283800px;}
.wsd{word-spacing:-12.241200px;}
.wsa{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.836200px;}
.ws17{word-spacing:-11.700000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-7.020000px;}
._b{margin-left:-3.564000px;}
._a{margin-left:-2.484000px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._10{width:4.104000px;}
._11{width:5.832720px;}
._4{width:6.840000px;}
._5{width:8.100000px;}
._d{width:9.612000px;}
._16{width:10.698480px;}
._9{width:11.772000px;}
._17{width:12.789360px;}
._6{width:14.634000px;}
._c{width:15.768000px;}
._18{width:17.688960px;}
._19{width:19.063440px;}
._15{width:20.318160px;}
._21{width:21.399360px;}
._1f{width:22.511280px;}
._20{width:23.664960px;}
._1d{width:25.099200px;}
._1c{width:26.533440px;}
._1e{width:27.848160px;}
._22{width:30.136080px;}
._f{width:33.024000px;}
._e{width:34.074000px;}
._8{width:35.640000px;}
._7{width:36.666000px;}
._25{width:37.840080px;}
._23{width:50.119920px;}
._27{width:54.253680px;}
._26{width:55.941600px;}
._24{width:59.828160px;}
._2a{width:62.388000px;}
._28{width:63.827280px;}
._29{width:65.845440px;}
._1a{width:509.086560px;}
._13{width:736.380000px;}
._1b{width:865.686720px;}
._14{width:1073.100000px;}
._3{width:1101.912000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(1,2,5);}
.fc2{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:2.520000px;}
.y171{bottom:2.550000px;}
.y118{bottom:2.565000px;}
.y20c{bottom:2.880000px;}
.y2c{bottom:3.060000px;}
.y11{bottom:3.240000px;}
.y18e{bottom:3.780000px;}
.y35{bottom:9.000000px;}
.y3b{bottom:12.060000px;}
.y10f{bottom:16.200000px;}
.y170{bottom:16.230000px;}
.ycb{bottom:16.380000px;}
.y117{bottom:16.425000px;}
.y2b{bottom:18.540000px;}
.y16{bottom:20.520000px;}
.y3a{bottom:29.340000px;}
.y10e{bottom:30.060000px;}
.y16f{bottom:30.090000px;}
.yd3{bottom:30.240000px;}
.y116{bottom:30.285000px;}
.y2a{bottom:34.020000px;}
.y15{bottom:37.620000px;}
.y195{bottom:37.800000px;}
.y16c{bottom:43.740000px;}
.y10d{bottom:43.920000px;}
.y16a{bottom:43.965000px;}
.ydd{bottom:45.000000px;}
.yce{bottom:45.180000px;}
.y39{bottom:46.620000px;}
.y29{bottom:49.530000px;}
.y14{bottom:54.900000px;}
.y194{bottom:55.080000px;}
.y101{bottom:55.260000px;}
.y10c{bottom:57.600000px;}
.yd7{bottom:57.780000px;}
.y169{bottom:57.825000px;}
.y38{bottom:63.900000px;}
.y213{bottom:64.260000px;}
.y28{bottom:65.190000px;}
.y34{bottom:65.880000px;}
.y111{bottom:71.490000px;}
.y193{bottom:72.360000px;}
.y212{bottom:79.740000px;}
.y20a{bottom:79.950000px;}
.y27{bottom:80.670000px;}
.y13{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y37{bottom:90.180000px;}
.y216{bottom:95.220000px;}
.y211{bottom:95.400000px;}
.y209{bottom:95.430000px;}
.y26{bottom:96.150000px;}
.y1f3{bottom:110.880000px;}
.y208{bottom:110.910000px;}
.yc0{bottom:111.600000px;}
.y25{bottom:111.630000px;}
.y128{bottom:112.860000px;}
.y1f2{bottom:124.740000px;}
.y18b{bottom:124.920000px;}
.y210{bottom:126.360000px;}
.y207{bottom:126.390000px;}
.y202{bottom:126.405000px;}
.y24{bottom:127.290000px;}
.y86{bottom:128.160000px;}
.ybf{bottom:128.880000px;}
.y127{bottom:130.140000px;}
.y4a{bottom:132.840000px;}
.y167{bottom:138.636000px;}
.y20f{bottom:141.840000px;}
.y201{bottom:141.885000px;}
.y206{bottom:142.050000px;}
.y18a{bottom:142.056000px;}
.y23{bottom:142.770000px;}
.yfe{bottom:144.216000px;}
.y85{bottom:145.476000px;}
.ybe{bottom:146.196000px;}
.y126{bottom:147.456000px;}
.y1b8{bottom:149.436000px;}
.y49{bottom:150.150000px;}
.y33{bottom:151.770000px;}
.y1f1{bottom:152.310000px;}
.y166{bottom:155.910000px;}
.y20e{bottom:157.320000px;}
.y200{bottom:157.365000px;}
.y205{bottom:157.530000px;}
.y22{bottom:158.250000px;}
.y189{bottom:159.330000px;}
.yfd{bottom:161.490000px;}
.y84{bottom:162.750000px;}
.y1b7{bottom:163.110000px;}
.ybd{bottom:163.470000px;}
.y125{bottom:164.550000px;}
.y1f0{bottom:166.170000px;}
.y48{bottom:167.250000px;}
.y32{bottom:169.050000px;}
.y165{bottom:173.190000px;}
.y21{bottom:173.730000px;}
.y188{bottom:176.610000px;}
.y1b6{bottom:176.970000px;}
.yfc{bottom:178.770000px;}
.y83{bottom:179.850000px;}
.y1ef{bottom:180.030000px;}
.ybc{bottom:180.750000px;}
.y124{bottom:181.830000px;}
.y47{bottom:184.530000px;}
.y31{bottom:186.330000px;}
.y20{bottom:189.390000px;}
.y164{bottom:190.470000px;}
.y1b5{bottom:190.830000px;}
.y1ee{bottom:193.710000px;}
.y187{bottom:193.890000px;}
.yfb{bottom:196.050000px;}
.y82{bottom:197.130000px;}
.ybb{bottom:197.850000px;}
.y123{bottom:199.110000px;}
.y46{bottom:201.810000px;}
.y30{bottom:203.430000px;}
.y1b4{bottom:204.510000px;}
.y1f{bottom:204.870000px;}
.y1ed{bottom:207.570000px;}
.y163{bottom:207.750000px;}
.y186{bottom:211.170000px;}
.yfa{bottom:213.150000px;}
.y81{bottom:214.410000px;}
.yba{bottom:215.130000px;}
.y122{bottom:216.390000px;}
.y1b3{bottom:218.370000px;}
.y45{bottom:219.090000px;}
.y1e{bottom:220.350000px;}
.y2f{bottom:220.710000px;}
.y1ec{bottom:221.430000px;}
.y162{bottom:224.850000px;}
.y185{bottom:228.450000px;}
.yf9{bottom:230.430000px;}
.y80{bottom:231.690000px;}
.y1b2{bottom:232.230000px;}
.yb9{bottom:232.410000px;}
.y121{bottom:233.670000px;}
.y1eb{bottom:235.110000px;}
.y1d{bottom:235.830000px;}
.y44{bottom:236.370000px;}
.y2e{bottom:237.990000px;}
.y217{bottom:241.590000px;}
.y161{bottom:242.130000px;}
.y215{bottom:243.030000px;}
.y184{bottom:245.550000px;}
.y1b1{bottom:245.910000px;}
.yf8{bottom:247.710000px;}
.y7f{bottom:248.970000px;}
.yb8{bottom:249.690000px;}
.y120{bottom:250.950000px;}
.y1c{bottom:251.310000px;}
.y43{bottom:253.650000px;}
.y160{bottom:259.410000px;}
.y1b0{bottom:259.770000px;}
.y183{bottom:262.830000px;}
.y2d{bottom:264.270000px;}
.yf7{bottom:264.990000px;}
.y7e{bottom:266.250000px;}
.y1b{bottom:266.970000px;}
.y11f{bottom:268.050000px;}
.y42{bottom:270.750000px;}
.y1af{bottom:273.630000px;}
.y1ea{bottom:276.510000px;}
.y15f{bottom:276.690000px;}
.y182{bottom:280.110000px;}
.yf6{bottom:282.270000px;}
.y1a{bottom:282.450000px;}
.y7d{bottom:283.350000px;}
.yb7{bottom:284.250000px;}
.y11e{bottom:285.330000px;}
.y1ae{bottom:287.310000px;}
.y41{bottom:288.030000px;}
.y1e9{bottom:290.370000px;}
.y15e{bottom:293.970000px;}
.y181{bottom:297.390000px;}
.yf5{bottom:299.550000px;}
.y7c{bottom:300.630000px;}
.y1ad{bottom:301.170000px;}
.yb6{bottom:301.350000px;}
.y11d{bottom:302.610000px;}
.y1e8{bottom:304.230000px;}
.y40{bottom:305.310000px;}
.y15d{bottom:311.250000px;}
.y180{bottom:314.670000px;}
.y1ac{bottom:315.030000px;}
.yf4{bottom:316.650000px;}
.y7b{bottom:317.910000px;}
.yb5{bottom:318.630000px;}
.y11c{bottom:319.890000px;}
.y3f{bottom:322.590000px;}
.y15c{bottom:328.350000px;}
.y1ab{bottom:328.710000px;}
.y1e7{bottom:331.770000px;}
.y17f{bottom:331.950000px;}
.yf3{bottom:333.930000px;}
.y7a{bottom:335.190000px;}
.yb4{bottom:335.910000px;}
.y11b{bottom:337.170000px;}
.y3e{bottom:339.870000px;}
.y1aa{bottom:342.570000px;}
.y15b{bottom:345.630000px;}
.y17e{bottom:349.050000px;}
.yf2{bottom:351.210000px;}
.y79{bottom:352.470000px;}
.yb3{bottom:353.190000px;}
.y11a{bottom:354.450000px;}
.y1a9{bottom:356.430000px;}
.y3d{bottom:356.970000px;}
.y1e6{bottom:359.310000px;}
.y15a{bottom:362.910000px;}
.y17d{bottom:366.330000px;}
.yf1{bottom:368.490000px;}
.y18{bottom:369.210000px;}
.y78{bottom:369.750000px;}
.y1a8{bottom:370.110000px;}
.yb2{bottom:370.470000px;}
.y119{bottom:371.550000px;}
.y1e5{bottom:373.170000px;}
.y3c{bottom:374.250000px;}
.y159{bottom:380.190000px;}
.y17c{bottom:383.610000px;}
.y1a7{bottom:384.690000px;}
.yf0{bottom:385.770000px;}
.y115{bottom:386.310000px;}
.y77{bottom:386.850000px;}
.y1e4{bottom:387.030000px;}
.yb1{bottom:387.795000px;}
.y36{bottom:390.675000px;}
.y158{bottom:397.515000px;}
.y1e3{bottom:400.755000px;}
.y17b{bottom:400.935000px;}
.y1a6{bottom:402.015000px;}
.yef{bottom:402.915000px;}
.y76{bottom:404.175000px;}
.yb0{bottom:404.895000px;}
.y214{bottom:414.075000px;}
.y1e2{bottom:414.615000px;}
.y157{bottom:414.795000px;}
.y17a{bottom:418.215000px;}
.y1a5{bottom:419.295000px;}
.yee{bottom:420.195000px;}
.y75{bottom:421.455000px;}
.yaf{bottom:422.175000px;}
.y114{bottom:427.755000px;}
.y1e1{bottom:428.475000px;}
.y20d{bottom:429.555000px;}
.y156{bottom:431.895000px;}
.y179{bottom:435.495000px;}
.y1a4{bottom:436.395000px;}
.yed{bottom:437.475000px;}
.y74{bottom:438.735000px;}
.yae{bottom:439.455000px;}
.y1e0{bottom:442.155000px;}
.y155{bottom:449.175000px;}
.y178{bottom:452.595000px;}
.y1a3{bottom:453.675000px;}
.yec{bottom:454.755000px;}
.y73{bottom:456.015000px;}
.yad{bottom:456.735000px;}
.y154{bottom:466.455000px;}
.y177{bottom:469.875000px;}
.y1a2{bottom:470.955000px;}
.yeb{bottom:472.035000px;}
.y72{bottom:473.115000px;}
.yac{bottom:474.015000px;}
.y113{bottom:483.015000px;}
.y1df{bottom:483.555000px;}
.y153{bottom:483.735000px;}
.y176{bottom:487.155000px;}
.y1a1{bottom:488.235000px;}
.yea{bottom:489.315000px;}
.y71{bottom:490.395000px;}
.yab{bottom:491.115000px;}
.y1de{bottom:497.415000px;}
.y152{bottom:501.015000px;}
.y17{bottom:504.615000px;}
.y1a0{bottom:505.515000px;}
.ye9{bottom:506.415000px;}
.y70{bottom:507.675000px;}
.yaa{bottom:508.395000px;}
.y1dd{bottom:511.095000px;}
.y151{bottom:518.115000px;}
.y175{bottom:521.715000px;}
.y19f{bottom:522.615000px;}
.ye8{bottom:523.695000px;}
.y112{bottom:524.415000px;}
.y6f{bottom:524.955000px;}
.ya9{bottom:525.675000px;}
.y150{bottom:535.395000px;}
.y174{bottom:538.815000px;}
.y19e{bottom:539.895000px;}
.ye7{bottom:540.975000px;}
.y6e{bottom:542.235000px;}
.ya8{bottom:542.955000px;}
.y1dc{bottom:552.495000px;}
.y14f{bottom:552.675000px;}
.y173{bottom:553.575000px;}
.y19d{bottom:557.175000px;}
.ye6{bottom:558.255000px;}
.y6d{bottom:559.515000px;}
.ya7{bottom:560.235000px;}
.y1db{bottom:566.355000px;}
.y14e{bottom:569.955000px;}
.y19c{bottom:574.455000px;}
.ye5{bottom:575.535000px;}
.y6c{bottom:576.615000px;}
.ya6{bottom:577.515000px;}
.y110{bottom:579.675000px;}
.y1da{bottom:580.215000px;}
.y14d{bottom:584.715000px;}
.y19b{bottom:591.735000px;}
.y19{bottom:592.815000px;}
.y6b{bottom:593.895000px;}
.ya5{bottom:594.615000px;}
.y172{bottom:595.875000px;}
.y14c{bottom:599.295000px;}
.y20b{bottom:600.555000px;}
.y1d9{bottom:607.755000px;}
.y19a{bottom:609.015000px;}
.ye4{bottom:609.915000px;}
.y6a{bottom:611.175000px;}
.ya4{bottom:611.895000px;}
.y14b{bottom:613.875000px;}
.y204{bottom:616.035000px;}
.y1d8{bottom:621.615000px;}
.y199{bottom:626.115000px;}
.ye3{bottom:627.195000px;}
.y14a{bottom:628.275000px;}
.y69{bottom:628.455000px;}
.ya3{bottom:629.175000px;}
.y1d7{bottom:635.295000px;}
.y16e{bottom:637.995000px;}
.ye2{bottom:641.985000px;}
.y149{bottom:642.885000px;}
.y198{bottom:643.425000px;}
.y68{bottom:645.765000px;}
.ya2{bottom:646.485000px;}
.y1d6{bottom:649.185000px;}
.ye1{bottom:655.845000px;}
.y197{bottom:660.705000px;}
.y10b{bottom:662.505000px;}
.y67{bottom:663.045000px;}
.ya1{bottom:663.765000px;}
.ydc{bottom:669.525000px;}
.y1d5{bottom:676.725000px;}
.y148{bottom:677.985000px;}
.y66{bottom:680.145000px;}
.ya0{bottom:681.045000px;}
.ye0{bottom:683.565000px;}
.y1d4{bottom:690.585000px;}
.y147{bottom:695.265000px;}
.y65{bottom:697.425000px;}
.ydf{bottom:697.605000px;}
.y9f{bottom:698.145000px;}
.y1d3{bottom:704.445000px;}
.y146{bottom:710.025000px;}
.yde{bottom:711.645000px;}
.y196{bottom:712.545000px;}
.y64{bottom:714.705000px;}
.y9e{bottom:715.425000px;}
.y1d2{bottom:718.125000px;}
.y145{bottom:723.705000px;}
.yd6{bottom:725.685000px;}
.y192{bottom:726.405000px;}
.y10a{bottom:731.445000px;}
.y63{bottom:731.985000px;}
.y9d{bottom:732.705000px;}
.y16d{bottom:736.125000px;}
.y144{bottom:737.565000px;}
.ydb{bottom:739.545000px;}
.y109{bottom:745.305000px;}
.y1d1{bottom:745.845000px;}
.y62{bottom:749.265000px;}
.y9c{bottom:749.985000px;}
.y143{bottom:751.425000px;}
.yda{bottom:753.225000px;}
.y108{bottom:758.985000px;}
.y1d0{bottom:759.525000px;}
.y142{bottom:765.105000px;}
.y61{bottom:766.545000px;}
.yd9{bottom:767.085000px;}
.y9b{bottom:767.265000px;}
.y107{bottom:772.845000px;}
.y1cf{bottom:773.385000px;}
.y141{bottom:778.965000px;}
.yd8{bottom:780.945000px;}
.y60{bottom:783.645000px;}
.y9a{bottom:784.545000px;}
.y106{bottom:786.705000px;}
.y203{bottom:787.065000px;}
.y1ce{bottom:787.245000px;}
.y16b{bottom:792.105000px;}
.y12{bottom:792.645000px;}
.y140{bottom:792.825000px;}
.yd2{bottom:794.625000px;}
.y100{bottom:800.385000px;}
.y5f{bottom:800.925000px;}
.y99{bottom:801.645000px;}
.y1ff{bottom:802.725000px;}
.y13f{bottom:806.505000px;}
.yd5{bottom:808.485000px;}
.y105{bottom:814.245000px;}
.y1cd{bottom:814.785000px;}
.y191{bottom:815.865000px;}
.y5e{bottom:818.205000px;}
.y98{bottom:818.925000px;}
.y13e{bottom:820.365000px;}
.yd4{bottom:822.345000px;}
.y104{bottom:827.925000px;}
.y1cc{bottom:828.645000px;}
.y190{bottom:830.625000px;}
.y13d{bottom:834.225000px;}
.y5d{bottom:835.485000px;}
.ycd{bottom:836.025000px;}
.y97{bottom:836.205000px;}
.y103{bottom:841.785000px;}
.y1cb{bottom:842.325000px;}
.y13c{bottom:847.905000px;}
.yd1{bottom:849.885000px;}
.y5c{bottom:852.765000px;}
.y96{bottom:853.485000px;}
.y102{bottom:855.645000px;}
.y1ca{bottom:856.185000px;}
.y13b{bottom:861.765000px;}
.yd0{bottom:863.745000px;}
.y18f{bottom:865.185000px;}
.y5b{bottom:869.865000px;}
.y1c9{bottom:870.045000px;}
.yff{bottom:870.225000px;}
.y95{bottom:870.765000px;}
.y13a{bottom:875.625000px;}
.ycf{bottom:877.425000px;}
.y18d{bottom:882.465000px;}
.y1c8{bottom:883.725000px;}
.y5a{bottom:887.145000px;}
.y94{bottom:887.865000px;}
.y139{bottom:889.305000px;}
.yca{bottom:892.410000px;}
.y10{bottom:897.630000px;}
.y18c{bottom:900.510000px;}
.y138{bottom:903.210000px;}
.y59{bottom:904.470000px;}
.y93{bottom:905.190000px;}
.ycc{bottom:906.270000px;}
.y1c7{bottom:911.490000px;}
.y137{bottom:917.070000px;}
.yc8{bottom:920.850000px;}
.y58{bottom:921.750000px;}
.y92{bottom:922.470000px;}
.y1c6{bottom:925.170000px;}
.yf{bottom:929.310000px;}
.y136{bottom:930.750000px;}
.y168{bottom:931.470000px;}
.y57{bottom:939.030000px;}
.y91{bottom:939.750000px;}
.y135{bottom:944.610000px;}
.ye{bottom:946.590000px;}
.y1c5{bottom:952.890000px;}
.yc7{bottom:955.770000px;}
.y56{bottom:956.310000px;}
.y90{bottom:957.030000px;}
.y134{bottom:958.470000px;}
.yd{bottom:963.150000px;}
.y1c4{bottom:966.570000px;}
.y133{bottom:972.150000px;}
.yc6{bottom:973.050000px;}
.y55{bottom:973.410000px;}
.y8f{bottom:974.310000px;}
.y1fe{bottom:976.290000px;}
.y1c3{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y132{bottom:986.010000px;}
.yc5{bottom:990.330000px;}
.y54{bottom:990.690000px;}
.y8e{bottom:991.410000px;}
.y1c2{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.y131{bottom:999.870000px;}
.ya{bottom:1005.270000px;}
.y1fd{bottom:1007.250000px;}
.yc4{bottom:1007.610000px;}
.y53{bottom:1007.970000px;}
.y8d{bottom:1008.690000px;}
.y130{bottom:1013.550000px;}
.y1fc{bottom:1021.110000px;}
.y1c1{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.yc3{bottom:1024.890000px;}
.y52{bottom:1025.250000px;}
.y8c{bottom:1025.970000px;}
.y12f{bottom:1027.410000px;}
.y1fb{bottom:1034.790000px;}
.y1c0{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y12e{bottom:1041.270000px;}
.yc2{bottom:1042.170000px;}
.y51{bottom:1042.530000px;}
.y8b{bottom:1043.250000px;}
.y1fa{bottom:1048.650000px;}
.y1bf{bottom:1049.370000px;}
.y12d{bottom:1054.950000px;}
.y7{bottom:1059.090000px;}
.yc1{bottom:1059.630000px;}
.y50{bottom:1059.810000px;}
.y8a{bottom:1060.530000px;}
.y1f9{bottom:1062.510000px;}
.y1be{bottom:1063.230000px;}
.y12c{bottom:1068.810000px;}
.y1f8{bottom:1076.190000px;}
.y4f{bottom:1076.910000px;}
.y1bd{bottom:1077.090000px;}
.y89{bottom:1077.810000px;}
.y12b{bottom:1082.670000px;}
.y6{bottom:1086.630000px;}
.y1f7{bottom:1090.050000px;}
.y1bc{bottom:1090.770000px;}
.y4e{bottom:1094.190000px;}
.y88{bottom:1094.910000px;}
.y12a{bottom:1096.350000px;}
.y1f6{bottom:1103.910000px;}
.y1bb{bottom:1104.630000px;}
.y129{bottom:1110.930000px;}
.y4d{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y1f5{bottom:1117.590000px;}
.y1ba{bottom:1118.490000px;}
.y4c{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1f4{bottom:1131.450000px;}
.y1b9{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y87{bottom:1160.640000px;}
.y4b{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h30{height:5.653125px;}
.h16{height:13.680000px;}
.h19{height:13.860000px;}
.h24{height:13.896000px;}
.h1f{height:14.040000px;}
.h1b{height:14.976000px;}
.h2e{height:15.480000px;}
.h2d{height:15.660000px;}
.h13{height:17.100000px;}
.h15{height:17.280000px;}
.h28{height:17.316000px;}
.h7{height:26.280000px;}
.h18{height:27.720000px;}
.h6{height:29.678906px;}
.h1c{height:41.400000px;}
.h23{height:41.436000px;}
.h26{height:43.246406px;}
.h2a{height:47.321367px;}
.h17{height:47.344922px;}
.hd{height:48.410156px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h14{height:53.573906px;}
.h2c{height:54.421875px;}
.h27{height:55.080000px;}
.h22{height:55.260000px;}
.h1e{height:56.160000px;}
.h1a{height:56.376000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h20{height:61.423863px;}
.h12{height:62.211094px;}
.h1d{height:68.940000px;}
.h25{height:68.976000px;}
.h8{height:70.664062px;}
.h21{height:82.836000px;}
.h29{height:86.220000px;}
.hf{height:87.480000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h11{height:113.220000px;}
.h2f{height:171.000000px;}
.h2b{height:171.030000px;}
.he{height:287.310000px;}
.hb{height:304.095000px;}
.ha{height:392.295000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w1c{width:35.640000px;}
.w1d{width:35.820000px;}
.w1e{width:35.856000px;}
.w13{width:49.860000px;}
.w14{width:51.516000px;}
.w11{width:53.100000px;}
.we{width:60.300000px;}
.wb{width:69.696000px;}
.w18{width:73.620000px;}
.w17{width:73.836000px;}
.w19{width:95.076000px;}
.w10{width:95.796000px;}
.w1a{width:116.280000px;}
.w15{width:126.360000px;}
.w22{width:144.540000px;}
.w9{width:149.076000px;}
.w1b{width:158.070000px;}
.w16{width:169.410000px;}
.wd{width:188.670000px;}
.w21{width:198.570000px;}
.wa{width:198.930000px;}
.w3{width:209.190000px;}
.w1f{width:214.770000px;}
.w20{width:244.290000px;}
.wc{width:290.775000px;}
.w12{width:303.915000px;}
.w5{width:433.155000px;}
.wf{width:478.155000px;}
.w23{width:525.885000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x31{left:9.360000px;}
.xc{left:10.620000px;}
.x21{left:12.240000px;}
.x36{left:14.040000px;}
.x27{left:15.840000px;}
.x1a{left:16.920000px;}
.x34{left:21.420000px;}
.x2e{left:22.500000px;}
.x32{left:25.560000px;}
.x2b{left:28.254000px;}
.x37{left:31.680000px;}
.x38{left:35.280000px;}
.x25{left:37.485000px;}
.x35{left:38.700000px;}
.x16{left:53.865000px;}
.x2d{left:59.085000px;}
.x1f{left:72.180000px;}
.x18{left:77.430000px;}
.x1d{left:101.025000px;}
.xe{left:106.560000px;}
.x48{left:116.496000px;}
.x9{left:125.496000px;}
.x1{left:127.655987px;}
.x49{left:136.254000px;}
.x2{left:138.995987px;}
.x7{left:142.595987px;}
.x23{left:143.676000px;}
.x1b{left:148.895987px;}
.x12{left:154.649987px;}
.x11{left:157.349987px;}
.x47{left:159.689987px;}
.x6{left:177.869987px;}
.x10{left:181.649987px;}
.x1c{left:187.410000px;}
.x13{left:214.769987px;}
.x5{left:224.489987px;}
.x15{left:248.430000px;}
.x28{left:253.830000px;}
.x2c{left:255.270000px;}
.x4a{left:261.030000px;}
.x39{left:286.095000px;}
.x22{left:312.014987px;}
.x3{left:322.274987px;}
.xb{left:334.695000px;}
.x45{left:343.155000px;}
.xd{left:355.755000px;}
.x3a{left:357.555000px;}
.x3b{left:393.195000px;}
.x17{left:397.515000px;}
.x8{left:406.514987px;}
.xf{left:425.055000px;}
.x3c{left:429.015000px;}
.x4{left:457.274987px;}
.x3d{left:464.655000px;}
.x1e{left:478.185000px;}
.x2f{left:499.965000px;}
.x3e{left:536.145000px;}
.x29{left:558.465000px;}
.x3f{left:571.965000px;}
.x30{left:574.305000px;}
.x46{left:587.445000px;}
.x19{left:596.445000px;}
.x40{left:607.605000px;}
.x2a{left:609.045000px;}
.x24{left:621.825000px;}
.x41{left:643.425000px;}
.x20{left:666.870000px;}
.x33{left:670.110000px;}
.x42{left:679.110000px;}
.x43{left:714.930000px;}
.x26{left:717.630000px;}
.x44{left:750.750000px;}
.x14{left:756.870000px;}
@media print{
.v3{vertical-align:-60.800000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls27{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls1d{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls2a{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls25{letter-spacing:0.183467pt;}
.ls22{letter-spacing:0.183680pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.426667pt;}
.ls12{letter-spacing:1.232640pt;}
.ls17{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls21{letter-spacing:9.120000pt;}
.ls11{letter-spacing:13.392640pt;}
.ls10{letter-spacing:28.112640pt;}
.ls3{letter-spacing:58.811307pt;}
.ls1a{letter-spacing:125.578667pt;}
.lsf{letter-spacing:178.698667pt;}
.lse{letter-spacing:757.418667pt;}
.ls13{letter-spacing:763.818667pt;}
.ls16{letter-spacing:886.058667pt;}
.ws16{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.192000pt;}
.ws18{word-spacing:-11.552000pt;}
.wsb{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.918933pt;}
.wsd{word-spacing:-10.881067pt;}
.wsa{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws11{word-spacing:-10.521067pt;}
.ws17{word-spacing:-10.400000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-6.240000pt;}
._b{margin-left:-3.168000pt;}
._a{margin-left:-2.208000pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._10{width:3.648000pt;}
._11{width:5.184640pt;}
._4{width:6.080000pt;}
._5{width:7.200000pt;}
._d{width:8.544000pt;}
._16{width:9.509760pt;}
._9{width:10.464000pt;}
._17{width:11.368320pt;}
._6{width:13.008000pt;}
._c{width:14.016000pt;}
._18{width:15.723520pt;}
._19{width:16.945280pt;}
._15{width:18.060587pt;}
._21{width:19.021653pt;}
._1f{width:20.010027pt;}
._20{width:21.035520pt;}
._1d{width:22.310400pt;}
._1c{width:23.585280pt;}
._1e{width:24.753920pt;}
._22{width:26.787627pt;}
._f{width:29.354667pt;}
._e{width:30.288000pt;}
._8{width:31.680000pt;}
._7{width:32.592000pt;}
._25{width:33.635627pt;}
._23{width:44.551040pt;}
._27{width:48.225493pt;}
._26{width:49.725867pt;}
._24{width:53.180587pt;}
._2a{width:55.456000pt;}
._28{width:56.735360pt;}
._29{width:58.529280pt;}
._1a{width:452.521387pt;}
._13{width:654.560000pt;}
._1b{width:769.499307pt;}
._14{width:953.866667pt;}
._3{width:979.477333pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:2.240000pt;}
.y171{bottom:2.266667pt;}
.y118{bottom:2.280000pt;}
.y20c{bottom:2.560000pt;}
.y2c{bottom:2.720000pt;}
.y11{bottom:2.880000pt;}
.y18e{bottom:3.360000pt;}
.y35{bottom:8.000000pt;}
.y3b{bottom:10.720000pt;}
.y10f{bottom:14.400000pt;}
.y170{bottom:14.426667pt;}
.ycb{bottom:14.560000pt;}
.y117{bottom:14.600000pt;}
.y2b{bottom:16.480000pt;}
.y16{bottom:18.240000pt;}
.y3a{bottom:26.080000pt;}
.y10e{bottom:26.720000pt;}
.y16f{bottom:26.746667pt;}
.yd3{bottom:26.880000pt;}
.y116{bottom:26.920000pt;}
.y2a{bottom:30.240000pt;}
.y15{bottom:33.440000pt;}
.y195{bottom:33.600000pt;}
.y16c{bottom:38.880000pt;}
.y10d{bottom:39.040000pt;}
.y16a{bottom:39.080000pt;}
.ydd{bottom:40.000000pt;}
.yce{bottom:40.160000pt;}
.y39{bottom:41.440000pt;}
.y29{bottom:44.026667pt;}
.y14{bottom:48.800000pt;}
.y194{bottom:48.960000pt;}
.y101{bottom:49.120000pt;}
.y10c{bottom:51.200000pt;}
.yd7{bottom:51.360000pt;}
.y169{bottom:51.400000pt;}
.y38{bottom:56.800000pt;}
.y213{bottom:57.120000pt;}
.y28{bottom:57.946667pt;}
.y34{bottom:58.560000pt;}
.y111{bottom:63.546667pt;}
.y193{bottom:64.320000pt;}
.y212{bottom:70.880000pt;}
.y20a{bottom:71.066667pt;}
.y27{bottom:71.706667pt;}
.y13{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y37{bottom:80.160000pt;}
.y216{bottom:84.640000pt;}
.y211{bottom:84.800000pt;}
.y209{bottom:84.826667pt;}
.y26{bottom:85.466667pt;}
.y1f3{bottom:98.560000pt;}
.y208{bottom:98.586667pt;}
.yc0{bottom:99.200000pt;}
.y25{bottom:99.226667pt;}
.y128{bottom:100.320000pt;}
.y1f2{bottom:110.880000pt;}
.y18b{bottom:111.040000pt;}
.y210{bottom:112.320000pt;}
.y207{bottom:112.346667pt;}
.y202{bottom:112.360000pt;}
.y24{bottom:113.146667pt;}
.y86{bottom:113.920000pt;}
.ybf{bottom:114.560000pt;}
.y127{bottom:115.680000pt;}
.y4a{bottom:118.080000pt;}
.y167{bottom:123.232000pt;}
.y20f{bottom:126.080000pt;}
.y201{bottom:126.120000pt;}
.y206{bottom:126.266667pt;}
.y18a{bottom:126.272000pt;}
.y23{bottom:126.906667pt;}
.yfe{bottom:128.192000pt;}
.y85{bottom:129.312000pt;}
.ybe{bottom:129.952000pt;}
.y126{bottom:131.072000pt;}
.y1b8{bottom:132.832000pt;}
.y49{bottom:133.466667pt;}
.y33{bottom:134.906667pt;}
.y1f1{bottom:135.386667pt;}
.y166{bottom:138.586667pt;}
.y20e{bottom:139.840000pt;}
.y200{bottom:139.880000pt;}
.y205{bottom:140.026667pt;}
.y22{bottom:140.666667pt;}
.y189{bottom:141.626667pt;}
.yfd{bottom:143.546667pt;}
.y84{bottom:144.666667pt;}
.y1b7{bottom:144.986667pt;}
.ybd{bottom:145.306667pt;}
.y125{bottom:146.266667pt;}
.y1f0{bottom:147.706667pt;}
.y48{bottom:148.666667pt;}
.y32{bottom:150.266667pt;}
.y165{bottom:153.946667pt;}
.y21{bottom:154.426667pt;}
.y188{bottom:156.986667pt;}
.y1b6{bottom:157.306667pt;}
.yfc{bottom:158.906667pt;}
.y83{bottom:159.866667pt;}
.y1ef{bottom:160.026667pt;}
.ybc{bottom:160.666667pt;}
.y124{bottom:161.626667pt;}
.y47{bottom:164.026667pt;}
.y31{bottom:165.626667pt;}
.y20{bottom:168.346667pt;}
.y164{bottom:169.306667pt;}
.y1b5{bottom:169.626667pt;}
.y1ee{bottom:172.186667pt;}
.y187{bottom:172.346667pt;}
.yfb{bottom:174.266667pt;}
.y82{bottom:175.226667pt;}
.ybb{bottom:175.866667pt;}
.y123{bottom:176.986667pt;}
.y46{bottom:179.386667pt;}
.y30{bottom:180.826667pt;}
.y1b4{bottom:181.786667pt;}
.y1f{bottom:182.106667pt;}
.y1ed{bottom:184.506667pt;}
.y163{bottom:184.666667pt;}
.y186{bottom:187.706667pt;}
.yfa{bottom:189.466667pt;}
.y81{bottom:190.586667pt;}
.yba{bottom:191.226667pt;}
.y122{bottom:192.346667pt;}
.y1b3{bottom:194.106667pt;}
.y45{bottom:194.746667pt;}
.y1e{bottom:195.866667pt;}
.y2f{bottom:196.186667pt;}
.y1ec{bottom:196.826667pt;}
.y162{bottom:199.866667pt;}
.y185{bottom:203.066667pt;}
.yf9{bottom:204.826667pt;}
.y80{bottom:205.946667pt;}
.y1b2{bottom:206.426667pt;}
.yb9{bottom:206.586667pt;}
.y121{bottom:207.706667pt;}
.y1eb{bottom:208.986667pt;}
.y1d{bottom:209.626667pt;}
.y44{bottom:210.106667pt;}
.y2e{bottom:211.546667pt;}
.y217{bottom:214.746667pt;}
.y161{bottom:215.226667pt;}
.y215{bottom:216.026667pt;}
.y184{bottom:218.266667pt;}
.y1b1{bottom:218.586667pt;}
.yf8{bottom:220.186667pt;}
.y7f{bottom:221.306667pt;}
.yb8{bottom:221.946667pt;}
.y120{bottom:223.066667pt;}
.y1c{bottom:223.386667pt;}
.y43{bottom:225.466667pt;}
.y160{bottom:230.586667pt;}
.y1b0{bottom:230.906667pt;}
.y183{bottom:233.626667pt;}
.y2d{bottom:234.906667pt;}
.yf7{bottom:235.546667pt;}
.y7e{bottom:236.666667pt;}
.y1b{bottom:237.306667pt;}
.y11f{bottom:238.266667pt;}
.y42{bottom:240.666667pt;}
.y1af{bottom:243.226667pt;}
.y1ea{bottom:245.786667pt;}
.y15f{bottom:245.946667pt;}
.y182{bottom:248.986667pt;}
.yf6{bottom:250.906667pt;}
.y1a{bottom:251.066667pt;}
.y7d{bottom:251.866667pt;}
.yb7{bottom:252.666667pt;}
.y11e{bottom:253.626667pt;}
.y1ae{bottom:255.386667pt;}
.y41{bottom:256.026667pt;}
.y1e9{bottom:258.106667pt;}
.y15e{bottom:261.306667pt;}
.y181{bottom:264.346667pt;}
.yf5{bottom:266.266667pt;}
.y7c{bottom:267.226667pt;}
.y1ad{bottom:267.706667pt;}
.yb6{bottom:267.866667pt;}
.y11d{bottom:268.986667pt;}
.y1e8{bottom:270.426667pt;}
.y40{bottom:271.386667pt;}
.y15d{bottom:276.666667pt;}
.y180{bottom:279.706667pt;}
.y1ac{bottom:280.026667pt;}
.yf4{bottom:281.466667pt;}
.y7b{bottom:282.586667pt;}
.yb5{bottom:283.226667pt;}
.y11c{bottom:284.346667pt;}
.y3f{bottom:286.746667pt;}
.y15c{bottom:291.866667pt;}
.y1ab{bottom:292.186667pt;}
.y1e7{bottom:294.906667pt;}
.y17f{bottom:295.066667pt;}
.yf3{bottom:296.826667pt;}
.y7a{bottom:297.946667pt;}
.yb4{bottom:298.586667pt;}
.y11b{bottom:299.706667pt;}
.y3e{bottom:302.106667pt;}
.y1aa{bottom:304.506667pt;}
.y15b{bottom:307.226667pt;}
.y17e{bottom:310.266667pt;}
.yf2{bottom:312.186667pt;}
.y79{bottom:313.306667pt;}
.yb3{bottom:313.946667pt;}
.y11a{bottom:315.066667pt;}
.y1a9{bottom:316.826667pt;}
.y3d{bottom:317.306667pt;}
.y1e6{bottom:319.386667pt;}
.y15a{bottom:322.586667pt;}
.y17d{bottom:325.626667pt;}
.yf1{bottom:327.546667pt;}
.y18{bottom:328.186667pt;}
.y78{bottom:328.666667pt;}
.y1a8{bottom:328.986667pt;}
.yb2{bottom:329.306667pt;}
.y119{bottom:330.266667pt;}
.y1e5{bottom:331.706667pt;}
.y3c{bottom:332.666667pt;}
.y159{bottom:337.946667pt;}
.y17c{bottom:340.986667pt;}
.y1a7{bottom:341.946667pt;}
.yf0{bottom:342.906667pt;}
.y115{bottom:343.386667pt;}
.y77{bottom:343.866667pt;}
.y1e4{bottom:344.026667pt;}
.yb1{bottom:344.706667pt;}
.y36{bottom:347.266667pt;}
.y158{bottom:353.346667pt;}
.y1e3{bottom:356.226667pt;}
.y17b{bottom:356.386667pt;}
.y1a6{bottom:357.346667pt;}
.yef{bottom:358.146667pt;}
.y76{bottom:359.266667pt;}
.yb0{bottom:359.906667pt;}
.y214{bottom:368.066667pt;}
.y1e2{bottom:368.546667pt;}
.y157{bottom:368.706667pt;}
.y17a{bottom:371.746667pt;}
.y1a5{bottom:372.706667pt;}
.yee{bottom:373.506667pt;}
.y75{bottom:374.626667pt;}
.yaf{bottom:375.266667pt;}
.y114{bottom:380.226667pt;}
.y1e1{bottom:380.866667pt;}
.y20d{bottom:381.826667pt;}
.y156{bottom:383.906667pt;}
.y179{bottom:387.106667pt;}
.y1a4{bottom:387.906667pt;}
.yed{bottom:388.866667pt;}
.y74{bottom:389.986667pt;}
.yae{bottom:390.626667pt;}
.y1e0{bottom:393.026667pt;}
.y155{bottom:399.266667pt;}
.y178{bottom:402.306667pt;}
.y1a3{bottom:403.266667pt;}
.yec{bottom:404.226667pt;}
.y73{bottom:405.346667pt;}
.yad{bottom:405.986667pt;}
.y154{bottom:414.626667pt;}
.y177{bottom:417.666667pt;}
.y1a2{bottom:418.626667pt;}
.yeb{bottom:419.586667pt;}
.y72{bottom:420.546667pt;}
.yac{bottom:421.346667pt;}
.y113{bottom:429.346667pt;}
.y1df{bottom:429.826667pt;}
.y153{bottom:429.986667pt;}
.y176{bottom:433.026667pt;}
.y1a1{bottom:433.986667pt;}
.yea{bottom:434.946667pt;}
.y71{bottom:435.906667pt;}
.yab{bottom:436.546667pt;}
.y1de{bottom:442.146667pt;}
.y152{bottom:445.346667pt;}
.y17{bottom:448.546667pt;}
.y1a0{bottom:449.346667pt;}
.ye9{bottom:450.146667pt;}
.y70{bottom:451.266667pt;}
.yaa{bottom:451.906667pt;}
.y1dd{bottom:454.306667pt;}
.y151{bottom:460.546667pt;}
.y175{bottom:463.746667pt;}
.y19f{bottom:464.546667pt;}
.ye8{bottom:465.506667pt;}
.y112{bottom:466.146667pt;}
.y6f{bottom:466.626667pt;}
.ya9{bottom:467.266667pt;}
.y150{bottom:475.906667pt;}
.y174{bottom:478.946667pt;}
.y19e{bottom:479.906667pt;}
.ye7{bottom:480.866667pt;}
.y6e{bottom:481.986667pt;}
.ya8{bottom:482.626667pt;}
.y1dc{bottom:491.106667pt;}
.y14f{bottom:491.266667pt;}
.y173{bottom:492.066667pt;}
.y19d{bottom:495.266667pt;}
.ye6{bottom:496.226667pt;}
.y6d{bottom:497.346667pt;}
.ya7{bottom:497.986667pt;}
.y1db{bottom:503.426667pt;}
.y14e{bottom:506.626667pt;}
.y19c{bottom:510.626667pt;}
.ye5{bottom:511.586667pt;}
.y6c{bottom:512.546667pt;}
.ya6{bottom:513.346667pt;}
.y110{bottom:515.266667pt;}
.y1da{bottom:515.746667pt;}
.y14d{bottom:519.746667pt;}
.y19b{bottom:525.986667pt;}
.y19{bottom:526.946667pt;}
.y6b{bottom:527.906667pt;}
.ya5{bottom:528.546667pt;}
.y172{bottom:529.666667pt;}
.y14c{bottom:532.706667pt;}
.y20b{bottom:533.826667pt;}
.y1d9{bottom:540.226667pt;}
.y19a{bottom:541.346667pt;}
.ye4{bottom:542.146667pt;}
.y6a{bottom:543.266667pt;}
.ya4{bottom:543.906667pt;}
.y14b{bottom:545.666667pt;}
.y204{bottom:547.586667pt;}
.y1d8{bottom:552.546667pt;}
.y199{bottom:556.546667pt;}
.ye3{bottom:557.506667pt;}
.y14a{bottom:558.466667pt;}
.y69{bottom:558.626667pt;}
.ya3{bottom:559.266667pt;}
.y1d7{bottom:564.706667pt;}
.y16e{bottom:567.106667pt;}
.ye2{bottom:570.653333pt;}
.y149{bottom:571.453333pt;}
.y198{bottom:571.933333pt;}
.y68{bottom:574.013333pt;}
.ya2{bottom:574.653333pt;}
.y1d6{bottom:577.053333pt;}
.ye1{bottom:582.973333pt;}
.y197{bottom:587.293333pt;}
.y10b{bottom:588.893333pt;}
.y67{bottom:589.373333pt;}
.ya1{bottom:590.013333pt;}
.ydc{bottom:595.133333pt;}
.y1d5{bottom:601.533333pt;}
.y148{bottom:602.653333pt;}
.y66{bottom:604.573333pt;}
.ya0{bottom:605.373333pt;}
.ye0{bottom:607.613333pt;}
.y1d4{bottom:613.853333pt;}
.y147{bottom:618.013333pt;}
.y65{bottom:619.933333pt;}
.ydf{bottom:620.093333pt;}
.y9f{bottom:620.573333pt;}
.y1d3{bottom:626.173333pt;}
.y146{bottom:631.133333pt;}
.yde{bottom:632.573333pt;}
.y196{bottom:633.373333pt;}
.y64{bottom:635.293333pt;}
.y9e{bottom:635.933333pt;}
.y1d2{bottom:638.333333pt;}
.y145{bottom:643.293333pt;}
.yd6{bottom:645.053333pt;}
.y192{bottom:645.693333pt;}
.y10a{bottom:650.173333pt;}
.y63{bottom:650.653333pt;}
.y9d{bottom:651.293333pt;}
.y16d{bottom:654.333333pt;}
.y144{bottom:655.613333pt;}
.ydb{bottom:657.373333pt;}
.y109{bottom:662.493333pt;}
.y1d1{bottom:662.973333pt;}
.y62{bottom:666.013333pt;}
.y9c{bottom:666.653333pt;}
.y143{bottom:667.933333pt;}
.yda{bottom:669.533333pt;}
.y108{bottom:674.653333pt;}
.y1d0{bottom:675.133333pt;}
.y142{bottom:680.093333pt;}
.y61{bottom:681.373333pt;}
.yd9{bottom:681.853333pt;}
.y9b{bottom:682.013333pt;}
.y107{bottom:686.973333pt;}
.y1cf{bottom:687.453333pt;}
.y141{bottom:692.413333pt;}
.yd8{bottom:694.173333pt;}
.y60{bottom:696.573333pt;}
.y9a{bottom:697.373333pt;}
.y106{bottom:699.293333pt;}
.y203{bottom:699.613333pt;}
.y1ce{bottom:699.773333pt;}
.y16b{bottom:704.093333pt;}
.y12{bottom:704.573333pt;}
.y140{bottom:704.733333pt;}
.yd2{bottom:706.333333pt;}
.y100{bottom:711.453333pt;}
.y5f{bottom:711.933333pt;}
.y99{bottom:712.573333pt;}
.y1ff{bottom:713.533333pt;}
.y13f{bottom:716.893333pt;}
.yd5{bottom:718.653333pt;}
.y105{bottom:723.773333pt;}
.y1cd{bottom:724.253333pt;}
.y191{bottom:725.213333pt;}
.y5e{bottom:727.293333pt;}
.y98{bottom:727.933333pt;}
.y13e{bottom:729.213333pt;}
.yd4{bottom:730.973333pt;}
.y104{bottom:735.933333pt;}
.y1cc{bottom:736.573333pt;}
.y190{bottom:738.333333pt;}
.y13d{bottom:741.533333pt;}
.y5d{bottom:742.653333pt;}
.ycd{bottom:743.133333pt;}
.y97{bottom:743.293333pt;}
.y103{bottom:748.253333pt;}
.y1cb{bottom:748.733333pt;}
.y13c{bottom:753.693333pt;}
.yd1{bottom:755.453333pt;}
.y5c{bottom:758.013333pt;}
.y96{bottom:758.653333pt;}
.y102{bottom:760.573333pt;}
.y1ca{bottom:761.053333pt;}
.y13b{bottom:766.013333pt;}
.yd0{bottom:767.773333pt;}
.y18f{bottom:769.053333pt;}
.y5b{bottom:773.213333pt;}
.y1c9{bottom:773.373333pt;}
.yff{bottom:773.533333pt;}
.y95{bottom:774.013333pt;}
.y13a{bottom:778.333333pt;}
.ycf{bottom:779.933333pt;}
.y18d{bottom:784.413333pt;}
.y1c8{bottom:785.533333pt;}
.y5a{bottom:788.573333pt;}
.y94{bottom:789.213333pt;}
.y139{bottom:790.493333pt;}
.yca{bottom:793.253333pt;}
.y10{bottom:797.893333pt;}
.y18c{bottom:800.453333pt;}
.y138{bottom:802.853333pt;}
.y59{bottom:803.973333pt;}
.y93{bottom:804.613333pt;}
.ycc{bottom:805.573333pt;}
.y1c7{bottom:810.213333pt;}
.y137{bottom:815.173333pt;}
.yc8{bottom:818.533333pt;}
.y58{bottom:819.333333pt;}
.y92{bottom:819.973333pt;}
.y1c6{bottom:822.373333pt;}
.yf{bottom:826.053333pt;}
.y136{bottom:827.333333pt;}
.y168{bottom:827.973333pt;}
.y57{bottom:834.693333pt;}
.y91{bottom:835.333333pt;}
.y135{bottom:839.653333pt;}
.ye{bottom:841.413333pt;}
.y1c5{bottom:847.013333pt;}
.yc7{bottom:849.573333pt;}
.y56{bottom:850.053333pt;}
.y90{bottom:850.693333pt;}
.y134{bottom:851.973333pt;}
.yd{bottom:856.133333pt;}
.y1c4{bottom:859.173333pt;}
.y133{bottom:864.133333pt;}
.yc6{bottom:864.933333pt;}
.y55{bottom:865.253333pt;}
.y8f{bottom:866.053333pt;}
.y1fe{bottom:867.813333pt;}
.y1c3{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y132{bottom:876.453333pt;}
.yc5{bottom:880.293333pt;}
.y54{bottom:880.613333pt;}
.y8e{bottom:881.253333pt;}
.y1c2{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.y131{bottom:888.773333pt;}
.ya{bottom:893.573333pt;}
.y1fd{bottom:895.333333pt;}
.yc4{bottom:895.653333pt;}
.y53{bottom:895.973333pt;}
.y8d{bottom:896.613333pt;}
.y130{bottom:900.933333pt;}
.y1fc{bottom:907.653333pt;}
.y1c1{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.yc3{bottom:911.013333pt;}
.y52{bottom:911.333333pt;}
.y8c{bottom:911.973333pt;}
.y12f{bottom:913.253333pt;}
.y1fb{bottom:919.813333pt;}
.y1c0{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y12e{bottom:925.573333pt;}
.yc2{bottom:926.373333pt;}
.y51{bottom:926.693333pt;}
.y8b{bottom:927.333333pt;}
.y1fa{bottom:932.133333pt;}
.y1bf{bottom:932.773333pt;}
.y12d{bottom:937.733333pt;}
.y7{bottom:941.413333pt;}
.yc1{bottom:941.893333pt;}
.y50{bottom:942.053333pt;}
.y8a{bottom:942.693333pt;}
.y1f9{bottom:944.453333pt;}
.y1be{bottom:945.093333pt;}
.y12c{bottom:950.053333pt;}
.y1f8{bottom:956.613333pt;}
.y4f{bottom:957.253333pt;}
.y1bd{bottom:957.413333pt;}
.y89{bottom:958.053333pt;}
.y12b{bottom:962.373333pt;}
.y6{bottom:965.893333pt;}
.y1f7{bottom:968.933333pt;}
.y1bc{bottom:969.573333pt;}
.y4e{bottom:972.613333pt;}
.y88{bottom:973.253333pt;}
.y12a{bottom:974.533333pt;}
.y1f6{bottom:981.253333pt;}
.y1bb{bottom:981.893333pt;}
.y129{bottom:987.493333pt;}
.y4d{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y1f5{bottom:993.413333pt;}
.y1ba{bottom:994.213333pt;}
.y4c{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1f4{bottom:1005.733333pt;}
.y1b9{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y87{bottom:1031.680000pt;}
.y4b{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h30{height:5.025000pt;}
.h16{height:12.160000pt;}
.h19{height:12.320000pt;}
.h24{height:12.352000pt;}
.h1f{height:12.480000pt;}
.h1b{height:13.312000pt;}
.h2e{height:13.760000pt;}
.h2d{height:13.920000pt;}
.h13{height:15.200000pt;}
.h15{height:15.360000pt;}
.h28{height:15.392000pt;}
.h7{height:23.360000pt;}
.h18{height:24.640000pt;}
.h6{height:26.381250pt;}
.h1c{height:36.800000pt;}
.h23{height:36.832000pt;}
.h26{height:38.441250pt;}
.h2a{height:42.063437pt;}
.h17{height:42.084375pt;}
.hd{height:43.031250pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h14{height:47.621250pt;}
.h2c{height:48.375000pt;}
.h27{height:48.960000pt;}
.h22{height:49.120000pt;}
.h1e{height:49.920000pt;}
.h1a{height:50.112000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h20{height:54.598989pt;}
.h12{height:55.298750pt;}
.h1d{height:61.280000pt;}
.h25{height:61.312000pt;}
.h8{height:62.812500pt;}
.h21{height:73.632000pt;}
.h29{height:76.640000pt;}
.hf{height:77.760000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h11{height:100.640000pt;}
.h2f{height:152.000000pt;}
.h2b{height:152.026667pt;}
.he{height:255.386667pt;}
.hb{height:270.306667pt;}
.ha{height:348.706667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w1c{width:31.680000pt;}
.w1d{width:31.840000pt;}
.w1e{width:31.872000pt;}
.w13{width:44.320000pt;}
.w14{width:45.792000pt;}
.w11{width:47.200000pt;}
.we{width:53.600000pt;}
.wb{width:61.952000pt;}
.w18{width:65.440000pt;}
.w17{width:65.632000pt;}
.w19{width:84.512000pt;}
.w10{width:85.152000pt;}
.w1a{width:103.360000pt;}
.w15{width:112.320000pt;}
.w22{width:128.480000pt;}
.w9{width:132.512000pt;}
.w1b{width:140.506667pt;}
.w16{width:150.586667pt;}
.wd{width:167.706667pt;}
.w21{width:176.506667pt;}
.wa{width:176.826667pt;}
.w3{width:185.946667pt;}
.w1f{width:190.906667pt;}
.w20{width:217.146667pt;}
.wc{width:258.466667pt;}
.w12{width:270.146667pt;}
.w5{width:385.026667pt;}
.wf{width:425.026667pt;}
.w23{width:467.453333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x31{left:8.320000pt;}
.xc{left:9.440000pt;}
.x21{left:10.880000pt;}
.x36{left:12.480000pt;}
.x27{left:14.080000pt;}
.x1a{left:15.040000pt;}
.x34{left:19.040000pt;}
.x2e{left:20.000000pt;}
.x32{left:22.720000pt;}
.x2b{left:25.114667pt;}
.x37{left:28.160000pt;}
.x38{left:31.360000pt;}
.x25{left:33.320000pt;}
.x35{left:34.400000pt;}
.x16{left:47.880000pt;}
.x2d{left:52.520000pt;}
.x1f{left:64.160000pt;}
.x18{left:68.826667pt;}
.x1d{left:89.800000pt;}
.xe{left:94.720000pt;}
.x48{left:103.552000pt;}
.x9{left:111.552000pt;}
.x1{left:113.471988pt;}
.x49{left:121.114667pt;}
.x2{left:123.551988pt;}
.x7{left:126.751988pt;}
.x23{left:127.712000pt;}
.x1b{left:132.351988pt;}
.x12{left:137.466655pt;}
.x11{left:139.866655pt;}
.x47{left:141.946655pt;}
.x6{left:158.106655pt;}
.x10{left:161.466655pt;}
.x1c{left:166.586667pt;}
.x13{left:190.906655pt;}
.x5{left:199.546655pt;}
.x15{left:220.826667pt;}
.x28{left:225.626667pt;}
.x2c{left:226.906667pt;}
.x4a{left:232.026667pt;}
.x39{left:254.306667pt;}
.x22{left:277.346655pt;}
.x3{left:286.466655pt;}
.xb{left:297.506667pt;}
.x45{left:305.026667pt;}
.xd{left:316.226667pt;}
.x3a{left:317.826667pt;}
.x3b{left:349.506667pt;}
.x17{left:353.346667pt;}
.x8{left:361.346655pt;}
.xf{left:377.826667pt;}
.x3c{left:381.346667pt;}
.x4{left:406.466655pt;}
.x3d{left:413.026667pt;}
.x1e{left:425.053333pt;}
.x2f{left:444.413333pt;}
.x3e{left:476.573333pt;}
.x29{left:496.413333pt;}
.x3f{left:508.413333pt;}
.x30{left:510.493333pt;}
.x46{left:522.173333pt;}
.x19{left:530.173333pt;}
.x40{left:540.093333pt;}
.x2a{left:541.373333pt;}
.x24{left:552.733333pt;}
.x41{left:571.933333pt;}
.x20{left:592.773333pt;}
.x33{left:595.653333pt;}
.x42{left:603.653333pt;}
.x43{left:635.493333pt;}
.x26{left:637.893333pt;}
.x44{left:667.333333pt;}
.x14{left:672.773333pt;}
}




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