
    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_66919f5dc61ba2ed80e599db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_e45cafe8b82460072ec5f1fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_ec4531f6964a9c1905f21be8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_4bd354cff46d6aaba202449a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_97a06240a46ba840c7cd3115.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.483000;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_acec5daf25724edd200edc9a.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_8ad27ac1a25a77226045aec8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.222000;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_f703fde1ef74a38f01818097.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.444000;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_9fecaeed4a93ed5457cb02f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.258000;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);}
.m1{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);}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-16.800018px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v8{vertical-align:18.000000px;}
.v7{vertical-align:19.218073px;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:26.399760px;}
.v6{vertical-align:54.000000px;}
.lsb{letter-spacing:-5.115600px;}
.ls3{letter-spacing:-4.669344px;}
.ls9{letter-spacing:-1.920000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000033px;}
.lsc{letter-spacing:0.000070px;}
.lsd{letter-spacing:0.000076px;}
.ls0{letter-spacing:5.460000px;}
.ls1{letter-spacing:38.305860px;}
.ls5{letter-spacing:57.526179px;}
.ls4{letter-spacing:360.211191px;}
.ls8{letter-spacing:363.475184px;}
.ls7{letter-spacing:369.426569px;}
.ls6{letter-spacing:386.897990px;}
.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;}
}
.ws2{word-spacing:-30.528000px;}
.ws7{word-spacing:-25.292280px;}
.ws1{word-spacing:-21.216000px;}
.ws6{word-spacing:-13.818000px;}
.ws4{word-spacing:-12.483600px;}
.ws25{word-spacing:-11.426400px;}
.ws74{word-spacing:-10.512000px;}
.ws70{word-spacing:-10.380600px;}
.ws0{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws72{word-spacing:-9.936000px;}
.wse1{word-spacing:-9.855000px;}
.ws24{word-spacing:-9.672600px;}
.wse0{word-spacing:-9.315000px;}
.ws5{word-spacing:-9.198000px;}
.ws8{word-spacing:-6.898500px;}
.ws71{word-spacing:-6.232800px;}
.wsa{word-spacing:-2.772000px;}
.wsdf{word-spacing:-1.890000px;}
.ws7b{word-spacing:-1.680000px;}
.ws14{word-spacing:-0.705600px;}
.wsc6{word-spacing:-0.588000px;}
.wsc7{word-spacing:-0.529200px;}
.wsb5{word-spacing:-0.470400px;}
.ws55{word-spacing:-0.411600px;}
.ws58{word-spacing:-0.294000px;}
.wsad{word-spacing:-0.235200px;}
.ws7e{word-spacing:-0.176400px;}
.wsaa{word-spacing:-0.058800px;}
.ws9{word-spacing:0.000000px;}
.ws4d{word-spacing:0.176400px;}
.ws54{word-spacing:0.235200px;}
.ws15{word-spacing:0.588000px;}
.ws86{word-spacing:0.646800px;}
.ws56{word-spacing:0.705600px;}
.wsd{word-spacing:0.764400px;}
.ws11{word-spacing:0.823200px;}
.ws20{word-spacing:0.882000px;}
.ws1d{word-spacing:0.940800px;}
.ws81{word-spacing:0.999600px;}
.wsa9{word-spacing:1.058400px;}
.ws5a{word-spacing:1.117200px;}
.ws93{word-spacing:1.234800px;}
.ws48{word-spacing:1.352400px;}
.wsdb{word-spacing:1.470000px;}
.wsc1{word-spacing:1.528800px;}
.ws80{word-spacing:1.587600px;}
.wsb2{word-spacing:1.646400px;}
.wsb7{word-spacing:1.705200px;}
.ws89{word-spacing:1.764000px;}
.ws4a{word-spacing:1.822800px;}
.wsab{word-spacing:1.881600px;}
.ws32{word-spacing:1.940400px;}
.wsc3{word-spacing:1.999200px;}
.ws28{word-spacing:2.058000px;}
.ws2f{word-spacing:2.234400px;}
.wsc5{word-spacing:2.352000px;}
.ws17{word-spacing:2.410800px;}
.ws1f{word-spacing:2.469600px;}
.ws4e{word-spacing:2.528400px;}
.wsc4{word-spacing:2.587200px;}
.wsd3{word-spacing:2.646000px;}
.ws6d{word-spacing:2.704800px;}
.ws97{word-spacing:2.763600px;}
.ws9c{word-spacing:2.881200px;}
.ws8c{word-spacing:2.940000px;}
.ws69{word-spacing:2.998800px;}
.ws3a{word-spacing:3.057600px;}
.ws64{word-spacing:3.116400px;}
.wscf{word-spacing:3.234000px;}
.ws10{word-spacing:3.292800px;}
.ws39{word-spacing:3.351600px;}
.ws85{word-spacing:3.528000px;}
.ws52{word-spacing:3.763200px;}
.wsa5{word-spacing:3.822000px;}
.ws18{word-spacing:3.880800px;}
.wsca{word-spacing:3.939600px;}
.wsc8{word-spacing:3.998400px;}
.ws9a{word-spacing:4.057200px;}
.ws23{word-spacing:4.116000px;}
.wsd9{word-spacing:4.174800px;}
.wsdc{word-spacing:4.233600px;}
.ws7f{word-spacing:4.410000px;}
.wsc9{word-spacing:4.468800px;}
.ws7d{word-spacing:4.527600px;}
.wsd5{word-spacing:4.586400px;}
.ws57{word-spacing:4.645200px;}
.wsac{word-spacing:4.762800px;}
.wsd4{word-spacing:4.821600px;}
.wsde{word-spacing:4.880400px;}
.wsda{word-spacing:4.939200px;}
.ws90{word-spacing:4.998000px;}
.ws12{word-spacing:5.056794px;}
.wscc{word-spacing:5.056800px;}
.ws87{word-spacing:5.115600px;}
.ws84{word-spacing:5.174400px;}
.ws67{word-spacing:5.292000px;}
.wsa8{word-spacing:5.350800px;}
.ws66{word-spacing:5.409600px;}
.wsc2{word-spacing:5.468400px;}
.ws47{word-spacing:5.644800px;}
.ws34{word-spacing:5.762400px;}
.wsa6{word-spacing:5.880000px;}
.ws3d{word-spacing:5.938800px;}
.wsa4{word-spacing:6.056400px;}
.wsbb{word-spacing:6.115200px;}
.ws36{word-spacing:6.232800px;}
.ws29{word-spacing:6.291600px;}
.ws9e{word-spacing:6.350400px;}
.ws31{word-spacing:6.409200px;}
.wsb9{word-spacing:6.468000px;}
.wsb4{word-spacing:6.526800px;}
.wsb0{word-spacing:6.585600px;}
.ws1a{word-spacing:6.644400px;}
.ws99{word-spacing:6.879600px;}
.ws7c{word-spacing:6.938400px;}
.ws50{word-spacing:7.056000px;}
.ws51{word-spacing:7.114800px;}
.wsae{word-spacing:7.173600px;}
.wsc{word-spacing:7.232400px;}
.ws13{word-spacing:7.291200px;}
.ws63{word-spacing:7.350000px;}
.ws19{word-spacing:7.408800px;}
.ws61{word-spacing:7.526400px;}
.wsd0{word-spacing:7.585200px;}
.ws82{word-spacing:7.644000px;}
.ws42{word-spacing:7.702800px;}
.wsaf{word-spacing:7.820400px;}
.wse{word-spacing:7.879200px;}
.ws3c{word-spacing:7.938000px;}
.ws2d{word-spacing:7.996800px;}
.ws8b{word-spacing:8.055600px;}
.ws35{word-spacing:8.114400px;}
.ws60{word-spacing:8.173200px;}
.ws98{word-spacing:8.232000px;}
.ws6e{word-spacing:8.290800px;}
.wsba{word-spacing:8.349600px;}
.ws88{word-spacing:8.467200px;}
.ws2e{word-spacing:8.584800px;}
.ws4c{word-spacing:8.643600px;}
.wsdd{word-spacing:8.761200px;}
.ws94{word-spacing:8.820000px;}
.ws95{word-spacing:8.878800px;}
.ws4b{word-spacing:8.996400px;}
.ws2b{word-spacing:9.055200px;}
.ws92{word-spacing:9.172800px;}
.wsb3{word-spacing:9.349200px;}
.wsb6{word-spacing:9.408000px;}
.ws1c{word-spacing:9.466800px;}
.ws9b{word-spacing:9.525600px;}
.wsd2{word-spacing:9.584400px;}
.ws91{word-spacing:9.702000px;}
.ws37{word-spacing:9.760800px;}
.ws3b{word-spacing:9.819600px;}
.ws38{word-spacing:9.996000px;}
.wsb1{word-spacing:10.407600px;}
.ws6f{word-spacing:10.466400px;}
.ws9d{word-spacing:10.584000px;}
.ws65{word-spacing:10.760400px;}
.wsb{word-spacing:10.819200px;}
.ws46{word-spacing:10.936800px;}
.wsc0{word-spacing:10.995600px;}
.ws1e{word-spacing:11.113200px;}
.ws5b{word-spacing:11.172000px;}
.ws41{word-spacing:11.466000px;}
.ws43{word-spacing:11.524800px;}
.ws6a{word-spacing:11.583600px;}
.ws9f{word-spacing:11.760000px;}
.ws27{word-spacing:11.818800px;}
.ws8f{word-spacing:11.995200px;}
.wsf{word-spacing:12.112800px;}
.wsd1{word-spacing:12.171600px;}
.wsa3{word-spacing:12.289200px;}
.wsbf{word-spacing:12.348000px;}
.ws59{word-spacing:12.406800px;}
.ws6c{word-spacing:12.465600px;}
.ws33{word-spacing:12.524400px;}
.ws53{word-spacing:12.583200px;}
.ws6b{word-spacing:12.759600px;}
.ws8a{word-spacing:12.936000px;}
.ws26{word-spacing:13.053600px;}
.ws5c{word-spacing:13.112400px;}
.ws62{word-spacing:13.230000px;}
.ws96{word-spacing:13.347600px;}
.ws40{word-spacing:13.465200px;}
.ws4f{word-spacing:13.582800px;}
.wsbd{word-spacing:13.700400px;}
.wscb{word-spacing:13.876800px;}
.ws5d{word-spacing:13.935600px;}
.ws45{word-spacing:14.170800px;}
.ws22{word-spacing:14.229600px;}
.wsce{word-spacing:14.700000px;}
.wsa2{word-spacing:14.994000px;}
.wsbc{word-spacing:15.111600px;}
.ws3e{word-spacing:15.170400px;}
.wsbe{word-spacing:15.288000px;}
.ws16{word-spacing:15.464400px;}
.ws2a{word-spacing:15.699600px;}
.ws44{word-spacing:15.817200px;}
.ws83{word-spacing:15.876000px;}
.ws8e{word-spacing:16.052400px;}
.ws21{word-spacing:16.111200px;}
.ws8d{word-spacing:16.464000px;}
.ws68{word-spacing:16.581600px;}
.ws5e{word-spacing:16.640400px;}
.wsb8{word-spacing:16.699200px;}
.wsa0{word-spacing:16.816800px;}
.wsa7{word-spacing:17.169600px;}
.ws49{word-spacing:17.875200px;}
.ws1b{word-spacing:18.051600px;}
.ws3f{word-spacing:18.992400px;}
.wsd8{word-spacing:19.286400px;}
.ws2c{word-spacing:21.579600px;}
.ws30{word-spacing:21.932400px;}
.ws5f{word-spacing:24.284400px;}
.wscd{word-spacing:24.519600px;}
.wsd6{word-spacing:30.399600px;}
.wsa1{word-spacing:32.104800px;}
.wsd7{word-spacing:37.338000px;}
.ws78{word-spacing:50.495994px;}
.ws7a{word-spacing:90.143994px;}
.ws75{word-spacing:113.567994px;}
.ws73{word-spacing:136.991994px;}
.ws76{word-spacing:168.767994px;}
.ws77{word-spacing:192.191994px;}
.ws79{word-spacing:401.188800px;}
._41{margin-left:-14.229600px;}
._6{margin-left:-12.936060px;}
._a{margin-left:-10.934280px;}
._40{margin-left:-8.349600px;}
._1{margin-left:-6.567000px;}
._9{margin-left:-5.237760px;}
._7{margin-left:-4.136280px;}
._4{margin-left:-2.433600px;}
._0{margin-left:-1.396800px;}
._8{width:1.001880px;}
._2{width:2.016000px;}
._3{width:3.556800px;}
._5{width:4.579200px;}
._3d{width:6.006000px;}
._3c{width:7.232400px;}
._3e{width:9.466800px;}
._b{width:12.847800px;}
._3f{width:15.504120px;}
._c{width:16.664280px;}
._43{width:22.676280px;}
._42{width:44.636280px;}
._f{width:47.952000px;}
._e{width:56.927994px;}
._1f{width:124.079994px;}
._36{width:147.503994px;}
._31{width:187.686111px;}
._35{width:215.772240px;}
._21{width:217.638120px;}
._3b{width:226.892511px;}
._1e{width:238.464000px;}
._26{width:244.616863px;}
._18{width:249.885248px;}
._19{width:264.710388px;}
._11{width:273.551991px;}
._2c{width:276.144000px;}
._2f{width:287.140800px;}
._33{width:292.176000px;}
._34{width:300.096000px;}
._1d{width:305.087991px;}
._3a{width:311.328000px;}
._30{width:320.688000px;}
._13{width:327.696000px;}
._2d{width:328.751991px;}
._2a{width:331.010743px;}
._17{width:351.120000px;}
._1a{width:352.230120px;}
._2e{width:356.784000px;}
._20{width:358.080000px;}
._16{width:362.544000px;}
._d{width:366.106920px;}
._27{width:368.070120px;}
._37{width:371.914920px;}
._39{width:373.200000px;}
._1b{width:379.920000px;}
._12{width:385.968000px;}
._10{width:389.616000px;}
._24{width:394.401600px;}
._22{width:395.520000px;}
._1c{width:398.208000px;}
._15{width:401.424000px;}
._25{width:407.601600px;}
._28{width:410.318400px;}
._38{width:415.680000px;}
._2b{width:422.064000px;}
._32{width:427.776000px;}
._23{width:438.912000px;}
._29{width:454.662120px;}
._14{width:462.336000px;}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:29.400000px;}
.fse{font-size:30.660000px;}
.fsb{font-size:31.500000px;}
.fs12{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fsf{font-size:43.800000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:97.278000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:34.434915px;}
.y1d{bottom:75.191250px;}
.y1c{bottom:87.192750px;}
.y1b{bottom:99.194250px;}
.y17d{bottom:102.487953px;}
.ya1{bottom:104.062500px;}
.y157{bottom:106.259553px;}
.ya0{bottom:106.642495px;}
.y1a{bottom:111.195750px;}
.y17c{bottom:115.987953px;}
.y19{bottom:123.197250px;}
.y156{bottom:124.252353px;}
.y9f{bottom:124.635295px;}
.y106{bottom:125.759553px;}
.y17b{bottom:129.487953px;}
.y155{bottom:142.245153px;}
.y9e{bottom:142.628095px;}
.y17a{bottom:142.987953px;}
.y105{bottom:143.752353px;}
.y179{bottom:156.487953px;}
.y41{bottom:158.893650px;}
.y39{bottom:158.955450px;}
.y154{bottom:160.237953px;}
.y9d{bottom:160.620895px;}
.y74{bottom:160.700095px;}
.y132{bottom:161.737953px;}
.y104{bottom:161.745153px;}
.y178{bottom:169.987953px;}
.y40{bottom:172.393650px;}
.y38{bottom:176.948250px;}
.y153{bottom:178.288353px;}
.y9c{bottom:178.664095px;}
.y73{bottom:178.692895px;}
.y103{bottom:179.737953px;}
.y131{bottom:179.759553px;}
.y177{bottom:183.487953px;}
.ya7{bottom:187.783047px;}
.y3f{bottom:190.393650px;}
.y37{bottom:195.020250px;}
.y152{bottom:196.281153px;}
.y9b{bottom:196.656895px;}
.y72{bottom:196.685695px;}
.y102{bottom:197.737953px;}
.y130{bottom:197.752353px;}
.y3e{bottom:199.393635px;}
.y176{bottom:201.487953px;}
.ya6{bottom:204.784950px;}
.y175{bottom:210.487953px;}
.y36{bottom:213.013050px;}
.y151{bottom:214.273953px;}
.y9a{bottom:214.649695px;}
.y71{bottom:214.678495px;}
.y12f{bottom:215.745153px;}
.y101{bottom:215.766753px;}
.ya5{bottom:221.787003px;}
.y174{bottom:223.987953px;}
.y35{bottom:231.005850px;}
.y150{bottom:232.266753px;}
.y99{bottom:232.642495px;}
.y70{bottom:232.671295px;}
.y12e{bottom:233.737953px;}
.y100{bottom:233.759553px;}
.y1ad{bottom:238.842728px;}
.yd3{bottom:239.028009px;}
.y173{bottom:241.987953px;}
.y34{bottom:248.998650px;}
.y14f{bottom:250.259553px;}
.y98{bottom:250.635295px;}
.y6f{bottom:250.664095px;}
.y172{bottom:250.987953px;}
.yff{bottom:251.752353px;}
.y1ac{bottom:252.342728px;}
.yd2{bottom:257.256009px;}
.y1ab{bottom:265.842728px;}
.y28{bottom:266.172315px;}
.y33{bottom:266.991450px;}
.y97{bottom:268.628095px;}
.y6e{bottom:268.656895px;}
.yfe{bottom:269.745153px;}
.yd1{bottom:275.424000px;}
.y1e7{bottom:276.338997px;}
.y171{bottom:277.987953px;}
.y1aa{bottom:279.342728px;}
.y27{bottom:284.165115px;}
.y32{bottom:284.984250px;}
.y96{bottom:286.620895px;}
.y6d{bottom:286.649695px;}
.y14e{bottom:287.009553px;}
.yfd{bottom:287.737953px;}
.y1e6{bottom:289.838997px;}
.y170{bottom:291.487953px;}
.y1a9{bottom:292.842728px;}
.yd0{bottom:293.568000px;}
.y26{bottom:302.215485px;}
.y31{bottom:302.977050px;}
.y1e5{bottom:303.338997px;}
.y95{bottom:304.628095px;}
.y6c{bottom:304.642495px;}
.y16f{bottom:304.987953px;}
.y14d{bottom:305.002353px;}
.yfc{bottom:305.737953px;}
.y12d{bottom:305.766753px;}
.y1a8{bottom:306.342728px;}
.ycf{bottom:311.712000px;}
.y1e4{bottom:316.838997px;}
.y16e{bottom:318.487953px;}
.y1a7{bottom:319.842728px;}
.y25{bottom:320.208285px;}
.y30{bottom:320.969850px;}
.y94{bottom:322.620895px;}
.y6b{bottom:322.635295px;}
.y14c{bottom:322.995153px;}
.yfb{bottom:323.752353px;}
.y12c{bottom:323.759553px;}
.yce{bottom:329.856000px;}
.y1e3{bottom:330.338997px;}
.y16d{bottom:331.987953px;}
.y1a6{bottom:333.342728px;}
.y24{bottom:338.201085px;}
.y2f{bottom:338.962650px;}
.y6a{bottom:340.628095px;}
.y93{bottom:340.671295px;}
.y14b{bottom:340.987953px;}
.yfa{bottom:341.745153px;}
.y12b{bottom:341.752353px;}
.y1e2{bottom:343.838997px;}
.y1a5{bottom:346.842728px;}
.ycd{bottom:348.000000px;}
.y23{bottom:356.193885px;}
.y2e{bottom:356.955450px;}
.y1e1{bottom:357.338997px;}
.y69{bottom:358.620895px;}
.y92{bottom:358.664095px;}
.y14a{bottom:358.987953px;}
.yf9{bottom:359.737953px;}
.y12a{bottom:359.745153px;}
.y1a4{bottom:360.342728px;}
.ycc{bottom:366.174000px;}
.y1e0{bottom:370.838997px;}
.y1a3{bottom:373.842728px;}
.y22{bottom:374.186685px;}
.y2d{bottom:374.948250px;}
.y68{bottom:376.620895px;}
.y91{bottom:376.656895px;}
.y129{bottom:377.737953px;}
.yf8{bottom:377.752330px;}
.ycb{bottom:384.318000px;}
.y1df{bottom:384.338997px;}
.y1a2{bottom:387.342728px;}
.y21{bottom:392.179485px;}
.y2c{bottom:392.974515px;}
.y90{bottom:394.649695px;}
.y67{bottom:394.656895px;}
.y128{bottom:395.737930px;}
.yf7{bottom:395.745130px;}
.y1de{bottom:397.838997px;}
.y1a1{bottom:400.842728px;}
.yca{bottom:402.462000px;}
.y20{bottom:410.172285px;}
.y2b{bottom:410.967315px;}
.y1dd{bottom:411.338997px;}
.y8f{bottom:412.642495px;}
.y66{bottom:412.649695px;}
.yf6{bottom:413.737930px;}
.y16c{bottom:413.745130px;}
.y149{bottom:413.781130px;}
.y1a0{bottom:414.342728px;}
.yc9{bottom:420.606000px;}
.y1dc{bottom:424.838997px;}
.y19f{bottom:427.842728px;}
.y1f{bottom:428.165085px;}
.y2a{bottom:428.960115px;}
.y8e{bottom:430.635295px;}
.y65{bottom:430.642495px;}
.y16b{bottom:431.737930px;}
.yf5{bottom:431.752330px;}
.y127{bottom:431.773930px;}
.y1db{bottom:438.338997px;}
.yc8{bottom:438.822018px;}
.y19e{bottom:441.342728px;}
.y1e{bottom:446.165085px;}
.y29{bottom:446.952915px;}
.y8d{bottom:448.628095px;}
.y64{bottom:448.635295px;}
.yf4{bottom:449.745130px;}
.y16a{bottom:449.752330px;}
.y126{bottom:449.766730px;}
.y1da{bottom:451.838997px;}
.y19d{bottom:454.842728px;}
.yc7{bottom:456.966018px;}
.y1d9{bottom:465.338997px;}
.y8c{bottom:466.620895px;}
.y63{bottom:466.628095px;}
.yf3{bottom:467.737930px;}
.y169{bottom:467.745130px;}
.y125{bottom:467.759530px;}
.y19c{bottom:468.342728px;}
.yc6{bottom:475.110018px;}
.y1d8{bottom:478.838997px;}
.y19b{bottom:481.842728px;}
.y62{bottom:484.620895px;}
.yf2{bottom:485.737930px;}
.y124{bottom:485.752330px;}
.y1d7{bottom:492.338997px;}
.yc5{bottom:493.254018px;}
.y19a{bottom:495.342728px;}
.y18{bottom:498.815100px;}
.y8b{bottom:502.621645px;}
.y61{bottom:502.628095px;}
.y123{bottom:503.745130px;}
.y168{bottom:503.766730px;}
.yf1{bottom:503.809930px;}
.y1d6{bottom:505.838997px;}
.y199{bottom:508.842728px;}
.yc4{bottom:511.398018px;}
.y17{bottom:516.815100px;}
.y1d5{bottom:519.338997px;}
.y60{bottom:520.620895px;}
.y122{bottom:521.737930px;}
.y167{bottom:521.759530px;}
.yf0{bottom:521.802730px;}
.y198{bottom:522.342728px;}
.yc3{bottom:529.542018px;}
.y1d4{bottom:532.838997px;}
.y16{bottom:534.815100px;}
.y197{bottom:535.842728px;}
.y5f{bottom:538.625696px;}
.y121{bottom:539.745130px;}
.y148{bottom:539.752330px;}
.yef{bottom:539.795530px;}
.y1d3{bottom:546.338997px;}
.yc2{bottom:547.686018px;}
.y196{bottom:549.342728px;}
.y15{bottom:552.815100px;}
.y5e{bottom:556.620895px;}
.y8a{bottom:556.656895px;}
.y120{bottom:557.737930px;}
.y147{bottom:557.745130px;}
.yee{bottom:557.788330px;}
.y1d2{bottom:559.838997px;}
.y195{bottom:562.842728px;}
.yc1{bottom:565.830018px;}
.y14{bottom:570.815100px;}
.y1d1{bottom:573.338997px;}
.y89{bottom:574.649695px;}
.y146{bottom:575.737930px;}
.y11f{bottom:575.766730px;}
.yed{bottom:575.781130px;}
.y194{bottom:576.342728px;}
.yc0{bottom:583.974018px;}
.y1d0{bottom:586.838997px;}
.y13{bottom:588.815100px;}
.y5d{bottom:592.628095px;}
.y88{bottom:592.642495px;}
.y145{bottom:593.745130px;}
.y166{bottom:593.752330px;}
.y11e{bottom:593.759530px;}
.yec{bottom:593.773930px;}
.y1cf{bottom:600.338997px;}
.ybf{bottom:602.118018px;}
.y12{bottom:606.815100px;}
.y5c{bottom:610.620895px;}
.y87{bottom:610.635295px;}
.y144{bottom:611.737930px;}
.y165{bottom:611.745130px;}
.y11d{bottom:611.752330px;}
.yeb{bottom:611.766730px;}
.y1ce{bottom:613.838997px;}
.ybe{bottom:620.262018px;}
.y11{bottom:624.815100px;}
.y1cd{bottom:627.338997px;}
.y5b{bottom:628.620895px;}
.y86{bottom:628.628095px;}
.y164{bottom:629.737930px;}
.y11c{bottom:629.745130px;}
.y143{bottom:629.752330px;}
.yea{bottom:629.759530px;}
.ybd{bottom:638.406018px;}
.y1cc{bottom:640.838997px;}
.y10{bottom:642.815100px;}
.y193{bottom:645.342728px;}
.y85{bottom:646.620895px;}
.y5a{bottom:646.635295px;}
.y11b{bottom:647.737930px;}
.y142{bottom:647.745130px;}
.ye9{bottom:647.752330px;}
.y163{bottom:647.759530px;}
.y1cb{bottom:654.338997px;}
.ybc{bottom:656.609963px;}
.yf{bottom:660.815100px;}
.y84{bottom:664.620895px;}
.y59{bottom:664.628095px;}
.y141{bottom:665.737930px;}
.ye8{bottom:665.745130px;}
.y162{bottom:665.752330px;}
.y11a{bottom:665.809976px;}
.y1ca{bottom:667.838997px;}
.y192{bottom:672.342728px;}
.ybb{bottom:674.753963px;}
.ye{bottom:678.815100px;}
.y1c9{bottom:681.338997px;}
.y58{bottom:682.620895px;}
.ye7{bottom:683.737930px;}
.y161{bottom:683.745130px;}
.y140{bottom:683.752330px;}
.y119{bottom:683.802776px;}
.y191{bottom:685.842728px;}
.yba{bottom:692.897963px;}
.y1c8{bottom:694.838997px;}
.yd{bottom:696.815100px;}
.y190{bottom:699.342728px;}
.y83{bottom:700.642495px;}
.y57{bottom:700.678541px;}
.ye6{bottom:701.737930px;}
.y13f{bottom:701.745130px;}
.y118{bottom:701.795576px;}
.y1c7{bottom:708.338997px;}
.yb9{bottom:711.041963px;}
.y82{bottom:718.635295px;}
.y56{bottom:718.671341px;}
.yc{bottom:719.315100px;}
.y13e{bottom:719.737930px;}
.ye5{bottom:719.745130px;}
.y160{bottom:719.759576px;}
.y117{bottom:719.788376px;}
.y1c6{bottom:721.838997px;}
.yb8{bottom:729.185963px;}
.y1c5{bottom:735.338997px;}
.y18f{bottom:735.342773px;}
.y81{bottom:736.628095px;}
.y55{bottom:736.664141px;}
.ye4{bottom:737.737930px;}
.y15f{bottom:737.752376px;}
.y13d{bottom:737.766776px;}
.y116{bottom:737.781176px;}
.yb7{bottom:747.329963px;}
.y1c4{bottom:748.838997px;}
.y18e{bottom:748.842773px;}
.y80{bottom:754.620895px;}
.y54{bottom:754.656941px;}
.y15e{bottom:755.745176px;}
.y13c{bottom:755.759576px;}
.ye3{bottom:755.766776px;}
.y115{bottom:755.773976px;}
.y1c3{bottom:762.338997px;}
.yb6{bottom:765.473963px;}
.y7f{bottom:772.628141px;}
.y53{bottom:772.649741px;}
.y15d{bottom:773.737976px;}
.y13b{bottom:773.752376px;}
.ye2{bottom:773.759576px;}
.y114{bottom:773.766776px;}
.y1c2{bottom:775.838997px;}
.y18d{bottom:775.842773px;}
.yb{bottom:783.548115px;}
.yb5{bottom:783.629963px;}
.y1c1{bottom:789.338997px;}
.y18c{bottom:789.342773px;}
.y7e{bottom:790.620941px;}
.y52{bottom:790.642541px;}
.y13a{bottom:791.745176px;}
.ye1{bottom:791.752376px;}
.y113{bottom:791.759576px;}
.y15c{bottom:791.781176px;}
.yb4{bottom:801.773963px;}
.y1c0{bottom:802.838997px;}
.ya{bottom:804.548115px;}
.y7d{bottom:808.620941px;}
.y51{bottom:808.635341px;}
.y139{bottom:809.737976px;}
.ye0{bottom:809.745176px;}
.y112{bottom:809.752376px;}
.y15b{bottom:809.773976px;}
.y1bf{bottom:816.338997px;}
.y18b{bottom:816.342773px;}
.yb3{bottom:819.917963px;}
.y9{bottom:825.552615px;}
.y7c{bottom:826.620941px;}
.y50{bottom:826.628141px;}
.ydf{bottom:827.737976px;}
.y111{bottom:827.745176px;}
.y15a{bottom:827.766776px;}
.y1be{bottom:829.838997px;}
.y18a{bottom:829.842773px;}
.yb2{bottom:838.061963px;}
.y1bd{bottom:843.338997px;}
.y4f{bottom:844.620941px;}
.yde{bottom:845.737976px;}
.y138{bottom:845.759576px;}
.yb1{bottom:856.205963px;}
.y1bc{bottom:856.838997px;}
.y189{bottom:856.842773px;}
.y8{bottom:861.589530px;}
.y4e{bottom:862.628141px;}
.y110{bottom:863.745176px;}
.y137{bottom:863.752376px;}
.y1bb{bottom:870.338997px;}
.y188{bottom:870.342773px;}
.yb0{bottom:874.361963px;}
.y4d{bottom:880.620941px;}
.y10f{bottom:881.737976px;}
.y136{bottom:881.745176px;}
.ydd{bottom:881.773976px;}
.y1ba{bottom:883.838997px;}
.yaf{bottom:892.505963px;}
.y1b9{bottom:897.338997px;}
.y187{bottom:897.342773px;}
.y4c{bottom:898.628141px;}
.y135{bottom:899.737976px;}
.y10e{bottom:899.745176px;}
.ydc{bottom:899.766776px;}
.y7{bottom:900.577530px;}
.yae{bottom:910.649963px;}
.y1b8{bottom:910.838997px;}
.y186{bottom:910.842773px;}
.y4b{bottom:916.620941px;}
.y134{bottom:917.737976px;}
.y10d{bottom:917.745176px;}
.ydb{bottom:917.759576px;}
.y1b7{bottom:924.338997px;}
.yad{bottom:928.795518px;}
.y7b{bottom:934.642541px;}
.y4a{bottom:934.664141px;}
.y10c{bottom:935.737976px;}
.yda{bottom:935.752376px;}
.y159{bottom:935.781176px;}
.y1b6{bottom:937.838997px;}
.y185{bottom:937.842773px;}
.y6{bottom:939.565530px;}
.yac{bottom:946.939518px;}
.y1b5{bottom:951.338997px;}
.y184{bottom:951.342773px;}
.y7a{bottom:952.635341px;}
.y49{bottom:952.656941px;}
.y10b{bottom:953.737976px;}
.yd9{bottom:953.745176px;}
.y158{bottom:953.773976px;}
.y1b4{bottom:964.838997px;}
.yab{bottom:965.095518px;}
.y79{bottom:970.628141px;}
.y48{bottom:970.649741px;}
.yd8{bottom:971.737976px;}
.y133{bottom:971.766776px;}
.y1b3{bottom:978.338997px;}
.y183{bottom:978.342773px;}
.y5{bottom:978.553530px;}
.y78{bottom:988.620941px;}
.y47{bottom:988.642541px;}
.y10a{bottom:989.745176px;}
.yd7{bottom:989.759576px;}
.y1b2{bottom:991.838997px;}
.y182{bottom:991.842773px;}
.yaa{bottom:991.987518px;}
.y1b1{bottom:1005.338997px;}
.y181{bottom:1005.342773px;}
.ya9{bottom:1005.487518px;}
.y77{bottom:1006.620941px;}
.y46{bottom:1006.635341px;}
.y109{bottom:1007.737976px;}
.yd6{bottom:1007.752376px;}
.y1b0{bottom:1018.838997px;}
.y180{bottom:1018.842773px;}
.ya8{bottom:1018.987518px;}
.y76{bottom:1024.628095px;}
.y45{bottom:1024.628141px;}
.y108{bottom:1025.737976px;}
.yd5{bottom:1025.745176px;}
.y1af{bottom:1032.338997px;}
.y17f{bottom:1032.342773px;}
.y4{bottom:1033.362585px;}
.y3a{bottom:1035.750180px;}
.y75{bottom:1042.620895px;}
.y44{bottom:1042.620941px;}
.ya4{bottom:1043.300079px;}
.yd4{bottom:1043.737976px;}
.y107{bottom:1043.759872px;}
.y1ae{bottom:1045.838997px;}
.y17e{bottom:1045.842773px;}
.y3b{bottom:1082.558985px;}
.y3d{bottom:1090.648035px;}
.y3{bottom:1097.297085px;}
.y2{bottom:1112.297085px;}
.ya2{bottom:1126.524628px;}
.y42{bottom:1126.524719px;}
.y1{bottom:1126.925085px;}
.ya3{bottom:1127.300079px;}
.y43{bottom:1127.304719px;}
.h11{height:27.814500px;}
.h16{height:27.988800px;}
.h14{height:28.483140px;}
.hc{height:37.086000px;}
.h10{height:39.735000px;}
.h19{height:42.384000px;}
.h23{height:42.840000px;}
.h21{height:43.740000px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h22{height:45.814500px;}
.h17{height:46.656000px;}
.h2{height:47.232000px;}
.h1d{height:48.580800px;}
.h1c{height:48.628910px;}
.h1e{height:48.772818px;}
.h1b{height:48.868873px;}
.h1a{height:48.886873px;}
.ha{height:52.980000px;}
.h15{height:53.406000px;}
.h12{height:53.654399px;}
.h20{height:54.625200px;}
.he{height:55.275000px;}
.hd{height:55.860000px;}
.hb{height:61.086000px;}
.h9{height:61.120200px;}
.h13{height:62.305235px;}
.h1f{height:62.592365px;}
.h7{height:67.194360px;}
.h8{height:67.212360px;}
.hf{height:73.931280px;}
.h5{height:77.142000px;}
.h18{height:100.656000px;}
.h6{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:327.957000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.138170px;}
.x1{left:84.933000px;}
.x2{left:92.734350px;}
.x3{left:94.683150px;}
.xc{left:97.034552px;}
.x12{left:107.539352px;}
.x10{left:115.027352px;}
.x4{left:270.817500px;}
.x5{left:457.092900px;}
.x6{left:469.088100px;}
.x13{left:479.588105px;}
.x8{left:480.693015px;}
.xd{left:482.959349px;}
.x11{left:487.086594px;}
.xe{left:596.251349px;}
.xa{left:616.273035px;}
.x7{left:694.929885px;}
.xf{left:731.491349px;}
.xb{left:753.380081px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-14.933350pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v8{vertical-align:16.000000pt;}
.v7{vertical-align:17.082732pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:23.466453pt;}
.v6{vertical-align:48.000000pt;}
.lsb{letter-spacing:-4.547200pt;}
.ls3{letter-spacing:-4.150528pt;}
.ls9{letter-spacing:-1.706667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000029pt;}
.lsc{letter-spacing:0.000063pt;}
.lsd{letter-spacing:0.000068pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1{letter-spacing:34.049653pt;}
.ls5{letter-spacing:51.134381pt;}
.ls4{letter-spacing:320.187726pt;}
.ls8{letter-spacing:323.089052pt;}
.ls7{letter-spacing:328.379173pt;}
.ls6{letter-spacing:343.909324pt;}
.ws2{word-spacing:-27.136000pt;}
.ws7{word-spacing:-22.482027pt;}
.ws1{word-spacing:-18.858667pt;}
.ws6{word-spacing:-12.282667pt;}
.ws4{word-spacing:-11.096533pt;}
.ws25{word-spacing:-10.156800pt;}
.ws74{word-spacing:-9.344000pt;}
.ws70{word-spacing:-9.227200pt;}
.ws0{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws72{word-spacing:-8.832000pt;}
.wse1{word-spacing:-8.760000pt;}
.ws24{word-spacing:-8.597867pt;}
.wse0{word-spacing:-8.280000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws8{word-spacing:-6.132000pt;}
.ws71{word-spacing:-5.540267pt;}
.wsa{word-spacing:-2.464000pt;}
.wsdf{word-spacing:-1.680000pt;}
.ws7b{word-spacing:-1.493333pt;}
.ws14{word-spacing:-0.627200pt;}
.wsc6{word-spacing:-0.522667pt;}
.wsc7{word-spacing:-0.470400pt;}
.wsb5{word-spacing:-0.418133pt;}
.ws55{word-spacing:-0.365867pt;}
.ws58{word-spacing:-0.261333pt;}
.wsad{word-spacing:-0.209067pt;}
.ws7e{word-spacing:-0.156800pt;}
.wsaa{word-spacing:-0.052267pt;}
.ws9{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.156800pt;}
.ws54{word-spacing:0.209067pt;}
.ws15{word-spacing:0.522667pt;}
.ws86{word-spacing:0.574933pt;}
.ws56{word-spacing:0.627200pt;}
.wsd{word-spacing:0.679467pt;}
.ws11{word-spacing:0.731733pt;}
.ws20{word-spacing:0.784000pt;}
.ws1d{word-spacing:0.836267pt;}
.ws81{word-spacing:0.888533pt;}
.wsa9{word-spacing:0.940800pt;}
.ws5a{word-spacing:0.993067pt;}
.ws93{word-spacing:1.097600pt;}
.ws48{word-spacing:1.202133pt;}
.wsdb{word-spacing:1.306667pt;}
.wsc1{word-spacing:1.358933pt;}
.ws80{word-spacing:1.411200pt;}
.wsb2{word-spacing:1.463467pt;}
.wsb7{word-spacing:1.515733pt;}
.ws89{word-spacing:1.568000pt;}
.ws4a{word-spacing:1.620267pt;}
.wsab{word-spacing:1.672533pt;}
.ws32{word-spacing:1.724800pt;}
.wsc3{word-spacing:1.777067pt;}
.ws28{word-spacing:1.829333pt;}
.ws2f{word-spacing:1.986133pt;}
.wsc5{word-spacing:2.090667pt;}
.ws17{word-spacing:2.142933pt;}
.ws1f{word-spacing:2.195200pt;}
.ws4e{word-spacing:2.247467pt;}
.wsc4{word-spacing:2.299733pt;}
.wsd3{word-spacing:2.352000pt;}
.ws6d{word-spacing:2.404267pt;}
.ws97{word-spacing:2.456533pt;}
.ws9c{word-spacing:2.561067pt;}
.ws8c{word-spacing:2.613333pt;}
.ws69{word-spacing:2.665600pt;}
.ws3a{word-spacing:2.717867pt;}
.ws64{word-spacing:2.770133pt;}
.wscf{word-spacing:2.874667pt;}
.ws10{word-spacing:2.926933pt;}
.ws39{word-spacing:2.979200pt;}
.ws85{word-spacing:3.136000pt;}
.ws52{word-spacing:3.345067pt;}
.wsa5{word-spacing:3.397333pt;}
.ws18{word-spacing:3.449600pt;}
.wsca{word-spacing:3.501867pt;}
.wsc8{word-spacing:3.554133pt;}
.ws9a{word-spacing:3.606400pt;}
.ws23{word-spacing:3.658667pt;}
.wsd9{word-spacing:3.710933pt;}
.wsdc{word-spacing:3.763200pt;}
.ws7f{word-spacing:3.920000pt;}
.wsc9{word-spacing:3.972267pt;}
.ws7d{word-spacing:4.024533pt;}
.wsd5{word-spacing:4.076800pt;}
.ws57{word-spacing:4.129067pt;}
.wsac{word-spacing:4.233600pt;}
.wsd4{word-spacing:4.285867pt;}
.wsde{word-spacing:4.338133pt;}
.wsda{word-spacing:4.390400pt;}
.ws90{word-spacing:4.442667pt;}
.ws12{word-spacing:4.494928pt;}
.wscc{word-spacing:4.494933pt;}
.ws87{word-spacing:4.547200pt;}
.ws84{word-spacing:4.599467pt;}
.ws67{word-spacing:4.704000pt;}
.wsa8{word-spacing:4.756267pt;}
.ws66{word-spacing:4.808533pt;}
.wsc2{word-spacing:4.860800pt;}
.ws47{word-spacing:5.017600pt;}
.ws34{word-spacing:5.122133pt;}
.wsa6{word-spacing:5.226667pt;}
.ws3d{word-spacing:5.278933pt;}
.wsa4{word-spacing:5.383467pt;}
.wsbb{word-spacing:5.435733pt;}
.ws36{word-spacing:5.540267pt;}
.ws29{word-spacing:5.592533pt;}
.ws9e{word-spacing:5.644800pt;}
.ws31{word-spacing:5.697067pt;}
.wsb9{word-spacing:5.749333pt;}
.wsb4{word-spacing:5.801600pt;}
.wsb0{word-spacing:5.853867pt;}
.ws1a{word-spacing:5.906133pt;}
.ws99{word-spacing:6.115200pt;}
.ws7c{word-spacing:6.167467pt;}
.ws50{word-spacing:6.272000pt;}
.ws51{word-spacing:6.324267pt;}
.wsae{word-spacing:6.376533pt;}
.wsc{word-spacing:6.428800pt;}
.ws13{word-spacing:6.481067pt;}
.ws63{word-spacing:6.533333pt;}
.ws19{word-spacing:6.585600pt;}
.ws61{word-spacing:6.690133pt;}
.wsd0{word-spacing:6.742400pt;}
.ws82{word-spacing:6.794667pt;}
.ws42{word-spacing:6.846933pt;}
.wsaf{word-spacing:6.951467pt;}
.wse{word-spacing:7.003733pt;}
.ws3c{word-spacing:7.056000pt;}
.ws2d{word-spacing:7.108267pt;}
.ws8b{word-spacing:7.160533pt;}
.ws35{word-spacing:7.212800pt;}
.ws60{word-spacing:7.265067pt;}
.ws98{word-spacing:7.317333pt;}
.ws6e{word-spacing:7.369600pt;}
.wsba{word-spacing:7.421867pt;}
.ws88{word-spacing:7.526400pt;}
.ws2e{word-spacing:7.630933pt;}
.ws4c{word-spacing:7.683200pt;}
.wsdd{word-spacing:7.787733pt;}
.ws94{word-spacing:7.840000pt;}
.ws95{word-spacing:7.892267pt;}
.ws4b{word-spacing:7.996800pt;}
.ws2b{word-spacing:8.049067pt;}
.ws92{word-spacing:8.153600pt;}
.wsb3{word-spacing:8.310400pt;}
.wsb6{word-spacing:8.362667pt;}
.ws1c{word-spacing:8.414933pt;}
.ws9b{word-spacing:8.467200pt;}
.wsd2{word-spacing:8.519467pt;}
.ws91{word-spacing:8.624000pt;}
.ws37{word-spacing:8.676267pt;}
.ws3b{word-spacing:8.728533pt;}
.ws38{word-spacing:8.885333pt;}
.wsb1{word-spacing:9.251200pt;}
.ws6f{word-spacing:9.303467pt;}
.ws9d{word-spacing:9.408000pt;}
.ws65{word-spacing:9.564800pt;}
.wsb{word-spacing:9.617067pt;}
.ws46{word-spacing:9.721600pt;}
.wsc0{word-spacing:9.773867pt;}
.ws1e{word-spacing:9.878400pt;}
.ws5b{word-spacing:9.930667pt;}
.ws41{word-spacing:10.192000pt;}
.ws43{word-spacing:10.244267pt;}
.ws6a{word-spacing:10.296533pt;}
.ws9f{word-spacing:10.453333pt;}
.ws27{word-spacing:10.505600pt;}
.ws8f{word-spacing:10.662400pt;}
.wsf{word-spacing:10.766933pt;}
.wsd1{word-spacing:10.819200pt;}
.wsa3{word-spacing:10.923733pt;}
.wsbf{word-spacing:10.976000pt;}
.ws59{word-spacing:11.028267pt;}
.ws6c{word-spacing:11.080533pt;}
.ws33{word-spacing:11.132800pt;}
.ws53{word-spacing:11.185067pt;}
.ws6b{word-spacing:11.341867pt;}
.ws8a{word-spacing:11.498667pt;}
.ws26{word-spacing:11.603200pt;}
.ws5c{word-spacing:11.655467pt;}
.ws62{word-spacing:11.760000pt;}
.ws96{word-spacing:11.864533pt;}
.ws40{word-spacing:11.969067pt;}
.ws4f{word-spacing:12.073600pt;}
.wsbd{word-spacing:12.178133pt;}
.wscb{word-spacing:12.334933pt;}
.ws5d{word-spacing:12.387200pt;}
.ws45{word-spacing:12.596267pt;}
.ws22{word-spacing:12.648533pt;}
.wsce{word-spacing:13.066667pt;}
.wsa2{word-spacing:13.328000pt;}
.wsbc{word-spacing:13.432533pt;}
.ws3e{word-spacing:13.484800pt;}
.wsbe{word-spacing:13.589333pt;}
.ws16{word-spacing:13.746133pt;}
.ws2a{word-spacing:13.955200pt;}
.ws44{word-spacing:14.059733pt;}
.ws83{word-spacing:14.112000pt;}
.ws8e{word-spacing:14.268800pt;}
.ws21{word-spacing:14.321067pt;}
.ws8d{word-spacing:14.634667pt;}
.ws68{word-spacing:14.739200pt;}
.ws5e{word-spacing:14.791467pt;}
.wsb8{word-spacing:14.843733pt;}
.wsa0{word-spacing:14.948267pt;}
.wsa7{word-spacing:15.261867pt;}
.ws49{word-spacing:15.889067pt;}
.ws1b{word-spacing:16.045867pt;}
.ws3f{word-spacing:16.882133pt;}
.wsd8{word-spacing:17.143467pt;}
.ws2c{word-spacing:19.181867pt;}
.ws30{word-spacing:19.495467pt;}
.ws5f{word-spacing:21.586133pt;}
.wscd{word-spacing:21.795200pt;}
.wsd6{word-spacing:27.021867pt;}
.wsa1{word-spacing:28.537600pt;}
.wsd7{word-spacing:33.189333pt;}
.ws78{word-spacing:44.885328pt;}
.ws7a{word-spacing:80.127995pt;}
.ws75{word-spacing:100.949328pt;}
.ws73{word-spacing:121.770662pt;}
.ws76{word-spacing:150.015995pt;}
.ws77{word-spacing:170.837328pt;}
.ws79{word-spacing:356.612267pt;}
._41{margin-left:-12.648533pt;}
._6{margin-left:-11.498720pt;}
._a{margin-left:-9.719360pt;}
._40{margin-left:-7.421867pt;}
._1{margin-left:-5.837333pt;}
._9{margin-left:-4.655787pt;}
._7{margin-left:-3.676693pt;}
._4{margin-left:-2.163200pt;}
._0{margin-left:-1.241600pt;}
._8{width:0.890560pt;}
._2{width:1.792000pt;}
._3{width:3.161600pt;}
._5{width:4.070400pt;}
._3d{width:5.338667pt;}
._3c{width:6.428800pt;}
._3e{width:8.414933pt;}
._b{width:11.420267pt;}
._3f{width:13.781440pt;}
._c{width:14.812693pt;}
._43{width:20.156693pt;}
._42{width:39.676693pt;}
._f{width:42.624000pt;}
._e{width:50.602662pt;}
._1f{width:110.293328pt;}
._36{width:131.114662pt;}
._31{width:166.832099pt;}
._35{width:191.797547pt;}
._21{width:193.456107pt;}
._3b{width:201.682232pt;}
._1e{width:211.968000pt;}
._26{width:217.437211pt;}
._18{width:222.120221pt;}
._19{width:235.298123pt;}
._11{width:243.157325pt;}
._2c{width:245.461333pt;}
._2f{width:255.236267pt;}
._33{width:259.712000pt;}
._34{width:266.752000pt;}
._1d{width:271.189325pt;}
._3a{width:276.736000pt;}
._30{width:285.056000pt;}
._13{width:291.285333pt;}
._2d{width:292.223992pt;}
._2a{width:294.231771pt;}
._17{width:312.106667pt;}
._1a{width:313.093440pt;}
._2e{width:317.141333pt;}
._20{width:318.293333pt;}
._16{width:322.261333pt;}
._d{width:325.428373pt;}
._27{width:327.173440pt;}
._37{width:330.591040pt;}
._39{width:331.733333pt;}
._1b{width:337.706667pt;}
._12{width:343.082667pt;}
._10{width:346.325333pt;}
._24{width:350.579200pt;}
._22{width:351.573333pt;}
._1c{width:353.962667pt;}
._15{width:356.821333pt;}
._25{width:362.312533pt;}
._28{width:364.727467pt;}
._38{width:369.493333pt;}
._2b{width:375.168000pt;}
._32{width:380.245333pt;}
._23{width:390.144000pt;}
._29{width:404.144107pt;}
._14{width:410.965333pt;}
.fs11{font-size:26.133333pt;}
.fse{font-size:27.253333pt;}
.fsb{font-size:28.000000pt;}
.fs12{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsf{font-size:38.933333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:86.469333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:30.608813pt;}
.y1d{bottom:66.836667pt;}
.y1c{bottom:77.504667pt;}
.y1b{bottom:88.172667pt;}
.y17d{bottom:91.100403pt;}
.ya1{bottom:92.500000pt;}
.y157{bottom:94.452936pt;}
.ya0{bottom:94.793329pt;}
.y1a{bottom:98.840667pt;}
.y17c{bottom:103.100403pt;}
.y19{bottom:109.508667pt;}
.y156{bottom:110.446536pt;}
.y9f{bottom:110.786929pt;}
.y106{bottom:111.786269pt;}
.y17b{bottom:115.100403pt;}
.y155{bottom:126.440136pt;}
.y9e{bottom:126.780529pt;}
.y17a{bottom:127.100403pt;}
.y105{bottom:127.779869pt;}
.y179{bottom:139.100403pt;}
.y41{bottom:141.238800pt;}
.y39{bottom:141.293733pt;}
.y154{bottom:142.433736pt;}
.y9d{bottom:142.774129pt;}
.y74{bottom:142.844529pt;}
.y132{bottom:143.767069pt;}
.y104{bottom:143.773469pt;}
.y178{bottom:151.100403pt;}
.y40{bottom:153.238800pt;}
.y38{bottom:157.287333pt;}
.y153{bottom:158.478536pt;}
.y9c{bottom:158.812529pt;}
.y73{bottom:158.838129pt;}
.y103{bottom:159.767069pt;}
.y131{bottom:159.786269pt;}
.y177{bottom:163.100403pt;}
.ya7{bottom:166.918264pt;}
.y3f{bottom:169.238800pt;}
.y37{bottom:173.351333pt;}
.y152{bottom:174.472136pt;}
.y9b{bottom:174.806129pt;}
.y72{bottom:174.831729pt;}
.y102{bottom:175.767069pt;}
.y130{bottom:175.779869pt;}
.y3e{bottom:177.238787pt;}
.y176{bottom:179.100403pt;}
.ya6{bottom:182.031067pt;}
.y175{bottom:187.100403pt;}
.y36{bottom:189.344933pt;}
.y151{bottom:190.465736pt;}
.y9a{bottom:190.799729pt;}
.y71{bottom:190.825329pt;}
.y12f{bottom:191.773469pt;}
.y101{bottom:191.792669pt;}
.ya5{bottom:197.144002pt;}
.y174{bottom:199.100403pt;}
.y35{bottom:205.338533pt;}
.y150{bottom:206.459336pt;}
.y99{bottom:206.793329pt;}
.y70{bottom:206.818929pt;}
.y12e{bottom:207.767069pt;}
.y100{bottom:207.786269pt;}
.y1ad{bottom:212.304647pt;}
.yd3{bottom:212.469341pt;}
.y173{bottom:215.100403pt;}
.y34{bottom:221.332133pt;}
.y14f{bottom:222.452936pt;}
.y98{bottom:222.786929pt;}
.y6f{bottom:222.812529pt;}
.y172{bottom:223.100403pt;}
.yff{bottom:223.779869pt;}
.y1ac{bottom:224.304647pt;}
.yd2{bottom:228.672008pt;}
.y1ab{bottom:236.304647pt;}
.y28{bottom:236.597613pt;}
.y33{bottom:237.325733pt;}
.y97{bottom:238.780529pt;}
.y6e{bottom:238.806129pt;}
.yfe{bottom:239.773469pt;}
.yd1{bottom:244.821333pt;}
.y1e7{bottom:245.634664pt;}
.y171{bottom:247.100403pt;}
.y1aa{bottom:248.304647pt;}
.y27{bottom:252.591213pt;}
.y32{bottom:253.319333pt;}
.y96{bottom:254.774129pt;}
.y6d{bottom:254.799729pt;}
.y14e{bottom:255.119603pt;}
.yfd{bottom:255.767069pt;}
.y1e6{bottom:257.634664pt;}
.y170{bottom:259.100403pt;}
.y1a9{bottom:260.304647pt;}
.yd0{bottom:260.949333pt;}
.y26{bottom:268.635987pt;}
.y31{bottom:269.312933pt;}
.y1e5{bottom:269.634664pt;}
.y95{bottom:270.780529pt;}
.y6c{bottom:270.793329pt;}
.y16f{bottom:271.100403pt;}
.y14d{bottom:271.113203pt;}
.yfc{bottom:271.767069pt;}
.y12d{bottom:271.792669pt;}
.y1a8{bottom:272.304647pt;}
.ycf{bottom:277.077333pt;}
.y1e4{bottom:281.634664pt;}
.y16e{bottom:283.100403pt;}
.y1a7{bottom:284.304647pt;}
.y25{bottom:284.629587pt;}
.y30{bottom:285.306533pt;}
.y94{bottom:286.774129pt;}
.y6b{bottom:286.786929pt;}
.y14c{bottom:287.106803pt;}
.yfb{bottom:287.779869pt;}
.y12c{bottom:287.786269pt;}
.yce{bottom:293.205333pt;}
.y1e3{bottom:293.634664pt;}
.y16d{bottom:295.100403pt;}
.y1a6{bottom:296.304647pt;}
.y24{bottom:300.623187pt;}
.y2f{bottom:301.300133pt;}
.y6a{bottom:302.780529pt;}
.y93{bottom:302.818929pt;}
.y14b{bottom:303.100403pt;}
.yfa{bottom:303.773469pt;}
.y12b{bottom:303.779869pt;}
.y1e2{bottom:305.634664pt;}
.y1a5{bottom:308.304647pt;}
.ycd{bottom:309.333333pt;}
.y23{bottom:316.616787pt;}
.y2e{bottom:317.293733pt;}
.y1e1{bottom:317.634664pt;}
.y69{bottom:318.774129pt;}
.y92{bottom:318.812529pt;}
.y14a{bottom:319.100403pt;}
.yf9{bottom:319.767069pt;}
.y12a{bottom:319.773469pt;}
.y1a4{bottom:320.304647pt;}
.ycc{bottom:325.488000pt;}
.y1e0{bottom:329.634664pt;}
.y1a3{bottom:332.304647pt;}
.y22{bottom:332.610387pt;}
.y2d{bottom:333.287333pt;}
.y68{bottom:334.774129pt;}
.y91{bottom:334.806129pt;}
.y129{bottom:335.767069pt;}
.yf8{bottom:335.779849pt;}
.ycb{bottom:341.616000pt;}
.y1df{bottom:341.634664pt;}
.y1a2{bottom:344.304647pt;}
.y21{bottom:348.603987pt;}
.y2c{bottom:349.310680pt;}
.y90{bottom:350.799729pt;}
.y67{bottom:350.806129pt;}
.y128{bottom:351.767049pt;}
.yf7{bottom:351.773449pt;}
.y1de{bottom:353.634664pt;}
.y1a1{bottom:356.304647pt;}
.yca{bottom:357.744000pt;}
.y20{bottom:364.597587pt;}
.y2b{bottom:365.304280pt;}
.y1dd{bottom:365.634664pt;}
.y8f{bottom:366.793329pt;}
.y66{bottom:366.799729pt;}
.yf6{bottom:367.767049pt;}
.y16c{bottom:367.773449pt;}
.y149{bottom:367.805449pt;}
.y1a0{bottom:368.304647pt;}
.yc9{bottom:373.872000pt;}
.y1dc{bottom:377.634664pt;}
.y19f{bottom:380.304647pt;}
.y1f{bottom:380.591187pt;}
.y2a{bottom:381.297880pt;}
.y8e{bottom:382.786929pt;}
.y65{bottom:382.793329pt;}
.y16b{bottom:383.767049pt;}
.yf5{bottom:383.779849pt;}
.y127{bottom:383.799049pt;}
.y1db{bottom:389.634664pt;}
.yc8{bottom:390.064016pt;}
.y19e{bottom:392.304647pt;}
.y1e{bottom:396.591187pt;}
.y29{bottom:397.291480pt;}
.y8d{bottom:398.780529pt;}
.y64{bottom:398.786929pt;}
.yf4{bottom:399.773449pt;}
.y16a{bottom:399.779849pt;}
.y126{bottom:399.792649pt;}
.y1da{bottom:401.634664pt;}
.y19d{bottom:404.304647pt;}
.yc7{bottom:406.192016pt;}
.y1d9{bottom:413.634664pt;}
.y8c{bottom:414.774129pt;}
.y63{bottom:414.780529pt;}
.yf3{bottom:415.767049pt;}
.y169{bottom:415.773449pt;}
.y125{bottom:415.786249pt;}
.y19c{bottom:416.304647pt;}
.yc6{bottom:422.320016pt;}
.y1d8{bottom:425.634664pt;}
.y19b{bottom:428.304647pt;}
.y62{bottom:430.774129pt;}
.yf2{bottom:431.767049pt;}
.y124{bottom:431.779849pt;}
.y1d7{bottom:437.634664pt;}
.yc5{bottom:438.448016pt;}
.y19a{bottom:440.304647pt;}
.y18{bottom:443.391200pt;}
.y8b{bottom:446.774796pt;}
.y61{bottom:446.780529pt;}
.y123{bottom:447.773449pt;}
.y168{bottom:447.792649pt;}
.yf1{bottom:447.831049pt;}
.y1d6{bottom:449.634664pt;}
.y199{bottom:452.304647pt;}
.yc4{bottom:454.576016pt;}
.y17{bottom:459.391200pt;}
.y1d5{bottom:461.634664pt;}
.y60{bottom:462.774129pt;}
.y122{bottom:463.767049pt;}
.y167{bottom:463.786249pt;}
.yf0{bottom:463.824649pt;}
.y198{bottom:464.304647pt;}
.yc3{bottom:470.704016pt;}
.y1d4{bottom:473.634664pt;}
.y16{bottom:475.391200pt;}
.y197{bottom:476.304647pt;}
.y5f{bottom:478.778396pt;}
.y121{bottom:479.773449pt;}
.y148{bottom:479.779849pt;}
.yef{bottom:479.818249pt;}
.y1d3{bottom:485.634664pt;}
.yc2{bottom:486.832016pt;}
.y196{bottom:488.304647pt;}
.y15{bottom:491.391200pt;}
.y5e{bottom:494.774129pt;}
.y8a{bottom:494.806129pt;}
.y120{bottom:495.767049pt;}
.y147{bottom:495.773449pt;}
.yee{bottom:495.811849pt;}
.y1d2{bottom:497.634664pt;}
.y195{bottom:500.304647pt;}
.yc1{bottom:502.960016pt;}
.y14{bottom:507.391200pt;}
.y1d1{bottom:509.634664pt;}
.y89{bottom:510.799729pt;}
.y146{bottom:511.767049pt;}
.y11f{bottom:511.792649pt;}
.yed{bottom:511.805449pt;}
.y194{bottom:512.304647pt;}
.yc0{bottom:519.088016pt;}
.y1d0{bottom:521.634664pt;}
.y13{bottom:523.391200pt;}
.y5d{bottom:526.780529pt;}
.y88{bottom:526.793329pt;}
.y145{bottom:527.773449pt;}
.y166{bottom:527.779849pt;}
.y11e{bottom:527.786249pt;}
.yec{bottom:527.799049pt;}
.y1cf{bottom:533.634664pt;}
.ybf{bottom:535.216016pt;}
.y12{bottom:539.391200pt;}
.y5c{bottom:542.774129pt;}
.y87{bottom:542.786929pt;}
.y144{bottom:543.767049pt;}
.y165{bottom:543.773449pt;}
.y11d{bottom:543.779849pt;}
.yeb{bottom:543.792649pt;}
.y1ce{bottom:545.634664pt;}
.ybe{bottom:551.344016pt;}
.y11{bottom:555.391200pt;}
.y1cd{bottom:557.634664pt;}
.y5b{bottom:558.774129pt;}
.y86{bottom:558.780529pt;}
.y164{bottom:559.767049pt;}
.y11c{bottom:559.773449pt;}
.y143{bottom:559.779849pt;}
.yea{bottom:559.786249pt;}
.ybd{bottom:567.472016pt;}
.y1cc{bottom:569.634664pt;}
.y10{bottom:571.391200pt;}
.y193{bottom:573.637980pt;}
.y85{bottom:574.774129pt;}
.y5a{bottom:574.786929pt;}
.y11b{bottom:575.767049pt;}
.y142{bottom:575.773449pt;}
.ye9{bottom:575.779849pt;}
.y163{bottom:575.786249pt;}
.y1cb{bottom:581.634664pt;}
.ybc{bottom:583.653301pt;}
.yf{bottom:587.391200pt;}
.y84{bottom:590.774129pt;}
.y59{bottom:590.780529pt;}
.y141{bottom:591.767049pt;}
.ye8{bottom:591.773449pt;}
.y162{bottom:591.779849pt;}
.y11a{bottom:591.831090pt;}
.y1ca{bottom:593.634664pt;}
.y192{bottom:597.637980pt;}
.ybb{bottom:599.781301pt;}
.ye{bottom:603.391200pt;}
.y1c9{bottom:605.634664pt;}
.y58{bottom:606.774129pt;}
.ye7{bottom:607.767049pt;}
.y161{bottom:607.773449pt;}
.y140{bottom:607.779849pt;}
.y119{bottom:607.824690pt;}
.y191{bottom:609.637980pt;}
.yba{bottom:615.909301pt;}
.y1c8{bottom:617.634664pt;}
.yd{bottom:619.391200pt;}
.y190{bottom:621.637980pt;}
.y83{bottom:622.793329pt;}
.y57{bottom:622.825370pt;}
.ye6{bottom:623.767049pt;}
.y13f{bottom:623.773449pt;}
.y118{bottom:623.818290pt;}
.y1c7{bottom:629.634664pt;}
.yb9{bottom:632.037301pt;}
.y82{bottom:638.786929pt;}
.y56{bottom:638.818970pt;}
.yc{bottom:639.391200pt;}
.y13e{bottom:639.767049pt;}
.ye5{bottom:639.773449pt;}
.y160{bottom:639.786290pt;}
.y117{bottom:639.811890pt;}
.y1c6{bottom:641.634664pt;}
.yb8{bottom:648.165301pt;}
.y1c5{bottom:653.634664pt;}
.y18f{bottom:653.638021pt;}
.y81{bottom:654.780529pt;}
.y55{bottom:654.812570pt;}
.ye4{bottom:655.767049pt;}
.y15f{bottom:655.779890pt;}
.y13d{bottom:655.792690pt;}
.y116{bottom:655.805490pt;}
.yb7{bottom:664.293301pt;}
.y1c4{bottom:665.634664pt;}
.y18e{bottom:665.638021pt;}
.y80{bottom:670.774129pt;}
.y54{bottom:670.806170pt;}
.y15e{bottom:671.773490pt;}
.y13c{bottom:671.786290pt;}
.ye3{bottom:671.792690pt;}
.y115{bottom:671.799090pt;}
.y1c3{bottom:677.634664pt;}
.yb6{bottom:680.421301pt;}
.y7f{bottom:686.780570pt;}
.y53{bottom:686.799770pt;}
.y15d{bottom:687.767090pt;}
.y13b{bottom:687.779890pt;}
.ye2{bottom:687.786290pt;}
.y114{bottom:687.792690pt;}
.y1c2{bottom:689.634664pt;}
.y18d{bottom:689.638021pt;}
.yb{bottom:696.487213pt;}
.yb5{bottom:696.559967pt;}
.y1c1{bottom:701.634664pt;}
.y18c{bottom:701.638021pt;}
.y7e{bottom:702.774170pt;}
.y52{bottom:702.793370pt;}
.y13a{bottom:703.773490pt;}
.ye1{bottom:703.779890pt;}
.y113{bottom:703.786290pt;}
.y15c{bottom:703.805490pt;}
.yb4{bottom:712.687967pt;}
.y1c0{bottom:713.634664pt;}
.ya{bottom:715.153880pt;}
.y7d{bottom:718.774170pt;}
.y51{bottom:718.786970pt;}
.y139{bottom:719.767090pt;}
.ye0{bottom:719.773490pt;}
.y112{bottom:719.779890pt;}
.y15b{bottom:719.799090pt;}
.y1bf{bottom:725.634664pt;}
.y18b{bottom:725.638021pt;}
.yb3{bottom:728.815967pt;}
.y9{bottom:733.824547pt;}
.y7c{bottom:734.774170pt;}
.y50{bottom:734.780570pt;}
.ydf{bottom:735.767090pt;}
.y111{bottom:735.773490pt;}
.y15a{bottom:735.792690pt;}
.y1be{bottom:737.634664pt;}
.y18a{bottom:737.638021pt;}
.yb2{bottom:744.943967pt;}
.y1bd{bottom:749.634664pt;}
.y4f{bottom:750.774170pt;}
.yde{bottom:751.767090pt;}
.y138{bottom:751.786290pt;}
.yb1{bottom:761.071967pt;}
.y1bc{bottom:761.634664pt;}
.y189{bottom:761.638021pt;}
.y8{bottom:765.857360pt;}
.y4e{bottom:766.780570pt;}
.y110{bottom:767.773490pt;}
.y137{bottom:767.779890pt;}
.y1bb{bottom:773.634664pt;}
.y188{bottom:773.638021pt;}
.yb0{bottom:777.210634pt;}
.y4d{bottom:782.774170pt;}
.y10f{bottom:783.767090pt;}
.y136{bottom:783.773490pt;}
.ydd{bottom:783.799090pt;}
.y1ba{bottom:785.634664pt;}
.yaf{bottom:793.338634pt;}
.y1b9{bottom:797.634664pt;}
.y187{bottom:797.638021pt;}
.y4c{bottom:798.780570pt;}
.y135{bottom:799.767090pt;}
.y10e{bottom:799.773490pt;}
.ydc{bottom:799.792690pt;}
.y7{bottom:800.513360pt;}
.yae{bottom:809.466634pt;}
.y1b8{bottom:809.634664pt;}
.y186{bottom:809.638021pt;}
.y4b{bottom:814.774170pt;}
.y134{bottom:815.767090pt;}
.y10d{bottom:815.773490pt;}
.ydb{bottom:815.786290pt;}
.y1b7{bottom:821.634664pt;}
.yad{bottom:825.596016pt;}
.y7b{bottom:830.793370pt;}
.y4a{bottom:830.812570pt;}
.y10c{bottom:831.767090pt;}
.yda{bottom:831.779890pt;}
.y159{bottom:831.805490pt;}
.y1b6{bottom:833.634664pt;}
.y185{bottom:833.638021pt;}
.y6{bottom:835.169360pt;}
.yac{bottom:841.724016pt;}
.y1b5{bottom:845.634664pt;}
.y184{bottom:845.638021pt;}
.y7a{bottom:846.786970pt;}
.y49{bottom:846.806170pt;}
.y10b{bottom:847.767090pt;}
.yd9{bottom:847.773490pt;}
.y158{bottom:847.799090pt;}
.y1b4{bottom:857.634664pt;}
.yab{bottom:857.862683pt;}
.y79{bottom:862.780570pt;}
.y48{bottom:862.799770pt;}
.yd8{bottom:863.767090pt;}
.y133{bottom:863.792690pt;}
.y1b3{bottom:869.634664pt;}
.y183{bottom:869.638021pt;}
.y5{bottom:869.825360pt;}
.y78{bottom:878.774170pt;}
.y47{bottom:878.793370pt;}
.y10a{bottom:879.773490pt;}
.yd7{bottom:879.786290pt;}
.y1b2{bottom:881.634664pt;}
.y182{bottom:881.638021pt;}
.yaa{bottom:881.766683pt;}
.y1b1{bottom:893.634664pt;}
.y181{bottom:893.638021pt;}
.ya9{bottom:893.766683pt;}
.y77{bottom:894.774170pt;}
.y46{bottom:894.786970pt;}
.y109{bottom:895.767090pt;}
.yd6{bottom:895.779890pt;}
.y1b0{bottom:905.634664pt;}
.y180{bottom:905.638021pt;}
.ya8{bottom:905.766683pt;}
.y76{bottom:910.780529pt;}
.y45{bottom:910.780570pt;}
.y108{bottom:911.767090pt;}
.yd5{bottom:911.773490pt;}
.y1af{bottom:917.634664pt;}
.y17f{bottom:917.638021pt;}
.y4{bottom:918.544520pt;}
.y3a{bottom:920.666827pt;}
.y75{bottom:926.774129pt;}
.y44{bottom:926.774170pt;}
.ya4{bottom:927.377848pt;}
.yd4{bottom:927.767090pt;}
.y107{bottom:927.786553pt;}
.y1ae{bottom:929.634664pt;}
.y17e{bottom:929.638021pt;}
.y3b{bottom:962.274653pt;}
.y3d{bottom:969.464920pt;}
.y3{bottom:975.375187pt;}
.y2{bottom:988.708520pt;}
.ya2{bottom:1001.355225pt;}
.y42{bottom:1001.355306pt;}
.y1{bottom:1001.711187pt;}
.ya3{bottom:1002.044515pt;}
.y43{bottom:1002.048639pt;}
.h11{height:24.724000pt;}
.h16{height:24.878933pt;}
.h14{height:25.318347pt;}
.hc{height:32.965333pt;}
.h10{height:35.320000pt;}
.h19{height:37.674667pt;}
.h23{height:38.080000pt;}
.h21{height:38.880000pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h22{height:40.724000pt;}
.h17{height:41.472000pt;}
.h2{height:41.984000pt;}
.h1d{height:43.182933pt;}
.h1c{height:43.225698pt;}
.h1e{height:43.353616pt;}
.h1b{height:43.438998pt;}
.h1a{height:43.454998pt;}
.ha{height:47.093333pt;}
.h15{height:47.472000pt;}
.h12{height:47.692799pt;}
.h20{height:48.555733pt;}
.he{height:49.133333pt;}
.hd{height:49.653333pt;}
.hb{height:54.298667pt;}
.h9{height:54.329067pt;}
.h13{height:55.382431pt;}
.h1f{height:55.637658pt;}
.h7{height:59.728320pt;}
.h8{height:59.744320pt;}
.hf{height:65.716693pt;}
.h5{height:68.570667pt;}
.h18{height:89.472000pt;}
.h6{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:291.517333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.011707pt;}
.x1{left:75.496000pt;}
.x2{left:82.430533pt;}
.x3{left:84.162800pt;}
.xc{left:86.252935pt;}
.x12{left:95.590535pt;}
.x10{left:102.246535pt;}
.x4{left:240.726667pt;}
.x5{left:406.304800pt;}
.x6{left:416.967200pt;}
.x13{left:426.300538pt;}
.x8{left:427.282680pt;}
.xd{left:429.297199pt;}
.x11{left:432.965861pt;}
.xe{left:530.001199pt;}
.xa{left:547.798253pt;}
.x7{left:617.715453pt;}
.xf{left:650.214532pt;}
.xb{left:669.671183pt;}
}




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