
    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_cf8fe76693005ac5a9a24b5b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d1bd228c7e7d4526837725e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_336a17c49acc758ed5184595.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_1f6fdee3e012fbf8a91573db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_a1780c9366638fa214769903.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_2662ddbaefdc5b4aca095d88.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_330eab64ba6515202ed755c0.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_5473bc5c683c6eba1919c366.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_0260ddf77afa6db19fb30d64.woff2')format("woff");}.ff9{font-family:ff9;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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980600px;}
.v1{vertical-align:21.978000px;}
.ls16{letter-spacing:-3.300000px;}
.ls1e{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.840000px;}
.ls1f{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.600000px;}
.ls4f{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.486000px;}
.ls19{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.300000px;}
.ls4e{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.240000px;}
.ls42{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.120000px;}
.ls3f{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.060000px;}
.ls43{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls3c{letter-spacing:0.253800px;}
.ls2e{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.300000px;}
.ls4a{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.420000px;}
.ls4c{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.438600px;}
.ls4{letter-spacing:0.480000px;}
.ls4b{letter-spacing:0.486000px;}
.ls2f{letter-spacing:0.489000px;}
.ls0{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.594000px;}
.ls41{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.702000px;}
.ls2a{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.780000px;}
.ls4d{letter-spacing:0.810000px;}
.ls5{letter-spacing:0.840000px;}
.ls38{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.918000px;}
.ls31{letter-spacing:0.960000px;}
.ls9{letter-spacing:1.020000px;}
.ls45{letter-spacing:1.026000px;}
.ls14{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.140000px;}
.ls2c{letter-spacing:1.404000px;}
.lsb{letter-spacing:1.440000px;}
.ls47{letter-spacing:1.620000px;}
.ls11{letter-spacing:1.662000px;}
.ls28{letter-spacing:1.674000px;}
.ls46{letter-spacing:1.782000px;}
.ls2b{letter-spacing:1.836000px;}
.ls23{letter-spacing:2.382000px;}
.ls24{letter-spacing:2.400000px;}
.ls36{letter-spacing:3.078000px;}
.ls3d{letter-spacing:4.093200px;}
.ls30{letter-spacing:5.100000px;}
.ls3a{letter-spacing:5.184000px;}
.ls39{letter-spacing:6.642000px;}
.ls2d{letter-spacing:11.048400px;}
.ls35{letter-spacing:23.436000px;}
.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;}
}
.ws53{word-spacing:-15.660000px;}
.ws2{word-spacing:-15.480000px;}
.ws1{word-spacing:-15.420000px;}
.ws2d{word-spacing:-15.000000px;}
.ws52{word-spacing:-14.880000px;}
.ws5{word-spacing:-14.760000px;}
.ws51{word-spacing:-14.700000px;}
.ws0{word-spacing:-14.400000px;}
.ws9b{word-spacing:-14.310000px;}
.ws8{word-spacing:-13.500000px;}
.ws9c{word-spacing:-13.338000px;}
.ws6a{word-spacing:-13.176000px;}
.wsa{word-spacing:-13.122000px;}
.ws90{word-spacing:-11.700000px;}
.ws95{word-spacing:-9.840000px;}
.ws6d{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.619500px;}
.ws4{word-spacing:-8.745000px;}
.ws75{word-spacing:-6.540000px;}
.ws82{word-spacing:-6.240000px;}
.ws87{word-spacing:-5.724000px;}
.ws85{word-spacing:-5.670000px;}
.ws30{word-spacing:-3.300000px;}
.ws3e{word-spacing:-3.240000px;}
.wsaf{word-spacing:-3.186000px;}
.ws6e{word-spacing:-3.120000px;}
.ws8c{word-spacing:-3.078000px;}
.ws73{word-spacing:-3.060000px;}
.wsd{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.940000px;}
.ws25{word-spacing:-2.820000px;}
.ws2c{word-spacing:-2.700000px;}
.ws16{word-spacing:-2.580000px;}
.ws78{word-spacing:-2.538000px;}
.ws99{word-spacing:-2.484000px;}
.ws7b{word-spacing:-2.400000px;}
.ws36{word-spacing:-2.340000px;}
.ws6c{word-spacing:-2.220000px;}
.wsb0{word-spacing:-2.214000px;}
.ws5c{word-spacing:-2.160000px;}
.wsad{word-spacing:-2.106000px;}
.ws5f{word-spacing:-2.100000px;}
.ws35{word-spacing:-2.040000px;}
.wse{word-spacing:-1.740000px;}
.ws68{word-spacing:-1.674000px;}
.ws8a{word-spacing:-1.560000px;}
.ws6b{word-spacing:-1.440000px;}
.ws70{word-spacing:-1.404000px;}
.ws80{word-spacing:-1.320000px;}
.ws74{word-spacing:-1.200000px;}
.ws47{word-spacing:-1.080000px;}
.ws9f{word-spacing:-1.026000px;}
.ws88{word-spacing:-1.020000px;}
.ws42{word-spacing:-0.972000px;}
.wsa9{word-spacing:-0.918000px;}
.ws8e{word-spacing:-0.900000px;}
.ws92{word-spacing:-0.864000px;}
.ws20{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.780000px;}
.ws9d{word-spacing:-0.756000px;}
.ws93{word-spacing:-0.702000px;}
.ws1f{word-spacing:-0.660000px;}
.ws9a{word-spacing:-0.648000px;}
.ws8b{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.420000px;}
.wsa3{word-spacing:-0.378000px;}
.ws7f{word-spacing:-0.300000px;}
.ws79{word-spacing:-0.270000px;}
.ws2e{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.180000px;}
.ws72{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.120000px;}
.ws29{word-spacing:-0.060000px;}
.ws43{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.wsa8{word-spacing:0.054000px;}
.ws37{word-spacing:0.060000px;}
.ws84{word-spacing:0.108000px;}
.ws15{word-spacing:0.120000px;}
.ws86{word-spacing:0.162000px;}
.ws34{word-spacing:0.180000px;}
.ws98{word-spacing:0.216000px;}
.ws2a{word-spacing:0.240000px;}
.ws59{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.ws2b{word-spacing:0.378000px;}
.ws19{word-spacing:0.420000px;}
.ws3f{word-spacing:0.480000px;}
.ws77{word-spacing:0.486000px;}
.ws4f{word-spacing:0.540000px;}
.ws46{word-spacing:0.600000px;}
.ws62{word-spacing:0.840000px;}
.ws1c{word-spacing:0.900000px;}
.ws38{word-spacing:1.080000px;}
.ws44{word-spacing:1.140000px;}
.ws66{word-spacing:1.458000px;}
.ws55{word-spacing:1.560000px;}
.wsa4{word-spacing:1.566000px;}
.ws2f{word-spacing:1.620000px;}
.wsb1{word-spacing:1.728000px;}
.ws60{word-spacing:1.800000px;}
.ws58{word-spacing:2.040000px;}
.ws11{word-spacing:2.100000px;}
.wsae{word-spacing:2.106000px;}
.ws33{word-spacing:2.160000px;}
.ws63{word-spacing:2.220000px;}
.ws39{word-spacing:2.280000px;}
.ws5b{word-spacing:2.340000px;}
.ws3b{word-spacing:2.400000px;}
.ws5d{word-spacing:2.520000px;}
.ws97{word-spacing:2.538000px;}
.ws12{word-spacing:2.760000px;}
.ws83{word-spacing:2.808000px;}
.ws10{word-spacing:2.820000px;}
.wsa0{word-spacing:2.862000px;}
.ws64{word-spacing:2.880000px;}
.ws26{word-spacing:2.940000px;}
.wsa7{word-spacing:3.078000px;}
.ws56{word-spacing:3.240000px;}
.ws1d{word-spacing:3.300000px;}
.wsac{word-spacing:3.402000px;}
.ws24{word-spacing:3.540000px;}
.ws4b{word-spacing:3.720000px;}
.ws7c{word-spacing:3.780000px;}
.ws18{word-spacing:3.900000px;}
.ws49{word-spacing:3.960000px;}
.ws96{word-spacing:3.996000px;}
.wsaa{word-spacing:4.050000px;}
.ws7e{word-spacing:4.080000px;}
.ws31{word-spacing:4.140000px;}
.ws3c{word-spacing:4.320000px;}
.ws65{word-spacing:4.428000px;}
.ws32{word-spacing:4.440000px;}
.ws7a{word-spacing:4.482000px;}
.ws28{word-spacing:4.500000px;}
.ws54{word-spacing:4.560000px;}
.ws61{word-spacing:4.620000px;}
.ws5e{word-spacing:4.680000px;}
.ws40{word-spacing:4.740000px;}
.ws67{word-spacing:4.806000px;}
.ws4a{word-spacing:4.860000px;}
.ws1e{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.wsa5{word-spacing:5.022000px;}
.ws1b{word-spacing:5.100000px;}
.ws9e{word-spacing:5.130000px;}
.ws57{word-spacing:5.160000px;}
.wsb2{word-spacing:5.346000px;}
.ws7d{word-spacing:5.520000px;}
.wsa6{word-spacing:5.562000px;}
.ws21{word-spacing:5.640000px;}
.ws91{word-spacing:5.724000px;}
.wsab{word-spacing:5.778000px;}
.ws8f{word-spacing:5.940000px;}
.ws4e{word-spacing:6.120000px;}
.ws4d{word-spacing:6.240000px;}
.ws76{word-spacing:6.300000px;}
.wsf{word-spacing:6.480000px;}
.ws81{word-spacing:6.540000px;}
.ws89{word-spacing:6.660000px;}
.ws3a{word-spacing:7.020000px;}
.ws48{word-spacing:7.140000px;}
.ws94{word-spacing:7.200000px;}
.ws3d{word-spacing:7.560000px;}
.ws41{word-spacing:8.910000px;}
.ws71{word-spacing:9.450000px;}
.ws23{word-spacing:9.480000px;}
.wsa2{word-spacing:10.638000px;}
.ws69{word-spacing:10.962000px;}
.wsa1{word-spacing:11.610000px;}
.ws6f{word-spacing:12.258000px;}
.ws8d{word-spacing:20.358000px;}
.wsb{word-spacing:165.294000px;}
.ws6{word-spacing:168.318000px;}
.ws7{word-spacing:195.210000px;}
.ws22{word-spacing:199.560000px;}
.ws5a{word-spacing:201.000000px;}
.ws9{word-spacing:213.300000px;}
._23{margin-left:-198.660000px;}
._7{margin-left:-8.289000px;}
._4{margin-left:-6.666000px;}
._6{margin-left:-4.950000px;}
._3{margin-left:-3.888000px;}
._0{margin-left:-2.706000px;}
._1{margin-left:-1.020000px;}
._c{width:1.326000px;}
._d{width:2.442000px;}
._b{width:3.828000px;}
._a{width:5.184000px;}
._5{width:6.600000px;}
._24{width:7.740000px;}
._25{width:9.360000px;}
._10{width:29.154000px;}
._14{width:39.138000px;}
._11{width:42.498000px;}
._f{width:52.458000px;}
._13{width:59.118000px;}
._15{width:62.478000px;}
._12{width:65.778000px;}
._16{width:68.340000px;}
._17{width:78.300000px;}
._1e{width:101.142000px;}
._1f{width:109.842000px;}
._1b{width:143.046000px;}
._1a{width:179.982000px;}
._1c{width:193.812000px;}
._22{width:195.420000px;}
._21{width:196.440000px;}
._2{width:198.240000px;}
._9{width:201.000000px;}
._e{width:204.360000px;}
._1d{width:349.434000px;}
._20{width:386.884800px;}
._18{width:427.014000px;}
._19{width:777.168000px;}
._8{width:1195.104000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:64.146000px;}
.y181{bottom:68.737800px;}
.y12b{bottom:73.725000px;}
.y144{bottom:78.117150px;}
.yb1{bottom:82.146000px;}
.yc7{bottom:82.386000px;}
.y180{bottom:84.937800px;}
.y29{bottom:89.765850px;}
.y14{bottom:90.005850px;}
.y9b{bottom:91.500000px;}
.y12a{bottom:91.725000px;}
.y143{bottom:94.317150px;}
.yb0{bottom:100.146000px;}
.yc6{bottom:100.386000px;}
.y17f{bottom:102.937800px;}
.y116{bottom:104.712300px;}
.ydd{bottom:106.142850px;}
.y28{bottom:107.765850px;}
.y13{bottom:108.005850px;}
.y129{bottom:109.725000px;}
.y142{bottom:110.517150px;}
.yaf{bottom:118.146000px;}
.yc5{bottom:118.386000px;}
.ydc{bottom:122.342850px;}
.y115{bottom:122.712300px;}
.y27{bottom:125.765850px;}
.y12{bottom:126.005850px;}
.y141{bottom:126.717150px;}
.y128{bottom:127.725000px;}
.y5d{bottom:129.231600px;}
.yae{bottom:136.146000px;}
.yc4{bottom:136.386000px;}
.ydb{bottom:138.542850px;}
.y114{bottom:140.712300px;}
.y140{bottom:142.917150px;}
.y26{bottom:143.765850px;}
.y11{bottom:144.005850px;}
.y127{bottom:145.725000px;}
.y101{bottom:145.825200px;}
.y5c{bottom:147.231600px;}
.yad{bottom:154.146000px;}
.yc3{bottom:154.386000px;}
.yda{bottom:154.742850px;}
.y113{bottom:158.712300px;}
.y13f{bottom:159.117150px;}
.y25{bottom:161.765850px;}
.y10{bottom:162.005850px;}
.y126{bottom:163.725000px;}
.y100{bottom:163.825200px;}
.y5b{bottom:165.231600px;}
.yac{bottom:172.146000px;}
.yc2{bottom:172.386000px;}
.y13e{bottom:175.317150px;}
.y112{bottom:176.712300px;}
.y24{bottom:179.765850px;}
.yf{bottom:180.005850px;}
.y125{bottom:181.725000px;}
.yff{bottom:181.825200px;}
.y5a{bottom:183.231600px;}
.yab{bottom:190.146000px;}
.yc1{bottom:190.386000px;}
.y13d{bottom:191.517150px;}
.y23{bottom:197.765850px;}
.ye{bottom:198.005850px;}
.yfe{bottom:199.825200px;}
.y59{bottom:201.231600px;}
.y7a{bottom:201.471600px;}
.y13c{bottom:207.717150px;}
.yaa{bottom:208.146000px;}
.yc0{bottom:208.386000px;}
.y111{bottom:212.712300px;}
.y22{bottom:215.765850px;}
.yd{bottom:216.005850px;}
.y124{bottom:217.725000px;}
.yfd{bottom:217.825200px;}
.y58{bottom:219.231600px;}
.y79{bottom:219.471600px;}
.y13b{bottom:223.917150px;}
.ya9{bottom:226.146000px;}
.ybf{bottom:226.386000px;}
.y110{bottom:230.712300px;}
.y21{bottom:233.765850px;}
.y123{bottom:233.925000px;}
.yc{bottom:234.005850px;}
.yfc{bottom:235.825200px;}
.y57{bottom:237.231600px;}
.y78{bottom:237.471600px;}
.y13a{bottom:240.117150px;}
.ya8{bottom:244.146000px;}
.ybe{bottom:244.386000px;}
.y10f{bottom:248.712300px;}
.y122{bottom:250.125000px;}
.y20{bottom:251.765850px;}
.yb{bottom:252.005850px;}
.yd8{bottom:253.684800px;}
.yfb{bottom:253.825200px;}
.y56{bottom:255.231600px;}
.y77{bottom:255.471600px;}
.y139{bottom:256.317150px;}
.ya7{bottom:262.146000px;}
.ybd{bottom:262.386000px;}
.y121{bottom:266.325000px;}
.y10e{bottom:266.712300px;}
.y1f{bottom:269.765850px;}
.ya{bottom:270.005850px;}
.yd7{bottom:271.684800px;}
.yfa{bottom:271.825200px;}
.y55{bottom:273.231600px;}
.ya6{bottom:280.146000px;}
.ybc{bottom:280.386000px;}
.y10d{bottom:284.712300px;}
.y1e{bottom:287.765850px;}
.y9{bottom:288.005850px;}
.yd6{bottom:289.684800px;}
.yf9{bottom:289.825200px;}
.y138{bottom:290.517000px;}
.y54{bottom:291.231600px;}
.y76{bottom:291.471600px;}
.ya5{bottom:298.146000px;}
.ybb{bottom:298.386000px;}
.y10c{bottom:302.712300px;}
.y1d{bottom:305.765850px;}
.y8{bottom:306.005850px;}
.yd5{bottom:307.684800px;}
.yf8{bottom:307.825200px;}
.y53{bottom:309.231600px;}
.y75{bottom:309.471600px;}
.ya4{bottom:316.146000px;}
.yba{bottom:316.386000px;}
.y10b{bottom:320.712300px;}
.y1c{bottom:323.765850px;}
.y7{bottom:324.005850px;}
.yd4{bottom:325.684800px;}
.yf7{bottom:325.825200px;}
.y137{bottom:326.517000px;}
.y52{bottom:327.231600px;}
.y74{bottom:327.471600px;}
.ya3{bottom:334.146000px;}
.yb9{bottom:334.386000px;}
.y10a{bottom:338.712300px;}
.y1b{bottom:341.765850px;}
.y6{bottom:342.005850px;}
.y136{bottom:342.717000px;}
.yd3{bottom:343.684800px;}
.yf6{bottom:343.825200px;}
.y51{bottom:345.231600px;}
.y73{bottom:345.471600px;}
.ya2{bottom:352.146000px;}
.yb8{bottom:352.386000px;}
.y109{bottom:356.712300px;}
.y135{bottom:358.917000px;}
.y1a{bottom:359.765850px;}
.y5{bottom:360.005850px;}
.yd2{bottom:361.684800px;}
.y50{bottom:363.231600px;}
.y72{bottom:363.471600px;}
.ya1{bottom:370.146000px;}
.yb7{bottom:370.386000px;}
.y108{bottom:374.712300px;}
.y19{bottom:377.765850px;}
.y4{bottom:378.005850px;}
.yd1{bottom:379.684800px;}
.yf5{bottom:379.825200px;}
.y4f{bottom:381.231600px;}
.y71{bottom:381.471600px;}
.ya0{bottom:388.146000px;}
.yb6{bottom:388.386000px;}
.y18{bottom:395.765850px;}
.y3{bottom:396.005850px;}
.yf4{bottom:396.025200px;}
.yd0{bottom:397.684800px;}
.y4e{bottom:399.231600px;}
.y70{bottom:399.471600px;}
.y9f{bottom:406.146000px;}
.yb5{bottom:406.386000px;}
.y107{bottom:410.712300px;}
.yf3{bottom:412.225200px;}
.y17{bottom:413.765850px;}
.y2{bottom:414.005850px;}
.ycf{bottom:415.684800px;}
.y4d{bottom:417.231600px;}
.y6f{bottom:417.471600px;}
.y9e{bottom:424.146000px;}
.yb4{bottom:424.386000px;}
.yf2{bottom:428.425200px;}
.y106{bottom:428.712300px;}
.y16{bottom:431.765850px;}
.yce{bottom:433.684800px;}
.y4c{bottom:435.231600px;}
.y6e{bottom:435.471600px;}
.y9d{bottom:442.146000px;}
.yb3{bottom:442.386000px;}
.y15{bottom:449.765850px;}
.y1{bottom:450.005850px;}
.ycd{bottom:451.684800px;}
.y4b{bottom:453.231600px;}
.y6d{bottom:453.471600px;}
.y164{bottom:460.444800px;}
.y105{bottom:464.712300px;}
.ycc{bottom:469.684800px;}
.y4a{bottom:471.231600px;}
.y6c{bottom:471.471600px;}
.y163{bottom:476.644800px;}
.y9c{bottom:480.506700px;}
.y104{bottom:480.912300px;}
.ycb{bottom:487.684800px;}
.y49{bottom:489.231600px;}
.y6b{bottom:489.471600px;}
.y162{bottom:492.844800px;}
.y38{bottom:495.577350px;}
.y103{bottom:497.112300px;}
.yca{bottom:505.684800px;}
.y48{bottom:507.231600px;}
.y6a{bottom:507.471600px;}
.y161{bottom:509.044800px;}
.y39{bottom:511.561350px;}
.y37{bottom:511.777350px;}
.y102{bottom:513.312300px;}
.yc9{bottom:523.684800px;}
.y47{bottom:525.231600px;}
.y160{bottom:525.244800px;}
.y69{bottom:525.471600px;}
.y36{bottom:531.932850px;}
.y15f{bottom:541.444800px;}
.yc8{bottom:541.684800px;}
.y46{bottom:543.231600px;}
.y68{bottom:543.471600px;}
.y35{bottom:551.872350px;}
.y134{bottom:557.193150px;}
.y17e{bottom:557.469300px;}
.y15e{bottom:557.644800px;}
.y45{bottom:561.231600px;}
.y67{bottom:561.471600px;}
.y34{bottom:568.301850px;}
.y17d{bottom:573.669300px;}
.y15d{bottom:573.844800px;}
.y133{bottom:575.193150px;}
.y66{bottom:579.471600px;}
.yd9{bottom:582.085200px;}
.yf1{bottom:583.668300px;}
.y33{bottom:588.463650px;}
.y17c{bottom:589.869300px;}
.y15c{bottom:590.044800px;}
.y132{bottom:593.193150px;}
.y44{bottom:597.231600px;}
.y65{bottom:597.471600px;}
.yf0{bottom:601.668300px;}
.y96{bottom:601.841250px;}
.y120{bottom:604.824900px;}
.y17b{bottom:606.069300px;}
.y15b{bottom:606.244800px;}
.y32{bottom:608.619150px;}
.y131{bottom:611.193150px;}
.y64{bottom:615.471600px;}
.yef{bottom:619.668300px;}
.y95{bottom:619.841250px;}
.y17a{bottom:622.269300px;}
.y15a{bottom:622.444800px;}
.y11f{bottom:622.824900px;}
.y130{bottom:629.193150px;}
.y43{bottom:633.231600px;}
.y63{bottom:633.471600px;}
.yee{bottom:637.668300px;}
.y94{bottom:637.841250px;}
.y179{bottom:638.469300px;}
.y159{bottom:638.644800px;}
.y11e{bottom:640.824900px;}
.y31{bottom:647.161950px;}
.y12f{bottom:647.193150px;}
.y42{bottom:651.231600px;}
.y62{bottom:651.471600px;}
.y178{bottom:654.669300px;}
.y158{bottom:654.844800px;}
.yed{bottom:655.668300px;}
.y93{bottom:655.841250px;}
.y11d{bottom:658.824900px;}
.y30{bottom:665.161950px;}
.y41{bottom:669.231600px;}
.y61{bottom:669.471600px;}
.y177{bottom:670.869300px;}
.y157{bottom:671.044800px;}
.yec{bottom:673.668300px;}
.y9a{bottom:673.841250px;}
.y11c{bottom:676.824900px;}
.y2f{bottom:683.161950px;}
.y12e{bottom:683.193150px;}
.y176{bottom:687.069300px;}
.y40{bottom:687.231600px;}
.y156{bottom:687.244800px;}
.y60{bottom:687.471600px;}
.yeb{bottom:691.668300px;}
.y92{bottom:691.841250px;}
.y11b{bottom:694.824900px;}
.y12d{bottom:699.393150px;}
.y175{bottom:703.269300px;}
.y155{bottom:703.444800px;}
.y3f{bottom:705.231600px;}
.y5f{bottom:705.471600px;}
.yea{bottom:709.668300px;}
.y91{bottom:709.841250px;}
.y11a{bottom:712.824900px;}
.y12c{bottom:715.593150px;}
.y174{bottom:719.469300px;}
.y154{bottom:719.644800px;}
.y3e{bottom:723.231600px;}
.y5e{bottom:723.471600px;}
.y90{bottom:727.841250px;}
.y173{bottom:735.669300px;}
.y153{bottom:735.844800px;}
.y2e{bottom:742.156950px;}
.ye9{bottom:745.668300px;}
.y99{bottom:745.841250px;}
.y119{bottom:748.824900px;}
.y172{bottom:751.869300px;}
.y152{bottom:752.044800px;}
.ye8{bottom:763.668300px;}
.y8f{bottom:763.841250px;}
.y118{bottom:765.024900px;}
.y171{bottom:768.069300px;}
.y151{bottom:768.244800px;}
.y84{bottom:770.785200px;}
.y2d{bottom:778.156950px;}
.y117{bottom:781.224900px;}
.ye7{bottom:781.668300px;}
.y8e{bottom:781.841250px;}
.y170{bottom:784.269300px;}
.y150{bottom:784.444800px;}
.y83{bottom:793.654200px;}
.ye6{bottom:799.668300px;}
.y8d{bottom:799.841250px;}
.y16f{bottom:800.469300px;}
.y14f{bottom:800.644800px;}
.y82{bottom:816.523200px;}
.y16e{bottom:816.669300px;}
.y14e{bottom:816.844800px;}
.ye5{bottom:817.668300px;}
.y8c{bottom:817.841250px;}
.y2c{bottom:828.961950px;}
.y16d{bottom:832.869300px;}
.y14d{bottom:833.044800px;}
.ye4{bottom:835.668300px;}
.y8b{bottom:835.841250px;}
.y81{bottom:839.378700px;}
.y16c{bottom:849.069300px;}
.y14c{bottom:849.244800px;}
.ye3{bottom:853.668300px;}
.y98{bottom:853.841250px;}
.y80{bottom:862.247700px;}
.y16b{bottom:865.269300px;}
.y14b{bottom:865.444800px;}
.ye2{bottom:871.668300px;}
.y8a{bottom:871.841250px;}
.y7f{bottom:878.434200px;}
.y16a{bottom:881.469300px;}
.y14a{bottom:881.644800px;}
.y2b{bottom:884.761950px;}
.ye1{bottom:889.668300px;}
.y89{bottom:889.841250px;}
.y169{bottom:897.669300px;}
.y149{bottom:897.844800px;}
.y7e{bottom:901.303200px;}
.ye0{bottom:907.668300px;}
.y88{bottom:907.841250px;}
.y2a{bottom:911.761950px;}
.y168{bottom:913.869300px;}
.y148{bottom:914.044800px;}
.y7d{bottom:917.489700px;}
.ydf{bottom:925.668300px;}
.y87{bottom:925.841250px;}
.y167{bottom:930.069300px;}
.y147{bottom:930.244800px;}
.y7c{bottom:940.358700px;}
.y97{bottom:943.841250px;}
.y166{bottom:946.269300px;}
.y146{bottom:946.444800px;}
.yde{bottom:961.668300px;}
.y86{bottom:961.841250px;}
.y165{bottom:962.469300px;}
.y7b{bottom:962.626500px;}
.y145{bottom:962.644800px;}
.y3b{bottom:1012.500000px;}
.y3d{bottom:1017.859800px;}
.y85{bottom:1018.002000px;}
.y3c{bottom:1018.157250px;}
.y3a{bottom:1026.910350px;}
.h5{height:24.304951px;}
.hb{height:33.351562px;}
.ha{height:36.597656px;}
.h8{height:36.602508px;}
.h7{height:36.631308px;}
.h6{height:36.656508px;}
.hf{height:36.951708px;}
.h9{height:37.494141px;}
.hc{height:37.520508px;}
.he{height:37.574508px;}
.h1{height:40.664062px;}
.hd{height:41.660156px;}
.h2{height:41.689453px;}
.h11{height:44.284951px;}
.h10{height:44.285551px;}
.h4{height:48.713446px;}
.h3{height:60.996094px;}
.h0{height:1080.000000px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x5{left:48.004350px;}
.x6{left:94.500000px;}
.xb{left:103.864950px;}
.x1{left:108.000000px;}
.x7{left:132.000000px;}
.x13{left:148.498350px;}
.xc{left:157.743450px;}
.x16{left:184.000800px;}
.xe{left:189.547050px;}
.x3{left:211.950000px;}
.xa{left:242.518800px;}
.x10{left:247.578000px;}
.xf{left:255.102600px;}
.x11{left:260.517750px;}
.x17{left:273.408000px;}
.x15{left:309.985800px;}
.x4{left:313.028250px;}
.xd{left:395.248950px;}
.x8{left:407.250000px;}
.x2{left:420.765000px;}
.x9{left:444.750000px;}
.x14{left:461.266350px;}
.x12{left:474.750000px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760533pt;}
.v1{vertical-align:19.536000pt;}
.ls16{letter-spacing:-2.933333pt;}
.ls1e{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.746667pt;}
.ls1f{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls4f{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.432000pt;}
.ls19{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.266667pt;}
.ls4e{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.213333pt;}
.ls42{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls3f{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls43{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls3c{letter-spacing:0.225600pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls4a{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls4c{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.389867pt;}
.ls4{letter-spacing:0.426667pt;}
.ls4b{letter-spacing:0.432000pt;}
.ls2f{letter-spacing:0.434667pt;}
.ls0{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.528000pt;}
.ls41{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.624000pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls4d{letter-spacing:0.720000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls38{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.816000pt;}
.ls31{letter-spacing:0.853333pt;}
.ls9{letter-spacing:0.906667pt;}
.ls45{letter-spacing:0.912000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls2c{letter-spacing:1.248000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls47{letter-spacing:1.440000pt;}
.ls11{letter-spacing:1.477333pt;}
.ls28{letter-spacing:1.488000pt;}
.ls46{letter-spacing:1.584000pt;}
.ls2b{letter-spacing:1.632000pt;}
.ls23{letter-spacing:2.117333pt;}
.ls24{letter-spacing:2.133333pt;}
.ls36{letter-spacing:2.736000pt;}
.ls3d{letter-spacing:3.638400pt;}
.ls30{letter-spacing:4.533333pt;}
.ls3a{letter-spacing:4.608000pt;}
.ls39{letter-spacing:5.904000pt;}
.ls2d{letter-spacing:9.820800pt;}
.ls35{letter-spacing:20.832000pt;}
.ws53{word-spacing:-13.920000pt;}
.ws2{word-spacing:-13.760000pt;}
.ws1{word-spacing:-13.706667pt;}
.ws2d{word-spacing:-13.333333pt;}
.ws52{word-spacing:-13.226667pt;}
.ws5{word-spacing:-13.120000pt;}
.ws51{word-spacing:-13.066667pt;}
.ws0{word-spacing:-12.800000pt;}
.ws9b{word-spacing:-12.720000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9c{word-spacing:-11.856000pt;}
.ws6a{word-spacing:-11.712000pt;}
.wsa{word-spacing:-11.664000pt;}
.ws90{word-spacing:-10.400000pt;}
.ws95{word-spacing:-8.746667pt;}
.ws6d{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.550667pt;}
.ws4{word-spacing:-7.773333pt;}
.ws75{word-spacing:-5.813333pt;}
.ws82{word-spacing:-5.546667pt;}
.ws87{word-spacing:-5.088000pt;}
.ws85{word-spacing:-5.040000pt;}
.ws30{word-spacing:-2.933333pt;}
.ws3e{word-spacing:-2.880000pt;}
.wsaf{word-spacing:-2.832000pt;}
.ws6e{word-spacing:-2.773333pt;}
.ws8c{word-spacing:-2.736000pt;}
.ws73{word-spacing:-2.720000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.613333pt;}
.ws25{word-spacing:-2.506667pt;}
.ws2c{word-spacing:-2.400000pt;}
.ws16{word-spacing:-2.293333pt;}
.ws78{word-spacing:-2.256000pt;}
.ws99{word-spacing:-2.208000pt;}
.ws7b{word-spacing:-2.133333pt;}
.ws36{word-spacing:-2.080000pt;}
.ws6c{word-spacing:-1.973333pt;}
.wsb0{word-spacing:-1.968000pt;}
.ws5c{word-spacing:-1.920000pt;}
.wsad{word-spacing:-1.872000pt;}
.ws5f{word-spacing:-1.866667pt;}
.ws35{word-spacing:-1.813333pt;}
.wse{word-spacing:-1.546667pt;}
.ws68{word-spacing:-1.488000pt;}
.ws8a{word-spacing:-1.386667pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws70{word-spacing:-1.248000pt;}
.ws80{word-spacing:-1.173333pt;}
.ws74{word-spacing:-1.066667pt;}
.ws47{word-spacing:-0.960000pt;}
.ws9f{word-spacing:-0.912000pt;}
.ws88{word-spacing:-0.906667pt;}
.ws42{word-spacing:-0.864000pt;}
.wsa9{word-spacing:-0.816000pt;}
.ws8e{word-spacing:-0.800000pt;}
.ws92{word-spacing:-0.768000pt;}
.ws20{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.693333pt;}
.ws9d{word-spacing:-0.672000pt;}
.ws93{word-spacing:-0.624000pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws9a{word-spacing:-0.576000pt;}
.ws8b{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.373333pt;}
.wsa3{word-spacing:-0.336000pt;}
.ws7f{word-spacing:-0.266667pt;}
.ws79{word-spacing:-0.240000pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.160000pt;}
.ws72{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws29{word-spacing:-0.053333pt;}
.ws43{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.048000pt;}
.ws37{word-spacing:0.053333pt;}
.ws84{word-spacing:0.096000pt;}
.ws15{word-spacing:0.106667pt;}
.ws86{word-spacing:0.144000pt;}
.ws34{word-spacing:0.160000pt;}
.ws98{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws59{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.336000pt;}
.ws19{word-spacing:0.373333pt;}
.ws3f{word-spacing:0.426667pt;}
.ws77{word-spacing:0.432000pt;}
.ws4f{word-spacing:0.480000pt;}
.ws46{word-spacing:0.533333pt;}
.ws62{word-spacing:0.746667pt;}
.ws1c{word-spacing:0.800000pt;}
.ws38{word-spacing:0.960000pt;}
.ws44{word-spacing:1.013333pt;}
.ws66{word-spacing:1.296000pt;}
.ws55{word-spacing:1.386667pt;}
.wsa4{word-spacing:1.392000pt;}
.ws2f{word-spacing:1.440000pt;}
.wsb1{word-spacing:1.536000pt;}
.ws60{word-spacing:1.600000pt;}
.ws58{word-spacing:1.813333pt;}
.ws11{word-spacing:1.866667pt;}
.wsae{word-spacing:1.872000pt;}
.ws33{word-spacing:1.920000pt;}
.ws63{word-spacing:1.973333pt;}
.ws39{word-spacing:2.026667pt;}
.ws5b{word-spacing:2.080000pt;}
.ws3b{word-spacing:2.133333pt;}
.ws5d{word-spacing:2.240000pt;}
.ws97{word-spacing:2.256000pt;}
.ws12{word-spacing:2.453333pt;}
.ws83{word-spacing:2.496000pt;}
.ws10{word-spacing:2.506667pt;}
.wsa0{word-spacing:2.544000pt;}
.ws64{word-spacing:2.560000pt;}
.ws26{word-spacing:2.613333pt;}
.wsa7{word-spacing:2.736000pt;}
.ws56{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.933333pt;}
.wsac{word-spacing:3.024000pt;}
.ws24{word-spacing:3.146667pt;}
.ws4b{word-spacing:3.306667pt;}
.ws7c{word-spacing:3.360000pt;}
.ws18{word-spacing:3.466667pt;}
.ws49{word-spacing:3.520000pt;}
.ws96{word-spacing:3.552000pt;}
.wsaa{word-spacing:3.600000pt;}
.ws7e{word-spacing:3.626667pt;}
.ws31{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.840000pt;}
.ws65{word-spacing:3.936000pt;}
.ws32{word-spacing:3.946667pt;}
.ws7a{word-spacing:3.984000pt;}
.ws28{word-spacing:4.000000pt;}
.ws54{word-spacing:4.053333pt;}
.ws61{word-spacing:4.106667pt;}
.ws5e{word-spacing:4.160000pt;}
.ws40{word-spacing:4.213333pt;}
.ws67{word-spacing:4.272000pt;}
.ws4a{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.wsa5{word-spacing:4.464000pt;}
.ws1b{word-spacing:4.533333pt;}
.ws9e{word-spacing:4.560000pt;}
.ws57{word-spacing:4.586667pt;}
.wsb2{word-spacing:4.752000pt;}
.ws7d{word-spacing:4.906667pt;}
.wsa6{word-spacing:4.944000pt;}
.ws21{word-spacing:5.013333pt;}
.ws91{word-spacing:5.088000pt;}
.wsab{word-spacing:5.136000pt;}
.ws8f{word-spacing:5.280000pt;}
.ws4e{word-spacing:5.440000pt;}
.ws4d{word-spacing:5.546667pt;}
.ws76{word-spacing:5.600000pt;}
.wsf{word-spacing:5.760000pt;}
.ws81{word-spacing:5.813333pt;}
.ws89{word-spacing:5.920000pt;}
.ws3a{word-spacing:6.240000pt;}
.ws48{word-spacing:6.346667pt;}
.ws94{word-spacing:6.400000pt;}
.ws3d{word-spacing:6.720000pt;}
.ws41{word-spacing:7.920000pt;}
.ws71{word-spacing:8.400000pt;}
.ws23{word-spacing:8.426667pt;}
.wsa2{word-spacing:9.456000pt;}
.ws69{word-spacing:9.744000pt;}
.wsa1{word-spacing:10.320000pt;}
.ws6f{word-spacing:10.896000pt;}
.ws8d{word-spacing:18.096000pt;}
.wsb{word-spacing:146.928000pt;}
.ws6{word-spacing:149.616000pt;}
.ws7{word-spacing:173.520000pt;}
.ws22{word-spacing:177.386667pt;}
.ws5a{word-spacing:178.666667pt;}
.ws9{word-spacing:189.600000pt;}
._23{margin-left:-176.586667pt;}
._7{margin-left:-7.368000pt;}
._4{margin-left:-5.925333pt;}
._6{margin-left:-4.400000pt;}
._3{margin-left:-3.456000pt;}
._0{margin-left:-2.405333pt;}
._1{margin-left:-0.906667pt;}
._c{width:1.178667pt;}
._d{width:2.170667pt;}
._b{width:3.402667pt;}
._a{width:4.608000pt;}
._5{width:5.866667pt;}
._24{width:6.880000pt;}
._25{width:8.320000pt;}
._10{width:25.914667pt;}
._14{width:34.789333pt;}
._11{width:37.776000pt;}
._f{width:46.629333pt;}
._13{width:52.549333pt;}
._15{width:55.536000pt;}
._12{width:58.469333pt;}
._16{width:60.746667pt;}
._17{width:69.600000pt;}
._1e{width:89.904000pt;}
._1f{width:97.637333pt;}
._1b{width:127.152000pt;}
._1a{width:159.984000pt;}
._1c{width:172.277333pt;}
._22{width:173.706667pt;}
._21{width:174.613333pt;}
._2{width:176.213333pt;}
._9{width:178.666667pt;}
._e{width:181.653333pt;}
._1d{width:310.608000pt;}
._20{width:343.897600pt;}
._18{width:379.568000pt;}
._19{width:690.816000pt;}
._8{width:1062.314667pt;}
.fs4{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:57.018667pt;}
.y181{bottom:61.100267pt;}
.y12b{bottom:65.533333pt;}
.y144{bottom:69.437467pt;}
.yb1{bottom:73.018667pt;}
.yc7{bottom:73.232000pt;}
.y180{bottom:75.500267pt;}
.y29{bottom:79.791867pt;}
.y14{bottom:80.005200pt;}
.y9b{bottom:81.333333pt;}
.y12a{bottom:81.533333pt;}
.y143{bottom:83.837467pt;}
.yb0{bottom:89.018667pt;}
.yc6{bottom:89.232000pt;}
.y17f{bottom:91.500267pt;}
.y116{bottom:93.077600pt;}
.ydd{bottom:94.349200pt;}
.y28{bottom:95.791867pt;}
.y13{bottom:96.005200pt;}
.y129{bottom:97.533333pt;}
.y142{bottom:98.237467pt;}
.yaf{bottom:105.018667pt;}
.yc5{bottom:105.232000pt;}
.ydc{bottom:108.749200pt;}
.y115{bottom:109.077600pt;}
.y27{bottom:111.791867pt;}
.y12{bottom:112.005200pt;}
.y141{bottom:112.637467pt;}
.y128{bottom:113.533333pt;}
.y5d{bottom:114.872533pt;}
.yae{bottom:121.018667pt;}
.yc4{bottom:121.232000pt;}
.ydb{bottom:123.149200pt;}
.y114{bottom:125.077600pt;}
.y140{bottom:127.037467pt;}
.y26{bottom:127.791867pt;}
.y11{bottom:128.005200pt;}
.y127{bottom:129.533333pt;}
.y101{bottom:129.622400pt;}
.y5c{bottom:130.872533pt;}
.yad{bottom:137.018667pt;}
.yc3{bottom:137.232000pt;}
.yda{bottom:137.549200pt;}
.y113{bottom:141.077600pt;}
.y13f{bottom:141.437467pt;}
.y25{bottom:143.791867pt;}
.y10{bottom:144.005200pt;}
.y126{bottom:145.533333pt;}
.y100{bottom:145.622400pt;}
.y5b{bottom:146.872533pt;}
.yac{bottom:153.018667pt;}
.yc2{bottom:153.232000pt;}
.y13e{bottom:155.837467pt;}
.y112{bottom:157.077600pt;}
.y24{bottom:159.791867pt;}
.yf{bottom:160.005200pt;}
.y125{bottom:161.533333pt;}
.yff{bottom:161.622400pt;}
.y5a{bottom:162.872533pt;}
.yab{bottom:169.018667pt;}
.yc1{bottom:169.232000pt;}
.y13d{bottom:170.237467pt;}
.y23{bottom:175.791867pt;}
.ye{bottom:176.005200pt;}
.yfe{bottom:177.622400pt;}
.y59{bottom:178.872533pt;}
.y7a{bottom:179.085867pt;}
.y13c{bottom:184.637467pt;}
.yaa{bottom:185.018667pt;}
.yc0{bottom:185.232000pt;}
.y111{bottom:189.077600pt;}
.y22{bottom:191.791867pt;}
.yd{bottom:192.005200pt;}
.y124{bottom:193.533333pt;}
.yfd{bottom:193.622400pt;}
.y58{bottom:194.872533pt;}
.y79{bottom:195.085867pt;}
.y13b{bottom:199.037467pt;}
.ya9{bottom:201.018667pt;}
.ybf{bottom:201.232000pt;}
.y110{bottom:205.077600pt;}
.y21{bottom:207.791867pt;}
.y123{bottom:207.933333pt;}
.yc{bottom:208.005200pt;}
.yfc{bottom:209.622400pt;}
.y57{bottom:210.872533pt;}
.y78{bottom:211.085867pt;}
.y13a{bottom:213.437467pt;}
.ya8{bottom:217.018667pt;}
.ybe{bottom:217.232000pt;}
.y10f{bottom:221.077600pt;}
.y122{bottom:222.333333pt;}
.y20{bottom:223.791867pt;}
.yb{bottom:224.005200pt;}
.yd8{bottom:225.497600pt;}
.yfb{bottom:225.622400pt;}
.y56{bottom:226.872533pt;}
.y77{bottom:227.085867pt;}
.y139{bottom:227.837467pt;}
.ya7{bottom:233.018667pt;}
.ybd{bottom:233.232000pt;}
.y121{bottom:236.733333pt;}
.y10e{bottom:237.077600pt;}
.y1f{bottom:239.791867pt;}
.ya{bottom:240.005200pt;}
.yd7{bottom:241.497600pt;}
.yfa{bottom:241.622400pt;}
.y55{bottom:242.872533pt;}
.ya6{bottom:249.018667pt;}
.ybc{bottom:249.232000pt;}
.y10d{bottom:253.077600pt;}
.y1e{bottom:255.791867pt;}
.y9{bottom:256.005200pt;}
.yd6{bottom:257.497600pt;}
.yf9{bottom:257.622400pt;}
.y138{bottom:258.237333pt;}
.y54{bottom:258.872533pt;}
.y76{bottom:259.085867pt;}
.ya5{bottom:265.018667pt;}
.ybb{bottom:265.232000pt;}
.y10c{bottom:269.077600pt;}
.y1d{bottom:271.791867pt;}
.y8{bottom:272.005200pt;}
.yd5{bottom:273.497600pt;}
.yf8{bottom:273.622400pt;}
.y53{bottom:274.872533pt;}
.y75{bottom:275.085867pt;}
.ya4{bottom:281.018667pt;}
.yba{bottom:281.232000pt;}
.y10b{bottom:285.077600pt;}
.y1c{bottom:287.791867pt;}
.y7{bottom:288.005200pt;}
.yd4{bottom:289.497600pt;}
.yf7{bottom:289.622400pt;}
.y137{bottom:290.237333pt;}
.y52{bottom:290.872533pt;}
.y74{bottom:291.085867pt;}
.ya3{bottom:297.018667pt;}
.yb9{bottom:297.232000pt;}
.y10a{bottom:301.077600pt;}
.y1b{bottom:303.791867pt;}
.y6{bottom:304.005200pt;}
.y136{bottom:304.637333pt;}
.yd3{bottom:305.497600pt;}
.yf6{bottom:305.622400pt;}
.y51{bottom:306.872533pt;}
.y73{bottom:307.085867pt;}
.ya2{bottom:313.018667pt;}
.yb8{bottom:313.232000pt;}
.y109{bottom:317.077600pt;}
.y135{bottom:319.037333pt;}
.y1a{bottom:319.791867pt;}
.y5{bottom:320.005200pt;}
.yd2{bottom:321.497600pt;}
.y50{bottom:322.872533pt;}
.y72{bottom:323.085867pt;}
.ya1{bottom:329.018667pt;}
.yb7{bottom:329.232000pt;}
.y108{bottom:333.077600pt;}
.y19{bottom:335.791867pt;}
.y4{bottom:336.005200pt;}
.yd1{bottom:337.497600pt;}
.yf5{bottom:337.622400pt;}
.y4f{bottom:338.872533pt;}
.y71{bottom:339.085867pt;}
.ya0{bottom:345.018667pt;}
.yb6{bottom:345.232000pt;}
.y18{bottom:351.791867pt;}
.y3{bottom:352.005200pt;}
.yf4{bottom:352.022400pt;}
.yd0{bottom:353.497600pt;}
.y4e{bottom:354.872533pt;}
.y70{bottom:355.085867pt;}
.y9f{bottom:361.018667pt;}
.yb5{bottom:361.232000pt;}
.y107{bottom:365.077600pt;}
.yf3{bottom:366.422400pt;}
.y17{bottom:367.791867pt;}
.y2{bottom:368.005200pt;}
.ycf{bottom:369.497600pt;}
.y4d{bottom:370.872533pt;}
.y6f{bottom:371.085867pt;}
.y9e{bottom:377.018667pt;}
.yb4{bottom:377.232000pt;}
.yf2{bottom:380.822400pt;}
.y106{bottom:381.077600pt;}
.y16{bottom:383.791867pt;}
.yce{bottom:385.497600pt;}
.y4c{bottom:386.872533pt;}
.y6e{bottom:387.085867pt;}
.y9d{bottom:393.018667pt;}
.yb3{bottom:393.232000pt;}
.y15{bottom:399.791867pt;}
.y1{bottom:400.005200pt;}
.ycd{bottom:401.497600pt;}
.y4b{bottom:402.872533pt;}
.y6d{bottom:403.085867pt;}
.y164{bottom:409.284267pt;}
.y105{bottom:413.077600pt;}
.ycc{bottom:417.497600pt;}
.y4a{bottom:418.872533pt;}
.y6c{bottom:419.085867pt;}
.y163{bottom:423.684267pt;}
.y9c{bottom:427.117067pt;}
.y104{bottom:427.477600pt;}
.ycb{bottom:433.497600pt;}
.y49{bottom:434.872533pt;}
.y6b{bottom:435.085867pt;}
.y162{bottom:438.084267pt;}
.y38{bottom:440.513200pt;}
.y103{bottom:441.877600pt;}
.yca{bottom:449.497600pt;}
.y48{bottom:450.872533pt;}
.y6a{bottom:451.085867pt;}
.y161{bottom:452.484267pt;}
.y39{bottom:454.721200pt;}
.y37{bottom:454.913200pt;}
.y102{bottom:456.277600pt;}
.yc9{bottom:465.497600pt;}
.y47{bottom:466.872533pt;}
.y160{bottom:466.884267pt;}
.y69{bottom:467.085867pt;}
.y36{bottom:472.829200pt;}
.y15f{bottom:481.284267pt;}
.yc8{bottom:481.497600pt;}
.y46{bottom:482.872533pt;}
.y68{bottom:483.085867pt;}
.y35{bottom:490.553200pt;}
.y134{bottom:495.282800pt;}
.y17e{bottom:495.528267pt;}
.y15e{bottom:495.684267pt;}
.y45{bottom:498.872533pt;}
.y67{bottom:499.085867pt;}
.y34{bottom:505.157200pt;}
.y17d{bottom:509.928267pt;}
.y15d{bottom:510.084267pt;}
.y133{bottom:511.282800pt;}
.y66{bottom:515.085867pt;}
.yd9{bottom:517.409067pt;}
.yf1{bottom:518.816267pt;}
.y33{bottom:523.078800pt;}
.y17c{bottom:524.328267pt;}
.y15c{bottom:524.484267pt;}
.y132{bottom:527.282800pt;}
.y44{bottom:530.872533pt;}
.y65{bottom:531.085867pt;}
.yf0{bottom:534.816267pt;}
.y96{bottom:534.970000pt;}
.y120{bottom:537.622133pt;}
.y17b{bottom:538.728267pt;}
.y15b{bottom:538.884267pt;}
.y32{bottom:540.994800pt;}
.y131{bottom:543.282800pt;}
.y64{bottom:547.085867pt;}
.yef{bottom:550.816267pt;}
.y95{bottom:550.970000pt;}
.y17a{bottom:553.128267pt;}
.y15a{bottom:553.284267pt;}
.y11f{bottom:553.622133pt;}
.y130{bottom:559.282800pt;}
.y43{bottom:562.872533pt;}
.y63{bottom:563.085867pt;}
.yee{bottom:566.816267pt;}
.y94{bottom:566.970000pt;}
.y179{bottom:567.528267pt;}
.y159{bottom:567.684267pt;}
.y11e{bottom:569.622133pt;}
.y31{bottom:575.255067pt;}
.y12f{bottom:575.282800pt;}
.y42{bottom:578.872533pt;}
.y62{bottom:579.085867pt;}
.y178{bottom:581.928267pt;}
.y158{bottom:582.084267pt;}
.yed{bottom:582.816267pt;}
.y93{bottom:582.970000pt;}
.y11d{bottom:585.622133pt;}
.y30{bottom:591.255067pt;}
.y41{bottom:594.872533pt;}
.y61{bottom:595.085867pt;}
.y177{bottom:596.328267pt;}
.y157{bottom:596.484267pt;}
.yec{bottom:598.816267pt;}
.y9a{bottom:598.970000pt;}
.y11c{bottom:601.622133pt;}
.y2f{bottom:607.255067pt;}
.y12e{bottom:607.282800pt;}
.y176{bottom:610.728267pt;}
.y40{bottom:610.872533pt;}
.y156{bottom:610.884267pt;}
.y60{bottom:611.085867pt;}
.yeb{bottom:614.816267pt;}
.y92{bottom:614.970000pt;}
.y11b{bottom:617.622133pt;}
.y12d{bottom:621.682800pt;}
.y175{bottom:625.128267pt;}
.y155{bottom:625.284267pt;}
.y3f{bottom:626.872533pt;}
.y5f{bottom:627.085867pt;}
.yea{bottom:630.816267pt;}
.y91{bottom:630.970000pt;}
.y11a{bottom:633.622133pt;}
.y12c{bottom:636.082800pt;}
.y174{bottom:639.528267pt;}
.y154{bottom:639.684267pt;}
.y3e{bottom:642.872533pt;}
.y5e{bottom:643.085867pt;}
.y90{bottom:646.970000pt;}
.y173{bottom:653.928267pt;}
.y153{bottom:654.084267pt;}
.y2e{bottom:659.695067pt;}
.ye9{bottom:662.816267pt;}
.y99{bottom:662.970000pt;}
.y119{bottom:665.622133pt;}
.y172{bottom:668.328267pt;}
.y152{bottom:668.484267pt;}
.ye8{bottom:678.816267pt;}
.y8f{bottom:678.970000pt;}
.y118{bottom:680.022133pt;}
.y171{bottom:682.728267pt;}
.y151{bottom:682.884267pt;}
.y84{bottom:685.142400pt;}
.y2d{bottom:691.695067pt;}
.y117{bottom:694.422133pt;}
.ye7{bottom:694.816267pt;}
.y8e{bottom:694.970000pt;}
.y170{bottom:697.128267pt;}
.y150{bottom:697.284267pt;}
.y83{bottom:705.470400pt;}
.ye6{bottom:710.816267pt;}
.y8d{bottom:710.970000pt;}
.y16f{bottom:711.528267pt;}
.y14f{bottom:711.684267pt;}
.y82{bottom:725.798400pt;}
.y16e{bottom:725.928267pt;}
.y14e{bottom:726.084267pt;}
.ye5{bottom:726.816267pt;}
.y8c{bottom:726.970000pt;}
.y2c{bottom:736.855067pt;}
.y16d{bottom:740.328267pt;}
.y14d{bottom:740.484267pt;}
.ye4{bottom:742.816267pt;}
.y8b{bottom:742.970000pt;}
.y81{bottom:746.114400pt;}
.y16c{bottom:754.728267pt;}
.y14c{bottom:754.884267pt;}
.ye3{bottom:758.816267pt;}
.y98{bottom:758.970000pt;}
.y80{bottom:766.442400pt;}
.y16b{bottom:769.128267pt;}
.y14b{bottom:769.284267pt;}
.ye2{bottom:774.816267pt;}
.y8a{bottom:774.970000pt;}
.y7f{bottom:780.830400pt;}
.y16a{bottom:783.528267pt;}
.y14a{bottom:783.684267pt;}
.y2b{bottom:786.455067pt;}
.ye1{bottom:790.816267pt;}
.y89{bottom:790.970000pt;}
.y169{bottom:797.928267pt;}
.y149{bottom:798.084267pt;}
.y7e{bottom:801.158400pt;}
.ye0{bottom:806.816267pt;}
.y88{bottom:806.970000pt;}
.y2a{bottom:810.455067pt;}
.y168{bottom:812.328267pt;}
.y148{bottom:812.484267pt;}
.y7d{bottom:815.546400pt;}
.ydf{bottom:822.816267pt;}
.y87{bottom:822.970000pt;}
.y167{bottom:826.728267pt;}
.y147{bottom:826.884267pt;}
.y7c{bottom:835.874400pt;}
.y97{bottom:838.970000pt;}
.y166{bottom:841.128267pt;}
.y146{bottom:841.284267pt;}
.yde{bottom:854.816267pt;}
.y86{bottom:854.970000pt;}
.y165{bottom:855.528267pt;}
.y7b{bottom:855.668000pt;}
.y145{bottom:855.684267pt;}
.y3b{bottom:900.000000pt;}
.y3d{bottom:904.764267pt;}
.y85{bottom:904.890667pt;}
.y3c{bottom:905.028667pt;}
.y3a{bottom:912.809200pt;}
.h5{height:21.604401pt;}
.hb{height:29.645833pt;}
.ha{height:32.531250pt;}
.h8{height:32.535562pt;}
.h7{height:32.561162pt;}
.h6{height:32.583562pt;}
.hf{height:32.845963pt;}
.h9{height:33.328125pt;}
.hc{height:33.351562pt;}
.he{height:33.399563pt;}
.h1{height:36.145833pt;}
.hd{height:37.031250pt;}
.h2{height:37.057292pt;}
.h11{height:39.364401pt;}
.h10{height:39.364934pt;}
.h4{height:43.300841pt;}
.h3{height:54.218750pt;}
.h0{height:960.000000pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x5{left:42.670533pt;}
.x6{left:84.000000pt;}
.xb{left:92.324400pt;}
.x1{left:96.000000pt;}
.x7{left:117.333333pt;}
.x13{left:131.998533pt;}
.xc{left:140.216400pt;}
.x16{left:163.556267pt;}
.xe{left:168.486267pt;}
.x3{left:188.400000pt;}
.xa{left:215.572267pt;}
.x10{left:220.069333pt;}
.xf{left:226.757867pt;}
.x11{left:231.571333pt;}
.x17{left:243.029333pt;}
.x15{left:275.542933pt;}
.x4{left:278.247333pt;}
.xd{left:351.332400pt;}
.x8{left:362.000000pt;}
.x2{left:374.013333pt;}
.x9{left:395.333333pt;}
.x14{left:410.014533pt;}
.x12{left:422.000000pt;}
}




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