
    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_e74c7ee954b904a9c2e45d25.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_b35025f340852b115a909fa4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83577924f265be6a85af1973.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_5773aa4c5b50464866bb0deb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.902000;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_946cf63fa9d5be74208f69f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_c9517fe19677734a11f70ea7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;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_d36dd9cd1f73a638d60da497.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936000;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_e7edf36717c16660bf05b338.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2e51f32cafeadec2653ea16a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.118000;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_dfff1faf58c750b2ac910edb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_dfff1faf58c750b2ac910edb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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_2e51f32cafeadec2653ea16a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.118000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.000800px;}
.v2{vertical-align:17.981280px;}
.ls7{letter-spacing:-1.998000px;}
.ls6{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.314820px;}
.lsa{letter-spacing:-0.270000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000960px;}
.lsb{letter-spacing:0.001320px;}
.ls4{letter-spacing:0.001488px;}
.ls0{letter-spacing:1.286880px;}
.ls8{letter-spacing:3.995820px;}
.ls5{letter-spacing:4.534860px;}
.ls3{letter-spacing:7.152840px;}
.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;}
}
.ws1{word-spacing:-34.560000px;}
.ws80{word-spacing:-17.280000px;}
.ws4{word-spacing:-15.012000px;}
.ws81{word-spacing:-14.472000px;}
.ws2{word-spacing:-13.344000px;}
.wsaf{word-spacing:-12.960000px;}
.wsc1{word-spacing:-11.676000px;}
.ws0{word-spacing:-10.842000px;}
.ws19{word-spacing:-8.751996px;}
.ws82{word-spacing:-8.437176px;}
.ws3{word-spacing:-7.779552px;}
.wsb9{word-spacing:-3.402000px;}
.wsbc{word-spacing:-3.348000px;}
.ws5d{word-spacing:-3.024000px;}
.ws16{word-spacing:-2.970000px;}
.wsba{word-spacing:-2.916000px;}
.ws6b{word-spacing:-2.862000px;}
.ws7b{word-spacing:-2.808000px;}
.ws62{word-spacing:-2.754000px;}
.ws61{word-spacing:-2.700000px;}
.ws17{word-spacing:-2.592000px;}
.wsd0{word-spacing:-2.484000px;}
.ws18{word-spacing:-2.430000px;}
.ws53{word-spacing:-2.376000px;}
.wsd5{word-spacing:-2.352000px;}
.wsbf{word-spacing:-2.268000px;}
.ws8{word-spacing:-2.208000px;}
.ws95{word-spacing:-2.160000px;}
.ws38{word-spacing:-2.106000px;}
.ws9{word-spacing:-2.064000px;}
.ws2e{word-spacing:-2.052000px;}
.ws28{word-spacing:-1.998000px;}
.ws86{word-spacing:-1.944000px;}
.ws67{word-spacing:-1.890000px;}
.wscc{word-spacing:-1.848000px;}
.ws89{word-spacing:-1.836000px;}
.ws51{word-spacing:-1.782000px;}
.ws14{word-spacing:-1.776000px;}
.wsb0{word-spacing:-1.728000px;}
.wsc5{word-spacing:-1.680000px;}
.ws1a{word-spacing:-1.674000px;}
.wsbe{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.566000px;}
.ws70{word-spacing:-1.512000px;}
.ws93{word-spacing:-1.458000px;}
.ws72{word-spacing:-1.404000px;}
.wsd{word-spacing:-1.392000px;}
.ws73{word-spacing:-1.350000px;}
.ws71{word-spacing:-1.296000px;}
.ws6d{word-spacing:-1.242000px;}
.wsce{word-spacing:-1.188000px;}
.ws13{word-spacing:-1.152000px;}
.wsb6{word-spacing:-1.134000px;}
.wse{word-spacing:-1.104000px;}
.ws60{word-spacing:-1.080000px;}
.wsb2{word-spacing:-0.972000px;}
.wsd2{word-spacing:-0.960000px;}
.wsbd{word-spacing:-0.918000px;}
.wsc6{word-spacing:-0.882000px;}
.wsd7{word-spacing:-0.816000px;}
.ws35{word-spacing:-0.810000px;}
.wsa5{word-spacing:-0.756000px;}
.ws54{word-spacing:-0.648000px;}
.wsd9{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.594000px;}
.wsb5{word-spacing:-0.540000px;}
.ws8a{word-spacing:-0.486000px;}
.ws4e{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.378000px;}
.wsc8{word-spacing:-0.336000px;}
.ws59{word-spacing:-0.324000px;}
.wsc2{word-spacing:-0.294000px;}
.ws5e{word-spacing:-0.270000px;}
.ws98{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.192000px;}
.ws4b{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.054000px;}
.wsd4{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:0.048000px;}
.wscf{word-spacing:0.054000px;}
.wsc9{word-spacing:0.084000px;}
.ws8f{word-spacing:0.108000px;}
.wsbb{word-spacing:0.162000px;}
.wsc4{word-spacing:0.168000px;}
.ws94{word-spacing:0.216000px;}
.ws9d{word-spacing:0.270000px;}
.wsc7{word-spacing:0.294000px;}
.ws6{word-spacing:0.312000px;}
.ws9e{word-spacing:0.324000px;}
.ws3d{word-spacing:0.378000px;}
.ws96{word-spacing:0.432000px;}
.wsb{word-spacing:0.480000px;}
.ws3e{word-spacing:0.540000px;}
.ws1b{word-spacing:0.594000px;}
.wsc3{word-spacing:0.630000px;}
.wsa2{word-spacing:0.648000px;}
.ws9f{word-spacing:0.702000px;}
.ws37{word-spacing:0.756000px;}
.ws56{word-spacing:0.810000px;}
.ws4a{word-spacing:0.864000px;}
.ws2f{word-spacing:0.918000px;}
.ws6f{word-spacing:0.972000px;}
.ws85{word-spacing:1.026000px;}
.ws9b{word-spacing:1.080000px;}
.wsa9{word-spacing:1.134000px;}
.wsa{word-spacing:1.152000px;}
.ws41{word-spacing:1.188000px;}
.wsa4{word-spacing:1.242000px;}
.ws7{word-spacing:1.287000px;}
.ws21{word-spacing:1.296000px;}
.wsda{word-spacing:1.344000px;}
.ws57{word-spacing:1.404000px;}
.ws42{word-spacing:1.458000px;}
.ws2c{word-spacing:1.512000px;}
.ws77{word-spacing:1.566000px;}
.wsb7{word-spacing:1.620000px;}
.wsab{word-spacing:1.674000px;}
.wsdc{word-spacing:1.680000px;}
.wsa8{word-spacing:1.728000px;}
.ws3f{word-spacing:1.782000px;}
.wsdb{word-spacing:1.824000px;}
.ws97{word-spacing:1.890000px;}
.ws10{word-spacing:1.920000px;}
.ws74{word-spacing:1.944000px;}
.ws1c{word-spacing:1.998000px;}
.ws79{word-spacing:2.052000px;}
.ws33{word-spacing:2.106000px;}
.wsb1{word-spacing:2.160000px;}
.ws22{word-spacing:2.214000px;}
.ws11{word-spacing:2.256000px;}
.ws39{word-spacing:2.268000px;}
.ws87{word-spacing:2.322000px;}
.ws65{word-spacing:2.376000px;}
.wsd3{word-spacing:2.400000px;}
.ws26{word-spacing:2.430000px;}
.ws2d{word-spacing:2.484000px;}
.ws78{word-spacing:2.538000px;}
.wscb{word-spacing:2.562000px;}
.wsf{word-spacing:2.592000px;}
.ws5c{word-spacing:2.646000px;}
.ws75{word-spacing:2.700000px;}
.ws50{word-spacing:2.754000px;}
.wsdd{word-spacing:2.784000px;}
.ws4c{word-spacing:2.808000px;}
.ws63{word-spacing:2.862000px;}
.ws7d{word-spacing:2.970000px;}
.wsd8{word-spacing:3.024000px;}
.ws46{word-spacing:3.078000px;}
.ws1f{word-spacing:3.132000px;}
.wsb4{word-spacing:3.186000px;}
.wsb8{word-spacing:3.240000px;}
.ws99{word-spacing:3.294000px;}
.ws1e{word-spacing:3.348000px;}
.ws27{word-spacing:3.402000px;}
.ws92{word-spacing:3.456000px;}
.ws6a{word-spacing:3.510000px;}
.wsd6{word-spacing:3.552000px;}
.ws90{word-spacing:3.564000px;}
.wsac{word-spacing:3.672000px;}
.ws5f{word-spacing:3.726000px;}
.ws48{word-spacing:3.780000px;}
.ws5a{word-spacing:3.834000px;}
.ws7e{word-spacing:3.888000px;}
.wsad{word-spacing:3.942000px;}
.ws6e{word-spacing:3.996000px;}
.wsa0{word-spacing:4.050000px;}
.ws8d{word-spacing:4.104000px;}
.ws20{word-spacing:4.158000px;}
.ws1d{word-spacing:4.212000px;}
.ws55{word-spacing:4.320000px;}
.wsa1{word-spacing:4.374000px;}
.ws52{word-spacing:4.428000px;}
.ws44{word-spacing:4.482000px;}
.ws8c{word-spacing:4.536000px;}
.ws36{word-spacing:4.644000px;}
.wsa6{word-spacing:4.698000px;}
.ws24{word-spacing:4.806000px;}
.ws64{word-spacing:4.968000px;}
.ws30{word-spacing:5.022000px;}
.wsa3{word-spacing:5.076000px;}
.ws43{word-spacing:5.130000px;}
.ws23{word-spacing:5.238000px;}
.ws4f{word-spacing:5.292000px;}
.ws9a{word-spacing:5.346000px;}
.ws88{word-spacing:5.400000px;}
.wsb3{word-spacing:5.454000px;}
.ws29{word-spacing:5.562000px;}
.ws40{word-spacing:5.616000px;}
.ws83{word-spacing:5.670000px;}
.ws6c{word-spacing:5.724000px;}
.ws45{word-spacing:5.994000px;}
.ws2a{word-spacing:6.048000px;}
.ws47{word-spacing:6.102000px;}
.ws4d{word-spacing:6.156000px;}
.ws32{word-spacing:6.210000px;}
.ws7c{word-spacing:6.264000px;}
.ws7f{word-spacing:6.318000px;}
.ws3a{word-spacing:6.372000px;}
.ws8e{word-spacing:6.480000px;}
.ws34{word-spacing:6.534000px;}
.ws2b{word-spacing:6.696000px;}
.wsd1{word-spacing:6.804000px;}
.ws8b{word-spacing:6.966000px;}
.ws84{word-spacing:7.020000px;}
.ws58{word-spacing:7.074000px;}
.ws9c{word-spacing:7.236000px;}
.ws25{word-spacing:7.290000px;}
.wsaa{word-spacing:7.344000px;}
.ws49{word-spacing:7.452000px;}
.ws7a{word-spacing:7.614000px;}
.wsc0{word-spacing:7.722000px;}
.ws3b{word-spacing:7.776000px;}
.ws31{word-spacing:7.938000px;}
.ws69{word-spacing:8.100000px;}
.ws3c{word-spacing:8.208000px;}
.ws91{word-spacing:8.316000px;}
.wsa7{word-spacing:8.370000px;}
.ws76{word-spacing:8.802000px;}
.ws68{word-spacing:9.126000px;}
.wscd{word-spacing:10.692000px;}
.wsca{word-spacing:33.012000px;}
._9{margin-left:-33.011400px;}
._a{margin-left:-30.449400px;}
._3{margin-left:-6.660480px;}
._0{margin-left:-5.343451px;}
._2{margin-left:-3.551146px;}
._1{margin-left:-1.732762px;}
._4{width:1.004443px;}
._6{width:2.268000px;}
._7{width:4.536000px;}
._b{width:9.661470px;}
._c{width:11.509392px;}
._8{width:33.306294px;}
._5{width:1697.137157px;}
.fc2{color:rgb(79,76,76);}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs1{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:41.952600px;}
.y195{bottom:93.311400px;}
.y115{bottom:93.333090px;}
.y1c5{bottom:93.387735px;}
.y1ae{bottom:93.530235px;}
.y25{bottom:93.543150px;}
.y38{bottom:93.555000px;}
.y169{bottom:93.580050px;}
.ye9{bottom:93.585540px;}
.ybe{bottom:93.599535px;}
.y7f{bottom:93.626055px;}
.y92{bottom:93.631695px;}
.y64{bottom:93.636465px;}
.y6f{bottom:93.649200px;}
.y4{bottom:93.653895px;}
.y3{bottom:107.157405px;}
.y194{bottom:114.317850px;}
.y114{bottom:114.338940px;}
.y1c4{bottom:114.394185px;}
.y142{bottom:114.405105px;}
.y15b{bottom:114.406350px;}
.y1ad{bottom:114.536685px;}
.y37{bottom:114.561450px;}
.y168{bottom:114.586500px;}
.ye8{bottom:114.591390px;}
.ybd{bottom:114.605385px;}
.y7e{bottom:114.631905px;}
.y91{bottom:114.637545px;}
.y63{bottom:114.642315px;}
.y6e{bottom:114.655050px;}
.y220{bottom:114.661500px;}
.y2{bottom:120.661500px;}
.y141{bottom:129.403350px;}
.y15a{bottom:129.404595px;}
.y193{bottom:135.324300px;}
.y113{bottom:135.344790px;}
.y1c3{bottom:135.400635px;}
.y1ac{bottom:135.543135px;}
.y36{bottom:135.567300px;}
.y167{bottom:135.592350px;}
.ye7{bottom:135.597240px;}
.ybc{bottom:135.611235px;}
.y7d{bottom:135.637755px;}
.y90{bottom:135.643395px;}
.y62{bottom:135.648165px;}
.y6d{bottom:135.661500px;}
.y140{bottom:144.401595px;}
.y159{bottom:144.403425px;}
.y192{bottom:156.330750px;}
.y112{bottom:156.350640px;}
.y1c2{bottom:156.407085px;}
.y1ab{bottom:156.548985px;}
.y35{bottom:156.573150px;}
.y166{bottom:156.598800px;}
.ye6{bottom:156.603090px;}
.ybb{bottom:156.617085px;}
.y23{bottom:156.643350px;}
.y7c{bottom:156.643605px;}
.y8f{bottom:156.649245px;}
.y61{bottom:156.654015px;}
.y21f{bottom:156.661500px;}
.y13f{bottom:159.400425px;}
.y158{bottom:159.401670px;}
.y13e{bottom:174.398670px;}
.y157{bottom:174.400500px;}
.y1dd{bottom:177.055950px;}
.y191{bottom:177.337200px;}
.y111{bottom:177.356490px;}
.y1c1{bottom:177.412935px;}
.y1aa{bottom:177.555435px;}
.y34{bottom:177.579000px;}
.y165{bottom:177.605250px;}
.ye5{bottom:177.609540px;}
.yba{bottom:177.622935px;}
.y22{bottom:177.649200px;}
.y7b{bottom:177.649455px;}
.y6c{bottom:177.655050px;}
.y8e{bottom:177.655095px;}
.y60{bottom:177.659865px;}
.y21e{bottom:177.661500px;}
.y1dc{bottom:194.811600px;}
.y190{bottom:198.343650px;}
.y110{bottom:198.362340px;}
.y1c0{bottom:198.419385px;}
.y1a9{bottom:198.561885px;}
.y5f{bottom:198.564375px;}
.y33{bottom:198.584850px;}
.y8d{bottom:198.607650px;}
.y164{bottom:198.611700px;}
.ye4{bottom:198.615390px;}
.yb9{bottom:198.628785px;}
.y21{bottom:198.655050px;}
.y7a{bottom:198.655305px;}
.y6b{bottom:198.661500px;}
.y1db{bottom:208.314525px;}
.y18f{bottom:219.350100px;}
.y10f{bottom:219.368790px;}
.y1bf{bottom:219.425835px;}
.y1a8{bottom:219.567735px;}
.y5e{bottom:219.570225px;}
.y32{bottom:219.590700px;}
.y79{bottom:219.591450px;}
.y8c{bottom:219.613500px;}
.y163{bottom:219.617550px;}
.ye3{bottom:219.621240px;}
.yb8{bottom:219.634635px;}
.y20{bottom:219.661500px;}
.y1da{bottom:226.070175px;}
.y18e{bottom:240.355950px;}
.y10e{bottom:240.374640px;}
.y1be{bottom:240.432285px;}
.y1a7{bottom:240.574185px;}
.y5d{bottom:240.576075px;}
.y31{bottom:240.596550px;}
.y78{bottom:240.597300px;}
.y8b{bottom:240.619350px;}
.y162{bottom:240.624000px;}
.ye2{bottom:240.627090px;}
.yb7{bottom:240.640485px;}
.y21d{bottom:240.661500px;}
.y1d9{bottom:243.825825px;}
.y18d{bottom:261.361800px;}
.y10d{bottom:261.380490px;}
.y1bd{bottom:261.438735px;}
.y1a6{bottom:261.580635px;}
.y1d8{bottom:261.581475px;}
.y5c{bottom:261.581925px;}
.y30{bottom:261.602400px;}
.y77{bottom:261.603150px;}
.y8a{bottom:261.625200px;}
.y161{bottom:261.630450px;}
.ye1{bottom:261.633540px;}
.y6a{bottom:261.642150px;}
.yb6{bottom:261.646335px;}
.y1f{bottom:261.661500px;}
.y1d7{bottom:279.337125px;}
.y18c{bottom:282.368250px;}
.y10c{bottom:282.386340px;}
.y1bc{bottom:282.445185px;}
.y1a5{bottom:282.587085px;}
.y5b{bottom:282.588375px;}
.y2f{bottom:282.608250px;}
.y76{bottom:282.609000px;}
.y89{bottom:282.631650px;}
.y160{bottom:282.636900px;}
.ye0{bottom:282.639390px;}
.y69{bottom:282.648600px;}
.yb5{bottom:282.652185px;}
.y21c{bottom:282.661500px;}
.y1d6{bottom:292.840050px;}
.y18b{bottom:303.374700px;}
.y10b{bottom:303.392790px;}
.y13b{bottom:303.438150px;}
.y1bb{bottom:303.451635px;}
.y1a4{bottom:303.593535px;}
.y5a{bottom:303.594225px;}
.y2e{bottom:303.614100px;}
.y75{bottom:303.614850px;}
.y88{bottom:303.637500px;}
.y119{bottom:303.638100px;}
.y15f{bottom:303.642750px;}
.ydf{bottom:303.645240px;}
.y68{bottom:303.655050px;}
.yb4{bottom:303.658035px;}
.y21b{bottom:303.661500px;}
.y1d5{bottom:310.595700px;}
.y18a{bottom:324.381150px;}
.y10a{bottom:324.398640px;}
.yb3{bottom:324.443595px;}
.y13a{bottom:324.444000px;}
.y1ba{bottom:324.458085px;}
.y1a3{bottom:324.599385px;}
.y59{bottom:324.600075px;}
.y2d{bottom:324.619950px;}
.y74{bottom:324.621300px;}
.y87{bottom:324.643350px;}
.y118{bottom:324.643950px;}
.y15e{bottom:324.649200px;}
.yde{bottom:324.651090px;}
.y67{bottom:324.661500px;}
.y1d4{bottom:328.351350px;}
.y1e{bottom:339.213960px;}
.y1d3{bottom:341.854275px;}
.y189{bottom:345.387600px;}
.y109{bottom:345.404490px;}
.yb2{bottom:345.449445px;}
.y139{bottom:345.449850px;}
.y1b9{bottom:345.464535px;}
.y1a2{bottom:345.605835px;}
.y58{bottom:345.605925px;}
.y2c{bottom:345.625800px;}
.y73{bottom:345.627150px;}
.y86{bottom:345.649200px;}
.y117{bottom:345.649800px;}
.y15d{bottom:345.655650px;}
.ydd{bottom:345.657540px;}
.y21a{bottom:345.661500px;}
.y1d2{bottom:359.609925px;}
.y188{bottom:366.394050px;}
.y108{bottom:366.410340px;}
.yb1{bottom:366.455295px;}
.y138{bottom:366.456300px;}
.y1b8{bottom:366.470985px;}
.ydc{bottom:366.561450px;}
.y1a1{bottom:366.611685px;}
.y57{bottom:366.611775px;}
.y2b{bottom:366.631650px;}
.y72{bottom:366.633000px;}
.y85{bottom:366.655050px;}
.y116{bottom:366.655650px;}
.y15c{bottom:366.661500px;}
.y1d{bottom:372.717810px;}
.y1d1{bottom:377.365575px;}
.y187{bottom:387.400500px;}
.y107{bottom:387.416190px;}
.yb0{bottom:387.461145px;}
.y137{bottom:387.462150px;}
.y1b7{bottom:387.477435px;}
.ydb{bottom:387.567300px;}
.y1a0{bottom:387.617535px;}
.y56{bottom:387.617625px;}
.y2a{bottom:387.637500px;}
.y71{bottom:387.638850px;}
.y84{bottom:387.661500px;}
.y1d0{bottom:390.868500px;}
.y83{bottom:391.271775px;}
.y1c{bottom:392.213700px;}
.y1cf{bottom:404.371425px;}
.y82{bottom:406.270605px;}
.y186{bottom:408.406950px;}
.y106{bottom:408.422040px;}
.yaf{bottom:408.466995px;}
.y136{bottom:408.468000px;}
.y1b6{bottom:408.483885px;}
.yda{bottom:408.573150px;}
.y19f{bottom:408.623385px;}
.y55{bottom:408.623475px;}
.y29{bottom:408.643350px;}
.y70{bottom:408.644700px;}
.y219{bottom:408.661500px;}
.y197{bottom:417.566670px;}
.y1ce{bottom:417.874350px;}
.y1b{bottom:420.221550px;}
.y185{bottom:429.413400px;}
.y105{bottom:429.427890px;}
.yae{bottom:429.472845px;}
.y135{bottom:429.473850px;}
.y1b5{bottom:429.489735px;}
.yd9{bottom:429.579000px;}
.y54{bottom:429.629325px;}
.y19e{bottom:429.629835px;}
.y28{bottom:429.649200px;}
.y218{bottom:429.661500px;}
.y1cd{bottom:431.377275px;}
.y196{bottom:432.565500px;}
.yc0{bottom:433.915170px;}
.y13d{bottom:436.366170px;}
.y1a{bottom:439.721550px;}
.ybf{bottom:448.914000px;}
.y1cc{bottom:449.132925px;}
.y184{bottom:450.419850px;}
.y104{bottom:450.433740px;}
.yad{bottom:450.478695px;}
.y134{bottom:450.479700px;}
.y1b4{bottom:450.496185px;}
.yd8{bottom:450.584850px;}
.y53{bottom:450.635175px;}
.y19d{bottom:450.635685px;}
.y27{bottom:450.655050px;}
.y217{bottom:450.661500px;}
.y13c{bottom:451.365000px;}
.y81{bottom:455.491755px;}
.y19{bottom:459.221550px;}
.y1cb{bottom:462.635850px;}
.y80{bottom:470.490000px;}
.y183{bottom:471.426300px;}
.y103{bottom:471.439590px;}
.yac{bottom:471.484545px;}
.y133{bottom:471.486150px;}
.y1b3{bottom:471.502635px;}
.y150{bottom:471.581250px;}
.yd7{bottom:471.590700px;}
.y149{bottom:471.624000px;}
.y52{bottom:471.641025px;}
.y19c{bottom:471.642135px;}
.y26{bottom:471.661500px;}
.y18{bottom:478.721550px;}
.y1ca{bottom:480.391500px;}
.y182{bottom:492.432150px;}
.y102{bottom:492.445440px;}
.yab{bottom:492.490395px;}
.y132{bottom:492.492000px;}
.y1b2{bottom:492.509085px;}
.y14f{bottom:492.587700px;}
.yd6{bottom:492.596550px;}
.y148{bottom:492.630450px;}
.y51{bottom:492.646875px;}
.y19b{bottom:492.648585px;}
.y216{bottom:492.661500px;}
.y1c9{bottom:493.894425px;}
.y17{bottom:498.221550px;}
.y1c8{bottom:511.650075px;}
.y181{bottom:513.438000px;}
.y101{bottom:513.451290px;}
.yaa{bottom:513.496245px;}
.y131{bottom:513.497850px;}
.y1b1{bottom:513.514935px;}
.y14e{bottom:513.594150px;}
.yd5{bottom:513.602400px;}
.y147{bottom:513.636300px;}
.y50{bottom:513.652725px;}
.y19a{bottom:513.655035px;}
.y215{bottom:513.661500px;}
.y16{bottom:517.721550px;}
.y66{bottom:523.750755px;}
.y1c7{bottom:525.153000px;}
.y180{bottom:534.444450px;}
.y100{bottom:534.457140px;}
.ya9{bottom:534.502095px;}
.y130{bottom:534.503700px;}
.y1b0{bottom:534.520785px;}
.y14d{bottom:534.600600px;}
.yd4{bottom:534.608850px;}
.y146{bottom:534.642750px;}
.y199{bottom:534.655050px;}
.y4f{bottom:534.658575px;}
.y214{bottom:534.661500px;}
.y15{bottom:537.221550px;}
.y65{bottom:538.749000px;}
.y17f{bottom:555.450300px;}
.yff{bottom:555.462990px;}
.ya8{bottom:555.507945px;}
.y12f{bottom:555.509550px;}
.y1af{bottom:555.527235px;}
.y4e{bottom:555.562500px;}
.y14c{bottom:555.607050px;}
.yd3{bottom:555.614700px;}
.y145{bottom:555.649200px;}
.y198{bottom:555.661500px;}
.y14{bottom:565.225800px;}
.y17e{bottom:576.456750px;}
.yfe{bottom:576.469440px;}
.ya7{bottom:576.513795px;}
.y12e{bottom:576.515400px;}
.y4d{bottom:576.568350px;}
.y14b{bottom:576.613500px;}
.yd2{bottom:576.620550px;}
.y144{bottom:576.655050px;}
.y213{bottom:576.661500px;}
.y13{bottom:584.725800px;}
.y17d{bottom:597.463200px;}
.yfd{bottom:597.475290px;}
.ya6{bottom:597.519645px;}
.y12d{bottom:597.521250px;}
.y4c{bottom:597.574200px;}
.y14a{bottom:597.619950px;}
.yd1{bottom:597.626400px;}
.y143{bottom:597.661500px;}
.y17c{bottom:618.469650px;}
.yfc{bottom:618.481140px;}
.ya5{bottom:618.525495px;}
.y12c{bottom:618.527100px;}
.y203{bottom:618.555825px;}
.y4b{bottom:618.580050px;}
.y1f0{bottom:618.596115px;}
.yd0{bottom:618.632250px;}
.y212{bottom:618.661500px;}
.y1c6{bottom:619.132500px;}
.y12{bottom:621.229650px;}
.y17b{bottom:639.476100px;}
.yfb{bottom:639.486990px;}
.ya4{bottom:639.531345px;}
.y12b{bottom:639.533550px;}
.y202{bottom:639.561675px;}
.y4a{bottom:639.585900px;}
.y1ef{bottom:639.601965px;}
.ycf{bottom:639.638100px;}
.y211{bottom:639.661500px;}
.y11{bottom:649.237500px;}
.y17a{bottom:660.482550px;}
.yfa{bottom:660.493440px;}
.ya3{bottom:660.537195px;}
.y12a{bottom:660.539400px;}
.y201{bottom:660.567525px;}
.y49{bottom:660.591750px;}
.y1ee{bottom:660.607815px;}
.yce{bottom:660.643950px;}
.y210{bottom:660.661500px;}
.y10{bottom:668.737500px;}
.y179{bottom:681.489000px;}
.yf9{bottom:681.499290px;}
.ya2{bottom:681.543045px;}
.y129{bottom:681.545250px;}
.y200{bottom:681.573375px;}
.y48{bottom:681.597600px;}
.y1ed{bottom:681.613665px;}
.ycd{bottom:681.649800px;}
.y20f{bottom:681.661500px;}
.y156{bottom:682.093605px;}
.yf{bottom:688.237500px;}
.y155{bottom:697.091850px;}
.y178{bottom:702.494850px;}
.yf8{bottom:702.505140px;}
.ya1{bottom:702.548895px;}
.y128{bottom:702.551100px;}
.y1ff{bottom:702.579225px;}
.y47{bottom:702.603450px;}
.y1ec{bottom:702.619515px;}
.ycc{bottom:702.655650px;}
.y20e{bottom:702.661500px;}
.ye{bottom:707.737500px;}
.y154{bottom:712.090095px;}
.y177{bottom:723.500700px;}
.yf7{bottom:723.510990px;}
.ya0{bottom:723.554745px;}
.y127{bottom:723.556950px;}
.y1fe{bottom:723.585075px;}
.y46{bottom:723.609300px;}
.y1eb{bottom:723.625365px;}
.ycb{bottom:723.661500px;}
.y153{bottom:727.088925px;}
.yd{bottom:727.237500px;}
.y152{bottom:742.087170px;}
.y176{bottom:744.507150px;}
.yf6{bottom:744.516840px;}
.y9f{bottom:744.560595px;}
.y126{bottom:744.562800px;}
.y1fd{bottom:744.590925px;}
.y45{bottom:744.615150px;}
.y1ea{bottom:744.631215px;}
.y20d{bottom:744.661500px;}
.yc{bottom:746.737500px;}
.y151{bottom:757.086000px;}
.y175{bottom:765.513000px;}
.yf5{bottom:765.522690px;}
.y9e{bottom:765.567045px;}
.y125{bottom:765.568650px;}
.y1fc{bottom:765.596775px;}
.y44{bottom:765.621000px;}
.y1e9{bottom:765.637065px;}
.yca{bottom:765.655650px;}
.y20c{bottom:765.661500px;}
.yb{bottom:766.237500px;}
.y174{bottom:786.518850px;}
.yf4{bottom:786.528540px;}
.y9d{bottom:786.572895px;}
.y124{bottom:786.574500px;}
.y1fb{bottom:786.602625px;}
.y43{bottom:786.626850px;}
.y1e8{bottom:786.642915px;}
.yc9{bottom:786.661500px;}
.y173{bottom:807.524700px;}
.yf3{bottom:807.534390px;}
.y9c{bottom:807.578745px;}
.y123{bottom:807.580350px;}
.y1fa{bottom:807.608475px;}
.y42{bottom:807.632700px;}
.y1e7{bottom:807.648765px;}
.y20b{bottom:807.661500px;}
.ya{bottom:819.753000px;}
.y172{bottom:828.531150px;}
.yf2{bottom:828.540240px;}
.y9b{bottom:828.585195px;}
.y122{bottom:828.586200px;}
.y1f9{bottom:828.614325px;}
.y41{bottom:828.639150px;}
.y1e6{bottom:828.655215px;}
.y20a{bottom:828.661500px;}
.y9{bottom:840.753000px;}
.y171{bottom:849.537000px;}
.yf1{bottom:849.546090px;}
.y9a{bottom:849.591045px;}
.y121{bottom:849.592050px;}
.yc8{bottom:849.619950px;}
.y1f8{bottom:849.620775px;}
.y1e5{bottom:849.624750px;}
.y40{bottom:849.645000px;}
.y209{bottom:849.661500px;}
.y8{bottom:861.753000px;}
.y170{bottom:870.543450px;}
.yf0{bottom:870.551940px;}
.y99{bottom:870.596895px;}
.y120{bottom:870.598500px;}
.yc7{bottom:870.625800px;}
.y1f7{bottom:870.626625px;}
.y1e4{bottom:870.630600px;}
.y3f{bottom:870.650850px;}
.y208{bottom:870.661500px;}
.y16f{bottom:891.549900px;}
.yef{bottom:891.557790px;}
.y98{bottom:891.603345px;}
.y11f{bottom:891.604350px;}
.yc6{bottom:891.631650px;}
.y1f6{bottom:891.632475px;}
.y1e3{bottom:891.636450px;}
.y3e{bottom:891.657300px;}
.y207{bottom:891.661500px;}
.y3d{bottom:912.532500px;}
.y16e{bottom:912.556350px;}
.yee{bottom:912.563640px;}
.y97{bottom:912.609195px;}
.y11e{bottom:912.610200px;}
.yc5{bottom:912.637500px;}
.y1f5{bottom:912.638925px;}
.y1e2{bottom:912.642300px;}
.y206{bottom:912.661500px;}
.y7{bottom:916.792500px;}
.y3c{bottom:933.538350px;}
.y16d{bottom:933.562800px;}
.yed{bottom:933.569490px;}
.y96{bottom:933.615045px;}
.y11d{bottom:933.616050px;}
.yc4{bottom:933.643350px;}
.y1f4{bottom:933.644775px;}
.y1e1{bottom:933.648150px;}
.y205{bottom:933.661500px;}
.y3b{bottom:954.544200px;}
.y16c{bottom:954.569250px;}
.yec{bottom:954.575340px;}
.y95{bottom:954.620895px;}
.y11c{bottom:954.621900px;}
.yc3{bottom:954.649200px;}
.y1f3{bottom:954.650625px;}
.y1e0{bottom:954.654600px;}
.y204{bottom:954.661500px;}
.y6{bottom:955.780800px;}
.y3a{bottom:975.550650px;}
.y16b{bottom:975.575700px;}
.yeb{bottom:975.581190px;}
.y94{bottom:975.627345px;}
.y11b{bottom:975.627750px;}
.y1df{bottom:975.654600px;}
.yc2{bottom:975.655650px;}
.y1f2{bottom:975.656475px;}
.y5{bottom:994.768500px;}
.y39{bottom:996.556500px;}
.y16a{bottom:996.581550px;}
.yea{bottom:996.587040px;}
.y1f1{bottom:996.596115px;}
.y93{bottom:996.633195px;}
.y11a{bottom:996.633600px;}
.y1de{bottom:996.660450px;}
.yc1{bottom:996.661500px;}
.y24{bottom:1041.732600px;}
.h3{height:35.568000px;}
.hb{height:38.304000px;}
.hf{height:39.852000px;}
.h7{height:43.776000px;}
.h9{height:43.792440px;}
.h8{height:43.860000px;}
.h6{height:44.280000px;}
.h5{height:45.120000px;}
.h2{height:49.248000px;}
.h15{height:49.271400px;}
.h14{height:49.273740px;}
.h11{height:49.393260px;}
.h12{height:49.463580px;}
.h16{height:49.512840px;}
.h10{height:49.529220px;}
.he{height:49.655760px;}
.hd{height:49.658100px;}
.hc{height:49.770600px;}
.h13{height:50.131560px;}
.ha{height:54.144000px;}
.h4{height:106.272000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:71.276400px;}
.x2{left:85.039500px;}
.x3{left:93.543150px;}
.xf{left:101.235300px;}
.x8{left:109.003650px;}
.x1c{left:110.490300px;}
.x12{left:115.894950px;}
.xc{left:119.064150px;}
.x1d{left:122.613150px;}
.x5{left:127.564785px;}
.x1b{left:144.659250px;}
.x1a{left:147.885450px;}
.x18{left:149.357250px;}
.xd{left:150.624990px;}
.x10{left:160.363950px;}
.x16{left:166.315350px;}
.x1e{left:169.132500px;}
.x19{left:173.603400px;}
.x9{left:176.314500px;}
.x15{left:178.357500px;}
.x14{left:210.082500px;}
.x17{left:280.984475px;}
.xb{left:451.771500px;}
.x6{left:460.272645px;}
.x11{left:485.778420px;}
.x7{left:494.293950px;}
.xe{left:518.768640px;}
.x13{left:586.761450px;}
.x1{left:776.853000px;}
.xa{left:829.134000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.222933pt;}
.v2{vertical-align:15.983360pt;}
.ls7{letter-spacing:-1.776000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.279840pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000853pt;}
.lsb{letter-spacing:0.001173pt;}
.ls4{letter-spacing:0.001323pt;}
.ls0{letter-spacing:1.143893pt;}
.ls8{letter-spacing:3.551840pt;}
.ls5{letter-spacing:4.030987pt;}
.ls3{letter-spacing:6.358080pt;}
.ws1{word-spacing:-30.720000pt;}
.ws80{word-spacing:-15.360000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws81{word-spacing:-12.864000pt;}
.ws2{word-spacing:-11.861333pt;}
.wsaf{word-spacing:-11.520000pt;}
.wsc1{word-spacing:-10.378667pt;}
.ws0{word-spacing:-9.637333pt;}
.ws19{word-spacing:-7.779552pt;}
.ws82{word-spacing:-7.499712pt;}
.ws3{word-spacing:-6.915157pt;}
.wsb9{word-spacing:-3.024000pt;}
.wsbc{word-spacing:-2.976000pt;}
.ws5d{word-spacing:-2.688000pt;}
.ws16{word-spacing:-2.640000pt;}
.wsba{word-spacing:-2.592000pt;}
.ws6b{word-spacing:-2.544000pt;}
.ws7b{word-spacing:-2.496000pt;}
.ws62{word-spacing:-2.448000pt;}
.ws61{word-spacing:-2.400000pt;}
.ws17{word-spacing:-2.304000pt;}
.wsd0{word-spacing:-2.208000pt;}
.ws18{word-spacing:-2.160000pt;}
.ws53{word-spacing:-2.112000pt;}
.wsd5{word-spacing:-2.090667pt;}
.wsbf{word-spacing:-2.016000pt;}
.ws8{word-spacing:-1.962667pt;}
.ws95{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.872000pt;}
.ws9{word-spacing:-1.834667pt;}
.ws2e{word-spacing:-1.824000pt;}
.ws28{word-spacing:-1.776000pt;}
.ws86{word-spacing:-1.728000pt;}
.ws67{word-spacing:-1.680000pt;}
.wscc{word-spacing:-1.642667pt;}
.ws89{word-spacing:-1.632000pt;}
.ws51{word-spacing:-1.584000pt;}
.ws14{word-spacing:-1.578667pt;}
.wsb0{word-spacing:-1.536000pt;}
.wsc5{word-spacing:-1.493333pt;}
.ws1a{word-spacing:-1.488000pt;}
.wsbe{word-spacing:-1.440000pt;}
.ws66{word-spacing:-1.392000pt;}
.ws70{word-spacing:-1.344000pt;}
.ws93{word-spacing:-1.296000pt;}
.ws72{word-spacing:-1.248000pt;}
.wsd{word-spacing:-1.237333pt;}
.ws73{word-spacing:-1.200000pt;}
.ws71{word-spacing:-1.152000pt;}
.ws6d{word-spacing:-1.104000pt;}
.wsce{word-spacing:-1.056000pt;}
.ws13{word-spacing:-1.024000pt;}
.wsb6{word-spacing:-1.008000pt;}
.wse{word-spacing:-0.981333pt;}
.ws60{word-spacing:-0.960000pt;}
.wsb2{word-spacing:-0.864000pt;}
.wsd2{word-spacing:-0.853333pt;}
.wsbd{word-spacing:-0.816000pt;}
.wsc6{word-spacing:-0.784000pt;}
.wsd7{word-spacing:-0.725333pt;}
.ws35{word-spacing:-0.720000pt;}
.wsa5{word-spacing:-0.672000pt;}
.ws54{word-spacing:-0.576000pt;}
.wsd9{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.528000pt;}
.wsb5{word-spacing:-0.480000pt;}
.ws8a{word-spacing:-0.432000pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.336000pt;}
.wsc8{word-spacing:-0.298667pt;}
.ws59{word-spacing:-0.288000pt;}
.wsc2{word-spacing:-0.261333pt;}
.ws5e{word-spacing:-0.240000pt;}
.ws98{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.170667pt;}
.ws4b{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.048000pt;}
.wsd4{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:0.042667pt;}
.wscf{word-spacing:0.048000pt;}
.wsc9{word-spacing:0.074667pt;}
.ws8f{word-spacing:0.096000pt;}
.wsbb{word-spacing:0.144000pt;}
.wsc4{word-spacing:0.149333pt;}
.ws94{word-spacing:0.192000pt;}
.ws9d{word-spacing:0.240000pt;}
.wsc7{word-spacing:0.261333pt;}
.ws6{word-spacing:0.277333pt;}
.ws9e{word-spacing:0.288000pt;}
.ws3d{word-spacing:0.336000pt;}
.ws96{word-spacing:0.384000pt;}
.wsb{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.528000pt;}
.wsc3{word-spacing:0.560000pt;}
.wsa2{word-spacing:0.576000pt;}
.ws9f{word-spacing:0.624000pt;}
.ws37{word-spacing:0.672000pt;}
.ws56{word-spacing:0.720000pt;}
.ws4a{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.816000pt;}
.ws6f{word-spacing:0.864000pt;}
.ws85{word-spacing:0.912000pt;}
.ws9b{word-spacing:0.960000pt;}
.wsa9{word-spacing:1.008000pt;}
.wsa{word-spacing:1.024000pt;}
.ws41{word-spacing:1.056000pt;}
.wsa4{word-spacing:1.104000pt;}
.ws7{word-spacing:1.144000pt;}
.ws21{word-spacing:1.152000pt;}
.wsda{word-spacing:1.194667pt;}
.ws57{word-spacing:1.248000pt;}
.ws42{word-spacing:1.296000pt;}
.ws2c{word-spacing:1.344000pt;}
.ws77{word-spacing:1.392000pt;}
.wsb7{word-spacing:1.440000pt;}
.wsab{word-spacing:1.488000pt;}
.wsdc{word-spacing:1.493333pt;}
.wsa8{word-spacing:1.536000pt;}
.ws3f{word-spacing:1.584000pt;}
.wsdb{word-spacing:1.621333pt;}
.ws97{word-spacing:1.680000pt;}
.ws10{word-spacing:1.706667pt;}
.ws74{word-spacing:1.728000pt;}
.ws1c{word-spacing:1.776000pt;}
.ws79{word-spacing:1.824000pt;}
.ws33{word-spacing:1.872000pt;}
.wsb1{word-spacing:1.920000pt;}
.ws22{word-spacing:1.968000pt;}
.ws11{word-spacing:2.005333pt;}
.ws39{word-spacing:2.016000pt;}
.ws87{word-spacing:2.064000pt;}
.ws65{word-spacing:2.112000pt;}
.wsd3{word-spacing:2.133333pt;}
.ws26{word-spacing:2.160000pt;}
.ws2d{word-spacing:2.208000pt;}
.ws78{word-spacing:2.256000pt;}
.wscb{word-spacing:2.277333pt;}
.wsf{word-spacing:2.304000pt;}
.ws5c{word-spacing:2.352000pt;}
.ws75{word-spacing:2.400000pt;}
.ws50{word-spacing:2.448000pt;}
.wsdd{word-spacing:2.474667pt;}
.ws4c{word-spacing:2.496000pt;}
.ws63{word-spacing:2.544000pt;}
.ws7d{word-spacing:2.640000pt;}
.wsd8{word-spacing:2.688000pt;}
.ws46{word-spacing:2.736000pt;}
.ws1f{word-spacing:2.784000pt;}
.wsb4{word-spacing:2.832000pt;}
.wsb8{word-spacing:2.880000pt;}
.ws99{word-spacing:2.928000pt;}
.ws1e{word-spacing:2.976000pt;}
.ws27{word-spacing:3.024000pt;}
.ws92{word-spacing:3.072000pt;}
.ws6a{word-spacing:3.120000pt;}
.wsd6{word-spacing:3.157333pt;}
.ws90{word-spacing:3.168000pt;}
.wsac{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.312000pt;}
.ws48{word-spacing:3.360000pt;}
.ws5a{word-spacing:3.408000pt;}
.ws7e{word-spacing:3.456000pt;}
.wsad{word-spacing:3.504000pt;}
.ws6e{word-spacing:3.552000pt;}
.wsa0{word-spacing:3.600000pt;}
.ws8d{word-spacing:3.648000pt;}
.ws20{word-spacing:3.696000pt;}
.ws1d{word-spacing:3.744000pt;}
.ws55{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.888000pt;}
.ws52{word-spacing:3.936000pt;}
.ws44{word-spacing:3.984000pt;}
.ws8c{word-spacing:4.032000pt;}
.ws36{word-spacing:4.128000pt;}
.wsa6{word-spacing:4.176000pt;}
.ws24{word-spacing:4.272000pt;}
.ws64{word-spacing:4.416000pt;}
.ws30{word-spacing:4.464000pt;}
.wsa3{word-spacing:4.512000pt;}
.ws43{word-spacing:4.560000pt;}
.ws23{word-spacing:4.656000pt;}
.ws4f{word-spacing:4.704000pt;}
.ws9a{word-spacing:4.752000pt;}
.ws88{word-spacing:4.800000pt;}
.wsb3{word-spacing:4.848000pt;}
.ws29{word-spacing:4.944000pt;}
.ws40{word-spacing:4.992000pt;}
.ws83{word-spacing:5.040000pt;}
.ws6c{word-spacing:5.088000pt;}
.ws45{word-spacing:5.328000pt;}
.ws2a{word-spacing:5.376000pt;}
.ws47{word-spacing:5.424000pt;}
.ws4d{word-spacing:5.472000pt;}
.ws32{word-spacing:5.520000pt;}
.ws7c{word-spacing:5.568000pt;}
.ws7f{word-spacing:5.616000pt;}
.ws3a{word-spacing:5.664000pt;}
.ws8e{word-spacing:5.760000pt;}
.ws34{word-spacing:5.808000pt;}
.ws2b{word-spacing:5.952000pt;}
.wsd1{word-spacing:6.048000pt;}
.ws8b{word-spacing:6.192000pt;}
.ws84{word-spacing:6.240000pt;}
.ws58{word-spacing:6.288000pt;}
.ws9c{word-spacing:6.432000pt;}
.ws25{word-spacing:6.480000pt;}
.wsaa{word-spacing:6.528000pt;}
.ws49{word-spacing:6.624000pt;}
.ws7a{word-spacing:6.768000pt;}
.wsc0{word-spacing:6.864000pt;}
.ws3b{word-spacing:6.912000pt;}
.ws31{word-spacing:7.056000pt;}
.ws69{word-spacing:7.200000pt;}
.ws3c{word-spacing:7.296000pt;}
.ws91{word-spacing:7.392000pt;}
.wsa7{word-spacing:7.440000pt;}
.ws76{word-spacing:7.824000pt;}
.ws68{word-spacing:8.112000pt;}
.wscd{word-spacing:9.504000pt;}
.wsca{word-spacing:29.344000pt;}
._9{margin-left:-29.343467pt;}
._a{margin-left:-27.066133pt;}
._3{margin-left:-5.920427pt;}
._0{margin-left:-4.749734pt;}
._2{margin-left:-3.156574pt;}
._1{margin-left:-1.540233pt;}
._4{width:0.892838pt;}
._6{width:2.016000pt;}
._7{width:4.032000pt;}
._b{width:8.587973pt;}
._c{width:10.230571pt;}
._8{width:29.605595pt;}
._5{width:1508.566362pt;}
.fs5{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs1{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.291200pt;}
.y195{bottom:82.943467pt;}
.y115{bottom:82.962747pt;}
.y1c5{bottom:83.011320pt;}
.y1ae{bottom:83.137987pt;}
.y25{bottom:83.149467pt;}
.y38{bottom:83.160000pt;}
.y169{bottom:83.182267pt;}
.ye9{bottom:83.187147pt;}
.ybe{bottom:83.199587pt;}
.y7f{bottom:83.223160pt;}
.y92{bottom:83.228173pt;}
.y64{bottom:83.232413pt;}
.y6f{bottom:83.243733pt;}
.y4{bottom:83.247907pt;}
.y3{bottom:95.251027pt;}
.y194{bottom:101.615867pt;}
.y114{bottom:101.634613pt;}
.y1c4{bottom:101.683720pt;}
.y142{bottom:101.693427pt;}
.y15b{bottom:101.694533pt;}
.y1ad{bottom:101.810387pt;}
.y37{bottom:101.832400pt;}
.y168{bottom:101.854667pt;}
.ye8{bottom:101.859013pt;}
.ybd{bottom:101.871453pt;}
.y7e{bottom:101.895027pt;}
.y91{bottom:101.900040pt;}
.y63{bottom:101.904280pt;}
.y6e{bottom:101.915600pt;}
.y220{bottom:101.921333pt;}
.y2{bottom:107.254667pt;}
.y141{bottom:115.025200pt;}
.y15a{bottom:115.026307pt;}
.y193{bottom:120.288267pt;}
.y113{bottom:120.306480pt;}
.y1c3{bottom:120.356120pt;}
.y1ac{bottom:120.482787pt;}
.y36{bottom:120.504267pt;}
.y167{bottom:120.526533pt;}
.ye7{bottom:120.530880pt;}
.ybc{bottom:120.543320pt;}
.y7d{bottom:120.566893pt;}
.y90{bottom:120.571907pt;}
.y62{bottom:120.576147pt;}
.y6d{bottom:120.588000pt;}
.y140{bottom:128.356973pt;}
.y159{bottom:128.358600pt;}
.y192{bottom:138.960667pt;}
.y112{bottom:138.978347pt;}
.y1c2{bottom:139.028520pt;}
.y1ab{bottom:139.154653pt;}
.y35{bottom:139.176133pt;}
.y166{bottom:139.198933pt;}
.ye6{bottom:139.202747pt;}
.ybb{bottom:139.215187pt;}
.y23{bottom:139.238533pt;}
.y7c{bottom:139.238760pt;}
.y8f{bottom:139.243773pt;}
.y61{bottom:139.248013pt;}
.y21f{bottom:139.254667pt;}
.y13f{bottom:141.689267pt;}
.y158{bottom:141.690373pt;}
.y13e{bottom:155.021040pt;}
.y157{bottom:155.022667pt;}
.y1dd{bottom:157.383067pt;}
.y191{bottom:157.633067pt;}
.y111{bottom:157.650213pt;}
.y1c1{bottom:157.700387pt;}
.y1aa{bottom:157.827053pt;}
.y34{bottom:157.848000pt;}
.y165{bottom:157.871333pt;}
.ye5{bottom:157.875147pt;}
.yba{bottom:157.887053pt;}
.y22{bottom:157.910400pt;}
.y7b{bottom:157.910627pt;}
.y6c{bottom:157.915600pt;}
.y8e{bottom:157.915640pt;}
.y60{bottom:157.919880pt;}
.y21e{bottom:157.921333pt;}
.y1dc{bottom:173.165867pt;}
.y190{bottom:176.305467pt;}
.y110{bottom:176.322080pt;}
.y1c0{bottom:176.372787pt;}
.y1a9{bottom:176.499453pt;}
.y5f{bottom:176.501667pt;}
.y33{bottom:176.519867pt;}
.y8d{bottom:176.540133pt;}
.y164{bottom:176.543733pt;}
.ye4{bottom:176.547013pt;}
.yb9{bottom:176.558920pt;}
.y21{bottom:176.582267pt;}
.y7a{bottom:176.582493pt;}
.y6b{bottom:176.588000pt;}
.y1db{bottom:185.168467pt;}
.y18f{bottom:194.977867pt;}
.y10f{bottom:194.994480pt;}
.y1bf{bottom:195.045187pt;}
.y1a8{bottom:195.171320pt;}
.y5e{bottom:195.173533pt;}
.y32{bottom:195.191733pt;}
.y79{bottom:195.192400pt;}
.y8c{bottom:195.212000pt;}
.y163{bottom:195.215600pt;}
.ye3{bottom:195.218880pt;}
.yb8{bottom:195.230787pt;}
.y20{bottom:195.254667pt;}
.y1da{bottom:200.951267pt;}
.y18e{bottom:213.649733pt;}
.y10e{bottom:213.666347pt;}
.y1be{bottom:213.717587pt;}
.y1a7{bottom:213.843720pt;}
.y5d{bottom:213.845400pt;}
.y31{bottom:213.863600pt;}
.y78{bottom:213.864267pt;}
.y8b{bottom:213.883867pt;}
.y162{bottom:213.888000pt;}
.ye2{bottom:213.890747pt;}
.yb7{bottom:213.902653pt;}
.y21d{bottom:213.921333pt;}
.y1d9{bottom:216.734067pt;}
.y18d{bottom:232.321600pt;}
.y10d{bottom:232.338213pt;}
.y1bd{bottom:232.389987pt;}
.y1a6{bottom:232.516120pt;}
.y1d8{bottom:232.516867pt;}
.y5c{bottom:232.517267pt;}
.y30{bottom:232.535467pt;}
.y77{bottom:232.536133pt;}
.y8a{bottom:232.555733pt;}
.y161{bottom:232.560400pt;}
.ye1{bottom:232.563147pt;}
.y6a{bottom:232.570800pt;}
.yb6{bottom:232.574520pt;}
.y1f{bottom:232.588000pt;}
.y1d7{bottom:248.299667pt;}
.y18c{bottom:250.994000pt;}
.y10c{bottom:251.010080pt;}
.y1bc{bottom:251.062387pt;}
.y1a5{bottom:251.188520pt;}
.y5b{bottom:251.189667pt;}
.y2f{bottom:251.207333pt;}
.y76{bottom:251.208000pt;}
.y89{bottom:251.228133pt;}
.y160{bottom:251.232800pt;}
.ye0{bottom:251.235013pt;}
.y69{bottom:251.243200pt;}
.yb5{bottom:251.246387pt;}
.y21c{bottom:251.254667pt;}
.y1d6{bottom:260.302267pt;}
.y18b{bottom:269.666400pt;}
.y10b{bottom:269.682480pt;}
.y13b{bottom:269.722800pt;}
.y1bb{bottom:269.734787pt;}
.y1a4{bottom:269.860920pt;}
.y5a{bottom:269.861533pt;}
.y2e{bottom:269.879200pt;}
.y75{bottom:269.879867pt;}
.y88{bottom:269.900000pt;}
.y119{bottom:269.900533pt;}
.y15f{bottom:269.904667pt;}
.ydf{bottom:269.906880pt;}
.y68{bottom:269.915600pt;}
.yb4{bottom:269.918253pt;}
.y21b{bottom:269.921333pt;}
.y1d5{bottom:276.085067pt;}
.y18a{bottom:288.338800pt;}
.y10a{bottom:288.354347pt;}
.yb3{bottom:288.394307pt;}
.y13a{bottom:288.394667pt;}
.y1ba{bottom:288.407187pt;}
.y1a3{bottom:288.532787pt;}
.y59{bottom:288.533400pt;}
.y2d{bottom:288.551067pt;}
.y74{bottom:288.552267pt;}
.y87{bottom:288.571867pt;}
.y118{bottom:288.572400pt;}
.y15e{bottom:288.577067pt;}
.yde{bottom:288.578747pt;}
.y67{bottom:288.588000pt;}
.y1d4{bottom:291.867867pt;}
.y1e{bottom:301.523520pt;}
.y1d3{bottom:303.870467pt;}
.y189{bottom:307.011200pt;}
.y109{bottom:307.026213pt;}
.yb2{bottom:307.066173pt;}
.y139{bottom:307.066533pt;}
.y1b9{bottom:307.079587pt;}
.y1a2{bottom:307.205187pt;}
.y58{bottom:307.205267pt;}
.y2c{bottom:307.222933pt;}
.y73{bottom:307.224133pt;}
.y86{bottom:307.243733pt;}
.y117{bottom:307.244267pt;}
.y15d{bottom:307.249467pt;}
.ydd{bottom:307.251147pt;}
.y21a{bottom:307.254667pt;}
.y1d2{bottom:319.653267pt;}
.y188{bottom:325.683600pt;}
.y108{bottom:325.698080pt;}
.yb1{bottom:325.738040pt;}
.y138{bottom:325.738933pt;}
.y1b8{bottom:325.751987pt;}
.ydc{bottom:325.832400pt;}
.y1a1{bottom:325.877053pt;}
.y57{bottom:325.877133pt;}
.y2b{bottom:325.894800pt;}
.y72{bottom:325.896000pt;}
.y85{bottom:325.915600pt;}
.y116{bottom:325.916133pt;}
.y15c{bottom:325.921333pt;}
.y1d{bottom:331.304720pt;}
.y1d1{bottom:335.436067pt;}
.y187{bottom:344.356000pt;}
.y107{bottom:344.369947pt;}
.yb0{bottom:344.409907pt;}
.y137{bottom:344.410800pt;}
.y1b7{bottom:344.424387pt;}
.ydb{bottom:344.504267pt;}
.y1a0{bottom:344.548920pt;}
.y56{bottom:344.549000pt;}
.y2a{bottom:344.566667pt;}
.y71{bottom:344.567867pt;}
.y84{bottom:344.588000pt;}
.y1d0{bottom:347.438667pt;}
.y83{bottom:347.797133pt;}
.y1c{bottom:348.634400pt;}
.y1cf{bottom:359.441267pt;}
.y82{bottom:361.129427pt;}
.y186{bottom:363.028400pt;}
.y106{bottom:363.041813pt;}
.yaf{bottom:363.081773pt;}
.y136{bottom:363.082667pt;}
.y1b6{bottom:363.096787pt;}
.yda{bottom:363.176133pt;}
.y19f{bottom:363.220787pt;}
.y55{bottom:363.220867pt;}
.y29{bottom:363.238533pt;}
.y70{bottom:363.239733pt;}
.y219{bottom:363.254667pt;}
.y197{bottom:371.170373pt;}
.y1ce{bottom:371.443867pt;}
.y1b{bottom:373.530267pt;}
.y185{bottom:381.700800pt;}
.y105{bottom:381.713680pt;}
.yae{bottom:381.753640pt;}
.y135{bottom:381.754533pt;}
.y1b5{bottom:381.768653pt;}
.yd9{bottom:381.848000pt;}
.y54{bottom:381.892733pt;}
.y19e{bottom:381.893187pt;}
.y28{bottom:381.910400pt;}
.y218{bottom:381.921333pt;}
.y1cd{bottom:383.446467pt;}
.y196{bottom:384.502667pt;}
.yc0{bottom:385.702373pt;}
.y13d{bottom:387.881040pt;}
.y1a{bottom:390.863600pt;}
.ybf{bottom:399.034667pt;}
.y1cc{bottom:399.229267pt;}
.y184{bottom:400.373200pt;}
.y104{bottom:400.385547pt;}
.yad{bottom:400.425507pt;}
.y134{bottom:400.426400pt;}
.y1b4{bottom:400.441053pt;}
.yd8{bottom:400.519867pt;}
.y53{bottom:400.564600pt;}
.y19d{bottom:400.565053pt;}
.y27{bottom:400.582267pt;}
.y217{bottom:400.588000pt;}
.y13c{bottom:401.213333pt;}
.y81{bottom:404.881560pt;}
.y19{bottom:408.196933pt;}
.y1cb{bottom:411.231867pt;}
.y80{bottom:418.213333pt;}
.y183{bottom:419.045600pt;}
.y103{bottom:419.057413pt;}
.yac{bottom:419.097373pt;}
.y133{bottom:419.098800pt;}
.y1b3{bottom:419.113453pt;}
.y150{bottom:419.183333pt;}
.yd7{bottom:419.191733pt;}
.y149{bottom:419.221333pt;}
.y52{bottom:419.236467pt;}
.y19c{bottom:419.237453pt;}
.y26{bottom:419.254667pt;}
.y18{bottom:425.530267pt;}
.y1ca{bottom:427.014667pt;}
.y182{bottom:437.717467pt;}
.y102{bottom:437.729280pt;}
.yab{bottom:437.769240pt;}
.y132{bottom:437.770667pt;}
.y1b2{bottom:437.785853pt;}
.y14f{bottom:437.855733pt;}
.yd6{bottom:437.863600pt;}
.y148{bottom:437.893733pt;}
.y51{bottom:437.908333pt;}
.y19b{bottom:437.909853pt;}
.y216{bottom:437.921333pt;}
.y1c9{bottom:439.017267pt;}
.y17{bottom:442.863600pt;}
.y1c8{bottom:454.800067pt;}
.y181{bottom:456.389333pt;}
.y101{bottom:456.401147pt;}
.yaa{bottom:456.441107pt;}
.y131{bottom:456.442533pt;}
.y1b1{bottom:456.457720pt;}
.y14e{bottom:456.528133pt;}
.yd5{bottom:456.535467pt;}
.y147{bottom:456.565600pt;}
.y50{bottom:456.580200pt;}
.y19a{bottom:456.582253pt;}
.y215{bottom:456.588000pt;}
.y16{bottom:460.196933pt;}
.y66{bottom:465.556227pt;}
.y1c7{bottom:466.802667pt;}
.y180{bottom:475.061733pt;}
.y100{bottom:475.073013pt;}
.ya9{bottom:475.112973pt;}
.y130{bottom:475.114400pt;}
.y1b0{bottom:475.129587pt;}
.y14d{bottom:475.200533pt;}
.yd4{bottom:475.207867pt;}
.y146{bottom:475.238000pt;}
.y199{bottom:475.248933pt;}
.y4f{bottom:475.252067pt;}
.y214{bottom:475.254667pt;}
.y15{bottom:477.530267pt;}
.y65{bottom:478.888000pt;}
.y17f{bottom:493.733600pt;}
.yff{bottom:493.744880pt;}
.ya8{bottom:493.784840pt;}
.y12f{bottom:493.786267pt;}
.y1af{bottom:493.801987pt;}
.y4e{bottom:493.833333pt;}
.y14c{bottom:493.872933pt;}
.yd3{bottom:493.879733pt;}
.y145{bottom:493.910400pt;}
.y198{bottom:493.921333pt;}
.y14{bottom:502.422933pt;}
.y17e{bottom:512.406000pt;}
.yfe{bottom:512.417280pt;}
.ya7{bottom:512.456707pt;}
.y12e{bottom:512.458133pt;}
.y4d{bottom:512.505200pt;}
.y14b{bottom:512.545333pt;}
.yd2{bottom:512.551600pt;}
.y144{bottom:512.582267pt;}
.y213{bottom:512.588000pt;}
.y13{bottom:519.756267pt;}
.y17d{bottom:531.078400pt;}
.yfd{bottom:531.089147pt;}
.ya6{bottom:531.128573pt;}
.y12d{bottom:531.130000pt;}
.y4c{bottom:531.177067pt;}
.y14a{bottom:531.217733pt;}
.yd1{bottom:531.223467pt;}
.y143{bottom:531.254667pt;}
.y17c{bottom:549.750800pt;}
.yfc{bottom:549.761013pt;}
.ya5{bottom:549.800440pt;}
.y12c{bottom:549.801867pt;}
.y203{bottom:549.827400pt;}
.y4b{bottom:549.848933pt;}
.y1f0{bottom:549.863213pt;}
.yd0{bottom:549.895333pt;}
.y212{bottom:549.921333pt;}
.y1c6{bottom:550.340000pt;}
.y12{bottom:552.204133pt;}
.y17b{bottom:568.423200pt;}
.yfb{bottom:568.432880pt;}
.ya4{bottom:568.472307pt;}
.y12b{bottom:568.474267pt;}
.y202{bottom:568.499267pt;}
.y4a{bottom:568.520800pt;}
.y1ef{bottom:568.535080pt;}
.ycf{bottom:568.567200pt;}
.y211{bottom:568.588000pt;}
.y11{bottom:577.100000pt;}
.y17a{bottom:587.095600pt;}
.yfa{bottom:587.105280pt;}
.ya3{bottom:587.144173pt;}
.y12a{bottom:587.146133pt;}
.y201{bottom:587.171133pt;}
.y49{bottom:587.192667pt;}
.y1ee{bottom:587.206947pt;}
.yce{bottom:587.239067pt;}
.y210{bottom:587.254667pt;}
.y10{bottom:594.433333pt;}
.y179{bottom:605.768000pt;}
.yf9{bottom:605.777147pt;}
.ya2{bottom:605.816040pt;}
.y129{bottom:605.818000pt;}
.y200{bottom:605.843000pt;}
.y48{bottom:605.864533pt;}
.y1ed{bottom:605.878813pt;}
.ycd{bottom:605.910933pt;}
.y20f{bottom:605.921333pt;}
.y156{bottom:606.305427pt;}
.yf{bottom:611.766667pt;}
.y155{bottom:619.637200pt;}
.y178{bottom:624.439867pt;}
.yf8{bottom:624.449013pt;}
.ya1{bottom:624.487907pt;}
.y128{bottom:624.489867pt;}
.y1ff{bottom:624.514867pt;}
.y47{bottom:624.536400pt;}
.y1ec{bottom:624.550680pt;}
.ycc{bottom:624.582800pt;}
.y20e{bottom:624.588000pt;}
.ye{bottom:629.100000pt;}
.y154{bottom:632.968973pt;}
.y177{bottom:643.111733pt;}
.yf7{bottom:643.120880pt;}
.ya0{bottom:643.159773pt;}
.y127{bottom:643.161733pt;}
.y1fe{bottom:643.186733pt;}
.y46{bottom:643.208267pt;}
.y1eb{bottom:643.222547pt;}
.ycb{bottom:643.254667pt;}
.y153{bottom:646.301267pt;}
.yd{bottom:646.433333pt;}
.y152{bottom:659.633040pt;}
.y176{bottom:661.784133pt;}
.yf6{bottom:661.792747pt;}
.y9f{bottom:661.831640pt;}
.y126{bottom:661.833600pt;}
.y1fd{bottom:661.858600pt;}
.y45{bottom:661.880133pt;}
.y1ea{bottom:661.894413pt;}
.y20d{bottom:661.921333pt;}
.yc{bottom:663.766667pt;}
.y151{bottom:672.965333pt;}
.y175{bottom:680.456000pt;}
.yf5{bottom:680.464613pt;}
.y9e{bottom:680.504040pt;}
.y125{bottom:680.505467pt;}
.y1fc{bottom:680.530467pt;}
.y44{bottom:680.552000pt;}
.y1e9{bottom:680.566280pt;}
.yca{bottom:680.582800pt;}
.y20c{bottom:680.588000pt;}
.yb{bottom:681.100000pt;}
.y174{bottom:699.127867pt;}
.yf4{bottom:699.136480pt;}
.y9d{bottom:699.175907pt;}
.y124{bottom:699.177333pt;}
.y1fb{bottom:699.202333pt;}
.y43{bottom:699.223867pt;}
.y1e8{bottom:699.238147pt;}
.yc9{bottom:699.254667pt;}
.y173{bottom:717.799733pt;}
.yf3{bottom:717.808347pt;}
.y9c{bottom:717.847773pt;}
.y123{bottom:717.849200pt;}
.y1fa{bottom:717.874200pt;}
.y42{bottom:717.895733pt;}
.y1e7{bottom:717.910013pt;}
.y20b{bottom:717.921333pt;}
.ya{bottom:728.669333pt;}
.y172{bottom:736.472133pt;}
.yf2{bottom:736.480213pt;}
.y9b{bottom:736.520173pt;}
.y122{bottom:736.521067pt;}
.y1f9{bottom:736.546067pt;}
.y41{bottom:736.568133pt;}
.y1e6{bottom:736.582413pt;}
.y20a{bottom:736.588000pt;}
.y9{bottom:747.336000pt;}
.y171{bottom:755.144000pt;}
.yf1{bottom:755.152080pt;}
.y9a{bottom:755.192040pt;}
.y121{bottom:755.192933pt;}
.yc8{bottom:755.217733pt;}
.y1f8{bottom:755.218467pt;}
.y1e5{bottom:755.222000pt;}
.y40{bottom:755.240000pt;}
.y209{bottom:755.254667pt;}
.y8{bottom:766.002667pt;}
.y170{bottom:773.816400pt;}
.yf0{bottom:773.823947pt;}
.y99{bottom:773.863907pt;}
.y120{bottom:773.865333pt;}
.yc7{bottom:773.889600pt;}
.y1f7{bottom:773.890333pt;}
.y1e4{bottom:773.893867pt;}
.y3f{bottom:773.911867pt;}
.y208{bottom:773.921333pt;}
.y16f{bottom:792.488800pt;}
.yef{bottom:792.495813pt;}
.y98{bottom:792.536307pt;}
.y11f{bottom:792.537200pt;}
.yc6{bottom:792.561467pt;}
.y1f6{bottom:792.562200pt;}
.y1e3{bottom:792.565733pt;}
.y3e{bottom:792.584267pt;}
.y207{bottom:792.588000pt;}
.y3d{bottom:811.140000pt;}
.y16e{bottom:811.161200pt;}
.yee{bottom:811.167680pt;}
.y97{bottom:811.208173pt;}
.y11e{bottom:811.209067pt;}
.yc5{bottom:811.233333pt;}
.y1f5{bottom:811.234600pt;}
.y1e2{bottom:811.237600pt;}
.y206{bottom:811.254667pt;}
.y7{bottom:814.926667pt;}
.y3c{bottom:829.811867pt;}
.y16d{bottom:829.833600pt;}
.yed{bottom:829.839547pt;}
.y96{bottom:829.880040pt;}
.y11d{bottom:829.880933pt;}
.yc4{bottom:829.905200pt;}
.y1f4{bottom:829.906467pt;}
.y1e1{bottom:829.909467pt;}
.y205{bottom:829.921333pt;}
.y3b{bottom:848.483733pt;}
.y16c{bottom:848.506000pt;}
.yec{bottom:848.511413pt;}
.y95{bottom:848.551907pt;}
.y11c{bottom:848.552800pt;}
.yc3{bottom:848.577067pt;}
.y1f3{bottom:848.578333pt;}
.y1e0{bottom:848.581867pt;}
.y204{bottom:848.588000pt;}
.y6{bottom:849.582933pt;}
.y3a{bottom:867.156133pt;}
.y16b{bottom:867.178400pt;}
.yeb{bottom:867.183280pt;}
.y94{bottom:867.224307pt;}
.y11b{bottom:867.224667pt;}
.y1df{bottom:867.248533pt;}
.yc2{bottom:867.249467pt;}
.y1f2{bottom:867.250200pt;}
.y5{bottom:884.238667pt;}
.y39{bottom:885.828000pt;}
.y16a{bottom:885.850267pt;}
.yea{bottom:885.855147pt;}
.y1f1{bottom:885.863213pt;}
.y93{bottom:885.896173pt;}
.y11a{bottom:885.896533pt;}
.y1de{bottom:885.920400pt;}
.yc1{bottom:885.921333pt;}
.y24{bottom:925.984533pt;}
.h3{height:31.616000pt;}
.hb{height:34.048000pt;}
.hf{height:35.424000pt;}
.h7{height:38.912000pt;}
.h9{height:38.926613pt;}
.h8{height:38.986667pt;}
.h6{height:39.360000pt;}
.h5{height:40.106667pt;}
.h2{height:43.776000pt;}
.h15{height:43.796800pt;}
.h14{height:43.798880pt;}
.h11{height:43.905120pt;}
.h12{height:43.967627pt;}
.h16{height:44.011413pt;}
.h10{height:44.025973pt;}
.he{height:44.138453pt;}
.hd{height:44.140533pt;}
.hc{height:44.240533pt;}
.h13{height:44.561387pt;}
.ha{height:48.128000pt;}
.h4{height:94.464000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:63.356800pt;}
.x2{left:75.590667pt;}
.x3{left:83.149467pt;}
.xf{left:89.986933pt;}
.x8{left:96.892133pt;}
.x1c{left:98.213600pt;}
.x12{left:103.017733pt;}
.xc{left:105.834800pt;}
.x1d{left:108.989467pt;}
.x5{left:113.390920pt;}
.x1b{left:128.586000pt;}
.x1a{left:131.453733pt;}
.x18{left:132.762000pt;}
.xd{left:133.888880pt;}
.x10{left:142.545733pt;}
.x16{left:147.835867pt;}
.x1e{left:150.340000pt;}
.x19{left:154.314133pt;}
.x9{left:156.724000pt;}
.x15{left:158.540000pt;}
.x14{left:186.740000pt;}
.x17{left:249.763977pt;}
.xb{left:401.574667pt;}
.x6{left:409.131240pt;}
.x11{left:431.803040pt;}
.x7{left:439.372400pt;}
.xe{left:461.127680pt;}
.x13{left:521.565733pt;}
.x1{left:690.536000pt;}
.xa{left:737.008000pt;}
}




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