
    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_2222db8eb69b372a089a63f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_40bac91e54ef15184b4f7299.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5e810c7e7d1d2cba47e8c357.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_56fe62b95e49680395e3a1b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_d035e128dbce3f37b3dc612f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_d66008eedb2ac693f4ab6332.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_7c73ef63b33b5e7a80aca8ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_6b4f78f5e2ea2064b29099f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_b54d1535dbfa4a853109cb89.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_fd305565b32b2b353c492271.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_986aa9558bad8c738efd141f.woff2')format("woff");}.fff{font-family:fff;line-height:1.049805;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_7da336e56d3921056b75122b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.049805;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_52fdeb942ebda27e32d52086.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_bc6c94e0c17e37008a8f8ff1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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.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);}
.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);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.986000px;}
.lsb{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.223200px;}
.ls9{letter-spacing:-0.127200px;}
.ls14{letter-spacing:-0.091200px;}
.ls19{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.087600px;}
.ls10{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls1a{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws18{word-spacing:-19.038240px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws2f{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.wsd{word-spacing:-12.420000px;}
.ws1b{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
.ws2c{word-spacing:8.676000px;}
.ws21{word-spacing:9.576000px;}
.ws2b{word-spacing:14.286000px;}
.ws20{word-spacing:21.486000px;}
.ws22{word-spacing:22.440000px;}
.ws27{word-spacing:27.456000px;}
.ws2e{word-spacing:36.054000px;}
.ws2a{word-spacing:39.348000px;}
.ws1f{word-spacing:41.148000px;}
.ws1c{word-spacing:41.856000px;}
.ws25{word-spacing:49.944000px;}
.ws24{word-spacing:50.574000px;}
.ws28{word-spacing:58.986000px;}
.ws29{word-spacing:60.954000px;}
.ws26{word-spacing:70.206000px;}
.ws1d{word-spacing:73.602000px;}
.ws1e{word-spacing:75.534000px;}
.ws2d{word-spacing:80.940000px;}
.ws23{word-spacing:88.041792px;}
.ws17{word-spacing:130.374000px;}
.ws1a{word-spacing:130.415040px;}
.ws15{word-spacing:131.975040px;}
.ws11{word-spacing:133.374000px;}
.ws13{word-spacing:136.434000px;}
.ws19{word-spacing:143.912448px;}
.ws16{word-spacing:144.018000px;}
.ws14{word-spacing:145.472448px;}
.ws10{word-spacing:147.198000px;}
.ws12{word-spacing:150.198000px;}
._37{margin-left:-7.872960px;}
._36{margin-left:-6.810960px;}
._4{margin-left:-5.557680px;}
._27{margin-left:-4.482000px;}
._2{margin-left:-3.216240px;}
._3{margin-left:-2.190240px;}
._0{margin-left:-1.080000px;}
._1{width:1.236000px;}
._5{width:2.648400px;}
._b{width:3.843600px;}
._10{width:4.958880px;}
._9{width:6.054720px;}
._f{width:7.384800px;}
._e{width:8.784720px;}
._d{width:10.458000px;}
._12{width:11.926800px;}
._26{width:13.087440px;}
._6{width:16.998240px;}
._25{width:18.406080px;}
._15{width:19.422000px;}
._7{width:20.516640px;}
._8{width:21.896880px;}
._c{width:23.384640px;}
._21{width:24.696240px;}
._35{width:26.485440px;}
._2c{width:27.508560px;}
._2d{width:28.738080px;}
._a{width:33.723600px;}
._2e{width:35.238000px;}
._1a{width:38.088960px;}
._11{width:39.102000px;}
._33{width:48.074400px;}
._34{width:49.334400px;}
._1b{width:57.508080px;}
._32{width:62.676000px;}
._22{width:66.871440px;}
._2f{width:69.522000px;}
._31{width:76.458000px;}
._18{width:80.436960px;}
._30{width:97.062000px;}
._23{width:101.252400px;}
._24{width:119.240160px;}
._1f{width:122.926320px;}
._16{width:126.889440px;}
._19{width:128.782800px;}
._2b{width:169.902000px;}
._2a{width:171.388992px;}
._20{width:172.885680px;}
._29{width:175.962000px;}
._1e{width:283.501440px;}
._14{width:315.174240px;}
._28{width:327.305520px;}
._1c{width:396.723840px;}
._17{width:664.531200px;}
._13{width:801.740160px;}
._1d{width:969.546240px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y5c{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4a{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.y18{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y184{bottom:17.670000px;}
.y194{bottom:17.745000px;}
.y2{bottom:20.196000px;}
.y6a{bottom:20.340000px;}
.y44{bottom:20.520000px;}
.y67{bottom:20.565000px;}
.yf9{bottom:21.240000px;}
.y100{bottom:21.270000px;}
.y12e{bottom:22.140000px;}
.y146{bottom:22.245000px;}
.y152{bottom:22.290000px;}
.y49{bottom:22.320000px;}
.y16{bottom:23.760000px;}
.y47{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y15{bottom:36.900000px;}
.y69{bottom:37.620000px;}
.y43{bottom:37.800000px;}
.y66{bottom:37.845000px;}
.y12d{bottom:43.125000px;}
.y144{bottom:43.230000px;}
.y120{bottom:43.275000px;}
.ya{bottom:46.620000px;}
.y192{bottom:51.555000px;}
.y182{bottom:51.660000px;}
.y1{bottom:53.820000px;}
.y61{bottom:54.900000px;}
.y65{bottom:54.945000px;}
.y42{bottom:55.080000px;}
.y14{bottom:55.260000px;}
.y124{bottom:60.660000px;}
.y13a{bottom:60.810000px;}
.y116{bottom:60.840000px;}
.y60{bottom:72.180000px;}
.y64{bottom:72.225000px;}
.y41{bottom:72.360000px;}
.y191{bottom:73.080000px;}
.y181{bottom:73.185000px;}
.y13{bottom:73.440000px;}
.y9{bottom:73.470000px;}
.y162{bottom:80.610000px;}
.y149{bottom:83.055000px;}
.y13b{bottom:83.415000px;}
.y125{bottom:83.700000px;}
.y117{bottom:83.880000px;}
.y161{bottom:86.430000px;}
.y15f{bottom:86.970000px;}
.y5f{bottom:89.460000px;}
.y63{bottom:89.505000px;}
.y40{bottom:89.640000px;}
.y15c{bottom:90.465000px;}
.y156{bottom:90.510000px;}
.y190{bottom:90.975000px;}
.y180{bottom:91.080000px;}
.y12{bottom:92.520000px;}
.y8{bottom:93.090000px;}
.y15b{bottom:93.495000px;}
.yfd{bottom:96.516000px;}
.y91{bottom:100.296000px;}
.y163{bottom:100.365000px;}
.y1a5{bottom:104.796000px;}
.y14a{bottom:105.300000px;}
.yc7{bottom:105.516000px;}
.y13c{bottom:106.050000px;}
.y3f{bottom:106.740000px;}
.y118{bottom:106.920000px;}
.y18f{bottom:107.460000px;}
.y17f{bottom:107.565000px;}
.y7{bottom:111.450000px;}
.y58{bottom:112.536000px;}
.yfb{bottom:114.516000px;}
.y151{bottom:114.915000px;}
.y138{bottom:115.956000px;}
.y90{bottom:117.576000px;}
.y11{bottom:118.260000px;}
.y15d{bottom:120.135000px;}
.y157{bottom:120.165000px;}
.y1a4{bottom:122.076000px;}
.yc6{bottom:122.796000px;}
.y18e{bottom:123.945000px;}
.y3e{bottom:124.020000px;}
.y17e{bottom:124.050000px;}
.y14b{bottom:127.545000px;}
.y168{bottom:127.695000px;}
.y13d{bottom:128.670000px;}
.y172{bottom:128.736000px;}
.y57{bottom:129.636000px;}
.y126{bottom:129.780000px;}
.y119{bottom:129.930000px;}
.y121{bottom:132.090000px;}
.yfc{bottom:132.516000px;}
.y137{bottom:133.236000px;}
.y8f{bottom:134.856000px;}
.y145{bottom:136.335000px;}
.y186{bottom:136.515000px;}
.y173{bottom:136.620000px;}
.y1a3{bottom:139.356000px;}
.y164{bottom:139.935000px;}
.yc5{bottom:140.076000px;}
.y3d{bottom:141.300000px;}
.y10{bottom:142.560000px;}
.y187{bottom:145.770000px;}
.y171{bottom:146.016000px;}
.y56{bottom:146.916000px;}
.y136{bottom:147.276000px;}
.y155{bottom:147.420000px;}
.y174{bottom:148.530000px;}
.y14c{bottom:149.790000px;}
.y158{bottom:149.835000px;}
.yf8{bottom:150.510000px;}
.y13e{bottom:151.305000px;}
.y8e{bottom:152.130000px;}
.y127{bottom:152.790000px;}
.y11a{bottom:152.970000px;}
.y188{bottom:155.010000px;}
.y1a2{bottom:156.630000px;}
.yc4{bottom:157.350000px;}
.y3c{bottom:158.580000px;}
.y165{bottom:159.690000px;}
.y175{bottom:160.455000px;}
.y170{bottom:163.290000px;}
.y55{bottom:164.190000px;}
.y189{bottom:164.265000px;}
.y2a{bottom:167.400000px;}
.yfa{bottom:168.510000px;}
.y8d{bottom:169.410000px;}
.y14d{bottom:172.050000px;}
.y176{bottom:172.365000px;}
.y18a{bottom:173.520000px;}
.y13f{bottom:173.910000px;}
.yc3{bottom:174.630000px;}
.y128{bottom:175.830000px;}
.y3b{bottom:175.860000px;}
.y11b{bottom:176.010000px;}
.y15e{bottom:179.460000px;}
.y159{bottom:179.490000px;}
.y16f{bottom:180.570000px;}
.y54{bottom:181.470000px;}
.y29{bottom:182.700000px;}
.y18b{bottom:182.775000px;}
.y177{bottom:184.290000px;}
.y8c{bottom:186.510000px;}
.y114{bottom:187.950000px;}
.y1a1{bottom:191.010000px;}
.yc2{bottom:191.730000px;}
.y18c{bottom:192.030000px;}
.y3a{bottom:193.140000px;}
.y14e{bottom:194.295000px;}
.y178{bottom:196.170000px;}
.y140{bottom:196.530000px;}
.y16e{bottom:197.670000px;}
.y53{bottom:198.750000px;}
.y129{bottom:198.870000px;}
.y11c{bottom:199.050000px;}
.y166{bottom:199.260000px;}
.y28{bottom:200.340000px;}
.y18d{bottom:201.270000px;}
.y8b{bottom:203.790000px;}
.y113{bottom:205.230000px;}
.yf7{bottom:207.750000px;}
.y179{bottom:208.080000px;}
.y1a0{bottom:208.290000px;}
.yc1{bottom:209.010000px;}
.y15a{bottom:209.130000px;}
.y39{bottom:210.240000px;}
.y16d{bottom:214.950000px;}
.y52{bottom:215.850000px;}
.y14f{bottom:216.540000px;}
.y27{bottom:217.650000px;}
.y167{bottom:219.030000px;}
.y141{bottom:219.165000px;}
.y112{bottom:219.270000px;}
.y123{bottom:219.600000px;}
.y17a{bottom:219.990000px;}
.y8a{bottom:221.070000px;}
.y12a{bottom:221.910000px;}
.y11d{bottom:222.045000px;}
.yf6{bottom:225.030000px;}
.y19f{bottom:225.570000px;}
.yc0{bottom:226.290000px;}
.y38{bottom:227.550000px;}
.y17b{bottom:231.915000px;}
.y16c{bottom:232.230000px;}
.y51{bottom:233.130000px;}
.y26{bottom:234.750000px;}
.y89{bottom:238.350000px;}
.y150{bottom:238.785000px;}
.y193{bottom:240.090000px;}
.y142{bottom:241.770000px;}
.yf5{bottom:242.310000px;}
.y19e{bottom:242.850000px;}
.ybf{bottom:243.570000px;}
.y17c{bottom:243.825000px;}
.y37{bottom:244.830000px;}
.y12b{bottom:244.905000px;}
.y11e{bottom:245.085000px;}
.y16b{bottom:246.270000px;}
.y50{bottom:250.410000px;}
.y25{bottom:252.570000px;}
.y88{bottom:255.630000px;}
.y17d{bottom:255.705000px;}
.yf4{bottom:257.070000px;}
.y19d{bottom:260.130000px;}
.ybe{bottom:260.850000px;}
.y36{bottom:262.110000px;}
.y143{bottom:264.420000px;}
.y160{bottom:266.865000px;}
.y154{bottom:266.910000px;}
.y4f{bottom:267.690000px;}
.y12c{bottom:267.945000px;}
.y11f{bottom:268.125000px;}
.y24{bottom:270.030000px;}
.y87{bottom:272.910000px;}
.ybd{bottom:274.890000px;}
.yf3{bottom:275.070000px;}
.y19c{bottom:277.410000px;}
.y35{bottom:279.390000px;}
.y4e{bottom:284.970000px;}
.y23{bottom:287.490000px;}
.y86{bottom:290.010000px;}
.y147{bottom:292.605000px;}
.y153{bottom:292.650000px;}
.y19b{bottom:294.510000px;}
.y12f{bottom:295.380000px;}
.y183{bottom:295.485000px;}
.y122{bottom:295.560000px;}
.y34{bottom:296.490000px;}
.y4d{bottom:302.250000px;}
.y22{bottom:304.770000px;}
.y85{bottom:307.290000px;}
.yf2{bottom:310.350000px;}
.y19a{bottom:311.790000px;}
.y33{bottom:313.770000px;}
.y4c{bottom:319.350000px;}
.y21{bottom:322.230000px;}
.y84{bottom:324.570000px;}
.yf1{bottom:328.170000px;}
.y199{bottom:329.070000px;}
.y32{bottom:331.050000px;}
.y4b{bottom:337.395000px;}
.y20{bottom:339.510000px;}
.y83{bottom:341.895000px;}
.y198{bottom:346.395000px;}
.y31{bottom:348.330000px;}
.yf0{bottom:349.455000px;}
.y46{bottom:351.795000px;}
.y1f{bottom:356.970000px;}
.y82{bottom:359.175000px;}
.y197{bottom:363.675000px;}
.y30{bottom:365.610000px;}
.yef{bottom:366.735000px;}
.y1e{bottom:374.430000px;}
.y81{bottom:376.275000px;}
.y196{bottom:380.775000px;}
.y2f{bottom:382.890000px;}
.yee{bottom:384.015000px;}
.y19{bottom:388.335000px;}
.y1d{bottom:391.710000px;}
.y80{bottom:393.555000px;}
.y195{bottom:398.055000px;}
.yed{bottom:398.775000px;}
.y2e{bottom:399.990000px;}
.y1c{bottom:409.350000px;}
.y7f{bottom:410.835000px;}
.ybc{bottom:415.335000px;}
.yec{bottom:416.775000px;}
.y2d{bottom:417.270000px;}
.y7e{bottom:428.115000px;}
.ybb{bottom:432.615000px;}
.y2c{bottom:434.550000px;}
.yeb{bottom:434.775000px;}
.y1b{bottom:436.710000px;}
.y7d{bottom:445.395000px;}
.yba{bottom:449.895000px;}
.y2b{bottom:451.830000px;}
.yea{bottom:452.775000px;}
.y1a{bottom:454.530000px;}
.y7c{bottom:462.675000px;}
.yb9{bottom:467.175000px;}
.ye9{bottom:470.775000px;}
.y135{bottom:474.555000px;}
.y7b{bottom:479.775000px;}
.yb8{bottom:484.275000px;}
.y134{bottom:491.835000px;}
.ye8{bottom:492.015000px;}
.y7a{bottom:497.055000px;}
.yb7{bottom:501.555000px;}
.y133{bottom:505.875000px;}
.y148{bottom:505.980000px;}
.ye7{bottom:509.295000px;}
.y79{bottom:514.335000px;}
.yb6{bottom:518.835000px;}
.ye6{bottom:526.575000px;}
.y78{bottom:531.615000px;}
.yb5{bottom:536.115000px;}
.ye5{bottom:541.335000px;}
.y111{bottom:546.555000px;}
.y16a{bottom:547.275000px;}
.y77{bottom:548.895000px;}
.yb4{bottom:553.395000px;}
.ye4{bottom:559.335000px;}
.y169{bottom:561.315000px;}
.y185{bottom:561.420000px;}
.y110{bottom:563.835000px;}
.y76{bottom:566.175000px;}
.yb3{bottom:570.675000px;}
.y10f{bottom:577.875000px;}
.y115{bottom:577.980000px;}
.ye3{bottom:580.575000px;}
.y75{bottom:583.275000px;}
.yb2{bottom:587.775000px;}
.ye2{bottom:597.855000px;}
.y74{bottom:600.555000px;}
.yb1{bottom:605.085000px;}
.ye1{bottom:612.645000px;}
.y73{bottom:617.865000px;}
.yb0{bottom:622.365000px;}
.ye0{bottom:630.645000px;}
.y72{bottom:635.145000px;}
.yaf{bottom:639.645000px;}
.ydf{bottom:648.645000px;}
.y71{bottom:652.425000px;}
.yae{bottom:656.925000px;}
.yde{bottom:666.645000px;}
.y70{bottom:669.525000px;}
.yad{bottom:674.025000px;}
.ydd{bottom:684.465000px;}
.y6f{bottom:686.805000px;}
.yac{bottom:691.305000px;}
.ydc{bottom:702.465000px;}
.y6e{bottom:704.085000px;}
.yab{bottom:708.585000px;}
.ydb{bottom:720.465000px;}
.y6d{bottom:721.365000px;}
.yaa{bottom:725.865000px;}
.y6c{bottom:738.645000px;}
.yda{bottom:741.705000px;}
.ya9{bottom:743.145000px;}
.y6b{bottom:755.925000px;}
.yd9{bottom:758.985000px;}
.ya8{bottom:760.425000px;}
.y68{bottom:770.685000px;}
.yd8{bottom:776.265000px;}
.ya7{bottom:777.525000px;}
.yd7{bottom:793.545000px;}
.ya6{bottom:794.805000px;}
.yd6{bottom:810.825000px;}
.ya5{bottom:812.085000px;}
.yd5{bottom:828.105000px;}
.ya4{bottom:829.365000px;}
.y132{bottom:833.145000px;}
.yd4{bottom:845.205000px;}
.ya3{bottom:846.645000px;}
.y131{bottom:850.245000px;}
.y17{bottom:854.205000px;}
.y62{bottom:857.625000px;}
.yd3{bottom:862.485000px;}
.ya2{bottom:863.925000px;}
.y130{bottom:864.285000px;}
.y139{bottom:864.540000px;}
.yd2{bottom:879.810000px;}
.ya1{bottom:881.070000px;}
.yf{bottom:883.770000px;}
.yd1{bottom:897.090000px;}
.ya0{bottom:898.350000px;}
.y10e{bottom:905.190000px;}
.yd0{bottom:914.370000px;}
.y9f{bottom:915.630000px;}
.y10d{bottom:922.470000px;}
.ycf{bottom:931.650000px;}
.y9e{bottom:932.910000px;}
.y10c{bottom:939.570000px;}
.yce{bottom:949.830000px;}
.y9d{bottom:950.190000px;}
.y10a{bottom:954.330000px;}
.y5e{bottom:961.890000px;}
.y9c{bottom:967.470000px;}
.ycd{bottom:968.190000px;}
.y10b{bottom:972.330000px;}
.y9b{bottom:984.570000px;}
.ycc{bottom:986.550000px;}
.y108{bottom:990.330000px;}
.y9a{bottom:1001.850000px;}
.ycb{bottom:1004.910000px;}
.y109{bottom:1008.330000px;}
.y99{bottom:1019.130000px;}
.yca{bottom:1022.190000px;}
.y106{bottom:1026.330000px;}
.y98{bottom:1036.410000px;}
.yc9{bottom:1039.290000px;}
.yd{bottom:1041.450000px;}
.y107{bottom:1044.330000px;}
.yc8{bottom:1053.330000px;}
.y97{bottom:1053.690000px;}
.y104{bottom:1062.330000px;}
.y5d{bottom:1066.110000px;}
.y6{bottom:1066.830000px;}
.y96{bottom:1070.790000px;}
.y105{bottom:1080.330000px;}
.y95{bottom:1088.070000px;}
.y102{bottom:1098.330000px;}
.y94{bottom:1105.350000px;}
.y103{bottom:1116.330000px;}
.y93{bottom:1122.630000px;}
.yff{bottom:1134.330000px;}
.y5b{bottom:1135.950000px;}
.y92{bottom:1139.940000px;}
.y101{bottom:1152.360000px;}
.y5a{bottom:1157.220000px;}
.yfe{bottom:1170.360000px;}
.y59{bottom:1174.320000px;}
.h24{height:17.100000px;}
.h1e{height:17.136000px;}
.h23{height:17.280000px;}
.h25{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.556000px;}
.h2{height:32.976000px;}
.h26{height:34.380000px;}
.h28{height:35.280000px;}
.h2a{height:35.316000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.h18{height:42.281367px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h27{height:48.312422px;}
.h1a{height:49.838906px;}
.h29{height:53.305312px;}
.h4{height:53.709961px;}
.h2c{height:53.853187px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h1f{height:68.940000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h2e{height:83.787539px;}
.h22{height:86.220000px;}
.h20{height:103.500000px;}
.h21{height:103.536000px;}
.h7{height:121.536000px;}
.hc{height:157.680000px;}
.h2f{height:268.560000px;}
.h2d{height:323.820000px;}
.h2b{height:324.000000px;}
.h14{height:465.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wd{width:83.340000px;}
.w11{width:83.700000px;}
.wa{width:114.696000px;}
.w5{width:151.950000px;}
.wf{width:178.770000px;}
.w12{width:181.830000px;}
.w10{width:191.550000px;}
.wc{width:218.730000px;}
.w8{width:223.455000px;}
.we{width:273.315000px;}
.wb{width:310.755000px;}
.w13{width:364.395000px;}
.w14{width:364.575000px;}
.w9{width:507.675000px;}
.w16{width:529.560000px;}
.w15{width:540.000000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.xb{left:22.896000px;}
.x2c{left:31.650000px;}
.x2a{left:39.855000px;}
.x29{left:46.695000px;}
.x33{left:50.070000px;}
.x37{left:53.535000px;}
.x30{left:55.800000px;}
.x4e{left:59.010000px;}
.x3a{left:61.125000px;}
.x2b{left:62.640000px;}
.x42{left:64.515000px;}
.x34{left:66.030000px;}
.x38{left:69.480000px;}
.x32{left:71.205000px;}
.x5b{left:72.360000px;}
.x3c{left:75.165000px;}
.x3d{left:76.650000px;}
.x41{left:78.195000px;}
.x1{left:81.000000px;}
.x36{left:82.770000px;}
.x18{left:83.879987px;}
.x24{left:87.299987px;}
.x20{left:88.595987px;}
.x22{left:91.295987px;}
.x2e{left:93.570000px;}
.x4{left:98.130000px;}
.x2f{left:99.690000px;}
.x43{left:105.990000px;}
.x17{left:108.035987px;}
.x52{left:117.510000px;}
.x25{left:120.455987px;}
.x4f{left:131.910000px;}
.x5d{left:135.035987px;}
.xe{left:143.850000px;}
.x44{left:152.715000px;}
.x53{left:160.635000px;}
.xd{left:171.570000px;}
.x28{left:176.400000px;}
.x51{left:181.620000px;}
.x45{left:185.550000px;}
.x54{left:189.870000px;}
.x12{left:197.130000px;}
.xf{left:215.175000px;}
.x1c{left:216.929987px;}
.xc{left:231.735000px;}
.x5{left:232.950000px;}
.x5c{left:234.645000px;}
.x50{left:239.865000px;}
.x3b{left:242.430000px;}
.x31{left:246.450000px;}
.x2d{left:249.870000px;}
.x35{left:251.565000px;}
.x39{left:253.290000px;}
.x1d{left:264.270000px;}
.x8{left:272.235000px;}
.x55{left:301.785000px;}
.x10{left:304.455000px;}
.x46{left:311.400000px;}
.x6{left:331.995000px;}
.x56{left:336.210000px;}
.x47{left:338.910000px;}
.x48{left:349.170000px;}
.x7{left:351.255000px;}
.x1a{left:355.935000px;}
.xa{left:365.475000px;}
.x57{left:370.260000px;}
.x49{left:379.830000px;}
.x19{left:382.034987px;}
.x4a{left:384.015000px;}
.x23{left:398.054987px;}
.x58{left:402.735000px;}
.x59{left:405.825000px;}
.x3f{left:416.054987px;}
.x27{left:419.834987px;}
.x21{left:422.714987px;}
.x5a{left:437.400000px;}
.x9{left:439.500000px;}
.x1e{left:446.835000px;}
.x4d{left:458.355000px;}
.x4c{left:459.975000px;}
.x4b{left:461.160000px;}
.x13{left:508.605000px;}
.x1b{left:535.425000px;}
.x1f{left:629.565000px;}
.x15{left:635.504987px;}
.x3e{left:711.329987px;}
.x26{left:716.549987px;}
.x40{left:718.889987px;}
.x14{left:728.070000px;}
.x3{left:739.050000px;}
.x16{left:781.889987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.765333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.198400pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls14{letter-spacing:-0.081067pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.077867pt;}
.ls10{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws18{word-spacing:-16.922880pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2f{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.040000pt;}
.ws1b{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
.ws2c{word-spacing:7.712000pt;}
.ws21{word-spacing:8.512000pt;}
.ws2b{word-spacing:12.698667pt;}
.ws20{word-spacing:19.098667pt;}
.ws22{word-spacing:19.946667pt;}
.ws27{word-spacing:24.405333pt;}
.ws2e{word-spacing:32.048000pt;}
.ws2a{word-spacing:34.976000pt;}
.ws1f{word-spacing:36.576000pt;}
.ws1c{word-spacing:37.205333pt;}
.ws25{word-spacing:44.394667pt;}
.ws24{word-spacing:44.954667pt;}
.ws28{word-spacing:52.432000pt;}
.ws29{word-spacing:54.181333pt;}
.ws26{word-spacing:62.405333pt;}
.ws1d{word-spacing:65.424000pt;}
.ws1e{word-spacing:67.141333pt;}
.ws2d{word-spacing:71.946667pt;}
.ws23{word-spacing:78.259371pt;}
.ws17{word-spacing:115.888000pt;}
.ws1a{word-spacing:115.924480pt;}
.ws15{word-spacing:117.311147pt;}
.ws11{word-spacing:118.554667pt;}
.ws13{word-spacing:121.274667pt;}
.ws19{word-spacing:127.922176pt;}
.ws16{word-spacing:128.016000pt;}
.ws14{word-spacing:129.308843pt;}
.ws10{word-spacing:130.842667pt;}
.ws12{word-spacing:133.509333pt;}
._37{margin-left:-6.998187pt;}
._36{margin-left:-6.054187pt;}
._4{margin-left:-4.940160pt;}
._27{margin-left:-3.984000pt;}
._2{margin-left:-2.858880pt;}
._3{margin-left:-1.946880pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.098667pt;}
._5{width:2.354133pt;}
._b{width:3.416533pt;}
._10{width:4.407893pt;}
._9{width:5.381973pt;}
._f{width:6.564267pt;}
._e{width:7.808640pt;}
._d{width:9.296000pt;}
._12{width:10.601600pt;}
._26{width:11.633280pt;}
._6{width:15.109547pt;}
._25{width:16.360960pt;}
._15{width:17.264000pt;}
._7{width:18.237013pt;}
._8{width:19.463893pt;}
._c{width:20.786347pt;}
._21{width:21.952213pt;}
._35{width:23.542613pt;}
._2c{width:24.452053pt;}
._2d{width:25.544960pt;}
._a{width:29.976533pt;}
._2e{width:31.322667pt;}
._1a{width:33.856853pt;}
._11{width:34.757333pt;}
._33{width:42.732800pt;}
._34{width:43.852800pt;}
._1b{width:51.118293pt;}
._32{width:55.712000pt;}
._22{width:59.441280pt;}
._2f{width:61.797333pt;}
._31{width:67.962667pt;}
._18{width:71.499520pt;}
._30{width:86.277333pt;}
._23{width:90.002133pt;}
._24{width:105.991253pt;}
._1f{width:109.267840pt;}
._16{width:112.790613pt;}
._19{width:114.473600pt;}
._2b{width:151.024000pt;}
._2a{width:152.345771pt;}
._20{width:153.676160pt;}
._29{width:156.410667pt;}
._1e{width:252.001280pt;}
._14{width:280.154880pt;}
._28{width:290.938240pt;}
._1c{width:352.643413pt;}
._17{width:590.694400pt;}
._13{width:712.657920pt;}
._1d{width:861.818880pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y5c{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4a{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.y18{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y184{bottom:15.706667pt;}
.y194{bottom:15.773333pt;}
.y2{bottom:17.952000pt;}
.y6a{bottom:18.080000pt;}
.y44{bottom:18.240000pt;}
.y67{bottom:18.280000pt;}
.yf9{bottom:18.880000pt;}
.y100{bottom:18.906667pt;}
.y12e{bottom:19.680000pt;}
.y146{bottom:19.773333pt;}
.y152{bottom:19.813333pt;}
.y49{bottom:19.840000pt;}
.y16{bottom:21.120000pt;}
.y47{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y15{bottom:32.800000pt;}
.y69{bottom:33.440000pt;}
.y43{bottom:33.600000pt;}
.y66{bottom:33.640000pt;}
.y12d{bottom:38.333333pt;}
.y144{bottom:38.426667pt;}
.y120{bottom:38.466667pt;}
.ya{bottom:41.440000pt;}
.y192{bottom:45.826667pt;}
.y182{bottom:45.920000pt;}
.y1{bottom:47.840000pt;}
.y61{bottom:48.800000pt;}
.y65{bottom:48.840000pt;}
.y42{bottom:48.960000pt;}
.y14{bottom:49.120000pt;}
.y124{bottom:53.920000pt;}
.y13a{bottom:54.053333pt;}
.y116{bottom:54.080000pt;}
.y60{bottom:64.160000pt;}
.y64{bottom:64.200000pt;}
.y41{bottom:64.320000pt;}
.y191{bottom:64.960000pt;}
.y181{bottom:65.053333pt;}
.y13{bottom:65.280000pt;}
.y9{bottom:65.306667pt;}
.y162{bottom:71.653333pt;}
.y149{bottom:73.826667pt;}
.y13b{bottom:74.146667pt;}
.y125{bottom:74.400000pt;}
.y117{bottom:74.560000pt;}
.y161{bottom:76.826667pt;}
.y15f{bottom:77.306667pt;}
.y5f{bottom:79.520000pt;}
.y63{bottom:79.560000pt;}
.y40{bottom:79.680000pt;}
.y15c{bottom:80.413333pt;}
.y156{bottom:80.453333pt;}
.y190{bottom:80.866667pt;}
.y180{bottom:80.960000pt;}
.y12{bottom:82.240000pt;}
.y8{bottom:82.746667pt;}
.y15b{bottom:83.106667pt;}
.yfd{bottom:85.792000pt;}
.y91{bottom:89.152000pt;}
.y163{bottom:89.213333pt;}
.y1a5{bottom:93.152000pt;}
.y14a{bottom:93.600000pt;}
.yc7{bottom:93.792000pt;}
.y13c{bottom:94.266667pt;}
.y3f{bottom:94.880000pt;}
.y118{bottom:95.040000pt;}
.y18f{bottom:95.520000pt;}
.y17f{bottom:95.613333pt;}
.y7{bottom:99.066667pt;}
.y58{bottom:100.032000pt;}
.yfb{bottom:101.792000pt;}
.y151{bottom:102.146667pt;}
.y138{bottom:103.072000pt;}
.y90{bottom:104.512000pt;}
.y11{bottom:105.120000pt;}
.y15d{bottom:106.786667pt;}
.y157{bottom:106.813333pt;}
.y1a4{bottom:108.512000pt;}
.yc6{bottom:109.152000pt;}
.y18e{bottom:110.173333pt;}
.y3e{bottom:110.240000pt;}
.y17e{bottom:110.266667pt;}
.y14b{bottom:113.373333pt;}
.y168{bottom:113.506667pt;}
.y13d{bottom:114.373333pt;}
.y172{bottom:114.432000pt;}
.y57{bottom:115.232000pt;}
.y126{bottom:115.360000pt;}
.y119{bottom:115.493333pt;}
.y121{bottom:117.413333pt;}
.yfc{bottom:117.792000pt;}
.y137{bottom:118.432000pt;}
.y8f{bottom:119.872000pt;}
.y145{bottom:121.186667pt;}
.y186{bottom:121.346667pt;}
.y173{bottom:121.440000pt;}
.y1a3{bottom:123.872000pt;}
.y164{bottom:124.386667pt;}
.yc5{bottom:124.512000pt;}
.y3d{bottom:125.600000pt;}
.y10{bottom:126.720000pt;}
.y187{bottom:129.573333pt;}
.y171{bottom:129.792000pt;}
.y56{bottom:130.592000pt;}
.y136{bottom:130.912000pt;}
.y155{bottom:131.040000pt;}
.y174{bottom:132.026667pt;}
.y14c{bottom:133.146667pt;}
.y158{bottom:133.186667pt;}
.yf8{bottom:133.786667pt;}
.y13e{bottom:134.493333pt;}
.y8e{bottom:135.226667pt;}
.y127{bottom:135.813333pt;}
.y11a{bottom:135.973333pt;}
.y188{bottom:137.786667pt;}
.y1a2{bottom:139.226667pt;}
.yc4{bottom:139.866667pt;}
.y3c{bottom:140.960000pt;}
.y165{bottom:141.946667pt;}
.y175{bottom:142.626667pt;}
.y170{bottom:145.146667pt;}
.y55{bottom:145.946667pt;}
.y189{bottom:146.013333pt;}
.y2a{bottom:148.800000pt;}
.yfa{bottom:149.786667pt;}
.y8d{bottom:150.586667pt;}
.y14d{bottom:152.933333pt;}
.y176{bottom:153.213333pt;}
.y18a{bottom:154.240000pt;}
.y13f{bottom:154.586667pt;}
.yc3{bottom:155.226667pt;}
.y128{bottom:156.293333pt;}
.y3b{bottom:156.320000pt;}
.y11b{bottom:156.453333pt;}
.y15e{bottom:159.520000pt;}
.y159{bottom:159.546667pt;}
.y16f{bottom:160.506667pt;}
.y54{bottom:161.306667pt;}
.y29{bottom:162.400000pt;}
.y18b{bottom:162.466667pt;}
.y177{bottom:163.813333pt;}
.y8c{bottom:165.786667pt;}
.y114{bottom:167.066667pt;}
.y1a1{bottom:169.786667pt;}
.yc2{bottom:170.426667pt;}
.y18c{bottom:170.693333pt;}
.y3a{bottom:171.680000pt;}
.y14e{bottom:172.706667pt;}
.y178{bottom:174.373333pt;}
.y140{bottom:174.693333pt;}
.y16e{bottom:175.706667pt;}
.y53{bottom:176.666667pt;}
.y129{bottom:176.773333pt;}
.y11c{bottom:176.933333pt;}
.y166{bottom:177.120000pt;}
.y28{bottom:178.080000pt;}
.y18d{bottom:178.906667pt;}
.y8b{bottom:181.146667pt;}
.y113{bottom:182.426667pt;}
.yf7{bottom:184.666667pt;}
.y179{bottom:184.960000pt;}
.y1a0{bottom:185.146667pt;}
.yc1{bottom:185.786667pt;}
.y15a{bottom:185.893333pt;}
.y39{bottom:186.880000pt;}
.y16d{bottom:191.066667pt;}
.y52{bottom:191.866667pt;}
.y14f{bottom:192.480000pt;}
.y27{bottom:193.466667pt;}
.y167{bottom:194.693333pt;}
.y141{bottom:194.813333pt;}
.y112{bottom:194.906667pt;}
.y123{bottom:195.200000pt;}
.y17a{bottom:195.546667pt;}
.y8a{bottom:196.506667pt;}
.y12a{bottom:197.253333pt;}
.y11d{bottom:197.373333pt;}
.yf6{bottom:200.026667pt;}
.y19f{bottom:200.506667pt;}
.yc0{bottom:201.146667pt;}
.y38{bottom:202.266667pt;}
.y17b{bottom:206.146667pt;}
.y16c{bottom:206.426667pt;}
.y51{bottom:207.226667pt;}
.y26{bottom:208.666667pt;}
.y89{bottom:211.866667pt;}
.y150{bottom:212.253333pt;}
.y193{bottom:213.413333pt;}
.y142{bottom:214.906667pt;}
.yf5{bottom:215.386667pt;}
.y19e{bottom:215.866667pt;}
.ybf{bottom:216.506667pt;}
.y17c{bottom:216.733333pt;}
.y37{bottom:217.626667pt;}
.y12b{bottom:217.693333pt;}
.y11e{bottom:217.853333pt;}
.y16b{bottom:218.906667pt;}
.y50{bottom:222.586667pt;}
.y25{bottom:224.506667pt;}
.y88{bottom:227.226667pt;}
.y17d{bottom:227.293333pt;}
.yf4{bottom:228.506667pt;}
.y19d{bottom:231.226667pt;}
.ybe{bottom:231.866667pt;}
.y36{bottom:232.986667pt;}
.y143{bottom:235.040000pt;}
.y160{bottom:237.213333pt;}
.y154{bottom:237.253333pt;}
.y4f{bottom:237.946667pt;}
.y12c{bottom:238.173333pt;}
.y11f{bottom:238.333333pt;}
.y24{bottom:240.026667pt;}
.y87{bottom:242.586667pt;}
.ybd{bottom:244.346667pt;}
.yf3{bottom:244.506667pt;}
.y19c{bottom:246.586667pt;}
.y35{bottom:248.346667pt;}
.y4e{bottom:253.306667pt;}
.y23{bottom:255.546667pt;}
.y86{bottom:257.786667pt;}
.y147{bottom:260.093333pt;}
.y153{bottom:260.133333pt;}
.y19b{bottom:261.786667pt;}
.y12f{bottom:262.560000pt;}
.y183{bottom:262.653333pt;}
.y122{bottom:262.720000pt;}
.y34{bottom:263.546667pt;}
.y4d{bottom:268.666667pt;}
.y22{bottom:270.906667pt;}
.y85{bottom:273.146667pt;}
.yf2{bottom:275.866667pt;}
.y19a{bottom:277.146667pt;}
.y33{bottom:278.906667pt;}
.y4c{bottom:283.866667pt;}
.y21{bottom:286.426667pt;}
.y84{bottom:288.506667pt;}
.yf1{bottom:291.706667pt;}
.y199{bottom:292.506667pt;}
.y32{bottom:294.266667pt;}
.y4b{bottom:299.906667pt;}
.y20{bottom:301.786667pt;}
.y83{bottom:303.906667pt;}
.y198{bottom:307.906667pt;}
.y31{bottom:309.626667pt;}
.yf0{bottom:310.626667pt;}
.y46{bottom:312.706667pt;}
.y1f{bottom:317.306667pt;}
.y82{bottom:319.266667pt;}
.y197{bottom:323.266667pt;}
.y30{bottom:324.986667pt;}
.yef{bottom:325.986667pt;}
.y1e{bottom:332.826667pt;}
.y81{bottom:334.466667pt;}
.y196{bottom:338.466667pt;}
.y2f{bottom:340.346667pt;}
.yee{bottom:341.346667pt;}
.y19{bottom:345.186667pt;}
.y1d{bottom:348.186667pt;}
.y80{bottom:349.826667pt;}
.y195{bottom:353.826667pt;}
.yed{bottom:354.466667pt;}
.y2e{bottom:355.546667pt;}
.y1c{bottom:363.866667pt;}
.y7f{bottom:365.186667pt;}
.ybc{bottom:369.186667pt;}
.yec{bottom:370.466667pt;}
.y2d{bottom:370.906667pt;}
.y7e{bottom:380.546667pt;}
.ybb{bottom:384.546667pt;}
.y2c{bottom:386.266667pt;}
.yeb{bottom:386.466667pt;}
.y1b{bottom:388.186667pt;}
.y7d{bottom:395.906667pt;}
.yba{bottom:399.906667pt;}
.y2b{bottom:401.626667pt;}
.yea{bottom:402.466667pt;}
.y1a{bottom:404.026667pt;}
.y7c{bottom:411.266667pt;}
.yb9{bottom:415.266667pt;}
.ye9{bottom:418.466667pt;}
.y135{bottom:421.826667pt;}
.y7b{bottom:426.466667pt;}
.yb8{bottom:430.466667pt;}
.y134{bottom:437.186667pt;}
.ye8{bottom:437.346667pt;}
.y7a{bottom:441.826667pt;}
.yb7{bottom:445.826667pt;}
.y133{bottom:449.666667pt;}
.y148{bottom:449.760000pt;}
.ye7{bottom:452.706667pt;}
.y79{bottom:457.186667pt;}
.yb6{bottom:461.186667pt;}
.ye6{bottom:468.066667pt;}
.y78{bottom:472.546667pt;}
.yb5{bottom:476.546667pt;}
.ye5{bottom:481.186667pt;}
.y111{bottom:485.826667pt;}
.y16a{bottom:486.466667pt;}
.y77{bottom:487.906667pt;}
.yb4{bottom:491.906667pt;}
.ye4{bottom:497.186667pt;}
.y169{bottom:498.946667pt;}
.y185{bottom:499.040000pt;}
.y110{bottom:501.186667pt;}
.y76{bottom:503.266667pt;}
.yb3{bottom:507.266667pt;}
.y10f{bottom:513.666667pt;}
.y115{bottom:513.760000pt;}
.ye3{bottom:516.066667pt;}
.y75{bottom:518.466667pt;}
.yb2{bottom:522.466667pt;}
.ye2{bottom:531.426667pt;}
.y74{bottom:533.826667pt;}
.yb1{bottom:537.853333pt;}
.ye1{bottom:544.573333pt;}
.y73{bottom:549.213333pt;}
.yb0{bottom:553.213333pt;}
.ye0{bottom:560.573333pt;}
.y72{bottom:564.573333pt;}
.yaf{bottom:568.573333pt;}
.ydf{bottom:576.573333pt;}
.y71{bottom:579.933333pt;}
.yae{bottom:583.933333pt;}
.yde{bottom:592.573333pt;}
.y70{bottom:595.133333pt;}
.yad{bottom:599.133333pt;}
.ydd{bottom:608.413333pt;}
.y6f{bottom:610.493333pt;}
.yac{bottom:614.493333pt;}
.ydc{bottom:624.413333pt;}
.y6e{bottom:625.853333pt;}
.yab{bottom:629.853333pt;}
.ydb{bottom:640.413333pt;}
.y6d{bottom:641.213333pt;}
.yaa{bottom:645.213333pt;}
.y6c{bottom:656.573333pt;}
.yda{bottom:659.293333pt;}
.ya9{bottom:660.573333pt;}
.y6b{bottom:671.933333pt;}
.yd9{bottom:674.653333pt;}
.ya8{bottom:675.933333pt;}
.y68{bottom:685.053333pt;}
.yd8{bottom:690.013333pt;}
.ya7{bottom:691.133333pt;}
.yd7{bottom:705.373333pt;}
.ya6{bottom:706.493333pt;}
.yd6{bottom:720.733333pt;}
.ya5{bottom:721.853333pt;}
.yd5{bottom:736.093333pt;}
.ya4{bottom:737.213333pt;}
.y132{bottom:740.573333pt;}
.yd4{bottom:751.293333pt;}
.ya3{bottom:752.573333pt;}
.y131{bottom:755.773333pt;}
.y17{bottom:759.293333pt;}
.y62{bottom:762.333333pt;}
.yd3{bottom:766.653333pt;}
.ya2{bottom:767.933333pt;}
.y130{bottom:768.253333pt;}
.y139{bottom:768.480000pt;}
.yd2{bottom:782.053333pt;}
.ya1{bottom:783.173333pt;}
.yf{bottom:785.573333pt;}
.yd1{bottom:797.413333pt;}
.ya0{bottom:798.533333pt;}
.y10e{bottom:804.613333pt;}
.yd0{bottom:812.773333pt;}
.y9f{bottom:813.893333pt;}
.y10d{bottom:819.973333pt;}
.ycf{bottom:828.133333pt;}
.y9e{bottom:829.253333pt;}
.y10c{bottom:835.173333pt;}
.yce{bottom:844.293333pt;}
.y9d{bottom:844.613333pt;}
.y10a{bottom:848.293333pt;}
.y5e{bottom:855.013333pt;}
.y9c{bottom:859.973333pt;}
.ycd{bottom:860.613333pt;}
.y10b{bottom:864.293333pt;}
.y9b{bottom:875.173333pt;}
.ycc{bottom:876.933333pt;}
.y108{bottom:880.293333pt;}
.y9a{bottom:890.533333pt;}
.ycb{bottom:893.253333pt;}
.y109{bottom:896.293333pt;}
.y99{bottom:905.893333pt;}
.yca{bottom:908.613333pt;}
.y106{bottom:912.293333pt;}
.y98{bottom:921.253333pt;}
.yc9{bottom:923.813333pt;}
.yd{bottom:925.733333pt;}
.y107{bottom:928.293333pt;}
.yc8{bottom:936.293333pt;}
.y97{bottom:936.613333pt;}
.y104{bottom:944.293333pt;}
.y5d{bottom:947.653333pt;}
.y6{bottom:948.293333pt;}
.y96{bottom:951.813333pt;}
.y105{bottom:960.293333pt;}
.y95{bottom:967.173333pt;}
.y102{bottom:976.293333pt;}
.y94{bottom:982.533333pt;}
.y103{bottom:992.293333pt;}
.y93{bottom:997.893333pt;}
.yff{bottom:1008.293333pt;}
.y5b{bottom:1009.733333pt;}
.y92{bottom:1013.280000pt;}
.y101{bottom:1024.320000pt;}
.y5a{bottom:1028.640000pt;}
.yfe{bottom:1040.320000pt;}
.y59{bottom:1043.840000pt;}
.h24{height:15.200000pt;}
.h1e{height:15.232000pt;}
.h23{height:15.360000pt;}
.h25{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.272000pt;}
.h2{height:29.312000pt;}
.h26{height:30.560000pt;}
.h28{height:31.360000pt;}
.h2a{height:31.392000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.h18{height:37.583438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h27{height:42.944375pt;}
.h1a{height:44.301250pt;}
.h29{height:47.382500pt;}
.h4{height:47.742188pt;}
.h2c{height:47.869500pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h1f{height:61.280000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h2e{height:74.477812pt;}
.h22{height:76.640000pt;}
.h20{height:92.000000pt;}
.h21{height:92.032000pt;}
.h7{height:108.032000pt;}
.hc{height:140.160000pt;}
.h2f{height:238.720000pt;}
.h2d{height:287.840000pt;}
.h2b{height:288.000000pt;}
.h14{height:414.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wd{width:74.080000pt;}
.w11{width:74.400000pt;}
.wa{width:101.952000pt;}
.w5{width:135.066667pt;}
.wf{width:158.906667pt;}
.w12{width:161.626667pt;}
.w10{width:170.266667pt;}
.wc{width:194.426667pt;}
.w8{width:198.626667pt;}
.we{width:242.946667pt;}
.wb{width:276.226667pt;}
.w13{width:323.906667pt;}
.w14{width:324.066667pt;}
.w9{width:451.266667pt;}
.w16{width:470.720000pt;}
.w15{width:480.000000pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.xb{left:20.352000pt;}
.x2c{left:28.133333pt;}
.x2a{left:35.426667pt;}
.x29{left:41.506667pt;}
.x33{left:44.506667pt;}
.x37{left:47.586667pt;}
.x30{left:49.600000pt;}
.x4e{left:52.453333pt;}
.x3a{left:54.333333pt;}
.x2b{left:55.680000pt;}
.x42{left:57.346667pt;}
.x34{left:58.693333pt;}
.x38{left:61.760000pt;}
.x32{left:63.293333pt;}
.x5b{left:64.320000pt;}
.x3c{left:66.813333pt;}
.x3d{left:68.133333pt;}
.x41{left:69.506667pt;}
.x1{left:72.000000pt;}
.x36{left:73.573333pt;}
.x18{left:74.559988pt;}
.x24{left:77.599988pt;}
.x20{left:78.751988pt;}
.x22{left:81.151988pt;}
.x2e{left:83.173333pt;}
.x4{left:87.226667pt;}
.x2f{left:88.613333pt;}
.x43{left:94.213333pt;}
.x17{left:96.031988pt;}
.x52{left:104.453333pt;}
.x25{left:107.071988pt;}
.x4f{left:117.253333pt;}
.x5d{left:120.031988pt;}
.xe{left:127.866667pt;}
.x44{left:135.746667pt;}
.x53{left:142.786667pt;}
.xd{left:152.506667pt;}
.x28{left:156.800000pt;}
.x51{left:161.440000pt;}
.x45{left:164.933333pt;}
.x54{left:168.773333pt;}
.x12{left:175.226667pt;}
.xf{left:191.266667pt;}
.x1c{left:192.826655pt;}
.xc{left:205.986667pt;}
.x5{left:207.066667pt;}
.x5c{left:208.573333pt;}
.x50{left:213.213333pt;}
.x3b{left:215.493333pt;}
.x31{left:219.066667pt;}
.x2d{left:222.106667pt;}
.x35{left:223.613333pt;}
.x39{left:225.146667pt;}
.x1d{left:234.906667pt;}
.x8{left:241.986667pt;}
.x55{left:268.253333pt;}
.x10{left:270.626667pt;}
.x46{left:276.800000pt;}
.x6{left:295.106667pt;}
.x56{left:298.853333pt;}
.x47{left:301.253333pt;}
.x48{left:310.373333pt;}
.x7{left:312.226667pt;}
.x1a{left:316.386667pt;}
.xa{left:324.866667pt;}
.x57{left:329.120000pt;}
.x49{left:337.626667pt;}
.x19{left:339.586655pt;}
.x4a{left:341.346667pt;}
.x23{left:353.826655pt;}
.x58{left:357.986667pt;}
.x59{left:360.733333pt;}
.x3f{left:369.826655pt;}
.x27{left:373.186655pt;}
.x21{left:375.746655pt;}
.x5a{left:388.800000pt;}
.x9{left:390.666667pt;}
.x1e{left:397.186667pt;}
.x4d{left:407.426667pt;}
.x4c{left:408.866667pt;}
.x4b{left:409.920000pt;}
.x13{left:452.093333pt;}
.x1b{left:475.933333pt;}
.x1f{left:559.613333pt;}
.x15{left:564.893322pt;}
.x3e{left:632.293322pt;}
.x26{left:636.933322pt;}
.x40{left:639.013322pt;}
.x14{left:647.173333pt;}
.x3{left:656.933333pt;}
.x16{left:695.013322pt;}
}




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