
    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_62bdbc8c32c56a9c1caec9be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751000;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_973b6fdae1fde0c036367f37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.784000;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_b8e8e1c502f34cb7eb1404e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_b02c14a86a4d1849ecbd2797.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_6feb5c02acdbcac8c772ffe4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_36eb99eb52bf3d92a2b4acd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_eb44d2e9d629face8e411de9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988281;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_62bdbc8c32c56a9c1caec9be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751000;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_d60e47463d807d0c32fa2d8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;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_3bf21211700244deb9445ae7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.640600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:117.000000px;}
.lsb{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.936000px;}
.ls4{letter-spacing:1.656000px;}
.ls8{letter-spacing:1.728000px;}
.ls1{letter-spacing:11.762092px;}
.ls7{letter-spacing:1055.878200px;}
.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:-36.000000px;}
.ws5{word-spacing:-21.600000px;}
.ws16{word-spacing:-19.944000px;}
.ws2{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.620000px;}
.wsa1{word-spacing:-11.304000px;}
.ws38{word-spacing:-9.864000px;}
.ws56{word-spacing:-9.504000px;}
.ws93{word-spacing:-7.632000px;}
.wsb8{word-spacing:-7.560000px;}
.ws86{word-spacing:-7.488000px;}
.wsaf{word-spacing:-6.984000px;}
.wsa6{word-spacing:-6.624000px;}
.wsa5{word-spacing:-5.832000px;}
.wsd0{word-spacing:-5.640000px;}
.wsa0{word-spacing:-5.472000px;}
.ws59{word-spacing:-5.328000px;}
.ws88{word-spacing:-5.256000px;}
.ws39{word-spacing:-5.040000px;}
.wsab{word-spacing:-4.896000px;}
.ws5d{word-spacing:-4.824000px;}
.ws6a{word-spacing:-4.680000px;}
.ws6b{word-spacing:-4.464000px;}
.ws3d{word-spacing:-4.176000px;}
.ws70{word-spacing:-3.960000px;}
.wsdb{word-spacing:-3.900000px;}
.ws8a{word-spacing:-3.744000px;}
.ws14{word-spacing:-3.528000px;}
.ws2a{word-spacing:-3.456000px;}
.ws49{word-spacing:-3.384000px;}
.wsda{word-spacing:-3.360000px;}
.ws17{word-spacing:-3.312000px;}
.ws40{word-spacing:-2.952000px;}
.ws69{word-spacing:-2.808000px;}
.ws3f{word-spacing:-2.736000px;}
.ws35{word-spacing:-2.664000px;}
.ws9f{word-spacing:-2.592000px;}
.wsc7{word-spacing:-2.580000px;}
.ws55{word-spacing:-2.520000px;}
.ws89{word-spacing:-2.376000px;}
.ws13{word-spacing:-2.304000px;}
.ws8b{word-spacing:-2.160000px;}
.ws44{word-spacing:-2.088000px;}
.ws45{word-spacing:-1.872000px;}
.ws85{word-spacing:-1.800000px;}
.ws95{word-spacing:-1.728000px;}
.ws32{word-spacing:-1.656000px;}
.ws50{word-spacing:-1.512000px;}
.ws9{word-spacing:-1.440000px;}
.ws27{word-spacing:-1.368000px;}
.ws29{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.020000px;}
.ws1b{word-spacing:-0.936000px;}
.wscb{word-spacing:-0.900000px;}
.ws4d{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.720000px;}
.wsb4{word-spacing:-0.648000px;}
.ws53{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.wsbf{word-spacing:0.120000px;}
.ws4f{word-spacing:0.144000px;}
.ws48{word-spacing:0.288000px;}
.ws34{word-spacing:0.360000px;}
.ws8c{word-spacing:0.432000px;}
.ws99{word-spacing:0.504000px;}
.ws68{word-spacing:0.576000px;}
.wscd{word-spacing:0.720000px;}
.ws9e{word-spacing:0.792000px;}
.wsc5{word-spacing:0.840000px;}
.ws3b{word-spacing:0.864000px;}
.ws87{word-spacing:0.936000px;}
.ws63{word-spacing:1.152000px;}
.ws2c{word-spacing:1.224000px;}
.ws9a{word-spacing:1.512000px;}
.wsba{word-spacing:1.560000px;}
.ws58{word-spacing:1.584000px;}
.wsd{word-spacing:1.728000px;}
.ws66{word-spacing:1.800000px;}
.wsbb{word-spacing:1.860000px;}
.ws19{word-spacing:2.088000px;}
.ws1f{word-spacing:2.664000px;}
.wsc2{word-spacing:2.700000px;}
.ws26{word-spacing:2.736000px;}
.wsc1{word-spacing:3.060000px;}
.ws1e{word-spacing:3.528000px;}
.wsa4{word-spacing:3.600000px;}
.ws1d{word-spacing:3.672000px;}
.wsbd{word-spacing:3.780000px;}
.ws15{word-spacing:3.960000px;}
.ws60{word-spacing:4.032000px;}
.wsaa{word-spacing:4.104000px;}
.ws6d{word-spacing:4.248000px;}
.ws24{word-spacing:4.320000px;}
.ws1c{word-spacing:4.392000px;}
.ws47{word-spacing:4.464000px;}
.ws2b{word-spacing:4.608000px;}
.wsb6{word-spacing:4.680000px;}
.ws54{word-spacing:4.752000px;}
.ws3c{word-spacing:4.824000px;}
.ws90{word-spacing:4.896000px;}
.wsd8{word-spacing:5.340000px;}
.wsca{word-spacing:5.400000px;}
.ws6e{word-spacing:5.688000px;}
.wsd4{word-spacing:6.000000px;}
.ws3a{word-spacing:6.192000px;}
.wsd6{word-spacing:6.240000px;}
.wsa2{word-spacing:6.336000px;}
.wsbe{word-spacing:6.420000px;}
.wscc{word-spacing:6.540000px;}
.wsa7{word-spacing:6.696000px;}
.wsc8{word-spacing:7.140000px;}
.ws52{word-spacing:7.488000px;}
.wsa8{word-spacing:7.632000px;}
.ws5e{word-spacing:7.704000px;}
.ws4a{word-spacing:7.848000px;}
.wsa9{word-spacing:7.992000px;}
.wsd5{word-spacing:8.340000px;}
.ws71{word-spacing:8.352000px;}
.ws30{word-spacing:8.496000px;}
.ws23{word-spacing:8.568000px;}
.wsb9{word-spacing:8.640000px;}
.wsb2{word-spacing:8.712000px;}
.ws5a{word-spacing:8.856000px;}
.wsad{word-spacing:9.072000px;}
.ws11{word-spacing:9.216000px;}
.ws8d{word-spacing:9.576000px;}
.ws20{word-spacing:9.864000px;}
.wsc4{word-spacing:9.900000px;}
.ws5f{word-spacing:10.152000px;}
.wsac{word-spacing:10.296000px;}
.ws9b{word-spacing:10.512000px;}
.wsb1{word-spacing:10.584000px;}
.ws21{word-spacing:10.656000px;}
.ws36{word-spacing:10.728000px;}
.wsc3{word-spacing:10.740000px;}
.ws12{word-spacing:10.800000px;}
.ws2f{word-spacing:10.944000px;}
.wsc0{word-spacing:11.100000px;}
.ws9c{word-spacing:11.376000px;}
.wse{word-spacing:11.448000px;}
.ws37{word-spacing:11.520000px;}
.ws46{word-spacing:11.592000px;}
.ws5c{word-spacing:11.664000px;}
.ws6c{word-spacing:11.736000px;}
.wsb3{word-spacing:11.808000px;}
.ws2d{word-spacing:11.880000px;}
.wsb0{word-spacing:12.312000px;}
.ws4e{word-spacing:12.528000px;}
.wsa{word-spacing:12.600000px;}
.ws51{word-spacing:12.816000px;}
.ws97{word-spacing:12.888000px;}
.wsf{word-spacing:12.960000px;}
.ws7{word-spacing:13.320000px;}
.ws91{word-spacing:13.464000px;}
.ws33{word-spacing:13.824000px;}
.ws67{word-spacing:14.328000px;}
.ws65{word-spacing:14.400000px;}
.ws42{word-spacing:14.472000px;}
.wsb5{word-spacing:14.616000px;}
.wsce{word-spacing:14.700000px;}
.ws98{word-spacing:14.760000px;}
.ws25{word-spacing:14.832000px;}
.wsb7{word-spacing:14.904000px;}
.ws2e{word-spacing:14.976000px;}
.ws22{word-spacing:15.120000px;}
.ws94{word-spacing:15.408000px;}
.wsd7{word-spacing:15.960000px;}
.ws10{word-spacing:16.128000px;}
.ws5b{word-spacing:16.632000px;}
.ws9d{word-spacing:16.848000px;}
.wsd9{word-spacing:17.160000px;}
.ws64{word-spacing:17.496000px;}
.ws4b{word-spacing:17.640000px;}
.wsd2{word-spacing:18.780000px;}
.ws6f{word-spacing:19.224000px;}
.ws41{word-spacing:19.296000px;}
.wsc{word-spacing:19.368000px;}
.ws61{word-spacing:20.088000px;}
.ws43{word-spacing:21.024000px;}
.ws6{word-spacing:21.240000px;}
.ws1a{word-spacing:21.816000px;}
.wsc6{word-spacing:22.200000px;}
.wscf{word-spacing:22.680000px;}
.ws18{word-spacing:23.112000px;}
.ws8{word-spacing:23.184000px;}
.wsa3{word-spacing:23.760000px;}
.ws3e{word-spacing:24.624000px;}
.ws62{word-spacing:25.056000px;}
.ws84{word-spacing:25.632000px;}
.wsae{word-spacing:25.920000px;}
.ws57{word-spacing:29.736000px;}
.wsc9{word-spacing:30.240000px;}
.wsb{word-spacing:30.312000px;}
.wsd3{word-spacing:32.700000px;}
.wsd1{word-spacing:38.460000px;}
.ws4c{word-spacing:40.608000px;}
.ws92{word-spacing:42.984000px;}
.ws96{word-spacing:51.840000px;}
.ws0{word-spacing:100.463400px;}
.ws75{word-spacing:244.591800px;}
.ws7d{word-spacing:244.592400px;}
.ws83{word-spacing:259.653000px;}
.ws76{word-spacing:261.205800px;}
.ws72{word-spacing:261.211800px;}
.ws7c{word-spacing:267.967200px;}
.ws73{word-spacing:269.520000px;}
.ws82{word-spacing:276.264600px;}
.ws81{word-spacing:276.279000px;}
.ws7a{word-spacing:277.831800px;}
.ws80{word-spacing:277.832400px;}
.ws7b{word-spacing:286.138200px;}
.ws79{word-spacing:301.196400px;}
.ws78{word-spacing:301.207800px;}
.ws77{word-spacing:302.763600px;}
.ws7e{word-spacing:309.418800px;}
.ws8e{word-spacing:498.588600px;}
.ws8f{word-spacing:548.448000px;}
.ws74{word-spacing:754.737600px;}
.ws7f{word-spacing:824.223600px;}
._31{margin-left:-19.944000px;}
._36{margin-left:-10.068000px;}
._2{margin-left:-9.000000px;}
._12{margin-left:-6.991200px;}
._2e{margin-left:-5.644800px;}
._1{margin-left:-4.500000px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.350000px;}
._14{width:1.166400px;}
._6{width:2.224800px;}
._8{width:3.391200px;}
._b{width:4.413600px;}
._7{width:5.414400px;}
._f{width:6.487200px;}
._a{width:8.481600px;}
._9{width:9.604800px;}
._11{width:10.864800px;}
._18{width:11.865600px;}
._c{width:12.880800px;}
._e{width:13.896000px;}
._17{width:14.940000px;}
._19{width:16.099200px;}
._13{width:17.697600px;}
._33{width:18.921600px;}
._15{width:21.002400px;}
._5{width:22.838400px;}
._16{width:23.868000px;}
._d{width:25.149600px;}
._10{width:27.504000px;}
._1a{width:28.519200px;}
._35{width:36.924000px;}
._37{width:38.231400px;}
._38{width:40.004400px;}
._34{width:41.520000px;}
._32{width:42.696000px;}
._1b{width:44.424000px;}
._3a{width:101.415000px;}
._4{width:122.307000px;}
._39{width:168.855000px;}
._29{width:214.863600px;}
._2b{width:258.363600px;}
._20{width:261.211800px;}
._22{width:267.961200px;}
._23{width:284.588400px;}
._21{width:286.144200px;}
._28{width:294.451800px;}
._24{width:301.213200px;}
._27{width:307.263600px;}
._1d{width:309.435000px;}
._25{width:317.816400px;}
._1e{width:326.038800px;}
._30{width:435.961200px;}
._2c{width:472.263600px;}
._1f{width:543.477600px;}
._2f{width:549.841200px;}
._2d{width:682.083600px;}
._26{width:695.703600px;}
._1c{width:802.109400px;}
._2a{width:836.157600px;}
.fc3{color:rgb(60,106,112);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(229,137,29);}
.fs5{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.fs7{font-size:234.893400px;}
.y0{bottom:0.000000px;}
.y39{bottom:38.232300px;}
.y38{bottom:38.870100px;}
.y138{bottom:86.123100px;}
.y158{bottom:89.255850px;}
.y59{bottom:92.763750px;}
.yd3{bottom:93.271800px;}
.y1c6{bottom:97.182150px;}
.y192{bottom:100.216650px;}
.y11b{bottom:102.720450px;}
.y36{bottom:102.771600px;}
.y1f8{bottom:104.970450px;}
.y9c{bottom:107.025750px;}
.y7a{bottom:108.342450px;}
.ybd{bottom:114.767700px;}
.y1c5{bottom:115.482150px;}
.y137{bottom:116.123100px;}
.y179{bottom:116.925600px;}
.y35{bottom:117.171600px;}
.yea{bottom:117.502050px;}
.y191{bottom:118.216650px;}
.y157{bottom:119.255850px;}
.y58{bottom:122.763750px;}
.y1f7{bottom:122.970450px;}
.yd2{bottom:123.271800px;}
.y10c{bottom:125.955300px;}
.y34{bottom:131.571600px;}
.y11a{bottom:132.720450px;}
.y1c4{bottom:133.782150px;}
.y9b{bottom:137.775750px;}
.y79{bottom:138.342450px;}
.y1f6{bottom:140.970450px;}
.y190{bottom:144.720450px;}
.ybc{bottom:144.767700px;}
.y178{bottom:147.375600px;}
.y156{bottom:149.255850px;}
.yd1{bottom:153.271800px;}
.y136{bottom:154.627050px;}
.y10b{bottom:154.882350px;}
.ye9{bottom:156.756000px;}
.y1c3{bottom:160.586100px;}
.y57{bottom:161.267700px;}
.y119{bottom:162.720450px;}
.y1f5{bottom:167.474550px;}
.y78{bottom:168.342450px;}
.y9a{bottom:168.525750px;}
.y33{bottom:174.171450px;}
.ybb{bottom:174.767700px;}
.y30{bottom:176.421450px;}
.y177{bottom:177.825600px;}
.y1c2{bottom:178.886100px;}
.y155{bottom:179.255850px;}
.y18f{bottom:180.720450px;}
.y10a{bottom:183.809400px;}
.y135{bottom:184.627050px;}
.y1f4{bottom:185.474550px;}
.yd0{bottom:191.775750px;}
.y32{bottom:192.171450px;}
.y118{bottom:192.720450px;}
.y2f{bottom:194.421450px;}
.ye8{bottom:196.009950px;}
.y1c1{bottom:197.186100px;}
.y77{bottom:198.342450px;}
.y99{bottom:199.275750px;}
.y1f3{bottom:203.474550px;}
.yba{bottom:204.767700px;}
.y18e{bottom:207.224550px;}
.y176{bottom:208.275750px;}
.y154{bottom:209.255850px;}
.y31{bottom:210.171450px;}
.y2e{bottom:212.421450px;}
.y109{bottom:212.736450px;}
.yd4{bottom:213.271800px;}
.y1f2{bottom:221.474550px;}
.ycf{bottom:221.775750px;}
.y134{bottom:223.131000px;}
.y1c0{bottom:223.990050px;}
.y18d{bottom:225.224550px;}
.ye7{bottom:226.759950px;}
.y76{bottom:228.342450px;}
.y117{bottom:231.224550px;}
.y98{bottom:238.529550px;}
.y175{bottom:238.725750px;}
.y108{bottom:241.663500px;}
.y1bf{bottom:242.290050px;}
.y18c{bottom:243.224550px;}
.yb9{bottom:243.271800px;}
.y56{bottom:244.275600px;}
.y153{bottom:247.759800px;}
.y1f1{bottom:247.978500px;}
.yce{bottom:251.775750px;}
.y133{bottom:253.131000px;}
.y2d{bottom:255.021300px;}
.y75{bottom:258.342450px;}
.y116{bottom:261.224550px;}
.ye6{bottom:266.013900px;}
.y1be{bottom:269.094000px;}
.y97{bottom:269.279550px;}
.y107{bottom:270.590550px;}
.yb8{bottom:273.271800px;}
.y55{bottom:273.525600px;}
.y1f0{bottom:274.482300px;}
.y174{bottom:277.679700px;}
.y152{bottom:277.759800px;}
.ycd{bottom:281.775750px;}
.y132{bottom:283.131000px;}
.y1bd{bottom:287.394000px;}
.y18b{bottom:287.728500px;}
.y74{bottom:288.342450px;}
.y115{bottom:291.224550px;}
.y1ef{bottom:292.482300px;}
.y106{bottom:299.517750px;}
.y96{bottom:300.029550px;}
.y2c{bottom:302.121000px;}
.y54{bottom:302.775600px;}
.yb7{bottom:303.271800px;}
.ye5{bottom:305.267700px;}
.y1bc{bottom:305.694000px;}
.y151{bottom:307.759800px;}
.y173{bottom:308.129550px;}
.y1ee{bottom:310.482300px;}
.ycc{bottom:311.775750px;}
.y131{bottom:313.131000px;}
.y2b{bottom:320.121000px;}
.y1bb{bottom:323.994000px;}
.y73{bottom:326.846400px;}
.y105{bottom:328.444800px;}
.y114{bottom:329.728500px;}
.y95{bottom:330.779550px;}
.yb6{bottom:333.271800px;}
.y1ed{bottom:336.986250px;}
.y150{bottom:337.759800px;}
.y2a{bottom:338.121000px;}
.y172{bottom:338.579550px;}
.y53{bottom:340.529550px;}
.ycb{bottom:341.775750px;}
.y130{bottom:343.131000px;}
.ye4{bottom:344.521800px;}
.y1ba{bottom:350.797950px;}
.y1ec{bottom:354.986250px;}
.y29{bottom:356.121000px;}
.y72{bottom:356.846400px;}
.y104{bottom:357.371850px;}
.y113{bottom:359.728500px;}
.y94{bottom:361.529550px;}
.y14f{bottom:367.759800px;}
.y171{bottom:369.029550px;}
.y1b9{bottom:369.097950px;}
.y52{bottom:369.779550px;}
.y18a{bottom:370.736250px;}
.yb5{bottom:371.775750px;}
.y1eb{bottom:372.986250px;}
.y28{bottom:374.121000px;}
.ye3{bottom:375.271800px;}
.y12f{bottom:381.634950px;}
.y103{bottom:386.298900px;}
.y71{bottom:386.846400px;}
.y1b8{bottom:387.397950px;}
.y112{bottom:389.728500px;}
.y27{bottom:392.121000px;}
.y93{bottom:392.279550px;}
.y14e{bottom:397.759800px;}
.y51{bottom:399.029550px;}
.y170{bottom:399.479700px;}
.y1ea{bottom:399.490200px;}
.yb4{bottom:401.775750px;}
.y189{bottom:409.240200px;}
.y20c{bottom:411.513900px;}
.y12e{bottom:411.634950px;}
.y1b7{bottom:414.201900px;}
.ye2{bottom:414.525600px;}
.y102{bottom:415.225950px;}
.y70{bottom:416.846400px;}
.y1e9{bottom:417.490200px;}
.y26{bottom:418.624950px;}
.y111{bottom:419.728350px;}
.y50{bottom:428.279550px;}
.y92{bottom:431.533500px;}
.yb3{bottom:431.775600px;}
.y1b6{bottom:432.501900px;}
.y14d{bottom:436.263750px;}
.y25{bottom:436.624950px;}
.y20b{bottom:437.013900px;}
.y16f{bottom:438.433500px;}
.yca{bottom:440.279550px;}
.yff{bottom:441.314550px;}
.y12d{bottom:441.634950px;}
.y1e8{bottom:443.994150px;}
.y6f{bottom:446.846400px;}
.y188{bottom:447.744150px;}
.y110{bottom:449.728350px;}
.y101{bottom:450.314550px;}
.y1b5{bottom:450.801900px;}
.y24{bottom:454.624950px;}
.y4f{bottom:457.529550px;}
.yfd{bottom:459.314550px;}
.y20a{bottom:460.263900px;}
.yb2{bottom:461.775600px;}
.y1e7{bottom:461.994150px;}
.y91{bottom:462.283500px;}
.y14c{bottom:466.263750px;}
.y100{bottom:468.314550px;}
.y16e{bottom:468.883500px;}
.yc9{bottom:470.279550px;}
.y12c{bottom:471.634950px;}
.y23{bottom:472.624950px;}
.yfe{bottom:477.314550px;}
.y1b4{bottom:477.605850px;}
.y10f{bottom:479.728350px;}
.y6e{bottom:485.350350px;}
.y187{bottom:486.248100px;}
.y4e{bottom:486.779550px;}
.y1e6{bottom:488.498100px;}
.y22{bottom:490.624950px;}
.yb1{bottom:491.775600px;}
.y90{bottom:493.033500px;}
.y1b3{bottom:495.905850px;}
.y14b{bottom:496.263750px;}
.y16d{bottom:499.333500px;}
.yc8{bottom:500.279550px;}
.y1e5{bottom:506.498100px;}
.y209{bottom:506.763900px;}
.y21{bottom:508.624950px;}
.yfc{bottom:509.256000px;}
.y12b{bottom:510.138900px;}
.y1b2{bottom:514.205850px;}
.y6d{bottom:515.350350px;}
.yb0{bottom:521.775600px;}
.ye1{bottom:523.783500px;}
.y4d{bottom:524.533500px;}
.y186{bottom:524.752050px;}
.y208{bottom:524.763900px;}
.y14a{bottom:526.263750px;}
.y20{bottom:526.624950px;}
.y16c{bottom:529.783500px;}
.yc7{bottom:530.279550px;}
.y8f{bottom:532.287450px;}
.y1e4{bottom:533.002050px;}
.y12a{bottom:540.138900px;}
.y1b1{bottom:541.009800px;}
.y207{bottom:542.763900px;}
.y1f{bottom:544.624950px;}
.y6c{bottom:545.350350px;}
.yfb{bottom:547.759950px;}
.y1e3{bottom:551.002050px;}
.yaf{bottom:551.775600px;}
.y4c{bottom:553.783500px;}
.ye0{bottom:554.533500px;}
.y149{bottom:556.263750px;}
.y10e{bottom:556.736250px;}
.y1b0{bottom:559.309800px;}
.y16b{bottom:560.233500px;}
.yc6{bottom:560.279550px;}
.y206{bottom:560.763900px;}
.y1e{bottom:562.624950px;}
.y8e{bottom:563.037450px;}
.y185{bottom:563.256000px;}
.y129{bottom:570.138900px;}
.y6b{bottom:575.350350px;}
.y1e2{bottom:577.506000px;}
.y1af{bottom:577.609800px;}
.y205{bottom:578.763900px;}
.yae{bottom:581.775600px;}
.y4b{bottom:583.033500px;}
.ydf{bottom:585.283500px;}
.y10d{bottom:586.736250px;}
.y1d{bottom:589.128900px;}
.yc5{bottom:590.279550px;}
.y16a{bottom:590.683500px;}
.y12{bottom:591.113100px;}
.y8d{bottom:593.787450px;}
.y148{bottom:594.767700px;}
.y1e1{bottom:595.506000px;}
.y204{bottom:596.763900px;}
.y128{bottom:600.138900px;}
.y184{bottom:601.759950px;}
.y1ae{bottom:604.413600px;}
.y6a{bottom:605.350350px;}
.y1c{bottom:607.128900px;}
.yad{bottom:611.775600px;}
.y4a{bottom:612.283500px;}
.yde{bottom:616.033500px;}
.y11{bottom:617.617200px;}
.yc4{bottom:620.279550px;}
.y169{bottom:621.133500px;}
.y1e0{bottom:622.009950px;}
.y1ad{bottom:622.713750px;}
.y8c{bottom:624.537450px;}
.y147{bottom:624.767700px;}
.yfa{bottom:624.767850px;}
.y1b{bottom:625.128900px;}
.y127{bottom:630.138900px;}
.y69{bottom:635.350350px;}
.y1df{bottom:640.009950px;}
.y183{bottom:640.263900px;}
.y1ac{bottom:641.013600px;}
.y49{bottom:641.533500px;}
.y1a{bottom:643.128900px;}
.y203{bottom:643.263900px;}
.y10{bottom:644.121000px;}
.ydd{bottom:646.783500px;}
.yac{bottom:650.279550px;}
.y146{bottom:654.767700px;}
.yf9{bottom:654.767850px;}
.y8b{bottom:655.287450px;}
.y168{bottom:660.087450px;}
.y126{bottom:660.138900px;}
.y19{bottom:661.128900px;}
.y202{bottom:661.263900px;}
.yf{bottom:662.121000px;}
.y1de{bottom:666.513900px;}
.y1ab{bottom:667.817550px;}
.y48{bottom:670.783500px;}
.y68{bottom:673.854300px;}
.ydc{bottom:677.533500px;}
.y182{bottom:678.767850px;}
.y201{bottom:679.263900px;}
.yab{bottom:680.279550px;}
.y1dd{bottom:684.513900px;}
.y145{bottom:684.767700px;}
.yf8{bottom:684.767850px;}
.y8a{bottom:686.037450px;}
.y1aa{bottom:686.117550px;}
.y18{bottom:687.632850px;}
.ye{bottom:688.624950px;}
.yc3{bottom:688.783500px;}
.y167{bottom:690.537450px;}
.y200{bottom:697.263900px;}
.y125{bottom:698.642850px;}
.y47{bottom:700.033500px;}
.y1dc{bottom:702.513900px;}
.y67{bottom:703.854300px;}
.y17{bottom:705.632850px;}
.yd{bottom:706.624950px;}
.ydb{bottom:708.283500px;}
.yaa{bottom:710.279550px;}
.y1a9{bottom:712.921500px;}
.y144{bottom:714.767700px;}
.yf7{bottom:714.767850px;}
.y1ff{bottom:715.263900px;}
.y181{bottom:717.271800px;}
.yc2{bottom:718.783500px;}
.y166{bottom:720.987450px;}
.y16{bottom:723.632850px;}
.y89{bottom:725.291400px;}
.y1db{bottom:729.017850px;}
.y46{bottom:729.283500px;}
.y1a8{bottom:731.221500px;}
.yc{bottom:733.128900px;}
.y1fe{bottom:733.263900px;}
.y66{bottom:733.854300px;}
.yda{bottom:739.033500px;}
.ya9{bottom:740.279550px;}
.yf6{bottom:744.767850px;}
.y1da{bottom:747.017850px;}
.yc1{bottom:748.783500px;}
.y1a7{bottom:749.521500px;}
.y15{bottom:750.136800px;}
.y165{bottom:751.437450px;}
.y143{bottom:753.271650px;}
.y180{bottom:755.775600px;}
.y88{bottom:756.041400px;}
.y45{bottom:758.533500px;}
.yb{bottom:759.632850px;}
.y65{bottom:763.854300px;}
.y1d9{bottom:765.017850px;}
.y14{bottom:768.136800px;}
.yd9{bottom:769.783500px;}
.y1a6{bottom:776.325450px;}
.ya{bottom:777.632850px;}
.ya8{bottom:778.783500px;}
.y124{bottom:781.650750px;}
.y164{bottom:781.887450px;}
.y142{bottom:783.271650px;}
.yf5{bottom:783.271800px;}
.y13{bottom:786.136800px;}
.y87{bottom:786.791400px;}
.y44{bottom:787.783500px;}
.y1d8{bottom:791.521800px;}
.y17f{bottom:794.279550px;}
.y1a5{bottom:794.625450px;}
.y64{bottom:802.358250px;}
.y9{bottom:804.136800px;}
.ya7{bottom:808.783500px;}
.yd8{bottom:809.037450px;}
.y1d7{bottom:809.521800px;}
.y123{bottom:811.650750px;}
.y163{bottom:812.337450px;}
.y1a4{bottom:812.925450px;}
.y141{bottom:813.271650px;}
.yf4{bottom:813.271800px;}
.y86{bottom:817.541400px;}
.y43{bottom:825.537450px;}
.y1d6{bottom:827.521800px;}
.y17e{bottom:832.783500px;}
.y1fd{bottom:836.025750px;}
.ya6{bottom:838.783500px;}
.y1a3{bottom:839.729400px;}
.yd7{bottom:839.787450px;}
.y122{bottom:841.650750px;}
.yf3{bottom:843.271800px;}
.yc0{bottom:847.287450px;}
.y85{bottom:848.291400px;}
.y8{bottom:848.986650px;}
.y162{bottom:851.291400px;}
.y140{bottom:851.775600px;}
.y1d5{bottom:854.025750px;}
.y42{bottom:854.787450px;}
.y1a2{bottom:858.029400px;}
.yd6{bottom:870.537450px;}
.y121{bottom:871.650750px;}
.y1d4{bottom:872.025750px;}
.y1a1{bottom:876.329400px;}
.ya5{bottom:877.287450px;}
.y84{bottom:879.041400px;}
.y161{bottom:881.741400px;}
.y13f{bottom:881.775600px;}
.yf2{bottom:881.775750px;}
.y41{bottom:884.037450px;}
.y63{bottom:885.366150px;}
.y1fc{bottom:890.025750px;}
.y7{bottom:896.086500px;}
.y1d3{bottom:898.529550px;}
.y1a0{bottom:903.133350px;}
.ya4{bottom:907.287450px;}
.y83{bottom:909.791400px;}
.y120{bottom:910.154550px;}
.y13e{bottom:911.775600px;}
.yf1{bottom:911.775750px;}
.y160{bottom:912.191400px;}
.y40{bottom:913.287450px;}
.y62{bottom:915.366150px;}
.y17d{bottom:915.791400px;}
.y1d2{bottom:916.529550px;}
.y19f{bottom:921.433350px;}
.y6{bottom:933.886500px;}
.y1d1{bottom:934.529550px;}
.ya3{bottom:937.287450px;}
.y19e{bottom:939.733350px;}
.y82{bottom:940.541400px;}
.y3f{bottom:942.537450px;}
.y15f{bottom:942.641400px;}
.y61{bottom:945.366150px;}
.ybf{bottom:945.791400px;}
.y11f{bottom:948.846000px;}
.yf0{bottom:950.279550px;}
.y1fb{bottom:952.529550px;}
.y1d0{bottom:961.033500px;}
.y19d{bottom:966.537300px;}
.ya2{bottom:967.287450px;}
.y81{bottom:971.291400px;}
.y5{bottom:971.686500px;}
.y3e{bottom:971.787450px;}
.y11e{bottom:972.096000px;}
.y15e{bottom:973.091400px;}
.y60{bottom:975.366150px;}
.ybe{bottom:975.791400px;}
.y1cf{bottom:979.033500px;}
.yef{bottom:980.279550px;}
.y19c{bottom:984.837300px;}
.y13d{bottom:988.783500px;}
.y11d{bottom:995.346000px;}
.y1ce{bottom:997.033500px;}
.y3d{bottom:1001.037450px;}
.yd5{bottom:1002.041400px;}
.y19b{bottom:1003.137300px;}
.y15d{bottom:1003.541400px;}
.y5f{bottom:1005.366150px;}
.ya1{bottom:1005.791400px;}
.y80{bottom:1010.545350px;}
.y1fa{bottom:1015.033500px;}
.yee{bottom:1018.783500px;}
.y1cd{bottom:1023.537450px;}
.y11c{bottom:1027.287450px;}
.y4{bottom:1028.911350px;}
.y19a{bottom:1029.941250px;}
.y3c{bottom:1030.287450px;}
.ya0{bottom:1035.791400px;}
.y7f{bottom:1041.295350px;}
.y1cc{bottom:1041.537450px;}
.y15c{bottom:1042.495350px;}
.y5e{bottom:1043.870100px;}
.y17c{bottom:1044.295350px;}
.y199{bottom:1048.241250px;}
.yed{bottom:1057.287450px;}
.y3b{bottom:1059.537450px;}
.y13c{bottom:1065.791250px;}
.y9f{bottom:1065.791400px;}
.y198{bottom:1066.541250px;}
.y7e{bottom:1072.045350px;}
.y15b{bottom:1072.945350px;}
.y5d{bottom:1073.870100px;}
.y17b{bottom:1074.295350px;}
.y1f9{bottom:1077.537450px;}
.y1cb{bottom:1086.041400px;}
.yec{bottom:1087.287450px;}
.y197{bottom:1093.345350px;}
.y13b{bottom:1095.791250px;}
.y9e{bottom:1095.791400px;}
.y7d{bottom:1102.795350px;}
.y15a{bottom:1103.395350px;}
.y5c{bottom:1103.870100px;}
.y1ca{bottom:1104.041400px;}
.y17a{bottom:1104.295350px;}
.y196{bottom:1111.645350px;}
.y1c9{bottom:1122.041400px;}
.yeb{bottom:1125.791400px;}
.y3a{bottom:1126.541250px;}
.y195{bottom:1129.945200px;}
.y7c{bottom:1133.545350px;}
.y159{bottom:1133.845350px;}
.y5b{bottom:1133.870100px;}
.y13a{bottom:1134.295200px;}
.y9d{bottom:1134.295350px;}
.y3{bottom:1146.439950px;}
.y194{bottom:1148.245200px;}
.y1c8{bottom:1148.545350px;}
.y5a{bottom:1163.870100px;}
.y139{bottom:1164.295200px;}
.y7b{bottom:1164.295350px;}
.y193{bottom:1166.545200px;}
.y1c7{bottom:1166.545350px;}
.y2{bottom:1174.939950px;}
.y1{bottom:1203.439950px;}
.y37{bottom:1215.602400px;}
.ha{height:36.000000px;}
.hc{height:36.048000px;}
.hb{height:37.453125px;}
.h7{height:45.000000px;}
.h8{height:46.816406px;}
.h9{height:54.000000px;}
.h6{height:54.072000px;}
.hf{height:56.179688px;}
.hd{height:57.142603px;}
.h4{height:63.000000px;}
.h3{height:67.500000px;}
.h2{height:67.590000px;}
.h5{height:94.500000px;}
.he{height:176.170050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:49.968300px;}
.x10{left:53.136750px;}
.x11{left:56.025450px;}
.xc{left:65.986350px;}
.x5{left:69.629250px;}
.x9{left:70.886250px;}
.xa{left:75.039150px;}
.x15{left:80.508900px;}
.x12{left:84.401550px;}
.xe{left:86.560050px;}
.x25{left:90.837750px;}
.x20{left:91.892700px;}
.x7{left:93.833100px;}
.x16{left:96.720900px;}
.xd{left:105.075750px;}
.x17{left:106.299150px;}
.xb{left:107.558700px;}
.x8{left:113.820900px;}
.x21{left:127.237500px;}
.x18{left:133.299150px;}
.x1a{left:164.516250px;}
.x14{left:181.722450px;}
.xf{left:218.981100px;}
.x4{left:227.485050px;}
.x26{left:255.803100px;}
.x24{left:280.261800px;}
.x23{left:304.534800px;}
.x1b{left:328.253550px;}
.x22{left:345.316500px;}
.x13{left:492.696900px;}
.x27{left:594.472350px;}
.x1d{left:613.668150px;}
.x1c{left:625.925100px;}
.x3{left:698.047350px;}
.x2{left:704.370300px;}
.x1e{left:721.738350px;}
.x1{left:722.978100px;}
.x1f{left:735.456600px;}
.x19{left:745.594650px;}
@media print{
.v1{vertical-align:-21.013867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:104.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.832000pt;}
.ls4{letter-spacing:1.472000pt;}
.ls8{letter-spacing:1.536000pt;}
.ls1{letter-spacing:10.455193pt;}
.ls7{letter-spacing:938.558400pt;}
.ws1{word-spacing:-32.000000pt;}
.ws5{word-spacing:-19.200000pt;}
.ws16{word-spacing:-17.728000pt;}
.ws2{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.773333pt;}
.wsa1{word-spacing:-10.048000pt;}
.ws38{word-spacing:-8.768000pt;}
.ws56{word-spacing:-8.448000pt;}
.ws93{word-spacing:-6.784000pt;}
.wsb8{word-spacing:-6.720000pt;}
.ws86{word-spacing:-6.656000pt;}
.wsaf{word-spacing:-6.208000pt;}
.wsa6{word-spacing:-5.888000pt;}
.wsa5{word-spacing:-5.184000pt;}
.wsd0{word-spacing:-5.013333pt;}
.wsa0{word-spacing:-4.864000pt;}
.ws59{word-spacing:-4.736000pt;}
.ws88{word-spacing:-4.672000pt;}
.ws39{word-spacing:-4.480000pt;}
.wsab{word-spacing:-4.352000pt;}
.ws5d{word-spacing:-4.288000pt;}
.ws6a{word-spacing:-4.160000pt;}
.ws6b{word-spacing:-3.968000pt;}
.ws3d{word-spacing:-3.712000pt;}
.ws70{word-spacing:-3.520000pt;}
.wsdb{word-spacing:-3.466667pt;}
.ws8a{word-spacing:-3.328000pt;}
.ws14{word-spacing:-3.136000pt;}
.ws2a{word-spacing:-3.072000pt;}
.ws49{word-spacing:-3.008000pt;}
.wsda{word-spacing:-2.986667pt;}
.ws17{word-spacing:-2.944000pt;}
.ws40{word-spacing:-2.624000pt;}
.ws69{word-spacing:-2.496000pt;}
.ws3f{word-spacing:-2.432000pt;}
.ws35{word-spacing:-2.368000pt;}
.ws9f{word-spacing:-2.304000pt;}
.wsc7{word-spacing:-2.293333pt;}
.ws55{word-spacing:-2.240000pt;}
.ws89{word-spacing:-2.112000pt;}
.ws13{word-spacing:-2.048000pt;}
.ws8b{word-spacing:-1.920000pt;}
.ws44{word-spacing:-1.856000pt;}
.ws45{word-spacing:-1.664000pt;}
.ws85{word-spacing:-1.600000pt;}
.ws95{word-spacing:-1.536000pt;}
.ws32{word-spacing:-1.472000pt;}
.ws50{word-spacing:-1.344000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws27{word-spacing:-1.216000pt;}
.ws29{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.906667pt;}
.ws1b{word-spacing:-0.832000pt;}
.wscb{word-spacing:-0.800000pt;}
.ws4d{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.640000pt;}
.wsb4{word-spacing:-0.576000pt;}
.ws53{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.106667pt;}
.ws4f{word-spacing:0.128000pt;}
.ws48{word-spacing:0.256000pt;}
.ws34{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.384000pt;}
.ws99{word-spacing:0.448000pt;}
.ws68{word-spacing:0.512000pt;}
.wscd{word-spacing:0.640000pt;}
.ws9e{word-spacing:0.704000pt;}
.wsc5{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.768000pt;}
.ws87{word-spacing:0.832000pt;}
.ws63{word-spacing:1.024000pt;}
.ws2c{word-spacing:1.088000pt;}
.ws9a{word-spacing:1.344000pt;}
.wsba{word-spacing:1.386667pt;}
.ws58{word-spacing:1.408000pt;}
.wsd{word-spacing:1.536000pt;}
.ws66{word-spacing:1.600000pt;}
.wsbb{word-spacing:1.653333pt;}
.ws19{word-spacing:1.856000pt;}
.ws1f{word-spacing:2.368000pt;}
.wsc2{word-spacing:2.400000pt;}
.ws26{word-spacing:2.432000pt;}
.wsc1{word-spacing:2.720000pt;}
.ws1e{word-spacing:3.136000pt;}
.wsa4{word-spacing:3.200000pt;}
.ws1d{word-spacing:3.264000pt;}
.wsbd{word-spacing:3.360000pt;}
.ws15{word-spacing:3.520000pt;}
.ws60{word-spacing:3.584000pt;}
.wsaa{word-spacing:3.648000pt;}
.ws6d{word-spacing:3.776000pt;}
.ws24{word-spacing:3.840000pt;}
.ws1c{word-spacing:3.904000pt;}
.ws47{word-spacing:3.968000pt;}
.ws2b{word-spacing:4.096000pt;}
.wsb6{word-spacing:4.160000pt;}
.ws54{word-spacing:4.224000pt;}
.ws3c{word-spacing:4.288000pt;}
.ws90{word-spacing:4.352000pt;}
.wsd8{word-spacing:4.746667pt;}
.wsca{word-spacing:4.800000pt;}
.ws6e{word-spacing:5.056000pt;}
.wsd4{word-spacing:5.333333pt;}
.ws3a{word-spacing:5.504000pt;}
.wsd6{word-spacing:5.546667pt;}
.wsa2{word-spacing:5.632000pt;}
.wsbe{word-spacing:5.706667pt;}
.wscc{word-spacing:5.813333pt;}
.wsa7{word-spacing:5.952000pt;}
.wsc8{word-spacing:6.346667pt;}
.ws52{word-spacing:6.656000pt;}
.wsa8{word-spacing:6.784000pt;}
.ws5e{word-spacing:6.848000pt;}
.ws4a{word-spacing:6.976000pt;}
.wsa9{word-spacing:7.104000pt;}
.wsd5{word-spacing:7.413333pt;}
.ws71{word-spacing:7.424000pt;}
.ws30{word-spacing:7.552000pt;}
.ws23{word-spacing:7.616000pt;}
.wsb9{word-spacing:7.680000pt;}
.wsb2{word-spacing:7.744000pt;}
.ws5a{word-spacing:7.872000pt;}
.wsad{word-spacing:8.064000pt;}
.ws11{word-spacing:8.192000pt;}
.ws8d{word-spacing:8.512000pt;}
.ws20{word-spacing:8.768000pt;}
.wsc4{word-spacing:8.800000pt;}
.ws5f{word-spacing:9.024000pt;}
.wsac{word-spacing:9.152000pt;}
.ws9b{word-spacing:9.344000pt;}
.wsb1{word-spacing:9.408000pt;}
.ws21{word-spacing:9.472000pt;}
.ws36{word-spacing:9.536000pt;}
.wsc3{word-spacing:9.546667pt;}
.ws12{word-spacing:9.600000pt;}
.ws2f{word-spacing:9.728000pt;}
.wsc0{word-spacing:9.866667pt;}
.ws9c{word-spacing:10.112000pt;}
.wse{word-spacing:10.176000pt;}
.ws37{word-spacing:10.240000pt;}
.ws46{word-spacing:10.304000pt;}
.ws5c{word-spacing:10.368000pt;}
.ws6c{word-spacing:10.432000pt;}
.wsb3{word-spacing:10.496000pt;}
.ws2d{word-spacing:10.560000pt;}
.wsb0{word-spacing:10.944000pt;}
.ws4e{word-spacing:11.136000pt;}
.wsa{word-spacing:11.200000pt;}
.ws51{word-spacing:11.392000pt;}
.ws97{word-spacing:11.456000pt;}
.wsf{word-spacing:11.520000pt;}
.ws7{word-spacing:11.840000pt;}
.ws91{word-spacing:11.968000pt;}
.ws33{word-spacing:12.288000pt;}
.ws67{word-spacing:12.736000pt;}
.ws65{word-spacing:12.800000pt;}
.ws42{word-spacing:12.864000pt;}
.wsb5{word-spacing:12.992000pt;}
.wsce{word-spacing:13.066667pt;}
.ws98{word-spacing:13.120000pt;}
.ws25{word-spacing:13.184000pt;}
.wsb7{word-spacing:13.248000pt;}
.ws2e{word-spacing:13.312000pt;}
.ws22{word-spacing:13.440000pt;}
.ws94{word-spacing:13.696000pt;}
.wsd7{word-spacing:14.186667pt;}
.ws10{word-spacing:14.336000pt;}
.ws5b{word-spacing:14.784000pt;}
.ws9d{word-spacing:14.976000pt;}
.wsd9{word-spacing:15.253333pt;}
.ws64{word-spacing:15.552000pt;}
.ws4b{word-spacing:15.680000pt;}
.wsd2{word-spacing:16.693333pt;}
.ws6f{word-spacing:17.088000pt;}
.ws41{word-spacing:17.152000pt;}
.wsc{word-spacing:17.216000pt;}
.ws61{word-spacing:17.856000pt;}
.ws43{word-spacing:18.688000pt;}
.ws6{word-spacing:18.880000pt;}
.ws1a{word-spacing:19.392000pt;}
.wsc6{word-spacing:19.733333pt;}
.wscf{word-spacing:20.160000pt;}
.ws18{word-spacing:20.544000pt;}
.ws8{word-spacing:20.608000pt;}
.wsa3{word-spacing:21.120000pt;}
.ws3e{word-spacing:21.888000pt;}
.ws62{word-spacing:22.272000pt;}
.ws84{word-spacing:22.784000pt;}
.wsae{word-spacing:23.040000pt;}
.ws57{word-spacing:26.432000pt;}
.wsc9{word-spacing:26.880000pt;}
.wsb{word-spacing:26.944000pt;}
.wsd3{word-spacing:29.066667pt;}
.wsd1{word-spacing:34.186667pt;}
.ws4c{word-spacing:36.096000pt;}
.ws92{word-spacing:38.208000pt;}
.ws96{word-spacing:46.080000pt;}
.ws0{word-spacing:89.300800pt;}
.ws75{word-spacing:217.414933pt;}
.ws7d{word-spacing:217.415467pt;}
.ws83{word-spacing:230.802667pt;}
.ws76{word-spacing:232.182933pt;}
.ws72{word-spacing:232.188267pt;}
.ws7c{word-spacing:238.193067pt;}
.ws73{word-spacing:239.573333pt;}
.ws82{word-spacing:245.568533pt;}
.ws81{word-spacing:245.581333pt;}
.ws7a{word-spacing:246.961600pt;}
.ws80{word-spacing:246.962133pt;}
.ws7b{word-spacing:254.345067pt;}
.ws79{word-spacing:267.730133pt;}
.ws78{word-spacing:267.740267pt;}
.ws77{word-spacing:269.123200pt;}
.ws7e{word-spacing:275.038933pt;}
.ws8e{word-spacing:443.189867pt;}
.ws8f{word-spacing:487.509333pt;}
.ws74{word-spacing:670.877867pt;}
.ws7f{word-spacing:732.643200pt;}
._31{margin-left:-17.728000pt;}
._36{margin-left:-8.949333pt;}
._2{margin-left:-8.000000pt;}
._12{margin-left:-6.214400pt;}
._2e{margin-left:-5.017600pt;}
._1{margin-left:-4.000000pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.200000pt;}
._14{width:1.036800pt;}
._6{width:1.977600pt;}
._8{width:3.014400pt;}
._b{width:3.923200pt;}
._7{width:4.812800pt;}
._f{width:5.766400pt;}
._a{width:7.539200pt;}
._9{width:8.537600pt;}
._11{width:9.657600pt;}
._18{width:10.547200pt;}
._c{width:11.449600pt;}
._e{width:12.352000pt;}
._17{width:13.280000pt;}
._19{width:14.310400pt;}
._13{width:15.731200pt;}
._33{width:16.819200pt;}
._15{width:18.668800pt;}
._5{width:20.300800pt;}
._16{width:21.216000pt;}
._d{width:22.355200pt;}
._10{width:24.448000pt;}
._1a{width:25.350400pt;}
._35{width:32.821333pt;}
._37{width:33.983467pt;}
._38{width:35.559467pt;}
._34{width:36.906667pt;}
._32{width:37.952000pt;}
._1b{width:39.488000pt;}
._3a{width:90.146667pt;}
._4{width:108.717333pt;}
._39{width:150.093333pt;}
._29{width:190.989867pt;}
._2b{width:229.656533pt;}
._20{width:232.188267pt;}
._22{width:238.187733pt;}
._23{width:252.967467pt;}
._21{width:254.350400pt;}
._28{width:261.734933pt;}
._24{width:267.745067pt;}
._27{width:273.123200pt;}
._1d{width:275.053333pt;}
._25{width:282.503467pt;}
._1e{width:289.812267pt;}
._30{width:387.521067pt;}
._2c{width:419.789867pt;}
._1f{width:483.091200pt;}
._2f{width:488.747733pt;}
._2d{width:606.296533pt;}
._26{width:618.403200pt;}
._1c{width:712.986133pt;}
._2a{width:743.251200pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.fs7{font-size:208.794133pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:33.984267pt;}
.y38{bottom:34.551200pt;}
.y138{bottom:76.553867pt;}
.y158{bottom:79.338533pt;}
.y59{bottom:82.456667pt;}
.yd3{bottom:82.908267pt;}
.y1c6{bottom:86.384133pt;}
.y192{bottom:89.081467pt;}
.y11b{bottom:91.307067pt;}
.y36{bottom:91.352533pt;}
.y1f8{bottom:93.307067pt;}
.y9c{bottom:95.134000pt;}
.y7a{bottom:96.304400pt;}
.ybd{bottom:102.015733pt;}
.y1c5{bottom:102.650800pt;}
.y137{bottom:103.220533pt;}
.y179{bottom:103.933867pt;}
.y35{bottom:104.152533pt;}
.yea{bottom:104.446267pt;}
.y191{bottom:105.081467pt;}
.y157{bottom:106.005200pt;}
.y58{bottom:109.123333pt;}
.y1f7{bottom:109.307067pt;}
.yd2{bottom:109.574933pt;}
.y10c{bottom:111.960267pt;}
.y34{bottom:116.952533pt;}
.y11a{bottom:117.973733pt;}
.y1c4{bottom:118.917467pt;}
.y9b{bottom:122.467333pt;}
.y79{bottom:122.971067pt;}
.y1f6{bottom:125.307067pt;}
.y190{bottom:128.640400pt;}
.ybc{bottom:128.682400pt;}
.y178{bottom:131.000533pt;}
.y156{bottom:132.671867pt;}
.yd1{bottom:136.241600pt;}
.y136{bottom:137.446267pt;}
.y10b{bottom:137.673200pt;}
.ye9{bottom:139.338667pt;}
.y1c3{bottom:142.743200pt;}
.y57{bottom:143.349067pt;}
.y119{bottom:144.640400pt;}
.y1f5{bottom:148.866267pt;}
.y78{bottom:149.637733pt;}
.y9a{bottom:149.800667pt;}
.y33{bottom:154.819067pt;}
.ybb{bottom:155.349067pt;}
.y30{bottom:156.819067pt;}
.y177{bottom:158.067200pt;}
.y1c2{bottom:159.009867pt;}
.y155{bottom:159.338533pt;}
.y18f{bottom:160.640400pt;}
.y10a{bottom:163.386133pt;}
.y135{bottom:164.112933pt;}
.y1f4{bottom:164.866267pt;}
.yd0{bottom:170.467333pt;}
.y32{bottom:170.819067pt;}
.y118{bottom:171.307067pt;}
.y2f{bottom:172.819067pt;}
.ye8{bottom:174.231067pt;}
.y1c1{bottom:175.276533pt;}
.y77{bottom:176.304400pt;}
.y99{bottom:177.134000pt;}
.y1f3{bottom:180.866267pt;}
.yba{bottom:182.015733pt;}
.y18e{bottom:184.199600pt;}
.y176{bottom:185.134000pt;}
.y154{bottom:186.005200pt;}
.y31{bottom:186.819067pt;}
.y2e{bottom:188.819067pt;}
.y109{bottom:189.099067pt;}
.yd4{bottom:189.574933pt;}
.y1f2{bottom:196.866267pt;}
.ycf{bottom:197.134000pt;}
.y134{bottom:198.338667pt;}
.y1c0{bottom:199.102267pt;}
.y18d{bottom:200.199600pt;}
.ye7{bottom:201.564400pt;}
.y76{bottom:202.971067pt;}
.y117{bottom:205.532933pt;}
.y98{bottom:212.026267pt;}
.y175{bottom:212.200667pt;}
.y108{bottom:214.812000pt;}
.y1bf{bottom:215.368933pt;}
.y18c{bottom:216.199600pt;}
.yb9{bottom:216.241600pt;}
.y56{bottom:217.133867pt;}
.y153{bottom:220.230933pt;}
.y1f1{bottom:220.425333pt;}
.yce{bottom:223.800667pt;}
.y133{bottom:225.005333pt;}
.y2d{bottom:226.685600pt;}
.y75{bottom:229.637733pt;}
.y116{bottom:232.199600pt;}
.ye6{bottom:236.456800pt;}
.y1be{bottom:239.194667pt;}
.y97{bottom:239.359600pt;}
.y107{bottom:240.524933pt;}
.yb8{bottom:242.908267pt;}
.y55{bottom:243.133867pt;}
.y1f0{bottom:243.984267pt;}
.y174{bottom:246.826400pt;}
.y152{bottom:246.897600pt;}
.ycd{bottom:250.467333pt;}
.y132{bottom:251.672000pt;}
.y1bd{bottom:255.461333pt;}
.y18b{bottom:255.758667pt;}
.y74{bottom:256.304400pt;}
.y115{bottom:258.866267pt;}
.y1ef{bottom:259.984267pt;}
.y106{bottom:266.238000pt;}
.y96{bottom:266.692933pt;}
.y2c{bottom:268.552000pt;}
.y54{bottom:269.133867pt;}
.yb7{bottom:269.574933pt;}
.ye5{bottom:271.349067pt;}
.y1bc{bottom:271.728000pt;}
.y151{bottom:273.564267pt;}
.y173{bottom:273.892933pt;}
.y1ee{bottom:275.984267pt;}
.ycc{bottom:277.134000pt;}
.y131{bottom:278.338667pt;}
.y2b{bottom:284.552000pt;}
.y1bb{bottom:287.994667pt;}
.y73{bottom:290.530133pt;}
.y105{bottom:291.950933pt;}
.y114{bottom:293.092000pt;}
.y95{bottom:294.026267pt;}
.yb6{bottom:296.241600pt;}
.y1ed{bottom:299.543333pt;}
.y150{bottom:300.230933pt;}
.y2a{bottom:300.552000pt;}
.y172{bottom:300.959600pt;}
.y53{bottom:302.692933pt;}
.ycb{bottom:303.800667pt;}
.y130{bottom:305.005333pt;}
.ye4{bottom:306.241600pt;}
.y1ba{bottom:311.820400pt;}
.y1ec{bottom:315.543333pt;}
.y29{bottom:316.552000pt;}
.y72{bottom:317.196800pt;}
.y104{bottom:317.663867pt;}
.y113{bottom:319.758667pt;}
.y94{bottom:321.359600pt;}
.y14f{bottom:326.897600pt;}
.y171{bottom:328.026267pt;}
.y1b9{bottom:328.087067pt;}
.y52{bottom:328.692933pt;}
.y18a{bottom:329.543333pt;}
.yb5{bottom:330.467333pt;}
.y1eb{bottom:331.543333pt;}
.y28{bottom:332.552000pt;}
.ye3{bottom:333.574933pt;}
.y12f{bottom:339.231067pt;}
.y103{bottom:343.376800pt;}
.y71{bottom:343.863467pt;}
.y1b8{bottom:344.353733pt;}
.y112{bottom:346.425333pt;}
.y27{bottom:348.552000pt;}
.y93{bottom:348.692933pt;}
.y14e{bottom:353.564267pt;}
.y51{bottom:354.692933pt;}
.y170{bottom:355.093067pt;}
.y1ea{bottom:355.102400pt;}
.yb4{bottom:357.134000pt;}
.y189{bottom:363.769067pt;}
.y20c{bottom:365.790133pt;}
.y12e{bottom:365.897733pt;}
.y1b7{bottom:368.179467pt;}
.ye2{bottom:368.467200pt;}
.y102{bottom:369.089733pt;}
.y70{bottom:370.530133pt;}
.y1e9{bottom:371.102400pt;}
.y26{bottom:372.111067pt;}
.y111{bottom:373.091867pt;}
.y50{bottom:380.692933pt;}
.y92{bottom:383.585333pt;}
.yb3{bottom:383.800533pt;}
.y1b6{bottom:384.446133pt;}
.y14d{bottom:387.790000pt;}
.y25{bottom:388.111067pt;}
.y20b{bottom:388.456800pt;}
.y16f{bottom:389.718667pt;}
.yca{bottom:391.359600pt;}
.yff{bottom:392.279600pt;}
.y12d{bottom:392.564400pt;}
.y1e8{bottom:394.661467pt;}
.y6f{bottom:397.196800pt;}
.y188{bottom:397.994800pt;}
.y110{bottom:399.758533pt;}
.y101{bottom:400.279600pt;}
.y1b5{bottom:400.712800pt;}
.y24{bottom:404.111067pt;}
.y4f{bottom:406.692933pt;}
.yfd{bottom:408.279600pt;}
.y20a{bottom:409.123467pt;}
.yb2{bottom:410.467200pt;}
.y1e7{bottom:410.661467pt;}
.y91{bottom:410.918667pt;}
.y14c{bottom:414.456667pt;}
.y100{bottom:416.279600pt;}
.y16e{bottom:416.785333pt;}
.yc9{bottom:418.026267pt;}
.y12c{bottom:419.231067pt;}
.y23{bottom:420.111067pt;}
.yfe{bottom:424.279600pt;}
.y1b4{bottom:424.538533pt;}
.y10f{bottom:426.425200pt;}
.y6e{bottom:431.422533pt;}
.y187{bottom:432.220533pt;}
.y4e{bottom:432.692933pt;}
.y1e6{bottom:434.220533pt;}
.y22{bottom:436.111067pt;}
.yb1{bottom:437.133867pt;}
.y90{bottom:438.252000pt;}
.y1b3{bottom:440.805200pt;}
.y14b{bottom:441.123333pt;}
.y16d{bottom:443.852000pt;}
.yc8{bottom:444.692933pt;}
.y1e5{bottom:450.220533pt;}
.y209{bottom:450.456800pt;}
.y21{bottom:452.111067pt;}
.yfc{bottom:452.672000pt;}
.y12b{bottom:453.456800pt;}
.y1b2{bottom:457.071867pt;}
.y6d{bottom:458.089200pt;}
.yb0{bottom:463.800533pt;}
.ye1{bottom:465.585333pt;}
.y4d{bottom:466.252000pt;}
.y186{bottom:466.446267pt;}
.y208{bottom:466.456800pt;}
.y14a{bottom:467.790000pt;}
.y20{bottom:468.111067pt;}
.y16c{bottom:470.918667pt;}
.yc7{bottom:471.359600pt;}
.y8f{bottom:473.144400pt;}
.y1e4{bottom:473.779600pt;}
.y12a{bottom:480.123467pt;}
.y1b1{bottom:480.897600pt;}
.y207{bottom:482.456800pt;}
.y1f{bottom:484.111067pt;}
.y6c{bottom:484.755867pt;}
.yfb{bottom:486.897733pt;}
.y1e3{bottom:489.779600pt;}
.yaf{bottom:490.467200pt;}
.y4c{bottom:492.252000pt;}
.ye0{bottom:492.918667pt;}
.y149{bottom:494.456667pt;}
.y10e{bottom:494.876667pt;}
.y1b0{bottom:497.164267pt;}
.y16b{bottom:497.985333pt;}
.yc6{bottom:498.026267pt;}
.y206{bottom:498.456800pt;}
.y1e{bottom:500.111067pt;}
.y8e{bottom:500.477733pt;}
.y185{bottom:500.672000pt;}
.y129{bottom:506.790133pt;}
.y6b{bottom:511.422533pt;}
.y1e2{bottom:513.338667pt;}
.y1af{bottom:513.430933pt;}
.y205{bottom:514.456800pt;}
.yae{bottom:517.133867pt;}
.y4b{bottom:518.252000pt;}
.ydf{bottom:520.252000pt;}
.y10d{bottom:521.543333pt;}
.y1d{bottom:523.670133pt;}
.yc5{bottom:524.692933pt;}
.y16a{bottom:525.052000pt;}
.y12{bottom:525.433867pt;}
.y8d{bottom:527.811067pt;}
.y148{bottom:528.682400pt;}
.y1e1{bottom:529.338667pt;}
.y204{bottom:530.456800pt;}
.y128{bottom:533.456800pt;}
.y184{bottom:534.897733pt;}
.y1ae{bottom:537.256533pt;}
.y6a{bottom:538.089200pt;}
.y1c{bottom:539.670133pt;}
.yad{bottom:543.800533pt;}
.y4a{bottom:544.252000pt;}
.yde{bottom:547.585333pt;}
.y11{bottom:548.993067pt;}
.yc4{bottom:551.359600pt;}
.y169{bottom:552.118667pt;}
.y1e0{bottom:552.897733pt;}
.y1ad{bottom:553.523333pt;}
.y8c{bottom:555.144400pt;}
.y147{bottom:555.349067pt;}
.yfa{bottom:555.349200pt;}
.y1b{bottom:555.670133pt;}
.y127{bottom:560.123467pt;}
.y69{bottom:564.755867pt;}
.y1df{bottom:568.897733pt;}
.y183{bottom:569.123467pt;}
.y1ac{bottom:569.789867pt;}
.y49{bottom:570.252000pt;}
.y1a{bottom:571.670133pt;}
.y203{bottom:571.790133pt;}
.y10{bottom:572.552000pt;}
.ydd{bottom:574.918667pt;}
.yac{bottom:578.026267pt;}
.y146{bottom:582.015733pt;}
.yf9{bottom:582.015867pt;}
.y8b{bottom:582.477733pt;}
.y168{bottom:586.744400pt;}
.y126{bottom:586.790133pt;}
.y19{bottom:587.670133pt;}
.y202{bottom:587.790133pt;}
.yf{bottom:588.552000pt;}
.y1de{bottom:592.456800pt;}
.y1ab{bottom:593.615600pt;}
.y48{bottom:596.252000pt;}
.y68{bottom:598.981600pt;}
.ydc{bottom:602.252000pt;}
.y182{bottom:603.349200pt;}
.y201{bottom:603.790133pt;}
.yab{bottom:604.692933pt;}
.y1dd{bottom:608.456800pt;}
.y145{bottom:608.682400pt;}
.yf8{bottom:608.682533pt;}
.y8a{bottom:609.811067pt;}
.y1aa{bottom:609.882267pt;}
.y18{bottom:611.229200pt;}
.ye{bottom:612.111067pt;}
.yc3{bottom:612.252000pt;}
.y167{bottom:613.811067pt;}
.y200{bottom:619.790133pt;}
.y125{bottom:621.015867pt;}
.y47{bottom:622.252000pt;}
.y1dc{bottom:624.456800pt;}
.y67{bottom:625.648267pt;}
.y17{bottom:627.229200pt;}
.yd{bottom:628.111067pt;}
.ydb{bottom:629.585333pt;}
.yaa{bottom:631.359600pt;}
.y1a9{bottom:633.708000pt;}
.y144{bottom:635.349067pt;}
.yf7{bottom:635.349200pt;}
.y1ff{bottom:635.790133pt;}
.y181{bottom:637.574933pt;}
.yc2{bottom:638.918667pt;}
.y166{bottom:640.877733pt;}
.y16{bottom:643.229200pt;}
.y89{bottom:644.703467pt;}
.y1db{bottom:648.015867pt;}
.y46{bottom:648.252000pt;}
.y1a8{bottom:649.974667pt;}
.yc{bottom:651.670133pt;}
.y1fe{bottom:651.790133pt;}
.y66{bottom:652.314933pt;}
.yda{bottom:656.918667pt;}
.ya9{bottom:658.026267pt;}
.yf6{bottom:662.015867pt;}
.y1da{bottom:664.015867pt;}
.yc1{bottom:665.585333pt;}
.y1a7{bottom:666.241333pt;}
.y15{bottom:666.788267pt;}
.y165{bottom:667.944400pt;}
.y143{bottom:669.574800pt;}
.y180{bottom:671.800533pt;}
.y88{bottom:672.036800pt;}
.y45{bottom:674.252000pt;}
.yb{bottom:675.229200pt;}
.y65{bottom:678.981600pt;}
.y1d9{bottom:680.015867pt;}
.y14{bottom:682.788267pt;}
.yd9{bottom:684.252000pt;}
.y1a6{bottom:690.067067pt;}
.ya{bottom:691.229200pt;}
.ya8{bottom:692.252000pt;}
.y124{bottom:694.800667pt;}
.y164{bottom:695.011067pt;}
.y142{bottom:696.241467pt;}
.yf5{bottom:696.241600pt;}
.y13{bottom:698.788267pt;}
.y87{bottom:699.370133pt;}
.y44{bottom:700.252000pt;}
.y1d8{bottom:703.574933pt;}
.y17f{bottom:706.026267pt;}
.y1a5{bottom:706.333733pt;}
.y64{bottom:713.207333pt;}
.y9{bottom:714.788267pt;}
.ya7{bottom:718.918667pt;}
.yd8{bottom:719.144400pt;}
.y1d7{bottom:719.574933pt;}
.y123{bottom:721.467333pt;}
.y163{bottom:722.077733pt;}
.y1a4{bottom:722.600400pt;}
.y141{bottom:722.908133pt;}
.yf4{bottom:722.908267pt;}
.y86{bottom:726.703467pt;}
.y43{bottom:733.811067pt;}
.y1d6{bottom:735.574933pt;}
.y17e{bottom:740.252000pt;}
.y1fd{bottom:743.134000pt;}
.ya6{bottom:745.585333pt;}
.y1a3{bottom:746.426133pt;}
.yd7{bottom:746.477733pt;}
.y122{bottom:748.134000pt;}
.yf3{bottom:749.574933pt;}
.yc0{bottom:753.144400pt;}
.y85{bottom:754.036800pt;}
.y8{bottom:754.654800pt;}
.y162{bottom:756.703467pt;}
.y140{bottom:757.133867pt;}
.y1d5{bottom:759.134000pt;}
.y42{bottom:759.811067pt;}
.y1a2{bottom:762.692800pt;}
.yd6{bottom:773.811067pt;}
.y121{bottom:774.800667pt;}
.y1d4{bottom:775.134000pt;}
.y1a1{bottom:778.959467pt;}
.ya5{bottom:779.811067pt;}
.y84{bottom:781.370133pt;}
.y161{bottom:783.770133pt;}
.y13f{bottom:783.800533pt;}
.yf2{bottom:783.800667pt;}
.y41{bottom:785.811067pt;}
.y63{bottom:786.992133pt;}
.y1fc{bottom:791.134000pt;}
.y7{bottom:796.521333pt;}
.y1d3{bottom:798.692933pt;}
.y1a0{bottom:802.785200pt;}
.ya4{bottom:806.477733pt;}
.y83{bottom:808.703467pt;}
.y120{bottom:809.026267pt;}
.y13e{bottom:810.467200pt;}
.yf1{bottom:810.467333pt;}
.y160{bottom:810.836800pt;}
.y40{bottom:811.811067pt;}
.y62{bottom:813.658800pt;}
.y17d{bottom:814.036800pt;}
.y1d2{bottom:814.692933pt;}
.y19f{bottom:819.051867pt;}
.y6{bottom:830.121333pt;}
.y1d1{bottom:830.692933pt;}
.ya3{bottom:833.144400pt;}
.y19e{bottom:835.318533pt;}
.y82{bottom:836.036800pt;}
.y3f{bottom:837.811067pt;}
.y15f{bottom:837.903467pt;}
.y61{bottom:840.325467pt;}
.ybf{bottom:840.703467pt;}
.y11f{bottom:843.418667pt;}
.yf0{bottom:844.692933pt;}
.y1fb{bottom:846.692933pt;}
.y1d0{bottom:854.252000pt;}
.y19d{bottom:859.144267pt;}
.ya2{bottom:859.811067pt;}
.y81{bottom:863.370133pt;}
.y5{bottom:863.721333pt;}
.y3e{bottom:863.811067pt;}
.y11e{bottom:864.085333pt;}
.y15e{bottom:864.970133pt;}
.y60{bottom:866.992133pt;}
.ybe{bottom:867.370133pt;}
.y1cf{bottom:870.252000pt;}
.yef{bottom:871.359600pt;}
.y19c{bottom:875.410933pt;}
.y13d{bottom:878.918667pt;}
.y11d{bottom:884.752000pt;}
.y1ce{bottom:886.252000pt;}
.y3d{bottom:889.811067pt;}
.yd5{bottom:890.703467pt;}
.y19b{bottom:891.677600pt;}
.y15d{bottom:892.036800pt;}
.y5f{bottom:893.658800pt;}
.ya1{bottom:894.036800pt;}
.y80{bottom:898.262533pt;}
.y1fa{bottom:902.252000pt;}
.yee{bottom:905.585333pt;}
.y1cd{bottom:909.811067pt;}
.y11c{bottom:913.144400pt;}
.y4{bottom:914.587867pt;}
.y19a{bottom:915.503333pt;}
.y3c{bottom:915.811067pt;}
.ya0{bottom:920.703467pt;}
.y7f{bottom:925.595867pt;}
.y1cc{bottom:925.811067pt;}
.y15c{bottom:926.662533pt;}
.y5e{bottom:927.884533pt;}
.y17c{bottom:928.262533pt;}
.y199{bottom:931.770000pt;}
.yed{bottom:939.811067pt;}
.y3b{bottom:941.811067pt;}
.y13c{bottom:947.370000pt;}
.y9f{bottom:947.370133pt;}
.y198{bottom:948.036667pt;}
.y7e{bottom:952.929200pt;}
.y15b{bottom:953.729200pt;}
.y5d{bottom:954.551200pt;}
.y17b{bottom:954.929200pt;}
.y1f9{bottom:957.811067pt;}
.y1cb{bottom:965.370133pt;}
.yec{bottom:966.477733pt;}
.y197{bottom:971.862533pt;}
.y13b{bottom:974.036667pt;}
.y9e{bottom:974.036800pt;}
.y7d{bottom:980.262533pt;}
.y15a{bottom:980.795867pt;}
.y5c{bottom:981.217867pt;}
.y1ca{bottom:981.370133pt;}
.y17a{bottom:981.595867pt;}
.y196{bottom:988.129200pt;}
.y1c9{bottom:997.370133pt;}
.yeb{bottom:1000.703467pt;}
.y3a{bottom:1001.370000pt;}
.y195{bottom:1004.395733pt;}
.y7c{bottom:1007.595867pt;}
.y159{bottom:1007.862533pt;}
.y5b{bottom:1007.884533pt;}
.y13a{bottom:1008.262400pt;}
.y9d{bottom:1008.262533pt;}
.y3{bottom:1019.057733pt;}
.y194{bottom:1020.662400pt;}
.y1c8{bottom:1020.929200pt;}
.y5a{bottom:1034.551200pt;}
.y139{bottom:1034.929067pt;}
.y7b{bottom:1034.929200pt;}
.y193{bottom:1036.929067pt;}
.y1c7{bottom:1036.929200pt;}
.y2{bottom:1044.391067pt;}
.y1{bottom:1069.724400pt;}
.y37{bottom:1080.535467pt;}
.ha{height:32.000000pt;}
.hc{height:32.042667pt;}
.hb{height:33.291667pt;}
.h7{height:40.000000pt;}
.h8{height:41.614583pt;}
.h9{height:48.000000pt;}
.h6{height:48.064000pt;}
.hf{height:49.937500pt;}
.hd{height:50.793425pt;}
.h4{height:56.000000pt;}
.h3{height:60.000000pt;}
.h2{height:60.080000pt;}
.h5{height:84.000000pt;}
.he{height:156.595600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:44.416267pt;}
.x10{left:47.232667pt;}
.x11{left:49.800400pt;}
.xc{left:58.654533pt;}
.x5{left:61.892667pt;}
.x9{left:63.010000pt;}
.xa{left:66.701467pt;}
.x15{left:71.563467pt;}
.x12{left:75.023600pt;}
.xe{left:76.942267pt;}
.x25{left:80.744667pt;}
.x20{left:81.682400pt;}
.x7{left:83.407200pt;}
.x16{left:85.974133pt;}
.xd{left:93.400667pt;}
.x17{left:94.488133pt;}
.xb{left:95.607733pt;}
.x8{left:101.174133pt;}
.x21{left:113.100000pt;}
.x18{left:118.488133pt;}
.x1a{left:146.236667pt;}
.x14{left:161.531067pt;}
.xf{left:194.649867pt;}
.x4{left:202.208933pt;}
.x26{left:227.380533pt;}
.x24{left:249.121600pt;}
.x23{left:270.697600pt;}
.x1b{left:291.780933pt;}
.x22{left:306.948000pt;}
.x13{left:437.952800pt;}
.x27{left:528.419867pt;}
.x1d{left:545.482800pt;}
.x1c{left:556.377867pt;}
.x3{left:620.486533pt;}
.x2{left:626.106933pt;}
.x1e{left:641.545200pt;}
.x1{left:642.647200pt;}
.x1f{left:653.739200pt;}
.x19{left:662.750800pt;}
}




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