
    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_29f8cc3764ce9fe867b508b8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_183b4592ae3a43e041f29617.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_daef2befdf59371f24004a08.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_28bca701b2311a9560625274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_afced36d0140b16781d5d775.woff')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5be2ecf72d2c635553344c8f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_d1a3ae90e0cece1f7ccc770d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.196289;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_bde9f1d9535bcb2b881f7d66.woff')format("woff");}.ffb{font-family:ffb;line-height:1.196289;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_fc219d2b9766550873f391d8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_27fe7ef745ae7ece4ac2909d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.773926;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);}
.va{vertical-align:-70.560000px;}
.v6{vertical-align:-43.380000px;}
.v8{vertical-align:-37.860000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.760000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:20.880000px;}
.v9{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls1a{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.152400px;}
.ls27{letter-spacing:-0.106800px;}
.ls30{letter-spacing:-0.089400px;}
.ls13{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.058320px;}
.lsd{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.022320px;}
.ls2{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.135600px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls32{letter-spacing:0.262200px;}
.ls1e{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.696000px;}
.ls15{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls23{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.224000px;}
.lsb{letter-spacing:1.440000px;}
.ls1f{letter-spacing:2.160000px;}
.ls1c{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.760000px;}
.ls2e{letter-spacing:6.785280px;}
.ls22{letter-spacing:7.920000px;}
.ls2a{letter-spacing:13.439520px;}
.ls2f{letter-spacing:13.737600px;}
.ls2d{letter-spacing:39.905280px;}
.ls6{letter-spacing:71.454240px;}
.ls5{letter-spacing:72.174240px;}
.ls3{letter-spacing:72.360000px;}
.ls4{letter-spacing:92.013120px;}
.ls7{letter-spacing:92.733120px;}
.ls8{letter-spacing:198.120000px;}
.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;}
}
.ws19{word-spacing:-48.384000px;}
.ws15{word-spacing:-48.240000px;}
.wsc{word-spacing:-19.224000px;}
.wsd{word-spacing:-19.152000px;}
.wsb{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.568000px;}
.wsa{word-spacing:-17.064000px;}
.ws20{word-spacing:-16.822200px;}
.ws1d{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.407600px;}
.ws21{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.580000px;}
.ws11{word-spacing:-12.060000px;}
.ws18{word-spacing:-10.934784px;}
.ws14{word-spacing:-10.924560px;}
.ws1b{word-spacing:-10.902240px;}
.ws1e{word-spacing:-10.350600px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
.ws16{word-spacing:166.097040px;}
.ws1c{word-spacing:194.873040px;}
.ws1a{word-spacing:219.413040px;}
.ws17{word-spacing:242.273040px;}
._f{margin-left:-4.536000px;}
._d{margin-left:-3.336000px;}
._4{margin-left:-1.434240px;}
._0{width:1.135440px;}
._5{width:3.053760px;}
._6{width:5.037600px;}
._9{width:6.458400px;}
._10{width:7.505040px;}
._c{width:8.640000px;}
._7{width:9.864000px;}
._8{width:11.004000px;}
._e{width:12.888000px;}
._14{width:14.112000px;}
._b{width:15.552000px;}
._a{width:16.632000px;}
._1c{width:17.890560px;}
._15{width:19.008000px;}
._11{width:20.160000px;}
._12{width:21.501120px;}
._13{width:22.678320px;}
._17{width:24.408000px;}
._16{width:26.352000px;}
._18{width:29.885760px;}
._1b{width:36.763200px;}
._1a{width:40.472640px;}
._19{width:41.509440px;}
._2{width:155.700000px;}
._1{width:183.155520px;}
._3{width:201.060000px;}
._1d{width:2040.893280px;}
.fc9{color:rgb(62,61,64);}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc7{color:rgb(19,20,19);}
.fc3{color:rgb(68,114,196);}
.fc8{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc0{color:rgb(0,176,240);}
.fs9{font-size:12.240000px;}
.fs7{font-size:23.760000px;}
.fs5{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fsb{font-size:48.384000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y1e3{bottom:-71.280150px;}
.y1e2{bottom:-33.120000px;}
.y39{bottom:-12.645000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.240000px;}
.y132{bottom:3.780000px;}
.y138{bottom:4.320000px;}
.y38{bottom:4.680000px;}
.y115{bottom:5.040000px;}
.y11b{bottom:5.070000px;}
.y11e{bottom:5.760000px;}
.y124{bottom:6.300000px;}
.y109{bottom:6.480000px;}
.y1e1{bottom:6.840000px;}
.y12a{bottom:7.200000px;}
.y83{bottom:7.380000px;}
.y13a{bottom:8.280000px;}
.y12e{bottom:13.860000px;}
.y37{bottom:21.960000px;}
.y1e0{bottom:24.120000px;}
.y82{bottom:24.480000px;}
.y4{bottom:26.820000px;}
.y1df{bottom:41.400000px;}
.y81{bottom:41.760000px;}
.y1de{bottom:58.680000px;}
.y80{bottom:59.040000px;}
.y68{bottom:60.120000px;}
.y13b{bottom:61.020000px;}
.y1d7{bottom:64.440000px;}
.ye2{bottom:65.700000px;}
.y35{bottom:69.480000px;}
.y93{bottom:73.800000px;}
.y1d6{bottom:73.980000px;}
.y1dd{bottom:75.960000px;}
.y7f{bottom:76.320000px;}
.y19f{bottom:77.940000px;}
.y192{bottom:78.120000px;}
.y15d{bottom:78.840000px;}
.y107{bottom:81.000000px;}
.y179{bottom:81.180000px;}
.yc0{bottom:83.520000px;}
.y67{bottom:83.880000px;}
.y139{bottom:84.960000px;}
.y171{bottom:86.910000px;}
.ye1{bottom:89.460000px;}
.y1d5{bottom:92.880000px;}
.y34{bottom:93.240000px;}
.y1dc{bottom:93.270000px;}
.y7e{bottom:93.600000px;}
.y19e{bottom:97.020000px;}
.y92{bottom:97.740000px;}
.y16c{bottom:101.190000px;}
.y191{bottom:101.880000px;}
.y15c{bottom:102.780000px;}
.y106{bottom:104.760000px;}
.ybf{bottom:107.280000px;}
.y66{bottom:107.640000px;}
.y1db{bottom:110.370000px;}
.y7d{bottom:110.880000px;}
.y1d4{bottom:111.960000px;}
.y19d{bottom:115.920000px;}
.y33{bottom:117.180000px;}
.y172{bottom:120.705000px;}
.y91{bottom:121.500000px;}
.ye0{bottom:122.220000px;}
.y137{bottom:125.640000px;}
.y161{bottom:126.360000px;}
.y15b{bottom:126.540000px;}
.y1da{bottom:127.650000px;}
.y7c{bottom:127.980000px;}
.y105{bottom:128.520000px;}
.y1d3{bottom:130.860000px;}
.ybe{bottom:131.220000px;}
.y65{bottom:131.400000px;}
.y19c{bottom:135.000000px;}
.y15f{bottom:135.690000px;}
.y32{bottom:140.940000px;}
.y136{bottom:142.920000px;}
.y1d9{bottom:144.930000px;}
.y7b{bottom:145.260000px;}
.y165{bottom:145.830000px;}
.ydf{bottom:145.980000px;}
.y163{bottom:147.165000px;}
.y190{bottom:149.400000px;}
.y1d2{bottom:149.940000px;}
.y15a{bottom:150.300000px;}
.y160{bottom:152.610000px;}
.y19b{bottom:153.930000px;}
.y173{bottom:154.515000px;}
.ybd{bottom:155.010000px;}
.y64{bottom:155.370000px;}
.y135{bottom:160.230000px;}
.y104{bottom:161.310000px;}
.y1d8{bottom:162.210000px;}
.y31{bottom:164.730000px;}
.y162{bottom:166.785000px;}
.y1d1{bottom:168.870000px;}
.y90{bottom:169.050000px;}
.yde{bottom:169.950000px;}
.y19a{bottom:172.830000px;}
.y18f{bottom:173.370000px;}
.y159{bottom:174.090000px;}
.y134{bottom:177.510000px;}
.y167{bottom:177.630000px;}
.ybc{bottom:178.770000px;}
.y164{bottom:184.395000px;}
.y16a{bottom:184.890000px;}
.y103{bottom:185.250000px;}
.y1d0{bottom:187.770000px;}
.y63{bottom:188.130000px;}
.y174{bottom:188.355000px;}
.y30{bottom:188.490000px;}
.y199{bottom:191.910000px;}
.y17d{bottom:192.315000px;}
.y8f{bottom:192.990000px;}
.ydd{bottom:193.710000px;}
.y133{bottom:194.610000px;}
.y18e{bottom:197.130000px;}
.y170{bottom:197.925000px;}
.y158{bottom:198.030000px;}
.ybb{bottom:202.530000px;}
.y169{bottom:206.715000px;}
.y1cf{bottom:206.850000px;}
.y102{bottom:209.010000px;}
.y198{bottom:210.810000px;}
.y166{bottom:211.425000px;}
.y62{bottom:211.890000px;}
.y2f{bottom:212.430000px;}
.y8e{bottom:216.750000px;}
.ydc{bottom:217.470000px;}
.y18d{bottom:220.890000px;}
.y17c{bottom:221.250000px;}
.y157{bottom:221.790000px;}
.y175{bottom:222.150000px;}
.y1ce{bottom:225.750000px;}
.yba{bottom:226.470000px;}
.y16f{bottom:227.010000px;}
.y197{bottom:229.890000px;}
.y131{bottom:231.510000px;}
.y101{bottom:232.770000px;}
.y168{bottom:234.435000px;}
.y61{bottom:235.650000px;}
.y2e{bottom:236.190000px;}
.y8d{bottom:240.510000px;}
.y16d{bottom:241.200000px;}
.ydb{bottom:241.230000px;}
.y18c{bottom:244.650000px;}
.y1cd{bottom:244.830000px;}
.y156{bottom:245.550000px;}
.y196{bottom:248.790000px;}
.y130{bottom:249.330000px;}
.y17b{bottom:250.200000px;}
.yb9{bottom:250.230000px;}
.y16e{bottom:254.055000px;}
.y176{bottom:255.990000px;}
.y100{bottom:256.530000px;}
.y60{bottom:259.590000px;}
.y2d{bottom:259.950000px;}
.y1cc{bottom:263.730000px;}
.y8c{bottom:264.270000px;}
.yda{bottom:265.170000px;}
.y12f{bottom:266.610000px;}
.y195{bottom:267.690000px;}
.y18b{bottom:268.590000px;}
.y155{bottom:269.310000px;}
.yb8{bottom:273.990000px;}
.y17a{bottom:279.150000px;}
.yff{bottom:280.470000px;}
.y1cb{bottom:282.630000px;}
.y5f{bottom:283.350000px;}
.y2c{bottom:283.710000px;}
.y194{bottom:286.770000px;}
.y8b{bottom:288.210000px;}
.y177{bottom:289.800000px;}
.y18a{bottom:292.350000px;}
.y154{bottom:293.250000px;}
.yb7{bottom:297.750000px;}
.yd9{bottom:297.930000px;}
.y12d{bottom:301.710000px;}
.yfe{bottom:304.230000px;}
.y16b{bottom:304.770000px;}
.y5e{bottom:307.110000px;}
.y2b{bottom:307.650000px;}
.y193{bottom:308.370000px;}
.y8a{bottom:311.970000px;}
.y189{bottom:316.110000px;}
.y153{bottom:317.010000px;}
.y1ca{bottom:320.610000px;}
.yb6{bottom:321.690000px;}
.y178{bottom:323.640000px;}
.yfd{bottom:324.390000px;}
.y5d{bottom:330.870000px;}
.y89{bottom:335.730000px;}
.y1c9{bottom:339.690000px;}
.yfc{bottom:339.870000px;}
.y2a{bottom:340.410000px;}
.y152{bottom:340.770000px;}
.yb5{bottom:345.450000px;}
.y12c{bottom:345.630000px;}
.y5c{bottom:354.630000px;}
.y1c8{bottom:358.590000px;}
.y88{bottom:359.490000px;}
.yd8{bottom:360.570000px;}
.yfb{bottom:363.630000px;}
.y29{bottom:364.170000px;}
.y151{bottom:364.530000px;}
.y12b{bottom:368.130000px;}
.yb4{bottom:369.210000px;}
.y1c7{bottom:377.490000px;}
.y5b{bottom:378.570000px;}
.y87{bottom:383.430000px;}
.yd7{bottom:384.330000px;}
.y129{bottom:385.590000px;}
.yfa{bottom:387.570000px;}
.y28{bottom:387.930000px;}
.yb3{bottom:392.970000px;}
.y1c6{bottom:396.570000px;}
.y150{bottom:397.470000px;}
.y5a{bottom:402.375000px;}
.y128{bottom:406.695000px;}
.y86{bottom:407.235000px;}
.yd6{bottom:408.135000px;}
.yf9{bottom:411.375000px;}
.y27{bottom:411.915000px;}
.y1c5{bottom:415.515000px;}
.yb2{bottom:416.955000px;}
.y14f{bottom:421.275000px;}
.y59{bottom:426.135000px;}
.y127{bottom:427.215000px;}
.y85{bottom:430.995000px;}
.yd5{bottom:431.895000px;}
.y1c4{bottom:434.595000px;}
.yf8{bottom:435.135000px;}
.y26{bottom:435.675000px;}
.y14e{bottom:438.735000px;}
.yb1{bottom:440.715000px;}
.y126{bottom:447.555000px;}
.y58{bottom:449.895000px;}
.y84{bottom:453.495000px;}
.yd4{bottom:455.835000px;}
.y14d{bottom:456.015000px;}
.yf7{bottom:458.895000px;}
.y25{bottom:459.435000px;}
.y125{bottom:468.075000px;}
.y7a{bottom:468.255000px;}
.y1c3{bottom:472.575000px;}
.y14c{bottom:473.295000px;}
.yb0{bottom:473.475000px;}
.y57{bottom:473.835000px;}
.yd3{bottom:479.595000px;}
.yf6{bottom:482.835000px;}
.y24{bottom:483.195000px;}
.y123{bottom:488.415000px;}
.y14b{bottom:490.395000px;}
.y1c2{bottom:491.475000px;}
.yaf{bottom:497.235000px;}
.y56{bottom:497.595000px;}
.yf5{bottom:506.595000px;}
.y23{bottom:506.955000px;}
.y14a{bottom:507.675000px;}
.y122{bottom:509.475000px;}
.y1c1{bottom:510.375000px;}
.yd2{bottom:512.355000px;}
.yae{bottom:521.175000px;}
.y55{bottom:521.355000px;}
.y149{bottom:525.675000px;}
.y1c0{bottom:529.455000px;}
.yf4{bottom:530.355000px;}
.y22{bottom:530.895000px;}
.yd1{bottom:536.115000px;}
.y148{bottom:542.955000px;}
.yad{bottom:544.935000px;}
.y54{bottom:545.115000px;}
.y121{bottom:546.015000px;}
.y1bf{bottom:548.355000px;}
.yf3{bottom:550.515000px;}
.y188{bottom:554.115000px;}
.y21{bottom:554.655000px;}
.yd0{bottom:560.055000px;}
.y120{bottom:565.455000px;}
.yf2{bottom:566.175000px;}
.y1be{bottom:567.435000px;}
.yac{bottom:568.695000px;}
.y53{bottom:569.055000px;}
.y147{bottom:576.255000px;}
.y187{bottom:578.055000px;}
.y20{bottom:578.415000px;}
.ycf{bottom:583.815000px;}
.y11f{bottom:585.435000px;}
.y1bd{bottom:586.335000px;}
.yf1{bottom:589.935000px;}
.yab{bottom:592.455000px;}
.y52{bottom:592.815000px;}
.y146{bottom:598.215000px;}
.y186{bottom:601.815000px;}
.y1f{bottom:602.175000px;}
.y1bc{bottom:605.235000px;}
.yce{bottom:607.575000px;}
.y11d{bottom:609.195000px;}
.yf0{bottom:613.695000px;}
.y51{bottom:616.575000px;}
.y145{bottom:620.715000px;}
.y1bb{bottom:624.315000px;}
.yaa{bottom:625.215000px;}
.y185{bottom:625.575000px;}
.y1e{bottom:626.115000px;}
.y78{bottom:628.275000px;}
.y11c{bottom:628.995000px;}
.ycd{bottom:631.335000px;}
.yef{bottom:637.455000px;}
.y50{bottom:640.335000px;}
.y144{bottom:641.055000px;}
.y1ba{bottom:643.215000px;}
.y11a{bottom:648.075000px;}
.ya9{bottom:649.185000px;}
.y184{bottom:649.365000px;}
.y1d{bottom:649.905000px;}
.y77{bottom:650.085000px;}
.ycc{bottom:655.305000px;}
.yee{bottom:661.245000px;}
.y1b9{bottom:662.325000px;}
.y4f{bottom:664.305000px;}
.y119{bottom:667.185000px;}
.y76{bottom:671.145000px;}
.y143{bottom:671.325000px;}
.y15e{bottom:672.300000px;}
.ya8{bottom:672.945000px;}
.y183{bottom:673.305000px;}
.y1c{bottom:673.665000px;}
.ycb{bottom:679.065000px;}
.y1b8{bottom:681.225000px;}
.yed{bottom:685.185000px;}
.y118{bottom:686.265000px;}
.y4e{bottom:688.065000px;}
.y73{bottom:688.425000px;}
.y75{bottom:694.545000px;}
.ya7{bottom:696.705000px;}
.y182{bottom:697.065000px;}
.y1b{bottom:697.425000px;}
.y1b7{bottom:700.125000px;}
.yca{bottom:702.825000px;}
.y117{bottom:705.165000px;}
.y72{bottom:706.425000px;}
.y74{bottom:708.585000px;}
.yec{bottom:708.945000px;}
.y4d{bottom:711.825000px;}
.y1b6{bottom:719.205000px;}
.ya6{bottom:720.465000px;}
.y181{bottom:720.825000px;}
.y1a{bottom:721.365000px;}
.y116{bottom:724.245000px;}
.yc9{bottom:726.585000px;}
.y71{bottom:727.125000px;}
.yeb{bottom:732.705000px;}
.y4c{bottom:735.585000px;}
.y1b5{bottom:738.105000px;}
.y114{bottom:744.045000px;}
.ya5{bottom:744.405000px;}
.y180{bottom:744.585000px;}
.y19{bottom:745.125000px;}
.y70{bottom:747.825000px;}
.yc8{bottom:750.525000px;}
.yea{bottom:756.465000px;}
.y1b4{bottom:757.185000px;}
.y4b{bottom:759.525000px;}
.y6f{bottom:768.525000px;}
.y18{bottom:768.885000px;}
.y1b3{bottom:776.085000px;}
.ya4{bottom:777.165000px;}
.y113{bottom:779.145000px;}
.ye9{bottom:780.405000px;}
.y4a{bottom:783.285000px;}
.y17{bottom:788.865000px;}
.y6e{bottom:789.225000px;}
.y17f{bottom:792.285000px;}
.y1b2{bottom:794.985000px;}
.ya3{bottom:800.925000px;}
.y112{bottom:801.825000px;}
.ye8{bottom:804.165000px;}
.y49{bottom:807.045000px;}
.y16{bottom:808.665000px;}
.y6d{bottom:809.925000px;}
.y1b1{bottom:814.065000px;}
.y17e{bottom:816.045000px;}
.y111{bottom:824.325000px;}
.ya2{bottom:824.685000px;}
.ye7{bottom:827.925000px;}
.y15{bottom:828.465000px;}
.y6c{bottom:830.625000px;}
.yc7{bottom:830.805000px;}
.y1b0{bottom:832.965000px;}
.y48{bottom:839.805000px;}
.ya1{bottom:842.505000px;}
.y110{bottom:848.085000px;}
.y14{bottom:848.445000px;}
.y6b{bottom:851.325000px;}
.ye6{bottom:851.685000px;}
.y1af{bottom:852.045000px;}
.yc6{bottom:854.745000px;}
.ya0{bottom:861.585000px;}
.y47{bottom:863.745000px;}
.y13{bottom:868.245000px;}
.y10f{bottom:869.325000px;}
.y1ae{bottom:870.945000px;}
.y6a{bottom:872.025000px;}
.ye5{bottom:875.625000px;}
.yc5{bottom:878.505000px;}
.y12{bottom:885.165000px;}
.y9f{bottom:885.345000px;}
.y46{bottom:887.505000px;}
.y10e{bottom:889.845000px;}
.y69{bottom:891.645000px;}
.y11{bottom:892.185000px;}
.ye4{bottom:899.430000px;}
.yc4{bottom:902.310000px;}
.y36{bottom:908.070000px;}
.y1ad{bottom:908.970000px;}
.y9e{bottom:909.150000px;}
.y10d{bottom:910.410000px;}
.y45{bottom:911.310000px;}
.ye3{bottom:919.590000px;}
.yc3{bottom:926.070000px;}
.y1ac{bottom:927.870000px;}
.y10c{bottom:930.930000px;}
.y9d{bottom:932.910000px;}
.y44{bottom:935.070000px;}
.y1ab{bottom:946.950000px;}
.yc2{bottom:949.830000px;}
.y10b{bottom:951.270000px;}
.y43{bottom:958.830000px;}
.y9c{bottom:965.850000px;}
.y10{bottom:968.190000px;}
.y10a{bottom:971.790000px;}
.yc1{bottom:973.770000px;}
.y42{bottom:982.770000px;}
.y1aa{bottom:984.930000px;}
.yf{bottom:985.470000px;}
.y9b{bottom:989.610000px;}
.y108{bottom:993.030000px;}
.y1a9{bottom:1003.830000px;}
.y41{bottom:1006.530000px;}
.ye{bottom:1007.970000px;}
.y9a{bottom:1013.370000px;}
.y1a8{bottom:1022.730000px;}
.y142{bottom:1025.070000px;}
.yd{bottom:1025.250000px;}
.y40{bottom:1030.290000px;}
.y99{bottom:1032.450000px;}
.y1a7{bottom:1041.810000px;}
.yc{bottom:1042.530000px;}
.y98{bottom:1045.050000px;}
.y3f{bottom:1054.050000px;}
.yb{bottom:1054.590000px;}
.y1a6{bottom:1060.710000px;}
.y141{bottom:1062.330000px;}
.y97{bottom:1068.990000px;}
.ya{bottom:1071.870000px;}
.y3e{bottom:1077.990000px;}
.y1a5{bottom:1079.790000px;}
.y140{bottom:1081.410000px;}
.y96{bottom:1092.750000px;}
.y9{bottom:1093.110000px;}
.y1a4{bottom:1098.690000px;}
.y13f{bottom:1100.490000px;}
.y3d{bottom:1101.750000px;}
.y8{bottom:1111.650000px;}
.y95{bottom:1116.510000px;}
.y1a3{bottom:1117.590000px;}
.y13e{bottom:1119.390000px;}
.y3c{bottom:1125.510000px;}
.y7{bottom:1135.770000px;}
.y1a2{bottom:1136.670000px;}
.y13d{bottom:1139.190000px;}
.y94{bottom:1140.270000px;}
.y3b{bottom:1149.300000px;}
.y1a1{bottom:1155.600000px;}
.y6{bottom:1158.660000px;}
.y3a{bottom:1173.240000px;}
.y13c{bottom:1174.500000px;}
.y1a0{bottom:1174.680000px;}
.y5{bottom:1175.940000px;}
.y3{bottom:1193.220000px;}
.y2{bottom:1210.320000px;}
.y1{bottom:1227.600000px;}
.h17{height:8.636133px;}
.h15{height:16.764258px;}
.h23{height:17.100000px;}
.h13{height:17.280000px;}
.h26{height:17.316000px;}
.h24{height:17.820000px;}
.h27{height:18.360000px;}
.h1e{height:18.900000px;}
.h1d{height:19.080000px;}
.h1f{height:19.116000px;}
.h25{height:19.620000px;}
.h20{height:19.800000px;}
.h1a{height:20.340000px;}
.h19{height:20.520000px;}
.h1b{height:20.556000px;}
.h21{height:21.096000px;}
.h1c{height:21.240000px;}
.h28{height:22.320000px;}
.h18{height:25.400391px;}
.hb{height:27.109688px;}
.h22{height:27.900000px;}
.h7{height:34.855313px;}
.hd{height:35.820000px;}
.h2{height:42.164648px;}
.hf{height:43.506914px;}
.h8{height:43.666875px;}
.h33{height:46.736719px;}
.h11{height:48.410156px;}
.h29{height:49.255313px;}
.h2c{height:49.394180px;}
.h2f{height:49.541625px;}
.ha{height:50.229844px;}
.hc{height:50.800781px;}
.h2e{height:52.154180px;}
.h3{height:53.573906px;}
.h2d{height:54.461625px;}
.he{height:55.735313px;}
.h10{height:59.343750px;}
.h12{height:59.383125px;}
.h4{height:59.436914px;}
.h31{height:59.439023px;}
.h30{height:59.582250px;}
.h6{height:60.690234px;}
.h32{height:61.189805px;}
.h34{height:61.197187px;}
.h9{height:64.546875px;}
.h36{height:65.884219px;}
.h5{height:68.362734px;}
.h16{height:70.606406px;}
.h2a{height:75.519844px;}
.h14{height:159.300000px;}
.h35{height:176.250000px;}
.h2b{height:345.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:43.020000px;}
.wf{width:55.980000px;}
.w8{width:68.040000px;}
.w5{width:74.736000px;}
.w13{width:150.150000px;}
.wa{width:160.230000px;}
.w7{width:172.110000px;}
.w16{width:178.230000px;}
.w15{width:180.930000px;}
.w17{width:183.090000px;}
.w9{width:185.790000px;}
.w11{width:204.330000px;}
.we{width:211.170000px;}
.w12{width:214.410000px;}
.w14{width:214.590000px;}
.w6{width:225.390000px;}
.wd{width:236.595000px;}
.w10{width:242.895000px;}
.wb{width:282.450000px;}
.w4{width:489.165000px;}
.w3{width:706.110000px;}
.w19{width:783.000000px;}
.w18{width:799.020000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x3c{left:9.720000px;}
.x13{left:10.800000px;}
.x41{left:16.200000px;}
.x38{left:18.000000px;}
.x49{left:20.340000px;}
.x2c{left:22.320000px;}
.x44{left:24.120000px;}
.x1d{left:25.560000px;}
.x4f{left:27.720000px;}
.x31{left:30.240000px;}
.x51{left:32.400000px;}
.x22{left:33.480000px;}
.x58{left:36.000000px;}
.x28{left:37.980000px;}
.x5b{left:40.500000px;}
.x50{left:41.580000px;}
.x2e{left:42.840000px;}
.x21{left:47.520000px;}
.x59{left:50.940000px;}
.x1{left:53.999987px;}
.x15{left:55.259987px;}
.x54{left:58.320000px;}
.x32{left:59.580000px;}
.x5c{left:61.200000px;}
.x1f{left:62.640000px;}
.x39{left:63.720000px;}
.x35{left:65.340000px;}
.x37{left:68.220000px;}
.x52{left:71.280000px;}
.x3e{left:72.720000px;}
.x5d{left:73.944000px;}
.x33{left:75.780000px;}
.xe{left:77.399987px;}
.x23{left:79.380000px;}
.x3f{left:80.505000px;}
.x24{left:81.720000px;}
.x27{left:83.520000px;}
.x25{left:85.140000px;}
.x47{left:87.165000px;}
.x26{left:88.200000px;}
.x4{left:91.115987px;}
.x53{left:93.420000px;}
.x46{left:95.985000px;}
.x2b{left:98.316000px;}
.x45{left:99.405000px;}
.x4a{left:101.385000px;}
.x48{left:106.425000px;}
.x1b{left:108.035987px;}
.x30{left:110.340000px;}
.x67{left:114.810000px;}
.xc{left:117.035987px;}
.x12{left:131.076000px;}
.x4c{left:132.155987px;}
.xf{left:134.855987px;}
.x36{left:137.025000px;}
.x34{left:138.645000px;}
.x2a{left:142.055987px;}
.xb{left:144.395987px;}
.x7{left:150.329987px;}
.x8{left:156.629987px;}
.x11{left:160.769987px;}
.x2d{left:166.350000px;}
.x6{left:167.609987px;}
.x57{left:175.350000px;}
.x5{left:178.229987px;}
.x62{left:192.090000px;}
.x40{left:194.970000px;}
.x19{left:201.990000px;}
.x1c{left:210.450000px;}
.x3b{left:244.109987px;}
.x42{left:250.950000px;}
.x5e{left:255.270000px;}
.x4b{left:265.754987px;}
.x60{left:269.385000px;}
.x18{left:277.994987px;}
.x9{left:281.954987px;}
.x1e{left:285.195000px;}
.x63{left:286.560000px;}
.x56{left:301.574987px;}
.x68{left:303.735000px;}
.x10{left:322.094987px;}
.x5f{left:344.055000px;}
.x3{left:348.554987px;}
.x14{left:353.049000px;}
.x3a{left:355.034987px;}
.x29{left:357.194987px;}
.x61{left:366.945000px;}
.x4d{left:371.415000px;}
.xd{left:374.654987px;}
.x64{left:381.060000px;}
.x69{left:398.235000px;}
.xa{left:419.474987px;}
.x2{left:446.504987px;}
.x65{left:460.290000px;}
.x3d{left:480.705000px;}
.x6a{left:492.690000px;}
.x43{left:493.845000px;}
.x20{left:510.585000px;}
.x2f{left:512.385000px;}
.x4e{left:521.565000px;}
.x5a{left:534.525000px;}
.x17{left:570.524987px;}
.x66{left:678.345000px;}
.x6b{left:704.265000px;}
.x6c{left:762.480000px;}
.x16{left:792.689987px;}
.x55{left:853.199987px;}
@media print{
.va{vertical-align:-62.720000pt;}
.v6{vertical-align:-38.560000pt;}
.v8{vertical-align:-33.653333pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.453333pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:18.560000pt;}
.v9{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.135467pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls30{letter-spacing:-0.079467pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.019840pt;}
.ls2{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.120533pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls32{letter-spacing:0.233067pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.618667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.088000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls2e{letter-spacing:6.031360pt;}
.ls22{letter-spacing:7.040000pt;}
.ls2a{letter-spacing:11.946240pt;}
.ls2f{letter-spacing:12.211200pt;}
.ls2d{letter-spacing:35.471360pt;}
.ls6{letter-spacing:63.514880pt;}
.ls5{letter-spacing:64.154880pt;}
.ls3{letter-spacing:64.320000pt;}
.ls4{letter-spacing:81.789440pt;}
.ls7{letter-spacing:82.429440pt;}
.ls8{letter-spacing:176.106667pt;}
.ws19{word-spacing:-43.008000pt;}
.ws15{word-spacing:-42.880000pt;}
.wsc{word-spacing:-17.088000pt;}
.wsd{word-spacing:-17.024000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.616000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws20{word-spacing:-14.953067pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.584533pt;}
.ws21{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws18{word-spacing:-9.719808pt;}
.ws14{word-spacing:-9.710720pt;}
.ws1b{word-spacing:-9.690880pt;}
.ws1e{word-spacing:-9.200533pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
.ws16{word-spacing:147.641813pt;}
.ws1c{word-spacing:173.220480pt;}
.ws1a{word-spacing:195.033813pt;}
.ws17{word-spacing:215.353813pt;}
._f{margin-left:-4.032000pt;}
._d{margin-left:-2.965333pt;}
._4{margin-left:-1.274880pt;}
._0{width:1.009280pt;}
._5{width:2.714453pt;}
._6{width:4.477867pt;}
._9{width:5.740800pt;}
._10{width:6.671147pt;}
._c{width:7.680000pt;}
._7{width:8.768000pt;}
._8{width:9.781333pt;}
._e{width:11.456000pt;}
._14{width:12.544000pt;}
._b{width:13.824000pt;}
._a{width:14.784000pt;}
._1c{width:15.902720pt;}
._15{width:16.896000pt;}
._11{width:17.920000pt;}
._12{width:19.112107pt;}
._13{width:20.158507pt;}
._17{width:21.696000pt;}
._16{width:23.424000pt;}
._18{width:26.565120pt;}
._1b{width:32.678400pt;}
._1a{width:35.975680pt;}
._19{width:36.897280pt;}
._2{width:138.400000pt;}
._1{width:162.804907pt;}
._3{width:178.720000pt;}
._1d{width:1814.127360pt;}
.fs9{font-size:10.880000pt;}
.fs7{font-size:21.120000pt;}
.fs5{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fsb{font-size:43.008000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y1e3{bottom:-63.360133pt;}
.y1e2{bottom:-29.440000pt;}
.y39{bottom:-11.240000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.880000pt;}
.y132{bottom:3.360000pt;}
.y138{bottom:3.840000pt;}
.y38{bottom:4.160000pt;}
.y115{bottom:4.480000pt;}
.y11b{bottom:4.506667pt;}
.y11e{bottom:5.120000pt;}
.y124{bottom:5.600000pt;}
.y109{bottom:5.760000pt;}
.y1e1{bottom:6.080000pt;}
.y12a{bottom:6.400000pt;}
.y83{bottom:6.560000pt;}
.y13a{bottom:7.360000pt;}
.y12e{bottom:12.320000pt;}
.y37{bottom:19.520000pt;}
.y1e0{bottom:21.440000pt;}
.y82{bottom:21.760000pt;}
.y4{bottom:23.840000pt;}
.y1df{bottom:36.800000pt;}
.y81{bottom:37.120000pt;}
.y1de{bottom:52.160000pt;}
.y80{bottom:52.480000pt;}
.y68{bottom:53.440000pt;}
.y13b{bottom:54.240000pt;}
.y1d7{bottom:57.280000pt;}
.ye2{bottom:58.400000pt;}
.y35{bottom:61.760000pt;}
.y93{bottom:65.600000pt;}
.y1d6{bottom:65.760000pt;}
.y1dd{bottom:67.520000pt;}
.y7f{bottom:67.840000pt;}
.y19f{bottom:69.280000pt;}
.y192{bottom:69.440000pt;}
.y15d{bottom:70.080000pt;}
.y107{bottom:72.000000pt;}
.y179{bottom:72.160000pt;}
.yc0{bottom:74.240000pt;}
.y67{bottom:74.560000pt;}
.y139{bottom:75.520000pt;}
.y171{bottom:77.253333pt;}
.ye1{bottom:79.520000pt;}
.y1d5{bottom:82.560000pt;}
.y34{bottom:82.880000pt;}
.y1dc{bottom:82.906667pt;}
.y7e{bottom:83.200000pt;}
.y19e{bottom:86.240000pt;}
.y92{bottom:86.880000pt;}
.y16c{bottom:89.946667pt;}
.y191{bottom:90.560000pt;}
.y15c{bottom:91.360000pt;}
.y106{bottom:93.120000pt;}
.ybf{bottom:95.360000pt;}
.y66{bottom:95.680000pt;}
.y1db{bottom:98.106667pt;}
.y7d{bottom:98.560000pt;}
.y1d4{bottom:99.520000pt;}
.y19d{bottom:103.040000pt;}
.y33{bottom:104.160000pt;}
.y172{bottom:107.293333pt;}
.y91{bottom:108.000000pt;}
.ye0{bottom:108.640000pt;}
.y137{bottom:111.680000pt;}
.y161{bottom:112.320000pt;}
.y15b{bottom:112.480000pt;}
.y1da{bottom:113.466667pt;}
.y7c{bottom:113.760000pt;}
.y105{bottom:114.240000pt;}
.y1d3{bottom:116.320000pt;}
.ybe{bottom:116.640000pt;}
.y65{bottom:116.800000pt;}
.y19c{bottom:120.000000pt;}
.y15f{bottom:120.613333pt;}
.y32{bottom:125.280000pt;}
.y136{bottom:127.040000pt;}
.y1d9{bottom:128.826667pt;}
.y7b{bottom:129.120000pt;}
.y165{bottom:129.626667pt;}
.ydf{bottom:129.760000pt;}
.y163{bottom:130.813333pt;}
.y190{bottom:132.800000pt;}
.y1d2{bottom:133.280000pt;}
.y15a{bottom:133.600000pt;}
.y160{bottom:135.653333pt;}
.y19b{bottom:136.826667pt;}
.y173{bottom:137.346667pt;}
.ybd{bottom:137.786667pt;}
.y64{bottom:138.106667pt;}
.y135{bottom:142.426667pt;}
.y104{bottom:143.386667pt;}
.y1d8{bottom:144.186667pt;}
.y31{bottom:146.426667pt;}
.y162{bottom:148.253333pt;}
.y1d1{bottom:150.106667pt;}
.y90{bottom:150.266667pt;}
.yde{bottom:151.066667pt;}
.y19a{bottom:153.626667pt;}
.y18f{bottom:154.106667pt;}
.y159{bottom:154.746667pt;}
.y134{bottom:157.786667pt;}
.y167{bottom:157.893333pt;}
.ybc{bottom:158.906667pt;}
.y164{bottom:163.906667pt;}
.y16a{bottom:164.346667pt;}
.y103{bottom:164.666667pt;}
.y1d0{bottom:166.906667pt;}
.y63{bottom:167.226667pt;}
.y174{bottom:167.426667pt;}
.y30{bottom:167.546667pt;}
.y199{bottom:170.586667pt;}
.y17d{bottom:170.946667pt;}
.y8f{bottom:171.546667pt;}
.ydd{bottom:172.186667pt;}
.y133{bottom:172.986667pt;}
.y18e{bottom:175.226667pt;}
.y170{bottom:175.933333pt;}
.y158{bottom:176.026667pt;}
.ybb{bottom:180.026667pt;}
.y169{bottom:183.746667pt;}
.y1cf{bottom:183.866667pt;}
.y102{bottom:185.786667pt;}
.y198{bottom:187.386667pt;}
.y166{bottom:187.933333pt;}
.y62{bottom:188.346667pt;}
.y2f{bottom:188.826667pt;}
.y8e{bottom:192.666667pt;}
.ydc{bottom:193.306667pt;}
.y18d{bottom:196.346667pt;}
.y17c{bottom:196.666667pt;}
.y157{bottom:197.146667pt;}
.y175{bottom:197.466667pt;}
.y1ce{bottom:200.666667pt;}
.yba{bottom:201.306667pt;}
.y16f{bottom:201.786667pt;}
.y197{bottom:204.346667pt;}
.y131{bottom:205.786667pt;}
.y101{bottom:206.906667pt;}
.y168{bottom:208.386667pt;}
.y61{bottom:209.466667pt;}
.y2e{bottom:209.946667pt;}
.y8d{bottom:213.786667pt;}
.y16d{bottom:214.400000pt;}
.ydb{bottom:214.426667pt;}
.y18c{bottom:217.466667pt;}
.y1cd{bottom:217.626667pt;}
.y156{bottom:218.266667pt;}
.y196{bottom:221.146667pt;}
.y130{bottom:221.626667pt;}
.y17b{bottom:222.400000pt;}
.yb9{bottom:222.426667pt;}
.y16e{bottom:225.826667pt;}
.y176{bottom:227.546667pt;}
.y100{bottom:228.026667pt;}
.y60{bottom:230.746667pt;}
.y2d{bottom:231.066667pt;}
.y1cc{bottom:234.426667pt;}
.y8c{bottom:234.906667pt;}
.yda{bottom:235.706667pt;}
.y12f{bottom:236.986667pt;}
.y195{bottom:237.946667pt;}
.y18b{bottom:238.746667pt;}
.y155{bottom:239.386667pt;}
.yb8{bottom:243.546667pt;}
.y17a{bottom:248.133333pt;}
.yff{bottom:249.306667pt;}
.y1cb{bottom:251.226667pt;}
.y5f{bottom:251.866667pt;}
.y2c{bottom:252.186667pt;}
.y194{bottom:254.906667pt;}
.y8b{bottom:256.186667pt;}
.y177{bottom:257.600000pt;}
.y18a{bottom:259.866667pt;}
.y154{bottom:260.666667pt;}
.yb7{bottom:264.666667pt;}
.yd9{bottom:264.826667pt;}
.y12d{bottom:268.186667pt;}
.yfe{bottom:270.426667pt;}
.y16b{bottom:270.906667pt;}
.y5e{bottom:272.986667pt;}
.y2b{bottom:273.466667pt;}
.y193{bottom:274.106667pt;}
.y8a{bottom:277.306667pt;}
.y189{bottom:280.986667pt;}
.y153{bottom:281.786667pt;}
.y1ca{bottom:284.986667pt;}
.yb6{bottom:285.946667pt;}
.y178{bottom:287.680000pt;}
.yfd{bottom:288.346667pt;}
.y5d{bottom:294.106667pt;}
.y89{bottom:298.426667pt;}
.y1c9{bottom:301.946667pt;}
.yfc{bottom:302.106667pt;}
.y2a{bottom:302.586667pt;}
.y152{bottom:302.906667pt;}
.yb5{bottom:307.066667pt;}
.y12c{bottom:307.226667pt;}
.y5c{bottom:315.226667pt;}
.y1c8{bottom:318.746667pt;}
.y88{bottom:319.546667pt;}
.yd8{bottom:320.506667pt;}
.yfb{bottom:323.226667pt;}
.y29{bottom:323.706667pt;}
.y151{bottom:324.026667pt;}
.y12b{bottom:327.226667pt;}
.yb4{bottom:328.186667pt;}
.y1c7{bottom:335.546667pt;}
.y5b{bottom:336.506667pt;}
.y87{bottom:340.826667pt;}
.yd7{bottom:341.626667pt;}
.y129{bottom:342.746667pt;}
.yfa{bottom:344.506667pt;}
.y28{bottom:344.826667pt;}
.yb3{bottom:349.306667pt;}
.y1c6{bottom:352.506667pt;}
.y150{bottom:353.306667pt;}
.y5a{bottom:357.666667pt;}
.y128{bottom:361.506667pt;}
.y86{bottom:361.986667pt;}
.yd6{bottom:362.786667pt;}
.yf9{bottom:365.666667pt;}
.y27{bottom:366.146667pt;}
.y1c5{bottom:369.346667pt;}
.yb2{bottom:370.626667pt;}
.y14f{bottom:374.466667pt;}
.y59{bottom:378.786667pt;}
.y127{bottom:379.746667pt;}
.y85{bottom:383.106667pt;}
.yd5{bottom:383.906667pt;}
.y1c4{bottom:386.306667pt;}
.yf8{bottom:386.786667pt;}
.y26{bottom:387.266667pt;}
.y14e{bottom:389.986667pt;}
.yb1{bottom:391.746667pt;}
.y126{bottom:397.826667pt;}
.y58{bottom:399.906667pt;}
.y84{bottom:403.106667pt;}
.yd4{bottom:405.186667pt;}
.y14d{bottom:405.346667pt;}
.yf7{bottom:407.906667pt;}
.y25{bottom:408.386667pt;}
.y125{bottom:416.066667pt;}
.y7a{bottom:416.226667pt;}
.y1c3{bottom:420.066667pt;}
.y14c{bottom:420.706667pt;}
.yb0{bottom:420.866667pt;}
.y57{bottom:421.186667pt;}
.yd3{bottom:426.306667pt;}
.yf6{bottom:429.186667pt;}
.y24{bottom:429.506667pt;}
.y123{bottom:434.146667pt;}
.y14b{bottom:435.906667pt;}
.y1c2{bottom:436.866667pt;}
.yaf{bottom:441.986667pt;}
.y56{bottom:442.306667pt;}
.yf5{bottom:450.306667pt;}
.y23{bottom:450.626667pt;}
.y14a{bottom:451.266667pt;}
.y122{bottom:452.866667pt;}
.y1c1{bottom:453.666667pt;}
.yd2{bottom:455.426667pt;}
.yae{bottom:463.266667pt;}
.y55{bottom:463.426667pt;}
.y149{bottom:467.266667pt;}
.y1c0{bottom:470.626667pt;}
.yf4{bottom:471.426667pt;}
.y22{bottom:471.906667pt;}
.yd1{bottom:476.546667pt;}
.y148{bottom:482.626667pt;}
.yad{bottom:484.386667pt;}
.y54{bottom:484.546667pt;}
.y121{bottom:485.346667pt;}
.y1bf{bottom:487.426667pt;}
.yf3{bottom:489.346667pt;}
.y188{bottom:492.546667pt;}
.y21{bottom:493.026667pt;}
.yd0{bottom:497.826667pt;}
.y120{bottom:502.626667pt;}
.yf2{bottom:503.266667pt;}
.y1be{bottom:504.386667pt;}
.yac{bottom:505.506667pt;}
.y53{bottom:505.826667pt;}
.y147{bottom:512.226667pt;}
.y187{bottom:513.826667pt;}
.y20{bottom:514.146667pt;}
.ycf{bottom:518.946667pt;}
.y11f{bottom:520.386667pt;}
.y1bd{bottom:521.186667pt;}
.yf1{bottom:524.386667pt;}
.yab{bottom:526.626667pt;}
.y52{bottom:526.946667pt;}
.y146{bottom:531.746667pt;}
.y186{bottom:534.946667pt;}
.y1f{bottom:535.266667pt;}
.y1bc{bottom:537.986667pt;}
.yce{bottom:540.066667pt;}
.y11d{bottom:541.506667pt;}
.yf0{bottom:545.506667pt;}
.y51{bottom:548.066667pt;}
.y145{bottom:551.746667pt;}
.y1bb{bottom:554.946667pt;}
.yaa{bottom:555.746667pt;}
.y185{bottom:556.066667pt;}
.y1e{bottom:556.546667pt;}
.y78{bottom:558.466667pt;}
.y11c{bottom:559.106667pt;}
.ycd{bottom:561.186667pt;}
.yef{bottom:566.626667pt;}
.y50{bottom:569.186667pt;}
.y144{bottom:569.826667pt;}
.y1ba{bottom:571.746667pt;}
.y11a{bottom:576.066667pt;}
.ya9{bottom:577.053333pt;}
.y184{bottom:577.213333pt;}
.y1d{bottom:577.693333pt;}
.y77{bottom:577.853333pt;}
.ycc{bottom:582.493333pt;}
.yee{bottom:587.773333pt;}
.y1b9{bottom:588.733333pt;}
.y4f{bottom:590.493333pt;}
.y119{bottom:593.053333pt;}
.y76{bottom:596.573333pt;}
.y143{bottom:596.733333pt;}
.y15e{bottom:597.600000pt;}
.ya8{bottom:598.173333pt;}
.y183{bottom:598.493333pt;}
.y1c{bottom:598.813333pt;}
.ycb{bottom:603.613333pt;}
.y1b8{bottom:605.533333pt;}
.yed{bottom:609.053333pt;}
.y118{bottom:610.013333pt;}
.y4e{bottom:611.613333pt;}
.y73{bottom:611.933333pt;}
.y75{bottom:617.373333pt;}
.ya7{bottom:619.293333pt;}
.y182{bottom:619.613333pt;}
.y1b{bottom:619.933333pt;}
.y1b7{bottom:622.333333pt;}
.yca{bottom:624.733333pt;}
.y117{bottom:626.813333pt;}
.y72{bottom:627.933333pt;}
.y74{bottom:629.853333pt;}
.yec{bottom:630.173333pt;}
.y4d{bottom:632.733333pt;}
.y1b6{bottom:639.293333pt;}
.ya6{bottom:640.413333pt;}
.y181{bottom:640.733333pt;}
.y1a{bottom:641.213333pt;}
.y116{bottom:643.773333pt;}
.yc9{bottom:645.853333pt;}
.y71{bottom:646.333333pt;}
.yeb{bottom:651.293333pt;}
.y4c{bottom:653.853333pt;}
.y1b5{bottom:656.093333pt;}
.y114{bottom:661.373333pt;}
.ya5{bottom:661.693333pt;}
.y180{bottom:661.853333pt;}
.y19{bottom:662.333333pt;}
.y70{bottom:664.733333pt;}
.yc8{bottom:667.133333pt;}
.yea{bottom:672.413333pt;}
.y1b4{bottom:673.053333pt;}
.y4b{bottom:675.133333pt;}
.y6f{bottom:683.133333pt;}
.y18{bottom:683.453333pt;}
.y1b3{bottom:689.853333pt;}
.ya4{bottom:690.813333pt;}
.y113{bottom:692.573333pt;}
.ye9{bottom:693.693333pt;}
.y4a{bottom:696.253333pt;}
.y17{bottom:701.213333pt;}
.y6e{bottom:701.533333pt;}
.y17f{bottom:704.253333pt;}
.y1b2{bottom:706.653333pt;}
.ya3{bottom:711.933333pt;}
.y112{bottom:712.733333pt;}
.ye8{bottom:714.813333pt;}
.y49{bottom:717.373333pt;}
.y16{bottom:718.813333pt;}
.y6d{bottom:719.933333pt;}
.y1b1{bottom:723.613333pt;}
.y17e{bottom:725.373333pt;}
.y111{bottom:732.733333pt;}
.ya2{bottom:733.053333pt;}
.ye7{bottom:735.933333pt;}
.y15{bottom:736.413333pt;}
.y6c{bottom:738.333333pt;}
.yc7{bottom:738.493333pt;}
.y1b0{bottom:740.413333pt;}
.y48{bottom:746.493333pt;}
.ya1{bottom:748.893333pt;}
.y110{bottom:753.853333pt;}
.y14{bottom:754.173333pt;}
.y6b{bottom:756.733333pt;}
.ye6{bottom:757.053333pt;}
.y1af{bottom:757.373333pt;}
.yc6{bottom:759.773333pt;}
.ya0{bottom:765.853333pt;}
.y47{bottom:767.773333pt;}
.y13{bottom:771.773333pt;}
.y10f{bottom:772.733333pt;}
.y1ae{bottom:774.173333pt;}
.y6a{bottom:775.133333pt;}
.ye5{bottom:778.333333pt;}
.yc5{bottom:780.893333pt;}
.y12{bottom:786.813333pt;}
.y9f{bottom:786.973333pt;}
.y46{bottom:788.893333pt;}
.y10e{bottom:790.973333pt;}
.y69{bottom:792.573333pt;}
.y11{bottom:793.053333pt;}
.ye4{bottom:799.493333pt;}
.yc4{bottom:802.053333pt;}
.y36{bottom:807.173333pt;}
.y1ad{bottom:807.973333pt;}
.y9e{bottom:808.133333pt;}
.y10d{bottom:809.253333pt;}
.y45{bottom:810.053333pt;}
.ye3{bottom:817.413333pt;}
.yc3{bottom:823.173333pt;}
.y1ac{bottom:824.773333pt;}
.y10c{bottom:827.493333pt;}
.y9d{bottom:829.253333pt;}
.y44{bottom:831.173333pt;}
.y1ab{bottom:841.733333pt;}
.yc2{bottom:844.293333pt;}
.y10b{bottom:845.573333pt;}
.y43{bottom:852.293333pt;}
.y9c{bottom:858.533333pt;}
.y10{bottom:860.613333pt;}
.y10a{bottom:863.813333pt;}
.yc1{bottom:865.573333pt;}
.y42{bottom:873.573333pt;}
.y1aa{bottom:875.493333pt;}
.yf{bottom:875.973333pt;}
.y9b{bottom:879.653333pt;}
.y108{bottom:882.693333pt;}
.y1a9{bottom:892.293333pt;}
.y41{bottom:894.693333pt;}
.ye{bottom:895.973333pt;}
.y9a{bottom:900.773333pt;}
.y1a8{bottom:909.093333pt;}
.y142{bottom:911.173333pt;}
.yd{bottom:911.333333pt;}
.y40{bottom:915.813333pt;}
.y99{bottom:917.733333pt;}
.y1a7{bottom:926.053333pt;}
.yc{bottom:926.693333pt;}
.y98{bottom:928.933333pt;}
.y3f{bottom:936.933333pt;}
.yb{bottom:937.413333pt;}
.y1a6{bottom:942.853333pt;}
.y141{bottom:944.293333pt;}
.y97{bottom:950.213333pt;}
.ya{bottom:952.773333pt;}
.y3e{bottom:958.213333pt;}
.y1a5{bottom:959.813333pt;}
.y140{bottom:961.253333pt;}
.y96{bottom:971.333333pt;}
.y9{bottom:971.653333pt;}
.y1a4{bottom:976.613333pt;}
.y13f{bottom:978.213333pt;}
.y3d{bottom:979.333333pt;}
.y8{bottom:988.133333pt;}
.y95{bottom:992.453333pt;}
.y1a3{bottom:993.413333pt;}
.y13e{bottom:995.013333pt;}
.y3c{bottom:1000.453333pt;}
.y7{bottom:1009.573333pt;}
.y1a2{bottom:1010.373333pt;}
.y13d{bottom:1012.613333pt;}
.y94{bottom:1013.573333pt;}
.y3b{bottom:1021.600000pt;}
.y1a1{bottom:1027.200000pt;}
.y6{bottom:1029.920000pt;}
.y3a{bottom:1042.880000pt;}
.y13c{bottom:1044.000000pt;}
.y1a0{bottom:1044.160000pt;}
.y5{bottom:1045.280000pt;}
.y3{bottom:1060.640000pt;}
.y2{bottom:1075.840000pt;}
.y1{bottom:1091.200000pt;}
.h17{height:7.676562pt;}
.h15{height:14.901562pt;}
.h23{height:15.200000pt;}
.h13{height:15.360000pt;}
.h26{height:15.392000pt;}
.h24{height:15.840000pt;}
.h27{height:16.320000pt;}
.h1e{height:16.800000pt;}
.h1d{height:16.960000pt;}
.h1f{height:16.992000pt;}
.h25{height:17.440000pt;}
.h20{height:17.600000pt;}
.h1a{height:18.080000pt;}
.h19{height:18.240000pt;}
.h1b{height:18.272000pt;}
.h21{height:18.752000pt;}
.h1c{height:18.880000pt;}
.h28{height:19.840000pt;}
.h18{height:22.578125pt;}
.hb{height:24.097500pt;}
.h22{height:24.800000pt;}
.h7{height:30.982500pt;}
.hd{height:31.840000pt;}
.h2{height:37.479688pt;}
.hf{height:38.672812pt;}
.h8{height:38.815000pt;}
.h33{height:41.543750pt;}
.h11{height:43.031250pt;}
.h29{height:43.782500pt;}
.h2c{height:43.905937pt;}
.h2f{height:44.037000pt;}
.ha{height:44.648750pt;}
.hc{height:45.156250pt;}
.h2e{height:46.359271pt;}
.h3{height:47.621250pt;}
.h2d{height:48.410333pt;}
.he{height:49.542500pt;}
.h10{height:52.750000pt;}
.h12{height:52.785000pt;}
.h4{height:52.832812pt;}
.h31{height:52.834688pt;}
.h30{height:52.962000pt;}
.h6{height:53.946875pt;}
.h32{height:54.390938pt;}
.h34{height:54.397500pt;}
.h9{height:57.375000pt;}
.h36{height:58.563750pt;}
.h5{height:60.766875pt;}
.h16{height:62.761250pt;}
.h2a{height:67.128750pt;}
.h14{height:141.600000pt;}
.h35{height:156.666667pt;}
.h2b{height:307.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:38.240000pt;}
.wf{width:49.760000pt;}
.w8{width:60.480000pt;}
.w5{width:66.432000pt;}
.w13{width:133.466667pt;}
.wa{width:142.426667pt;}
.w7{width:152.986667pt;}
.w16{width:158.426667pt;}
.w15{width:160.826667pt;}
.w17{width:162.746667pt;}
.w9{width:165.146667pt;}
.w11{width:181.626667pt;}
.we{width:187.706667pt;}
.w12{width:190.586667pt;}
.w14{width:190.746667pt;}
.w6{width:200.346667pt;}
.wd{width:210.306667pt;}
.w10{width:215.906667pt;}
.wb{width:251.066667pt;}
.w4{width:434.813333pt;}
.w3{width:627.653333pt;}
.w19{width:696.000000pt;}
.w18{width:710.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x3c{left:8.640000pt;}
.x13{left:9.600000pt;}
.x41{left:14.400000pt;}
.x38{left:16.000000pt;}
.x49{left:18.080000pt;}
.x2c{left:19.840000pt;}
.x44{left:21.440000pt;}
.x1d{left:22.720000pt;}
.x4f{left:24.640000pt;}
.x31{left:26.880000pt;}
.x51{left:28.800000pt;}
.x22{left:29.760000pt;}
.x58{left:32.000000pt;}
.x28{left:33.760000pt;}
.x5b{left:36.000000pt;}
.x50{left:36.960000pt;}
.x2e{left:38.080000pt;}
.x21{left:42.240000pt;}
.x59{left:45.280000pt;}
.x1{left:47.999988pt;}
.x15{left:49.119988pt;}
.x54{left:51.840000pt;}
.x32{left:52.960000pt;}
.x5c{left:54.400000pt;}
.x1f{left:55.680000pt;}
.x39{left:56.640000pt;}
.x35{left:58.080000pt;}
.x37{left:60.640000pt;}
.x52{left:63.360000pt;}
.x3e{left:64.640000pt;}
.x5d{left:65.728000pt;}
.x33{left:67.360000pt;}
.xe{left:68.799988pt;}
.x23{left:70.560000pt;}
.x3f{left:71.560000pt;}
.x24{left:72.640000pt;}
.x27{left:74.240000pt;}
.x25{left:75.680000pt;}
.x47{left:77.480000pt;}
.x26{left:78.400000pt;}
.x4{left:80.991988pt;}
.x53{left:83.040000pt;}
.x46{left:85.320000pt;}
.x2b{left:87.392000pt;}
.x45{left:88.360000pt;}
.x4a{left:90.120000pt;}
.x48{left:94.600000pt;}
.x1b{left:96.031988pt;}
.x30{left:98.080000pt;}
.x67{left:102.053333pt;}
.xc{left:104.031988pt;}
.x12{left:116.512000pt;}
.x4c{left:117.471988pt;}
.xf{left:119.871988pt;}
.x36{left:121.800000pt;}
.x34{left:123.240000pt;}
.x2a{left:126.271988pt;}
.xb{left:128.351988pt;}
.x7{left:133.626655pt;}
.x8{left:139.226655pt;}
.x11{left:142.906655pt;}
.x2d{left:147.866667pt;}
.x6{left:148.986655pt;}
.x57{left:155.866667pt;}
.x5{left:158.426655pt;}
.x62{left:170.746667pt;}
.x40{left:173.306667pt;}
.x19{left:179.546667pt;}
.x1c{left:187.066667pt;}
.x3b{left:216.986655pt;}
.x42{left:223.066667pt;}
.x5e{left:226.906667pt;}
.x4b{left:236.226655pt;}
.x60{left:239.453333pt;}
.x18{left:247.106655pt;}
.x9{left:250.626655pt;}
.x1e{left:253.506667pt;}
.x63{left:254.720000pt;}
.x56{left:268.066655pt;}
.x68{left:269.986667pt;}
.x10{left:286.306655pt;}
.x5f{left:305.826667pt;}
.x3{left:309.826655pt;}
.x14{left:313.821333pt;}
.x3a{left:315.586655pt;}
.x29{left:317.506655pt;}
.x61{left:326.173333pt;}
.x4d{left:330.146667pt;}
.xd{left:333.026655pt;}
.x64{left:338.720000pt;}
.x69{left:353.986667pt;}
.xa{left:372.866655pt;}
.x2{left:396.893322pt;}
.x65{left:409.146667pt;}
.x3d{left:427.293333pt;}
.x6a{left:437.946667pt;}
.x43{left:438.973333pt;}
.x20{left:453.853333pt;}
.x2f{left:455.453333pt;}
.x4e{left:463.613333pt;}
.x5a{left:475.133333pt;}
.x17{left:507.133322pt;}
.x66{left:602.973333pt;}
.x6b{left:626.013333pt;}
.x6c{left:677.760000pt;}
.x16{left:704.613322pt;}
.x55{left:758.399988pt;}
}




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