
    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_86d99183f7635dcb222e6b0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1666b8b7a839afc23c40a50b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_03f5729bb1c8b2e658ec0571.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.990000;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_515a728c114fa328eed45284.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_b2cf155a7e098a4c1f9f8c99.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_72240ba1363393eefba9f3d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.980000;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_95b5d3f2bd499b0f060bc919.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980000;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_70ab367644fa4a0c31df77cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_91a154999d240188650abc5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_5a5f29abd504f553e12e6a9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_5a5f29abd504f553e12e6a9e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_3efed158904bad7ab751d20e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_5a5f29abd504f553e12e6a9e.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_c2b837c27d9f86537c67bc32.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_6a1a944a65914eb1e2b00f67.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.760000;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:ff12;src:url('chunks/assets/font_f9e25a36954a435f8b087ddb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.985000;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:ff13;src:url('chunks/assets/font_d845547fa4db2a68bb7d6a8a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.200000px;}
.v4{vertical-align:22.887000px;}
.v1{vertical-align:24.000000px;}
.ls4{letter-spacing:-4.320000px;}
.ls1a{letter-spacing:-2.940000px;}
.ls5{letter-spacing:-2.880000px;}
.ls3{letter-spacing:-2.640000px;}
.ls6{letter-spacing:-2.400000px;}
.ls7{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-2.024234px;}
.ls2{letter-spacing:-1.987731px;}
.ls1{letter-spacing:-1.920000px;}
.ls9{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-1.714020px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000240px;}
.lsc{letter-spacing:0.000312px;}
.ls13{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.268800px;}
.ls10{letter-spacing:0.495000px;}
.lse{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.113600px;}
.ls15{letter-spacing:2.238000px;}
.lsf{letter-spacing:2.400000px;}
.ls18{letter-spacing:3.539400px;}
.ls1b{letter-spacing:4.220400px;}
.ls16{letter-spacing:5.309400px;}
.ls14{letter-spacing:6.709200px;}
.ls17{letter-spacing:17.956200px;}
.lsb{letter-spacing:33.884400px;}
.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;}
}
.ws43{word-spacing:-60.000000px;}
.ws3{word-spacing:-38.232000px;}
.ws5{word-spacing:-26.712000px;}
.ws75{word-spacing:-25.033022px;}
.ws2{word-spacing:-23.826000px;}
.ws4{word-spacing:-21.660000px;}
.wsb9{word-spacing:-17.328000px;}
.ws96{word-spacing:-16.440000px;}
.ws1{word-spacing:-16.320000px;}
.wsb8{word-spacing:-15.360000px;}
.wsb7{word-spacing:-14.940000px;}
.wsa3{word-spacing:-14.700000px;}
.ws95{word-spacing:-14.580000px;}
.wsa4{word-spacing:-14.280000px;}
.ws6{word-spacing:-14.040000px;}
.ws9c{word-spacing:-6.660000px;}
.ws7c{word-spacing:-6.471300px;}
.ws86{word-spacing:-4.620000px;}
.wsbb{word-spacing:-4.380000px;}
.wsb2{word-spacing:-3.840000px;}
.wsb{word-spacing:-3.240000px;}
.ws9d{word-spacing:-3.000000px;}
.ws84{word-spacing:-2.880000px;}
.ws35{word-spacing:-2.760000px;}
.ws24{word-spacing:-2.700000px;}
.ws42{word-spacing:-2.580000px;}
.ws6e{word-spacing:-2.520000px;}
.ws3c{word-spacing:-2.460000px;}
.ws8f{word-spacing:-2.400000px;}
.ws33{word-spacing:-2.340000px;}
.ws65{word-spacing:-2.220000px;}
.ws7a{word-spacing:-2.100000px;}
.wsaa{word-spacing:-2.040000px;}
.ws19{word-spacing:-1.980000px;}
.ws41{word-spacing:-1.920000px;}
.ws45{word-spacing:-1.860000px;}
.ws57{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.740000px;}
.ws44{word-spacing:-1.680000px;}
.ws1d{word-spacing:-1.620000px;}
.ws8b{word-spacing:-1.560000px;}
.ws71{word-spacing:-1.500000px;}
.ws88{word-spacing:-1.440000px;}
.wsa0{word-spacing:-1.380000px;}
.ws36{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.260000px;}
.ws1e{word-spacing:-1.200000px;}
.ws4c{word-spacing:-1.140000px;}
.ws62{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.960000px;}
.ws64{word-spacing:-0.900000px;}
.ws53{word-spacing:-0.840000px;}
.ws7e{word-spacing:-0.780000px;}
.ws9{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.600000px;}
.ws50{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.480000px;}
.wsaf{word-spacing:-0.420000px;}
.ws61{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.300000px;}
.ws5a{word-spacing:-0.240000px;}
.ws5c{word-spacing:-0.180000px;}
.ws1a{word-spacing:-0.120000px;}
.ws25{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.060000px;}
.ws6b{word-spacing:0.120000px;}
.ws32{word-spacing:0.180000px;}
.ws6f{word-spacing:0.240000px;}
.ws14{word-spacing:0.300000px;}
.ws15{word-spacing:0.360000px;}
.ws5d{word-spacing:0.420000px;}
.wsa7{word-spacing:0.480000px;}
.ws3d{word-spacing:0.540000px;}
.ws11{word-spacing:0.600000px;}
.ws3b{word-spacing:0.660000px;}
.ws27{word-spacing:0.720000px;}
.ws66{word-spacing:0.780000px;}
.ws34{word-spacing:0.840000px;}
.ws37{word-spacing:0.900000px;}
.ws2d{word-spacing:0.960000px;}
.ws58{word-spacing:1.020000px;}
.wsb6{word-spacing:1.080000px;}
.ws89{word-spacing:1.140000px;}
.ws55{word-spacing:1.200000px;}
.ws18{word-spacing:1.260000px;}
.ws3e{word-spacing:1.320000px;}
.ws98{word-spacing:1.380000px;}
.ws6a{word-spacing:1.440000px;}
.ws4a{word-spacing:1.500000px;}
.ws2c{word-spacing:1.560000px;}
.ws20{word-spacing:1.620000px;}
.ws48{word-spacing:1.680000px;}
.ws8e{word-spacing:1.740000px;}
.ws56{word-spacing:1.800000px;}
.ws7{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.ws6d{word-spacing:2.100000px;}
.wsa{word-spacing:2.160000px;}
.ws2b{word-spacing:2.220000px;}
.ws23{word-spacing:2.280000px;}
.ws9b{word-spacing:2.340000px;}
.wsc{word-spacing:2.400000px;}
.ws2e{word-spacing:2.460000px;}
.ws30{word-spacing:2.520000px;}
.ws7b{word-spacing:2.580000px;}
.ws79{word-spacing:2.640000px;}
.ws7d{word-spacing:2.700000px;}
.ws13{word-spacing:2.760000px;}
.ws91{word-spacing:2.820000px;}
.wsf{word-spacing:2.880000px;}
.ws5e{word-spacing:2.940000px;}
.ws21{word-spacing:3.000000px;}
.ws60{word-spacing:3.060000px;}
.ws4d{word-spacing:3.180000px;}
.ws90{word-spacing:3.240000px;}
.wsb4{word-spacing:3.300000px;}
.ws97{word-spacing:3.360000px;}
.ws92{word-spacing:3.420000px;}
.ws63{word-spacing:3.480000px;}
.ws26{word-spacing:3.540000px;}
.ws49{word-spacing:3.660000px;}
.ws87{word-spacing:3.780000px;}
.ws3f{word-spacing:3.840000px;}
.wse{word-spacing:3.900000px;}
.ws77{word-spacing:4.020000px;}
.ws70{word-spacing:4.080000px;}
.ws10{word-spacing:4.140000px;}
.ws78{word-spacing:4.200000px;}
.wsa8{word-spacing:4.260000px;}
.wsba{word-spacing:4.320000px;}
.ws69{word-spacing:4.380000px;}
.ws4e{word-spacing:4.440000px;}
.ws1c{word-spacing:4.500000px;}
.ws54{word-spacing:4.560000px;}
.ws4b{word-spacing:4.620000px;}
.ws28{word-spacing:4.680000px;}
.ws2a{word-spacing:4.740000px;}
.ws93{word-spacing:4.920000px;}
.ws17{word-spacing:5.040000px;}
.ws38{word-spacing:5.100000px;}
.ws76{word-spacing:5.160000px;}
.ws85{word-spacing:5.220000px;}
.ws8{word-spacing:5.280000px;}
.ws82{word-spacing:5.340000px;}
.ws39{word-spacing:5.400000px;}
.ws8c{word-spacing:5.460000px;}
.ws59{word-spacing:5.580000px;}
.ws6c{word-spacing:5.640000px;}
.ws3a{word-spacing:5.700000px;}
.ws1b{word-spacing:5.880000px;}
.ws80{word-spacing:5.940000px;}
.ws5b{word-spacing:6.000000px;}
.ws83{word-spacing:6.060000px;}
.ws81{word-spacing:6.120000px;}
.ws9f{word-spacing:6.300000px;}
.ws51{word-spacing:6.600000px;}
.ws94{word-spacing:6.660000px;}
.ws52{word-spacing:6.720000px;}
.wsad{word-spacing:6.780000px;}
.wsa2{word-spacing:6.900000px;}
.ws29{word-spacing:7.020000px;}
.wsbc{word-spacing:7.080000px;}
.wsb1{word-spacing:7.140000px;}
.wsac{word-spacing:7.200000px;}
.ws72{word-spacing:7.380000px;}
.ws99{word-spacing:7.440000px;}
.wsab{word-spacing:7.620000px;}
.ws46{word-spacing:7.680000px;}
.wsb0{word-spacing:7.740000px;}
.ws22{word-spacing:8.100000px;}
.ws67{word-spacing:8.340000px;}
.ws1f{word-spacing:8.820000px;}
.ws8d{word-spacing:9.240000px;}
.wsae{word-spacing:9.360000px;}
.ws47{word-spacing:9.480000px;}
.ws8a{word-spacing:9.540000px;}
.ws5f{word-spacing:9.600000px;}
.wsa1{word-spacing:9.720000px;}
.ws7f{word-spacing:10.080000px;}
.ws9e{word-spacing:10.860000px;}
.wsa9{word-spacing:14.160000px;}
.wsb5{word-spacing:14.940000px;}
.ws9a{word-spacing:15.000000px;}
.wsb3{word-spacing:17.940000px;}
.wsa6{word-spacing:21.420000px;}
.wsa5{word-spacing:38.760000px;}
._8{margin-left:-2601.258600px;}
._a{margin-left:-15.895200px;}
._3{margin-left:-6.727200px;}
._5{margin-left:-4.800000px;}
._0{margin-left:-3.360000px;}
._1{margin-left:-1.440000px;}
._2{width:1.440000px;}
._6{width:3.180000px;}
._4{width:4.680000px;}
._b{width:7.002000px;}
._d{width:8.432400px;}
._9{width:13.824000px;}
._c{width:15.188400px;}
._e{width:695.985600px;}
._7{width:1616.957400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:49.693267px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs9{font-size:67.474452px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.yb3{bottom:87.475650px;}
.y89{bottom:89.262750px;}
.y4{bottom:97.125005px;}
.y50{bottom:97.986450px;}
.yb2{bottom:106.225650px;}
.y168{bottom:107.248500px;}
.y88{bottom:108.012750px;}
.y167{bottom:111.026850px;}
.y4f{bottom:116.736450px;}
.y172{bottom:121.727250px;}
.ye7{bottom:122.586600px;}
.yb1{bottom:124.975650px;}
.y136{bottom:125.998500px;}
.y87{bottom:126.762750px;}
.y114{bottom:127.526850px;}
.y106{bottom:129.132000px;}
.y166{bottom:129.776850px;}
.y4e{bottom:135.486450px;}
.y171{bottom:136.127250px;}
.y21{bottom:139.264499px;}
.yb0{bottom:143.725650px;}
.y135{bottom:144.748500px;}
.y86{bottom:145.512750px;}
.y113{bottom:146.276850px;}
.y105{bottom:147.882000px;}
.y165{bottom:148.526850px;}
.y4d{bottom:154.236450px;}
.y170{bottom:160.128300px;}
.yaf{bottom:162.475650px;}
.y134{bottom:163.498500px;}
.y85{bottom:164.262750px;}
.y112{bottom:165.026850px;}
.ye6{bottom:165.310350px;}
.y104{bottom:166.632000px;}
.y164{bottom:167.577000px;}
.y4c{bottom:172.986450px;}
.y16f{bottom:174.528300px;}
.yae{bottom:181.225650px;}
.y133{bottom:182.248500px;}
.y84{bottom:183.012750px;}
.y111{bottom:183.776850px;}
.ye5{bottom:184.060350px;}
.y103{bottom:185.382000px;}
.y163{bottom:186.627000px;}
.y16e{bottom:188.928300px;}
.y4b{bottom:191.736450px;}
.y18{bottom:196.933500px;}
.yad{bottom:199.975650px;}
.y132{bottom:200.998500px;}
.y83{bottom:201.762750px;}
.y110{bottom:202.526850px;}
.ye4{bottom:202.810350px;}
.y16d{bottom:203.328300px;}
.y102{bottom:204.132000px;}
.y162{bottom:205.827000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4a{bottom:210.486450px;}
.yac{bottom:218.725650px;}
.y131{bottom:219.748500px;}
.y82{bottom:220.512750px;}
.y10f{bottom:221.278200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y101{bottom:222.882000px;}
.ye3{bottom:224.111550px;}
.y161{bottom:225.026850px;}
.y49{bottom:229.236450px;}
.y16c{bottom:232.128300px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yab{bottom:237.475650px;}
.y130{bottom:238.498500px;}
.y81{bottom:239.262750px;}
.y100{bottom:241.632000px;}
.y160{bottom:244.226850px;}
.y48{bottom:247.986450px;}
.yaa{bottom:256.225650px;}
.y12f{bottom:257.248500px;}
.y80{bottom:258.012750px;}
.ye2{bottom:258.296100px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yff{bottom:260.382000px;}
.y16b{bottom:260.928300px;}
.y15f{bottom:263.276850px;}
.y47{bottom:266.736450px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya9{bottom:274.975650px;}
.y16a{bottom:275.328300px;}
.y12e{bottom:275.998500px;}
.y7f{bottom:276.762750px;}
.ye1{bottom:277.046100px;}
.yfe{bottom:279.132000px;}
.y15e{bottom:282.327000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y46{bottom:285.486450px;}
.y169{bottom:289.728300px;}
.y12d{bottom:294.748500px;}
.y7e{bottom:295.512750px;}
.ye0{bottom:295.796100px;}
.ya8{bottom:296.276850px;}
.yfd{bottom:297.882000px;}
.y15d{bottom:301.377000px;}
.y45{bottom:304.236450px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ya7{bottom:312.476850px;}
.y12c{bottom:313.498500px;}
.y7d{bottom:314.262750px;}
.ydf{bottom:314.546100px;}
.yfc{bottom:316.632000px;}
.y15c{bottom:320.427000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y44{bottom:322.986450px;}
.y12b{bottom:332.248500px;}
.y7c{bottom:333.012750px;}
.yde{bottom:333.296100px;}
.yfb{bottom:335.382000px;}
.y15b{bottom:339.476850px;}
.y43{bottom:341.736450px;}
.yf{bottom:348.133500px;}
.ya6{bottom:349.211550px;}
.y12a{bottom:350.998500px;}
.y7b{bottom:351.762750px;}
.ydd{bottom:352.046100px;}
.yfa{bottom:354.132000px;}
.y15a{bottom:358.677000px;}
.y42{bottom:360.486450px;}
.ya5{bottom:367.961550px;}
.y129{bottom:369.748500px;}
.y7a{bottom:370.512750px;}
.ydc{bottom:370.796100px;}
.yf9{bottom:372.882000px;}
.y159{bottom:377.877000px;}
.y41{bottom:379.236450px;}
.ya4{bottom:386.711550px;}
.ye{bottom:386.785499px;}
.y128{bottom:388.498650px;}
.y79{bottom:389.262750px;}
.ydb{bottom:389.546250px;}
.yf8{bottom:391.632000px;}
.y158{bottom:397.077000px;}
.y40{bottom:397.986450px;}
.ya3{bottom:405.461550px;}
.y127{bottom:407.248650px;}
.y78{bottom:408.012750px;}
.yd{bottom:408.044999px;}
.yda{bottom:408.296250px;}
.yf7{bottom:410.382000px;}
.y157{bottom:416.276850px;}
.y3f{bottom:416.736450px;}
.ya2{bottom:424.211550px;}
.y126{bottom:425.998650px;}
.y77{bottom:426.762750px;}
.yd9{bottom:427.046250px;}
.yf6{bottom:429.133050px;}
.y156{bottom:435.477000px;}
.y3e{bottom:435.486450px;}
.ya1{bottom:442.961550px;}
.y125{bottom:444.748650px;}
.y76{bottom:445.512750px;}
.yd8{bottom:445.796250px;}
.y3d{bottom:454.236450px;}
.y155{bottom:454.677000px;}
.ya0{bottom:461.711550px;}
.y124{bottom:463.498650px;}
.y75{bottom:464.262750px;}
.yd7{bottom:464.546250px;}
.yf5{bottom:465.867750px;}
.y3c{bottom:472.986450px;}
.y154{bottom:473.876850px;}
.y9f{bottom:480.461550px;}
.y123{bottom:482.248650px;}
.y74{bottom:483.012750px;}
.yd6{bottom:483.296250px;}
.yf4{bottom:484.617750px;}
.y3b{bottom:491.736450px;}
.y153{bottom:493.077000px;}
.y9e{bottom:499.211550px;}
.y122{bottom:500.998650px;}
.y73{bottom:501.762750px;}
.yd5{bottom:502.046250px;}
.yc{bottom:502.864502px;}
.yf3{bottom:503.367750px;}
.y3a{bottom:510.486450px;}
.y152{bottom:512.276850px;}
.y9d{bottom:517.961550px;}
.y121{bottom:519.748650px;}
.y72{bottom:520.512750px;}
.yd4{bottom:520.796250px;}
.yb{bottom:520.864502px;}
.yf2{bottom:522.117750px;}
.y39{bottom:529.236450px;}
.y151{bottom:531.477000px;}
.y9c{bottom:536.711550px;}
.y120{bottom:538.498650px;}
.ya{bottom:538.864499px;}
.y71{bottom:539.262750px;}
.yd3{bottom:539.546250px;}
.yf1{bottom:540.867750px;}
.y38{bottom:547.986450px;}
.y150{bottom:550.677000px;}
.y9b{bottom:555.461550px;}
.y9{bottom:556.864499px;}
.y11f{bottom:557.248650px;}
.y70{bottom:558.012750px;}
.yd2{bottom:558.296250px;}
.yf0{bottom:559.617750px;}
.y37{bottom:566.736450px;}
.y14f{bottom:569.876850px;}
.y9a{bottom:574.211550px;}
.y11e{bottom:575.998650px;}
.y6f{bottom:576.762750px;}
.yd1{bottom:577.046250px;}
.yef{bottom:578.368950px;}
.y36{bottom:585.486450px;}
.y14e{bottom:589.077000px;}
.y99{bottom:592.961550px;}
.y11d{bottom:594.748650px;}
.y6e{bottom:595.512750px;}
.yd0{bottom:595.796250px;}
.yee{bottom:599.670150px;}
.y35{bottom:604.237650px;}
.y14d{bottom:608.276850px;}
.y98{bottom:611.711550px;}
.y11c{bottom:613.498650px;}
.y6d{bottom:614.262750px;}
.ycf{bottom:617.097450px;}
.y14c{bottom:627.477000px;}
.y97{bottom:630.461550px;}
.y11b{bottom:632.248650px;}
.y6c{bottom:633.012750px;}
.yed{bottom:636.404850px;}
.y8{bottom:645.510000px;}
.y14b{bottom:646.677000px;}
.y96{bottom:649.211550px;}
.y11a{bottom:650.998650px;}
.yce{bottom:651.282000px;}
.y6b{bottom:651.762750px;}
.yec{bottom:655.154850px;}
.y34{bottom:659.553450px;}
.y14a{bottom:665.876850px;}
.y7{bottom:666.771000px;}
.y95{bottom:667.961550px;}
.y119{bottom:669.748650px;}
.ycd{bottom:670.032000px;}
.y6a{bottom:670.512750px;}
.yeb{bottom:673.904850px;}
.y149{bottom:685.077000px;}
.y94{bottom:686.711550px;}
.y118{bottom:688.498650px;}
.ycc{bottom:688.782000px;}
.y69{bottom:689.262750px;}
.yea{bottom:692.654850px;}
.y148{bottom:704.276850px;}
.y93{bottom:705.461550px;}
.y117{bottom:707.248650px;}
.ycb{bottom:707.532000px;}
.y68{bottom:708.012750px;}
.ye9{bottom:711.404850px;}
.y33{bottom:711.569250px;}
.y147{bottom:723.477000px;}
.y92{bottom:724.211550px;}
.y116{bottom:725.998650px;}
.yca{bottom:726.282000px;}
.y6{bottom:726.298500px;}
.y67{bottom:726.762750px;}
.y10e{bottom:726.763950px;}
.y32{bottom:729.569250px;}
.ye8{bottom:730.154850px;}
.y146{bottom:742.677000px;}
.y91{bottom:742.962750px;}
.y115{bottom:744.748650px;}
.yc9{bottom:745.032000px;}
.y66{bottom:745.512750px;}
.y31{bottom:747.569250px;}
.y3{bottom:752.599495px;}
.y145{bottom:761.876850px;}
.y10d{bottom:763.498650px;}
.yc8{bottom:763.782000px;}
.y65{bottom:764.262750px;}
.y90{bottom:764.263950px;}
.y30{bottom:765.569250px;}
.y10b{bottom:773.939550px;}
.y144{bottom:781.077000px;}
.y10c{bottom:782.248500px;}
.yc7{bottom:782.532000px;}
.y64{bottom:783.012750px;}
.y2f{bottom:783.569250px;}
.y10a{bottom:791.939550px;}
.y143{bottom:800.276850px;}
.y8f{bottom:800.998500px;}
.yc6{bottom:801.282000px;}
.y2e{bottom:801.569250px;}
.y63{bottom:801.762750px;}
.y109{bottom:809.939550px;}
.y142{bottom:819.476850px;}
.y2d{bottom:819.569250px;}
.y8e{bottom:819.748500px;}
.yc5{bottom:820.032000px;}
.y62{bottom:820.512750px;}
.y108{bottom:827.939550px;}
.y2c{bottom:837.569250px;}
.y8d{bottom:838.498500px;}
.y141{bottom:838.676850px;}
.yc4{bottom:838.782000px;}
.y61{bottom:839.262750px;}
.y107{bottom:845.939550px;}
.y8c{bottom:857.248500px;}
.yc3{bottom:857.532000px;}
.y140{bottom:857.877000px;}
.y60{bottom:858.012750px;}
.y8b{bottom:875.998500px;}
.yc2{bottom:876.282000px;}
.y5f{bottom:876.763950px;}
.y13f{bottom:877.077000px;}
.y2{bottom:879.369000px;}
.y2b{bottom:889.584900px;}
.y8a{bottom:894.748500px;}
.yc1{bottom:895.032000px;}
.y13e{bottom:896.278050px;}
.y2a{bottom:908.236950px;}
.y5e{bottom:913.498500px;}
.yc0{bottom:913.782000px;}
.y29{bottom:926.888850px;}
.y5d{bottom:932.248500px;}
.ybf{bottom:932.532000px;}
.y13d{bottom:933.012750px;}
.y5c{bottom:950.998500px;}
.ybe{bottom:951.282000px;}
.y13c{bottom:951.762750px;}
.y28{bottom:965.496750px;}
.y1{bottom:966.726000px;}
.y5b{bottom:969.748500px;}
.ybd{bottom:970.032000px;}
.y13b{bottom:970.512750px;}
.y5a{bottom:988.498500px;}
.ybc{bottom:988.782000px;}
.y13a{bottom:989.262750px;}
.y27{bottom:997.896750px;}
.y59{bottom:1007.248500px;}
.ybb{bottom:1007.532000px;}
.y139{bottom:1008.012750px;}
.y58{bottom:1025.998500px;}
.yba{bottom:1026.282000px;}
.y138{bottom:1026.762750px;}
.y26{bottom:1030.296750px;}
.y57{bottom:1044.748500px;}
.yb9{bottom:1045.032000px;}
.y137{bottom:1045.513950px;}
.y56{bottom:1063.498500px;}
.yb8{bottom:1063.782000px;}
.y25{bottom:1071.200700px;}
.y55{bottom:1082.248500px;}
.yb7{bottom:1082.532000px;}
.y54{bottom:1100.998500px;}
.yb6{bottom:1101.282000px;}
.y53{bottom:1119.748500px;}
.yb5{bottom:1120.032000px;}
.y52{bottom:1138.498500px;}
.yb4{bottom:1138.782000px;}
.y24{bottom:1170.367200px;}
.y23{bottom:1184.767200px;}
.y22{bottom:1199.167200px;}
.y51{bottom:1209.189000px;}
.h7{height:32.130000px;}
.h9{height:36.960000px;}
.ha{height:38.263815px;}
.h12{height:40.663728px;}
.he{height:45.000000px;}
.h13{height:45.060000px;}
.h6{height:45.900000px;}
.hf{height:46.020000px;}
.h3{height:48.195000px;}
.hb{height:49.500000px;}
.h10{height:50.605839px;}
.h11{height:50.829660px;}
.hd{height:54.000000px;}
.h2{height:55.080000px;}
.h14{height:67.887000px;}
.h5{height:78.030000px;}
.hc{height:81.000000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:114.803100px;}
.x10{left:123.307050px;}
.xb{left:127.558950px;}
.xf{left:136.062900px;}
.xc{left:140.314950px;}
.xe{left:148.818900px;}
.x4{left:203.484001px;}
.x15{left:231.413400px;}
.x5{left:325.494000px;}
.x11{left:346.804350px;}
.x7{left:416.524650px;}
.x8{left:419.368500px;}
.x9{left:423.448500px;}
.x3{left:454.959000px;}
.x16{left:474.541200px;}
.xd{left:533.205750px;}
.x12{left:585.852150px;}
.x13{left:588.696150px;}
.x14{left:592.776000px;}
.x6{left:619.790250px;}
@media print{
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.066667pt;}
.v4{vertical-align:20.344000pt;}
.v1{vertical-align:21.333333pt;}
.ls4{letter-spacing:-3.840000pt;}
.ls1a{letter-spacing:-2.613333pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls3{letter-spacing:-2.346667pt;}
.ls6{letter-spacing:-2.133333pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.799319pt;}
.ls2{letter-spacing:-1.766872pt;}
.ls1{letter-spacing:-1.706667pt;}
.ls9{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-1.523573pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000213pt;}
.lsc{letter-spacing:0.000277pt;}
.ls13{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.238933pt;}
.ls10{letter-spacing:0.440000pt;}
.lse{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.989867pt;}
.ls15{letter-spacing:1.989333pt;}
.lsf{letter-spacing:2.133333pt;}
.ls18{letter-spacing:3.146133pt;}
.ls1b{letter-spacing:3.751467pt;}
.ls16{letter-spacing:4.719467pt;}
.ls14{letter-spacing:5.963733pt;}
.ls17{letter-spacing:15.961067pt;}
.lsb{letter-spacing:30.119467pt;}
.ws43{word-spacing:-53.333333pt;}
.ws3{word-spacing:-33.984000pt;}
.ws5{word-spacing:-23.744000pt;}
.ws75{word-spacing:-22.251575pt;}
.ws2{word-spacing:-21.178667pt;}
.ws4{word-spacing:-19.253333pt;}
.wsb9{word-spacing:-15.402667pt;}
.ws96{word-spacing:-14.613333pt;}
.ws1{word-spacing:-14.506667pt;}
.wsb8{word-spacing:-13.653333pt;}
.wsb7{word-spacing:-13.280000pt;}
.wsa3{word-spacing:-13.066667pt;}
.ws95{word-spacing:-12.960000pt;}
.wsa4{word-spacing:-12.693333pt;}
.ws6{word-spacing:-12.480000pt;}
.ws9c{word-spacing:-5.920000pt;}
.ws7c{word-spacing:-5.752267pt;}
.ws86{word-spacing:-4.106667pt;}
.wsbb{word-spacing:-3.893333pt;}
.wsb2{word-spacing:-3.413333pt;}
.wsb{word-spacing:-2.880000pt;}
.ws9d{word-spacing:-2.666667pt;}
.ws84{word-spacing:-2.560000pt;}
.ws35{word-spacing:-2.453333pt;}
.ws24{word-spacing:-2.400000pt;}
.ws42{word-spacing:-2.293333pt;}
.ws6e{word-spacing:-2.240000pt;}
.ws3c{word-spacing:-2.186667pt;}
.ws8f{word-spacing:-2.133333pt;}
.ws33{word-spacing:-2.080000pt;}
.ws65{word-spacing:-1.973333pt;}
.ws7a{word-spacing:-1.866667pt;}
.wsaa{word-spacing:-1.813333pt;}
.ws19{word-spacing:-1.760000pt;}
.ws41{word-spacing:-1.706667pt;}
.ws45{word-spacing:-1.653333pt;}
.ws57{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.546667pt;}
.ws44{word-spacing:-1.493333pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws8b{word-spacing:-1.386667pt;}
.ws71{word-spacing:-1.333333pt;}
.ws88{word-spacing:-1.280000pt;}
.wsa0{word-spacing:-1.226667pt;}
.ws36{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.120000pt;}
.ws1e{word-spacing:-1.066667pt;}
.ws4c{word-spacing:-1.013333pt;}
.ws62{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.853333pt;}
.ws64{word-spacing:-0.800000pt;}
.ws53{word-spacing:-0.746667pt;}
.ws7e{word-spacing:-0.693333pt;}
.ws9{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.533333pt;}
.ws50{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.426667pt;}
.wsaf{word-spacing:-0.373333pt;}
.ws61{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.266667pt;}
.ws5a{word-spacing:-0.213333pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws25{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.106667pt;}
.ws32{word-spacing:0.160000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws14{word-spacing:0.266667pt;}
.ws15{word-spacing:0.320000pt;}
.ws5d{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.426667pt;}
.ws3d{word-spacing:0.480000pt;}
.ws11{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.586667pt;}
.ws27{word-spacing:0.640000pt;}
.ws66{word-spacing:0.693333pt;}
.ws34{word-spacing:0.746667pt;}
.ws37{word-spacing:0.800000pt;}
.ws2d{word-spacing:0.853333pt;}
.ws58{word-spacing:0.906667pt;}
.wsb6{word-spacing:0.960000pt;}
.ws89{word-spacing:1.013333pt;}
.ws55{word-spacing:1.066667pt;}
.ws18{word-spacing:1.120000pt;}
.ws3e{word-spacing:1.173333pt;}
.ws98{word-spacing:1.226667pt;}
.ws6a{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.333333pt;}
.ws2c{word-spacing:1.386667pt;}
.ws20{word-spacing:1.440000pt;}
.ws48{word-spacing:1.493333pt;}
.ws8e{word-spacing:1.546667pt;}
.ws56{word-spacing:1.600000pt;}
.ws7{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.ws6d{word-spacing:1.866667pt;}
.wsa{word-spacing:1.920000pt;}
.ws2b{word-spacing:1.973333pt;}
.ws23{word-spacing:2.026667pt;}
.ws9b{word-spacing:2.080000pt;}
.wsc{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.186667pt;}
.ws30{word-spacing:2.240000pt;}
.ws7b{word-spacing:2.293333pt;}
.ws79{word-spacing:2.346667pt;}
.ws7d{word-spacing:2.400000pt;}
.ws13{word-spacing:2.453333pt;}
.ws91{word-spacing:2.506667pt;}
.wsf{word-spacing:2.560000pt;}
.ws5e{word-spacing:2.613333pt;}
.ws21{word-spacing:2.666667pt;}
.ws60{word-spacing:2.720000pt;}
.ws4d{word-spacing:2.826667pt;}
.ws90{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.933333pt;}
.ws97{word-spacing:2.986667pt;}
.ws92{word-spacing:3.040000pt;}
.ws63{word-spacing:3.093333pt;}
.ws26{word-spacing:3.146667pt;}
.ws49{word-spacing:3.253333pt;}
.ws87{word-spacing:3.360000pt;}
.ws3f{word-spacing:3.413333pt;}
.wse{word-spacing:3.466667pt;}
.ws77{word-spacing:3.573333pt;}
.ws70{word-spacing:3.626667pt;}
.ws10{word-spacing:3.680000pt;}
.ws78{word-spacing:3.733333pt;}
.wsa8{word-spacing:3.786667pt;}
.wsba{word-spacing:3.840000pt;}
.ws69{word-spacing:3.893333pt;}
.ws4e{word-spacing:3.946667pt;}
.ws1c{word-spacing:4.000000pt;}
.ws54{word-spacing:4.053333pt;}
.ws4b{word-spacing:4.106667pt;}
.ws28{word-spacing:4.160000pt;}
.ws2a{word-spacing:4.213333pt;}
.ws93{word-spacing:4.373333pt;}
.ws17{word-spacing:4.480000pt;}
.ws38{word-spacing:4.533333pt;}
.ws76{word-spacing:4.586667pt;}
.ws85{word-spacing:4.640000pt;}
.ws8{word-spacing:4.693333pt;}
.ws82{word-spacing:4.746667pt;}
.ws39{word-spacing:4.800000pt;}
.ws8c{word-spacing:4.853333pt;}
.ws59{word-spacing:4.960000pt;}
.ws6c{word-spacing:5.013333pt;}
.ws3a{word-spacing:5.066667pt;}
.ws1b{word-spacing:5.226667pt;}
.ws80{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.333333pt;}
.ws83{word-spacing:5.386667pt;}
.ws81{word-spacing:5.440000pt;}
.ws9f{word-spacing:5.600000pt;}
.ws51{word-spacing:5.866667pt;}
.ws94{word-spacing:5.920000pt;}
.ws52{word-spacing:5.973333pt;}
.wsad{word-spacing:6.026667pt;}
.wsa2{word-spacing:6.133333pt;}
.ws29{word-spacing:6.240000pt;}
.wsbc{word-spacing:6.293333pt;}
.wsb1{word-spacing:6.346667pt;}
.wsac{word-spacing:6.400000pt;}
.ws72{word-spacing:6.560000pt;}
.ws99{word-spacing:6.613333pt;}
.wsab{word-spacing:6.773333pt;}
.ws46{word-spacing:6.826667pt;}
.wsb0{word-spacing:6.880000pt;}
.ws22{word-spacing:7.200000pt;}
.ws67{word-spacing:7.413333pt;}
.ws1f{word-spacing:7.840000pt;}
.ws8d{word-spacing:8.213333pt;}
.wsae{word-spacing:8.320000pt;}
.ws47{word-spacing:8.426667pt;}
.ws8a{word-spacing:8.480000pt;}
.ws5f{word-spacing:8.533333pt;}
.wsa1{word-spacing:8.640000pt;}
.ws7f{word-spacing:8.960000pt;}
.ws9e{word-spacing:9.653333pt;}
.wsa9{word-spacing:12.586667pt;}
.wsb5{word-spacing:13.280000pt;}
.ws9a{word-spacing:13.333333pt;}
.wsb3{word-spacing:15.946667pt;}
.wsa6{word-spacing:19.040000pt;}
.wsa5{word-spacing:34.453333pt;}
._8{margin-left:-2312.229867pt;}
._a{margin-left:-14.129067pt;}
._3{margin-left:-5.979733pt;}
._5{margin-left:-4.266667pt;}
._0{margin-left:-2.986667pt;}
._1{margin-left:-1.280000pt;}
._2{width:1.280000pt;}
._6{width:2.826667pt;}
._4{width:4.160000pt;}
._b{width:6.224000pt;}
._d{width:7.495467pt;}
._9{width:12.288000pt;}
._c{width:13.500800pt;}
._e{width:618.653867pt;}
._7{width:1437.295467pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:44.171793pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs9{font-size:59.977290pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.yb3{bottom:77.756133pt;}
.y89{bottom:79.344667pt;}
.y4{bottom:86.333337pt;}
.y50{bottom:87.099067pt;}
.yb2{bottom:94.422800pt;}
.y168{bottom:95.332000pt;}
.y88{bottom:96.011333pt;}
.y167{bottom:98.690533pt;}
.y4f{bottom:103.765733pt;}
.y172{bottom:108.202000pt;}
.ye7{bottom:108.965867pt;}
.yb1{bottom:111.089467pt;}
.y136{bottom:111.998667pt;}
.y87{bottom:112.678000pt;}
.y114{bottom:113.357200pt;}
.y106{bottom:114.784000pt;}
.y166{bottom:115.357200pt;}
.y4e{bottom:120.432400pt;}
.y171{bottom:121.002000pt;}
.y21{bottom:123.790666pt;}
.yb0{bottom:127.756133pt;}
.y135{bottom:128.665333pt;}
.y86{bottom:129.344667pt;}
.y113{bottom:130.023867pt;}
.y105{bottom:131.450667pt;}
.y165{bottom:132.023867pt;}
.y4d{bottom:137.099067pt;}
.y170{bottom:142.336267pt;}
.yaf{bottom:144.422800pt;}
.y134{bottom:145.332000pt;}
.y85{bottom:146.011333pt;}
.y112{bottom:146.690533pt;}
.ye6{bottom:146.942533pt;}
.y104{bottom:148.117333pt;}
.y164{bottom:148.957333pt;}
.y4c{bottom:153.765733pt;}
.y16f{bottom:155.136267pt;}
.yae{bottom:161.089467pt;}
.y133{bottom:161.998667pt;}
.y84{bottom:162.678000pt;}
.y111{bottom:163.357200pt;}
.ye5{bottom:163.609200pt;}
.y103{bottom:164.784000pt;}
.y163{bottom:165.890667pt;}
.y16e{bottom:167.936267pt;}
.y4b{bottom:170.432400pt;}
.y18{bottom:175.052000pt;}
.yad{bottom:177.756133pt;}
.y132{bottom:178.665333pt;}
.y83{bottom:179.344667pt;}
.y110{bottom:180.023867pt;}
.ye4{bottom:180.275867pt;}
.y16d{bottom:180.736267pt;}
.y102{bottom:181.450667pt;}
.y162{bottom:182.957333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4a{bottom:187.099067pt;}
.yac{bottom:194.422800pt;}
.y131{bottom:195.332000pt;}
.y82{bottom:196.011333pt;}
.y10f{bottom:196.691733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y101{bottom:198.117333pt;}
.ye3{bottom:199.210267pt;}
.y161{bottom:200.023867pt;}
.y49{bottom:203.765733pt;}
.y16c{bottom:206.336267pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yab{bottom:211.089467pt;}
.y130{bottom:211.998667pt;}
.y81{bottom:212.678000pt;}
.y100{bottom:214.784000pt;}
.y160{bottom:217.090533pt;}
.y48{bottom:220.432400pt;}
.yaa{bottom:227.756133pt;}
.y12f{bottom:228.665333pt;}
.y80{bottom:229.344667pt;}
.ye2{bottom:229.596533pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yff{bottom:231.450667pt;}
.y16b{bottom:231.936267pt;}
.y15f{bottom:234.023867pt;}
.y47{bottom:237.099067pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya9{bottom:244.422800pt;}
.y16a{bottom:244.736267pt;}
.y12e{bottom:245.332000pt;}
.y7f{bottom:246.011333pt;}
.ye1{bottom:246.263200pt;}
.yfe{bottom:248.117333pt;}
.y15e{bottom:250.957333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y46{bottom:253.765733pt;}
.y169{bottom:257.536267pt;}
.y12d{bottom:261.998667pt;}
.y7e{bottom:262.678000pt;}
.ye0{bottom:262.929867pt;}
.ya8{bottom:263.357200pt;}
.yfd{bottom:264.784000pt;}
.y15d{bottom:267.890667pt;}
.y45{bottom:270.432400pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ya7{bottom:277.757200pt;}
.y12c{bottom:278.665333pt;}
.y7d{bottom:279.344667pt;}
.ydf{bottom:279.596533pt;}
.yfc{bottom:281.450667pt;}
.y15c{bottom:284.824000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y44{bottom:287.099067pt;}
.y12b{bottom:295.332000pt;}
.y7c{bottom:296.011333pt;}
.yde{bottom:296.263200pt;}
.yfb{bottom:298.117333pt;}
.y15b{bottom:301.757200pt;}
.y43{bottom:303.765733pt;}
.yf{bottom:309.452000pt;}
.ya6{bottom:310.410267pt;}
.y12a{bottom:311.998667pt;}
.y7b{bottom:312.678000pt;}
.ydd{bottom:312.929867pt;}
.yfa{bottom:314.784000pt;}
.y15a{bottom:318.824000pt;}
.y42{bottom:320.432400pt;}
.ya5{bottom:327.076933pt;}
.y129{bottom:328.665333pt;}
.y7a{bottom:329.344667pt;}
.ydc{bottom:329.596533pt;}
.yf9{bottom:331.450667pt;}
.y159{bottom:335.890667pt;}
.y41{bottom:337.099067pt;}
.ya4{bottom:343.743600pt;}
.ye{bottom:343.809333pt;}
.y128{bottom:345.332133pt;}
.y79{bottom:346.011333pt;}
.ydb{bottom:346.263333pt;}
.yf8{bottom:348.117333pt;}
.y158{bottom:352.957333pt;}
.y40{bottom:353.765733pt;}
.ya3{bottom:360.410267pt;}
.y127{bottom:361.998800pt;}
.y78{bottom:362.678000pt;}
.yd{bottom:362.706666pt;}
.yda{bottom:362.930000pt;}
.yf7{bottom:364.784000pt;}
.y157{bottom:370.023867pt;}
.y3f{bottom:370.432400pt;}
.ya2{bottom:377.076933pt;}
.y126{bottom:378.665467pt;}
.y77{bottom:379.344667pt;}
.yd9{bottom:379.596667pt;}
.yf6{bottom:381.451600pt;}
.y156{bottom:387.090667pt;}
.y3e{bottom:387.099067pt;}
.ya1{bottom:393.743600pt;}
.y125{bottom:395.332133pt;}
.y76{bottom:396.011333pt;}
.yd8{bottom:396.263333pt;}
.y3d{bottom:403.765733pt;}
.y155{bottom:404.157333pt;}
.ya0{bottom:410.410267pt;}
.y124{bottom:411.998800pt;}
.y75{bottom:412.678000pt;}
.yd7{bottom:412.930000pt;}
.yf5{bottom:414.104667pt;}
.y3c{bottom:420.432400pt;}
.y154{bottom:421.223867pt;}
.y9f{bottom:427.076933pt;}
.y123{bottom:428.665467pt;}
.y74{bottom:429.344667pt;}
.yd6{bottom:429.596667pt;}
.yf4{bottom:430.771333pt;}
.y3b{bottom:437.099067pt;}
.y153{bottom:438.290667pt;}
.y9e{bottom:443.743600pt;}
.y122{bottom:445.332133pt;}
.y73{bottom:446.011333pt;}
.yd5{bottom:446.263333pt;}
.yc{bottom:446.990669pt;}
.yf3{bottom:447.438000pt;}
.y3a{bottom:453.765733pt;}
.y152{bottom:455.357200pt;}
.y9d{bottom:460.410267pt;}
.y121{bottom:461.998800pt;}
.y72{bottom:462.678000pt;}
.yd4{bottom:462.930000pt;}
.yb{bottom:462.990669pt;}
.yf2{bottom:464.104667pt;}
.y39{bottom:470.432400pt;}
.y151{bottom:472.424000pt;}
.y9c{bottom:477.076933pt;}
.y120{bottom:478.665467pt;}
.ya{bottom:478.990666pt;}
.y71{bottom:479.344667pt;}
.yd3{bottom:479.596667pt;}
.yf1{bottom:480.771333pt;}
.y38{bottom:487.099067pt;}
.y150{bottom:489.490667pt;}
.y9b{bottom:493.743600pt;}
.y9{bottom:494.990666pt;}
.y11f{bottom:495.332133pt;}
.y70{bottom:496.011333pt;}
.yd2{bottom:496.263333pt;}
.yf0{bottom:497.438000pt;}
.y37{bottom:503.765733pt;}
.y14f{bottom:506.557200pt;}
.y9a{bottom:510.410267pt;}
.y11e{bottom:511.998800pt;}
.y6f{bottom:512.678000pt;}
.yd1{bottom:512.930000pt;}
.yef{bottom:514.105733pt;}
.y36{bottom:520.432400pt;}
.y14e{bottom:523.624000pt;}
.y99{bottom:527.076933pt;}
.y11d{bottom:528.665467pt;}
.y6e{bottom:529.344667pt;}
.yd0{bottom:529.596667pt;}
.yee{bottom:533.040133pt;}
.y35{bottom:537.100133pt;}
.y14d{bottom:540.690533pt;}
.y98{bottom:543.743600pt;}
.y11c{bottom:545.332133pt;}
.y6d{bottom:546.011333pt;}
.ycf{bottom:548.531067pt;}
.y14c{bottom:557.757333pt;}
.y97{bottom:560.410267pt;}
.y11b{bottom:561.998800pt;}
.y6c{bottom:562.678000pt;}
.yed{bottom:565.693200pt;}
.y8{bottom:573.786667pt;}
.y14b{bottom:574.824000pt;}
.y96{bottom:577.076933pt;}
.y11a{bottom:578.665467pt;}
.yce{bottom:578.917333pt;}
.y6b{bottom:579.344667pt;}
.yec{bottom:582.359867pt;}
.y34{bottom:586.269733pt;}
.y14a{bottom:591.890533pt;}
.y7{bottom:592.685334pt;}
.y95{bottom:593.743600pt;}
.y119{bottom:595.332133pt;}
.ycd{bottom:595.584000pt;}
.y6a{bottom:596.011333pt;}
.yeb{bottom:599.026533pt;}
.y149{bottom:608.957333pt;}
.y94{bottom:610.410267pt;}
.y118{bottom:611.998800pt;}
.ycc{bottom:612.250667pt;}
.y69{bottom:612.678000pt;}
.yea{bottom:615.693200pt;}
.y148{bottom:626.023867pt;}
.y93{bottom:627.076933pt;}
.y117{bottom:628.665467pt;}
.ycb{bottom:628.917333pt;}
.y68{bottom:629.344667pt;}
.ye9{bottom:632.359867pt;}
.y33{bottom:632.506000pt;}
.y147{bottom:643.090667pt;}
.y92{bottom:643.743600pt;}
.y116{bottom:645.332133pt;}
.yca{bottom:645.584000pt;}
.y6{bottom:645.598667pt;}
.y67{bottom:646.011333pt;}
.y10e{bottom:646.012400pt;}
.y32{bottom:648.506000pt;}
.ye8{bottom:649.026533pt;}
.y146{bottom:660.157333pt;}
.y91{bottom:660.411333pt;}
.y115{bottom:661.998800pt;}
.yc9{bottom:662.250667pt;}
.y66{bottom:662.678000pt;}
.y31{bottom:664.506000pt;}
.y3{bottom:668.977329pt;}
.y145{bottom:677.223867pt;}
.y10d{bottom:678.665467pt;}
.yc8{bottom:678.917333pt;}
.y65{bottom:679.344667pt;}
.y90{bottom:679.345733pt;}
.y30{bottom:680.506000pt;}
.y10b{bottom:687.946267pt;}
.y144{bottom:694.290667pt;}
.y10c{bottom:695.332000pt;}
.yc7{bottom:695.584000pt;}
.y64{bottom:696.011333pt;}
.y2f{bottom:696.506000pt;}
.y10a{bottom:703.946267pt;}
.y143{bottom:711.357200pt;}
.y8f{bottom:711.998667pt;}
.yc6{bottom:712.250667pt;}
.y2e{bottom:712.506000pt;}
.y63{bottom:712.678000pt;}
.y109{bottom:719.946267pt;}
.y142{bottom:728.423867pt;}
.y2d{bottom:728.506000pt;}
.y8e{bottom:728.665333pt;}
.yc5{bottom:728.917333pt;}
.y62{bottom:729.344667pt;}
.y108{bottom:735.946267pt;}
.y2c{bottom:744.506000pt;}
.y8d{bottom:745.332000pt;}
.y141{bottom:745.490533pt;}
.yc4{bottom:745.584000pt;}
.y61{bottom:746.011333pt;}
.y107{bottom:751.946267pt;}
.y8c{bottom:761.998667pt;}
.yc3{bottom:762.250667pt;}
.y140{bottom:762.557333pt;}
.y60{bottom:762.678000pt;}
.y8b{bottom:778.665333pt;}
.yc2{bottom:778.917333pt;}
.y5f{bottom:779.345733pt;}
.y13f{bottom:779.624000pt;}
.y2{bottom:781.661334pt;}
.y2b{bottom:790.742133pt;}
.y8a{bottom:795.332000pt;}
.yc1{bottom:795.584000pt;}
.y13e{bottom:796.691600pt;}
.y2a{bottom:807.321733pt;}
.y5e{bottom:811.998667pt;}
.yc0{bottom:812.250667pt;}
.y29{bottom:823.901200pt;}
.y5d{bottom:828.665333pt;}
.ybf{bottom:828.917333pt;}
.y13d{bottom:829.344667pt;}
.y5c{bottom:845.332000pt;}
.ybe{bottom:845.584000pt;}
.y13c{bottom:846.011333pt;}
.y28{bottom:858.219333pt;}
.y1{bottom:859.312000pt;}
.y5b{bottom:861.998667pt;}
.ybd{bottom:862.250667pt;}
.y13b{bottom:862.678000pt;}
.y5a{bottom:878.665333pt;}
.ybc{bottom:878.917333pt;}
.y13a{bottom:879.344667pt;}
.y27{bottom:887.019333pt;}
.y59{bottom:895.332000pt;}
.ybb{bottom:895.584000pt;}
.y139{bottom:896.011333pt;}
.y58{bottom:911.998667pt;}
.yba{bottom:912.250667pt;}
.y138{bottom:912.678000pt;}
.y26{bottom:915.819333pt;}
.y57{bottom:928.665333pt;}
.yb9{bottom:928.917333pt;}
.y137{bottom:929.345733pt;}
.y56{bottom:945.332000pt;}
.yb8{bottom:945.584000pt;}
.y25{bottom:952.178400pt;}
.y55{bottom:961.998667pt;}
.yb7{bottom:962.250667pt;}
.y54{bottom:978.665333pt;}
.yb6{bottom:978.917333pt;}
.y53{bottom:995.332000pt;}
.yb5{bottom:995.584000pt;}
.y52{bottom:1011.998667pt;}
.yb4{bottom:1012.250667pt;}
.y24{bottom:1040.326400pt;}
.y23{bottom:1053.126400pt;}
.y22{bottom:1065.926400pt;}
.y51{bottom:1074.834667pt;}
.h7{height:28.560000pt;}
.h9{height:32.853333pt;}
.ha{height:34.012280pt;}
.h12{height:36.145536pt;}
.he{height:40.000000pt;}
.h13{height:40.053333pt;}
.h6{height:40.800000pt;}
.hf{height:40.906667pt;}
.h3{height:42.840000pt;}
.hb{height:44.000000pt;}
.h10{height:44.982968pt;}
.h11{height:45.181920pt;}
.hd{height:48.000000pt;}
.h2{height:48.960000pt;}
.h14{height:60.344000pt;}
.h5{height:69.360000pt;}
.hc{height:72.000000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:102.047200pt;}
.x10{left:109.606267pt;}
.xb{left:113.385733pt;}
.xf{left:120.944800pt;}
.xc{left:124.724400pt;}
.xe{left:132.283467pt;}
.x4{left:180.874667pt;}
.x15{left:205.700800pt;}
.x5{left:289.328000pt;}
.x11{left:308.270533pt;}
.x7{left:370.244133pt;}
.x8{left:372.772000pt;}
.x9{left:376.398667pt;}
.x3{left:404.408000pt;}
.x16{left:421.814400pt;}
.xd{left:473.960667pt;}
.x12{left:520.757467pt;}
.x13{left:523.285467pt;}
.x14{left:526.912000pt;}
.x6{left:550.924667pt;}
}




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