
    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_81b3962d8b2b59c48c3261d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196000;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_d4578befe3c4ccb8a1459bae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.193000;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_cd19e0a478ae6113268be5b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200000;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_eb49791e14fa41b06e769453.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_abade4e8c9ec25777a85ac66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.214000;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_d05788c6a43dd614784afd3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_97fecf506ba5d30bf7b73d1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193000;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_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193000;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_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;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_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.193000;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_1ffe7ef0d9f718c6ed3dd408.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.fff{font-family:fff;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d3d6db1ca17f88b9ad6365bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_72f3be7bedbdc55118032602.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.218000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.390000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.314820px;}
.ls8{letter-spacing:-0.252000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.157200px;}
.ls2{letter-spacing:0.390000px;}
.ls9{letter-spacing:2.538600px;}
.ls6{letter-spacing:4.399200px;}
.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;}
}
.ws160{word-spacing:-18.630000px;}
.ws97{word-spacing:-15.498000px;}
.ws54{word-spacing:-14.958000px;}
.ws8a{word-spacing:-14.472000px;}
.ws13{word-spacing:-13.230000px;}
.ws154{word-spacing:-12.054000px;}
.wsfe{word-spacing:-11.676000px;}
.wsf3{word-spacing:-11.634000px;}
.wsfd{word-spacing:-11.256000px;}
.ws161{word-spacing:-10.332000px;}
.ws0{word-spacing:-9.945000px;}
.ws53{word-spacing:-9.035334px;}
.wse6{word-spacing:-8.720514px;}
.ws170{word-spacing:-5.004000px;}
.ws153{word-spacing:-4.578000px;}
.ws86{word-spacing:-4.428000px;}
.ws168{word-spacing:-3.276000px;}
.wsea{word-spacing:-3.240000px;}
.ws169{word-spacing:-3.150000px;}
.wsdc{word-spacing:-2.970000px;}
.ws6e{word-spacing:-2.916000px;}
.wsb1{word-spacing:-2.862000px;}
.ws4a{word-spacing:-2.808000px;}
.ws26{word-spacing:-2.754000px;}
.ws80{word-spacing:-2.700000px;}
.ws7f{word-spacing:-2.646000px;}
.wsb5{word-spacing:-2.592000px;}
.wsf2{word-spacing:-2.538000px;}
.ws70{word-spacing:-2.484000px;}
.wse4{word-spacing:-2.430000px;}
.wsd3{word-spacing:-2.376000px;}
.wsd9{word-spacing:-2.322000px;}
.ws5f{word-spacing:-2.268000px;}
.ws1d{word-spacing:-2.226000px;}
.ws83{word-spacing:-2.214000px;}
.ws15{word-spacing:-2.184000px;}
.wsa7{word-spacing:-2.160000px;}
.wsd5{word-spacing:-2.106000px;}
.ws4{word-spacing:-2.100000px;}
.wsa3{word-spacing:-2.052000px;}
.wsff{word-spacing:-2.016000px;}
.wsba{word-spacing:-1.998000px;}
.ws65{word-spacing:-1.944000px;}
.ws77{word-spacing:-1.890000px;}
.ws15c{word-spacing:-1.848000px;}
.ws5e{word-spacing:-1.836000px;}
.ws152{word-spacing:-1.806000px;}
.ws30{word-spacing:-1.782000px;}
.wsa0{word-spacing:-1.728000px;}
.ws151{word-spacing:-1.722000px;}
.ws165{word-spacing:-1.680000px;}
.ws2a{word-spacing:-1.674000px;}
.ws5{word-spacing:-1.638000px;}
.wsbb{word-spacing:-1.620000px;}
.ws109{word-spacing:-1.596000px;}
.ws9a{word-spacing:-1.566000px;}
.ws10f{word-spacing:-1.554000px;}
.wsa4{word-spacing:-1.512000px;}
.ws114{word-spacing:-1.470000px;}
.wsbf{word-spacing:-1.458000px;}
.ws113{word-spacing:-1.428000px;}
.ws24{word-spacing:-1.404000px;}
.ws15b{word-spacing:-1.386000px;}
.ws20{word-spacing:-1.380000px;}
.ws57{word-spacing:-1.350000px;}
.ws15d{word-spacing:-1.344000px;}
.ws104{word-spacing:-1.302000px;}
.wsb9{word-spacing:-1.296000px;}
.ws81{word-spacing:-1.242000px;}
.ws12f{word-spacing:-1.218000px;}
.wsa5{word-spacing:-1.188000px;}
.ws145{word-spacing:-1.176000px;}
.wsf{word-spacing:-1.134000px;}
.ws16f{word-spacing:-1.116000px;}
.ws8c{word-spacing:-1.080000px;}
.ws14d{word-spacing:-1.050000px;}
.ws28{word-spacing:-1.026000px;}
.ws12e{word-spacing:-1.008000px;}
.ws35{word-spacing:-0.972000px;}
.ws12c{word-spacing:-0.966000px;}
.ws9{word-spacing:-0.924000px;}
.wsaf{word-spacing:-0.918000px;}
.ws69{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.840000px;}
.ws4d{word-spacing:-0.810000px;}
.ws131{word-spacing:-0.798000px;}
.ws19{word-spacing:-0.756000px;}
.wsc{word-spacing:-0.714000px;}
.ws37{word-spacing:-0.702000px;}
.ws144{word-spacing:-0.672000px;}
.ws3d{word-spacing:-0.648000px;}
.ws157{word-spacing:-0.630000px;}
.ws61{word-spacing:-0.594000px;}
.ws11f{word-spacing:-0.588000px;}
.ws11e{word-spacing:-0.546000px;}
.ws3a{word-spacing:-0.540000px;}
.ws163{word-spacing:-0.504000px;}
.ws89{word-spacing:-0.486000px;}
.ws136{word-spacing:-0.462000px;}
.ws6f{word-spacing:-0.432000px;}
.ws137{word-spacing:-0.420000px;}
.ws60{word-spacing:-0.378000px;}
.ws3{word-spacing:-0.336000px;}
.ws4b{word-spacing:-0.324000px;}
.wsf6{word-spacing:-0.294000px;}
.wsda{word-spacing:-0.270000px;}
.ws10{word-spacing:-0.252000px;}
.wsb3{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.210000px;}
.ws120{word-spacing:-0.168000px;}
.ws87{word-spacing:-0.162000px;}
.ws177{word-spacing:-0.144000px;}
.ws15f{word-spacing:-0.126000px;}
.wsd6{word-spacing:-0.108000px;}
.ws15e{word-spacing:-0.084000px;}
.wsf1{word-spacing:-0.054000px;}
.wse{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.042000px;}
.ws8e{word-spacing:0.054000px;}
.ws117{word-spacing:0.084000px;}
.ws45{word-spacing:0.108000px;}
.ws1f{word-spacing:0.126000px;}
.ws25{word-spacing:0.162000px;}
.ws1e{word-spacing:0.168000px;}
.ws14f{word-spacing:0.210000px;}
.ws5b{word-spacing:0.216000px;}
.wsd8{word-spacing:0.270000px;}
.wsfa{word-spacing:0.294000px;}
.ws9f{word-spacing:0.314820px;}
.ws8f{word-spacing:0.324000px;}
.ws6{word-spacing:0.336000px;}
.ws16b{word-spacing:0.360000px;}
.wsb2{word-spacing:0.378000px;}
.wsf7{word-spacing:0.420000px;}
.ws82{word-spacing:0.432000px;}
.ws7{word-spacing:0.462000px;}
.ws43{word-spacing:0.486000px;}
.ws102{word-spacing:0.504000px;}
.ws41{word-spacing:0.540000px;}
.ws162{word-spacing:0.546000px;}
.ws16e{word-spacing:0.576000px;}
.ws118{word-spacing:0.588000px;}
.ws50{word-spacing:0.594000px;}
.ws148{word-spacing:0.630000px;}
.ws2c{word-spacing:0.648000px;}
.ws12d{word-spacing:0.672000px;}
.ws9e{word-spacing:0.702000px;}
.ws14{word-spacing:0.714000px;}
.ws5d{word-spacing:0.756000px;}
.ws11b{word-spacing:0.798000px;}
.wsa2{word-spacing:0.810000px;}
.ws11d{word-spacing:0.840000px;}
.ws7a{word-spacing:0.864000px;}
.ws107{word-spacing:0.882000px;}
.ws3b{word-spacing:0.918000px;}
.ws108{word-spacing:0.924000px;}
.ws149{word-spacing:0.966000px;}
.ws46{word-spacing:0.972000px;}
.ws140{word-spacing:1.008000px;}
.ws76{word-spacing:1.026000px;}
.ws171{word-spacing:1.044000px;}
.ws135{word-spacing:1.050000px;}
.ws9d{word-spacing:1.080000px;}
.ws11c{word-spacing:1.092000px;}
.wsbc{word-spacing:1.134000px;}
.wsf4{word-spacing:1.176000px;}
.ws64{word-spacing:1.188000px;}
.ws110{word-spacing:1.218000px;}
.wsc3{word-spacing:1.242000px;}
.ws13f{word-spacing:1.260000px;}
.wsd1{word-spacing:1.296000px;}
.ws11a{word-spacing:1.302000px;}
.ws119{word-spacing:1.344000px;}
.ws22{word-spacing:1.350000px;}
.ws138{word-spacing:1.386000px;}
.wsa8{word-spacing:1.404000px;}
.ws132{word-spacing:1.428000px;}
.wscc{word-spacing:1.458000px;}
.ws1a{word-spacing:1.470000px;}
.ws176{word-spacing:1.476000px;}
.ws5c{word-spacing:1.512000px;}
.ws7e{word-spacing:1.566000px;}
.ws167{word-spacing:1.596000px;}
.wsca{word-spacing:1.620000px;}
.ws66{word-spacing:1.674000px;}
.ws11{word-spacing:1.722000px;}
.ws32{word-spacing:1.728000px;}
.ws158{word-spacing:1.764000px;}
.ws74{word-spacing:1.782000px;}
.ws16d{word-spacing:1.800000px;}
.ws4c{word-spacing:1.836000px;}
.ws155{word-spacing:1.848000px;}
.ws16c{word-spacing:1.872000px;}
.ws8{word-spacing:1.890000px;}
.ws126{word-spacing:1.932000px;}
.ws2d{word-spacing:1.944000px;}
.ws125{word-spacing:1.974000px;}
.ws174{word-spacing:1.980000px;}
.ws62{word-spacing:1.998000px;}
.ws175{word-spacing:2.016000px;}
.ws36{word-spacing:2.052000px;}
.ws106{word-spacing:2.058000px;}
.ws105{word-spacing:2.100000px;}
.wsac{word-spacing:2.106000px;}
.ws112{word-spacing:2.142000px;}
.wsc4{word-spacing:2.160000px;}
.ws127{word-spacing:2.184000px;}
.wsbe{word-spacing:2.214000px;}
.ws150{word-spacing:2.226000px;}
.ws67{word-spacing:2.268000px;}
.ws15a{word-spacing:2.310000px;}
.wse0{word-spacing:2.322000px;}
.ws130{word-spacing:2.352000px;}
.wsae{word-spacing:2.376000px;}
.ws13c{word-spacing:2.394000px;}
.ws68{word-spacing:2.430000px;}
.ws13d{word-spacing:2.436000px;}
.wsb{word-spacing:2.478000px;}
.ws56{word-spacing:2.484000px;}
.wsfc{word-spacing:2.520000px;}
.ws6d{word-spacing:2.538000px;}
.wsa6{word-spacing:2.592000px;}
.wsfb{word-spacing:2.604000px;}
.wsbd{word-spacing:2.646000px;}
.ws12{word-spacing:2.688000px;}
.ws3c{word-spacing:2.700000px;}
.ws10c{word-spacing:2.730000px;}
.ws91{word-spacing:2.754000px;}
.ws63{word-spacing:2.808000px;}
.ws10b{word-spacing:2.814000px;}
.wsb4{word-spacing:2.862000px;}
.ws1b{word-spacing:2.898000px;}
.ws6a{word-spacing:2.916000px;}
.ws85{word-spacing:2.970000px;}
.ws16a{word-spacing:2.988000px;}
.wsc9{word-spacing:3.024000px;}
.ws12b{word-spacing:3.066000px;}
.wsdd{word-spacing:3.078000px;}
.wsf9{word-spacing:3.108000px;}
.ws93{word-spacing:3.132000px;}
.ws12a{word-spacing:3.150000px;}
.ws78{word-spacing:3.186000px;}
.wsd0{word-spacing:3.240000px;}
.ws3e{word-spacing:3.294000px;}
.ws1c{word-spacing:3.318000px;}
.ws21{word-spacing:3.348000px;}
.ws128{word-spacing:3.360000px;}
.wsb0{word-spacing:3.402000px;}
.ws156{word-spacing:3.444000px;}
.ws79{word-spacing:3.456000px;}
.ws129{word-spacing:3.486000px;}
.ws49{word-spacing:3.510000px;}
.ws142{word-spacing:3.528000px;}
.wsad{word-spacing:3.564000px;}
.ws164{word-spacing:3.570000px;}
.ws51{word-spacing:3.618000px;}
.ws143{word-spacing:3.654000px;}
.wsdf{word-spacing:3.672000px;}
.ws52{word-spacing:3.726000px;}
.ws147{word-spacing:3.738000px;}
.ws38{word-spacing:3.780000px;}
.ws134{word-spacing:3.822000px;}
.wsd7{word-spacing:3.834000px;}
.ws146{word-spacing:3.864000px;}
.ws75{word-spacing:3.888000px;}
.wsc0{word-spacing:3.942000px;}
.ws133{word-spacing:3.948000px;}
.wsb8{word-spacing:3.996000px;}
.ws139{word-spacing:4.032000px;}
.ws44{word-spacing:4.050000px;}
.ws72{word-spacing:4.104000px;}
.ws10e{word-spacing:4.116000px;}
.ws94{word-spacing:4.158000px;}
.wsec{word-spacing:4.212000px;}
.wse9{word-spacing:4.266000px;}
.ws10d{word-spacing:4.284000px;}
.ws92{word-spacing:4.320000px;}
.wseb{word-spacing:4.374000px;}
.ws8d{word-spacing:4.428000px;}
.wsc7{word-spacing:4.482000px;}
.ws40{word-spacing:4.536000px;}
.ws10a{word-spacing:4.578000px;}
.wsaa{word-spacing:4.590000px;}
.ws9b{word-spacing:4.644000px;}
.ws34{word-spacing:4.698000px;}
.ws4e{word-spacing:4.752000px;}
.wsb6{word-spacing:4.806000px;}
.ws159{word-spacing:4.830000px;}
.wsd4{word-spacing:4.860000px;}
.wsb7{word-spacing:4.914000px;}
.wsd{word-spacing:4.956000px;}
.ws3f{word-spacing:4.968000px;}
.ws13b{word-spacing:4.998000px;}
.wse3{word-spacing:5.022000px;}
.wsf0{word-spacing:5.076000px;}
.ws111{word-spacing:5.082000px;}
.ws23{word-spacing:5.130000px;}
.ws13a{word-spacing:5.166000px;}
.wse1{word-spacing:5.184000px;}
.ws103{word-spacing:5.208000px;}
.ws84{word-spacing:5.238000px;}
.ws2b{word-spacing:5.346000px;}
.ws123{word-spacing:5.376000px;}
.ws98{word-spacing:5.400000px;}
.ws6c{word-spacing:5.454000px;}
.ws16{word-spacing:5.460000px;}
.ws141{word-spacing:5.502000px;}
.wsa1{word-spacing:5.508000px;}
.ws101{word-spacing:5.544000px;}
.ws8b{word-spacing:5.562000px;}
.ws173{word-spacing:5.580000px;}
.ws55{word-spacing:5.616000px;}
.ws14e{word-spacing:5.628000px;}
.ws71{word-spacing:5.670000px;}
.ws100{word-spacing:5.712000px;}
.ws90{word-spacing:5.724000px;}
.ws122{word-spacing:5.754000px;}
.ws172{word-spacing:5.760000px;}
.ws29{word-spacing:5.778000px;}
.ws14c{word-spacing:5.796000px;}
.wse5{word-spacing:5.832000px;}
.ws42{word-spacing:5.886000px;}
.ws121{word-spacing:5.922000px;}
.wscd{word-spacing:5.940000px;}
.ws27{word-spacing:5.994000px;}
.ws14b{word-spacing:6.006000px;}
.ws47{word-spacing:6.048000px;}
.wsc8{word-spacing:6.102000px;}
.ws7d{word-spacing:6.156000px;}
.wsc2{word-spacing:6.210000px;}
.wsf8{word-spacing:6.216000px;}
.ws88{word-spacing:6.264000px;}
.ws58{word-spacing:6.318000px;}
.ws2f{word-spacing:6.426000px;}
.ws18{word-spacing:6.468000px;}
.wsab{word-spacing:6.480000px;}
.ws31{word-spacing:6.534000px;}
.ws99{word-spacing:6.588000px;}
.ws7b{word-spacing:6.642000px;}
.ws14a{word-spacing:6.678000px;}
.ws2e{word-spacing:6.696000px;}
.ws48{word-spacing:6.750000px;}
.wscb{word-spacing:6.804000px;}
.wsee{word-spacing:6.858000px;}
.ws73{word-spacing:6.912000px;}
.wse7{word-spacing:6.966000px;}
.ws124{word-spacing:6.972000px;}
.ws6b{word-spacing:7.020000px;}
.ws9c{word-spacing:7.074000px;}
.ws59{word-spacing:7.128000px;}
.wsd2{word-spacing:7.182000px;}
.wse2{word-spacing:7.236000px;}
.ws39{word-spacing:7.290000px;}
.ws96{word-spacing:7.344000px;}
.ws7c{word-spacing:7.452000px;}
.ws116{word-spacing:7.518000px;}
.ws95{word-spacing:7.614000px;}
.wsed{word-spacing:7.668000px;}
.ws5a{word-spacing:7.722000px;}
.ws115{word-spacing:7.770000px;}
.wscf{word-spacing:7.884000px;}
.wsa9{word-spacing:7.938000px;}
.ws4f{word-spacing:7.992000px;}
.ws33{word-spacing:8.046000px;}
.wsef{word-spacing:8.154000px;}
.wse8{word-spacing:8.208000px;}
.wsce{word-spacing:8.370000px;}
.wsde{word-spacing:8.478000px;}
.wsc1{word-spacing:8.532000px;}
.wsdb{word-spacing:8.586000px;}
.wsc5{word-spacing:8.640000px;}
.wsc6{word-spacing:8.856000px;}
.ws13e{word-spacing:17.220000px;}
.wsf5{word-spacing:73.248000px;}
.ws166{word-spacing:73.416000px;}
._8{margin-left:-15.120000px;}
._14{margin-left:-10.771200px;}
._10{margin-left:-8.935200px;}
._7{margin-left:-6.966000px;}
._9{margin-left:-5.076000px;}
._5{margin-left:-3.888000px;}
._1{margin-left:-2.381400px;}
._2{margin-left:-1.020000px;}
._3{width:1.530000px;}
._0{width:2.730000px;}
._a{width:4.963200px;}
._4{width:5.966400px;}
._18{width:31.651200px;}
._16{width:32.983200px;}
._17{width:34.459200px;}
._19{width:39.463200px;}
._13{width:49.003200px;}
._f{width:52.711200px;}
._12{width:53.719200px;}
._15{width:54.763200px;}
._c{width:56.196000px;}
._11{width:59.767200px;}
._e{width:71.820000px;}
._b{width:73.416000px;}
._d{width:356.118000px;}
._6{width:1187.372400px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:41.811000px;}
.y29{bottom:41.857500px;}
.y14{bottom:107.564700px;}
.yaa{bottom:110.870100px;}
.y58{bottom:112.393650px;}
.y122{bottom:112.400850px;}
.y194{bottom:114.378000px;}
.y14b{bottom:117.396900px;}
.yf9{bottom:120.904650px;}
.y97{bottom:121.393650px;}
.ydb{bottom:121.648800px;}
.y13{bottom:122.564700px;}
.ya9{bottom:124.370100px;}
.y121{bottom:125.900850px;}
.y17a{bottom:129.408750px;}
.y57{bottom:130.393650px;}
.y193{bottom:130.630050px;}
.yf8{bottom:134.404650px;}
.yda{bottom:135.148800px;}
.y12{bottom:137.564700px;}
.y96{bottom:139.393650px;}
.y120{bottom:139.400850px;}
.ya8{bottom:142.122000px;}
.y192{bottom:142.630050px;}
.y179{bottom:142.908750px;}
.yf7{bottom:147.904800px;}
.y56{bottom:148.393800px;}
.y14a{bottom:148.648800px;}
.y11{bottom:152.564700px;}
.yd9{bottom:152.900850px;}
.y191{bottom:154.629900px;}
.ya7{bottom:155.622150px;}
.y11f{bottom:157.152750px;}
.y95{bottom:157.393800px;}
.y178{bottom:160.660650px;}
.yf6{bottom:165.656700px;}
.y55{bottom:166.393800px;}
.y149{bottom:166.400850px;}
.y190{bottom:166.629900px;}
.y10{bottom:167.564700px;}
.yd8{bottom:170.652750px;}
.ya6{bottom:173.374050px;}
.y177{bottom:174.160650px;}
.y80{bottom:175.393800px;}
.yf5{bottom:179.156700px;}
.y148{bottom:179.900850px;}
.yf{bottom:182.564700px;}
.y18f{bottom:182.881950px;}
.yd7{bottom:184.152750px;}
.y54{bottom:184.393800px;}
.ya5{bottom:186.874050px;}
.y156{bottom:188.404800px;}
.y176{bottom:191.912550px;}
.y7f{bottom:193.393800px;}
.y18e{bottom:194.881950px;}
.yf4{bottom:196.908750px;}
.ye{bottom:197.564700px;}
.y147{bottom:197.652750px;}
.yd6{bottom:201.904800px;}
.y53{bottom:202.393800px;}
.ya4{bottom:204.626100px;}
.y175{bottom:205.412550px;}
.y155{bottom:206.156700px;}
.yf3{bottom:210.408750px;}
.y18d{bottom:211.134000px;}
.y7e{bottom:211.393800px;}
.yd{bottom:212.564700px;}
.y11e{bottom:215.404800px;}
.y174{bottom:218.912550px;}
.yd5{bottom:219.656700px;}
.y52{bottom:220.393800px;}
.ya3{bottom:222.378000px;}
.y18c{bottom:227.385900px;}
.yf2{bottom:228.160650px;}
.y11d{bottom:228.904800px;}
.y7d{bottom:229.393800px;}
.y146{bottom:233.156700px;}
.yc{bottom:236.068650px;}
.y173{bottom:236.664600px;}
.yd4{bottom:237.408750px;}
.y51{bottom:238.393800px;}
.y18b{bottom:239.385900px;}
.ya2{bottom:240.129900px;}
.yf1{bottom:241.660650px;}
.y11c{bottom:246.656700px;}
.y7c{bottom:247.393800px;}
.y172{bottom:250.164600px;}
.y145{bottom:250.908750px;}
.yb{bottom:251.068650px;}
.y18a{bottom:251.385900px;}
.ya1{bottom:253.629900px;}
.yd3{bottom:255.160650px;}
.y50{bottom:256.393800px;}
.y11b{bottom:260.156700px;}
.y189{bottom:263.385900px;}
.y144{bottom:264.408750px;}
.y7b{bottom:265.393800px;}
.ya{bottom:266.068650px;}
.y171{bottom:267.916650px;}
.ya0{bottom:271.381950px;}
.yd2{bottom:272.912550px;}
.y4f{bottom:274.393800px;}
.y188{bottom:275.385900px;}
.y11a{bottom:277.908750px;}
.y9{bottom:281.068650px;}
.y170{bottom:281.416650px;}
.y143{bottom:282.160650px;}
.y7a{bottom:283.393800px;}
.yd1{bottom:286.412550px;}
.y9f{bottom:289.134000px;}
.y119{bottom:291.408750px;}
.y187{bottom:291.637800px;}
.y4e{bottom:292.393800px;}
.y8{bottom:296.068650px;}
.y16f{bottom:299.168550px;}
.y142{bottom:299.912550px;}
.y79{bottom:301.393800px;}
.y9e{bottom:302.634000px;}
.y186{bottom:303.637800px;}
.yd0{bottom:304.164600px;}
.y118{bottom:304.908750px;}
.y4d{bottom:310.393800px;}
.y7{bottom:311.068650px;}
.y16e{bottom:312.668550px;}
.y141{bottom:313.412550px;}
.yf0{bottom:317.664600px;}
.y78{bottom:319.393800px;}
.y185{bottom:319.889850px;}
.y9d{bottom:320.385900px;}
.ycf{bottom:321.916650px;}
.y117{bottom:322.660650px;}
.y6{bottom:326.068650px;}
.y4c{bottom:328.393800px;}
.y16d{bottom:330.420450px;}
.y140{bottom:331.164600px;}
.y184{bottom:331.889850px;}
.y9c{bottom:333.885900px;}
.yef{bottom:335.416650px;}
.y116{bottom:336.160650px;}
.y77{bottom:337.393800px;}
.yce{bottom:339.668550px;}
.y5{bottom:341.068650px;}
.y183{bottom:343.889850px;}
.y4b{bottom:346.393800px;}
.y16c{bottom:348.172500px;}
.y13f{bottom:348.916650px;}
.y9b{bottom:351.637800px;}
.yee{bottom:353.168550px;}
.y115{bottom:353.912550px;}
.y76{bottom:355.393800px;}
.y4{bottom:356.068650px;}
.ycd{bottom:357.420450px;}
.y13e{bottom:362.416650px;}
.y4a{bottom:364.393800px;}
.y16b{bottom:365.924400px;}
.yed{bottom:366.668550px;}
.y9a{bottom:369.389850px;}
.ycc{bottom:370.920450px;}
.y3{bottom:371.068650px;}
.y114{bottom:371.664600px;}
.y75{bottom:373.393800px;}
.y16a{bottom:379.424400px;}
.y13d{bottom:380.168550px;}
.y49{bottom:382.393800px;}
.yec{bottom:384.420450px;}
.y113{bottom:385.164600px;}
.y2{bottom:386.068650px;}
.y99{bottom:387.141750px;}
.ycb{bottom:388.672500px;}
.y74{bottom:391.393800px;}
.y13c{bottom:393.668550px;}
.y169{bottom:397.176450px;}
.y48{bottom:400.393800px;}
.y98{bottom:400.641750px;}
.y1{bottom:401.068650px;}
.yca{bottom:402.172500px;}
.y112{bottom:402.916650px;}
.y154{bottom:407.168550px;}
.y73{bottom:409.393800px;}
.y168{bottom:410.676450px;}
.y13b{bottom:411.420450px;}
.yeb{bottom:415.672500px;}
.y47{bottom:418.393800px;}
.yc9{bottom:419.924400px;}
.y111{bottom:420.668550px;}
.y182{bottom:424.176450px;}
.y153{bottom:424.920450px;}
.y26{bottom:425.368650px;}
.y72{bottom:427.393800px;}
.y167{bottom:428.428350px;}
.y13a{bottom:429.172500px;}
.yc8{bottom:433.424400px;}
.y110{bottom:434.168550px;}
.y46{bottom:436.393800px;}
.y166{bottom:441.928350px;}
.y139{bottom:442.672500px;}
.y71{bottom:445.393800px;}
.yea{bottom:446.924400px;}
.y25{bottom:449.172600px;}
.yc7{bottom:451.176450px;}
.y10f{bottom:451.920450px;}
.y45{bottom:454.393800px;}
.y181{bottom:455.428350px;}
.y165{bottom:459.680400px;}
.y138{bottom:460.424400px;}
.y70{bottom:463.393800px;}
.y24{bottom:464.472600px;}
.yc6{bottom:464.676450px;}
.y10e{bottom:465.420450px;}
.y44{bottom:472.393800px;}
.y164{bottom:473.180400px;}
.y152{bottom:473.924400px;}
.yc5{bottom:478.176450px;}
.y23{bottom:479.772600px;}
.y6f{bottom:481.393800px;}
.ye9{bottom:482.428350px;}
.y10d{bottom:483.172500px;}
.y180{bottom:486.680400px;}
.y43{bottom:490.393800px;}
.y163{bottom:490.932300px;}
.y137{bottom:491.676450px;}
.yc4{bottom:495.928350px;}
.y22{bottom:499.324650px;}
.y6e{bottom:499.393800px;}
.y10c{bottom:500.924400px;}
.y162{bottom:504.432300px;}
.y136{bottom:505.176450px;}
.y94{bottom:508.393800px;}
.yc3{bottom:509.428350px;}
.ye8{bottom:513.680400px;}
.y10b{bottom:514.424400px;}
.y42{bottom:517.393800px;}
.y17f{bottom:517.932300px;}
.y135{bottom:518.676450px;}
.y161{bottom:522.184350px;}
.y151{bottom:522.928350px;}
.y93{bottom:526.393800px;}
.yc2{bottom:527.180400px;}
.y10a{bottom:532.176450px;}
.y6d{bottom:535.393800px;}
.y160{bottom:535.684350px;}
.y134{bottom:536.428350px;}
.y21{bottom:537.124650px;}
.yc1{bottom:540.680400px;}
.y92{bottom:544.393800px;}
.ye7{bottom:544.932300px;}
.y109{bottom:545.676450px;}
.y15f{bottom:549.184350px;}
.y20{bottom:552.424650px;}
.y6c{bottom:553.393800px;}
.y17e{bottom:553.436250px;}
.y133{bottom:554.180400px;}
.yc0{bottom:558.432300px;}
.y41{bottom:559.448100px;}
.y91{bottom:562.393800px;}
.y108{bottom:563.428350px;}
.y15e{bottom:566.936250px;}
.y1f{bottom:567.724650px;}
.y6b{bottom:571.393800px;}
.ybf{bottom:571.932300px;}
.y40{bottom:574.448100px;}
.ye6{bottom:576.184350px;}
.y90{bottom:580.393800px;}
.y107{bottom:581.180400px;}
.y15d{bottom:584.688150px;}
.ybe{bottom:585.432300px;}
.y1e{bottom:587.276550px;}
.y6a{bottom:589.393800px;}
.y3f{bottom:589.448100px;}
.y132{bottom:589.684350px;}
.ye5{bottom:593.936250px;}
.y106{bottom:594.680400px;}
.y15c{bottom:598.188150px;}
.y8f{bottom:598.393800px;}
.ybd{bottom:603.184350px;}
.y3e{bottom:604.448100px;}
.y69{bottom:607.393800px;}
.ye4{bottom:607.436250px;}
.y105{bottom:612.432300px;}
.y15b{bottom:615.940200px;}
.y8e{bottom:616.393800px;}
.ybc{bottom:616.684350px;}
.y3d{bottom:619.448100px;}
.ye3{bottom:620.936250px;}
.y68{bottom:625.393800px;}
.y17d{bottom:629.440200px;}
.y104{bottom:630.184350px;}
.y15a{bottom:633.692100px;}
.y8d{bottom:634.393800px;}
.ybb{bottom:634.436250px;}
.y3c{bottom:634.448100px;}
.ye2{bottom:638.688150px;}
.y17c{bottom:642.940200px;}
.y67{bottom:643.393800px;}
.y103{bottom:643.684350px;}
.y159{bottom:647.192100px;}
.yba{bottom:647.936250px;}
.ye1{bottom:652.188150px;}
.y8c{bottom:652.393800px;}
.y131{bottom:656.440200px;}
.y102{bottom:657.184350px;}
.y3b{bottom:657.951900px;}
.y158{bottom:660.692100px;}
.y66{bottom:661.393800px;}
.yb9{bottom:665.688150px;}
.y1d{bottom:666.940200px;}
.ye0{bottom:669.940200px;}
.y8b{bottom:670.393800px;}
.y3a{bottom:672.951900px;}
.y130{bottom:674.192100px;}
.y101{bottom:674.936250px;}
.y157{bottom:678.444150px;}
.y65{bottom:679.393800px;}
.yb8{bottom:683.440200px;}
.ydf{bottom:687.692100px;}
.y1c{bottom:687.940200px;}
.y39{bottom:687.951900px;}
.y8a{bottom:688.393800px;}
.y12f{bottom:691.944150px;}
.y100{bottom:692.688150px;}
.y150{bottom:696.940200px;}
.y64{bottom:697.393800px;}
.yb7{bottom:701.192100px;}
.y38{bottom:702.951900px;}
.y12e{bottom:705.444150px;}
.y89{bottom:706.393800px;}
.y1b{bottom:708.940200px;}
.y17b{bottom:709.696050px;}
.yff{bottom:710.440200px;}
.y14f{bottom:714.692100px;}
.y63{bottom:715.393800px;}
.y37{bottom:717.951900px;}
.yb6{bottom:718.944150px;}
.y12d{bottom:723.196050px;}
.y88{bottom:724.393800px;}
.yfe{bottom:728.192100px;}
.yb5{bottom:732.444150px;}
.y36{bottom:732.952050px;}
.y62{bottom:733.393800px;}
.y12c{bottom:736.696050px;}
.y87{bottom:742.393800px;}
.yde{bottom:745.944150px;}
.y1a{bottom:746.948100px;}
.y35{bottom:747.952050px;}
.yb4{bottom:750.196050px;}
.y61{bottom:751.393800px;}
.y12b{bottom:754.448100px;}
.yfd{bottom:759.444150px;}
.y86{bottom:760.393800px;}
.y34{bottom:762.952050px;}
.yb3{bottom:763.696050px;}
.y19{bottom:767.948100px;}
.y60{bottom:769.393800px;}
.y12a{bottom:772.200000px;}
.ydd{bottom:777.196050px;}
.y33{bottom:777.951900px;}
.y19e{bottom:778.298550px;}
.y85{bottom:778.393800px;}
.yb2{bottom:781.448100px;}
.y129{bottom:785.700000px;}
.y5f{bottom:787.393800px;}
.y18{bottom:788.948100px;}
.y19d{bottom:790.298550px;}
.y14e{bottom:790.696050px;}
.y32{bottom:792.951900px;}
.yb1{bottom:794.948100px;}
.y84{bottom:796.393800px;}
.y128{bottom:799.200000px;}
.y5e{bottom:805.393800px;}
.y19c{bottom:806.550600px;}
.y31{bottom:807.951900px;}
.yfc{bottom:808.448100px;}
.yb0{bottom:812.700000px;}
.y83{bottom:814.393800px;}
.y127{bottom:816.951900px;}
.y19b{bottom:818.550600px;}
.y14d{bottom:821.948100px;}
.y30{bottom:822.951900px;}
.y5d{bottom:823.393800px;}
.yaf{bottom:826.200000px;}
.y17{bottom:826.956000px;}
.y126{bottom:830.451900px;}
.y19a{bottom:830.550600px;}
.y82{bottom:832.393800px;}
.yfb{bottom:839.700000px;}
.y5c{bottom:841.393800px;}
.yae{bottom:843.951900px;}
.y2f{bottom:846.456000px;}
.y199{bottom:846.802500px;}
.y16{bottom:847.956000px;}
.y125{bottom:848.203950px;}
.y81{bottom:850.393800px;}
.y14c{bottom:853.200000px;}
.yad{bottom:857.451900px;}
.y5b{bottom:859.393800px;}
.y2e{bottom:861.456000px;}
.y124{bottom:861.703950px;}
.y198{bottom:863.054400px;}
.y15{bottom:868.956000px;}
.ydc{bottom:870.951900px;}
.y197{bottom:875.054400px;}
.yac{bottom:875.203950px;}
.y2d{bottom:876.456000px;}
.y5a{bottom:877.393650px;}
.y123{bottom:879.456000px;}
.yab{bottom:888.703950px;}
.y196{bottom:891.306450px;}
.y2c{bottom:891.456000px;}
.yfa{bottom:892.956000px;}
.y59{bottom:895.393650px;}
.y2b{bottom:906.456000px;}
.y195{bottom:907.558350px;}
.y28{bottom:974.296500px;}
.y2a{bottom:976.101600px;}
.h9{height:29.484000px;}
.ha{height:33.948000px;}
.hb{height:36.777000px;}
.h3{height:39.606000px;}
.h2{height:39.732000px;}
.he{height:46.902000px;}
.h8{height:47.088000px;}
.h7{height:47.328000px;}
.h6{height:50.112000px;}
.hd{height:50.922000px;}
.hf{height:52.272000px;}
.hc{height:58.860000px;}
.h5{height:79.212000px;}
.h4{height:79.800000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:40.594350px;}
.xa{left:63.779550px;}
.x9{left:85.039350px;}
.xe{left:93.543300px;}
.x8{left:102.047250px;}
.xb{left:104.598450px;}
.xc{left:106.299150px;}
.xd{left:127.559100px;}
.xf{left:136.063050px;}
.x1{left:144.566850px;}
.x10{left:170.078700px;}
.x4{left:212.799600px;}
.x2{left:272.125950px;}
.x5{left:358.708350px;}
.x7{left:389.881500px;}
.x3{left:659.173200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.346667pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.279840pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.139733pt;}
.ls2{letter-spacing:0.346667pt;}
.ls9{letter-spacing:2.256533pt;}
.ls6{letter-spacing:3.910400pt;}
.ws160{word-spacing:-16.560000pt;}
.ws97{word-spacing:-13.776000pt;}
.ws54{word-spacing:-13.296000pt;}
.ws8a{word-spacing:-12.864000pt;}
.ws13{word-spacing:-11.760000pt;}
.ws154{word-spacing:-10.714667pt;}
.wsfe{word-spacing:-10.378667pt;}
.wsf3{word-spacing:-10.341333pt;}
.wsfd{word-spacing:-10.005333pt;}
.ws161{word-spacing:-9.184000pt;}
.ws0{word-spacing:-8.840000pt;}
.ws53{word-spacing:-8.031408pt;}
.wse6{word-spacing:-7.751568pt;}
.ws170{word-spacing:-4.448000pt;}
.ws153{word-spacing:-4.069333pt;}
.ws86{word-spacing:-3.936000pt;}
.ws168{word-spacing:-2.912000pt;}
.wsea{word-spacing:-2.880000pt;}
.ws169{word-spacing:-2.800000pt;}
.wsdc{word-spacing:-2.640000pt;}
.ws6e{word-spacing:-2.592000pt;}
.wsb1{word-spacing:-2.544000pt;}
.ws4a{word-spacing:-2.496000pt;}
.ws26{word-spacing:-2.448000pt;}
.ws80{word-spacing:-2.400000pt;}
.ws7f{word-spacing:-2.352000pt;}
.wsb5{word-spacing:-2.304000pt;}
.wsf2{word-spacing:-2.256000pt;}
.ws70{word-spacing:-2.208000pt;}
.wse4{word-spacing:-2.160000pt;}
.wsd3{word-spacing:-2.112000pt;}
.wsd9{word-spacing:-2.064000pt;}
.ws5f{word-spacing:-2.016000pt;}
.ws1d{word-spacing:-1.978667pt;}
.ws83{word-spacing:-1.968000pt;}
.ws15{word-spacing:-1.941333pt;}
.wsa7{word-spacing:-1.920000pt;}
.wsd5{word-spacing:-1.872000pt;}
.ws4{word-spacing:-1.866667pt;}
.wsa3{word-spacing:-1.824000pt;}
.wsff{word-spacing:-1.792000pt;}
.wsba{word-spacing:-1.776000pt;}
.ws65{word-spacing:-1.728000pt;}
.ws77{word-spacing:-1.680000pt;}
.ws15c{word-spacing:-1.642667pt;}
.ws5e{word-spacing:-1.632000pt;}
.ws152{word-spacing:-1.605333pt;}
.ws30{word-spacing:-1.584000pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws151{word-spacing:-1.530667pt;}
.ws165{word-spacing:-1.493333pt;}
.ws2a{word-spacing:-1.488000pt;}
.ws5{word-spacing:-1.456000pt;}
.wsbb{word-spacing:-1.440000pt;}
.ws109{word-spacing:-1.418667pt;}
.ws9a{word-spacing:-1.392000pt;}
.ws10f{word-spacing:-1.381333pt;}
.wsa4{word-spacing:-1.344000pt;}
.ws114{word-spacing:-1.306667pt;}
.wsbf{word-spacing:-1.296000pt;}
.ws113{word-spacing:-1.269333pt;}
.ws24{word-spacing:-1.248000pt;}
.ws15b{word-spacing:-1.232000pt;}
.ws20{word-spacing:-1.226667pt;}
.ws57{word-spacing:-1.200000pt;}
.ws15d{word-spacing:-1.194667pt;}
.ws104{word-spacing:-1.157333pt;}
.wsb9{word-spacing:-1.152000pt;}
.ws81{word-spacing:-1.104000pt;}
.ws12f{word-spacing:-1.082667pt;}
.wsa5{word-spacing:-1.056000pt;}
.ws145{word-spacing:-1.045333pt;}
.wsf{word-spacing:-1.008000pt;}
.ws16f{word-spacing:-0.992000pt;}
.ws8c{word-spacing:-0.960000pt;}
.ws14d{word-spacing:-0.933333pt;}
.ws28{word-spacing:-0.912000pt;}
.ws12e{word-spacing:-0.896000pt;}
.ws35{word-spacing:-0.864000pt;}
.ws12c{word-spacing:-0.858667pt;}
.ws9{word-spacing:-0.821333pt;}
.wsaf{word-spacing:-0.816000pt;}
.ws69{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.746667pt;}
.ws4d{word-spacing:-0.720000pt;}
.ws131{word-spacing:-0.709333pt;}
.ws19{word-spacing:-0.672000pt;}
.wsc{word-spacing:-0.634667pt;}
.ws37{word-spacing:-0.624000pt;}
.ws144{word-spacing:-0.597333pt;}
.ws3d{word-spacing:-0.576000pt;}
.ws157{word-spacing:-0.560000pt;}
.ws61{word-spacing:-0.528000pt;}
.ws11f{word-spacing:-0.522667pt;}
.ws11e{word-spacing:-0.485333pt;}
.ws3a{word-spacing:-0.480000pt;}
.ws163{word-spacing:-0.448000pt;}
.ws89{word-spacing:-0.432000pt;}
.ws136{word-spacing:-0.410667pt;}
.ws6f{word-spacing:-0.384000pt;}
.ws137{word-spacing:-0.373333pt;}
.ws60{word-spacing:-0.336000pt;}
.ws3{word-spacing:-0.298667pt;}
.ws4b{word-spacing:-0.288000pt;}
.wsf6{word-spacing:-0.261333pt;}
.wsda{word-spacing:-0.240000pt;}
.ws10{word-spacing:-0.224000pt;}
.wsb3{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.186667pt;}
.ws120{word-spacing:-0.149333pt;}
.ws87{word-spacing:-0.144000pt;}
.ws177{word-spacing:-0.128000pt;}
.ws15f{word-spacing:-0.112000pt;}
.wsd6{word-spacing:-0.096000pt;}
.ws15e{word-spacing:-0.074667pt;}
.wsf1{word-spacing:-0.048000pt;}
.wse{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.037333pt;}
.ws8e{word-spacing:0.048000pt;}
.ws117{word-spacing:0.074667pt;}
.ws45{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.112000pt;}
.ws25{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.149333pt;}
.ws14f{word-spacing:0.186667pt;}
.ws5b{word-spacing:0.192000pt;}
.wsd8{word-spacing:0.240000pt;}
.wsfa{word-spacing:0.261333pt;}
.ws9f{word-spacing:0.279840pt;}
.ws8f{word-spacing:0.288000pt;}
.ws6{word-spacing:0.298667pt;}
.ws16b{word-spacing:0.320000pt;}
.wsb2{word-spacing:0.336000pt;}
.wsf7{word-spacing:0.373333pt;}
.ws82{word-spacing:0.384000pt;}
.ws7{word-spacing:0.410667pt;}
.ws43{word-spacing:0.432000pt;}
.ws102{word-spacing:0.448000pt;}
.ws41{word-spacing:0.480000pt;}
.ws162{word-spacing:0.485333pt;}
.ws16e{word-spacing:0.512000pt;}
.ws118{word-spacing:0.522667pt;}
.ws50{word-spacing:0.528000pt;}
.ws148{word-spacing:0.560000pt;}
.ws2c{word-spacing:0.576000pt;}
.ws12d{word-spacing:0.597333pt;}
.ws9e{word-spacing:0.624000pt;}
.ws14{word-spacing:0.634667pt;}
.ws5d{word-spacing:0.672000pt;}
.ws11b{word-spacing:0.709333pt;}
.wsa2{word-spacing:0.720000pt;}
.ws11d{word-spacing:0.746667pt;}
.ws7a{word-spacing:0.768000pt;}
.ws107{word-spacing:0.784000pt;}
.ws3b{word-spacing:0.816000pt;}
.ws108{word-spacing:0.821333pt;}
.ws149{word-spacing:0.858667pt;}
.ws46{word-spacing:0.864000pt;}
.ws140{word-spacing:0.896000pt;}
.ws76{word-spacing:0.912000pt;}
.ws171{word-spacing:0.928000pt;}
.ws135{word-spacing:0.933333pt;}
.ws9d{word-spacing:0.960000pt;}
.ws11c{word-spacing:0.970667pt;}
.wsbc{word-spacing:1.008000pt;}
.wsf4{word-spacing:1.045333pt;}
.ws64{word-spacing:1.056000pt;}
.ws110{word-spacing:1.082667pt;}
.wsc3{word-spacing:1.104000pt;}
.ws13f{word-spacing:1.120000pt;}
.wsd1{word-spacing:1.152000pt;}
.ws11a{word-spacing:1.157333pt;}
.ws119{word-spacing:1.194667pt;}
.ws22{word-spacing:1.200000pt;}
.ws138{word-spacing:1.232000pt;}
.wsa8{word-spacing:1.248000pt;}
.ws132{word-spacing:1.269333pt;}
.wscc{word-spacing:1.296000pt;}
.ws1a{word-spacing:1.306667pt;}
.ws176{word-spacing:1.312000pt;}
.ws5c{word-spacing:1.344000pt;}
.ws7e{word-spacing:1.392000pt;}
.ws167{word-spacing:1.418667pt;}
.wsca{word-spacing:1.440000pt;}
.ws66{word-spacing:1.488000pt;}
.ws11{word-spacing:1.530667pt;}
.ws32{word-spacing:1.536000pt;}
.ws158{word-spacing:1.568000pt;}
.ws74{word-spacing:1.584000pt;}
.ws16d{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.632000pt;}
.ws155{word-spacing:1.642667pt;}
.ws16c{word-spacing:1.664000pt;}
.ws8{word-spacing:1.680000pt;}
.ws126{word-spacing:1.717333pt;}
.ws2d{word-spacing:1.728000pt;}
.ws125{word-spacing:1.754667pt;}
.ws174{word-spacing:1.760000pt;}
.ws62{word-spacing:1.776000pt;}
.ws175{word-spacing:1.792000pt;}
.ws36{word-spacing:1.824000pt;}
.ws106{word-spacing:1.829333pt;}
.ws105{word-spacing:1.866667pt;}
.wsac{word-spacing:1.872000pt;}
.ws112{word-spacing:1.904000pt;}
.wsc4{word-spacing:1.920000pt;}
.ws127{word-spacing:1.941333pt;}
.wsbe{word-spacing:1.968000pt;}
.ws150{word-spacing:1.978667pt;}
.ws67{word-spacing:2.016000pt;}
.ws15a{word-spacing:2.053333pt;}
.wse0{word-spacing:2.064000pt;}
.ws130{word-spacing:2.090667pt;}
.wsae{word-spacing:2.112000pt;}
.ws13c{word-spacing:2.128000pt;}
.ws68{word-spacing:2.160000pt;}
.ws13d{word-spacing:2.165333pt;}
.wsb{word-spacing:2.202667pt;}
.ws56{word-spacing:2.208000pt;}
.wsfc{word-spacing:2.240000pt;}
.ws6d{word-spacing:2.256000pt;}
.wsa6{word-spacing:2.304000pt;}
.wsfb{word-spacing:2.314667pt;}
.wsbd{word-spacing:2.352000pt;}
.ws12{word-spacing:2.389333pt;}
.ws3c{word-spacing:2.400000pt;}
.ws10c{word-spacing:2.426667pt;}
.ws91{word-spacing:2.448000pt;}
.ws63{word-spacing:2.496000pt;}
.ws10b{word-spacing:2.501333pt;}
.wsb4{word-spacing:2.544000pt;}
.ws1b{word-spacing:2.576000pt;}
.ws6a{word-spacing:2.592000pt;}
.ws85{word-spacing:2.640000pt;}
.ws16a{word-spacing:2.656000pt;}
.wsc9{word-spacing:2.688000pt;}
.ws12b{word-spacing:2.725333pt;}
.wsdd{word-spacing:2.736000pt;}
.wsf9{word-spacing:2.762667pt;}
.ws93{word-spacing:2.784000pt;}
.ws12a{word-spacing:2.800000pt;}
.ws78{word-spacing:2.832000pt;}
.wsd0{word-spacing:2.880000pt;}
.ws3e{word-spacing:2.928000pt;}
.ws1c{word-spacing:2.949333pt;}
.ws21{word-spacing:2.976000pt;}
.ws128{word-spacing:2.986667pt;}
.wsb0{word-spacing:3.024000pt;}
.ws156{word-spacing:3.061333pt;}
.ws79{word-spacing:3.072000pt;}
.ws129{word-spacing:3.098667pt;}
.ws49{word-spacing:3.120000pt;}
.ws142{word-spacing:3.136000pt;}
.wsad{word-spacing:3.168000pt;}
.ws164{word-spacing:3.173333pt;}
.ws51{word-spacing:3.216000pt;}
.ws143{word-spacing:3.248000pt;}
.wsdf{word-spacing:3.264000pt;}
.ws52{word-spacing:3.312000pt;}
.ws147{word-spacing:3.322667pt;}
.ws38{word-spacing:3.360000pt;}
.ws134{word-spacing:3.397333pt;}
.wsd7{word-spacing:3.408000pt;}
.ws146{word-spacing:3.434667pt;}
.ws75{word-spacing:3.456000pt;}
.wsc0{word-spacing:3.504000pt;}
.ws133{word-spacing:3.509333pt;}
.wsb8{word-spacing:3.552000pt;}
.ws139{word-spacing:3.584000pt;}
.ws44{word-spacing:3.600000pt;}
.ws72{word-spacing:3.648000pt;}
.ws10e{word-spacing:3.658667pt;}
.ws94{word-spacing:3.696000pt;}
.wsec{word-spacing:3.744000pt;}
.wse9{word-spacing:3.792000pt;}
.ws10d{word-spacing:3.808000pt;}
.ws92{word-spacing:3.840000pt;}
.wseb{word-spacing:3.888000pt;}
.ws8d{word-spacing:3.936000pt;}
.wsc7{word-spacing:3.984000pt;}
.ws40{word-spacing:4.032000pt;}
.ws10a{word-spacing:4.069333pt;}
.wsaa{word-spacing:4.080000pt;}
.ws9b{word-spacing:4.128000pt;}
.ws34{word-spacing:4.176000pt;}
.ws4e{word-spacing:4.224000pt;}
.wsb6{word-spacing:4.272000pt;}
.ws159{word-spacing:4.293333pt;}
.wsd4{word-spacing:4.320000pt;}
.wsb7{word-spacing:4.368000pt;}
.wsd{word-spacing:4.405333pt;}
.ws3f{word-spacing:4.416000pt;}
.ws13b{word-spacing:4.442667pt;}
.wse3{word-spacing:4.464000pt;}
.wsf0{word-spacing:4.512000pt;}
.ws111{word-spacing:4.517333pt;}
.ws23{word-spacing:4.560000pt;}
.ws13a{word-spacing:4.592000pt;}
.wse1{word-spacing:4.608000pt;}
.ws103{word-spacing:4.629333pt;}
.ws84{word-spacing:4.656000pt;}
.ws2b{word-spacing:4.752000pt;}
.ws123{word-spacing:4.778667pt;}
.ws98{word-spacing:4.800000pt;}
.ws6c{word-spacing:4.848000pt;}
.ws16{word-spacing:4.853333pt;}
.ws141{word-spacing:4.890667pt;}
.wsa1{word-spacing:4.896000pt;}
.ws101{word-spacing:4.928000pt;}
.ws8b{word-spacing:4.944000pt;}
.ws173{word-spacing:4.960000pt;}
.ws55{word-spacing:4.992000pt;}
.ws14e{word-spacing:5.002667pt;}
.ws71{word-spacing:5.040000pt;}
.ws100{word-spacing:5.077333pt;}
.ws90{word-spacing:5.088000pt;}
.ws122{word-spacing:5.114667pt;}
.ws172{word-spacing:5.120000pt;}
.ws29{word-spacing:5.136000pt;}
.ws14c{word-spacing:5.152000pt;}
.wse5{word-spacing:5.184000pt;}
.ws42{word-spacing:5.232000pt;}
.ws121{word-spacing:5.264000pt;}
.wscd{word-spacing:5.280000pt;}
.ws27{word-spacing:5.328000pt;}
.ws14b{word-spacing:5.338667pt;}
.ws47{word-spacing:5.376000pt;}
.wsc8{word-spacing:5.424000pt;}
.ws7d{word-spacing:5.472000pt;}
.wsc2{word-spacing:5.520000pt;}
.wsf8{word-spacing:5.525333pt;}
.ws88{word-spacing:5.568000pt;}
.ws58{word-spacing:5.616000pt;}
.ws2f{word-spacing:5.712000pt;}
.ws18{word-spacing:5.749333pt;}
.wsab{word-spacing:5.760000pt;}
.ws31{word-spacing:5.808000pt;}
.ws99{word-spacing:5.856000pt;}
.ws7b{word-spacing:5.904000pt;}
.ws14a{word-spacing:5.936000pt;}
.ws2e{word-spacing:5.952000pt;}
.ws48{word-spacing:6.000000pt;}
.wscb{word-spacing:6.048000pt;}
.wsee{word-spacing:6.096000pt;}
.ws73{word-spacing:6.144000pt;}
.wse7{word-spacing:6.192000pt;}
.ws124{word-spacing:6.197333pt;}
.ws6b{word-spacing:6.240000pt;}
.ws9c{word-spacing:6.288000pt;}
.ws59{word-spacing:6.336000pt;}
.wsd2{word-spacing:6.384000pt;}
.wse2{word-spacing:6.432000pt;}
.ws39{word-spacing:6.480000pt;}
.ws96{word-spacing:6.528000pt;}
.ws7c{word-spacing:6.624000pt;}
.ws116{word-spacing:6.682667pt;}
.ws95{word-spacing:6.768000pt;}
.wsed{word-spacing:6.816000pt;}
.ws5a{word-spacing:6.864000pt;}
.ws115{word-spacing:6.906667pt;}
.wscf{word-spacing:7.008000pt;}
.wsa9{word-spacing:7.056000pt;}
.ws4f{word-spacing:7.104000pt;}
.ws33{word-spacing:7.152000pt;}
.wsef{word-spacing:7.248000pt;}
.wse8{word-spacing:7.296000pt;}
.wsce{word-spacing:7.440000pt;}
.wsde{word-spacing:7.536000pt;}
.wsc1{word-spacing:7.584000pt;}
.wsdb{word-spacing:7.632000pt;}
.wsc5{word-spacing:7.680000pt;}
.wsc6{word-spacing:7.872000pt;}
.ws13e{word-spacing:15.306667pt;}
.wsf5{word-spacing:65.109333pt;}
.ws166{word-spacing:65.258667pt;}
._8{margin-left:-13.440000pt;}
._14{margin-left:-9.574400pt;}
._10{margin-left:-7.942400pt;}
._7{margin-left:-6.192000pt;}
._9{margin-left:-4.512000pt;}
._5{margin-left:-3.456000pt;}
._1{margin-left:-2.116800pt;}
._2{margin-left:-0.906667pt;}
._3{width:1.360000pt;}
._0{width:2.426667pt;}
._a{width:4.411733pt;}
._4{width:5.303467pt;}
._18{width:28.134400pt;}
._16{width:29.318400pt;}
._17{width:30.630400pt;}
._19{width:35.078400pt;}
._13{width:43.558400pt;}
._f{width:46.854400pt;}
._12{width:47.750400pt;}
._15{width:48.678400pt;}
._c{width:49.952000pt;}
._11{width:53.126400pt;}
._e{width:63.840000pt;}
._b{width:65.258667pt;}
._d{width:316.549333pt;}
._6{width:1055.442133pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:37.165333pt;}
.y29{bottom:37.206667pt;}
.y14{bottom:95.613067pt;}
.yaa{bottom:98.551200pt;}
.y58{bottom:99.905467pt;}
.y122{bottom:99.911867pt;}
.y194{bottom:101.669333pt;}
.y14b{bottom:104.352800pt;}
.yf9{bottom:107.470800pt;}
.y97{bottom:107.905467pt;}
.ydb{bottom:108.132267pt;}
.y13{bottom:108.946400pt;}
.ya9{bottom:110.551200pt;}
.y121{bottom:111.911867pt;}
.y17a{bottom:115.030000pt;}
.y57{bottom:115.905467pt;}
.y193{bottom:116.115600pt;}
.yf8{bottom:119.470800pt;}
.yda{bottom:120.132267pt;}
.y12{bottom:122.279733pt;}
.y96{bottom:123.905467pt;}
.y120{bottom:123.911867pt;}
.ya8{bottom:126.330667pt;}
.y192{bottom:126.782267pt;}
.y179{bottom:127.030000pt;}
.yf7{bottom:131.470933pt;}
.y56{bottom:131.905600pt;}
.y14a{bottom:132.132267pt;}
.y11{bottom:135.613067pt;}
.yd9{bottom:135.911867pt;}
.y191{bottom:137.448800pt;}
.ya7{bottom:138.330800pt;}
.y11f{bottom:139.691333pt;}
.y95{bottom:139.905600pt;}
.y178{bottom:142.809467pt;}
.yf6{bottom:147.250400pt;}
.y55{bottom:147.905600pt;}
.y149{bottom:147.911867pt;}
.y190{bottom:148.115467pt;}
.y10{bottom:148.946400pt;}
.yd8{bottom:151.691333pt;}
.ya6{bottom:154.110267pt;}
.y177{bottom:154.809467pt;}
.y80{bottom:155.905600pt;}
.yf5{bottom:159.250400pt;}
.y148{bottom:159.911867pt;}
.yf{bottom:162.279733pt;}
.y18f{bottom:162.561733pt;}
.yd7{bottom:163.691333pt;}
.y54{bottom:163.905600pt;}
.ya5{bottom:166.110267pt;}
.y156{bottom:167.470933pt;}
.y176{bottom:170.588933pt;}
.y7f{bottom:171.905600pt;}
.y18e{bottom:173.228400pt;}
.yf4{bottom:175.030000pt;}
.ye{bottom:175.613067pt;}
.y147{bottom:175.691333pt;}
.yd6{bottom:179.470933pt;}
.y53{bottom:179.905600pt;}
.ya4{bottom:181.889867pt;}
.y175{bottom:182.588933pt;}
.y155{bottom:183.250400pt;}
.yf3{bottom:187.030000pt;}
.y18d{bottom:187.674667pt;}
.y7e{bottom:187.905600pt;}
.yd{bottom:188.946400pt;}
.y11e{bottom:191.470933pt;}
.y174{bottom:194.588933pt;}
.yd5{bottom:195.250400pt;}
.y52{bottom:195.905600pt;}
.ya3{bottom:197.669333pt;}
.y18c{bottom:202.120800pt;}
.yf2{bottom:202.809467pt;}
.y11d{bottom:203.470933pt;}
.y7d{bottom:203.905600pt;}
.y146{bottom:207.250400pt;}
.yc{bottom:209.838800pt;}
.y173{bottom:210.368533pt;}
.yd4{bottom:211.030000pt;}
.y51{bottom:211.905600pt;}
.y18b{bottom:212.787467pt;}
.ya2{bottom:213.448800pt;}
.yf1{bottom:214.809467pt;}
.y11c{bottom:219.250400pt;}
.y7c{bottom:219.905600pt;}
.y172{bottom:222.368533pt;}
.y145{bottom:223.030000pt;}
.yb{bottom:223.172133pt;}
.y18a{bottom:223.454133pt;}
.ya1{bottom:225.448800pt;}
.yd3{bottom:226.809467pt;}
.y50{bottom:227.905600pt;}
.y11b{bottom:231.250400pt;}
.y189{bottom:234.120800pt;}
.y144{bottom:235.030000pt;}
.y7b{bottom:235.905600pt;}
.ya{bottom:236.505467pt;}
.y171{bottom:238.148133pt;}
.ya0{bottom:241.228400pt;}
.yd2{bottom:242.588933pt;}
.y4f{bottom:243.905600pt;}
.y188{bottom:244.787467pt;}
.y11a{bottom:247.030000pt;}
.y9{bottom:249.838800pt;}
.y170{bottom:250.148133pt;}
.y143{bottom:250.809467pt;}
.y7a{bottom:251.905600pt;}
.yd1{bottom:254.588933pt;}
.y9f{bottom:257.008000pt;}
.y119{bottom:259.030000pt;}
.y187{bottom:259.233600pt;}
.y4e{bottom:259.905600pt;}
.y8{bottom:263.172133pt;}
.y16f{bottom:265.927600pt;}
.y142{bottom:266.588933pt;}
.y79{bottom:267.905600pt;}
.y9e{bottom:269.008000pt;}
.y186{bottom:269.900267pt;}
.yd0{bottom:270.368533pt;}
.y118{bottom:271.030000pt;}
.y4d{bottom:275.905600pt;}
.y7{bottom:276.505467pt;}
.y16e{bottom:277.927600pt;}
.y141{bottom:278.588933pt;}
.yf0{bottom:282.368533pt;}
.y78{bottom:283.905600pt;}
.y185{bottom:284.346533pt;}
.y9d{bottom:284.787467pt;}
.ycf{bottom:286.148133pt;}
.y117{bottom:286.809467pt;}
.y6{bottom:289.838800pt;}
.y4c{bottom:291.905600pt;}
.y16d{bottom:293.707067pt;}
.y140{bottom:294.368533pt;}
.y184{bottom:295.013200pt;}
.y9c{bottom:296.787467pt;}
.yef{bottom:298.148133pt;}
.y116{bottom:298.809467pt;}
.y77{bottom:299.905600pt;}
.yce{bottom:301.927600pt;}
.y5{bottom:303.172133pt;}
.y183{bottom:305.679867pt;}
.y4b{bottom:307.905600pt;}
.y16c{bottom:309.486667pt;}
.y13f{bottom:310.148133pt;}
.y9b{bottom:312.566933pt;}
.yee{bottom:313.927600pt;}
.y115{bottom:314.588933pt;}
.y76{bottom:315.905600pt;}
.y4{bottom:316.505467pt;}
.ycd{bottom:317.707067pt;}
.y13e{bottom:322.148133pt;}
.y4a{bottom:323.905600pt;}
.y16b{bottom:325.266133pt;}
.yed{bottom:325.927600pt;}
.y9a{bottom:328.346533pt;}
.ycc{bottom:329.707067pt;}
.y3{bottom:329.838800pt;}
.y114{bottom:330.368533pt;}
.y75{bottom:331.905600pt;}
.y16a{bottom:337.266133pt;}
.y13d{bottom:337.927600pt;}
.y49{bottom:339.905600pt;}
.yec{bottom:341.707067pt;}
.y113{bottom:342.368533pt;}
.y2{bottom:343.172133pt;}
.y99{bottom:344.126000pt;}
.ycb{bottom:345.486667pt;}
.y74{bottom:347.905600pt;}
.y13c{bottom:349.927600pt;}
.y169{bottom:353.045733pt;}
.y48{bottom:355.905600pt;}
.y98{bottom:356.126000pt;}
.y1{bottom:356.505467pt;}
.yca{bottom:357.486667pt;}
.y112{bottom:358.148133pt;}
.y154{bottom:361.927600pt;}
.y73{bottom:363.905600pt;}
.y168{bottom:365.045733pt;}
.y13b{bottom:365.707067pt;}
.yeb{bottom:369.486667pt;}
.y47{bottom:371.905600pt;}
.yc9{bottom:373.266133pt;}
.y111{bottom:373.927600pt;}
.y182{bottom:377.045733pt;}
.y153{bottom:377.707067pt;}
.y26{bottom:378.105467pt;}
.y72{bottom:379.905600pt;}
.y167{bottom:380.825200pt;}
.y13a{bottom:381.486667pt;}
.yc8{bottom:385.266133pt;}
.y110{bottom:385.927600pt;}
.y46{bottom:387.905600pt;}
.y166{bottom:392.825200pt;}
.y139{bottom:393.486667pt;}
.y71{bottom:395.905600pt;}
.yea{bottom:397.266133pt;}
.y25{bottom:399.264533pt;}
.yc7{bottom:401.045733pt;}
.y10f{bottom:401.707067pt;}
.y45{bottom:403.905600pt;}
.y181{bottom:404.825200pt;}
.y165{bottom:408.604800pt;}
.y138{bottom:409.266133pt;}
.y70{bottom:411.905600pt;}
.y24{bottom:412.864533pt;}
.yc6{bottom:413.045733pt;}
.y10e{bottom:413.707067pt;}
.y44{bottom:419.905600pt;}
.y164{bottom:420.604800pt;}
.y152{bottom:421.266133pt;}
.yc5{bottom:425.045733pt;}
.y23{bottom:426.464533pt;}
.y6f{bottom:427.905600pt;}
.ye9{bottom:428.825200pt;}
.y10d{bottom:429.486667pt;}
.y180{bottom:432.604800pt;}
.y43{bottom:435.905600pt;}
.y163{bottom:436.384267pt;}
.y137{bottom:437.045733pt;}
.yc4{bottom:440.825200pt;}
.y22{bottom:443.844133pt;}
.y6e{bottom:443.905600pt;}
.y10c{bottom:445.266133pt;}
.y162{bottom:448.384267pt;}
.y136{bottom:449.045733pt;}
.y94{bottom:451.905600pt;}
.yc3{bottom:452.825200pt;}
.ye8{bottom:456.604800pt;}
.y10b{bottom:457.266133pt;}
.y42{bottom:459.905600pt;}
.y17f{bottom:460.384267pt;}
.y135{bottom:461.045733pt;}
.y161{bottom:464.163867pt;}
.y151{bottom:464.825200pt;}
.y93{bottom:467.905600pt;}
.yc2{bottom:468.604800pt;}
.y10a{bottom:473.045733pt;}
.y6d{bottom:475.905600pt;}
.y160{bottom:476.163867pt;}
.y134{bottom:476.825200pt;}
.y21{bottom:477.444133pt;}
.yc1{bottom:480.604800pt;}
.y92{bottom:483.905600pt;}
.ye7{bottom:484.384267pt;}
.y109{bottom:485.045733pt;}
.y15f{bottom:488.163867pt;}
.y20{bottom:491.044133pt;}
.y6c{bottom:491.905600pt;}
.y17e{bottom:491.943333pt;}
.y133{bottom:492.604800pt;}
.yc0{bottom:496.384267pt;}
.y41{bottom:497.287200pt;}
.y91{bottom:499.905600pt;}
.y108{bottom:500.825200pt;}
.y15e{bottom:503.943333pt;}
.y1f{bottom:504.644133pt;}
.y6b{bottom:507.905600pt;}
.ybf{bottom:508.384267pt;}
.y40{bottom:510.620533pt;}
.ye6{bottom:512.163867pt;}
.y90{bottom:515.905600pt;}
.y107{bottom:516.604800pt;}
.y15d{bottom:519.722800pt;}
.ybe{bottom:520.384267pt;}
.y1e{bottom:522.023600pt;}
.y6a{bottom:523.905600pt;}
.y3f{bottom:523.953867pt;}
.y132{bottom:524.163867pt;}
.ye5{bottom:527.943333pt;}
.y106{bottom:528.604800pt;}
.y15c{bottom:531.722800pt;}
.y8f{bottom:531.905600pt;}
.ybd{bottom:536.163867pt;}
.y3e{bottom:537.287200pt;}
.y69{bottom:539.905600pt;}
.ye4{bottom:539.943333pt;}
.y105{bottom:544.384267pt;}
.y15b{bottom:547.502400pt;}
.y8e{bottom:547.905600pt;}
.ybc{bottom:548.163867pt;}
.y3d{bottom:550.620533pt;}
.ye3{bottom:551.943333pt;}
.y68{bottom:555.905600pt;}
.y17d{bottom:559.502400pt;}
.y104{bottom:560.163867pt;}
.y15a{bottom:563.281867pt;}
.y8d{bottom:563.905600pt;}
.ybb{bottom:563.943333pt;}
.y3c{bottom:563.953867pt;}
.ye2{bottom:567.722800pt;}
.y17c{bottom:571.502400pt;}
.y67{bottom:571.905600pt;}
.y103{bottom:572.163867pt;}
.y159{bottom:575.281867pt;}
.yba{bottom:575.943333pt;}
.ye1{bottom:579.722800pt;}
.y8c{bottom:579.905600pt;}
.y131{bottom:583.502400pt;}
.y102{bottom:584.163867pt;}
.y3b{bottom:584.846133pt;}
.y158{bottom:587.281867pt;}
.y66{bottom:587.905600pt;}
.yb9{bottom:591.722800pt;}
.y1d{bottom:592.835733pt;}
.ye0{bottom:595.502400pt;}
.y8b{bottom:595.905600pt;}
.y3a{bottom:598.179467pt;}
.y130{bottom:599.281867pt;}
.y101{bottom:599.943333pt;}
.y157{bottom:603.061467pt;}
.y65{bottom:603.905600pt;}
.yb8{bottom:607.502400pt;}
.ydf{bottom:611.281867pt;}
.y1c{bottom:611.502400pt;}
.y39{bottom:611.512800pt;}
.y8a{bottom:611.905600pt;}
.y12f{bottom:615.061467pt;}
.y100{bottom:615.722800pt;}
.y150{bottom:619.502400pt;}
.y64{bottom:619.905600pt;}
.yb7{bottom:623.281867pt;}
.y38{bottom:624.846133pt;}
.y12e{bottom:627.061467pt;}
.y89{bottom:627.905600pt;}
.y1b{bottom:630.169067pt;}
.y17b{bottom:630.840933pt;}
.yff{bottom:631.502400pt;}
.y14f{bottom:635.281867pt;}
.y63{bottom:635.905600pt;}
.y37{bottom:638.179467pt;}
.yb6{bottom:639.061467pt;}
.y12d{bottom:642.840933pt;}
.y88{bottom:643.905600pt;}
.yfe{bottom:647.281867pt;}
.yb5{bottom:651.061467pt;}
.y36{bottom:651.512933pt;}
.y62{bottom:651.905600pt;}
.y12c{bottom:654.840933pt;}
.y87{bottom:659.905600pt;}
.yde{bottom:663.061467pt;}
.y1a{bottom:663.953867pt;}
.y35{bottom:664.846267pt;}
.yb4{bottom:666.840933pt;}
.y61{bottom:667.905600pt;}
.y12b{bottom:670.620533pt;}
.yfd{bottom:675.061467pt;}
.y86{bottom:675.905600pt;}
.y34{bottom:678.179600pt;}
.yb3{bottom:678.840933pt;}
.y19{bottom:682.620533pt;}
.y60{bottom:683.905600pt;}
.y12a{bottom:686.400000pt;}
.ydd{bottom:690.840933pt;}
.y33{bottom:691.512800pt;}
.y19e{bottom:691.820933pt;}
.y85{bottom:691.905600pt;}
.yb2{bottom:694.620533pt;}
.y129{bottom:698.400000pt;}
.y5f{bottom:699.905600pt;}
.y18{bottom:701.287200pt;}
.y19d{bottom:702.487600pt;}
.y14e{bottom:702.840933pt;}
.y32{bottom:704.846133pt;}
.yb1{bottom:706.620533pt;}
.y84{bottom:707.905600pt;}
.y128{bottom:710.400000pt;}
.y5e{bottom:715.905600pt;}
.y19c{bottom:716.933867pt;}
.y31{bottom:718.179467pt;}
.yfc{bottom:718.620533pt;}
.yb0{bottom:722.400000pt;}
.y83{bottom:723.905600pt;}
.y127{bottom:726.179467pt;}
.y19b{bottom:727.600533pt;}
.y14d{bottom:730.620533pt;}
.y30{bottom:731.512800pt;}
.y5d{bottom:731.905600pt;}
.yaf{bottom:734.400000pt;}
.y17{bottom:735.072000pt;}
.y126{bottom:738.179467pt;}
.y19a{bottom:738.267200pt;}
.y82{bottom:739.905600pt;}
.yfb{bottom:746.400000pt;}
.y5c{bottom:747.905600pt;}
.yae{bottom:750.179467pt;}
.y2f{bottom:752.405333pt;}
.y199{bottom:752.713333pt;}
.y16{bottom:753.738667pt;}
.y125{bottom:753.959067pt;}
.y81{bottom:755.905600pt;}
.y14c{bottom:758.400000pt;}
.yad{bottom:762.179467pt;}
.y5b{bottom:763.905600pt;}
.y2e{bottom:765.738667pt;}
.y124{bottom:765.959067pt;}
.y198{bottom:767.159467pt;}
.y15{bottom:772.405333pt;}
.ydc{bottom:774.179467pt;}
.y197{bottom:777.826133pt;}
.yac{bottom:777.959067pt;}
.y2d{bottom:779.072000pt;}
.y5a{bottom:779.905467pt;}
.y123{bottom:781.738667pt;}
.yab{bottom:789.959067pt;}
.y196{bottom:792.272400pt;}
.y2c{bottom:792.405333pt;}
.yfa{bottom:793.738667pt;}
.y59{bottom:795.905467pt;}
.y2b{bottom:805.738667pt;}
.y195{bottom:806.718533pt;}
.y28{bottom:866.041333pt;}
.y2a{bottom:867.645867pt;}
.h9{height:26.208000pt;}
.ha{height:30.176000pt;}
.hb{height:32.690667pt;}
.h3{height:35.205333pt;}
.h2{height:35.317333pt;}
.he{height:41.690667pt;}
.h8{height:41.856000pt;}
.h7{height:42.069333pt;}
.h6{height:44.544000pt;}
.hd{height:45.264000pt;}
.hf{height:46.464000pt;}
.hc{height:52.320000pt;}
.h5{height:70.410667pt;}
.h4{height:70.933333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:36.083867pt;}
.xa{left:56.692933pt;}
.x9{left:75.590533pt;}
.xe{left:83.149600pt;}
.x8{left:90.708667pt;}
.xb{left:92.976400pt;}
.xc{left:94.488133pt;}
.xd{left:113.385867pt;}
.xf{left:120.944933pt;}
.x1{left:128.503867pt;}
.x10{left:151.181067pt;}
.x4{left:189.155200pt;}
.x2{left:241.889733pt;}
.x5{left:318.851867pt;}
.x7{left:346.561333pt;}
.x3{left:585.931733pt;}
}




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