
    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_204a5626a3f08c1c3dd768c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_bd80215163ae472ba4cb97e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_11ac770bf3acf3eaebc10910.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_d0146d1b5631fbf591f6215d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_e8e650e846751a87f973cfcf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_d0e3811db8a90d1d57f9ce57.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.124000;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_c666982714bd260c3a79bfc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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_0fc76d1d5a864100c006b4af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_2894f1efafe4e71adc43b622.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.858398;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_c55089178636a442491756b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.020000;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_5e54efbc6d25733a5da30398.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37056011dcfa5e83df771535.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_c9e002fdc5fc14ba8bea50af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.123000px;}
.v2{vertical-align:33.059520px;}
.ls12{letter-spacing:-1.523520px;}
.ls4e{letter-spacing:-1.059840px;}
.ls28{letter-spacing:-0.927360px;}
.ls4d{letter-spacing:-0.861120px;}
.ls10{letter-spacing:-0.794880px;}
.lsf{letter-spacing:-0.728640px;}
.ls1f{letter-spacing:-0.673920px;}
.ls53{letter-spacing:-0.662400px;}
.ls55{letter-spacing:-0.596160px;}
.ls2e{letter-spacing:-0.589680px;}
.ls7{letter-spacing:-0.504000px;}
.ls31{letter-spacing:-0.463680px;}
.ls20{letter-spacing:-0.397440px;}
.ls54{letter-spacing:-0.364320px;}
.ls43{letter-spacing:-0.358560px;}
.ls21{letter-spacing:-0.331200px;}
.ls30{letter-spacing:-0.311040px;}
.ls19{letter-spacing:-0.298800px;}
.ls8{letter-spacing:-0.287280px;}
.ls36{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.264960px;}
.ls42{letter-spacing:-0.239040px;}
.ls5{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.198720px;}
.ls1d{letter-spacing:-0.179280px;}
.ls35{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132480px;}
.ls37{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.066240px;}
.ls1a{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.066240px;}
.ls51{letter-spacing:0.084240px;}
.ls3{letter-spacing:0.095760px;}
.ls2d{letter-spacing:0.132480px;}
.ls2a{letter-spacing:0.149760px;}
.ls3a{letter-spacing:0.168480px;}
.ls13{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.191520px;}
.lse{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.239040px;}
.ls16{letter-spacing:0.258336px;}
.ls15{letter-spacing:0.264960px;}
.ls1{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.298800px;}
.ls4a{letter-spacing:0.304704px;}
.ls11{letter-spacing:0.311040px;}
.ls17{letter-spacing:0.317952px;}
.ls34{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.331200px;}
.lsb{letter-spacing:0.336960px;}
.ls50{letter-spacing:0.337824px;}
.ls4c{letter-spacing:0.351072px;}
.ls1e{letter-spacing:0.358560px;}
.ls4f{letter-spacing:0.370944px;}
.ls23{letter-spacing:0.377568px;}
.ls26{letter-spacing:0.417312px;}
.ls4b{letter-spacing:0.483552px;}
.ls18{letter-spacing:0.582912px;}
.ls38{letter-spacing:0.622080px;}
.ls2c{letter-spacing:0.622656px;}
.ls47{letter-spacing:1.722240px;}
.ls46{letter-spacing:2.205792px;}
.ls32{letter-spacing:2.450880px;}
.ls39{letter-spacing:3.179520px;}
.ls45{letter-spacing:3.841920px;}
.ls48{letter-spacing:4.570560px;}
.ls2b{letter-spacing:5.299200px;}
.ls24{letter-spacing:6.080832px;}
.ls22{letter-spacing:7.485120px;}
.ls44{letter-spacing:8.213760px;}
.ls49{letter-spacing:11.790720px;}
.ls29{letter-spacing:14.572800px;}
.ls25{letter-spacing:16.096320px;}
.ls33{letter-spacing:28.218240px;}
.ls52{letter-spacing:40.605120px;}
.ls2f{letter-spacing:78.759360px;}
.ls3d{letter-spacing:198.881280px;}
.ls3e{letter-spacing:214.000560px;}
.ls41{letter-spacing:229.119840px;}
.ls3f{letter-spacing:244.956240px;}
.ls40{letter-spacing:259.358400px;}
.ls3b{letter-spacing:260.792640px;}
.ls3c{letter-spacing:261.509760px;}
.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;}
}
.ws89{word-spacing:-66.240000px;}
.ws5{word-spacing:-21.737520px;}
.wsa0{word-spacing:-19.206720px;}
.wsc5{word-spacing:-19.122480px;}
.ws0{word-spacing:-18.984000px;}
.ws3c{word-spacing:-18.364320px;}
.ws9f{word-spacing:-17.884800px;}
.ws76{word-spacing:-17.573760px;}
.ws8a{word-spacing:-17.262720px;}
.ws3{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.056000px;}
.wscc{word-spacing:-15.897600px;}
.ws4{word-spacing:-15.768000px;}
.wsd0{word-spacing:-15.765120px;}
.wsd1{word-spacing:-15.698880px;}
.ws6{word-spacing:-15.566400px;}
.ws3d{word-spacing:-15.433920px;}
.ws5d{word-spacing:-15.367680px;}
.ws8{word-spacing:-15.301440px;}
.wsad{word-spacing:-15.235200px;}
.wsa1{word-spacing:-15.168960px;}
.ws77{word-spacing:-15.102720px;}
.ws7a{word-spacing:-14.970240px;}
.ws79{word-spacing:-14.904000px;}
.ws7{word-spacing:-14.837760px;}
.ws78{word-spacing:-14.705280px;}
.wsd4{word-spacing:-14.506560px;}
.ws3b{word-spacing:-13.864320px;}
.ws39{word-spacing:-13.804560px;}
.ws38{word-spacing:-13.505760px;}
.ws3a{word-spacing:-13.446000px;}
.ws90{word-spacing:-13.326480px;}
.wsa5{word-spacing:-13.266720px;}
.ws9e{word-spacing:-13.206960px;}
.wsa6{word-spacing:-13.147200px;}
.ws92{word-spacing:-12.096000px;}
.ws91{word-spacing:-12.042000px;}
.ws93{word-spacing:-11.988000px;}
.wsd5{word-spacing:-7.418880px;}
.wsa4{word-spacing:-4.040640px;}
.ws74{word-spacing:-3.643200px;}
.wsb5{word-spacing:-3.510720px;}
.ws73{word-spacing:-3.312000px;}
.wsb4{word-spacing:-3.113280px;}
.wsb8{word-spacing:-3.047040px;}
.wsb9{word-spacing:-2.980800px;}
.ws5c{word-spacing:-2.914560px;}
.ws28{word-spacing:-2.583360px;}
.ws8b{word-spacing:-2.384640px;}
.ws53{word-spacing:-2.185920px;}
.ws50{word-spacing:-1.854720px;}
.ws58{word-spacing:-1.523520px;}
.wsc1{word-spacing:-1.457280px;}
.ws1c{word-spacing:-1.391040px;}
.ws1d{word-spacing:-1.192320px;}
.wscb{word-spacing:-0.993600px;}
.wsd7{word-spacing:-0.927360px;}
.ws95{word-spacing:-0.861120px;}
.ws7f{word-spacing:-0.794880px;}
.ws83{word-spacing:-0.728640px;}
.ws26{word-spacing:-0.622080px;}
.wsce{word-spacing:-0.596160px;}
.ws84{word-spacing:-0.529920px;}
.wsc7{word-spacing:-0.505440px;}
.ws4d{word-spacing:-0.463680px;}
.ws11{word-spacing:-0.336960px;}
.ws82{word-spacing:-0.331200px;}
.ws9b{word-spacing:-0.324000px;}
.ws61{word-spacing:-0.311040px;}
.wsa9{word-spacing:-0.298800px;}
.wsb{word-spacing:-0.288000px;}
.wscf{word-spacing:-0.264960px;}
.ws40{word-spacing:-0.239040px;}
.wsa{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.198720px;}
.wsa7{word-spacing:-0.179280px;}
.wsbd{word-spacing:-0.168480px;}
.wsa3{word-spacing:-0.132480px;}
.ws41{word-spacing:-0.119520px;}
.wsd{word-spacing:-0.095760px;}
.wsd6{word-spacing:-0.084240px;}
.ws59{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws3f{word-spacing:0.059760px;}
.ws75{word-spacing:0.066240px;}
.ws9{word-spacing:0.072000px;}
.wsf{word-spacing:0.132480px;}
.wsc{word-spacing:0.144000px;}
.ws81{word-spacing:0.198720px;}
.ws9d{word-spacing:0.216000px;}
.ws42{word-spacing:0.239040px;}
.ws87{word-spacing:0.252720px;}
.ws10{word-spacing:0.264960px;}
.ws9c{word-spacing:0.270000px;}
.wse{word-spacing:0.287280px;}
.ws54{word-spacing:0.331200px;}
.ws43{word-spacing:0.358560px;}
.ws25{word-spacing:0.397440px;}
.wsa8{word-spacing:0.418320px;}
.wsab{word-spacing:0.463680px;}
.ws3e{word-spacing:0.478080px;}
.ws4b{word-spacing:0.529920px;}
.ws60{word-spacing:0.596160px;}
.ws5f{word-spacing:0.662400px;}
.ws7d{word-spacing:0.728640px;}
.ws23{word-spacing:0.794880px;}
.wsd2{word-spacing:0.861120px;}
.ws64{word-spacing:0.927360px;}
.ws20{word-spacing:0.993600px;}
.wsc0{word-spacing:1.059840px;}
.ws2a{word-spacing:1.126080px;}
.wsd3{word-spacing:1.192320px;}
.wsaa{word-spacing:1.254960px;}
.ws2f{word-spacing:1.523520px;}
.ws1f{word-spacing:1.722240px;}
.ws30{word-spacing:1.854720px;}
.wsba{word-spacing:1.920960px;}
.ws1e{word-spacing:1.987200px;}
.ws6b{word-spacing:2.119680px;}
.ws69{word-spacing:2.450880px;}
.ws6a{word-spacing:2.715840px;}
.ws55{word-spacing:3.179520px;}
.wsb3{word-spacing:3.312000px;}
.wsa2{word-spacing:3.378240px;}
.ws86{word-spacing:3.510720px;}
.ws15{word-spacing:3.908160px;}
.ws14{word-spacing:4.040640px;}
.ws7c{word-spacing:4.173120px;}
.ws96{word-spacing:4.239360px;}
.ws72{word-spacing:4.305600px;}
.ws1b{word-spacing:4.570560px;}
.ws35{word-spacing:4.703040px;}
.ws7e{word-spacing:4.835520px;}
.ws12{word-spacing:5.299200px;}
.ws27{word-spacing:5.431680px;}
.ws85{word-spacing:5.497920px;}
.ws13{word-spacing:5.564160px;}
.ws5e{word-spacing:5.696640px;}
.ws8f{word-spacing:5.762880px;}
.ws17{word-spacing:6.027840px;}
.ws6c{word-spacing:6.160320px;}
.wsc4{word-spacing:6.292800px;}
.ws7b{word-spacing:6.425280px;}
.ws48{word-spacing:6.756480px;}
.ws47{word-spacing:6.888960px;}
.ws33{word-spacing:7.485120px;}
.wsb7{word-spacing:7.750080px;}
.wsc2{word-spacing:7.882560px;}
.ws49{word-spacing:8.213760px;}
.wsbc{word-spacing:8.346240px;}
.ws4e{word-spacing:8.478720px;}
.ws24{word-spacing:8.942400px;}
.wsc9{word-spacing:9.273600px;}
.wsb0{word-spacing:9.604800px;}
.ws63{word-spacing:9.671040px;}
.wsaf{word-spacing:9.869760px;}
.ws4f{word-spacing:10.002240px;}
.wsbb{word-spacing:10.134720px;}
.ws99{word-spacing:10.333440px;}
.wsac{word-spacing:10.465920px;}
.wsae{word-spacing:10.598400px;}
.ws19{word-spacing:11.062080px;}
.wsc3{word-spacing:11.260800px;}
.ws1a{word-spacing:11.327040px;}
.ws80{word-spacing:11.790720px;}
.wsb2{word-spacing:12.055680px;}
.ws44{word-spacing:12.188160px;}
.ws45{word-spacing:12.519360px;}
.ws46{word-spacing:12.651840px;}
.wsb6{word-spacing:12.718080px;}
.ws94{word-spacing:13.248000px;}
.ws22{word-spacing:13.976640px;}
.wsc8{word-spacing:14.109120px;}
.ws21{word-spacing:14.705280px;}
.ws8e{word-spacing:14.837760px;}
.wsbf{word-spacing:14.904000px;}
.ws70{word-spacing:15.102720px;}
.ws6f{word-spacing:15.168960px;}
.ws6e{word-spacing:15.367680px;}
.ws6d{word-spacing:16.096320px;}
.ws34{word-spacing:16.228800px;}
.ws67{word-spacing:16.493760px;}
.ws8c{word-spacing:16.824960px;}
.ws32{word-spacing:16.957440px;}
.ws66{word-spacing:17.089920px;}
.ws65{word-spacing:17.553600px;}
.ws68{word-spacing:17.686080px;}
.ws88{word-spacing:18.282240px;}
.wsbe{word-spacing:19.010880px;}
.ws98{word-spacing:19.739520px;}
.ws97{word-spacing:20.004480px;}
.ws16{word-spacing:20.468160px;}
.ws18{word-spacing:21.130560px;}
.ws36{word-spacing:21.859200px;}
.ws37{word-spacing:21.991680px;}
.ws5b{word-spacing:22.389120px;}
.ws71{word-spacing:22.587840px;}
.ws5a{word-spacing:22.720320px;}
.ws4c{word-spacing:24.045120px;}
.ws56{word-spacing:24.575040px;}
.ws8d{word-spacing:24.773760px;}
.ws57{word-spacing:25.171200px;}
.ws2e{word-spacing:26.164800px;}
.ws2d{word-spacing:26.231040px;}
.ws51{word-spacing:26.893440px;}
.ws52{word-spacing:27.622080px;}
.wscd{word-spacing:27.754560px;}
.ws9a{word-spacing:27.887040px;}
.wsca{word-spacing:29.808000px;}
.wsc6{word-spacing:32.656320px;}
.ws4a{word-spacing:34.842240px;}
.wsb1{word-spacing:35.570880px;}
.ws31{word-spacing:37.160640px;}
.ws2b{word-spacing:50.077440px;}
.ws2c{word-spacing:138.507840px;}
.ws29{word-spacing:165.997440px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-6.049152px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.008000px;}
._9{width:2.209920px;}
._0{width:5.587200px;}
._8{width:6.841920px;}
._e{width:8.015040px;}
._d{width:12.519360px;}
._6{width:25.285440px;}
._a{width:28.132800px;}
._b{width:138.377400px;}
._c{width:848.998080px;}
._7{width:960.542400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:3.959850px;}
.y126{bottom:3.960000px;}
.ya2{bottom:4.500000px;}
.yc{bottom:8.040000px;}
.y125{bottom:22.140000px;}
.y136{bottom:22.320000px;}
.yab{bottom:24.660000px;}
.y47{bottom:37.978920px;}
.y15d{bottom:40.500000px;}
.y142{bottom:40.680000px;}
.ya8{bottom:44.820000px;}
.y1b{bottom:53.100000px;}
.y46{bottom:56.340180px;}
.y147{bottom:58.860000px;}
.ya4{bottom:64.980000px;}
.y45{bottom:74.701440px;}
.y128{bottom:77.220000px;}
.y14{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.y1a6{bottom:118.209600px;}
.y1c8{bottom:125.376480px;}
.y212{bottom:127.103760px;}
.y6e{bottom:129.183120px;}
.y164{bottom:130.518720px;}
.y1f7{bottom:131.176080px;}
.y1e2{bottom:132.521040px;}
.y42{bottom:133.431840px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y26f{bottom:137.704320px;}
.y1a5{bottom:142.685280px;}
.y93{bottom:147.532320px;}
.y1c7{bottom:149.852160px;}
.y211{bottom:151.579440px;}
.ybb{bottom:152.110800px;}
.y6d{bottom:153.840960px;}
.y15{bottom:154.950000px;}
.y163{bottom:154.994400px;}
.y1f6{bottom:155.833920px;}
.yf{bottom:156.015000px;}
.y1e1{bottom:157.178880px;}
.y16{bottom:157.830000px;}
.y41{bottom:157.907520px;}
.y101{bottom:158.099760px;}
.y186{bottom:159.245280px;}
.y26e{bottom:162.180000px;}
.ydf{bottom:162.778320px;}
.y22e{bottom:163.821600px;}
.y250{bottom:164.378880px;}
.y1a4{bottom:167.343120px;}
.y92{bottom:172.008000px;}
.y1c6{bottom:174.327840px;}
.y210{bottom:176.237280px;}
.yba{bottom:176.586480px;}
.y6c{bottom:178.316640px;}
.y162{bottom:179.652240px;}
.y1f5{bottom:180.309600px;}
.y1e0{bottom:181.654560px;}
.y40{bottom:182.565360px;}
.y100{bottom:182.757600px;}
.y185{bottom:183.903120px;}
.yde{bottom:187.436160px;}
.y22d{bottom:188.297280px;}
.y24f{bottom:188.854560px;}
.y1a3{bottom:191.818800px;}
.y26d{bottom:193.860000px;}
.y91{bottom:196.665840px;}
.y1c5{bottom:198.985680px;}
.y20f{bottom:200.712960px;}
.yb9{bottom:201.244320px;}
.y6b{bottom:202.792320px;}
.y161{bottom:204.127920px;}
.y1f4{bottom:204.967440px;}
.y1df{bottom:206.312400px;}
.y3f{bottom:207.041040px;}
.yff{bottom:207.233280px;}
.y184{bottom:208.378800px;}
.ydd{bottom:211.911840px;}
.y24e{bottom:213.330240px;}
.y1a2{bottom:216.476640px;}
.y90{bottom:221.141520px;}
.y22c{bottom:221.963760px;}
.y20e{bottom:225.370800px;}
.yb8{bottom:225.720000px;}
.y6a{bottom:227.450160px;}
.y160{bottom:228.785760px;}
.y1f3{bottom:229.443120px;}
.y1c4{bottom:229.588560px;}
.y1de{bottom:230.788080px;}
.y3e{bottom:231.516720px;}
.yfe{bottom:231.891120px;}
.y183{bottom:232.854480px;}
.ydc{bottom:236.569680px;}
.y26c{bottom:237.964320px;}
.y1a1{bottom:240.952320px;}
.y8f{bottom:245.799360px;}
.y22b{bottom:246.439440px;}
.y24d{bottom:246.996720px;}
.y20d{bottom:249.846480px;}
.y15f{bottom:250.380000px;}
.y1f2{bottom:253.918800px;}
.y1dd{bottom:255.263760px;}
.y3d{bottom:256.174560px;}
.yfd{bottom:256.366800px;}
.yb7{bottom:257.400000px;}
.ydb{bottom:261.045360px;}
.y26b{bottom:262.440000px;}
.y182{bottom:263.457360px;}
.y121{bottom:264.827520px;}
.y1a0{bottom:265.428000px;}
.y15c{bottom:266.760000px;}
.y69{bottom:268.485840px;}
.y1c3{bottom:269.183520px;}
.y8e{bottom:270.275040px;}
.y22a{bottom:270.915120px;}
.y24c{bottom:271.472400px;}
.y20c{bottom:274.322160px;}
.y1f1{bottom:278.576640px;}
.y1dc{bottom:279.921600px;}
.y3c{bottom:280.650240px;}
.yfc{bottom:280.842480px;}
.yda{bottom:285.521040px;}
.y26a{bottom:287.097840px;}
.y15e{bottom:288.900000px;}
.y19f{bottom:290.085840px;}
.y68{bottom:292.961520px;}
.y1c2{bottom:293.659200px;}
.y8d{bottom:294.750720px;}
.y24b{bottom:296.130240px;}
.y20b{bottom:298.980000px;}
.yb6{bottom:301.349520px;}
.y181{bottom:303.052320px;}
.y1db{bottom:304.397280px;}
.y120{bottom:304.422480px;}
.y229{bottom:304.581600px;}
.y3b{bottom:305.308080px;}
.yd9{bottom:310.178880px;}
.y19e{bottom:314.561520px;}
.y67{bottom:317.619360px;}
.y1c1{bottom:318.317040px;}
.y8c{bottom:319.408560px;}
.y269{bottom:320.582160px;}
.y24a{bottom:320.605920px;}
.y15a{bottom:321.660000px;}
.yfb{bottom:322.060320px;}
.yb5{bottom:326.007360px;}
.y180{bottom:327.710160px;}
.y228{bottom:329.057280px;}
.y11f{bottom:329.080320px;}
.y3a{bottom:329.783760px;}
.y20a{bottom:330.660000px;}
.yd8{bottom:334.654560px;}
.y15b{bottom:334.800000px;}
.y66{bottom:342.095040px;}
.y1c0{bottom:342.792720px;}
.y8b{bottom:343.884240px;}
.ya{bottom:344.680500px;}
.y268{bottom:345.057840px;}
.y1da{bottom:345.432960px;}
.yfa{bottom:346.536000px;}
.yb4{bottom:350.483040px;}
.y17f{bottom:352.185840px;}
.y11e{bottom:353.556000px;}
.y227{bottom:353.715120px;}
.y249{bottom:354.090240px;}
.y39{bottom:354.259440px;}
.y19d{bottom:355.597200px;}
.y158{bottom:358.200000px;}
.yd7{bottom:359.312400px;}
.y65{bottom:366.570720px;}
.y1bf{bottom:367.268400px;}
.y8a{bottom:368.542080px;}
.y1f0{bottom:368.745840px;}
.y267{bottom:369.715680px;}
.y1d9{bottom:370.090800px;}
.yf9{bottom:371.011680px;}
.y159{bottom:371.340000px;}
.y209{bottom:374.636160px;}
.yb3{bottom:375.140880px;}
.y17e{bottom:376.661520px;}
.y11d{bottom:378.031680px;}
.y226{bottom:378.190800px;}
.y248{bottom:378.748080px;}
.y38{bottom:378.917280px;}
.y19c{bottom:380.255040px;}
.yd6{bottom:383.788080px;}
.yd{bottom:386.490000px;}
.y64{bottom:391.228560px;}
.y1be{bottom:391.926240px;}
.y89{bottom:393.017760px;}
.y1ef{bottom:393.221520px;}
.y1d8{bottom:394.566480px;}
.y156{bottom:394.920000px;}
.yf8{bottom:395.669520px;}
.y9{bottom:395.689500px;}
.y208{bottom:399.294000px;}
.yb2{bottom:399.616560px;}
.y17d{bottom:401.319360px;}
.y225{bottom:402.666480px;}
.y11c{bottom:402.689520px;}
.y266{bottom:403.200000px;}
.y37{bottom:403.392960px;}
.y19b{bottom:404.730720px;}
.y157{bottom:408.060000px;}
.yd5{bottom:408.263760px;}
.y247{bottom:412.232400px;}
.y63{bottom:415.704240px;}
.y88{bottom:417.493440px;}
.y1ee{bottom:417.879360px;}
.y1d7{bottom:419.224320px;}
.yf7{bottom:420.145200px;}
.y207{bottom:423.769680px;}
.yb1{bottom:424.092240px;}
.y17c{bottom:425.795040px;}
.y11b{bottom:427.165200px;}
.y36{bottom:428.050800px;}
.y19a{bottom:429.388560px;}
.y152{bottom:431.460000px;}
.yd4{bottom:432.921600px;}
.y1bd{bottom:432.961920px;}
.yb{bottom:434.850000px;}
.y224{bottom:436.332960px;}
.y265{bottom:436.866480px;}
.y246{bottom:436.890240px;}
.y62{bottom:440.362080px;}
.y87{bottom:442.151280px;}
.y1ed{bottom:442.355040px;}
.y1d6{bottom:443.700000px;}
.yf6{bottom:444.803040px;}
.y8{bottom:446.698500px;}
.y206{bottom:448.245360px;}
.yb0{bottom:448.750080px;}
.y17b{bottom:450.452880px;}
.y11a{bottom:451.823040px;}
.y35{bottom:452.526480px;}
.y154{bottom:453.778740px;}
.y199{bottom:453.864240px;}
.yd3{bottom:457.397280px;}
.y1bc{bottom:457.437600px;}
.y223{bottom:460.808640px;}
.y264{bottom:461.342160px;}
.y245{bottom:461.365920px;}
.y155{bottom:462.960000px;}
.y61{bottom:464.837760px;}
.y86{bottom:466.626960px;}
.y1ec{bottom:466.830720px;}
.yf5{bottom:469.278720px;}
.y153{bottom:472.140000px;}
.yaf{bottom:473.225760px;}
.y17a{bottom:474.928560px;}
.y1d5{bottom:475.380000px;}
.y119{bottom:476.298720px;}
.y34{bottom:477.002160px;}
.y198{bottom:478.339920px;}
.yd2{bottom:482.055120px;}
.y1bb{bottom:482.095440px;}
.y263{bottom:486.008640px;}
.y244{bottom:486.023760px;}
.y11{bottom:488.055000px;}
.y205{bottom:489.281040px;}
.y60{bottom:489.313440px;}
.y85{bottom:491.284800px;}
.y1eb{bottom:491.488560px;}
.yf4{bottom:493.754400px;}
.y222{bottom:494.475120px;}
.yae{bottom:494.820000px;}
.y7{bottom:497.707500px;}
.y118{bottom:500.774400px;}
.y33{bottom:501.660000px;}
.y151{bottom:504.720000px;}
.y1ba{bottom:506.571120px;}
.y197{bottom:508.942800px;}
.y243{bottom:510.499440px;}
.yad{bottom:511.200000px;}
.y204{bottom:513.938880px;}
.y5f{bottom:513.971280px;}
.y84{bottom:515.760480px;}
.y179{bottom:515.964240px;}
.yf3{bottom:518.412240px;}
.y221{bottom:518.950800px;}
.y1d4{bottom:519.375600px;}
.y262{bottom:519.492960px;}
.y14f{bottom:523.080000px;}
.yd1{bottom:523.090800px;}
.y32{bottom:532.980000px;}
.y242{bottom:534.975120px;}
.y150{bottom:536.220000px;}
.y1b9{bottom:537.174000px;}
.y12{bottom:538.230000px;}
.y203{bottom:538.414560px;}
.y5e{bottom:538.446960px;}
.y83{bottom:540.236160px;}
.y178{bottom:540.622080px;}
.y117{bottom:541.992240px;}
.yf2{bottom:542.887920px;}
.y220{bottom:543.426480px;}
.y261{bottom:543.968640px;}
.y1d3{bottom:544.033440px;}
.yd0{bottom:547.566480px;}
.y196{bottom:548.537760px;}
.y6{bottom:548.716500px;}
.yac{bottom:551.520000px;}
.y14b{bottom:559.620000px;}
.y202{bottom:563.072400px;}
.y5d{bottom:563.104800px;}
.y177{bottom:565.097760px;}
.y116{bottom:566.467920px;}
.yf1{bottom:567.545760px;}
.y1d2{bottom:568.509120px;}
.y260{bottom:568.626480px;}
.y241{bottom:568.641600px;}
.ycf{bottom:572.042160px;}
.y195{bottom:573.195600px;}
.y31{bottom:575.505360px;}
.y1b8{bottom:576.768960px;}
.y21f{bottom:577.092960px;}
.y82{bottom:581.454000px;}
.y14d{bottom:581.938740px;}
.y201{bottom:587.548080px;}
.yf0{bottom:589.140000px;}
.y176{bottom:589.573440px;}
.y19{bottom:589.605000px;}
.y115{bottom:590.943600px;}
.y14e{bottom:591.120000px;}
.yaa{bottom:591.840000px;}
.y25f{bottom:593.102160px;}
.y240{bottom:593.117280px;}
.y1d1{bottom:593.166960px;}
.yce{bottom:596.700000px;}
.y194{bottom:597.671280px;}
.y5{bottom:599.725500px;}
.y30{bottom:600.163200px;}
.y14c{bottom:600.300000px;}
.y1b7{bottom:601.244640px;}
.y21e{bottom:601.568640px;}
.y5c{bottom:604.140480px;}
.yef{bottom:605.520000px;}
.y81{bottom:605.929680px;}
.y200{bottom:612.023760px;}
.y175{bottom:614.231280px;}
.y114{bottom:615.601440px;}
.y1d0{bottom:617.642640px;}
.y23f{bottom:617.775120px;}
.y193{bottom:622.329120px;}
.y2f{bottom:624.638880px;}
.yee{bottom:625.500000px;}
.y1b6{bottom:625.902480px;}
.y21d{bottom:626.226480px;}
.y25e{bottom:626.768640px;}
.ycd{bottom:628.020000px;}
.y5b{bottom:628.616160px;}
.y80{bottom:630.405360px;}
.ye{bottom:631.920000px;}
.ya7{bottom:632.160000px;}
.y146{bottom:632.880000px;}
.y1ff{bottom:636.681600px;}
.y174{bottom:638.706960px;}
.y113{bottom:640.077120px;}
.y1cf{bottom:642.118320px;}
.y23e{bottom:642.250800px;}
.yed{bottom:645.660000px;}
.y192{bottom:646.804800px;}
.y2e{bottom:649.114560px;}
.y1b5{bottom:650.378160px;}
.y25d{bottom:651.244320px;}
.y5a{bottom:653.274000px;}
.y7f{bottom:655.063200px;}
.y149{bottom:655.198740px;}
.ya9{bottom:656.820000px;}
.y21c{bottom:659.710800px;}
.y173{bottom:663.364800px;}
.y14a{bottom:664.380000px;}
.yec{bottom:665.820000px;}
.y1ce{bottom:666.776160px;}
.ycc{bottom:670.541040px;}
.y112{bottom:670.680000px;}
.y191{bottom:671.280480px;}
.y148{bottom:673.560000px;}
.y2d{bottom:673.772400px;}
.y25c{bottom:675.720000px;}
.y23d{bottom:675.735120px;}
.y1fe{bottom:677.717280px;}
.y59{bottom:677.749680px;}
.y7e{bottom:679.538880px;}
.y1ea{bottom:679.742640px;}
.y21b{bottom:684.186480px;}
.yeb{bottom:686.700000px;}
.y172{bottom:687.840480px;}
.y1b4{bottom:691.413840px;}
.ya3{bottom:692.460000px;}
.ycb{bottom:695.198880px;}
.y190{bottom:695.938320px;}
.y2c{bottom:698.248080px;}
.y25b{bottom:700.377840px;}
.y23c{bottom:700.392960px;}
.y111{bottom:700.560000px;}
.y1fd{bottom:702.192960px;}
.y58{bottom:702.225360px;}
.y7d{bottom:704.196720px;}
.y1e9{bottom:704.400480px;}
.y144{bottom:706.140000px;}
.y1cd{bottom:707.811840px;}
.y21a{bottom:708.844320px;}
.y171{bottom:712.316160px;}
.y1b3{bottom:716.071680px;}
.yea{bottom:716.621760px;}
.ya6{bottom:717.126480px;}
.y145{bottom:719.280000px;}
.yca{bottom:719.674560px;}
.y18f{bottom:720.414000px;}
.y2b{bottom:722.905920px;}
.y23b{bottom:724.868640px;}
.y1fc{bottom:726.850800px;}
.y57{bottom:726.883200px;}
.y1e8{bottom:728.876160px;}
.y1cc{bottom:732.287520px;}
.y110{bottom:733.860000px;}
.y25a{bottom:733.862160px;}
.y170{bottom:736.974000px;}
.ya5{bottom:737.280000px;}
.y1b2{bottom:740.547360px;}
.y219{bottom:742.328640px;}
.y141{bottom:742.680000px;}
.y18e{bottom:745.071840px;}
.y7c{bottom:745.232400px;}
.y2a{bottom:747.381600px;}
.y23a{bottom:749.526480px;}
.y1fb{bottom:751.326480px;}
.y56{bottom:751.358880px;}
.y1e7{bottom:753.351840px;}
.ye9{bottom:756.216720px;}
.y1cb{bottom:756.945360px;}
.y259{bottom:758.535120px;}
.yc9{bottom:760.710240px;}
.y16f{bottom:761.449680px;}
.y143{bottom:765.000000px;}
.y1b1{bottom:765.205200px;}
.y218{bottom:766.986480px;}
.y18d{bottom:769.547520px;}
.y7b{bottom:769.708080px;}
.y29{bottom:771.857280px;}
.ya1{bottom:773.820000px;}
.y1fa{bottom:775.984320px;}
.y55{bottom:776.016720px;}
.y10f{bottom:777.816720px;}
.y1e6{bottom:778.009680px;}
.y4{bottom:778.225500px;}
.ye8{bottom:780.874560px;}
.y239{bottom:783.010800px;}
.yc8{bottom:785.185920px;}
.y1ca{bottom:787.548240px;}
.y1b0{bottom:789.680880px;}
.y217{bottom:791.462160px;}
.y258{bottom:792.019440px;}
.y7a{bottom:794.183760px;}
.y28{bottom:796.515120px;}
.y13f{bottom:797.760000px;}
.y1f9{bottom:800.460000px;}
.y54{bottom:800.492400px;}
.y10e{bottom:802.292400px;}
.y16e{bottom:802.485360px;}
.ya0{bottom:803.739600px;}
.ye7{bottom:805.350240px;}
.y238{bottom:807.486480px;}
.yc7{bottom:809.843760px;}
.y18c{bottom:810.583200px;}
.y140{bottom:810.900000px;}
.y1af{bottom:814.156560px;}
.y13{bottom:815.670000px;}
.y257{bottom:816.495120px;}
.y79{bottom:818.841600px;}
.y27{bottom:820.990800px;}
.y216{bottom:824.946480px;}
.y53{bottom:824.968080px;}
.y10d{bottom:826.950240px;}
.y16d{bottom:827.143200px;}
.ye6{bottom:830.008080px;}
.y1f8{bottom:832.140000px;}
.y237{bottom:832.144320px;}
.y13d{bottom:834.300000px;}
.yc6{bottom:834.319440px;}
.y18b{bottom:835.058880px;}
.y1ae{bottom:838.814400px;}
.y256{bottom:841.152960px;}
.y78{bottom:843.317280px;}
.y9f{bottom:843.334560px;}
.y26{bottom:845.648640px;}
.y13e{bottom:847.440000px;}
.y215{bottom:849.604320px;}
.y52{bottom:849.625920px;}
.y10c{bottom:851.425920px;}
.y16c{bottom:851.618880px;}
.ye5{bottom:854.483760px;}
.yc5{bottom:858.977280px;}
.y18a{bottom:859.716720px;}
.y1ad{bottom:863.290080px;}
.y236{bottom:865.628640px;}
.y77{bottom:867.975120px;}
.y9e{bottom:867.992400px;}
.y25{bottom:870.124320px;}
.y13a{bottom:871.020000px;}
.y214{bottom:874.080000px;}
.y51{bottom:874.101600px;}
.y255{bottom:874.637280px;}
.y10b{bottom:875.901600px;}
.y16b{bottom:876.094560px;}
.ye4{bottom:878.959440px;}
.yc4{bottom:883.452960px;}
.y13c{bottom:883.979850px;}
.y189{bottom:884.192400px;}
.y1ac{bottom:887.947920px;}
.y235{bottom:890.286480px;}
.y76{bottom:892.450800px;}
.y9d{bottom:892.468080px;}
.y24{bottom:894.600000px;}
.y50{bottom:898.759440px;}
.y254{bottom:899.295120px;}
.y16a{bottom:900.752400px;}
.ye3{bottom:903.617280px;}
.y3{bottom:905.716500px;}
.y213{bottom:905.940000px;}
.y138{bottom:907.560000px;}
.yc3{bottom:907.928640px;}
.y188{bottom:908.850240px;}
.y1ab{bottom:912.423600px;}
.y234{bottom:914.762160px;}
.y75{bottom:916.926480px;}
.y10a{bottom:916.937280px;}
.y9c{bottom:916.943760px;}
.y139{bottom:920.700000px;}
.y253{bottom:923.770800px;}
.y169{bottom:925.228080px;}
.y23{bottom:926.460000px;}
.yc2{bottom:932.586480px;}
.y187{bottom:933.325920px;}
.y1aa{bottom:936.899280px;}
.y4f{bottom:939.795120px;}
.y74{bottom:941.584320px;}
.ye2{bottom:941.589360px;}
.y109{bottom:941.595120px;}
.y1e5{bottom:941.788080px;}
.y135{bottom:944.100000px;}
.y233{bottom:948.246480px;}
.y168{bottom:949.885920px;}
.yc1{bottom:957.062160px;}
.y137{bottom:957.240000px;}
.y9b{bottom:957.979440px;}
.y1a9{bottom:961.557120px;}
.ye1{bottom:961.742880px;}
.y2{bottom:964.228500px;}
.y4e{bottom:964.270800px;}
.y73{bottom:966.060000px;}
.y108{bottom:966.070800px;}
.y1e4{bottom:966.263760px;}
.y232{bottom:972.904320px;}
.y167{bottom:974.361600px;}
.y127{bottom:981.540000px;}
.y103{bottom:981.653100px;}
.yc0{bottom:981.720000px;}
.y252{bottom:981.912960px;}
.y9a{bottom:982.637280px;}
.y22{bottom:987.482160px;}
.y4d{bottom:988.746480px;}
.y1{bottom:989.716500px;}
.y107{bottom:990.728640px;}
.y1e3{bottom:990.921600px;}
.y1a8{bottom:992.160000px;}
.y12f{bottom:994.668660px;}
.y102{bottom:996.597600px;}
.y72{bottom:997.380000px;}
.y166{bottom:998.837280px;}
.y132{bottom:1003.841820px;}
.y12b{bottom:1003.856760px;}
.y251{bottom:1006.388640px;}
.y99{bottom:1007.112960px;}
.y21{bottom:1012.140000px;}
.y134{bottom:1013.014980px;}
.y12e{bottom:1013.029920px;}
.ybf{bottom:1013.040000px;}
.y4c{bottom:1013.404320px;}
.y106{bottom:1015.204320px;}
.y1c9{bottom:1015.397280px;}
.y1a7{bottom:1022.040000px;}
.y131{bottom:1022.203080px;}
.y12a{bottom:1022.218020px;}
.y165{bottom:1023.495120px;}
.y231{bottom:1031.046480px;}
.y133{bottom:1031.196960px;}
.y12d{bottom:1031.211900px;}
.y98{bottom:1031.770800px;}
.y4b{bottom:1037.880000px;}
.y105{bottom:1039.680000px;}
.y71{bottom:1040.055120px;}
.y130{bottom:1040.385060px;}
.y129{bottom:1040.400000px;}
.y20{bottom:1044.720000px;}
.ybe{bottom:1047.788640px;}
.ye0{bottom:1047.970800px;}
.y12c{bottom:1049.573160px;}
.y230{bottom:1055.522160px;}
.y97{bottom:1056.246480px;}
.y70{bottom:1064.530800px;}
.y4a{bottom:1069.740000px;}
.y104{bottom:1071.180000px;}
.ybd{bottom:1072.628640px;}
.y124{bottom:1073.160000px;}
.y1f{bottom:1074.060000px;}
.y22f{bottom:1079.997840px;}
.y96{bottom:1080.722160px;}
.y6f{bottom:1089.006480px;}
.ybc{bottom:1097.104320px;}
.y95{bottom:1105.380000px;}
.y49{bottom:1113.664320px;}
.y123{bottom:1119.426480px;}
.y1e{bottom:1132.560000px;}
.y94{bottom:1136.700000px;}
.y48{bottom:1138.140000px;}
.y122{bottom:1139.580000px;}
.y1a{bottom:1139.760000px;}
.y1d{bottom:1148.760000px;}
.y1c{bottom:1170.900000px;}
.y44{bottom:1177.198740px;}
.y43{bottom:1195.560000px;}
.h26{height:18.360000px;}
.h1c{height:19.980000px;}
.h16{height:20.160000px;}
.h1b{height:20.161500px;}
.hd{height:21.026250px;}
.h4{height:33.000000px;}
.h23{height:36.538500px;}
.h20{height:36.540000px;}
.h22{height:36.720000px;}
.h1d{height:38.759766px;}
.h1a{height:40.318500px;}
.h19{height:40.320000px;}
.h13{height:41.551875px;}
.hb{height:42.894141px;}
.h14{height:47.387813px;}
.h15{height:47.545312px;}
.hc{height:51.679688px;}
.h1f{height:52.526250px;}
.hf{height:54.051840px;}
.h12{height:54.067500px;}
.h27{height:54.900000px;}
.h24{height:55.080000px;}
.h3{height:58.406250px;}
.h10{height:58.573125px;}
.h11{height:58.887360px;}
.h18{height:60.298500px;}
.h28{height:62.503200px;}
.h29{height:62.529120px;}
.he{height:66.583125px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h1e{height:68.882766px;}
.ha{height:70.200000px;}
.h25{height:73.260000px;}
.h17{height:80.641500px;}
.h21{height:91.618500px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h9{height:1263.060000px;}
.w13{width:89.280000px;}
.w15{width:89.281500px;}
.w12{width:89.458500px;}
.w14{width:89.460000px;}
.wc{width:149.400000px;}
.w10{width:159.120000px;}
.we{width:163.260000px;}
.wf{width:194.400000px;}
.wa{width:228.780000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.wb{width:451.440000px;}
.w2{width:494.625000px;}
.w11{width:529.380000px;}
.wd{width:530.820000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xc{left:8.100000px;}
.x33{left:15.480000px;}
.x37{left:19.980000px;}
.x25{left:23.580000px;}
.x3a{left:34.200000px;}
.xa{left:106.380000px;}
.x39{left:114.480000px;}
.xe{left:117.180000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x40{left:133.372800px;}
.x10{left:138.960000px;}
.x18{left:148.346550px;}
.xf{left:152.280000px;}
.x14{left:159.471360px;}
.x23{left:170.285040px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x19{left:203.234400px;}
.x1a{left:212.238900px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x12{left:255.780000px;}
.x13{left:263.880000px;}
.x24{left:265.500000px;}
.x26{left:276.840000px;}
.x1c{left:279.651150px;}
.x27{left:283.503240px;}
.x16{left:289.434240px;}
.x3f{left:291.960000px;}
.x38{left:299.700000px;}
.x1b{left:306.111150px;}
.xb{left:335.160000px;}
.xd{left:343.260000px;}
.x3b{left:354.780000px;}
.x28{left:366.136380px;}
.x29{left:370.991880px;}
.x2a{left:377.296560px;}
.x1d{left:389.551050px;}
.x1e{left:404.671050px;}
.x17{left:419.040000px;}
.x3c{left:444.060000px;}
.x2b{left:457.569180px;}
.x2c{left:468.012240px;}
.x11{left:480.075660px;}
.x1f{left:483.492750px;}
.x20{left:501.852750px;}
.x3d{left:533.520000px;}
.x2e{left:549.016920px;}
.x2f{left:554.230980px;}
.x2d{left:560.177100px;}
.x22{left:587.441550px;}
.x21{left:611.201550px;}
.x3e{left:622.800000px;}
.x30{left:641.898900px;}
.x31{left:654.672600px;}
.x32{left:712.080000px;}
.x35{left:728.096580px;}
.x34{left:730.980000px;}
.x36{left:737.643240px;}
.x15{left:772.737840px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.776000pt;}
.v2{vertical-align:29.386240pt;}
.ls12{letter-spacing:-1.354240pt;}
.ls4e{letter-spacing:-0.942080pt;}
.ls28{letter-spacing:-0.824320pt;}
.ls4d{letter-spacing:-0.765440pt;}
.ls10{letter-spacing:-0.706560pt;}
.lsf{letter-spacing:-0.647680pt;}
.ls1f{letter-spacing:-0.599040pt;}
.ls53{letter-spacing:-0.588800pt;}
.ls55{letter-spacing:-0.529920pt;}
.ls2e{letter-spacing:-0.524160pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls31{letter-spacing:-0.412160pt;}
.ls20{letter-spacing:-0.353280pt;}
.ls54{letter-spacing:-0.323840pt;}
.ls43{letter-spacing:-0.318720pt;}
.ls21{letter-spacing:-0.294400pt;}
.ls30{letter-spacing:-0.276480pt;}
.ls19{letter-spacing:-0.265600pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls36{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls42{letter-spacing:-0.212480pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.176640pt;}
.ls1d{letter-spacing:-0.159360pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117760pt;}
.ls37{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.058880pt;}
.ls1a{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.058880pt;}
.ls51{letter-spacing:0.074880pt;}
.ls3{letter-spacing:0.085120pt;}
.ls2d{letter-spacing:0.117760pt;}
.ls2a{letter-spacing:0.133120pt;}
.ls3a{letter-spacing:0.149760pt;}
.ls13{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.170240pt;}
.lse{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls16{letter-spacing:0.229632pt;}
.ls15{letter-spacing:0.235520pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls4a{letter-spacing:0.270848pt;}
.ls11{letter-spacing:0.276480pt;}
.ls17{letter-spacing:0.282624pt;}
.ls34{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.294400pt;}
.lsb{letter-spacing:0.299520pt;}
.ls50{letter-spacing:0.300288pt;}
.ls4c{letter-spacing:0.312064pt;}
.ls1e{letter-spacing:0.318720pt;}
.ls4f{letter-spacing:0.329728pt;}
.ls23{letter-spacing:0.335616pt;}
.ls26{letter-spacing:0.370944pt;}
.ls4b{letter-spacing:0.429824pt;}
.ls18{letter-spacing:0.518144pt;}
.ls38{letter-spacing:0.552960pt;}
.ls2c{letter-spacing:0.553472pt;}
.ls47{letter-spacing:1.530880pt;}
.ls46{letter-spacing:1.960704pt;}
.ls32{letter-spacing:2.178560pt;}
.ls39{letter-spacing:2.826240pt;}
.ls45{letter-spacing:3.415040pt;}
.ls48{letter-spacing:4.062720pt;}
.ls2b{letter-spacing:4.710400pt;}
.ls24{letter-spacing:5.405184pt;}
.ls22{letter-spacing:6.653440pt;}
.ls44{letter-spacing:7.301120pt;}
.ls49{letter-spacing:10.480640pt;}
.ls29{letter-spacing:12.953600pt;}
.ls25{letter-spacing:14.307840pt;}
.ls33{letter-spacing:25.082880pt;}
.ls52{letter-spacing:36.093440pt;}
.ls2f{letter-spacing:70.008320pt;}
.ls3d{letter-spacing:176.783360pt;}
.ls3e{letter-spacing:190.222720pt;}
.ls41{letter-spacing:203.662080pt;}
.ls3f{letter-spacing:217.738880pt;}
.ls40{letter-spacing:230.540800pt;}
.ls3b{letter-spacing:231.815680pt;}
.ls3c{letter-spacing:232.453120pt;}
.ws89{word-spacing:-58.880000pt;}
.ws5{word-spacing:-19.322240pt;}
.wsa0{word-spacing:-17.072640pt;}
.wsc5{word-spacing:-16.997760pt;}
.ws0{word-spacing:-16.874667pt;}
.ws3c{word-spacing:-16.323840pt;}
.ws9f{word-spacing:-15.897600pt;}
.ws76{word-spacing:-15.621120pt;}
.ws8a{word-spacing:-15.344640pt;}
.ws3{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.272000pt;}
.wscc{word-spacing:-14.131200pt;}
.ws4{word-spacing:-14.016000pt;}
.wsd0{word-spacing:-14.013440pt;}
.wsd1{word-spacing:-13.954560pt;}
.ws6{word-spacing:-13.836800pt;}
.ws3d{word-spacing:-13.719040pt;}
.ws5d{word-spacing:-13.660160pt;}
.ws8{word-spacing:-13.601280pt;}
.wsad{word-spacing:-13.542400pt;}
.wsa1{word-spacing:-13.483520pt;}
.ws77{word-spacing:-13.424640pt;}
.ws7a{word-spacing:-13.306880pt;}
.ws79{word-spacing:-13.248000pt;}
.ws7{word-spacing:-13.189120pt;}
.ws78{word-spacing:-13.071360pt;}
.wsd4{word-spacing:-12.894720pt;}
.ws3b{word-spacing:-12.323840pt;}
.ws39{word-spacing:-12.270720pt;}
.ws38{word-spacing:-12.005120pt;}
.ws3a{word-spacing:-11.952000pt;}
.ws90{word-spacing:-11.845760pt;}
.wsa5{word-spacing:-11.792640pt;}
.ws9e{word-spacing:-11.739520pt;}
.wsa6{word-spacing:-11.686400pt;}
.ws92{word-spacing:-10.752000pt;}
.ws91{word-spacing:-10.704000pt;}
.ws93{word-spacing:-10.656000pt;}
.wsd5{word-spacing:-6.594560pt;}
.wsa4{word-spacing:-3.591680pt;}
.ws74{word-spacing:-3.238400pt;}
.wsb5{word-spacing:-3.120640pt;}
.ws73{word-spacing:-2.944000pt;}
.wsb4{word-spacing:-2.767360pt;}
.wsb8{word-spacing:-2.708480pt;}
.wsb9{word-spacing:-2.649600pt;}
.ws5c{word-spacing:-2.590720pt;}
.ws28{word-spacing:-2.296320pt;}
.ws8b{word-spacing:-2.119680pt;}
.ws53{word-spacing:-1.943040pt;}
.ws50{word-spacing:-1.648640pt;}
.ws58{word-spacing:-1.354240pt;}
.wsc1{word-spacing:-1.295360pt;}
.ws1c{word-spacing:-1.236480pt;}
.ws1d{word-spacing:-1.059840pt;}
.wscb{word-spacing:-0.883200pt;}
.wsd7{word-spacing:-0.824320pt;}
.ws95{word-spacing:-0.765440pt;}
.ws7f{word-spacing:-0.706560pt;}
.ws83{word-spacing:-0.647680pt;}
.ws26{word-spacing:-0.552960pt;}
.wsce{word-spacing:-0.529920pt;}
.ws84{word-spacing:-0.471040pt;}
.wsc7{word-spacing:-0.449280pt;}
.ws4d{word-spacing:-0.412160pt;}
.ws11{word-spacing:-0.299520pt;}
.ws82{word-spacing:-0.294400pt;}
.ws9b{word-spacing:-0.288000pt;}
.ws61{word-spacing:-0.276480pt;}
.wsa9{word-spacing:-0.265600pt;}
.wsb{word-spacing:-0.256000pt;}
.wscf{word-spacing:-0.235520pt;}
.ws40{word-spacing:-0.212480pt;}
.wsa{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.176640pt;}
.wsa7{word-spacing:-0.159360pt;}
.wsbd{word-spacing:-0.149760pt;}
.wsa3{word-spacing:-0.117760pt;}
.ws41{word-spacing:-0.106240pt;}
.wsd{word-spacing:-0.085120pt;}
.wsd6{word-spacing:-0.074880pt;}
.ws59{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.053120pt;}
.ws75{word-spacing:0.058880pt;}
.ws9{word-spacing:0.064000pt;}
.wsf{word-spacing:0.117760pt;}
.wsc{word-spacing:0.128000pt;}
.ws81{word-spacing:0.176640pt;}
.ws9d{word-spacing:0.192000pt;}
.ws42{word-spacing:0.212480pt;}
.ws87{word-spacing:0.224640pt;}
.ws10{word-spacing:0.235520pt;}
.ws9c{word-spacing:0.240000pt;}
.wse{word-spacing:0.255360pt;}
.ws54{word-spacing:0.294400pt;}
.ws43{word-spacing:0.318720pt;}
.ws25{word-spacing:0.353280pt;}
.wsa8{word-spacing:0.371840pt;}
.wsab{word-spacing:0.412160pt;}
.ws3e{word-spacing:0.424960pt;}
.ws4b{word-spacing:0.471040pt;}
.ws60{word-spacing:0.529920pt;}
.ws5f{word-spacing:0.588800pt;}
.ws7d{word-spacing:0.647680pt;}
.ws23{word-spacing:0.706560pt;}
.wsd2{word-spacing:0.765440pt;}
.ws64{word-spacing:0.824320pt;}
.ws20{word-spacing:0.883200pt;}
.wsc0{word-spacing:0.942080pt;}
.ws2a{word-spacing:1.000960pt;}
.wsd3{word-spacing:1.059840pt;}
.wsaa{word-spacing:1.115520pt;}
.ws2f{word-spacing:1.354240pt;}
.ws1f{word-spacing:1.530880pt;}
.ws30{word-spacing:1.648640pt;}
.wsba{word-spacing:1.707520pt;}
.ws1e{word-spacing:1.766400pt;}
.ws6b{word-spacing:1.884160pt;}
.ws69{word-spacing:2.178560pt;}
.ws6a{word-spacing:2.414080pt;}
.ws55{word-spacing:2.826240pt;}
.wsb3{word-spacing:2.944000pt;}
.wsa2{word-spacing:3.002880pt;}
.ws86{word-spacing:3.120640pt;}
.ws15{word-spacing:3.473920pt;}
.ws14{word-spacing:3.591680pt;}
.ws7c{word-spacing:3.709440pt;}
.ws96{word-spacing:3.768320pt;}
.ws72{word-spacing:3.827200pt;}
.ws1b{word-spacing:4.062720pt;}
.ws35{word-spacing:4.180480pt;}
.ws7e{word-spacing:4.298240pt;}
.ws12{word-spacing:4.710400pt;}
.ws27{word-spacing:4.828160pt;}
.ws85{word-spacing:4.887040pt;}
.ws13{word-spacing:4.945920pt;}
.ws5e{word-spacing:5.063680pt;}
.ws8f{word-spacing:5.122560pt;}
.ws17{word-spacing:5.358080pt;}
.ws6c{word-spacing:5.475840pt;}
.wsc4{word-spacing:5.593600pt;}
.ws7b{word-spacing:5.711360pt;}
.ws48{word-spacing:6.005760pt;}
.ws47{word-spacing:6.123520pt;}
.ws33{word-spacing:6.653440pt;}
.wsb7{word-spacing:6.888960pt;}
.wsc2{word-spacing:7.006720pt;}
.ws49{word-spacing:7.301120pt;}
.wsbc{word-spacing:7.418880pt;}
.ws4e{word-spacing:7.536640pt;}
.ws24{word-spacing:7.948800pt;}
.wsc9{word-spacing:8.243200pt;}
.wsb0{word-spacing:8.537600pt;}
.ws63{word-spacing:8.596480pt;}
.wsaf{word-spacing:8.773120pt;}
.ws4f{word-spacing:8.890880pt;}
.wsbb{word-spacing:9.008640pt;}
.ws99{word-spacing:9.185280pt;}
.wsac{word-spacing:9.303040pt;}
.wsae{word-spacing:9.420800pt;}
.ws19{word-spacing:9.832960pt;}
.wsc3{word-spacing:10.009600pt;}
.ws1a{word-spacing:10.068480pt;}
.ws80{word-spacing:10.480640pt;}
.wsb2{word-spacing:10.716160pt;}
.ws44{word-spacing:10.833920pt;}
.ws45{word-spacing:11.128320pt;}
.ws46{word-spacing:11.246080pt;}
.wsb6{word-spacing:11.304960pt;}
.ws94{word-spacing:11.776000pt;}
.ws22{word-spacing:12.423680pt;}
.wsc8{word-spacing:12.541440pt;}
.ws21{word-spacing:13.071360pt;}
.ws8e{word-spacing:13.189120pt;}
.wsbf{word-spacing:13.248000pt;}
.ws70{word-spacing:13.424640pt;}
.ws6f{word-spacing:13.483520pt;}
.ws6e{word-spacing:13.660160pt;}
.ws6d{word-spacing:14.307840pt;}
.ws34{word-spacing:14.425600pt;}
.ws67{word-spacing:14.661120pt;}
.ws8c{word-spacing:14.955520pt;}
.ws32{word-spacing:15.073280pt;}
.ws66{word-spacing:15.191040pt;}
.ws65{word-spacing:15.603200pt;}
.ws68{word-spacing:15.720960pt;}
.ws88{word-spacing:16.250880pt;}
.wsbe{word-spacing:16.898560pt;}
.ws98{word-spacing:17.546240pt;}
.ws97{word-spacing:17.781760pt;}
.ws16{word-spacing:18.193920pt;}
.ws18{word-spacing:18.782720pt;}
.ws36{word-spacing:19.430400pt;}
.ws37{word-spacing:19.548160pt;}
.ws5b{word-spacing:19.901440pt;}
.ws71{word-spacing:20.078080pt;}
.ws5a{word-spacing:20.195840pt;}
.ws4c{word-spacing:21.373440pt;}
.ws56{word-spacing:21.844480pt;}
.ws8d{word-spacing:22.021120pt;}
.ws57{word-spacing:22.374400pt;}
.ws2e{word-spacing:23.257600pt;}
.ws2d{word-spacing:23.316480pt;}
.ws51{word-spacing:23.905280pt;}
.ws52{word-spacing:24.552960pt;}
.wscd{word-spacing:24.670720pt;}
.ws9a{word-spacing:24.788480pt;}
.wsca{word-spacing:26.496000pt;}
.wsc6{word-spacing:29.027840pt;}
.ws4a{word-spacing:30.970880pt;}
.wsb1{word-spacing:31.618560pt;}
.ws31{word-spacing:33.031680pt;}
.ws2b{word-spacing:44.513280pt;}
.ws2c{word-spacing:123.118080pt;}
.ws29{word-spacing:147.553280pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-5.377024pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.896000pt;}
._9{width:1.964373pt;}
._0{width:4.966400pt;}
._8{width:6.081707pt;}
._e{width:7.124480pt;}
._d{width:11.128320pt;}
._6{width:22.475947pt;}
._a{width:25.006933pt;}
._b{width:123.002133pt;}
._c{width:754.664960pt;}
._7{width:853.815467pt;}
.fs5{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:3.519867pt;}
.y126{bottom:3.520000pt;}
.ya2{bottom:4.000000pt;}
.yc{bottom:7.146667pt;}
.y125{bottom:19.680000pt;}
.y136{bottom:19.840000pt;}
.yab{bottom:21.920000pt;}
.y47{bottom:33.759040pt;}
.y15d{bottom:36.000000pt;}
.y142{bottom:36.160000pt;}
.ya8{bottom:39.840000pt;}
.y1b{bottom:47.200000pt;}
.y46{bottom:50.080160pt;}
.y147{bottom:52.320000pt;}
.ya4{bottom:57.760000pt;}
.y45{bottom:66.401280pt;}
.y128{bottom:68.640000pt;}
.y14{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.y1a6{bottom:105.075200pt;}
.y1c8{bottom:111.445760pt;}
.y212{bottom:112.981120pt;}
.y6e{bottom:114.829440pt;}
.y164{bottom:116.016640pt;}
.y1f7{bottom:116.600960pt;}
.y1e2{bottom:117.796480pt;}
.y42{bottom:118.606080pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y26f{bottom:122.403840pt;}
.y1a5{bottom:126.831360pt;}
.y93{bottom:131.139840pt;}
.y1c7{bottom:133.201920pt;}
.y211{bottom:134.737280pt;}
.ybb{bottom:135.209600pt;}
.y6d{bottom:136.747520pt;}
.y15{bottom:137.733333pt;}
.y163{bottom:137.772800pt;}
.y1f6{bottom:138.519040pt;}
.yf{bottom:138.680000pt;}
.y1e1{bottom:139.714560pt;}
.y16{bottom:140.293333pt;}
.y41{bottom:140.362240pt;}
.y101{bottom:140.533120pt;}
.y186{bottom:141.551360pt;}
.y26e{bottom:144.160000pt;}
.ydf{bottom:144.691840pt;}
.y22e{bottom:145.619200pt;}
.y250{bottom:146.114560pt;}
.y1a4{bottom:148.749440pt;}
.y92{bottom:152.896000pt;}
.y1c6{bottom:154.958080pt;}
.y210{bottom:156.655360pt;}
.yba{bottom:156.965760pt;}
.y6c{bottom:158.503680pt;}
.y162{bottom:159.690880pt;}
.y1f5{bottom:160.275200pt;}
.y1e0{bottom:161.470720pt;}
.y40{bottom:162.280320pt;}
.y100{bottom:162.451200pt;}
.y185{bottom:163.469440pt;}
.yde{bottom:166.609920pt;}
.y22d{bottom:167.375360pt;}
.y24f{bottom:167.870720pt;}
.y1a3{bottom:170.505600pt;}
.y26d{bottom:172.320000pt;}
.y91{bottom:174.814080pt;}
.y1c5{bottom:176.876160pt;}
.y20f{bottom:178.411520pt;}
.yb9{bottom:178.883840pt;}
.y6b{bottom:180.259840pt;}
.y161{bottom:181.447040pt;}
.y1f4{bottom:182.193280pt;}
.y1df{bottom:183.388800pt;}
.y3f{bottom:184.036480pt;}
.yff{bottom:184.207360pt;}
.y184{bottom:185.225600pt;}
.ydd{bottom:188.366080pt;}
.y24e{bottom:189.626880pt;}
.y1a2{bottom:192.423680pt;}
.y90{bottom:196.570240pt;}
.y22c{bottom:197.301120pt;}
.y20e{bottom:200.329600pt;}
.yb8{bottom:200.640000pt;}
.y6a{bottom:202.177920pt;}
.y160{bottom:203.365120pt;}
.y1f3{bottom:203.949440pt;}
.y1c4{bottom:204.078720pt;}
.y1de{bottom:205.144960pt;}
.y3e{bottom:205.792640pt;}
.yfe{bottom:206.125440pt;}
.y183{bottom:206.981760pt;}
.ydc{bottom:210.284160pt;}
.y26c{bottom:211.523840pt;}
.y1a1{bottom:214.179840pt;}
.y8f{bottom:218.488320pt;}
.y22b{bottom:219.057280pt;}
.y24d{bottom:219.552640pt;}
.y20d{bottom:222.085760pt;}
.y15f{bottom:222.560000pt;}
.y1f2{bottom:225.705600pt;}
.y1dd{bottom:226.901120pt;}
.y3d{bottom:227.710720pt;}
.yfd{bottom:227.881600pt;}
.yb7{bottom:228.800000pt;}
.ydb{bottom:232.040320pt;}
.y26b{bottom:233.280000pt;}
.y182{bottom:234.184320pt;}
.y121{bottom:235.402240pt;}
.y1a0{bottom:235.936000pt;}
.y15c{bottom:237.120000pt;}
.y69{bottom:238.654080pt;}
.y1c3{bottom:239.274240pt;}
.y8e{bottom:240.244480pt;}
.y22a{bottom:240.813440pt;}
.y24c{bottom:241.308800pt;}
.y20c{bottom:243.841920pt;}
.y1f1{bottom:247.623680pt;}
.y1dc{bottom:248.819200pt;}
.y3c{bottom:249.466880pt;}
.yfc{bottom:249.637760pt;}
.yda{bottom:253.796480pt;}
.y26a{bottom:255.198080pt;}
.y15e{bottom:256.800000pt;}
.y19f{bottom:257.854080pt;}
.y68{bottom:260.410240pt;}
.y1c2{bottom:261.030400pt;}
.y8d{bottom:262.000640pt;}
.y24b{bottom:263.226880pt;}
.y20b{bottom:265.760000pt;}
.yb6{bottom:267.866240pt;}
.y181{bottom:269.379840pt;}
.y1db{bottom:270.575360pt;}
.y120{bottom:270.597760pt;}
.y229{bottom:270.739200pt;}
.y3b{bottom:271.384960pt;}
.yd9{bottom:275.714560pt;}
.y19e{bottom:279.610240pt;}
.y67{bottom:282.328320pt;}
.y1c1{bottom:282.948480pt;}
.y8c{bottom:283.918720pt;}
.y269{bottom:284.961920pt;}
.y24a{bottom:284.983040pt;}
.y15a{bottom:285.920000pt;}
.yfb{bottom:286.275840pt;}
.yb5{bottom:289.784320pt;}
.y180{bottom:291.297920pt;}
.y228{bottom:292.495360pt;}
.y11f{bottom:292.515840pt;}
.y3a{bottom:293.141120pt;}
.y20a{bottom:293.920000pt;}
.yd8{bottom:297.470720pt;}
.y15b{bottom:297.600000pt;}
.y66{bottom:304.084480pt;}
.y1c0{bottom:304.704640pt;}
.y8b{bottom:305.674880pt;}
.ya{bottom:306.382667pt;}
.y268{bottom:306.718080pt;}
.y1da{bottom:307.051520pt;}
.yfa{bottom:308.032000pt;}
.yb4{bottom:311.540480pt;}
.y17f{bottom:313.054080pt;}
.y11e{bottom:314.272000pt;}
.y227{bottom:314.413440pt;}
.y249{bottom:314.746880pt;}
.y39{bottom:314.897280pt;}
.y19d{bottom:316.086400pt;}
.y158{bottom:318.400000pt;}
.yd7{bottom:319.388800pt;}
.y65{bottom:325.840640pt;}
.y1bf{bottom:326.460800pt;}
.y8a{bottom:327.592960pt;}
.y1f0{bottom:327.774080pt;}
.y267{bottom:328.636160pt;}
.y1d9{bottom:328.969600pt;}
.yf9{bottom:329.788160pt;}
.y159{bottom:330.080000pt;}
.y209{bottom:333.009920pt;}
.yb3{bottom:333.458560pt;}
.y17e{bottom:334.810240pt;}
.y11d{bottom:336.028160pt;}
.y226{bottom:336.169600pt;}
.y248{bottom:336.664960pt;}
.y38{bottom:336.815360pt;}
.y19c{bottom:338.004480pt;}
.yd6{bottom:341.144960pt;}
.yd{bottom:343.546667pt;}
.y64{bottom:347.758720pt;}
.y1be{bottom:348.378880pt;}
.y89{bottom:349.349120pt;}
.y1ef{bottom:349.530240pt;}
.y1d8{bottom:350.725760pt;}
.y156{bottom:351.040000pt;}
.yf8{bottom:351.706240pt;}
.y9{bottom:351.724000pt;}
.y208{bottom:354.928000pt;}
.yb2{bottom:355.214720pt;}
.y17d{bottom:356.728320pt;}
.y225{bottom:357.925760pt;}
.y11c{bottom:357.946240pt;}
.y266{bottom:358.400000pt;}
.y37{bottom:358.571520pt;}
.y19b{bottom:359.760640pt;}
.y157{bottom:362.720000pt;}
.yd5{bottom:362.901120pt;}
.y247{bottom:366.428800pt;}
.y63{bottom:369.514880pt;}
.y88{bottom:371.105280pt;}
.y1ee{bottom:371.448320pt;}
.y1d7{bottom:372.643840pt;}
.yf7{bottom:373.462400pt;}
.y207{bottom:376.684160pt;}
.yb1{bottom:376.970880pt;}
.y17c{bottom:378.484480pt;}
.y11b{bottom:379.702400pt;}
.y36{bottom:380.489600pt;}
.y19a{bottom:381.678720pt;}
.y152{bottom:383.520000pt;}
.yd4{bottom:384.819200pt;}
.y1bd{bottom:384.855040pt;}
.yb{bottom:386.533333pt;}
.y224{bottom:387.851520pt;}
.y265{bottom:388.325760pt;}
.y246{bottom:388.346880pt;}
.y62{bottom:391.432960pt;}
.y87{bottom:393.023360pt;}
.y1ed{bottom:393.204480pt;}
.y1d6{bottom:394.400000pt;}
.yf6{bottom:395.380480pt;}
.y8{bottom:397.065333pt;}
.y206{bottom:398.440320pt;}
.yb0{bottom:398.888960pt;}
.y17b{bottom:400.402560pt;}
.y11a{bottom:401.620480pt;}
.y35{bottom:402.245760pt;}
.y154{bottom:403.358880pt;}
.y199{bottom:403.434880pt;}
.yd3{bottom:406.575360pt;}
.y1bc{bottom:406.611200pt;}
.y223{bottom:409.607680pt;}
.y264{bottom:410.081920pt;}
.y245{bottom:410.103040pt;}
.y155{bottom:411.520000pt;}
.y61{bottom:413.189120pt;}
.y86{bottom:414.779520pt;}
.y1ec{bottom:414.960640pt;}
.yf5{bottom:417.136640pt;}
.y153{bottom:419.680000pt;}
.yaf{bottom:420.645120pt;}
.y17a{bottom:422.158720pt;}
.y1d5{bottom:422.560000pt;}
.y119{bottom:423.376640pt;}
.y34{bottom:424.001920pt;}
.y198{bottom:425.191040pt;}
.yd2{bottom:428.493440pt;}
.y1bb{bottom:428.529280pt;}
.y263{bottom:432.007680pt;}
.y244{bottom:432.021120pt;}
.y11{bottom:433.826667pt;}
.y205{bottom:434.916480pt;}
.y60{bottom:434.945280pt;}
.y85{bottom:436.697600pt;}
.y1eb{bottom:436.878720pt;}
.yf4{bottom:438.892800pt;}
.y222{bottom:439.533440pt;}
.yae{bottom:439.840000pt;}
.y7{bottom:442.406667pt;}
.y118{bottom:445.132800pt;}
.y33{bottom:445.920000pt;}
.y151{bottom:448.640000pt;}
.y1ba{bottom:450.285440pt;}
.y197{bottom:452.393600pt;}
.y243{bottom:453.777280pt;}
.yad{bottom:454.400000pt;}
.y204{bottom:456.834560pt;}
.y5f{bottom:456.863360pt;}
.y84{bottom:458.453760pt;}
.y179{bottom:458.634880pt;}
.yf3{bottom:460.810880pt;}
.y221{bottom:461.289600pt;}
.y1d4{bottom:461.667200pt;}
.y262{bottom:461.771520pt;}
.y14f{bottom:464.960000pt;}
.yd1{bottom:464.969600pt;}
.y32{bottom:473.760000pt;}
.y242{bottom:475.533440pt;}
.y150{bottom:476.640000pt;}
.y1b9{bottom:477.488000pt;}
.y12{bottom:478.426667pt;}
.y203{bottom:478.590720pt;}
.y5e{bottom:478.619520pt;}
.y83{bottom:480.209920pt;}
.y178{bottom:480.552960pt;}
.y117{bottom:481.770880pt;}
.yf2{bottom:482.567040pt;}
.y220{bottom:483.045760pt;}
.y261{bottom:483.527680pt;}
.y1d3{bottom:483.585280pt;}
.yd0{bottom:486.725760pt;}
.y196{bottom:487.589120pt;}
.y6{bottom:487.748000pt;}
.yac{bottom:490.240000pt;}
.y14b{bottom:497.440000pt;}
.y202{bottom:500.508800pt;}
.y5d{bottom:500.537600pt;}
.y177{bottom:502.309120pt;}
.y116{bottom:503.527040pt;}
.yf1{bottom:504.485120pt;}
.y1d2{bottom:505.341440pt;}
.y260{bottom:505.445760pt;}
.y241{bottom:505.459200pt;}
.ycf{bottom:508.481920pt;}
.y195{bottom:509.507200pt;}
.y31{bottom:511.560320pt;}
.y1b8{bottom:512.683520pt;}
.y21f{bottom:512.971520pt;}
.y82{bottom:516.848000pt;}
.y14d{bottom:517.278880pt;}
.y201{bottom:522.264960pt;}
.yf0{bottom:523.680000pt;}
.y176{bottom:524.065280pt;}
.y19{bottom:524.093333pt;}
.y115{bottom:525.283200pt;}
.y14e{bottom:525.440000pt;}
.yaa{bottom:526.080000pt;}
.y25f{bottom:527.201920pt;}
.y240{bottom:527.215360pt;}
.y1d1{bottom:527.259520pt;}
.yce{bottom:530.400000pt;}
.y194{bottom:531.263360pt;}
.y5{bottom:533.089333pt;}
.y30{bottom:533.478400pt;}
.y14c{bottom:533.600000pt;}
.y1b7{bottom:534.439680pt;}
.y21e{bottom:534.727680pt;}
.y5c{bottom:537.013760pt;}
.yef{bottom:538.240000pt;}
.y81{bottom:538.604160pt;}
.y200{bottom:544.021120pt;}
.y175{bottom:545.983360pt;}
.y114{bottom:547.201280pt;}
.y1d0{bottom:549.015680pt;}
.y23f{bottom:549.133440pt;}
.y193{bottom:553.181440pt;}
.y2f{bottom:555.234560pt;}
.yee{bottom:556.000000pt;}
.y1b6{bottom:556.357760pt;}
.y21d{bottom:556.645760pt;}
.y25e{bottom:557.127680pt;}
.ycd{bottom:558.240000pt;}
.y5b{bottom:558.769920pt;}
.y80{bottom:560.360320pt;}
.ye{bottom:561.706667pt;}
.ya7{bottom:561.920000pt;}
.y146{bottom:562.560000pt;}
.y1ff{bottom:565.939200pt;}
.y174{bottom:567.739520pt;}
.y113{bottom:568.957440pt;}
.y1cf{bottom:570.771840pt;}
.y23e{bottom:570.889600pt;}
.yed{bottom:573.920000pt;}
.y192{bottom:574.937600pt;}
.y2e{bottom:576.990720pt;}
.y1b5{bottom:578.113920pt;}
.y25d{bottom:578.883840pt;}
.y5a{bottom:580.688000pt;}
.y7f{bottom:582.278400pt;}
.y149{bottom:582.398880pt;}
.ya9{bottom:583.840000pt;}
.y21c{bottom:586.409600pt;}
.y173{bottom:589.657600pt;}
.y14a{bottom:590.560000pt;}
.yec{bottom:591.840000pt;}
.y1ce{bottom:592.689920pt;}
.ycc{bottom:596.036480pt;}
.y112{bottom:596.160000pt;}
.y191{bottom:596.693760pt;}
.y148{bottom:598.720000pt;}
.y2d{bottom:598.908800pt;}
.y25c{bottom:600.640000pt;}
.y23d{bottom:600.653440pt;}
.y1fe{bottom:602.415360pt;}
.y59{bottom:602.444160pt;}
.y7e{bottom:604.034560pt;}
.y1ea{bottom:604.215680pt;}
.y21b{bottom:608.165760pt;}
.yeb{bottom:610.400000pt;}
.y172{bottom:611.413760pt;}
.y1b4{bottom:614.590080pt;}
.ya3{bottom:615.520000pt;}
.ycb{bottom:617.954560pt;}
.y190{bottom:618.611840pt;}
.y2c{bottom:620.664960pt;}
.y25b{bottom:622.558080pt;}
.y23c{bottom:622.571520pt;}
.y111{bottom:622.720000pt;}
.y1fd{bottom:624.171520pt;}
.y58{bottom:624.200320pt;}
.y7d{bottom:625.952640pt;}
.y1e9{bottom:626.133760pt;}
.y144{bottom:627.680000pt;}
.y1cd{bottom:629.166080pt;}
.y21a{bottom:630.083840pt;}
.y171{bottom:633.169920pt;}
.y1b3{bottom:636.508160pt;}
.yea{bottom:636.997120pt;}
.ya6{bottom:637.445760pt;}
.y145{bottom:639.360000pt;}
.yca{bottom:639.710720pt;}
.y18f{bottom:640.368000pt;}
.y2b{bottom:642.583040pt;}
.y23b{bottom:644.327680pt;}
.y1fc{bottom:646.089600pt;}
.y57{bottom:646.118400pt;}
.y1e8{bottom:647.889920pt;}
.y1cc{bottom:650.922240pt;}
.y110{bottom:652.320000pt;}
.y25a{bottom:652.321920pt;}
.y170{bottom:655.088000pt;}
.ya5{bottom:655.360000pt;}
.y1b2{bottom:658.264320pt;}
.y219{bottom:659.847680pt;}
.y141{bottom:660.160000pt;}
.y18e{bottom:662.286080pt;}
.y7c{bottom:662.428800pt;}
.y2a{bottom:664.339200pt;}
.y23a{bottom:666.245760pt;}
.y1fb{bottom:667.845760pt;}
.y56{bottom:667.874560pt;}
.y1e7{bottom:669.646080pt;}
.ye9{bottom:672.192640pt;}
.y1cb{bottom:672.840320pt;}
.y259{bottom:674.253440pt;}
.yc9{bottom:676.186880pt;}
.y16f{bottom:676.844160pt;}
.y143{bottom:680.000000pt;}
.y1b1{bottom:680.182400pt;}
.y218{bottom:681.765760pt;}
.y18d{bottom:684.042240pt;}
.y7b{bottom:684.184960pt;}
.y29{bottom:686.095360pt;}
.ya1{bottom:687.840000pt;}
.y1fa{bottom:689.763840pt;}
.y55{bottom:689.792640pt;}
.y10f{bottom:691.392640pt;}
.y1e6{bottom:691.564160pt;}
.y4{bottom:691.756000pt;}
.ye8{bottom:694.110720pt;}
.y239{bottom:696.009600pt;}
.yc8{bottom:697.943040pt;}
.y1ca{bottom:700.042880pt;}
.y1b0{bottom:701.938560pt;}
.y217{bottom:703.521920pt;}
.y258{bottom:704.017280pt;}
.y7a{bottom:705.941120pt;}
.y28{bottom:708.013440pt;}
.y13f{bottom:709.120000pt;}
.y1f9{bottom:711.520000pt;}
.y54{bottom:711.548800pt;}
.y10e{bottom:713.148800pt;}
.y16e{bottom:713.320320pt;}
.ya0{bottom:714.435200pt;}
.ye7{bottom:715.866880pt;}
.y238{bottom:717.765760pt;}
.yc7{bottom:719.861120pt;}
.y18c{bottom:720.518400pt;}
.y140{bottom:720.800000pt;}
.y1af{bottom:723.694720pt;}
.y13{bottom:725.040000pt;}
.y257{bottom:725.773440pt;}
.y79{bottom:727.859200pt;}
.y27{bottom:729.769600pt;}
.y216{bottom:733.285760pt;}
.y53{bottom:733.304960pt;}
.y10d{bottom:735.066880pt;}
.y16d{bottom:735.238400pt;}
.ye6{bottom:737.784960pt;}
.y1f8{bottom:739.680000pt;}
.y237{bottom:739.683840pt;}
.y13d{bottom:741.600000pt;}
.yc6{bottom:741.617280pt;}
.y18b{bottom:742.274560pt;}
.y1ae{bottom:745.612800pt;}
.y256{bottom:747.691520pt;}
.y78{bottom:749.615360pt;}
.y9f{bottom:749.630720pt;}
.y26{bottom:751.687680pt;}
.y13e{bottom:753.280000pt;}
.y215{bottom:755.203840pt;}
.y52{bottom:755.223040pt;}
.y10c{bottom:756.823040pt;}
.y16c{bottom:756.994560pt;}
.ye5{bottom:759.541120pt;}
.yc5{bottom:763.535360pt;}
.y18a{bottom:764.192640pt;}
.y1ad{bottom:767.368960pt;}
.y236{bottom:769.447680pt;}
.y77{bottom:771.533440pt;}
.y9e{bottom:771.548800pt;}
.y25{bottom:773.443840pt;}
.y13a{bottom:774.240000pt;}
.y214{bottom:776.960000pt;}
.y51{bottom:776.979200pt;}
.y255{bottom:777.455360pt;}
.y10b{bottom:778.579200pt;}
.y16b{bottom:778.750720pt;}
.ye4{bottom:781.297280pt;}
.yc4{bottom:785.291520pt;}
.y13c{bottom:785.759867pt;}
.y189{bottom:785.948800pt;}
.y1ac{bottom:789.287040pt;}
.y235{bottom:791.365760pt;}
.y76{bottom:793.289600pt;}
.y9d{bottom:793.304960pt;}
.y24{bottom:795.200000pt;}
.y50{bottom:798.897280pt;}
.y254{bottom:799.373440pt;}
.y16a{bottom:800.668800pt;}
.ye3{bottom:803.215360pt;}
.y3{bottom:805.081333pt;}
.y213{bottom:805.280000pt;}
.y138{bottom:806.720000pt;}
.yc3{bottom:807.047680pt;}
.y188{bottom:807.866880pt;}
.y1ab{bottom:811.043200pt;}
.y234{bottom:813.121920pt;}
.y75{bottom:815.045760pt;}
.y10a{bottom:815.055360pt;}
.y9c{bottom:815.061120pt;}
.y139{bottom:818.400000pt;}
.y253{bottom:821.129600pt;}
.y169{bottom:822.424960pt;}
.y23{bottom:823.520000pt;}
.yc2{bottom:828.965760pt;}
.y187{bottom:829.623040pt;}
.y1aa{bottom:832.799360pt;}
.y4f{bottom:835.373440pt;}
.y74{bottom:836.963840pt;}
.ye2{bottom:836.968320pt;}
.y109{bottom:836.973440pt;}
.y1e5{bottom:837.144960pt;}
.y135{bottom:839.200000pt;}
.y233{bottom:842.885760pt;}
.y168{bottom:844.343040pt;}
.yc1{bottom:850.721920pt;}
.y137{bottom:850.880000pt;}
.y9b{bottom:851.537280pt;}
.y1a9{bottom:854.717440pt;}
.ye1{bottom:854.882560pt;}
.y2{bottom:857.092000pt;}
.y4e{bottom:857.129600pt;}
.y73{bottom:858.720000pt;}
.y108{bottom:858.729600pt;}
.y1e4{bottom:858.901120pt;}
.y232{bottom:864.803840pt;}
.y167{bottom:866.099200pt;}
.y127{bottom:872.480000pt;}
.y103{bottom:872.580533pt;}
.yc0{bottom:872.640000pt;}
.y252{bottom:872.811520pt;}
.y9a{bottom:873.455360pt;}
.y22{bottom:877.761920pt;}
.y4d{bottom:878.885760pt;}
.y1{bottom:879.748000pt;}
.y107{bottom:880.647680pt;}
.y1e3{bottom:880.819200pt;}
.y1a8{bottom:881.920000pt;}
.y12f{bottom:884.149920pt;}
.y102{bottom:885.864533pt;}
.y72{bottom:886.560000pt;}
.y166{bottom:887.855360pt;}
.y132{bottom:892.303840pt;}
.y12b{bottom:892.317120pt;}
.y251{bottom:894.567680pt;}
.y99{bottom:895.211520pt;}
.y21{bottom:899.680000pt;}
.y134{bottom:900.457760pt;}
.y12e{bottom:900.471040pt;}
.ybf{bottom:900.480000pt;}
.y4c{bottom:900.803840pt;}
.y106{bottom:902.403840pt;}
.y1c9{bottom:902.575360pt;}
.y1a7{bottom:908.480000pt;}
.y131{bottom:908.624960pt;}
.y12a{bottom:908.638240pt;}
.y165{bottom:909.773440pt;}
.y231{bottom:916.485760pt;}
.y133{bottom:916.619520pt;}
.y12d{bottom:916.632800pt;}
.y98{bottom:917.129600pt;}
.y4b{bottom:922.560000pt;}
.y105{bottom:924.160000pt;}
.y71{bottom:924.493440pt;}
.y130{bottom:924.786720pt;}
.y129{bottom:924.800000pt;}
.y20{bottom:928.640000pt;}
.ybe{bottom:931.367680pt;}
.ye0{bottom:931.529600pt;}
.y12c{bottom:932.953920pt;}
.y230{bottom:938.241920pt;}
.y97{bottom:938.885760pt;}
.y70{bottom:946.249600pt;}
.y4a{bottom:950.880000pt;}
.y104{bottom:952.160000pt;}
.ybd{bottom:953.447680pt;}
.y124{bottom:953.920000pt;}
.y1f{bottom:954.720000pt;}
.y22f{bottom:959.998080pt;}
.y96{bottom:960.641920pt;}
.y6f{bottom:968.005760pt;}
.ybc{bottom:975.203840pt;}
.y95{bottom:982.560000pt;}
.y49{bottom:989.923840pt;}
.y123{bottom:995.045760pt;}
.y1e{bottom:1006.720000pt;}
.y94{bottom:1010.400000pt;}
.y48{bottom:1011.680000pt;}
.y122{bottom:1012.960000pt;}
.y1a{bottom:1013.120000pt;}
.y1d{bottom:1021.120000pt;}
.y1c{bottom:1040.800000pt;}
.y44{bottom:1046.398880pt;}
.y43{bottom:1062.720000pt;}
.h26{height:16.320000pt;}
.h1c{height:17.760000pt;}
.h16{height:17.920000pt;}
.h1b{height:17.921333pt;}
.hd{height:18.690000pt;}
.h4{height:29.333333pt;}
.h23{height:32.478667pt;}
.h20{height:32.480000pt;}
.h22{height:32.640000pt;}
.h1d{height:34.453125pt;}
.h1a{height:35.838667pt;}
.h19{height:35.840000pt;}
.h13{height:36.935000pt;}
.hb{height:38.128125pt;}
.h14{height:42.122500pt;}
.h15{height:42.262500pt;}
.hc{height:45.937500pt;}
.h1f{height:46.690000pt;}
.hf{height:48.046080pt;}
.h12{height:48.060000pt;}
.h27{height:48.800000pt;}
.h24{height:48.960000pt;}
.h3{height:51.916667pt;}
.h10{height:52.065000pt;}
.h11{height:52.344320pt;}
.h18{height:53.598667pt;}
.h28{height:55.558400pt;}
.h29{height:55.581440pt;}
.he{height:59.185000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h1e{height:61.229125pt;}
.ha{height:62.400000pt;}
.h25{height:65.120000pt;}
.h17{height:71.681333pt;}
.h21{height:81.438667pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h9{height:1122.720000pt;}
.w13{width:79.360000pt;}
.w15{width:79.361333pt;}
.w12{width:79.518667pt;}
.w14{width:79.520000pt;}
.wc{width:132.800000pt;}
.w10{width:141.440000pt;}
.we{width:145.120000pt;}
.wf{width:172.800000pt;}
.wa{width:203.360000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.wb{width:401.280000pt;}
.w2{width:439.666667pt;}
.w11{width:470.560000pt;}
.wd{width:471.840000pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xc{left:7.200000pt;}
.x33{left:13.760000pt;}
.x37{left:17.760000pt;}
.x25{left:20.960000pt;}
.x3a{left:30.400000pt;}
.xa{left:94.560000pt;}
.x39{left:101.760000pt;}
.xe{left:104.160000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x40{left:118.553600pt;}
.x10{left:123.520000pt;}
.x18{left:131.863600pt;}
.xf{left:135.360000pt;}
.x14{left:141.752320pt;}
.x23{left:151.364480pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x19{left:180.652800pt;}
.x1a{left:188.656800pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x12{left:227.360000pt;}
.x13{left:234.560000pt;}
.x24{left:236.000000pt;}
.x26{left:246.080000pt;}
.x1c{left:248.578800pt;}
.x27{left:252.002880pt;}
.x16{left:257.274880pt;}
.x3f{left:259.520000pt;}
.x38{left:266.400000pt;}
.x1b{left:272.098800pt;}
.xb{left:297.920000pt;}
.xd{left:305.120000pt;}
.x3b{left:315.360000pt;}
.x28{left:325.454560pt;}
.x29{left:329.770560pt;}
.x2a{left:335.374720pt;}
.x1d{left:346.267600pt;}
.x1e{left:359.707600pt;}
.x17{left:372.480000pt;}
.x3c{left:394.720000pt;}
.x2b{left:406.728160pt;}
.x2c{left:416.010880pt;}
.x11{left:426.733920pt;}
.x1f{left:429.771333pt;}
.x20{left:446.091333pt;}
.x3d{left:474.240000pt;}
.x2e{left:488.015040pt;}
.x2f{left:492.649760pt;}
.x2d{left:497.935200pt;}
.x22{left:522.170267pt;}
.x21{left:543.290267pt;}
.x3e{left:553.600000pt;}
.x30{left:570.576800pt;}
.x31{left:581.931200pt;}
.x32{left:632.960000pt;}
.x35{left:647.196960pt;}
.x34{left:649.760000pt;}
.x36{left:655.682880pt;}
.x15{left:686.878080pt;}
}




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