
    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_7c64f2e93b49e4c617bedb96.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_de11b708d54e1c8f2cbd24b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_93630ef4668ffc7ee96bc841.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_d85e2b86cd271daaf9fd4d02.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_27cd526a6e54a8e470820ded.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101562;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_f5a49c2772c8673b2efd3ab4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_8b1bdaa3f4ae97c13af84c25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_dc35ded83f45361e70814931.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079102;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_92a9ca1b369271c95b93e955.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_e6cfbd22f1fbb02e61a2a5ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_6d93eb545d245da2add2f601.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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);}
.m3{transform:matrix(0.116601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116601,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.171577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171577,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079058,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079058,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079058,0.237171,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);}
.vf{vertical-align:-79.686000px;}
.v10{vertical-align:-60.083339px;}
.v14{vertical-align:-55.876602px;}
.v5{vertical-align:-44.999195px;}
.v8{vertical-align:-43.315116px;}
.v13{vertical-align:-40.680900px;}
.vb{vertical-align:-36.379169px;}
.vc{vertical-align:-34.874248px;}
.vd{vertical-align:-33.374446px;}
.v15{vertical-align:-21.583320px;}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.va{vertical-align:-16.876618px;}
.v9{vertical-align:-13.687618px;}
.ve{vertical-align:-11.998500px;}
.v12{vertical-align:-9.747000px;}
.v7{vertical-align:-6.748800px;}
.v11{vertical-align:-4.497300px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.v6{vertical-align:58.871051px;}
.ls48{letter-spacing:-4.217875px;}
.ls2f{letter-spacing:-2.794854px;}
.ls52{letter-spacing:-1.200000px;}
.ls30{letter-spacing:-0.837900px;}
.ls1d{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.349800px;}
.ls34{letter-spacing:-0.131100px;}
.ls49{letter-spacing:-0.081900px;}
.ls1{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.000780px;}
.ls6{letter-spacing:0.001200px;}
.ls7{letter-spacing:0.002400px;}
.ls3d{letter-spacing:0.003498px;}
.ls3a{letter-spacing:0.004560px;}
.ls39{letter-spacing:0.006000px;}
.ls3b{letter-spacing:0.006780px;}
.ls5{letter-spacing:0.007800px;}
.ls11{letter-spacing:0.010800px;}
.ls8{letter-spacing:0.012000px;}
.ls47{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.233700px;}
.ls10{letter-spacing:0.642000px;}
.ls51{letter-spacing:1.062000px;}
.ls14{letter-spacing:3.736709px;}
.ls4b{letter-spacing:9.607326px;}
.ls2b{letter-spacing:12.967500px;}
.ls32{letter-spacing:15.422884px;}
.ls28{letter-spacing:24.964290px;}
.ls33{letter-spacing:26.653487px;}
.ls17{letter-spacing:27.405948px;}
.ls40{letter-spacing:73.034753px;}
.ls3f{letter-spacing:74.534556px;}
.ls18{letter-spacing:85.180800px;}
.ls4d{letter-spacing:85.186500px;}
.ls26{letter-spacing:89.279100px;}
.ls13{letter-spacing:94.641123px;}
.lse{letter-spacing:96.292044px;}
.ls2e{letter-spacing:97.185000px;}
.ls42{letter-spacing:98.855100px;}
.ls43{letter-spacing:102.617100px;}
.ls2d{letter-spacing:112.531260px;}
.ls2c{letter-spacing:113.094325px;}
.ls35{letter-spacing:118.508377px;}
.ls41{letter-spacing:118.714746px;}
.ls0{letter-spacing:119.654400px;}
.ls45{letter-spacing:120.291330px;}
.ls4e{letter-spacing:120.589200px;}
.ls2{letter-spacing:124.033158px;}
.ls31{letter-spacing:126.218877px;}
.ls37{letter-spacing:127.790343px;}
.ls46{letter-spacing:135.774000px;}
.ls1f{letter-spacing:144.426039px;}
.lsf{letter-spacing:144.774455px;}
.ls36{letter-spacing:157.838931px;}
.lsd{letter-spacing:161.064900px;}
.ls1a{letter-spacing:174.568200px;}
.ls29{letter-spacing:189.952500px;}
.lsc{letter-spacing:196.146531px;}
.ls20{letter-spacing:206.991998px;}
.ls27{letter-spacing:212.204144px;}
.ls2a{letter-spacing:212.352588px;}
.lsb{letter-spacing:215.773500px;}
.lsa{letter-spacing:227.772000px;}
.ls9{letter-spacing:228.102600px;}
.ls4a{letter-spacing:237.604500px;}
.ls19{letter-spacing:247.875900px;}
.ls23{letter-spacing:253.296600px;}
.ls38{letter-spacing:258.249900px;}
.ls24{letter-spacing:265.664491px;}
.ls21{letter-spacing:271.720199px;}
.ls1c{letter-spacing:277.333500px;}
.ls44{letter-spacing:283.737559px;}
.ls3{letter-spacing:306.375000px;}
.ls25{letter-spacing:313.607175px;}
.ls1b{letter-spacing:315.899700px;}
.ls50{letter-spacing:334.185300px;}
.ls22{letter-spacing:357.592852px;}
.ls3e{letter-spacing:407.959481px;}
.ls4f{letter-spacing:450.813000px;}
.ls12{letter-spacing:538.782308px;}
.ls16{letter-spacing:561.903837px;}
.ls15{letter-spacing:598.544064px;}
.ls4c{letter-spacing:672.810900px;}
.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;}
}
.ws3d{word-spacing:-341.709278px;}
.ws7{word-spacing:-320.625000px;}
.ws96{word-spacing:-316.723312px;}
.ws3a{word-spacing:-284.517149px;}
.ws3b{word-spacing:-267.546600px;}
.ws9{word-spacing:-150.947400px;}
.ws97{word-spacing:-148.393432px;}
.ws3e{word-spacing:-143.189700px;}
.ws94{word-spacing:-131.511696px;}
.ws6{word-spacing:-127.078832px;}
.ws3c{word-spacing:-123.940800px;}
.ws38{word-spacing:-120.478369px;}
.ws40{word-spacing:-119.192700px;}
.ws95{word-spacing:-116.867100px;}
.ws47{word-spacing:-107.438073px;}
.ws4c{word-spacing:-104.807020px;}
.ws52{word-spacing:-65.352648px;}
.ws5{word-spacing:-60.000000px;}
.ws44{word-spacing:-44.260500px;}
.ws3{word-spacing:-21.000000px;}
.ws3f{word-spacing:-18.758700px;}
.ws4d{word-spacing:-15.489428px;}
.ws2{word-spacing:-15.000000px;}
.ws92{word-spacing:-14.400000px;}
.ws39{word-spacing:-12.796950px;}
.ws0{word-spacing:-10.494000px;}
.ws49{word-spacing:-10.002096px;}
.ws36{word-spacing:-8.745000px;}
.ws93{word-spacing:-8.579075px;}
.ws37{word-spacing:-8.395200px;}
.ws1{word-spacing:-7.870500px;}
.ws6b{word-spacing:-6.000000px;}
.wsff{word-spacing:-4.524000px;}
.ws67{word-spacing:-3.264000px;}
.ws6a{word-spacing:-3.210000px;}
.wse9{word-spacing:-3.000000px;}
.wse2{word-spacing:-2.556000px;}
.wsc{word-spacing:-2.440800px;}
.ws55{word-spacing:-2.352000px;}
.wsb9{word-spacing:-2.346000px;}
.wsc7{word-spacing:-2.184000px;}
.wsf2{word-spacing:-2.010000px;}
.ws9e{word-spacing:-1.986000px;}
.wsc6{word-spacing:-1.896000px;}
.ws54{word-spacing:-1.752000px;}
.ws8e{word-spacing:-1.596000px;}
.ws2a{word-spacing:-1.590000px;}
.ws6e{word-spacing:-1.578000px;}
.wsfd{word-spacing:-1.554000px;}
.ws5c{word-spacing:-1.452000px;}
.wsda{word-spacing:-1.422000px;}
.wsf8{word-spacing:-1.380000px;}
.wsb{word-spacing:-1.303200px;}
.ws1e{word-spacing:-1.194000px;}
.ws9f{word-spacing:-1.080000px;}
.ws72{word-spacing:-0.960000px;}
.wsb5{word-spacing:-0.924000px;}
.ws7f{word-spacing:-0.906000px;}
.ws75{word-spacing:-0.792000px;}
.ws8f{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.738000px;}
.ws29{word-spacing:-0.732000px;}
.ws13{word-spacing:-0.636000px;}
.wsc0{word-spacing:-0.588000px;}
.ws64{word-spacing:-0.528000px;}
.ws98{word-spacing:-0.486557px;}
.ws4{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws84{word-spacing:0.084000px;}
.wsae{word-spacing:0.246000px;}
.wsad{word-spacing:0.264000px;}
.wsbe{word-spacing:0.282000px;}
.wsbd{word-spacing:0.288000px;}
.wsee{word-spacing:0.318000px;}
.wsf4{word-spacing:0.324000px;}
.wscd{word-spacing:0.342000px;}
.wsbb{word-spacing:0.378000px;}
.wsba{word-spacing:0.384000px;}
.wscf{word-spacing:0.540000px;}
.ws102{word-spacing:0.576000px;}
.wsf7{word-spacing:0.624000px;}
.ws68{word-spacing:0.672000px;}
.ws83{word-spacing:0.708000px;}
.wsd3{word-spacing:1.104000px;}
.wsea{word-spacing:1.350000px;}
.ws4f{word-spacing:1.361595px;}
.wscb{word-spacing:1.422000px;}
.wscc{word-spacing:1.428000px;}
.ws62{word-spacing:1.686000px;}
.wsc5{word-spacing:1.764000px;}
.wsf6{word-spacing:1.806000px;}
.ws11{word-spacing:2.118000px;}
.ws5e{word-spacing:2.124000px;}
.ws2f{word-spacing:2.130000px;}
.ws86{word-spacing:2.166000px;}
.wsed{word-spacing:2.178000px;}
.wse4{word-spacing:2.274000px;}
.ws15{word-spacing:2.358000px;}
.ws5d{word-spacing:2.898000px;}
.wsc9{word-spacing:3.366000px;}
.wsef{word-spacing:3.372000px;}
.wsd5{word-spacing:3.636000px;}
.wsd9{word-spacing:3.678000px;}
.ws34{word-spacing:3.690000px;}
.ws9b{word-spacing:3.906000px;}
.wsac{word-spacing:3.972000px;}
.wsbc{word-spacing:4.182000px;}
.wsb4{word-spacing:4.248000px;}
.wsaa{word-spacing:4.530000px;}
.ws88{word-spacing:4.536000px;}
.wsb7{word-spacing:4.608000px;}
.ws9a{word-spacing:4.638000px;}
.wsfb{word-spacing:4.866000px;}
.wsfc{word-spacing:4.872000px;}
.wsf0{word-spacing:4.980000px;}
.wsf1{word-spacing:4.986000px;}
.ws91{word-spacing:4.992000px;}
.wse3{word-spacing:5.070000px;}
.ws57{word-spacing:5.106000px;}
.ws69{word-spacing:5.346000px;}
.wsd0{word-spacing:5.442000px;}
.wsd1{word-spacing:5.448000px;}
.wsa2{word-spacing:5.478000px;}
.ws1f{word-spacing:5.556000px;}
.wsb8{word-spacing:5.574000px;}
.wsc4{word-spacing:5.580000px;}
.ws22{word-spacing:5.766000px;}
.ws85{word-spacing:5.838000px;}
.ws79{word-spacing:5.868000px;}
.ws7a{word-spacing:5.874000px;}
.wsf5{word-spacing:6.150000px;}
.ws2c{word-spacing:6.204000px;}
.ws12{word-spacing:6.450000px;}
.ws35{word-spacing:6.486000px;}
.wsf3{word-spacing:6.582000px;}
.wsb6{word-spacing:6.594000px;}
.ws59{word-spacing:6.744000px;}
.ws56{word-spacing:6.840000px;}
.wse{word-spacing:7.134000px;}
.wse5{word-spacing:7.200000px;}
.ws90{word-spacing:7.458000px;}
.wseb{word-spacing:7.500000px;}
.ws1a{word-spacing:7.518000px;}
.ws77{word-spacing:7.842000px;}
.wsd7{word-spacing:7.968000px;}
.wsca{word-spacing:8.370000px;}
.wse8{word-spacing:8.610000px;}
.wsb2{word-spacing:8.934000px;}
.wsc2{word-spacing:9.006000px;}
.wsd8{word-spacing:9.054000px;}
.ws81{word-spacing:9.354000px;}
.ws78{word-spacing:9.504000px;}
.ws104{word-spacing:9.528000px;}
.ws105{word-spacing:9.534000px;}
.ws41{word-spacing:9.607950px;}
.ws60{word-spacing:9.660000px;}
.wsd2{word-spacing:10.050000px;}
.wsfe{word-spacing:10.092000px;}
.wsc8{word-spacing:10.176000px;}
.ws23{word-spacing:10.290000px;}
.ws74{word-spacing:10.338000px;}
.wsdf{word-spacing:10.542000px;}
.ws100{word-spacing:10.608000px;}
.wsc3{word-spacing:11.070000px;}
.wsce{word-spacing:11.088000px;}
.ws17{word-spacing:11.208000px;}
.wsfa{word-spacing:11.232000px;}
.ws65{word-spacing:11.760000px;}
.ws58{word-spacing:12.120000px;}
.ws2d{word-spacing:12.162000px;}
.ws103{word-spacing:12.222000px;}
.ws71{word-spacing:12.288000px;}
.ws28{word-spacing:12.318000px;}
.wsb0{word-spacing:12.426000px;}
.wsb1{word-spacing:12.432000px;}
.ws14{word-spacing:12.864000px;}
.wsf9{word-spacing:12.942000px;}
.ws10{word-spacing:13.272000px;}
.wsb3{word-spacing:13.284000px;}
.wsa8{word-spacing:13.392000px;}
.ws8b{word-spacing:13.416000px;}
.ws9c{word-spacing:13.518000px;}
.ws89{word-spacing:13.698000px;}
.ws33{word-spacing:13.734000px;}
.ws32{word-spacing:13.782000px;}
.ws5f{word-spacing:13.938000px;}
.wsde{word-spacing:14.094000px;}
.wsab{word-spacing:14.166000px;}
.wsbf{word-spacing:14.214000px;}
.ws8{word-spacing:14.244300px;}
.ws24{word-spacing:14.634000px;}
.ws61{word-spacing:14.760000px;}
.ws6c{word-spacing:14.802000px;}
.ws5b{word-spacing:14.958000px;}
.ws21{word-spacing:15.018000px;}
.ws8d{word-spacing:15.324000px;}
.ws73{word-spacing:15.354000px;}
.ws30{word-spacing:15.402000px;}
.wsa9{word-spacing:15.510000px;}
.wsec{word-spacing:15.732000px;}
.ws5a{word-spacing:16.014000px;}
.wsdd{word-spacing:16.050000px;}
.wsa3{word-spacing:16.080000px;}
.ws6d{word-spacing:16.272000px;}
.wsdc{word-spacing:16.422000px;}
.ws16{word-spacing:16.710000px;}
.wsd{word-spacing:16.831800px;}
.ws1c{word-spacing:17.016000px;}
.wse1{word-spacing:17.136000px;}
.ws7e{word-spacing:17.202000px;}
.ws19{word-spacing:17.370000px;}
.wsf{word-spacing:17.406000px;}
.wsd4{word-spacing:17.418000px;}
.wsa4{word-spacing:17.544000px;}
.ws6f{word-spacing:17.700000px;}
.ws9d{word-spacing:17.802000px;}
.ws76{word-spacing:18.084000px;}
.ws2b{word-spacing:18.138000px;}
.ws63{word-spacing:18.246000px;}
.wsdb{word-spacing:18.606000px;}
.wsa1{word-spacing:19.236000px;}
.ws31{word-spacing:19.266000px;}
.ws20{word-spacing:19.452000px;}
.ws27{word-spacing:20.646000px;}
.ws66{word-spacing:24.408000px;}
.ws2e{word-spacing:25.422000px;}
.ws25{word-spacing:25.560000px;}
.wse7{word-spacing:25.716000px;}
.wse0{word-spacing:26.154000px;}
.ws1b{word-spacing:26.406000px;}
.ws80{word-spacing:27.630000px;}
.wsa6{word-spacing:28.404000px;}
.wse6{word-spacing:28.410000px;}
.ws8c{word-spacing:28.416000px;}
.ws101{word-spacing:28.596000px;}
.wsc1{word-spacing:29.748000px;}
.wsaf{word-spacing:30.102000px;}
.ws7d{word-spacing:30.150000px;}
.ws70{word-spacing:30.882000px;}
.ws8a{word-spacing:31.776000px;}
.ws26{word-spacing:32.592000px;}
.ws51{word-spacing:34.428000px;}
.ws82{word-spacing:34.980000px;}
.wsd6{word-spacing:36.396000px;}
.ws7c{word-spacing:38.778000px;}
.ws87{word-spacing:38.988000px;}
.wsa0{word-spacing:44.712000px;}
.ws53{word-spacing:46.278000px;}
.ws1d{word-spacing:52.068000px;}
.wsa5{word-spacing:52.362000px;}
.ws7b{word-spacing:65.538000px;}
.ws99{word-spacing:68.171119px;}
.ws43{word-spacing:76.323000px;}
.ws4a{word-spacing:99.058631px;}
.ws45{word-spacing:105.193500px;}
.wsa7{word-spacing:107.316000px;}
.ws4e{word-spacing:108.973707px;}
.ws42{word-spacing:119.403600px;}
.ws50{word-spacing:160.346700px;}
.ws4b{word-spacing:245.424900px;}
.ws48{word-spacing:264.062504px;}
.ws46{word-spacing:302.867975px;}
._10{margin-left:-836.435100px;}
._1f{margin-left:-627.803011px;}
._13{margin-left:-520.227600px;}
._31{margin-left:-274.130233px;}
._22{margin-left:-246.755909px;}
._20{margin-left:-245.629777px;}
._25{margin-left:-240.545700px;}
._29{margin-left:-212.439608px;}
._28{margin-left:-180.754359px;}
._23{margin-left:-179.628228px;}
._24{margin-left:-172.129215px;}
._26{margin-left:-136.653835px;}
._30{margin-left:-99.408159px;}
._2e{margin-left:-97.435977px;}
._2a{margin-left:-76.876800px;}
._27{margin-left:-64.128076px;}
._b{margin-left:-50.224800px;}
._2d{margin-left:-29.896800px;}
._21{margin-left:-23.812565px;}
._2c{margin-left:-18.738840px;}
._9{margin-left:-16.885200px;}
._a{margin-left:-15.330000px;}
._c{margin-left:-14.203200px;}
._19{margin-left:-12.090000px;}
._17{margin-left:-10.222800px;}
._d{margin-left:-8.464800px;}
._2{margin-left:-6.960600px;}
._3{margin-left:-5.505000px;}
._1{margin-left:-3.823200px;}
._0{margin-left:-1.900800px;}
._4{width:1.356600px;}
._e{width:2.700000px;}
._1e{width:3.722400px;}
._15{width:5.100000px;}
._14{width:8.037000px;}
._34{width:9.674400px;}
._16{width:12.120000px;}
._18{width:16.002000px;}
._1a{width:18.240000px;}
._1b{width:21.018000px;}
._f{width:35.621590px;}
._6{width:38.966400px;}
._1d{width:42.900000px;}
._5{width:58.239000px;}
._32{width:59.644412px;}
._33{width:87.141514px;}
._11{width:104.972100px;}
._12{width:111.600300px;}
._8{width:115.236000px;}
._1c{width:126.594000px;}
._2b{width:146.627453px;}
._7{width:159.822000px;}
._2f{width:313.739400px;}
.fc2{color:rgb(28,24,28);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs12{font-size:20.400000px;}
.fs11{font-size:24.000000px;}
.fsd{font-size:26.587800px;}
.fsf{font-size:30.000000px;}
.fs4{font-size:31.482000px;}
.fse{font-size:33.758400px;}
.fs8{font-size:34.980000px;}
.fs3{font-size:41.976000px;}
.fs10{font-size:42.000000px;}
.fs6{font-size:51.187800px;}
.fsc{font-size:53.956742px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.083339px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:82.312800px;}
.fs1{font-size:84.000000px;}
.fsb{font-size:120.937800px;}
.y0{bottom:0.000000px;}
.y3{bottom:59.592000px;}
.yd{bottom:106.464000px;}
.y138{bottom:112.623000px;}
.yc7{bottom:120.888000px;}
.y92{bottom:123.078000px;}
.yc{bottom:127.159500px;}
.yc6{bottom:138.888000px;}
.y169{bottom:140.524500px;}
.y91{bottom:141.078000px;}
.yb{bottom:143.116500px;}
.y1ad{bottom:150.873000px;}
.y17e{bottom:158.736000px;}
.y90{bottom:159.078000px;}
.y181{bottom:159.136500px;}
.yc5{bottom:161.140500px;}
.ya{bottom:163.812000px;}
.y11b{bottom:166.234500px;}
.y1ac{bottom:168.873000px;}
.y17d{bottom:169.309500px;}
.yc4{bottom:179.140500px;}
.y9{bottom:179.767500px;}
.y17c{bottom:179.883000px;}
.y11a{bottom:184.234500px;}
.yef{bottom:187.371525px;}
.ycb{bottom:190.178983px;}
.yd4{bottom:190.179773px;}
.y17b{bottom:190.456500px;}
.y1ab{bottom:191.125500px;}
.yee{bottom:195.246075px;}
.yc3{bottom:197.140500px;}
.yd3{bottom:200.210022px;}
.y8{bottom:200.463000px;}
.y17a{bottom:201.028500px;}
.y119{bottom:202.234500px;}
.ye3{bottom:204.148291px;}
.yde{bottom:204.665025px;}
.yed{bottom:208.699500px;}
.y1aa{bottom:209.125500px;}
.y179{bottom:211.602000px;}
.yc2{bottom:215.140500px;}
.y7{bottom:216.420000px;}
.yd2{bottom:220.133594px;}
.y118{bottom:220.234500px;}
.yec{bottom:222.151500px;}
.y178{bottom:222.175500px;}
.yd9{bottom:224.585625px;}
.ydd{bottom:224.586525px;}
.y1a9{bottom:227.125500px;}
.yd1{bottom:229.836241px;}
.yca{bottom:230.960303px;}
.y177{bottom:232.749000px;}
.yeb{bottom:232.791975px;}
.yc1{bottom:233.140500px;}
.ydc{bottom:233.680875px;}
.y180{bottom:233.829000px;}
.y6{bottom:237.115500px;}
.yd0{bottom:239.867770px;}
.y176{bottom:243.322500px;}
.yea{bottom:243.432450px;}
.ye2{bottom:243.806039px;}
.yd8{bottom:244.320450px;}
.y164{bottom:245.151075px;}
.y163{bottom:246.275400px;}
.y162{bottom:247.399725px;}
.y1a8{bottom:249.376500px;}
.yc0{bottom:251.140500px;}
.y161{bottom:253.679700px;}
.y175{bottom:253.894500px;}
.y145{bottom:253.913625px;}
.y160{bottom:254.102925px;}
.ye9{bottom:256.885875px;}
.y14b{bottom:256.913550px;}
.y15f{bottom:257.290650px;}
.y15e{bottom:257.665425px;}
.y15d{bottom:261.602700px;}
.y147{bottom:263.426922px;}
.y141{bottom:263.427478px;}
.y174{bottom:264.468000px;}
.y13f{bottom:267.880500px;}
.y144{bottom:267.881475px;}
.y15c{bottom:267.882675px;}
.y15b{bottom:270.741225px;}
.y15a{bottom:271.116000px;}
.y1a7{bottom:271.629000px;}
.y13e{bottom:274.254858px;}
.y173{bottom:275.041500px;}
.y159{bottom:275.053275px;}
.y14a{bottom:276.693975px;}
.y158{bottom:277.163700px;}
.ye8{bottom:278.260875px;}
.y2e{bottom:279.160500px;}
.ybf{bottom:281.896500px;}
.y157{bottom:283.443675px;}
.ye7{bottom:284.399775px;}
.y156{bottom:284.568000px;}
.y172{bottom:285.615000px;}
.y13d{bottom:285.692772px;}
.yc9{bottom:285.804192px;}
.ycf{bottom:285.804982px;}
.ye1{bottom:285.805629px;}
.y155{bottom:288.505275px;}
.yd7{bottom:289.038375px;}
.y140{bottom:291.364500px;}
.y139{bottom:292.021500px;}
.y14c{bottom:292.114500px;}
.y154{bottom:295.818375px;}
.y143{bottom:295.818600px;}
.yce{bottom:295.836511px;}
.y171{bottom:296.188500px;}
.ye0{bottom:296.585780px;}
.y117{bottom:297.762000px;}
.ydf{bottom:299.773500px;}
.yd6{bottom:300.288750px;}
.ycc{bottom:300.289500px;}
.ydb{bottom:300.289650px;}
.ye6{bottom:300.289950px;}
.y8f{bottom:300.385500px;}
.y2d{bottom:301.411500px;}
.y153{bottom:301.960125px;}
.y152{bottom:302.148225px;}
.y13c{bottom:302.193160px;}
.y1a6{bottom:302.385150px;}
.ybe{bottom:303.496500px;}
.yc8{bottom:306.664500px;}
.y17f{bottom:306.679500px;}
.y170{bottom:306.762000px;}
.ye5{bottom:308.493675px;}
.yda{bottom:309.384000px;}
.yd5{bottom:309.993000px;}
.y146{bottom:311.896650px;}
.y151{bottom:312.928350px;}
.ycd{bottom:314.259000px;}
.y150{bottom:315.413550px;}
.y142{bottom:316.350000px;}
.y149{bottom:316.350300px;}
.y16f{bottom:317.334000px;}
.ye4{bottom:317.398500px;}
.y13b{bottom:322.724586px;}
.y2c{bottom:323.662500px;}
.y148{bottom:325.162500px;}
.y14f{bottom:325.630800px;}
.y16e{bottom:327.907500px;}
.y14e{bottom:328.864125px;}
.y13a{bottom:334.162500px;}
.y16d{bottom:338.481000px;}
.y48{bottom:340.554000px;}
.y14d{bottom:341.568000px;}
.ybd{bottom:342.105000px;}
.y8e{bottom:343.896000px;}
.y2b{bottom:345.913500px;}
.y16c{bottom:349.054500px;}
.y19b{bottom:354.214500px;}
.y47{bottom:358.554000px;}
.y16b{bottom:359.628000px;}
.ybc{bottom:360.105000px;}
.y8d{bottom:361.896000px;}
.y2a{bottom:363.913500px;}
.y16a{bottom:370.200000px;}
.y116{bottom:371.038500px;}
.y1a5{bottom:372.016500px;}
.y19a{bottom:372.214500px;}
.y46{bottom:376.554000px;}
.ybb{bottom:378.105000px;}
.y8c{bottom:379.896000px;}
.y29{bottom:381.913500px;}
.y137{bottom:386.875500px;}
.y115{bottom:389.038500px;}
.y1a4{bottom:390.016500px;}
.y199{bottom:390.214500px;}
.y45{bottom:394.554000px;}
.y8b{bottom:397.896000px;}
.y28{bottom:399.913500px;}
.yba{bottom:400.356000px;}
.y136{bottom:404.875500px;}
.y114{bottom:407.038500px;}
.y1a3{bottom:408.016500px;}
.y198{bottom:408.214500px;}
.y44{bottom:412.554000px;}
.y8a{bottom:415.896000px;}
.y27{bottom:417.913500px;}
.y135{bottom:422.875500px;}
.y113{bottom:425.038500px;}
.y1a2{bottom:426.016500px;}
.yb6{bottom:429.089625px;}
.y43{bottom:430.554000px;}
.y89{bottom:433.896000px;}
.yb3{bottom:435.886737px;}
.y112{bottom:438.043212px;}
.y197{bottom:438.970500px;}
.yb4{bottom:440.340000px;}
.y134{bottom:440.875500px;}
.yb9{bottom:441.298500px;}
.yb8{bottom:441.313500px;}
.y111{bottom:443.038500px;}
.yb2{bottom:445.777500px;}
.y1a1{bottom:448.269000px;}
.y42{bottom:448.554000px;}
.y26{bottom:448.669500px;}
.yb5{bottom:450.229500px;}
.y88{bottom:451.896000px;}
.y133{bottom:458.875500px;}
.y110{bottom:461.038500px;}
.y1a0{bottom:466.269000px;}
.y41{bottom:466.554000px;}
.y87{bottom:469.896000px;}
.yb7{bottom:472.857000px;}
.y132{bottom:476.875500px;}
.y10f{bottom:479.038500px;}
.y196{bottom:481.179000px;}
.y25{bottom:487.278000px;}
.y86{bottom:487.896000px;}
.y4b{bottom:493.498650px;}
.y131{bottom:494.875500px;}
.y10e{bottom:497.038500px;}
.y40{bottom:497.310000px;}
.y4c{bottom:497.952000px;}
.y195{bottom:499.179000px;}
.y85{bottom:505.896000px;}
.yb1{bottom:506.334975px;}
.y19f{bottom:510.772500px;}
.yb0{bottom:511.021800px;}
.y130{bottom:512.875500px;}
.y10d{bottom:515.038500px;}
.yaf{bottom:515.286825px;}
.y194{bottom:517.179000px;}
.ya8{bottom:517.818237px;}
.yac{bottom:518.568237px;}
.yaa{bottom:522.271500px;}
.yae{bottom:522.272175px;}
.y67{bottom:524.091000px;}
.ya7{bottom:527.709000px;}
.y3f{bottom:528.066000px;}
.yab{bottom:528.459000px;}
.y19e{bottom:528.772500px;}
.y24{bottom:529.485000px;}
.ya9{bottom:532.161000px;}
.yad{bottom:532.161675px;}
.y10c{bottom:533.038500px;}
.y193{bottom:535.179000px;}
.y84{bottom:536.652000px;}
.y12f{bottom:543.630000px;}
.y3e{bottom:546.066000px;}
.y23{bottom:547.485000px;}
.y1de{bottom:550.483500px;}
.y10b{bottom:551.038500px;}
.y192{bottom:553.179000px;}
.y66{bottom:559.098000px;}
.y1dd{bottom:561.184500px;}
.y3d{bottom:564.066000px;}
.y1c8{bottom:565.908000px;}
.y10a{bottom:569.038500px;}
.y22{bottom:569.737500px;}
.y191{bottom:571.179000px;}
.y1dc{bottom:571.885500px;}
.y83{bottom:575.260500px;}
.y65{bottom:577.098000px;}
.y3c{bottom:582.066000px;}
.y12e{bottom:582.238500px;}
.y1db{bottom:582.586500px;}
.y190{bottom:589.179000px;}
.y21{bottom:591.990000px;}
.y82{bottom:593.260500px;}
.y1da{bottom:593.287500px;}
.y64{bottom:599.350500px;}
.y109{bottom:599.794500px;}
.y3b{bottom:600.066000px;}
.y12d{bottom:600.238500px;}
.y1d9{bottom:603.988500px;}
.y18f{bottom:607.179000px;}
.y81{bottom:611.260500px;}
.y20{bottom:614.242500px;}
.y1d8{bottom:614.689500px;}
.y63{bottom:617.350500px;}
.y3a{bottom:618.066000px;}
.y12c{bottom:618.238500px;}
.y18e{bottom:625.179000px;}
.y1d7{bottom:625.389000px;}
.y1f{bottom:632.242500px;}
.y39{bottom:636.066000px;}
.y1d6{bottom:636.090000px;}
.y12b{bottom:636.238500px;}
.y80{bottom:637.764000px;}
.y108{bottom:638.401500px;}
.y1c7{bottom:642.727500px;}
.y18d{bottom:643.179000px;}
.ya3{bottom:644.875200px;}
.y1d5{bottom:646.791000px;}
.y9f{bottom:651.672000px;}
.ya6{bottom:652.422237px;}
.y12a{bottom:654.238500px;}
.y1e{bottom:654.493500px;}
.y7f{bottom:655.764000px;}
.ya4{bottom:656.125500px;}
.ya2{bottom:656.125575px;}
.y107{bottom:656.401500px;}
.y62{bottom:656.610000px;}
.y1d4{bottom:657.492000px;}
.y18c{bottom:661.179000px;}
.ya0{bottom:661.562763px;}
.ya5{bottom:662.313000px;}
.y38{bottom:662.571000px;}
.ya1{bottom:666.016500px;}
.y1d3{bottom:668.193000px;}
.y129{bottom:672.238500px;}
.y1d{bottom:672.493500px;}
.y7e{bottom:673.764000px;}
.y106{bottom:674.401500px;}
.y1d2{bottom:678.894000px;}
.y18b{bottom:679.179000px;}
.y37{bottom:680.571000px;}
.y61{bottom:683.115000px;}
.y1d1{bottom:689.595000px;}
.y128{bottom:690.238500px;}
.y1c{bottom:690.493500px;}
.y105{bottom:692.401500px;}
.y7d{bottom:696.016500px;}
.y18a{bottom:697.179000px;}
.y1d0{bottom:700.294500px;}
.y60{bottom:701.115000px;}
.y36{bottom:702.822000px;}
.y127{bottom:708.238500px;}
.y1b{bottom:708.493500px;}
.y104{bottom:710.401500px;}
.y1cf{bottom:710.995500px;}
.y7c{bottom:714.016500px;}
.y189{bottom:715.179000px;}
.y5f{bottom:719.115000px;}
.y1c6{bottom:720.609000px;}
.y35{bottom:720.822000px;}
.y1ce{bottom:721.696500px;}
.y1a{bottom:726.493500px;}
.y103{bottom:728.401500px;}
.y1cd{bottom:732.397500px;}
.y188{bottom:733.179000px;}
.y7b{bottom:736.269000px;}
.y34{bottom:738.822000px;}
.y5e{bottom:741.366000px;}
.y1cc{bottom:743.098500px;}
.y19{bottom:744.493500px;}
.y102{bottom:746.401500px;}
.y187{bottom:751.179000px;}
.y126{bottom:752.742000px;}
.y1cb{bottom:753.799500px;}
.y7a{bottom:754.269000px;}
.y5d{bottom:759.366000px;}
.y33{bottom:761.074500px;}
.y18{bottom:762.493500px;}
.y101{bottom:764.401500px;}
.y1ca{bottom:764.500500px;}
.y186{bottom:769.179000px;}
.y79{bottom:772.269000px;}
.y1c9{bottom:775.200000px;}
.y167{bottom:775.577589px;}
.y5c{bottom:777.366000px;}
.y32{bottom:779.074500px;}
.y17{bottom:780.493500px;}
.y168{bottom:781.197000px;}
.y100{bottom:782.401500px;}
.y19d{bottom:785.023500px;}
.y185{bottom:787.179000px;}
.y78{bottom:790.269000px;}
.y5b{bottom:795.366000px;}
.y31{bottom:797.074500px;}
.y16{bottom:798.493500px;}
.yff{bottom:800.401500px;}
.y19c{bottom:807.276000px;}
.y77{bottom:808.269000px;}
.y166{bottom:812.298000px;}
.y5a{bottom:813.366000px;}
.y30{bottom:815.074500px;}
.y184{bottom:817.935000px;}
.yfe{bottom:818.401500px;}
.y76{bottom:826.269000px;}
.y15{bottom:829.249500px;}
.y1c2{bottom:830.211000px;}
.y59{bottom:831.366000px;}
.y2f{bottom:833.074500px;}
.yfd{bottom:836.401500px;}
.y1c5{bottom:838.675500px;}
.y1c1{bottom:841.378500px;}
.y75{bottom:848.520000px;}
.y58{bottom:849.366000px;}
.y1c0{bottom:852.547500px;}
.yfc{bottom:854.401500px;}
.y1bf{bottom:863.716500px;}
.y165{bottom:865.291500px;}
.y74{bottom:866.520000px;}
.y57{bottom:867.366000px;}
.y183{bottom:869.638500px;}
.yfb{bottom:872.401500px;}
.y1be{bottom:874.884000px;}
.y125{bottom:882.994500px;}
.y73{bottom:884.520000px;}
.y56{bottom:885.366000px;}
.y1bd{bottom:886.053000px;}
.y182{bottom:887.638500px;}
.yfa{bottom:890.401500px;}
.y14{bottom:892.389000px;}
.y1bc{bottom:897.222000px;}
.y124{bottom:900.994500px;}
.y55{bottom:903.366000px;}
.y72{bottom:906.772500px;}
.y1bb{bottom:908.389500px;}
.yf9{bottom:908.401500px;}
.y94{bottom:914.568000px;}
.y13{bottom:914.641500px;}
.y1e3{bottom:915.991500px;}
.y1c4{bottom:918.220500px;}
.y123{bottom:918.994500px;}
.y1ba{bottom:919.558500px;}
.y71{bottom:924.772500px;}
.y97{bottom:926.083701px;}
.yf8{bottom:926.401500px;}
.y1ec{bottom:929.872830px;}
.y99{bottom:930.536625px;}
.y9d{bottom:930.536700px;}
.y1b9{bottom:930.727500px;}
.y12{bottom:932.641500px;}
.y122{bottom:936.994500px;}
.y96{bottom:937.333500px;}
.y9a{bottom:938.083500px;}
.y95{bottom:940.333500px;}
.y98{bottom:941.787000px;}
.y9c{bottom:941.787075px;}
.y1b8{bottom:941.895000px;}
.y54{bottom:942.627000px;}
.y70{bottom:942.772500px;}
.yf7{bottom:944.401500px;}
.y1f2{bottom:947.023500px;}
.y11{bottom:950.641500px;}
.y9b{bottom:950.880000px;}
.y1eb{bottom:952.149630px;}
.y1b7{bottom:953.064000px;}
.y9e{bottom:953.787000px;}
.y121{bottom:954.994500px;}
.y1b6{bottom:964.233000px;}
.y1f1{bottom:965.023500px;}
.y10{bottom:968.641500px;}
.y6f{bottom:969.276000px;}
.y120{bottom:972.994500px;}
.y1ea{bottom:974.427450px;}
.yf6{bottom:975.157500px;}
.y1b5{bottom:975.400500px;}
.y53{bottom:977.634000px;}
.y1b4{bottom:986.569500px;}
.yf{bottom:986.641500px;}
.y1f0{bottom:987.276000px;}
.y11f{bottom:990.994500px;}
.y6e{bottom:991.528500px;}
.y1e2{bottom:993.136500px;}
.y1e9{bottom:995.429250px;}
.y52{bottom:995.634000px;}
.y1c3{bottom:995.640000px;}
.y1b3{bottom:997.738500px;}
.ye{bottom:1004.641500px;}
.y1ef{bottom:1005.276000px;}
.y1b2{bottom:1008.906000px;}
.y11e{bottom:1008.994500px;}
.y51{bottom:1013.634000px;}
.yf5{bottom:1013.766000px;}
.y6d{bottom:1013.779500px;}
.y1e8{bottom:1017.707580px;}
.y1b1{bottom:1020.075000px;}
.y1ee{bottom:1027.528500px;}
.y93{bottom:1028.370000px;}
.y1b0{bottom:1031.244000px;}
.y50{bottom:1031.634000px;}
.yf4{bottom:1031.766000px;}
.y6c{bottom:1031.779500px;}
.y49{bottom:1036.911000px;}
.y11d{bottom:1039.750500px;}
.y1e7{bottom:1039.984380px;}
.y1af{bottom:1042.411500px;}
.y1ed{bottom:1045.528500px;}
.y4f{bottom:1049.634000px;}
.yf3{bottom:1049.766000px;}
.y6b{bottom:1049.779500px;}
.y1ae{bottom:1053.580500px;}
.y11c{bottom:1061.350500px;}
.y1e6{bottom:1062.262710px;}
.y1e1{bottom:1064.357100px;}
.y5{bottom:1065.603000px;}
.yf2{bottom:1067.766000px;}
.y6a{bottom:1067.779500px;}
.y1e0{bottom:1073.682300px;}
.y4e{bottom:1080.390000px;}
.y1df{bottom:1083.007500px;}
.y1e5{bottom:1084.114680px;}
.yf1{bottom:1085.766000px;}
.y69{bottom:1085.779500px;}
.y4{bottom:1099.959000px;}
.y4d{bottom:1101.990000px;}
.yf0{bottom:1103.766000px;}
.y68{bottom:1103.779500px;}
.y1e4{bottom:1105.117500px;}
.y4a{bottom:1158.678450px;}
.y2{bottom:1158.777900px;}
.y1{bottom:1183.481550px;}
.h1e{height:17.899805px;}
.h17{height:18.451933px;}
.h18{height:19.074088px;}
.h1c{height:21.058594px;}
.h19{height:22.500105px;}
.h1a{height:26.323242px;}
.h1d{height:26.733398px;}
.h4{height:29.399836px;}
.h1b{height:36.852539px;}
.h11{height:37.962000px;}
.h9{height:44.914295px;}
.hd{height:45.039265px;}
.h1{height:47.381836px;}
.h10{height:47.413700px;}
.h16{height:49.978486px;}
.h13{height:50.014160px;}
.he{height:50.153320px;}
.h6{height:52.646484px;}
.hb{height:52.792969px;}
.ha{height:52.797363px;}
.h8{height:53.144531px;}
.h5{height:53.466797px;}
.hf{height:55.653366px;}
.h3{height:63.175781px;}
.h7{height:70.628906px;}
.h14{height:72.627636px;}
.h2{height:74.853516px;}
.hc{height:76.243839px;}
.h12{height:111.668414px;}
.h15{height:112.770814px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x10{left:108.987900px;}
.x32{left:115.039350px;}
.x5{left:119.149350px;}
.x57{left:121.874250px;}
.x5b{left:125.577300px;}
.x3{left:127.558950px;}
.x5e{left:132.842325px;}
.x1b{left:136.512600px;}
.x19{left:138.621600px;}
.x69{left:141.165300px;}
.x16{left:143.402700px;}
.x34{left:149.163901px;}
.x12{left:150.340500px;}
.x68{left:151.744500px;}
.x33{left:154.227000px;}
.x17{left:156.621000px;}
.x54{left:161.341880px;}
.x31{left:162.430500px;}
.x15{left:164.544000px;}
.x18{left:174.903000px;}
.x35{left:185.433000px;}
.x1a{left:186.996075px;}
.x5c{left:202.968000px;}
.x21{left:208.231200px;}
.x14{left:210.151901px;}
.x2a{left:213.481725px;}
.x1f{left:215.121027px;}
.x25{left:218.824561px;}
.x28{left:220.371216px;}
.x1d{left:221.778000px;}
.x2d{left:224.074642px;}
.x11{left:227.124900px;}
.x2f{left:231.339975px;}
.x4{left:233.326500px;}
.x59{left:236.342855px;}
.x5a{left:237.888911px;}
.x6a{left:247.323000px;}
.x5f{left:249.936000px;}
.x30{left:251.308500px;}
.x23{left:252.856500px;}
.x56{left:254.436000px;}
.x2b{left:262.419000px;}
.x27{left:270.621000px;}
.x60{left:272.998200px;}
.x53{left:278.435252px;}
.x4f{left:280.194000px;}
.x5d{left:286.921875px;}
.x2e{left:288.902850px;}
.x58{left:293.248500px;}
.x26{left:294.387000px;}
.x29{left:295.794000px;}
.x20{left:301.278000px;}
.x22{left:303.106275px;}
.x61{left:304.734375px;}
.x2c{left:306.153000px;}
.x1e{left:307.933466px;}
.x24{left:311.637000px;}
.x1c{left:313.325175px;}
.x52{left:318.093000px;}
.x13{left:324.949500px;}
.x55{left:337.311460px;}
.xf{left:401.327700px;}
.x63{left:455.209500px;}
.x64{left:469.938149px;}
.x7{left:474.095850px;}
.x50{left:475.947000px;}
.x6c{left:480.903000px;}
.x6d{left:483.453000px;}
.x8{left:486.851850px;}
.x6e{left:488.553000px;}
.x51{left:490.206000px;}
.x6{left:495.355350px;}
.x41{left:499.291350px;}
.x3b{left:507.073506px;}
.x49{left:510.775825px;}
.x65{left:515.610000px;}
.x4d{left:518.041875px;}
.xb{left:545.137500px;}
.x3a{left:550.900500px;}
.x48{left:555.354000px;}
.x4a{left:557.839168px;}
.x46{left:559.618527px;}
.x67{left:562.747500px;}
.x37{left:563.931644px;}
.x38{left:568.478400px;}
.xc{left:570.541500px;}
.x43{left:586.618200px;}
.xd{left:591.354000px;}
.x4c{left:595.198500px;}
.x44{left:600.399918px;}
.x62{left:604.482000px;}
.x6b{left:608.014500px;}
.x36{left:609.261000px;}
.x45{left:615.399234px;}
.x4b{left:627.917825px;}
.x3f{left:630.308134px;}
.x39{left:633.636630px;}
.x47{left:637.055808px;}
.x3d{left:645.916574px;}
.x3e{left:648.354393px;}
.x42{left:655.102275px;}
.x3c{left:662.511659px;}
.x2{left:672.358200px;}
.xa{left:682.625850px;}
.x4e{left:691.433025px;}
.x40{left:710.416500px;}
.x9{left:769.592850px;}
.xe{left:773.113500px;}
.x66{left:785.739000px;}
@media print{
.vf{vertical-align:-70.832000pt;}
.v10{vertical-align:-53.407412pt;}
.v14{vertical-align:-49.668091pt;}
.v5{vertical-align:-39.999284pt;}
.v8{vertical-align:-38.502326pt;}
.v13{vertical-align:-36.160800pt;}
.vb{vertical-align:-32.337040pt;}
.vc{vertical-align:-30.999332pt;}
.vd{vertical-align:-29.666174pt;}
.v15{vertical-align:-19.185173pt;}
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.va{vertical-align:-15.001438pt;}
.v9{vertical-align:-12.166771pt;}
.ve{vertical-align:-10.665333pt;}
.v12{vertical-align:-8.664000pt;}
.v7{vertical-align:-5.998933pt;}
.v11{vertical-align:-3.997600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.v6{vertical-align:52.329823pt;}
.ls48{letter-spacing:-3.749222pt;}
.ls2f{letter-spacing:-2.484315pt;}
.ls52{letter-spacing:-1.066667pt;}
.ls30{letter-spacing:-0.744800pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.310933pt;}
.ls34{letter-spacing:-0.116533pt;}
.ls49{letter-spacing:-0.072800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.000693pt;}
.ls6{letter-spacing:0.001067pt;}
.ls7{letter-spacing:0.002133pt;}
.ls3d{letter-spacing:0.003109pt;}
.ls3a{letter-spacing:0.004053pt;}
.ls39{letter-spacing:0.005333pt;}
.ls3b{letter-spacing:0.006027pt;}
.ls5{letter-spacing:0.006933pt;}
.ls11{letter-spacing:0.009600pt;}
.ls8{letter-spacing:0.010667pt;}
.ls47{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.207733pt;}
.ls10{letter-spacing:0.570667pt;}
.ls51{letter-spacing:0.944000pt;}
.ls14{letter-spacing:3.321519pt;}
.ls4b{letter-spacing:8.539845pt;}
.ls2b{letter-spacing:11.526667pt;}
.ls32{letter-spacing:13.709230pt;}
.ls28{letter-spacing:22.190480pt;}
.ls33{letter-spacing:23.691989pt;}
.ls17{letter-spacing:24.360843pt;}
.ls40{letter-spacing:64.919780pt;}
.ls3f{letter-spacing:66.252938pt;}
.ls18{letter-spacing:75.716267pt;}
.ls4d{letter-spacing:75.721333pt;}
.ls26{letter-spacing:79.359200pt;}
.ls13{letter-spacing:84.125443pt;}
.lse{letter-spacing:85.592928pt;}
.ls2e{letter-spacing:86.386667pt;}
.ls42{letter-spacing:87.871200pt;}
.ls43{letter-spacing:91.215200pt;}
.ls2d{letter-spacing:100.027786pt;}
.ls2c{letter-spacing:100.528289pt;}
.ls35{letter-spacing:105.340780pt;}
.ls41{letter-spacing:105.524218pt;}
.ls0{letter-spacing:106.359467pt;}
.ls45{letter-spacing:106.925627pt;}
.ls4e{letter-spacing:107.190400pt;}
.ls2{letter-spacing:110.251696pt;}
.ls31{letter-spacing:112.194558pt;}
.ls37{letter-spacing:113.591416pt;}
.ls46{letter-spacing:120.688000pt;}
.ls1f{letter-spacing:128.378701pt;}
.lsf{letter-spacing:128.688404pt;}
.ls36{letter-spacing:140.301272pt;}
.lsd{letter-spacing:143.168800pt;}
.ls1a{letter-spacing:155.171733pt;}
.ls29{letter-spacing:168.846667pt;}
.lsc{letter-spacing:174.352472pt;}
.ls20{letter-spacing:183.992887pt;}
.ls27{letter-spacing:188.625905pt;}
.ls2a{letter-spacing:188.757856pt;}
.lsb{letter-spacing:191.798667pt;}
.lsa{letter-spacing:202.464000pt;}
.ls9{letter-spacing:202.757867pt;}
.ls4a{letter-spacing:211.204000pt;}
.ls19{letter-spacing:220.334133pt;}
.ls23{letter-spacing:225.152533pt;}
.ls38{letter-spacing:229.555467pt;}
.ls24{letter-spacing:236.146214pt;}
.ls21{letter-spacing:241.529066pt;}
.ls1c{letter-spacing:246.518667pt;}
.ls44{letter-spacing:252.211164pt;}
.ls3{letter-spacing:272.333333pt;}
.ls25{letter-spacing:278.761934pt;}
.ls1b{letter-spacing:280.799733pt;}
.ls50{letter-spacing:297.053600pt;}
.ls22{letter-spacing:317.860313pt;}
.ls3e{letter-spacing:362.630650pt;}
.ls4f{letter-spacing:400.722667pt;}
.ls12{letter-spacing:478.917607pt;}
.ls16{letter-spacing:499.470077pt;}
.ls15{letter-spacing:532.039168pt;}
.ls4c{letter-spacing:598.054133pt;}
.ws3d{word-spacing:-303.741580pt;}
.ws7{word-spacing:-285.000000pt;}
.ws96{word-spacing:-281.531833pt;}
.ws3a{word-spacing:-252.904132pt;}
.ws3b{word-spacing:-237.819200pt;}
.ws9{word-spacing:-134.175467pt;}
.ws97{word-spacing:-131.905273pt;}
.ws3e{word-spacing:-127.279733pt;}
.ws94{word-spacing:-116.899285pt;}
.ws6{word-spacing:-112.958962pt;}
.ws3c{word-spacing:-110.169600pt;}
.ws38{word-spacing:-107.091884pt;}
.ws40{word-spacing:-105.949067pt;}
.ws95{word-spacing:-103.881867pt;}
.ws47{word-spacing:-95.500510pt;}
.ws4c{word-spacing:-93.161796pt;}
.ws52{word-spacing:-58.091242pt;}
.ws5{word-spacing:-53.333333pt;}
.ws44{word-spacing:-39.342667pt;}
.ws3{word-spacing:-18.666667pt;}
.ws3f{word-spacing:-16.674400pt;}
.ws4d{word-spacing:-13.768381pt;}
.ws2{word-spacing:-13.333333pt;}
.ws92{word-spacing:-12.800000pt;}
.ws39{word-spacing:-11.375067pt;}
.ws0{word-spacing:-9.328000pt;}
.ws49{word-spacing:-8.890752pt;}
.ws36{word-spacing:-7.773333pt;}
.ws93{word-spacing:-7.625845pt;}
.ws37{word-spacing:-7.462400pt;}
.ws1{word-spacing:-6.996000pt;}
.ws6b{word-spacing:-5.333333pt;}
.wsff{word-spacing:-4.021333pt;}
.ws67{word-spacing:-2.901333pt;}
.ws6a{word-spacing:-2.853333pt;}
.wse9{word-spacing:-2.666667pt;}
.wse2{word-spacing:-2.272000pt;}
.wsc{word-spacing:-2.169600pt;}
.ws55{word-spacing:-2.090667pt;}
.wsb9{word-spacing:-2.085333pt;}
.wsc7{word-spacing:-1.941333pt;}
.wsf2{word-spacing:-1.786667pt;}
.ws9e{word-spacing:-1.765333pt;}
.wsc6{word-spacing:-1.685333pt;}
.ws54{word-spacing:-1.557333pt;}
.ws8e{word-spacing:-1.418667pt;}
.ws2a{word-spacing:-1.413333pt;}
.ws6e{word-spacing:-1.402667pt;}
.wsfd{word-spacing:-1.381333pt;}
.ws5c{word-spacing:-1.290667pt;}
.wsda{word-spacing:-1.264000pt;}
.wsf8{word-spacing:-1.226667pt;}
.wsb{word-spacing:-1.158400pt;}
.ws1e{word-spacing:-1.061333pt;}
.ws9f{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.853333pt;}
.wsb5{word-spacing:-0.821333pt;}
.ws7f{word-spacing:-0.805333pt;}
.ws75{word-spacing:-0.704000pt;}
.ws8f{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.656000pt;}
.ws29{word-spacing:-0.650667pt;}
.ws13{word-spacing:-0.565333pt;}
.wsc0{word-spacing:-0.522667pt;}
.ws64{word-spacing:-0.469333pt;}
.ws98{word-spacing:-0.432495pt;}
.ws4{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws84{word-spacing:0.074667pt;}
.wsae{word-spacing:0.218667pt;}
.wsad{word-spacing:0.234667pt;}
.wsbe{word-spacing:0.250667pt;}
.wsbd{word-spacing:0.256000pt;}
.wsee{word-spacing:0.282667pt;}
.wsf4{word-spacing:0.288000pt;}
.wscd{word-spacing:0.304000pt;}
.wsbb{word-spacing:0.336000pt;}
.wsba{word-spacing:0.341333pt;}
.wscf{word-spacing:0.480000pt;}
.ws102{word-spacing:0.512000pt;}
.wsf7{word-spacing:0.554667pt;}
.ws68{word-spacing:0.597333pt;}
.ws83{word-spacing:0.629333pt;}
.wsd3{word-spacing:0.981333pt;}
.wsea{word-spacing:1.200000pt;}
.ws4f{word-spacing:1.210307pt;}
.wscb{word-spacing:1.264000pt;}
.wscc{word-spacing:1.269333pt;}
.ws62{word-spacing:1.498667pt;}
.wsc5{word-spacing:1.568000pt;}
.wsf6{word-spacing:1.605333pt;}
.ws11{word-spacing:1.882667pt;}
.ws5e{word-spacing:1.888000pt;}
.ws2f{word-spacing:1.893333pt;}
.ws86{word-spacing:1.925333pt;}
.wsed{word-spacing:1.936000pt;}
.wse4{word-spacing:2.021333pt;}
.ws15{word-spacing:2.096000pt;}
.ws5d{word-spacing:2.576000pt;}
.wsc9{word-spacing:2.992000pt;}
.wsef{word-spacing:2.997333pt;}
.wsd5{word-spacing:3.232000pt;}
.wsd9{word-spacing:3.269333pt;}
.ws34{word-spacing:3.280000pt;}
.ws9b{word-spacing:3.472000pt;}
.wsac{word-spacing:3.530667pt;}
.wsbc{word-spacing:3.717333pt;}
.wsb4{word-spacing:3.776000pt;}
.wsaa{word-spacing:4.026667pt;}
.ws88{word-spacing:4.032000pt;}
.wsb7{word-spacing:4.096000pt;}
.ws9a{word-spacing:4.122667pt;}
.wsfb{word-spacing:4.325333pt;}
.wsfc{word-spacing:4.330667pt;}
.wsf0{word-spacing:4.426667pt;}
.wsf1{word-spacing:4.432000pt;}
.ws91{word-spacing:4.437333pt;}
.wse3{word-spacing:4.506667pt;}
.ws57{word-spacing:4.538667pt;}
.ws69{word-spacing:4.752000pt;}
.wsd0{word-spacing:4.837333pt;}
.wsd1{word-spacing:4.842667pt;}
.wsa2{word-spacing:4.869333pt;}
.ws1f{word-spacing:4.938667pt;}
.wsb8{word-spacing:4.954667pt;}
.wsc4{word-spacing:4.960000pt;}
.ws22{word-spacing:5.125333pt;}
.ws85{word-spacing:5.189333pt;}
.ws79{word-spacing:5.216000pt;}
.ws7a{word-spacing:5.221333pt;}
.wsf5{word-spacing:5.466667pt;}
.ws2c{word-spacing:5.514667pt;}
.ws12{word-spacing:5.733333pt;}
.ws35{word-spacing:5.765333pt;}
.wsf3{word-spacing:5.850667pt;}
.wsb6{word-spacing:5.861333pt;}
.ws59{word-spacing:5.994667pt;}
.ws56{word-spacing:6.080000pt;}
.wse{word-spacing:6.341333pt;}
.wse5{word-spacing:6.400000pt;}
.ws90{word-spacing:6.629333pt;}
.wseb{word-spacing:6.666667pt;}
.ws1a{word-spacing:6.682667pt;}
.ws77{word-spacing:6.970667pt;}
.wsd7{word-spacing:7.082667pt;}
.wsca{word-spacing:7.440000pt;}
.wse8{word-spacing:7.653333pt;}
.wsb2{word-spacing:7.941333pt;}
.wsc2{word-spacing:8.005333pt;}
.wsd8{word-spacing:8.048000pt;}
.ws81{word-spacing:8.314667pt;}
.ws78{word-spacing:8.448000pt;}
.ws104{word-spacing:8.469333pt;}
.ws105{word-spacing:8.474667pt;}
.ws41{word-spacing:8.540400pt;}
.ws60{word-spacing:8.586667pt;}
.wsd2{word-spacing:8.933333pt;}
.wsfe{word-spacing:8.970667pt;}
.wsc8{word-spacing:9.045333pt;}
.ws23{word-spacing:9.146667pt;}
.ws74{word-spacing:9.189333pt;}
.wsdf{word-spacing:9.370667pt;}
.ws100{word-spacing:9.429333pt;}
.wsc3{word-spacing:9.840000pt;}
.wsce{word-spacing:9.856000pt;}
.ws17{word-spacing:9.962667pt;}
.wsfa{word-spacing:9.984000pt;}
.ws65{word-spacing:10.453333pt;}
.ws58{word-spacing:10.773333pt;}
.ws2d{word-spacing:10.810667pt;}
.ws103{word-spacing:10.864000pt;}
.ws71{word-spacing:10.922667pt;}
.ws28{word-spacing:10.949333pt;}
.wsb0{word-spacing:11.045333pt;}
.wsb1{word-spacing:11.050667pt;}
.ws14{word-spacing:11.434667pt;}
.wsf9{word-spacing:11.504000pt;}
.ws10{word-spacing:11.797333pt;}
.wsb3{word-spacing:11.808000pt;}
.wsa8{word-spacing:11.904000pt;}
.ws8b{word-spacing:11.925333pt;}
.ws9c{word-spacing:12.016000pt;}
.ws89{word-spacing:12.176000pt;}
.ws33{word-spacing:12.208000pt;}
.ws32{word-spacing:12.250667pt;}
.ws5f{word-spacing:12.389333pt;}
.wsde{word-spacing:12.528000pt;}
.wsab{word-spacing:12.592000pt;}
.wsbf{word-spacing:12.634667pt;}
.ws8{word-spacing:12.661600pt;}
.ws24{word-spacing:13.008000pt;}
.ws61{word-spacing:13.120000pt;}
.ws6c{word-spacing:13.157333pt;}
.ws5b{word-spacing:13.296000pt;}
.ws21{word-spacing:13.349333pt;}
.ws8d{word-spacing:13.621333pt;}
.ws73{word-spacing:13.648000pt;}
.ws30{word-spacing:13.690667pt;}
.wsa9{word-spacing:13.786667pt;}
.wsec{word-spacing:13.984000pt;}
.ws5a{word-spacing:14.234667pt;}
.wsdd{word-spacing:14.266667pt;}
.wsa3{word-spacing:14.293333pt;}
.ws6d{word-spacing:14.464000pt;}
.wsdc{word-spacing:14.597333pt;}
.ws16{word-spacing:14.853333pt;}
.wsd{word-spacing:14.961600pt;}
.ws1c{word-spacing:15.125333pt;}
.wse1{word-spacing:15.232000pt;}
.ws7e{word-spacing:15.290667pt;}
.ws19{word-spacing:15.440000pt;}
.wsf{word-spacing:15.472000pt;}
.wsd4{word-spacing:15.482667pt;}
.wsa4{word-spacing:15.594667pt;}
.ws6f{word-spacing:15.733333pt;}
.ws9d{word-spacing:15.824000pt;}
.ws76{word-spacing:16.074667pt;}
.ws2b{word-spacing:16.122667pt;}
.ws63{word-spacing:16.218667pt;}
.wsdb{word-spacing:16.538667pt;}
.wsa1{word-spacing:17.098667pt;}
.ws31{word-spacing:17.125333pt;}
.ws20{word-spacing:17.290667pt;}
.ws27{word-spacing:18.352000pt;}
.ws66{word-spacing:21.696000pt;}
.ws2e{word-spacing:22.597333pt;}
.ws25{word-spacing:22.720000pt;}
.wse7{word-spacing:22.858667pt;}
.wse0{word-spacing:23.248000pt;}
.ws1b{word-spacing:23.472000pt;}
.ws80{word-spacing:24.560000pt;}
.wsa6{word-spacing:25.248000pt;}
.wse6{word-spacing:25.253333pt;}
.ws8c{word-spacing:25.258667pt;}
.ws101{word-spacing:25.418667pt;}
.wsc1{word-spacing:26.442667pt;}
.wsaf{word-spacing:26.757333pt;}
.ws7d{word-spacing:26.800000pt;}
.ws70{word-spacing:27.450667pt;}
.ws8a{word-spacing:28.245333pt;}
.ws26{word-spacing:28.970667pt;}
.ws51{word-spacing:30.602667pt;}
.ws82{word-spacing:31.093333pt;}
.wsd6{word-spacing:32.352000pt;}
.ws7c{word-spacing:34.469333pt;}
.ws87{word-spacing:34.656000pt;}
.wsa0{word-spacing:39.744000pt;}
.ws53{word-spacing:41.136000pt;}
.ws1d{word-spacing:46.282667pt;}
.wsa5{word-spacing:46.544000pt;}
.ws7b{word-spacing:58.256000pt;}
.ws99{word-spacing:60.596550pt;}
.ws43{word-spacing:67.842667pt;}
.ws4a{word-spacing:88.052116pt;}
.ws45{word-spacing:93.505333pt;}
.wsa7{word-spacing:95.392000pt;}
.ws4e{word-spacing:96.865518pt;}
.ws42{word-spacing:106.136533pt;}
.ws50{word-spacing:142.530400pt;}
.ws4b{word-spacing:218.155467pt;}
.ws48{word-spacing:234.722226pt;}
.ws46{word-spacing:269.215978pt;}
._10{margin-left:-743.497867pt;}
._1f{margin-left:-558.047121pt;}
._13{margin-left:-462.424533pt;}
._31{margin-left:-243.671318pt;}
._22{margin-left:-219.338585pt;}
._20{margin-left:-218.337580pt;}
._25{margin-left:-213.818400pt;}
._29{margin-left:-188.835207pt;}
._28{margin-left:-160.670542pt;}
._23{margin-left:-159.669536pt;}
._24{margin-left:-153.003747pt;}
._26{margin-left:-121.470076pt;}
._30{margin-left:-88.362808pt;}
._2e{margin-left:-86.609758pt;}
._2a{margin-left:-68.334933pt;}
._27{margin-left:-57.002734pt;}
._b{margin-left:-44.644267pt;}
._2d{margin-left:-26.574933pt;}
._21{margin-left:-21.166724pt;}
._2c{margin-left:-16.656747pt;}
._9{margin-left:-15.009067pt;}
._a{margin-left:-13.626667pt;}
._c{margin-left:-12.625067pt;}
._19{margin-left:-10.746667pt;}
._17{margin-left:-9.086933pt;}
._d{margin-left:-7.524267pt;}
._2{margin-left:-6.187200pt;}
._3{margin-left:-4.893333pt;}
._1{margin-left:-3.398400pt;}
._0{margin-left:-1.689600pt;}
._4{width:1.205867pt;}
._e{width:2.400000pt;}
._1e{width:3.308800pt;}
._15{width:4.533333pt;}
._14{width:7.144000pt;}
._34{width:8.599467pt;}
._16{width:10.773333pt;}
._18{width:14.224000pt;}
._1a{width:16.213333pt;}
._1b{width:18.682667pt;}
._f{width:31.663636pt;}
._6{width:34.636800pt;}
._1d{width:38.133333pt;}
._5{width:51.768000pt;}
._32{width:53.017255pt;}
._33{width:77.459124pt;}
._11{width:93.308533pt;}
._12{width:99.200267pt;}
._8{width:102.432000pt;}
._1c{width:112.528000pt;}
._2b{width:130.335514pt;}
._7{width:142.064000pt;}
._2f{width:278.879467pt;}
.fs12{font-size:18.133333pt;}
.fs11{font-size:21.333333pt;}
.fsd{font-size:23.633600pt;}
.fsf{font-size:26.666667pt;}
.fs4{font-size:27.984000pt;}
.fse{font-size:30.007467pt;}
.fs8{font-size:31.093333pt;}
.fs3{font-size:37.312000pt;}
.fs10{font-size:37.333333pt;}
.fs6{font-size:45.500267pt;}
.fsc{font-size:47.961548pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.407412pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:73.166933pt;}
.fs1{font-size:74.666667pt;}
.fsb{font-size:107.500267pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:52.970667pt;}
.yd{bottom:94.634667pt;}
.y138{bottom:100.109333pt;}
.yc7{bottom:107.456000pt;}
.y92{bottom:109.402667pt;}
.yc{bottom:113.030667pt;}
.yc6{bottom:123.456000pt;}
.y169{bottom:124.910667pt;}
.y91{bottom:125.402667pt;}
.yb{bottom:127.214667pt;}
.y1ad{bottom:134.109333pt;}
.y17e{bottom:141.098667pt;}
.y90{bottom:141.402667pt;}
.y181{bottom:141.454667pt;}
.yc5{bottom:143.236000pt;}
.ya{bottom:145.610667pt;}
.y11b{bottom:147.764000pt;}
.y1ac{bottom:150.109333pt;}
.y17d{bottom:150.497333pt;}
.yc4{bottom:159.236000pt;}
.y9{bottom:159.793333pt;}
.y17c{bottom:159.896000pt;}
.y11a{bottom:163.764000pt;}
.yef{bottom:166.552467pt;}
.ycb{bottom:169.047985pt;}
.yd4{bottom:169.048687pt;}
.y17b{bottom:169.294667pt;}
.y1ab{bottom:169.889333pt;}
.yee{bottom:173.552067pt;}
.yc3{bottom:175.236000pt;}
.yd3{bottom:177.964464pt;}
.y8{bottom:178.189333pt;}
.y17a{bottom:178.692000pt;}
.y119{bottom:179.764000pt;}
.ye3{bottom:181.465148pt;}
.yde{bottom:181.924467pt;}
.yed{bottom:185.510667pt;}
.y1aa{bottom:185.889333pt;}
.y179{bottom:188.090667pt;}
.yc2{bottom:191.236000pt;}
.y7{bottom:192.373333pt;}
.yd2{bottom:195.674305pt;}
.y118{bottom:195.764000pt;}
.yec{bottom:197.468000pt;}
.y178{bottom:197.489333pt;}
.yd9{bottom:199.631667pt;}
.ydd{bottom:199.632467pt;}
.y1a9{bottom:201.889333pt;}
.yd1{bottom:204.298881pt;}
.yca{bottom:205.298047pt;}
.y177{bottom:206.888000pt;}
.yeb{bottom:206.926200pt;}
.yc1{bottom:207.236000pt;}
.ydc{bottom:207.716333pt;}
.y180{bottom:207.848000pt;}
.y6{bottom:210.769333pt;}
.yd0{bottom:213.215796pt;}
.y176{bottom:216.286667pt;}
.yea{bottom:216.384400pt;}
.ye2{bottom:216.716479pt;}
.yd8{bottom:217.173733pt;}
.y164{bottom:217.912067pt;}
.y163{bottom:218.911467pt;}
.y162{bottom:219.910867pt;}
.y1a8{bottom:221.668000pt;}
.yc0{bottom:223.236000pt;}
.y161{bottom:225.493067pt;}
.y175{bottom:225.684000pt;}
.y145{bottom:225.701000pt;}
.y160{bottom:225.869267pt;}
.ye9{bottom:228.343000pt;}
.y14b{bottom:228.367600pt;}
.y15f{bottom:228.702800pt;}
.y15e{bottom:229.035933pt;}
.y15d{bottom:232.535733pt;}
.y147{bottom:234.157264pt;}
.y141{bottom:234.157759pt;}
.y174{bottom:235.082667pt;}
.y13f{bottom:238.116000pt;}
.y144{bottom:238.116867pt;}
.y15c{bottom:238.117933pt;}
.y15b{bottom:240.658867pt;}
.y15a{bottom:240.992000pt;}
.y1a7{bottom:241.448000pt;}
.y13e{bottom:243.782096pt;}
.y173{bottom:244.481333pt;}
.y159{bottom:244.491800pt;}
.y14a{bottom:245.950200pt;}
.y158{bottom:246.367733pt;}
.ye8{bottom:247.343000pt;}
.y2e{bottom:248.142667pt;}
.ybf{bottom:250.574667pt;}
.y157{bottom:251.949933pt;}
.ye7{bottom:252.799800pt;}
.y156{bottom:252.949333pt;}
.y172{bottom:253.880000pt;}
.y13d{bottom:253.949131pt;}
.yc9{bottom:254.048170pt;}
.ycf{bottom:254.048873pt;}
.ye1{bottom:254.049448pt;}
.y155{bottom:256.449133pt;}
.yd7{bottom:256.923000pt;}
.y140{bottom:258.990667pt;}
.y139{bottom:259.574667pt;}
.y14c{bottom:259.657333pt;}
.y154{bottom:262.949667pt;}
.y143{bottom:262.949867pt;}
.yce{bottom:262.965787pt;}
.y171{bottom:263.278667pt;}
.ye0{bottom:263.631804pt;}
.y117{bottom:264.677333pt;}
.ydf{bottom:266.465333pt;}
.yd6{bottom:266.923333pt;}
.ycc{bottom:266.924000pt;}
.ydb{bottom:266.924133pt;}
.ye6{bottom:266.924400pt;}
.y8f{bottom:267.009333pt;}
.y2d{bottom:267.921333pt;}
.y153{bottom:268.409000pt;}
.y152{bottom:268.576200pt;}
.y13c{bottom:268.616142pt;}
.y1a6{bottom:268.786800pt;}
.ybe{bottom:269.774667pt;}
.yc8{bottom:272.590667pt;}
.y17f{bottom:272.604000pt;}
.y170{bottom:272.677333pt;}
.ye5{bottom:274.216600pt;}
.yda{bottom:275.008000pt;}
.yd5{bottom:275.549333pt;}
.y146{bottom:277.241467pt;}
.y151{bottom:278.158533pt;}
.ycd{bottom:279.341333pt;}
.y150{bottom:280.367600pt;}
.y142{bottom:281.200000pt;}
.y149{bottom:281.200267pt;}
.y16f{bottom:282.074667pt;}
.ye4{bottom:282.132000pt;}
.y13b{bottom:286.866299pt;}
.y2c{bottom:287.700000pt;}
.y148{bottom:289.033333pt;}
.y14f{bottom:289.449600pt;}
.y16e{bottom:291.473333pt;}
.y14e{bottom:292.323667pt;}
.y13a{bottom:297.033333pt;}
.y16d{bottom:300.872000pt;}
.y48{bottom:302.714667pt;}
.y14d{bottom:303.616000pt;}
.ybd{bottom:304.093333pt;}
.y8e{bottom:305.685333pt;}
.y2b{bottom:307.478667pt;}
.y16c{bottom:310.270667pt;}
.y19b{bottom:314.857333pt;}
.y47{bottom:318.714667pt;}
.y16b{bottom:319.669333pt;}
.ybc{bottom:320.093333pt;}
.y8d{bottom:321.685333pt;}
.y2a{bottom:323.478667pt;}
.y16a{bottom:329.066667pt;}
.y116{bottom:329.812000pt;}
.y1a5{bottom:330.681333pt;}
.y19a{bottom:330.857333pt;}
.y46{bottom:334.714667pt;}
.ybb{bottom:336.093333pt;}
.y8c{bottom:337.685333pt;}
.y29{bottom:339.478667pt;}
.y137{bottom:343.889333pt;}
.y115{bottom:345.812000pt;}
.y1a4{bottom:346.681333pt;}
.y199{bottom:346.857333pt;}
.y45{bottom:350.714667pt;}
.y8b{bottom:353.685333pt;}
.y28{bottom:355.478667pt;}
.yba{bottom:355.872000pt;}
.y136{bottom:359.889333pt;}
.y114{bottom:361.812000pt;}
.y1a3{bottom:362.681333pt;}
.y198{bottom:362.857333pt;}
.y44{bottom:366.714667pt;}
.y8a{bottom:369.685333pt;}
.y27{bottom:371.478667pt;}
.y135{bottom:375.889333pt;}
.y113{bottom:377.812000pt;}
.y1a2{bottom:378.681333pt;}
.yb6{bottom:381.413000pt;}
.y43{bottom:382.714667pt;}
.y89{bottom:385.685333pt;}
.yb3{bottom:387.454878pt;}
.y112{bottom:389.371744pt;}
.y197{bottom:390.196000pt;}
.yb4{bottom:391.413333pt;}
.y134{bottom:391.889333pt;}
.yb9{bottom:392.265333pt;}
.yb8{bottom:392.278667pt;}
.y111{bottom:393.812000pt;}
.yb2{bottom:396.246667pt;}
.y1a1{bottom:398.461333pt;}
.y42{bottom:398.714667pt;}
.y26{bottom:398.817333pt;}
.yb5{bottom:400.204000pt;}
.y88{bottom:401.685333pt;}
.y133{bottom:407.889333pt;}
.y110{bottom:409.812000pt;}
.y1a0{bottom:414.461333pt;}
.y41{bottom:414.714667pt;}
.y87{bottom:417.685333pt;}
.yb7{bottom:420.317333pt;}
.y132{bottom:423.889333pt;}
.y10f{bottom:425.812000pt;}
.y196{bottom:427.714667pt;}
.y25{bottom:433.136000pt;}
.y86{bottom:433.685333pt;}
.y4b{bottom:438.665467pt;}
.y131{bottom:439.889333pt;}
.y10e{bottom:441.812000pt;}
.y40{bottom:442.053333pt;}
.y4c{bottom:442.624000pt;}
.y195{bottom:443.714667pt;}
.y85{bottom:449.685333pt;}
.yb1{bottom:450.075533pt;}
.y19f{bottom:454.020000pt;}
.yb0{bottom:454.241600pt;}
.y130{bottom:455.889333pt;}
.y10d{bottom:457.812000pt;}
.yaf{bottom:458.032733pt;}
.y194{bottom:459.714667pt;}
.ya8{bottom:460.282878pt;}
.yac{bottom:460.949544pt;}
.yaa{bottom:464.241333pt;}
.yae{bottom:464.241933pt;}
.y67{bottom:465.858667pt;}
.ya7{bottom:469.074667pt;}
.y3f{bottom:469.392000pt;}
.yab{bottom:469.741333pt;}
.y19e{bottom:470.020000pt;}
.y24{bottom:470.653333pt;}
.ya9{bottom:473.032000pt;}
.yad{bottom:473.032600pt;}
.y10c{bottom:473.812000pt;}
.y193{bottom:475.714667pt;}
.y84{bottom:477.024000pt;}
.y12f{bottom:483.226667pt;}
.y3e{bottom:485.392000pt;}
.y23{bottom:486.653333pt;}
.y1de{bottom:489.318667pt;}
.y10b{bottom:489.812000pt;}
.y192{bottom:491.714667pt;}
.y66{bottom:496.976000pt;}
.y1dd{bottom:498.830667pt;}
.y3d{bottom:501.392000pt;}
.y1c8{bottom:503.029333pt;}
.y10a{bottom:505.812000pt;}
.y22{bottom:506.433333pt;}
.y191{bottom:507.714667pt;}
.y1dc{bottom:508.342667pt;}
.y83{bottom:511.342667pt;}
.y65{bottom:512.976000pt;}
.y3c{bottom:517.392000pt;}
.y12e{bottom:517.545333pt;}
.y1db{bottom:517.854667pt;}
.y190{bottom:523.714667pt;}
.y21{bottom:526.213333pt;}
.y82{bottom:527.342667pt;}
.y1da{bottom:527.366667pt;}
.y64{bottom:532.756000pt;}
.y109{bottom:533.150667pt;}
.y3b{bottom:533.392000pt;}
.y12d{bottom:533.545333pt;}
.y1d9{bottom:536.878667pt;}
.y18f{bottom:539.714667pt;}
.y81{bottom:543.342667pt;}
.y20{bottom:545.993333pt;}
.y1d8{bottom:546.390667pt;}
.y63{bottom:548.756000pt;}
.y3a{bottom:549.392000pt;}
.y12c{bottom:549.545333pt;}
.y18e{bottom:555.714667pt;}
.y1d7{bottom:555.901333pt;}
.y1f{bottom:561.993333pt;}
.y39{bottom:565.392000pt;}
.y1d6{bottom:565.413333pt;}
.y12b{bottom:565.545333pt;}
.y80{bottom:566.901333pt;}
.y108{bottom:567.468000pt;}
.y1c7{bottom:571.313333pt;}
.y18d{bottom:571.714667pt;}
.ya3{bottom:573.222400pt;}
.y1d5{bottom:574.925333pt;}
.y9f{bottom:579.264000pt;}
.ya6{bottom:579.930878pt;}
.y12a{bottom:581.545333pt;}
.y1e{bottom:581.772000pt;}
.y7f{bottom:582.901333pt;}
.ya4{bottom:583.222667pt;}
.ya2{bottom:583.222733pt;}
.y107{bottom:583.468000pt;}
.y62{bottom:583.653333pt;}
.y1d4{bottom:584.437333pt;}
.y18c{bottom:587.714667pt;}
.ya0{bottom:588.055789pt;}
.ya5{bottom:588.722667pt;}
.y38{bottom:588.952000pt;}
.ya1{bottom:592.014667pt;}
.y1d3{bottom:593.949333pt;}
.y129{bottom:597.545333pt;}
.y1d{bottom:597.772000pt;}
.y7e{bottom:598.901333pt;}
.y106{bottom:599.468000pt;}
.y1d2{bottom:603.461333pt;}
.y18b{bottom:603.714667pt;}
.y37{bottom:604.952000pt;}
.y61{bottom:607.213333pt;}
.y1d1{bottom:612.973333pt;}
.y128{bottom:613.545333pt;}
.y1c{bottom:613.772000pt;}
.y105{bottom:615.468000pt;}
.y7d{bottom:618.681333pt;}
.y18a{bottom:619.714667pt;}
.y1d0{bottom:622.484000pt;}
.y60{bottom:623.213333pt;}
.y36{bottom:624.730667pt;}
.y127{bottom:629.545333pt;}
.y1b{bottom:629.772000pt;}
.y104{bottom:631.468000pt;}
.y1cf{bottom:631.996000pt;}
.y7c{bottom:634.681333pt;}
.y189{bottom:635.714667pt;}
.y5f{bottom:639.213333pt;}
.y1c6{bottom:640.541333pt;}
.y35{bottom:640.730667pt;}
.y1ce{bottom:641.508000pt;}
.y1a{bottom:645.772000pt;}
.y103{bottom:647.468000pt;}
.y1cd{bottom:651.020000pt;}
.y188{bottom:651.714667pt;}
.y7b{bottom:654.461333pt;}
.y34{bottom:656.730667pt;}
.y5e{bottom:658.992000pt;}
.y1cc{bottom:660.532000pt;}
.y19{bottom:661.772000pt;}
.y102{bottom:663.468000pt;}
.y187{bottom:667.714667pt;}
.y126{bottom:669.104000pt;}
.y1cb{bottom:670.044000pt;}
.y7a{bottom:670.461333pt;}
.y5d{bottom:674.992000pt;}
.y33{bottom:676.510667pt;}
.y18{bottom:677.772000pt;}
.y101{bottom:679.468000pt;}
.y1ca{bottom:679.556000pt;}
.y186{bottom:683.714667pt;}
.y79{bottom:686.461333pt;}
.y1c9{bottom:689.066667pt;}
.y167{bottom:689.402302pt;}
.y5c{bottom:690.992000pt;}
.y32{bottom:692.510667pt;}
.y17{bottom:693.772000pt;}
.y168{bottom:694.397333pt;}
.y100{bottom:695.468000pt;}
.y19d{bottom:697.798667pt;}
.y185{bottom:699.714667pt;}
.y78{bottom:702.461333pt;}
.y5b{bottom:706.992000pt;}
.y31{bottom:708.510667pt;}
.y16{bottom:709.772000pt;}
.yff{bottom:711.468000pt;}
.y19c{bottom:717.578667pt;}
.y77{bottom:718.461333pt;}
.y166{bottom:722.042667pt;}
.y5a{bottom:722.992000pt;}
.y30{bottom:724.510667pt;}
.y184{bottom:727.053333pt;}
.yfe{bottom:727.468000pt;}
.y76{bottom:734.461333pt;}
.y15{bottom:737.110667pt;}
.y1c2{bottom:737.965333pt;}
.y59{bottom:738.992000pt;}
.y2f{bottom:740.510667pt;}
.yfd{bottom:743.468000pt;}
.y1c5{bottom:745.489333pt;}
.y1c1{bottom:747.892000pt;}
.y75{bottom:754.240000pt;}
.y58{bottom:754.992000pt;}
.y1c0{bottom:757.820000pt;}
.yfc{bottom:759.468000pt;}
.y1bf{bottom:767.748000pt;}
.y165{bottom:769.148000pt;}
.y74{bottom:770.240000pt;}
.y57{bottom:770.992000pt;}
.y183{bottom:773.012000pt;}
.yfb{bottom:775.468000pt;}
.y1be{bottom:777.674667pt;}
.y125{bottom:784.884000pt;}
.y73{bottom:786.240000pt;}
.y56{bottom:786.992000pt;}
.y1bd{bottom:787.602667pt;}
.y182{bottom:789.012000pt;}
.yfa{bottom:791.468000pt;}
.y14{bottom:793.234667pt;}
.y1bc{bottom:797.530667pt;}
.y124{bottom:800.884000pt;}
.y55{bottom:802.992000pt;}
.y72{bottom:806.020000pt;}
.y1bb{bottom:807.457333pt;}
.yf9{bottom:807.468000pt;}
.y94{bottom:812.949333pt;}
.y13{bottom:813.014667pt;}
.y1e3{bottom:814.214667pt;}
.y1c4{bottom:816.196000pt;}
.y123{bottom:816.884000pt;}
.y1ba{bottom:817.385333pt;}
.y71{bottom:822.020000pt;}
.y97{bottom:823.185512pt;}
.yf8{bottom:823.468000pt;}
.y1ec{bottom:826.553627pt;}
.y99{bottom:827.143667pt;}
.y9d{bottom:827.143733pt;}
.y1b9{bottom:827.313333pt;}
.y12{bottom:829.014667pt;}
.y122{bottom:832.884000pt;}
.y96{bottom:833.185333pt;}
.y9a{bottom:833.852000pt;}
.y95{bottom:835.852000pt;}
.y98{bottom:837.144000pt;}
.y9c{bottom:837.144067pt;}
.y1b8{bottom:837.240000pt;}
.y54{bottom:837.890667pt;}
.y70{bottom:838.020000pt;}
.yf7{bottom:839.468000pt;}
.y1f2{bottom:841.798667pt;}
.y11{bottom:845.014667pt;}
.y9b{bottom:845.226667pt;}
.y1eb{bottom:846.355227pt;}
.y1b7{bottom:847.168000pt;}
.y9e{bottom:847.810667pt;}
.y121{bottom:848.884000pt;}
.y1b6{bottom:857.096000pt;}
.y1f1{bottom:857.798667pt;}
.y10{bottom:861.014667pt;}
.y6f{bottom:861.578667pt;}
.y120{bottom:864.884000pt;}
.y1ea{bottom:866.157733pt;}
.yf6{bottom:866.806667pt;}
.y1b5{bottom:867.022667pt;}
.y53{bottom:869.008000pt;}
.y1b4{bottom:876.950667pt;}
.yf{bottom:877.014667pt;}
.y1f0{bottom:877.578667pt;}
.y11f{bottom:880.884000pt;}
.y6e{bottom:881.358667pt;}
.y1e2{bottom:882.788000pt;}
.y1e9{bottom:884.826000pt;}
.y52{bottom:885.008000pt;}
.y1c3{bottom:885.013333pt;}
.y1b3{bottom:886.878667pt;}
.ye{bottom:893.014667pt;}
.y1ef{bottom:893.578667pt;}
.y1b2{bottom:896.805333pt;}
.y11e{bottom:896.884000pt;}
.y51{bottom:901.008000pt;}
.yf5{bottom:901.125333pt;}
.y6d{bottom:901.137333pt;}
.y1e8{bottom:904.628960pt;}
.y1b1{bottom:906.733333pt;}
.y1ee{bottom:913.358667pt;}
.y93{bottom:914.106667pt;}
.y1b0{bottom:916.661333pt;}
.y50{bottom:917.008000pt;}
.yf4{bottom:917.125333pt;}
.y6c{bottom:917.137333pt;}
.y49{bottom:921.698667pt;}
.y11d{bottom:924.222667pt;}
.y1e7{bottom:924.430560pt;}
.y1af{bottom:926.588000pt;}
.y1ed{bottom:929.358667pt;}
.y4f{bottom:933.008000pt;}
.yf3{bottom:933.125333pt;}
.y6b{bottom:933.137333pt;}
.y1ae{bottom:936.516000pt;}
.y11c{bottom:943.422667pt;}
.y1e6{bottom:944.233520pt;}
.y1e1{bottom:946.095200pt;}
.y5{bottom:947.202667pt;}
.yf2{bottom:949.125333pt;}
.y6a{bottom:949.137333pt;}
.y1e0{bottom:954.384267pt;}
.y4e{bottom:960.346667pt;}
.y1df{bottom:962.673333pt;}
.y1e5{bottom:963.657493pt;}
.yf1{bottom:965.125333pt;}
.y69{bottom:965.137333pt;}
.y4{bottom:977.741333pt;}
.y4d{bottom:979.546667pt;}
.yf0{bottom:981.125333pt;}
.y68{bottom:981.137333pt;}
.y1e4{bottom:982.326667pt;}
.y4a{bottom:1029.936400pt;}
.y2{bottom:1030.024800pt;}
.y1{bottom:1051.983600pt;}
.h1e{height:15.910937pt;}
.h17{height:16.401718pt;}
.h18{height:16.954745pt;}
.h1c{height:18.718750pt;}
.h19{height:20.000094pt;}
.h1a{height:23.398438pt;}
.h1d{height:23.763021pt;}
.h4{height:26.133188pt;}
.h1b{height:32.757812pt;}
.h11{height:33.744000pt;}
.h9{height:39.923818pt;}
.hd{height:40.034903pt;}
.h1{height:42.117188pt;}
.h10{height:42.145511pt;}
.h16{height:44.425321pt;}
.h13{height:44.457031pt;}
.he{height:44.580729pt;}
.h6{height:46.796875pt;}
.hb{height:46.927083pt;}
.ha{height:46.930990pt;}
.h8{height:47.239583pt;}
.h5{height:47.526042pt;}
.hf{height:49.469659pt;}
.h3{height:56.156250pt;}
.h7{height:62.781250pt;}
.h14{height:64.557899pt;}
.h2{height:66.536458pt;}
.hc{height:67.772301pt;}
.h12{height:99.260812pt;}
.h15{height:100.240723pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x10{left:96.878133pt;}
.x32{left:102.257200pt;}
.x5{left:105.910533pt;}
.x57{left:108.332667pt;}
.x5b{left:111.624267pt;}
.x3{left:113.385733pt;}
.x5e{left:118.082067pt;}
.x1b{left:121.344533pt;}
.x19{left:123.219200pt;}
.x69{left:125.480267pt;}
.x16{left:127.469067pt;}
.x34{left:132.590134pt;}
.x12{left:133.636000pt;}
.x68{left:134.884000pt;}
.x33{left:137.090667pt;}
.x17{left:139.218667pt;}
.x54{left:143.415004pt;}
.x31{left:144.382667pt;}
.x15{left:146.261333pt;}
.x18{left:155.469333pt;}
.x35{left:164.829333pt;}
.x1a{left:166.218733pt;}
.x5c{left:180.416000pt;}
.x21{left:185.094400pt;}
.x14{left:186.801689pt;}
.x2a{left:189.761533pt;}
.x1f{left:191.218690pt;}
.x25{left:194.510721pt;}
.x28{left:195.885526pt;}
.x1d{left:197.136000pt;}
.x2d{left:199.177460pt;}
.x11{left:201.888800pt;}
.x2f{left:205.635533pt;}
.x4{left:207.401333pt;}
.x59{left:210.082538pt;}
.x5a{left:211.456809pt;}
.x6a{left:219.842667pt;}
.x5f{left:222.165333pt;}
.x30{left:223.385333pt;}
.x23{left:224.761333pt;}
.x56{left:226.165333pt;}
.x2b{left:233.261333pt;}
.x27{left:240.552000pt;}
.x60{left:242.665067pt;}
.x53{left:247.498002pt;}
.x4f{left:249.061333pt;}
.x5d{left:255.041667pt;}
.x2e{left:256.802533pt;}
.x58{left:260.665333pt;}
.x26{left:261.677333pt;}
.x29{left:262.928000pt;}
.x20{left:267.802667pt;}
.x22{left:269.427800pt;}
.x61{left:270.875000pt;}
.x2c{left:272.136000pt;}
.x1e{left:273.718636pt;}
.x24{left:277.010667pt;}
.x1c{left:278.511267pt;}
.x52{left:282.749333pt;}
.x13{left:288.844000pt;}
.x55{left:299.832408pt;}
.xf{left:356.735733pt;}
.x63{left:404.630667pt;}
.x64{left:417.722799pt;}
.x7{left:421.418533pt;}
.x50{left:423.064000pt;}
.x6c{left:427.469333pt;}
.x6d{left:429.736000pt;}
.x8{left:432.757200pt;}
.x6e{left:434.269333pt;}
.x51{left:435.738667pt;}
.x6{left:440.315867pt;}
.x41{left:443.814533pt;}
.x3b{left:450.732005pt;}
.x49{left:454.022955pt;}
.x65{left:458.320000pt;}
.x4d{left:460.481667pt;}
.xb{left:484.566667pt;}
.x3a{left:489.689333pt;}
.x48{left:493.648000pt;}
.x4a{left:495.857038pt;}
.x46{left:497.438691pt;}
.x67{left:500.220000pt;}
.x37{left:501.272572pt;}
.x38{left:505.314133pt;}
.xc{left:507.148000pt;}
.x43{left:521.438400pt;}
.xd{left:525.648000pt;}
.x4c{left:529.065333pt;}
.x44{left:533.688816pt;}
.x62{left:537.317333pt;}
.x6b{left:540.457333pt;}
.x36{left:541.565333pt;}
.x45{left:547.021542pt;}
.x4b{left:558.149178pt;}
.x3f{left:560.273897pt;}
.x39{left:563.232560pt;}
.x47{left:566.271829pt;}
.x3d{left:574.148066pt;}
.x3e{left:576.315016pt;}
.x42{left:582.313133pt;}
.x3c{left:588.899252pt;}
.x2{left:597.651733pt;}
.xa{left:606.778533pt;}
.x4e{left:614.607133pt;}
.x40{left:631.481333pt;}
.x9{left:684.082533pt;}
.xe{left:687.212000pt;}
.x66{left:698.434667pt;}
}




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