
    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_51d1c3cae765956546380c10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_e23dee55abdf799fcab54240.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_e4b26cfbf5f53277dfc802a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_312aa0289e456514d7923845.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_190b38b2cf288365d662b09b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027344;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_11bede3fce962d0b0f7184f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011230;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_904df8219c80fbc3fcb6bde3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130859;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_95a99d1f66eeae309257442e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_1dee370112f2a784df384ab9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.770020;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_2acf45f7f5bb7a3c93336705.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.032715;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_d6499a86aa8488aa0ab0a8af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976111;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_30f411cd3c02e406bc2dbc1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.ls17{letter-spacing:-2.448000px;}
.ls1a{letter-spacing:-1.872000px;}
.ls11{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.734400px;}
.ls13{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.120000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.025200px;}
.ls19{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.204000px;}
.ls12{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.960000px;}
.ls24{letter-spacing:0.972000px;}
.ls16{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.392000px;}
.ls25{letter-spacing:3.348000px;}
.ls9{letter-spacing:4.974600px;}
.ls22{letter-spacing:7.918200px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls15{letter-spacing:213.102000px;}
.ls14{letter-spacing:234.430200px;}
.ls20{letter-spacing:238.613400px;}
.ls21{letter-spacing:259.941600px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.wse5{word-spacing:-16.740000px;}
.ws4{word-spacing:-14.940000px;}
.wse4{word-spacing:-14.364000px;}
.ws20{word-spacing:-13.980000px;}
.wsa9{word-spacing:-13.500000px;}
.wse3{word-spacing:-13.392000px;}
.wsb6{word-spacing:-12.864000px;}
.wsb3{word-spacing:-12.816000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-11.826000px;}
.wsb8{word-spacing:-11.424000px;}
.ws2{word-spacing:-10.944000px;}
.ws1{word-spacing:-9.618000px;}
.ws0{word-spacing:-9.542544px;}
.ws3{word-spacing:-9.158400px;}
.wse6{word-spacing:-5.670000px;}
.wsd7{word-spacing:-3.480000px;}
.wse0{word-spacing:-3.300000px;}
.ws7a{word-spacing:-3.240000px;}
.ws70{word-spacing:-2.940000px;}
.wsad{word-spacing:-2.880000px;}
.ws34{word-spacing:-2.700000px;}
.ws3b{word-spacing:-2.640000px;}
.wsce{word-spacing:-2.592000px;}
.ws93{word-spacing:-2.580000px;}
.ws3a{word-spacing:-2.520000px;}
.wsa1{word-spacing:-2.460000px;}
.ws13{word-spacing:-2.376000px;}
.ws8f{word-spacing:-2.280000px;}
.wsec{word-spacing:-2.214000px;}
.ws6d{word-spacing:-2.100000px;}
.ws6b{word-spacing:-2.040000px;}
.ws43{word-spacing:-1.980000px;}
.ws61{word-spacing:-1.920000px;}
.wsaa{word-spacing:-1.890000px;}
.ws45{word-spacing:-1.860000px;}
.ws90{word-spacing:-1.800000px;}
.wsa0{word-spacing:-1.740000px;}
.ws39{word-spacing:-1.680000px;}
.wse{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.560000px;}
.ws56{word-spacing:-1.500000px;}
.wsef{word-spacing:-1.458000px;}
.wsc1{word-spacing:-1.392000px;}
.ws27{word-spacing:-1.320000px;}
.ws5a{word-spacing:-1.260000px;}
.ws86{word-spacing:-1.200000px;}
.wsc0{word-spacing:-1.152000px;}
.ws64{word-spacing:-1.140000px;}
.ws69{word-spacing:-1.080000px;}
.wsbd{word-spacing:-1.008000px;}
.ws65{word-spacing:-0.960000px;}
.wsbe{word-spacing:-0.864000px;}
.ws57{word-spacing:-0.840000px;}
.ws63{word-spacing:-0.780000px;}
.ws4a{word-spacing:-0.720000px;}
.ws91{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.540000px;}
.ws8a{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.420000px;}
.wsbc{word-spacing:-0.360000px;}
.ws41{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.204000px;}
.ws88{word-spacing:-0.120000px;}
.wse1{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.043200px;}
.ws8{word-spacing:0.000000px;}
.wsdb{word-spacing:0.060000px;}
.ws15{word-spacing:0.108000px;}
.ws79{word-spacing:0.120000px;}
.ws44{word-spacing:0.180000px;}
.ws24{word-spacing:0.240000px;}
.ws2e{word-spacing:0.300000px;}
.ws12{word-spacing:0.324000px;}
.ws49{word-spacing:0.360000px;}
.ws48{word-spacing:0.420000px;}
.ws9a{word-spacing:0.480000px;}
.ws72{word-spacing:0.540000px;}
.ws9f{word-spacing:0.600000px;}
.ws5b{word-spacing:0.660000px;}
.wsf{word-spacing:0.702000px;}
.wsa8{word-spacing:0.720000px;}
.wsb{word-spacing:0.734400px;}
.ws78{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws29{word-spacing:0.900000px;}
.ws6c{word-spacing:0.960000px;}
.ws40{word-spacing:1.020000px;}
.ws10{word-spacing:1.080000px;}
.wsd6{word-spacing:1.140000px;}
.ws7b{word-spacing:1.200000px;}
.wsd1{word-spacing:1.320000px;}
.ws1c{word-spacing:1.380000px;}
.ws36{word-spacing:1.440000px;}
.wsd0{word-spacing:1.500000px;}
.ws14{word-spacing:1.512000px;}
.wsde{word-spacing:1.560000px;}
.ws18{word-spacing:1.566000px;}
.ws60{word-spacing:1.620000px;}
.ws33{word-spacing:1.740000px;}
.ws74{word-spacing:1.860000px;}
.wsbf{word-spacing:1.872000px;}
.ws4d{word-spacing:1.980000px;}
.ws46{word-spacing:2.040000px;}
.wsdf{word-spacing:2.100000px;}
.ws85{word-spacing:2.220000px;}
.ws26{word-spacing:2.280000px;}
.ws3d{word-spacing:2.340000px;}
.wsaf{word-spacing:2.460000px;}
.ws7d{word-spacing:2.520000px;}
.wsac{word-spacing:2.580000px;}
.wsc{word-spacing:2.592000px;}
.ws17{word-spacing:2.646000px;}
.ws2d{word-spacing:2.700000px;}
.ws6e{word-spacing:2.940000px;}
.ws9d{word-spacing:3.000000px;}
.ws2a{word-spacing:3.060000px;}
.ws32{word-spacing:3.120000px;}
.ws54{word-spacing:3.180000px;}
.wsab{word-spacing:3.240000px;}
.wsd5{word-spacing:3.300000px;}
.wsd{word-spacing:3.348000px;}
.ws28{word-spacing:3.360000px;}
.ws83{word-spacing:3.420000px;}
.ws3c{word-spacing:3.480000px;}
.wsdc{word-spacing:3.540000px;}
.ws30{word-spacing:3.600000px;}
.ws16{word-spacing:3.618000px;}
.wsbb{word-spacing:3.720000px;}
.wsd3{word-spacing:3.780000px;}
.wsa6{word-spacing:3.840000px;}
.ws22{word-spacing:3.900000px;}
.wsa7{word-spacing:3.960000px;}
.ws84{word-spacing:4.080000px;}
.ws23{word-spacing:4.140000px;}
.ws59{word-spacing:4.200000px;}
.ws94{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws9e{word-spacing:4.440000px;}
.wse2{word-spacing:4.500000px;}
.ws8b{word-spacing:4.620000px;}
.ws5f{word-spacing:4.680000px;}
.ws2f{word-spacing:4.800000px;}
.ws4c{word-spacing:4.860000px;}
.ws51{word-spacing:4.980000px;}
.ws52{word-spacing:5.100000px;}
.ws50{word-spacing:5.160000px;}
.ws42{word-spacing:5.280000px;}
.ws92{word-spacing:5.400000px;}
.ws66{word-spacing:5.520000px;}
.ws9b{word-spacing:5.580000px;}
.ws3e{word-spacing:5.640000px;}
.ws1d{word-spacing:5.700000px;}
.ws9c{word-spacing:5.760000px;}
.wsd2{word-spacing:5.880000px;}
.ws35{word-spacing:5.940000px;}
.wseb{word-spacing:5.994000px;}
.ws71{word-spacing:6.000000px;}
.wsda{word-spacing:6.060000px;}
.wscf{word-spacing:6.120000px;}
.ws1a{word-spacing:6.240000px;}
.ws2c{word-spacing:6.300000px;}
.ws38{word-spacing:6.360000px;}
.ws1e{word-spacing:6.540000px;}
.ws87{word-spacing:6.660000px;}
.ws11{word-spacing:6.750000px;}
.ws53{word-spacing:6.780000px;}
.ws21{word-spacing:6.840000px;}
.ws5d{word-spacing:6.900000px;}
.ws31{word-spacing:6.960000px;}
.ws4e{word-spacing:7.020000px;}
.ws58{word-spacing:7.080000px;}
.wsea{word-spacing:7.182000px;}
.wsee{word-spacing:7.290000px;}
.ws77{word-spacing:7.320000px;}
.ws4b{word-spacing:7.440000px;}
.ws4f{word-spacing:7.500000px;}
.ws55{word-spacing:7.560000px;}
.wsed{word-spacing:7.668000px;}
.ws6a{word-spacing:7.680000px;}
.ws67{word-spacing:7.800000px;}
.ws6f{word-spacing:7.860000px;}
.wsc2{word-spacing:7.980000px;}
.ws89{word-spacing:8.160000px;}
.wsae{word-spacing:8.280000px;}
.ws5e{word-spacing:8.340000px;}
.ws73{word-spacing:8.580000px;}
.ws76{word-spacing:8.640000px;}
.wsd9{word-spacing:8.700000px;}
.ws47{word-spacing:8.880000px;}
.ws7c{word-spacing:9.060000px;}
.ws19{word-spacing:9.660000px;}
.ws75{word-spacing:10.080000px;}
.wsd8{word-spacing:10.200000px;}
.wse7{word-spacing:10.854000px;}
.wsf0{word-spacing:11.286000px;}
.ws3f{word-spacing:11.760000px;}
.wsdd{word-spacing:12.360000px;}
.ws37{word-spacing:12.780000px;}
.wsd4{word-spacing:13.200000px;}
.ws68{word-spacing:17.820000px;}
.wsb0{word-spacing:18.300000px;}
.wse8{word-spacing:19.602000px;}
.wse9{word-spacing:25.110000px;}
.wsa2{word-spacing:51.091800px;}
.ws95{word-spacing:76.376400px;}
.wsc3{word-spacing:125.614800px;}
.wscb{word-spacing:127.225200px;}
.wsc9{word-spacing:128.830800px;}
.ws97{word-spacing:147.538800px;}
.wsc7{word-spacing:148.548000px;}
.wscd{word-spacing:148.569000px;}
.wsa4{word-spacing:156.195000px;}
.ws98{word-spacing:168.882600px;}
.wsc5{word-spacing:171.502200px;}
.wsc4{word-spacing:193.645800px;}
.wsc8{word-spacing:195.251400px;}
.wsc6{word-spacing:195.256800px;}
.wsca{word-spacing:203.755200px;}
.wscc{word-spacing:225.083400px;}
.ws96{word-spacing:264.893400px;}
.wsa5{word-spacing:277.733400px;}
.ws8c{word-spacing:296.315400px;}
.wsa3{word-spacing:299.061600px;}
.wsb2{word-spacing:306.683400px;}
.ws99{word-spacing:307.565400px;}
.ws7f{word-spacing:401.581200px;}
.ws7e{word-spacing:427.891200px;}
.ws8d{word-spacing:436.933200px;}
.wsb4{word-spacing:437.261400px;}
.wsb9{word-spacing:437.921400px;}
.wsb5{word-spacing:447.602400px;}
.wsba{word-spacing:448.118400px;}
.wsb7{word-spacing:458.899200px;}
.ws8e{word-spacing:477.409800px;}
.wsb1{word-spacing:561.799200px;}
.ws80{word-spacing:626.797200px;}
.ws81{word-spacing:847.228200px;}
.ws82{word-spacing:934.263600px;}
._7f{margin-left:-21.903480px;}
._80{margin-left:-16.868160px;}
._2a{margin-left:-14.148000px;}
._9{margin-left:-11.067000px;}
._f{margin-left:-9.481800px;}
._8{margin-left:-6.271800px;}
._5{margin-left:-5.100600px;}
._4{margin-left:-3.439800px;}
._1{margin-left:-2.152200px;}
._0{margin-left:-1.081200px;}
._6{width:1.400280px;}
._2{width:2.488800px;}
._a{width:3.961200px;}
._7{width:5.896800px;}
._b{width:6.955200px;}
._e{width:8.472000px;}
._c{width:9.630000px;}
._d{width:10.686000px;}
._31{width:11.832000px;}
._9f{width:15.616800px;}
._a0{width:16.830120px;}
._a1{width:24.361800px;}
._3{width:36.321600px;}
._9e{width:43.144800px;}
._60{width:49.394400px;}
._62{width:50.504520px;}
._82{width:55.531200px;}
._61{width:57.064680px;}
._47{width:59.113800px;}
._44{width:60.153600px;}
._46{width:63.586920px;}
._45{width:67.009200px;}
._43{width:72.736800px;}
._59{width:100.617000px;}
._42{width:119.353800px;}
._6c{width:146.770800px;}
._58{width:152.137200px;}
._4c{width:159.442800px;}
._65{width:168.099000px;}
._56{width:180.771000px;}
._81{width:188.469600px;}
._49{width:200.262000px;}
._5f{width:202.267800px;}
._89{width:205.555200px;}
._85{width:207.160800px;}
._91{width:208.644120px;}
._8f{width:214.054200px;}
._84{width:215.659200px;}
._4b{width:217.270200px;}
._50{width:221.590200px;}
._67{width:230.094600px;}
._96{width:236.851200px;}
._52{width:238.598400px;}
._5d{width:242.934000px;}
._64{width:251.438400px;}
._4a{width:259.789200px;}
._6e{width:275.512200px;}
._4e{width:276.797400px;}
._51{width:281.133000px;}
._7a{width:284.214960px;}
._68{width:289.621800px;}
._53{width:298.141200px;}
._5e{width:302.461200px;}
._69{width:310.965600px;}
._48{width:328.393200px;}
._93{width:333.619800px;}
._79{width:342.369720px;}
._9a{width:354.129000px;}
._57{width:360.185400px;}
._41{width:365.051400px;}
._8d{width:377.062800px;}
._3b{width:390.247200px;}
._5a{width:391.600920px;}
._8c{width:407.254800px;}
._4f{width:428.873400px;}
._38{width:439.099200px;}
._5b{width:442.417320px;}
._35{width:447.911400px;}
._63{width:451.768200px;}
._6d{width:483.560400px;}
._30{width:485.068200px;}
._2f{width:497.404200px;}
._70{width:514.975920px;}
._73{width:519.953880px;}
._55{width:546.129600px;}
._66{width:552.248400px;}
._78{width:554.791680px;}
._33{width:566.503200px;}
._54{width:569.801400px;}
._83{width:581.905200px;}
._7b{width:588.623880px;}
._32{width:590.562600px;}
._3a{width:598.295400px;}
._94{width:604.839000px;}
._8b{width:615.303000px;}
._5c{width:617.001600px;}
._75{width:625.601280px;}
._3d{width:629.710920px;}
._4d{width:632.905200px;}
._99{width:636.631200px;}
._7d{width:640.088640px;}
._8e{width:645.112920px;}
._36{width:666.983400px;}
._9b{width:668.046720px;}
._6b{width:669.504600px;}
._7c{width:671.543520px;}
._3f{width:680.527320px;}
._87{width:683.991000px;}
._2c{width:691.397400px;}
._6a{width:693.176400px;}
._1d{width:696.051600px;}
._2b{width:705.476400px;}
._2d{width:708.807600px;}
._72{width:712.056000px;}
._3e{width:713.255400px;}
._71{width:717.512400px;}
._9c{width:718.863120px;}
._17{width:740.152800px;}
._10{width:741.404400px;}
._77{width:743.899200px;}
._3c{width:750.775200px;}
._24{width:757.095600px;}
._40{width:758.842200px;}
._2e{width:764.428200px;}
._76{width:771.468000px;}
._39{width:784.239600px;}
._7e{width:799.458120px;}
._8a{width:801.247200px;}
._37{width:807.911400px;}
._98{width:822.575400px;}
._88{width:824.919000px;}
._74{width:836.422440px;}
._97{width:846.247200px;}
._90{width:849.255000px;}
._92{width:850.791000px;}
._34{width:871.015200px;}
._9d{width:872.119200px;}
._86{width:888.022800px;}
._95{width:909.351000px;}
._11{width:913.558800px;}
._1e{width:933.351600px;}
._23{width:946.956600px;}
._16{width:948.201000px;}
._26{width:978.372120px;}
._19{width:979.616520px;}
._20{width:1015.644600px;}
._13{width:1016.889000px;}
._28{width:1029.188520px;}
._1b{width:1030.432920px;}
._1a{width:1063.161000px;}
._27{width:1080.103800px;}
._25{width:1099.436400px;}
._18{width:1100.680800px;}
._15{width:1134.145200px;}
._22{width:1151.088000px;}
._21{width:1156.572600px;}
._14{width:1157.817000px;}
._29{width:1182.444600px;}
._1c{width:1210.037400px;}
._12{width:1220.920800px;}
._1f{width:1237.863600px;}
._6f{width:1406.039400px;}
.fc1{color:rgb(33,75,122);}
.fc4{color:rgb(37,37,37);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:71.698950px;}
.y3a{bottom:74.786250px;}
.y3b{bottom:75.036150px;}
.y9c{bottom:113.078700px;}
.y6b{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.yc0{bottom:120.243300px;}
.y102{bottom:120.500700px;}
.y145{bottom:120.500850px;}
.yf{bottom:120.772050px;}
.y9b{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.ye{bottom:135.172050px;}
.y2a{bottom:138.212550px;}
.ybf{bottom:144.300000px;}
.yd{bottom:149.572050px;}
.y9a{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yc{bottom:163.972050px;}
.ybe{bottom:165.205500px;}
.y99{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.ybd{bottom:186.111000px;}
.y98{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y37{bottom:206.987850px;}
.ybc{bottom:207.016500px;}
.y97{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.y36{bottom:224.987850px;}
.ybb{bottom:227.922000px;}
.y14b{bottom:230.161500px;}
.ye0{bottom:236.113350px;}
.y96{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.y35{bottom:242.987850px;}
.y25{bottom:243.212550px;}
.yba{bottom:248.827500px;}
.y95{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.ydf{bottom:260.170050px;}
.y34{bottom:260.987850px;}
.yb9{bottom:269.733150px;}
.y33{bottom:278.987850px;}
.yde{bottom:281.075550px;}
.y94{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y24{bottom:281.700450px;}
.yb8{bottom:290.638650px;}
.y32{bottom:296.987850px;}
.ydd{bottom:301.981050px;}
.y93{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y152{bottom:307.951800px;}
.yb7{bottom:311.544150px;}
.y31{bottom:314.987850px;}
.ydc{bottom:322.886700px;}
.y92{bottom:323.078700px;}
.y61{bottom:323.078850px;}
.yb6{bottom:332.449650px;}
.y151{bottom:337.960650px;}
.ydb{bottom:343.792200px;}
.y91{bottom:344.078700px;}
.y60{bottom:344.078850px;}
.y30{bottom:349.995600px;}
.yb5{bottom:353.355150px;}
.y150{bottom:358.960650px;}
.y23{bottom:362.227950px;}
.yda{bottom:364.697700px;}
.y90{bottom:365.078700px;}
.y5f{bottom:365.078850px;}
.y2f{bottom:367.995600px;}
.yb4{bottom:374.260650px;}
.y14f{bottom:379.960650px;}
.yd9{bottom:385.603200px;}
.y2e{bottom:385.995600px;}
.y8f{bottom:386.078700px;}
.y5e{bottom:386.078850px;}
.yb3{bottom:395.466150px;}
.y14e{bottom:400.960650px;}
.y2d{bottom:403.995600px;}
.y22{bottom:405.087750px;}
.yd8{bottom:406.508700px;}
.y144{bottom:406.598550px;}
.y8e{bottom:407.078700px;}
.y5d{bottom:407.078850px;}
.y14d{bottom:421.960650px;}
.y2c{bottom:421.995600px;}
.y21{bottom:424.887750px;}
.yd7{bottom:427.414200px;}
.yb2{bottom:427.648800px;}
.y8d{bottom:428.078700px;}
.y5c{bottom:428.078850px;}
.y143{bottom:430.230150px;}
.y14c{bottom:442.960650px;}
.y20{bottom:444.687750px;}
.yd6{bottom:448.319700px;}
.y8c{bottom:449.078700px;}
.y5b{bottom:449.078850px;}
.y142{bottom:450.285300px;}
.y1f{bottom:464.487750px;}
.yd5{bottom:469.225200px;}
.y8b{bottom:470.078700px;}
.y5a{bottom:470.078850px;}
.y141{bottom:470.340300px;}
.yb1{bottom:478.807200px;}
.y1e{bottom:484.287750px;}
.y140{bottom:485.340300px;}
.yd4{bottom:490.130700px;}
.y8a{bottom:491.078700px;}
.y59{bottom:491.078850px;}
.yb0{bottom:502.863900px;}
.y1d{bottom:504.087750px;}
.y13f{bottom:505.395450px;}
.yd3{bottom:511.036200px;}
.y89{bottom:512.078700px;}
.y58{bottom:512.078850px;}
.y101{bottom:512.428350px;}
.yaf{bottom:523.769400px;}
.y1c{bottom:523.887750px;}
.yf1{bottom:524.271900px;}
.y13e{bottom:525.450600px;}
.yd2{bottom:531.941700px;}
.y88{bottom:533.078700px;}
.y57{bottom:533.078850px;}
.y100{bottom:536.532300px;}
.y1b{bottom:543.687750px;}
.yae{bottom:544.674900px;}
.ycf{bottom:545.083050px;}
.y13d{bottom:545.505750px;}
.yf0{bottom:548.328600px;}
.y87{bottom:554.078700px;}
.y56{bottom:554.078850px;}
.yff{bottom:557.485050px;}
.y1a{bottom:563.487750px;}
.yd1{bottom:564.124350px;}
.y13c{bottom:565.560900px;}
.yad{bottom:565.580400px;}
.yce{bottom:569.139750px;}
.yef{bottom:569.234100px;}
.y86{bottom:575.078700px;}
.y55{bottom:575.078850px;}
.y122{bottom:577.761450px;}
.yfe{bottom:578.390550px;}
.y19{bottom:583.287750px;}
.y10d{bottom:584.591850px;}
.y13b{bottom:585.615900px;}
.yac{bottom:586.485900px;}
.ycd{bottom:590.045250px;}
.yee{bottom:590.139750px;}
.yfd{bottom:593.390550px;}
.y85{bottom:596.078700px;}
.y54{bottom:596.078850px;}
.y121{bottom:601.392900px;}
.y18{bottom:603.087750px;}
.y10c{bottom:604.391850px;}
.yed{bottom:605.139750px;}
.y13a{bottom:605.671050px;}
.yab{bottom:607.391400px;}
.ycc{bottom:610.950750px;}
.yfc{bottom:614.296050px;}
.y84{bottom:617.078700px;}
.y53{bottom:617.078850px;}
.y120{bottom:621.448050px;}
.y17{bottom:622.887750px;}
.y139{bottom:625.726200px;}
.yec{bottom:626.045250px;}
.yaa{bottom:628.296900px;}
.ycb{bottom:631.856250px;}
.y10b{bottom:634.400850px;}
.yfb{bottom:635.201550px;}
.y83{bottom:638.078700px;}
.y52{bottom:638.078850px;}
.y11f{bottom:641.503200px;}
.y16{bottom:642.687750px;}
.y138{bottom:645.781350px;}
.yeb{bottom:646.950750px;}
.ya9{bottom:649.202400px;}
.ya2{bottom:652.440900px;}
.yca{bottom:652.761750px;}
.y10a{bottom:655.400850px;}
.yfa{bottom:656.107050px;}
.y82{bottom:659.078700px;}
.y51{bottom:659.078850px;}
.y11e{bottom:661.558200px;}
.y15{bottom:662.487750px;}
.y137{bottom:665.836350px;}
.yea{bottom:667.856250px;}
.ya8{bottom:670.107900px;}
.yc9{bottom:673.667250px;}
.y109{bottom:676.400850px;}
.yf9{bottom:677.012550px;}
.y81{bottom:680.078700px;}
.y50{bottom:680.078850px;}
.y11d{bottom:681.613350px;}
.y14{bottom:682.287750px;}
.y136{bottom:686.191500px;}
.ye9{bottom:688.761750px;}
.ya7{bottom:691.013400px;}
.y159{bottom:694.441050px;}
.yc8{bottom:694.572750px;}
.y108{bottom:697.400850px;}
.yf8{bottom:697.918050px;}
.y80{bottom:701.078700px;}
.y4f{bottom:701.078850px;}
.y11c{bottom:701.668500px;}
.y13{bottom:702.087750px;}
.y135{bottom:706.246650px;}
.yc7{bottom:709.572750px;}
.ye8{bottom:709.667250px;}
.ya6{bottom:711.918900px;}
.yf7{bottom:718.823550px;}
.y11b{bottom:721.723650px;}
.y12{bottom:721.887750px;}
.y7f{bottom:722.078700px;}
.y9f{bottom:722.078850px;}
.yc6{bottom:730.478250px;}
.ye7{bottom:730.572750px;}
.ya5{bottom:732.824550px;}
.y4e{bottom:736.441050px;}
.y134{bottom:738.004200px;}
.yf6{bottom:739.729050px;}
.y11a{bottom:741.778800px;}
.y7e{bottom:743.078700px;}
.y9e{bottom:743.078850px;}
.yc5{bottom:751.383750px;}
.ye6{bottom:751.478250px;}
.y11{bottom:752.985300px;}
.ya4{bottom:753.730050px;}
.yf5{bottom:760.634700px;}
.y119{bottom:761.833800px;}
.y7d{bottom:764.078700px;}
.y9d{bottom:764.078850px;}
.y158{bottom:769.529250px;}
.yc4{bottom:772.289400px;}
.ye5{bottom:772.383750px;}
.y14a{bottom:776.209650px;}
.yd0{bottom:778.441050px;}
.yf4{bottom:781.540050px;}
.y118{bottom:781.888950px;}
.y7c{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.ya3{bottom:785.912700px;}
.y133{bottom:787.877250px;}
.yc3{bottom:793.194750px;}
.ye4{bottom:793.289400px;}
.y117{bottom:801.944100px;}
.yf3{bottom:802.445550px;}
.y7b{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.y149{bottom:806.218650px;}
.y132{bottom:811.508850px;}
.yc2{bottom:814.100250px;}
.ye3{bottom:814.194750px;}
.y116{bottom:821.999250px;}
.y7a{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.y148{bottom:827.218650px;}
.y131{bottom:831.564000px;}
.yb{bottom:832.266750px;}
.yf2{bottom:834.628350px;}
.ye2{bottom:835.100250px;}
.y115{bottom:842.354250px;}
.yc1{bottom:846.282900px;}
.y79{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.y147{bottom:848.218650px;}
.ya{bottom:850.266750px;}
.y130{bottom:851.619000px;}
.y114{bottom:862.409400px;}
.y12f{bottom:866.619000px;}
.ye1{bottom:867.282900px;}
.y9{bottom:868.266750px;}
.y78{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y146{bottom:869.218650px;}
.y8{bottom:886.266750px;}
.y12e{bottom:886.674150px;}
.y77{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y113{bottom:894.166950px;}
.y157{bottom:895.529250px;}
.y7{bottom:904.266750px;}
.y12d{bottom:906.729300px;}
.y76{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:922.266750px;}
.y12c{bottom:926.784450px;}
.y75{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y112{bottom:946.839150px;}
.y12b{bottom:946.839450px;}
.y74{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y5{bottom:957.274800px;}
.y156{bottom:958.529250px;}
.y111{bottom:966.639150px;}
.y12a{bottom:966.894600px;}
.y73{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:978.274800px;}
.y129{bottom:986.949750px;}
.y72{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.y110{bottom:996.648150px;}
.y128{bottom:1007.004750px;}
.y71{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y10f{bottom:1017.648150px;}
.y155{bottom:1021.529250px;}
.y127{bottom:1027.060050px;}
.y107{bottom:1029.765900px;}
.y70{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y10e{bottom:1038.648150px;}
.y126{bottom:1047.115050px;}
.y2{bottom:1049.282550px;}
.y106{bottom:1049.565900px;}
.y6f{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y125{bottom:1067.470200px;}
.y6e{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y105{bottom:1079.574900px;}
.y154{bottom:1084.192950px;}
.y124{bottom:1087.525350px;}
.ya1{bottom:1091.695800px;}
.y6d{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.y104{bottom:1100.574900px;}
.y10{bottom:1109.815500px;}
.ya0{bottom:1112.695800px;}
.y153{bottom:1113.696900px;}
.y123{bottom:1119.282750px;}
.y6c{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.y103{bottom:1121.574900px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.691750px;}
.h7{height:34.467188px;}
.h6{height:34.657031px;}
.h13{height:36.492188px;}
.h10{height:38.296875px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h15{height:39.000000px;}
.h8{height:41.053711px;}
.hf{height:43.083984px;}
.h14{height:43.265625px;}
.he{height:43.321289px;}
.ha{height:43.875000px;}
.h9{height:47.343750px;}
.h17{height:48.164062px;}
.hb{height:48.673828px;}
.hd{height:48.750000px;}
.h18{height:50.176758px;}
.h12{height:52.078125px;}
.h4{height:53.625000px;}
.h11{height:54.082031px;}
.hc{height:56.812500px;}
.h16{height:69.000000px;}
.h3{height:77.545898px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x14{left:112.251900px;}
.x16{left:114.000000px;}
.x6{left:119.902650px;}
.x7{left:122.056200px;}
.x8{left:124.126650px;}
.x4{left:300.189000px;}
.xe{left:304.440900px;}
.x17{left:309.442950px;}
.x5{left:317.196900px;}
.x1a{left:340.728600px;}
.x15{left:342.446250px;}
.x13{left:383.205750px;}
.xf{left:392.549700px;}
.x3{left:396.050700px;}
.xd{left:403.984350px;}
.x10{left:430.198650px;}
.x18{left:465.960150px;}
.x19{left:467.865750px;}
.x12{left:480.571650px;}
.x11{left:532.919400px;}
.xa{left:647.344650px;}
.x9{left:668.959950px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.ls17{letter-spacing:-2.176000pt;}
.ls1a{letter-spacing:-1.664000pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.652800pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.106667pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.022400pt;}
.ls19{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.181333pt;}
.ls12{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls24{letter-spacing:0.864000pt;}
.ls16{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.237333pt;}
.ls25{letter-spacing:2.976000pt;}
.ls9{letter-spacing:4.421867pt;}
.ls22{letter-spacing:7.038400pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls15{letter-spacing:189.424000pt;}
.ls14{letter-spacing:208.382400pt;}
.ls20{letter-spacing:212.100800pt;}
.ls21{letter-spacing:231.059200pt;}
.ws5{word-spacing:-15.936000pt;}
.wse5{word-spacing:-14.880000pt;}
.ws4{word-spacing:-13.280000pt;}
.wse4{word-spacing:-12.768000pt;}
.ws20{word-spacing:-12.426667pt;}
.wsa9{word-spacing:-12.000000pt;}
.wse3{word-spacing:-11.904000pt;}
.wsb6{word-spacing:-11.434667pt;}
.wsb3{word-spacing:-11.392000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.512000pt;}
.wsb8{word-spacing:-10.154667pt;}
.ws2{word-spacing:-9.728000pt;}
.ws1{word-spacing:-8.549333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws3{word-spacing:-8.140800pt;}
.wse6{word-spacing:-5.040000pt;}
.wsd7{word-spacing:-3.093333pt;}
.wse0{word-spacing:-2.933333pt;}
.ws7a{word-spacing:-2.880000pt;}
.ws70{word-spacing:-2.613333pt;}
.wsad{word-spacing:-2.560000pt;}
.ws34{word-spacing:-2.400000pt;}
.ws3b{word-spacing:-2.346667pt;}
.wsce{word-spacing:-2.304000pt;}
.ws93{word-spacing:-2.293333pt;}
.ws3a{word-spacing:-2.240000pt;}
.wsa1{word-spacing:-2.186667pt;}
.ws13{word-spacing:-2.112000pt;}
.ws8f{word-spacing:-2.026667pt;}
.wsec{word-spacing:-1.968000pt;}
.ws6d{word-spacing:-1.866667pt;}
.ws6b{word-spacing:-1.813333pt;}
.ws43{word-spacing:-1.760000pt;}
.ws61{word-spacing:-1.706667pt;}
.wsaa{word-spacing:-1.680000pt;}
.ws45{word-spacing:-1.653333pt;}
.ws90{word-spacing:-1.600000pt;}
.wsa0{word-spacing:-1.546667pt;}
.ws39{word-spacing:-1.493333pt;}
.wse{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.386667pt;}
.ws56{word-spacing:-1.333333pt;}
.wsef{word-spacing:-1.296000pt;}
.wsc1{word-spacing:-1.237333pt;}
.ws27{word-spacing:-1.173333pt;}
.ws5a{word-spacing:-1.120000pt;}
.ws86{word-spacing:-1.066667pt;}
.wsc0{word-spacing:-1.024000pt;}
.ws64{word-spacing:-1.013333pt;}
.ws69{word-spacing:-0.960000pt;}
.wsbd{word-spacing:-0.896000pt;}
.ws65{word-spacing:-0.853333pt;}
.wsbe{word-spacing:-0.768000pt;}
.ws57{word-spacing:-0.746667pt;}
.ws63{word-spacing:-0.693333pt;}
.ws4a{word-spacing:-0.640000pt;}
.ws91{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.480000pt;}
.ws8a{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.373333pt;}
.wsbc{word-spacing:-0.320000pt;}
.ws41{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.181333pt;}
.ws88{word-spacing:-0.106667pt;}
.wse1{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.038400pt;}
.ws8{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.053333pt;}
.ws15{word-spacing:0.096000pt;}
.ws79{word-spacing:0.106667pt;}
.ws44{word-spacing:0.160000pt;}
.ws24{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.266667pt;}
.ws12{word-spacing:0.288000pt;}
.ws49{word-spacing:0.320000pt;}
.ws48{word-spacing:0.373333pt;}
.ws9a{word-spacing:0.426667pt;}
.ws72{word-spacing:0.480000pt;}
.ws9f{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.586667pt;}
.wsf{word-spacing:0.624000pt;}
.wsa8{word-spacing:0.640000pt;}
.wsb{word-spacing:0.652800pt;}
.ws78{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws29{word-spacing:0.800000pt;}
.ws6c{word-spacing:0.853333pt;}
.ws40{word-spacing:0.906667pt;}
.ws10{word-spacing:0.960000pt;}
.wsd6{word-spacing:1.013333pt;}
.ws7b{word-spacing:1.066667pt;}
.wsd1{word-spacing:1.173333pt;}
.ws1c{word-spacing:1.226667pt;}
.ws36{word-spacing:1.280000pt;}
.wsd0{word-spacing:1.333333pt;}
.ws14{word-spacing:1.344000pt;}
.wsde{word-spacing:1.386667pt;}
.ws18{word-spacing:1.392000pt;}
.ws60{word-spacing:1.440000pt;}
.ws33{word-spacing:1.546667pt;}
.ws74{word-spacing:1.653333pt;}
.wsbf{word-spacing:1.664000pt;}
.ws4d{word-spacing:1.760000pt;}
.ws46{word-spacing:1.813333pt;}
.wsdf{word-spacing:1.866667pt;}
.ws85{word-spacing:1.973333pt;}
.ws26{word-spacing:2.026667pt;}
.ws3d{word-spacing:2.080000pt;}
.wsaf{word-spacing:2.186667pt;}
.ws7d{word-spacing:2.240000pt;}
.wsac{word-spacing:2.293333pt;}
.wsc{word-spacing:2.304000pt;}
.ws17{word-spacing:2.352000pt;}
.ws2d{word-spacing:2.400000pt;}
.ws6e{word-spacing:2.613333pt;}
.ws9d{word-spacing:2.666667pt;}
.ws2a{word-spacing:2.720000pt;}
.ws32{word-spacing:2.773333pt;}
.ws54{word-spacing:2.826667pt;}
.wsab{word-spacing:2.880000pt;}
.wsd5{word-spacing:2.933333pt;}
.wsd{word-spacing:2.976000pt;}
.ws28{word-spacing:2.986667pt;}
.ws83{word-spacing:3.040000pt;}
.ws3c{word-spacing:3.093333pt;}
.wsdc{word-spacing:3.146667pt;}
.ws30{word-spacing:3.200000pt;}
.ws16{word-spacing:3.216000pt;}
.wsbb{word-spacing:3.306667pt;}
.wsd3{word-spacing:3.360000pt;}
.wsa6{word-spacing:3.413333pt;}
.ws22{word-spacing:3.466667pt;}
.wsa7{word-spacing:3.520000pt;}
.ws84{word-spacing:3.626667pt;}
.ws23{word-spacing:3.680000pt;}
.ws59{word-spacing:3.733333pt;}
.ws94{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws9e{word-spacing:3.946667pt;}
.wse2{word-spacing:4.000000pt;}
.ws8b{word-spacing:4.106667pt;}
.ws5f{word-spacing:4.160000pt;}
.ws2f{word-spacing:4.266667pt;}
.ws4c{word-spacing:4.320000pt;}
.ws51{word-spacing:4.426667pt;}
.ws52{word-spacing:4.533333pt;}
.ws50{word-spacing:4.586667pt;}
.ws42{word-spacing:4.693333pt;}
.ws92{word-spacing:4.800000pt;}
.ws66{word-spacing:4.906667pt;}
.ws9b{word-spacing:4.960000pt;}
.ws3e{word-spacing:5.013333pt;}
.ws1d{word-spacing:5.066667pt;}
.ws9c{word-spacing:5.120000pt;}
.wsd2{word-spacing:5.226667pt;}
.ws35{word-spacing:5.280000pt;}
.wseb{word-spacing:5.328000pt;}
.ws71{word-spacing:5.333333pt;}
.wsda{word-spacing:5.386667pt;}
.wscf{word-spacing:5.440000pt;}
.ws1a{word-spacing:5.546667pt;}
.ws2c{word-spacing:5.600000pt;}
.ws38{word-spacing:5.653333pt;}
.ws1e{word-spacing:5.813333pt;}
.ws87{word-spacing:5.920000pt;}
.ws11{word-spacing:6.000000pt;}
.ws53{word-spacing:6.026667pt;}
.ws21{word-spacing:6.080000pt;}
.ws5d{word-spacing:6.133333pt;}
.ws31{word-spacing:6.186667pt;}
.ws4e{word-spacing:6.240000pt;}
.ws58{word-spacing:6.293333pt;}
.wsea{word-spacing:6.384000pt;}
.wsee{word-spacing:6.480000pt;}
.ws77{word-spacing:6.506667pt;}
.ws4b{word-spacing:6.613333pt;}
.ws4f{word-spacing:6.666667pt;}
.ws55{word-spacing:6.720000pt;}
.wsed{word-spacing:6.816000pt;}
.ws6a{word-spacing:6.826667pt;}
.ws67{word-spacing:6.933333pt;}
.ws6f{word-spacing:6.986667pt;}
.wsc2{word-spacing:7.093333pt;}
.ws89{word-spacing:7.253333pt;}
.wsae{word-spacing:7.360000pt;}
.ws5e{word-spacing:7.413333pt;}
.ws73{word-spacing:7.626667pt;}
.ws76{word-spacing:7.680000pt;}
.wsd9{word-spacing:7.733333pt;}
.ws47{word-spacing:7.893333pt;}
.ws7c{word-spacing:8.053333pt;}
.ws19{word-spacing:8.586667pt;}
.ws75{word-spacing:8.960000pt;}
.wsd8{word-spacing:9.066667pt;}
.wse7{word-spacing:9.648000pt;}
.wsf0{word-spacing:10.032000pt;}
.ws3f{word-spacing:10.453333pt;}
.wsdd{word-spacing:10.986667pt;}
.ws37{word-spacing:11.360000pt;}
.wsd4{word-spacing:11.733333pt;}
.ws68{word-spacing:15.840000pt;}
.wsb0{word-spacing:16.266667pt;}
.wse8{word-spacing:17.424000pt;}
.wse9{word-spacing:22.320000pt;}
.wsa2{word-spacing:45.414933pt;}
.ws95{word-spacing:67.890133pt;}
.wsc3{word-spacing:111.657600pt;}
.wscb{word-spacing:113.089067pt;}
.wsc9{word-spacing:114.516267pt;}
.ws97{word-spacing:131.145600pt;}
.wsc7{word-spacing:132.042667pt;}
.wscd{word-spacing:132.061333pt;}
.wsa4{word-spacing:138.840000pt;}
.ws98{word-spacing:150.117867pt;}
.wsc5{word-spacing:152.446400pt;}
.wsc4{word-spacing:172.129600pt;}
.wsc8{word-spacing:173.556800pt;}
.wsc6{word-spacing:173.561600pt;}
.wsca{word-spacing:181.115733pt;}
.wscc{word-spacing:200.074133pt;}
.ws96{word-spacing:235.460800pt;}
.wsa5{word-spacing:246.874133pt;}
.ws8c{word-spacing:263.391467pt;}
.wsa3{word-spacing:265.832533pt;}
.wsb2{word-spacing:272.607467pt;}
.ws99{word-spacing:273.391467pt;}
.ws7f{word-spacing:356.961067pt;}
.ws7e{word-spacing:380.347733pt;}
.ws8d{word-spacing:388.385067pt;}
.wsb4{word-spacing:388.676800pt;}
.wsb9{word-spacing:389.263467pt;}
.wsb5{word-spacing:397.868800pt;}
.wsba{word-spacing:398.327467pt;}
.wsb7{word-spacing:407.910400pt;}
.ws8e{word-spacing:424.364267pt;}
.wsb1{word-spacing:499.377067pt;}
.ws80{word-spacing:557.153067pt;}
.ws81{word-spacing:753.091733pt;}
.ws82{word-spacing:830.456533pt;}
._7f{margin-left:-19.469760pt;}
._80{margin-left:-14.993920pt;}
._2a{margin-left:-12.576000pt;}
._9{margin-left:-9.837333pt;}
._f{margin-left:-8.428267pt;}
._8{margin-left:-5.574933pt;}
._5{margin-left:-4.533867pt;}
._4{margin-left:-3.057600pt;}
._1{margin-left:-1.913067pt;}
._0{margin-left:-0.961067pt;}
._6{width:1.244693pt;}
._2{width:2.212267pt;}
._a{width:3.521067pt;}
._7{width:5.241600pt;}
._b{width:6.182400pt;}
._e{width:7.530667pt;}
._c{width:8.560000pt;}
._d{width:9.498667pt;}
._31{width:10.517333pt;}
._9f{width:13.881600pt;}
._a0{width:14.960107pt;}
._a1{width:21.654933pt;}
._3{width:32.285867pt;}
._9e{width:38.350933pt;}
._60{width:43.906133pt;}
._62{width:44.892907pt;}
._82{width:49.361067pt;}
._61{width:50.724160pt;}
._47{width:52.545600pt;}
._44{width:53.469867pt;}
._46{width:56.521707pt;}
._45{width:59.563733pt;}
._43{width:64.654933pt;}
._59{width:89.437333pt;}
._42{width:106.092267pt;}
._6c{width:130.462933pt;}
._58{width:135.233067pt;}
._4c{width:141.726933pt;}
._65{width:149.421333pt;}
._56{width:160.685333pt;}
._81{width:167.528533pt;}
._49{width:178.010667pt;}
._5f{width:179.793600pt;}
._89{width:182.715733pt;}
._85{width:184.142933pt;}
._91{width:185.461440pt;}
._8f{width:190.270400pt;}
._84{width:191.697067pt;}
._4b{width:193.129067pt;}
._50{width:196.969067pt;}
._67{width:204.528533pt;}
._96{width:210.534400pt;}
._52{width:212.087467pt;}
._5d{width:215.941333pt;}
._64{width:223.500800pt;}
._4a{width:230.923733pt;}
._6e{width:244.899733pt;}
._4e{width:246.042133pt;}
._51{width:249.896000pt;}
._7a{width:252.635520pt;}
._68{width:257.441600pt;}
._53{width:265.014400pt;}
._5e{width:268.854400pt;}
._69{width:276.413867pt;}
._48{width:291.905067pt;}
._93{width:296.550933pt;}
._79{width:304.328640pt;}
._9a{width:314.781333pt;}
._57{width:320.164800pt;}
._41{width:324.490133pt;}
._8d{width:335.166933pt;}
._3b{width:346.886400pt;}
._5a{width:348.089707pt;}
._8c{width:362.004267pt;}
._4f{width:381.220800pt;}
._38{width:390.310400pt;}
._5b{width:393.259840pt;}
._35{width:398.143467pt;}
._63{width:401.571733pt;}
._6d{width:429.831467pt;}
._30{width:431.171733pt;}
._2f{width:442.137067pt;}
._70{width:457.756373pt;}
._73{width:462.181227pt;}
._55{width:485.448533pt;}
._66{width:490.887467pt;}
._78{width:493.148160pt;}
._33{width:503.558400pt;}
._54{width:506.490133pt;}
._83{width:517.249067pt;}
._7b{width:523.221227pt;}
._32{width:524.944533pt;}
._3a{width:531.818133pt;}
._94{width:537.634667pt;}
._8b{width:546.936000pt;}
._5c{width:548.445867pt;}
._75{width:556.090027pt;}
._3d{width:559.743040pt;}
._4d{width:562.582400pt;}
._99{width:565.894400pt;}
._7d{width:568.967680pt;}
._8e{width:573.433707pt;}
._36{width:592.874133pt;}
._9b{width:593.819307pt;}
._6b{width:595.115200pt;}
._7c{width:596.927573pt;}
._3f{width:604.913173pt;}
._87{width:607.992000pt;}
._2c{width:614.575467pt;}
._6a{width:616.156800pt;}
._1d{width:618.712533pt;}
._2b{width:627.090133pt;}
._2d{width:630.051200pt;}
._72{width:632.938667pt;}
._3e{width:634.004800pt;}
._71{width:637.788800pt;}
._9c{width:638.989440pt;}
._17{width:657.913600pt;}
._10{width:659.026133pt;}
._77{width:661.243733pt;}
._3c{width:667.355733pt;}
._24{width:672.973867pt;}
._40{width:674.526400pt;}
._2e{width:679.491733pt;}
._76{width:685.749333pt;}
._39{width:697.101867pt;}
._7e{width:710.629440pt;}
._8a{width:712.219733pt;}
._37{width:718.143467pt;}
._98{width:731.178133pt;}
._88{width:733.261333pt;}
._74{width:743.486613pt;}
._97{width:752.219733pt;}
._90{width:754.893333pt;}
._92{width:756.258667pt;}
._34{width:774.235733pt;}
._9d{width:775.217067pt;}
._86{width:789.353600pt;}
._95{width:808.312000pt;}
._11{width:812.052267pt;}
._1e{width:829.645867pt;}
._23{width:841.739200pt;}
._16{width:842.845333pt;}
._26{width:869.664107pt;}
._19{width:870.770240pt;}
._20{width:902.795200pt;}
._13{width:903.901333pt;}
._28{width:914.834240pt;}
._1b{width:915.940373pt;}
._1a{width:945.032000pt;}
._27{width:960.092267pt;}
._25{width:977.276800pt;}
._18{width:978.382933pt;}
._15{width:1008.129067pt;}
._22{width:1023.189333pt;}
._21{width:1028.064533pt;}
._14{width:1029.170667pt;}
._29{width:1051.061867pt;}
._1c{width:1075.588800pt;}
._12{width:1085.262933pt;}
._1f{width:1100.323200pt;}
._6f{width:1249.812800pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:63.732400pt;}
.y3a{bottom:66.476667pt;}
.y3b{bottom:66.698800pt;}
.y9c{bottom:100.514400pt;}
.y6b{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.yc0{bottom:106.882933pt;}
.y102{bottom:107.111733pt;}
.y145{bottom:107.111867pt;}
.yf{bottom:107.352933pt;}
.y9b{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.ye{bottom:120.152933pt;}
.y2a{bottom:122.855600pt;}
.ybf{bottom:128.266667pt;}
.yd{bottom:132.952933pt;}
.y9a{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yc{bottom:145.752933pt;}
.ybe{bottom:146.849333pt;}
.y99{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.ybd{bottom:165.432000pt;}
.y98{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y37{bottom:183.989200pt;}
.ybc{bottom:184.014667pt;}
.y97{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.y36{bottom:199.989200pt;}
.ybb{bottom:202.597333pt;}
.y14b{bottom:204.588000pt;}
.ye0{bottom:209.878533pt;}
.y96{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.y35{bottom:215.989200pt;}
.y25{bottom:216.188933pt;}
.yba{bottom:221.180000pt;}
.y95{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.ydf{bottom:231.262267pt;}
.y34{bottom:231.989200pt;}
.yb9{bottom:239.762800pt;}
.y33{bottom:247.989200pt;}
.yde{bottom:249.844933pt;}
.y94{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y24{bottom:250.400400pt;}
.yb8{bottom:258.345467pt;}
.y32{bottom:263.989200pt;}
.ydd{bottom:268.427600pt;}
.y93{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y152{bottom:273.734933pt;}
.yb7{bottom:276.928133pt;}
.y31{bottom:279.989200pt;}
.ydc{bottom:287.010400pt;}
.y92{bottom:287.181067pt;}
.y61{bottom:287.181200pt;}
.yb6{bottom:295.510800pt;}
.y151{bottom:300.409467pt;}
.ydb{bottom:305.593067pt;}
.y91{bottom:305.847733pt;}
.y60{bottom:305.847867pt;}
.y30{bottom:311.107200pt;}
.yb5{bottom:314.093467pt;}
.y150{bottom:319.076133pt;}
.y23{bottom:321.980400pt;}
.yda{bottom:324.175733pt;}
.y90{bottom:324.514400pt;}
.y5f{bottom:324.514533pt;}
.y2f{bottom:327.107200pt;}
.yb4{bottom:332.676133pt;}
.y14f{bottom:337.742800pt;}
.yd9{bottom:342.758400pt;}
.y2e{bottom:343.107200pt;}
.y8f{bottom:343.181067pt;}
.y5e{bottom:343.181200pt;}
.yb3{bottom:351.525467pt;}
.y14e{bottom:356.409467pt;}
.y2d{bottom:359.107200pt;}
.y22{bottom:360.078000pt;}
.yd8{bottom:361.341067pt;}
.y144{bottom:361.420933pt;}
.y8e{bottom:361.847733pt;}
.y5d{bottom:361.847867pt;}
.y14d{bottom:375.076133pt;}
.y2c{bottom:375.107200pt;}
.y21{bottom:377.678000pt;}
.yd7{bottom:379.923733pt;}
.yb2{bottom:380.132267pt;}
.y8d{bottom:380.514400pt;}
.y5c{bottom:380.514533pt;}
.y143{bottom:382.426800pt;}
.y14c{bottom:393.742800pt;}
.y20{bottom:395.278000pt;}
.yd6{bottom:398.506400pt;}
.y8c{bottom:399.181067pt;}
.y5b{bottom:399.181200pt;}
.y142{bottom:400.253600pt;}
.y1f{bottom:412.878000pt;}
.yd5{bottom:417.089067pt;}
.y8b{bottom:417.847733pt;}
.y5a{bottom:417.847867pt;}
.y141{bottom:418.080267pt;}
.yb1{bottom:425.606400pt;}
.y1e{bottom:430.478000pt;}
.y140{bottom:431.413600pt;}
.yd4{bottom:435.671733pt;}
.y8a{bottom:436.514400pt;}
.y59{bottom:436.514533pt;}
.yb0{bottom:446.990133pt;}
.y1d{bottom:448.078000pt;}
.y13f{bottom:449.240400pt;}
.yd3{bottom:454.254400pt;}
.y89{bottom:455.181067pt;}
.y58{bottom:455.181200pt;}
.y101{bottom:455.491867pt;}
.yaf{bottom:465.572800pt;}
.y1c{bottom:465.678000pt;}
.yf1{bottom:466.019467pt;}
.y13e{bottom:467.067200pt;}
.yd2{bottom:472.837067pt;}
.y88{bottom:473.847733pt;}
.y57{bottom:473.847867pt;}
.y100{bottom:476.917600pt;}
.y1b{bottom:483.278000pt;}
.yae{bottom:484.155467pt;}
.ycf{bottom:484.518267pt;}
.y13d{bottom:484.894000pt;}
.yf0{bottom:487.403200pt;}
.y87{bottom:492.514400pt;}
.y56{bottom:492.514533pt;}
.yff{bottom:495.542267pt;}
.y1a{bottom:500.878000pt;}
.yd1{bottom:501.443867pt;}
.y13c{bottom:502.720800pt;}
.yad{bottom:502.738133pt;}
.yce{bottom:505.902000pt;}
.yef{bottom:505.985867pt;}
.y86{bottom:511.181067pt;}
.y55{bottom:511.181200pt;}
.y122{bottom:513.565733pt;}
.yfe{bottom:514.124933pt;}
.y19{bottom:518.478000pt;}
.y10d{bottom:519.637200pt;}
.y13b{bottom:520.547467pt;}
.yac{bottom:521.320800pt;}
.ycd{bottom:524.484667pt;}
.yee{bottom:524.568667pt;}
.yfd{bottom:527.458267pt;}
.y85{bottom:529.847733pt;}
.y54{bottom:529.847867pt;}
.y121{bottom:534.571467pt;}
.y18{bottom:536.078000pt;}
.y10c{bottom:537.237200pt;}
.yed{bottom:537.902000pt;}
.y13a{bottom:538.374267pt;}
.yab{bottom:539.903467pt;}
.ycc{bottom:543.067333pt;}
.yfc{bottom:546.040933pt;}
.y84{bottom:548.514400pt;}
.y53{bottom:548.514533pt;}
.y120{bottom:552.398267pt;}
.y17{bottom:553.678000pt;}
.y139{bottom:556.201067pt;}
.yec{bottom:556.484667pt;}
.yaa{bottom:558.486133pt;}
.ycb{bottom:561.650000pt;}
.y10b{bottom:563.911867pt;}
.yfb{bottom:564.623600pt;}
.y83{bottom:567.181067pt;}
.y52{bottom:567.181200pt;}
.y11f{bottom:570.225067pt;}
.y16{bottom:571.278000pt;}
.y138{bottom:574.027867pt;}
.yeb{bottom:575.067333pt;}
.ya9{bottom:577.068800pt;}
.ya2{bottom:579.947467pt;}
.yca{bottom:580.232667pt;}
.y10a{bottom:582.578533pt;}
.yfa{bottom:583.206267pt;}
.y82{bottom:585.847733pt;}
.y51{bottom:585.847867pt;}
.y11e{bottom:588.051733pt;}
.y15{bottom:588.878000pt;}
.y137{bottom:591.854533pt;}
.yea{bottom:593.650000pt;}
.ya8{bottom:595.651467pt;}
.yc9{bottom:598.815333pt;}
.y109{bottom:601.245200pt;}
.yf9{bottom:601.788933pt;}
.y81{bottom:604.514400pt;}
.y50{bottom:604.514533pt;}
.y11d{bottom:605.878533pt;}
.y14{bottom:606.478000pt;}
.y136{bottom:609.948000pt;}
.ye9{bottom:612.232667pt;}
.ya7{bottom:614.234133pt;}
.y159{bottom:617.280933pt;}
.yc8{bottom:617.398000pt;}
.y108{bottom:619.911867pt;}
.yf8{bottom:620.371600pt;}
.y80{bottom:623.181067pt;}
.y4f{bottom:623.181200pt;}
.y11c{bottom:623.705333pt;}
.y13{bottom:624.078000pt;}
.y135{bottom:627.774800pt;}
.yc7{bottom:630.731333pt;}
.ye8{bottom:630.815333pt;}
.ya6{bottom:632.816800pt;}
.yf7{bottom:638.954267pt;}
.y11b{bottom:641.532133pt;}
.y12{bottom:641.678000pt;}
.y7f{bottom:641.847733pt;}
.y9f{bottom:641.847867pt;}
.yc6{bottom:649.314000pt;}
.ye7{bottom:649.398000pt;}
.ya5{bottom:651.399600pt;}
.y4e{bottom:654.614267pt;}
.y134{bottom:656.003733pt;}
.yf6{bottom:657.536933pt;}
.y11a{bottom:659.358933pt;}
.y7e{bottom:660.514400pt;}
.y9e{bottom:660.514533pt;}
.yc5{bottom:667.896667pt;}
.ye6{bottom:667.980667pt;}
.y11{bottom:669.320267pt;}
.ya4{bottom:669.982267pt;}
.yf5{bottom:676.119733pt;}
.y119{bottom:677.185600pt;}
.y7d{bottom:679.181067pt;}
.y9d{bottom:679.181200pt;}
.y158{bottom:684.026000pt;}
.yc4{bottom:686.479467pt;}
.ye5{bottom:686.563333pt;}
.y14a{bottom:689.964133pt;}
.yd0{bottom:691.947600pt;}
.yf4{bottom:694.702267pt;}
.y118{bottom:695.012400pt;}
.y7c{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.ya3{bottom:698.589067pt;}
.y133{bottom:700.335333pt;}
.yc3{bottom:705.062000pt;}
.ye4{bottom:705.146133pt;}
.y117{bottom:712.839200pt;}
.yf3{bottom:713.284933pt;}
.y7b{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.y149{bottom:716.638800pt;}
.y132{bottom:721.341200pt;}
.yc2{bottom:723.644667pt;}
.ye3{bottom:723.728667pt;}
.y116{bottom:730.666000pt;}
.y7a{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.y148{bottom:735.305467pt;}
.y131{bottom:739.168000pt;}
.yb{bottom:739.792667pt;}
.yf2{bottom:741.891867pt;}
.ye2{bottom:742.311333pt;}
.y115{bottom:748.759333pt;}
.yc1{bottom:752.251467pt;}
.y79{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.y147{bottom:753.972133pt;}
.ya{bottom:755.792667pt;}
.y130{bottom:756.994667pt;}
.y114{bottom:766.586133pt;}
.y12f{bottom:770.328000pt;}
.ye1{bottom:770.918133pt;}
.y9{bottom:771.792667pt;}
.y78{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y146{bottom:772.638800pt;}
.y8{bottom:787.792667pt;}
.y12e{bottom:788.154800pt;}
.y77{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y113{bottom:794.815067pt;}
.y157{bottom:796.026000pt;}
.y7{bottom:803.792667pt;}
.y12d{bottom:805.981600pt;}
.y76{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:819.792667pt;}
.y12c{bottom:823.808400pt;}
.y75{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y112{bottom:841.634800pt;}
.y12b{bottom:841.635067pt;}
.y74{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y5{bottom:850.910933pt;}
.y156{bottom:852.026000pt;}
.y111{bottom:859.234800pt;}
.y12a{bottom:859.461867pt;}
.y73{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:869.577600pt;}
.y129{bottom:877.288667pt;}
.y72{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.y110{bottom:885.909467pt;}
.y128{bottom:895.115333pt;}
.y71{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y10f{bottom:904.576133pt;}
.y155{bottom:908.026000pt;}
.y127{bottom:912.942267pt;}
.y107{bottom:915.347467pt;}
.y70{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y10e{bottom:923.242800pt;}
.y126{bottom:930.768933pt;}
.y2{bottom:932.695600pt;}
.y106{bottom:932.947467pt;}
.y6f{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y125{bottom:948.862400pt;}
.y6e{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y105{bottom:959.622133pt;}
.y154{bottom:963.727067pt;}
.y124{bottom:966.689200pt;}
.ya1{bottom:970.396267pt;}
.y6d{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.y104{bottom:978.288800pt;}
.y10{bottom:986.502667pt;}
.ya0{bottom:989.062933pt;}
.y153{bottom:989.952800pt;}
.y123{bottom:994.918000pt;}
.y6c{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.y103{bottom:996.955467pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726000pt;}
.h7{height:30.637500pt;}
.h6{height:30.806250pt;}
.h13{height:32.437500pt;}
.h10{height:34.041667pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h15{height:34.666667pt;}
.h8{height:36.492188pt;}
.hf{height:38.296875pt;}
.h14{height:38.458333pt;}
.he{height:38.507812pt;}
.ha{height:39.000000pt;}
.h9{height:42.083333pt;}
.h17{height:42.812500pt;}
.hb{height:43.265625pt;}
.hd{height:43.333333pt;}
.h18{height:44.601562pt;}
.h12{height:46.291667pt;}
.h4{height:47.666667pt;}
.h11{height:48.072917pt;}
.hc{height:50.500000pt;}
.h16{height:61.333333pt;}
.h3{height:68.929688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x14{left:99.779467pt;}
.x16{left:101.333333pt;}
.x6{left:106.580133pt;}
.x7{left:108.494400pt;}
.x8{left:110.334800pt;}
.x4{left:266.834667pt;}
.xe{left:270.614133pt;}
.x17{left:275.060400pt;}
.x5{left:281.952800pt;}
.x1a{left:302.869867pt;}
.x15{left:304.396667pt;}
.x13{left:340.627333pt;}
.xf{left:348.933067pt;}
.x3{left:352.045067pt;}
.xd{left:359.097200pt;}
.x10{left:382.398800pt;}
.x18{left:414.186800pt;}
.x19{left:415.880667pt;}
.x12{left:427.174800pt;}
.x11{left:473.706133pt;}
.xa{left:575.417467pt;}
.x9{left:594.631067pt;}
.x1{left:717.405733pt;}
}




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