
    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_6c5eca55c32a89ec729d9349.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d5ba99cee51b371b455d12c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074382;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_2ba24e4509dad1b2c393a4af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_25b505fb3d85877ab9c35344.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_1dd293ef38075d39a0692c14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096000;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_0eda1e25642fc86cbb5e6090.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_8c27fb976026a2d2b3bef470.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.831000;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_e8ddd26057d66ea83d8b4bc0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_db3b23881d2b631511120acd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_7fc7f24f7dee43d6b4bef78a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.186035;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_dd57334ea4baf5a5caf65a62.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_409fe5ef5f40f853f84c5a1d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8c6d001458e1e2fe1e0cc3d8.woff2')format("woff");}.fff{font-family:fff;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_efa3c643a069e9b0d5b37f24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_dcc60f4c98f2c8edd91518c1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005371;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:ff12;src:url('chunks/assets/font_ba75854f532bc8588436d811.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.171387;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:ff13;src:url('chunks/assets/font_1772af27e17c1353dc17ac96.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005371;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:ff14;src:url('chunks/assets/font_9cba875953804b095f4b59ef.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.171387;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:ff15;src:url('chunks/assets/font_23ae4de03e4237c43dfabd9c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.171387;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:ff16;src:url('chunks/assets/font_139a01b21df1162fee534b43.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.171387;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:ff17;src:url('chunks/assets/font_d0f016a1ec9e7e515909a34f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.005371;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:ff18;src:url('chunks/assets/font_ba75854f532bc8588436d811.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.171387;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:ff19;src:url('chunks/assets/font_ba75854f532bc8588436d811.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.171387;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:ff1a;src:url('chunks/assets/font_ba75854f532bc8588436d811.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.171387;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:ff1b;src:url('chunks/assets/font_7397b21549df7a4aa5c6fb64.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.171387;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;}
.m2{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-68.372640px;}
.va{vertical-align:-44.751000px;}
.v3{vertical-align:-32.606280px;}
.v11{vertical-align:-26.621280px;}
.v1b{vertical-align:-14.544000px;}
.v13{vertical-align:-8.331120px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:1.149120px;}
.v15{vertical-align:4.692240px;}
.v16{vertical-align:8.953560px;}
.v14{vertical-align:10.342080px;}
.v9{vertical-align:14.081400px;}
.v8{vertical-align:15.752520px;}
.v1{vertical-align:17.982600px;}
.v12{vertical-align:20.636280px;}
.v6{vertical-align:23.078160px;}
.v17{vertical-align:24.323040px;}
.v2{vertical-align:25.900200px;}
.vb{vertical-align:28.536480px;}
.v7{vertical-align:32.702040px;}
.v5{vertical-align:38.782800px;}
.vc{vertical-align:43.522920px;}
.v1a{vertical-align:45.216000px;}
.vd{vertical-align:50.321880px;}
.v19{vertical-align:51.800400px;}
.ve{vertical-align:72.633960px;}
.v18{vertical-align:97.531560px;}
.vf{vertical-align:108.160920px;}
.ls7{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-2.400000px;}
.ls13{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.620000px;}
.ls14{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.143640px;}
.lsf{letter-spacing:-0.047880px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.143640px;}
.ls9{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.620000px;}
.ls12{letter-spacing:12.336000px;}
.ls11{letter-spacing:131.170800px;}
.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;}
}
.ws1{word-spacing:-17.880000px;}
.ws4c{word-spacing:-17.280000px;}
.ws5{word-spacing:-16.980000px;}
.ws52{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.092000px;}
.wsf{word-spacing:-16.080000px;}
.ws18{word-spacing:-14.040000px;}
.ws4{word-spacing:-13.932000px;}
.ws3d{word-spacing:-12.592440px;}
.ws2{word-spacing:-12.480000px;}
.ws1b{word-spacing:-12.448800px;}
.ws2d{word-spacing:-12.400920px;}
.ws23{word-spacing:-8.185320px;}
.ws4e{word-spacing:-3.726000px;}
.ws4b{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.080000px;}
.wsb{word-spacing:-0.540000px;}
.ws51{word-spacing:-0.432000px;}
.ws48{word-spacing:-0.384000px;}
.ws25{word-spacing:-0.335160px;}
.wsa{word-spacing:-0.270000px;}
.ws40{word-spacing:-0.191520px;}
.ws3f{word-spacing:-0.143640px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.095760px;}
.ws41{word-spacing:0.143640px;}
.ws47{word-spacing:0.192000px;}
.ws9{word-spacing:0.270000px;}
.ws43{word-spacing:0.287280px;}
.ws46{word-spacing:0.480000px;}
.ws6{word-spacing:0.540000px;}
.ws53{word-spacing:1.620000px;}
.ws4f{word-spacing:1.800000px;}
.wse{word-spacing:2.484000px;}
.ws4d{word-spacing:4.806000px;}
.ws3e{word-spacing:5.238000px;}
.ws50{word-spacing:7.641000px;}
.ws49{word-spacing:7.668000px;}
.wsc{word-spacing:8.478000px;}
.ws7{word-spacing:9.882000px;}
.ws4a{word-spacing:10.152000px;}
.wsd{word-spacing:11.124000px;}
.ws8{word-spacing:11.568000px;}
.ws54{word-spacing:17.496000px;}
.ws45{word-spacing:21.600000px;}
.ws26{word-spacing:98.931600px;}
.ws28{word-spacing:111.775800px;}
.ws44{word-spacing:147.834600px;}
.ws22{word-spacing:220.228848px;}
.ws20{word-spacing:254.529276px;}
.ws29{word-spacing:261.405648px;}
.ws2a{word-spacing:264.469968px;}
.ws2c{word-spacing:271.939248px;}
.ws2b{word-spacing:274.429008px;}
.ws21{word-spacing:280.179876px;}
.ws1e{word-spacing:283.454388px;}
.ws3a{word-spacing:284.967396px;}
.ws10{word-spacing:285.479400px;}
.ws1a{word-spacing:293.892228px;}
.ws31{word-spacing:295.261596px;}
.ws2e{word-spacing:298.996236px;}
.ws3b{word-spacing:299.283516px;}
.ws30{word-spacing:300.049596px;}
.ws32{word-spacing:302.156316px;}
.ws2f{word-spacing:304.502436px;}
.ws19{word-spacing:305.910108px;}
.ws39{word-spacing:306.992196px;}
.ws1f{word-spacing:311.703588px;}
.ws38{word-spacing:312.450516px;}
.ws15{word-spacing:312.935400px;}
.ws36{word-spacing:319.158504px;}
.ws1c{word-spacing:319.555908px;}
.ws17{word-spacing:322.195200px;}
.ws33{word-spacing:331.602516px;}
.ws37{word-spacing:332.373384px;}
.ws34{word-spacing:332.852184px;}
.ws35{word-spacing:338.248260px;}
.ws3c{word-spacing:338.856336px;}
.ws1d{word-spacing:342.227088px;}
.ws16{word-spacing:353.159400px;}
.ws12{word-spacing:380.615400px;}
.ws14{word-spacing:393.047400px;}
.ws13{word-spacing:393.048000px;}
.ws11{word-spacing:419.851200px;}
.ws27{word-spacing:1127.097000px;}
._30{margin-left:-749.131800px;}
._16{margin-left:-14.895600px;}
._3f{margin-left:-10.798800px;}
._3d{margin-left:-8.791200px;}
._4{margin-left:-7.414200px;}
._8{margin-left:-5.760000px;}
._5{margin-left:-3.893400px;}
._9{margin-left:-2.400000px;}
._1{margin-left:-1.200000px;}
._0{width:1.200000px;}
._3{width:2.209800px;}
._b{width:4.050000px;}
._2{width:5.162400px;}
._c{width:6.507000px;}
._10{width:7.587000px;}
._6{width:9.320400px;}
._7{width:10.366800px;}
._a{width:11.432400px;}
._17{width:12.813000px;}
._12{width:15.973200px;}
._15{width:17.042400px;}
._13{width:18.986400px;}
._d{width:20.975400px;}
._e{width:22.338000px;}
._11{width:23.670000px;}
._14{width:25.498800px;}
._41{width:26.535600px;}
._38{width:27.783000px;}
._40{width:30.072600px;}
._31{width:31.217400px;}
._42{width:33.204600px;}
._3e{width:38.610000px;}
._37{width:73.765800px;}
._25{width:190.813200px;}
._2a{width:209.241600px;}
._2f{width:211.464120px;}
._19{width:213.287400px;}
._28{width:214.910400px;}
._22{width:218.905800px;}
._1a{width:224.488800px;}
._18{width:232.296600px;}
._1d{width:255.238800px;}
._2e{width:270.504000px;}
._2c{width:275.339400px;}
._27{width:277.097400px;}
._23{width:297.959400px;}
._2d{width:306.603600px;}
._2b{width:310.579200px;}
._1f{width:311.682000px;}
._29{width:315.373200px;}
._26{width:324.409800px;}
._1b{width:325.415400px;}
._24{width:330.343200px;}
._1c{width:345.524400px;}
._3a{width:352.731960px;}
._20{width:372.309000px;}
._21{width:378.127200px;}
._1e{width:432.986400px;}
._3b{width:582.985800px;}
._3c{width:778.134000px;}
._33{width:1220.424000px;}
._32{width:1221.468000px;}
._35{width:1224.798600px;}
._39{width:1273.202808px;}
._34{width:1276.147800px;}
._36{width:1315.198800px;}
._f{width:1884.562200px;}
.fc5{color:rgb(48,88,159);}
.fc3{color:rgb(58,60,141);}
.fc2{color:rgb(5,6,6);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.880000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:56.737950px;}
.y5{bottom:66.525004px;}
.y35{bottom:89.114850px;}
.y4{bottom:97.125005px;}
.y198{bottom:97.795200px;}
.y190{bottom:114.016050px;}
.ya5{bottom:115.795200px;}
.y8a{bottom:115.795350px;}
.y34{bottom:116.712000px;}
.y33{bottom:131.712000px;}
.y18f{bottom:131.865900px;}
.ya4{bottom:133.795200px;}
.y89{bottom:133.795350px;}
.y21{bottom:139.264499px;}
.yc2{bottom:140.881650px;}
.y18e{bottom:149.716050px;}
.ya3{bottom:151.795200px;}
.y88{bottom:151.795350px;}
.yc5{bottom:155.365800px;}
.yc1{bottom:157.952100px;}
.y156{bottom:158.650350px;}
.y18d{bottom:167.566050px;}
.y107{bottom:168.435900px;}
.ya2{bottom:169.795200px;}
.y32{bottom:169.795350px;}
.yc4{bottom:173.365800px;}
.yc0{bottom:175.022400px;}
.y106{bottom:181.386000px;}
.y18c{bottom:185.416050px;}
.ya1{bottom:187.795200px;}
.y31{bottom:187.795350px;}
.ybf{bottom:187.972350px;}
.yc3{bottom:191.365800px;}
.y105{bottom:194.335950px;}
.y18{bottom:196.933500px;}
.y18b{bottom:203.266050px;}
.ybe{bottom:205.042650px;}
.ya0{bottom:205.795200px;}
.y30{bottom:205.795350px;}
.y104{bottom:207.285900px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y155{bottom:211.039350px;}
.y103{bottom:220.235850px;}
.y18a{bottom:221.115900px;}
.ybd{bottom:222.113100px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y9f{bottom:223.795200px;}
.y87{bottom:223.795350px;}
.ye0{bottom:226.324500px;}
.yd5{bottom:226.348500px;}
.ye3{bottom:227.630550px;}
.yc9{bottom:228.930150px;}
.y102{bottom:233.185950px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y189{bottom:238.966050px;}
.ybc{bottom:239.183400px;}
.yfb{bottom:239.661000px;}
.y9e{bottom:241.795200px;}
.y86{bottom:241.795350px;}
.y101{bottom:246.135900px;}
.ybb{bottom:256.253700px;}
.y188{bottom:256.816050px;}
.y100{bottom:259.086000px;}
.y59{bottom:259.795200px;}
.y29{bottom:259.795350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y154{bottom:265.039350px;}
.yff{bottom:272.035950px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yba{bottom:273.324150px;}
.y187{bottom:274.666050px;}
.y58{bottom:277.795200px;}
.y28{bottom:277.795350px;}
.yfe{bottom:284.985900px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb9{bottom:286.274100px;}
.y186{bottom:292.516050px;}
.y57{bottom:295.795200px;}
.y27{bottom:295.795350px;}
.yfd{bottom:297.936000px;}
.yb8{bottom:303.344400px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y185{bottom:310.365900px;}
.yfc{bottom:310.885950px;}
.y56{bottom:313.795200px;}
.y26{bottom:313.795350px;}
.yb7{bottom:322.454250px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y184{bottom:328.216050px;}
.y55{bottom:331.795200px;}
.y25{bottom:331.795350px;}
.yb6{bottom:341.564100px;}
.yf8{bottom:341.961000px;}
.y183{bottom:346.066050px;}
.yf{bottom:348.133500px;}
.yfa{bottom:348.436050px;}
.y54{bottom:349.795200px;}
.y24{bottom:349.795350px;}
.yf7{bottom:354.911100px;}
.yb5{bottom:358.634550px;}
.yf4{bottom:361.386000px;}
.y182{bottom:363.916050px;}
.y53{bottom:367.795200px;}
.y23{bottom:367.795350px;}
.yf6{bottom:367.861050px;}
.y153{bottom:373.039350px;}
.yf9{bottom:374.336100px;}
.yb4{bottom:375.704850px;}
.yf5{bottom:380.811000px;}
.y181{bottom:381.766050px;}
.y9d{bottom:385.795200px;}
.y85{bottom:385.795350px;}
.ye{bottom:386.785499px;}
.yb3{bottom:388.654800px;}
.y22{bottom:392.650350px;}
.y141{bottom:394.543800px;}
.y180{bottom:399.616050px;}
.y9c{bottom:403.795200px;}
.y84{bottom:403.795350px;}
.yf3{bottom:405.546450px;}
.yb2{bottom:405.725250px;}
.y140{bottom:407.493900px;}
.yd{bottom:408.044999px;}
.y152{bottom:409.039500px;}
.y13d{bottom:413.968800px;}
.y17f{bottom:417.466050px;}
.yf2{bottom:418.496550px;}
.y13f{bottom:420.443850px;}
.y4d{bottom:421.795200px;}
.y83{bottom:421.795350px;}
.yb1{bottom:422.795550px;}
.yf1{bottom:431.446500px;}
.y13e{bottom:433.393950px;}
.y17e{bottom:435.316050px;}
.yb0{bottom:435.745500px;}
.yed{bottom:437.921550px;}
.y4c{bottom:439.795200px;}
.y82{bottom:439.795350px;}
.yf0{bottom:444.396450px;}
.yaf{bottom:452.815800px;}
.y17d{bottom:453.166050px;}
.yef{bottom:457.346550px;}
.y9b{bottom:457.795200px;}
.y81{bottom:457.795350px;}
.y13c{bottom:461.208300px;}
.yae{bottom:465.765900px;}
.yee{bottom:470.296500px;}
.y17c{bottom:471.016050px;}
.y13b{bottom:474.158250px;}
.y4b{bottom:475.795200px;}
.y80{bottom:475.795350px;}
.y138{bottom:480.633300px;}
.yad{bottom:482.836200px;}
.y13a{bottom:487.108350px;}
.y17b{bottom:488.866050px;}
.y4a{bottom:493.795200px;}
.y7f{bottom:493.795350px;}
.yec{bottom:498.533850px;}
.yac{bottom:499.906500px;}
.y139{bottom:500.058300px;}
.yc{bottom:502.864502px;}
.yeb{bottom:505.008750px;}
.y17a{bottom:506.716050px;}
.y49{bottom:511.795200px;}
.y7e{bottom:511.795350px;}
.yab{bottom:516.976800px;}
.yb{bottom:520.864502px;}
.y133{bottom:522.500700px;}
.y179{bottom:524.566050px;}
.y137{bottom:528.975750px;}
.y48{bottom:529.795200px;}
.y7d{bottom:529.795350px;}
.yaa{bottom:534.465150px;}
.y131{bottom:535.450650px;}
.yea{bottom:535.491750px;}
.ya{bottom:538.864499px;}
.y136{bottom:541.925700px;}
.y178{bottom:542.416050px;}
.y47{bottom:547.795200px;}
.y7c{bottom:547.795350px;}
.y12f{bottom:548.400750px;}
.ya9{bottom:552.371400px;}
.y135{bottom:554.875650px;}
.y9{bottom:556.864499px;}
.y177{bottom:560.266050px;}
.y130{bottom:561.350700px;}
.y46{bottom:565.795200px;}
.y7b{bottom:565.795350px;}
.y134{bottom:567.825600px;}
.ya8{bottom:571.491750px;}
.y132{bottom:574.300650px;}
.y176{bottom:578.116050px;}
.y45{bottom:583.795200px;}
.y7a{bottom:583.795350px;}
.y12c{bottom:591.371100px;}
.y175{bottom:595.966050px;}
.y12e{bottom:597.846000px;}
.y44{bottom:601.795200px;}
.y79{bottom:601.795350px;}
.y12b{bottom:604.321050px;}
.y128{bottom:610.796100px;}
.y174{bottom:613.816050px;}
.y12a{bottom:617.271000px;}
.y43{bottom:619.795200px;}
.y78{bottom:619.795350px;}
.y12d{bottom:623.746050px;}
.y197{bottom:624.095400px;}
.y129{bottom:630.221100px;}
.y173{bottom:631.666050px;}
.y42{bottom:637.795200px;}
.y77{bottom:637.795350px;}
.y196{bottom:640.295400px;}
.y8{bottom:645.510000px;}
.y172{bottom:649.516050px;}
.y123{bottom:650.061000px;}
.y41{bottom:655.795200px;}
.y76{bottom:655.795350px;}
.y195{bottom:656.495400px;}
.y127{bottom:656.535900px;}
.y121{bottom:663.010950px;}
.y7{bottom:666.771000px;}
.y171{bottom:667.366050px;}
.y126{bottom:669.486000px;}
.y194{bottom:672.695400px;}
.y40{bottom:673.795200px;}
.y75{bottom:673.795350px;}
.y11f{bottom:675.960900px;}
.y125{bottom:682.435950px;}
.y170{bottom:685.216050px;}
.y120{bottom:688.911000px;}
.y193{bottom:691.021350px;}
.y3f{bottom:691.795200px;}
.y74{bottom:691.795350px;}
.y124{bottom:695.385900px;}
.y122{bottom:701.860950px;}
.y16f{bottom:703.066050px;}
.y3e{bottom:709.795200px;}
.y73{bottom:709.795350px;}
.y16e{bottom:720.916050px;}
.y11e{bottom:724.470450px;}
.y6{bottom:726.298500px;}
.y3d{bottom:727.795200px;}
.y72{bottom:727.795350px;}
.y192{bottom:728.821350px;}
.y11b{bottom:737.420400px;}
.y16d{bottom:738.766050px;}
.y3c{bottom:745.795200px;}
.y71{bottom:745.795350px;}
.yc6{bottom:749.365800px;}
.y11a{bottom:750.370350px;}
.y191{bottom:750.421350px;}
.y3{bottom:752.599495px;}
.y16c{bottom:756.616050px;}
.y11d{bottom:763.320450px;}
.y3b{bottom:763.795200px;}
.y70{bottom:763.795350px;}
.y16b{bottom:774.466050px;}
.y11c{bottom:776.270400px;}
.y3a{bottom:781.795200px;}
.y6f{bottom:781.795350px;}
.yc8{bottom:791.938500px;}
.y16a{bottom:792.316050px;}
.ye2{bottom:797.550450px;}
.y39{bottom:799.795200px;}
.y6e{bottom:799.795350px;}
.y119{bottom:799.918350px;}
.ye9{bottom:806.136150px;}
.y169{bottom:810.166050px;}
.y38{bottom:817.795200px;}
.y6d{bottom:817.795350px;}
.ye1{bottom:822.445800px;}
.y118{bottom:823.491900px;}
.y168{bottom:828.016050px;}
.ye8{bottom:831.261150px;}
.ycf{bottom:834.284160px;}
.yd6{bottom:834.284250px;}
.y37{bottom:835.795200px;}
.y6c{bottom:835.795350px;}
.ya7{bottom:841.039350px;}
.y167{bottom:845.865900px;}
.yd7{bottom:852.682140px;}
.y36{bottom:853.795200px;}
.y6b{bottom:853.795350px;}
.ye7{bottom:856.386150px;}
.y166{bottom:863.716050px;}
.yd0{bottom:864.951300px;}
.yd8{bottom:871.080030px;}
.y9a{bottom:871.795200px;}
.y6a{bottom:871.795350px;}
.y2{bottom:879.369000px;}
.ye6{bottom:881.511150px;}
.y165{bottom:881.566050px;}
.ycd{bottom:886.944000px;}
.yd9{bottom:889.477920px;}
.y99{bottom:889.795200px;}
.y69{bottom:889.795350px;}
.yd1{bottom:895.618440px;}
.y2f{bottom:897.245400px;}
.y164{bottom:899.416050px;}
.ye5{bottom:906.636150px;}
.y98{bottom:907.795200px;}
.y68{bottom:907.795350px;}
.yda{bottom:907.875810px;}
.y114{bottom:912.251100px;}
.y2e{bottom:913.445400px;}
.y116{bottom:913.557600px;}
.y163{bottom:917.266050px;}
.y97{bottom:925.795200px;}
.y67{bottom:925.795350px;}
.ydb{bottom:926.273700px;}
.yd2{bottom:926.285580px;}
.y113{bottom:929.009100px;}
.y2d{bottom:929.645400px;}
.y143{bottom:930.057600px;}
.y115{bottom:930.315600px;}
.ye4{bottom:930.428850px;}
.y150{bottom:930.714600px;}
.y162{bottom:935.115900px;}
.y144{bottom:942.993600px;}
.y96{bottom:943.795200px;}
.y66{bottom:943.795350px;}
.ydc{bottom:944.671590px;}
.y2c{bottom:945.845550px;}
.ycc{bottom:947.353050px;}
.y112{bottom:951.387030px;}
.y14f{bottom:951.534600px;}
.y161{bottom:952.966050px;}
.y117{bottom:955.488510px;}
.yd3{bottom:956.952720px;}
.y95{bottom:961.795200px;}
.y65{bottom:961.795350px;}
.yce{bottom:963.041250px;}
.ydd{bottom:963.069480px;}
.y2b{bottom:964.171350px;}
.y1{bottom:966.726000px;}
.y10d{bottom:969.509610px;}
.y160{bottom:970.816050px;}
.y14e{bottom:972.198600px;}
.y145{bottom:979.101600px;}
.y94{bottom:979.795200px;}
.y64{bottom:979.795350px;}
.y10a{bottom:981.072630px;}
.yde{bottom:981.467370px;}
.ycb{bottom:982.904250px;}
.yd4{bottom:987.619860px;}
.y15f{bottom:988.666050px;}
.y10b{bottom:990.421200px;}
.y14d{bottom:993.318600px;}
.y93{bottom:997.795200px;}
.y63{bottom:997.795350px;}
.ydf{bottom:999.865260px;}
.y2a{bottom:1001.971500px;}
.y10e{bottom:1004.354280px;}
.y15e{bottom:1006.516050px;}
.yc7{bottom:1008.659250px;}
.y146{bottom:1010.661600px;}
.yca{bottom:1011.472200px;}
.y14c{bottom:1013.982600px;}
.y109{bottom:1015.258950px;}
.y92{bottom:1015.795200px;}
.y62{bottom:1015.795350px;}
.y142{bottom:1017.249600px;}
.y15d{bottom:1024.365900px;}
.y91{bottom:1033.795200px;}
.y61{bottom:1033.795350px;}
.y147{bottom:1035.069600px;}
.y14b{bottom:1035.174600px;}
.y10f{bottom:1039.198950px;}
.y10c{bottom:1040.790960px;}
.y15c{bottom:1042.216050px;}
.y90{bottom:1051.795200px;}
.y52{bottom:1051.795350px;}
.y14a{bottom:1055.838600px;}
.y15b{bottom:1060.066050px;}
.y148{bottom:1066.293600px;}
.y8f{bottom:1069.795200px;}
.y60{bottom:1069.795350px;}
.y110{bottom:1074.043620px;}
.y15a{bottom:1077.916050px;}
.y108{bottom:1078.640100px;}
.y8e{bottom:1087.795200px;}
.y5f{bottom:1087.795350px;}
.y51{bottom:1088.415000px;}
.y151{bottom:1094.774100px;}
.y159{bottom:1095.766050px;}
.y8d{bottom:1105.795200px;}
.y5e{bottom:1105.795350px;}
.y50{bottom:1107.915000px;}
.y149{bottom:1108.833600px;}
.y111{bottom:1108.888290px;}
.y158{bottom:1113.615900px;}
.ya6{bottom:1123.795200px;}
.y5d{bottom:1123.795350px;}
.y4f{bottom:1127.415000px;}
.y8c{bottom:1130.650200px;}
.y157{bottom:1131.466050px;}
.y4e{bottom:1154.052750px;}
.y8b{bottom:1175.269800px;}
.y5c{bottom:1176.367650px;}
.y5a{bottom:1186.184700px;}
.h7{height:32.130000px;}
.h12{height:34.560000px;}
.h1b{height:36.634746px;}
.hf{height:36.726562px;}
.h13{height:38.880000px;}
.hd{height:39.408000px;}
.h14{height:41.317383px;}
.h16{height:41.370117px;}
.h11{height:43.200000px;}
.h15{height:43.260000px;}
.hc{height:44.334000px;}
.h25{height:44.583574px;}
.he{height:44.695312px;}
.h18{height:45.398438px;}
.h6{height:45.900000px;}
.h23{height:46.976826px;}
.h3{height:48.195000px;}
.h9{height:49.260000px;}
.ha{height:50.282227px;}
.h1e{height:50.716146px;}
.h17{height:51.073242px;}
.h2{height:55.080000px;}
.h22{height:57.271026px;}
.hb{height:59.112000px;}
.h1a{height:70.594912px;}
.h19{height:70.595512px;}
.h20{height:71.298037px;}
.h1f{height:71.298637px;}
.h1d{height:75.417546px;}
.h5{height:78.030000px;}
.h27{height:81.942562px;}
.h26{height:96.495713px;}
.h10{height:111.510000px;}
.h4{height:119.055004px;}
.h24{height:134.166306px;}
.h21{height:144.795666px;}
.h1c{height:239.730000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:659.253000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:9.729450px;}
.x10{left:76.174350px;}
.x7d{left:77.359350px;}
.x5{left:85.039350px;}
.x1b{left:92.263500px;}
.x1f{left:98.275200px;}
.x52{left:99.627150px;}
.x14{left:100.680600px;}
.x1{left:102.045000px;}
.x17{left:105.136500px;}
.x2{left:106.297500px;}
.x15{left:108.365100px;}
.xe{left:110.551200px;}
.x1c{left:111.625800px;}
.x51{left:113.359950px;}
.x7e{left:114.803100px;}
.x12{left:116.626800px;}
.x48{left:118.539450px;}
.x1a{left:122.108250px;}
.x19{left:124.238100px;}
.x3b{left:126.407700px;}
.x20{left:128.058450px;}
.x1e{left:129.089700px;}
.xf{left:131.701350px;}
.x2d{left:133.664790px;}
.x68{left:135.633450px;}
.x62{left:138.393150px;}
.x2c{left:140.523600px;}
.x6f{left:142.902000px;}
.x18{left:144.165900px;}
.x23{left:147.584550px;}
.x3c{left:150.243600px;}
.x53{left:152.801400px;}
.x16{left:156.221550px;}
.x49{left:158.471370px;}
.x4c{left:163.690290px;}
.x79{left:171.895500px;}
.x24{left:176.973600px;}
.x50{left:179.030850px;}
.x47{left:180.471150px;}
.x2f{left:182.933250px;}
.x78{left:187.783500px;}
.x4a{left:191.245230px;}
.x28{left:198.134550px;}
.x8{left:201.889500px;}
.x4{left:203.484001px;}
.x27{left:210.273150px;}
.x7a{left:213.067500px;}
.x35{left:214.241250px;}
.x40{left:217.756950px;}
.x41{left:219.057750px;}
.x43{left:221.088000px;}
.x11{left:223.901100px;}
.x45{left:224.966850px;}
.x42{left:226.033200px;}
.x33{left:228.479550px;}
.x38{left:231.224700px;}
.x32{left:232.414050px;}
.x36{left:234.237150px;}
.x34{left:235.545900px;}
.x6{left:237.666750px;}
.x37{left:238.745250px;}
.x3e{left:240.295050px;}
.x7{left:241.452000px;}
.x70{left:244.067700px;}
.x54{left:246.973950px;}
.x44{left:249.160200px;}
.x73{left:250.296150px;}
.x57{left:251.614500px;}
.x55{left:252.877200px;}
.x6a{left:255.458250px;}
.x56{left:257.008050px;}
.x63{left:258.660450px;}
.x5b{left:259.972950px;}
.x5c{left:263.011050px;}
.x64{left:265.636050px;}
.x65{left:269.497350px;}
.x39{left:274.762800px;}
.x69{left:276.317700px;}
.x3d{left:289.393650px;}
.x30{left:295.379700px;}
.x77{left:306.331500px;}
.x6b{left:312.976800px;}
.x5d{left:313.993350px;}
.x3a{left:324.236400px;}
.x4f{left:326.013150px;}
.x7b{left:371.659500px;}
.x46{left:380.161200px;}
.x1d{left:406.384350px;}
.x25{left:410.725950px;}
.x3f{left:425.058600px;}
.x13{left:426.233100px;}
.x3{left:454.959000px;}
.x9{left:457.086600px;}
.x4d{left:458.161950px;}
.xa{left:482.598450px;}
.x4e{left:499.554210px;}
.x22{left:531.431400px;}
.x21{left:532.611300px;}
.x29{left:539.546400px;}
.x58{left:546.093600px;}
.x5a{left:548.000850px;}
.x72{left:549.433350px;}
.x67{left:550.558350px;}
.x60{left:552.486150px;}
.x5e{left:554.475450px;}
.x66{left:555.477300px;}
.x6d{left:558.178500px;}
.x5f{left:559.300650px;}
.x71{left:562.221450px;}
.x6c{left:564.096450px;}
.x75{left:566.765400px;}
.xc{left:571.609800px;}
.x6e{left:574.995000px;}
.x59{left:576.656100px;}
.x74{left:581.258550px;}
.x61{left:586.083750px;}
.x2b{left:627.920100px;}
.x76{left:636.184350px;}
.x26{left:644.749350px;}
.xb{left:700.185450px;}
.x31{left:714.093300px;}
.x2a{left:744.999600px;}
.x4b{left:761.926950px;}
.xd{left:798.829050px;}
.x7f{left:799.841700px;}
.x7c{left:801.401700px;}
@media print{
.v4{vertical-align:-60.775680pt;}
.va{vertical-align:-39.778667pt;}
.v3{vertical-align:-28.983360pt;}
.v11{vertical-align:-23.663360pt;}
.v1b{vertical-align:-12.928000pt;}
.v13{vertical-align:-7.405440pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.021440pt;}
.v15{vertical-align:4.170880pt;}
.v16{vertical-align:7.958720pt;}
.v14{vertical-align:9.192960pt;}
.v9{vertical-align:12.516800pt;}
.v8{vertical-align:14.002240pt;}
.v1{vertical-align:15.984533pt;}
.v12{vertical-align:18.343360pt;}
.v6{vertical-align:20.513920pt;}
.v17{vertical-align:21.620480pt;}
.v2{vertical-align:23.022400pt;}
.vb{vertical-align:25.365760pt;}
.v7{vertical-align:29.068480pt;}
.v5{vertical-align:34.473600pt;}
.vc{vertical-align:38.687040pt;}
.v1a{vertical-align:40.192000pt;}
.vd{vertical-align:44.730560pt;}
.v19{vertical-align:46.044800pt;}
.ve{vertical-align:64.563520pt;}
.v18{vertical-align:86.694720pt;}
.vf{vertical-align:96.143040pt;}
.ls7{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-1.440000pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.127680pt;}
.lsf{letter-spacing:-0.042560pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.127680pt;}
.ls9{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls12{letter-spacing:10.965333pt;}
.ls11{letter-spacing:116.596267pt;}
.ws1{word-spacing:-15.893333pt;}
.ws4c{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.093333pt;}
.ws52{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.304000pt;}
.wsf{word-spacing:-14.293333pt;}
.ws18{word-spacing:-12.480000pt;}
.ws4{word-spacing:-12.384000pt;}
.ws3d{word-spacing:-11.193280pt;}
.ws2{word-spacing:-11.093333pt;}
.ws1b{word-spacing:-11.065600pt;}
.ws2d{word-spacing:-11.023040pt;}
.ws23{word-spacing:-7.275840pt;}
.ws4e{word-spacing:-3.312000pt;}
.ws4b{word-spacing:-1.152000pt;}
.ws24{word-spacing:-0.960000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws51{word-spacing:-0.384000pt;}
.ws48{word-spacing:-0.341333pt;}
.ws25{word-spacing:-0.297920pt;}
.wsa{word-spacing:-0.240000pt;}
.ws40{word-spacing:-0.170240pt;}
.ws3f{word-spacing:-0.127680pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.085120pt;}
.ws41{word-spacing:0.127680pt;}
.ws47{word-spacing:0.170667pt;}
.ws9{word-spacing:0.240000pt;}
.ws43{word-spacing:0.255360pt;}
.ws46{word-spacing:0.426667pt;}
.ws6{word-spacing:0.480000pt;}
.ws53{word-spacing:1.440000pt;}
.ws4f{word-spacing:1.600000pt;}
.wse{word-spacing:2.208000pt;}
.ws4d{word-spacing:4.272000pt;}
.ws3e{word-spacing:4.656000pt;}
.ws50{word-spacing:6.792000pt;}
.ws49{word-spacing:6.816000pt;}
.wsc{word-spacing:7.536000pt;}
.ws7{word-spacing:8.784000pt;}
.ws4a{word-spacing:9.024000pt;}
.wsd{word-spacing:9.888000pt;}
.ws8{word-spacing:10.282667pt;}
.ws54{word-spacing:15.552000pt;}
.ws45{word-spacing:19.200000pt;}
.ws26{word-spacing:87.939200pt;}
.ws28{word-spacing:99.356267pt;}
.ws44{word-spacing:131.408533pt;}
.ws22{word-spacing:195.758976pt;}
.ws20{word-spacing:226.248245pt;}
.ws29{word-spacing:232.360576pt;}
.ws2a{word-spacing:235.084416pt;}
.ws2c{word-spacing:241.723776pt;}
.ws2b{word-spacing:243.936896pt;}
.ws21{word-spacing:249.048779pt;}
.ws1e{word-spacing:251.959456pt;}
.ws3a{word-spacing:253.304352pt;}
.ws10{word-spacing:253.759467pt;}
.ws1a{word-spacing:261.237536pt;}
.ws31{word-spacing:262.454752pt;}
.ws2e{word-spacing:265.774432pt;}
.ws3b{word-spacing:266.029792pt;}
.ws30{word-spacing:266.710752pt;}
.ws32{word-spacing:268.583392pt;}
.ws2f{word-spacing:270.668832pt;}
.ws19{word-spacing:271.920096pt;}
.ws39{word-spacing:272.881952pt;}
.ws1f{word-spacing:277.069856pt;}
.ws38{word-spacing:277.733792pt;}
.ws15{word-spacing:278.164800pt;}
.ws36{word-spacing:283.696448pt;}
.ws1c{word-spacing:284.049696pt;}
.ws17{word-spacing:286.395733pt;}
.ws33{word-spacing:294.757792pt;}
.ws37{word-spacing:295.443008pt;}
.ws34{word-spacing:295.868608pt;}
.ws35{word-spacing:300.665120pt;}
.ws3c{word-spacing:301.205632pt;}
.ws1d{word-spacing:304.201856pt;}
.ws16{word-spacing:313.919467pt;}
.ws12{word-spacing:338.324800pt;}
.ws14{word-spacing:349.375467pt;}
.ws13{word-spacing:349.376000pt;}
.ws11{word-spacing:373.201067pt;}
.ws27{word-spacing:1001.864000pt;}
._30{margin-left:-665.894933pt;}
._16{margin-left:-13.240533pt;}
._3f{margin-left:-9.598933pt;}
._3d{margin-left:-7.814400pt;}
._4{margin-left:-6.590400pt;}
._8{margin-left:-5.120000pt;}
._5{margin-left:-3.460800pt;}
._9{margin-left:-2.133333pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.066667pt;}
._3{width:1.964267pt;}
._b{width:3.600000pt;}
._2{width:4.588800pt;}
._c{width:5.784000pt;}
._10{width:6.744000pt;}
._6{width:8.284800pt;}
._7{width:9.214933pt;}
._a{width:10.162133pt;}
._17{width:11.389333pt;}
._12{width:14.198400pt;}
._15{width:15.148800pt;}
._13{width:16.876800pt;}
._d{width:18.644800pt;}
._e{width:19.856000pt;}
._11{width:21.040000pt;}
._14{width:22.665600pt;}
._41{width:23.587200pt;}
._38{width:24.696000pt;}
._40{width:26.731200pt;}
._31{width:27.748800pt;}
._42{width:29.515200pt;}
._3e{width:34.320000pt;}
._37{width:65.569600pt;}
._25{width:169.611733pt;}
._2a{width:185.992533pt;}
._2f{width:187.968107pt;}
._19{width:189.588800pt;}
._28{width:191.031467pt;}
._22{width:194.582933pt;}
._1a{width:199.545600pt;}
._18{width:206.485867pt;}
._1d{width:226.878933pt;}
._2e{width:240.448000pt;}
._2c{width:244.746133pt;}
._27{width:246.308800pt;}
._23{width:264.852800pt;}
._2d{width:272.536533pt;}
._2b{width:276.070400pt;}
._1f{width:277.050667pt;}
._29{width:280.331733pt;}
._26{width:288.364267pt;}
._1b{width:289.258133pt;}
._24{width:293.638400pt;}
._1c{width:307.132800pt;}
._3a{width:313.539520pt;}
._20{width:330.941333pt;}
._21{width:336.113067pt;}
._1e{width:384.876800pt;}
._3b{width:518.209600pt;}
._3c{width:691.674667pt;}
._33{width:1084.821333pt;}
._32{width:1085.749333pt;}
._35{width:1088.709867pt;}
._39{width:1131.735829pt;}
._34{width:1134.353600pt;}
._36{width:1169.065600pt;}
._f{width:1675.166400pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.560000pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:50.433733pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:79.213200pt;}
.y4{bottom:86.333337pt;}
.y198{bottom:86.929067pt;}
.y190{bottom:101.347600pt;}
.ya5{bottom:102.929067pt;}
.y8a{bottom:102.929200pt;}
.y34{bottom:103.744000pt;}
.y33{bottom:117.077333pt;}
.y18f{bottom:117.214133pt;}
.ya4{bottom:118.929067pt;}
.y89{bottom:118.929200pt;}
.y21{bottom:123.790666pt;}
.yc2{bottom:125.228133pt;}
.y18e{bottom:133.080933pt;}
.ya3{bottom:134.929067pt;}
.y88{bottom:134.929200pt;}
.yc5{bottom:138.102933pt;}
.yc1{bottom:140.401867pt;}
.y156{bottom:141.022533pt;}
.y18d{bottom:148.947600pt;}
.y107{bottom:149.720800pt;}
.ya2{bottom:150.929067pt;}
.y32{bottom:150.929200pt;}
.yc4{bottom:154.102933pt;}
.yc0{bottom:155.575467pt;}
.y106{bottom:161.232000pt;}
.y18c{bottom:164.814267pt;}
.ya1{bottom:166.929067pt;}
.y31{bottom:166.929200pt;}
.ybf{bottom:167.086533pt;}
.yc3{bottom:170.102933pt;}
.y105{bottom:172.743067pt;}
.y18{bottom:175.052000pt;}
.y18b{bottom:180.680933pt;}
.ybe{bottom:182.260133pt;}
.ya0{bottom:182.929067pt;}
.y30{bottom:182.929200pt;}
.y104{bottom:184.254133pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y155{bottom:187.590533pt;}
.y103{bottom:195.765200pt;}
.y18a{bottom:196.547467pt;}
.ybd{bottom:197.433867pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y9f{bottom:198.929067pt;}
.y87{bottom:198.929200pt;}
.ye0{bottom:201.177333pt;}
.yd5{bottom:201.198667pt;}
.ye3{bottom:202.338267pt;}
.yc9{bottom:203.493467pt;}
.y102{bottom:207.276400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y189{bottom:212.414267pt;}
.ybc{bottom:212.607467pt;}
.yfb{bottom:213.032000pt;}
.y9e{bottom:214.929067pt;}
.y86{bottom:214.929200pt;}
.y101{bottom:218.787467pt;}
.ybb{bottom:227.781067pt;}
.y188{bottom:228.280933pt;}
.y100{bottom:230.298667pt;}
.y59{bottom:230.929067pt;}
.y29{bottom:230.929200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y154{bottom:235.590533pt;}
.yff{bottom:241.809733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yba{bottom:242.954800pt;}
.y187{bottom:244.147600pt;}
.y58{bottom:246.929067pt;}
.y28{bottom:246.929200pt;}
.yfe{bottom:253.320800pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb9{bottom:254.465867pt;}
.y186{bottom:260.014267pt;}
.y57{bottom:262.929067pt;}
.y27{bottom:262.929200pt;}
.yfd{bottom:264.832000pt;}
.yb8{bottom:269.639467pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y185{bottom:275.880800pt;}
.yfc{bottom:276.343067pt;}
.y56{bottom:278.929067pt;}
.y26{bottom:278.929200pt;}
.yb7{bottom:286.626000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y184{bottom:291.747600pt;}
.y55{bottom:294.929067pt;}
.y25{bottom:294.929200pt;}
.yb6{bottom:303.612533pt;}
.yf8{bottom:303.965333pt;}
.y183{bottom:307.614267pt;}
.yf{bottom:309.452000pt;}
.yfa{bottom:309.720933pt;}
.y54{bottom:310.929067pt;}
.y24{bottom:310.929200pt;}
.yf7{bottom:315.476533pt;}
.yb5{bottom:318.786267pt;}
.yf4{bottom:321.232000pt;}
.y182{bottom:323.480933pt;}
.y53{bottom:326.929067pt;}
.y23{bottom:326.929200pt;}
.yf6{bottom:326.987600pt;}
.y153{bottom:331.590533pt;}
.yf9{bottom:332.743200pt;}
.yb4{bottom:333.959867pt;}
.yf5{bottom:338.498667pt;}
.y181{bottom:339.347600pt;}
.y9d{bottom:342.929067pt;}
.y85{bottom:342.929200pt;}
.ye{bottom:343.809333pt;}
.yb3{bottom:345.470933pt;}
.y22{bottom:349.022533pt;}
.y141{bottom:350.705600pt;}
.y180{bottom:355.214267pt;}
.y9c{bottom:358.929067pt;}
.y84{bottom:358.929200pt;}
.yf3{bottom:360.485733pt;}
.yb2{bottom:360.644667pt;}
.y140{bottom:362.216800pt;}
.yd{bottom:362.706666pt;}
.y152{bottom:363.590667pt;}
.y13d{bottom:367.972267pt;}
.y17f{bottom:371.080933pt;}
.yf2{bottom:371.996933pt;}
.y13f{bottom:373.727867pt;}
.y4d{bottom:374.929067pt;}
.y83{bottom:374.929200pt;}
.yb1{bottom:375.818267pt;}
.yf1{bottom:383.508000pt;}
.y13e{bottom:385.239067pt;}
.y17e{bottom:386.947600pt;}
.yb0{bottom:387.329333pt;}
.yed{bottom:389.263600pt;}
.y4c{bottom:390.929067pt;}
.y82{bottom:390.929200pt;}
.yf0{bottom:395.019067pt;}
.yaf{bottom:402.502933pt;}
.y17d{bottom:402.814267pt;}
.yef{bottom:406.530267pt;}
.y9b{bottom:406.929067pt;}
.y81{bottom:406.929200pt;}
.y13c{bottom:409.962933pt;}
.yae{bottom:414.014133pt;}
.yee{bottom:418.041333pt;}
.y17c{bottom:418.680933pt;}
.y13b{bottom:421.474000pt;}
.y4b{bottom:422.929067pt;}
.y80{bottom:422.929200pt;}
.y138{bottom:427.229600pt;}
.yad{bottom:429.187733pt;}
.y13a{bottom:432.985200pt;}
.y17b{bottom:434.547600pt;}
.y4a{bottom:438.929067pt;}
.y7f{bottom:438.929200pt;}
.yec{bottom:443.141200pt;}
.yac{bottom:444.361333pt;}
.y139{bottom:444.496267pt;}
.yc{bottom:446.990669pt;}
.yeb{bottom:448.896667pt;}
.y17a{bottom:450.414267pt;}
.y49{bottom:454.929067pt;}
.y7e{bottom:454.929200pt;}
.yab{bottom:459.534933pt;}
.yb{bottom:462.990669pt;}
.y133{bottom:464.445067pt;}
.y179{bottom:466.280933pt;}
.y137{bottom:470.200667pt;}
.y48{bottom:470.929067pt;}
.y7d{bottom:470.929200pt;}
.yaa{bottom:475.080133pt;}
.y131{bottom:475.956133pt;}
.yea{bottom:475.992667pt;}
.ya{bottom:478.990666pt;}
.y136{bottom:481.711733pt;}
.y178{bottom:482.147600pt;}
.y47{bottom:486.929067pt;}
.y7c{bottom:486.929200pt;}
.y12f{bottom:487.467333pt;}
.ya9{bottom:490.996800pt;}
.y135{bottom:493.222800pt;}
.y9{bottom:494.990666pt;}
.y177{bottom:498.014267pt;}
.y130{bottom:498.978400pt;}
.y46{bottom:502.929067pt;}
.y7b{bottom:502.929200pt;}
.y134{bottom:504.733867pt;}
.ya8{bottom:507.992667pt;}
.y132{bottom:510.489467pt;}
.y176{bottom:513.880933pt;}
.y45{bottom:518.929067pt;}
.y7a{bottom:518.929200pt;}
.y12c{bottom:525.663200pt;}
.y175{bottom:529.747600pt;}
.y12e{bottom:531.418667pt;}
.y44{bottom:534.929067pt;}
.y79{bottom:534.929200pt;}
.y12b{bottom:537.174267pt;}
.y128{bottom:542.929867pt;}
.y174{bottom:545.614267pt;}
.y12a{bottom:548.685333pt;}
.y43{bottom:550.929067pt;}
.y78{bottom:550.929200pt;}
.y12d{bottom:554.440933pt;}
.y197{bottom:554.751467pt;}
.y129{bottom:560.196533pt;}
.y173{bottom:561.480933pt;}
.y42{bottom:566.929067pt;}
.y77{bottom:566.929200pt;}
.y196{bottom:569.151467pt;}
.y8{bottom:573.786667pt;}
.y172{bottom:577.347600pt;}
.y123{bottom:577.832000pt;}
.y41{bottom:582.929067pt;}
.y76{bottom:582.929200pt;}
.y195{bottom:583.551467pt;}
.y127{bottom:583.587467pt;}
.y121{bottom:589.343067pt;}
.y7{bottom:592.685334pt;}
.y171{bottom:593.214267pt;}
.y126{bottom:595.098667pt;}
.y194{bottom:597.951467pt;}
.y40{bottom:598.929067pt;}
.y75{bottom:598.929200pt;}
.y11f{bottom:600.854133pt;}
.y125{bottom:606.609733pt;}
.y170{bottom:609.080933pt;}
.y120{bottom:612.365333pt;}
.y193{bottom:614.241200pt;}
.y3f{bottom:614.929067pt;}
.y74{bottom:614.929200pt;}
.y124{bottom:618.120800pt;}
.y122{bottom:623.876400pt;}
.y16f{bottom:624.947600pt;}
.y3e{bottom:630.929067pt;}
.y73{bottom:630.929200pt;}
.y16e{bottom:640.814267pt;}
.y11e{bottom:643.973733pt;}
.y6{bottom:645.598667pt;}
.y3d{bottom:646.929067pt;}
.y72{bottom:646.929200pt;}
.y192{bottom:647.841200pt;}
.y11b{bottom:655.484800pt;}
.y16d{bottom:656.680933pt;}
.y3c{bottom:662.929067pt;}
.y71{bottom:662.929200pt;}
.yc6{bottom:666.102933pt;}
.y11a{bottom:666.995867pt;}
.y191{bottom:667.041200pt;}
.y3{bottom:668.977329pt;}
.y16c{bottom:672.547600pt;}
.y11d{bottom:678.507067pt;}
.y3b{bottom:678.929067pt;}
.y70{bottom:678.929200pt;}
.y16b{bottom:688.414267pt;}
.y11c{bottom:690.018133pt;}
.y3a{bottom:694.929067pt;}
.y6f{bottom:694.929200pt;}
.yc8{bottom:703.945333pt;}
.y16a{bottom:704.280933pt;}
.ye2{bottom:708.933733pt;}
.y39{bottom:710.929067pt;}
.y6e{bottom:710.929200pt;}
.y119{bottom:711.038533pt;}
.ye9{bottom:716.565467pt;}
.y169{bottom:720.147600pt;}
.y38{bottom:726.929067pt;}
.y6d{bottom:726.929200pt;}
.ye1{bottom:731.062933pt;}
.y118{bottom:731.992800pt;}
.y168{bottom:736.014267pt;}
.ye8{bottom:738.898800pt;}
.ycf{bottom:741.585920pt;}
.yd6{bottom:741.586000pt;}
.y37{bottom:742.929067pt;}
.y6c{bottom:742.929200pt;}
.ya7{bottom:747.590533pt;}
.y167{bottom:751.880800pt;}
.yd7{bottom:757.939680pt;}
.y36{bottom:758.929067pt;}
.y6b{bottom:758.929200pt;}
.ye7{bottom:761.232133pt;}
.y166{bottom:767.747600pt;}
.yd0{bottom:768.845600pt;}
.yd8{bottom:774.293360pt;}
.y9a{bottom:774.929067pt;}
.y6a{bottom:774.929200pt;}
.y2{bottom:781.661334pt;}
.ye6{bottom:783.565467pt;}
.y165{bottom:783.614267pt;}
.ycd{bottom:788.394667pt;}
.yd9{bottom:790.647040pt;}
.y99{bottom:790.929067pt;}
.y69{bottom:790.929200pt;}
.yd1{bottom:796.105280pt;}
.y2f{bottom:797.551467pt;}
.y164{bottom:799.480933pt;}
.ye5{bottom:805.898800pt;}
.y98{bottom:806.929067pt;}
.y68{bottom:806.929200pt;}
.yda{bottom:807.000720pt;}
.y114{bottom:810.889867pt;}
.y2e{bottom:811.951467pt;}
.y116{bottom:812.051200pt;}
.y163{bottom:815.347600pt;}
.y97{bottom:822.929067pt;}
.y67{bottom:822.929200pt;}
.ydb{bottom:823.354400pt;}
.yd2{bottom:823.364960pt;}
.y113{bottom:825.785867pt;}
.y2d{bottom:826.351467pt;}
.y143{bottom:826.717867pt;}
.y115{bottom:826.947200pt;}
.ye4{bottom:827.047867pt;}
.y150{bottom:827.301867pt;}
.y162{bottom:831.214133pt;}
.y144{bottom:838.216533pt;}
.y96{bottom:838.929067pt;}
.y66{bottom:838.929200pt;}
.ydc{bottom:839.708080pt;}
.y2c{bottom:840.751600pt;}
.ycc{bottom:842.091600pt;}
.y112{bottom:845.677360pt;}
.y14f{bottom:845.808533pt;}
.y161{bottom:847.080933pt;}
.y117{bottom:849.323120pt;}
.yd3{bottom:850.624640pt;}
.y95{bottom:854.929067pt;}
.y65{bottom:854.929200pt;}
.yce{bottom:856.036667pt;}
.ydd{bottom:856.061760pt;}
.y2b{bottom:857.041200pt;}
.y1{bottom:859.312000pt;}
.y10d{bottom:861.786320pt;}
.y160{bottom:862.947600pt;}
.y14e{bottom:864.176533pt;}
.y145{bottom:870.312533pt;}
.y94{bottom:870.929067pt;}
.y64{bottom:870.929200pt;}
.y10a{bottom:872.064560pt;}
.yde{bottom:872.415440pt;}
.ycb{bottom:873.692667pt;}
.yd4{bottom:877.884320pt;}
.y15f{bottom:878.814267pt;}
.y10b{bottom:880.374400pt;}
.y14d{bottom:882.949867pt;}
.y93{bottom:886.929067pt;}
.y63{bottom:886.929200pt;}
.ydf{bottom:888.769120pt;}
.y2a{bottom:890.641333pt;}
.y10e{bottom:892.759360pt;}
.y15e{bottom:894.680933pt;}
.yc7{bottom:896.586000pt;}
.y146{bottom:898.365867pt;}
.yca{bottom:899.086400pt;}
.y14c{bottom:901.317867pt;}
.y109{bottom:902.452400pt;}
.y92{bottom:902.929067pt;}
.y62{bottom:902.929200pt;}
.y142{bottom:904.221867pt;}
.y15d{bottom:910.547467pt;}
.y91{bottom:918.929067pt;}
.y61{bottom:918.929200pt;}
.y147{bottom:920.061867pt;}
.y14b{bottom:920.155200pt;}
.y10f{bottom:923.732400pt;}
.y10c{bottom:925.147520pt;}
.y15c{bottom:926.414267pt;}
.y90{bottom:934.929067pt;}
.y52{bottom:934.929200pt;}
.y14a{bottom:938.523200pt;}
.y15b{bottom:942.280933pt;}
.y148{bottom:947.816533pt;}
.y8f{bottom:950.929067pt;}
.y60{bottom:950.929200pt;}
.y110{bottom:954.705440pt;}
.y15a{bottom:958.147600pt;}
.y108{bottom:958.791200pt;}
.y8e{bottom:966.929067pt;}
.y5f{bottom:966.929200pt;}
.y51{bottom:967.480000pt;}
.y151{bottom:973.132533pt;}
.y159{bottom:974.014267pt;}
.y8d{bottom:982.929067pt;}
.y5e{bottom:982.929200pt;}
.y50{bottom:984.813333pt;}
.y149{bottom:985.629867pt;}
.y111{bottom:985.678480pt;}
.y158{bottom:989.880800pt;}
.ya6{bottom:998.929067pt;}
.y5d{bottom:998.929200pt;}
.y4f{bottom:1002.146667pt;}
.y8c{bottom:1005.022400pt;}
.y157{bottom:1005.747600pt;}
.y4e{bottom:1025.824667pt;}
.y8b{bottom:1044.684267pt;}
.y5c{bottom:1045.660133pt;}
.y5a{bottom:1054.386400pt;}
.h7{height:28.560000pt;}
.h12{height:30.720000pt;}
.h1b{height:32.564219pt;}
.hf{height:32.645833pt;}
.h13{height:34.560000pt;}
.hd{height:35.029333pt;}
.h14{height:36.726562pt;}
.h16{height:36.773438pt;}
.h11{height:38.400000pt;}
.h15{height:38.453333pt;}
.hc{height:39.408000pt;}
.h25{height:39.629844pt;}
.he{height:39.729167pt;}
.h18{height:40.354167pt;}
.h6{height:40.800000pt;}
.h23{height:41.757179pt;}
.h3{height:42.840000pt;}
.h9{height:43.786667pt;}
.ha{height:44.695312pt;}
.h1e{height:45.081019pt;}
.h17{height:45.398438pt;}
.h2{height:48.960000pt;}
.h22{height:50.907579pt;}
.hb{height:52.544000pt;}
.h1a{height:62.751033pt;}
.h19{height:62.751567pt;}
.h20{height:63.376033pt;}
.h1f{height:63.376567pt;}
.h1d{height:67.037819pt;}
.h5{height:69.360000pt;}
.h27{height:72.837833pt;}
.h26{height:85.773967pt;}
.h10{height:99.120000pt;}
.h4{height:105.826671pt;}
.h24{height:119.258939pt;}
.h21{height:128.707259pt;}
.h1c{height:213.093333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:586.002667pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:8.648400pt;}
.x10{left:67.710533pt;}
.x7d{left:68.763867pt;}
.x5{left:75.590533pt;}
.x1b{left:82.012000pt;}
.x1f{left:87.355733pt;}
.x52{left:88.557467pt;}
.x14{left:89.493867pt;}
.x1{left:90.706667pt;}
.x17{left:93.454667pt;}
.x2{left:94.486667pt;}
.x15{left:96.324533pt;}
.xe{left:98.267733pt;}
.x1c{left:99.222933pt;}
.x51{left:100.764400pt;}
.x7e{left:102.047200pt;}
.x12{left:103.668267pt;}
.x48{left:105.368400pt;}
.x1a{left:108.540667pt;}
.x19{left:110.433867pt;}
.x3b{left:112.362400pt;}
.x20{left:113.829733pt;}
.x1e{left:114.746400pt;}
.xf{left:117.067867pt;}
.x2d{left:118.813147pt;}
.x68{left:120.563067pt;}
.x62{left:123.016133pt;}
.x2c{left:124.909867pt;}
.x6f{left:127.024000pt;}
.x18{left:128.147467pt;}
.x23{left:131.186267pt;}
.x3c{left:133.549867pt;}
.x53{left:135.823467pt;}
.x16{left:138.863600pt;}
.x49{left:140.863440pt;}
.x4c{left:145.502480pt;}
.x79{left:152.796000pt;}
.x24{left:157.309867pt;}
.x50{left:159.138533pt;}
.x47{left:160.418800pt;}
.x2f{left:162.607333pt;}
.x78{left:166.918667pt;}
.x4a{left:169.995760pt;}
.x28{left:176.119600pt;}
.x8{left:179.457333pt;}
.x4{left:180.874667pt;}
.x27{left:186.909467pt;}
.x7a{left:189.393333pt;}
.x35{left:190.436667pt;}
.x40{left:193.561733pt;}
.x41{left:194.718000pt;}
.x43{left:196.522667pt;}
.x11{left:199.023200pt;}
.x45{left:199.970533pt;}
.x42{left:200.918400pt;}
.x33{left:203.092933pt;}
.x38{left:205.533067pt;}
.x32{left:206.590267pt;}
.x36{left:208.210800pt;}
.x34{left:209.374133pt;}
.x6{left:211.259333pt;}
.x37{left:212.218000pt;}
.x3e{left:213.595600pt;}
.x7{left:214.624000pt;}
.x70{left:216.949067pt;}
.x54{left:219.532400pt;}
.x44{left:221.475733pt;}
.x73{left:222.485467pt;}
.x57{left:223.657333pt;}
.x55{left:224.779733pt;}
.x6a{left:227.074000pt;}
.x56{left:228.451600pt;}
.x63{left:229.920400pt;}
.x5b{left:231.087067pt;}
.x5c{left:233.787600pt;}
.x64{left:236.120933pt;}
.x65{left:239.553200pt;}
.x39{left:244.233600pt;}
.x69{left:245.615733pt;}
.x3d{left:257.238800pt;}
.x30{left:262.559733pt;}
.x77{left:272.294667pt;}
.x6b{left:278.201600pt;}
.x5d{left:279.105200pt;}
.x3a{left:288.210133pt;}
.x4f{left:289.789467pt;}
.x7b{left:330.364000pt;}
.x46{left:337.921067pt;}
.x1d{left:361.230533pt;}
.x25{left:365.089733pt;}
.x3f{left:377.829867pt;}
.x13{left:378.873867pt;}
.x3{left:404.408000pt;}
.x9{left:406.299200pt;}
.x4d{left:407.255067pt;}
.xa{left:428.976400pt;}
.x4e{left:444.048187pt;}
.x22{left:472.383467pt;}
.x21{left:473.432267pt;}
.x29{left:479.596800pt;}
.x58{left:485.416533pt;}
.x5a{left:487.111867pt;}
.x72{left:488.385200pt;}
.x67{left:489.385200pt;}
.x60{left:491.098800pt;}
.x5e{left:492.867067pt;}
.x66{left:493.757600pt;}
.x6d{left:496.158667pt;}
.x5f{left:497.156133pt;}
.x71{left:499.752400pt;}
.x6c{left:501.419067pt;}
.x75{left:503.791467pt;}
.xc{left:508.097600pt;}
.x6e{left:511.106667pt;}
.x59{left:512.583200pt;}
.x74{left:516.674267pt;}
.x61{left:520.963333pt;}
.x2b{left:558.151200pt;}
.x76{left:565.497200pt;}
.x26{left:573.110533pt;}
.xb{left:622.387067pt;}
.x31{left:634.749600pt;}
.x2a{left:662.221867pt;}
.x4b{left:677.268400pt;}
.xd{left:710.070267pt;}
.x7f{left:710.970400pt;}
.x7c{left:712.357067pt;}
}




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