
    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_948cadcb5fbfcc304c19d3f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_e35bb5d52c15ed62e0b44e02.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_757768772f1a712bd3bc180f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907000;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_6cda0f9201841fbe4103637f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_97f6b63034713cc4bdda7411.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_d0ce6ea940cad1f324a42424.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e21d0356f00620d50118796d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_be088ec97f28847eb5953bb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5e52825f89765e6d10771a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;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_b16a0faf8cc06ed13189b50a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7d9cb152395c675e4faab279.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_429d6485ce412e9887bd32c9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_047ae5e4d7175523a47abfef.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf9cd633170df004f41ee4e0.woff2')format("woff");}.fff{font-family:fff;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6479a797cc9c4820f123d43f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3a4628c7727bb177a7985efe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dba5429353be9fd6484ad1d8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_46fa051f5b946105f0ea8458.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704200;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:ff14;src:url('chunks/assets/font_2b69e0a66f1246108f779b02.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.664000;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:ff15;src:url('chunks/assets/font_43d8854b299102a7bc15806a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.052000;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:ff16;src:url('chunks/assets/font_34c1343c5af3f81698cd4c46.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.665000;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:ff17;src:url('chunks/assets/font_df487692351abe7d8f1ddd77.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923000;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);}
.v8{vertical-align:-39.558000px;}
.v7{vertical-align:-15.648000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:16.872000px;}
.v9{vertical-align:21.696000px;}
.v2{vertical-align:40.434000px;}
.v6{vertical-align:66.348000px;}
.v1{vertical-align:84.282000px;}
.v4{vertical-align:112.902000px;}
.v5{vertical-align:116.136000px;}
.v3{vertical-align:125.286000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000564px;}
.ls22{letter-spacing:0.002012px;}
.ls8{letter-spacing:0.002245px;}
.ls1b{letter-spacing:0.003269px;}
.ls1a{letter-spacing:0.004200px;}
.ls28{letter-spacing:0.004503px;}
.ls24{letter-spacing:0.004546px;}
.ls29{letter-spacing:0.006141px;}
.lsd{letter-spacing:2.991352px;}
.ls2{letter-spacing:8.470613px;}
.lsb{letter-spacing:8.577181px;}
.ls15{letter-spacing:9.962338px;}
.lsc{letter-spacing:10.332921px;}
.ls21{letter-spacing:13.116921px;}
.ls23{letter-spacing:13.278538px;}
.lsa{letter-spacing:13.284538px;}
.ls18{letter-spacing:15.315269px;}
.ls2a{letter-spacing:16.032532px;}
.ls20{letter-spacing:16.602538px;}
.ls1f{letter-spacing:16.604245px;}
.ls9{letter-spacing:16.617617px;}
.ls1{letter-spacing:16.938141px;}
.ls0{letter-spacing:16.944141px;}
.ls17{letter-spacing:17.066387px;}
.ls1c{letter-spacing:17.655269px;}
.ls5{letter-spacing:17.873549px;}
.ls6{letter-spacing:19.532823px;}
.ls1d{letter-spacing:19.676727px;}
.ls1e{letter-spacing:19.677269px;}
.ls26{letter-spacing:20.121472px;}
.ls11{letter-spacing:20.147549px;}
.ls10{letter-spacing:21.806823px;}
.ls12{letter-spacing:23.076921px;}
.ls13{letter-spacing:23.082921px;}
.ls19{letter-spacing:23.210387px;}
.ls25{letter-spacing:23.926059px;}
.ls7{letter-spacing:25.782921px;}
.ls16{letter-spacing:28.383269px;}
.ls4{letter-spacing:29.884200px;}
.ls14{letter-spacing:31.160387px;}
.lsf{letter-spacing:202.118338px;}
.ls27{letter-spacing:207.956338px;}
.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;}
}
.wsb2{word-spacing:-59.775600px;}
.wsa5{word-spacing:-43.157983px;}
.wsb1{word-spacing:-37.001096px;}
.ws8b{word-spacing:-33.223278px;}
.ws9d{word-spacing:-29.050942px;}
.ws7e{word-spacing:-29.015076px;}
.ws40{word-spacing:-16.605662px;}
.wse9{word-spacing:-15.278643px;}
.wsd9{word-spacing:-14.111859px;}
.ws8a{word-spacing:-6.623136px;}
.ws8d{word-spacing:-3.335478px;}
.wsb6{word-spacing:-3.320193px;}
.ws16{word-spacing:-3.096376px;}
.ws54{word-spacing:-3.036600px;}
.ws71{word-spacing:-2.976825px;}
.ws2d{word-spacing:-2.737722px;}
.ws96{word-spacing:-2.498620px;}
.wsad{word-spacing:-2.379069px;}
.ws33{word-spacing:-2.199742px;}
.ws3d{word-spacing:-2.139966px;}
.ws8e{word-spacing:-2.080191px;}
.wseb{word-spacing:-1.900864px;}
.wsd8{word-spacing:-1.869785px;}
.wsc6{word-spacing:-1.781313px;}
.wsc8{word-spacing:-1.721537px;}
.ws13{word-spacing:-1.601986px;}
.wsce{word-spacing:-1.542210px;}
.ws17{word-spacing:-1.422659px;}
.ws63{word-spacing:-1.362884px;}
.wsa4{word-spacing:-1.303108px;}
.ws2f{word-spacing:-1.183557px;}
.ws3b{word-spacing:-1.123781px;}
.wsdb{word-spacing:-1.056835px;}
.ws4b{word-spacing:-1.004230px;}
.ws83{word-spacing:-0.466250px;}
.ws53{word-spacing:-0.286923px;}
.ws31{word-spacing:-0.227147px;}
.ws6f{word-spacing:-0.167372px;}
.ws5a{word-spacing:-0.107596px;}
.wse{word-spacing:-0.086077px;}
.ws45{word-spacing:-0.071731px;}
.ws8c{word-spacing:-0.059776px;}
.ws9a{word-spacing:-0.047820px;}
.wsd5{word-spacing:-0.041843px;}
.wsdc{word-spacing:-0.035866px;}
.ws43{word-spacing:0.000000px;}
.wscf{word-spacing:0.011955px;}
.ws23{word-spacing:0.131506px;}
.wscc{word-spacing:0.138680px;}
.wsb9{word-spacing:0.191282px;}
.wsc7{word-spacing:0.251058px;}
.wsea{word-spacing:0.263013px;}
.ws72{word-spacing:0.310833px;}
.ws82{word-spacing:0.370609px;}
.ws1d{word-spacing:0.430384px;}
.wscb{word-spacing:0.473424px;}
.ws94{word-spacing:0.490160px;}
.ws34{word-spacing:0.549936px;}
.ws30{word-spacing:0.609711px;}
.wsa1{word-spacing:0.669487px;}
.ws85{word-spacing:0.729262px;}
.wsdd{word-spacing:0.760348px;}
.ws9e{word-spacing:0.789038px;}
.ws21{word-spacing:0.848814px;}
.ws22{word-spacing:0.968365px;}
.ws57{word-spacing:1.028140px;}
.wsb5{word-spacing:1.041612px;}
.ws89{word-spacing:1.041892px;}
.wsa3{word-spacing:1.207467px;}
.ws78{word-spacing:1.267243px;}
.ws107{word-spacing:1.327018px;}
.ws25{word-spacing:1.506345px;}
.ws4f{word-spacing:1.566121px;}
.ws118{word-spacing:1.625896px;}
.wsb3{word-spacing:1.745448px;}
.wsd3{word-spacing:1.764580px;}
.ws5f{word-spacing:1.864999px;}
.wscd{word-spacing:1.924774px;}
.wsaa{word-spacing:1.984550px;}
.ws1f{word-spacing:2.104101px;}
.ws59{word-spacing:2.163877px;}
.wse4{word-spacing:2.223652px;}
.ws67{word-spacing:2.242786px;}
.ws80{word-spacing:2.343204px;}
.ws12{word-spacing:2.402979px;}
.wsf4{word-spacing:2.462755px;}
.wsae{word-spacing:2.582306px;}
.ws6b{word-spacing:2.642082px;}
.ws66{word-spacing:2.816633px;}
.ws84{word-spacing:2.821408px;}
.wsa9{word-spacing:2.940960px;}
.ws98{word-spacing:3.000735px;}
.ws64{word-spacing:3.060511px;}
.ws47{word-spacing:3.120286px;}
.ws104{word-spacing:3.132241px;}
.ws79{word-spacing:3.199198px;}
.ws9f{word-spacing:3.239838px;}
.ws92{word-spacing:3.291443px;}
.ws90{word-spacing:3.297443px;}
.ws4{word-spacing:3.299613px;}
.ws93{word-spacing:3.319403px;}
.ws8f{word-spacing:3.319707px;}
.ws91{word-spacing:3.325619px;}
.ws3a{word-spacing:3.359389px;}
.wse3{word-spacing:3.419164px;}
.ws7{word-spacing:3.431119px;}
.wsab{word-spacing:3.658267px;}
.ws7a{word-spacing:3.677404px;}
.ws1a{word-spacing:3.718042px;}
.ws97{word-spacing:3.897369px;}
.ws18{word-spacing:3.957145px;}
.ws62{word-spacing:4.016920px;}
.ws58{word-spacing:4.076696px;}
.ws70{word-spacing:4.196247px;}
.ws52{word-spacing:4.256023px;}
.ws49{word-spacing:4.375574px;}
.wsc3{word-spacing:4.435350px;}
.ws3f{word-spacing:4.495125px;}
.ws6d{word-spacing:4.554901px;}
.wsa8{word-spacing:4.614676px;}
.ws68{word-spacing:4.681637px;}
.ws5e{word-spacing:4.794003px;}
.ws55{word-spacing:4.853779px;}
.wsef{word-spacing:4.913554px;}
.ws106{word-spacing:4.917723px;}
.wse1{word-spacing:4.973330px;}
.ws75{word-spacing:5.092881px;}
.ws26{word-spacing:5.212432px;}
.ws7d{word-spacing:5.272208px;}
.ws3c{word-spacing:5.331984px;}
.wsf5{word-spacing:5.343939px;}
.wsa2{word-spacing:5.391759px;}
.ws51{word-spacing:5.451535px;}
.ws81{word-spacing:5.690637px;}
.wsa0{word-spacing:5.810188px;}
.wsec{word-spacing:5.840779px;}
.ws2c{word-spacing:5.989515px;}
.ws2b{word-spacing:6.049291px;}
.ws7f{word-spacing:6.109066px;}
.wsd{word-spacing:6.121021px;}
.wsf{word-spacing:6.234595px;}
.ws5c{word-spacing:6.288393px;}
.wsa7{word-spacing:6.348169px;}
.wsdf{word-spacing:6.407944px;}
.wsc5{word-spacing:6.527496px;}
.wsc9{word-spacing:6.647047px;}
.wsa6{word-spacing:6.706822px;}
.ws105{word-spacing:6.766598px;}
.ws2e{word-spacing:6.826374px;}
.wsa{word-spacing:6.838329px;}
.wsba{word-spacing:6.886149px;}
.wsb0{word-spacing:7.003179px;}
.ws5b{word-spacing:7.005700px;}
.ws10{word-spacing:7.011678px;}
.ws36{word-spacing:7.065476px;}
.wsbf{word-spacing:7.125252px;}
.wsd7{word-spacing:7.185027px;}
.ws73{word-spacing:7.244803px;}
.ws7c{word-spacing:7.304578px;}
.ws29{word-spacing:7.364354px;}
.ws24{word-spacing:7.424130px;}
.wsc1{word-spacing:7.483905px;}
.ws37{word-spacing:7.543681px;}
.wsd0{word-spacing:7.663232px;}
.ws6a{word-spacing:7.723008px;}
.wsb4{word-spacing:7.782783px;}
.ws19{word-spacing:7.962110px;}
.wsf8{word-spacing:8.021886px;}
.ws7b{word-spacing:8.081661px;}
.ws9b{word-spacing:8.141437px;}
.wsda{word-spacing:8.316002px;}
.wsc2{word-spacing:8.320764px;}
.ws1c{word-spacing:8.380539px;}
.wsd2{word-spacing:8.440315px;}
.wsed{word-spacing:8.452270px;}
.ws38{word-spacing:8.559866px;}
.ws6e{word-spacing:8.619642px;}
.wsc0{word-spacing:8.739193px;}
.ws5d{word-spacing:8.798968px;}
.ws95{word-spacing:8.978295px;}
.wsf1{word-spacing:9.068107px;}
.ws86{word-spacing:9.097846px;}
.ws27{word-spacing:9.157622px;}
.ws15{word-spacing:9.277173px;}
.ws8{word-spacing:9.289128px;}
.ws56{word-spacing:9.456500px;}
.ws87{word-spacing:9.516276px;}
.ws5{word-spacing:9.564971px;}
.wse2{word-spacing:9.695602px;}
.wsaf{word-spacing:9.755378px;}
.wsd4{word-spacing:9.815154px;}
.ws48{word-spacing:9.874929px;}
.ws109{word-spacing:9.993993px;}
.wse6{word-spacing:9.994480px;}
.wsd1{word-spacing:10.054256px;}
.wsb{word-spacing:10.245538px;}
.ws2a{word-spacing:10.293358px;}
.ws61{word-spacing:10.353134px;}
.ws50{word-spacing:10.412910px;}
.ws9{word-spacing:10.424865px;}
.ws69{word-spacing:10.472685px;}
.wse0{word-spacing:10.532461px;}
.ws28{word-spacing:10.592236px;}
.ws99{word-spacing:10.652012px;}
.wsac{word-spacing:11.010666px;}
.ws76{word-spacing:11.189992px;}
.ws77{word-spacing:11.249768px;}
.ws4a{word-spacing:11.369319px;}
.wsf2{word-spacing:11.381274px;}
.ws4e{word-spacing:11.488870px;}
.wsb7{word-spacing:11.727973px;}
.ws9c{word-spacing:11.787748px;}
.ws74{word-spacing:11.847524px;}
.ws108{word-spacing:11.907300px;}
.ws42{word-spacing:11.967075px;}
.ws6{word-spacing:12.038806px;}
.ws35{word-spacing:12.146402px;}
.ws10a{word-spacing:12.218133px;}
.ws14{word-spacing:12.325729px;}
.ws46{word-spacing:12.445280px;}
.ws39{word-spacing:12.505056px;}
.wsb8{word-spacing:12.564831px;}
.wsfb{word-spacing:12.624607px;}
.wsbc{word-spacing:12.744158px;}
.ws20{word-spacing:12.983260px;}
.wsd6{word-spacing:13.043036px;}
.ws11d{word-spacing:13.282138px;}
.wsde{word-spacing:13.341914px;}
.ws119{word-spacing:13.521241px;}
.ws88{word-spacing:13.700568px;}
.ws1b{word-spacing:13.820119px;}
.wse7{word-spacing:13.939670px;}
.ws1e{word-spacing:13.999446px;}
.wsee{word-spacing:14.417875px;}
.wsbb{word-spacing:14.537426px;}
.wsc4{word-spacing:14.597202px;}
.wsc{word-spacing:14.788483px;}
.wse5{word-spacing:14.955855px;}
.wsfc{word-spacing:15.015631px;}
.ws115{word-spacing:15.374284px;}
.wsbd{word-spacing:15.972040px;}
.ws3e{word-spacing:16.151367px;}
.ws116{word-spacing:16.270918px;}
.ws103{word-spacing:16.402425px;}
.wsfa{word-spacing:16.629572px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.883840px;}
.ws11a{word-spacing:17.287104px;}
.wsbe{word-spacing:17.825084px;}
.ws6c{word-spacing:17.884860px;}
.ws113{word-spacing:17.944635px;}
.ws4d{word-spacing:18.183738px;}
.wsf9{word-spacing:18.315244px;}
.ws112{word-spacing:18.363064px;}
.wsf0{word-spacing:18.482616px;}
.wse8{word-spacing:18.542391px;}
.ws102{word-spacing:18.721718px;}
.ws10b{word-spacing:19.319474px;}
.ws65{word-spacing:19.462984px;}
.wsf7{word-spacing:20.036781px;}
.ws117{word-spacing:20.395435px;}
.wsf6{word-spacing:21.483351px;}
.ws114{word-spacing:21.590947px;}
.wsf3{word-spacing:21.650722px;}
.ws60{word-spacing:22.834279px;}
.ws3{word-spacing:25.034189px;}
.wsfe{word-spacing:25.057932px;}
.ws11c{word-spacing:25.536136px;}
.ws110{word-spacing:26.074117px;}
.wsff{word-spacing:26.086072px;}
.ws44{word-spacing:26.827469px;}
.ws101{word-spacing:28.046712px;}
.ws100{word-spacing:28.835749px;}
.wsca{word-spacing:30.361299px;}
.ws41{word-spacing:30.497511px;}
.wsfd{word-spacing:31.752799px;}
.ws32{word-spacing:32.192873px;}
.ws10f{word-spacing:35.040457px;}
.ws10e{word-spacing:35.291514px;}
.ws2{word-spacing:39.044527px;}
.ws10c{word-spacing:39.164973px;}
.ws111{word-spacing:40.137897px;}
.ws11b{word-spacing:48.358460px;}
.ws10d{word-spacing:65.705340px;}
.ws4c{word-spacing:116.491469px;}
.ws11{word-spacing:139.789373px;}
._5{margin-left:-5.773355px;}
._1{margin-left:-4.256033px;}
._3{margin-left:-2.479018px;}
._0{margin-left:-1.386797px;}
._d{width:1.374839px;}
._6{width:2.479018px;}
._4{width:11.476992px;}
._27{width:15.840534px;}
._13{width:17.183815px;}
._c{width:18.439103px;}
._1e{width:19.813942px;}
._1a{width:20.933426px;}
._26{width:22.025639px;}
._f{width:23.101600px;}
._a{width:25.057942px;}
._7{width:26.600142px;}
._21{width:28.584695px;}
._9{width:29.665950px;}
._17{width:31.322414px;}
._24{width:32.458151px;}
._1d{width:33.798092px;}
._12{width:35.714251px;}
._8{width:37.639036px;}
._e{width:39.439930px;}
._22{width:40.791838px;}
._15{width:42.022247px;}
._1f{width:43.038432px;}
._25{width:44.413271px;}
._11{width:46.653186px;}
._10{width:48.298685px;}
._2{width:50.115989px;}
._1c{width:51.674336px;}
._16{width:53.168726px;}
._28{width:55.471757px;}
._b{width:57.233467px;}
._23{width:60.130914px;}
._1b{width:70.450554px;}
._20{width:91.635995px;}
._29{width:98.095099px;}
._19{width:116.563200px;}
._14{width:139.875450px;}
._18{width:1203.357578px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3a{bottom:58.093500px;}
.y39{bottom:58.453500px;}
.y29{bottom:121.180500px;}
.y28{bottom:139.113000px;}
.y89{bottom:139.114500px;}
.y38{bottom:157.045500px;}
.y27{bottom:157.047000px;}
.y9e{bottom:165.550500px;}
.y26{bottom:174.979500px;}
.y9d{bottom:183.483000px;}
.y104{bottom:186.489000px;}
.y25{bottom:192.912000px;}
.y37{bottom:201.415500px;}
.y103{bottom:204.423000px;}
.y24{bottom:210.844500px;}
.y36{bottom:219.348000px;}
.y102{bottom:222.355500px;}
.y23{bottom:228.777000px;}
.y88{bottom:230.916000px;}
.y35{bottom:237.280500px;}
.y9c{bottom:237.282000px;}
.y101{bottom:240.288000px;}
.y5f{bottom:246.709500px;}
.y70{bottom:246.711000px;}
.y22{bottom:255.214500px;}
.y5e{bottom:264.643500px;}
.y100{bottom:269.731500px;}
.y21{bottom:273.147000px;}
.y5d{bottom:282.576000px;}
.yff{bottom:287.664000px;}
.y20{bottom:291.079500px;}
.y5c{bottom:300.508500px;}
.yd3{bottom:304.921500px;}
.yfe{bottom:305.596500px;}
.y1f{bottom:309.012000px;}
.y9b{bottom:317.517000px;}
.y5b{bottom:318.441000px;}
.yd2{bottom:319.117500px;}
.y1e{bottom:326.944500px;}
.yfd{bottom:335.040000px;}
.y9a{bottom:335.449500px;}
.y5a{bottom:336.373500px;}
.y34{bottom:344.877000px;}
.y1d{bottom:344.878500px;}
.yfc{bottom:352.974000px;}
.y99{bottom:353.382000px;}
.y59{bottom:354.306000px;}
.y6f{bottom:354.307500px;}
.y1c{bottom:362.811000px;}
.yfb{bottom:370.906500px;}
.y33{bottom:371.314500px;}
.y58{bottom:372.240000px;}
.yda{bottom:375.252000px;}
.yc3{bottom:380.743500px;}
.yfa{bottom:388.839000px;}
.y1b{bottom:389.247000px;}
.yd9{bottom:389.448000px;}
.y57{bottom:390.172500px;}
.yc2{bottom:398.676000px;}
.yf9{bottom:406.771500px;}
.y1a{bottom:407.179500px;}
.y56{bottom:408.105000px;}
.y6e{bottom:409.804500px;}
.yc1{bottom:416.608500px;}
.y6d{bottom:424.000500px;}
.y32{bottom:425.112000px;}
.y19{bottom:425.113500px;}
.y55{bottom:426.037500px;}
.yc0{bottom:434.541000px;}
.yf8{bottom:436.215000px;}
.y6c{bottom:438.198000px;}
.y87{bottom:442.677000px;}
.y18{bottom:443.046000px;}
.y54{bottom:443.970000px;}
.ybf{bottom:452.475000px;}
.yf7{bottom:454.147500px;}
.y86{bottom:460.609500px;}
.y17{bottom:460.978500px;}
.y53{bottom:461.902500px;}
.ybe{bottom:470.407500px;}
.yf6{bottom:472.080000px;}
.y85{bottom:478.542000px;}
.y16{bottom:478.911000px;}
.y52{bottom:479.836500px;}
.ybd{bottom:488.340000px;}
.yf5{bottom:490.014000px;}
.y84{bottom:496.474500px;}
.y15{bottom:496.843500px;}
.y51{bottom:497.769000px;}
.ybc{bottom:506.272500px;}
.yf4{bottom:507.946500px;}
.y83{bottom:514.408500px;}
.y14{bottom:514.776000px;}
.y98{bottom:514.999500px;}
.y50{bottom:515.701500px;}
.ybb{bottom:524.205000px;}
.y82{bottom:532.341000px;}
.y13{bottom:532.710000px;}
.y4f{bottom:533.634000px;}
.yf3{bottom:537.390000px;}
.yba{bottom:542.139000px;}
.y31{bottom:546.552000px;}
.y81{bottom:550.273500px;}
.y4e{bottom:551.566500px;}
.yf2{bottom:555.322500px;}
.y97{bottom:564.990000px;}
.y4d{bottom:569.500500px;}
.yf1{bottom:573.255000px;}
.y12{bottom:575.109000px;}
.y80{bottom:576.709500px;}
.yd1{bottom:577.816500px;}
.yb5{bottom:582.481500px;}
.y96{bottom:582.922500px;}
.yb7{bottom:586.393500px;}
.y4c{bottom:587.433000px;}
.yf0{bottom:591.187500px;}
.yb9{bottom:592.371000px;}
.yb6{bottom:594.010500px;}
.y7f{bottom:594.643500px;}
.yd0{bottom:595.750500px;}
.yb8{bottom:599.988000px;}
.y95{bottom:600.856500px;}
.y7e{bottom:612.576000px;}
.yd8{bottom:613.338000px;}
.ycf{bottom:613.683000px;}
.y4b{bottom:625.543500px;}
.yd7{bottom:627.535500px;}
.y7d{bottom:630.508500px;}
.yce{bottom:631.615500px;}
.yef{bottom:632.422500px;}
.yb4{bottom:634.021500px;}
.y11{bottom:638.857500px;}
.yd6{bottom:641.731500px;}
.y94{bottom:642.091500px;}
.y30{bottom:646.839000px;}
.y7c{bottom:648.441000px;}
.ycd{bottom:649.548000px;}
.yb3{bottom:651.954000px;}
.y10{bottom:656.790000px;}
.y2f{bottom:664.771500px;}
.y7b{bottom:666.373500px;}
.ycc{bottom:667.480500px;}
.yb2{bottom:669.886500px;}
.y6b{bottom:679.314000px;}
.y2e{bottom:682.704000px;}
.y7a{bottom:684.306000px;}
.ycb{bottom:685.414500px;}
.y4a{bottom:685.992000px;}
.yb1{bottom:687.819000px;}
.yee{bottom:690.154500px;}
.yf{bottom:699.190500px;}
.y93{bottom:699.669000px;}
.y2d{bottom:700.636500px;}
.yca{bottom:703.347000px;}
.y49{bottom:703.924500px;}
.yb0{bottom:705.751500px;}
.yed{bottom:708.087000px;}
.y2c{bottom:718.569000px;}
.y79{bottom:720.732000px;}
.yc9{bottom:721.279500px;}
.y48{bottom:721.857000px;}
.yaf{bottom:723.685500px;}
.yec{bottom:726.019500px;}
.y92{bottom:728.754000px;}
.y47{bottom:739.791000px;}
.y116{bottom:740.692500px;}
.yae{bottom:741.618000px;}
.yeb{bottom:743.953500px;}
.y2b{bottom:745.006500px;}
.y123{bottom:753.255000px;}
.y46{bottom:757.723500px;}
.y91{bottom:757.840500px;}
.y115{bottom:758.625000px;}
.yc8{bottom:758.652000px;}
.yad{bottom:759.550500px;}
.yea{bottom:761.886000px;}
.ye{bottom:762.939000px;}
.y122{bottom:771.189000px;}
.yc7{bottom:772.848000px;}
.y45{bottom:775.656000px;}
.y114{bottom:776.559000px;}
.yac{bottom:777.483000px;}
.ye9{bottom:779.818500px;}
.yd{bottom:780.871500px;}
.y78{bottom:784.243500px;}
.yc6{bottom:787.045500px;}
.y121{bottom:789.121500px;}
.y113{bottom:794.491500px;}
.y90{bottom:794.626500px;}
.yab{bottom:795.415500px;}
.ye8{bottom:797.751000px;}
.y77{bottom:798.439500px;}
.yc{bottom:798.804000px;}
.yc5{bottom:801.241500px;}
.y120{bottom:807.054000px;}
.y112{bottom:812.424000px;}
.y8f{bottom:812.560500px;}
.y76{bottom:812.637000px;}
.yaa{bottom:813.349500px;}
.ye7{bottom:815.683500px;}
.y2a{bottom:816.736500px;}
.yb{bottom:816.738000px;}
.y44{bottom:818.745000px;}
.y11f{bottom:824.986500px;}
.y111{bottom:830.356500px;}
.ya9{bottom:831.282000px;}
.ye6{bottom:833.616000px;}
.ya{bottom:834.670500px;}
.y11e{bottom:842.919000px;}
.y8e{bottom:844.645500px;}
.ye5{bottom:851.550000px;}
.y9{bottom:852.603000px;}
.y8d{bottom:854.896500px;}
.ya8{bottom:857.718000px;}
.y43{bottom:858.028500px;}
.y110{bottom:860.244000px;}
.y11d{bottom:860.853000px;}
.ye4{bottom:869.482500px;}
.y8{bottom:870.535500px;}
.ya7{bottom:875.650500px;}
.y10f{bottom:878.178000px;}
.y11c{bottom:878.785500px;}
.ye3{bottom:887.415000px;}
.y7{bottom:888.468000px;}
.ya6{bottom:893.584500px;}
.yd5{bottom:895.348500px;}
.y10e{bottom:896.110500px;}
.y42{bottom:897.310500px;}
.ye2{bottom:905.347500px;}
.y8c{bottom:908.875500px;}
.yd4{bottom:909.544500px;}
.ya5{bottom:911.517000px;}
.y10d{bottom:914.043000px;}
.y11b{bottom:914.650500px;}
.y6a{bottom:919.648500px;}
.y8b{bottom:926.808000px;}
.ya4{bottom:929.449500px;}
.y10c{bottom:931.975500px;}
.y11a{bottom:932.583000px;}
.y41{bottom:936.594000px;}
.y69{bottom:937.581000px;}
.y6{bottom:943.678500px;}
.ye1{bottom:946.582500px;}
.ya3{bottom:947.382000px;}
.y119{bottom:950.515500px;}
.y68{bottom:955.515000px;}
.y10b{bottom:961.863000px;}
.ya2{bottom:965.314500px;}
.y118{bottom:968.449500px;}
.y67{bottom:973.447500px;}
.y8a{bottom:974.295000px;}
.y40{bottom:975.876000px;}
.y5{bottom:979.543500px;}
.y10a{bottom:979.797000px;}
.ya1{bottom:983.247000px;}
.y117{bottom:986.382000px;}
.y66{bottom:991.380000px;}
.y4{bottom:997.476000px;}
.y109{bottom:997.729500px;}
.ya0{bottom:1001.181000px;}
.ye0{bottom:1004.314500px;}
.y65{bottom:1009.312500px;}
.y3f{bottom:1015.159500px;}
.y108{bottom:1015.662000px;}
.y9f{bottom:1019.113500px;}
.ydf{bottom:1022.247000px;}
.y64{bottom:1027.245000px;}
.y107{bottom:1033.594500px;}
.yde{bottom:1040.179500px;}
.y3{bottom:1045.173000px;}
.y63{bottom:1045.177500px;}
.y75{bottom:1045.549500px;}
.y106{bottom:1051.527000px;}
.ydd{bottom:1058.112000px;}
.y3e{bottom:1058.248500px;}
.y62{bottom:1063.111500px;}
.y74{bottom:1063.482000px;}
.y105{bottom:1069.459500px;}
.ydc{bottom:1076.046000px;}
.y3d{bottom:1076.181000px;}
.y61{bottom:1081.044000px;}
.yc4{bottom:1081.414500px;}
.y73{bottom:1081.416000px;}
.ydb{bottom:1093.978500px;}
.y60{bottom:1098.976500px;}
.y72{bottom:1099.348500px;}
.y2{bottom:1111.134000px;}
.y3c{bottom:1114.291500px;}
.y71{bottom:1117.281000px;}
.y3b{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.hd{height:19.905275px;}
.hf{height:20.718223px;}
.h8{height:34.191729px;}
.h2{height:35.865450px;}
.h11{height:40.722624px;}
.h7{height:42.500452px;}
.h5{height:44.831700px;}
.h10{height:49.479619px;}
.h9{height:50.211840px;}
.h4{height:51.216077px;}
.he{height:53.091024px;}
.h6{height:60.254040px;}
.hc{height:68.739024px;}
.ha{height:86.673024px;}
.h3{height:98.127780px;}
.hb{height:145.174903px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.xc{left:88.567500px;}
.xd{left:91.764000px;}
.x7{left:93.109500px;}
.x8{left:99.984000px;}
.x1b{left:115.758000px;}
.x2{left:128.464500px;}
.x11{left:132.469500px;}
.x4{left:133.587000px;}
.x19{left:139.792500px;}
.xe{left:152.287500px;}
.x15{left:156.124500px;}
.x5{left:162.541500px;}
.x3{left:288.195000px;}
.x6{left:293.737500px;}
.x17{left:299.017500px;}
.x16{left:303.415500px;}
.x18{left:352.764000px;}
.x9{left:453.928500px;}
.xf{left:459.657000px;}
.xb{left:461.998500px;}
.xa{left:468.873000px;}
.x1a{left:484.647000px;}
.x10{left:501.360000px;}
.x12{left:523.552500px;}
.x13{left:673.363500px;}
.x14{left:734.098500px;}
@media print{
.v8{vertical-align:-35.162667pt;}
.v7{vertical-align:-13.909333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:14.997333pt;}
.v9{vertical-align:19.285333pt;}
.v2{vertical-align:35.941333pt;}
.v6{vertical-align:58.976000pt;}
.v1{vertical-align:74.917333pt;}
.v4{vertical-align:100.357333pt;}
.v5{vertical-align:103.232000pt;}
.v3{vertical-align:111.365333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000501pt;}
.ls22{letter-spacing:0.001788pt;}
.ls8{letter-spacing:0.001995pt;}
.ls1b{letter-spacing:0.002906pt;}
.ls1a{letter-spacing:0.003733pt;}
.ls28{letter-spacing:0.004003pt;}
.ls24{letter-spacing:0.004041pt;}
.ls29{letter-spacing:0.005459pt;}
.lsd{letter-spacing:2.658980pt;}
.ls2{letter-spacing:7.529433pt;}
.lsb{letter-spacing:7.624161pt;}
.ls15{letter-spacing:8.855412pt;}
.lsc{letter-spacing:9.184818pt;}
.ls21{letter-spacing:11.659485pt;}
.ls23{letter-spacing:11.803145pt;}
.lsa{letter-spacing:11.808479pt;}
.ls18{letter-spacing:13.613573pt;}
.ls2a{letter-spacing:14.251139pt;}
.ls20{letter-spacing:14.757812pt;}
.ls1f{letter-spacing:14.759329pt;}
.ls9{letter-spacing:14.771215pt;}
.ls1{letter-spacing:15.056125pt;}
.ls0{letter-spacing:15.061459pt;}
.ls17{letter-spacing:15.170122pt;}
.ls1c{letter-spacing:15.693573pt;}
.ls5{letter-spacing:15.887599pt;}
.ls6{letter-spacing:17.362509pt;}
.ls1d{letter-spacing:17.490424pt;}
.ls1e{letter-spacing:17.490906pt;}
.ls26{letter-spacing:17.885753pt;}
.ls11{letter-spacing:17.908932pt;}
.ls10{letter-spacing:19.383842pt;}
.ls12{letter-spacing:20.512818pt;}
.ls13{letter-spacing:20.518152pt;}
.ls19{letter-spacing:20.631455pt;}
.ls25{letter-spacing:21.267608pt;}
.ls7{letter-spacing:22.918152pt;}
.ls16{letter-spacing:25.229573pt;}
.ls4{letter-spacing:26.563733pt;}
.ls14{letter-spacing:27.698122pt;}
.lsf{letter-spacing:179.660745pt;}
.ls27{letter-spacing:184.850079pt;}
.wsb2{word-spacing:-53.133867pt;}
.wsa5{word-spacing:-38.362652pt;}
.wsb1{word-spacing:-32.889863pt;}
.ws8b{word-spacing:-29.531803pt;}
.ws9d{word-spacing:-25.823059pt;}
.ws7e{word-spacing:-25.791179pt;}
.ws40{word-spacing:-14.760588pt;}
.wse9{word-spacing:-13.581016pt;}
.wsd9{word-spacing:-12.543875pt;}
.ws8a{word-spacing:-5.887232pt;}
.ws8d{word-spacing:-2.964870pt;}
.wsb6{word-spacing:-2.951282pt;}
.ws16{word-spacing:-2.752334pt;}
.ws54{word-spacing:-2.699200pt;}
.ws71{word-spacing:-2.646067pt;}
.ws2d{word-spacing:-2.433531pt;}
.ws96{word-spacing:-2.220996pt;}
.wsad{word-spacing:-2.114728pt;}
.ws33{word-spacing:-1.955326pt;}
.ws3d{word-spacing:-1.902192pt;}
.ws8e{word-spacing:-1.849059pt;}
.wseb{word-spacing:-1.689657pt;}
.wsd8{word-spacing:-1.662032pt;}
.wsc6{word-spacing:-1.583389pt;}
.wsc8{word-spacing:-1.530255pt;}
.ws13{word-spacing:-1.423988pt;}
.wsce{word-spacing:-1.370854pt;}
.ws17{word-spacing:-1.264586pt;}
.ws63{word-spacing:-1.211452pt;}
.wsa4{word-spacing:-1.158318pt;}
.ws2f{word-spacing:-1.052051pt;}
.ws3b{word-spacing:-0.998917pt;}
.wsdb{word-spacing:-0.939409pt;}
.ws4b{word-spacing:-0.892649pt;}
.ws83{word-spacing:-0.414444pt;}
.ws53{word-spacing:-0.255043pt;}
.ws31{word-spacing:-0.201909pt;}
.ws6f{word-spacing:-0.148775pt;}
.ws5a{word-spacing:-0.095641pt;}
.wse{word-spacing:-0.076513pt;}
.ws45{word-spacing:-0.063761pt;}
.ws8c{word-spacing:-0.053134pt;}
.ws9a{word-spacing:-0.042507pt;}
.wsd5{word-spacing:-0.037194pt;}
.wsdc{word-spacing:-0.031881pt;}
.ws43{word-spacing:0.000000pt;}
.wscf{word-spacing:0.010627pt;}
.ws23{word-spacing:0.116895pt;}
.wscc{word-spacing:0.123271pt;}
.wsb9{word-spacing:0.170028pt;}
.wsc7{word-spacing:0.223162pt;}
.wsea{word-spacing:0.233789pt;}
.ws72{word-spacing:0.276296pt;}
.ws82{word-spacing:0.329430pt;}
.ws1d{word-spacing:0.382564pt;}
.wscb{word-spacing:0.420821pt;}
.ws94{word-spacing:0.435698pt;}
.ws34{word-spacing:0.488832pt;}
.ws30{word-spacing:0.541965pt;}
.wsa1{word-spacing:0.595099pt;}
.ws85{word-spacing:0.648233pt;}
.wsdd{word-spacing:0.675864pt;}
.ws9e{word-spacing:0.701367pt;}
.ws21{word-spacing:0.754501pt;}
.ws22{word-spacing:0.860769pt;}
.ws57{word-spacing:0.913903pt;}
.wsb5{word-spacing:0.925878pt;}
.ws89{word-spacing:0.926126pt;}
.wsa3{word-spacing:1.073304pt;}
.ws78{word-spacing:1.126438pt;}
.ws107{word-spacing:1.179572pt;}
.ws25{word-spacing:1.338973pt;}
.ws4f{word-spacing:1.392107pt;}
.ws118{word-spacing:1.445241pt;}
.wsb3{word-spacing:1.551509pt;}
.wsd3{word-spacing:1.568516pt;}
.ws5f{word-spacing:1.657777pt;}
.wscd{word-spacing:1.710911pt;}
.wsaa{word-spacing:1.764044pt;}
.ws1f{word-spacing:1.870312pt;}
.ws59{word-spacing:1.923446pt;}
.wse4{word-spacing:1.976580pt;}
.ws67{word-spacing:1.993588pt;}
.ws80{word-spacing:2.082848pt;}
.ws12{word-spacing:2.135981pt;}
.wsf4{word-spacing:2.189115pt;}
.wsae{word-spacing:2.295383pt;}
.ws6b{word-spacing:2.348517pt;}
.ws66{word-spacing:2.503674pt;}
.ws84{word-spacing:2.507919pt;}
.wsa9{word-spacing:2.614186pt;}
.ws98{word-spacing:2.667320pt;}
.ws64{word-spacing:2.720454pt;}
.ws47{word-spacing:2.773588pt;}
.ws104{word-spacing:2.784215pt;}
.ws79{word-spacing:2.843732pt;}
.ws9f{word-spacing:2.879856pt;}
.ws92{word-spacing:2.925727pt;}
.ws90{word-spacing:2.931060pt;}
.ws4{word-spacing:2.932989pt;}
.ws93{word-spacing:2.950581pt;}
.ws8f{word-spacing:2.950851pt;}
.ws91{word-spacing:2.956106pt;}
.ws3a{word-spacing:2.986123pt;}
.wse3{word-spacing:3.039257pt;}
.ws7{word-spacing:3.049884pt;}
.wsab{word-spacing:3.251793pt;}
.ws7a{word-spacing:3.268804pt;}
.ws1a{word-spacing:3.304927pt;}
.ws97{word-spacing:3.464328pt;}
.ws18{word-spacing:3.517462pt;}
.ws62{word-spacing:3.570596pt;}
.ws58{word-spacing:3.623730pt;}
.ws70{word-spacing:3.729997pt;}
.ws52{word-spacing:3.783131pt;}
.ws49{word-spacing:3.889399pt;}
.wsc3{word-spacing:3.942533pt;}
.ws3f{word-spacing:3.995667pt;}
.ws6d{word-spacing:4.048801pt;}
.wsa8{word-spacing:4.101935pt;}
.ws68{word-spacing:4.161455pt;}
.ws5e{word-spacing:4.261336pt;}
.ws55{word-spacing:4.314470pt;}
.wsef{word-spacing:4.367604pt;}
.ws106{word-spacing:4.371310pt;}
.wse1{word-spacing:4.420738pt;}
.ws75{word-spacing:4.527005pt;}
.ws26{word-spacing:4.633273pt;}
.ws7d{word-spacing:4.686407pt;}
.ws3c{word-spacing:4.739541pt;}
.wsf5{word-spacing:4.750168pt;}
.wsa2{word-spacing:4.792675pt;}
.ws51{word-spacing:4.845809pt;}
.ws81{word-spacing:5.058344pt;}
.wsa0{word-spacing:5.164612pt;}
.wsec{word-spacing:5.191804pt;}
.ws2c{word-spacing:5.324013pt;}
.ws2b{word-spacing:5.377147pt;}
.ws7f{word-spacing:5.430281pt;}
.wsd{word-spacing:5.440908pt;}
.wsf{word-spacing:5.541862pt;}
.ws5c{word-spacing:5.589683pt;}
.wsa7{word-spacing:5.642817pt;}
.wsdf{word-spacing:5.695951pt;}
.wsc5{word-spacing:5.802218pt;}
.wsc9{word-spacing:5.908486pt;}
.wsa6{word-spacing:5.961620pt;}
.ws105{word-spacing:6.014754pt;}
.ws2e{word-spacing:6.067888pt;}
.wsa{word-spacing:6.078514pt;}
.wsba{word-spacing:6.121021pt;}
.wsb0{word-spacing:6.225048pt;}
.ws5b{word-spacing:6.227289pt;}
.ws10{word-spacing:6.232603pt;}
.ws36{word-spacing:6.280423pt;}
.wsbf{word-spacing:6.333557pt;}
.wsd7{word-spacing:6.386691pt;}
.ws73{word-spacing:6.439825pt;}
.ws7c{word-spacing:6.492959pt;}
.ws29{word-spacing:6.546092pt;}
.ws24{word-spacing:6.599226pt;}
.wsc1{word-spacing:6.652360pt;}
.ws37{word-spacing:6.705494pt;}
.wsd0{word-spacing:6.811762pt;}
.ws6a{word-spacing:6.864896pt;}
.wsb4{word-spacing:6.918029pt;}
.ws19{word-spacing:7.077431pt;}
.wsf8{word-spacing:7.130565pt;}
.ws7b{word-spacing:7.183699pt;}
.ws9b{word-spacing:7.236833pt;}
.wsda{word-spacing:7.392002pt;}
.wsc2{word-spacing:7.396234pt;}
.ws1c{word-spacing:7.449368pt;}
.wsd2{word-spacing:7.502502pt;}
.wsed{word-spacing:7.513129pt;}
.ws38{word-spacing:7.608770pt;}
.ws6e{word-spacing:7.661904pt;}
.wsc0{word-spacing:7.768171pt;}
.ws5d{word-spacing:7.821305pt;}
.ws95{word-spacing:7.980707pt;}
.wsf1{word-spacing:8.060539pt;}
.ws86{word-spacing:8.086975pt;}
.ws27{word-spacing:8.140108pt;}
.ws15{word-spacing:8.246376pt;}
.ws8{word-spacing:8.257003pt;}
.ws56{word-spacing:8.405778pt;}
.ws87{word-spacing:8.458912pt;}
.ws5{word-spacing:8.502197pt;}
.wse2{word-spacing:8.618313pt;}
.wsaf{word-spacing:8.671447pt;}
.wsd4{word-spacing:8.724581pt;}
.ws48{word-spacing:8.777715pt;}
.ws109{word-spacing:8.883550pt;}
.wse6{word-spacing:8.883983pt;}
.wsd1{word-spacing:8.937116pt;}
.wsb{word-spacing:9.107145pt;}
.ws2a{word-spacing:9.149652pt;}
.ws61{word-spacing:9.202786pt;}
.ws50{word-spacing:9.255920pt;}
.ws9{word-spacing:9.266546pt;}
.ws69{word-spacing:9.309053pt;}
.wse0{word-spacing:9.362187pt;}
.ws28{word-spacing:9.415321pt;}
.ws99{word-spacing:9.468455pt;}
.wsac{word-spacing:9.787258pt;}
.ws76{word-spacing:9.946660pt;}
.ws77{word-spacing:9.999794pt;}
.ws4a{word-spacing:10.106061pt;}
.wsf2{word-spacing:10.116688pt;}
.ws4e{word-spacing:10.212329pt;}
.wsb7{word-spacing:10.424865pt;}
.ws9c{word-spacing:10.477999pt;}
.ws74{word-spacing:10.531132pt;}
.ws108{word-spacing:10.584266pt;}
.ws42{word-spacing:10.637400pt;}
.ws6{word-spacing:10.701161pt;}
.ws35{word-spacing:10.796802pt;}
.ws10a{word-spacing:10.860562pt;}
.ws14{word-spacing:10.956203pt;}
.ws46{word-spacing:11.062471pt;}
.ws39{word-spacing:11.115605pt;}
.wsb8{word-spacing:11.168739pt;}
.wsfb{word-spacing:11.221873pt;}
.wsbc{word-spacing:11.328140pt;}
.ws20{word-spacing:11.540676pt;}
.wsd6{word-spacing:11.593810pt;}
.ws11d{word-spacing:11.806345pt;}
.wsde{word-spacing:11.859479pt;}
.ws119{word-spacing:12.018881pt;}
.ws88{word-spacing:12.178282pt;}
.ws1b{word-spacing:12.284550pt;}
.wse7{word-spacing:12.390818pt;}
.ws1e{word-spacing:12.443952pt;}
.wsee{word-spacing:12.815889pt;}
.wsbb{word-spacing:12.922156pt;}
.wsc4{word-spacing:12.975290pt;}
.wsc{word-spacing:13.145319pt;}
.wse5{word-spacing:13.294093pt;}
.wsfc{word-spacing:13.347227pt;}
.ws115{word-spacing:13.666031pt;}
.wsbd{word-spacing:14.197369pt;}
.ws3e{word-spacing:14.356771pt;}
.ws116{word-spacing:14.463039pt;}
.ws103{word-spacing:14.579933pt;}
.wsfa{word-spacing:14.781842pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.007858pt;}
.ws11a{word-spacing:15.366314pt;}
.wsbe{word-spacing:15.844519pt;}
.ws6c{word-spacing:15.897653pt;}
.ws113{word-spacing:15.950787pt;}
.ws4d{word-spacing:16.163322pt;}
.wsf9{word-spacing:16.280217pt;}
.ws112{word-spacing:16.322724pt;}
.wsf0{word-spacing:16.428992pt;}
.wse8{word-spacing:16.482125pt;}
.ws102{word-spacing:16.641527pt;}
.ws10b{word-spacing:17.172866pt;}
.ws65{word-spacing:17.300430pt;}
.wsf7{word-spacing:17.810472pt;}
.ws117{word-spacing:18.129275pt;}
.wsf6{word-spacing:19.096312pt;}
.ws114{word-spacing:19.191953pt;}
.wsf3{word-spacing:19.245087pt;}
.ws60{word-spacing:20.297137pt;}
.ws3{word-spacing:22.252612pt;}
.wsfe{word-spacing:22.273717pt;}
.ws11c{word-spacing:22.698788pt;}
.ws110{word-spacing:23.176993pt;}
.wsff{word-spacing:23.187619pt;}
.ws44{word-spacing:23.846639pt;}
.ws101{word-spacing:24.930410pt;}
.ws100{word-spacing:25.631777pt;}
.wsca{word-spacing:26.987821pt;}
.ws41{word-spacing:27.108899pt;}
.wsfd{word-spacing:28.224710pt;}
.ws32{word-spacing:28.615887pt;}
.ws10f{word-spacing:31.147073pt;}
.ws10e{word-spacing:31.370235pt;}
.ws2{word-spacing:34.706246pt;}
.ws10c{word-spacing:34.813309pt;}
.ws111{word-spacing:35.678131pt;}
.ws11b{word-spacing:42.985298pt;}
.ws10d{word-spacing:58.404746pt;}
.ws4c{word-spacing:103.547972pt;}
.ws11{word-spacing:124.257220pt;}
._5{margin-left:-5.131871pt;}
._1{margin-left:-3.783141pt;}
._3{margin-left:-2.203571pt;}
._0{margin-left:-1.232709pt;}
._d{width:1.222079pt;}
._6{width:2.203571pt;}
._4{width:10.201771pt;}
._27{width:14.080475pt;}
._13{width:15.274502pt;}
._c{width:16.390314pt;}
._1e{width:17.612393pt;}
._1a{width:18.607490pt;}
._26{width:19.578346pt;}
._f{width:20.534755pt;}
._a{width:22.273726pt;}
._7{width:23.644571pt;}
._21{width:25.408618pt;}
._9{width:26.369733pt;}
._17{width:27.842146pt;}
._24{width:28.851690pt;}
._1d{width:30.042749pt;}
._12{width:31.746001pt;}
._8{width:33.456921pt;}
._e{width:35.057716pt;}
._22{width:36.259411pt;}
._15{width:37.353108pt;}
._1f{width:38.256384pt;}
._25{width:39.478463pt;}
._11{width:41.469499pt;}
._10{width:42.932164pt;}
._2{width:44.547546pt;}
._1c{width:45.932743pt;}
._16{width:47.261090pt;}
._28{width:49.308228pt;}
._b{width:50.874193pt;}
._23{width:53.449701pt;}
._1b{width:62.622715pt;}
._20{width:81.454218pt;}
._29{width:87.195644pt;}
._19{width:103.611733pt;}
._14{width:124.333733pt;}
._18{width:1069.651181pt;}
.fs6{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:51.638667pt;}
.y39{bottom:51.958667pt;}
.y29{bottom:107.716000pt;}
.y28{bottom:123.656000pt;}
.y89{bottom:123.657333pt;}
.y38{bottom:139.596000pt;}
.y27{bottom:139.597333pt;}
.y9e{bottom:147.156000pt;}
.y26{bottom:155.537333pt;}
.y9d{bottom:163.096000pt;}
.y104{bottom:165.768000pt;}
.y25{bottom:171.477333pt;}
.y37{bottom:179.036000pt;}
.y103{bottom:181.709333pt;}
.y24{bottom:187.417333pt;}
.y36{bottom:194.976000pt;}
.y102{bottom:197.649333pt;}
.y23{bottom:203.357333pt;}
.y88{bottom:205.258667pt;}
.y35{bottom:210.916000pt;}
.y9c{bottom:210.917333pt;}
.y101{bottom:213.589333pt;}
.y5f{bottom:219.297333pt;}
.y70{bottom:219.298667pt;}
.y22{bottom:226.857333pt;}
.y5e{bottom:235.238667pt;}
.y100{bottom:239.761333pt;}
.y21{bottom:242.797333pt;}
.y5d{bottom:251.178667pt;}
.yff{bottom:255.701333pt;}
.y20{bottom:258.737333pt;}
.y5c{bottom:267.118667pt;}
.yd3{bottom:271.041333pt;}
.yfe{bottom:271.641333pt;}
.y1f{bottom:274.677333pt;}
.y9b{bottom:282.237333pt;}
.y5b{bottom:283.058667pt;}
.yd2{bottom:283.660000pt;}
.y1e{bottom:290.617333pt;}
.yfd{bottom:297.813333pt;}
.y9a{bottom:298.177333pt;}
.y5a{bottom:298.998667pt;}
.y34{bottom:306.557333pt;}
.y1d{bottom:306.558667pt;}
.yfc{bottom:313.754667pt;}
.y99{bottom:314.117333pt;}
.y59{bottom:314.938667pt;}
.y6f{bottom:314.940000pt;}
.y1c{bottom:322.498667pt;}
.yfb{bottom:329.694667pt;}
.y33{bottom:330.057333pt;}
.y58{bottom:330.880000pt;}
.yda{bottom:333.557333pt;}
.yc3{bottom:338.438667pt;}
.yfa{bottom:345.634667pt;}
.y1b{bottom:345.997333pt;}
.yd9{bottom:346.176000pt;}
.y57{bottom:346.820000pt;}
.yc2{bottom:354.378667pt;}
.yf9{bottom:361.574667pt;}
.y1a{bottom:361.937333pt;}
.y56{bottom:362.760000pt;}
.y6e{bottom:364.270667pt;}
.yc1{bottom:370.318667pt;}
.y6d{bottom:376.889333pt;}
.y32{bottom:377.877333pt;}
.y19{bottom:377.878667pt;}
.y55{bottom:378.700000pt;}
.yc0{bottom:386.258667pt;}
.yf8{bottom:387.746667pt;}
.y6c{bottom:389.509333pt;}
.y87{bottom:393.490667pt;}
.y18{bottom:393.818667pt;}
.y54{bottom:394.640000pt;}
.ybf{bottom:402.200000pt;}
.yf7{bottom:403.686667pt;}
.y86{bottom:409.430667pt;}
.y17{bottom:409.758667pt;}
.y53{bottom:410.580000pt;}
.ybe{bottom:418.140000pt;}
.yf6{bottom:419.626667pt;}
.y85{bottom:425.370667pt;}
.y16{bottom:425.698667pt;}
.y52{bottom:426.521333pt;}
.ybd{bottom:434.080000pt;}
.yf5{bottom:435.568000pt;}
.y84{bottom:441.310667pt;}
.y15{bottom:441.638667pt;}
.y51{bottom:442.461333pt;}
.ybc{bottom:450.020000pt;}
.yf4{bottom:451.508000pt;}
.y83{bottom:457.252000pt;}
.y14{bottom:457.578667pt;}
.y98{bottom:457.777333pt;}
.y50{bottom:458.401333pt;}
.ybb{bottom:465.960000pt;}
.y82{bottom:473.192000pt;}
.y13{bottom:473.520000pt;}
.y4f{bottom:474.341333pt;}
.yf3{bottom:477.680000pt;}
.yba{bottom:481.901333pt;}
.y31{bottom:485.824000pt;}
.y81{bottom:489.132000pt;}
.y4e{bottom:490.281333pt;}
.yf2{bottom:493.620000pt;}
.y97{bottom:502.213333pt;}
.y4d{bottom:506.222667pt;}
.yf1{bottom:509.560000pt;}
.y12{bottom:511.208000pt;}
.y80{bottom:512.630667pt;}
.yd1{bottom:513.614667pt;}
.yb5{bottom:517.761333pt;}
.y96{bottom:518.153333pt;}
.yb7{bottom:521.238667pt;}
.y4c{bottom:522.162667pt;}
.yf0{bottom:525.500000pt;}
.yb9{bottom:526.552000pt;}
.yb6{bottom:528.009333pt;}
.y7f{bottom:528.572000pt;}
.yd0{bottom:529.556000pt;}
.yb8{bottom:533.322667pt;}
.y95{bottom:534.094667pt;}
.y7e{bottom:544.512000pt;}
.yd8{bottom:545.189333pt;}
.ycf{bottom:545.496000pt;}
.y4b{bottom:556.038667pt;}
.yd7{bottom:557.809333pt;}
.y7d{bottom:560.452000pt;}
.yce{bottom:561.436000pt;}
.yef{bottom:562.153333pt;}
.yb4{bottom:563.574667pt;}
.y11{bottom:567.873333pt;}
.yd6{bottom:570.428000pt;}
.y94{bottom:570.748000pt;}
.y30{bottom:574.968000pt;}
.y7c{bottom:576.392000pt;}
.ycd{bottom:577.376000pt;}
.yb3{bottom:579.514667pt;}
.y10{bottom:583.813333pt;}
.y2f{bottom:590.908000pt;}
.y7b{bottom:592.332000pt;}
.ycc{bottom:593.316000pt;}
.yb2{bottom:595.454667pt;}
.y6b{bottom:603.834667pt;}
.y2e{bottom:606.848000pt;}
.y7a{bottom:608.272000pt;}
.ycb{bottom:609.257333pt;}
.y4a{bottom:609.770667pt;}
.yb1{bottom:611.394667pt;}
.yee{bottom:613.470667pt;}
.yf{bottom:621.502667pt;}
.y93{bottom:621.928000pt;}
.y2d{bottom:622.788000pt;}
.yca{bottom:625.197333pt;}
.y49{bottom:625.710667pt;}
.yb0{bottom:627.334667pt;}
.yed{bottom:629.410667pt;}
.y2c{bottom:638.728000pt;}
.y79{bottom:640.650667pt;}
.yc9{bottom:641.137333pt;}
.y48{bottom:641.650667pt;}
.yaf{bottom:643.276000pt;}
.yec{bottom:645.350667pt;}
.y92{bottom:647.781333pt;}
.y47{bottom:657.592000pt;}
.y116{bottom:658.393333pt;}
.yae{bottom:659.216000pt;}
.yeb{bottom:661.292000pt;}
.y2b{bottom:662.228000pt;}
.y123{bottom:669.560000pt;}
.y46{bottom:673.532000pt;}
.y91{bottom:673.636000pt;}
.y115{bottom:674.333333pt;}
.yc8{bottom:674.357333pt;}
.yad{bottom:675.156000pt;}
.yea{bottom:677.232000pt;}
.ye{bottom:678.168000pt;}
.y122{bottom:685.501333pt;}
.yc7{bottom:686.976000pt;}
.y45{bottom:689.472000pt;}
.y114{bottom:690.274667pt;}
.yac{bottom:691.096000pt;}
.ye9{bottom:693.172000pt;}
.yd{bottom:694.108000pt;}
.y78{bottom:697.105333pt;}
.yc6{bottom:699.596000pt;}
.y121{bottom:701.441333pt;}
.y113{bottom:706.214667pt;}
.y90{bottom:706.334667pt;}
.yab{bottom:707.036000pt;}
.ye8{bottom:709.112000pt;}
.y77{bottom:709.724000pt;}
.yc{bottom:710.048000pt;}
.yc5{bottom:712.214667pt;}
.y120{bottom:717.381333pt;}
.y112{bottom:722.154667pt;}
.y8f{bottom:722.276000pt;}
.y76{bottom:722.344000pt;}
.yaa{bottom:722.977333pt;}
.ye7{bottom:725.052000pt;}
.y2a{bottom:725.988000pt;}
.yb{bottom:725.989333pt;}
.y44{bottom:727.773333pt;}
.y11f{bottom:733.321333pt;}
.y111{bottom:738.094667pt;}
.ya9{bottom:738.917333pt;}
.ye6{bottom:740.992000pt;}
.ya{bottom:741.929333pt;}
.y11e{bottom:749.261333pt;}
.y8e{bottom:750.796000pt;}
.ye5{bottom:756.933333pt;}
.y9{bottom:757.869333pt;}
.y8d{bottom:759.908000pt;}
.ya8{bottom:762.416000pt;}
.y43{bottom:762.692000pt;}
.y110{bottom:764.661333pt;}
.y11d{bottom:765.202667pt;}
.ye4{bottom:772.873333pt;}
.y8{bottom:773.809333pt;}
.ya7{bottom:778.356000pt;}
.y10f{bottom:780.602667pt;}
.y11c{bottom:781.142667pt;}
.ye3{bottom:788.813333pt;}
.y7{bottom:789.749333pt;}
.ya6{bottom:794.297333pt;}
.yd5{bottom:795.865333pt;}
.y10e{bottom:796.542667pt;}
.y42{bottom:797.609333pt;}
.ye2{bottom:804.753333pt;}
.y8c{bottom:807.889333pt;}
.yd4{bottom:808.484000pt;}
.ya5{bottom:810.237333pt;}
.y10d{bottom:812.482667pt;}
.y11b{bottom:813.022667pt;}
.y6a{bottom:817.465333pt;}
.y8b{bottom:823.829333pt;}
.ya4{bottom:826.177333pt;}
.y10c{bottom:828.422667pt;}
.y11a{bottom:828.962667pt;}
.y41{bottom:832.528000pt;}
.y69{bottom:833.405333pt;}
.y6{bottom:838.825333pt;}
.ye1{bottom:841.406667pt;}
.ya3{bottom:842.117333pt;}
.y119{bottom:844.902667pt;}
.y68{bottom:849.346667pt;}
.y10b{bottom:854.989333pt;}
.ya2{bottom:858.057333pt;}
.y118{bottom:860.844000pt;}
.y67{bottom:865.286667pt;}
.y8a{bottom:866.040000pt;}
.y40{bottom:867.445333pt;}
.y5{bottom:870.705333pt;}
.y10a{bottom:870.930667pt;}
.ya1{bottom:873.997333pt;}
.y117{bottom:876.784000pt;}
.y66{bottom:881.226667pt;}
.y4{bottom:886.645333pt;}
.y109{bottom:886.870667pt;}
.ya0{bottom:889.938667pt;}
.ye0{bottom:892.724000pt;}
.y65{bottom:897.166667pt;}
.y3f{bottom:902.364000pt;}
.y108{bottom:902.810667pt;}
.y9f{bottom:905.878667pt;}
.ydf{bottom:908.664000pt;}
.y64{bottom:913.106667pt;}
.y107{bottom:918.750667pt;}
.yde{bottom:924.604000pt;}
.y3{bottom:929.042667pt;}
.y63{bottom:929.046667pt;}
.y75{bottom:929.377333pt;}
.y106{bottom:934.690667pt;}
.ydd{bottom:940.544000pt;}
.y3e{bottom:940.665333pt;}
.y62{bottom:944.988000pt;}
.y74{bottom:945.317333pt;}
.y105{bottom:950.630667pt;}
.ydc{bottom:956.485333pt;}
.y3d{bottom:956.605333pt;}
.y61{bottom:960.928000pt;}
.yc4{bottom:961.257333pt;}
.y73{bottom:961.258667pt;}
.ydb{bottom:972.425333pt;}
.y60{bottom:976.868000pt;}
.y72{bottom:977.198667pt;}
.y2{bottom:987.674667pt;}
.y3c{bottom:990.481333pt;}
.y71{bottom:993.138667pt;}
.y3b{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.hd{height:17.693578pt;}
.hf{height:18.416198pt;}
.h8{height:30.392648pt;}
.h2{height:31.880400pt;}
.h11{height:36.197888pt;}
.h7{height:37.778179pt;}
.h5{height:39.850400pt;}
.h10{height:43.981884pt;}
.h9{height:44.632747pt;}
.h4{height:45.525402pt;}
.he{height:47.192021pt;}
.h6{height:53.559147pt;}
.hc{height:61.101355pt;}
.ha{height:77.042688pt;}
.h3{height:87.224693pt;}
.hb{height:129.044358pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.xc{left:78.726667pt;}
.xd{left:81.568000pt;}
.x7{left:82.764000pt;}
.x8{left:88.874667pt;}
.x1b{left:102.896000pt;}
.x2{left:114.190667pt;}
.x11{left:117.750667pt;}
.x4{left:118.744000pt;}
.x19{left:124.260000pt;}
.xe{left:135.366667pt;}
.x15{left:138.777333pt;}
.x5{left:144.481333pt;}
.x3{left:256.173333pt;}
.x6{left:261.100000pt;}
.x17{left:265.793333pt;}
.x16{left:269.702667pt;}
.x18{left:313.568000pt;}
.x9{left:403.492000pt;}
.xf{left:408.584000pt;}
.xb{left:410.665333pt;}
.xa{left:416.776000pt;}
.x1a{left:430.797333pt;}
.x10{left:445.653333pt;}
.x12{left:465.380000pt;}
.x13{left:598.545333pt;}
.x14{left:652.532000pt;}
}




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