
    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_5e694dae70f3f8f10cc32e5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_366286f6a4487a3df1af7dd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2959b62d0bf1998523e6dd94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.164551;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_d6efa7f7b35dead4f429884d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936035;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_7270c6730239ed7fb7e11a38.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_57c6ced73051222c8a09b59e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_f8754b2b8d368380c0e1f68a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.164551;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_34dace275d489519aa0f6a63.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164062;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_6ff140dadff3bd64e480e3ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.164551;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_1dd082cceca0936c5a7447cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_75dcea2d9affdca34b906bea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_f8754b2b8d368380c0e1f68a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.164551;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:ffd;src:url('chunks/assets/font_fd62e3b1e956de09634dbf76.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936035;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls1a{letter-spacing:-1.980000px;}
.ls18{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.840000px;}
.ls19{letter-spacing:-0.699600px;}
.ls8{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.349800px;}
.ls1c{letter-spacing:-0.279840px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.004920px;}
.ls7{letter-spacing:0.005520px;}
.ls1{letter-spacing:0.006144px;}
.lse{letter-spacing:0.007200px;}
.lsf{letter-spacing:0.007800px;}
.ls15{letter-spacing:0.009000px;}
.ls12{letter-spacing:0.009600px;}
.ls1d{letter-spacing:0.349800px;}
.ls11{letter-spacing:0.395760px;}
.ls17{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.609600px;}
.lsd{letter-spacing:0.704520px;}
.lsc{letter-spacing:0.705120px;}
.lsb{letter-spacing:1.200000px;}
.ls16{letter-spacing:3.879000px;}
.ls0{letter-spacing:4.200000px;}
.ls13{letter-spacing:6.480000px;}
.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;}
}
.ws0{word-spacing:-22.512000px;}
.ws1{word-spacing:-20.880000px;}
.ws18{word-spacing:-17.880000px;}
.ws86{word-spacing:-17.280000px;}
.wsf{word-spacing:-16.680000px;}
.wse{word-spacing:-16.080000px;}
.ws2{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.472000px;}
.ws26{word-spacing:-13.344000px;}
.ws85{word-spacing:-10.074240px;}
.ws2d{word-spacing:-9.724440px;}
.ws28{word-spacing:-9.374640px;}
.ws76{word-spacing:-9.024840px;}
.ws27{word-spacing:-7.779552px;}
.ws84{word-spacing:-7.499712px;}
.ws3a{word-spacing:-6.480000px;}
.ws22{word-spacing:-4.740000px;}
.ws5{word-spacing:-4.200000px;}
.ws7e{word-spacing:-3.120000px;}
.ws46{word-spacing:-3.060000px;}
.ws70{word-spacing:-2.700000px;}
.ws83{word-spacing:-2.580000px;}
.ws67{word-spacing:-2.460000px;}
.ws61{word-spacing:-2.340000px;}
.ws7d{word-spacing:-2.280000px;}
.ws68{word-spacing:-2.220000px;}
.ws80{word-spacing:-1.980000px;}
.ws66{word-spacing:-1.860000px;}
.ws87{word-spacing:-1.824000px;}
.ws54{word-spacing:-1.800000px;}
.ws42{word-spacing:-1.680000px;}
.ws33{word-spacing:-1.380000px;}
.ws25{word-spacing:-1.320000px;}
.ws1d{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.188000px;}
.ws5a{word-spacing:-1.080000px;}
.ws41{word-spacing:-0.960000px;}
.ws69{word-spacing:-0.900000px;}
.ws4c{word-spacing:-0.840000px;}
.ws2b{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.660000px;}
.ws1c{word-spacing:-0.600000px;}
.ws64{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.336000px;}
.ws44{word-spacing:-0.300000px;}
.ws4d{word-spacing:-0.240000px;}
.ws51{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws90{word-spacing:0.180000px;}
.ws3d{word-spacing:0.240000px;}
.ws5e{word-spacing:0.288000px;}
.ws5c{word-spacing:0.360000px;}
.ws16{word-spacing:0.384000px;}
.ws88{word-spacing:0.420000px;}
.ws3f{word-spacing:0.432000px;}
.ws14{word-spacing:0.480000px;}
.wsc{word-spacing:0.540000px;}
.ws10{word-spacing:0.600000px;}
.ws62{word-spacing:0.660000px;}
.ws4b{word-spacing:0.720000px;}
.ws58{word-spacing:0.840000px;}
.ws37{word-spacing:0.900000px;}
.ws15{word-spacing:0.960000px;}
.ws4a{word-spacing:1.020000px;}
.ws71{word-spacing:1.056000px;}
.ws6{word-spacing:1.080000px;}
.ws38{word-spacing:1.140000px;}
.ws1e{word-spacing:1.200000px;}
.ws6b{word-spacing:1.260000px;}
.ws19{word-spacing:1.440000px;}
.ws7c{word-spacing:1.488000px;}
.ws74{word-spacing:1.500000px;}
.ws63{word-spacing:1.800000px;}
.ws50{word-spacing:1.860000px;}
.ws7b{word-spacing:1.980000px;}
.ws24{word-spacing:2.040000px;}
.ws3e{word-spacing:2.220000px;}
.ws4e{word-spacing:2.280000px;}
.ws40{word-spacing:2.400000px;}
.ws6f{word-spacing:2.448000px;}
.ws13{word-spacing:2.460000px;}
.ws4f{word-spacing:2.520000px;}
.ws55{word-spacing:2.580000px;}
.ws91{word-spacing:2.592000px;}
.ws8e{word-spacing:2.640000px;}
.ws8d{word-spacing:2.700000px;}
.ws2f{word-spacing:2.760000px;}
.ws77{word-spacing:2.928000px;}
.ws11{word-spacing:2.940000px;}
.ws52{word-spacing:3.000000px;}
.ws82{word-spacing:3.120000px;}
.ws36{word-spacing:3.180000px;}
.ws78{word-spacing:3.240000px;}
.ws2c{word-spacing:3.264000px;}
.ws1a{word-spacing:3.300000px;}
.ws34{word-spacing:3.408000px;}
.ws48{word-spacing:3.420000px;}
.ws8c{word-spacing:3.600000px;}
.ws81{word-spacing:3.660000px;}
.ws6e{word-spacing:3.840000px;}
.ws29{word-spacing:3.900000px;}
.ws7f{word-spacing:4.020000px;}
.ws5f{word-spacing:4.080000px;}
.ws49{word-spacing:4.140000px;}
.ws32{word-spacing:4.260000px;}
.wsb{word-spacing:4.320000px;}
.ws23{word-spacing:4.440000px;}
.ws79{word-spacing:4.500000px;}
.ws5b{word-spacing:4.620000px;}
.ws47{word-spacing:4.680000px;}
.ws75{word-spacing:4.920000px;}
.ws5d{word-spacing:4.980000px;}
.ws57{word-spacing:5.160000px;}
.ws2a{word-spacing:5.220000px;}
.ws53{word-spacing:5.280000px;}
.ws8b{word-spacing:5.340000px;}
.ws7{word-spacing:5.454000px;}
.ws73{word-spacing:5.520000px;}
.ws31{word-spacing:5.580000px;}
.ws59{word-spacing:5.760000px;}
.ws1f{word-spacing:6.060000px;}
.ws3c{word-spacing:6.180000px;}
.ws21{word-spacing:6.420000px;}
.ws3b{word-spacing:6.480000px;}
.ws8f{word-spacing:6.600000px;}
.ws65{word-spacing:6.660000px;}
.ws6a{word-spacing:6.780000px;}
.ws1b{word-spacing:6.900000px;}
.ws2e{word-spacing:7.080000px;}
.ws6c{word-spacing:7.380000px;}
.ws30{word-spacing:7.440000px;}
.ws60{word-spacing:7.920000px;}
.ws43{word-spacing:8.040000px;}
.wsa{word-spacing:8.046000px;}
.ws56{word-spacing:8.340000px;}
.ws8a{word-spacing:8.460000px;}
.ws20{word-spacing:8.640000px;}
.ws7a{word-spacing:8.700000px;}
.ws12{word-spacing:8.760000px;}
.ws6d{word-spacing:9.240000px;}
.ws17{word-spacing:9.696000px;}
.ws89{word-spacing:10.260000px;}
._10{margin-left:-16.680000px;}
._0{margin-left:-15.001200px;}
._11{margin-left:-7.404000px;}
._c{margin-left:-5.521800px;}
._1{margin-left:-4.206000px;}
._7{margin-left:-3.110400px;}
._5{margin-left:-1.706400px;}
._2{width:1.090800px;}
._4{width:2.284200px;}
._8{width:3.402000px;}
._b{width:4.574400px;}
._3{width:5.661600px;}
._a{width:7.065600px;}
._6{width:8.553600px;}
._d{width:9.613800px;}
._9{width:10.656000px;}
._f{width:11.940000px;}
._12{width:12.978000px;}
._e{width:14.670000px;}
._13{width:18.576000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs5{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:33.011100px;}
.y51{bottom:34.853700px;}
.y28{bottom:52.043100px;}
.y27{bottom:68.243100px;}
.y25{bottom:106.299150px;}
.y59{bottom:106.299300px;}
.y24{bottom:120.699150px;}
.y50{bottom:120.699300px;}
.y58{bottom:124.951200px;}
.ya7{bottom:131.551200px;}
.y23{bottom:135.099150px;}
.y4f{bottom:135.099300px;}
.y7f{bottom:139.351200px;}
.y57{bottom:143.603250px;}
.ya6{bottom:145.951200px;}
.y22{bottom:149.499150px;}
.yee{bottom:149.499300px;}
.yf9{bottom:150.046200px;}
.y141{bottom:150.230400px;}
.y4e{bottom:153.751200px;}
.y56{bottom:158.003250px;}
.y135{bottom:160.222500px;}
.y158{bottom:162.255150px;}
.y21{bottom:163.899150px;}
.yed{bottom:163.899300px;}
.ya5{bottom:164.603250px;}
.yf8{bottom:168.046200px;}
.y4d{bottom:168.151200px;}
.y140{bottom:168.230400px;}
.y7e{bottom:172.403250px;}
.y134{bottom:178.222500px;}
.y192{bottom:178.299300px;}
.y17a{bottom:178.534350px;}
.ya4{bottom:179.003250px;}
.y157{bottom:180.907200px;}
.y172{bottom:182.134350px;}
.yec{bottom:182.551200px;}
.yf7{bottom:186.046200px;}
.y13f{bottom:186.230400px;}
.y4c{bottom:186.803250px;}
.y198{bottom:191.055150px;}
.y191{bottom:192.699300px;}
.yc8{bottom:192.934350px;}
.ya3{bottom:193.403250px;}
.y156{bottom:195.307050px;}
.y133{bottom:196.222500px;}
.y179{bottom:196.534350px;}
.yeb{bottom:196.951200px;}
.y171{bottom:200.134350px;}
.y7d{bottom:201.203250px;}
.yf6{bottom:204.046200px;}
.y11c{bottom:204.230250px;}
.y13e{bottom:204.230400px;}
.y4b{bottom:205.455150px;}
.y190{bottom:207.099300px;}
.y55{bottom:208.171800px;}
.y155{bottom:209.707050px;}
.yc7{bottom:210.934350px;}
.yea{bottom:211.351200px;}
.y1b9{bottom:211.510950px;}
.ya2{bottom:212.055150px;}
.y132{bottom:214.222500px;}
.y178{bottom:214.534350px;}
.y7c{bottom:215.603250px;}
.y20{bottom:216.959850px;}
.y170{bottom:218.134350px;}
.y4a{bottom:219.855150px;}
.y18f{bottom:221.499300px;}
.yf5{bottom:222.046200px;}
.y11b{bottom:222.230250px;}
.y13d{bottom:222.230400px;}
.y154{bottom:224.107200px;}
.ye9{bottom:225.751200px;}
.y54{bottom:226.171800px;}
.ya1{bottom:226.455150px;}
.yc6{bottom:228.934350px;}
.y1b8{bottom:229.510950px;}
.y7b{bottom:230.003250px;}
.y177{bottom:232.534350px;}
.y1f{bottom:234.959850px;}
.y18e{bottom:235.899300px;}
.y16f{bottom:236.134350px;}
.y49{bottom:238.507050px;}
.y153{bottom:238.507200px;}
.yf4{bottom:240.046200px;}
.ye8{bottom:240.151200px;}
.y11a{bottom:240.230250px;}
.y13c{bottom:240.230400px;}
.y53{bottom:244.171800px;}
.y147{bottom:244.403250px;}
.y131{bottom:244.978350px;}
.yc5{bottom:246.934350px;}
.y1b7{bottom:247.510950px;}
.y7a{bottom:248.655150px;}
.y18d{bottom:250.299300px;}
.y176{bottom:250.534350px;}
.y1e{bottom:251.159850px;}
.y152{bottom:252.907200px;}
.y16e{bottom:254.134350px;}
.ye7{bottom:254.551200px;}
.yf3{bottom:258.046200px;}
.y119{bottom:258.230250px;}
.y13b{bottom:258.230400px;}
.y146{bottom:258.803250px;}
.y130{bottom:259.378350px;}
.y52{bottom:262.171800px;}
.y18c{bottom:264.699300px;}
.y150{bottom:264.934350px;}
.y1b6{bottom:265.510950px;}
.y151{bottom:267.307200px;}
.y1d{bottom:267.359850px;}
.ya0{bottom:268.534350px;}
.ye6{bottom:268.951200px;}
.y16d{bottom:272.134350px;}
.y145{bottom:273.203250px;}
.y12f{bottom:273.778500px;}
.yf2{bottom:276.046200px;}
.y118{bottom:276.230250px;}
.y13a{bottom:276.230400px;}
.yc4{bottom:277.690200px;}
.y18b{bottom:279.099300px;}
.y48{bottom:280.171800px;}
.y14f{bottom:282.934350px;}
.ye5{bottom:283.351200px;}
.y1b5{bottom:283.510950px;}
.y1c{bottom:283.559850px;}
.y9f{bottom:286.534350px;}
.y144{bottom:287.603250px;}
.y12e{bottom:288.178500px;}
.y16c{bottom:290.134350px;}
.yc3{bottom:292.090200px;}
.y18a{bottom:293.499300px;}
.yf1{bottom:294.046200px;}
.y117{bottom:294.230250px;}
.y139{bottom:294.230400px;}
.ye4{bottom:297.751200px;}
.y47{bottom:298.171800px;}
.y1b{bottom:299.759850px;}
.y14e{bottom:300.934350px;}
.y1b4{bottom:301.510950px;}
.y143{bottom:302.003250px;}
.y12d{bottom:302.578500px;}
.y9e{bottom:304.534350px;}
.yc2{bottom:306.490200px;}
.y16b{bottom:308.134350px;}
.yf0{bottom:312.046200px;}
.ye3{bottom:312.151200px;}
.y116{bottom:312.230250px;}
.y138{bottom:312.230400px;}
.y79{bottom:313.954950px;}
.y1a{bottom:315.959850px;}
.y46{bottom:316.171800px;}
.y142{bottom:316.403250px;}
.y12c{bottom:316.978350px;}
.y14d{bottom:318.934350px;}
.y1b3{bottom:319.510950px;}
.yc1{bottom:320.890200px;}
.y9d{bottom:322.534350px;}
.y16a{bottom:326.134350px;}
.y78{bottom:328.355100px;}
.yef{bottom:330.046200px;}
.y115{bottom:330.230250px;}
.y137{bottom:330.230400px;}
.y12b{bottom:331.378350px;}
.y19{bottom:332.159850px;}
.y45{bottom:334.171800px;}
.y14c{bottom:336.934350px;}
.y1b2{bottom:337.510950px;}
.y9c{bottom:340.534350px;}
.y77{bottom:342.755100px;}
.y169{bottom:344.134350px;}
.y12a{bottom:345.778500px;}
.yc0{bottom:348.046200px;}
.y114{bottom:348.230250px;}
.y189{bottom:348.230400px;}
.y18{bottom:348.359850px;}
.y44{bottom:352.171800px;}
.ye2{bottom:354.934350px;}
.y1b1{bottom:355.510950px;}
.y76{bottom:357.155100px;}
.y9b{bottom:358.534350px;}
.y129{bottom:360.178500px;}
.y136{bottom:360.986250px;}
.y1d0{bottom:361.327800px;}
.y168{bottom:362.134350px;}
.ybf{bottom:366.046200px;}
.y113{bottom:366.230250px;}
.y188{bottom:366.230400px;}
.y43{bottom:370.171800px;}
.ye1{bottom:372.934350px;}
.y1b0{bottom:373.510950px;}
.y128{bottom:374.578500px;}
.y9a{bottom:376.534350px;}
.y1cf{bottom:379.327800px;}
.y167{bottom:380.134350px;}
.y17{bottom:382.559850px;}
.ybe{bottom:384.046200px;}
.y112{bottom:384.230250px;}
.y187{bottom:384.230400px;}
.y75{bottom:384.310950px;}
.y42{bottom:388.171800px;}
.y127{bottom:388.978350px;}
.ye0{bottom:390.934350px;}
.y1af{bottom:391.510950px;}
.y99{bottom:394.534350px;}
.y1ce{bottom:397.327800px;}
.y166{bottom:398.134350px;}
.y16{bottom:398.759850px;}
.ybd{bottom:402.046200px;}
.y111{bottom:402.230250px;}
.y186{bottom:402.230400px;}
.y74{bottom:402.310950px;}
.y126{bottom:403.378350px;}
.y41{bottom:406.171800px;}
.ydf{bottom:408.934350px;}
.y1ae{bottom:409.510950px;}
.y98{bottom:412.534350px;}
.y15{bottom:414.959850px;}
.y1cd{bottom:415.327800px;}
.y165{bottom:416.134350px;}
.y125{bottom:417.778500px;}
.ybc{bottom:420.046200px;}
.y185{bottom:420.230400px;}
.y73{bottom:420.310950px;}
.y40{bottom:424.171800px;}
.yde{bottom:426.934350px;}
.y1ad{bottom:427.510950px;}
.y97{bottom:430.534350px;}
.y14{bottom:431.159850px;}
.y124{bottom:432.178500px;}
.y110{bottom:432.986250px;}
.y1cc{bottom:433.327800px;}
.y164{bottom:434.134350px;}
.ybb{bottom:438.046200px;}
.y184{bottom:438.230400px;}
.y72{bottom:438.310950px;}
.y3f{bottom:442.171800px;}
.ydd{bottom:444.934350px;}
.y1ac{bottom:445.510950px;}
.y13{bottom:447.359850px;}
.y96{bottom:448.534350px;}
.y1cb{bottom:451.327800px;}
.y163{bottom:452.134350px;}
.yba{bottom:456.046200px;}
.y183{bottom:456.230400px;}
.y71{bottom:456.310950px;}
.y123{bottom:459.334350px;}
.y3e{bottom:460.171800px;}
.ydc{bottom:462.934350px;}
.y1ab{bottom:463.510950px;}
.y12{bottom:463.559850px;}
.y95{bottom:466.534350px;}
.y1ca{bottom:469.327800px;}
.y162{bottom:470.134350px;}
.y10f{bottom:474.046050px;}
.yb9{bottom:474.046200px;}
.y182{bottom:474.230400px;}
.y70{bottom:474.310950px;}
.y122{bottom:477.334350px;}
.y3d{bottom:478.171800px;}
.y11{bottom:479.759850px;}
.ydb{bottom:480.934350px;}
.y1aa{bottom:481.510950px;}
.y94{bottom:484.534350px;}
.y1c9{bottom:487.327800px;}
.y161{bottom:488.134350px;}
.y10e{bottom:492.046050px;}
.yb8{bottom:492.046200px;}
.y181{bottom:492.230400px;}
.y6f{bottom:492.310950px;}
.y121{bottom:495.334350px;}
.y10{bottom:495.959850px;}
.y3c{bottom:496.171800px;}
.yda{bottom:498.934350px;}
.y1a9{bottom:499.510950px;}
.y93{bottom:502.534350px;}
.y1c8{bottom:505.327800px;}
.y160{bottom:506.134350px;}
.y10d{bottom:510.046050px;}
.yb7{bottom:510.046200px;}
.y180{bottom:510.230400px;}
.y6e{bottom:510.310950px;}
.yf{bottom:512.159850px;}
.y120{bottom:513.334350px;}
.y3b{bottom:514.171800px;}
.yd9{bottom:516.934350px;}
.y1a8{bottom:517.510950px;}
.y92{bottom:520.534350px;}
.y1c7{bottom:523.327800px;}
.y15f{bottom:524.134350px;}
.y10c{bottom:528.046050px;}
.yb6{bottom:528.046200px;}
.y17f{bottom:528.230400px;}
.y6d{bottom:528.310950px;}
.ye{bottom:528.359850px;}
.y3a{bottom:532.171800px;}
.yd8{bottom:534.934350px;}
.y1a7{bottom:535.510950px;}
.y91{bottom:538.534350px;}
.y1c6{bottom:541.327800px;}
.y15e{bottom:542.134350px;}
.y11f{bottom:544.090200px;}
.y10b{bottom:546.046050px;}
.yb5{bottom:546.046200px;}
.y17e{bottom:546.230400px;}
.y6c{bottom:546.310950px;}
.y39{bottom:550.171800px;}
.yd7{bottom:552.934350px;}
.y1a6{bottom:553.510950px;}
.y90{bottom:556.534350px;}
.y11e{bottom:558.490200px;}
.y1c5{bottom:559.327800px;}
.y10a{bottom:564.046050px;}
.yb4{bottom:564.046200px;}
.y17d{bottom:564.230400px;}
.y6b{bottom:564.310950px;}
.y38{bottom:568.171800px;}
.yd6{bottom:570.934350px;}
.y1a5{bottom:571.510950px;}
.y11d{bottom:572.890200px;}
.y8f{bottom:574.534350px;}
.y1c4{bottom:577.327800px;}
.yd{bottom:578.759850px;}
.y109{bottom:582.046050px;}
.yb3{bottom:582.046200px;}
.y17c{bottom:582.230400px;}
.y6a{bottom:582.310950px;}
.y37{bottom:586.171800px;}
.y15d{bottom:587.290200px;}
.yd5{bottom:588.934350px;}
.y1a4{bottom:589.510950px;}
.y8e{bottom:592.534350px;}
.yc{bottom:594.959850px;}
.y1c3{bottom:595.327800px;}
.y108{bottom:600.046050px;}
.yb2{bottom:600.046200px;}
.y69{bottom:600.310950px;}
.y15c{bottom:601.690200px;}
.y36{bottom:604.171800px;}
.yd4{bottom:606.934350px;}
.y1a3{bottom:607.510950px;}
.y8d{bottom:610.534350px;}
.y17b{bottom:612.986250px;}
.y1c2{bottom:613.327800px;}
.y15b{bottom:616.090200px;}
.y107{bottom:618.046050px;}
.yb1{bottom:618.046200px;}
.y68{bottom:618.310950px;}
.y35{bottom:622.171800px;}
.yd3{bottom:624.934350px;}
.y1a2{bottom:625.510950px;}
.y8c{bottom:628.534350px;}
.yb{bottom:629.159850px;}
.y15a{bottom:630.490200px;}
.y1c1{bottom:631.327800px;}
.y106{bottom:636.046050px;}
.yb0{bottom:636.046200px;}
.y67{bottom:636.310950px;}
.y14b{bottom:637.690200px;}
.y34{bottom:640.171800px;}
.yd2{bottom:642.934350px;}
.y1a1{bottom:643.510950px;}
.y159{bottom:644.890200px;}
.y8b{bottom:646.534350px;}
.y1c0{bottom:649.327800px;}
.ya{bottom:650.759850px;}
.y14a{bottom:652.090200px;}
.y105{bottom:654.046050px;}
.yaf{bottom:654.046200px;}
.y66{bottom:654.310950px;}
.y33{bottom:658.171800px;}
.yd1{bottom:660.934350px;}
.y1a0{bottom:661.510950px;}
.y8a{bottom:664.534350px;}
.y149{bottom:666.490200px;}
.y104{bottom:672.046050px;}
.yae{bottom:672.046200px;}
.y65{bottom:672.310950px;}
.y32{bottom:676.171800px;}
.yd0{bottom:678.934350px;}
.y19f{bottom:679.510950px;}
.y148{bottom:680.890200px;}
.y89{bottom:682.534350px;}
.y1bf{bottom:685.327800px;}
.y103{bottom:690.046050px;}
.yad{bottom:690.046200px;}
.y64{bottom:690.310950px;}
.y9{bottom:690.359850px;}
.y31{bottom:694.171800px;}
.y197{bottom:695.290200px;}
.ycf{bottom:696.934350px;}
.y175{bottom:700.534350px;}
.y102{bottom:708.046050px;}
.yac{bottom:708.046200px;}
.y63{bottom:708.310950px;}
.y8{bottom:708.359850px;}
.y196{bottom:709.690200px;}
.y19e{bottom:710.266800px;}
.y30{bottom:712.171800px;}
.y88{bottom:713.290200px;}
.yce{bottom:714.934350px;}
.y174{bottom:718.534350px;}
.y1be{bottom:721.327800px;}
.y195{bottom:724.090200px;}
.y19d{bottom:724.666800px;}
.y101{bottom:726.046050px;}
.yab{bottom:726.046200px;}
.y87{bottom:727.690200px;}
.y2f{bottom:730.171800px;}
.ycd{bottom:732.934350px;}
.y7{bottom:734.863800px;}
.y194{bottom:738.490200px;}
.y62{bottom:739.066800px;}
.y1bd{bottom:739.327800px;}
.y86{bottom:742.090200px;}
.y100{bottom:744.046050px;}
.yaa{bottom:744.046200px;}
.y19c{bottom:745.690200px;}
.y2e{bottom:748.171800px;}
.y173{bottom:749.290200px;}
.y193{bottom:752.890200px;}
.y61{bottom:753.466800px;}
.y85{bottom:756.490200px;}
.y1bc{bottom:757.327800px;}
.y6{bottom:760.063800px;}
.y19b{bottom:760.090200px;}
.yff{bottom:762.046050px;}
.ya9{bottom:762.046200px;}
.ycc{bottom:763.690200px;}
.y2d{bottom:766.171800px;}
.y60{bottom:767.866800px;}
.y84{bottom:770.890200px;}
.y19a{bottom:774.490200px;}
.y1bb{bottom:775.327650px;}
.ycb{bottom:778.090200px;}
.yfe{bottom:780.046050px;}
.ya8{bottom:780.046200px;}
.y5f{bottom:782.266800px;}
.y2c{bottom:784.171800px;}
.y199{bottom:788.890200px;}
.yca{bottom:792.490200px;}
.y5e{bottom:796.666800px;}
.yfd{bottom:798.046050px;}
.y83{bottom:798.046200px;}
.y2b{bottom:802.171800px;}
.yc9{bottom:806.890200px;}
.y5d{bottom:811.066800px;}
.y1ba{bottom:811.327650px;}
.yfc{bottom:816.046050px;}
.y82{bottom:816.046200px;}
.y2a{bottom:820.171800px;}
.y5c{bottom:825.466800px;}
.yfb{bottom:834.046050px;}
.y81{bottom:834.046200px;}
.y5b{bottom:839.866950px;}
.y29{bottom:850.927800px;}
.yfa{bottom:852.046050px;}
.y80{bottom:852.046200px;}
.y5a{bottom:854.266800px;}
.y5{bottom:854.517000px;}
.y4{bottom:870.717150px;}
.y3{bottom:886.917150px;}
.y26{bottom:893.550150px;}
.y2{bottom:903.117150px;}
.ha{height:46.500000px;}
.h9{height:46.523438px;}
.h7{height:46.945312px;}
.h8{height:48.887695px;}
.h3{height:52.813477px;}
.hb{height:58.125000px;}
.hc{height:58.154297px;}
.h5{height:58.681641px;}
.h2{height:64.549805px;}
.h6{height:70.417969px;}
.h4{height:82.154297px;}
.h1{height:948.000000px;}
.h0{height:948.189000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x6{left:76.535400px;}
.xd{left:106.299150px;}
.xb{left:114.803100px;}
.xf{left:119.055150px;}
.x7{left:127.559100px;}
.x10{left:129.635400px;}
.xc{left:131.300100px;}
.xe{left:140.314950px;}
.x8{left:254.628450px;}
.xa{left:303.915450px;}
.x1{left:319.009950px;}
.x4{left:380.905050px;}
.x3{left:382.671600px;}
.x5{left:402.130650px;}
.x2{left:415.261500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls1a{letter-spacing:-1.760000pt;}
.ls18{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls19{letter-spacing:-0.621867pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.310933pt;}
.ls1c{letter-spacing:-0.248747pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.004373pt;}
.ls7{letter-spacing:0.004907pt;}
.ls1{letter-spacing:0.005461pt;}
.lse{letter-spacing:0.006400pt;}
.lsf{letter-spacing:0.006933pt;}
.ls15{letter-spacing:0.008000pt;}
.ls12{letter-spacing:0.008533pt;}
.ls1d{letter-spacing:0.310933pt;}
.ls11{letter-spacing:0.351787pt;}
.ls17{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.541867pt;}
.lsd{letter-spacing:0.626240pt;}
.lsc{letter-spacing:0.626773pt;}
.lsb{letter-spacing:1.066667pt;}
.ls16{letter-spacing:3.448000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls13{letter-spacing:5.760000pt;}
.ws0{word-spacing:-20.010667pt;}
.ws1{word-spacing:-18.560000pt;}
.ws18{word-spacing:-15.893333pt;}
.ws86{word-spacing:-15.360000pt;}
.wsf{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.293333pt;}
.ws2{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.864000pt;}
.ws26{word-spacing:-11.861333pt;}
.ws85{word-spacing:-8.954880pt;}
.ws2d{word-spacing:-8.643947pt;}
.ws28{word-spacing:-8.333013pt;}
.ws76{word-spacing:-8.022080pt;}
.ws27{word-spacing:-6.915157pt;}
.ws84{word-spacing:-6.666411pt;}
.ws3a{word-spacing:-5.760000pt;}
.ws22{word-spacing:-4.213333pt;}
.ws5{word-spacing:-3.733333pt;}
.ws7e{word-spacing:-2.773333pt;}
.ws46{word-spacing:-2.720000pt;}
.ws70{word-spacing:-2.400000pt;}
.ws83{word-spacing:-2.293333pt;}
.ws67{word-spacing:-2.186667pt;}
.ws61{word-spacing:-2.080000pt;}
.ws7d{word-spacing:-2.026667pt;}
.ws68{word-spacing:-1.973333pt;}
.ws80{word-spacing:-1.760000pt;}
.ws66{word-spacing:-1.653333pt;}
.ws87{word-spacing:-1.621333pt;}
.ws54{word-spacing:-1.600000pt;}
.ws42{word-spacing:-1.493333pt;}
.ws33{word-spacing:-1.226667pt;}
.ws25{word-spacing:-1.173333pt;}
.ws1d{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.056000pt;}
.ws5a{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.853333pt;}
.ws69{word-spacing:-0.800000pt;}
.ws4c{word-spacing:-0.746667pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.586667pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws64{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.298667pt;}
.ws44{word-spacing:-0.266667pt;}
.ws4d{word-spacing:-0.213333pt;}
.ws51{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws90{word-spacing:0.160000pt;}
.ws3d{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.320000pt;}
.ws16{word-spacing:0.341333pt;}
.ws88{word-spacing:0.373333pt;}
.ws3f{word-spacing:0.384000pt;}
.ws14{word-spacing:0.426667pt;}
.wsc{word-spacing:0.480000pt;}
.ws10{word-spacing:0.533333pt;}
.ws62{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.640000pt;}
.ws58{word-spacing:0.746667pt;}
.ws37{word-spacing:0.800000pt;}
.ws15{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.906667pt;}
.ws71{word-spacing:0.938667pt;}
.ws6{word-spacing:0.960000pt;}
.ws38{word-spacing:1.013333pt;}
.ws1e{word-spacing:1.066667pt;}
.ws6b{word-spacing:1.120000pt;}
.ws19{word-spacing:1.280000pt;}
.ws7c{word-spacing:1.322667pt;}
.ws74{word-spacing:1.333333pt;}
.ws63{word-spacing:1.600000pt;}
.ws50{word-spacing:1.653333pt;}
.ws7b{word-spacing:1.760000pt;}
.ws24{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.973333pt;}
.ws4e{word-spacing:2.026667pt;}
.ws40{word-spacing:2.133333pt;}
.ws6f{word-spacing:2.176000pt;}
.ws13{word-spacing:2.186667pt;}
.ws4f{word-spacing:2.240000pt;}
.ws55{word-spacing:2.293333pt;}
.ws91{word-spacing:2.304000pt;}
.ws8e{word-spacing:2.346667pt;}
.ws8d{word-spacing:2.400000pt;}
.ws2f{word-spacing:2.453333pt;}
.ws77{word-spacing:2.602667pt;}
.ws11{word-spacing:2.613333pt;}
.ws52{word-spacing:2.666667pt;}
.ws82{word-spacing:2.773333pt;}
.ws36{word-spacing:2.826667pt;}
.ws78{word-spacing:2.880000pt;}
.ws2c{word-spacing:2.901333pt;}
.ws1a{word-spacing:2.933333pt;}
.ws34{word-spacing:3.029333pt;}
.ws48{word-spacing:3.040000pt;}
.ws8c{word-spacing:3.200000pt;}
.ws81{word-spacing:3.253333pt;}
.ws6e{word-spacing:3.413333pt;}
.ws29{word-spacing:3.466667pt;}
.ws7f{word-spacing:3.573333pt;}
.ws5f{word-spacing:3.626667pt;}
.ws49{word-spacing:3.680000pt;}
.ws32{word-spacing:3.786667pt;}
.wsb{word-spacing:3.840000pt;}
.ws23{word-spacing:3.946667pt;}
.ws79{word-spacing:4.000000pt;}
.ws5b{word-spacing:4.106667pt;}
.ws47{word-spacing:4.160000pt;}
.ws75{word-spacing:4.373333pt;}
.ws5d{word-spacing:4.426667pt;}
.ws57{word-spacing:4.586667pt;}
.ws2a{word-spacing:4.640000pt;}
.ws53{word-spacing:4.693333pt;}
.ws8b{word-spacing:4.746667pt;}
.ws7{word-spacing:4.848000pt;}
.ws73{word-spacing:4.906667pt;}
.ws31{word-spacing:4.960000pt;}
.ws59{word-spacing:5.120000pt;}
.ws1f{word-spacing:5.386667pt;}
.ws3c{word-spacing:5.493333pt;}
.ws21{word-spacing:5.706667pt;}
.ws3b{word-spacing:5.760000pt;}
.ws8f{word-spacing:5.866667pt;}
.ws65{word-spacing:5.920000pt;}
.ws6a{word-spacing:6.026667pt;}
.ws1b{word-spacing:6.133333pt;}
.ws2e{word-spacing:6.293333pt;}
.ws6c{word-spacing:6.560000pt;}
.ws30{word-spacing:6.613333pt;}
.ws60{word-spacing:7.040000pt;}
.ws43{word-spacing:7.146667pt;}
.wsa{word-spacing:7.152000pt;}
.ws56{word-spacing:7.413333pt;}
.ws8a{word-spacing:7.520000pt;}
.ws20{word-spacing:7.680000pt;}
.ws7a{word-spacing:7.733333pt;}
.ws12{word-spacing:7.786667pt;}
.ws6d{word-spacing:8.213333pt;}
.ws17{word-spacing:8.618667pt;}
.ws89{word-spacing:9.120000pt;}
._10{margin-left:-14.826667pt;}
._0{margin-left:-13.334400pt;}
._11{margin-left:-6.581333pt;}
._c{margin-left:-4.908267pt;}
._1{margin-left:-3.738667pt;}
._7{margin-left:-2.764800pt;}
._5{margin-left:-1.516800pt;}
._2{width:0.969600pt;}
._4{width:2.030400pt;}
._8{width:3.024000pt;}
._b{width:4.066133pt;}
._3{width:5.032533pt;}
._a{width:6.280533pt;}
._6{width:7.603200pt;}
._d{width:8.545600pt;}
._9{width:9.472000pt;}
._f{width:10.613333pt;}
._12{width:11.536000pt;}
._e{width:13.040000pt;}
._13{width:16.512000pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.343200pt;}
.y51{bottom:30.981067pt;}
.y28{bottom:46.260533pt;}
.y27{bottom:60.660533pt;}
.y25{bottom:94.488133pt;}
.y59{bottom:94.488267pt;}
.y24{bottom:107.288133pt;}
.y50{bottom:107.288267pt;}
.y58{bottom:111.067733pt;}
.ya7{bottom:116.934400pt;}
.y23{bottom:120.088133pt;}
.y4f{bottom:120.088267pt;}
.y7f{bottom:123.867733pt;}
.y57{bottom:127.647333pt;}
.ya6{bottom:129.734400pt;}
.y22{bottom:132.888133pt;}
.yee{bottom:132.888267pt;}
.yf9{bottom:133.374400pt;}
.y141{bottom:133.538133pt;}
.y4e{bottom:136.667733pt;}
.y56{bottom:140.447333pt;}
.y135{bottom:142.420000pt;}
.y158{bottom:144.226800pt;}
.y21{bottom:145.688133pt;}
.yed{bottom:145.688267pt;}
.ya5{bottom:146.314000pt;}
.yf8{bottom:149.374400pt;}
.y4d{bottom:149.467733pt;}
.y140{bottom:149.538133pt;}
.y7e{bottom:153.247333pt;}
.y134{bottom:158.420000pt;}
.y192{bottom:158.488267pt;}
.y17a{bottom:158.697200pt;}
.ya4{bottom:159.114000pt;}
.y157{bottom:160.806400pt;}
.y172{bottom:161.897200pt;}
.yec{bottom:162.267733pt;}
.yf7{bottom:165.374400pt;}
.y13f{bottom:165.538133pt;}
.y4c{bottom:166.047333pt;}
.y198{bottom:169.826800pt;}
.y191{bottom:171.288267pt;}
.yc8{bottom:171.497200pt;}
.ya3{bottom:171.914000pt;}
.y156{bottom:173.606267pt;}
.y133{bottom:174.420000pt;}
.y179{bottom:174.697200pt;}
.yeb{bottom:175.067733pt;}
.y171{bottom:177.897200pt;}
.y7d{bottom:178.847333pt;}
.yf6{bottom:181.374400pt;}
.y11c{bottom:181.538000pt;}
.y13e{bottom:181.538133pt;}
.y4b{bottom:182.626800pt;}
.y190{bottom:184.088267pt;}
.y55{bottom:185.041600pt;}
.y155{bottom:186.406267pt;}
.yc7{bottom:187.497200pt;}
.yea{bottom:187.867733pt;}
.y1b9{bottom:188.009733pt;}
.ya2{bottom:188.493467pt;}
.y132{bottom:190.420000pt;}
.y178{bottom:190.697200pt;}
.y7c{bottom:191.647333pt;}
.y20{bottom:192.853200pt;}
.y170{bottom:193.897200pt;}
.y4a{bottom:195.426800pt;}
.y18f{bottom:196.888267pt;}
.yf5{bottom:197.374400pt;}
.y11b{bottom:197.538000pt;}
.y13d{bottom:197.538133pt;}
.y154{bottom:199.206400pt;}
.ye9{bottom:200.667733pt;}
.y54{bottom:201.041600pt;}
.ya1{bottom:201.293467pt;}
.yc6{bottom:203.497200pt;}
.y1b8{bottom:204.009733pt;}
.y7b{bottom:204.447333pt;}
.y177{bottom:206.697200pt;}
.y1f{bottom:208.853200pt;}
.y18e{bottom:209.688267pt;}
.y16f{bottom:209.897200pt;}
.y49{bottom:212.006267pt;}
.y153{bottom:212.006400pt;}
.yf4{bottom:213.374400pt;}
.ye8{bottom:213.467733pt;}
.y11a{bottom:213.538000pt;}
.y13c{bottom:213.538133pt;}
.y53{bottom:217.041600pt;}
.y147{bottom:217.247333pt;}
.y131{bottom:217.758533pt;}
.yc5{bottom:219.497200pt;}
.y1b7{bottom:220.009733pt;}
.y7a{bottom:221.026800pt;}
.y18d{bottom:222.488267pt;}
.y176{bottom:222.697200pt;}
.y1e{bottom:223.253200pt;}
.y152{bottom:224.806400pt;}
.y16e{bottom:225.897200pt;}
.ye7{bottom:226.267733pt;}
.yf3{bottom:229.374400pt;}
.y119{bottom:229.538000pt;}
.y13b{bottom:229.538133pt;}
.y146{bottom:230.047333pt;}
.y130{bottom:230.558533pt;}
.y52{bottom:233.041600pt;}
.y18c{bottom:235.288267pt;}
.y150{bottom:235.497200pt;}
.y1b6{bottom:236.009733pt;}
.y151{bottom:237.606400pt;}
.y1d{bottom:237.653200pt;}
.ya0{bottom:238.697200pt;}
.ye6{bottom:239.067733pt;}
.y16d{bottom:241.897200pt;}
.y145{bottom:242.847333pt;}
.y12f{bottom:243.358667pt;}
.yf2{bottom:245.374400pt;}
.y118{bottom:245.538000pt;}
.y13a{bottom:245.538133pt;}
.yc4{bottom:246.835733pt;}
.y18b{bottom:248.088267pt;}
.y48{bottom:249.041600pt;}
.y14f{bottom:251.497200pt;}
.ye5{bottom:251.867733pt;}
.y1b5{bottom:252.009733pt;}
.y1c{bottom:252.053200pt;}
.y9f{bottom:254.697200pt;}
.y144{bottom:255.647333pt;}
.y12e{bottom:256.158667pt;}
.y16c{bottom:257.897200pt;}
.yc3{bottom:259.635733pt;}
.y18a{bottom:260.888267pt;}
.yf1{bottom:261.374400pt;}
.y117{bottom:261.538000pt;}
.y139{bottom:261.538133pt;}
.ye4{bottom:264.667733pt;}
.y47{bottom:265.041600pt;}
.y1b{bottom:266.453200pt;}
.y14e{bottom:267.497200pt;}
.y1b4{bottom:268.009733pt;}
.y143{bottom:268.447333pt;}
.y12d{bottom:268.958667pt;}
.y9e{bottom:270.697200pt;}
.yc2{bottom:272.435733pt;}
.y16b{bottom:273.897200pt;}
.yf0{bottom:277.374400pt;}
.ye3{bottom:277.467733pt;}
.y116{bottom:277.538000pt;}
.y138{bottom:277.538133pt;}
.y79{bottom:279.071067pt;}
.y1a{bottom:280.853200pt;}
.y46{bottom:281.041600pt;}
.y142{bottom:281.247333pt;}
.y12c{bottom:281.758533pt;}
.y14d{bottom:283.497200pt;}
.y1b3{bottom:284.009733pt;}
.yc1{bottom:285.235733pt;}
.y9d{bottom:286.697200pt;}
.y16a{bottom:289.897200pt;}
.y78{bottom:291.871200pt;}
.yef{bottom:293.374400pt;}
.y115{bottom:293.538000pt;}
.y137{bottom:293.538133pt;}
.y12b{bottom:294.558533pt;}
.y19{bottom:295.253200pt;}
.y45{bottom:297.041600pt;}
.y14c{bottom:299.497200pt;}
.y1b2{bottom:300.009733pt;}
.y9c{bottom:302.697200pt;}
.y77{bottom:304.671200pt;}
.y169{bottom:305.897200pt;}
.y12a{bottom:307.358667pt;}
.yc0{bottom:309.374400pt;}
.y114{bottom:309.538000pt;}
.y189{bottom:309.538133pt;}
.y18{bottom:309.653200pt;}
.y44{bottom:313.041600pt;}
.ye2{bottom:315.497200pt;}
.y1b1{bottom:316.009733pt;}
.y76{bottom:317.471200pt;}
.y9b{bottom:318.697200pt;}
.y129{bottom:320.158667pt;}
.y136{bottom:320.876667pt;}
.y1d0{bottom:321.180267pt;}
.y168{bottom:321.897200pt;}
.ybf{bottom:325.374400pt;}
.y113{bottom:325.538000pt;}
.y188{bottom:325.538133pt;}
.y43{bottom:329.041600pt;}
.ye1{bottom:331.497200pt;}
.y1b0{bottom:332.009733pt;}
.y128{bottom:332.958667pt;}
.y9a{bottom:334.697200pt;}
.y1cf{bottom:337.180267pt;}
.y167{bottom:337.897200pt;}
.y17{bottom:340.053200pt;}
.ybe{bottom:341.374400pt;}
.y112{bottom:341.538000pt;}
.y187{bottom:341.538133pt;}
.y75{bottom:341.609733pt;}
.y42{bottom:345.041600pt;}
.y127{bottom:345.758533pt;}
.ye0{bottom:347.497200pt;}
.y1af{bottom:348.009733pt;}
.y99{bottom:350.697200pt;}
.y1ce{bottom:353.180267pt;}
.y166{bottom:353.897200pt;}
.y16{bottom:354.453200pt;}
.ybd{bottom:357.374400pt;}
.y111{bottom:357.538000pt;}
.y186{bottom:357.538133pt;}
.y74{bottom:357.609733pt;}
.y126{bottom:358.558533pt;}
.y41{bottom:361.041600pt;}
.ydf{bottom:363.497200pt;}
.y1ae{bottom:364.009733pt;}
.y98{bottom:366.697200pt;}
.y15{bottom:368.853200pt;}
.y1cd{bottom:369.180267pt;}
.y165{bottom:369.897200pt;}
.y125{bottom:371.358667pt;}
.ybc{bottom:373.374400pt;}
.y185{bottom:373.538133pt;}
.y73{bottom:373.609733pt;}
.y40{bottom:377.041600pt;}
.yde{bottom:379.497200pt;}
.y1ad{bottom:380.009733pt;}
.y97{bottom:382.697200pt;}
.y14{bottom:383.253200pt;}
.y124{bottom:384.158667pt;}
.y110{bottom:384.876667pt;}
.y1cc{bottom:385.180267pt;}
.y164{bottom:385.897200pt;}
.ybb{bottom:389.374400pt;}
.y184{bottom:389.538133pt;}
.y72{bottom:389.609733pt;}
.y3f{bottom:393.041600pt;}
.ydd{bottom:395.497200pt;}
.y1ac{bottom:396.009733pt;}
.y13{bottom:397.653200pt;}
.y96{bottom:398.697200pt;}
.y1cb{bottom:401.180267pt;}
.y163{bottom:401.897200pt;}
.yba{bottom:405.374400pt;}
.y183{bottom:405.538133pt;}
.y71{bottom:405.609733pt;}
.y123{bottom:408.297200pt;}
.y3e{bottom:409.041600pt;}
.ydc{bottom:411.497200pt;}
.y1ab{bottom:412.009733pt;}
.y12{bottom:412.053200pt;}
.y95{bottom:414.697200pt;}
.y1ca{bottom:417.180267pt;}
.y162{bottom:417.897200pt;}
.y10f{bottom:421.374267pt;}
.yb9{bottom:421.374400pt;}
.y182{bottom:421.538133pt;}
.y70{bottom:421.609733pt;}
.y122{bottom:424.297200pt;}
.y3d{bottom:425.041600pt;}
.y11{bottom:426.453200pt;}
.ydb{bottom:427.497200pt;}
.y1aa{bottom:428.009733pt;}
.y94{bottom:430.697200pt;}
.y1c9{bottom:433.180267pt;}
.y161{bottom:433.897200pt;}
.y10e{bottom:437.374267pt;}
.yb8{bottom:437.374400pt;}
.y181{bottom:437.538133pt;}
.y6f{bottom:437.609733pt;}
.y121{bottom:440.297200pt;}
.y10{bottom:440.853200pt;}
.y3c{bottom:441.041600pt;}
.yda{bottom:443.497200pt;}
.y1a9{bottom:444.009733pt;}
.y93{bottom:446.697200pt;}
.y1c8{bottom:449.180267pt;}
.y160{bottom:449.897200pt;}
.y10d{bottom:453.374267pt;}
.yb7{bottom:453.374400pt;}
.y180{bottom:453.538133pt;}
.y6e{bottom:453.609733pt;}
.yf{bottom:455.253200pt;}
.y120{bottom:456.297200pt;}
.y3b{bottom:457.041600pt;}
.yd9{bottom:459.497200pt;}
.y1a8{bottom:460.009733pt;}
.y92{bottom:462.697200pt;}
.y1c7{bottom:465.180267pt;}
.y15f{bottom:465.897200pt;}
.y10c{bottom:469.374267pt;}
.yb6{bottom:469.374400pt;}
.y17f{bottom:469.538133pt;}
.y6d{bottom:469.609733pt;}
.ye{bottom:469.653200pt;}
.y3a{bottom:473.041600pt;}
.yd8{bottom:475.497200pt;}
.y1a7{bottom:476.009733pt;}
.y91{bottom:478.697200pt;}
.y1c6{bottom:481.180267pt;}
.y15e{bottom:481.897200pt;}
.y11f{bottom:483.635733pt;}
.y10b{bottom:485.374267pt;}
.yb5{bottom:485.374400pt;}
.y17e{bottom:485.538133pt;}
.y6c{bottom:485.609733pt;}
.y39{bottom:489.041600pt;}
.yd7{bottom:491.497200pt;}
.y1a6{bottom:492.009733pt;}
.y90{bottom:494.697200pt;}
.y11e{bottom:496.435733pt;}
.y1c5{bottom:497.180267pt;}
.y10a{bottom:501.374267pt;}
.yb4{bottom:501.374400pt;}
.y17d{bottom:501.538133pt;}
.y6b{bottom:501.609733pt;}
.y38{bottom:505.041600pt;}
.yd6{bottom:507.497200pt;}
.y1a5{bottom:508.009733pt;}
.y11d{bottom:509.235733pt;}
.y8f{bottom:510.697200pt;}
.y1c4{bottom:513.180267pt;}
.yd{bottom:514.453200pt;}
.y109{bottom:517.374267pt;}
.yb3{bottom:517.374400pt;}
.y17c{bottom:517.538133pt;}
.y6a{bottom:517.609733pt;}
.y37{bottom:521.041600pt;}
.y15d{bottom:522.035733pt;}
.yd5{bottom:523.497200pt;}
.y1a4{bottom:524.009733pt;}
.y8e{bottom:526.697200pt;}
.yc{bottom:528.853200pt;}
.y1c3{bottom:529.180267pt;}
.y108{bottom:533.374267pt;}
.yb2{bottom:533.374400pt;}
.y69{bottom:533.609733pt;}
.y15c{bottom:534.835733pt;}
.y36{bottom:537.041600pt;}
.yd4{bottom:539.497200pt;}
.y1a3{bottom:540.009733pt;}
.y8d{bottom:542.697200pt;}
.y17b{bottom:544.876667pt;}
.y1c2{bottom:545.180267pt;}
.y15b{bottom:547.635733pt;}
.y107{bottom:549.374267pt;}
.yb1{bottom:549.374400pt;}
.y68{bottom:549.609733pt;}
.y35{bottom:553.041600pt;}
.yd3{bottom:555.497200pt;}
.y1a2{bottom:556.009733pt;}
.y8c{bottom:558.697200pt;}
.yb{bottom:559.253200pt;}
.y15a{bottom:560.435733pt;}
.y1c1{bottom:561.180267pt;}
.y106{bottom:565.374267pt;}
.yb0{bottom:565.374400pt;}
.y67{bottom:565.609733pt;}
.y14b{bottom:566.835733pt;}
.y34{bottom:569.041600pt;}
.yd2{bottom:571.497200pt;}
.y1a1{bottom:572.009733pt;}
.y159{bottom:573.235733pt;}
.y8b{bottom:574.697200pt;}
.y1c0{bottom:577.180267pt;}
.ya{bottom:578.453200pt;}
.y14a{bottom:579.635733pt;}
.y105{bottom:581.374267pt;}
.yaf{bottom:581.374400pt;}
.y66{bottom:581.609733pt;}
.y33{bottom:585.041600pt;}
.yd1{bottom:587.497200pt;}
.y1a0{bottom:588.009733pt;}
.y8a{bottom:590.697200pt;}
.y149{bottom:592.435733pt;}
.y104{bottom:597.374267pt;}
.yae{bottom:597.374400pt;}
.y65{bottom:597.609733pt;}
.y32{bottom:601.041600pt;}
.yd0{bottom:603.497200pt;}
.y19f{bottom:604.009733pt;}
.y148{bottom:605.235733pt;}
.y89{bottom:606.697200pt;}
.y1bf{bottom:609.180267pt;}
.y103{bottom:613.374267pt;}
.yad{bottom:613.374400pt;}
.y64{bottom:613.609733pt;}
.y9{bottom:613.653200pt;}
.y31{bottom:617.041600pt;}
.y197{bottom:618.035733pt;}
.ycf{bottom:619.497200pt;}
.y175{bottom:622.697200pt;}
.y102{bottom:629.374267pt;}
.yac{bottom:629.374400pt;}
.y63{bottom:629.609733pt;}
.y8{bottom:629.653200pt;}
.y196{bottom:630.835733pt;}
.y19e{bottom:631.348267pt;}
.y30{bottom:633.041600pt;}
.y88{bottom:634.035733pt;}
.yce{bottom:635.497200pt;}
.y174{bottom:638.697200pt;}
.y1be{bottom:641.180267pt;}
.y195{bottom:643.635733pt;}
.y19d{bottom:644.148267pt;}
.y101{bottom:645.374267pt;}
.yab{bottom:645.374400pt;}
.y87{bottom:646.835733pt;}
.y2f{bottom:649.041600pt;}
.ycd{bottom:651.497200pt;}
.y7{bottom:653.212267pt;}
.y194{bottom:656.435733pt;}
.y62{bottom:656.948267pt;}
.y1bd{bottom:657.180267pt;}
.y86{bottom:659.635733pt;}
.y100{bottom:661.374267pt;}
.yaa{bottom:661.374400pt;}
.y19c{bottom:662.835733pt;}
.y2e{bottom:665.041600pt;}
.y173{bottom:666.035733pt;}
.y193{bottom:669.235733pt;}
.y61{bottom:669.748267pt;}
.y85{bottom:672.435733pt;}
.y1bc{bottom:673.180267pt;}
.y6{bottom:675.612267pt;}
.y19b{bottom:675.635733pt;}
.yff{bottom:677.374267pt;}
.ya9{bottom:677.374400pt;}
.ycc{bottom:678.835733pt;}
.y2d{bottom:681.041600pt;}
.y60{bottom:682.548267pt;}
.y84{bottom:685.235733pt;}
.y19a{bottom:688.435733pt;}
.y1bb{bottom:689.180133pt;}
.ycb{bottom:691.635733pt;}
.yfe{bottom:693.374267pt;}
.ya8{bottom:693.374400pt;}
.y5f{bottom:695.348267pt;}
.y2c{bottom:697.041600pt;}
.y199{bottom:701.235733pt;}
.yca{bottom:704.435733pt;}
.y5e{bottom:708.148267pt;}
.yfd{bottom:709.374267pt;}
.y83{bottom:709.374400pt;}
.y2b{bottom:713.041600pt;}
.yc9{bottom:717.235733pt;}
.y5d{bottom:720.948267pt;}
.y1ba{bottom:721.180133pt;}
.yfc{bottom:725.374267pt;}
.y82{bottom:725.374400pt;}
.y2a{bottom:729.041600pt;}
.y5c{bottom:733.748267pt;}
.yfb{bottom:741.374267pt;}
.y81{bottom:741.374400pt;}
.y5b{bottom:746.548400pt;}
.y29{bottom:756.380267pt;}
.yfa{bottom:757.374267pt;}
.y80{bottom:757.374400pt;}
.y5a{bottom:759.348267pt;}
.y5{bottom:759.570667pt;}
.y4{bottom:773.970800pt;}
.y3{bottom:788.370800pt;}
.y26{bottom:794.266800pt;}
.y2{bottom:802.770800pt;}
.ha{height:41.333333pt;}
.h9{height:41.354167pt;}
.h7{height:41.729167pt;}
.h8{height:43.455729pt;}
.h3{height:46.945312pt;}
.hb{height:51.666667pt;}
.hc{height:51.692708pt;}
.h5{height:52.161458pt;}
.h2{height:57.377604pt;}
.h6{height:62.593750pt;}
.h4{height:73.026042pt;}
.h1{height:842.666667pt;}
.h0{height:842.834667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x6{left:68.031467pt;}
.xd{left:94.488133pt;}
.xb{left:102.047200pt;}
.xf{left:105.826800pt;}
.x7{left:113.385867pt;}
.x10{left:115.231467pt;}
.xc{left:116.711200pt;}
.xe{left:124.724400pt;}
.x8{left:226.336400pt;}
.xa{left:270.147067pt;}
.x1{left:283.564400pt;}
.x4{left:338.582267pt;}
.x3{left:340.152533pt;}
.x5{left:357.449467pt;}
.x2{left:369.121333pt;}
}




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