
    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_5cf5bea89ba539e1947c1f52.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_dbc481f7c7ef09153179bdff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1b7dbcb5dc9200259e1f43d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_e124079fa27241e2b6e8389d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_d9118b62b337ad08cf006ef2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978000;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_f3440c96ee34cce0092a26b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.823730;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_9f3cf8d98d426373e87905ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-19.547400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.000000px;}
.v3{vertical-align:27.720000px;}
.ls1b{letter-spacing:-1.344000px;}
.ls10{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.678000px;}
.ls18{letter-spacing:-0.672000px;}
.ls11{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.537600px;}
.lsd{letter-spacing:-0.016800px;}
.ls2{letter-spacing:-0.014400px;}
.ls4{letter-spacing:-0.013200px;}
.ls22{letter-spacing:-0.012000px;}
.lsb{letter-spacing:-0.009600px;}
.ls6{letter-spacing:-0.009000px;}
.ls7{letter-spacing:-0.008400px;}
.lsa{letter-spacing:-0.007200px;}
.lsf{letter-spacing:-0.006600px;}
.lse{letter-spacing:-0.006000px;}
.ls8{letter-spacing:-0.004800px;}
.ls3{letter-spacing:-0.004200px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.156000px;}
.lsc{letter-spacing:0.172800px;}
.ls19{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.564000px;}
.ls16{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.768000px;}
.ls13{letter-spacing:0.834000px;}
.ls1d{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.864000px;}
.ls15{letter-spacing:1.026000px;}
.ls17{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.320000px;}
.ls12{letter-spacing:1.326000px;}
.ls0{letter-spacing:13.944000px;}
.ls1{letter-spacing:27.669600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-14.688000px;}
.ws3{word-spacing:-14.683200px;}
.ws8b{word-spacing:-2.496000px;}
.wsc4{word-spacing:-2.394000px;}
.wsd2{word-spacing:-2.250000px;}
.ws29{word-spacing:-2.232000px;}
.ws82{word-spacing:-2.226000px;}
.ws9c{word-spacing:-1.974000px;}
.ws16{word-spacing:-1.944000px;}
.ws7a{word-spacing:-1.830000px;}
.wsa{word-spacing:-1.795200px;}
.wsed{word-spacing:-1.500000px;}
.ws37{word-spacing:-1.482000px;}
.wse6{word-spacing:-1.458000px;}
.wsad{word-spacing:-1.452000px;}
.wse{word-spacing:-1.444800px;}
.ws49{word-spacing:-1.302000px;}
.ws60{word-spacing:-1.260000px;}
.wsd{word-spacing:-1.036800px;}
.ws9e{word-spacing:-0.810000px;}
.wsc0{word-spacing:-0.786000px;}
.wsb7{word-spacing:-0.738000px;}
.ws72{word-spacing:-0.690000px;}
.wsda{word-spacing:-0.642000px;}
.ws1f{word-spacing:-0.432000px;}
.wsa4{word-spacing:-0.402000px;}
.ws80{word-spacing:-0.396000px;}
.ws20{word-spacing:-0.390000px;}
.ws10{word-spacing:-0.384000px;}
.wsa2{word-spacing:-0.240000px;}
.ws2f{word-spacing:-0.228000px;}
.wse4{word-spacing:-0.198000px;}
.wsde{word-spacing:-0.180000px;}
.ws2{word-spacing:-0.024000px;}
.ws13{word-spacing:-0.019200px;}
.ws7{word-spacing:0.000000px;}
.wsc3{word-spacing:0.048000px;}
.ws61{word-spacing:0.216000px;}
.ws11{word-spacing:0.288000px;}
.ws85{word-spacing:0.300000px;}
.ws1b{word-spacing:0.324000px;}
.wsa9{word-spacing:0.360000px;}
.ws7d{word-spacing:0.420000px;}
.wsb{word-spacing:0.436800px;}
.wsd9{word-spacing:0.480000px;}
.ws73{word-spacing:0.678000px;}
.ws5b{word-spacing:0.822000px;}
.ws64{word-spacing:0.870000px;}
.ws5a{word-spacing:0.906000px;}
.ws3c{word-spacing:1.008000px;}
.ws40{word-spacing:1.026000px;}
.ws5{word-spacing:1.163400px;}
.ws1d{word-spacing:1.167600px;}
.wsc{word-spacing:1.329600px;}
.wsd8{word-spacing:1.374000px;}
.ws8f{word-spacing:1.434000px;}
.ws44{word-spacing:1.488000px;}
.wsd4{word-spacing:1.518000px;}
.wsbd{word-spacing:1.530000px;}
.wsee{word-spacing:1.572000px;}
.wsa6{word-spacing:1.602000px;}
.ws23{word-spacing:1.662000px;}
.ws17{word-spacing:1.668000px;}
.wsb4{word-spacing:1.680000px;}
.ws92{word-spacing:1.728000px;}
.wse5{word-spacing:1.734000px;}
.ws45{word-spacing:1.828200px;}
.wsf0{word-spacing:1.830000px;}
.ws1c{word-spacing:1.834800px;}
.wsef{word-spacing:1.836000px;}
.ws8d{word-spacing:1.866000px;}
.wsb9{word-spacing:1.872000px;}
.ws6d{word-spacing:1.920000px;}
.ws93{word-spacing:1.994400px;}
.ws5c{word-spacing:2.001600px;}
.ws57{word-spacing:2.040000px;}
.ws94{word-spacing:2.070000px;}
.ws42{word-spacing:2.106000px;}
.wsc2{word-spacing:2.208000px;}
.ws83{word-spacing:2.232000px;}
.ws2a{word-spacing:2.286000px;}
.ws14{word-spacing:2.326800px;}
.ws9{word-spacing:2.335200px;}
.ws8{word-spacing:2.502000px;}
.ws38{word-spacing:2.688000px;}
.ws39{word-spacing:2.802000px;}
.ws7c{word-spacing:2.922000px;}
.ws27{word-spacing:2.934000px;}
.ws67{word-spacing:3.174000px;}
.ws76{word-spacing:3.180000px;}
.ws89{word-spacing:3.318000px;}
.wsdc{word-spacing:3.378000px;}
.ws3f{word-spacing:3.576000px;}
.ws59{word-spacing:3.606000px;}
.ws6{word-spacing:3.669600px;}
.ws31{word-spacing:3.786000px;}
.ws71{word-spacing:3.792000px;}
.ws87{word-spacing:3.822000px;}
.ws95{word-spacing:3.852000px;}
.ws68{word-spacing:3.924000px;}
.ws79{word-spacing:4.038000px;}
.ws56{word-spacing:4.056000px;}
.wsf{word-spacing:4.272000px;}
.ws3e{word-spacing:4.398000px;}
.ws4f{word-spacing:4.500000px;}
.ws5d{word-spacing:4.518000px;}
.ws7f{word-spacing:4.992000px;}
.ws22{word-spacing:5.058000px;}
.ws21{word-spacing:5.154000px;}
.wsae{word-spacing:5.172000px;}
.ws15{word-spacing:5.274000px;}
.ws78{word-spacing:5.280000px;}
.wse0{word-spacing:5.286000px;}
.wsdb{word-spacing:5.292000px;}
.ws2b{word-spacing:5.298000px;}
.wsb5{word-spacing:5.910000px;}
.wsd6{word-spacing:5.922000px;}
.ws4a{word-spacing:6.048000px;}
.wsbf{word-spacing:6.156000px;}
.wsb1{word-spacing:6.720000px;}
.wsa0{word-spacing:6.798000px;}
.wsdd{word-spacing:7.236000px;}
.wsa5{word-spacing:7.428000px;}
.wsec{word-spacing:7.746000px;}
.ws2d{word-spacing:7.776000px;}
.wseb{word-spacing:7.932000px;}
.wsbe{word-spacing:7.992000px;}
.ws41{word-spacing:8.070000px;}
.ws70{word-spacing:8.118000px;}
.ws43{word-spacing:8.154000px;}
.ws75{word-spacing:8.358000px;}
.wse2{word-spacing:8.484000px;}
.ws28{word-spacing:8.502000px;}
.ws81{word-spacing:8.532000px;}
.wsac{word-spacing:8.556000px;}
.ws18{word-spacing:8.682000px;}
.ws19{word-spacing:9.240000px;}
.ws9a{word-spacing:9.528000px;}
.wsc1{word-spacing:9.816000px;}
.wsb6{word-spacing:9.876000px;}
.wsb2{word-spacing:10.038000px;}
.wscf{word-spacing:10.230000px;}
.ws1{word-spacing:10.861500px;}
.ws74{word-spacing:11.082000px;}
.ws84{word-spacing:11.130000px;}
.ws96{word-spacing:11.328000px;}
.wse1{word-spacing:11.352000px;}
.ws1e{word-spacing:11.370000px;}
.ws26{word-spacing:11.472000px;}
.ws4d{word-spacing:11.700000px;}
.ws91{word-spacing:12.036000px;}
.ws48{word-spacing:12.042000px;}
.wsb3{word-spacing:12.588000px;}
.wsc5{word-spacing:12.600000px;}
.ws6e{word-spacing:12.732000px;}
.wsce{word-spacing:12.738000px;}
.ws6b{word-spacing:12.744000px;}
.ws77{word-spacing:12.906000px;}
.ws1a{word-spacing:13.374000px;}
.ws7b{word-spacing:13.386000px;}
.ws24{word-spacing:13.890000px;}
.wsb0{word-spacing:13.992000px;}
.wse3{word-spacing:14.238000px;}
.ws9d{word-spacing:14.298000px;}
.ws25{word-spacing:15.318000px;}
.wse9{word-spacing:15.408000px;}
.ws62{word-spacing:15.990000px;}
.ws34{word-spacing:16.128000px;}
.wse8{word-spacing:16.458000px;}
.ws66{word-spacing:16.488000px;}
.wsea{word-spacing:16.722000px;}
.ws8a{word-spacing:17.346000px;}
.ws52{word-spacing:18.036000px;}
.ws63{word-spacing:18.366000px;}
.ws2c{word-spacing:18.450000px;}
.ws5f{word-spacing:18.654000px;}
.ws6a{word-spacing:18.834000px;}
.ws3b{word-spacing:19.164000px;}
.ws55{word-spacing:19.212000px;}
.wsba{word-spacing:19.428000px;}
.ws86{word-spacing:19.590000px;}
.ws5e{word-spacing:19.818000px;}
.ws12{word-spacing:19.824000px;}
.ws97{word-spacing:20.010000px;}
.ws46{word-spacing:20.022000px;}
.wscc{word-spacing:20.220000px;}
.wsd7{word-spacing:20.724000px;}
.ws33{word-spacing:21.024000px;}
.wscd{word-spacing:21.078000px;}
.ws8e{word-spacing:21.114000px;}
.wsca{word-spacing:21.450000px;}
.ws99{word-spacing:22.062000px;}
.wsaf{word-spacing:22.956000px;}
.wsa3{word-spacing:23.328000px;}
.wsc8{word-spacing:23.676000px;}
.ws65{word-spacing:23.796000px;}
.wsb8{word-spacing:23.832000px;}
.ws51{word-spacing:23.970000px;}
.wsc7{word-spacing:24.132000px;}
.wsa7{word-spacing:24.156000px;}
.ws4c{word-spacing:24.162000px;}
.wsbc{word-spacing:24.216000px;}
.ws50{word-spacing:24.228000px;}
.ws58{word-spacing:24.348000px;}
.ws98{word-spacing:24.408000px;}
.wsd3{word-spacing:24.432000px;}
.ws7e{word-spacing:24.492000px;}
.wsc6{word-spacing:24.504000px;}
.ws6c{word-spacing:24.576000px;}
.ws2e{word-spacing:24.630000px;}
.wsdf{word-spacing:24.840000px;}
.ws6f{word-spacing:26.934000px;}
.ws53{word-spacing:27.618000px;}
.ws35{word-spacing:29.142000px;}
.ws88{word-spacing:30.096000px;}
.ws9f{word-spacing:30.390000px;}
.wsa8{word-spacing:31.104000px;}
.ws30{word-spacing:31.596000px;}
.ws8c{word-spacing:31.704000px;}
.wsd1{word-spacing:32.190000px;}
.ws36{word-spacing:34.836000px;}
.ws69{word-spacing:36.120000px;}
.wsab{word-spacing:38.982000px;}
.wsd0{word-spacing:39.396000px;}
.wsbb{word-spacing:39.456000px;}
.wsaa{word-spacing:39.570000px;}
.ws47{word-spacing:40.218000px;}
.wsa1{word-spacing:41.892000px;}
.wsd5{word-spacing:45.666000px;}
.wscb{word-spacing:45.894000px;}
.wse7{word-spacing:46.770000px;}
.ws90{word-spacing:47.232000px;}
.ws3d{word-spacing:47.838000px;}
.wsc9{word-spacing:48.324000px;}
.ws3a{word-spacing:50.886000px;}
.ws4b{word-spacing:55.866000px;}
.ws9b{word-spacing:59.814000px;}
.ws32{word-spacing:65.814000px;}
.ws54{word-spacing:67.896000px;}
.ws4e{word-spacing:90.708000px;}
.ws0{word-spacing:2925.395700px;}
._1{margin-left:-13.968000px;}
._6{margin-left:-6.768000px;}
._3{margin-left:-1.332000px;}
._0{width:16.161600px;}
._5{width:63.444000px;}
._4{width:96.804000px;}
._2{width:233.830800px;}
.fc2{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,120,138);}
.fs1{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs9{font-size:96.000000px;}
.fs3{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:54.286420px;}
.y1{bottom:59.173271px;}
.y34{bottom:59.173420px;}
.y105{bottom:94.203520px;}
.y17a{bottom:95.424671px;}
.y144{bottom:104.599571px;}
.y32{bottom:106.867570px;}
.ya2{bottom:107.252921px;}
.y104{bottom:112.203520px;}
.y63{bottom:113.102170px;}
.yd9{bottom:115.803371px;}
.y31{bottom:119.467570px;}
.y143{bottom:122.599571px;}
.ya1{bottom:125.252921px;}
.y62{bottom:131.102170px;}
.y179{bottom:131.424671px;}
.yd8{bottom:133.803371px;}
.y142{bottom:140.599571px;}
.ya0{bottom:143.252921px;}
.y16c{bottom:145.503821px;}
.y103{bottom:148.203520px;}
.y178{bottom:149.094671px;}
.y61{bottom:149.102170px;}
.yd7{bottom:151.803371px;}
.y141{bottom:158.599571px;}
.y9f{bottom:161.252921px;}
.y16b{bottom:163.503821px;}
.y24{bottom:165.061421px;}
.y102{bottom:166.203520px;}
.y60{bottom:167.102170px;}
.yd6{bottom:169.803371px;}
.y140{bottom:176.599571px;}
.y9e{bottom:179.252921px;}
.y16a{bottom:181.503821px;}
.y23{bottom:183.061420px;}
.y177{bottom:185.102171px;}
.yd5{bottom:187.803371px;}
.y13f{bottom:194.599571px;}
.y9d{bottom:197.252921px;}
.y22{bottom:201.061420px;}
.y101{bottom:202.203520px;}
.y5f{bottom:203.102170px;}
.y13e{bottom:212.599571px;}
.y169{bottom:217.503821px;}
.y100{bottom:220.203520px;}
.y5e{bottom:221.102170px;}
.y176{bottom:221.432171px;}
.yd4{bottom:223.803371px;}
.y13d{bottom:230.599571px;}
.y9c{bottom:233.252921px;}
.y168{bottom:235.503821px;}
.y21{bottom:237.061420px;}
.yff{bottom:238.203520px;}
.y5d{bottom:239.102170px;}
.yd3{bottom:241.803371px;}
.y13c{bottom:248.599571px;}
.y9b{bottom:251.252921px;}
.y20{bottom:255.061420px;}
.y5c{bottom:257.102170px;}
.yd2{bottom:259.803371px;}
.y13b{bottom:266.599570px;}
.y9a{bottom:269.252921px;}
.y167{bottom:271.503821px;}
.y5b{bottom:275.102170px;}
.y175{bottom:275.432171px;}
.yfe{bottom:276.903521px;}
.yd1{bottom:277.803371px;}
.y13a{bottom:284.599570px;}
.y99{bottom:287.252921px;}
.y166{bottom:289.503821px;}
.y1f{bottom:291.061420px;}
.y5a{bottom:293.102170px;}
.yd0{bottom:295.803371px;}
.y115{bottom:298.385470px;}
.y139{bottom:302.599570px;}
.y98{bottom:305.252920px;}
.y1e{bottom:309.061420px;}
.y59{bottom:311.102170px;}
.y174{bottom:311.432171px;}
.ycf{bottom:313.803371px;}
.y114{bottom:318.185471px;}
.y138{bottom:320.599570px;}
.y97{bottom:323.252920px;}
.y165{bottom:325.503821px;}
.y1d{bottom:327.061420px;}
.y58{bottom:329.102170px;}
.yce{bottom:331.803371px;}
.y30{bottom:331.877470px;}
.y113{bottom:337.985470px;}
.y14c{bottom:337.985620px;}
.y137{bottom:338.599570px;}
.y96{bottom:341.252920px;}
.y164{bottom:343.503821px;}
.y57{bottom:347.102170px;}
.y173{bottom:347.432171px;}
.ycd{bottom:349.803371px;}
.y2f{bottom:351.677471px;}
.y136{bottom:356.599570px;}
.y71{bottom:356.695571px;}
.y112{bottom:357.785470px;}
.y14b{bottom:357.785620px;}
.y95{bottom:359.252920px;}
.yfd{bottom:364.202771px;}
.y56{bottom:365.102170px;}
.ycc{bottom:367.803371px;}
.y1c{bottom:368.011420px;}
.y2e{bottom:371.477470px;}
.y135{bottom:374.599570px;}
.y70{bottom:376.495571px;}
.y94{bottom:377.252920px;}
.y111{bottom:377.585470px;}
.y14a{bottom:377.585620px;}
.y163{bottom:379.503821px;}
.yfc{bottom:382.202771px;}
.y55{bottom:383.102170px;}
.y172{bottom:383.432171px;}
.ycb{bottom:385.803371px;}
.y2d{bottom:391.277470px;}
.y134{bottom:392.599570px;}
.y93{bottom:395.252920px;}
.y6f{bottom:396.295571px;}
.y110{bottom:397.385470px;}
.y149{bottom:397.385620px;}
.y162{bottom:397.503821px;}
.yae{bottom:398.189321px;}
.yfb{bottom:400.202771px;}
.y54{bottom:401.102170px;}
.yca{bottom:403.803371px;}
.y133{bottom:410.599570px;}
.y2c{bottom:411.077470px;}
.y92{bottom:413.252920px;}
.y6e{bottom:416.095571px;}
.y10f{bottom:417.185470px;}
.y148{bottom:417.185620px;}
.yad{bottom:417.989321px;}
.yfa{bottom:418.202771px;}
.y53{bottom:419.102171px;}
.y171{bottom:419.432171px;}
.y14f{bottom:424.311670px;}
.y132{bottom:428.599570px;}
.y2b{bottom:430.877471px;}
.y91{bottom:431.252920px;}
.y161{bottom:433.503821px;}
.y1b{bottom:433.710670px;}
.y6d{bottom:435.895571px;}
.yf9{bottom:436.202771px;}
.y10e{bottom:436.985471px;}
.y147{bottom:436.985620px;}
.y170{bottom:437.102171px;}
.yac{bottom:437.789321px;}
.yc9{bottom:439.803371px;}
.y14e{bottom:442.311670px;}
.yb1{bottom:443.244671px;}
.y131{bottom:446.599570px;}
.y90{bottom:449.252920px;}
.y2a{bottom:450.677471px;}
.y160{bottom:451.503821px;}
.yf8{bottom:454.202771px;}
.y52{bottom:455.102171px;}
.y6c{bottom:455.695571px;}
.y10d{bottom:456.785470px;}
.y146{bottom:456.785620px;}
.yab{bottom:457.589321px;}
.yc8{bottom:457.803371px;}
.y8f{bottom:467.252920px;}
.y29{bottom:470.477470px;}
.yf7{bottom:472.202771px;}
.y51{bottom:473.102171px;}
.y6b{bottom:475.495571px;}
.yc7{bottom:475.803371px;}
.y10c{bottom:476.585471px;}
.y145{bottom:476.585620px;}
.yaa{bottom:477.389321px;}
.y1a{bottom:479.160670px;}
.y119{bottom:479.243320px;}
.y130{bottom:482.599570px;}
.y8e{bottom:485.252920px;}
.y15f{bottom:487.503820px;}
.yf6{bottom:490.202771px;}
.y50{bottom:491.102171px;}
.yc6{bottom:493.803371px;}
.y118{bottom:497.243320px;}
.y12f{bottom:500.599570px;}
.y8d{bottom:503.252920px;}
.y15e{bottom:505.503820px;}
.y19{bottom:507.960670px;}
.yf5{bottom:508.202771px;}
.y4f{bottom:509.102171px;}
.yc5{bottom:511.803371px;}
.y12e{bottom:518.599570px;}
.y4e{bottom:527.102171px;}
.yc4{bottom:529.803371px;}
.y73{bottom:533.091371px;}
.y12d{bottom:536.599570px;}
.y18{bottom:536.760670px;}
.y8c{bottom:537.902321px;}
.yf4{bottom:544.202771px;}
.y4d{bottom:545.102171px;}
.y15d{bottom:546.453671px;}
.yc3{bottom:547.803371px;}
.y72{bottom:551.091371px;}
.y17{bottom:551.160670px;}
.y8b{bottom:555.902321px;}
.yf3{bottom:562.202771px;}
.y4c{bottom:563.102171px;}
.y16{bottom:565.560671px;}
.yc2{bottom:565.803371px;}
.y8a{bottom:573.902321px;}
.y12c{bottom:575.299420px;}
.yf2{bottom:580.202771px;}
.y16f{bottom:581.102171px;}
.ydb{bottom:581.509420px;}
.yc1{bottom:583.803371px;}
.y15{bottom:594.360670px;}
.yf1{bottom:598.202771px;}
.y4b{bottom:599.102171px;}
.yda{bottom:599.509420px;}
.yc0{bottom:601.803371px;}
.y14{bottom:608.760670px;}
.y89{bottom:609.902320px;}
.yf0{bottom:616.202771px;}
.y4a{bottom:617.102171px;}
.y15c{bottom:617.103070px;}
.ybf{bottom:619.803371px;}
.y13{bottom:623.160670px;}
.y88{bottom:627.902320px;}
.yef{bottom:634.202771px;}
.y49{bottom:635.102171px;}
.y15b{bottom:635.103070px;}
.ybe{bottom:637.803371px;}
.y87{bottom:645.902320px;}
.y48{bottom:653.102171px;}
.y15a{bottom:653.103070px;}
.y12{bottom:654.660670px;}
.y6a{bottom:660.177371px;}
.y16d{bottom:661.267421px;}
.ya9{bottom:662.071270px;}
.y12b{bottom:662.598671px;}
.y86{bottom:663.902320px;}
.yee{bottom:668.852171px;}
.y47{bottom:671.102171px;}
.y159{bottom:671.103070px;}
.ybd{bottom:672.452770px;}
.y69{bottom:679.977371px;}
.y12a{bottom:680.598671px;}
.y10b{bottom:681.067421px;}
.ya8{bottom:681.871270px;}
.y85{bottom:681.902320px;}
.yed{bottom:686.852171px;}
.y11{bottom:687.960071px;}
.y158{bottom:689.103070px;}
.ybc{bottom:690.452770px;}
.y129{bottom:698.598671px;}
.y68{bottom:699.777370px;}
.y84{bottom:699.902320px;}
.y10a{bottom:700.867421px;}
.ya7{bottom:701.671270px;}
.yec{bottom:704.852171px;}
.y46{bottom:707.102171px;}
.y157{bottom:707.103070px;}
.ybb{bottom:708.452770px;}
.y128{bottom:716.598671px;}
.y83{bottom:717.902320px;}
.y67{bottom:719.577371px;}
.y28{bottom:719.585620px;}
.y109{bottom:720.667421px;}
.ya6{bottom:721.471270px;}
.yeb{bottom:722.852171px;}
.y45{bottom:725.102171px;}
.yba{bottom:726.452770px;}
.y10{bottom:731.160071px;}
.y82{bottom:735.902320px;}
.y66{bottom:739.377370px;}
.y27{bottom:739.385621px;}
.y108{bottom:740.467421px;}
.yea{bottom:740.852171px;}
.ya5{bottom:741.271270px;}
.y44{bottom:743.102171px;}
.y156{bottom:743.103070px;}
.yf{bottom:745.560071px;}
.y127{bottom:752.598671px;}
.y81{bottom:753.902320px;}
.ye9{bottom:758.852171px;}
.y65{bottom:759.177370px;}
.y26{bottom:759.185620px;}
.y107{bottom:760.267420px;}
.ya4{bottom:761.071270px;}
.y16e{bottom:761.102171px;}
.y155{bottom:761.103070px;}
.yb9{bottom:762.452770px;}
.y126{bottom:770.598671px;}
.y80{bottom:771.902320px;}
.ye{bottom:774.360071px;}
.ye8{bottom:776.852171px;}
.y64{bottom:778.977371px;}
.y25{bottom:778.985620px;}
.y43{bottom:779.102171px;}
.y154{bottom:779.103070px;}
.y106{bottom:780.067421px;}
.yb8{bottom:780.452770px;}
.ya3{bottom:780.871270px;}
.y125{bottom:788.598671px;}
.yd{bottom:788.760071px;}
.y7f{bottom:789.902320px;}
.ye7{bottom:794.852171px;}
.y42{bottom:797.102171px;}
.y153{bottom:797.103070px;}
.yb7{bottom:798.452770px;}
.yc{bottom:803.160071px;}
.y124{bottom:806.598671px;}
.y7e{bottom:807.902320px;}
.ye6{bottom:812.852171px;}
.y41{bottom:815.102171px;}
.y152{bottom:815.103070px;}
.yb6{bottom:816.452770px;}
.y123{bottom:824.598671px;}
.y7d{bottom:825.902320px;}
.ye5{bottom:830.852171px;}
.yb{bottom:831.960071px;}
.y40{bottom:833.102171px;}
.y151{bottom:833.103070px;}
.yb5{bottom:834.452770px;}
.y122{bottom:842.598671px;}
.y7c{bottom:843.902320px;}
.ya{bottom:846.360071px;}
.ye4{bottom:848.852171px;}
.y3f{bottom:851.102171px;}
.yb4{bottom:852.452770px;}
.y121{bottom:860.598671px;}
.y9{bottom:860.760071px;}
.y7b{bottom:861.902320px;}
.ye3{bottom:866.852171px;}
.y3e{bottom:869.102171px;}
.yb3{bottom:870.452770px;}
.y150{bottom:871.802920px;}
.y7a{bottom:879.902320px;}
.ye2{bottom:884.852171px;}
.y3d{bottom:887.102171px;}
.y117{bottom:892.022021px;}
.y8{bottom:892.260071px;}
.y120{bottom:896.598671px;}
.y79{bottom:897.902320px;}
.ye1{bottom:902.852171px;}
.yb2{bottom:905.102171px;}
.y116{bottom:910.022021px;}
.y11f{bottom:914.598671px;}
.y78{bottom:915.902320px;}
.ye0{bottom:920.852171px;}
.y3c{bottom:923.102171px;}
.y11e{bottom:932.598671px;}
.yb0{bottom:933.654221px;}
.y77{bottom:933.902320px;}
.y3b{bottom:941.102171px;}
.y7{bottom:946.168720px;}
.y11d{bottom:950.598671px;}
.yaf{bottom:951.654221px;}
.y76{bottom:951.902320px;}
.ydf{bottom:956.852171px;}
.y3a{bottom:959.102171px;}
.y11c{bottom:968.598671px;}
.y75{bottom:969.902320px;}
.yde{bottom:974.852171px;}
.y6{bottom:976.169320px;}
.y39{bottom:977.102171px;}
.y11b{bottom:986.598671px;}
.ydd{bottom:992.852171px;}
.y38{bottom:995.102171px;}
.y14d{bottom:1004.354020px;}
.y11a{bottom:1004.598671px;}
.y74{bottom:1008.602171px;}
.ydc{bottom:1010.852171px;}
.y37{bottom:1013.102171px;}
.y5{bottom:1034.668421px;}
.y4{bottom:1063.169170px;}
.y3{bottom:1111.169170px;}
.y2{bottom:1140.419170px;}
.y36{bottom:1149.419170px;}
.y33{bottom:1293.962471px;}
.hd{height:31.992188px;}
.hc{height:32.004000px;}
.he{height:37.506000px;}
.h8{height:42.864000px;}
.h10{height:45.000000px;}
.ha{height:53.580000px;}
.h3{height:54.864000px;}
.hb{height:58.938000px;}
.h11{height:62.578125px;}
.h9{height:64.008000px;}
.h6{height:68.580000px;}
.hf{height:73.152000px;}
.h7{height:75.012000px;}
.h5{height:100.584000px;}
.h4{height:115.584000px;}
.h2{height:1262.462471px;}
.h0{height:1262.846901px;}
.h1{height:1263.000000px;}
.w2{width:891.439819px;}
.w1{width:891.750000px;}
.w0{width:892.073799px;}
.x0{left:0.000000px;}
.xf{left:5.133980px;}
.x13{left:55.275600px;}
.x11{left:56.775600px;}
.x1{left:70.656300px;}
.x3f{left:89.292000px;}
.x2{left:92.917350px;}
.x3d{left:95.367390px;}
.x5{left:96.460050px;}
.xa{left:98.654790px;}
.x2e{left:100.299840px;}
.x7{left:102.526770px;}
.xd{left:105.627030px;}
.x30{left:107.085000px;}
.xb{left:109.832550px;}
.x6{left:112.960050px;}
.x9{left:117.173070px;}
.x8{left:118.273950px;}
.x2f{left:121.018560px;}
.x1f{left:123.601290px;}
.x3c{left:125.064750px;}
.x3e{left:127.261230px;}
.x3a{left:128.905650px;}
.x1e{left:130.189410px;}
.xc{left:131.289150px;}
.x21{left:135.325050px;}
.x3b{left:139.717770px;}
.x20{left:140.822010px;}
.x45{left:221.089200px;}
.x3{left:261.496050px;}
.xe{left:274.251450px;}
.x4{left:294.885750px;}
.x1c{left:318.188700px;}
.x38{left:329.327400px;}
.x37{left:345.312450px;}
.x1d{left:363.175200px;}
.x39{left:423.465900px;}
.x2d{left:425.651100px;}
.x2c{left:429.615600px;}
.x46{left:452.455200px;}
.x48{left:486.510000px;}
.x22{left:505.153350px;}
.x42{left:517.828800px;}
.x41{left:519.158400px;}
.x43{left:521.824800px;}
.x44{left:546.691200px;}
.x49{left:553.038000px;}
.x33{left:554.446950px;}
.x40{left:562.012800px;}
.x31{left:566.335500px;}
.x47{left:597.416400px;}
.x24{left:607.874100px;}
.x23{left:616.600350px;}
.x34{left:635.494950px;}
.x32{left:650.484000px;}
.x26{left:673.613370px;}
.x25{left:674.903010px;}
.x28{left:676.189440px;}
.x2b{left:677.836800px;}
.x16{left:679.171320px;}
.x17{left:680.806800px;}
.x14{left:682.998000px;}
.x35{left:684.819810px;}
.x27{left:688.469970px;}
.x1b{left:691.457850px;}
.x15{left:695.654160px;}
.x2a{left:698.188560px;}
.x29{left:699.835920px;}
.x36{left:700.942290px;}
.x19{left:706.474200px;}
.x18{left:712.519800px;}
.x1a{left:713.621970px;}
.x12{left:717.781200px;}
.x10{left:806.246550px;}
@media print{
.v1{vertical-align:-17.375467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.333333pt;}
.v3{vertical-align:24.640000pt;}
.ls1b{letter-spacing:-1.194667pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.602667pt;}
.ls18{letter-spacing:-0.597333pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.477867pt;}
.lsd{letter-spacing:-0.014933pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:-0.011733pt;}
.ls22{letter-spacing:-0.010667pt;}
.lsb{letter-spacing:-0.008533pt;}
.ls6{letter-spacing:-0.008000pt;}
.ls7{letter-spacing:-0.007467pt;}
.lsa{letter-spacing:-0.006400pt;}
.lsf{letter-spacing:-0.005867pt;}
.lse{letter-spacing:-0.005333pt;}
.ls8{letter-spacing:-0.004267pt;}
.ls3{letter-spacing:-0.003733pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.138667pt;}
.lsc{letter-spacing:0.153600pt;}
.ls19{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.501333pt;}
.ls16{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.682667pt;}
.ls13{letter-spacing:0.741333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.912000pt;}
.ls17{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls12{letter-spacing:1.178667pt;}
.ls0{letter-spacing:12.394667pt;}
.ls1{letter-spacing:24.595200pt;}
.ws4{word-spacing:-13.056000pt;}
.ws3{word-spacing:-13.051733pt;}
.ws8b{word-spacing:-2.218667pt;}
.wsc4{word-spacing:-2.128000pt;}
.wsd2{word-spacing:-2.000000pt;}
.ws29{word-spacing:-1.984000pt;}
.ws82{word-spacing:-1.978667pt;}
.ws9c{word-spacing:-1.754667pt;}
.ws16{word-spacing:-1.728000pt;}
.ws7a{word-spacing:-1.626667pt;}
.wsa{word-spacing:-1.595733pt;}
.wsed{word-spacing:-1.333333pt;}
.ws37{word-spacing:-1.317333pt;}
.wse6{word-spacing:-1.296000pt;}
.wsad{word-spacing:-1.290667pt;}
.wse{word-spacing:-1.284267pt;}
.ws49{word-spacing:-1.157333pt;}
.ws60{word-spacing:-1.120000pt;}
.wsd{word-spacing:-0.921600pt;}
.ws9e{word-spacing:-0.720000pt;}
.wsc0{word-spacing:-0.698667pt;}
.wsb7{word-spacing:-0.656000pt;}
.ws72{word-spacing:-0.613333pt;}
.wsda{word-spacing:-0.570667pt;}
.ws1f{word-spacing:-0.384000pt;}
.wsa4{word-spacing:-0.357333pt;}
.ws80{word-spacing:-0.352000pt;}
.ws20{word-spacing:-0.346667pt;}
.ws10{word-spacing:-0.341333pt;}
.wsa2{word-spacing:-0.213333pt;}
.ws2f{word-spacing:-0.202667pt;}
.wse4{word-spacing:-0.176000pt;}
.wsde{word-spacing:-0.160000pt;}
.ws2{word-spacing:-0.021333pt;}
.ws13{word-spacing:-0.017067pt;}
.ws7{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.042667pt;}
.ws61{word-spacing:0.192000pt;}
.ws11{word-spacing:0.256000pt;}
.ws85{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.288000pt;}
.wsa9{word-spacing:0.320000pt;}
.ws7d{word-spacing:0.373333pt;}
.wsb{word-spacing:0.388267pt;}
.wsd9{word-spacing:0.426667pt;}
.ws73{word-spacing:0.602667pt;}
.ws5b{word-spacing:0.730667pt;}
.ws64{word-spacing:0.773333pt;}
.ws5a{word-spacing:0.805333pt;}
.ws3c{word-spacing:0.896000pt;}
.ws40{word-spacing:0.912000pt;}
.ws5{word-spacing:1.034133pt;}
.ws1d{word-spacing:1.037867pt;}
.wsc{word-spacing:1.181867pt;}
.wsd8{word-spacing:1.221333pt;}
.ws8f{word-spacing:1.274667pt;}
.ws44{word-spacing:1.322667pt;}
.wsd4{word-spacing:1.349333pt;}
.wsbd{word-spacing:1.360000pt;}
.wsee{word-spacing:1.397333pt;}
.wsa6{word-spacing:1.424000pt;}
.ws23{word-spacing:1.477333pt;}
.ws17{word-spacing:1.482667pt;}
.wsb4{word-spacing:1.493333pt;}
.ws92{word-spacing:1.536000pt;}
.wse5{word-spacing:1.541333pt;}
.ws45{word-spacing:1.625067pt;}
.wsf0{word-spacing:1.626667pt;}
.ws1c{word-spacing:1.630933pt;}
.wsef{word-spacing:1.632000pt;}
.ws8d{word-spacing:1.658667pt;}
.wsb9{word-spacing:1.664000pt;}
.ws6d{word-spacing:1.706667pt;}
.ws93{word-spacing:1.772800pt;}
.ws5c{word-spacing:1.779200pt;}
.ws57{word-spacing:1.813333pt;}
.ws94{word-spacing:1.840000pt;}
.ws42{word-spacing:1.872000pt;}
.wsc2{word-spacing:1.962667pt;}
.ws83{word-spacing:1.984000pt;}
.ws2a{word-spacing:2.032000pt;}
.ws14{word-spacing:2.068267pt;}
.ws9{word-spacing:2.075733pt;}
.ws8{word-spacing:2.224000pt;}
.ws38{word-spacing:2.389333pt;}
.ws39{word-spacing:2.490667pt;}
.ws7c{word-spacing:2.597333pt;}
.ws27{word-spacing:2.608000pt;}
.ws67{word-spacing:2.821333pt;}
.ws76{word-spacing:2.826667pt;}
.ws89{word-spacing:2.949333pt;}
.wsdc{word-spacing:3.002667pt;}
.ws3f{word-spacing:3.178667pt;}
.ws59{word-spacing:3.205333pt;}
.ws6{word-spacing:3.261867pt;}
.ws31{word-spacing:3.365333pt;}
.ws71{word-spacing:3.370667pt;}
.ws87{word-spacing:3.397333pt;}
.ws95{word-spacing:3.424000pt;}
.ws68{word-spacing:3.488000pt;}
.ws79{word-spacing:3.589333pt;}
.ws56{word-spacing:3.605333pt;}
.wsf{word-spacing:3.797333pt;}
.ws3e{word-spacing:3.909333pt;}
.ws4f{word-spacing:4.000000pt;}
.ws5d{word-spacing:4.016000pt;}
.ws7f{word-spacing:4.437333pt;}
.ws22{word-spacing:4.496000pt;}
.ws21{word-spacing:4.581333pt;}
.wsae{word-spacing:4.597333pt;}
.ws15{word-spacing:4.688000pt;}
.ws78{word-spacing:4.693333pt;}
.wse0{word-spacing:4.698667pt;}
.wsdb{word-spacing:4.704000pt;}
.ws2b{word-spacing:4.709333pt;}
.wsb5{word-spacing:5.253333pt;}
.wsd6{word-spacing:5.264000pt;}
.ws4a{word-spacing:5.376000pt;}
.wsbf{word-spacing:5.472000pt;}
.wsb1{word-spacing:5.973333pt;}
.wsa0{word-spacing:6.042667pt;}
.wsdd{word-spacing:6.432000pt;}
.wsa5{word-spacing:6.602667pt;}
.wsec{word-spacing:6.885333pt;}
.ws2d{word-spacing:6.912000pt;}
.wseb{word-spacing:7.050667pt;}
.wsbe{word-spacing:7.104000pt;}
.ws41{word-spacing:7.173333pt;}
.ws70{word-spacing:7.216000pt;}
.ws43{word-spacing:7.248000pt;}
.ws75{word-spacing:7.429333pt;}
.wse2{word-spacing:7.541333pt;}
.ws28{word-spacing:7.557333pt;}
.ws81{word-spacing:7.584000pt;}
.wsac{word-spacing:7.605333pt;}
.ws18{word-spacing:7.717333pt;}
.ws19{word-spacing:8.213333pt;}
.ws9a{word-spacing:8.469333pt;}
.wsc1{word-spacing:8.725333pt;}
.wsb6{word-spacing:8.778667pt;}
.wsb2{word-spacing:8.922667pt;}
.wscf{word-spacing:9.093333pt;}
.ws1{word-spacing:9.654667pt;}
.ws74{word-spacing:9.850667pt;}
.ws84{word-spacing:9.893333pt;}
.ws96{word-spacing:10.069333pt;}
.wse1{word-spacing:10.090667pt;}
.ws1e{word-spacing:10.106667pt;}
.ws26{word-spacing:10.197333pt;}
.ws4d{word-spacing:10.400000pt;}
.ws91{word-spacing:10.698667pt;}
.ws48{word-spacing:10.704000pt;}
.wsb3{word-spacing:11.189333pt;}
.wsc5{word-spacing:11.200000pt;}
.ws6e{word-spacing:11.317333pt;}
.wsce{word-spacing:11.322667pt;}
.ws6b{word-spacing:11.328000pt;}
.ws77{word-spacing:11.472000pt;}
.ws1a{word-spacing:11.888000pt;}
.ws7b{word-spacing:11.898667pt;}
.ws24{word-spacing:12.346667pt;}
.wsb0{word-spacing:12.437333pt;}
.wse3{word-spacing:12.656000pt;}
.ws9d{word-spacing:12.709333pt;}
.ws25{word-spacing:13.616000pt;}
.wse9{word-spacing:13.696000pt;}
.ws62{word-spacing:14.213333pt;}
.ws34{word-spacing:14.336000pt;}
.wse8{word-spacing:14.629333pt;}
.ws66{word-spacing:14.656000pt;}
.wsea{word-spacing:14.864000pt;}
.ws8a{word-spacing:15.418667pt;}
.ws52{word-spacing:16.032000pt;}
.ws63{word-spacing:16.325333pt;}
.ws2c{word-spacing:16.400000pt;}
.ws5f{word-spacing:16.581333pt;}
.ws6a{word-spacing:16.741333pt;}
.ws3b{word-spacing:17.034667pt;}
.ws55{word-spacing:17.077333pt;}
.wsba{word-spacing:17.269333pt;}
.ws86{word-spacing:17.413333pt;}
.ws5e{word-spacing:17.616000pt;}
.ws12{word-spacing:17.621333pt;}
.ws97{word-spacing:17.786667pt;}
.ws46{word-spacing:17.797333pt;}
.wscc{word-spacing:17.973333pt;}
.wsd7{word-spacing:18.421333pt;}
.ws33{word-spacing:18.688000pt;}
.wscd{word-spacing:18.736000pt;}
.ws8e{word-spacing:18.768000pt;}
.wsca{word-spacing:19.066667pt;}
.ws99{word-spacing:19.610667pt;}
.wsaf{word-spacing:20.405333pt;}
.wsa3{word-spacing:20.736000pt;}
.wsc8{word-spacing:21.045333pt;}
.ws65{word-spacing:21.152000pt;}
.wsb8{word-spacing:21.184000pt;}
.ws51{word-spacing:21.306667pt;}
.wsc7{word-spacing:21.450667pt;}
.wsa7{word-spacing:21.472000pt;}
.ws4c{word-spacing:21.477333pt;}
.wsbc{word-spacing:21.525333pt;}
.ws50{word-spacing:21.536000pt;}
.ws58{word-spacing:21.642667pt;}
.ws98{word-spacing:21.696000pt;}
.wsd3{word-spacing:21.717333pt;}
.ws7e{word-spacing:21.770667pt;}
.wsc6{word-spacing:21.781333pt;}
.ws6c{word-spacing:21.845333pt;}
.ws2e{word-spacing:21.893333pt;}
.wsdf{word-spacing:22.080000pt;}
.ws6f{word-spacing:23.941333pt;}
.ws53{word-spacing:24.549333pt;}
.ws35{word-spacing:25.904000pt;}
.ws88{word-spacing:26.752000pt;}
.ws9f{word-spacing:27.013333pt;}
.wsa8{word-spacing:27.648000pt;}
.ws30{word-spacing:28.085333pt;}
.ws8c{word-spacing:28.181333pt;}
.wsd1{word-spacing:28.613333pt;}
.ws36{word-spacing:30.965333pt;}
.ws69{word-spacing:32.106667pt;}
.wsab{word-spacing:34.650667pt;}
.wsd0{word-spacing:35.018667pt;}
.wsbb{word-spacing:35.072000pt;}
.wsaa{word-spacing:35.173333pt;}
.ws47{word-spacing:35.749333pt;}
.wsa1{word-spacing:37.237333pt;}
.wsd5{word-spacing:40.592000pt;}
.wscb{word-spacing:40.794667pt;}
.wse7{word-spacing:41.573333pt;}
.ws90{word-spacing:41.984000pt;}
.ws3d{word-spacing:42.522667pt;}
.wsc9{word-spacing:42.954667pt;}
.ws3a{word-spacing:45.232000pt;}
.ws4b{word-spacing:49.658667pt;}
.ws9b{word-spacing:53.168000pt;}
.ws32{word-spacing:58.501333pt;}
.ws54{word-spacing:60.352000pt;}
.ws4e{word-spacing:80.629333pt;}
.ws0{word-spacing:2600.351733pt;}
._1{margin-left:-12.416000pt;}
._6{margin-left:-6.016000pt;}
._3{margin-left:-1.184000pt;}
._0{width:14.365867pt;}
._5{width:56.394667pt;}
._4{width:86.048000pt;}
._2{width:207.849600pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs9{font-size:85.333333pt;}
.fs3{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:48.254596pt;}
.y1{bottom:52.598463pt;}
.y34{bottom:52.598596pt;}
.y105{bottom:83.736463pt;}
.y17a{bottom:84.821929pt;}
.y144{bottom:92.977396pt;}
.y32{bottom:94.993396pt;}
.ya2{bottom:95.335929pt;}
.y104{bottom:99.736463pt;}
.y63{bottom:100.535263pt;}
.yd9{bottom:102.936329pt;}
.y31{bottom:106.193396pt;}
.y143{bottom:108.977396pt;}
.ya1{bottom:111.335929pt;}
.y62{bottom:116.535263pt;}
.y179{bottom:116.821929pt;}
.yd8{bottom:118.936329pt;}
.y142{bottom:124.977396pt;}
.ya0{bottom:127.335929pt;}
.y16c{bottom:129.336729pt;}
.y103{bottom:131.736463pt;}
.y178{bottom:132.528596pt;}
.y61{bottom:132.535263pt;}
.yd7{bottom:134.936329pt;}
.y141{bottom:140.977396pt;}
.y9f{bottom:143.335929pt;}
.y16b{bottom:145.336729pt;}
.y24{bottom:146.721263pt;}
.y102{bottom:147.736463pt;}
.y60{bottom:148.535263pt;}
.yd6{bottom:150.936329pt;}
.y140{bottom:156.977396pt;}
.y9e{bottom:159.335929pt;}
.y16a{bottom:161.336729pt;}
.y23{bottom:162.721263pt;}
.y177{bottom:164.535263pt;}
.yd5{bottom:166.936329pt;}
.y13f{bottom:172.977396pt;}
.y9d{bottom:175.335929pt;}
.y22{bottom:178.721263pt;}
.y101{bottom:179.736463pt;}
.y5f{bottom:180.535263pt;}
.y13e{bottom:188.977396pt;}
.y169{bottom:193.336729pt;}
.y100{bottom:195.736463pt;}
.y5e{bottom:196.535263pt;}
.y176{bottom:196.828596pt;}
.yd4{bottom:198.936329pt;}
.y13d{bottom:204.977396pt;}
.y9c{bottom:207.335929pt;}
.y168{bottom:209.336729pt;}
.y21{bottom:210.721263pt;}
.yff{bottom:211.736463pt;}
.y5d{bottom:212.535263pt;}
.yd3{bottom:214.936329pt;}
.y13c{bottom:220.977396pt;}
.y9b{bottom:223.335929pt;}
.y20{bottom:226.721263pt;}
.y5c{bottom:228.535263pt;}
.yd2{bottom:230.936329pt;}
.y13b{bottom:236.977396pt;}
.y9a{bottom:239.335929pt;}
.y167{bottom:241.336729pt;}
.y5b{bottom:244.535263pt;}
.y175{bottom:244.828596pt;}
.yfe{bottom:246.136463pt;}
.yd1{bottom:246.936329pt;}
.y13a{bottom:252.977396pt;}
.y99{bottom:255.335929pt;}
.y166{bottom:257.336729pt;}
.y1f{bottom:258.721263pt;}
.y5a{bottom:260.535263pt;}
.yd0{bottom:262.936329pt;}
.y115{bottom:265.231529pt;}
.y139{bottom:268.977396pt;}
.y98{bottom:271.335929pt;}
.y1e{bottom:274.721263pt;}
.y59{bottom:276.535263pt;}
.y174{bottom:276.828596pt;}
.ycf{bottom:278.936329pt;}
.y114{bottom:282.831529pt;}
.y138{bottom:284.977396pt;}
.y97{bottom:287.335929pt;}
.y165{bottom:289.336729pt;}
.y1d{bottom:290.721263pt;}
.y58{bottom:292.535263pt;}
.yce{bottom:294.936329pt;}
.y30{bottom:295.002196pt;}
.y113{bottom:300.431529pt;}
.y14c{bottom:300.431663pt;}
.y137{bottom:300.977396pt;}
.y96{bottom:303.335929pt;}
.y164{bottom:305.336729pt;}
.y57{bottom:308.535263pt;}
.y173{bottom:308.828596pt;}
.ycd{bottom:310.936329pt;}
.y2f{bottom:312.602196pt;}
.y136{bottom:316.977396pt;}
.y71{bottom:317.062729pt;}
.y112{bottom:318.031529pt;}
.y14b{bottom:318.031663pt;}
.y95{bottom:319.335929pt;}
.yfd{bottom:323.735796pt;}
.y56{bottom:324.535263pt;}
.ycc{bottom:326.936329pt;}
.y1c{bottom:327.121263pt;}
.y2e{bottom:330.202196pt;}
.y135{bottom:332.977396pt;}
.y70{bottom:334.662729pt;}
.y94{bottom:335.335929pt;}
.y111{bottom:335.631529pt;}
.y14a{bottom:335.631663pt;}
.y163{bottom:337.336729pt;}
.yfc{bottom:339.735796pt;}
.y55{bottom:340.535263pt;}
.y172{bottom:340.828596pt;}
.ycb{bottom:342.936329pt;}
.y2d{bottom:347.802196pt;}
.y134{bottom:348.977396pt;}
.y93{bottom:351.335929pt;}
.y6f{bottom:352.262729pt;}
.y110{bottom:353.231529pt;}
.y149{bottom:353.231663pt;}
.y162{bottom:353.336729pt;}
.yae{bottom:353.946063pt;}
.yfb{bottom:355.735796pt;}
.y54{bottom:356.535263pt;}
.yca{bottom:358.936329pt;}
.y133{bottom:364.977396pt;}
.y2c{bottom:365.402196pt;}
.y92{bottom:367.335929pt;}
.y6e{bottom:369.862729pt;}
.y10f{bottom:370.831529pt;}
.y148{bottom:370.831663pt;}
.yad{bottom:371.546063pt;}
.yfa{bottom:371.735796pt;}
.y53{bottom:372.535263pt;}
.y171{bottom:372.828596pt;}
.y14f{bottom:377.165929pt;}
.y132{bottom:380.977396pt;}
.y2b{bottom:383.002196pt;}
.y91{bottom:383.335929pt;}
.y161{bottom:385.336729pt;}
.y1b{bottom:385.520596pt;}
.y6d{bottom:387.462729pt;}
.yf9{bottom:387.735796pt;}
.y10e{bottom:388.431529pt;}
.y147{bottom:388.431663pt;}
.y170{bottom:388.535263pt;}
.yac{bottom:389.146063pt;}
.yc9{bottom:390.936329pt;}
.y14e{bottom:393.165929pt;}
.yb1{bottom:393.995263pt;}
.y131{bottom:396.977396pt;}
.y90{bottom:399.335929pt;}
.y2a{bottom:400.602196pt;}
.y160{bottom:401.336729pt;}
.yf8{bottom:403.735796pt;}
.y52{bottom:404.535263pt;}
.y6c{bottom:405.062729pt;}
.y10d{bottom:406.031529pt;}
.y146{bottom:406.031663pt;}
.yab{bottom:406.746063pt;}
.yc8{bottom:406.936329pt;}
.y8f{bottom:415.335929pt;}
.y29{bottom:418.202196pt;}
.yf7{bottom:419.735796pt;}
.y51{bottom:420.535263pt;}
.y6b{bottom:422.662729pt;}
.yc7{bottom:422.936329pt;}
.y10c{bottom:423.631529pt;}
.y145{bottom:423.631663pt;}
.yaa{bottom:424.346063pt;}
.y1a{bottom:425.920596pt;}
.y119{bottom:425.994063pt;}
.y130{bottom:428.977396pt;}
.y8e{bottom:431.335929pt;}
.y15f{bottom:433.336729pt;}
.yf6{bottom:435.735796pt;}
.y50{bottom:436.535263pt;}
.yc6{bottom:438.936329pt;}
.y118{bottom:441.994063pt;}
.y12f{bottom:444.977396pt;}
.y8d{bottom:447.335929pt;}
.y15e{bottom:449.336729pt;}
.y19{bottom:451.520596pt;}
.yf5{bottom:451.735796pt;}
.y4f{bottom:452.535263pt;}
.yc5{bottom:454.936329pt;}
.y12e{bottom:460.977396pt;}
.y4e{bottom:468.535263pt;}
.yc4{bottom:470.936329pt;}
.y73{bottom:473.858996pt;}
.y12d{bottom:476.977396pt;}
.y18{bottom:477.120596pt;}
.y8c{bottom:478.135396pt;}
.yf4{bottom:483.735796pt;}
.y4d{bottom:484.535263pt;}
.y15d{bottom:485.736596pt;}
.yc3{bottom:486.936329pt;}
.y72{bottom:489.858996pt;}
.y17{bottom:489.920596pt;}
.y8b{bottom:494.135396pt;}
.yf3{bottom:499.735796pt;}
.y4c{bottom:500.535263pt;}
.y16{bottom:502.720596pt;}
.yc2{bottom:502.936329pt;}
.y8a{bottom:510.135396pt;}
.y12c{bottom:511.377263pt;}
.yf2{bottom:515.735796pt;}
.y16f{bottom:516.535263pt;}
.ydb{bottom:516.897263pt;}
.yc1{bottom:518.936329pt;}
.y15{bottom:528.320596pt;}
.yf1{bottom:531.735796pt;}
.y4b{bottom:532.535263pt;}
.yda{bottom:532.897263pt;}
.yc0{bottom:534.936329pt;}
.y14{bottom:541.120596pt;}
.y89{bottom:542.135396pt;}
.yf0{bottom:547.735796pt;}
.y4a{bottom:548.535263pt;}
.y15c{bottom:548.536063pt;}
.ybf{bottom:550.936329pt;}
.y13{bottom:553.920596pt;}
.y88{bottom:558.135396pt;}
.yef{bottom:563.735796pt;}
.y49{bottom:564.535263pt;}
.y15b{bottom:564.536063pt;}
.ybe{bottom:566.936329pt;}
.y87{bottom:574.135396pt;}
.y48{bottom:580.535263pt;}
.y15a{bottom:580.536063pt;}
.y12{bottom:581.920596pt;}
.y6a{bottom:586.824329pt;}
.y16d{bottom:587.793263pt;}
.ya9{bottom:588.507796pt;}
.y12b{bottom:588.976596pt;}
.y86{bottom:590.135396pt;}
.yee{bottom:594.535263pt;}
.y47{bottom:596.535263pt;}
.y159{bottom:596.536063pt;}
.ybd{bottom:597.735796pt;}
.y69{bottom:604.424329pt;}
.y12a{bottom:604.976596pt;}
.y10b{bottom:605.393263pt;}
.ya8{bottom:606.107796pt;}
.y85{bottom:606.135396pt;}
.yed{bottom:610.535263pt;}
.y11{bottom:611.520063pt;}
.y158{bottom:612.536063pt;}
.ybc{bottom:613.735796pt;}
.y129{bottom:620.976596pt;}
.y68{bottom:622.024329pt;}
.y84{bottom:622.135396pt;}
.y10a{bottom:622.993263pt;}
.ya7{bottom:623.707796pt;}
.yec{bottom:626.535263pt;}
.y46{bottom:628.535263pt;}
.y157{bottom:628.536063pt;}
.ybb{bottom:629.735796pt;}
.y128{bottom:636.976596pt;}
.y83{bottom:638.135396pt;}
.y67{bottom:639.624329pt;}
.y28{bottom:639.631663pt;}
.y109{bottom:640.593263pt;}
.ya6{bottom:641.307796pt;}
.yeb{bottom:642.535263pt;}
.y45{bottom:644.535263pt;}
.yba{bottom:645.735796pt;}
.y10{bottom:649.920063pt;}
.y82{bottom:654.135396pt;}
.y66{bottom:657.224329pt;}
.y27{bottom:657.231663pt;}
.y108{bottom:658.193263pt;}
.yea{bottom:658.535263pt;}
.ya5{bottom:658.907796pt;}
.y44{bottom:660.535263pt;}
.y156{bottom:660.536063pt;}
.yf{bottom:662.720063pt;}
.y127{bottom:668.976596pt;}
.y81{bottom:670.135396pt;}
.ye9{bottom:674.535263pt;}
.y65{bottom:674.824329pt;}
.y26{bottom:674.831663pt;}
.y107{bottom:675.793263pt;}
.ya4{bottom:676.507796pt;}
.y16e{bottom:676.535263pt;}
.y155{bottom:676.536063pt;}
.yb9{bottom:677.735796pt;}
.y126{bottom:684.976596pt;}
.y80{bottom:686.135396pt;}
.ye{bottom:688.320063pt;}
.ye8{bottom:690.535263pt;}
.y64{bottom:692.424329pt;}
.y25{bottom:692.431663pt;}
.y43{bottom:692.535263pt;}
.y154{bottom:692.536063pt;}
.y106{bottom:693.393263pt;}
.yb8{bottom:693.735796pt;}
.ya3{bottom:694.107796pt;}
.y125{bottom:700.976596pt;}
.yd{bottom:701.120063pt;}
.y7f{bottom:702.135396pt;}
.ye7{bottom:706.535263pt;}
.y42{bottom:708.535263pt;}
.y153{bottom:708.536063pt;}
.yb7{bottom:709.735796pt;}
.yc{bottom:713.920063pt;}
.y124{bottom:716.976596pt;}
.y7e{bottom:718.135396pt;}
.ye6{bottom:722.535263pt;}
.y41{bottom:724.535263pt;}
.y152{bottom:724.536063pt;}
.yb6{bottom:725.735796pt;}
.y123{bottom:732.976596pt;}
.y7d{bottom:734.135396pt;}
.ye5{bottom:738.535263pt;}
.yb{bottom:739.520063pt;}
.y40{bottom:740.535263pt;}
.y151{bottom:740.536063pt;}
.yb5{bottom:741.735796pt;}
.y122{bottom:748.976596pt;}
.y7c{bottom:750.135396pt;}
.ya{bottom:752.320063pt;}
.ye4{bottom:754.535263pt;}
.y3f{bottom:756.535263pt;}
.yb4{bottom:757.735796pt;}
.y121{bottom:764.976596pt;}
.y9{bottom:765.120063pt;}
.y7b{bottom:766.135396pt;}
.ye3{bottom:770.535263pt;}
.y3e{bottom:772.535263pt;}
.yb3{bottom:773.735796pt;}
.y150{bottom:774.935929pt;}
.y7a{bottom:782.135396pt;}
.ye2{bottom:786.535263pt;}
.y3d{bottom:788.535263pt;}
.y117{bottom:792.908463pt;}
.y8{bottom:793.120063pt;}
.y120{bottom:796.976596pt;}
.y79{bottom:798.135396pt;}
.ye1{bottom:802.535263pt;}
.yb2{bottom:804.535263pt;}
.y116{bottom:808.908463pt;}
.y11f{bottom:812.976596pt;}
.y78{bottom:814.135396pt;}
.ye0{bottom:818.535263pt;}
.y3c{bottom:820.535263pt;}
.y11e{bottom:828.976596pt;}
.yb0{bottom:829.914863pt;}
.y77{bottom:830.135396pt;}
.y3b{bottom:836.535263pt;}
.y7{bottom:841.038863pt;}
.y11d{bottom:844.976596pt;}
.yaf{bottom:845.914863pt;}
.y76{bottom:846.135396pt;}
.ydf{bottom:850.535263pt;}
.y3a{bottom:852.535263pt;}
.y11c{bottom:860.976596pt;}
.y75{bottom:862.135396pt;}
.yde{bottom:866.535263pt;}
.y6{bottom:867.706063pt;}
.y39{bottom:868.535263pt;}
.y11b{bottom:876.976596pt;}
.ydd{bottom:882.535263pt;}
.y38{bottom:884.535263pt;}
.y14d{bottom:892.759129pt;}
.y11a{bottom:892.976596pt;}
.y74{bottom:896.535263pt;}
.ydc{bottom:898.535263pt;}
.y37{bottom:900.535263pt;}
.y5{bottom:919.705263pt;}
.y4{bottom:945.039263pt;}
.y3{bottom:987.705929pt;}
.y2{bottom:1013.705929pt;}
.y36{bottom:1021.705929pt;}
.y33{bottom:1150.188863pt;}
.hd{height:28.437500pt;}
.hc{height:28.448000pt;}
.he{height:33.338667pt;}
.h8{height:38.101333pt;}
.h10{height:40.000000pt;}
.ha{height:47.626667pt;}
.h3{height:48.768000pt;}
.hb{height:52.389333pt;}
.h11{height:55.625000pt;}
.h9{height:56.896000pt;}
.h6{height:60.960000pt;}
.hf{height:65.024000pt;}
.h7{height:66.677333pt;}
.h5{height:89.408000pt;}
.h4{height:102.741333pt;}
.h2{height:1122.188863pt;}
.h0{height:1122.530579pt;}
.h1{height:1122.666667pt;}
.w2{width:792.390951pt;}
.w1{width:792.666667pt;}
.w0{width:792.954488pt;}
.x0{left:0.000000pt;}
.xf{left:4.563537pt;}
.x13{left:49.133867pt;}
.x11{left:50.467200pt;}
.x1{left:62.805600pt;}
.x3f{left:79.370667pt;}
.x2{left:82.593200pt;}
.x3d{left:84.771013pt;}
.x5{left:85.742267pt;}
.xa{left:87.693147pt;}
.x2e{left:89.155413pt;}
.x7{left:91.134907pt;}
.xd{left:93.890693pt;}
.x30{left:95.186667pt;}
.xb{left:97.628933pt;}
.x6{left:100.408933pt;}
.x9{left:104.153840pt;}
.x8{left:105.132400pt;}
.x2f{left:107.572053pt;}
.x1f{left:109.867813pt;}
.x3c{left:111.168667pt;}
.x3e{left:113.121093pt;}
.x3a{left:114.582800pt;}
.x1e{left:115.723920pt;}
.xc{left:116.701467pt;}
.x21{left:120.288933pt;}
.x3b{left:124.193573pt;}
.x20{left:125.175120pt;}
.x45{left:196.523733pt;}
.x3{left:232.440933pt;}
.xe{left:243.779067pt;}
.x4{left:262.120667pt;}
.x1c{left:282.834400pt;}
.x38{left:292.735467pt;}
.x37{left:306.944400pt;}
.x1d{left:322.822400pt;}
.x39{left:376.414133pt;}
.x2d{left:378.356533pt;}
.x2c{left:381.880533pt;}
.x46{left:402.182400pt;}
.x48{left:432.453333pt;}
.x22{left:449.025200pt;}
.x42{left:460.292267pt;}
.x41{left:461.474133pt;}
.x43{left:463.844267pt;}
.x44{left:485.947733pt;}
.x49{left:491.589333pt;}
.x33{left:492.841733pt;}
.x40{left:499.566933pt;}
.x31{left:503.409333pt;}
.x47{left:531.036800pt;}
.x24{left:540.332533pt;}
.x23{left:548.089200pt;}
.x34{left:564.884400pt;}
.x32{left:578.208000pt;}
.x26{left:598.767440pt;}
.x25{left:599.913787pt;}
.x28{left:601.057280pt;}
.x2b{left:602.521600pt;}
.x16{left:603.707840pt;}
.x17{left:605.161600pt;}
.x14{left:607.109333pt;}
.x35{left:608.728720pt;}
.x27{left:611.973307pt;}
.x1b{left:614.629200pt;}
.x15{left:618.359253pt;}
.x2a{left:620.612053pt;}
.x29{left:622.076373pt;}
.x36{left:623.059813pt;}
.x19{left:627.977067pt;}
.x18{left:633.350933pt;}
.x1a{left:634.330640pt;}
.x12{left:638.027733pt;}
.x10{left:716.663600pt;}
}




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