
    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_e813dac38156ab0aac6c251a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_7298a1fdf5ef86a16c9e3b0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_7d2f2ea021ebdf171384feec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_5a00e84d10a245a76442ceb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_e813dac38156ab0aac6c251a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_b6157279694d25f25d5f8fa5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_1217bfcf351a218d16e5f9ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113000;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_1369ae6270063d20e409bb16.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_5a00e84d10a245a76442ceb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.203000;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_9ccdd33c57140ebe52ca8023.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.303000;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_1f217cd65fcf2bb25619c4de.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.629000;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_1369ae6270063d20e409bb16.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202000;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_5a00e84d10a245a76442ceb3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.203000;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_1369ae6270063d20e409bb16.woff2')format("woff");}.fff{font-family:fff;line-height:1.202000;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_5a00e84d10a245a76442ceb3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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_3809b6a337111db4f98df195.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-18.000000px;}
.v3{vertical-align:-15.000000px;}
.v7{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v6{vertical-align:19.200073px;}
.v5{vertical-align:23.519897px;}
.v4{vertical-align:26.399780px;}
.lsa{letter-spacing:-3.998400px;}
.lse{letter-spacing:-3.648000px;}
.ls4{letter-spacing:-1.050000px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.ls6{letter-spacing:0.000009px;}
.lsc{letter-spacing:0.000013px;}
.ls11{letter-spacing:0.000016px;}
.ls12{letter-spacing:0.000018px;}
.ls7{letter-spacing:0.000020px;}
.ls10{letter-spacing:0.000022px;}
.ls9{letter-spacing:0.000034px;}
.ls2{letter-spacing:0.000053px;}
.ls1{letter-spacing:0.000100px;}
.ls8{letter-spacing:0.000111px;}
.ls0{letter-spacing:9.360000px;}
.lsd{letter-spacing:255.468550px;}
.lsb{letter-spacing:468.355162px;}
.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;}
}
.ws26{word-spacing:-14.700000px;}
.ws4{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws9{word-spacing:-11.880000px;}
.ws27{word-spacing:-11.426400px;}
.ws7{word-spacing:-10.800000px;}
.wsca{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.wsa{word-spacing:-10.117800px;}
.wsb5{word-spacing:-9.936000px;}
.ws6{word-spacing:-9.855000px;}
.ws25{word-spacing:-9.672600px;}
.ws103{word-spacing:-9.315000px;}
.ws8{word-spacing:-9.198000px;}
.ws1{word-spacing:-8.148000px;}
.wsfd{word-spacing:-7.358400px;}
.wsb6{word-spacing:-6.955200px;}
.ws5{word-spacing:-6.898500px;}
.ws64{word-spacing:-6.468000px;}
.ws23{word-spacing:-5.640000px;}
.wsc7{word-spacing:-4.512000px;}
.wsc9{word-spacing:-3.936000px;}
.ws13{word-spacing:-3.108000px;}
.ws24{word-spacing:-2.772000px;}
.ws91{word-spacing:-2.469600px;}
.ws72{word-spacing:-1.705200px;}
.ws12{word-spacing:-1.344000px;}
.ws9e{word-spacing:-1.293600px;}
.wsa6{word-spacing:-0.882000px;}
.wsc8{word-spacing:-0.768000px;}
.ws7e{word-spacing:-0.646800px;}
.ws101{word-spacing:-0.470400px;}
.ws15{word-spacing:-0.352800px;}
.ws9f{word-spacing:-0.235200px;}
.wsce{word-spacing:-0.192000px;}
.wscd{word-spacing:-0.144000px;}
.ws102{word-spacing:-0.117600px;}
.ws1c{word-spacing:-0.058800px;}
.ws111{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws6a{word-spacing:0.058800px;}
.ws8b{word-spacing:0.117600px;}
.ws10{word-spacing:0.210000px;}
.wsde{word-spacing:0.294000px;}
.ws2f{word-spacing:0.411600px;}
.ws54{word-spacing:0.529200px;}
.wsf0{word-spacing:0.588000px;}
.wsc3{word-spacing:0.646800px;}
.wse9{word-spacing:0.705600px;}
.ws30{word-spacing:0.882000px;}
.ws2a{word-spacing:0.940800px;}
.ws104{word-spacing:0.999600px;}
.ws11{word-spacing:1.050000px;}
.ws59{word-spacing:1.117200px;}
.ws8a{word-spacing:1.176000px;}
.ws21{word-spacing:1.234800px;}
.wse{word-spacing:1.302000px;}
.ws97{word-spacing:1.411200px;}
.wsf{word-spacing:1.470000px;}
.wsc6{word-spacing:1.528800px;}
.ws10f{word-spacing:1.587600px;}
.wsa5{word-spacing:1.646400px;}
.ws4d{word-spacing:1.705200px;}
.wsd{word-spacing:1.722000px;}
.ws10b{word-spacing:1.764000px;}
.wsc{word-spacing:1.806000px;}
.ws1b{word-spacing:1.822800px;}
.ws80{word-spacing:1.940400px;}
.wsfb{word-spacing:2.058000px;}
.wsdd{word-spacing:2.116800px;}
.ws42{word-spacing:2.234400px;}
.ws3e{word-spacing:2.352000px;}
.wsf5{word-spacing:2.410800px;}
.ws73{word-spacing:2.469600px;}
.ws5f{word-spacing:2.528400px;}
.ws29{word-spacing:2.640000px;}
.ws32{word-spacing:2.646000px;}
.wsa2{word-spacing:2.704800px;}
.wsa9{word-spacing:2.763600px;}
.wsd5{word-spacing:2.822400px;}
.ws1a{word-spacing:2.881200px;}
.wsef{word-spacing:2.940000px;}
.ws6b{word-spacing:2.998800px;}
.ws19{word-spacing:3.057600px;}
.ws28{word-spacing:3.072000px;}
.ws109{word-spacing:3.116400px;}
.wsaa{word-spacing:3.234000px;}
.ws58{word-spacing:3.292800px;}
.ws100{word-spacing:3.351600px;}
.ws5b{word-spacing:3.410400px;}
.ws85{word-spacing:3.469200px;}
.ws7f{word-spacing:3.645600px;}
.wsfa{word-spacing:3.822000px;}
.ws4e{word-spacing:3.880800px;}
.ws17{word-spacing:3.939600px;}
.ws22{word-spacing:3.960000px;}
.wsad{word-spacing:3.998400px;}
.wsd7{word-spacing:4.057200px;}
.wsdf{word-spacing:4.116000px;}
.ws105{word-spacing:4.233600px;}
.ws74{word-spacing:4.351200px;}
.wse0{word-spacing:4.410000px;}
.wsf7{word-spacing:4.468800px;}
.ws36{word-spacing:4.527600px;}
.wsd6{word-spacing:4.586400px;}
.ws6e{word-spacing:4.704000px;}
.ws1f{word-spacing:4.821600px;}
.ws98{word-spacing:4.880400px;}
.ws46{word-spacing:4.939200px;}
.wsfc{word-spacing:5.056800px;}
.ws78{word-spacing:5.115600px;}
.ws7b{word-spacing:5.292000px;}
.ws35{word-spacing:5.350800px;}
.ws76{word-spacing:5.409600px;}
.wsd3{word-spacing:5.468400px;}
.ws68{word-spacing:5.703600px;}
.ws56{word-spacing:5.762400px;}
.ws37{word-spacing:5.821200px;}
.ws2e{word-spacing:5.880000px;}
.ws8c{word-spacing:5.938800px;}
.ws4c{word-spacing:5.997600px;}
.ws39{word-spacing:6.056400px;}
.ws50{word-spacing:6.115200px;}
.ws3a{word-spacing:6.174000px;}
.ws1e{word-spacing:6.232800px;}
.wse6{word-spacing:6.291600px;}
.ws40{word-spacing:6.350400px;}
.ws41{word-spacing:6.409200px;}
.ws2d{word-spacing:6.468000px;}
.ws79{word-spacing:6.585600px;}
.ws61{word-spacing:6.644400px;}
.ws88{word-spacing:6.703200px;}
.ws75{word-spacing:6.762000px;}
.ws1d{word-spacing:6.820800px;}
.ws83{word-spacing:6.879600px;}
.ws8e{word-spacing:6.938400px;}
.ws18{word-spacing:6.997200px;}
.wsac{word-spacing:7.056000px;}
.ws5a{word-spacing:7.114800px;}
.wsd9{word-spacing:7.173600px;}
.ws52{word-spacing:7.232400px;}
.wscf{word-spacing:7.291200px;}
.ws89{word-spacing:7.467600px;}
.wsa3{word-spacing:7.585200px;}
.wsf9{word-spacing:7.644000px;}
.wsae{word-spacing:7.702800px;}
.wsed{word-spacing:7.761600px;}
.ws77{word-spacing:7.879200px;}
.ws87{word-spacing:7.938000px;}
.ws6d{word-spacing:7.996800px;}
.ws65{word-spacing:8.055600px;}
.ws6c{word-spacing:8.114400px;}
.ws10c{word-spacing:8.232000px;}
.ws108{word-spacing:8.290800px;}
.ws94{word-spacing:8.349600px;}
.ws6f{word-spacing:8.408400px;}
.ws31{word-spacing:8.467200px;}
.ws107{word-spacing:8.584800px;}
.wse7{word-spacing:8.643600px;}
.ws70{word-spacing:8.702400px;}
.wsf3{word-spacing:8.878800px;}
.ws96{word-spacing:8.937600px;}
.wsc4{word-spacing:9.114000px;}
.ws5c{word-spacing:9.172800px;}
.ws3d{word-spacing:9.231600px;}
.wseb{word-spacing:9.290400px;}
.ws47{word-spacing:9.349200px;}
.wsd8{word-spacing:9.525600px;}
.wsff{word-spacing:9.643200px;}
.ws9a{word-spacing:9.702000px;}
.ws7c{word-spacing:9.819600px;}
.ws10a{word-spacing:9.878400px;}
.ws55{word-spacing:9.937200px;}
.wsf2{word-spacing:10.054800px;}
.ws93{word-spacing:10.172400px;}
.ws53{word-spacing:10.231200px;}
.ws8d{word-spacing:10.290000px;}
.wsec{word-spacing:10.525200px;}
.ws38{word-spacing:10.584000px;}
.ws48{word-spacing:10.642800px;}
.ws2b{word-spacing:10.760400px;}
.ws110{word-spacing:10.819200px;}
.wsf8{word-spacing:10.878000px;}
.wse1{word-spacing:10.936800px;}
.wsf1{word-spacing:10.995600px;}
.ws99{word-spacing:11.054400px;}
.ws4f{word-spacing:11.113200px;}
.wsf4{word-spacing:11.172000px;}
.ws10e{word-spacing:11.230800px;}
.ws7d{word-spacing:11.289600px;}
.ws16{word-spacing:11.348400px;}
.ws9c{word-spacing:11.407200px;}
.ws3c{word-spacing:11.524800px;}
.wsa4{word-spacing:11.642400px;}
.ws69{word-spacing:11.760000px;}
.wscb{word-spacing:11.818800px;}
.ws3f{word-spacing:11.877600px;}
.wsaf{word-spacing:11.995200px;}
.ws33{word-spacing:12.054000px;}
.wsdc{word-spacing:12.112800px;}
.ws82{word-spacing:12.465600px;}
.wse5{word-spacing:12.759600px;}
.wsab{word-spacing:12.994800px;}
.wsee{word-spacing:13.053600px;}
.ws86{word-spacing:13.230000px;}
.wsdb{word-spacing:13.288800px;}
.wsa1{word-spacing:13.406400px;}
.ws84{word-spacing:13.465200px;}
.ws43{word-spacing:13.641600px;}
.ws95{word-spacing:13.759200px;}
.wsea{word-spacing:13.876800px;}
.wsf6{word-spacing:13.994400px;}
.ws3b{word-spacing:14.053200px;}
.ws44{word-spacing:14.170800px;}
.ws57{word-spacing:14.406000px;}
.ws9d{word-spacing:14.523600px;}
.ws67{word-spacing:14.641200px;}
.ws49{word-spacing:14.758800px;}
.ws92{word-spacing:14.817600px;}
.ws62{word-spacing:14.876400px;}
.ws9b{word-spacing:14.994000px;}
.wsd1{word-spacing:15.052800px;}
.ws63{word-spacing:15.111600px;}
.wsb1{word-spacing:15.170400px;}
.ws34{word-spacing:15.346800px;}
.ws2c{word-spacing:15.523200px;}
.ws5d{word-spacing:15.640800px;}
.wsd4{word-spacing:15.699600px;}
.ws4b{word-spacing:15.758400px;}
.ws106{word-spacing:15.876000px;}
.wsb0{word-spacing:16.170000px;}
.ws10d{word-spacing:16.228800px;}
.wsda{word-spacing:16.993200px;}
.ws20{word-spacing:17.346000px;}
.wse4{word-spacing:17.404800px;}
.ws4a{word-spacing:17.816400px;}
.wse8{word-spacing:17.875200px;}
.wscc{word-spacing:18.110400px;}
.ws45{word-spacing:18.169200px;}
.ws71{word-spacing:18.522000px;}
.wse3{word-spacing:18.698400px;}
.wsa7{word-spacing:18.992400px;}
.wsfe{word-spacing:19.051200px;}
.wsd0{word-spacing:19.345200px;}
.ws14{word-spacing:19.404000px;}
.wsd2{word-spacing:19.521600px;}
.wsa8{word-spacing:19.874400px;}
.ws60{word-spacing:20.050800px;}
.ws81{word-spacing:20.227200px;}
.ws90{word-spacing:20.580000px;}
.ws51{word-spacing:20.815200px;}
.ws5e{word-spacing:21.168000px;}
.ws66{word-spacing:22.344000px;}
.ws8f{word-spacing:22.873200px;}
.ws7a{word-spacing:23.167200px;}
.wsc5{word-spacing:26.283600px;}
.wse2{word-spacing:27.636000px;}
.wsa0{word-spacing:29.870400px;}
.wsb2{word-spacing:35.926800px;}
.wsb7{word-spacing:102.639575px;}
.wsb9{word-spacing:146.115636px;}
.wsb8{word-spacing:164.537325px;}
.wsba{word-spacing:169.480660px;}
.wsbe{word-spacing:169.481259px;}
.wsc1{word-spacing:169.481858px;}
.wsc0{word-spacing:169.481908px;}
.wsbd{word-spacing:172.361292px;}
.wsbb{word-spacing:177.890377px;}
.wsbf{word-spacing:201.313778px;}
.wsc2{word-spacing:224.737179px;}
.wsb4{word-spacing:298.436448px;}
.wsb3{word-spacing:320.515162px;}
.wsbc{word-spacing:1131.365954px;}
.ws0{word-spacing:1945.846745px;}
._9{margin-left:-2890.931921px;}
._18{margin-left:-42.975492px;}
._14{margin-left:-36.399021px;}
._11{margin-left:-27.368407px;}
._42{margin-left:-25.992508px;}
._17{margin-left:-24.879601px;}
._a{margin-left:-21.336016px;}
._1c{margin-left:-19.897782px;}
._1a{margin-left:-18.607532px;}
._16{margin-left:-17.247787px;}
._c{margin-left:-14.361542px;}
._40{margin-left:-12.543059px;}
._19{margin-left:-10.603171px;}
._5{margin-left:-9.601194px;}
._1f{margin-left:-8.497861px;}
._1b{margin-left:-7.048709px;}
._e{margin-left:-5.888466px;}
._7{margin-left:-4.160423px;}
._2{margin-left:-2.952577px;}
._0{margin-left:-1.716000px;}
._1{width:1.146577px;}
._3{width:2.268743px;}
._12{width:3.415836px;}
._6{width:4.494000px;}
._13{width:5.776864px;}
._f{width:7.414759px;}
._4{width:9.383392px;}
._10{width:12.324503px;}
._45{width:13.426772px;}
._d{width:14.517098px;}
._1e{width:15.525947px;}
._8{width:17.805617px;}
._1d{width:19.480367px;}
._44{width:20.501418px;}
._b{width:21.590739px;}
._43{width:25.421382px;}
._41{width:26.574968px;}
._4c{width:33.120000px;}
._15{width:36.661800px;}
._4b{width:55.080000px;}
._48{width:62.798423px;}
._46{width:77.400000px;}
._28{width:110.160716px;}
._27{width:111.557993px;}
._24{width:134.516356px;}
._47{width:143.835919px;}
._49{width:145.500919px;}
._34{width:155.747919px;}
._25{width:157.008624px;}
._23{width:158.405993px;}
._2a{width:159.894717px;}
._4a{width:162.945000px;}
._30{width:179.992050px;}
._2b{width:183.698987px;}
._36{width:188.403026px;}
._39{width:191.178123px;}
._32{width:192.185276px;}
._31{width:193.481530px;}
._33{width:202.902068px;}
._3b{width:211.826427px;}
._2c{width:217.432649px;}
._2d{width:234.184882px;}
._3e{width:235.249828px;}
._22{width:258.595162px;}
._21{width:277.316356px;}
._37{width:286.566717px;}
._20{width:301.097993px;}
._38{width:321.783140px;}
._26{width:340.675162px;}
._35{width:370.998068px;}
._2f{width:392.982068px;}
._29{width:999.305954px;}
._3d{width:1106.165954px;}
._3f{width:1120.469954px;}
._2e{width:1134.773954px;}
._3a{width:1149.125954px;}
._3c{width:1153.973954px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fsc{font-size:41.160000px;}
.fs1{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fsb{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fs4{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:61.800000px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fs5{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs9{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:90.000000px;}
.y9{bottom:91.500000px;}
.y7d{bottom:92.551203px;}
.y6e{bottom:92.551352px;}
.yc2{bottom:97.051197px;}
.y101{bottom:101.605797px;}
.y8{bottom:103.500000px;}
.yaa{bottom:105.000000px;}
.y7c{bottom:110.551197px;}
.y6d{bottom:110.551346px;}
.y100{bottom:115.105797px;}
.y7{bottom:115.500000px;}
.yc1{bottom:124.051197px;}
.y6{bottom:127.500000px;}
.y7b{bottom:128.551197px;}
.y6c{bottom:128.551346px;}
.yff{bottom:128.605797px;}
.y5{bottom:139.500000px;}
.yfe{bottom:142.105797px;}
.y7a{bottom:146.551197px;}
.y6b{bottom:146.551346px;}
.yc0{bottom:151.051197px;}
.y4{bottom:151.500000px;}
.yfd{bottom:155.605797px;}
.y3{bottom:163.500000px;}
.y79{bottom:164.551197px;}
.y6a{bottom:164.551346px;}
.yfc{bottom:169.105797px;}
.y2{bottom:175.500000px;}
.y78{bottom:182.551197px;}
.y69{bottom:182.551346px;}
.yfb{bottom:182.605797px;}
.ybf{bottom:187.051197px;}
.yfa{bottom:196.105797px;}
.yad{bottom:198.750893px;}
.y77{bottom:200.551208px;}
.y68{bottom:200.551346px;}
.yf9{bottom:209.605797px;}
.ybe{bottom:214.051208px;}
.y2f{bottom:217.924805px;}
.y1b{bottom:218.551208px;}
.y67{bottom:218.551346px;}
.yf8{bottom:223.105797px;}
.y2e{bottom:226.924805px;}
.ybd{bottom:227.551208px;}
.y1a{bottom:236.551208px;}
.y66{bottom:236.551346px;}
.y76{bottom:236.552559px;}
.yf7{bottom:236.605797px;}
.y2d{bottom:244.924805px;}
.yf6{bottom:250.105797px;}
.y2c{bottom:253.924805px;}
.y19{bottom:254.551208px;}
.y65{bottom:254.551346px;}
.y75{bottom:254.552559px;}
.yf5{bottom:263.605797px;}
.ybc{bottom:268.051208px;}
.y2b{bottom:271.924805px;}
.y18{bottom:272.551208px;}
.y64{bottom:272.551346px;}
.y74{bottom:272.552559px;}
.yf4{bottom:277.105797px;}
.ya9{bottom:279.922050px;}
.y2a{bottom:280.924805px;}
.y17{bottom:290.551208px;}
.y63{bottom:290.551346px;}
.y73{bottom:290.552559px;}
.yf3{bottom:290.605797px;}
.y29{bottom:294.424805px;}
.ybb{bottom:295.051208px;}
.ya8{bottom:296.300995px;}
.yf2{bottom:304.105797px;}
.y16{bottom:308.551208px;}
.y72{bottom:308.552696px;}
.y28{bottom:312.424805px;}
.ya7{bottom:313.804939px;}
.yf1{bottom:317.605797px;}
.y27{bottom:321.424805px;}
.yba{bottom:322.051208px;}
.y15{bottom:326.551208px;}
.y71{bottom:326.552696px;}
.yf0{bottom:331.105797px;}
.ya6{bottom:331.308907px;}
.yb9{bottom:335.551208px;}
.y26{bottom:339.424805px;}
.y14{bottom:344.551208px;}
.yef{bottom:344.605797px;}
.y25{bottom:348.424805px;}
.ya5{bottom:348.812850px;}
.yb8{bottom:349.051208px;}
.yee{bottom:358.105797px;}
.y24{bottom:361.924805px;}
.y13{bottom:362.551208px;}
.ya4{bottom:366.316795px;}
.yed{bottom:371.605797px;}
.yb7{bottom:376.051208px;}
.y23{bottom:379.924805px;}
.y12{bottom:380.551208px;}
.ya3{bottom:383.820740px;}
.yec{bottom:385.105820px;}
.y22{bottom:388.924805px;}
.yb6{bottom:389.551208px;}
.y11{bottom:398.551208px;}
.yeb{bottom:398.605820px;}
.ya2{bottom:401.324570px;}
.y21{bottom:406.924805px;}
.yea{bottom:412.105820px;}
.y20{bottom:415.924805px;}
.y10{bottom:416.551208px;}
.ya1{bottom:418.828491px;}
.ye9{bottom:425.605820px;}
.y1f{bottom:429.424805px;}
.yb5{bottom:430.051208px;}
.yf{bottom:434.551208px;}
.ya0{bottom:436.332458px;}
.ye8{bottom:439.105820px;}
.y1e{bottom:442.924805px;}
.yb4{bottom:443.551208px;}
.ye{bottom:452.551208px;}
.ye7{bottom:452.605820px;}
.y9f{bottom:453.836380px;}
.ye6{bottom:466.105820px;}
.y1d{bottom:468.799805px;}
.yd{bottom:470.551208px;}
.y9e{bottom:471.340347px;}
.ye5{bottom:479.605820px;}
.yb3{bottom:484.051208px;}
.yc{bottom:488.551208px;}
.y9d{bottom:488.844315px;}
.ye4{bottom:493.105820px;}
.yb2{bottom:497.551208px;}
.y9c{bottom:506.348236px;}
.y62{bottom:506.551208px;}
.ye3{bottom:506.605820px;}
.yb1{bottom:511.051208px;}
.ye2{bottom:520.105820px;}
.y9b{bottom:523.852203px;}
.y61{bottom:524.551208px;}
.ye1{bottom:533.605820px;}
.yb0{bottom:538.051208px;}
.y9a{bottom:541.356171px;}
.y60{bottom:542.551208px;}
.ye0{bottom:547.105820px;}
.y3e{bottom:549.354172px;}
.yaf{bottom:551.551208px;}
.y99{bottom:558.860092px;}
.y5f{bottom:560.551208px;}
.ydf{bottom:560.605820px;}
.y3d{bottom:571.854172px;}
.yde{bottom:574.105820px;}
.y98{bottom:576.364059px;}
.y5e{bottom:578.551208px;}
.ydd{bottom:587.605820px;}
.y3c{bottom:589.854172px;}
.y97{bottom:593.867844px;}
.y5d{bottom:596.551208px;}
.ydc{bottom:601.105820px;}
.y3b{bottom:607.854172px;}
.y96{bottom:611.371811px;}
.y5c{bottom:614.551208px;}
.ydb{bottom:614.605820px;}
.y3a{bottom:625.854172px;}
.yda{bottom:628.105820px;}
.y95{bottom:628.875732px;}
.y5b{bottom:632.551208px;}
.yd9{bottom:641.605820px;}
.y39{bottom:643.854172px;}
.y94{bottom:646.379700px;}
.y5a{bottom:650.551208px;}
.yd8{bottom:655.105820px;}
.y38{bottom:661.854172px;}
.y93{bottom:663.883667px;}
.y118{bottom:664.613708px;}
.y59{bottom:668.551208px;}
.yd7{bottom:668.605820px;}
.y11a{bottom:677.551208px;}
.y117{bottom:678.113708px;}
.y37{bottom:679.854172px;}
.y92{bottom:681.387588px;}
.yd6{bottom:682.105820px;}
.y58{bottom:686.551208px;}
.y119{bottom:691.051208px;}
.y116{bottom:691.613708px;}
.yd5{bottom:695.605820px;}
.y36{bottom:697.854172px;}
.y91{bottom:698.891556px;}
.y57{bottom:704.551208px;}
.y115{bottom:705.113708px;}
.yd4{bottom:709.105820px;}
.y35{bottom:715.854172px;}
.y90{bottom:716.395477px;}
.y114{bottom:718.613708px;}
.y56{bottom:722.551208px;}
.yd3{bottom:722.605820px;}
.y113{bottom:732.113708px;}
.y34{bottom:733.854172px;}
.y8f{bottom:733.899445px;}
.yd2{bottom:736.105820px;}
.y55{bottom:740.551208px;}
.y112{bottom:745.613708px;}
.yd1{bottom:749.605820px;}
.y8e{bottom:751.403412px;}
.y33{bottom:751.854172px;}
.y54{bottom:758.551208px;}
.y111{bottom:759.113708px;}
.yd0{bottom:763.105820px;}
.y8d{bottom:768.907379px;}
.y32{bottom:769.854126px;}
.y110{bottom:772.613708px;}
.y53{bottom:776.551208px;}
.ycf{bottom:776.605774px;}
.y10f{bottom:786.113708px;}
.y8c{bottom:786.411255px;}
.y31{bottom:787.854126px;}
.yce{bottom:790.105774px;}
.y52{bottom:794.551208px;}
.y10e{bottom:799.613708px;}
.ycd{bottom:803.605774px;}
.y8b{bottom:803.915131px;}
.y30{bottom:805.854126px;}
.y51{bottom:812.551208px;}
.y10d{bottom:813.113708px;}
.ycc{bottom:817.105774px;}
.y8a{bottom:821.531525px;}
.y10c{bottom:826.613708px;}
.y50{bottom:830.551208px;}
.ycb{bottom:830.605774px;}
.y89{bottom:839.035675px;}
.y10b{bottom:840.113708px;}
.y4f{bottom:848.551208px;}
.y10a{bottom:853.613708px;}
.y88{bottom:856.539459px;}
.y42{bottom:864.316681px;}
.y4e{bottom:866.551208px;}
.y109{bottom:867.113708px;}
.y87{bottom:873.039459px;}
.y108{bottom:880.613708px;}
.y4d{bottom:884.551208px;}
.y41{bottom:885.316681px;}
.y107{bottom:894.113708px;}
.y4c{bottom:902.551208px;}
.y106{bottom:907.613708px;}
.y86{bottom:911.155243px;}
.yca{bottom:917.605774px;}
.y4b{bottom:920.551208px;}
.y105{bottom:921.113708px;}
.yac{bottom:926.279663px;}
.y85{bottom:927.534119px;}
.y104{bottom:934.613708px;}
.y40{bottom:936.316681px;}
.y4a{bottom:938.551208px;}
.y84{bottom:945.038086px;}
.yc9{bottom:948.113708px;}
.y49{bottom:956.551208px;}
.yc8{bottom:961.613708px;}
.y83{bottom:962.542053px;}
.y48{bottom:974.551208px;}
.y103{bottom:975.113708px;}
.y3f{bottom:975.316681px;}
.y82{bottom:980.046021px;}
.yc7{bottom:988.613708px;}
.y47{bottom:992.551208px;}
.y81{bottom:997.549988px;}
.yc6{bottom:1002.113708px;}
.y46{bottom:1010.551208px;}
.y80{bottom:1015.053864px;}
.y102{bottom:1015.613708px;}
.y70{bottom:1028.551208px;}
.y45{bottom:1028.551392px;}
.yc5{bottom:1029.113708px;}
.y7f{bottom:1032.670349px;}
.y1{bottom:1036.426208px;}
.yc4{bottom:1042.613708px;}
.y6f{bottom:1046.551208px;}
.y44{bottom:1046.551392px;}
.y7e{bottom:1050.174133px;}
.yae{bottom:1052.070740px;}
.yc3{bottom:1056.113708px;}
.yb{bottom:1114.051208px;}
.y1c{bottom:1125.484314px;}
.ya{bottom:1129.051208px;}
.y43{bottom:1129.426208px;}
.ha{height:27.814500px;}
.h4{height:37.086000px;}
.hb{height:39.735000px;}
.h17{height:39.984000px;}
.h3{height:40.824000px;}
.h19{height:42.384000px;}
.h1d{height:42.840000px;}
.h1c{height:43.740000px;}
.h6{height:45.696000px;}
.h5{height:45.744000px;}
.h15{height:46.656000px;}
.h1a{height:47.472000px;}
.h18{height:47.682000px;}
.h1b{height:47.988281px;}
.h16{height:51.859273px;}
.hc{height:52.980000px;}
.h14{height:53.406000px;}
.h10{height:53.654399px;}
.h8{height:55.860000px;}
.hd{height:58.320000px;}
.h11{height:59.388000px;}
.h12{height:60.564000px;}
.h7{height:61.120200px;}
.h13{height:62.621897px;}
.hf{height:67.194379px;}
.h9{height:71.000160px;}
.h2{height:78.896517px;}
.he{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x6{left:94.789352px;}
.x8{left:97.039500px;}
.xe{left:107.539352px;}
.xa{left:210.240143px;}
.x2{left:271.062904px;}
.xc{left:380.372841px;}
.x4{left:457.086594px;}
.x9{left:469.086594px;}
.xd{left:479.586594px;}
.xb{left:483.442520px;}
.x5{left:692.985168px;}
.x7{left:750.973480px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.333333pt;}
.v7{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v6{vertical-align:17.066732pt;}
.v5{vertical-align:20.906576pt;}
.v4{vertical-align:23.466471pt;}
.lsa{letter-spacing:-3.554133pt;}
.lse{letter-spacing:-3.242667pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000002pt;}
.ls6{letter-spacing:0.000008pt;}
.lsc{letter-spacing:0.000012pt;}
.ls11{letter-spacing:0.000014pt;}
.ls12{letter-spacing:0.000016pt;}
.ls7{letter-spacing:0.000018pt;}
.ls10{letter-spacing:0.000019pt;}
.ls9{letter-spacing:0.000030pt;}
.ls2{letter-spacing:0.000047pt;}
.ls1{letter-spacing:0.000089pt;}
.ls8{letter-spacing:0.000099pt;}
.ls0{letter-spacing:8.320000pt;}
.lsd{letter-spacing:227.083155pt;}
.lsb{letter-spacing:416.315699pt;}
.ws26{word-spacing:-13.066667pt;}
.ws4{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws9{word-spacing:-10.560000pt;}
.ws27{word-spacing:-10.156800pt;}
.ws7{word-spacing:-9.600000pt;}
.wsca{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.wsa{word-spacing:-8.993600pt;}
.wsb5{word-spacing:-8.832000pt;}
.ws6{word-spacing:-8.760000pt;}
.ws25{word-spacing:-8.597867pt;}
.ws103{word-spacing:-8.280000pt;}
.ws8{word-spacing:-8.176000pt;}
.ws1{word-spacing:-7.242667pt;}
.wsfd{word-spacing:-6.540800pt;}
.wsb6{word-spacing:-6.182400pt;}
.ws5{word-spacing:-6.132000pt;}
.ws64{word-spacing:-5.749333pt;}
.ws23{word-spacing:-5.013333pt;}
.wsc7{word-spacing:-4.010667pt;}
.wsc9{word-spacing:-3.498667pt;}
.ws13{word-spacing:-2.762667pt;}
.ws24{word-spacing:-2.464000pt;}
.ws91{word-spacing:-2.195200pt;}
.ws72{word-spacing:-1.515733pt;}
.ws12{word-spacing:-1.194667pt;}
.ws9e{word-spacing:-1.149867pt;}
.wsa6{word-spacing:-0.784000pt;}
.wsc8{word-spacing:-0.682667pt;}
.ws7e{word-spacing:-0.574933pt;}
.ws101{word-spacing:-0.418133pt;}
.ws15{word-spacing:-0.313600pt;}
.ws9f{word-spacing:-0.209067pt;}
.wsce{word-spacing:-0.170667pt;}
.wscd{word-spacing:-0.128000pt;}
.ws102{word-spacing:-0.104533pt;}
.ws1c{word-spacing:-0.052267pt;}
.ws111{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.052267pt;}
.ws8b{word-spacing:0.104533pt;}
.ws10{word-spacing:0.186667pt;}
.wsde{word-spacing:0.261333pt;}
.ws2f{word-spacing:0.365867pt;}
.ws54{word-spacing:0.470400pt;}
.wsf0{word-spacing:0.522667pt;}
.wsc3{word-spacing:0.574933pt;}
.wse9{word-spacing:0.627200pt;}
.ws30{word-spacing:0.784000pt;}
.ws2a{word-spacing:0.836267pt;}
.ws104{word-spacing:0.888533pt;}
.ws11{word-spacing:0.933333pt;}
.ws59{word-spacing:0.993067pt;}
.ws8a{word-spacing:1.045333pt;}
.ws21{word-spacing:1.097600pt;}
.wse{word-spacing:1.157333pt;}
.ws97{word-spacing:1.254400pt;}
.wsf{word-spacing:1.306667pt;}
.wsc6{word-spacing:1.358933pt;}
.ws10f{word-spacing:1.411200pt;}
.wsa5{word-spacing:1.463467pt;}
.ws4d{word-spacing:1.515733pt;}
.wsd{word-spacing:1.530667pt;}
.ws10b{word-spacing:1.568000pt;}
.wsc{word-spacing:1.605333pt;}
.ws1b{word-spacing:1.620267pt;}
.ws80{word-spacing:1.724800pt;}
.wsfb{word-spacing:1.829333pt;}
.wsdd{word-spacing:1.881600pt;}
.ws42{word-spacing:1.986133pt;}
.ws3e{word-spacing:2.090667pt;}
.wsf5{word-spacing:2.142933pt;}
.ws73{word-spacing:2.195200pt;}
.ws5f{word-spacing:2.247467pt;}
.ws29{word-spacing:2.346667pt;}
.ws32{word-spacing:2.352000pt;}
.wsa2{word-spacing:2.404267pt;}
.wsa9{word-spacing:2.456533pt;}
.wsd5{word-spacing:2.508800pt;}
.ws1a{word-spacing:2.561067pt;}
.wsef{word-spacing:2.613333pt;}
.ws6b{word-spacing:2.665600pt;}
.ws19{word-spacing:2.717867pt;}
.ws28{word-spacing:2.730667pt;}
.ws109{word-spacing:2.770133pt;}
.wsaa{word-spacing:2.874667pt;}
.ws58{word-spacing:2.926933pt;}
.ws100{word-spacing:2.979200pt;}
.ws5b{word-spacing:3.031467pt;}
.ws85{word-spacing:3.083733pt;}
.ws7f{word-spacing:3.240533pt;}
.wsfa{word-spacing:3.397333pt;}
.ws4e{word-spacing:3.449600pt;}
.ws17{word-spacing:3.501867pt;}
.ws22{word-spacing:3.520000pt;}
.wsad{word-spacing:3.554133pt;}
.wsd7{word-spacing:3.606400pt;}
.wsdf{word-spacing:3.658667pt;}
.ws105{word-spacing:3.763200pt;}
.ws74{word-spacing:3.867733pt;}
.wse0{word-spacing:3.920000pt;}
.wsf7{word-spacing:3.972267pt;}
.ws36{word-spacing:4.024533pt;}
.wsd6{word-spacing:4.076800pt;}
.ws6e{word-spacing:4.181333pt;}
.ws1f{word-spacing:4.285867pt;}
.ws98{word-spacing:4.338133pt;}
.ws46{word-spacing:4.390400pt;}
.wsfc{word-spacing:4.494933pt;}
.ws78{word-spacing:4.547200pt;}
.ws7b{word-spacing:4.704000pt;}
.ws35{word-spacing:4.756267pt;}
.ws76{word-spacing:4.808533pt;}
.wsd3{word-spacing:4.860800pt;}
.ws68{word-spacing:5.069867pt;}
.ws56{word-spacing:5.122133pt;}
.ws37{word-spacing:5.174400pt;}
.ws2e{word-spacing:5.226667pt;}
.ws8c{word-spacing:5.278933pt;}
.ws4c{word-spacing:5.331200pt;}
.ws39{word-spacing:5.383467pt;}
.ws50{word-spacing:5.435733pt;}
.ws3a{word-spacing:5.488000pt;}
.ws1e{word-spacing:5.540267pt;}
.wse6{word-spacing:5.592533pt;}
.ws40{word-spacing:5.644800pt;}
.ws41{word-spacing:5.697067pt;}
.ws2d{word-spacing:5.749333pt;}
.ws79{word-spacing:5.853867pt;}
.ws61{word-spacing:5.906133pt;}
.ws88{word-spacing:5.958400pt;}
.ws75{word-spacing:6.010667pt;}
.ws1d{word-spacing:6.062933pt;}
.ws83{word-spacing:6.115200pt;}
.ws8e{word-spacing:6.167467pt;}
.ws18{word-spacing:6.219733pt;}
.wsac{word-spacing:6.272000pt;}
.ws5a{word-spacing:6.324267pt;}
.wsd9{word-spacing:6.376533pt;}
.ws52{word-spacing:6.428800pt;}
.wscf{word-spacing:6.481067pt;}
.ws89{word-spacing:6.637867pt;}
.wsa3{word-spacing:6.742400pt;}
.wsf9{word-spacing:6.794667pt;}
.wsae{word-spacing:6.846933pt;}
.wsed{word-spacing:6.899200pt;}
.ws77{word-spacing:7.003733pt;}
.ws87{word-spacing:7.056000pt;}
.ws6d{word-spacing:7.108267pt;}
.ws65{word-spacing:7.160533pt;}
.ws6c{word-spacing:7.212800pt;}
.ws10c{word-spacing:7.317333pt;}
.ws108{word-spacing:7.369600pt;}
.ws94{word-spacing:7.421867pt;}
.ws6f{word-spacing:7.474133pt;}
.ws31{word-spacing:7.526400pt;}
.ws107{word-spacing:7.630933pt;}
.wse7{word-spacing:7.683200pt;}
.ws70{word-spacing:7.735467pt;}
.wsf3{word-spacing:7.892267pt;}
.ws96{word-spacing:7.944533pt;}
.wsc4{word-spacing:8.101333pt;}
.ws5c{word-spacing:8.153600pt;}
.ws3d{word-spacing:8.205867pt;}
.wseb{word-spacing:8.258133pt;}
.ws47{word-spacing:8.310400pt;}
.wsd8{word-spacing:8.467200pt;}
.wsff{word-spacing:8.571733pt;}
.ws9a{word-spacing:8.624000pt;}
.ws7c{word-spacing:8.728533pt;}
.ws10a{word-spacing:8.780800pt;}
.ws55{word-spacing:8.833067pt;}
.wsf2{word-spacing:8.937600pt;}
.ws93{word-spacing:9.042133pt;}
.ws53{word-spacing:9.094400pt;}
.ws8d{word-spacing:9.146667pt;}
.wsec{word-spacing:9.355733pt;}
.ws38{word-spacing:9.408000pt;}
.ws48{word-spacing:9.460267pt;}
.ws2b{word-spacing:9.564800pt;}
.ws110{word-spacing:9.617067pt;}
.wsf8{word-spacing:9.669333pt;}
.wse1{word-spacing:9.721600pt;}
.wsf1{word-spacing:9.773867pt;}
.ws99{word-spacing:9.826133pt;}
.ws4f{word-spacing:9.878400pt;}
.wsf4{word-spacing:9.930667pt;}
.ws10e{word-spacing:9.982933pt;}
.ws7d{word-spacing:10.035200pt;}
.ws16{word-spacing:10.087467pt;}
.ws9c{word-spacing:10.139733pt;}
.ws3c{word-spacing:10.244267pt;}
.wsa4{word-spacing:10.348800pt;}
.ws69{word-spacing:10.453333pt;}
.wscb{word-spacing:10.505600pt;}
.ws3f{word-spacing:10.557867pt;}
.wsaf{word-spacing:10.662400pt;}
.ws33{word-spacing:10.714667pt;}
.wsdc{word-spacing:10.766933pt;}
.ws82{word-spacing:11.080533pt;}
.wse5{word-spacing:11.341867pt;}
.wsab{word-spacing:11.550933pt;}
.wsee{word-spacing:11.603200pt;}
.ws86{word-spacing:11.760000pt;}
.wsdb{word-spacing:11.812267pt;}
.wsa1{word-spacing:11.916800pt;}
.ws84{word-spacing:11.969067pt;}
.ws43{word-spacing:12.125867pt;}
.ws95{word-spacing:12.230400pt;}
.wsea{word-spacing:12.334933pt;}
.wsf6{word-spacing:12.439467pt;}
.ws3b{word-spacing:12.491733pt;}
.ws44{word-spacing:12.596267pt;}
.ws57{word-spacing:12.805333pt;}
.ws9d{word-spacing:12.909867pt;}
.ws67{word-spacing:13.014400pt;}
.ws49{word-spacing:13.118933pt;}
.ws92{word-spacing:13.171200pt;}
.ws62{word-spacing:13.223467pt;}
.ws9b{word-spacing:13.328000pt;}
.wsd1{word-spacing:13.380267pt;}
.ws63{word-spacing:13.432533pt;}
.wsb1{word-spacing:13.484800pt;}
.ws34{word-spacing:13.641600pt;}
.ws2c{word-spacing:13.798400pt;}
.ws5d{word-spacing:13.902933pt;}
.wsd4{word-spacing:13.955200pt;}
.ws4b{word-spacing:14.007467pt;}
.ws106{word-spacing:14.112000pt;}
.wsb0{word-spacing:14.373333pt;}
.ws10d{word-spacing:14.425600pt;}
.wsda{word-spacing:15.105067pt;}
.ws20{word-spacing:15.418667pt;}
.wse4{word-spacing:15.470933pt;}
.ws4a{word-spacing:15.836800pt;}
.wse8{word-spacing:15.889067pt;}
.wscc{word-spacing:16.098133pt;}
.ws45{word-spacing:16.150400pt;}
.ws71{word-spacing:16.464000pt;}
.wse3{word-spacing:16.620800pt;}
.wsa7{word-spacing:16.882133pt;}
.wsfe{word-spacing:16.934400pt;}
.wsd0{word-spacing:17.195733pt;}
.ws14{word-spacing:17.248000pt;}
.wsd2{word-spacing:17.352533pt;}
.wsa8{word-spacing:17.666133pt;}
.ws60{word-spacing:17.822933pt;}
.ws81{word-spacing:17.979733pt;}
.ws90{word-spacing:18.293333pt;}
.ws51{word-spacing:18.502400pt;}
.ws5e{word-spacing:18.816000pt;}
.ws66{word-spacing:19.861333pt;}
.ws8f{word-spacing:20.331733pt;}
.ws7a{word-spacing:20.593067pt;}
.wsc5{word-spacing:23.363200pt;}
.wse2{word-spacing:24.565333pt;}
.wsa0{word-spacing:26.551467pt;}
.wsb2{word-spacing:31.934933pt;}
.wsb7{word-spacing:91.235178pt;}
.wsb9{word-spacing:129.880565pt;}
.wsb8{word-spacing:146.255400pt;}
.wsba{word-spacing:150.649475pt;}
.wsbe{word-spacing:150.650008pt;}
.wsc1{word-spacing:150.650540pt;}
.wsc0{word-spacing:150.650585pt;}
.wsbd{word-spacing:153.210038pt;}
.wsbb{word-spacing:158.124780pt;}
.wsbf{word-spacing:178.945581pt;}
.wsc2{word-spacing:199.766382pt;}
.wsb4{word-spacing:265.276842pt;}
.wsb3{word-spacing:284.902366pt;}
.wsbc{word-spacing:1005.658626pt;}
.ws0{word-spacing:1729.641551pt;}
._9{margin-left:-2569.717263pt;}
._18{margin-left:-38.200437pt;}
._14{margin-left:-32.354685pt;}
._11{margin-left:-24.327473pt;}
._42{margin-left:-23.104452pt;}
._17{margin-left:-22.115201pt;}
._a{margin-left:-18.965348pt;}
._1c{margin-left:-17.686917pt;}
._1a{margin-left:-16.540029pt;}
._16{margin-left:-15.331366pt;}
._c{margin-left:-12.765816pt;}
._40{margin-left:-11.149386pt;}
._19{margin-left:-9.425041pt;}
._5{margin-left:-8.534395pt;}
._1f{margin-left:-7.553654pt;}
._1b{margin-left:-6.265519pt;}
._e{margin-left:-5.234192pt;}
._7{margin-left:-3.698154pt;}
._2{margin-left:-2.624513pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.019180pt;}
._3{width:2.016660pt;}
._12{width:3.036298pt;}
._6{width:3.994667pt;}
._13{width:5.134990pt;}
._f{width:6.590897pt;}
._4{width:8.340793pt;}
._10{width:10.955113pt;}
._45{width:11.934909pt;}
._d{width:12.904087pt;}
._1e{width:13.800842pt;}
._8{width:15.827215pt;}
._1d{width:17.315882pt;}
._44{width:18.223482pt;}
._b{width:19.191768pt;}
._43{width:22.596784pt;}
._41{width:23.622194pt;}
._4c{width:29.440000pt;}
._15{width:32.588267pt;}
._4b{width:48.960000pt;}
._48{width:55.820820pt;}
._46{width:68.800000pt;}
._28{width:97.920636pt;}
._27{width:99.162661pt;}
._24{width:119.570094pt;}
._47{width:127.854150pt;}
._49{width:129.334150pt;}
._34{width:138.442595pt;}
._25{width:139.563221pt;}
._23{width:140.805327pt;}
._2a{width:142.128637pt;}
._4a{width:144.840000pt;}
._30{width:159.992934pt;}
._2b{width:163.287988pt;}
._36{width:167.469357pt;}
._39{width:169.936109pt;}
._32{width:170.831357pt;}
._31{width:171.983582pt;}
._33{width:180.357394pt;}
._3b{width:188.290158pt;}
._2c{width:193.273466pt;}
._2d{width:208.164340pt;}
._3e{width:209.110959pt;}
._22{width:229.862366pt;}
._21{width:246.503428pt;}
._37{width:254.725971pt;}
._20{width:267.642661pt;}
._38{width:286.029458pt;}
._26{width:302.822366pt;}
._35{width:329.776061pt;}
._2f{width:349.317394pt;}
._29{width:888.271959pt;}
._3d{width:983.258626pt;}
._3f{width:995.973292pt;}
._2e{width:1008.687959pt;}
._3a{width:1021.445292pt;}
._3c{width:1025.754626pt;}
.fs6{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fsc{font-size:36.586667pt;}
.fs1{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fsb{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fs4{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:54.933333pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fs5{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs9{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:80.000000pt;}
.y9{bottom:81.333333pt;}
.y7d{bottom:82.267736pt;}
.y6e{bottom:82.267868pt;}
.yc2{bottom:86.267731pt;}
.y101{bottom:90.316264pt;}
.y8{bottom:92.000000pt;}
.yaa{bottom:93.333333pt;}
.y7c{bottom:98.267731pt;}
.y6d{bottom:98.267863pt;}
.y100{bottom:102.316264pt;}
.y7{bottom:102.666667pt;}
.yc1{bottom:110.267731pt;}
.y6{bottom:113.333333pt;}
.y7b{bottom:114.267731pt;}
.y6c{bottom:114.267863pt;}
.yff{bottom:114.316264pt;}
.y5{bottom:124.000000pt;}
.yfe{bottom:126.316264pt;}
.y7a{bottom:130.267731pt;}
.y6b{bottom:130.267863pt;}
.yc0{bottom:134.267731pt;}
.y4{bottom:134.666667pt;}
.yfd{bottom:138.316264pt;}
.y3{bottom:145.333333pt;}
.y79{bottom:146.267731pt;}
.y6a{bottom:146.267863pt;}
.yfc{bottom:150.316264pt;}
.y2{bottom:156.000000pt;}
.y78{bottom:162.267731pt;}
.y69{bottom:162.267863pt;}
.yfb{bottom:162.316264pt;}
.ybf{bottom:166.267731pt;}
.yfa{bottom:174.316264pt;}
.yad{bottom:176.667460pt;}
.y77{bottom:178.267741pt;}
.y68{bottom:178.267863pt;}
.yf9{bottom:186.316264pt;}
.ybe{bottom:190.267741pt;}
.y2f{bottom:193.710937pt;}
.y1b{bottom:194.267741pt;}
.y67{bottom:194.267863pt;}
.yf8{bottom:198.316264pt;}
.y2e{bottom:201.710937pt;}
.ybd{bottom:202.267741pt;}
.y1a{bottom:210.267741pt;}
.y66{bottom:210.267863pt;}
.y76{bottom:210.268941pt;}
.yf7{bottom:210.316264pt;}
.y2d{bottom:217.710937pt;}
.yf6{bottom:222.316264pt;}
.y2c{bottom:225.710937pt;}
.y19{bottom:226.267741pt;}
.y65{bottom:226.267863pt;}
.y75{bottom:226.268941pt;}
.yf5{bottom:234.316264pt;}
.ybc{bottom:238.267741pt;}
.y2b{bottom:241.710937pt;}
.y18{bottom:242.267741pt;}
.y64{bottom:242.267863pt;}
.y74{bottom:242.268941pt;}
.yf4{bottom:246.316264pt;}
.ya9{bottom:248.819600pt;}
.y2a{bottom:249.710937pt;}
.y17{bottom:258.267741pt;}
.y63{bottom:258.267863pt;}
.y73{bottom:258.268941pt;}
.yf3{bottom:258.316264pt;}
.y29{bottom:261.710937pt;}
.ybb{bottom:262.267741pt;}
.ya8{bottom:263.378662pt;}
.yf2{bottom:270.316264pt;}
.y16{bottom:274.267741pt;}
.y72{bottom:274.269063pt;}
.y28{bottom:277.710937pt;}
.ya7{bottom:278.937724pt;}
.yf1{bottom:282.316264pt;}
.y27{bottom:285.710937pt;}
.yba{bottom:286.267741pt;}
.y15{bottom:290.267741pt;}
.y71{bottom:290.269063pt;}
.yf0{bottom:294.316264pt;}
.ya6{bottom:294.496806pt;}
.yb9{bottom:298.267741pt;}
.y26{bottom:301.710937pt;}
.y14{bottom:306.267741pt;}
.yef{bottom:306.316264pt;}
.y25{bottom:309.710937pt;}
.ya5{bottom:310.055867pt;}
.yb8{bottom:310.267741pt;}
.yee{bottom:318.316264pt;}
.y24{bottom:321.710937pt;}
.y13{bottom:322.267741pt;}
.ya4{bottom:325.614929pt;}
.yed{bottom:330.316264pt;}
.yb7{bottom:334.267741pt;}
.y23{bottom:337.710937pt;}
.y12{bottom:338.267741pt;}
.ya3{bottom:341.173991pt;}
.yec{bottom:342.316284pt;}
.y22{bottom:345.710938pt;}
.yb6{bottom:346.267741pt;}
.y11{bottom:354.267741pt;}
.yeb{bottom:354.316284pt;}
.ya2{bottom:356.732951pt;}
.y21{bottom:361.710938pt;}
.yea{bottom:366.316284pt;}
.y20{bottom:369.710938pt;}
.y10{bottom:370.267741pt;}
.ya1{bottom:372.291992pt;}
.ye9{bottom:378.316284pt;}
.y1f{bottom:381.710938pt;}
.yb5{bottom:382.267741pt;}
.yf{bottom:386.267741pt;}
.ya0{bottom:387.851074pt;}
.ye8{bottom:390.316284pt;}
.y1e{bottom:393.710938pt;}
.yb4{bottom:394.267741pt;}
.ye{bottom:402.267741pt;}
.ye7{bottom:402.316284pt;}
.y9f{bottom:403.410116pt;}
.ye6{bottom:414.316284pt;}
.y1d{bottom:416.710938pt;}
.yd{bottom:418.267741pt;}
.y9e{bottom:418.969198pt;}
.ye5{bottom:426.316284pt;}
.yb3{bottom:430.267741pt;}
.yc{bottom:434.267741pt;}
.y9d{bottom:434.528280pt;}
.ye4{bottom:438.316284pt;}
.yb2{bottom:442.267741pt;}
.y9c{bottom:450.087321pt;}
.y62{bottom:450.267741pt;}
.ye3{bottom:450.316284pt;}
.yb1{bottom:454.267741pt;}
.ye2{bottom:462.316284pt;}
.y9b{bottom:465.646403pt;}
.y61{bottom:466.267741pt;}
.ye1{bottom:474.316284pt;}
.yb0{bottom:478.267741pt;}
.y9a{bottom:481.205485pt;}
.y60{bottom:482.267741pt;}
.ye0{bottom:486.316284pt;}
.y3e{bottom:488.314819pt;}
.yaf{bottom:490.267741pt;}
.y99{bottom:496.764526pt;}
.y5f{bottom:498.267741pt;}
.ydf{bottom:498.316284pt;}
.y3d{bottom:508.314819pt;}
.yde{bottom:510.316284pt;}
.y98{bottom:512.323608pt;}
.y5e{bottom:514.267741pt;}
.ydd{bottom:522.316284pt;}
.y3c{bottom:524.314819pt;}
.y97{bottom:527.882528pt;}
.y5d{bottom:530.267741pt;}
.ydc{bottom:534.316284pt;}
.y3b{bottom:540.314819pt;}
.y96{bottom:543.441610pt;}
.y5c{bottom:546.267741pt;}
.ydb{bottom:546.316284pt;}
.y3a{bottom:556.314819pt;}
.yda{bottom:558.316284pt;}
.y95{bottom:559.000651pt;}
.y5b{bottom:562.267741pt;}
.yd9{bottom:570.316284pt;}
.y39{bottom:572.314819pt;}
.y94{bottom:574.559733pt;}
.y5a{bottom:578.267741pt;}
.yd8{bottom:582.316284pt;}
.y38{bottom:588.314819pt;}
.y93{bottom:590.118815pt;}
.y118{bottom:590.767741pt;}
.y59{bottom:594.267741pt;}
.yd7{bottom:594.316284pt;}
.y11a{bottom:602.267741pt;}
.y117{bottom:602.767741pt;}
.y37{bottom:604.314819pt;}
.y92{bottom:605.677856pt;}
.yd6{bottom:606.316284pt;}
.y58{bottom:610.267741pt;}
.y119{bottom:614.267741pt;}
.y116{bottom:614.767741pt;}
.yd5{bottom:618.316284pt;}
.y36{bottom:620.314819pt;}
.y91{bottom:621.236938pt;}
.y57{bottom:626.267741pt;}
.y115{bottom:626.767741pt;}
.yd4{bottom:630.316284pt;}
.y35{bottom:636.314819pt;}
.y90{bottom:636.795980pt;}
.y114{bottom:638.767741pt;}
.y56{bottom:642.267741pt;}
.yd3{bottom:642.316284pt;}
.y113{bottom:650.767741pt;}
.y34{bottom:652.314819pt;}
.y8f{bottom:652.355062pt;}
.yd2{bottom:654.316284pt;}
.y55{bottom:658.267741pt;}
.y112{bottom:662.767741pt;}
.yd1{bottom:666.316284pt;}
.y8e{bottom:667.914144pt;}
.y33{bottom:668.314819pt;}
.y54{bottom:674.267741pt;}
.y111{bottom:674.767741pt;}
.yd0{bottom:678.316284pt;}
.y8d{bottom:683.473226pt;}
.y32{bottom:684.314779pt;}
.y110{bottom:686.767741pt;}
.y53{bottom:690.267741pt;}
.ycf{bottom:690.316243pt;}
.y10f{bottom:698.767741pt;}
.y8c{bottom:699.032227pt;}
.y31{bottom:700.314779pt;}
.yce{bottom:702.316243pt;}
.y52{bottom:706.267741pt;}
.y10e{bottom:710.767741pt;}
.ycd{bottom:714.316243pt;}
.y8b{bottom:714.591227pt;}
.y30{bottom:716.314779pt;}
.y51{bottom:722.267741pt;}
.y10d{bottom:722.767741pt;}
.ycc{bottom:726.316243pt;}
.y8a{bottom:730.250244pt;}
.y10c{bottom:734.767741pt;}
.y50{bottom:738.267741pt;}
.ycb{bottom:738.316243pt;}
.y89{bottom:745.809489pt;}
.y10b{bottom:746.767741pt;}
.y4f{bottom:754.267741pt;}
.y10a{bottom:758.767741pt;}
.y88{bottom:761.368408pt;}
.y42{bottom:768.281494pt;}
.y4e{bottom:770.267741pt;}
.y109{bottom:770.767741pt;}
.y87{bottom:776.035075pt;}
.y108{bottom:782.767741pt;}
.y4d{bottom:786.267741pt;}
.y41{bottom:786.948161pt;}
.y107{bottom:794.767741pt;}
.y4c{bottom:802.267741pt;}
.y106{bottom:806.767741pt;}
.y86{bottom:809.915771pt;}
.yca{bottom:815.649577pt;}
.y4b{bottom:818.267741pt;}
.y105{bottom:818.767741pt;}
.yac{bottom:823.359701pt;}
.y85{bottom:824.474772pt;}
.y104{bottom:830.767741pt;}
.y40{bottom:832.281494pt;}
.y4a{bottom:834.267741pt;}
.y84{bottom:840.033854pt;}
.yc9{bottom:842.767741pt;}
.y49{bottom:850.267741pt;}
.yc8{bottom:854.767741pt;}
.y83{bottom:855.592936pt;}
.y48{bottom:866.267741pt;}
.y103{bottom:866.767741pt;}
.y3f{bottom:866.948161pt;}
.y82{bottom:871.152018pt;}
.yc7{bottom:878.767741pt;}
.y47{bottom:882.267741pt;}
.y81{bottom:886.711100pt;}
.yc6{bottom:890.767741pt;}
.y46{bottom:898.267741pt;}
.y80{bottom:902.270101pt;}
.y102{bottom:902.767741pt;}
.y70{bottom:914.267741pt;}
.y45{bottom:914.267904pt;}
.yc5{bottom:914.767741pt;}
.y7f{bottom:917.929199pt;}
.y1{bottom:921.267741pt;}
.yc4{bottom:926.767741pt;}
.y6f{bottom:930.267741pt;}
.y44{bottom:930.267904pt;}
.y7e{bottom:933.488118pt;}
.yae{bottom:935.173991pt;}
.yc3{bottom:938.767741pt;}
.yb{bottom:990.267741pt;}
.y1c{bottom:1000.430501pt;}
.ya{bottom:1003.601074pt;}
.y43{bottom:1003.934408pt;}
.ha{height:24.724000pt;}
.h4{height:32.965333pt;}
.hb{height:35.320000pt;}
.h17{height:35.541333pt;}
.h3{height:36.288000pt;}
.h19{height:37.674667pt;}
.h1d{height:38.080000pt;}
.h1c{height:38.880000pt;}
.h6{height:40.618667pt;}
.h5{height:40.661333pt;}
.h15{height:41.472000pt;}
.h1a{height:42.197333pt;}
.h18{height:42.384000pt;}
.h1b{height:42.656250pt;}
.h16{height:46.097132pt;}
.hc{height:47.093333pt;}
.h14{height:47.472000pt;}
.h10{height:47.692799pt;}
.h8{height:49.653333pt;}
.hd{height:51.840000pt;}
.h11{height:52.789333pt;}
.h12{height:53.834667pt;}
.h7{height:54.329067pt;}
.h13{height:55.663909pt;}
.hf{height:59.728337pt;}
.h9{height:63.111253pt;}
.h2{height:70.130237pt;}
.he{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x6{left:84.257202pt;}
.x8{left:86.257333pt;}
.xe{left:95.590535pt;}
.xa{left:186.880127pt;}
.x2{left:240.944804pt;}
.xc{left:338.109192pt;}
.x4{left:406.299194pt;}
.x9{left:416.965861pt;}
.xd{left:426.299194pt;}
.xb{left:429.726685pt;}
.x5{left:615.986816pt;}
.x7{left:667.531982pt;}
}




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