
    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_9f4d44f7bbcd19b6fe4a322c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7324c2000843f5cfbee958e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_366d91811001161747d816bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_f31abeeb49137ddee6d2869d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_06cba0e68b1e4ed67c0e0f86.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9f4d44f7bbcd19b6fe4a322c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_366d91811001161747d816bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_55e33b2c9fee3f29a007d441.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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);}
.v2{vertical-align:-23.975400px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.975400px;}
.ls3{letter-spacing:-2.970000px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:380.700000px;}
.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;}
}
.ws89{word-spacing:-394.200000px;}
.ws4{word-spacing:-21.000000px;}
.wsc2{word-spacing:-15.000000px;}
.ws0{word-spacing:-10.494000px;}
.ws1{word-spacing:-8.745000px;}
.ws64{word-spacing:-6.540000px;}
.wsd6{word-spacing:-6.060000px;}
.wsda{word-spacing:-5.100000px;}
.ws6f{word-spacing:-5.040000px;}
.wsce{word-spacing:-4.680000px;}
.wsa6{word-spacing:-4.320000px;}
.ws74{word-spacing:-4.200000px;}
.ws7{word-spacing:-3.660000px;}
.wsb9{word-spacing:-3.540000px;}
.wsd0{word-spacing:-3.480000px;}
.wsbe{word-spacing:-2.940000px;}
.ws25{word-spacing:-2.700000px;}
.ws56{word-spacing:-2.640000px;}
.ws9a{word-spacing:-2.580000px;}
.wsa9{word-spacing:-2.400000px;}
.wsa7{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.160000px;}
.wsa8{word-spacing:-1.860000px;}
.wsd1{word-spacing:-1.800000px;}
.ws3f{word-spacing:-1.620000px;}
.ws20{word-spacing:-1.560000px;}
.ws2d{word-spacing:-1.260000px;}
.wsd9{word-spacing:-1.200000px;}
.ws85{word-spacing:-1.140000px;}
.wsb2{word-spacing:-1.020000px;}
.ws5b{word-spacing:-0.960000px;}
.ws68{word-spacing:-0.840000px;}
.ws95{word-spacing:-0.780000px;}
.ws41{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.540000px;}
.ws38{word-spacing:-0.480000px;}
.ws62{word-spacing:-0.420000px;}
.ws4d{word-spacing:-0.180000px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws29{word-spacing:0.120000px;}
.wsae{word-spacing:0.480000px;}
.wsc1{word-spacing:0.540000px;}
.ws45{word-spacing:0.660000px;}
.ws6{word-spacing:0.720000px;}
.ws79{word-spacing:0.780000px;}
.ws5e{word-spacing:0.960000px;}
.wsaa{word-spacing:1.260000px;}
.ws1c{word-spacing:1.320000px;}
.ws70{word-spacing:1.380000px;}
.wscf{word-spacing:1.440000px;}
.ws39{word-spacing:1.500000px;}
.ws84{word-spacing:1.680000px;}
.ws3c{word-spacing:1.740000px;}
.ws93{word-spacing:1.800000px;}
.wsb{word-spacing:2.040000px;}
.ws2a{word-spacing:2.280000px;}
.ws43{word-spacing:2.400000px;}
.wsa1{word-spacing:2.520000px;}
.wsc3{word-spacing:2.640000px;}
.ws2f{word-spacing:2.700000px;}
.ws60{word-spacing:2.820000px;}
.ws5c{word-spacing:2.940000px;}
.wsab{word-spacing:2.970000px;}
.ws4f{word-spacing:3.000000px;}
.ws35{word-spacing:3.060000px;}
.ws82{word-spacing:3.120000px;}
.ws69{word-spacing:3.240000px;}
.ws83{word-spacing:3.360000px;}
.ws72{word-spacing:3.660000px;}
.ws90{word-spacing:3.960000px;}
.ws67{word-spacing:4.020000px;}
.ws52{word-spacing:4.140000px;}
.ws26{word-spacing:4.200000px;}
.ws22{word-spacing:4.500000px;}
.ws24{word-spacing:4.680000px;}
.ws7e{word-spacing:4.860000px;}
.ws7c{word-spacing:5.280000px;}
.wsa5{word-spacing:5.340000px;}
.ws16{word-spacing:5.520000px;}
.ws30{word-spacing:5.580000px;}
.ws98{word-spacing:5.700000px;}
.ws40{word-spacing:5.880000px;}
.wsb3{word-spacing:5.940000px;}
.ws3e{word-spacing:6.000000px;}
.wsa4{word-spacing:6.060000px;}
.ws5d{word-spacing:6.120000px;}
.ws9e{word-spacing:6.240000px;}
.ws76{word-spacing:6.300000px;}
.ws9{word-spacing:6.480000px;}
.ws61{word-spacing:6.540000px;}
.ws8d{word-spacing:6.660000px;}
.wsd2{word-spacing:6.840000px;}
.ws1f{word-spacing:6.960000px;}
.wsb4{word-spacing:7.200000px;}
.ws6c{word-spacing:7.320000px;}
.ws91{word-spacing:7.440000px;}
.ws53{word-spacing:7.500000px;}
.ws9c{word-spacing:7.620000px;}
.ws5a{word-spacing:7.860000px;}
.ws36{word-spacing:7.920000px;}
.wsc9{word-spacing:8.100000px;}
.ws4b{word-spacing:8.160000px;}
.ws21{word-spacing:8.220000px;}
.ws44{word-spacing:8.280000px;}
.ws5f{word-spacing:8.340000px;}
.ws78{word-spacing:8.400000px;}
.ws8{word-spacing:8.580000px;}
.ws9b{word-spacing:8.640000px;}
.ws18{word-spacing:8.700000px;}
.wsca{word-spacing:9.120000px;}
.ws15{word-spacing:9.180000px;}
.ws3a{word-spacing:9.420000px;}
.ws8e{word-spacing:9.480000px;}
.ws47{word-spacing:9.600000px;}
.wsc7{word-spacing:9.840000px;}
.ws42{word-spacing:10.440000px;}
.wsbb{word-spacing:10.500000px;}
.wsd8{word-spacing:10.560000px;}
.wse{word-spacing:10.740000px;}
.ws99{word-spacing:10.800000px;}
.ws59{word-spacing:10.860000px;}
.ws7d{word-spacing:10.920000px;}
.ws2e{word-spacing:11.040000px;}
.wsd7{word-spacing:11.160000px;}
.wsd3{word-spacing:11.220000px;}
.wsc{word-spacing:11.340000px;}
.ws7b{word-spacing:11.460000px;}
.ws3b{word-spacing:11.640000px;}
.ws13{word-spacing:11.760000px;}
.ws80{word-spacing:11.940000px;}
.ws66{word-spacing:12.120000px;}
.ws1d{word-spacing:12.360000px;}
.wsbf{word-spacing:12.420000px;}
.wscc{word-spacing:13.080000px;}
.wscd{word-spacing:13.380000px;}
.ws4e{word-spacing:13.560000px;}
.ws92{word-spacing:13.680000px;}
.ws75{word-spacing:13.860000px;}
.ws31{word-spacing:13.980000px;}
.wsaf{word-spacing:14.100000px;}
.ws1b{word-spacing:14.160000px;}
.ws55{word-spacing:14.280000px;}
.ws48{word-spacing:14.700000px;}
.wsba{word-spacing:14.820000px;}
.ws7f{word-spacing:15.060000px;}
.wsb7{word-spacing:15.600000px;}
.ws33{word-spacing:15.780000px;}
.ws37{word-spacing:15.900000px;}
.ws10{word-spacing:16.020000px;}
.wsc4{word-spacing:16.080000px;}
.ws11{word-spacing:16.320000px;}
.ws96{word-spacing:16.740000px;}
.ws9d{word-spacing:16.860000px;}
.ws7a{word-spacing:16.980000px;}
.ws14{word-spacing:17.100000px;}
.ws1e{word-spacing:17.280000px;}
.ws32{word-spacing:17.400000px;}
.ws4c{word-spacing:17.580000px;}
.ws6b{word-spacing:18.000000px;}
.ws46{word-spacing:18.120000px;}
.ws8f{word-spacing:18.300000px;}
.ws17{word-spacing:18.360000px;}
.wscb{word-spacing:18.420000px;}
.wsb8{word-spacing:18.600000px;}
.wsc0{word-spacing:18.660000px;}
.ws94{word-spacing:18.840000px;}
.ws28{word-spacing:19.260000px;}
.ws9f{word-spacing:20.100000px;}
.wsb1{word-spacing:20.220000px;}
.ws97{word-spacing:20.460000px;}
.wsb5{word-spacing:20.700000px;}
.ws50{word-spacing:20.760000px;}
.ws23{word-spacing:20.880000px;}
.wsad{word-spacing:20.940000px;}
.wsa0{word-spacing:21.180000px;}
.wsbc{word-spacing:21.780000px;}
.ws3d{word-spacing:21.840000px;}
.ws51{word-spacing:22.020000px;}
.ws2b{word-spacing:22.320000px;}
.wsc8{word-spacing:22.860000px;}
.wsc5{word-spacing:23.100000px;}
.ws4a{word-spacing:23.400000px;}
.wsf{word-spacing:24.540000px;}
.ws65{word-spacing:25.440000px;}
.ws12{word-spacing:25.620000px;}
.wsb6{word-spacing:25.920000px;}
.ws2c{word-spacing:26.220000px;}
.ws77{word-spacing:27.180000px;}
.ws1a{word-spacing:27.300000px;}
.ws49{word-spacing:27.540000px;}
.ws73{word-spacing:28.920000px;}
.ws8c{word-spacing:29.640000px;}
.ws8b{word-spacing:30.060000px;}
.ws6a{word-spacing:30.120000px;}
.wsc6{word-spacing:30.420000px;}
.ws58{word-spacing:32.400000px;}
.wsd{word-spacing:32.700000px;}
.wsd4{word-spacing:33.720000px;}
.wsa2{word-spacing:34.800000px;}
.wsa3{word-spacing:35.880000px;}
.ws6d{word-spacing:36.720000px;}
.wsb0{word-spacing:37.380000px;}
.wsac{word-spacing:38.640000px;}
.ws27{word-spacing:38.760000px;}
.ws81{word-spacing:38.940000px;}
.ws57{word-spacing:40.680000px;}
.ws34{word-spacing:41.160000px;}
.ws54{word-spacing:45.480000px;}
.wsd5{word-spacing:45.840000px;}
.ws6e{word-spacing:50.700000px;}
.ws8a{word-spacing:60.156000px;}
.ws71{word-spacing:61.380000px;}
.ws63{word-spacing:87.120000px;}
.ws3{word-spacing:123.480000px;}
.ws2{word-spacing:160.200000px;}
.ws86{word-spacing:322.218000px;}
.ws88{word-spacing:335.718000px;}
.ws87{word-spacing:353.700000px;}
._26{margin-left:-380.700000px;}
._1a{margin-left:-102.120000px;}
._1c{margin-left:-76.440000px;}
._1b{margin-left:-65.760000px;}
._1f{margin-left:-53.940000px;}
._33{margin-left:-48.720000px;}
._23{margin-left:-42.720000px;}
._13{margin-left:-40.729800px;}
._31{margin-left:-37.140000px;}
._22{margin-left:-35.520000px;}
._16{margin-left:-33.300000px;}
._d{margin-left:-31.620000px;}
._1e{margin-left:-30.120000px;}
._2c{margin-left:-28.860000px;}
._32{margin-left:-27.613800px;}
._a{margin-left:-26.537400px;}
._2e{margin-left:-22.260000px;}
._21{margin-left:-16.560000px;}
._6{margin-left:-15.024000px;}
._12{margin-left:-14.004000px;}
._17{margin-left:-8.754000px;}
._2{margin-left:-6.949800px;}
._3{margin-left:-5.870400px;}
._1{margin-left:-3.850200px;}
._0{margin-left:-1.906200px;}
._9{width:1.218000px;}
._7{width:2.352000px;}
._8{width:3.366000px;}
._14{width:4.410000px;}
._15{width:6.012000px;}
._e{width:7.410000px;}
._c{width:8.454000px;}
._10{width:9.774000px;}
._b{width:11.748000px;}
._18{width:12.852000px;}
._30{width:13.908000px;}
._f{width:16.782000px;}
._19{width:18.432000px;}
._5{width:20.136000px;}
._1d{width:21.552000px;}
._2b{width:23.758200px;}
._11{width:25.038000px;}
._2f{width:28.734000px;}
._20{width:37.164000px;}
._2d{width:44.652000px;}
._4{width:56.220000px;}
._29{width:99.576000px;}
._28{width:102.330000px;}
._2a{width:107.676000px;}
._27{width:115.830000px;}
._24{width:349.218000px;}
._25{width:362.718000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.980000px;}
.fs3{font-size:41.976000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:59.427750px;}
.y182{bottom:94.428450px;}
.y152{bottom:101.460450px;}
.yf{bottom:106.299150px;}
.y181{bottom:112.428450px;}
.y129{bottom:114.195450px;}
.yba{bottom:114.635400px;}
.y151{bottom:119.460450px;}
.yd5{bottom:119.885400px;}
.ya3{bottom:119.904600px;}
.ye{bottom:129.294150px;}
.y180{bottom:130.428450px;}
.y128{bottom:132.195450px;}
.y150{bottom:137.460450px;}
.yd4{bottom:137.885400px;}
.ya2{bottom:137.904600px;}
.yd{bottom:146.551200px;}
.y127{bottom:150.195450px;}
.y17f{bottom:152.673450px;}
.y14f{bottom:155.460450px;}
.yd3{bottom:155.885400px;}
.ya1{bottom:155.904600px;}
.y6d{bottom:158.154600px;}
.y126{bottom:168.195450px;}
.yc{bottom:169.546200px;}
.y17e{bottom:170.673450px;}
.yd2{bottom:173.885400px;}
.ya0{bottom:173.904600px;}
.y6c{bottom:176.154600px;}
.y14e{bottom:177.705450px;}
.yf7{bottom:181.405650px;}
.yb{bottom:186.803100px;}
.y17d{bottom:188.673450px;}
.yd1{bottom:191.885400px;}
.y9f{bottom:191.904600px;}
.y14d{bottom:195.705450px;}
.y125{bottom:198.951300px;}
.yf6{bottom:199.405650px;}
.ya{bottom:209.798100px;}
.yd0{bottom:209.885400px;}
.y9e{bottom:209.904600px;}
.y17c{bottom:210.918450px;}
.y14c{bottom:213.705450px;}
.yf5{bottom:217.405650px;}
.y9{bottom:227.055150px;}
.ycf{bottom:227.885400px;}
.y9d{bottom:227.904600px;}
.y17b{bottom:228.918450px;}
.y14b{bottom:231.705450px;}
.yf4{bottom:235.405650px;}
.y124{bottom:241.189800px;}
.yce{bottom:245.885400px;}
.y8{bottom:250.050150px;}
.y9c{bottom:250.149600px;}
.y17a{bottom:251.163450px;}
.y14a{bottom:253.950450px;}
.yf3{bottom:257.650650px;}
.y123{bottom:259.189800px;}
.ycd{bottom:263.885400px;}
.y110{bottom:264.195150px;}
.y9b{bottom:268.149600px;}
.y179{bottom:269.163450px;}
.y149{bottom:271.950450px;}
.yf2{bottom:275.650650px;}
.y122{bottom:277.189800px;}
.ycc{bottom:281.885400px;}
.y10f{bottom:285.552150px;}
.y9a{bottom:286.149600px;}
.y32{bottom:288.943200px;}
.y148{bottom:289.950450px;}
.y178{bottom:291.408450px;}
.yf1{bottom:293.650650px;}
.y121{bottom:295.189800px;}
.ycb{bottom:299.885400px;}
.y48{bottom:301.273200px;}
.y99{bottom:304.149600px;}
.y10e{bottom:306.909150px;}
.y31{bottom:306.943200px;}
.y147{bottom:307.950450px;}
.y177{bottom:309.408450px;}
.yf0{bottom:311.650650px;}
.y120{bottom:317.434800px;}
.yca{bottom:317.885400px;}
.y47{bottom:319.273200px;}
.y98{bottom:322.149600px;}
.y30{bottom:324.943200px;}
.y10d{bottom:328.266150px;}
.yef{bottom:329.650650px;}
.y146{bottom:330.195450px;}
.y176{bottom:331.653450px;}
.y11f{bottom:335.434800px;}
.yc9{bottom:335.885400px;}
.y46{bottom:337.273200px;}
.y1a6{bottom:337.940400px;}
.y97{bottom:340.149600px;}
.y2f{bottom:342.943200px;}
.yee{bottom:347.650650px;}
.y145{bottom:348.195450px;}
.y10c{bottom:349.623150px;}
.y175{bottom:349.653450px;}
.yc8{bottom:353.885400px;}
.y45{bottom:355.273200px;}
.y1a5{bottom:355.940400px;}
.y96{bottom:358.149600px;}
.y2e{bottom:360.943200px;}
.yed{bottom:365.650650px;}
.y144{bottom:366.195450px;}
.y174{bottom:367.653450px;}
.y10b{bottom:370.980150px;}
.yc7{bottom:371.885400px;}
.y44{bottom:373.273200px;}
.y1a4{bottom:373.940400px;}
.y11e{bottom:374.689800px;}
.y95{bottom:376.149600px;}
.y2d{bottom:378.943200px;}
.yec{bottom:383.650650px;}
.y143{bottom:384.195450px;}
.y173{bottom:389.898450px;}
.y43{bottom:391.273200px;}
.y10a{bottom:392.337150px;}
.y11d{bottom:392.689800px;}
.y94{bottom:394.149600px;}
.y1a3{bottom:396.185400px;}
.y2c{bottom:396.943200px;}
.y142{bottom:402.195450px;}
.yeb{bottom:405.895650px;}
.y172{bottom:407.898450px;}
.y42{bottom:409.273200px;}
.y11c{bottom:410.689800px;}
.y93{bottom:412.149600px;}
.y109{bottom:413.694150px;}
.y1a2{bottom:414.185400px;}
.y2b{bottom:414.943200px;}
.yea{bottom:423.895650px;}
.y141{bottom:424.440450px;}
.y41{bottom:427.273200px;}
.y171{bottom:430.143450px;}
.y1a1{bottom:432.185400px;}
.y2a{bottom:432.943200px;}
.yc6{bottom:433.400400px;}
.y92{bottom:434.394600px;}
.y108{bottom:435.051150px;}
.ye9{bottom:441.895650px;}
.y140{bottom:442.440450px;}
.y40{bottom:445.273200px;}
.y170{bottom:448.143450px;}
.y6b{bottom:450.399600px;}
.y29{bottom:450.943200px;}
.yc5{bottom:451.400400px;}
.y91{bottom:452.394600px;}
.y1a0{bottom:454.430400px;}
.y107{bottom:456.408150px;}
.ye8{bottom:459.895650px;}
.y13f{bottom:460.440450px;}
.yb9{bottom:460.880400px;}
.y3f{bottom:463.273200px;}
.y16f{bottom:466.143450px;}
.y6a{bottom:468.399600px;}
.y28{bottom:468.943200px;}
.yc4{bottom:469.400400px;}
.y90{bottom:470.394600px;}
.y19f{bottom:472.430400px;}
.y106{bottom:472.608150px;}
.y13e{bottom:478.440450px;}
.yb8{bottom:478.880400px;}
.y3e{bottom:481.273200px;}
.y69{bottom:486.399600px;}
.y27{bottom:486.943200px;}
.yc3{bottom:487.400400px;}
.y16e{bottom:488.388450px;}
.y8f{bottom:488.394600px;}
.ye7{bottom:490.651650px;}
.y105{bottom:493.749150px;}
.y19e{bottom:494.675400px;}
.yb7{bottom:496.880400px;}
.y104{bottom:498.690150px;}
.y3d{bottom:499.273200px;}
.y13d{bottom:500.685450px;}
.y68{bottom:504.399600px;}
.y26{bottom:504.943200px;}
.yc2{bottom:505.400400px;}
.y16d{bottom:506.388450px;}
.y8e{bottom:506.394600px;}
.y19d{bottom:512.675400px;}
.yb6{bottom:514.880400px;}
.y103{bottom:514.890150px;}
.y3c{bottom:517.273200px;}
.y13c{bottom:518.685450px;}
.y67{bottom:522.399600px;}
.y25{bottom:522.943200px;}
.yc1{bottom:523.400400px;}
.y8d{bottom:524.394600px;}
.y16c{bottom:528.633450px;}
.yb5{bottom:532.880400px;}
.y19c{bottom:534.920400px;}
.y3b{bottom:535.273200px;}
.y13b{bottom:536.685450px;}
.y66{bottom:540.399600px;}
.y24{bottom:540.943200px;}
.yc0{bottom:541.400400px;}
.y8c{bottom:542.394600px;}
.yd7{bottom:546.620400px;}
.y16b{bottom:546.633450px;}
.yb4{bottom:550.880400px;}
.y19b{bottom:552.920400px;}
.y3a{bottom:553.273200px;}
.y13a{bottom:554.685450px;}
.y65{bottom:558.399600px;}
.y23{bottom:558.943200px;}
.ybf{bottom:559.400400px;}
.yd6{bottom:564.620400px;}
.y8b{bottom:564.639600px;}
.y16a{bottom:568.878450px;}
.ye6{bottom:568.880400px;}
.y39{bottom:571.273200px;}
.y139{bottom:572.685450px;}
.yb3{bottom:573.125400px;}
.y19a{bottom:575.165400px;}
.y64{bottom:576.399600px;}
.y22{bottom:576.943200px;}
.y8a{bottom:582.639600px;}
.y169{bottom:586.878450px;}
.ye5{bottom:586.880400px;}
.yb2{bottom:591.125400px;}
.y199{bottom:593.165400px;}
.y38{bottom:593.518200px;}
.y63{bottom:594.399600px;}
.y138{bottom:594.930450px;}
.y21{bottom:594.943200px;}
.y89{bottom:600.639600px;}
.y168{bottom:604.878450px;}
.ye4{bottom:604.880400px;}
.yb1{bottom:609.125400px;}
.y37{bottom:611.518200px;}
.y137{bottom:612.930450px;}
.y20{bottom:612.943200px;}
.y198{bottom:615.410400px;}
.y88{bottom:618.639600px;}
.y62{bottom:625.155600px;}
.y167{bottom:627.123450px;}
.yb0{bottom:627.125400px;}
.y36{bottom:629.518200px;}
.y136{bottom:630.930450px;}
.y1f{bottom:630.943200px;}
.y197{bottom:633.410400px;}
.y87{bottom:636.639600px;}
.y166{bottom:645.123450px;}
.yaf{bottom:645.125400px;}
.y35{bottom:647.518200px;}
.y135{bottom:648.930450px;}
.y1e{bottom:648.943200px;}
.y102{bottom:651.833550px;}
.y196{bottom:655.655400px;}
.y86{bottom:658.884600px;}
.yae{bottom:663.125400px;}
.y34{bottom:665.518200px;}
.y134{bottom:666.930450px;}
.y11b{bottom:666.934800px;}
.y165{bottom:667.368450px;}
.y61{bottom:667.370400px;}
.y101{bottom:673.190550px;}
.y195{bottom:673.655400px;}
.y85{bottom:676.884600px;}
.y1d{bottom:679.699200px;}
.yad{bottom:681.125400px;}
.y33{bottom:683.518200px;}
.y133{bottom:684.930450px;}
.y11a{bottom:684.934800px;}
.y164{bottom:685.368450px;}
.y60{bottom:685.370400px;}
.y100{bottom:694.547550px;}
.y84{bottom:694.884600px;}
.y194{bottom:695.900400px;}
.yac{bottom:699.125400px;}
.y132{bottom:702.930450px;}
.y119{bottom:702.934800px;}
.y163{bottom:703.368450px;}
.y5f{bottom:703.370400px;}
.y83{bottom:712.884600px;}
.y193{bottom:713.900400px;}
.yff{bottom:715.904550px;}
.y131{bottom:720.930450px;}
.y5e{bottom:721.370400px;}
.y118{bottom:725.179800px;}
.y82{bottom:730.884600px;}
.y192{bottom:731.900400px;}
.y162{bottom:734.124300px;}
.yfe{bottom:737.261550px;}
.y130{bottom:738.930450px;}
.y5d{bottom:739.370400px;}
.y117{bottom:743.179800px;}
.y81{bottom:753.129600px;}
.y191{bottom:754.145400px;}
.y1b{bottom:755.356950px;}
.y12f{bottom:756.930450px;}
.y5c{bottom:757.370400px;}
.yfd{bottom:758.618550px;}
.y116{bottom:761.179800px;}
.y80{bottom:771.129600px;}
.y190{bottom:772.145400px;}
.y1a{bottom:773.596950px;}
.y12e{bottom:774.930450px;}
.y5b{bottom:775.370400px;}
.y115{bottom:779.179800px;}
.yfc{bottom:779.975550px;}
.y7f{bottom:789.129600px;}
.y18f{bottom:790.145400px;}
.y12d{bottom:792.930450px;}
.y5a{bottom:793.370400px;}
.y19{bottom:795.751950px;}
.y114{bottom:797.179800px;}
.yfb{bottom:801.332550px;}
.y7e{bottom:807.129600px;}
.y15e{bottom:810.399600px;}
.y59{bottom:811.370400px;}
.y18e{bottom:812.390400px;}
.y18{bottom:813.751950px;}
.yab{bottom:815.615400px;}
.yf9{bottom:822.689550px;}
.y7d{bottom:825.129600px;}
.yfa{bottom:826.942050px;}
.y15d{bottom:828.399600px;}
.y58{bottom:829.370400px;}
.y18d{bottom:830.390400px;}
.y17{bottom:831.751950px;}
.y12c{bottom:832.185450px;}
.yaa{bottom:833.615400px;}
.y113{bottom:836.434800px;}
.y7c{bottom:843.129600px;}
.yf8{bottom:843.142050px;}
.y15c{bottom:846.399600px;}
.y57{bottom:847.370400px;}
.y18c{bottom:848.390400px;}
.y16{bottom:849.751950px;}
.y12b{bottom:850.185450px;}
.ya9{bottom:851.615400px;}
.y112{bottom:854.434800px;}
.y7b{bottom:861.129600px;}
.y15b{bottom:864.399600px;}
.y56{bottom:865.370400px;}
.y15{bottom:867.751950px;}
.y12a{bottom:868.185450px;}
.ya8{bottom:869.615400px;}
.y18b{bottom:870.635400px;}
.y111{bottom:872.434800px;}
.ye3{bottom:879.125400px;}
.y15a{bottom:882.399600px;}
.y55{bottom:883.370400px;}
.y7a{bottom:883.374600px;}
.y14{bottom:885.751950px;}
.ya7{bottom:887.615400px;}
.y18a{bottom:888.635400px;}
.ye2{bottom:897.125400px;}
.y159{bottom:900.399600px;}
.y54{bottom:901.370400px;}
.y79{bottom:901.374600px;}
.y13{bottom:903.751950px;}
.ya6{bottom:905.615400px;}
.y189{bottom:910.880400px;}
.y158{bottom:918.399600px;}
.y53{bottom:919.370400px;}
.y78{bottom:919.374600px;}
.y12{bottom:921.751950px;}
.ya5{bottom:923.615400px;}
.y188{bottom:928.880400px;}
.y52{bottom:937.370400px;}
.y77{bottom:937.374600px;}
.y11{bottom:939.751950px;}
.ya4{bottom:941.615400px;}
.ye1{bottom:941.630400px;}
.y187{bottom:946.880400px;}
.y157{bottom:949.155600px;}
.y76{bottom:955.374600px;}
.y10{bottom:957.991950px;}
.y51{bottom:959.615400px;}
.ye0{bottom:959.630400px;}
.y186{bottom:969.125400px;}
.y75{bottom:973.374600px;}
.y50{bottom:977.615400px;}
.ydf{bottom:977.630400px;}
.y185{bottom:987.125400px;}
.y156{bottom:991.370400px;}
.y161{bottom:991.374600px;}
.y4f{bottom:995.615400px;}
.y74{bottom:995.619600px;}
.yde{bottom:995.630400px;}
.y1c{bottom:1002.526950px;}
.y184{bottom:1005.125400px;}
.y155{bottom:1009.370400px;}
.y160{bottom:1009.374600px;}
.y4e{bottom:1013.615400px;}
.y73{bottom:1013.619600px;}
.ydd{bottom:1013.630400px;}
.y154{bottom:1027.370400px;}
.y15f{bottom:1027.374600px;}
.y4d{bottom:1031.615400px;}
.y72{bottom:1031.619600px;}
.ydc{bottom:1031.630400px;}
.y7{bottom:1040.237700px;}
.y153{bottom:1045.370400px;}
.y4c{bottom:1049.615400px;}
.y71{bottom:1049.619600px;}
.ydb{bottom:1049.630400px;}
.ybe{bottom:1049.645400px;}
.y183{bottom:1063.370400px;}
.y4b{bottom:1067.615400px;}
.y70{bottom:1067.619600px;}
.yda{bottom:1067.630400px;}
.ybd{bottom:1067.645400px;}
.y6{bottom:1074.593550px;}
.y4a{bottom:1085.615400px;}
.y6f{bottom:1085.619600px;}
.yd9{bottom:1085.630400px;}
.ybc{bottom:1085.645400px;}
.y5{bottom:1099.793550px;}
.y49{bottom:1103.615400px;}
.y6e{bottom:1103.619600px;}
.yd8{bottom:1103.630400px;}
.ybb{bottom:1103.645400px;}
.y4{bottom:1158.513750px;}
.y2{bottom:1158.611850px;}
.y1{bottom:1183.316850px;}
.h5{height:24.304951px;}
.hb{height:36.597656px;}
.h2{height:37.520508px;}
.ha{height:40.664062px;}
.h9{height:40.729453px;}
.h6{height:41.689453px;}
.h7{height:51.686484px;}
.h8{height:52.646484px;}
.h3{height:56.929688px;}
.h4{height:63.175781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x13{left:110.064300px;}
.x33{left:112.824300px;}
.x15{left:117.140550px;}
.xd{left:120.909300px;}
.x12{left:124.464300px;}
.x5{left:127.561650px;}
.x11{left:130.479300px;}
.x10{left:134.064300px;}
.xf{left:135.264300px;}
.x16{left:144.626550px;}
.x1b{left:148.433550px;}
.x1d{left:151.835550px;}
.x1c{left:156.331050px;}
.x34{left:178.209300px;}
.xe{left:190.749300px;}
.x17{left:218.485050px;}
.x6{left:231.884850px;}
.x18{left:233.983050px;}
.x14{left:238.584300px;}
.x19{left:330.724050px;}
.x1a{left:334.477050px;}
.x9{left:474.104100px;}
.x31{left:480.616350px;}
.x1f{left:481.830600px;}
.x1e{left:484.085100px;}
.xa{left:491.229300px;}
.x30{left:492.406350px;}
.x8{left:495.359100px;}
.xc{left:512.064300px;}
.x21{left:514.041600px;}
.xb{left:516.639300px;}
.x2f{left:522.992100px;}
.x20{left:526.043100px;}
.x32{left:546.001350px;}
.x4{left:556.382550px;}
.x24{left:561.494100px;}
.x23{left:570.620100px;}
.x25{left:598.848600px;}
.x26{left:600.158100px;}
.x22{left:630.074100px;}
.x28{left:638.822100px;}
.x27{left:648.650100px;}
.x2{left:657.868650px;}
.x29{left:676.176600px;}
.x2a{left:677.486100px;}
.x7{left:683.189850px;}
.x2c{left:716.150100px;}
.x2b{left:725.978100px;}
.x2d{left:753.504600px;}
.x2e{left:754.814100px;}
.x3{left:773.114100px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.311467pt;}
.ls3{letter-spacing:-2.640000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:338.400000pt;}
.ws89{word-spacing:-350.400000pt;}
.ws4{word-spacing:-18.666667pt;}
.wsc2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.ws1{word-spacing:-7.773333pt;}
.ws64{word-spacing:-5.813333pt;}
.wsd6{word-spacing:-5.386667pt;}
.wsda{word-spacing:-4.533333pt;}
.ws6f{word-spacing:-4.480000pt;}
.wsce{word-spacing:-4.160000pt;}
.wsa6{word-spacing:-3.840000pt;}
.ws74{word-spacing:-3.733333pt;}
.ws7{word-spacing:-3.253333pt;}
.wsb9{word-spacing:-3.146667pt;}
.wsd0{word-spacing:-3.093333pt;}
.wsbe{word-spacing:-2.613333pt;}
.ws25{word-spacing:-2.400000pt;}
.ws56{word-spacing:-2.346667pt;}
.ws9a{word-spacing:-2.293333pt;}
.wsa9{word-spacing:-2.133333pt;}
.wsa7{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-1.920000pt;}
.wsa8{word-spacing:-1.653333pt;}
.wsd1{word-spacing:-1.600000pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws20{word-spacing:-1.386667pt;}
.ws2d{word-spacing:-1.120000pt;}
.wsd9{word-spacing:-1.066667pt;}
.ws85{word-spacing:-1.013333pt;}
.wsb2{word-spacing:-0.906667pt;}
.ws5b{word-spacing:-0.853333pt;}
.ws68{word-spacing:-0.746667pt;}
.ws95{word-spacing:-0.693333pt;}
.ws41{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws38{word-spacing:-0.426667pt;}
.ws62{word-spacing:-0.373333pt;}
.ws4d{word-spacing:-0.160000pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws29{word-spacing:0.106667pt;}
.wsae{word-spacing:0.426667pt;}
.wsc1{word-spacing:0.480000pt;}
.ws45{word-spacing:0.586667pt;}
.ws6{word-spacing:0.640000pt;}
.ws79{word-spacing:0.693333pt;}
.ws5e{word-spacing:0.853333pt;}
.wsaa{word-spacing:1.120000pt;}
.ws1c{word-spacing:1.173333pt;}
.ws70{word-spacing:1.226667pt;}
.wscf{word-spacing:1.280000pt;}
.ws39{word-spacing:1.333333pt;}
.ws84{word-spacing:1.493333pt;}
.ws3c{word-spacing:1.546667pt;}
.ws93{word-spacing:1.600000pt;}
.wsb{word-spacing:1.813333pt;}
.ws2a{word-spacing:2.026667pt;}
.ws43{word-spacing:2.133333pt;}
.wsa1{word-spacing:2.240000pt;}
.wsc3{word-spacing:2.346667pt;}
.ws2f{word-spacing:2.400000pt;}
.ws60{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.613333pt;}
.wsab{word-spacing:2.640000pt;}
.ws4f{word-spacing:2.666667pt;}
.ws35{word-spacing:2.720000pt;}
.ws82{word-spacing:2.773333pt;}
.ws69{word-spacing:2.880000pt;}
.ws83{word-spacing:2.986667pt;}
.ws72{word-spacing:3.253333pt;}
.ws90{word-spacing:3.520000pt;}
.ws67{word-spacing:3.573333pt;}
.ws52{word-spacing:3.680000pt;}
.ws26{word-spacing:3.733333pt;}
.ws22{word-spacing:4.000000pt;}
.ws24{word-spacing:4.160000pt;}
.ws7e{word-spacing:4.320000pt;}
.ws7c{word-spacing:4.693333pt;}
.wsa5{word-spacing:4.746667pt;}
.ws16{word-spacing:4.906667pt;}
.ws30{word-spacing:4.960000pt;}
.ws98{word-spacing:5.066667pt;}
.ws40{word-spacing:5.226667pt;}
.wsb3{word-spacing:5.280000pt;}
.ws3e{word-spacing:5.333333pt;}
.wsa4{word-spacing:5.386667pt;}
.ws5d{word-spacing:5.440000pt;}
.ws9e{word-spacing:5.546667pt;}
.ws76{word-spacing:5.600000pt;}
.ws9{word-spacing:5.760000pt;}
.ws61{word-spacing:5.813333pt;}
.ws8d{word-spacing:5.920000pt;}
.wsd2{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.186667pt;}
.wsb4{word-spacing:6.400000pt;}
.ws6c{word-spacing:6.506667pt;}
.ws91{word-spacing:6.613333pt;}
.ws53{word-spacing:6.666667pt;}
.ws9c{word-spacing:6.773333pt;}
.ws5a{word-spacing:6.986667pt;}
.ws36{word-spacing:7.040000pt;}
.wsc9{word-spacing:7.200000pt;}
.ws4b{word-spacing:7.253333pt;}
.ws21{word-spacing:7.306667pt;}
.ws44{word-spacing:7.360000pt;}
.ws5f{word-spacing:7.413333pt;}
.ws78{word-spacing:7.466667pt;}
.ws8{word-spacing:7.626667pt;}
.ws9b{word-spacing:7.680000pt;}
.ws18{word-spacing:7.733333pt;}
.wsca{word-spacing:8.106667pt;}
.ws15{word-spacing:8.160000pt;}
.ws3a{word-spacing:8.373333pt;}
.ws8e{word-spacing:8.426667pt;}
.ws47{word-spacing:8.533333pt;}
.wsc7{word-spacing:8.746667pt;}
.ws42{word-spacing:9.280000pt;}
.wsbb{word-spacing:9.333333pt;}
.wsd8{word-spacing:9.386667pt;}
.wse{word-spacing:9.546667pt;}
.ws99{word-spacing:9.600000pt;}
.ws59{word-spacing:9.653333pt;}
.ws7d{word-spacing:9.706667pt;}
.ws2e{word-spacing:9.813333pt;}
.wsd7{word-spacing:9.920000pt;}
.wsd3{word-spacing:9.973333pt;}
.wsc{word-spacing:10.080000pt;}
.ws7b{word-spacing:10.186667pt;}
.ws3b{word-spacing:10.346667pt;}
.ws13{word-spacing:10.453333pt;}
.ws80{word-spacing:10.613333pt;}
.ws66{word-spacing:10.773333pt;}
.ws1d{word-spacing:10.986667pt;}
.wsbf{word-spacing:11.040000pt;}
.wscc{word-spacing:11.626667pt;}
.wscd{word-spacing:11.893333pt;}
.ws4e{word-spacing:12.053333pt;}
.ws92{word-spacing:12.160000pt;}
.ws75{word-spacing:12.320000pt;}
.ws31{word-spacing:12.426667pt;}
.wsaf{word-spacing:12.533333pt;}
.ws1b{word-spacing:12.586667pt;}
.ws55{word-spacing:12.693333pt;}
.ws48{word-spacing:13.066667pt;}
.wsba{word-spacing:13.173333pt;}
.ws7f{word-spacing:13.386667pt;}
.wsb7{word-spacing:13.866667pt;}
.ws33{word-spacing:14.026667pt;}
.ws37{word-spacing:14.133333pt;}
.ws10{word-spacing:14.240000pt;}
.wsc4{word-spacing:14.293333pt;}
.ws11{word-spacing:14.506667pt;}
.ws96{word-spacing:14.880000pt;}
.ws9d{word-spacing:14.986667pt;}
.ws7a{word-spacing:15.093333pt;}
.ws14{word-spacing:15.200000pt;}
.ws1e{word-spacing:15.360000pt;}
.ws32{word-spacing:15.466667pt;}
.ws4c{word-spacing:15.626667pt;}
.ws6b{word-spacing:16.000000pt;}
.ws46{word-spacing:16.106667pt;}
.ws8f{word-spacing:16.266667pt;}
.ws17{word-spacing:16.320000pt;}
.wscb{word-spacing:16.373333pt;}
.wsb8{word-spacing:16.533333pt;}
.wsc0{word-spacing:16.586667pt;}
.ws94{word-spacing:16.746667pt;}
.ws28{word-spacing:17.120000pt;}
.ws9f{word-spacing:17.866667pt;}
.wsb1{word-spacing:17.973333pt;}
.ws97{word-spacing:18.186667pt;}
.wsb5{word-spacing:18.400000pt;}
.ws50{word-spacing:18.453333pt;}
.ws23{word-spacing:18.560000pt;}
.wsad{word-spacing:18.613333pt;}
.wsa0{word-spacing:18.826667pt;}
.wsbc{word-spacing:19.360000pt;}
.ws3d{word-spacing:19.413333pt;}
.ws51{word-spacing:19.573333pt;}
.ws2b{word-spacing:19.840000pt;}
.wsc8{word-spacing:20.320000pt;}
.wsc5{word-spacing:20.533333pt;}
.ws4a{word-spacing:20.800000pt;}
.wsf{word-spacing:21.813333pt;}
.ws65{word-spacing:22.613333pt;}
.ws12{word-spacing:22.773333pt;}
.wsb6{word-spacing:23.040000pt;}
.ws2c{word-spacing:23.306667pt;}
.ws77{word-spacing:24.160000pt;}
.ws1a{word-spacing:24.266667pt;}
.ws49{word-spacing:24.480000pt;}
.ws73{word-spacing:25.706667pt;}
.ws8c{word-spacing:26.346667pt;}
.ws8b{word-spacing:26.720000pt;}
.ws6a{word-spacing:26.773333pt;}
.wsc6{word-spacing:27.040000pt;}
.ws58{word-spacing:28.800000pt;}
.wsd{word-spacing:29.066667pt;}
.wsd4{word-spacing:29.973333pt;}
.wsa2{word-spacing:30.933333pt;}
.wsa3{word-spacing:31.893333pt;}
.ws6d{word-spacing:32.640000pt;}
.wsb0{word-spacing:33.226667pt;}
.wsac{word-spacing:34.346667pt;}
.ws27{word-spacing:34.453333pt;}
.ws81{word-spacing:34.613333pt;}
.ws57{word-spacing:36.160000pt;}
.ws34{word-spacing:36.586667pt;}
.ws54{word-spacing:40.426667pt;}
.wsd5{word-spacing:40.746667pt;}
.ws6e{word-spacing:45.066667pt;}
.ws8a{word-spacing:53.472000pt;}
.ws71{word-spacing:54.560000pt;}
.ws63{word-spacing:77.440000pt;}
.ws3{word-spacing:109.760000pt;}
.ws2{word-spacing:142.400000pt;}
.ws86{word-spacing:286.416000pt;}
.ws88{word-spacing:298.416000pt;}
.ws87{word-spacing:314.400000pt;}
._26{margin-left:-338.400000pt;}
._1a{margin-left:-90.773333pt;}
._1c{margin-left:-67.946667pt;}
._1b{margin-left:-58.453333pt;}
._1f{margin-left:-47.946667pt;}
._33{margin-left:-43.306667pt;}
._23{margin-left:-37.973333pt;}
._13{margin-left:-36.204267pt;}
._31{margin-left:-33.013333pt;}
._22{margin-left:-31.573333pt;}
._16{margin-left:-29.600000pt;}
._d{margin-left:-28.106667pt;}
._1e{margin-left:-26.773333pt;}
._2c{margin-left:-25.653333pt;}
._32{margin-left:-24.545600pt;}
._a{margin-left:-23.588800pt;}
._2e{margin-left:-19.786667pt;}
._21{margin-left:-14.720000pt;}
._6{margin-left:-13.354667pt;}
._12{margin-left:-12.448000pt;}
._17{margin-left:-7.781333pt;}
._2{margin-left:-6.177600pt;}
._3{margin-left:-5.218133pt;}
._1{margin-left:-3.422400pt;}
._0{margin-left:-1.694400pt;}
._9{width:1.082667pt;}
._7{width:2.090667pt;}
._8{width:2.992000pt;}
._14{width:3.920000pt;}
._15{width:5.344000pt;}
._e{width:6.586667pt;}
._c{width:7.514667pt;}
._10{width:8.688000pt;}
._b{width:10.442667pt;}
._18{width:11.424000pt;}
._30{width:12.362667pt;}
._f{width:14.917333pt;}
._19{width:16.384000pt;}
._5{width:17.898667pt;}
._1d{width:19.157333pt;}
._2b{width:21.118400pt;}
._11{width:22.256000pt;}
._2f{width:25.541333pt;}
._20{width:33.034667pt;}
._2d{width:39.690667pt;}
._4{width:49.973333pt;}
._29{width:88.512000pt;}
._28{width:90.960000pt;}
._2a{width:95.712000pt;}
._27{width:102.960000pt;}
._24{width:310.416000pt;}
._25{width:322.416000pt;}
.fs4{font-size:31.093333pt;}
.fs3{font-size:37.312000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:52.824667pt;}
.y182{bottom:83.936400pt;}
.y152{bottom:90.187067pt;}
.yf{bottom:94.488133pt;}
.y181{bottom:99.936400pt;}
.y129{bottom:101.507067pt;}
.yba{bottom:101.898133pt;}
.y151{bottom:106.187067pt;}
.yd5{bottom:106.564800pt;}
.ya3{bottom:106.581867pt;}
.ye{bottom:114.928133pt;}
.y180{bottom:115.936400pt;}
.y128{bottom:117.507067pt;}
.y150{bottom:122.187067pt;}
.yd4{bottom:122.564800pt;}
.ya2{bottom:122.581867pt;}
.yd{bottom:130.267733pt;}
.y127{bottom:133.507067pt;}
.y17f{bottom:135.709733pt;}
.y14f{bottom:138.187067pt;}
.yd3{bottom:138.564800pt;}
.ya1{bottom:138.581867pt;}
.y6d{bottom:140.581867pt;}
.y126{bottom:149.507067pt;}
.yc{bottom:150.707733pt;}
.y17e{bottom:151.709733pt;}
.yd2{bottom:154.564800pt;}
.ya0{bottom:154.581867pt;}
.y6c{bottom:156.581867pt;}
.y14e{bottom:157.960400pt;}
.yf7{bottom:161.249467pt;}
.yb{bottom:166.047200pt;}
.y17d{bottom:167.709733pt;}
.yd1{bottom:170.564800pt;}
.y9f{bottom:170.581867pt;}
.y14d{bottom:173.960400pt;}
.y125{bottom:176.845600pt;}
.yf6{bottom:177.249467pt;}
.ya{bottom:186.487200pt;}
.yd0{bottom:186.564800pt;}
.y9e{bottom:186.581867pt;}
.y17c{bottom:187.483067pt;}
.y14c{bottom:189.960400pt;}
.yf5{bottom:193.249467pt;}
.y9{bottom:201.826800pt;}
.ycf{bottom:202.564800pt;}
.y9d{bottom:202.581867pt;}
.y17b{bottom:203.483067pt;}
.y14b{bottom:205.960400pt;}
.yf4{bottom:209.249467pt;}
.y124{bottom:214.390933pt;}
.yce{bottom:218.564800pt;}
.y8{bottom:222.266800pt;}
.y9c{bottom:222.355200pt;}
.y17a{bottom:223.256400pt;}
.y14a{bottom:225.733733pt;}
.yf3{bottom:229.022800pt;}
.y123{bottom:230.390933pt;}
.ycd{bottom:234.564800pt;}
.y110{bottom:234.840133pt;}
.y9b{bottom:238.355200pt;}
.y179{bottom:239.256400pt;}
.y149{bottom:241.733733pt;}
.yf2{bottom:245.022800pt;}
.y122{bottom:246.390933pt;}
.ycc{bottom:250.564800pt;}
.y10f{bottom:253.824133pt;}
.y9a{bottom:254.355200pt;}
.y32{bottom:256.838400pt;}
.y148{bottom:257.733733pt;}
.y178{bottom:259.029733pt;}
.yf1{bottom:261.022800pt;}
.y121{bottom:262.390933pt;}
.ycb{bottom:266.564800pt;}
.y48{bottom:267.798400pt;}
.y99{bottom:270.355200pt;}
.y10e{bottom:272.808133pt;}
.y31{bottom:272.838400pt;}
.y147{bottom:273.733733pt;}
.y177{bottom:275.029733pt;}
.yf0{bottom:277.022800pt;}
.y120{bottom:282.164267pt;}
.yca{bottom:282.564800pt;}
.y47{bottom:283.798400pt;}
.y98{bottom:286.355200pt;}
.y30{bottom:288.838400pt;}
.y10d{bottom:291.792133pt;}
.yef{bottom:293.022800pt;}
.y146{bottom:293.507067pt;}
.y176{bottom:294.803067pt;}
.y11f{bottom:298.164267pt;}
.yc9{bottom:298.564800pt;}
.y46{bottom:299.798400pt;}
.y1a6{bottom:300.391467pt;}
.y97{bottom:302.355200pt;}
.y2f{bottom:304.838400pt;}
.yee{bottom:309.022800pt;}
.y145{bottom:309.507067pt;}
.y10c{bottom:310.776133pt;}
.y175{bottom:310.803067pt;}
.yc8{bottom:314.564800pt;}
.y45{bottom:315.798400pt;}
.y1a5{bottom:316.391467pt;}
.y96{bottom:318.355200pt;}
.y2e{bottom:320.838400pt;}
.yed{bottom:325.022800pt;}
.y144{bottom:325.507067pt;}
.y174{bottom:326.803067pt;}
.y10b{bottom:329.760133pt;}
.yc7{bottom:330.564800pt;}
.y44{bottom:331.798400pt;}
.y1a4{bottom:332.391467pt;}
.y11e{bottom:333.057600pt;}
.y95{bottom:334.355200pt;}
.y2d{bottom:336.838400pt;}
.yec{bottom:341.022800pt;}
.y143{bottom:341.507067pt;}
.y173{bottom:346.576400pt;}
.y43{bottom:347.798400pt;}
.y10a{bottom:348.744133pt;}
.y11d{bottom:349.057600pt;}
.y94{bottom:350.355200pt;}
.y1a3{bottom:352.164800pt;}
.y2c{bottom:352.838400pt;}
.y142{bottom:357.507067pt;}
.yeb{bottom:360.796133pt;}
.y172{bottom:362.576400pt;}
.y42{bottom:363.798400pt;}
.y11c{bottom:365.057600pt;}
.y93{bottom:366.355200pt;}
.y109{bottom:367.728133pt;}
.y1a2{bottom:368.164800pt;}
.y2b{bottom:368.838400pt;}
.yea{bottom:376.796133pt;}
.y141{bottom:377.280400pt;}
.y41{bottom:379.798400pt;}
.y171{bottom:382.349733pt;}
.y1a1{bottom:384.164800pt;}
.y2a{bottom:384.838400pt;}
.yc6{bottom:385.244800pt;}
.y92{bottom:386.128533pt;}
.y108{bottom:386.712133pt;}
.ye9{bottom:392.796133pt;}
.y140{bottom:393.280400pt;}
.y40{bottom:395.798400pt;}
.y170{bottom:398.349733pt;}
.y6b{bottom:400.355200pt;}
.y29{bottom:400.838400pt;}
.yc5{bottom:401.244800pt;}
.y91{bottom:402.128533pt;}
.y1a0{bottom:403.938133pt;}
.y107{bottom:405.696133pt;}
.ye8{bottom:408.796133pt;}
.y13f{bottom:409.280400pt;}
.yb9{bottom:409.671467pt;}
.y3f{bottom:411.798400pt;}
.y16f{bottom:414.349733pt;}
.y6a{bottom:416.355200pt;}
.y28{bottom:416.838400pt;}
.yc4{bottom:417.244800pt;}
.y90{bottom:418.128533pt;}
.y19f{bottom:419.938133pt;}
.y106{bottom:420.096133pt;}
.y13e{bottom:425.280400pt;}
.yb8{bottom:425.671467pt;}
.y3e{bottom:427.798400pt;}
.y69{bottom:432.355200pt;}
.y27{bottom:432.838400pt;}
.yc3{bottom:433.244800pt;}
.y16e{bottom:434.123067pt;}
.y8f{bottom:434.128533pt;}
.ye7{bottom:436.134800pt;}
.y105{bottom:438.888133pt;}
.y19e{bottom:439.711467pt;}
.yb7{bottom:441.671467pt;}
.y104{bottom:443.280133pt;}
.y3d{bottom:443.798400pt;}
.y13d{bottom:445.053733pt;}
.y68{bottom:448.355200pt;}
.y26{bottom:448.838400pt;}
.yc2{bottom:449.244800pt;}
.y16d{bottom:450.123067pt;}
.y8e{bottom:450.128533pt;}
.y19d{bottom:455.711467pt;}
.yb6{bottom:457.671467pt;}
.y103{bottom:457.680133pt;}
.y3c{bottom:459.798400pt;}
.y13c{bottom:461.053733pt;}
.y67{bottom:464.355200pt;}
.y25{bottom:464.838400pt;}
.yc1{bottom:465.244800pt;}
.y8d{bottom:466.128533pt;}
.y16c{bottom:469.896400pt;}
.yb5{bottom:473.671467pt;}
.y19c{bottom:475.484800pt;}
.y3b{bottom:475.798400pt;}
.y13b{bottom:477.053733pt;}
.y66{bottom:480.355200pt;}
.y24{bottom:480.838400pt;}
.yc0{bottom:481.244800pt;}
.y8c{bottom:482.128533pt;}
.yd7{bottom:485.884800pt;}
.y16b{bottom:485.896400pt;}
.yb4{bottom:489.671467pt;}
.y19b{bottom:491.484800pt;}
.y3a{bottom:491.798400pt;}
.y13a{bottom:493.053733pt;}
.y65{bottom:496.355200pt;}
.y23{bottom:496.838400pt;}
.ybf{bottom:497.244800pt;}
.yd6{bottom:501.884800pt;}
.y8b{bottom:501.901867pt;}
.y16a{bottom:505.669733pt;}
.ye6{bottom:505.671467pt;}
.y39{bottom:507.798400pt;}
.y139{bottom:509.053733pt;}
.yb3{bottom:509.444800pt;}
.y19a{bottom:511.258133pt;}
.y64{bottom:512.355200pt;}
.y22{bottom:512.838400pt;}
.y8a{bottom:517.901867pt;}
.y169{bottom:521.669733pt;}
.ye5{bottom:521.671467pt;}
.yb2{bottom:525.444800pt;}
.y199{bottom:527.258133pt;}
.y38{bottom:527.571733pt;}
.y63{bottom:528.355200pt;}
.y138{bottom:528.827067pt;}
.y21{bottom:528.838400pt;}
.y89{bottom:533.901867pt;}
.y168{bottom:537.669733pt;}
.ye4{bottom:537.671467pt;}
.yb1{bottom:541.444800pt;}
.y37{bottom:543.571733pt;}
.y137{bottom:544.827067pt;}
.y20{bottom:544.838400pt;}
.y198{bottom:547.031467pt;}
.y88{bottom:549.901867pt;}
.y62{bottom:555.693867pt;}
.y167{bottom:557.443067pt;}
.yb0{bottom:557.444800pt;}
.y36{bottom:559.571733pt;}
.y136{bottom:560.827067pt;}
.y1f{bottom:560.838400pt;}
.y197{bottom:563.031467pt;}
.y87{bottom:565.901867pt;}
.y166{bottom:573.443067pt;}
.yaf{bottom:573.444800pt;}
.y35{bottom:575.571733pt;}
.y135{bottom:576.827067pt;}
.y1e{bottom:576.838400pt;}
.y102{bottom:579.407600pt;}
.y196{bottom:582.804800pt;}
.y86{bottom:585.675200pt;}
.yae{bottom:589.444800pt;}
.y34{bottom:591.571733pt;}
.y134{bottom:592.827067pt;}
.y11b{bottom:592.830933pt;}
.y165{bottom:593.216400pt;}
.y61{bottom:593.218133pt;}
.y101{bottom:598.391600pt;}
.y195{bottom:598.804800pt;}
.y85{bottom:601.675200pt;}
.y1d{bottom:604.177067pt;}
.yad{bottom:605.444800pt;}
.y33{bottom:607.571733pt;}
.y133{bottom:608.827067pt;}
.y11a{bottom:608.830933pt;}
.y164{bottom:609.216400pt;}
.y60{bottom:609.218133pt;}
.y100{bottom:617.375600pt;}
.y84{bottom:617.675200pt;}
.y194{bottom:618.578133pt;}
.yac{bottom:621.444800pt;}
.y132{bottom:624.827067pt;}
.y119{bottom:624.830933pt;}
.y163{bottom:625.216400pt;}
.y5f{bottom:625.218133pt;}
.y83{bottom:633.675200pt;}
.y193{bottom:634.578133pt;}
.yff{bottom:636.359600pt;}
.y131{bottom:640.827067pt;}
.y5e{bottom:641.218133pt;}
.y118{bottom:644.604267pt;}
.y82{bottom:649.675200pt;}
.y192{bottom:650.578133pt;}
.y162{bottom:652.554933pt;}
.yfe{bottom:655.343600pt;}
.y130{bottom:656.827067pt;}
.y5d{bottom:657.218133pt;}
.y117{bottom:660.604267pt;}
.y81{bottom:669.448533pt;}
.y191{bottom:670.351467pt;}
.y1b{bottom:671.428400pt;}
.y12f{bottom:672.827067pt;}
.y5c{bottom:673.218133pt;}
.yfd{bottom:674.327600pt;}
.y116{bottom:676.604267pt;}
.y80{bottom:685.448533pt;}
.y190{bottom:686.351467pt;}
.y1a{bottom:687.641733pt;}
.y12e{bottom:688.827067pt;}
.y5b{bottom:689.218133pt;}
.y115{bottom:692.604267pt;}
.yfc{bottom:693.311600pt;}
.y7f{bottom:701.448533pt;}
.y18f{bottom:702.351467pt;}
.y12d{bottom:704.827067pt;}
.y5a{bottom:705.218133pt;}
.y19{bottom:707.335067pt;}
.y114{bottom:708.604267pt;}
.yfb{bottom:712.295600pt;}
.y7e{bottom:717.448533pt;}
.y15e{bottom:720.355200pt;}
.y59{bottom:721.218133pt;}
.y18e{bottom:722.124800pt;}
.y18{bottom:723.335067pt;}
.yab{bottom:724.991467pt;}
.yf9{bottom:731.279600pt;}
.y7d{bottom:733.448533pt;}
.yfa{bottom:735.059600pt;}
.y15d{bottom:736.355200pt;}
.y58{bottom:737.218133pt;}
.y18d{bottom:738.124800pt;}
.y17{bottom:739.335067pt;}
.y12c{bottom:739.720400pt;}
.yaa{bottom:740.991467pt;}
.y113{bottom:743.497600pt;}
.y7c{bottom:749.448533pt;}
.yf8{bottom:749.459600pt;}
.y15c{bottom:752.355200pt;}
.y57{bottom:753.218133pt;}
.y18c{bottom:754.124800pt;}
.y16{bottom:755.335067pt;}
.y12b{bottom:755.720400pt;}
.ya9{bottom:756.991467pt;}
.y112{bottom:759.497600pt;}
.y7b{bottom:765.448533pt;}
.y15b{bottom:768.355200pt;}
.y56{bottom:769.218133pt;}
.y15{bottom:771.335067pt;}
.y12a{bottom:771.720400pt;}
.ya8{bottom:772.991467pt;}
.y18b{bottom:773.898133pt;}
.y111{bottom:775.497600pt;}
.ye3{bottom:781.444800pt;}
.y15a{bottom:784.355200pt;}
.y55{bottom:785.218133pt;}
.y7a{bottom:785.221867pt;}
.y14{bottom:787.335067pt;}
.ya7{bottom:788.991467pt;}
.y18a{bottom:789.898133pt;}
.ye2{bottom:797.444800pt;}
.y159{bottom:800.355200pt;}
.y54{bottom:801.218133pt;}
.y79{bottom:801.221867pt;}
.y13{bottom:803.335067pt;}
.ya6{bottom:804.991467pt;}
.y189{bottom:809.671467pt;}
.y158{bottom:816.355200pt;}
.y53{bottom:817.218133pt;}
.y78{bottom:817.221867pt;}
.y12{bottom:819.335067pt;}
.ya5{bottom:820.991467pt;}
.y188{bottom:825.671467pt;}
.y52{bottom:833.218133pt;}
.y77{bottom:833.221867pt;}
.y11{bottom:835.335067pt;}
.ya4{bottom:836.991467pt;}
.ye1{bottom:837.004800pt;}
.y187{bottom:841.671467pt;}
.y157{bottom:843.693867pt;}
.y76{bottom:849.221867pt;}
.y10{bottom:851.548400pt;}
.y51{bottom:852.991467pt;}
.ye0{bottom:853.004800pt;}
.y186{bottom:861.444800pt;}
.y75{bottom:865.221867pt;}
.y50{bottom:868.991467pt;}
.ydf{bottom:869.004800pt;}
.y185{bottom:877.444800pt;}
.y156{bottom:881.218133pt;}
.y161{bottom:881.221867pt;}
.y4f{bottom:884.991467pt;}
.y74{bottom:884.995200pt;}
.yde{bottom:885.004800pt;}
.y1c{bottom:891.135067pt;}
.y184{bottom:893.444800pt;}
.y155{bottom:897.218133pt;}
.y160{bottom:897.221867pt;}
.y4e{bottom:900.991467pt;}
.y73{bottom:900.995200pt;}
.ydd{bottom:901.004800pt;}
.y154{bottom:913.218133pt;}
.y15f{bottom:913.221867pt;}
.y4d{bottom:916.991467pt;}
.y72{bottom:916.995200pt;}
.ydc{bottom:917.004800pt;}
.y7{bottom:924.655733pt;}
.y153{bottom:929.218133pt;}
.y4c{bottom:932.991467pt;}
.y71{bottom:932.995200pt;}
.ydb{bottom:933.004800pt;}
.ybe{bottom:933.018133pt;}
.y183{bottom:945.218133pt;}
.y4b{bottom:948.991467pt;}
.y70{bottom:948.995200pt;}
.yda{bottom:949.004800pt;}
.ybd{bottom:949.018133pt;}
.y6{bottom:955.194267pt;}
.y4a{bottom:964.991467pt;}
.y6f{bottom:964.995200pt;}
.yd9{bottom:965.004800pt;}
.ybc{bottom:965.018133pt;}
.y5{bottom:977.594267pt;}
.y49{bottom:980.991467pt;}
.y6e{bottom:980.995200pt;}
.yd8{bottom:981.004800pt;}
.ybb{bottom:981.018133pt;}
.y4{bottom:1029.790000pt;}
.y2{bottom:1029.877200pt;}
.y1{bottom:1051.837200pt;}
.h5{height:21.604401pt;}
.hb{height:32.531250pt;}
.h2{height:33.351562pt;}
.ha{height:36.145833pt;}
.h9{height:36.203958pt;}
.h6{height:37.057292pt;}
.h7{height:45.943542pt;}
.h8{height:46.796875pt;}
.h3{height:50.604167pt;}
.h4{height:56.156250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x13{left:97.834933pt;}
.x33{left:100.288267pt;}
.x15{left:104.124933pt;}
.xd{left:107.474933pt;}
.x12{left:110.634933pt;}
.x5{left:113.388133pt;}
.x11{left:115.981600pt;}
.x10{left:119.168267pt;}
.xf{left:120.234933pt;}
.x16{left:128.556933pt;}
.x1b{left:131.940933pt;}
.x1d{left:134.964933pt;}
.x1c{left:138.960933pt;}
.x34{left:158.408267pt;}
.xe{left:169.554933pt;}
.x17{left:194.208933pt;}
.x6{left:206.119867pt;}
.x18{left:207.984933pt;}
.x14{left:212.074933pt;}
.x19{left:293.976933pt;}
.x1a{left:297.312933pt;}
.x9{left:421.425867pt;}
.x31{left:427.214533pt;}
.x1f{left:428.293867pt;}
.x1e{left:430.297867pt;}
.xa{left:436.648267pt;}
.x30{left:437.694533pt;}
.x8{left:440.319200pt;}
.xc{left:455.168267pt;}
.x21{left:456.925867pt;}
.xb{left:459.234933pt;}
.x2f{left:464.881867pt;}
.x20{left:467.593867pt;}
.x32{left:485.334533pt;}
.x4{left:494.562267pt;}
.x24{left:499.105867pt;}
.x23{left:507.217867pt;}
.x25{left:532.309867pt;}
.x26{left:533.473867pt;}
.x22{left:560.065867pt;}
.x28{left:567.841867pt;}
.x27{left:576.577867pt;}
.x2{left:584.772133pt;}
.x29{left:601.045867pt;}
.x2a{left:602.209867pt;}
.x7{left:607.279867pt;}
.x2c{left:636.577867pt;}
.x2b{left:645.313867pt;}
.x2d{left:669.781867pt;}
.x2e{left:670.945867pt;}
.x3{left:687.212533pt;}
}




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