
    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_a1da9d21294a288f16116bb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861000;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_baa84619ac4dde70a4a19935.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_2895a85816ffd48f8cf4839e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_4d96cfa0b13cbfd8e7b49253.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_313579fc6c146f915d9e221e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_fb8c3de57d022b88486f2df3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_857d82db438f23b3aa1ef548.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_879f1acc21f569fd6848ec06.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_16ee732c91f51f10a609cde0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.865000;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_a2d1bb55906fe39b35c4c642.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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_339343130b5a05aaa29cd08c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:22.005000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.780000px;}
.ls5{letter-spacing:3.168000px;}
.ls3{letter-spacing:3.402000px;}
.ls7{letter-spacing:3.660000px;}
.ls1{letter-spacing:52.224000px;}
.ls0{letter-spacing:59.184000px;}
.ls4{letter-spacing:114.444000px;}
.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;}
}
.ws1d{word-spacing:-16.500000px;}
.ws1e{word-spacing:-15.000000px;}
.ws1c{word-spacing:-9.619500px;}
.ws0{word-spacing:-8.745000px;}
.ws1{word-spacing:-7.870500px;}
.ws2{word-spacing:-6.996000px;}
.ws3b{word-spacing:-5.082000px;}
.ws70{word-spacing:-4.422000px;}
.ws43{word-spacing:-4.158000px;}
.ws35{word-spacing:-3.960000px;}
.ws65{word-spacing:-3.762000px;}
.ws55{word-spacing:-3.564000px;}
.ws5f{word-spacing:-3.432000px;}
.ws5{word-spacing:-3.300000px;}
.ws46{word-spacing:-3.168000px;}
.ws3c{word-spacing:-2.904000px;}
.ws72{word-spacing:-2.838000px;}
.ws36{word-spacing:-2.706000px;}
.ws8{word-spacing:-2.592000px;}
.ws5e{word-spacing:-2.508000px;}
.ws1a{word-spacing:-2.484000px;}
.ws54{word-spacing:-2.442000px;}
.ws20{word-spacing:-1.980000px;}
.ws42{word-spacing:-1.914000px;}
.ws68{word-spacing:-1.848000px;}
.ws2e{word-spacing:-1.650000px;}
.ws33{word-spacing:-1.584000px;}
.wsc{word-spacing:-1.458000px;}
.ws5c{word-spacing:-1.254000px;}
.ws19{word-spacing:-1.188000px;}
.ws62{word-spacing:-1.056000px;}
.ws61{word-spacing:-0.990000px;}
.ws2c{word-spacing:-0.924000px;}
.wsa{word-spacing:-0.918000px;}
.ws50{word-spacing:-0.528000px;}
.wse{word-spacing:-0.270000px;}
.ws4f{word-spacing:-0.066000px;}
.ws1b{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws34{word-spacing:0.198000px;}
.ws7{word-spacing:0.216000px;}
.ws2a{word-spacing:0.330000px;}
.ws2b{word-spacing:0.396000px;}
.wsb{word-spacing:0.594000px;}
.ws5d{word-spacing:0.792000px;}
.ws13{word-spacing:0.918000px;}
.ws12{word-spacing:0.972000px;}
.ws6f{word-spacing:1.122000px;}
.ws60{word-spacing:1.188000px;}
.ws6b{word-spacing:1.254000px;}
.ws63{word-spacing:1.452000px;}
.wsf{word-spacing:1.620000px;}
.ws79{word-spacing:1.650000px;}
.ws30{word-spacing:1.782000px;}
.ws25{word-spacing:1.848000px;}
.ws4c{word-spacing:1.980000px;}
.ws3a{word-spacing:2.046000px;}
.ws57{word-spacing:2.112000px;}
.ws31{word-spacing:2.178000px;}
.ws51{word-spacing:2.244000px;}
.ws58{word-spacing:2.310000px;}
.ws28{word-spacing:2.376000px;}
.ws76{word-spacing:2.442000px;}
.ws14{word-spacing:2.484000px;}
.ws56{word-spacing:2.508000px;}
.ws3d{word-spacing:2.574000px;}
.ws48{word-spacing:2.640000px;}
.ws1f{word-spacing:2.706000px;}
.ws29{word-spacing:2.772000px;}
.ws44{word-spacing:2.904000px;}
.ws3e{word-spacing:3.168000px;}
.wsd{word-spacing:3.186000px;}
.ws77{word-spacing:3.234000px;}
.ws6{word-spacing:3.240000px;}
.ws7a{word-spacing:3.366000px;}
.ws2f{word-spacing:3.630000px;}
.ws39{word-spacing:3.894000px;}
.ws38{word-spacing:4.158000px;}
.ws37{word-spacing:4.224000px;}
.ws73{word-spacing:4.290000px;}
.ws32{word-spacing:4.488000px;}
.ws78{word-spacing:4.554000px;}
.ws11{word-spacing:4.644000px;}
.ws15{word-spacing:4.806000px;}
.ws26{word-spacing:4.818000px;}
.ws6e{word-spacing:5.016000px;}
.ws9{word-spacing:5.184000px;}
.ws27{word-spacing:5.214000px;}
.ws45{word-spacing:5.676000px;}
.ws66{word-spacing:5.742000px;}
.ws18{word-spacing:5.940000px;}
.ws4b{word-spacing:6.336000px;}
.ws64{word-spacing:6.732000px;}
.ws75{word-spacing:7.326000px;}
.ws4d{word-spacing:7.392000px;}
.ws47{word-spacing:7.656000px;}
.ws4e{word-spacing:7.722000px;}
.ws16{word-spacing:7.830000px;}
.ws67{word-spacing:7.920000px;}
.ws24{word-spacing:8.184000px;}
.ws23{word-spacing:8.250000px;}
.ws17{word-spacing:8.316000px;}
.ws5a{word-spacing:8.448000px;}
.ws22{word-spacing:8.646000px;}
.ws52{word-spacing:8.910000px;}
.ws41{word-spacing:9.042000px;}
.ws40{word-spacing:9.108000px;}
.ws71{word-spacing:9.306000px;}
.ws53{word-spacing:9.438000px;}
.ws3f{word-spacing:9.834000px;}
.ws6a{word-spacing:9.966000px;}
.ws10{word-spacing:10.080000px;}
.ws2d{word-spacing:10.230000px;}
.ws5b{word-spacing:10.560000px;}
.ws59{word-spacing:10.626000px;}
.ws6c{word-spacing:12.342000px;}
.ws49{word-spacing:12.474000px;}
.ws21{word-spacing:13.068000px;}
.ws69{word-spacing:13.266000px;}
.ws6d{word-spacing:13.464000px;}
.ws74{word-spacing:15.642000px;}
.ws4{word-spacing:16.146000px;}
.ws4a{word-spacing:28.380000px;}
._9{margin-left:-2211.048000px;}
._1d{margin-left:-11.394000px;}
._14{margin-left:-9.444000px;}
._12{margin-left:-8.016000px;}
._13{margin-left:-6.402000px;}
._d{margin-left:-5.214000px;}
._2{margin-left:-3.600000px;}
._3{margin-left:-2.394000px;}
._5{margin-left:-1.026000px;}
._6{width:1.068000px;}
._1{width:2.220000px;}
._4{width:3.294000px;}
._7{width:4.698000px;}
._a{width:6.102000px;}
._b{width:7.392000px;}
._c{width:8.580000px;}
._f{width:9.900000px;}
._10{width:11.088000px;}
._15{width:12.540000px;}
._e{width:13.728000px;}
._16{width:15.312000px;}
._21{width:16.614000px;}
._18{width:17.622000px;}
._17{width:18.810000px;}
._19{width:20.130000px;}
._1a{width:21.582000px;}
._1c{width:29.436000px;}
._1b{width:31.164000px;}
._23{width:48.660000px;}
._1e{width:54.300000px;}
._20{width:66.360000px;}
._8{width:73.056000px;}
._1f{width:74.394000px;}
._22{width:100.380000px;}
._24{width:149.220000px;}
._11{width:619.248000px;}
._0{width:1462.440000px;}
.fc1{color:rgb(249,249,250);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.984000px;}
.fs5{font-size:31.482000px;}
.fs3{font-size:34.980000px;}
.fsa{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.944050px;}
.y29{bottom:74.409450px;}
.y16e{bottom:77.921850px;}
.yd8{bottom:77.922150px;}
.y85{bottom:78.398400px;}
.y199{bottom:78.540600px;}
.y28{bottom:88.809450px;}
.y123{bottom:90.906750px;}
.y16d{bottom:95.923350px;}
.yd7{bottom:95.923650px;}
.yae{bottom:96.384750px;}
.y84{bottom:96.399900px;}
.y198{bottom:96.542100px;}
.y1e8{bottom:96.825900px;}
.y13d{bottom:101.968650px;}
.yde{bottom:101.986200px;}
.y27{bottom:107.205450px;}
.y122{bottom:108.908250px;}
.y16c{bottom:113.924850px;}
.yd6{bottom:113.925150px;}
.y58{bottom:114.072750px;}
.yad{bottom:114.386250px;}
.y83{bottom:114.401400px;}
.y197{bottom:114.543600px;}
.y1e7{bottom:114.825900px;}
.y26{bottom:117.609450px;}
.y13c{bottom:119.970150px;}
.ydd{bottom:119.987700px;}
.y121{bottom:126.909750px;}
.y16b{bottom:131.926350px;}
.yd5{bottom:131.926650px;}
.y25{bottom:132.009450px;}
.y57{bottom:132.074250px;}
.yac{bottom:132.387750px;}
.y82{bottom:132.402900px;}
.y196{bottom:132.545100px;}
.y1e6{bottom:132.825900px;}
.y13b{bottom:137.971650px;}
.ydc{bottom:137.989200px;}
.y120{bottom:144.911250px;}
.y16a{bottom:149.927850px;}
.yd4{bottom:149.928150px;}
.y1bd{bottom:149.955600px;}
.y56{bottom:150.075750px;}
.yab{bottom:150.389250px;}
.y81{bottom:150.404400px;}
.y24{bottom:150.405450px;}
.y195{bottom:150.546600px;}
.y1e5{bottom:150.825900px;}
.y13a{bottom:155.973150px;}
.ydb{bottom:155.990700px;}
.y11f{bottom:162.912750px;}
.y169{bottom:167.929350px;}
.yd3{bottom:167.929650px;}
.y1bc{bottom:167.957100px;}
.y55{bottom:168.077250px;}
.yaa{bottom:168.390750px;}
.y80{bottom:168.405900px;}
.y1e4{bottom:168.825900px;}
.y139{bottom:173.974650px;}
.y11e{bottom:180.914250px;}
.y168{bottom:185.930850px;}
.yd2{bottom:185.931150px;}
.y1bb{bottom:185.958600px;}
.y54{bottom:186.078750px;}
.ya9{bottom:186.392250px;}
.y194{bottom:186.401100px;}
.y7f{bottom:186.407400px;}
.y1e3{bottom:186.825900px;}
.y138{bottom:191.976150px;}
.y23{bottom:197.746800px;}
.y11d{bottom:198.915750px;}
.y167{bottom:203.932350px;}
.yd1{bottom:203.932650px;}
.y1ba{bottom:203.960100px;}
.yda{bottom:203.992650px;}
.y53{bottom:204.080250px;}
.ya8{bottom:204.393750px;}
.y7e{bottom:204.408900px;}
.y1e2{bottom:204.825900px;}
.y137{bottom:209.977650px;}
.y22{bottom:212.745300px;}
.y11c{bottom:216.917250px;}
.y166{bottom:221.933850px;}
.yd0{bottom:221.934150px;}
.y1b9{bottom:221.961600px;}
.yd9{bottom:221.992650px;}
.y52{bottom:222.081750px;}
.ya7{bottom:222.395250px;}
.y7d{bottom:222.410400px;}
.y1e1{bottom:222.825900px;}
.y21{bottom:227.001300px;}
.y136{bottom:227.979150px;}
.y11b{bottom:234.918750px;}
.y165{bottom:239.935350px;}
.ycf{bottom:239.935650px;}
.y1b8{bottom:239.963100px;}
.y51{bottom:240.083250px;}
.y193{bottom:240.125100px;}
.ya6{bottom:240.396750px;}
.y7c{bottom:240.411900px;}
.y1e0{bottom:240.825900px;}
.y20{bottom:241.257300px;}
.y135{bottom:245.980650px;}
.y11a{bottom:252.920250px;}
.y1f{bottom:255.513300px;}
.y164{bottom:257.936850px;}
.yce{bottom:257.937150px;}
.y1b7{bottom:257.964600px;}
.y50{bottom:258.054750px;}
.y192{bottom:258.126600px;}
.ya5{bottom:258.398250px;}
.y7b{bottom:258.413400px;}
.y1df{bottom:258.825900px;}
.y134{bottom:263.982150px;}
.y1e{bottom:269.769300px;}
.y119{bottom:270.921750px;}
.y163{bottom:275.938350px;}
.ycd{bottom:275.938650px;}
.y1b6{bottom:275.966100px;}
.y4f{bottom:276.056250px;}
.y191{bottom:276.128100px;}
.ya4{bottom:276.399750px;}
.y7a{bottom:276.414900px;}
.y1de{bottom:276.825900px;}
.y133{bottom:281.983650px;}
.y1d{bottom:284.025300px;}
.y118{bottom:288.923250px;}
.y162{bottom:293.939850px;}
.ycc{bottom:293.940150px;}
.y1b5{bottom:293.967600px;}
.y4e{bottom:294.057750px;}
.y190{bottom:294.129600px;}
.ya3{bottom:294.401250px;}
.y79{bottom:294.416400px;}
.y1dd{bottom:294.825900px;}
.y1c{bottom:298.281300px;}
.y132{bottom:299.985150px;}
.yef{bottom:305.213850px;}
.y117{bottom:306.924750px;}
.y161{bottom:311.941350px;}
.ycb{bottom:311.941650px;}
.y1b4{bottom:311.969100px;}
.y4d{bottom:312.059250px;}
.y18f{bottom:312.131100px;}
.y78{bottom:312.370650px;}
.ya2{bottom:312.402750px;}
.y1b{bottom:312.537300px;}
.y1dc{bottom:312.825900px;}
.y131{bottom:317.986650px;}
.y107{bottom:322.134000px;}
.yee{bottom:323.215350px;}
.y116{bottom:324.926250px;}
.y1a{bottom:326.793300px;}
.y160{bottom:329.942850px;}
.yca{bottom:329.943150px;}
.y1b3{bottom:329.970600px;}
.y4c{bottom:330.060750px;}
.y18e{bottom:330.132600px;}
.y77{bottom:330.372150px;}
.ya1{bottom:330.404250px;}
.y1db{bottom:330.825900px;}
.y130{bottom:335.988150px;}
.y106{bottom:340.135500px;}
.y19{bottom:341.049300px;}
.yed{bottom:341.216850px;}
.y115{bottom:342.927750px;}
.yfc{bottom:343.011450px;}
.y15f{bottom:347.944350px;}
.yc9{bottom:347.944650px;}
.y1b2{bottom:347.972100px;}
.y4b{bottom:348.062250px;}
.y18d{bottom:348.117600px;}
.y76{bottom:348.373650px;}
.ya0{bottom:348.405750px;}
.y1da{bottom:348.825900px;}
.y12f{bottom:353.989650px;}
.y18{bottom:355.305300px;}
.y105{bottom:358.137000px;}
.yec{bottom:359.218350px;}
.y114{bottom:360.929250px;}
.yfb{bottom:361.012950px;}
.y15e{bottom:365.945850px;}
.yc8{bottom:365.946150px;}
.y1b1{bottom:365.973600px;}
.y4a{bottom:366.063750px;}
.y18c{bottom:366.119100px;}
.y75{bottom:366.375150px;}
.y9f{bottom:366.407250px;}
.y1d9{bottom:366.825900px;}
.y17{bottom:369.561300px;}
.y12e{bottom:371.991150px;}
.y104{bottom:376.138500px;}
.yeb{bottom:377.219850px;}
.y113{bottom:378.930750px;}
.yfa{bottom:379.014450px;}
.y16{bottom:383.817300px;}
.y15d{bottom:383.947350px;}
.yc7{bottom:383.947650px;}
.y1b0{bottom:383.975100px;}
.y49{bottom:384.065250px;}
.y18b{bottom:384.120600px;}
.y74{bottom:384.376650px;}
.y9e{bottom:384.408750px;}
.y1d8{bottom:384.825900px;}
.y103{bottom:394.140000px;}
.yea{bottom:395.221350px;}
.y112{bottom:396.927750px;}
.yf9{bottom:397.015950px;}
.y15c{bottom:401.948850px;}
.yc6{bottom:401.949150px;}
.y1af{bottom:401.976600px;}
.y48{bottom:402.066750px;}
.y18a{bottom:402.122100px;}
.y73{bottom:402.378150px;}
.y9d{bottom:402.410250px;}
.y1d7{bottom:402.825900px;}
.y102{bottom:412.141500px;}
.y15{bottom:413.217300px;}
.ye9{bottom:413.222850px;}
.y111{bottom:414.929250px;}
.yf8{bottom:415.008450px;}
.y15b{bottom:419.950350px;}
.yc5{bottom:419.950650px;}
.y1ae{bottom:419.978100px;}
.y12d{bottom:419.993100px;}
.y47{bottom:420.068250px;}
.y189{bottom:420.123600px;}
.y72{bottom:420.379650px;}
.y9c{bottom:420.411750px;}
.y1d6{bottom:420.825900px;}
.y101{bottom:430.143000px;}
.ye8{bottom:431.224350px;}
.y110{bottom:432.930750px;}
.yf7{bottom:433.009950px;}
.y14{bottom:434.817300px;}
.y15a{bottom:437.951850px;}
.yc4{bottom:437.952150px;}
.y1ad{bottom:437.979600px;}
.y12c{bottom:437.993100px;}
.y46{bottom:438.069750px;}
.y188{bottom:438.125100px;}
.y71{bottom:438.381150px;}
.y9b{bottom:438.413250px;}
.y1d5{bottom:438.825900px;}
.y100{bottom:448.144500px;}
.ye7{bottom:449.225850px;}
.y10f{bottom:450.926250px;}
.yf6{bottom:451.011450px;}
.y159{bottom:455.953350px;}
.yc3{bottom:455.953650px;}
.y1ac{bottom:455.981100px;}
.y45{bottom:456.071250px;}
.y187{bottom:456.126600px;}
.y70{bottom:456.382650px;}
.y9a{bottom:456.414750px;}
.y1d4{bottom:456.825900px;}
.ye6{bottom:467.227350px;}
.y10e{bottom:468.927750px;}
.yf5{bottom:469.012950px;}
.y158{bottom:473.954850px;}
.yc2{bottom:473.955150px;}
.y1ab{bottom:473.982600px;}
.y44{bottom:474.072750px;}
.y186{bottom:474.128100px;}
.y6f{bottom:474.384150px;}
.y99{bottom:474.416250px;}
.y1d3{bottom:474.825900px;}
.yff{bottom:483.999000px;}
.ye5{bottom:485.228850px;}
.y13{bottom:486.369300px;}
.y10d{bottom:486.929250px;}
.yf4{bottom:487.014450px;}
.y157{bottom:491.956350px;}
.yc1{bottom:491.956650px;}
.y1aa{bottom:491.984100px;}
.y43{bottom:492.074250px;}
.y185{bottom:492.129600px;}
.y6e{bottom:492.385650px;}
.y98{bottom:492.393150px;}
.y1d2{bottom:492.825900px;}
.y12{bottom:501.367800px;}
.ye4{bottom:503.230350px;}
.y10c{bottom:504.930750px;}
.yf3{bottom:505.015950px;}
.y156{bottom:509.957850px;}
.yc0{bottom:509.958150px;}
.y1a9{bottom:509.985600px;}
.y42{bottom:510.075750px;}
.y184{bottom:510.131100px;}
.y6d{bottom:510.387150px;}
.y1d1{bottom:510.825900px;}
.y11{bottom:515.772300px;}
.ye3{bottom:521.231850px;}
.y10b{bottom:522.932250px;}
.yf2{bottom:523.017450px;}
.y155{bottom:527.959350px;}
.ybf{bottom:527.959650px;}
.y1a8{bottom:527.987100px;}
.y41{bottom:528.077250px;}
.y183{bottom:528.132600px;}
.y97{bottom:528.247650px;}
.y6c{bottom:528.388650px;}
.y1d0{bottom:528.825900px;}
.y10{bottom:530.176800px;}
.ye2{bottom:539.233350px;}
.yf{bottom:544.581300px;}
.y154{bottom:545.960850px;}
.ybe{bottom:545.961150px;}
.y1a7{bottom:545.988600px;}
.y40{bottom:546.078750px;}
.y182{bottom:546.129600px;}
.y6b{bottom:546.390150px;}
.y1cf{bottom:546.825900px;}
.ye1{bottom:557.234850px;}
.ye{bottom:558.985800px;}
.y153{bottom:563.962350px;}
.ybd{bottom:563.962650px;}
.y1a6{bottom:563.990100px;}
.y3f{bottom:564.080250px;}
.y181{bottom:564.131100px;}
.y6a{bottom:564.391650px;}
.y1ce{bottom:564.825900px;}
.yfe{bottom:567.717450px;}
.y10a{bottom:570.934200px;}
.yf1{bottom:571.019400px;}
.yd{bottom:573.390300px;}
.y152{bottom:581.963850px;}
.ybc{bottom:581.964150px;}
.y96{bottom:581.971650px;}
.y1a5{bottom:581.991600px;}
.y3e{bottom:582.081750px;}
.y180{bottom:582.132600px;}
.y69{bottom:582.393150px;}
.y1cd{bottom:582.825900px;}
.yfd{bottom:585.717450px;}
.yc{bottom:587.794800px;}
.y109{bottom:588.934200px;}
.yf0{bottom:589.019400px;}
.y151{bottom:599.965350px;}
.ybb{bottom:599.965650px;}
.y95{bottom:599.973150px;}
.y1a4{bottom:599.991600px;}
.y3d{bottom:600.083250px;}
.y17f{bottom:600.128100px;}
.y68{bottom:600.394650px;}
.y1cc{bottom:600.825900px;}
.yb{bottom:602.199300px;}
.ye0{bottom:605.236800px;}
.ya{bottom:616.603800px;}
.y150{bottom:617.966850px;}
.yba{bottom:617.967150px;}
.y1a3{bottom:617.967600px;}
.y94{bottom:617.974650px;}
.y3c{bottom:618.078000px;}
.y17e{bottom:618.129600px;}
.y67{bottom:618.396150px;}
.y1cb{bottom:618.825900px;}
.ydf{bottom:623.236800px;}
.y9{bottom:631.008300px;}
.y14f{bottom:635.968350px;}
.yb9{bottom:635.968650px;}
.y1a2{bottom:635.969100px;}
.y93{bottom:635.976150px;}
.y3b{bottom:636.079500px;}
.y17d{bottom:636.131100px;}
.y66{bottom:636.397650px;}
.y1ca{bottom:636.825900px;}
.y8{bottom:645.412800px;}
.y14e{bottom:653.969850px;}
.yb8{bottom:653.970150px;}
.y1a1{bottom:653.970600px;}
.y92{bottom:653.977650px;}
.y3a{bottom:654.081000px;}
.y17c{bottom:654.132600px;}
.y65{bottom:654.399150px;}
.y1c9{bottom:654.825900px;}
.y7{bottom:659.812800px;}
.y14d{bottom:671.971350px;}
.yb7{bottom:671.971650px;}
.y1a0{bottom:671.972100px;}
.y91{bottom:671.979150px;}
.y39{bottom:672.082500px;}
.y17b{bottom:672.123600px;}
.y64{bottom:672.400650px;}
.y1c8{bottom:672.825900px;}
.y6{bottom:674.217300px;}
.y14c{bottom:689.972850px;}
.yb6{bottom:689.973150px;}
.y19f{bottom:689.973600px;}
.y90{bottom:689.980650px;}
.y38{bottom:690.084000px;}
.y17a{bottom:690.125100px;}
.y63{bottom:690.402150px;}
.y5{bottom:703.617300px;}
.y14b{bottom:707.974350px;}
.yb5{bottom:707.974650px;}
.y19e{bottom:707.975100px;}
.y8f{bottom:707.982150px;}
.y37{bottom:708.085500px;}
.y179{bottom:708.126600px;}
.y62{bottom:708.403650px;}
.y1c7{bottom:708.669900px;}
.y1f5{bottom:709.032300px;}
.y14a{bottom:725.975850px;}
.yb4{bottom:725.976150px;}
.y19d{bottom:725.976600px;}
.y8e{bottom:725.983650px;}
.y36{bottom:726.087000px;}
.y178{bottom:726.128100px;}
.y61{bottom:726.405150px;}
.y1f4{bottom:727.032300px;}
.y149{bottom:743.977350px;}
.yb3{bottom:743.977650px;}
.y19c{bottom:743.978100px;}
.y8d{bottom:743.985150px;}
.y35{bottom:744.088500px;}
.y177{bottom:744.129600px;}
.y60{bottom:744.406650px;}
.y1f3{bottom:745.032300px;}
.y4{bottom:746.217300px;}
.y148{bottom:761.978850px;}
.yb2{bottom:761.979150px;}
.y19b{bottom:761.979600px;}
.y8c{bottom:761.986650px;}
.y176{bottom:762.131100px;}
.y1c6{bottom:762.393900px;}
.y5f{bottom:762.408150px;}
.y1f2{bottom:763.032300px;}
.y3{bottom:779.209800px;}
.y34{bottom:779.943000px;}
.y147{bottom:779.980350px;}
.yb1{bottom:779.980650px;}
.y19a{bottom:779.981100px;}
.y8b{bottom:779.988150px;}
.y175{bottom:780.132600px;}
.y1c5{bottom:780.395400px;}
.y5e{bottom:780.409650px;}
.y1f1{bottom:781.032300px;}
.y146{bottom:797.981850px;}
.yb0{bottom:797.982150px;}
.y12b{bottom:797.982600px;}
.y8a{bottom:797.989650px;}
.y174{bottom:798.130350px;}
.y1c4{bottom:798.396900px;}
.y5d{bottom:798.411150px;}
.y1f0{bottom:799.032300px;}
.y2{bottom:802.317300px;}
.y145{bottom:815.983350px;}
.yaf{bottom:815.983650px;}
.y12a{bottom:815.984100px;}
.y89{bottom:815.991150px;}
.y173{bottom:816.131850px;}
.y1c3{bottom:816.398400px;}
.y1ef{bottom:817.032300px;}
.y144{bottom:833.984850px;}
.y88{bottom:833.985150px;}
.y129{bottom:833.985600px;}
.y172{bottom:834.133350px;}
.y5c{bottom:834.265650px;}
.y1c2{bottom:834.399900px;}
.y1ee{bottom:835.032300px;}
.y33{bottom:848.664000px;}
.y143{bottom:851.986350px;}
.y87{bottom:851.986650px;}
.y128{bottom:851.987100px;}
.y171{bottom:852.134850px;}
.y1c1{bottom:852.401400px;}
.y1ed{bottom:853.032300px;}
.y32{bottom:864.864000px;}
.y2c{bottom:867.841500px;}
.y142{bottom:869.987850px;}
.y86{bottom:869.988150px;}
.y127{bottom:869.988600px;}
.y170{bottom:870.136350px;}
.y1c0{bottom:870.402900px;}
.y1ec{bottom:871.032300px;}
.y141{bottom:887.989350px;}
.y5b{bottom:887.989650px;}
.y126{bottom:887.990100px;}
.y16f{bottom:888.137850px;}
.y1bf{bottom:888.404400px;}
.y1eb{bottom:889.032300px;}
.y31{bottom:896.062500px;}
.y2b{bottom:897.841500px;}
.y140{bottom:905.990850px;}
.y5a{bottom:905.991150px;}
.y125{bottom:905.991600px;}
.y1ea{bottom:907.032300px;}
.y30{bottom:911.061000px;}
.y2a{bottom:912.241500px;}
.y13f{bottom:923.992350px;}
.y59{bottom:923.992650px;}
.y124{bottom:923.993100px;}
.y1be{bottom:924.258900px;}
.y1e9{bottom:925.032300px;}
.y2f{bottom:926.059500px;}
.y2d{bottom:945.503700px;}
.y13e{bottom:963.070500px;}
.y2e{bottom:963.070800px;}
.y108{bottom:963.071250px;}
.hd{height:26.133188px;}
.hb{height:26.789438px;}
.h5{height:36.852539px;}
.h2{height:38.724000px;}
.hc{height:42.117188px;}
.he{height:43.860000px;}
.hf{height:44.256000px;}
.h10{height:45.181641px;}
.h6{height:47.381836px;}
.h9{height:47.513672px;}
.h7{height:47.531672px;}
.h8{height:48.120117px;}
.h4{height:52.646484px;}
.h19{height:52.792969px;}
.h21{height:53.466797px;}
.h11{height:57.911133px;}
.h20{height:57.917133px;}
.h1c{height:57.929133px;}
.h1b{height:57.935133px;}
.h13{height:57.938133px;}
.h16{height:57.941133px;}
.h1e{height:57.953133px;}
.h1f{height:57.977133px;}
.h17{height:58.009533px;}
.h14{height:58.031133px;}
.h18{height:58.072266px;}
.h15{height:58.100133px;}
.h12{height:58.813477px;}
.h1d{height:58.828477px;}
.h1a{height:58.849477px;}
.ha{height:63.175781px;}
.h3{height:68.440430px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:91.351350px;}
.xb{left:92.929800px;}
.x3{left:94.606350px;}
.x2{left:106.333350px;}
.x8{left:128.613000px;}
.xe{left:137.537850px;}
.x6{left:142.078950px;}
.xa{left:172.336350px;}
.xc{left:200.239800px;}
.xd{left:215.662500px;}
.x5{left:257.374200px;}
.x7{left:284.338950px;}
.x4{left:554.632500px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:19.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.693333pt;}
.ls5{letter-spacing:2.816000pt;}
.ls3{letter-spacing:3.024000pt;}
.ls7{letter-spacing:3.253333pt;}
.ls1{letter-spacing:46.421333pt;}
.ls0{letter-spacing:52.608000pt;}
.ls4{letter-spacing:101.728000pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws1e{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-8.550667pt;}
.ws0{word-spacing:-7.773333pt;}
.ws1{word-spacing:-6.996000pt;}
.ws2{word-spacing:-6.218667pt;}
.ws3b{word-spacing:-4.517333pt;}
.ws70{word-spacing:-3.930667pt;}
.ws43{word-spacing:-3.696000pt;}
.ws35{word-spacing:-3.520000pt;}
.ws65{word-spacing:-3.344000pt;}
.ws55{word-spacing:-3.168000pt;}
.ws5f{word-spacing:-3.050667pt;}
.ws5{word-spacing:-2.933333pt;}
.ws46{word-spacing:-2.816000pt;}
.ws3c{word-spacing:-2.581333pt;}
.ws72{word-spacing:-2.522667pt;}
.ws36{word-spacing:-2.405333pt;}
.ws8{word-spacing:-2.304000pt;}
.ws5e{word-spacing:-2.229333pt;}
.ws1a{word-spacing:-2.208000pt;}
.ws54{word-spacing:-2.170667pt;}
.ws20{word-spacing:-1.760000pt;}
.ws42{word-spacing:-1.701333pt;}
.ws68{word-spacing:-1.642667pt;}
.ws2e{word-spacing:-1.466667pt;}
.ws33{word-spacing:-1.408000pt;}
.wsc{word-spacing:-1.296000pt;}
.ws5c{word-spacing:-1.114667pt;}
.ws19{word-spacing:-1.056000pt;}
.ws62{word-spacing:-0.938667pt;}
.ws61{word-spacing:-0.880000pt;}
.ws2c{word-spacing:-0.821333pt;}
.wsa{word-spacing:-0.816000pt;}
.ws50{word-spacing:-0.469333pt;}
.wse{word-spacing:-0.240000pt;}
.ws4f{word-spacing:-0.058667pt;}
.ws1b{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws34{word-spacing:0.176000pt;}
.ws7{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.293333pt;}
.ws2b{word-spacing:0.352000pt;}
.wsb{word-spacing:0.528000pt;}
.ws5d{word-spacing:0.704000pt;}
.ws13{word-spacing:0.816000pt;}
.ws12{word-spacing:0.864000pt;}
.ws6f{word-spacing:0.997333pt;}
.ws60{word-spacing:1.056000pt;}
.ws6b{word-spacing:1.114667pt;}
.ws63{word-spacing:1.290667pt;}
.wsf{word-spacing:1.440000pt;}
.ws79{word-spacing:1.466667pt;}
.ws30{word-spacing:1.584000pt;}
.ws25{word-spacing:1.642667pt;}
.ws4c{word-spacing:1.760000pt;}
.ws3a{word-spacing:1.818667pt;}
.ws57{word-spacing:1.877333pt;}
.ws31{word-spacing:1.936000pt;}
.ws51{word-spacing:1.994667pt;}
.ws58{word-spacing:2.053333pt;}
.ws28{word-spacing:2.112000pt;}
.ws76{word-spacing:2.170667pt;}
.ws14{word-spacing:2.208000pt;}
.ws56{word-spacing:2.229333pt;}
.ws3d{word-spacing:2.288000pt;}
.ws48{word-spacing:2.346667pt;}
.ws1f{word-spacing:2.405333pt;}
.ws29{word-spacing:2.464000pt;}
.ws44{word-spacing:2.581333pt;}
.ws3e{word-spacing:2.816000pt;}
.wsd{word-spacing:2.832000pt;}
.ws77{word-spacing:2.874667pt;}
.ws6{word-spacing:2.880000pt;}
.ws7a{word-spacing:2.992000pt;}
.ws2f{word-spacing:3.226667pt;}
.ws39{word-spacing:3.461333pt;}
.ws38{word-spacing:3.696000pt;}
.ws37{word-spacing:3.754667pt;}
.ws73{word-spacing:3.813333pt;}
.ws32{word-spacing:3.989333pt;}
.ws78{word-spacing:4.048000pt;}
.ws11{word-spacing:4.128000pt;}
.ws15{word-spacing:4.272000pt;}
.ws26{word-spacing:4.282667pt;}
.ws6e{word-spacing:4.458667pt;}
.ws9{word-spacing:4.608000pt;}
.ws27{word-spacing:4.634667pt;}
.ws45{word-spacing:5.045333pt;}
.ws66{word-spacing:5.104000pt;}
.ws18{word-spacing:5.280000pt;}
.ws4b{word-spacing:5.632000pt;}
.ws64{word-spacing:5.984000pt;}
.ws75{word-spacing:6.512000pt;}
.ws4d{word-spacing:6.570667pt;}
.ws47{word-spacing:6.805333pt;}
.ws4e{word-spacing:6.864000pt;}
.ws16{word-spacing:6.960000pt;}
.ws67{word-spacing:7.040000pt;}
.ws24{word-spacing:7.274667pt;}
.ws23{word-spacing:7.333333pt;}
.ws17{word-spacing:7.392000pt;}
.ws5a{word-spacing:7.509333pt;}
.ws22{word-spacing:7.685333pt;}
.ws52{word-spacing:7.920000pt;}
.ws41{word-spacing:8.037333pt;}
.ws40{word-spacing:8.096000pt;}
.ws71{word-spacing:8.272000pt;}
.ws53{word-spacing:8.389333pt;}
.ws3f{word-spacing:8.741333pt;}
.ws6a{word-spacing:8.858667pt;}
.ws10{word-spacing:8.960000pt;}
.ws2d{word-spacing:9.093333pt;}
.ws5b{word-spacing:9.386667pt;}
.ws59{word-spacing:9.445333pt;}
.ws6c{word-spacing:10.970667pt;}
.ws49{word-spacing:11.088000pt;}
.ws21{word-spacing:11.616000pt;}
.ws69{word-spacing:11.792000pt;}
.ws6d{word-spacing:11.968000pt;}
.ws74{word-spacing:13.904000pt;}
.ws4{word-spacing:14.352000pt;}
.ws4a{word-spacing:25.226667pt;}
._9{margin-left:-1965.376000pt;}
._1d{margin-left:-10.128000pt;}
._14{margin-left:-8.394667pt;}
._12{margin-left:-7.125333pt;}
._13{margin-left:-5.690667pt;}
._d{margin-left:-4.634667pt;}
._2{margin-left:-3.200000pt;}
._3{margin-left:-2.128000pt;}
._5{margin-left:-0.912000pt;}
._6{width:0.949333pt;}
._1{width:1.973333pt;}
._4{width:2.928000pt;}
._7{width:4.176000pt;}
._a{width:5.424000pt;}
._b{width:6.570667pt;}
._c{width:7.626667pt;}
._f{width:8.800000pt;}
._10{width:9.856000pt;}
._15{width:11.146667pt;}
._e{width:12.202667pt;}
._16{width:13.610667pt;}
._21{width:14.768000pt;}
._18{width:15.664000pt;}
._17{width:16.720000pt;}
._19{width:17.893333pt;}
._1a{width:19.184000pt;}
._1c{width:26.165333pt;}
._1b{width:27.701333pt;}
._23{width:43.253333pt;}
._1e{width:48.266667pt;}
._20{width:58.986667pt;}
._8{width:64.938667pt;}
._1f{width:66.128000pt;}
._22{width:89.226667pt;}
._24{width:132.640000pt;}
._11{width:550.442667pt;}
._0{width:1299.946667pt;}
.fs7{font-size:24.874667pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:31.093333pt;}
.fsa{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.950267pt;}
.y29{bottom:66.141733pt;}
.y16e{bottom:69.263867pt;}
.yd8{bottom:69.264133pt;}
.y85{bottom:69.687467pt;}
.y199{bottom:69.813867pt;}
.y28{bottom:78.941733pt;}
.y123{bottom:80.806000pt;}
.y16d{bottom:85.265200pt;}
.yd7{bottom:85.265467pt;}
.yae{bottom:85.675333pt;}
.y84{bottom:85.688800pt;}
.y198{bottom:85.815200pt;}
.y1e8{bottom:86.067467pt;}
.y13d{bottom:90.638800pt;}
.yde{bottom:90.654400pt;}
.y27{bottom:95.293733pt;}
.y122{bottom:96.807333pt;}
.y16c{bottom:101.266533pt;}
.yd6{bottom:101.266800pt;}
.y58{bottom:101.398000pt;}
.yad{bottom:101.676667pt;}
.y83{bottom:101.690133pt;}
.y197{bottom:101.816533pt;}
.y1e7{bottom:102.067467pt;}
.y26{bottom:104.541733pt;}
.y13c{bottom:106.640133pt;}
.ydd{bottom:106.655733pt;}
.y121{bottom:112.808667pt;}
.y16b{bottom:117.267867pt;}
.yd5{bottom:117.268133pt;}
.y25{bottom:117.341733pt;}
.y57{bottom:117.399333pt;}
.yac{bottom:117.678000pt;}
.y82{bottom:117.691467pt;}
.y196{bottom:117.817867pt;}
.y1e6{bottom:118.067467pt;}
.y13b{bottom:122.641467pt;}
.ydc{bottom:122.657067pt;}
.y120{bottom:128.810000pt;}
.y16a{bottom:133.269200pt;}
.yd4{bottom:133.269467pt;}
.y1bd{bottom:133.293867pt;}
.y56{bottom:133.400667pt;}
.yab{bottom:133.679333pt;}
.y81{bottom:133.692800pt;}
.y24{bottom:133.693733pt;}
.y195{bottom:133.819200pt;}
.y1e5{bottom:134.067467pt;}
.y13a{bottom:138.642800pt;}
.ydb{bottom:138.658400pt;}
.y11f{bottom:144.811333pt;}
.y169{bottom:149.270533pt;}
.yd3{bottom:149.270800pt;}
.y1bc{bottom:149.295200pt;}
.y55{bottom:149.402000pt;}
.yaa{bottom:149.680667pt;}
.y80{bottom:149.694133pt;}
.y1e4{bottom:150.067467pt;}
.y139{bottom:154.644133pt;}
.y11e{bottom:160.812667pt;}
.y168{bottom:165.271867pt;}
.yd2{bottom:165.272133pt;}
.y1bb{bottom:165.296533pt;}
.y54{bottom:165.403333pt;}
.ya9{bottom:165.682000pt;}
.y194{bottom:165.689867pt;}
.y7f{bottom:165.695467pt;}
.y1e3{bottom:166.067467pt;}
.y138{bottom:170.645467pt;}
.y23{bottom:175.774933pt;}
.y11d{bottom:176.814000pt;}
.y167{bottom:181.273200pt;}
.yd1{bottom:181.273467pt;}
.y1ba{bottom:181.297867pt;}
.yda{bottom:181.326800pt;}
.y53{bottom:181.404667pt;}
.ya8{bottom:181.683333pt;}
.y7e{bottom:181.696800pt;}
.y1e2{bottom:182.067467pt;}
.y137{bottom:186.646800pt;}
.y22{bottom:189.106933pt;}
.y11c{bottom:192.815333pt;}
.y166{bottom:197.274533pt;}
.yd0{bottom:197.274800pt;}
.y1b9{bottom:197.299200pt;}
.yd9{bottom:197.326800pt;}
.y52{bottom:197.406000pt;}
.ya7{bottom:197.684667pt;}
.y7d{bottom:197.698133pt;}
.y1e1{bottom:198.067467pt;}
.y21{bottom:201.778933pt;}
.y136{bottom:202.648133pt;}
.y11b{bottom:208.816667pt;}
.y165{bottom:213.275867pt;}
.ycf{bottom:213.276133pt;}
.y1b8{bottom:213.300533pt;}
.y51{bottom:213.407333pt;}
.y193{bottom:213.444533pt;}
.ya6{bottom:213.686000pt;}
.y7c{bottom:213.699467pt;}
.y1e0{bottom:214.067467pt;}
.y20{bottom:214.450933pt;}
.y135{bottom:218.649467pt;}
.y11a{bottom:224.818000pt;}
.y1f{bottom:227.122933pt;}
.y164{bottom:229.277200pt;}
.yce{bottom:229.277467pt;}
.y1b7{bottom:229.301867pt;}
.y50{bottom:229.382000pt;}
.y192{bottom:229.445867pt;}
.ya5{bottom:229.687333pt;}
.y7b{bottom:229.700800pt;}
.y1df{bottom:230.067467pt;}
.y134{bottom:234.650800pt;}
.y1e{bottom:239.794933pt;}
.y119{bottom:240.819333pt;}
.y163{bottom:245.278533pt;}
.ycd{bottom:245.278800pt;}
.y1b6{bottom:245.303200pt;}
.y4f{bottom:245.383333pt;}
.y191{bottom:245.447200pt;}
.ya4{bottom:245.688667pt;}
.y7a{bottom:245.702133pt;}
.y1de{bottom:246.067467pt;}
.y133{bottom:250.652133pt;}
.y1d{bottom:252.466933pt;}
.y118{bottom:256.820667pt;}
.y162{bottom:261.279867pt;}
.ycc{bottom:261.280133pt;}
.y1b5{bottom:261.304533pt;}
.y4e{bottom:261.384667pt;}
.y190{bottom:261.448533pt;}
.ya3{bottom:261.690000pt;}
.y79{bottom:261.703467pt;}
.y1dd{bottom:262.067467pt;}
.y1c{bottom:265.138933pt;}
.y132{bottom:266.653467pt;}
.yef{bottom:271.301200pt;}
.y117{bottom:272.822000pt;}
.y161{bottom:277.281200pt;}
.ycb{bottom:277.281467pt;}
.y1b4{bottom:277.305867pt;}
.y4d{bottom:277.386000pt;}
.y18f{bottom:277.449867pt;}
.y78{bottom:277.662800pt;}
.ya2{bottom:277.691333pt;}
.y1b{bottom:277.810933pt;}
.y1dc{bottom:278.067467pt;}
.y131{bottom:282.654800pt;}
.y107{bottom:286.341333pt;}
.yee{bottom:287.302533pt;}
.y116{bottom:288.823333pt;}
.y1a{bottom:290.482933pt;}
.y160{bottom:293.282533pt;}
.yca{bottom:293.282800pt;}
.y1b3{bottom:293.307200pt;}
.y4c{bottom:293.387333pt;}
.y18e{bottom:293.451200pt;}
.y77{bottom:293.664133pt;}
.ya1{bottom:293.692667pt;}
.y1db{bottom:294.067467pt;}
.y130{bottom:298.656133pt;}
.y106{bottom:302.342667pt;}
.y19{bottom:303.154933pt;}
.yed{bottom:303.303867pt;}
.y115{bottom:304.824667pt;}
.yfc{bottom:304.899067pt;}
.y15f{bottom:309.283867pt;}
.yc9{bottom:309.284133pt;}
.y1b2{bottom:309.308533pt;}
.y4b{bottom:309.388667pt;}
.y18d{bottom:309.437867pt;}
.y76{bottom:309.665467pt;}
.ya0{bottom:309.694000pt;}
.y1da{bottom:310.067467pt;}
.y12f{bottom:314.657467pt;}
.y18{bottom:315.826933pt;}
.y105{bottom:318.344000pt;}
.yec{bottom:319.305200pt;}
.y114{bottom:320.826000pt;}
.yfb{bottom:320.900400pt;}
.y15e{bottom:325.285200pt;}
.yc8{bottom:325.285467pt;}
.y1b1{bottom:325.309867pt;}
.y4a{bottom:325.390000pt;}
.y18c{bottom:325.439200pt;}
.y75{bottom:325.666800pt;}
.y9f{bottom:325.695333pt;}
.y1d9{bottom:326.067467pt;}
.y17{bottom:328.498933pt;}
.y12e{bottom:330.658800pt;}
.y104{bottom:334.345333pt;}
.yeb{bottom:335.306533pt;}
.y113{bottom:336.827333pt;}
.yfa{bottom:336.901733pt;}
.y16{bottom:341.170933pt;}
.y15d{bottom:341.286533pt;}
.yc7{bottom:341.286800pt;}
.y1b0{bottom:341.311200pt;}
.y49{bottom:341.391333pt;}
.y18b{bottom:341.440533pt;}
.y74{bottom:341.668133pt;}
.y9e{bottom:341.696667pt;}
.y1d8{bottom:342.067467pt;}
.y103{bottom:350.346667pt;}
.yea{bottom:351.307867pt;}
.y112{bottom:352.824667pt;}
.yf9{bottom:352.903067pt;}
.y15c{bottom:357.287867pt;}
.yc6{bottom:357.288133pt;}
.y1af{bottom:357.312533pt;}
.y48{bottom:357.392667pt;}
.y18a{bottom:357.441867pt;}
.y73{bottom:357.669467pt;}
.y9d{bottom:357.698000pt;}
.y1d7{bottom:358.067467pt;}
.y102{bottom:366.348000pt;}
.y15{bottom:367.304267pt;}
.ye9{bottom:367.309200pt;}
.y111{bottom:368.826000pt;}
.yf8{bottom:368.896400pt;}
.y15b{bottom:373.289200pt;}
.yc5{bottom:373.289467pt;}
.y1ae{bottom:373.313867pt;}
.y12d{bottom:373.327200pt;}
.y47{bottom:373.394000pt;}
.y189{bottom:373.443200pt;}
.y72{bottom:373.670800pt;}
.y9c{bottom:373.699333pt;}
.y1d6{bottom:374.067467pt;}
.y101{bottom:382.349333pt;}
.ye8{bottom:383.310533pt;}
.y110{bottom:384.827333pt;}
.yf7{bottom:384.897733pt;}
.y14{bottom:386.504267pt;}
.y15a{bottom:389.290533pt;}
.yc4{bottom:389.290800pt;}
.y1ad{bottom:389.315200pt;}
.y12c{bottom:389.327200pt;}
.y46{bottom:389.395333pt;}
.y188{bottom:389.444533pt;}
.y71{bottom:389.672133pt;}
.y9b{bottom:389.700667pt;}
.y1d5{bottom:390.067467pt;}
.y100{bottom:398.350667pt;}
.ye7{bottom:399.311867pt;}
.y10f{bottom:400.823333pt;}
.yf6{bottom:400.899067pt;}
.y159{bottom:405.291867pt;}
.yc3{bottom:405.292133pt;}
.y1ac{bottom:405.316533pt;}
.y45{bottom:405.396667pt;}
.y187{bottom:405.445867pt;}
.y70{bottom:405.673467pt;}
.y9a{bottom:405.702000pt;}
.y1d4{bottom:406.067467pt;}
.ye6{bottom:415.313200pt;}
.y10e{bottom:416.824667pt;}
.yf5{bottom:416.900400pt;}
.y158{bottom:421.293200pt;}
.yc2{bottom:421.293467pt;}
.y1ab{bottom:421.317867pt;}
.y44{bottom:421.398000pt;}
.y186{bottom:421.447200pt;}
.y6f{bottom:421.674800pt;}
.y99{bottom:421.703333pt;}
.y1d3{bottom:422.067467pt;}
.yff{bottom:430.221333pt;}
.ye5{bottom:431.314533pt;}
.y13{bottom:432.328267pt;}
.y10d{bottom:432.826000pt;}
.yf4{bottom:432.901733pt;}
.y157{bottom:437.294533pt;}
.yc1{bottom:437.294800pt;}
.y1aa{bottom:437.319200pt;}
.y43{bottom:437.399333pt;}
.y185{bottom:437.448533pt;}
.y6e{bottom:437.676133pt;}
.y98{bottom:437.682800pt;}
.y1d2{bottom:438.067467pt;}
.y12{bottom:445.660267pt;}
.ye4{bottom:447.315867pt;}
.y10c{bottom:448.827333pt;}
.yf3{bottom:448.903067pt;}
.y156{bottom:453.295867pt;}
.yc0{bottom:453.296133pt;}
.y1a9{bottom:453.320533pt;}
.y42{bottom:453.400667pt;}
.y184{bottom:453.449867pt;}
.y6d{bottom:453.677467pt;}
.y1d1{bottom:454.067467pt;}
.y11{bottom:458.464267pt;}
.ye3{bottom:463.317200pt;}
.y10b{bottom:464.828667pt;}
.yf2{bottom:464.904400pt;}
.y155{bottom:469.297200pt;}
.ybf{bottom:469.297467pt;}
.y1a8{bottom:469.321867pt;}
.y41{bottom:469.402000pt;}
.y183{bottom:469.451200pt;}
.y97{bottom:469.553467pt;}
.y6c{bottom:469.678800pt;}
.y1d0{bottom:470.067467pt;}
.y10{bottom:471.268267pt;}
.ye2{bottom:479.318533pt;}
.yf{bottom:484.072267pt;}
.y154{bottom:485.298533pt;}
.ybe{bottom:485.298800pt;}
.y1a7{bottom:485.323200pt;}
.y40{bottom:485.403333pt;}
.y182{bottom:485.448533pt;}
.y6b{bottom:485.680133pt;}
.y1cf{bottom:486.067467pt;}
.ye1{bottom:495.319867pt;}
.ye{bottom:496.876267pt;}
.y153{bottom:501.299867pt;}
.ybd{bottom:501.300133pt;}
.y1a6{bottom:501.324533pt;}
.y3f{bottom:501.404667pt;}
.y181{bottom:501.449867pt;}
.y6a{bottom:501.681467pt;}
.y1ce{bottom:502.067467pt;}
.yfe{bottom:504.637733pt;}
.y10a{bottom:507.497067pt;}
.yf1{bottom:507.572800pt;}
.yd{bottom:509.680267pt;}
.y152{bottom:517.301200pt;}
.ybc{bottom:517.301467pt;}
.y96{bottom:517.308133pt;}
.y1a5{bottom:517.325867pt;}
.y3e{bottom:517.406000pt;}
.y180{bottom:517.451200pt;}
.y69{bottom:517.682800pt;}
.y1cd{bottom:518.067467pt;}
.yfd{bottom:520.637733pt;}
.yc{bottom:522.484267pt;}
.y109{bottom:523.497067pt;}
.yf0{bottom:523.572800pt;}
.y151{bottom:533.302533pt;}
.ybb{bottom:533.302800pt;}
.y95{bottom:533.309467pt;}
.y1a4{bottom:533.325867pt;}
.y3d{bottom:533.407333pt;}
.y17f{bottom:533.447200pt;}
.y68{bottom:533.684133pt;}
.y1cc{bottom:534.067467pt;}
.yb{bottom:535.288267pt;}
.ye0{bottom:537.988267pt;}
.ya{bottom:548.092267pt;}
.y150{bottom:549.303867pt;}
.yba{bottom:549.304133pt;}
.y1a3{bottom:549.304533pt;}
.y94{bottom:549.310800pt;}
.y3c{bottom:549.402667pt;}
.y17e{bottom:549.448533pt;}
.y67{bottom:549.685467pt;}
.y1cb{bottom:550.067467pt;}
.ydf{bottom:553.988267pt;}
.y9{bottom:560.896267pt;}
.y14f{bottom:565.305200pt;}
.yb9{bottom:565.305467pt;}
.y1a2{bottom:565.305867pt;}
.y93{bottom:565.312133pt;}
.y3b{bottom:565.404000pt;}
.y17d{bottom:565.449867pt;}
.y66{bottom:565.686800pt;}
.y1ca{bottom:566.067467pt;}
.y8{bottom:573.700267pt;}
.y14e{bottom:581.306533pt;}
.yb8{bottom:581.306800pt;}
.y1a1{bottom:581.307200pt;}
.y92{bottom:581.313467pt;}
.y3a{bottom:581.405333pt;}
.y17c{bottom:581.451200pt;}
.y65{bottom:581.688133pt;}
.y1c9{bottom:582.067467pt;}
.y7{bottom:586.500267pt;}
.y14d{bottom:597.307867pt;}
.yb7{bottom:597.308133pt;}
.y1a0{bottom:597.308533pt;}
.y91{bottom:597.314800pt;}
.y39{bottom:597.406667pt;}
.y17b{bottom:597.443200pt;}
.y64{bottom:597.689467pt;}
.y1c8{bottom:598.067467pt;}
.y6{bottom:599.304267pt;}
.y14c{bottom:613.309200pt;}
.yb6{bottom:613.309467pt;}
.y19f{bottom:613.309867pt;}
.y90{bottom:613.316133pt;}
.y38{bottom:613.408000pt;}
.y17a{bottom:613.444533pt;}
.y63{bottom:613.690800pt;}
.y5{bottom:625.437600pt;}
.y14b{bottom:629.310533pt;}
.yb5{bottom:629.310800pt;}
.y19e{bottom:629.311200pt;}
.y8f{bottom:629.317467pt;}
.y37{bottom:629.409333pt;}
.y179{bottom:629.445867pt;}
.y62{bottom:629.692133pt;}
.y1c7{bottom:629.928800pt;}
.y1f5{bottom:630.250933pt;}
.y14a{bottom:645.311867pt;}
.yb4{bottom:645.312133pt;}
.y19d{bottom:645.312533pt;}
.y8e{bottom:645.318800pt;}
.y36{bottom:645.410667pt;}
.y178{bottom:645.447200pt;}
.y61{bottom:645.693467pt;}
.y1f4{bottom:646.250933pt;}
.y149{bottom:661.313200pt;}
.yb3{bottom:661.313467pt;}
.y19c{bottom:661.313867pt;}
.y8d{bottom:661.320133pt;}
.y35{bottom:661.412000pt;}
.y177{bottom:661.448533pt;}
.y60{bottom:661.694800pt;}
.y1f3{bottom:662.250933pt;}
.y4{bottom:663.304267pt;}
.y148{bottom:677.314533pt;}
.yb2{bottom:677.314800pt;}
.y19b{bottom:677.315200pt;}
.y8c{bottom:677.321467pt;}
.y176{bottom:677.449867pt;}
.y1c6{bottom:677.683467pt;}
.y5f{bottom:677.696133pt;}
.y1f2{bottom:678.250933pt;}
.y3{bottom:692.630933pt;}
.y34{bottom:693.282667pt;}
.y147{bottom:693.315867pt;}
.yb1{bottom:693.316133pt;}
.y19a{bottom:693.316533pt;}
.y8b{bottom:693.322800pt;}
.y175{bottom:693.451200pt;}
.y1c5{bottom:693.684800pt;}
.y5e{bottom:693.697467pt;}
.y1f1{bottom:694.250933pt;}
.y146{bottom:709.317200pt;}
.yb0{bottom:709.317467pt;}
.y12b{bottom:709.317867pt;}
.y8a{bottom:709.324133pt;}
.y174{bottom:709.449200pt;}
.y1c4{bottom:709.686133pt;}
.y5d{bottom:709.698800pt;}
.y1f0{bottom:710.250933pt;}
.y2{bottom:713.170933pt;}
.y145{bottom:725.318533pt;}
.yaf{bottom:725.318800pt;}
.y12a{bottom:725.319200pt;}
.y89{bottom:725.325467pt;}
.y173{bottom:725.450533pt;}
.y1c3{bottom:725.687467pt;}
.y1ef{bottom:726.250933pt;}
.y144{bottom:741.319867pt;}
.y88{bottom:741.320133pt;}
.y129{bottom:741.320533pt;}
.y172{bottom:741.451867pt;}
.y5c{bottom:741.569467pt;}
.y1c2{bottom:741.688800pt;}
.y1ee{bottom:742.250933pt;}
.y33{bottom:754.368000pt;}
.y143{bottom:757.321200pt;}
.y87{bottom:757.321467pt;}
.y128{bottom:757.321867pt;}
.y171{bottom:757.453200pt;}
.y1c1{bottom:757.690133pt;}
.y1ed{bottom:758.250933pt;}
.y32{bottom:768.768000pt;}
.y2c{bottom:771.414667pt;}
.y142{bottom:773.322533pt;}
.y86{bottom:773.322800pt;}
.y127{bottom:773.323200pt;}
.y170{bottom:773.454533pt;}
.y1c0{bottom:773.691467pt;}
.y1ec{bottom:774.250933pt;}
.y141{bottom:789.323867pt;}
.y5b{bottom:789.324133pt;}
.y126{bottom:789.324533pt;}
.y16f{bottom:789.455867pt;}
.y1bf{bottom:789.692800pt;}
.y1eb{bottom:790.250933pt;}
.y31{bottom:796.500000pt;}
.y2b{bottom:798.081333pt;}
.y140{bottom:805.325200pt;}
.y5a{bottom:805.325467pt;}
.y125{bottom:805.325867pt;}
.y1ea{bottom:806.250933pt;}
.y30{bottom:809.832000pt;}
.y2a{bottom:810.881333pt;}
.y13f{bottom:821.326533pt;}
.y59{bottom:821.326800pt;}
.y124{bottom:821.327200pt;}
.y1be{bottom:821.563467pt;}
.y1e9{bottom:822.250933pt;}
.y2f{bottom:823.164000pt;}
.y2d{bottom:840.447733pt;}
.y13e{bottom:856.062667pt;}
.y2e{bottom:856.062933pt;}
.y108{bottom:856.063333pt;}
.hd{height:23.229500pt;}
.hb{height:23.812833pt;}
.h5{height:32.757812pt;}
.h2{height:34.421333pt;}
.hc{height:37.437500pt;}
.he{height:38.986667pt;}
.hf{height:39.338667pt;}
.h10{height:40.161458pt;}
.h6{height:42.117188pt;}
.h9{height:42.234375pt;}
.h7{height:42.250375pt;}
.h8{height:42.773438pt;}
.h4{height:46.796875pt;}
.h19{height:46.927083pt;}
.h21{height:47.526042pt;}
.h11{height:51.476562pt;}
.h20{height:51.481896pt;}
.h1c{height:51.492563pt;}
.h1b{height:51.497896pt;}
.h13{height:51.500563pt;}
.h16{height:51.503229pt;}
.h1e{height:51.513896pt;}
.h1f{height:51.535229pt;}
.h17{height:51.564029pt;}
.h14{height:51.583229pt;}
.h18{height:51.619792pt;}
.h15{height:51.644563pt;}
.h12{height:52.278646pt;}
.h1d{height:52.291979pt;}
.h1a{height:52.310646pt;}
.ha{height:56.156250pt;}
.h3{height:60.835938pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:81.201200pt;}
.xb{left:82.604267pt;}
.x3{left:84.094533pt;}
.x2{left:94.518533pt;}
.x8{left:114.322667pt;}
.xe{left:122.255867pt;}
.x6{left:126.292400pt;}
.xa{left:153.187867pt;}
.xc{left:177.990933pt;}
.xd{left:191.700000pt;}
.x5{left:228.777067pt;}
.x7{left:252.745733pt;}
.x4{left:493.006667pt;}
}




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