
    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_bc32a353d4dea6e350471828.woff')format("woff");}.ff1{font-family:ff1;line-height:1.854000;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_ca478060728ed3c1a1684a7a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_f9d72e7d04458d9ae95311d2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.468000;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_f8918d397ba92eef99a00549.woff')format("woff");}.ff4{font-family:ff4;line-height:1.619100;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_d8a0c8f1fcc1be4e86f5cb43.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-21.978000px;}
.v7{vertical-align:-17.982000px;}
.v3{vertical-align:-3.900000px;}
.v1{vertical-align:-2.376000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.664000px;}
.v4{vertical-align:3.900000px;}
.v8{vertical-align:17.982000px;}
.v6{vertical-align:23.976000px;}
.v2{vertical-align:67.242000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009000px;}
.lsa{letter-spacing:1.801800px;}
.ls3{letter-spacing:2.520000px;}
.ls1{letter-spacing:2.880000px;}
.ls4{letter-spacing:4.248000px;}
.ls6{letter-spacing:20.574408px;}
.lse{letter-spacing:20.683800px;}
.lsc{letter-spacing:21.144600px;}
.ls8{letter-spacing:21.479400px;}
.ls5{letter-spacing:21.858600px;}
.ls0{letter-spacing:23.559600px;}
.lsd{letter-spacing:25.623408px;}
.ls9{letter-spacing:25.776600px;}
.ls7{letter-spacing:41.008800px;}
.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;}
}
.ws0{word-spacing:-78.540000px;}
.ws29{word-spacing:-23.976000px;}
.ws62{word-spacing:-21.978000px;}
.ws10{word-spacing:-19.980000px;}
.ws22{word-spacing:-17.982000px;}
.ws34{word-spacing:-13.978008px;}
.ws5{word-spacing:-13.860000px;}
.ws63{word-spacing:-12.813174px;}
.ws3b{word-spacing:-12.474000px;}
.ws5c{word-spacing:-10.483506px;}
.ws4c{word-spacing:-6.264000px;}
.ws41{word-spacing:-5.544000px;}
.ws18{word-spacing:-4.824000px;}
.ws4e{word-spacing:-4.536000px;}
.ws80{word-spacing:-4.248000px;}
.ws1e{word-spacing:-4.176000px;}
.ws1f{word-spacing:-3.888000px;}
.ws1c{word-spacing:-3.816000px;}
.ws2d{word-spacing:-3.672000px;}
.ws5d{word-spacing:-3.384000px;}
.ws42{word-spacing:-3.168000px;}
.ws86{word-spacing:-3.024000px;}
.ws56{word-spacing:-2.880000px;}
.ws87{word-spacing:-2.808000px;}
.ws48{word-spacing:-2.736000px;}
.ws4d{word-spacing:-2.520000px;}
.wsc{word-spacing:-2.448000px;}
.ws58{word-spacing:-2.376000px;}
.ws24{word-spacing:-2.304000px;}
.ws55{word-spacing:-2.016000px;}
.ws67{word-spacing:-1.728000px;}
.ws73{word-spacing:-1.656000px;}
.ws45{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.440000px;}
.ws68{word-spacing:-1.296000px;}
.ws53{word-spacing:-1.080000px;}
.ws6a{word-spacing:-0.936000px;}
.ws25{word-spacing:-0.864000px;}
.ws78{word-spacing:-0.648000px;}
.ws59{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.486000px;}
.ws6{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.144000px;}
.ws12{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws47{word-spacing:0.288000px;}
.ws82{word-spacing:0.360000px;}
.ws6b{word-spacing:0.504000px;}
.ws97{word-spacing:0.648000px;}
.ws2{word-spacing:0.720000px;}
.ws96{word-spacing:0.864000px;}
.ws8d{word-spacing:0.936000px;}
.ws7e{word-spacing:1.512000px;}
.ws14{word-spacing:1.584000px;}
.ws89{word-spacing:1.656000px;}
.ws3{word-spacing:1.800000px;}
.ws3a{word-spacing:1.944000px;}
.ws16{word-spacing:2.160000px;}
.wsd{word-spacing:2.232000px;}
.ws5a{word-spacing:2.304000px;}
.ws2f{word-spacing:2.376000px;}
.wsa{word-spacing:2.448000px;}
.ws77{word-spacing:2.700000px;}
.ws5f{word-spacing:2.808000px;}
.ws72{word-spacing:3.024000px;}
.ws88{word-spacing:3.162000px;}
.ws1d{word-spacing:3.240000px;}
.ws49{word-spacing:3.312000px;}
.ws38{word-spacing:3.384000px;}
.ws85{word-spacing:3.456000px;}
.ws76{word-spacing:3.600000px;}
.ws57{word-spacing:3.744000px;}
.ws30{word-spacing:3.888000px;}
.ws36{word-spacing:3.960000px;}
.ws13{word-spacing:4.248000px;}
.ws93{word-spacing:4.320000px;}
.ws7{word-spacing:4.392000px;}
.ws65{word-spacing:4.464000px;}
.ws8b{word-spacing:4.536000px;}
.ws4b{word-spacing:4.896000px;}
.ws1a{word-spacing:5.040000px;}
.ws75{word-spacing:5.724000px;}
.ws60{word-spacing:5.992200px;}
.ws7b{word-spacing:5.993400px;}
.ws3c{word-spacing:6.120000px;}
.wsb{word-spacing:6.336000px;}
.ws91{word-spacing:6.624000px;}
.ws28{word-spacing:6.768000px;}
.ws33{word-spacing:6.852000px;}
.ws95{word-spacing:6.912000px;}
.ws37{word-spacing:7.056000px;}
.ws11{word-spacing:7.200000px;}
.ws92{word-spacing:7.272000px;}
.ws7d{word-spacing:7.509000px;}
.ws4{word-spacing:7.798200px;}
.ws4a{word-spacing:7.848000px;}
.ws83{word-spacing:8.208000px;}
.ws15{word-spacing:8.424000px;}
.ws46{word-spacing:8.496000px;}
.ws27{word-spacing:8.640000px;}
.ws8e{word-spacing:8.712000px;}
.ws52{word-spacing:8.784000px;}
.ws3d{word-spacing:8.856000px;}
.ws90{word-spacing:8.928000px;}
.ws2b{word-spacing:9.216000px;}
.ws2c{word-spacing:9.228000px;}
.ws32{word-spacing:9.234000px;}
.ws3f{word-spacing:9.288000px;}
.ws26{word-spacing:9.504000px;}
.ws23{word-spacing:9.576000px;}
.ws71{word-spacing:9.720000px;}
.ws64{word-spacing:9.864000px;}
.ws8{word-spacing:10.224000px;}
.ws40{word-spacing:10.728000px;}
.ws19{word-spacing:10.800000px;}
.ws70{word-spacing:10.872000px;}
.ws74{word-spacing:10.944000px;}
.ws35{word-spacing:11.232000px;}
.ws1b{word-spacing:11.736000px;}
.ws84{word-spacing:11.952000px;}
.ws7c{word-spacing:12.211800px;}
.ws50{word-spacing:12.240000px;}
.ws31{word-spacing:12.312000px;}
.ws7f{word-spacing:12.384000px;}
.ws8c{word-spacing:12.456000px;}
.ws8a{word-spacing:12.474000px;}
.ws54{word-spacing:12.888000px;}
.ws6c{word-spacing:12.960000px;}
.wse{word-spacing:13.392000px;}
.ws44{word-spacing:13.536000px;}
.ws3e{word-spacing:13.824000px;}
.ws43{word-spacing:13.860000px;}
.wsf{word-spacing:13.968000px;}
.ws9{word-spacing:14.400000px;}
.ws66{word-spacing:14.688000px;}
.ws2e{word-spacing:15.624000px;}
.ws5b{word-spacing:16.344000px;}
.ws61{word-spacing:16.560000px;}
.ws5e{word-spacing:16.992000px;}
.ws20{word-spacing:17.352000px;}
.ws94{word-spacing:17.424000px;}
.ws4f{word-spacing:18.144000px;}
.ws51{word-spacing:18.576000px;}
.ws98{word-spacing:19.728000px;}
.ws39{word-spacing:19.800000px;}
.ws81{word-spacing:19.944000px;}
.ws21{word-spacing:21.744000px;}
.ws6f{word-spacing:21.960000px;}
.ws8f{word-spacing:22.392000px;}
.ws6e{word-spacing:22.536000px;}
.ws69{word-spacing:25.992000px;}
.ws6d{word-spacing:27.720000px;}
.ws7a{word-spacing:28.440000px;}
._36{margin-left:-8.352000px;}
._2c{margin-left:-6.517200px;}
._4{margin-left:-4.176000px;}
._12{margin-left:-2.448000px;}
._1{margin-left:-1.404000px;}
._7{width:1.296000px;}
._18{width:3.024000px;}
._24{width:4.032000px;}
._e{width:5.112000px;}
._15{width:6.624000px;}
._1a{width:8.424000px;}
._21{width:10.296000px;}
._1e{width:11.664000px;}
._28{width:12.708000px;}
._14{width:13.860000px;}
._20{width:14.904000px;}
._26{width:16.381200px;}
._22{width:17.568000px;}
._25{width:18.648000px;}
._3{width:19.800000px;}
._10{width:21.420000px;}
._6{width:22.536000px;}
._0{width:23.544000px;}
._2{width:24.984000px;}
._a{width:26.568000px;}
._17{width:27.648000px;}
._c{width:29.088000px;}
._16{width:30.600000px;}
._1b{width:32.400000px;}
._b{width:34.200000px;}
._29{width:35.227200px;}
._19{width:36.324000px;}
._1d{width:37.440000px;}
._9{width:38.679600px;}
._1f{width:39.681600px;}
._23{width:41.544000px;}
._11{width:42.624000px;}
._f{width:44.244000px;}
._27{width:45.612000px;}
._13{width:46.656000px;}
._2d{width:47.913600px;}
._5{width:49.392000px;}
._8{width:50.616000px;}
._2f{width:51.912000px;}
._2b{width:53.928000px;}
._37{width:56.592000px;}
._d{width:58.176000px;}
._32{width:64.368000px;}
._30{width:65.718000px;}
._2a{width:72.576000px;}
._33{width:76.288800px;}
._2e{width:95.942400px;}
._1c{width:118.672200px;}
._34{width:796.765800px;}
._35{width:815.053800px;}
._31{width:892.808400px;}
.fc5{color:rgb(42,62,146);}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(8,149,77);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(148,147,101);}
.fc0{color:rgb(176,116,23);}
.fs8{font-size:31.482000px;}
.fsa{font-size:38.478000px;}
.fs7{font-size:41.976000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:41.013600px;}
.y73{bottom:41.651400px;}
.y7{bottom:41.864100px;}
.y3c{bottom:105.766200px;}
.y97{bottom:106.716600px;}
.y6a{bottom:112.880100px;}
.y119{bottom:117.670650px;}
.y16f{bottom:118.520850px;}
.ybe{bottom:118.719450px;}
.y72{bottom:119.204250px;}
.ye4{bottom:123.680100px;}
.y3b{bottom:123.766200px;}
.y3a{bottom:124.955700px;}
.y96{bottom:128.316600px;}
.y138{bottom:128.598000px;}
.y69{bottom:134.480100px;}
.y16e{bottom:134.720850px;}
.y118{bottom:139.270650px;}
.ybd{bottom:140.319450px;}
.y137{bottom:144.798000px;}
.ye3{bottom:145.280100px;}
.y39{bottom:146.555700px;}
.y95{bottom:149.916600px;}
.y191{bottom:156.077400px;}
.y6f{bottom:156.080100px;}
.yf8{bottom:158.898600px;}
.y117{bottom:160.870650px;}
.y136{bottom:160.998000px;}
.ybc{bottom:161.919450px;}
.ye2{bottom:166.880100px;}
.y38{bottom:168.155700px;}
.y1be{bottom:169.566600px;}
.y6{bottom:169.587300px;}
.y94{bottom:171.516600px;}
.y68{bottom:174.080100px;}
.yf7{bottom:175.098600px;}
.y135{bottom:177.198000px;}
.y190{bottom:177.677400px;}
.y6e{bottom:177.680100px;}
.y116{bottom:182.470650px;}
.ybb{bottom:183.519450px;}
.y1bd{bottom:185.766600px;}
.ye1{bottom:188.480100px;}
.y15c{bottom:188.532000px;}
.y37{bottom:189.755700px;}
.y5{bottom:190.582050px;}
.y93{bottom:193.116600px;}
.y134{bottom:193.398000px;}
.y67{bottom:195.680100px;}
.y18f{bottom:199.277400px;}
.y6d{bottom:199.280100px;}
.y1bc{bottom:201.966600px;}
.y115{bottom:204.070650px;}
.yba{bottom:205.119450px;}
.y15b{bottom:210.132000px;}
.y36{bottom:211.355700px;}
.y92{bottom:214.716600px;}
.y66{bottom:217.280100px;}
.y18e{bottom:220.877400px;}
.y6c{bottom:220.880100px;}
.y114{bottom:225.670650px;}
.y1bb{bottom:226.671600px;}
.yb9{bottom:226.719450px;}
.ye0{bottom:228.080100px;}
.y15a{bottom:231.732000px;}
.y35{bottom:232.955700px;}
.y4{bottom:234.082050px;}
.y91{bottom:236.316600px;}
.y65{bottom:238.880100px;}
.y18d{bottom:242.477400px;}
.y6b{bottom:242.480100px;}
.y1ba{bottom:242.871600px;}
.y113{bottom:247.270650px;}
.yb8{bottom:248.319450px;}
.ydf{bottom:249.680100px;}
.y159{bottom:253.332000px;}
.y34{bottom:254.555700px;}
.y90{bottom:257.916600px;}
.y1b9{bottom:259.071600px;}
.y64{bottom:260.480100px;}
.y18c{bottom:264.077400px;}
.y112{bottom:268.870650px;}
.yb7{bottom:269.919450px;}
.yde{bottom:271.280100px;}
.y158{bottom:274.932000px;}
.y33{bottom:276.155700px;}
.y8f{bottom:279.516600px;}
.y63{bottom:282.080100px;}
.y1b8{bottom:283.776600px;}
.y16d{bottom:284.560200px;}
.y18b{bottom:285.677400px;}
.y111{bottom:290.470650px;}
.yb6{bottom:291.519450px;}
.ydd{bottom:292.880100px;}
.y157{bottom:296.532000px;}
.y1b7{bottom:299.976600px;}
.y16c{bottom:300.760200px;}
.y62{bottom:303.680100px;}
.y18a{bottom:307.277400px;}
.y24{bottom:309.255900px;}
.y110{bottom:312.070650px;}
.yb5{bottom:313.119450px;}
.ydc{bottom:314.480100px;}
.y32{bottom:315.753900px;}
.y1b6{bottom:316.176600px;}
.y156{bottom:318.132000px;}
.y8e{bottom:319.116600px;}
.y61{bottom:325.280100px;}
.y189{bottom:328.877400px;}
.y23{bottom:330.855900px;}
.y1b5{bottom:332.376600px;}
.y10f{bottom:333.670650px;}
.yb4{bottom:334.719450px;}
.ydb{bottom:336.080100px;}
.y31{bottom:337.353900px;}
.y155{bottom:339.732000px;}
.y8d{bottom:340.716600px;}
.y60{bottom:346.880100px;}
.y188{bottom:350.477400px;}
.y22{bottom:352.455900px;}
.y10e{bottom:355.270650px;}
.yb3{bottom:356.319450px;}
.y1b4{bottom:357.081600px;}
.yda{bottom:357.680100px;}
.y30{bottom:358.953900px;}
.y154{bottom:361.332000px;}
.y8c{bottom:362.316600px;}
.yf6{bottom:367.135950px;}
.y5f{bottom:368.480100px;}
.y187{bottom:371.414100px;}
.y1b3{bottom:373.281600px;}
.y133{bottom:375.680100px;}
.y10d{bottom:376.870650px;}
.yb2{bottom:377.919450px;}
.yd9{bottom:379.280100px;}
.y2f{bottom:380.553900px;}
.y153{bottom:382.932000px;}
.y8b{bottom:383.916600px;}
.yf5{bottom:388.735950px;}
.y1b2{bottom:389.481600px;}
.y5e{bottom:390.080100px;}
.y21{bottom:392.055900px;}
.y186{bottom:393.680100px;}
.y132{bottom:397.280100px;}
.y10c{bottom:398.470650px;}
.yb1{bottom:399.519450px;}
.yd8{bottom:400.880100px;}
.y2e{bottom:402.153900px;}
.y152{bottom:404.532000px;}
.y8a{bottom:405.516600px;}
.y1b1{bottom:405.681600px;}
.yf4{bottom:410.335950px;}
.y5d{bottom:411.680100px;}
.y20{bottom:413.655900px;}
.y185{bottom:415.280100px;}
.y131{bottom:418.880100px;}
.y10b{bottom:420.070650px;}
.yb0{bottom:421.119450px;}
.yd7{bottom:422.480100px;}
.y2d{bottom:423.753900px;}
.y151{bottom:426.132000px;}
.y89{bottom:427.116600px;}
.y1b0{bottom:430.386600px;}
.yf3{bottom:431.935950px;}
.y5c{bottom:433.280100px;}
.y1f{bottom:435.255900px;}
.y184{bottom:436.880100px;}
.y130{bottom:440.480100px;}
.y10a{bottom:441.670650px;}
.yaf{bottom:442.719450px;}
.yd6{bottom:444.080100px;}
.y2c{bottom:445.353900px;}
.y1af{bottom:446.586600px;}
.y150{bottom:447.732000px;}
.y88{bottom:448.716600px;}
.yf2{bottom:453.535950px;}
.y5b{bottom:454.880100px;}
.y1e{bottom:456.855900px;}
.y183{bottom:458.480100px;}
.y12f{bottom:462.080100px;}
.y1ae{bottom:462.786600px;}
.y109{bottom:463.270650px;}
.yae{bottom:464.319450px;}
.yd5{bottom:465.680100px;}
.y2b{bottom:466.953900px;}
.y14f{bottom:469.332000px;}
.y87{bottom:470.316600px;}
.y16b{bottom:472.147800px;}
.yf1{bottom:475.135950px;}
.y5a{bottom:476.480100px;}
.y1d{bottom:478.455900px;}
.y182{bottom:480.080100px;}
.y12e{bottom:483.680100px;}
.y108{bottom:484.870650px;}
.yad{bottom:485.919450px;}
.yd4{bottom:487.280100px;}
.y1ad{bottom:487.491600px;}
.y2a{bottom:488.553900px;}
.y14e{bottom:490.932000px;}
.y86{bottom:491.916600px;}
.y16a{bottom:493.747800px;}
.yf0{bottom:496.735950px;}
.y59{bottom:498.080100px;}
.y1c{bottom:500.055900px;}
.y181{bottom:501.680100px;}
.y1ac{bottom:503.691600px;}
.y12d{bottom:505.280100px;}
.y107{bottom:506.470650px;}
.yac{bottom:507.519450px;}
.yd3{bottom:508.880100px;}
.y29{bottom:510.153900px;}
.y14d{bottom:512.532000px;}
.y169{bottom:515.347800px;}
.yef{bottom:518.335050px;}
.y58{bottom:519.680100px;}
.y1b{bottom:521.655900px;}
.y180{bottom:523.280100px;}
.y12c{bottom:526.880100px;}
.y106{bottom:528.070650px;}
.y1ab{bottom:528.396600px;}
.yab{bottom:529.119450px;}
.y71{bottom:529.563750px;}
.yd2{bottom:530.480100px;}
.y85{bottom:531.516600px;}
.y28{bottom:531.753900px;}
.y14c{bottom:534.132000px;}
.y168{bottom:536.947800px;}
.y57{bottom:541.280100px;}
.y1a{bottom:543.255900px;}
.y1aa{bottom:544.596600px;}
.y17f{bottom:544.880100px;}
.y70{bottom:545.763750px;}
.y12b{bottom:548.480100px;}
.y105{bottom:549.670650px;}
.yaa{bottom:550.719450px;}
.yd1{bottom:552.080100px;}
.y84{bottom:553.116600px;}
.y27{bottom:553.353900px;}
.y14b{bottom:555.732000px;}
.y167{bottom:558.547800px;}
.y1a9{bottom:560.792400px;}
.yee{bottom:560.995050px;}
.y56{bottom:562.880100px;}
.y19{bottom:564.855900px;}
.y17e{bottom:566.480100px;}
.y104{bottom:571.270650px;}
.ya9{bottom:572.319450px;}
.yd0{bottom:573.680100px;}
.y83{bottom:574.716600px;}
.y26{bottom:574.953900px;}
.y14a{bottom:577.332150px;}
.y166{bottom:580.147800px;}
.yed{bottom:582.595050px;}
.y55{bottom:584.480100px;}
.y1a8{bottom:585.497400px;}
.y18{bottom:586.455900px;}
.y12a{bottom:588.080100px;}
.y103{bottom:592.870650px;}
.ya8{bottom:593.919450px;}
.ycf{bottom:595.280100px;}
.y82{bottom:596.316600px;}
.y25{bottom:596.553900px;}
.y149{bottom:598.932150px;}
.y1a7{bottom:601.697400px;}
.y165{bottom:601.747800px;}
.yec{bottom:604.195050px;}
.y54{bottom:606.080100px;}
.y17{bottom:608.055900px;}
.y129{bottom:609.680100px;}
.ya7{bottom:615.519450px;}
.yce{bottom:616.880100px;}
.y1a6{bottom:617.897400px;}
.y81{bottom:617.916600px;}
.y148{bottom:620.532150px;}
.y164{bottom:623.347800px;}
.yeb{bottom:625.795050px;}
.y53{bottom:627.680100px;}
.y16{bottom:629.655900px;}
.y128{bottom:631.280100px;}
.y102{bottom:632.470650px;}
.y1a5{bottom:634.097400px;}
.ya6{bottom:637.119450px;}
.ycd{bottom:638.480100px;}
.y80{bottom:639.516600px;}
.y147{bottom:642.132150px;}
.yea{bottom:647.395050px;}
.y52{bottom:649.280100px;}
.y1a4{bottom:650.297400px;}
.y127{bottom:652.880100px;}
.y101{bottom:654.070650px;}
.ya5{bottom:658.719450px;}
.y7f{bottom:661.116600px;}
.y146{bottom:663.732150px;}
.y15{bottom:665.543400px;}
.y163{bottom:666.546000px;}
.y51{bottom:670.880100px;}
.y126{bottom:674.480100px;}
.y1a3{bottom:675.002400px;}
.y100{bottom:675.670650px;}
.ycc{bottom:678.080100px;}
.ya4{bottom:680.319450px;}
.y7e{bottom:682.716600px;}
.y145{bottom:685.332150px;}
.y14{bottom:687.143400px;}
.y1a2{bottom:691.202400px;}
.y50{bottom:692.480100px;}
.y125{bottom:696.080100px;}
.yff{bottom:697.270650px;}
.y162{bottom:698.388000px;}
.ycb{bottom:699.680100px;}
.ya3{bottom:701.919450px;}
.y7d{bottom:704.316600px;}
.ye9{bottom:704.995050px;}
.y144{bottom:706.932000px;}
.y13{bottom:708.743400px;}
.y4f{bottom:714.080100px;}
.y1a1{bottom:715.907400px;}
.y124{bottom:717.680100px;}
.yfe{bottom:718.870650px;}
.y161{bottom:719.984100px;}
.yca{bottom:721.280100px;}
.ya2{bottom:723.519450px;}
.y7c{bottom:725.916600px;}
.ye8{bottom:726.595050px;}
.y143{bottom:728.532000px;}
.y12{bottom:730.343400px;}
.y1a0{bottom:732.107400px;}
.y17d{bottom:735.677400px;}
.y4e{bottom:735.680100px;}
.y123{bottom:739.280100px;}
.yfd{bottom:740.470650px;}
.yc9{bottom:742.880100px;}
.ya1{bottom:745.119450px;}
.y7b{bottom:747.516600px;}
.ye7{bottom:748.195050px;}
.y142{bottom:750.132150px;}
.y11{bottom:751.943400px;}
.y19f{bottom:756.812400px;}
.y17c{bottom:757.277400px;}
.y4d{bottom:757.280100px;}
.y122{bottom:760.880100px;}
.yc8{bottom:764.480100px;}
.ya0{bottom:766.719450px;}
.y7a{bottom:769.116600px;}
.ye6{bottom:769.795050px;}
.y141{bottom:771.732150px;}
.y19e{bottom:773.012400px;}
.y10{bottom:773.543400px;}
.y17b{bottom:778.877400px;}
.y4c{bottom:778.880100px;}
.yfc{bottom:780.070650px;}
.y121{bottom:782.480100px;}
.yc7{bottom:786.080100px;}
.y9f{bottom:788.319450px;}
.y19d{bottom:789.212400px;}
.y79{bottom:790.716600px;}
.ye5{bottom:791.390100px;}
.y140{bottom:793.332150px;}
.yf{bottom:795.143400px;}
.y17a{bottom:800.477400px;}
.y4b{bottom:800.480100px;}
.yfb{bottom:801.670650px;}
.y120{bottom:804.080100px;}
.yc6{bottom:807.680100px;}
.y9e{bottom:809.919450px;}
.y78{bottom:812.316600px;}
.y19c{bottom:813.916350px;}
.y13f{bottom:814.932150px;}
.ye{bottom:816.743400px;}
.y179{bottom:822.077400px;}
.y4a{bottom:822.080100px;}
.yfa{bottom:823.270650px;}
.y11f{bottom:825.680100px;}
.yc5{bottom:829.280100px;}
.y9d{bottom:831.519450px;}
.y77{bottom:833.916600px;}
.y13e{bottom:836.532150px;}
.yd{bottom:838.343400px;}
.y178{bottom:843.677400px;}
.y49{bottom:843.680100px;}
.yf9{bottom:844.870650px;}
.y11e{bottom:847.280100px;}
.yc4{bottom:850.880100px;}
.y9c{bottom:853.119450px;}
.y76{bottom:855.516750px;}
.y19b{bottom:857.116350px;}
.y13d{bottom:858.132150px;}
.yc{bottom:859.943400px;}
.y177{bottom:865.277400px;}
.y48{bottom:865.280100px;}
.y11d{bottom:868.880100px;}
.yc3{bottom:872.480100px;}
.y9b{bottom:874.719450px;}
.y19a{bottom:878.716350px;}
.y13c{bottom:879.732150px;}
.yb{bottom:881.543400px;}
.y11b{bottom:882.812250px;}
.y176{bottom:886.877400px;}
.y47{bottom:886.880100px;}
.y11c{bottom:890.480100px;}
.y9a{bottom:896.319450px;}
.y75{bottom:897.426750px;}
.y11a{bottom:899.012250px;}
.y199{bottom:900.316350px;}
.y13b{bottom:901.332150px;}
.ya{bottom:903.143400px;}
.y175{bottom:908.477400px;}
.y46{bottom:908.480100px;}
.yc2{bottom:912.080100px;}
.y74{bottom:915.426750px;}
.y198{bottom:921.916350px;}
.y13a{bottom:922.932150px;}
.y9{bottom:924.743400px;}
.y174{bottom:930.077400px;}
.y45{bottom:930.080100px;}
.yc1{bottom:933.680100px;}
.y99{bottom:935.864250px;}
.y197{bottom:943.516350px;}
.y139{bottom:944.534100px;}
.y8{bottom:946.343400px;}
.y173{bottom:951.677400px;}
.y44{bottom:951.680100px;}
.y98{bottom:952.064250px;}
.yc0{bottom:955.280100px;}
.y196{bottom:965.105400px;}
.y3{bottom:968.333100px;}
.y172{bottom:973.277400px;}
.y43{bottom:973.280100px;}
.ybf{bottom:976.880100px;}
.y195{bottom:986.705400px;}
.y171{bottom:994.877400px;}
.y42{bottom:994.880100px;}
.y160{bottom:998.480100px;}
.y194{bottom:1008.305400px;}
.y170{bottom:1015.814100px;}
.y41{bottom:1016.480100px;}
.y15f{bottom:1020.080100px;}
.y2{bottom:1028.333100px;}
.y193{bottom:1029.905400px;}
.y40{bottom:1038.080100px;}
.y15e{bottom:1041.680100px;}
.y192{bottom:1051.505400px;}
.y3f{bottom:1059.680100px;}
.y1{bottom:1060.733100px;}
.y15d{bottom:1063.280100px;}
.y3e{bottom:1081.280100px;}
.h11{height:58.644000px;}
.h12{height:58.660800px;}
.ha{height:65.160000px;}
.h5{height:68.418000px;}
.hb{height:69.984000px;}
.h7{height:77.760000px;}
.h8{height:78.192000px;}
.hc{height:78.192600px;}
.he{height:78.199200px;}
.hd{height:78.207600px;}
.h10{height:78.235800px;}
.hf{height:80.856000px;}
.h6{height:93.312000px;}
.h3{height:102.612000px;}
.h4{height:104.256000px;}
.h9{height:132.402000px;}
.h2{height:139.968000px;}
.h1{height:1207.500000px;}
.h0{height:1207.558500px;}
.w0{width:943.936500px;}
.w1{width:944.250000px;}
.x0{left:0.000000px;}
.x9{left:93.927450px;}
.x1{left:99.921300px;}
.x3a{left:103.137000px;}
.x2{left:107.484450px;}
.x55{left:110.487300px;}
.x3e{left:111.664350px;}
.x18{left:112.672350px;}
.x29{left:120.492000px;}
.x36{left:125.990550px;}
.x34{left:130.578600px;}
.x35{left:153.478500px;}
.x38{left:155.874450px;}
.x3d{left:158.515050px;}
.x4c{left:163.668750px;}
.x53{left:167.079300px;}
.x4a{left:174.669150px;}
.x58{left:189.507300px;}
.x57{left:196.739400px;}
.x2b{left:203.811150px;}
.x10{left:208.568400px;}
.x5d{left:213.618750px;}
.x4b{left:214.753800px;}
.x3f{left:227.492400px;}
.x2a{left:232.609500px;}
.x4d{left:245.125650px;}
.x3c{left:247.633050px;}
.x1f{left:257.745300px;}
.x1d{left:263.307300px;}
.x3b{left:269.960700px;}
.x56{left:292.814550px;}
.x1a{left:299.801850px;}
.x1c{left:301.422000px;}
.x48{left:308.112900px;}
.x39{left:313.269000px;}
.x21{left:316.155300px;}
.x20{left:321.519300px;}
.x1e{left:332.085300px;}
.x49{left:343.509150px;}
.x3{left:345.679200px;}
.x54{left:360.309300px;}
.x33{left:376.602600px;}
.x37{left:393.204450px;}
.x52{left:399.801300px;}
.xf{left:401.776500px;}
.x19{left:420.603150px;}
.x47{left:426.795150px;}
.x22{left:444.711300px;}
.x7{left:463.101750px;}
.x32{left:474.478500px;}
.xc{left:480.472500px;}
.x59{left:492.166350px;}
.x12{left:493.228350px;}
.x31{left:496.299300px;}
.x45{left:499.996200px;}
.x23{left:504.974850px;}
.x4f{left:507.563850px;}
.x5{left:510.110550px;}
.x43{left:530.231250px;}
.x26{left:534.631350px;}
.x25{left:535.693200px;}
.xe{left:546.835050px;}
.x15{left:548.476650px;}
.x4{left:555.980100px;}
.x27{left:564.274350px;}
.x1b{left:573.906000px;}
.x46{left:579.712650px;}
.x24{left:583.993200px;}
.x44{left:602.861250px;}
.x6{left:603.917550px;}
.x42{left:608.320350px;}
.x16{left:630.712350px;}
.x41{left:633.074550px;}
.x2e{left:636.878550px;}
.x2f{left:666.037800px;}
.x17{left:679.738500px;}
.x2c{left:681.622650px;}
.x28{left:703.678200px;}
.x11{left:706.162500px;}
.x51{left:714.238500px;}
.xa{left:726.524250px;}
.x2d{left:738.970500px;}
.x50{left:742.516500px;}
.x5a{left:743.698350px;}
.x8{left:758.045400px;}
.xb{left:761.270700px;}
.x5b{left:771.071550px;}
.x13{left:778.510350px;}
.x4e{left:785.177850px;}
.x30{left:786.184500px;}
.xd{left:788.110500px;}
.x5c{left:798.814350px;}
.x40{left:813.752250px;}
.x14{left:838.018350px;}
@media print{
.v9{vertical-align:-19.536000pt;}
.v7{vertical-align:-15.984000pt;}
.v3{vertical-align:-3.466667pt;}
.v1{vertical-align:-2.112000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.368000pt;}
.v4{vertical-align:3.466667pt;}
.v8{vertical-align:15.984000pt;}
.v6{vertical-align:21.312000pt;}
.v2{vertical-align:59.770667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008000pt;}
.lsa{letter-spacing:1.601600pt;}
.ls3{letter-spacing:2.240000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.776000pt;}
.ls6{letter-spacing:18.288363pt;}
.lse{letter-spacing:18.385600pt;}
.lsc{letter-spacing:18.795200pt;}
.ls8{letter-spacing:19.092800pt;}
.ls5{letter-spacing:19.429867pt;}
.ls0{letter-spacing:20.941867pt;}
.lsd{letter-spacing:22.776363pt;}
.ls9{letter-spacing:22.912533pt;}
.ls7{letter-spacing:36.452267pt;}
.ws0{word-spacing:-69.813333pt;}
.ws29{word-spacing:-21.312000pt;}
.ws62{word-spacing:-19.536000pt;}
.ws10{word-spacing:-17.760000pt;}
.ws22{word-spacing:-15.984000pt;}
.ws34{word-spacing:-12.424896pt;}
.ws5{word-spacing:-12.320000pt;}
.ws63{word-spacing:-11.389488pt;}
.ws3b{word-spacing:-11.088000pt;}
.ws5c{word-spacing:-9.318672pt;}
.ws4c{word-spacing:-5.568000pt;}
.ws41{word-spacing:-4.928000pt;}
.ws18{word-spacing:-4.288000pt;}
.ws4e{word-spacing:-4.032000pt;}
.ws80{word-spacing:-3.776000pt;}
.ws1e{word-spacing:-3.712000pt;}
.ws1f{word-spacing:-3.456000pt;}
.ws1c{word-spacing:-3.392000pt;}
.ws2d{word-spacing:-3.264000pt;}
.ws5d{word-spacing:-3.008000pt;}
.ws42{word-spacing:-2.816000pt;}
.ws86{word-spacing:-2.688000pt;}
.ws56{word-spacing:-2.560000pt;}
.ws87{word-spacing:-2.496000pt;}
.ws48{word-spacing:-2.432000pt;}
.ws4d{word-spacing:-2.240000pt;}
.wsc{word-spacing:-2.176000pt;}
.ws58{word-spacing:-2.112000pt;}
.ws24{word-spacing:-2.048000pt;}
.ws55{word-spacing:-1.792000pt;}
.ws67{word-spacing:-1.536000pt;}
.ws73{word-spacing:-1.472000pt;}
.ws45{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws68{word-spacing:-1.152000pt;}
.ws53{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.832000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws78{word-spacing:-0.576000pt;}
.ws59{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.432000pt;}
.ws6{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.128000pt;}
.ws12{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws47{word-spacing:0.256000pt;}
.ws82{word-spacing:0.320000pt;}
.ws6b{word-spacing:0.448000pt;}
.ws97{word-spacing:0.576000pt;}
.ws2{word-spacing:0.640000pt;}
.ws96{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.832000pt;}
.ws7e{word-spacing:1.344000pt;}
.ws14{word-spacing:1.408000pt;}
.ws89{word-spacing:1.472000pt;}
.ws3{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.728000pt;}
.ws16{word-spacing:1.920000pt;}
.wsd{word-spacing:1.984000pt;}
.ws5a{word-spacing:2.048000pt;}
.ws2f{word-spacing:2.112000pt;}
.wsa{word-spacing:2.176000pt;}
.ws77{word-spacing:2.400000pt;}
.ws5f{word-spacing:2.496000pt;}
.ws72{word-spacing:2.688000pt;}
.ws88{word-spacing:2.810667pt;}
.ws1d{word-spacing:2.880000pt;}
.ws49{word-spacing:2.944000pt;}
.ws38{word-spacing:3.008000pt;}
.ws85{word-spacing:3.072000pt;}
.ws76{word-spacing:3.200000pt;}
.ws57{word-spacing:3.328000pt;}
.ws30{word-spacing:3.456000pt;}
.ws36{word-spacing:3.520000pt;}
.ws13{word-spacing:3.776000pt;}
.ws93{word-spacing:3.840000pt;}
.ws7{word-spacing:3.904000pt;}
.ws65{word-spacing:3.968000pt;}
.ws8b{word-spacing:4.032000pt;}
.ws4b{word-spacing:4.352000pt;}
.ws1a{word-spacing:4.480000pt;}
.ws75{word-spacing:5.088000pt;}
.ws60{word-spacing:5.326400pt;}
.ws7b{word-spacing:5.327467pt;}
.ws3c{word-spacing:5.440000pt;}
.wsb{word-spacing:5.632000pt;}
.ws91{word-spacing:5.888000pt;}
.ws28{word-spacing:6.016000pt;}
.ws33{word-spacing:6.090667pt;}
.ws95{word-spacing:6.144000pt;}
.ws37{word-spacing:6.272000pt;}
.ws11{word-spacing:6.400000pt;}
.ws92{word-spacing:6.464000pt;}
.ws7d{word-spacing:6.674667pt;}
.ws4{word-spacing:6.931733pt;}
.ws4a{word-spacing:6.976000pt;}
.ws83{word-spacing:7.296000pt;}
.ws15{word-spacing:7.488000pt;}
.ws46{word-spacing:7.552000pt;}
.ws27{word-spacing:7.680000pt;}
.ws8e{word-spacing:7.744000pt;}
.ws52{word-spacing:7.808000pt;}
.ws3d{word-spacing:7.872000pt;}
.ws90{word-spacing:7.936000pt;}
.ws2b{word-spacing:8.192000pt;}
.ws2c{word-spacing:8.202667pt;}
.ws32{word-spacing:8.208000pt;}
.ws3f{word-spacing:8.256000pt;}
.ws26{word-spacing:8.448000pt;}
.ws23{word-spacing:8.512000pt;}
.ws71{word-spacing:8.640000pt;}
.ws64{word-spacing:8.768000pt;}
.ws8{word-spacing:9.088000pt;}
.ws40{word-spacing:9.536000pt;}
.ws19{word-spacing:9.600000pt;}
.ws70{word-spacing:9.664000pt;}
.ws74{word-spacing:9.728000pt;}
.ws35{word-spacing:9.984000pt;}
.ws1b{word-spacing:10.432000pt;}
.ws84{word-spacing:10.624000pt;}
.ws7c{word-spacing:10.854933pt;}
.ws50{word-spacing:10.880000pt;}
.ws31{word-spacing:10.944000pt;}
.ws7f{word-spacing:11.008000pt;}
.ws8c{word-spacing:11.072000pt;}
.ws8a{word-spacing:11.088000pt;}
.ws54{word-spacing:11.456000pt;}
.ws6c{word-spacing:11.520000pt;}
.wse{word-spacing:11.904000pt;}
.ws44{word-spacing:12.032000pt;}
.ws3e{word-spacing:12.288000pt;}
.ws43{word-spacing:12.320000pt;}
.wsf{word-spacing:12.416000pt;}
.ws9{word-spacing:12.800000pt;}
.ws66{word-spacing:13.056000pt;}
.ws2e{word-spacing:13.888000pt;}
.ws5b{word-spacing:14.528000pt;}
.ws61{word-spacing:14.720000pt;}
.ws5e{word-spacing:15.104000pt;}
.ws20{word-spacing:15.424000pt;}
.ws94{word-spacing:15.488000pt;}
.ws4f{word-spacing:16.128000pt;}
.ws51{word-spacing:16.512000pt;}
.ws98{word-spacing:17.536000pt;}
.ws39{word-spacing:17.600000pt;}
.ws81{word-spacing:17.728000pt;}
.ws21{word-spacing:19.328000pt;}
.ws6f{word-spacing:19.520000pt;}
.ws8f{word-spacing:19.904000pt;}
.ws6e{word-spacing:20.032000pt;}
.ws69{word-spacing:23.104000pt;}
.ws6d{word-spacing:24.640000pt;}
.ws7a{word-spacing:25.280000pt;}
._36{margin-left:-7.424000pt;}
._2c{margin-left:-5.793067pt;}
._4{margin-left:-3.712000pt;}
._12{margin-left:-2.176000pt;}
._1{margin-left:-1.248000pt;}
._7{width:1.152000pt;}
._18{width:2.688000pt;}
._24{width:3.584000pt;}
._e{width:4.544000pt;}
._15{width:5.888000pt;}
._1a{width:7.488000pt;}
._21{width:9.152000pt;}
._1e{width:10.368000pt;}
._28{width:11.296000pt;}
._14{width:12.320000pt;}
._20{width:13.248000pt;}
._26{width:14.561067pt;}
._22{width:15.616000pt;}
._25{width:16.576000pt;}
._3{width:17.600000pt;}
._10{width:19.040000pt;}
._6{width:20.032000pt;}
._0{width:20.928000pt;}
._2{width:22.208000pt;}
._a{width:23.616000pt;}
._17{width:24.576000pt;}
._c{width:25.856000pt;}
._16{width:27.200000pt;}
._1b{width:28.800000pt;}
._b{width:30.400000pt;}
._29{width:31.313067pt;}
._19{width:32.288000pt;}
._1d{width:33.280000pt;}
._9{width:34.381867pt;}
._1f{width:35.272533pt;}
._23{width:36.928000pt;}
._11{width:37.888000pt;}
._f{width:39.328000pt;}
._27{width:40.544000pt;}
._13{width:41.472000pt;}
._2d{width:42.589867pt;}
._5{width:43.904000pt;}
._8{width:44.992000pt;}
._2f{width:46.144000pt;}
._2b{width:47.936000pt;}
._37{width:50.304000pt;}
._d{width:51.712000pt;}
._32{width:57.216000pt;}
._30{width:58.416000pt;}
._2a{width:64.512000pt;}
._33{width:67.812267pt;}
._2e{width:85.282133pt;}
._1c{width:105.486400pt;}
._34{width:708.236267pt;}
._35{width:724.492267pt;}
._31{width:793.607467pt;}
.fs8{font-size:27.984000pt;}
.fsa{font-size:34.202667pt;}
.fs7{font-size:37.312000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:36.456533pt;}
.y73{bottom:37.023467pt;}
.y7{bottom:37.212533pt;}
.y3c{bottom:94.014400pt;}
.y97{bottom:94.859200pt;}
.y6a{bottom:100.337867pt;}
.y119{bottom:104.596133pt;}
.y16f{bottom:105.351867pt;}
.ybe{bottom:105.528400pt;}
.y72{bottom:105.959333pt;}
.ye4{bottom:109.937867pt;}
.y3b{bottom:110.014400pt;}
.y3a{bottom:111.071733pt;}
.y96{bottom:114.059200pt;}
.y138{bottom:114.309333pt;}
.y69{bottom:119.537867pt;}
.y16e{bottom:119.751867pt;}
.y118{bottom:123.796133pt;}
.ybd{bottom:124.728400pt;}
.y137{bottom:128.709333pt;}
.ye3{bottom:129.137867pt;}
.y39{bottom:130.271733pt;}
.y95{bottom:133.259200pt;}
.y191{bottom:138.735467pt;}
.y6f{bottom:138.737867pt;}
.yf8{bottom:141.243200pt;}
.y117{bottom:142.996133pt;}
.y136{bottom:143.109333pt;}
.ybc{bottom:143.928400pt;}
.ye2{bottom:148.337867pt;}
.y38{bottom:149.471733pt;}
.y1be{bottom:150.725867pt;}
.y6{bottom:150.744267pt;}
.y94{bottom:152.459200pt;}
.y68{bottom:154.737867pt;}
.yf7{bottom:155.643200pt;}
.y135{bottom:157.509333pt;}
.y190{bottom:157.935467pt;}
.y6e{bottom:157.937867pt;}
.y116{bottom:162.196133pt;}
.ybb{bottom:163.128400pt;}
.y1bd{bottom:165.125867pt;}
.ye1{bottom:167.537867pt;}
.y15c{bottom:167.584000pt;}
.y37{bottom:168.671733pt;}
.y5{bottom:169.406267pt;}
.y93{bottom:171.659200pt;}
.y134{bottom:171.909333pt;}
.y67{bottom:173.937867pt;}
.y18f{bottom:177.135467pt;}
.y6d{bottom:177.137867pt;}
.y1bc{bottom:179.525867pt;}
.y115{bottom:181.396133pt;}
.yba{bottom:182.328400pt;}
.y15b{bottom:186.784000pt;}
.y36{bottom:187.871733pt;}
.y92{bottom:190.859200pt;}
.y66{bottom:193.137867pt;}
.y18e{bottom:196.335467pt;}
.y6c{bottom:196.337867pt;}
.y114{bottom:200.596133pt;}
.y1bb{bottom:201.485867pt;}
.yb9{bottom:201.528400pt;}
.ye0{bottom:202.737867pt;}
.y15a{bottom:205.984000pt;}
.y35{bottom:207.071733pt;}
.y4{bottom:208.072933pt;}
.y91{bottom:210.059200pt;}
.y65{bottom:212.337867pt;}
.y18d{bottom:215.535467pt;}
.y6b{bottom:215.537867pt;}
.y1ba{bottom:215.885867pt;}
.y113{bottom:219.796133pt;}
.yb8{bottom:220.728400pt;}
.ydf{bottom:221.937867pt;}
.y159{bottom:225.184000pt;}
.y34{bottom:226.271733pt;}
.y90{bottom:229.259200pt;}
.y1b9{bottom:230.285867pt;}
.y64{bottom:231.537867pt;}
.y18c{bottom:234.735467pt;}
.y112{bottom:238.996133pt;}
.yb7{bottom:239.928400pt;}
.yde{bottom:241.137867pt;}
.y158{bottom:244.384000pt;}
.y33{bottom:245.471733pt;}
.y8f{bottom:248.459200pt;}
.y63{bottom:250.737867pt;}
.y1b8{bottom:252.245867pt;}
.y16d{bottom:252.942400pt;}
.y18b{bottom:253.935467pt;}
.y111{bottom:258.196133pt;}
.yb6{bottom:259.128400pt;}
.ydd{bottom:260.337867pt;}
.y157{bottom:263.584000pt;}
.y1b7{bottom:266.645867pt;}
.y16c{bottom:267.342400pt;}
.y62{bottom:269.937867pt;}
.y18a{bottom:273.135467pt;}
.y24{bottom:274.894133pt;}
.y110{bottom:277.396133pt;}
.yb5{bottom:278.328400pt;}
.ydc{bottom:279.537867pt;}
.y32{bottom:280.670133pt;}
.y1b6{bottom:281.045867pt;}
.y156{bottom:282.784000pt;}
.y8e{bottom:283.659200pt;}
.y61{bottom:289.137867pt;}
.y189{bottom:292.335467pt;}
.y23{bottom:294.094133pt;}
.y1b5{bottom:295.445867pt;}
.y10f{bottom:296.596133pt;}
.yb4{bottom:297.528400pt;}
.ydb{bottom:298.737867pt;}
.y31{bottom:299.870133pt;}
.y155{bottom:301.984000pt;}
.y8d{bottom:302.859200pt;}
.y60{bottom:308.337867pt;}
.y188{bottom:311.535467pt;}
.y22{bottom:313.294133pt;}
.y10e{bottom:315.796133pt;}
.yb3{bottom:316.728400pt;}
.y1b4{bottom:317.405867pt;}
.yda{bottom:317.937867pt;}
.y30{bottom:319.070133pt;}
.y154{bottom:321.184000pt;}
.y8c{bottom:322.059200pt;}
.yf6{bottom:326.343067pt;}
.y5f{bottom:327.537867pt;}
.y187{bottom:330.145867pt;}
.y1b3{bottom:331.805867pt;}
.y133{bottom:333.937867pt;}
.y10d{bottom:334.996133pt;}
.yb2{bottom:335.928400pt;}
.yd9{bottom:337.137867pt;}
.y2f{bottom:338.270133pt;}
.y153{bottom:340.384000pt;}
.y8b{bottom:341.259200pt;}
.yf5{bottom:345.543067pt;}
.y1b2{bottom:346.205867pt;}
.y5e{bottom:346.737867pt;}
.y21{bottom:348.494133pt;}
.y186{bottom:349.937867pt;}
.y132{bottom:353.137867pt;}
.y10c{bottom:354.196133pt;}
.yb1{bottom:355.128400pt;}
.yd8{bottom:356.337867pt;}
.y2e{bottom:357.470133pt;}
.y152{bottom:359.584000pt;}
.y8a{bottom:360.459200pt;}
.y1b1{bottom:360.605867pt;}
.yf4{bottom:364.743067pt;}
.y5d{bottom:365.937867pt;}
.y20{bottom:367.694133pt;}
.y185{bottom:369.137867pt;}
.y131{bottom:372.337867pt;}
.y10b{bottom:373.396133pt;}
.yb0{bottom:374.328400pt;}
.yd7{bottom:375.537867pt;}
.y2d{bottom:376.670133pt;}
.y151{bottom:378.784000pt;}
.y89{bottom:379.659200pt;}
.y1b0{bottom:382.565867pt;}
.yf3{bottom:383.943067pt;}
.y5c{bottom:385.137867pt;}
.y1f{bottom:386.894133pt;}
.y184{bottom:388.337867pt;}
.y130{bottom:391.537867pt;}
.y10a{bottom:392.596133pt;}
.yaf{bottom:393.528400pt;}
.yd6{bottom:394.737867pt;}
.y2c{bottom:395.870133pt;}
.y1af{bottom:396.965867pt;}
.y150{bottom:397.984000pt;}
.y88{bottom:398.859200pt;}
.yf2{bottom:403.143067pt;}
.y5b{bottom:404.337867pt;}
.y1e{bottom:406.094133pt;}
.y183{bottom:407.537867pt;}
.y12f{bottom:410.737867pt;}
.y1ae{bottom:411.365867pt;}
.y109{bottom:411.796133pt;}
.yae{bottom:412.728400pt;}
.yd5{bottom:413.937867pt;}
.y2b{bottom:415.070133pt;}
.y14f{bottom:417.184000pt;}
.y87{bottom:418.059200pt;}
.y16b{bottom:419.686933pt;}
.yf1{bottom:422.343067pt;}
.y5a{bottom:423.537867pt;}
.y1d{bottom:425.294133pt;}
.y182{bottom:426.737867pt;}
.y12e{bottom:429.937867pt;}
.y108{bottom:430.996133pt;}
.yad{bottom:431.928400pt;}
.yd4{bottom:433.137867pt;}
.y1ad{bottom:433.325867pt;}
.y2a{bottom:434.270133pt;}
.y14e{bottom:436.384000pt;}
.y86{bottom:437.259200pt;}
.y16a{bottom:438.886933pt;}
.yf0{bottom:441.543067pt;}
.y59{bottom:442.737867pt;}
.y1c{bottom:444.494133pt;}
.y181{bottom:445.937867pt;}
.y1ac{bottom:447.725867pt;}
.y12d{bottom:449.137867pt;}
.y107{bottom:450.196133pt;}
.yac{bottom:451.128400pt;}
.yd3{bottom:452.337867pt;}
.y29{bottom:453.470133pt;}
.y14d{bottom:455.584000pt;}
.y169{bottom:458.086933pt;}
.yef{bottom:460.742267pt;}
.y58{bottom:461.937867pt;}
.y1b{bottom:463.694133pt;}
.y180{bottom:465.137867pt;}
.y12c{bottom:468.337867pt;}
.y106{bottom:469.396133pt;}
.y1ab{bottom:469.685867pt;}
.yab{bottom:470.328400pt;}
.y71{bottom:470.723333pt;}
.yd2{bottom:471.537867pt;}
.y85{bottom:472.459200pt;}
.y28{bottom:472.670133pt;}
.y14c{bottom:474.784000pt;}
.y168{bottom:477.286933pt;}
.y57{bottom:481.137867pt;}
.y1a{bottom:482.894133pt;}
.y1aa{bottom:484.085867pt;}
.y17f{bottom:484.337867pt;}
.y70{bottom:485.123333pt;}
.y12b{bottom:487.537867pt;}
.y105{bottom:488.596133pt;}
.yaa{bottom:489.528400pt;}
.yd1{bottom:490.737867pt;}
.y84{bottom:491.659200pt;}
.y27{bottom:491.870133pt;}
.y14b{bottom:493.984000pt;}
.y167{bottom:496.486933pt;}
.y1a9{bottom:498.482133pt;}
.yee{bottom:498.662267pt;}
.y56{bottom:500.337867pt;}
.y19{bottom:502.094133pt;}
.y17e{bottom:503.537867pt;}
.y104{bottom:507.796133pt;}
.ya9{bottom:508.728400pt;}
.yd0{bottom:509.937867pt;}
.y83{bottom:510.859200pt;}
.y26{bottom:511.070133pt;}
.y14a{bottom:513.184133pt;}
.y166{bottom:515.686933pt;}
.yed{bottom:517.862267pt;}
.y55{bottom:519.537867pt;}
.y1a8{bottom:520.442133pt;}
.y18{bottom:521.294133pt;}
.y12a{bottom:522.737867pt;}
.y103{bottom:526.996133pt;}
.ya8{bottom:527.928400pt;}
.ycf{bottom:529.137867pt;}
.y82{bottom:530.059200pt;}
.y25{bottom:530.270133pt;}
.y149{bottom:532.384133pt;}
.y1a7{bottom:534.842133pt;}
.y165{bottom:534.886933pt;}
.yec{bottom:537.062267pt;}
.y54{bottom:538.737867pt;}
.y17{bottom:540.494133pt;}
.y129{bottom:541.937867pt;}
.ya7{bottom:547.128400pt;}
.yce{bottom:548.337867pt;}
.y1a6{bottom:549.242133pt;}
.y81{bottom:549.259200pt;}
.y148{bottom:551.584133pt;}
.y164{bottom:554.086933pt;}
.yeb{bottom:556.262267pt;}
.y53{bottom:557.937867pt;}
.y16{bottom:559.694133pt;}
.y128{bottom:561.137867pt;}
.y102{bottom:562.196133pt;}
.y1a5{bottom:563.642133pt;}
.ya6{bottom:566.328400pt;}
.ycd{bottom:567.537867pt;}
.y80{bottom:568.459200pt;}
.y147{bottom:570.784133pt;}
.yea{bottom:575.462267pt;}
.y52{bottom:577.137867pt;}
.y1a4{bottom:578.042133pt;}
.y127{bottom:580.337867pt;}
.y101{bottom:581.396133pt;}
.ya5{bottom:585.528400pt;}
.y7f{bottom:587.659200pt;}
.y146{bottom:589.984133pt;}
.y15{bottom:591.594133pt;}
.y163{bottom:592.485333pt;}
.y51{bottom:596.337867pt;}
.y126{bottom:599.537867pt;}
.y1a3{bottom:600.002133pt;}
.y100{bottom:600.596133pt;}
.ycc{bottom:602.737867pt;}
.ya4{bottom:604.728400pt;}
.y7e{bottom:606.859200pt;}
.y145{bottom:609.184133pt;}
.y14{bottom:610.794133pt;}
.y1a2{bottom:614.402133pt;}
.y50{bottom:615.537867pt;}
.y125{bottom:618.737867pt;}
.yff{bottom:619.796133pt;}
.y162{bottom:620.789333pt;}
.ycb{bottom:621.937867pt;}
.ya3{bottom:623.928400pt;}
.y7d{bottom:626.059200pt;}
.ye9{bottom:626.662267pt;}
.y144{bottom:628.384000pt;}
.y13{bottom:629.994133pt;}
.y4f{bottom:634.737867pt;}
.y1a1{bottom:636.362133pt;}
.y124{bottom:637.937867pt;}
.yfe{bottom:638.996133pt;}
.y161{bottom:639.985867pt;}
.yca{bottom:641.137867pt;}
.ya2{bottom:643.128400pt;}
.y7c{bottom:645.259200pt;}
.ye8{bottom:645.862267pt;}
.y143{bottom:647.584000pt;}
.y12{bottom:649.194133pt;}
.y1a0{bottom:650.762133pt;}
.y17d{bottom:653.935467pt;}
.y4e{bottom:653.937867pt;}
.y123{bottom:657.137867pt;}
.yfd{bottom:658.196133pt;}
.yc9{bottom:660.337867pt;}
.ya1{bottom:662.328400pt;}
.y7b{bottom:664.459200pt;}
.ye7{bottom:665.062267pt;}
.y142{bottom:666.784133pt;}
.y11{bottom:668.394133pt;}
.y19f{bottom:672.722133pt;}
.y17c{bottom:673.135467pt;}
.y4d{bottom:673.137867pt;}
.y122{bottom:676.337867pt;}
.yc8{bottom:679.537867pt;}
.ya0{bottom:681.528400pt;}
.y7a{bottom:683.659200pt;}
.ye6{bottom:684.262267pt;}
.y141{bottom:685.984133pt;}
.y19e{bottom:687.122133pt;}
.y10{bottom:687.594133pt;}
.y17b{bottom:692.335467pt;}
.y4c{bottom:692.337867pt;}
.yfc{bottom:693.396133pt;}
.y121{bottom:695.537867pt;}
.yc7{bottom:698.737867pt;}
.y9f{bottom:700.728400pt;}
.y19d{bottom:701.522133pt;}
.y79{bottom:702.859200pt;}
.ye5{bottom:703.457867pt;}
.y140{bottom:705.184133pt;}
.yf{bottom:706.794133pt;}
.y17a{bottom:711.535467pt;}
.y4b{bottom:711.537867pt;}
.yfb{bottom:712.596133pt;}
.y120{bottom:714.737867pt;}
.yc6{bottom:717.937867pt;}
.y9e{bottom:719.928400pt;}
.y78{bottom:722.059200pt;}
.y19c{bottom:723.481200pt;}
.y13f{bottom:724.384133pt;}
.ye{bottom:725.994133pt;}
.y179{bottom:730.735467pt;}
.y4a{bottom:730.737867pt;}
.yfa{bottom:731.796133pt;}
.y11f{bottom:733.937867pt;}
.yc5{bottom:737.137867pt;}
.y9d{bottom:739.128400pt;}
.y77{bottom:741.259200pt;}
.y13e{bottom:743.584133pt;}
.yd{bottom:745.194133pt;}
.y178{bottom:749.935467pt;}
.y49{bottom:749.937867pt;}
.yf9{bottom:750.996133pt;}
.y11e{bottom:753.137867pt;}
.yc4{bottom:756.337867pt;}
.y9c{bottom:758.328400pt;}
.y76{bottom:760.459333pt;}
.y19b{bottom:761.881200pt;}
.y13d{bottom:762.784133pt;}
.yc{bottom:764.394133pt;}
.y177{bottom:769.135467pt;}
.y48{bottom:769.137867pt;}
.y11d{bottom:772.337867pt;}
.yc3{bottom:775.537867pt;}
.y9b{bottom:777.528400pt;}
.y19a{bottom:781.081200pt;}
.y13c{bottom:781.984133pt;}
.yb{bottom:783.594133pt;}
.y11b{bottom:784.722000pt;}
.y176{bottom:788.335467pt;}
.y47{bottom:788.337867pt;}
.y11c{bottom:791.537867pt;}
.y9a{bottom:796.728400pt;}
.y75{bottom:797.712667pt;}
.y11a{bottom:799.122000pt;}
.y199{bottom:800.281200pt;}
.y13b{bottom:801.184133pt;}
.ya{bottom:802.794133pt;}
.y175{bottom:807.535467pt;}
.y46{bottom:807.537867pt;}
.yc2{bottom:810.737867pt;}
.y74{bottom:813.712667pt;}
.y198{bottom:819.481200pt;}
.y13a{bottom:820.384133pt;}
.y9{bottom:821.994133pt;}
.y174{bottom:826.735467pt;}
.y45{bottom:826.737867pt;}
.yc1{bottom:829.937867pt;}
.y99{bottom:831.879333pt;}
.y197{bottom:838.681200pt;}
.y139{bottom:839.585867pt;}
.y8{bottom:841.194133pt;}
.y173{bottom:845.935467pt;}
.y44{bottom:845.937867pt;}
.y98{bottom:846.279333pt;}
.yc0{bottom:849.137867pt;}
.y196{bottom:857.871467pt;}
.y3{bottom:860.740533pt;}
.y172{bottom:865.135467pt;}
.y43{bottom:865.137867pt;}
.ybf{bottom:868.337867pt;}
.y195{bottom:877.071467pt;}
.y171{bottom:884.335467pt;}
.y42{bottom:884.337867pt;}
.y160{bottom:887.537867pt;}
.y194{bottom:896.271467pt;}
.y170{bottom:902.945867pt;}
.y41{bottom:903.537867pt;}
.y15f{bottom:906.737867pt;}
.y2{bottom:914.073867pt;}
.y193{bottom:915.471467pt;}
.y40{bottom:922.737867pt;}
.y15e{bottom:925.937867pt;}
.y192{bottom:934.671467pt;}
.y3f{bottom:941.937867pt;}
.y1{bottom:942.873867pt;}
.y15d{bottom:945.137867pt;}
.y3e{bottom:961.137867pt;}
.h11{height:52.128000pt;}
.h12{height:52.142933pt;}
.ha{height:57.920000pt;}
.h5{height:60.816000pt;}
.hb{height:62.208000pt;}
.h7{height:69.120000pt;}
.h8{height:69.504000pt;}
.hc{height:69.504533pt;}
.he{height:69.510400pt;}
.hd{height:69.517867pt;}
.h10{height:69.542933pt;}
.hf{height:71.872000pt;}
.h6{height:82.944000pt;}
.h3{height:91.210667pt;}
.h4{height:92.672000pt;}
.h9{height:117.690667pt;}
.h2{height:124.416000pt;}
.h1{height:1073.333333pt;}
.h0{height:1073.385333pt;}
.w0{width:839.054667pt;}
.w1{width:839.333333pt;}
.x0{left:0.000000pt;}
.x9{left:83.491067pt;}
.x1{left:88.818933pt;}
.x3a{left:91.677333pt;}
.x2{left:95.541733pt;}
.x55{left:98.210933pt;}
.x3e{left:99.257200pt;}
.x18{left:100.153200pt;}
.x29{left:107.104000pt;}
.x36{left:111.991600pt;}
.x34{left:116.069867pt;}
.x35{left:136.425333pt;}
.x38{left:138.555067pt;}
.x3d{left:140.902267pt;}
.x4c{left:145.483333pt;}
.x53{left:148.514933pt;}
.x4a{left:155.261467pt;}
.x58{left:168.450933pt;}
.x57{left:174.879467pt;}
.x2b{left:181.165467pt;}
.x10{left:185.394133pt;}
.x5d{left:189.883333pt;}
.x4b{left:190.892267pt;}
.x3f{left:202.215467pt;}
.x2a{left:206.764000pt;}
.x4d{left:217.889467pt;}
.x3c{left:220.118267pt;}
.x1f{left:229.106933pt;}
.x1d{left:234.050933pt;}
.x3b{left:239.965067pt;}
.x56{left:260.279600pt;}
.x1a{left:266.490533pt;}
.x1c{left:267.930667pt;}
.x48{left:273.878133pt;}
.x39{left:278.461333pt;}
.x21{left:281.026933pt;}
.x20{left:285.794933pt;}
.x1e{left:295.186933pt;}
.x49{left:305.341467pt;}
.x3{left:307.270400pt;}
.x54{left:320.274933pt;}
.x33{left:334.757867pt;}
.x37{left:349.515067pt;}
.x52{left:355.378933pt;}
.xf{left:357.134667pt;}
.x19{left:373.869467pt;}
.x47{left:379.373467pt;}
.x22{left:395.298933pt;}
.x7{left:411.646000pt;}
.x32{left:421.758667pt;}
.xc{left:427.086667pt;}
.x59{left:437.481200pt;}
.x12{left:438.425200pt;}
.x31{left:441.154933pt;}
.x45{left:444.441067pt;}
.x23{left:448.866533pt;}
.x4f{left:451.167867pt;}
.x5{left:453.431600pt;}
.x43{left:471.316667pt;}
.x26{left:475.227867pt;}
.x25{left:476.171733pt;}
.xe{left:486.075600pt;}
.x15{left:487.534800pt;}
.x4{left:494.204533pt;}
.x27{left:501.577200pt;}
.x1b{left:510.138667pt;}
.x46{left:515.300133pt;}
.x24{left:519.105067pt;}
.x44{left:535.876667pt;}
.x6{left:536.815600pt;}
.x42{left:540.729200pt;}
.x16{left:560.633200pt;}
.x41{left:562.732933pt;}
.x2e{left:566.114267pt;}
.x2f{left:592.033600pt;}
.x17{left:604.212000pt;}
.x2c{left:605.886800pt;}
.x28{left:625.491733pt;}
.x11{left:627.700000pt;}
.x51{left:634.878667pt;}
.xa{left:645.799333pt;}
.x2d{left:656.862667pt;}
.x50{left:660.014667pt;}
.x5a{left:661.065200pt;}
.x8{left:673.818133pt;}
.xb{left:676.685067pt;}
.x5b{left:685.396933pt;}
.x13{left:692.009200pt;}
.x4e{left:697.935867pt;}
.x30{left:698.830667pt;}
.xd{left:700.542667pt;}
.x5c{left:710.057200pt;}
.x40{left:723.335333pt;}
.x14{left:744.905200pt;}
}




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