
    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_952492977a7e519722a6d9af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_e39c98c1fe39a9bcf6732751.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_994dd5314998859df1dead7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_59dcd90baa6e7cc2e2635951.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115000;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_4a5539dc5c2dd84fc6bfcdd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;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_a3f7a994b093d6f87f4937d9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_17a745b612ca7b51d022481d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.143000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_178cf8c9f3429be9b14aeb5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861328;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);}
.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);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:23.952000px;}
.v5{vertical-align:46.800000px;}
.v3{vertical-align:62.424000px;}
.ls1b{letter-spacing:-3.600000px;}
.ls42{letter-spacing:-0.864000px;}
.ls59{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.576000px;}
.ls57{letter-spacing:-0.540000px;}
.ls65{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls67{letter-spacing:-0.264000px;}
.ls2f{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls64{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.072000px;}
.ls66{letter-spacing:-0.066000px;}
.ls56{letter-spacing:-0.060000px;}
.lsc{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.084000px;}
.lsb{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.126000px;}
.ls26{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.186000px;}
.ls11{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.288000px;}
.ls5f{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.330000px;}
.ls5e{letter-spacing:0.348000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.381600px;}
.ls63{letter-spacing:0.396000px;}
.ls30{letter-spacing:0.420000px;}
.ls61{letter-spacing:0.462000px;}
.ls28{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.482400px;}
.ls4b{letter-spacing:0.496800px;}
.ls4{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.576000px;}
.ls58{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.604800px;}
.ls23{letter-spacing:0.619200px;}
.ls1a{letter-spacing:0.648000px;}
.ls4f{letter-spacing:0.774000px;}
.ls54{letter-spacing:0.780000px;}
.ls1c{letter-spacing:1.152000px;}
.ls52{letter-spacing:1.194000px;}
.ls50{letter-spacing:1.980000px;}
.ls5a{letter-spacing:3.180000px;}
.ls25{letter-spacing:3.600000px;}
.ls51{letter-spacing:5.580000px;}
.ls1f{letter-spacing:5.976000px;}
.ls8{letter-spacing:14.400000px;}
.ls53{letter-spacing:15.180000px;}
.ls4e{letter-spacing:16.380000px;}
.ls9{letter-spacing:16.776000px;}
.ls5b{letter-spacing:17.574000px;}
.ls4d{letter-spacing:17.580000px;}
.ls4c{letter-spacing:22.920000px;}
.ls4a{letter-spacing:23.976000px;}
.ls3b{letter-spacing:26.352000px;}
.lsa{letter-spacing:41.976000px;}
.ls49{letter-spacing:48.384000px;}
.ls5c{letter-spacing:67.980000px;}
.ls5d{letter-spacing:68.400000px;}
.ls3e{letter-spacing:81.576000px;}
.ls3f{letter-spacing:81.597600px;}
.ls35{letter-spacing:82.584000px;}
.ls39{letter-spacing:82.800000px;}
.ls2d{letter-spacing:83.808000px;}
.ls37{letter-spacing:92.160000px;}
.ls3d{letter-spacing:93.384000px;}
.ls3c{letter-spacing:95.760000px;}
.ls34{letter-spacing:96.984000px;}
.ls45{letter-spacing:110.160000px;}
.ls36{letter-spacing:116.208000px;}
.ls31{letter-spacing:129.384000px;}
.ls2c{letter-spacing:141.408000px;}
.ls32{letter-spacing:141.552000px;}
.ls3a{letter-spacing:167.997600px;}
.ls40{letter-spacing:176.400000px;}
.ls46{letter-spacing:183.549600px;}
.ls2b{letter-spacing:192.960000px;}
.ls43{letter-spacing:197.784000px;}
.ls44{letter-spacing:228.960000px;}
.ls48{letter-spacing:250.776000px;}
.ls47{letter-spacing:304.797600px;}
.ls2a{letter-spacing:371.952000px;}
.ls38{letter-spacing:421.200000px;}
.ls41{letter-spacing:652.752000px;}
.ls1e{letter-spacing:663.180000px;}
.ls29{letter-spacing:807.552000px;}
.ls1{letter-spacing:846.780000px;}
.ls3{letter-spacing:874.380000px;}
.ls2{letter-spacing:1137.180000px;}
.ls0{letter-spacing:1335.180000px;}
.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;}
}
.ws3{word-spacing:-19.584000px;}
.ws6e{word-spacing:-19.512000px;}
.ws49{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.224000px;}
.ws64{word-spacing:-19.152000px;}
.ws2a{word-spacing:-18.936000px;}
.ws5f{word-spacing:-18.864000px;}
.ws4a{word-spacing:-18.792000px;}
.ws6f{word-spacing:-18.720000px;}
.ws2b{word-spacing:-18.648000px;}
.ws75{word-spacing:-18.216000px;}
.ws61{word-spacing:-18.072000px;}
.ws60{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws63{word-spacing:-17.784000px;}
.ws62{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.640000px;}
.wsac{word-spacing:-17.358000px;}
.wsab{word-spacing:-17.094000px;}
.wsaa{word-spacing:-16.368000px;}
.ws5{word-spacing:-16.260000px;}
.ws1{word-spacing:-16.140000px;}
.ws86{word-spacing:-16.080000px;}
.ws85{word-spacing:-15.960000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.720000px;}
.ws66{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws65{word-spacing:-14.700000px;}
.ws47{word-spacing:-11.340000px;}
.ws46{word-spacing:-11.214000px;}
.ws48{word-spacing:-10.710000px;}
.ws80{word-spacing:-5.976000px;}
.ws17{word-spacing:-4.248000px;}
.ws83{word-spacing:-3.528000px;}
.ws58{word-spacing:-3.312000px;}
.ws2f{word-spacing:-3.168000px;}
.wsb4{word-spacing:-3.060000px;}
.ws2e{word-spacing:-3.024000px;}
.wsb3{word-spacing:-2.940000px;}
.wsbe{word-spacing:-2.880000px;}
.ws57{word-spacing:-2.808000px;}
.wsb9{word-spacing:-2.640000px;}
.wsb7{word-spacing:-2.520000px;}
.wsb2{word-spacing:-2.340000px;}
.ws4f{word-spacing:-2.160000px;}
.ws29{word-spacing:-1.872000px;}
.wsb8{word-spacing:-1.860000px;}
.ws9a{word-spacing:-1.680000px;}
.ws23{word-spacing:-1.512000px;}
.ws54{word-spacing:-1.440000px;}
.ws1d{word-spacing:-1.152000px;}
.ws94{word-spacing:-1.140000px;}
.wsa2{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.960000px;}
.ws42{word-spacing:-0.936000px;}
.wsbb{word-spacing:-0.840000px;}
.ws5d{word-spacing:-0.792000px;}
.ws41{word-spacing:-0.720000px;}
.ws8c{word-spacing:-0.660000px;}
.ws1c{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.360000px;}
.wsaf{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws52{word-spacing:-0.144000px;}
.ws89{word-spacing:-0.120000px;}
.ws24{word-spacing:-0.072000px;}
.ws98{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws14{word-spacing:0.060000px;}
.wsc4{word-spacing:0.066000px;}
.ws1f{word-spacing:0.072000px;}
.ws9f{word-spacing:0.120000px;}
.ws68{word-spacing:0.144000px;}
.wsba{word-spacing:0.180000px;}
.ws70{word-spacing:0.216000px;}
.wsf{word-spacing:0.252000px;}
.ws13{word-spacing:0.288000px;}
.ws15{word-spacing:0.300000px;}
.ws51{word-spacing:0.360000px;}
.ws99{word-spacing:0.420000px;}
.ws11{word-spacing:0.432000px;}
.wsc8{word-spacing:0.462000px;}
.ws6d{word-spacing:0.480000px;}
.wsc7{word-spacing:0.528000px;}
.wsa3{word-spacing:0.540000px;}
.ws16{word-spacing:0.576000px;}
.ws10{word-spacing:0.756000px;}
.ws4b{word-spacing:0.792000px;}
.ws71{word-spacing:0.864000px;}
.ws8d{word-spacing:1.080000px;}
.ws2d{word-spacing:1.200000px;}
.ws9e{word-spacing:1.260000px;}
.ws5b{word-spacing:1.584000px;}
.ws28{word-spacing:1.728000px;}
.ws7a{word-spacing:1.800000px;}
.ws95{word-spacing:1.920000px;}
.ws6a{word-spacing:2.088000px;}
.ws8b{word-spacing:2.160000px;}
.ws8a{word-spacing:2.460000px;}
.ws7f{word-spacing:2.664000px;}
.wsa5{word-spacing:2.760000px;}
.ws18{word-spacing:2.808000px;}
.ws67{word-spacing:2.880000px;}
.wsa4{word-spacing:2.940000px;}
.ws19{word-spacing:2.952000px;}
.ws7d{word-spacing:3.312000px;}
.wsb5{word-spacing:3.360000px;}
.wsc6{word-spacing:3.564000px;}
.ws20{word-spacing:3.600000px;}
.wsb6{word-spacing:3.660000px;}
.ws55{word-spacing:3.672000px;}
.ws56{word-spacing:3.744000px;}
.ws59{word-spacing:3.888000px;}
.ws9d{word-spacing:3.900000px;}
.wsc5{word-spacing:3.960000px;}
.ws76{word-spacing:4.032000px;}
.ws9b{word-spacing:4.140000px;}
.ws25{word-spacing:4.176000px;}
.ws72{word-spacing:4.392000px;}
.ws78{word-spacing:4.824000px;}
.ws9c{word-spacing:4.860000px;}
.ws79{word-spacing:4.968000px;}
.ws6b{word-spacing:5.040000px;}
.ws1a{word-spacing:5.184000px;}
.ws33{word-spacing:5.328000px;}
.ws96{word-spacing:5.340000px;}
.ws3e{word-spacing:5.688000px;}
.ws87{word-spacing:5.760000px;}
.ws97{word-spacing:6.000000px;}
.ws43{word-spacing:6.408000px;}
.ws3c{word-spacing:6.552000px;}
.ws69{word-spacing:7.272000px;}
.ws4e{word-spacing:7.776000px;}
.ws30{word-spacing:8.928000px;}
.ws88{word-spacing:9.648000px;}
.ws36{word-spacing:9.864000px;}
.wsad{word-spacing:10.140000px;}
.ws31{word-spacing:10.152000px;}
.wsae{word-spacing:10.860000px;}
.ws7c{word-spacing:10.872000px;}
.ws8e{word-spacing:11.220000px;}
.ws7e{word-spacing:11.232000px;}
.ws90{word-spacing:11.340000px;}
.ws73{word-spacing:11.376000px;}
.ws8f{word-spacing:11.760000px;}
.ws37{word-spacing:12.240000px;}
.ws44{word-spacing:12.528000px;}
.ws77{word-spacing:12.600000px;}
.ws7b{word-spacing:13.248000px;}
.ws4d{word-spacing:13.464000px;}
.ws4c{word-spacing:13.752000px;}
.ws1e{word-spacing:14.112000px;}
.wsc3{word-spacing:14.322000px;}
.wsa6{word-spacing:14.460000px;}
.ws39{word-spacing:14.688000px;}
.wsa7{word-spacing:14.760000px;}
.wsc2{word-spacing:14.850000px;}
.ws81{word-spacing:14.904000px;}
.ws45{word-spacing:14.976000px;}
.ws50{word-spacing:15.192000px;}
.ws32{word-spacing:15.840000px;}
.ws3a{word-spacing:15.984000px;}
.ws3b{word-spacing:16.128000px;}
.wsbc{word-spacing:16.140000px;}
.ws93{word-spacing:16.560000px;}
.ws92{word-spacing:16.800000px;}
.ws91{word-spacing:16.860000px;}
.ws6c{word-spacing:17.208000px;}
.wsa8{word-spacing:17.340000px;}
.ws27{word-spacing:17.352000px;}
.ws84{word-spacing:17.784000px;}
.wsa9{word-spacing:18.060000px;}
.ws5c{word-spacing:18.432000px;}
.wsbd{word-spacing:18.540000px;}
.ws26{word-spacing:18.576000px;}
.ws1b{word-spacing:18.936000px;}
.wsb0{word-spacing:19.260000px;}
.ws35{word-spacing:19.728000px;}
.wsb1{word-spacing:20.400000px;}
.ws40{word-spacing:21.888000px;}
.wsa0{word-spacing:22.140000px;}
.ws3f{word-spacing:22.176000px;}
.wsa1{word-spacing:22.860000px;}
.ws38{word-spacing:24.552000px;}
.ws5e{word-spacing:25.776000px;}
.ws74{word-spacing:26.136000px;}
.ws34{word-spacing:26.928000px;}
.ws5a{word-spacing:28.152000px;}
.ws3d{word-spacing:29.376000px;}
.ws82{word-spacing:31.248000px;}
.ws21{word-spacing:42.336000px;}
.wsc0{word-spacing:67.440000px;}
.wsbf{word-spacing:68.460000px;}
.wsc1{word-spacing:69.240000px;}
._1d{margin-left:-8.820000px;}
._1a{margin-left:-7.142400px;}
._18{margin-left:-6.069600px;}
._19{margin-left:-4.348800px;}
._5{margin-left:-2.810400px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.347200px;}
._b{width:3.561600px;}
._c{width:4.982400px;}
._9{width:6.912000px;}
._a{width:7.912800px;}
._d{width:9.180000px;}
._1c{width:13.442400px;}
._1b{width:14.673600px;}
._7{width:16.632000px;}
._8{width:17.755200px;}
._1e{width:19.552800px;}
._e{width:41.323200px;}
._1f{width:67.044000px;}
._12{width:105.036000px;}
._13{width:192.892800px;}
._14{width:216.000000px;}
._15{width:279.576000px;}
._16{width:318.530400px;}
._11{width:401.580000px;}
._17{width:415.152000px;}
._f{width:569.623200px;}
._3{width:765.900000px;}
._10{width:808.860000px;}
._4{width:821.580000px;}
._2{width:1005.420000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:6.000000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.y92{bottom:5.101500px;}
.ya{bottom:6.000000px;}
.ya6{bottom:12.300000px;}
.yc8{bottom:28.200000px;}
.ya8{bottom:28.500000px;}
.yb6{bottom:28.501500px;}
.y4{bottom:67.800000px;}
.yaa{bottom:75.900000px;}
.y115{bottom:98.448000px;}
.y85{bottom:105.024000px;}
.y65{bottom:105.096000px;}
.ye6{bottom:105.600000px;}
.y36{bottom:106.212000px;}
.y139{bottom:111.600000px;}
.ye4{bottom:121.800000px;}
.y114{bottom:121.848000px;}
.y84{bottom:128.118000px;}
.y64{bottom:128.190000px;}
.y35{bottom:129.612000px;}
.y138{bottom:132.300000px;}
.yb2{bottom:137.712000px;}
.ye3{bottom:138.300000px;}
.y113{bottom:145.248000px;}
.ye5{bottom:150.000000px;}
.y83{bottom:151.518000px;}
.y63{bottom:151.590000px;}
.y34{bottom:153.012000px;}
.y137{bottom:153.300000px;}
.yb1{bottom:160.806000px;}
.y112{bottom:168.342000px;}
.ye1{bottom:168.900000px;}
.ye2{bottom:174.000000px;}
.y136{bottom:174.300000px;}
.y82{bottom:174.918000px;}
.y62{bottom:174.990000px;}
.y33{bottom:176.106000px;}
.yb0{bottom:183.900000px;}
.ye0{bottom:185.700000px;}
.y111{bottom:191.742000px;}
.y135{bottom:195.300000px;}
.y81{bottom:198.012000px;}
.y61{bottom:198.084000px;}
.y32{bottom:199.506000px;}
.yaf{bottom:207.300000px;}
.y110{bottom:215.142000px;}
.ydf{bottom:216.300000px;}
.y80{bottom:221.412000px;}
.y60{bottom:221.484000px;}
.y31{bottom:222.906000px;}
.yae{bottom:230.700000px;}
.yde{bottom:233.100000px;}
.y134{bottom:237.300000px;}
.y10f{bottom:238.236000px;}
.y7f{bottom:244.812000px;}
.y5f{bottom:244.884000px;}
.y30{bottom:246.000000px;}
.yad{bottom:252.000000px;}
.y133{bottom:258.000000px;}
.y10e{bottom:261.636000px;}
.ydc{bottom:263.700000px;}
.y2f{bottom:267.600000px;}
.y7e{bottom:267.906000px;}
.y5e{bottom:267.978000px;}
.yac{bottom:268.500000px;}
.ydd{bottom:268.800000px;}
.y132{bottom:279.000000px;}
.ydb{bottom:280.500000px;}
.ya9{bottom:284.400000px;}
.y10d{bottom:284.730000px;}
.y2e{bottom:285.006000px;}
.yab{bottom:289.500000px;}
.y7d{bottom:291.306000px;}
.y5d{bottom:291.378000px;}
.y131{bottom:300.000000px;}
.y2d{bottom:308.100000px;}
.y10c{bottom:308.130000px;}
.yda{bottom:311.100000px;}
.y7c{bottom:314.706000px;}
.y5c{bottom:314.778000px;}
.y130{bottom:321.000000px;}
.yd9{bottom:328.200000px;}
.yd7{bottom:328.212000px;}
.y2c{bottom:329.700000px;}
.y10b{bottom:331.530000px;}
.ya7{bottom:331.800000px;}
.yd8{bottom:335.100000px;}
.y7b{bottom:337.800000px;}
.y5b{bottom:337.872000px;}
.y12f{bottom:342.000000px;}
.y2b{bottom:347.118000px;}
.y10a{bottom:354.624000px;}
.y7a{bottom:359.400000px;}
.y5a{bottom:361.272000px;}
.y12e{bottom:362.700000px;}
.yd6{bottom:364.212000px;}
.y2a{bottom:370.212000px;}
.y79{bottom:376.812000px;}
.y109{bottom:378.024000px;}
.ya5{bottom:379.200000px;}
.y12d{bottom:383.700000px;}
.y59{bottom:384.366000px;}
.yd5{bottom:387.612000px;}
.y29{bottom:393.612000px;}
.y78{bottom:399.906000px;}
.y108{bottom:401.424000px;}
.ya4{bottom:402.336000px;}
.y12c{bottom:404.700000px;}
.y15c{bottom:405.600000px;}
.y58{bottom:407.766000px;}
.yd4{bottom:410.706000px;}
.y28{bottom:417.012000px;}
.y77{bottom:423.306000px;}
.y107{bottom:424.518000px;}
.y12b{bottom:425.700000px;}
.y15b{bottom:426.900000px;}
.y57{bottom:431.166000px;}
.yd3{bottom:434.106000px;}
.y27{bottom:440.106000px;}
.ya3{bottom:444.330000px;}
.y12a{bottom:446.700000px;}
.y76{bottom:446.706000px;}
.y15a{bottom:447.000000px;}
.y106{bottom:447.918000px;}
.y56{bottom:454.260000px;}
.yd2{bottom:457.506000px;}
.y26{bottom:463.506000px;}
.y159{bottom:463.797000px;}
.y129{bottom:467.700000px;}
.ya2{bottom:467.730000px;}
.y75{bottom:469.800000px;}
.y105{bottom:471.318000px;}
.y55{bottom:477.660000px;}
.yd1{bottom:480.600000px;}
.y158{bottom:485.098500px;}
.y25{bottom:486.906000px;}
.y128{bottom:488.400000px;}
.ya1{bottom:490.824000px;}
.y74{bottom:493.218000px;}
.y104{bottom:494.412000px;}
.y54{bottom:501.060000px;}
.yd0{bottom:504.006000px;}
.y157{bottom:506.400000px;}
.y127{bottom:509.400000px;}
.y24{bottom:510.000000px;}
.ya0{bottom:514.224000px;}
.y73{bottom:516.312000px;}
.y103{bottom:517.812000px;}
.y53{bottom:524.154000px;}
.ycf{bottom:527.100000px;}
.y126{bottom:530.400000px;}
.y23{bottom:531.600000px;}
.y156{bottom:532.200000px;}
.y9f{bottom:537.624000px;}
.y72{bottom:539.712000px;}
.y102{bottom:540.906000px;}
.y52{bottom:547.554000px;}
.y22{bottom:549.006000px;}
.yce{bottom:550.500000px;}
.y125{bottom:551.400000px;}
.y9e{bottom:560.718000px;}
.y71{bottom:563.112000px;}
.y101{bottom:564.306000px;}
.y51{bottom:570.954000px;}
.y21{bottom:572.100000px;}
.y124{bottom:572.400000px;}
.y155{bottom:575.398500px;}
.y9d{bottom:584.118000px;}
.y70{bottom:586.206000px;}
.y100{bottom:587.706000px;}
.ycd{bottom:588.600000px;}
.y123{bottom:593.100000px;}
.y20{bottom:593.700000px;}
.y50{bottom:594.048000px;}
.y154{bottom:596.700000px;}
.ycb{bottom:604.500000px;}
.y9c{bottom:607.518000px;}
.y6f{bottom:609.606000px;}
.yff{bottom:610.800000px;}
.y1f{bottom:611.118000px;}
.y122{bottom:614.100000px;}
.y153{bottom:616.800000px;}
.y4f{bottom:617.448000px;}
.y9b{bottom:630.612000px;}
.y152{bottom:633.000000px;}
.y6e{bottom:633.006000px;}
.yfe{bottom:634.200000px;}
.y1e{bottom:634.212000px;}
.y121{bottom:635.100000px;}
.ycc{bottom:638.700000px;}
.y4e{bottom:640.848000px;}
.yc7{bottom:651.900000px;}
.y151{bottom:652.500000px;}
.y9a{bottom:654.012000px;}
.y6d{bottom:656.100000px;}
.yca{bottom:657.000000px;}
.yfd{bottom:657.600000px;}
.y1d{bottom:657.612000px;}
.y4d{bottom:663.942000px;}
.y150{bottom:672.000000px;}
.yfc{bottom:676.200000px;}
.y120{bottom:677.100000px;}
.y99{bottom:677.106000px;}
.y6c{bottom:677.700000px;}
.yfb{bottom:681.000000px;}
.y1c{bottom:681.012000px;}
.yc9{bottom:686.100000px;}
.y4c{bottom:687.342000px;}
.y14f{bottom:692.400000px;}
.y6b{bottom:695.112000px;}
.y11f{bottom:698.100000px;}
.yfa{bottom:698.412000px;}
.yc5{bottom:699.000000px;}
.y98{bottom:700.506000px;}
.y1b{bottom:704.106000px;}
.y4b{bottom:710.436000px;}
.yc4{bottom:715.800000px;}
.y14e{bottom:716.100000px;}
.y6a{bottom:718.206000px;}
.y11e{bottom:718.800000px;}
.yf9{bottom:721.506000px;}
.y97{bottom:723.906000px;}
.yc6{bottom:727.500000px;}
.y1a{bottom:727.506000px;}
.y4a{bottom:733.836000px;}
.y14d{bottom:737.100000px;}
.y11d{bottom:739.800000px;}
.y69{bottom:741.606000px;}
.yf8{bottom:744.906000px;}
.yc3{bottom:746.400000px;}
.y96{bottom:747.000000px;}
.y19{bottom:750.600000px;}
.y49{bottom:757.236000px;}
.y14c{bottom:758.100000px;}
.y11c{bottom:760.800000px;}
.yc2{bottom:763.500000px;}
.yc1{bottom:763.506000px;}
.y68{bottom:765.006000px;}
.yf7{bottom:768.000000px;}
.y95{bottom:770.400000px;}
.y18{bottom:772.200000px;}
.y14b{bottom:778.800000px;}
.y48{bottom:780.330000px;}
.y11b{bottom:781.800000px;}
.y67{bottom:788.100000px;}
.y17{bottom:788.700000px;}
.yf6{bottom:791.400000px;}
.y94{bottom:793.800000px;}
.yc0{bottom:799.506000px;}
.y14a{bottom:799.800000px;}
.y11a{bottom:802.800000px;}
.y47{bottom:803.730000px;}
.y16{bottom:808.200000px;}
.y66{bottom:809.700000px;}
.yf5{bottom:813.900000px;}
.y93{bottom:815.100000px;}
.y149{bottom:820.800000px;}
.y119{bottom:822.300000px;}
.ybf{bottom:822.906000px;}
.y15{bottom:826.500000px;}
.y46{bottom:827.130000px;}
.y91{bottom:828.298500px;}
.yf4{bottom:829.800000px;}
.y118{bottom:840.600000px;}
.y148{bottom:841.800000px;}
.y14{bottom:843.000000px;}
.ybe{bottom:846.306000px;}
.yf3{bottom:846.600000px;}
.y45{bottom:850.224000px;}
.y90{bottom:856.500000px;}
.y117{bottom:858.000000px;}
.y13{bottom:862.500000px;}
.y147{bottom:862.800000px;}
.ybd{bottom:869.400000px;}
.y44{bottom:873.624000px;}
.y8f{bottom:874.800000px;}
.yf1{bottom:877.200000px;}
.y116{bottom:879.600000px;}
.yf2{bottom:882.300000px;}
.y12{bottom:882.606000px;}
.y146{bottom:883.800000px;}
.ybc{bottom:892.800000px;}
.yf0{bottom:894.000000px;}
.y43{bottom:897.024000px;}
.y8e{bottom:898.800000px;}
.y145{bottom:904.500000px;}
.y11{bottom:906.006000px;}
.ybb{bottom:916.200000px;}
.y42{bottom:920.118000px;}
.yef{bottom:924.600000px;}
.y144{bottom:925.500000px;}
.y8d{bottom:927.912000px;}
.y10{bottom:929.406000px;}
.yba{bottom:937.500000px;}
.yee{bottom:941.100000px;}
.y41{bottom:943.518000px;}
.y143{bottom:946.500000px;}
.y8c{bottom:951.312000px;}
.yf{bottom:952.500000px;}
.yb9{bottom:954.000000px;}
.y40{bottom:966.612000px;}
.y142{bottom:967.500000px;}
.yb7{bottom:969.900000px;}
.yec{bottom:971.700000px;}
.y8b{bottom:974.406000px;}
.yb8{bottom:975.000000px;}
.ye{bottom:976.494000px;}
.yed{bottom:988.500000px;}
.y3f{bottom:990.012000px;}
.y8a{bottom:997.806000px;}
.yea{bottom:1000.500000px;}
.yd{bottom:1003.794000px;}
.y141{bottom:1009.200000px;}
.y3e{bottom:1013.412000px;}
.yb5{bottom:1017.298500px;}
.yeb{bottom:1019.100000px;}
.y89{bottom:1021.206000px;}
.y140{bottom:1030.200000px;}
.yc{bottom:1030.800000px;}
.y3d{bottom:1036.506000px;}
.y88{bottom:1044.300000px;}
.ye9{bottom:1048.200000px;}
.y13f{bottom:1051.200000px;}
.yb{bottom:1058.100000px;}
.y3c{bottom:1059.906000px;}
.yb4{bottom:1064.700000px;}
.y87{bottom:1067.700000px;}
.ye8{bottom:1071.600000px;}
.y13e{bottom:1072.200000px;}
.y8{bottom:1079.400000px;}
.y3b{bottom:1083.306000px;}
.yb3{bottom:1087.806000px;}
.y86{bottom:1089.300000px;}
.ye7{bottom:1092.300000px;}
.y13d{bottom:1093.200000px;}
.y6{bottom:1103.400000px;}
.y3a{bottom:1106.400000px;}
.y13c{bottom:1114.200000px;}
.y5{bottom:1129.200000px;}
.y39{bottom:1129.800000px;}
.y13b{bottom:1134.900000px;}
.y3{bottom:1144.800000px;}
.y38{bottom:1153.200000px;}
.y13a{bottom:1155.900000px;}
.y2{bottom:1164.300000px;}
.y37{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h1d{height:5.220000px;}
.h10{height:23.100000px;}
.h11{height:23.101500px;}
.hf{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h13{height:30.598500px;}
.h4{height:31.320000px;}
.h1b{height:36.540000px;}
.hd{height:41.760000px;}
.h3{height:43.920000px;}
.h14{height:46.500000px;}
.h18{height:46.501500px;}
.h1a{height:46.798500px;}
.h1c{height:46.800000px;}
.h7{height:47.400000px;}
.h22{height:48.312000px;}
.h2{height:48.420000px;}
.hc{height:52.200000px;}
.he{height:52.704000px;}
.h16{height:52.920000px;}
.h21{height:57.420000px;}
.h6{height:58.104000px;}
.h1f{height:62.578125px;}
.hb{height:62.640000px;}
.ha{height:67.788000px;}
.h20{height:70.664062px;}
.h9{height:73.080000px;}
.h1e{height:75.093750px;}
.h15{height:93.900000px;}
.h19{height:109.440000px;}
.h12{height:120.528000px;}
.h17{height:125.064000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w10{width:58.500000px;}
.wb{width:58.798500px;}
.wc{width:58.800000px;}
.w15{width:68.700000px;}
.w9{width:78.600000px;}
.w1d{width:78.601500px;}
.w19{width:82.800000px;}
.w8{width:82.801500px;}
.w1c{width:83.700000px;}
.wd{width:86.100000px;}
.w16{width:90.600000px;}
.w13{width:92.400000px;}
.w1a{width:92.401500px;}
.wa{width:93.900000px;}
.w6{width:105.600000px;}
.we{width:105.900000px;}
.w18{width:110.400000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.wf{width:128.700000px;}
.w12{width:135.300000px;}
.w7{width:153.600000px;}
.w14{width:170.100000px;}
.w5{width:230.100000px;}
.w1b{width:245.100000px;}
.w17{width:285.600000px;}
.w11{width:310.500000px;}
.w2{width:478.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x18{left:12.600000px;}
.x31{left:14.400000px;}
.x21{left:16.800000px;}
.x54{left:19.500000px;}
.x2a{left:22.200000px;}
.x23{left:24.000000px;}
.x3f{left:25.200000px;}
.x6b{left:27.000000px;}
.x29{left:29.400000px;}
.x24{left:31.500000px;}
.x4e{left:34.200000px;}
.x48{left:36.900000px;}
.x1a{left:38.100000px;}
.x52{left:41.700000px;}
.x34{left:42.900000px;}
.x51{left:45.300000px;}
.x4a{left:52.800000px;}
.x1d{left:54.900000px;}
.x1b{left:59.700000px;}
.x49{left:77.100000px;}
.x63{left:78.306000px;}
.x3{left:79.800000px;}
.x68{left:82.200000px;}
.x65{left:85.800000px;}
.x1{left:91.500000px;}
.x12{left:95.700000px;}
.x46{left:97.200000px;}
.x58{left:105.900000px;}
.x9{left:108.594000px;}
.x42{left:109.800000px;}
.x70{left:112.800000px;}
.x3d{left:118.500000px;}
.x47{left:119.700000px;}
.x56{left:121.206000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x62{left:128.706000px;}
.x55{left:132.006000px;}
.x6f{left:134.100000px;}
.x3b{left:137.112000px;}
.x11{left:144.600000px;}
.x33{left:146.700000px;}
.x2e{left:154.806000px;}
.x22{left:164.100000px;}
.x53{left:170.400000px;}
.x71{left:173.100000px;}
.x10{left:179.394000px;}
.x1e{left:191.994000px;}
.xe{left:196.800000px;}
.x2d{left:200.706000px;}
.x16{left:201.900000px;}
.x1c{left:214.500000px;}
.xb{left:221.100000px;}
.xd{left:223.800000px;}
.xc{left:238.794000px;}
.x64{left:251.100000px;}
.x1f{left:258.000000px;}
.x6c{left:264.000000px;}
.x3c{left:267.300000px;}
.x2f{left:275.400000px;}
.x28{left:282.000000px;}
.x57{left:286.200000px;}
.x38{left:299.400000px;}
.x15{left:306.276000px;}
.x5c{left:312.300000px;}
.x69{left:334.800000px;}
.x67{left:347.700000px;}
.x20{left:363.600000px;}
.xa{left:373.488000px;}
.x30{left:381.300000px;}
.x39{left:391.500000px;}
.x5a{left:396.600000px;}
.x40{left:402.600000px;}
.x5d{left:409.200000px;}
.x4b{left:415.200000px;}
.x6a{left:417.600000px;}
.x60{left:428.100000px;}
.x6d{left:430.200000px;}
.x17{left:432.000000px;}
.x43{left:434.100000px;}
.x2{left:446.400000px;}
.xf{left:449.400000px;}
.x2b{left:456.600000px;}
.x32{left:464.100000px;}
.x13{left:473.100000px;}
.x3a{left:474.300000px;}
.x5b{left:479.400000px;}
.x41{left:485.400000px;}
.x5e{left:492.000000px;}
.x5f{left:498.900000px;}
.x4c{left:504.900000px;}
.x61{left:510.900000px;}
.x44{left:521.700000px;}
.x25{left:525.000000px;}
.x66{left:535.200000px;}
.x19{left:537.600000px;}
.x35{left:542.700000px;}
.x6e{left:551.100000px;}
.x5{left:558.000000px;}
.x4d{left:577.800000px;}
.x26{left:583.800000px;}
.x59{left:585.300000px;}
.x45{left:590.400000px;}
.x3e{left:596.100000px;}
.x36{left:601.500000px;}
.x27{left:642.600000px;}
.x4f{left:646.500000px;}
.x37{left:660.000000px;}
.x2c{left:675.600000px;}
.x7{left:685.800000px;}
.x50{left:705.000000px;}
.x14{left:728.682000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:21.290667pt;}
.v5{vertical-align:41.600000pt;}
.v3{vertical-align:55.488000pt;}
.ls1b{letter-spacing:-3.200000pt;}
.ls42{letter-spacing:-0.768000pt;}
.ls59{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls57{letter-spacing:-0.480000pt;}
.ls65{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls67{letter-spacing:-0.234667pt;}
.ls2f{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls64{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls66{letter-spacing:-0.058667pt;}
.ls56{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.074667pt;}
.lsb{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.112000pt;}
.ls26{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.165333pt;}
.ls11{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls5f{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.293333pt;}
.ls5e{letter-spacing:0.309333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.339200pt;}
.ls63{letter-spacing:0.352000pt;}
.ls30{letter-spacing:0.373333pt;}
.ls61{letter-spacing:0.410667pt;}
.ls28{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.428800pt;}
.ls4b{letter-spacing:0.441600pt;}
.ls4{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls58{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.537600pt;}
.ls23{letter-spacing:0.550400pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls4f{letter-spacing:0.688000pt;}
.ls54{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:1.024000pt;}
.ls52{letter-spacing:1.061333pt;}
.ls50{letter-spacing:1.760000pt;}
.ls5a{letter-spacing:2.826667pt;}
.ls25{letter-spacing:3.200000pt;}
.ls51{letter-spacing:4.960000pt;}
.ls1f{letter-spacing:5.312000pt;}
.ls8{letter-spacing:12.800000pt;}
.ls53{letter-spacing:13.493333pt;}
.ls4e{letter-spacing:14.560000pt;}
.ls9{letter-spacing:14.912000pt;}
.ls5b{letter-spacing:15.621333pt;}
.ls4d{letter-spacing:15.626667pt;}
.ls4c{letter-spacing:20.373333pt;}
.ls4a{letter-spacing:21.312000pt;}
.ls3b{letter-spacing:23.424000pt;}
.lsa{letter-spacing:37.312000pt;}
.ls49{letter-spacing:43.008000pt;}
.ls5c{letter-spacing:60.426667pt;}
.ls5d{letter-spacing:60.800000pt;}
.ls3e{letter-spacing:72.512000pt;}
.ls3f{letter-spacing:72.531200pt;}
.ls35{letter-spacing:73.408000pt;}
.ls39{letter-spacing:73.600000pt;}
.ls2d{letter-spacing:74.496000pt;}
.ls37{letter-spacing:81.920000pt;}
.ls3d{letter-spacing:83.008000pt;}
.ls3c{letter-spacing:85.120000pt;}
.ls34{letter-spacing:86.208000pt;}
.ls45{letter-spacing:97.920000pt;}
.ls36{letter-spacing:103.296000pt;}
.ls31{letter-spacing:115.008000pt;}
.ls2c{letter-spacing:125.696000pt;}
.ls32{letter-spacing:125.824000pt;}
.ls3a{letter-spacing:149.331200pt;}
.ls40{letter-spacing:156.800000pt;}
.ls46{letter-spacing:163.155200pt;}
.ls2b{letter-spacing:171.520000pt;}
.ls43{letter-spacing:175.808000pt;}
.ls44{letter-spacing:203.520000pt;}
.ls48{letter-spacing:222.912000pt;}
.ls47{letter-spacing:270.931200pt;}
.ls2a{letter-spacing:330.624000pt;}
.ls38{letter-spacing:374.400000pt;}
.ls41{letter-spacing:580.224000pt;}
.ls1e{letter-spacing:589.493333pt;}
.ls29{letter-spacing:717.824000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls3{letter-spacing:777.226667pt;}
.ls2{letter-spacing:1010.826667pt;}
.ls0{letter-spacing:1186.826667pt;}
.ws3{word-spacing:-17.408000pt;}
.ws6e{word-spacing:-17.344000pt;}
.ws49{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws64{word-spacing:-17.024000pt;}
.ws2a{word-spacing:-16.832000pt;}
.ws5f{word-spacing:-16.768000pt;}
.ws4a{word-spacing:-16.704000pt;}
.ws6f{word-spacing:-16.640000pt;}
.ws2b{word-spacing:-16.576000pt;}
.ws75{word-spacing:-16.192000pt;}
.ws61{word-spacing:-16.064000pt;}
.ws60{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws63{word-spacing:-15.808000pt;}
.ws62{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.680000pt;}
.wsac{word-spacing:-15.429333pt;}
.wsab{word-spacing:-15.194667pt;}
.wsaa{word-spacing:-14.549333pt;}
.ws5{word-spacing:-14.453333pt;}
.ws1{word-spacing:-14.346667pt;}
.ws86{word-spacing:-14.293333pt;}
.ws85{word-spacing:-14.186667pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.973333pt;}
.ws66{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws65{word-spacing:-13.066667pt;}
.ws47{word-spacing:-10.080000pt;}
.ws46{word-spacing:-9.968000pt;}
.ws48{word-spacing:-9.520000pt;}
.ws80{word-spacing:-5.312000pt;}
.ws17{word-spacing:-3.776000pt;}
.ws83{word-spacing:-3.136000pt;}
.ws58{word-spacing:-2.944000pt;}
.ws2f{word-spacing:-2.816000pt;}
.wsb4{word-spacing:-2.720000pt;}
.ws2e{word-spacing:-2.688000pt;}
.wsb3{word-spacing:-2.613333pt;}
.wsbe{word-spacing:-2.560000pt;}
.ws57{word-spacing:-2.496000pt;}
.wsb9{word-spacing:-2.346667pt;}
.wsb7{word-spacing:-2.240000pt;}
.wsb2{word-spacing:-2.080000pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws29{word-spacing:-1.664000pt;}
.wsb8{word-spacing:-1.653333pt;}
.ws9a{word-spacing:-1.493333pt;}
.ws23{word-spacing:-1.344000pt;}
.ws54{word-spacing:-1.280000pt;}
.ws1d{word-spacing:-1.024000pt;}
.ws94{word-spacing:-1.013333pt;}
.wsa2{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws42{word-spacing:-0.832000pt;}
.wsbb{word-spacing:-0.746667pt;}
.ws5d{word-spacing:-0.704000pt;}
.ws41{word-spacing:-0.640000pt;}
.ws8c{word-spacing:-0.586667pt;}
.ws1c{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.320000pt;}
.wsaf{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws52{word-spacing:-0.128000pt;}
.ws89{word-spacing:-0.106667pt;}
.ws24{word-spacing:-0.064000pt;}
.ws98{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053333pt;}
.wsc4{word-spacing:0.058667pt;}
.ws1f{word-spacing:0.064000pt;}
.ws9f{word-spacing:0.106667pt;}
.ws68{word-spacing:0.128000pt;}
.wsba{word-spacing:0.160000pt;}
.ws70{word-spacing:0.192000pt;}
.wsf{word-spacing:0.224000pt;}
.ws13{word-spacing:0.256000pt;}
.ws15{word-spacing:0.266667pt;}
.ws51{word-spacing:0.320000pt;}
.ws99{word-spacing:0.373333pt;}
.ws11{word-spacing:0.384000pt;}
.wsc8{word-spacing:0.410667pt;}
.ws6d{word-spacing:0.426667pt;}
.wsc7{word-spacing:0.469333pt;}
.wsa3{word-spacing:0.480000pt;}
.ws16{word-spacing:0.512000pt;}
.ws10{word-spacing:0.672000pt;}
.ws4b{word-spacing:0.704000pt;}
.ws71{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.960000pt;}
.ws2d{word-spacing:1.066667pt;}
.ws9e{word-spacing:1.120000pt;}
.ws5b{word-spacing:1.408000pt;}
.ws28{word-spacing:1.536000pt;}
.ws7a{word-spacing:1.600000pt;}
.ws95{word-spacing:1.706667pt;}
.ws6a{word-spacing:1.856000pt;}
.ws8b{word-spacing:1.920000pt;}
.ws8a{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.368000pt;}
.wsa5{word-spacing:2.453333pt;}
.ws18{word-spacing:2.496000pt;}
.ws67{word-spacing:2.560000pt;}
.wsa4{word-spacing:2.613333pt;}
.ws19{word-spacing:2.624000pt;}
.ws7d{word-spacing:2.944000pt;}
.wsb5{word-spacing:2.986667pt;}
.wsc6{word-spacing:3.168000pt;}
.ws20{word-spacing:3.200000pt;}
.wsb6{word-spacing:3.253333pt;}
.ws55{word-spacing:3.264000pt;}
.ws56{word-spacing:3.328000pt;}
.ws59{word-spacing:3.456000pt;}
.ws9d{word-spacing:3.466667pt;}
.wsc5{word-spacing:3.520000pt;}
.ws76{word-spacing:3.584000pt;}
.ws9b{word-spacing:3.680000pt;}
.ws25{word-spacing:3.712000pt;}
.ws72{word-spacing:3.904000pt;}
.ws78{word-spacing:4.288000pt;}
.ws9c{word-spacing:4.320000pt;}
.ws79{word-spacing:4.416000pt;}
.ws6b{word-spacing:4.480000pt;}
.ws1a{word-spacing:4.608000pt;}
.ws33{word-spacing:4.736000pt;}
.ws96{word-spacing:4.746667pt;}
.ws3e{word-spacing:5.056000pt;}
.ws87{word-spacing:5.120000pt;}
.ws97{word-spacing:5.333333pt;}
.ws43{word-spacing:5.696000pt;}
.ws3c{word-spacing:5.824000pt;}
.ws69{word-spacing:6.464000pt;}
.ws4e{word-spacing:6.912000pt;}
.ws30{word-spacing:7.936000pt;}
.ws88{word-spacing:8.576000pt;}
.ws36{word-spacing:8.768000pt;}
.wsad{word-spacing:9.013333pt;}
.ws31{word-spacing:9.024000pt;}
.wsae{word-spacing:9.653333pt;}
.ws7c{word-spacing:9.664000pt;}
.ws8e{word-spacing:9.973333pt;}
.ws7e{word-spacing:9.984000pt;}
.ws90{word-spacing:10.080000pt;}
.ws73{word-spacing:10.112000pt;}
.ws8f{word-spacing:10.453333pt;}
.ws37{word-spacing:10.880000pt;}
.ws44{word-spacing:11.136000pt;}
.ws77{word-spacing:11.200000pt;}
.ws7b{word-spacing:11.776000pt;}
.ws4d{word-spacing:11.968000pt;}
.ws4c{word-spacing:12.224000pt;}
.ws1e{word-spacing:12.544000pt;}
.wsc3{word-spacing:12.730667pt;}
.wsa6{word-spacing:12.853333pt;}
.ws39{word-spacing:13.056000pt;}
.wsa7{word-spacing:13.120000pt;}
.wsc2{word-spacing:13.200000pt;}
.ws81{word-spacing:13.248000pt;}
.ws45{word-spacing:13.312000pt;}
.ws50{word-spacing:13.504000pt;}
.ws32{word-spacing:14.080000pt;}
.ws3a{word-spacing:14.208000pt;}
.ws3b{word-spacing:14.336000pt;}
.wsbc{word-spacing:14.346667pt;}
.ws93{word-spacing:14.720000pt;}
.ws92{word-spacing:14.933333pt;}
.ws91{word-spacing:14.986667pt;}
.ws6c{word-spacing:15.296000pt;}
.wsa8{word-spacing:15.413333pt;}
.ws27{word-spacing:15.424000pt;}
.ws84{word-spacing:15.808000pt;}
.wsa9{word-spacing:16.053333pt;}
.ws5c{word-spacing:16.384000pt;}
.wsbd{word-spacing:16.480000pt;}
.ws26{word-spacing:16.512000pt;}
.ws1b{word-spacing:16.832000pt;}
.wsb0{word-spacing:17.120000pt;}
.ws35{word-spacing:17.536000pt;}
.wsb1{word-spacing:18.133333pt;}
.ws40{word-spacing:19.456000pt;}
.wsa0{word-spacing:19.680000pt;}
.ws3f{word-spacing:19.712000pt;}
.wsa1{word-spacing:20.320000pt;}
.ws38{word-spacing:21.824000pt;}
.ws5e{word-spacing:22.912000pt;}
.ws74{word-spacing:23.232000pt;}
.ws34{word-spacing:23.936000pt;}
.ws5a{word-spacing:25.024000pt;}
.ws3d{word-spacing:26.112000pt;}
.ws82{word-spacing:27.776000pt;}
.ws21{word-spacing:37.632000pt;}
.wsc0{word-spacing:59.946667pt;}
.wsbf{word-spacing:60.853333pt;}
.wsc1{word-spacing:61.546667pt;}
._1d{margin-left:-7.840000pt;}
._1a{margin-left:-6.348800pt;}
._18{margin-left:-5.395200pt;}
._19{margin-left:-3.865600pt;}
._5{margin-left:-2.498133pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.086400pt;}
._b{width:3.165867pt;}
._c{width:4.428800pt;}
._9{width:6.144000pt;}
._a{width:7.033600pt;}
._d{width:8.160000pt;}
._1c{width:11.948800pt;}
._1b{width:13.043200pt;}
._7{width:14.784000pt;}
._8{width:15.782400pt;}
._1e{width:17.380267pt;}
._e{width:36.731733pt;}
._1f{width:59.594667pt;}
._12{width:93.365333pt;}
._13{width:171.460267pt;}
._14{width:192.000000pt;}
._15{width:248.512000pt;}
._16{width:283.138133pt;}
._11{width:356.960000pt;}
._17{width:369.024000pt;}
._f{width:506.331733pt;}
._3{width:680.800000pt;}
._10{width:718.986667pt;}
._4{width:730.293333pt;}
._2{width:893.706667pt;}
.fs6{font-size:5.333333pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.y92{bottom:4.534667pt;}
.ya{bottom:5.333333pt;}
.ya6{bottom:10.933333pt;}
.yc8{bottom:25.066667pt;}
.ya8{bottom:25.333333pt;}
.yb6{bottom:25.334667pt;}
.y4{bottom:60.266667pt;}
.yaa{bottom:67.466667pt;}
.y115{bottom:87.509333pt;}
.y85{bottom:93.354667pt;}
.y65{bottom:93.418667pt;}
.ye6{bottom:93.866667pt;}
.y36{bottom:94.410667pt;}
.y139{bottom:99.200000pt;}
.ye4{bottom:108.266667pt;}
.y114{bottom:108.309333pt;}
.y84{bottom:113.882667pt;}
.y64{bottom:113.946667pt;}
.y35{bottom:115.210667pt;}
.y138{bottom:117.600000pt;}
.yb2{bottom:122.410667pt;}
.ye3{bottom:122.933333pt;}
.y113{bottom:129.109333pt;}
.ye5{bottom:133.333333pt;}
.y83{bottom:134.682667pt;}
.y63{bottom:134.746667pt;}
.y34{bottom:136.010667pt;}
.y137{bottom:136.266667pt;}
.yb1{bottom:142.938667pt;}
.y112{bottom:149.637333pt;}
.ye1{bottom:150.133333pt;}
.ye2{bottom:154.666667pt;}
.y136{bottom:154.933333pt;}
.y82{bottom:155.482667pt;}
.y62{bottom:155.546667pt;}
.y33{bottom:156.538667pt;}
.yb0{bottom:163.466667pt;}
.ye0{bottom:165.066667pt;}
.y111{bottom:170.437333pt;}
.y135{bottom:173.600000pt;}
.y81{bottom:176.010667pt;}
.y61{bottom:176.074667pt;}
.y32{bottom:177.338667pt;}
.yaf{bottom:184.266667pt;}
.y110{bottom:191.237333pt;}
.ydf{bottom:192.266667pt;}
.y80{bottom:196.810667pt;}
.y60{bottom:196.874667pt;}
.y31{bottom:198.138667pt;}
.yae{bottom:205.066667pt;}
.yde{bottom:207.200000pt;}
.y134{bottom:210.933333pt;}
.y10f{bottom:211.765333pt;}
.y7f{bottom:217.610667pt;}
.y5f{bottom:217.674667pt;}
.y30{bottom:218.666667pt;}
.yad{bottom:224.000000pt;}
.y133{bottom:229.333333pt;}
.y10e{bottom:232.565333pt;}
.ydc{bottom:234.400000pt;}
.y2f{bottom:237.866667pt;}
.y7e{bottom:238.138667pt;}
.y5e{bottom:238.202667pt;}
.yac{bottom:238.666667pt;}
.ydd{bottom:238.933333pt;}
.y132{bottom:248.000000pt;}
.ydb{bottom:249.333333pt;}
.ya9{bottom:252.800000pt;}
.y10d{bottom:253.093333pt;}
.y2e{bottom:253.338667pt;}
.yab{bottom:257.333333pt;}
.y7d{bottom:258.938667pt;}
.y5d{bottom:259.002667pt;}
.y131{bottom:266.666667pt;}
.y2d{bottom:273.866667pt;}
.y10c{bottom:273.893333pt;}
.yda{bottom:276.533333pt;}
.y7c{bottom:279.738667pt;}
.y5c{bottom:279.802667pt;}
.y130{bottom:285.333333pt;}
.yd9{bottom:291.733333pt;}
.yd7{bottom:291.744000pt;}
.y2c{bottom:293.066667pt;}
.y10b{bottom:294.693333pt;}
.ya7{bottom:294.933333pt;}
.yd8{bottom:297.866667pt;}
.y7b{bottom:300.266667pt;}
.y5b{bottom:300.330667pt;}
.y12f{bottom:304.000000pt;}
.y2b{bottom:308.549333pt;}
.y10a{bottom:315.221333pt;}
.y7a{bottom:319.466667pt;}
.y5a{bottom:321.130667pt;}
.y12e{bottom:322.400000pt;}
.yd6{bottom:323.744000pt;}
.y2a{bottom:329.077333pt;}
.y79{bottom:334.944000pt;}
.y109{bottom:336.021333pt;}
.ya5{bottom:337.066667pt;}
.y12d{bottom:341.066667pt;}
.y59{bottom:341.658667pt;}
.yd5{bottom:344.544000pt;}
.y29{bottom:349.877333pt;}
.y78{bottom:355.472000pt;}
.y108{bottom:356.821333pt;}
.ya4{bottom:357.632000pt;}
.y12c{bottom:359.733333pt;}
.y15c{bottom:360.533333pt;}
.y58{bottom:362.458667pt;}
.yd4{bottom:365.072000pt;}
.y28{bottom:370.677333pt;}
.y77{bottom:376.272000pt;}
.y107{bottom:377.349333pt;}
.y12b{bottom:378.400000pt;}
.y15b{bottom:379.466667pt;}
.y57{bottom:383.258667pt;}
.yd3{bottom:385.872000pt;}
.y27{bottom:391.205333pt;}
.ya3{bottom:394.960000pt;}
.y12a{bottom:397.066667pt;}
.y76{bottom:397.072000pt;}
.y15a{bottom:397.333333pt;}
.y106{bottom:398.149333pt;}
.y56{bottom:403.786667pt;}
.yd2{bottom:406.672000pt;}
.y26{bottom:412.005333pt;}
.y159{bottom:412.264000pt;}
.y129{bottom:415.733333pt;}
.ya2{bottom:415.760000pt;}
.y75{bottom:417.600000pt;}
.y105{bottom:418.949333pt;}
.y55{bottom:424.586667pt;}
.yd1{bottom:427.200000pt;}
.y158{bottom:431.198667pt;}
.y25{bottom:432.805333pt;}
.y128{bottom:434.133333pt;}
.ya1{bottom:436.288000pt;}
.y74{bottom:438.416000pt;}
.y104{bottom:439.477333pt;}
.y54{bottom:445.386667pt;}
.yd0{bottom:448.005333pt;}
.y157{bottom:450.133333pt;}
.y127{bottom:452.800000pt;}
.y24{bottom:453.333333pt;}
.ya0{bottom:457.088000pt;}
.y73{bottom:458.944000pt;}
.y103{bottom:460.277333pt;}
.y53{bottom:465.914667pt;}
.ycf{bottom:468.533333pt;}
.y126{bottom:471.466667pt;}
.y23{bottom:472.533333pt;}
.y156{bottom:473.066667pt;}
.y9f{bottom:477.888000pt;}
.y72{bottom:479.744000pt;}
.y102{bottom:480.805333pt;}
.y52{bottom:486.714667pt;}
.y22{bottom:488.005333pt;}
.yce{bottom:489.333333pt;}
.y125{bottom:490.133333pt;}
.y9e{bottom:498.416000pt;}
.y71{bottom:500.544000pt;}
.y101{bottom:501.605333pt;}
.y51{bottom:507.514667pt;}
.y21{bottom:508.533333pt;}
.y124{bottom:508.800000pt;}
.y155{bottom:511.465333pt;}
.y9d{bottom:519.216000pt;}
.y70{bottom:521.072000pt;}
.y100{bottom:522.405333pt;}
.ycd{bottom:523.200000pt;}
.y123{bottom:527.200000pt;}
.y20{bottom:527.733333pt;}
.y50{bottom:528.042667pt;}
.y154{bottom:530.400000pt;}
.ycb{bottom:537.333333pt;}
.y9c{bottom:540.016000pt;}
.y6f{bottom:541.872000pt;}
.yff{bottom:542.933333pt;}
.y1f{bottom:543.216000pt;}
.y122{bottom:545.866667pt;}
.y153{bottom:548.266667pt;}
.y4f{bottom:548.842667pt;}
.y9b{bottom:560.544000pt;}
.y152{bottom:562.666667pt;}
.y6e{bottom:562.672000pt;}
.yfe{bottom:563.733333pt;}
.y1e{bottom:563.744000pt;}
.y121{bottom:564.533333pt;}
.ycc{bottom:567.733333pt;}
.y4e{bottom:569.642667pt;}
.yc7{bottom:579.466667pt;}
.y151{bottom:580.000000pt;}
.y9a{bottom:581.344000pt;}
.y6d{bottom:583.200000pt;}
.yca{bottom:584.000000pt;}
.yfd{bottom:584.533333pt;}
.y1d{bottom:584.544000pt;}
.y4d{bottom:590.170667pt;}
.y150{bottom:597.333333pt;}
.yfc{bottom:601.066667pt;}
.y120{bottom:601.866667pt;}
.y99{bottom:601.872000pt;}
.y6c{bottom:602.400000pt;}
.yfb{bottom:605.333333pt;}
.y1c{bottom:605.344000pt;}
.yc9{bottom:609.866667pt;}
.y4c{bottom:610.970667pt;}
.y14f{bottom:615.466667pt;}
.y6b{bottom:617.877333pt;}
.y11f{bottom:620.533333pt;}
.yfa{bottom:620.810667pt;}
.yc5{bottom:621.333333pt;}
.y98{bottom:622.672000pt;}
.y1b{bottom:625.872000pt;}
.y4b{bottom:631.498667pt;}
.yc4{bottom:636.266667pt;}
.y14e{bottom:636.533333pt;}
.y6a{bottom:638.405333pt;}
.y11e{bottom:638.933333pt;}
.yf9{bottom:641.338667pt;}
.y97{bottom:643.472000pt;}
.yc6{bottom:646.666667pt;}
.y1a{bottom:646.672000pt;}
.y4a{bottom:652.298667pt;}
.y14d{bottom:655.200000pt;}
.y11d{bottom:657.600000pt;}
.y69{bottom:659.205333pt;}
.yf8{bottom:662.138667pt;}
.yc3{bottom:663.466667pt;}
.y96{bottom:664.000000pt;}
.y19{bottom:667.200000pt;}
.y49{bottom:673.098667pt;}
.y14c{bottom:673.866667pt;}
.y11c{bottom:676.266667pt;}
.yc2{bottom:678.666667pt;}
.yc1{bottom:678.672000pt;}
.y68{bottom:680.005333pt;}
.yf7{bottom:682.666667pt;}
.y95{bottom:684.800000pt;}
.y18{bottom:686.400000pt;}
.y14b{bottom:692.266667pt;}
.y48{bottom:693.626667pt;}
.y11b{bottom:694.933333pt;}
.y67{bottom:700.533333pt;}
.y17{bottom:701.066667pt;}
.yf6{bottom:703.466667pt;}
.y94{bottom:705.600000pt;}
.yc0{bottom:710.672000pt;}
.y14a{bottom:710.933333pt;}
.y11a{bottom:713.600000pt;}
.y47{bottom:714.426667pt;}
.y16{bottom:718.400000pt;}
.y66{bottom:719.733333pt;}
.yf5{bottom:723.466667pt;}
.y93{bottom:724.533333pt;}
.y149{bottom:729.600000pt;}
.y119{bottom:730.933333pt;}
.ybf{bottom:731.472000pt;}
.y15{bottom:734.666667pt;}
.y46{bottom:735.226667pt;}
.y91{bottom:736.265333pt;}
.yf4{bottom:737.600000pt;}
.y118{bottom:747.200000pt;}
.y148{bottom:748.266667pt;}
.y14{bottom:749.333333pt;}
.ybe{bottom:752.272000pt;}
.yf3{bottom:752.533333pt;}
.y45{bottom:755.754667pt;}
.y90{bottom:761.333333pt;}
.y117{bottom:762.666667pt;}
.y13{bottom:766.666667pt;}
.y147{bottom:766.933333pt;}
.ybd{bottom:772.800000pt;}
.y44{bottom:776.554667pt;}
.y8f{bottom:777.600000pt;}
.yf1{bottom:779.733333pt;}
.y116{bottom:781.866667pt;}
.yf2{bottom:784.266667pt;}
.y12{bottom:784.538667pt;}
.y146{bottom:785.600000pt;}
.ybc{bottom:793.600000pt;}
.yf0{bottom:794.666667pt;}
.y43{bottom:797.354667pt;}
.y8e{bottom:798.933333pt;}
.y145{bottom:804.000000pt;}
.y11{bottom:805.338667pt;}
.ybb{bottom:814.400000pt;}
.y42{bottom:817.882667pt;}
.yef{bottom:821.866667pt;}
.y144{bottom:822.666667pt;}
.y8d{bottom:824.810667pt;}
.y10{bottom:826.138667pt;}
.yba{bottom:833.333333pt;}
.yee{bottom:836.533333pt;}
.y41{bottom:838.682667pt;}
.y143{bottom:841.333333pt;}
.y8c{bottom:845.610667pt;}
.yf{bottom:846.666667pt;}
.yb9{bottom:848.000000pt;}
.y40{bottom:859.210667pt;}
.y142{bottom:860.000000pt;}
.yb7{bottom:862.133333pt;}
.yec{bottom:863.733333pt;}
.y8b{bottom:866.138667pt;}
.yb8{bottom:866.666667pt;}
.ye{bottom:867.994667pt;}
.yed{bottom:878.666667pt;}
.y3f{bottom:880.010667pt;}
.y8a{bottom:886.938667pt;}
.yea{bottom:889.333333pt;}
.yd{bottom:892.261333pt;}
.y141{bottom:897.066667pt;}
.y3e{bottom:900.810667pt;}
.yb5{bottom:904.265333pt;}
.yeb{bottom:905.866667pt;}
.y89{bottom:907.738667pt;}
.y140{bottom:915.733333pt;}
.yc{bottom:916.266667pt;}
.y3d{bottom:921.338667pt;}
.y88{bottom:928.266667pt;}
.ye9{bottom:931.733333pt;}
.y13f{bottom:934.400000pt;}
.yb{bottom:940.533333pt;}
.y3c{bottom:942.138667pt;}
.yb4{bottom:946.400000pt;}
.y87{bottom:949.066667pt;}
.ye8{bottom:952.533333pt;}
.y13e{bottom:953.066667pt;}
.y8{bottom:959.466667pt;}
.y3b{bottom:962.938667pt;}
.yb3{bottom:966.938667pt;}
.y86{bottom:968.266667pt;}
.ye7{bottom:970.933333pt;}
.y13d{bottom:971.733333pt;}
.y6{bottom:980.800000pt;}
.y3a{bottom:983.466667pt;}
.y13c{bottom:990.400000pt;}
.y5{bottom:1003.733333pt;}
.y39{bottom:1004.266667pt;}
.y13b{bottom:1008.800000pt;}
.y3{bottom:1017.600000pt;}
.y38{bottom:1025.066667pt;}
.y13a{bottom:1027.466667pt;}
.y2{bottom:1034.933333pt;}
.y37{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h1d{height:4.640000pt;}
.h10{height:20.533333pt;}
.h11{height:20.534667pt;}
.hf{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h13{height:27.198667pt;}
.h4{height:27.840000pt;}
.h1b{height:32.480000pt;}
.hd{height:37.120000pt;}
.h3{height:39.040000pt;}
.h14{height:41.333333pt;}
.h18{height:41.334667pt;}
.h1a{height:41.598667pt;}
.h1c{height:41.600000pt;}
.h7{height:42.133333pt;}
.h22{height:42.944000pt;}
.h2{height:43.040000pt;}
.hc{height:46.400000pt;}
.he{height:46.848000pt;}
.h16{height:47.040000pt;}
.h21{height:51.040000pt;}
.h6{height:51.648000pt;}
.h1f{height:55.625000pt;}
.hb{height:55.680000pt;}
.ha{height:60.256000pt;}
.h20{height:62.812500pt;}
.h9{height:64.960000pt;}
.h1e{height:66.750000pt;}
.h15{height:83.466667pt;}
.h19{height:97.280000pt;}
.h12{height:107.136000pt;}
.h17{height:111.168000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w10{width:52.000000pt;}
.wb{width:52.265333pt;}
.wc{width:52.266667pt;}
.w15{width:61.066667pt;}
.w9{width:69.866667pt;}
.w1d{width:69.868000pt;}
.w19{width:73.600000pt;}
.w8{width:73.601333pt;}
.w1c{width:74.400000pt;}
.wd{width:76.533333pt;}
.w16{width:80.533333pt;}
.w13{width:82.133333pt;}
.w1a{width:82.134667pt;}
.wa{width:83.466667pt;}
.w6{width:93.866667pt;}
.we{width:94.133333pt;}
.w18{width:98.133333pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.wf{width:114.400000pt;}
.w12{width:120.266667pt;}
.w7{width:136.533333pt;}
.w14{width:151.200000pt;}
.w5{width:204.533333pt;}
.w1b{width:217.866667pt;}
.w17{width:253.866667pt;}
.w11{width:276.000000pt;}
.w2{width:425.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x18{left:11.200000pt;}
.x31{left:12.800000pt;}
.x21{left:14.933333pt;}
.x54{left:17.333333pt;}
.x2a{left:19.733333pt;}
.x23{left:21.333333pt;}
.x3f{left:22.400000pt;}
.x6b{left:24.000000pt;}
.x29{left:26.133333pt;}
.x24{left:28.000000pt;}
.x4e{left:30.400000pt;}
.x48{left:32.800000pt;}
.x1a{left:33.866667pt;}
.x52{left:37.066667pt;}
.x34{left:38.133333pt;}
.x51{left:40.266667pt;}
.x4a{left:46.933333pt;}
.x1d{left:48.800000pt;}
.x1b{left:53.066667pt;}
.x49{left:68.533333pt;}
.x63{left:69.605333pt;}
.x3{left:70.933333pt;}
.x68{left:73.066667pt;}
.x65{left:76.266667pt;}
.x1{left:81.333333pt;}
.x12{left:85.066667pt;}
.x46{left:86.400000pt;}
.x58{left:94.133333pt;}
.x9{left:96.528000pt;}
.x42{left:97.600000pt;}
.x70{left:100.266667pt;}
.x3d{left:105.333333pt;}
.x47{left:106.400000pt;}
.x56{left:107.738667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x62{left:114.405333pt;}
.x55{left:117.338667pt;}
.x6f{left:119.200000pt;}
.x3b{left:121.877333pt;}
.x11{left:128.533333pt;}
.x33{left:130.400000pt;}
.x2e{left:137.605333pt;}
.x22{left:145.866667pt;}
.x53{left:151.466667pt;}
.x71{left:153.866667pt;}
.x10{left:159.461333pt;}
.x1e{left:170.661333pt;}
.xe{left:174.933333pt;}
.x2d{left:178.405333pt;}
.x16{left:179.466667pt;}
.x1c{left:190.666667pt;}
.xb{left:196.533333pt;}
.xd{left:198.933333pt;}
.xc{left:212.261333pt;}
.x64{left:223.200000pt;}
.x1f{left:229.333333pt;}
.x6c{left:234.666667pt;}
.x3c{left:237.600000pt;}
.x2f{left:244.800000pt;}
.x28{left:250.666667pt;}
.x57{left:254.400000pt;}
.x38{left:266.133333pt;}
.x15{left:272.245333pt;}
.x5c{left:277.600000pt;}
.x69{left:297.600000pt;}
.x67{left:309.066667pt;}
.x20{left:323.200000pt;}
.xa{left:331.989333pt;}
.x30{left:338.933333pt;}
.x39{left:348.000000pt;}
.x5a{left:352.533333pt;}
.x40{left:357.866667pt;}
.x5d{left:363.733333pt;}
.x4b{left:369.066667pt;}
.x6a{left:371.200000pt;}
.x60{left:380.533333pt;}
.x6d{left:382.400000pt;}
.x17{left:384.000000pt;}
.x43{left:385.866667pt;}
.x2{left:396.800000pt;}
.xf{left:399.466667pt;}
.x2b{left:405.866667pt;}
.x32{left:412.533333pt;}
.x13{left:420.533333pt;}
.x3a{left:421.600000pt;}
.x5b{left:426.133333pt;}
.x41{left:431.466667pt;}
.x5e{left:437.333333pt;}
.x5f{left:443.466667pt;}
.x4c{left:448.800000pt;}
.x61{left:454.133333pt;}
.x44{left:463.733333pt;}
.x25{left:466.666667pt;}
.x66{left:475.733333pt;}
.x19{left:477.866667pt;}
.x35{left:482.400000pt;}
.x6e{left:489.866667pt;}
.x5{left:496.000000pt;}
.x4d{left:513.600000pt;}
.x26{left:518.933333pt;}
.x59{left:520.266667pt;}
.x45{left:524.800000pt;}
.x3e{left:529.866667pt;}
.x36{left:534.666667pt;}
.x27{left:571.200000pt;}
.x4f{left:574.666667pt;}
.x37{left:586.666667pt;}
.x2c{left:600.533333pt;}
.x7{left:609.600000pt;}
.x50{left:626.666667pt;}
.x14{left:647.717333pt;}
}




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