
    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_a9511d1ae0a9274d99015032.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_620b557869afe93efbef847a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_a9511d1ae0a9274d99015032.woff')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_4f51655dbb289d0f397de0cf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1d2bc58638bf179b33c7454.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_541fd00406eb90bc478bc4cb.woff')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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_948e2eaa754a21bf2a933fac.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_948e2eaa754a21bf2a933fac.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_09ebb308a5cf38d7b240c1db.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_398e21c74bf93901b0392ed0.woff')format("woff");}.fff{font-family:fff;line-height:1.183000;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_62b410a73c6362ae3daa3efe.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v5{vertical-align:18.000000px;}
.v4{vertical-align:19.200073px;}
.v3{vertical-align:26.399780px;}
.ls5{letter-spacing:-1.392000px;}
.ls2{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.450000px;}
.ls9{letter-spacing:-0.135000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000009px;}
.ls4{letter-spacing:0.000100px;}
.ls8{letter-spacing:0.000347px;}
.ls7{letter-spacing:0.630000px;}
.ls0{letter-spacing:9.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-30.528000px;}
.ws8{word-spacing:-13.818000px;}
.ws7{word-spacing:-12.483600px;}
.ws9{word-spacing:-11.880000px;}
.ws83{word-spacing:-11.426400px;}
.wsb6{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.ws6{word-spacing:-10.117800px;}
.ws3{word-spacing:-9.855000px;}
.wsd4{word-spacing:-9.720000px;}
.wsd5{word-spacing:-9.405000px;}
.wscc{word-spacing:-9.315000px;}
.ws1{word-spacing:-8.148000px;}
.wsd2{word-spacing:-8.100000px;}
.wsb9{word-spacing:-7.358400px;}
.ws8e{word-spacing:-7.248000px;}
.ws4{word-spacing:-6.898500px;}
.wsb1{word-spacing:-6.468000px;}
.ws1b{word-spacing:-3.057780px;}
.ws9e{word-spacing:-2.016000px;}
.wsd{word-spacing:-0.882000px;}
.wscb{word-spacing:-0.705600px;}
.ws54{word-spacing:-0.646800px;}
.wsbd{word-spacing:-0.630000px;}
.ws94{word-spacing:-0.588000px;}
.ws49{word-spacing:-0.529200px;}
.ws36{word-spacing:-0.352800px;}
.ws43{word-spacing:-0.294000px;}
.wsab{word-spacing:-0.235200px;}
.ws87{word-spacing:-0.176400px;}
.wscf{word-spacing:-0.117600px;}
.wsd6{word-spacing:-0.090000px;}
.ws34{word-spacing:-0.058800px;}
.wsd3{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws96{word-spacing:0.058800px;}
.ws58{word-spacing:0.117600px;}
.ws10{word-spacing:0.168000px;}
.ws85{word-spacing:0.176400px;}
.ws61{word-spacing:0.235200px;}
.wse{word-spacing:0.252000px;}
.ws21{word-spacing:0.294000px;}
.ws3d{word-spacing:0.352800px;}
.ws86{word-spacing:0.411600px;}
.ws59{word-spacing:0.470400px;}
.ws9c{word-spacing:0.529200px;}
.ws19{word-spacing:0.588000px;}
.ws46{word-spacing:0.646800px;}
.wsaa{word-spacing:0.705600px;}
.ws74{word-spacing:0.764400px;}
.ws8d{word-spacing:0.823200px;}
.ws47{word-spacing:0.882000px;}
.ws35{word-spacing:0.940800px;}
.wsf{word-spacing:0.966000px;}
.ws5f{word-spacing:0.999600px;}
.ws4f{word-spacing:1.058400px;}
.wsc2{word-spacing:1.117200px;}
.ws2c{word-spacing:1.176000px;}
.ws6d{word-spacing:1.234800px;}
.wsa1{word-spacing:1.293600px;}
.wsb2{word-spacing:1.352400px;}
.wsa2{word-spacing:1.411200px;}
.ws39{word-spacing:1.470000px;}
.ws4c{word-spacing:1.528800px;}
.ws8c{word-spacing:1.587600px;}
.wsc{word-spacing:1.638000px;}
.ws41{word-spacing:1.646400px;}
.ws53{word-spacing:1.705200px;}
.wsb{word-spacing:1.764000px;}
.ws75{word-spacing:1.822800px;}
.ws62{word-spacing:1.881600px;}
.ws5a{word-spacing:1.940400px;}
.ws2f{word-spacing:2.058000px;}
.ws32{word-spacing:2.116800px;}
.ws4e{word-spacing:2.175600px;}
.ws5e{word-spacing:2.293200px;}
.ws33{word-spacing:2.352000px;}
.ws50{word-spacing:2.410800px;}
.ws64{word-spacing:2.469600px;}
.ws97{word-spacing:2.528400px;}
.wsae{word-spacing:2.587200px;}
.ws1e{word-spacing:2.640000px;}
.ws3a{word-spacing:2.646000px;}
.ws51{word-spacing:2.704800px;}
.ws5d{word-spacing:2.763600px;}
.wsa7{word-spacing:2.822400px;}
.ws16{word-spacing:2.881200px;}
.ws70{word-spacing:2.940000px;}
.ws4b{word-spacing:2.998800px;}
.ws37{word-spacing:3.057600px;}
.ws1d{word-spacing:3.072000px;}
.wsc5{word-spacing:3.116400px;}
.ws40{word-spacing:3.175200px;}
.wsac{word-spacing:3.234000px;}
.ws91{word-spacing:3.292800px;}
.wsce{word-spacing:3.351600px;}
.ws3b{word-spacing:3.410400px;}
.ws20{word-spacing:3.469200px;}
.ws7b{word-spacing:3.528000px;}
.ws5b{word-spacing:3.645600px;}
.ws68{word-spacing:3.704400px;}
.ws9a{word-spacing:3.763200px;}
.ws30{word-spacing:3.822000px;}
.ws55{word-spacing:3.880800px;}
.ws17{word-spacing:3.939600px;}
.ws1c{word-spacing:3.960000px;}
.ws63{word-spacing:3.998400px;}
.ws7e{word-spacing:4.057200px;}
.ws15{word-spacing:4.116000px;}
.ws76{word-spacing:4.233600px;}
.ws56{word-spacing:4.292400px;}
.ws5c{word-spacing:4.351200px;}
.wsb4{word-spacing:4.410000px;}
.wsbf{word-spacing:4.468800px;}
.wsbc{word-spacing:4.527600px;}
.wsa8{word-spacing:4.586400px;}
.ws92{word-spacing:4.645200px;}
.ws7f{word-spacing:4.704000px;}
.ws26{word-spacing:4.762800px;}
.ws88{word-spacing:4.821600px;}
.ws24{word-spacing:4.880400px;}
.ws1a{word-spacing:4.939200px;}
.ws6f{word-spacing:4.998000px;}
.wsc9{word-spacing:5.056800px;}
.ws89{word-spacing:5.115600px;}
.wsba{word-spacing:5.174400px;}
.wsc0{word-spacing:5.292000px;}
.ws44{word-spacing:5.350800px;}
.ws67{word-spacing:5.409600px;}
.ws3e{word-spacing:5.468400px;}
.wscd{word-spacing:5.586000px;}
.ws79{word-spacing:5.644800px;}
.wsc3{word-spacing:5.703600px;}
.wsbe{word-spacing:5.821200px;}
.ws2e{word-spacing:5.880000px;}
.ws25{word-spacing:5.938800px;}
.ws14{word-spacing:6.056400px;}
.ws4d{word-spacing:6.174000px;}
.ws7a{word-spacing:6.291600px;}
.ws2b{word-spacing:6.350400px;}
.ws12{word-spacing:6.409200px;}
.ws18{word-spacing:6.468000px;}
.ws9d{word-spacing:6.526800px;}
.wsc8{word-spacing:6.585600px;}
.wsc6{word-spacing:6.644400px;}
.ws8b{word-spacing:6.703200px;}
.ws38{word-spacing:6.762000px;}
.ws84{word-spacing:6.820800px;}
.ws93{word-spacing:6.879600px;}
.wsbb{word-spacing:6.938400px;}
.ws65{word-spacing:6.997200px;}
.ws48{word-spacing:7.056000px;}
.ws6e{word-spacing:7.173600px;}
.ws27{word-spacing:7.232400px;}
.ws6c{word-spacing:7.291200px;}
.ws9b{word-spacing:7.350000px;}
.ws1f{word-spacing:7.408800px;}
.ws72{word-spacing:7.467600px;}
.wsa3{word-spacing:7.526400px;}
.wsa0{word-spacing:7.585200px;}
.wsc4{word-spacing:7.702800px;}
.ws95{word-spacing:7.761600px;}
.ws57{word-spacing:7.938000px;}
.ws73{word-spacing:7.996800px;}
.wsa6{word-spacing:8.114400px;}
.ws3c{word-spacing:8.173200px;}
.ws77{word-spacing:8.232000px;}
.ws31{word-spacing:8.290800px;}
.ws81{word-spacing:8.349600px;}
.ws7d{word-spacing:8.526000px;}
.wsb3{word-spacing:8.702400px;}
.ws22{word-spacing:8.761200px;}
.ws52{word-spacing:8.878800px;}
.ws60{word-spacing:8.937600px;}
.ws8a{word-spacing:8.996400px;}
.ws28{word-spacing:9.349200px;}
.ws2a{word-spacing:9.408000px;}
.wsad{word-spacing:9.525600px;}
.ws23{word-spacing:9.584400px;}
.ws4a{word-spacing:9.643200px;}
.ws3f{word-spacing:9.760800px;}
.ws29{word-spacing:9.819600px;}
.ws6a{word-spacing:9.878400px;}
.wsc7{word-spacing:9.937200px;}
.ws99{word-spacing:10.054800px;}
.ws82{word-spacing:10.290000px;}
.wsc1{word-spacing:10.348800px;}
.ws69{word-spacing:10.466400px;}
.ws11{word-spacing:10.701600px;}
.ws80{word-spacing:10.760400px;}
.wsaf{word-spacing:10.878000px;}
.wsb0{word-spacing:11.701200px;}
.wsca{word-spacing:11.818800px;}
.ws13{word-spacing:11.877600px;}
.ws42{word-spacing:11.936400px;}
.wsa5{word-spacing:12.112800px;}
.ws2d{word-spacing:12.171600px;}
.ws45{word-spacing:12.583200px;}
.wsa9{word-spacing:12.642000px;}
.ws98{word-spacing:13.230000px;}
.wsb5{word-spacing:13.406400px;}
.wsd0{word-spacing:13.876800px;}
.ws66{word-spacing:14.464800px;}
.wsa4{word-spacing:14.817600px;}
.ws7c{word-spacing:15.170400px;}
.wsd1{word-spacing:15.640800px;}
.ws78{word-spacing:16.111200px;}
.ws71{word-spacing:16.228800px;}
.ws6b{word-spacing:17.816400px;}
.wsb8{word-spacing:43.258151px;}
.wsb7{word-spacing:71.866151px;}
.ws90{word-spacing:1658.945419px;}
.ws9f{word-spacing:1703.489419px;}
.ws8f{word-spacing:1813.793419px;}
.ws0{word-spacing:1945.846745px;}
._a{margin-left:-2890.932630px;}
._20{margin-left:-19.786843px;}
._4{margin-left:-17.454037px;}
._1d{margin-left:-13.039200px;}
._1f{margin-left:-11.101200px;}
._1e{margin-left:-9.760800px;}
._1c{margin-left:-8.648400px;}
._3{margin-left:-6.480000px;}
._8{margin-left:-5.287200px;}
._e{margin-left:-4.180680px;}
._2{margin-left:-2.902200px;}
._0{margin-left:-1.716000px;}
._1{width:1.161600px;}
._5{width:2.245200px;}
._6{width:3.696000px;}
._7{width:4.838400px;}
._d{width:6.366572px;}
._b{width:7.872029px;}
._c{width:10.216798px;}
._21{width:13.426223px;}
._f{width:15.788901px;}
._9{width:17.775617px;}
._2b{width:42.730242px;}
._26{width:53.757592px;}
._38{width:61.740000px;}
._36{width:71.640000px;}
._27{width:82.366173px;}
._37{width:91.530000px;}
._23{width:104.781592px;}
._24{width:133.390173px;}
._35{width:176.074151px;}
._31{width:386.432413px;}
._29{width:400.031314px;}
._2e{width:415.040413px;}
._22{width:419.936413px;}
._34{width:447.704363px;}
._33{width:508.736413px;}
._25{width:547.573163px;}
._28{width:585.476314px;}
._30{width:604.357163px;}
._2d{width:656.149163px;}
._2f{width:659.989163px;}
._32{width:758.130514px;}
._2a{width:922.088926px;}
._1a{width:1075.771819px;}
._2c{width:1155.823726px;}
._18{width:1196.741419px;}
._19{width:1281.786619px;}
._16{width:1348.135819px;}
._17{width:1357.255819px;}
._1b{width:1386.257419px;}
._14{width:1421.777419px;}
._12{width:1470.414019px;}
._11{width:1508.513419px;}
._13{width:1515.473419px;}
._10{width:1525.467619px;}
._15{width:1532.534419px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fsb{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs6{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fsa{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:88.500452px;}
.ycf{bottom:92.865000px;}
.y195{bottom:95.665197px;}
.y92{bottom:98.551048px;}
.y65{bottom:98.623352px;}
.y113{bottom:100.543797px;}
.ya0{bottom:103.494896px;}
.y194{bottom:109.165203px;}
.y7{bottom:109.869598px;}
.yce{bottom:110.368950px;}
.y112{bottom:114.043797px;}
.y151{bottom:117.374405px;}
.y91{bottom:119.776050px;}
.y64{bottom:119.848354px;}
.y9f{bottom:120.998852px;}
.y6{bottom:121.869598px;}
.ye3{bottom:125.448452px;}
.y111{bottom:127.543797px;}
.ycd{bottom:127.872746px;}
.y150{bottom:130.874405px;}
.y5{bottom:133.869598px;}
.y9e{bottom:138.502796px;}
.y90{bottom:141.001053px;}
.y110{bottom:141.043797px;}
.y63{bottom:141.073505px;}
.y14f{bottom:144.374405px;}
.ycc{bottom:145.376700px;}
.y4{bottom:145.869598px;}
.ye2{bottom:146.673306px;}
.y193{bottom:151.615196px;}
.y10f{bottom:154.543797px;}
.y9d{bottom:156.006603px;}
.y3{bottom:157.869598px;}
.y14e{bottom:157.874405px;}
.y8f{bottom:162.226055px;}
.y62{bottom:162.298347px;}
.ycb{bottom:162.880646px;}
.y192{bottom:165.115196px;}
.ye1{bottom:167.898445px;}
.y2{bottom:169.869598px;}
.y14d{bottom:171.374405px;}
.y9c{bottom:173.510548px;}
.y10e{bottom:176.547752px;}
.y191{bottom:178.615196px;}
.yca{bottom:180.384602px;}
.y8e{bottom:183.451046px;}
.y61{bottom:183.523350px;}
.y14c{bottom:184.874405px;}
.ye0{bottom:189.123447px;}
.y10d{bottom:190.047752px;}
.y9b{bottom:191.014503px;}
.y190{bottom:192.115196px;}
.yc9{bottom:197.888557px;}
.y14b{bottom:198.374405px;}
.y10c{bottom:203.547752px;}
.y8d{bottom:204.676048px;}
.y60{bottom:204.748352px;}
.y18f{bottom:205.615196px;}
.y9a{bottom:208.518448px;}
.ydf{bottom:210.348289px;}
.y14a{bottom:211.874405px;}
.yc8{bottom:215.392502px;}
.y18e{bottom:219.115196px;}
.y22{bottom:222.706947px;}
.y149{bottom:225.374405px;}
.y8c{bottom:225.901039px;}
.y5f{bottom:225.973343px;}
.y99{bottom:226.022392px;}
.yde{bottom:231.573441px;}
.y18d{bottom:232.615196px;}
.yc7{bottom:232.896446px;}
.y10b{bottom:238.307693px;}
.y148{bottom:238.874405px;}
.y98{bottom:243.526360px;}
.y21{bottom:243.931961px;}
.y18c{bottom:246.115196px;}
.y8b{bottom:247.126053px;}
.y5e{bottom:247.198494px;}
.yc6{bottom:250.400391px;}
.y147{bottom:252.374405px;}
.ydd{bottom:252.798294px;}
.y18b{bottom:259.615196px;}
.y97{bottom:261.030304px;}
.y20{bottom:265.156952px;}
.y146{bottom:265.874405px;}
.yc5{bottom:267.904358px;}
.y8a{bottom:268.351044px;}
.y5d{bottom:268.423347px;}
.y10a{bottom:268.815445px;}
.y18a{bottom:273.115196px;}
.ydc{bottom:274.023445px;}
.y96{bottom:278.534248px;}
.y145{bottom:279.374405px;}
.y109{bottom:282.315445px;}
.yc4{bottom:285.520798px;}
.y1f{bottom:286.381943px;}
.y189{bottom:286.615196px;}
.y89{bottom:289.576057px;}
.y5c{bottom:289.648361px;}
.y144{bottom:292.874405px;}
.ydb{bottom:295.248459px;}
.y95{bottom:296.150711px;}
.y188{bottom:300.115196px;}
.yc3{bottom:303.024742px;}
.y143{bottom:306.374405px;}
.y1e{bottom:307.606956px;}
.y88{bottom:310.801048px;}
.y5b{bottom:310.873352px;}
.y187{bottom:313.615196px;}
.y94{bottom:313.654655px;}
.yda{bottom:316.473450px;}
.y142{bottom:319.874405px;}
.y108{bottom:324.765450px;}
.y186{bottom:327.115196px;}
.y1d{bottom:328.831947px;}
.y87{bottom:332.026039px;}
.y5a{bottom:332.098343px;}
.yc2{bottom:332.552696px;}
.y141{bottom:333.374405px;}
.yd9{bottom:337.698441px;}
.y107{bottom:338.265450px;}
.y185{bottom:340.615196px;}
.y140{bottom:346.874405px;}
.y1c{bottom:350.056961px;}
.y106{bottom:351.765450px;}
.y86{bottom:353.251053px;}
.y59{bottom:353.323357px;}
.yc1{bottom:353.777710px;}
.y184{bottom:354.115196px;}
.yd8{bottom:358.923454px;}
.y13f{bottom:360.374405px;}
.y105{bottom:365.265450px;}
.y183{bottom:367.615196px;}
.y1b{bottom:371.281952px;}
.y13e{bottom:373.874405px;}
.y85{bottom:374.476044px;}
.y58{bottom:374.548347px;}
.yc0{bottom:375.002700px;}
.yd7{bottom:380.148445px;}
.y182{bottom:381.115196px;}
.y13d{bottom:387.374405px;}
.y1a{bottom:392.506943px;}
.y181{bottom:394.615219px;}
.y84{bottom:395.701035px;}
.y57{bottom:395.773361px;}
.ybf{bottom:396.227692px;}
.y13c{bottom:400.874405px;}
.yd6{bottom:401.373322px;}
.y180{bottom:408.115219px;}
.yd1{bottom:408.118652px;}
.y19{bottom:413.731934px;}
.y13b{bottom:414.374405px;}
.y83{bottom:416.926071px;}
.y56{bottom:416.998352px;}
.ybe{bottom:417.452682px;}
.y17f{bottom:421.615219px;}
.yd5{bottom:422.598450px;}
.y13a{bottom:427.874405px;}
.y18{bottom:434.956970px;}
.y17e{bottom:435.115219px;}
.y82{bottom:438.151062px;}
.y55{bottom:438.223343px;}
.y139{bottom:441.374405px;}
.yd4{bottom:443.823441px;}
.y17d{bottom:448.615219px;}
.y138{bottom:454.874405px;}
.y81{bottom:459.376053px;}
.y54{bottom:459.448334px;}
.ybd{bottom:459.902710px;}
.y17c{bottom:462.115219px;}
.yd3{bottom:465.048431px;}
.y137{bottom:468.374405px;}
.y17b{bottom:475.615219px;}
.y93{bottom:480.673370px;}
.ybc{bottom:481.127700px;}
.y136{bottom:481.874405px;}
.yd2{bottom:486.273468px;}
.y17a{bottom:489.115219px;}
.y37{bottom:491.586319px;}
.y135{bottom:495.374405px;}
.y80{bottom:501.826035px;}
.y53{bottom:501.898361px;}
.ybb{bottom:502.352692px;}
.y179{bottom:502.615219px;}
.y134{bottom:508.874405px;}
.y36{bottom:509.586319px;}
.y178{bottom:516.115219px;}
.y104{bottom:520.111496px;}
.y133{bottom:522.374405px;}
.y7f{bottom:523.051071px;}
.y52{bottom:523.123352px;}
.yba{bottom:523.577682px;}
.y177{bottom:529.615219px;}
.y35{bottom:532.086319px;}
.y132{bottom:535.874405px;}
.y103{bottom:537.113388px;}
.y176{bottom:543.115219px;}
.y7e{bottom:544.276062px;}
.y51{bottom:544.348343px;}
.yb9{bottom:544.802719px;}
.y131{bottom:549.374405px;}
.y34{bottom:550.086319px;}
.y102{bottom:554.115280px;}
.y175{bottom:556.615219px;}
.y130{bottom:562.874405px;}
.y7d{bottom:565.501053px;}
.y50{bottom:565.573334px;}
.yb8{bottom:566.027710px;}
.y33{bottom:568.086319px;}
.y174{bottom:570.115219px;}
.y101{bottom:571.117355px;}
.y12f{bottom:576.374405px;}
.y173{bottom:583.615219px;}
.y32{bottom:586.086319px;}
.y7c{bottom:586.726044px;}
.y4f{bottom:586.798370px;}
.yb7{bottom:587.252700px;}
.y100{bottom:587.496323px;}
.y12e{bottom:589.874405px;}
.y172{bottom:597.115219px;}
.y12d{bottom:603.374405px;}
.y31{bottom:604.086319px;}
.yff{bottom:605.000244px;}
.y7b{bottom:607.951035px;}
.y4e{bottom:608.023361px;}
.yb6{bottom:608.477692px;}
.y171{bottom:610.615219px;}
.y12c{bottom:616.874405px;}
.y30{bottom:622.086319px;}
.yfe{bottom:622.504211px;}
.y170{bottom:624.115219px;}
.y7a{bottom:629.176071px;}
.y4d{bottom:629.248352px;}
.yb5{bottom:629.702682px;}
.y12b{bottom:630.374405px;}
.y16f{bottom:637.615219px;}
.yfd{bottom:640.008133px;}
.y2f{bottom:640.086319px;}
.y12a{bottom:643.874405px;}
.y79{bottom:650.401062px;}
.y4c{bottom:650.473343px;}
.yb4{bottom:650.927719px;}
.y16e{bottom:651.115219px;}
.y129{bottom:657.374405px;}
.yfc{bottom:657.511963px;}
.y2e{bottom:658.086319px;}
.y16d{bottom:664.615219px;}
.y128{bottom:670.874405px;}
.y78{bottom:671.626053px;}
.y4b{bottom:671.698334px;}
.yb3{bottom:672.152710px;}
.yfb{bottom:675.015884px;}
.y2d{bottom:676.086319px;}
.y16c{bottom:678.115219px;}
.y127{bottom:684.374405px;}
.y16b{bottom:691.615219px;}
.yfa{bottom:692.519852px;}
.y77{bottom:692.851044px;}
.y4a{bottom:692.923370px;}
.yb2{bottom:693.377700px;}
.y2c{bottom:694.086319px;}
.y126{bottom:697.874405px;}
.y16a{bottom:705.115219px;}
.yf9{bottom:707.519852px;}
.y13{bottom:711.111465px;}
.y125{bottom:711.374405px;}
.y2b{bottom:712.086319px;}
.y76{bottom:714.076035px;}
.y49{bottom:714.148361px;}
.yb1{bottom:714.602692px;}
.y169{bottom:718.615219px;}
.y12{bottom:720.111465px;}
.y124{bottom:724.874405px;}
.yf8{bottom:725.023819px;}
.y2a{bottom:730.086319px;}
.y168{bottom:732.115219px;}
.y11{bottom:733.611465px;}
.y75{bottom:735.301071px;}
.y48{bottom:735.373352px;}
.yb0{bottom:735.827682px;}
.y123{bottom:738.374405px;}
.yf7{bottom:740.023819px;}
.y167{bottom:745.615219px;}
.y29{bottom:748.086319px;}
.y10{bottom:751.611465px;}
.y122{bottom:751.874405px;}
.y74{bottom:756.526062px;}
.y47{bottom:756.598343px;}
.yaf{bottom:757.052719px;}
.yf6{bottom:757.527740px;}
.y166{bottom:759.115219px;}
.yf{bottom:760.611465px;}
.y121{bottom:765.374405px;}
.y28{bottom:766.086319px;}
.yf5{bottom:772.527740px;}
.y165{bottom:772.615173px;}
.y73{bottom:777.751007px;}
.y46{bottom:777.823517px;}
.yae{bottom:778.277710px;}
.ye{bottom:778.611420px;}
.y120{bottom:778.874359px;}
.y27{bottom:784.086273px;}
.y164{bottom:786.115173px;}
.yd{bottom:787.611420px;}
.yf4{bottom:790.031708px;}
.y11f{bottom:792.374359px;}
.y72{bottom:798.976044px;}
.y45{bottom:799.048370px;}
.yad{bottom:799.502655px;}
.y163{bottom:799.615173px;}
.yc{bottom:801.111420px;}
.y26{bottom:802.086273px;}
.yf3{bottom:805.031708px;}
.y11e{bottom:805.874359px;}
.y162{bottom:813.115173px;}
.yb{bottom:814.611420px;}
.y71{bottom:820.201080px;}
.y44{bottom:820.273315px;}
.yac{bottom:820.727692px;}
.yf2{bottom:822.535675px;}
.y161{bottom:826.615173px;}
.yf1{bottom:837.535675px;}
.y160{bottom:840.115173px;}
.y70{bottom:841.426025px;}
.y43{bottom:841.498352px;}
.yab{bottom:841.952728px;}
.y15f{bottom:853.615173px;}
.yf0{bottom:855.039642px;}
.y17{bottom:861.316681px;}
.y6f{bottom:862.651062px;}
.y42{bottom:862.723389px;}
.yaa{bottom:863.177673px;}
.y15e{bottom:867.115173px;}
.yef{bottom:870.039642px;}
.y11d{bottom:878.099396px;}
.y15d{bottom:880.615173px;}
.y6e{bottom:883.876007px;}
.y41{bottom:883.948517px;}
.ya9{bottom:884.402710px;}
.yee{bottom:887.543518px;}
.y15c{bottom:894.115173px;}
.y16{bottom:897.316681px;}
.yed{bottom:902.543518px;}
.y6d{bottom:905.101044px;}
.y40{bottom:905.173370px;}
.ya8{bottom:905.627655px;}
.y15b{bottom:907.615173px;}
.y11c{bottom:908.607330px;}
.yec{bottom:920.047485px;}
.y15a{bottom:921.115173px;}
.y11b{bottom:922.107330px;}
.y6c{bottom:926.326080px;}
.y3f{bottom:926.398315px;}
.ya7{bottom:926.852692px;}
.y159{bottom:934.615173px;}
.yeb{bottom:935.047485px;}
.y15{bottom:936.316681px;}
.y11a{bottom:944.111206px;}
.y6b{bottom:947.551025px;}
.y3e{bottom:947.623352px;}
.ya6{bottom:948.077728px;}
.y158{bottom:948.115173px;}
.yea{bottom:952.551270px;}
.y119{bottom:957.611206px;}
.y157{bottom:961.615173px;}
.y6a{bottom:968.776062px;}
.y3d{bottom:968.848389px;}
.ya5{bottom:969.302673px;}
.ye9{bottom:970.167938px;}
.y118{bottom:971.111206px;}
.y156{bottom:975.115173px;}
.y14{bottom:975.316681px;}
.y117{bottom:984.611206px;}
.ye8{bottom:985.167938px;}
.y155{bottom:988.615173px;}
.y69{bottom:990.001007px;}
.y3c{bottom:990.073517px;}
.ya4{bottom:990.527710px;}
.ye7{bottom:1000.167938px;}
.y154{bottom:1002.115173px;}
.y116{bottom:1006.615173px;}
.y68{bottom:1011.226044px;}
.y3b{bottom:1011.298370px;}
.ya3{bottom:1011.752655px;}
.y153{bottom:1015.615173px;}
.ye6{bottom:1017.671814px;}
.y152{bottom:1029.115173px;}
.y67{bottom:1032.451080px;}
.y3a{bottom:1032.523315px;}
.ye5{bottom:1032.671814px;}
.ya2{bottom:1032.977692px;}
.y1{bottom:1036.426208px;}
.y115{bottom:1042.615173px;}
.ye4{bottom:1050.175690px;}
.y66{bottom:1053.676025px;}
.y39{bottom:1053.748352px;}
.ya1{bottom:1054.202728px;}
.y114{bottom:1056.115173px;}
.y25{bottom:1080.736359px;}
.ya{bottom:1099.051208px;}
.y24{bottom:1103.110382px;}
.y9{bottom:1114.051208px;}
.y23{bottom:1125.484314px;}
.y8{bottom:1129.051208px;}
.y38{bottom:1129.426208px;}
.h8{height:29.452500px;}
.h4{height:39.270000px;}
.h19{height:39.984000px;}
.h3{height:41.538000px;}
.h7{height:42.075000px;}
.h1b{height:42.840000px;}
.h1a{height:43.740000px;}
.h13{height:44.784000px;}
.h14{height:44.880000px;}
.h6{height:45.696000px;}
.h5{height:45.744000px;}
.h12{height:46.656000px;}
.h1c{height:47.452500px;}
.h15{height:47.472000px;}
.h16{height:47.988281px;}
.h18{height:50.615890px;}
.h17{height:50.616073px;}
.h11{height:53.406000px;}
.h10{height:53.654399px;}
.hc{height:55.860000px;}
.he{height:56.100000px;}
.hf{height:58.320000px;}
.hb{height:61.120200px;}
.ha{height:69.596779px;}
.hd{height:71.000160px;}
.h2{height:78.896517px;}
.h9{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x8{left:176.456703px;}
.x13{left:184.960648px;}
.x9{left:188.456703px;}
.x14{left:198.956703px;}
.x2{left:267.254402px;}
.x6{left:277.004402px;}
.xc{left:356.885994px;}
.xd{left:420.560532px;}
.xe{left:484.235229px;}
.xf{left:517.330627px;}
.x12{left:567.400635px;}
.x10{left:631.075195px;}
.x4{left:643.521011px;}
.xa{left:657.325058px;}
.x11{left:671.322739px;}
.x5{left:711.573578px;}
.xb{left:738.661789px;}
.x7{left:744.817657px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v5{vertical-align:16.000000pt;}
.v4{vertical-align:17.066732pt;}
.v3{vertical-align:23.466471pt;}
.ls5{letter-spacing:-1.237333pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.400000pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000008pt;}
.ls4{letter-spacing:0.000089pt;}
.ls8{letter-spacing:0.000308pt;}
.ls7{letter-spacing:0.560000pt;}
.ls0{letter-spacing:8.320000pt;}
.ws5{word-spacing:-27.136000pt;}
.ws8{word-spacing:-12.282667pt;}
.ws7{word-spacing:-11.096533pt;}
.ws9{word-spacing:-10.560000pt;}
.ws83{word-spacing:-10.156800pt;}
.wsb6{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws6{word-spacing:-8.993600pt;}
.ws3{word-spacing:-8.760000pt;}
.wsd4{word-spacing:-8.640000pt;}
.wsd5{word-spacing:-8.360000pt;}
.wscc{word-spacing:-8.280000pt;}
.ws1{word-spacing:-7.242667pt;}
.wsd2{word-spacing:-7.200000pt;}
.wsb9{word-spacing:-6.540800pt;}
.ws8e{word-spacing:-6.442667pt;}
.ws4{word-spacing:-6.132000pt;}
.wsb1{word-spacing:-5.749333pt;}
.ws1b{word-spacing:-2.718027pt;}
.ws9e{word-spacing:-1.792000pt;}
.wsd{word-spacing:-0.784000pt;}
.wscb{word-spacing:-0.627200pt;}
.ws54{word-spacing:-0.574933pt;}
.wsbd{word-spacing:-0.560000pt;}
.ws94{word-spacing:-0.522667pt;}
.ws49{word-spacing:-0.470400pt;}
.ws36{word-spacing:-0.313600pt;}
.ws43{word-spacing:-0.261333pt;}
.wsab{word-spacing:-0.209067pt;}
.ws87{word-spacing:-0.156800pt;}
.wscf{word-spacing:-0.104533pt;}
.wsd6{word-spacing:-0.080000pt;}
.ws34{word-spacing:-0.052267pt;}
.wsd3{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws96{word-spacing:0.052267pt;}
.ws58{word-spacing:0.104533pt;}
.ws10{word-spacing:0.149333pt;}
.ws85{word-spacing:0.156800pt;}
.ws61{word-spacing:0.209067pt;}
.wse{word-spacing:0.224000pt;}
.ws21{word-spacing:0.261333pt;}
.ws3d{word-spacing:0.313600pt;}
.ws86{word-spacing:0.365867pt;}
.ws59{word-spacing:0.418133pt;}
.ws9c{word-spacing:0.470400pt;}
.ws19{word-spacing:0.522667pt;}
.ws46{word-spacing:0.574933pt;}
.wsaa{word-spacing:0.627200pt;}
.ws74{word-spacing:0.679467pt;}
.ws8d{word-spacing:0.731733pt;}
.ws47{word-spacing:0.784000pt;}
.ws35{word-spacing:0.836267pt;}
.wsf{word-spacing:0.858667pt;}
.ws5f{word-spacing:0.888533pt;}
.ws4f{word-spacing:0.940800pt;}
.wsc2{word-spacing:0.993067pt;}
.ws2c{word-spacing:1.045333pt;}
.ws6d{word-spacing:1.097600pt;}
.wsa1{word-spacing:1.149867pt;}
.wsb2{word-spacing:1.202133pt;}
.wsa2{word-spacing:1.254400pt;}
.ws39{word-spacing:1.306667pt;}
.ws4c{word-spacing:1.358933pt;}
.ws8c{word-spacing:1.411200pt;}
.wsc{word-spacing:1.456000pt;}
.ws41{word-spacing:1.463467pt;}
.ws53{word-spacing:1.515733pt;}
.wsb{word-spacing:1.568000pt;}
.ws75{word-spacing:1.620267pt;}
.ws62{word-spacing:1.672533pt;}
.ws5a{word-spacing:1.724800pt;}
.ws2f{word-spacing:1.829333pt;}
.ws32{word-spacing:1.881600pt;}
.ws4e{word-spacing:1.933867pt;}
.ws5e{word-spacing:2.038400pt;}
.ws33{word-spacing:2.090667pt;}
.ws50{word-spacing:2.142933pt;}
.ws64{word-spacing:2.195200pt;}
.ws97{word-spacing:2.247467pt;}
.wsae{word-spacing:2.299733pt;}
.ws1e{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.352000pt;}
.ws51{word-spacing:2.404267pt;}
.ws5d{word-spacing:2.456533pt;}
.wsa7{word-spacing:2.508800pt;}
.ws16{word-spacing:2.561067pt;}
.ws70{word-spacing:2.613333pt;}
.ws4b{word-spacing:2.665600pt;}
.ws37{word-spacing:2.717867pt;}
.ws1d{word-spacing:2.730667pt;}
.wsc5{word-spacing:2.770133pt;}
.ws40{word-spacing:2.822400pt;}
.wsac{word-spacing:2.874667pt;}
.ws91{word-spacing:2.926933pt;}
.wsce{word-spacing:2.979200pt;}
.ws3b{word-spacing:3.031467pt;}
.ws20{word-spacing:3.083733pt;}
.ws7b{word-spacing:3.136000pt;}
.ws5b{word-spacing:3.240533pt;}
.ws68{word-spacing:3.292800pt;}
.ws9a{word-spacing:3.345067pt;}
.ws30{word-spacing:3.397333pt;}
.ws55{word-spacing:3.449600pt;}
.ws17{word-spacing:3.501867pt;}
.ws1c{word-spacing:3.520000pt;}
.ws63{word-spacing:3.554133pt;}
.ws7e{word-spacing:3.606400pt;}
.ws15{word-spacing:3.658667pt;}
.ws76{word-spacing:3.763200pt;}
.ws56{word-spacing:3.815467pt;}
.ws5c{word-spacing:3.867733pt;}
.wsb4{word-spacing:3.920000pt;}
.wsbf{word-spacing:3.972267pt;}
.wsbc{word-spacing:4.024533pt;}
.wsa8{word-spacing:4.076800pt;}
.ws92{word-spacing:4.129067pt;}
.ws7f{word-spacing:4.181333pt;}
.ws26{word-spacing:4.233600pt;}
.ws88{word-spacing:4.285867pt;}
.ws24{word-spacing:4.338133pt;}
.ws1a{word-spacing:4.390400pt;}
.ws6f{word-spacing:4.442667pt;}
.wsc9{word-spacing:4.494933pt;}
.ws89{word-spacing:4.547200pt;}
.wsba{word-spacing:4.599467pt;}
.wsc0{word-spacing:4.704000pt;}
.ws44{word-spacing:4.756267pt;}
.ws67{word-spacing:4.808533pt;}
.ws3e{word-spacing:4.860800pt;}
.wscd{word-spacing:4.965333pt;}
.ws79{word-spacing:5.017600pt;}
.wsc3{word-spacing:5.069867pt;}
.wsbe{word-spacing:5.174400pt;}
.ws2e{word-spacing:5.226667pt;}
.ws25{word-spacing:5.278933pt;}
.ws14{word-spacing:5.383467pt;}
.ws4d{word-spacing:5.488000pt;}
.ws7a{word-spacing:5.592533pt;}
.ws2b{word-spacing:5.644800pt;}
.ws12{word-spacing:5.697067pt;}
.ws18{word-spacing:5.749333pt;}
.ws9d{word-spacing:5.801600pt;}
.wsc8{word-spacing:5.853867pt;}
.wsc6{word-spacing:5.906133pt;}
.ws8b{word-spacing:5.958400pt;}
.ws38{word-spacing:6.010667pt;}
.ws84{word-spacing:6.062933pt;}
.ws93{word-spacing:6.115200pt;}
.wsbb{word-spacing:6.167467pt;}
.ws65{word-spacing:6.219733pt;}
.ws48{word-spacing:6.272000pt;}
.ws6e{word-spacing:6.376533pt;}
.ws27{word-spacing:6.428800pt;}
.ws6c{word-spacing:6.481067pt;}
.ws9b{word-spacing:6.533333pt;}
.ws1f{word-spacing:6.585600pt;}
.ws72{word-spacing:6.637867pt;}
.wsa3{word-spacing:6.690133pt;}
.wsa0{word-spacing:6.742400pt;}
.wsc4{word-spacing:6.846933pt;}
.ws95{word-spacing:6.899200pt;}
.ws57{word-spacing:7.056000pt;}
.ws73{word-spacing:7.108267pt;}
.wsa6{word-spacing:7.212800pt;}
.ws3c{word-spacing:7.265067pt;}
.ws77{word-spacing:7.317333pt;}
.ws31{word-spacing:7.369600pt;}
.ws81{word-spacing:7.421867pt;}
.ws7d{word-spacing:7.578667pt;}
.wsb3{word-spacing:7.735467pt;}
.ws22{word-spacing:7.787733pt;}
.ws52{word-spacing:7.892267pt;}
.ws60{word-spacing:7.944533pt;}
.ws8a{word-spacing:7.996800pt;}
.ws28{word-spacing:8.310400pt;}
.ws2a{word-spacing:8.362667pt;}
.wsad{word-spacing:8.467200pt;}
.ws23{word-spacing:8.519467pt;}
.ws4a{word-spacing:8.571733pt;}
.ws3f{word-spacing:8.676267pt;}
.ws29{word-spacing:8.728533pt;}
.ws6a{word-spacing:8.780800pt;}
.wsc7{word-spacing:8.833067pt;}
.ws99{word-spacing:8.937600pt;}
.ws82{word-spacing:9.146667pt;}
.wsc1{word-spacing:9.198933pt;}
.ws69{word-spacing:9.303467pt;}
.ws11{word-spacing:9.512533pt;}
.ws80{word-spacing:9.564800pt;}
.wsaf{word-spacing:9.669333pt;}
.wsb0{word-spacing:10.401067pt;}
.wsca{word-spacing:10.505600pt;}
.ws13{word-spacing:10.557867pt;}
.ws42{word-spacing:10.610133pt;}
.wsa5{word-spacing:10.766933pt;}
.ws2d{word-spacing:10.819200pt;}
.ws45{word-spacing:11.185067pt;}
.wsa9{word-spacing:11.237333pt;}
.ws98{word-spacing:11.760000pt;}
.wsb5{word-spacing:11.916800pt;}
.wsd0{word-spacing:12.334933pt;}
.ws66{word-spacing:12.857600pt;}
.wsa4{word-spacing:13.171200pt;}
.ws7c{word-spacing:13.484800pt;}
.wsd1{word-spacing:13.902933pt;}
.ws78{word-spacing:14.321067pt;}
.ws71{word-spacing:14.425600pt;}
.ws6b{word-spacing:15.836800pt;}
.wsb8{word-spacing:38.451689pt;}
.wsb7{word-spacing:63.881023pt;}
.ws90{word-spacing:1474.618150pt;}
.ws9f{word-spacing:1514.212817pt;}
.ws8f{word-spacing:1612.260817pt;}
.ws0{word-spacing:1729.641551pt;}
._a{margin-left:-2569.717893pt;}
._20{margin-left:-17.588305pt;}
._4{margin-left:-15.514699pt;}
._1d{margin-left:-11.590400pt;}
._1f{margin-left:-9.867733pt;}
._1e{margin-left:-8.676267pt;}
._1c{margin-left:-7.687467pt;}
._3{margin-left:-5.760000pt;}
._8{margin-left:-4.699733pt;}
._e{margin-left:-3.716160pt;}
._2{margin-left:-2.579733pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.032533pt;}
._5{width:1.995733pt;}
._6{width:3.285333pt;}
._7{width:4.300800pt;}
._d{width:5.659176pt;}
._b{width:6.997359pt;}
._c{width:9.081598pt;}
._21{width:11.934421pt;}
._f{width:14.034579pt;}
._9{width:15.800549pt;}
._2b{width:37.982438pt;}
._26{width:47.784526pt;}
._38{width:54.880000pt;}
._36{width:63.680000pt;}
._27{width:73.214376pt;}
._37{width:81.360000pt;}
._23{width:93.139193pt;}
._24{width:118.569043pt;}
._35{width:156.510356pt;}
._31{width:343.495478pt;}
._29{width:355.583390pt;}
._2e{width:368.924811pt;}
._22{width:373.276811pt;}
._34{width:397.959434pt;}
._33{width:452.210145pt;}
._25{width:486.731701pt;}
._28{width:520.423390pt;}
._30{width:537.206367pt;}
._2d{width:583.243701pt;}
._2f{width:586.657034pt;}
._32{width:673.893790pt;}
._2a{width:819.634601pt;}
._1a{width:956.241617pt;}
._2c{width:1027.398868pt;}
._18{width:1063.770150pt;}
._19{width:1139.365884pt;}
._16{width:1198.342950pt;}
._17{width:1206.449617pt;}
._1b{width:1232.228817pt;}
._14{width:1263.802150pt;}
._12{width:1307.034684pt;}
._11{width:1340.900817pt;}
._13{width:1347.087484pt;}
._10{width:1355.971217pt;}
._15{width:1362.252817pt;}
.fs4{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fsb{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs6{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:78.667068pt;}
.ycf{bottom:82.546666pt;}
.y195{bottom:85.035731pt;}
.y92{bottom:87.600932pt;}
.y65{bottom:87.665202pt;}
.y113{bottom:89.372264pt;}
.ya0{bottom:91.995463pt;}
.y194{bottom:97.035736pt;}
.y7{bottom:97.661865pt;}
.yce{bottom:98.105733pt;}
.y112{bottom:101.372264pt;}
.y151{bottom:104.332804pt;}
.y91{bottom:106.467600pt;}
.y64{bottom:106.531871pt;}
.y9f{bottom:107.554535pt;}
.y6{bottom:108.328532pt;}
.ye3{bottom:111.509735pt;}
.y111{bottom:113.372264pt;}
.ycd{bottom:113.664663pt;}
.y150{bottom:116.332804pt;}
.y5{bottom:118.995199pt;}
.y9e{bottom:123.113597pt;}
.y90{bottom:125.334269pt;}
.y110{bottom:125.372264pt;}
.y63{bottom:125.398671pt;}
.y14f{bottom:128.332804pt;}
.ycc{bottom:129.223733pt;}
.y4{bottom:129.661865pt;}
.ye2{bottom:130.376272pt;}
.y193{bottom:134.769063pt;}
.y10f{bottom:137.372264pt;}
.y9d{bottom:138.672536pt;}
.y3{bottom:140.328532pt;}
.y14e{bottom:140.332804pt;}
.y8f{bottom:144.200938pt;}
.y62{bottom:144.265198pt;}
.ycb{bottom:144.782796pt;}
.y192{bottom:146.769063pt;}
.ye1{bottom:149.243062pt;}
.y2{bottom:150.995199pt;}
.y14d{bottom:152.332804pt;}
.y9c{bottom:154.231598pt;}
.y10e{bottom:156.931335pt;}
.y191{bottom:158.769063pt;}
.yca{bottom:160.341868pt;}
.y8e{bottom:163.067596pt;}
.y61{bottom:163.131866pt;}
.y14c{bottom:164.332804pt;}
.ye0{bottom:168.109731pt;}
.y10d{bottom:168.931335pt;}
.y9b{bottom:169.790670pt;}
.y190{bottom:170.769063pt;}
.yc9{bottom:175.900940pt;}
.y14b{bottom:176.332804pt;}
.y10c{bottom:180.931335pt;}
.y8d{bottom:181.934265pt;}
.y60{bottom:181.998535pt;}
.y18f{bottom:182.769063pt;}
.y9a{bottom:185.349731pt;}
.ydf{bottom:186.976257pt;}
.y14a{bottom:188.332804pt;}
.yc8{bottom:191.460002pt;}
.y18e{bottom:194.769063pt;}
.y22{bottom:197.961731pt;}
.y149{bottom:200.332804pt;}
.y8c{bottom:200.800924pt;}
.y5f{bottom:200.865194pt;}
.y99{bottom:200.908793pt;}
.yde{bottom:205.843058pt;}
.y18d{bottom:206.769063pt;}
.yc7{bottom:207.019063pt;}
.y10b{bottom:211.829061pt;}
.y148{bottom:212.332804pt;}
.y98{bottom:216.467875pt;}
.y21{bottom:216.828410pt;}
.y18c{bottom:218.769063pt;}
.y8b{bottom:219.667603pt;}
.y5e{bottom:219.731995pt;}
.yc6{bottom:222.578125pt;}
.y147{bottom:224.332804pt;}
.ydd{bottom:224.709595pt;}
.y18b{bottom:230.769063pt;}
.y97{bottom:232.026937pt;}
.y20{bottom:235.695068pt;}
.y146{bottom:236.332804pt;}
.yc5{bottom:238.137207pt;}
.y8a{bottom:238.534261pt;}
.y5d{bottom:238.598531pt;}
.y10a{bottom:238.947062pt;}
.y18a{bottom:242.769063pt;}
.ydc{bottom:243.576396pt;}
.y96{bottom:247.585999pt;}
.y145{bottom:248.332804pt;}
.y109{bottom:250.947062pt;}
.yc4{bottom:253.796265pt;}
.y1f{bottom:254.561727pt;}
.y189{bottom:254.769063pt;}
.y89{bottom:257.400940pt;}
.y5c{bottom:257.465210pt;}
.y144{bottom:260.332804pt;}
.ydb{bottom:262.443075pt;}
.y95{bottom:263.245076pt;}
.y188{bottom:266.769063pt;}
.yc3{bottom:269.355326pt;}
.y143{bottom:272.332804pt;}
.y1e{bottom:273.428406pt;}
.y88{bottom:276.267598pt;}
.y5b{bottom:276.331868pt;}
.y187{bottom:278.769063pt;}
.y94{bottom:278.804138pt;}
.yda{bottom:281.309733pt;}
.y142{bottom:284.332804pt;}
.y108{bottom:288.680400pt;}
.y186{bottom:290.769063pt;}
.y1d{bottom:292.295064pt;}
.y87{bottom:295.134257pt;}
.y5a{bottom:295.198527pt;}
.yc2{bottom:295.602397pt;}
.y141{bottom:296.332804pt;}
.yd9{bottom:300.176392pt;}
.y107{bottom:300.680400pt;}
.y185{bottom:302.769063pt;}
.y140{bottom:308.332804pt;}
.y1c{bottom:311.161743pt;}
.y106{bottom:312.680400pt;}
.y86{bottom:314.000936pt;}
.y59{bottom:314.065206pt;}
.yc1{bottom:314.469076pt;}
.y184{bottom:314.769063pt;}
.yd8{bottom:319.043070pt;}
.y13f{bottom:320.332804pt;}
.y105{bottom:324.680400pt;}
.y183{bottom:326.769063pt;}
.y1b{bottom:330.028402pt;}
.y13e{bottom:332.332804pt;}
.y85{bottom:332.867594pt;}
.y58{bottom:332.931864pt;}
.yc0{bottom:333.335733pt;}
.yd7{bottom:337.909729pt;}
.y182{bottom:338.769063pt;}
.y13d{bottom:344.332804pt;}
.y1a{bottom:348.895060pt;}
.y181{bottom:350.769084pt;}
.y84{bottom:351.734253pt;}
.y57{bottom:351.798543pt;}
.ybf{bottom:352.202393pt;}
.y13c{bottom:356.332804pt;}
.yd6{bottom:356.776286pt;}
.y180{bottom:362.769084pt;}
.yd1{bottom:362.772135pt;}
.y19{bottom:367.761719pt;}
.y13b{bottom:368.332804pt;}
.y83{bottom:370.600952pt;}
.y56{bottom:370.665202pt;}
.ybe{bottom:371.069051pt;}
.y17f{bottom:374.769084pt;}
.yd5{bottom:375.643066pt;}
.y13a{bottom:380.332804pt;}
.y18{bottom:386.628418pt;}
.y17e{bottom:386.769084pt;}
.y82{bottom:389.467611pt;}
.y55{bottom:389.531860pt;}
.y139{bottom:392.332804pt;}
.yd4{bottom:394.509725pt;}
.y17d{bottom:398.769084pt;}
.y138{bottom:404.332804pt;}
.y81{bottom:408.334269pt;}
.y54{bottom:408.398519pt;}
.ybd{bottom:408.802409pt;}
.y17c{bottom:410.769084pt;}
.yd3{bottom:413.376383pt;}
.y137{bottom:416.332804pt;}
.y17b{bottom:422.769084pt;}
.y93{bottom:427.265218pt;}
.ybc{bottom:427.669067pt;}
.y136{bottom:428.332804pt;}
.yd2{bottom:432.243083pt;}
.y17a{bottom:434.769084pt;}
.y37{bottom:436.965617pt;}
.y135{bottom:440.332804pt;}
.y80{bottom:446.067586pt;}
.y53{bottom:446.131877pt;}
.ybb{bottom:446.535726pt;}
.y179{bottom:446.769084pt;}
.y134{bottom:452.332804pt;}
.y36{bottom:452.965617pt;}
.y178{bottom:458.769084pt;}
.y104{bottom:462.321330pt;}
.y133{bottom:464.332804pt;}
.y7f{bottom:464.934285pt;}
.y52{bottom:464.998535pt;}
.yba{bottom:465.402384pt;}
.y177{bottom:470.769084pt;}
.y35{bottom:472.965617pt;}
.y132{bottom:476.332804pt;}
.y103{bottom:477.434123pt;}
.y176{bottom:482.769084pt;}
.y7e{bottom:483.800944pt;}
.y51{bottom:483.865194pt;}
.yb9{bottom:484.269084pt;}
.y131{bottom:488.332804pt;}
.y34{bottom:488.965617pt;}
.y102{bottom:492.546916pt;}
.y175{bottom:494.769084pt;}
.y130{bottom:500.332804pt;}
.y7d{bottom:502.667603pt;}
.y50{bottom:502.731852pt;}
.yb8{bottom:503.135742pt;}
.y33{bottom:504.965617pt;}
.y174{bottom:506.769084pt;}
.y101{bottom:507.659871pt;}
.y12f{bottom:512.332804pt;}
.y173{bottom:518.769084pt;}
.y32{bottom:520.965617pt;}
.y7c{bottom:521.534261pt;}
.y4f{bottom:521.598551pt;}
.yb7{bottom:522.002400pt;}
.y100{bottom:522.218953pt;}
.y12e{bottom:524.332804pt;}
.y172{bottom:530.769084pt;}
.y12d{bottom:536.332804pt;}
.y31{bottom:536.965617pt;}
.yff{bottom:537.777995pt;}
.y7b{bottom:540.400920pt;}
.y4e{bottom:540.465210pt;}
.yb6{bottom:540.869059pt;}
.y171{bottom:542.769084pt;}
.y12c{bottom:548.332804pt;}
.y30{bottom:552.965617pt;}
.yfe{bottom:553.337077pt;}
.y170{bottom:554.769084pt;}
.y7a{bottom:559.267619pt;}
.y4d{bottom:559.331868pt;}
.yb5{bottom:559.735718pt;}
.y12b{bottom:560.332804pt;}
.y16f{bottom:566.769084pt;}
.yfd{bottom:568.896118pt;}
.y2f{bottom:568.965617pt;}
.y12a{bottom:572.332804pt;}
.y79{bottom:578.134277pt;}
.y4c{bottom:578.198527pt;}
.yb4{bottom:578.602417pt;}
.y16e{bottom:578.769084pt;}
.y129{bottom:584.332804pt;}
.yfc{bottom:584.455078pt;}
.y2e{bottom:584.965617pt;}
.y16d{bottom:590.769084pt;}
.y128{bottom:596.332804pt;}
.y78{bottom:597.000936pt;}
.y4b{bottom:597.065186pt;}
.yb3{bottom:597.469076pt;}
.yfb{bottom:600.014119pt;}
.y2d{bottom:600.965617pt;}
.y16c{bottom:602.769084pt;}
.y127{bottom:608.332804pt;}
.y16b{bottom:614.769084pt;}
.yfa{bottom:615.573201pt;}
.y77{bottom:615.867594pt;}
.y4a{bottom:615.931885pt;}
.yb2{bottom:616.335733pt;}
.y2c{bottom:616.965617pt;}
.y126{bottom:620.332804pt;}
.y16a{bottom:626.769084pt;}
.yf9{bottom:628.906535pt;}
.y13{bottom:632.099080pt;}
.y125{bottom:632.332804pt;}
.y2b{bottom:632.965617pt;}
.y76{bottom:634.734253pt;}
.y49{bottom:634.798543pt;}
.yb1{bottom:635.202393pt;}
.y169{bottom:638.769084pt;}
.y12{bottom:640.099080pt;}
.y124{bottom:644.332804pt;}
.yf8{bottom:644.465617pt;}
.y2a{bottom:648.965617pt;}
.y168{bottom:650.769084pt;}
.y11{bottom:652.099080pt;}
.y75{bottom:653.600952pt;}
.y48{bottom:653.665202pt;}
.yb0{bottom:654.069051pt;}
.y123{bottom:656.332804pt;}
.yf7{bottom:657.798950pt;}
.y167{bottom:662.769084pt;}
.y29{bottom:664.965617pt;}
.y10{bottom:668.099080pt;}
.y122{bottom:668.332804pt;}
.y74{bottom:672.467611pt;}
.y47{bottom:672.531860pt;}
.yaf{bottom:672.935750pt;}
.yf6{bottom:673.357992pt;}
.y166{bottom:674.769084pt;}
.yf{bottom:676.099080pt;}
.y121{bottom:680.332804pt;}
.y28{bottom:680.965617pt;}
.yf5{bottom:686.691325pt;}
.y165{bottom:686.769043pt;}
.y73{bottom:691.334229pt;}
.y46{bottom:691.398682pt;}
.yae{bottom:691.802409pt;}
.ye{bottom:692.099040pt;}
.y120{bottom:692.332764pt;}
.y27{bottom:696.965576pt;}
.y164{bottom:698.769043pt;}
.yd{bottom:700.099040pt;}
.yf4{bottom:702.250407pt;}
.y11f{bottom:704.332764pt;}
.y72{bottom:710.200928pt;}
.y45{bottom:710.265218pt;}
.yad{bottom:710.669027pt;}
.y163{bottom:710.769043pt;}
.yc{bottom:712.099040pt;}
.y26{bottom:712.965576pt;}
.yf3{bottom:715.583740pt;}
.y11e{bottom:716.332764pt;}
.y162{bottom:722.769043pt;}
.yb{bottom:724.099040pt;}
.y71{bottom:729.067627pt;}
.y44{bottom:729.131836pt;}
.yac{bottom:729.535726pt;}
.yf2{bottom:731.142822pt;}
.y161{bottom:734.769043pt;}
.yf1{bottom:744.476156pt;}
.y160{bottom:746.769043pt;}
.y70{bottom:747.934245pt;}
.y43{bottom:747.998535pt;}
.yab{bottom:748.402425pt;}
.y15f{bottom:758.769043pt;}
.yf0{bottom:760.035238pt;}
.y17{bottom:765.614827pt;}
.y6f{bottom:766.800944pt;}
.y42{bottom:766.865234pt;}
.yaa{bottom:767.269043pt;}
.y15e{bottom:770.769043pt;}
.yef{bottom:773.368571pt;}
.y11d{bottom:780.532796pt;}
.y15d{bottom:782.769043pt;}
.y6e{bottom:785.667562pt;}
.y41{bottom:785.732015pt;}
.ya9{bottom:786.135742pt;}
.yee{bottom:788.927572pt;}
.y15c{bottom:794.769043pt;}
.y16{bottom:797.614827pt;}
.yed{bottom:802.260905pt;}
.y6d{bottom:804.534261pt;}
.y40{bottom:804.598551pt;}
.ya8{bottom:805.002360pt;}
.y15b{bottom:806.769043pt;}
.y11c{bottom:807.650960pt;}
.yec{bottom:817.819987pt;}
.y15a{bottom:818.769043pt;}
.y11b{bottom:819.650960pt;}
.y6c{bottom:823.400960pt;}
.y3f{bottom:823.465169pt;}
.ya7{bottom:823.869059pt;}
.y159{bottom:830.769043pt;}
.yeb{bottom:831.153320pt;}
.y15{bottom:832.281494pt;}
.y11a{bottom:839.209961pt;}
.y6b{bottom:842.267578pt;}
.y3e{bottom:842.331868pt;}
.ya6{bottom:842.735758pt;}
.y158{bottom:842.769043pt;}
.yea{bottom:846.712240pt;}
.y119{bottom:851.209961pt;}
.y157{bottom:854.769043pt;}
.y6a{bottom:861.134277pt;}
.y3d{bottom:861.198568pt;}
.ya5{bottom:861.602376pt;}
.ye9{bottom:862.371501pt;}
.y118{bottom:863.209961pt;}
.y156{bottom:866.769043pt;}
.y14{bottom:866.948161pt;}
.y117{bottom:875.209961pt;}
.ye8{bottom:875.704834pt;}
.y155{bottom:878.769043pt;}
.y69{bottom:880.000895pt;}
.y3c{bottom:880.065348pt;}
.ya4{bottom:880.469076pt;}
.ye7{bottom:889.038167pt;}
.y154{bottom:890.769043pt;}
.y116{bottom:894.769043pt;}
.y68{bottom:898.867594pt;}
.y3b{bottom:898.931885pt;}
.ya3{bottom:899.335693pt;}
.y153{bottom:902.769043pt;}
.ye6{bottom:904.597168pt;}
.y152{bottom:914.769043pt;}
.y67{bottom:917.734294pt;}
.y3a{bottom:917.798503pt;}
.ye5{bottom:917.930501pt;}
.ya2{bottom:918.202393pt;}
.y1{bottom:921.267741pt;}
.y115{bottom:926.769043pt;}
.ye4{bottom:933.489502pt;}
.y66{bottom:936.600911pt;}
.y39{bottom:936.665202pt;}
.ya1{bottom:937.069092pt;}
.y114{bottom:938.769043pt;}
.y25{bottom:960.654541pt;}
.ya{bottom:976.934408pt;}
.y24{bottom:980.542562pt;}
.y9{bottom:990.267741pt;}
.y23{bottom:1000.430501pt;}
.y8{bottom:1003.601074pt;}
.y38{bottom:1003.934408pt;}
.h8{height:26.180000pt;}
.h4{height:34.906667pt;}
.h19{height:35.541333pt;}
.h3{height:36.922667pt;}
.h7{height:37.400000pt;}
.h1b{height:38.080000pt;}
.h1a{height:38.880000pt;}
.h13{height:39.808000pt;}
.h14{height:39.893333pt;}
.h6{height:40.618667pt;}
.h5{height:40.661333pt;}
.h12{height:41.472000pt;}
.h1c{height:42.180000pt;}
.h15{height:42.197333pt;}
.h16{height:42.656250pt;}
.h18{height:44.991902pt;}
.h17{height:44.992065pt;}
.h11{height:47.472000pt;}
.h10{height:47.692799pt;}
.hc{height:49.653333pt;}
.he{height:49.866667pt;}
.hf{height:51.840000pt;}
.hb{height:54.329067pt;}
.ha{height:61.863804pt;}
.hd{height:63.111253pt;}
.h2{height:70.130237pt;}
.h9{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x8{left:156.850403pt;}
.x13{left:164.409465pt;}
.x9{left:167.517069pt;}
.x14{left:176.850403pt;}
.x2{left:237.559469pt;}
.x6{left:246.226135pt;}
.xc{left:317.231995pt;}
.xd{left:373.831584pt;}
.xe{left:430.431315pt;}
.xf{left:459.849447pt;}
.x12{left:504.356120pt;}
.x10{left:560.955729pt;}
.x4{left:572.018677pt;}
.xa{left:584.288940pt;}
.x11{left:596.731323pt;}
.x5{left:632.509847pt;}
.xb{left:656.588257pt;}
.x7{left:662.060140pt;}
}




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