
    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_2be3c6071acb5019c9349448.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_57859b53e3a5f81d377fb270.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_000bc0782194b49783f2c1ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_9313b467e881df8c9c850138.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925293;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_45906ba8a9f5a6ec349e6cb4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_5c5845d13156a67be49e5c7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.823730;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_f02765d01efe17faf72bf315.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.960449;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_b8c85403798419276c76b553.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4c262d452521b85577ea9d6e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8ebe8fa740abc68265ee2e27.woff2')format("woff");}.fff{font-family:fff;line-height:1.041016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1a264b53fb6390c9aaa53508.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0fa2be805e2143e4db9f78c5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4fed24e514fab520fe73e003.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-48.240000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.303600px;}
.lsd{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.097800px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.054720px;}
.ls18{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.129000px;}
.lsf{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.900000px;}
.ls10{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.060000px;}
.ls7{letter-spacing:5.940000px;}
.ls11{letter-spacing:22.986720px;}
.ls3{letter-spacing:61.920000px;}
.ls5{letter-spacing:62.040000px;}
.ls4{letter-spacing:62.640000px;}
.ls13{letter-spacing:66.186720px;}
.ls6{letter-spacing:1094.940000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-38.880000px;}
.ws1{word-spacing:-31.105680px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.734480px;}
.ws3{word-spacing:-13.527480px;}
.wsc{word-spacing:-13.500000px;}
.ws5{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-3.466080px;}
._c{margin-left:-2.458800px;}
._2{margin-left:-1.095120px;}
._0{width:1.015920px;}
._8{width:2.070720px;}
._9{width:3.167280px;}
._a{width:4.183200px;}
._6{width:5.455680px;}
._5{width:6.932880px;}
._4{width:8.300160px;}
._d{width:9.382320px;}
._e{width:10.936080px;}
._1a{width:12.788640px;}
._1d{width:13.924080px;}
._7{width:16.015680px;}
._15{width:17.270640px;}
._16{width:19.121040px;}
._20{width:20.149920px;}
._10{width:21.274560px;}
._f{width:22.469760px;}
._1f{width:23.784480px;}
._19{width:25.357680px;}
._18{width:26.533440px;}
._1b{width:27.668880px;}
._1e{width:28.844640px;}
._13{width:30.855600px;}
._14{width:31.911840px;}
._12{width:33.047280px;}
._17{width:35.377920px;}
._24{width:39.695760px;}
._23{width:41.196960px;}
._2c{width:42.847920px;}
._2d{width:46.015200px;}
._29{width:47.329920px;}
._28{width:50.975280px;}
._2e{width:52.017840px;}
._2b{width:54.082800px;}
._2a{width:55.457280px;}
._25{width:57.608640px;}
._3{width:61.762320px;}
._26{width:63.375120px;}
._2f{width:65.736000px;}
._27{width:67.050720px;}
._30{width:79.660080px;}
._22{width:82.468800px;}
._21{width:83.723760px;}
._1c{width:849.240000px;}
._1{width:1016.519520px;}
._11{width:1586.515680px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:2.880000px;}
.fse{font-size:18.000000px;}
.fsf{font-size:30.240000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.520000px;}
.y53{bottom:3.060000px;}
.y3d{bottom:3.240000px;}
.y16d{bottom:7.020000px;}
.y175{bottom:8.100000px;}
.y17a{bottom:8.280000px;}
.y24{bottom:10.620000px;}
.y25{bottom:11.340000px;}
.y188{bottom:11.700000px;}
.y5b{bottom:13.860000px;}
.y56{bottom:16.380000px;}
.y180{bottom:20.340000px;}
.y3c{bottom:20.520000px;}
.y16e{bottom:22.350000px;}
.y17b{bottom:23.040000px;}
.y16c{bottom:24.330000px;}
.y174{bottom:25.380000px;}
.y179{bottom:25.560000px;}
.y193{bottom:28.980000px;}
.y168{bottom:29.160000px;}
.y55{bottom:30.240000px;}
.y176{bottom:31.500000px;}
.y17f{bottom:37.620000px;}
.y3b{bottom:37.800000px;}
.y16b{bottom:41.610000px;}
.y173{bottom:42.660000px;}
.y178{bottom:42.840000px;}
.y54{bottom:43.920000px;}
.y3a{bottom:54.900000px;}
.y184{bottom:54.945000px;}
.y170{bottom:55.080000px;}
.y191{bottom:55.125000px;}
.y172{bottom:59.760000px;}
.y5{bottom:66.525004px;}
.y39{bottom:72.180000px;}
.y16f{bottom:72.360000px;}
.y38{bottom:89.460000px;}
.y4{bottom:97.125005px;}
.y37{bottom:106.740000px;}
.y36{bottom:124.065000px;}
.y21{bottom:139.264499px;}
.y35{bottom:141.165000px;}
.y34{bottom:158.445000px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y27{bottom:278.130000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y58{bottom:319.755000px;}
.y177{bottom:322.275000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y52{bottom:323.895000px;}
.yde{bottom:327.495000px;}
.y15c{bottom:327.855000px;}
.y106{bottom:329.115000px;}
.yb3{bottom:336.675000px;}
.y143{bottom:338.115000px;}
.y1a7{bottom:341.175000px;}
.ydd{bottom:345.495000px;}
.y15b{bottom:345.855000px;}
.y123{bottom:346.215000px;}
.y105{bottom:347.295000px;}
.yf{bottom:348.133500px;}
.y201{bottom:349.455000px;}
.y88{bottom:351.435000px;}
.yb2{bottom:353.955000px;}
.y142{bottom:356.115000px;}
.y1a6{bottom:358.455000px;}
.y18c{bottom:358.995000px;}
.ydc{bottom:363.675000px;}
.y122{bottom:364.215000px;}
.y104{bottom:365.295000px;}
.y200{bottom:366.735000px;}
.y87{bottom:368.715000px;}
.yb1{bottom:371.235000px;}
.y15a{bottom:373.035000px;}
.y141{bottom:374.295000px;}
.y1a5{bottom:375.735000px;}
.y1e9{bottom:376.455000px;}
.y171{bottom:379.875000px;}
.ydb{bottom:381.855000px;}
.y121{bottom:382.395000px;}
.y1ff{bottom:384.015000px;}
.y86{bottom:385.995000px;}
.ye{bottom:386.785499px;}
.y51{bottom:387.615000px;}
.yb0{bottom:388.515000px;}
.y140{bottom:392.295000px;}
.y103{bottom:392.475000px;}
.y1a4{bottom:393.015000px;}
.y1e8{bottom:393.735000px;}
.yda{bottom:399.855000px;}
.y159{bottom:400.215000px;}
.y120{bottom:400.395000px;}
.y50{bottom:401.475000px;}
.y85{bottom:403.275000px;}
.y1fe{bottom:405.615000px;}
.yaf{bottom:405.795000px;}
.yd{bottom:408.044999px;}
.y1a3{bottom:410.115000px;}
.y13f{bottom:410.475000px;}
.y102{bottom:410.655000px;}
.y1e7{bottom:411.015000px;}
.yd9{bottom:418.035000px;}
.y11f{bottom:418.575000px;}
.y84{bottom:420.375000px;}
.yae{bottom:422.895000px;}
.y158{bottom:427.215000px;}
.y1a2{bottom:427.395000px;}
.y4f{bottom:427.755000px;}
.y1e6{bottom:428.115000px;}
.y101{bottom:428.655000px;}
.yd8{bottom:436.215000px;}
.y83{bottom:437.655000px;}
.yad{bottom:440.175000px;}
.y1a1{bottom:444.675000px;}
.y4e{bottom:445.035000px;}
.y1e5{bottom:445.395000px;}
.y11e{bottom:445.755000px;}
.y100{bottom:446.835000px;}
.y157{bottom:454.395000px;}
.y13e{bottom:455.655000px;}
.yac{bottom:457.455000px;}
.y1a0{bottom:461.955000px;}
.y4d{bottom:462.315000px;}
.yd7{bottom:463.215000px;}
.y11d{bottom:463.755000px;}
.y82{bottom:463.935000px;}
.yff{bottom:465.015000px;}
.y1e4{bottom:467.175000px;}
.y156{bottom:472.395000px;}
.y13d{bottom:473.835000px;}
.yab{bottom:474.735000px;}
.y19f{bottom:479.235000px;}
.y4c{bottom:479.595000px;}
.y81{bottom:481.215000px;}
.yd6{bottom:481.395000px;}
.y11c{bottom:481.935000px;}
.yfe{bottom:483.015000px;}
.y1c5{bottom:483.735000px;}
.y1e3{bottom:484.455000px;}
.y155{bottom:490.575000px;}
.y13c{bottom:492.015000px;}
.y19e{bottom:496.515000px;}
.y4b{bottom:496.875000px;}
.y80{bottom:498.495000px;}
.yd5{bottom:499.395000px;}
.y11b{bottom:499.935000px;}
.yaa{bottom:500.835000px;}
.yfd{bottom:501.195000px;}
.y1e2{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.y154{bottom:508.755000px;}
.y1c4{bottom:509.835000px;}
.y13b{bottom:510.015000px;}
.y4a{bottom:513.975000px;}
.y7f{bottom:515.775000px;}
.yd4{bottom:517.575000px;}
.ya9{bottom:518.115000px;}
.y1e1{bottom:518.835000px;}
.yfc{bottom:519.195000px;}
.yb{bottom:520.864502px;}
.y19d{bottom:522.615000px;}
.y13a{bottom:528.195000px;}
.y49{bottom:531.255000px;}
.y7e{bottom:532.875000px;}
.ya8{bottom:535.395000px;}
.yd3{bottom:535.755000px;}
.y1c3{bottom:536.115000px;}
.yfb{bottom:537.375000px;}
.ya{bottom:538.864499px;}
.y19c{bottom:539.895000px;}
.y1e0{bottom:540.615000px;}
.y16a{bottom:541.515000px;}
.y11a{bottom:545.295000px;}
.y139{bottom:546.195000px;}
.y48{bottom:548.535000px;}
.y7d{bottom:550.155000px;}
.y18b{bottom:550.875000px;}
.ya7{bottom:552.675000px;}
.y1c2{bottom:553.395000px;}
.yd2{bottom:553.755000px;}
.y153{bottom:553.935000px;}
.yfa{bottom:555.555000px;}
.y9{bottom:556.864499px;}
.y1fd{bottom:557.175000px;}
.y1df{bottom:557.895000px;}
.y138{bottom:564.405000px;}
.y47{bottom:565.845000px;}
.y19b{bottom:566.205000px;}
.y7c{bottom:567.465000px;}
.y18a{bottom:568.905000px;}
.ya6{bottom:569.985000px;}
.y1c1{bottom:570.705000px;}
.yd1{bottom:571.965000px;}
.y119{bottom:572.325000px;}
.y1fc{bottom:574.485000px;}
.y1de{bottom:575.205000px;}
.yf9{bottom:582.585000px;}
.y46{bottom:583.125000px;}
.y19a{bottom:583.485000px;}
.y7b{bottom:584.745000px;}
.ya5{bottom:587.265000px;}
.y1c0{bottom:587.985000px;}
.yd0{bottom:589.965000px;}
.y152{bottom:590.145000px;}
.y1dd{bottom:592.485000px;}
.y1fb{bottom:596.265000px;}
.y169{bottom:597.885000px;}
.y118{bottom:599.505000px;}
.y45{bottom:600.405000px;}
.y137{bottom:600.585000px;}
.yf8{bottom:600.765000px;}
.ya4{bottom:604.545000px;}
.y1bf{bottom:605.265000px;}
.ycf{bottom:608.145000px;}
.y199{bottom:609.585000px;}
.y7a{bottom:611.025000px;}
.y1fa{bottom:613.545000px;}
.y1dc{bottom:614.085000px;}
.y167{bottom:615.885000px;}
.y151{bottom:617.325000px;}
.y44{bottom:617.505000px;}
.yf7{bottom:618.765000px;}
.ya3{bottom:621.645000px;}
.y1be{bottom:622.545000px;}
.yce{bottom:626.325000px;}
.y117{bottom:626.685000px;}
.y79{bottom:628.305000px;}
.y1f9{bottom:630.645000px;}
.y1db{bottom:631.365000px;}
.y43{bottom:634.785000px;}
.y150{bottom:635.325000px;}
.y198{bottom:635.865000px;}
.y136{bottom:636.765000px;}
.yf6{bottom:636.945000px;}
.y189{bottom:638.745000px;}
.ya2{bottom:638.925000px;}
.y1bd{bottom:639.645000px;}
.ycd{bottom:644.325000px;}
.y116{bottom:644.685000px;}
.y78{bottom:645.405000px;}
.y8{bottom:645.510000px;}
.y1f8{bottom:647.925000px;}
.y42{bottom:652.065000px;}
.y197{bottom:653.145000px;}
.y14f{bottom:653.505000px;}
.y135{bottom:654.945000px;}
.yf5{bottom:655.125000px;}
.ya1{bottom:656.205000px;}
.y1bc{bottom:656.925000px;}
.ycc{bottom:662.505000px;}
.y77{bottom:662.685000px;}
.y115{bottom:662.865000px;}
.y1f7{bottom:665.205000px;}
.y7{bottom:666.771000px;}
.y41{bottom:669.345000px;}
.y196{bottom:670.425000px;}
.y14e{bottom:671.685000px;}
.y134{bottom:673.125000px;}
.ya0{bottom:673.485000px;}
.y1bb{bottom:674.205000px;}
.y76{bottom:679.965000px;}
.ycb{bottom:680.685000px;}
.yf4{bottom:682.125000px;}
.y40{bottom:686.625000px;}
.y1f6{bottom:686.985000px;}
.y1da{bottom:687.705000px;}
.y166{bottom:688.785000px;}
.y14d{bottom:689.685000px;}
.y114{bottom:689.865000px;}
.y9f{bottom:690.765000px;}
.y187{bottom:691.305000px;}
.y1ba{bottom:691.485000px;}
.y195{bottom:696.705000px;}
.y75{bottom:697.245000px;}
.yca{bottom:698.685000px;}
.y133{bottom:700.125000px;}
.yf3{bottom:700.305000px;}
.y3f{bottom:703.005000px;}
.y1f5{bottom:704.265000px;}
.y14c{bottom:707.865000px;}
.y9e{bottom:708.045000px;}
.y1b9{bottom:708.765000px;}
.y1d9{bottom:709.485000px;}
.y194{bottom:713.985000px;}
.y3e{bottom:715.065000px;}
.y113{bottom:717.045000px;}
.y132{bottom:718.305000px;}
.yf2{bottom:718.485000px;}
.y1f4{bottom:721.545000px;}
.y74{bottom:723.345000px;}
.y33{bottom:725.505000px;}
.yc9{bottom:725.865000px;}
.y1b8{bottom:726.045000px;}
.y6{bottom:726.298500px;}
.y186{bottom:726.405000px;}
.y1d8{bottom:726.765000px;}
.y192{bottom:728.745000px;}
.y165{bottom:732.345000px;}
.y9d{bottom:734.145000px;}
.y112{bottom:735.225000px;}
.yf1{bottom:736.485000px;}
.y73{bottom:740.625000px;}
.y1b7{bottom:743.145000px;}
.yc8{bottom:743.865000px;}
.y14b{bottom:744.045000px;}
.y164{bottom:749.625000px;}
.y9c{bottom:751.425000px;}
.y3{bottom:752.599495px;}
.y131{bottom:754.485000px;}
.yf0{bottom:754.665000px;}
.y72{bottom:757.905000px;}
.y1b6{bottom:760.425000px;}
.yc7{bottom:762.045000px;}
.y111{bottom:762.225000px;}
.y1d7{bottom:765.645000px;}
.y163{bottom:766.905000px;}
.y9b{bottom:768.705000px;}
.yef{bottom:772.665000px;}
.y71{bottom:775.185000px;}
.y1b5{bottom:777.705000px;}
.y185{bottom:778.965000px;}
.yc6{bottom:780.225000px;}
.y110{bottom:780.405000px;}
.y1d6{bottom:782.925000px;}
.y162{bottom:784.185000px;}
.y9a{bottom:785.985000px;}
.y14a{bottom:789.225000px;}
.yee{bottom:790.845000px;}
.y70{bottom:792.465000px;}
.y1b4{bottom:794.985000px;}
.y183{bottom:796.965000px;}
.yc5{bottom:798.225000px;}
.y10f{bottom:798.405000px;}
.y1f3{bottom:799.485000px;}
.y130{bottom:799.665000px;}
.y1d5{bottom:800.205000px;}
.y161{bottom:801.285000px;}
.y99{bottom:803.265000px;}
.y149{bottom:807.405000px;}
.y6f{bottom:809.745000px;}
.y1b3{bottom:812.265000px;}
.yc4{bottom:816.405000px;}
.y1f2{bottom:816.765000px;}
.y12f{bottom:817.845000px;}
.yed{bottom:818.025000px;}
.y160{bottom:818.565000px;}
.y98{bottom:820.365000px;}
.y1d4{bottom:821.985000px;}
.y148{bottom:825.405000px;}
.y10e{bottom:825.585000px;}
.y6e{bottom:827.025000px;}
.y1b2{bottom:829.365000px;}
.y1f1{bottom:833.865000px;}
.yc3{bottom:834.405000px;}
.yec{bottom:836.025000px;}
.y1d3{bottom:839.265000px;}
.y10d{bottom:843.765000px;}
.y97{bottom:846.690000px;}
.yc2{bottom:852.630000px;}
.y6d{bottom:853.170000px;}
.y15f{bottom:853.890000px;}
.y12e{bottom:854.070000px;}
.yeb{bottom:854.250000px;}
.y1f0{bottom:855.690000px;}
.y1d2{bottom:856.410000px;}
.y20c{bottom:857.130000px;}
.y10c{bottom:861.810000px;}
.y1b1{bottom:863.970000px;}
.y182{bottom:866.670000px;}
.y190{bottom:868.290000px;}
.y6c{bottom:870.450000px;}
.yc1{bottom:870.810000px;}
.y15e{bottom:871.170000px;}
.y12d{bottom:872.250000px;}
.yea{bottom:872.430000px;}
.y96{bottom:872.970000px;}
.y1d1{bottom:878.190000px;}
.y20b{bottom:878.910000px;}
.y2{bottom:879.369000px;}
.y10b{bottom:879.990000px;}
.y1b0{bottom:881.250000px;}
.y6b{bottom:887.730000px;}
.yc0{bottom:888.810000px;}
.y95{bottom:890.250000px;}
.y12c{bottom:890.430000px;}
.y15d{bottom:894.210000px;}
.y1d0{bottom:895.470000px;}
.y20a{bottom:896.190000px;}
.y10a{bottom:898.170000px;}
.y1af{bottom:898.530000px;}
.ye9{bottom:899.430000px;}
.y6a{bottom:905.010000px;}
.y147{bottom:906.990000px;}
.y1ef{bottom:912.030000px;}
.y1cf{bottom:912.750000px;}
.y32{bottom:913.110000px;}
.y1ae{bottom:915.810000px;}
.ybf{bottom:915.990000px;}
.y109{bottom:916.170000px;}
.y94{bottom:916.530000px;}
.y12b{bottom:917.430000px;}
.ye8{bottom:917.610000px;}
.y209{bottom:917.970000px;}
.y18f{bottom:920.670000px;}
.y69{bottom:922.290000px;}
.y146{bottom:925.170000px;}
.y31{bottom:926.610000px;}
.y1ee{bottom:929.310000px;}
.y1ad{bottom:932.910000px;}
.y93{bottom:933.810000px;}
.ybe{bottom:934.170000px;}
.y1ce{bottom:934.350000px;}
.y208{bottom:935.250000px;}
.ye7{bottom:935.610000px;}
.y181{bottom:936.510000px;}
.y68{bottom:939.570000px;}
.y145{bottom:943.170000px;}
.y108{bottom:943.350000px;}
.y1ed{bottom:946.410000px;}
.y1ac{bottom:950.190000px;}
.y92{bottom:950.910000px;}
.y30{bottom:951.450000px;}
.y1cd{bottom:951.630000px;}
.ybd{bottom:952.170000px;}
.y207{bottom:952.530000px;}
.y12a{bottom:953.610000px;}
.ye6{bottom:953.790000px;}
.y67{bottom:956.670000px;}
.y144{bottom:961.350000px;}
.y1{bottom:966.726000px;}
.y91{bottom:968.190000px;}
.y1cc{bottom:968.910000px;}
.y206{bottom:969.630000px;}
.ybc{bottom:970.350000px;}
.y2f{bottom:971.430000px;}
.y129{bottom:971.790000px;}
.ye5{bottom:971.970000px;}
.y18e{bottom:973.230000px;}
.y1ab{bottom:976.470000px;}
.y66{bottom:982.950000px;}
.y90{bottom:985.470000px;}
.y1cb{bottom:986.190000px;}
.ybb{bottom:988.350000px;}
.y17e{bottom:989.070000px;}
.y128{bottom:989.970000px;}
.y2e{bottom:990.330000px;}
.y18d{bottom:991.230000px;}
.y205{bottom:991.410000px;}
.y107{bottom:997.530000px;}
.ye4{bottom:998.970000px;}
.y65{bottom:1000.230000px;}
.y8f{bottom:1002.750000px;}
.yba{bottom:1006.530000px;}
.y127{bottom:1007.970000px;}
.y204{bottom:1008.690000px;}
.y2d{bottom:1009.230000px;}
.y1ca{bottom:1012.470000px;}
.ye3{bottom:1017.150000px;}
.y64{bottom:1017.510000px;}
.y1aa{bottom:1020.030000px;}
.y2c{bottom:1021.470000px;}
.y1ec{bottom:1024.530000px;}
.yb9{bottom:1024.710000px;}
.y203{bottom:1025.970000px;}
.y126{bottom:1026.150000px;}
.y8e{bottom:1029.030000px;}
.y63{bottom:1034.790000px;}
.ye2{bottom:1035.150000px;}
.y1a9{bottom:1037.310000px;}
.y1c9{bottom:1038.750000px;}
.y2b{bottom:1040.730000px;}
.y17d{bottom:1041.450000px;}
.y1eb{bottom:1041.810000px;}
.yb8{bottom:1042.710000px;}
.y202{bottom:1043.250000px;}
.y125{bottom:1044.150000px;}
.y8d{bottom:1046.310000px;}
.y62{bottom:1052.070000px;}
.ye1{bottom:1053.330000px;}
.y1a8{bottom:1054.410000px;}
.y1ea{bottom:1058.910000px;}
.y17c{bottom:1059.450000px;}
.yb7{bottom:1060.890000px;}
.y2a{bottom:1061.250000px;}
.y124{bottom:1062.330000px;}
.y8c{bottom:1063.410000px;}
.y1c8{bottom:1064.850000px;}
.y61{bottom:1069.170000px;}
.yb6{bottom:1078.890000px;}
.ye0{bottom:1080.510000px;}
.y8b{bottom:1080.690000px;}
.y1c7{bottom:1082.130000px;}
.y29{bottom:1082.310000px;}
.y60{bottom:1095.450000px;}
.yb5{bottom:1097.070000px;}
.y8a{bottom:1097.970000px;}
.ydf{bottom:1098.510000px;}
.y1c6{bottom:1099.410000px;}
.y28{bottom:1108.050000px;}
.y5f{bottom:1111.110000px;}
.y89{bottom:1115.250000px;}
.yb4{bottom:1116.690000px;}
.y5e{bottom:1119.030000px;}
.y5d{bottom:1126.590000px;}
.y26{bottom:1133.280000px;}
.y5c{bottom:1134.720000px;}
.y23{bottom:1151.460000px;}
.y5a{bottom:1152.900000px;}
.y22{bottom:1191.960000px;}
.y59{bottom:1194.660000px;}
.h18{height:2.826563px;}
.h22{height:17.280000px;}
.h2b{height:17.316000px;}
.h1b{height:17.666016px;}
.h1d{height:29.678906px;}
.ha{height:31.860000px;}
.h7{height:32.130000px;}
.h1c{height:34.380000px;}
.h16{height:37.771172px;}
.h1a{height:39.760312px;}
.hf{height:40.964766px;}
.h12{height:40.985156px;}
.h10{height:41.218594px;}
.h1f{height:42.806602px;}
.hb{height:43.506914px;}
.h6{height:45.900000px;}
.h19{height:47.321367px;}
.h3{height:48.195000px;}
.h28{height:51.660000px;}
.h2a{height:51.840000px;}
.h2{height:55.080000px;}
.h17{height:55.260000px;}
.h23{height:55.656000px;}
.h26{height:56.880000px;}
.h2d{height:58.621992px;}
.h15{height:58.651172px;}
.h14{height:60.226875px;}
.h20{height:61.423863px;}
.h1e{height:62.211094px;}
.hc{height:63.824414px;}
.h11{height:64.978594px;}
.he{height:66.757500px;}
.hd{height:67.992539px;}
.h21{height:68.940000px;}
.h29{height:68.976000px;}
.h27{height:69.120000px;}
.h2c{height:69.156000px;}
.h9{height:70.664062px;}
.h25{height:73.800000px;}
.h5{height:78.030000px;}
.h24{height:86.400000px;}
.h4{height:119.055004px;}
.h13{height:172.470000px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w11{width:69.156000px;}
.w15{width:69.516000px;}
.w7{width:72.756000px;}
.wc{width:73.440000px;}
.w10{width:81.900000px;}
.w14{width:82.620000px;}
.wf{width:99.396000px;}
.w13{width:100.116000px;}
.wa{width:115.200000px;}
.w9{width:191.370000px;}
.we{width:298.470000px;}
.w12{width:299.010000px;}
.w8{width:359.175000px;}
.wb{width:453.885000px;}
.wd{width:479.265000px;}
.w6{width:479.955000px;}
.w17{width:481.755000px;}
.w16{width:551.265000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w5{width:892.799987px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:3.960000px;}
.x6{left:8.100000px;}
.x8{left:14.580000px;}
.x22{left:22.860000px;}
.x21{left:29.160000px;}
.x24{left:31.680000px;}
.x20{left:37.830000px;}
.x23{left:40.350000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x16{left:133.965000px;}
.x5{left:170.129987px;}
.xe{left:174.989987px;}
.x9{left:182.369987px;}
.x10{left:185.969987px;}
.x18{left:191.369987px;}
.xf{left:197.489987px;}
.xc{left:198.749987px;}
.xd{left:200.909987px;}
.x4{left:203.484001px;}
.x26{left:224.129987px;}
.x15{left:243.570000px;}
.x14{left:285.330000px;}
.x1b{left:288.209987px;}
.x17{left:292.035000px;}
.xa{left:310.574987px;}
.x1a{left:354.494987px;}
.x11{left:369.974987px;}
.x25{left:381.494987px;}
.x13{left:386.174987px;}
.xb{left:446.474987px;}
.x3{left:454.959000px;}
.x1d{left:470.235000px;}
.x12{left:530.745000px;}
.x1e{left:570.345000px;}
.x7{left:650.085000px;}
.x1f{left:652.965000px;}
.x19{left:725.909987px;}
@media print{
.v4{vertical-align:-42.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.269867pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.086933pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.048640pt;}
.ls18{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.114667pt;}
.lsf{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls7{letter-spacing:5.280000pt;}
.ls11{letter-spacing:20.432640pt;}
.ls3{letter-spacing:55.040000pt;}
.ls5{letter-spacing:55.146667pt;}
.ls4{letter-spacing:55.680000pt;}
.ls13{letter-spacing:58.832640pt;}
.ls6{letter-spacing:973.280000pt;}
.wsb{word-spacing:-34.560000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws3{word-spacing:-12.024427pt;}
.wsc{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-3.080960pt;}
._c{margin-left:-2.185600pt;}
._2{margin-left:-0.973440pt;}
._0{width:0.903040pt;}
._8{width:1.840640pt;}
._9{width:2.815360pt;}
._a{width:3.718400pt;}
._6{width:4.849493pt;}
._5{width:6.162560pt;}
._4{width:7.377920pt;}
._d{width:8.339840pt;}
._e{width:9.720960pt;}
._1a{width:11.367680pt;}
._1d{width:12.376960pt;}
._7{width:14.236160pt;}
._15{width:15.351680pt;}
._16{width:16.996480pt;}
._20{width:17.911040pt;}
._10{width:18.910720pt;}
._f{width:19.973120pt;}
._1f{width:21.141760pt;}
._19{width:22.540160pt;}
._18{width:23.585280pt;}
._1b{width:24.594560pt;}
._1e{width:25.639680pt;}
._13{width:27.427200pt;}
._14{width:28.366080pt;}
._12{width:29.375360pt;}
._17{width:31.447040pt;}
._24{width:35.285120pt;}
._23{width:36.619520pt;}
._2c{width:38.087040pt;}
._2d{width:40.902400pt;}
._29{width:42.071040pt;}
._28{width:45.311360pt;}
._2e{width:46.238080pt;}
._2b{width:48.073600pt;}
._2a{width:49.295360pt;}
._25{width:51.207680pt;}
._3{width:54.899840pt;}
._26{width:56.333440pt;}
._2f{width:58.432000pt;}
._27{width:59.600640pt;}
._30{width:70.808960pt;}
._22{width:73.305600pt;}
._21{width:74.421120pt;}
._1c{width:754.880000pt;}
._1{width:903.572907pt;}
._11{width:1410.236160pt;}
.fsc{font-size:2.560000pt;}
.fse{font-size:16.000000pt;}
.fsf{font-size:26.880000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.240000pt;}
.y53{bottom:2.720000pt;}
.y3d{bottom:2.880000pt;}
.y16d{bottom:6.240000pt;}
.y175{bottom:7.200000pt;}
.y17a{bottom:7.360000pt;}
.y24{bottom:9.440000pt;}
.y25{bottom:10.080000pt;}
.y188{bottom:10.400000pt;}
.y5b{bottom:12.320000pt;}
.y56{bottom:14.560000pt;}
.y180{bottom:18.080000pt;}
.y3c{bottom:18.240000pt;}
.y16e{bottom:19.866667pt;}
.y17b{bottom:20.480000pt;}
.y16c{bottom:21.626667pt;}
.y174{bottom:22.560000pt;}
.y179{bottom:22.720000pt;}
.y193{bottom:25.760000pt;}
.y168{bottom:25.920000pt;}
.y55{bottom:26.880000pt;}
.y176{bottom:28.000000pt;}
.y17f{bottom:33.440000pt;}
.y3b{bottom:33.600000pt;}
.y16b{bottom:36.986667pt;}
.y173{bottom:37.920000pt;}
.y178{bottom:38.080000pt;}
.y54{bottom:39.040000pt;}
.y3a{bottom:48.800000pt;}
.y184{bottom:48.840000pt;}
.y170{bottom:48.960000pt;}
.y191{bottom:49.000000pt;}
.y172{bottom:53.120000pt;}
.y5{bottom:59.133337pt;}
.y39{bottom:64.160000pt;}
.y16f{bottom:64.320000pt;}
.y38{bottom:79.520000pt;}
.y4{bottom:86.333337pt;}
.y37{bottom:94.880000pt;}
.y36{bottom:110.280000pt;}
.y21{bottom:123.790666pt;}
.y35{bottom:125.480000pt;}
.y34{bottom:140.840000pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y27{bottom:247.226667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y58{bottom:284.226667pt;}
.y177{bottom:286.466667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y52{bottom:287.906667pt;}
.yde{bottom:291.106667pt;}
.y15c{bottom:291.426667pt;}
.y106{bottom:292.546667pt;}
.yb3{bottom:299.266667pt;}
.y143{bottom:300.546667pt;}
.y1a7{bottom:303.266667pt;}
.ydd{bottom:307.106667pt;}
.y15b{bottom:307.426667pt;}
.y123{bottom:307.746667pt;}
.y105{bottom:308.706667pt;}
.yf{bottom:309.452000pt;}
.y201{bottom:310.626667pt;}
.y88{bottom:312.386667pt;}
.yb2{bottom:314.626667pt;}
.y142{bottom:316.546667pt;}
.y1a6{bottom:318.626667pt;}
.y18c{bottom:319.106667pt;}
.ydc{bottom:323.266667pt;}
.y122{bottom:323.746667pt;}
.y104{bottom:324.706667pt;}
.y200{bottom:325.986667pt;}
.y87{bottom:327.746667pt;}
.yb1{bottom:329.986667pt;}
.y15a{bottom:331.586667pt;}
.y141{bottom:332.706667pt;}
.y1a5{bottom:333.986667pt;}
.y1e9{bottom:334.626667pt;}
.y171{bottom:337.666667pt;}
.ydb{bottom:339.426667pt;}
.y121{bottom:339.906667pt;}
.y1ff{bottom:341.346667pt;}
.y86{bottom:343.106667pt;}
.ye{bottom:343.809333pt;}
.y51{bottom:344.546667pt;}
.yb0{bottom:345.346667pt;}
.y140{bottom:348.706667pt;}
.y103{bottom:348.866667pt;}
.y1a4{bottom:349.346667pt;}
.y1e8{bottom:349.986667pt;}
.yda{bottom:355.426667pt;}
.y159{bottom:355.746667pt;}
.y120{bottom:355.906667pt;}
.y50{bottom:356.866667pt;}
.y85{bottom:358.466667pt;}
.y1fe{bottom:360.546667pt;}
.yaf{bottom:360.706667pt;}
.yd{bottom:362.706666pt;}
.y1a3{bottom:364.546667pt;}
.y13f{bottom:364.866667pt;}
.y102{bottom:365.026667pt;}
.y1e7{bottom:365.346667pt;}
.yd9{bottom:371.586667pt;}
.y11f{bottom:372.066667pt;}
.y84{bottom:373.666667pt;}
.yae{bottom:375.906667pt;}
.y158{bottom:379.746667pt;}
.y1a2{bottom:379.906667pt;}
.y4f{bottom:380.226667pt;}
.y1e6{bottom:380.546667pt;}
.y101{bottom:381.026667pt;}
.yd8{bottom:387.746667pt;}
.y83{bottom:389.026667pt;}
.yad{bottom:391.266667pt;}
.y1a1{bottom:395.266667pt;}
.y4e{bottom:395.586667pt;}
.y1e5{bottom:395.906667pt;}
.y11e{bottom:396.226667pt;}
.y100{bottom:397.186667pt;}
.y157{bottom:403.906667pt;}
.y13e{bottom:405.026667pt;}
.yac{bottom:406.626667pt;}
.y1a0{bottom:410.626667pt;}
.y4d{bottom:410.946667pt;}
.yd7{bottom:411.746667pt;}
.y11d{bottom:412.226667pt;}
.y82{bottom:412.386667pt;}
.yff{bottom:413.346667pt;}
.y1e4{bottom:415.266667pt;}
.y156{bottom:419.906667pt;}
.y13d{bottom:421.186667pt;}
.yab{bottom:421.986667pt;}
.y19f{bottom:425.986667pt;}
.y4c{bottom:426.306667pt;}
.y81{bottom:427.746667pt;}
.yd6{bottom:427.906667pt;}
.y11c{bottom:428.386667pt;}
.yfe{bottom:429.346667pt;}
.y1c5{bottom:429.986667pt;}
.y1e3{bottom:430.626667pt;}
.y155{bottom:436.066667pt;}
.y13c{bottom:437.346667pt;}
.y19e{bottom:441.346667pt;}
.y4b{bottom:441.666667pt;}
.y80{bottom:443.106667pt;}
.yd5{bottom:443.906667pt;}
.y11b{bottom:444.386667pt;}
.yaa{bottom:445.186667pt;}
.yfd{bottom:445.506667pt;}
.y1e2{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.y154{bottom:452.226667pt;}
.y1c4{bottom:453.186667pt;}
.y13b{bottom:453.346667pt;}
.y4a{bottom:456.866667pt;}
.y7f{bottom:458.466667pt;}
.yd4{bottom:460.066667pt;}
.ya9{bottom:460.546667pt;}
.y1e1{bottom:461.186667pt;}
.yfc{bottom:461.506667pt;}
.yb{bottom:462.990669pt;}
.y19d{bottom:464.546667pt;}
.y13a{bottom:469.506667pt;}
.y49{bottom:472.226667pt;}
.y7e{bottom:473.666667pt;}
.ya8{bottom:475.906667pt;}
.yd3{bottom:476.226667pt;}
.y1c3{bottom:476.546667pt;}
.yfb{bottom:477.666667pt;}
.ya{bottom:478.990666pt;}
.y19c{bottom:479.906667pt;}
.y1e0{bottom:480.546667pt;}
.y16a{bottom:481.346667pt;}
.y11a{bottom:484.706667pt;}
.y139{bottom:485.506667pt;}
.y48{bottom:487.586667pt;}
.y7d{bottom:489.026667pt;}
.y18b{bottom:489.666667pt;}
.ya7{bottom:491.266667pt;}
.y1c2{bottom:491.906667pt;}
.yd2{bottom:492.226667pt;}
.y153{bottom:492.386667pt;}
.yfa{bottom:493.826667pt;}
.y9{bottom:494.990666pt;}
.y1fd{bottom:495.266667pt;}
.y1df{bottom:495.906667pt;}
.y138{bottom:501.693333pt;}
.y47{bottom:502.973333pt;}
.y19b{bottom:503.293333pt;}
.y7c{bottom:504.413333pt;}
.y18a{bottom:505.693333pt;}
.ya6{bottom:506.653333pt;}
.y1c1{bottom:507.293333pt;}
.yd1{bottom:508.413333pt;}
.y119{bottom:508.733333pt;}
.y1fc{bottom:510.653333pt;}
.y1de{bottom:511.293333pt;}
.yf9{bottom:517.853333pt;}
.y46{bottom:518.333333pt;}
.y19a{bottom:518.653333pt;}
.y7b{bottom:519.773333pt;}
.ya5{bottom:522.013333pt;}
.y1c0{bottom:522.653333pt;}
.yd0{bottom:524.413333pt;}
.y152{bottom:524.573333pt;}
.y1dd{bottom:526.653333pt;}
.y1fb{bottom:530.013333pt;}
.y169{bottom:531.453333pt;}
.y118{bottom:532.893333pt;}
.y45{bottom:533.693333pt;}
.y137{bottom:533.853333pt;}
.yf8{bottom:534.013333pt;}
.ya4{bottom:537.373333pt;}
.y1bf{bottom:538.013333pt;}
.ycf{bottom:540.573333pt;}
.y199{bottom:541.853333pt;}
.y7a{bottom:543.133333pt;}
.y1fa{bottom:545.373333pt;}
.y1dc{bottom:545.853333pt;}
.y167{bottom:547.453333pt;}
.y151{bottom:548.733333pt;}
.y44{bottom:548.893333pt;}
.yf7{bottom:550.013333pt;}
.ya3{bottom:552.573333pt;}
.y1be{bottom:553.373333pt;}
.yce{bottom:556.733333pt;}
.y117{bottom:557.053333pt;}
.y79{bottom:558.493333pt;}
.y1f9{bottom:560.573333pt;}
.y1db{bottom:561.213333pt;}
.y43{bottom:564.253333pt;}
.y150{bottom:564.733333pt;}
.y198{bottom:565.213333pt;}
.y136{bottom:566.013333pt;}
.yf6{bottom:566.173333pt;}
.y189{bottom:567.773333pt;}
.ya2{bottom:567.933333pt;}
.y1bd{bottom:568.573333pt;}
.ycd{bottom:572.733333pt;}
.y116{bottom:573.053333pt;}
.y78{bottom:573.693333pt;}
.y8{bottom:573.786667pt;}
.y1f8{bottom:575.933333pt;}
.y42{bottom:579.613333pt;}
.y197{bottom:580.573333pt;}
.y14f{bottom:580.893333pt;}
.y135{bottom:582.173333pt;}
.yf5{bottom:582.333333pt;}
.ya1{bottom:583.293333pt;}
.y1bc{bottom:583.933333pt;}
.ycc{bottom:588.893333pt;}
.y77{bottom:589.053333pt;}
.y115{bottom:589.213333pt;}
.y1f7{bottom:591.293333pt;}
.y7{bottom:592.685334pt;}
.y41{bottom:594.973333pt;}
.y196{bottom:595.933333pt;}
.y14e{bottom:597.053333pt;}
.y134{bottom:598.333333pt;}
.ya0{bottom:598.653333pt;}
.y1bb{bottom:599.293333pt;}
.y76{bottom:604.413333pt;}
.ycb{bottom:605.053333pt;}
.yf4{bottom:606.333333pt;}
.y40{bottom:610.333333pt;}
.y1f6{bottom:610.653333pt;}
.y1da{bottom:611.293333pt;}
.y166{bottom:612.253333pt;}
.y14d{bottom:613.053333pt;}
.y114{bottom:613.213333pt;}
.y9f{bottom:614.013333pt;}
.y187{bottom:614.493333pt;}
.y1ba{bottom:614.653333pt;}
.y195{bottom:619.293333pt;}
.y75{bottom:619.773333pt;}
.yca{bottom:621.053333pt;}
.y133{bottom:622.333333pt;}
.yf3{bottom:622.493333pt;}
.y3f{bottom:624.893333pt;}
.y1f5{bottom:626.013333pt;}
.y14c{bottom:629.213333pt;}
.y9e{bottom:629.373333pt;}
.y1b9{bottom:630.013333pt;}
.y1d9{bottom:630.653333pt;}
.y194{bottom:634.653333pt;}
.y3e{bottom:635.613333pt;}
.y113{bottom:637.373333pt;}
.y132{bottom:638.493333pt;}
.yf2{bottom:638.653333pt;}
.y1f4{bottom:641.373333pt;}
.y74{bottom:642.973333pt;}
.y33{bottom:644.893333pt;}
.yc9{bottom:645.213333pt;}
.y1b8{bottom:645.373333pt;}
.y6{bottom:645.598667pt;}
.y186{bottom:645.693333pt;}
.y1d8{bottom:646.013333pt;}
.y192{bottom:647.773333pt;}
.y165{bottom:650.973333pt;}
.y9d{bottom:652.573333pt;}
.y112{bottom:653.533333pt;}
.yf1{bottom:654.653333pt;}
.y73{bottom:658.333333pt;}
.y1b7{bottom:660.573333pt;}
.yc8{bottom:661.213333pt;}
.y14b{bottom:661.373333pt;}
.y164{bottom:666.333333pt;}
.y9c{bottom:667.933333pt;}
.y3{bottom:668.977329pt;}
.y131{bottom:670.653333pt;}
.yf0{bottom:670.813333pt;}
.y72{bottom:673.693333pt;}
.y1b6{bottom:675.933333pt;}
.yc7{bottom:677.373333pt;}
.y111{bottom:677.533333pt;}
.y1d7{bottom:680.573333pt;}
.y163{bottom:681.693333pt;}
.y9b{bottom:683.293333pt;}
.yef{bottom:686.813333pt;}
.y71{bottom:689.053333pt;}
.y1b5{bottom:691.293333pt;}
.y185{bottom:692.413333pt;}
.yc6{bottom:693.533333pt;}
.y110{bottom:693.693333pt;}
.y1d6{bottom:695.933333pt;}
.y162{bottom:697.053333pt;}
.y9a{bottom:698.653333pt;}
.y14a{bottom:701.533333pt;}
.yee{bottom:702.973333pt;}
.y70{bottom:704.413333pt;}
.y1b4{bottom:706.653333pt;}
.y183{bottom:708.413333pt;}
.yc5{bottom:709.533333pt;}
.y10f{bottom:709.693333pt;}
.y1f3{bottom:710.653333pt;}
.y130{bottom:710.813333pt;}
.y1d5{bottom:711.293333pt;}
.y161{bottom:712.253333pt;}
.y99{bottom:714.013333pt;}
.y149{bottom:717.693333pt;}
.y6f{bottom:719.773333pt;}
.y1b3{bottom:722.013333pt;}
.yc4{bottom:725.693333pt;}
.y1f2{bottom:726.013333pt;}
.y12f{bottom:726.973333pt;}
.yed{bottom:727.133333pt;}
.y160{bottom:727.613333pt;}
.y98{bottom:729.213333pt;}
.y1d4{bottom:730.653333pt;}
.y148{bottom:733.693333pt;}
.y10e{bottom:733.853333pt;}
.y6e{bottom:735.133333pt;}
.y1b2{bottom:737.213333pt;}
.y1f1{bottom:741.213333pt;}
.yc3{bottom:741.693333pt;}
.yec{bottom:743.133333pt;}
.y1d3{bottom:746.013333pt;}
.y10d{bottom:750.013333pt;}
.y97{bottom:752.613333pt;}
.yc2{bottom:757.893333pt;}
.y6d{bottom:758.373333pt;}
.y15f{bottom:759.013333pt;}
.y12e{bottom:759.173333pt;}
.yeb{bottom:759.333333pt;}
.y1f0{bottom:760.613333pt;}
.y1d2{bottom:761.253333pt;}
.y20c{bottom:761.893333pt;}
.y10c{bottom:766.053333pt;}
.y1b1{bottom:767.973333pt;}
.y182{bottom:770.373333pt;}
.y190{bottom:771.813333pt;}
.y6c{bottom:773.733333pt;}
.yc1{bottom:774.053333pt;}
.y15e{bottom:774.373333pt;}
.y12d{bottom:775.333333pt;}
.yea{bottom:775.493333pt;}
.y96{bottom:775.973333pt;}
.y1d1{bottom:780.613333pt;}
.y20b{bottom:781.253333pt;}
.y2{bottom:781.661334pt;}
.y10b{bottom:782.213333pt;}
.y1b0{bottom:783.333333pt;}
.y6b{bottom:789.093333pt;}
.yc0{bottom:790.053333pt;}
.y95{bottom:791.333333pt;}
.y12c{bottom:791.493333pt;}
.y15d{bottom:794.853333pt;}
.y1d0{bottom:795.973333pt;}
.y20a{bottom:796.613333pt;}
.y10a{bottom:798.373333pt;}
.y1af{bottom:798.693333pt;}
.ye9{bottom:799.493333pt;}
.y6a{bottom:804.453333pt;}
.y147{bottom:806.213333pt;}
.y1ef{bottom:810.693333pt;}
.y1cf{bottom:811.333333pt;}
.y32{bottom:811.653333pt;}
.y1ae{bottom:814.053333pt;}
.ybf{bottom:814.213333pt;}
.y109{bottom:814.373333pt;}
.y94{bottom:814.693333pt;}
.y12b{bottom:815.493333pt;}
.ye8{bottom:815.653333pt;}
.y209{bottom:815.973333pt;}
.y18f{bottom:818.373333pt;}
.y69{bottom:819.813333pt;}
.y146{bottom:822.373333pt;}
.y31{bottom:823.653333pt;}
.y1ee{bottom:826.053333pt;}
.y1ad{bottom:829.253333pt;}
.y93{bottom:830.053333pt;}
.ybe{bottom:830.373333pt;}
.y1ce{bottom:830.533333pt;}
.y208{bottom:831.333333pt;}
.ye7{bottom:831.653333pt;}
.y181{bottom:832.453333pt;}
.y68{bottom:835.173333pt;}
.y145{bottom:838.373333pt;}
.y108{bottom:838.533333pt;}
.y1ed{bottom:841.253333pt;}
.y1ac{bottom:844.613333pt;}
.y92{bottom:845.253333pt;}
.y30{bottom:845.733333pt;}
.y1cd{bottom:845.893333pt;}
.ybd{bottom:846.373333pt;}
.y207{bottom:846.693333pt;}
.y12a{bottom:847.653333pt;}
.ye6{bottom:847.813333pt;}
.y67{bottom:850.373333pt;}
.y144{bottom:854.533333pt;}
.y1{bottom:859.312000pt;}
.y91{bottom:860.613333pt;}
.y1cc{bottom:861.253333pt;}
.y206{bottom:861.893333pt;}
.ybc{bottom:862.533333pt;}
.y2f{bottom:863.493333pt;}
.y129{bottom:863.813333pt;}
.ye5{bottom:863.973333pt;}
.y18e{bottom:865.093333pt;}
.y1ab{bottom:867.973333pt;}
.y66{bottom:873.733333pt;}
.y90{bottom:875.973333pt;}
.y1cb{bottom:876.613333pt;}
.ybb{bottom:878.533333pt;}
.y17e{bottom:879.173333pt;}
.y128{bottom:879.973333pt;}
.y2e{bottom:880.293333pt;}
.y18d{bottom:881.093333pt;}
.y205{bottom:881.253333pt;}
.y107{bottom:886.693333pt;}
.ye4{bottom:887.973333pt;}
.y65{bottom:889.093333pt;}
.y8f{bottom:891.333333pt;}
.yba{bottom:894.693333pt;}
.y127{bottom:895.973333pt;}
.y204{bottom:896.613333pt;}
.y2d{bottom:897.093333pt;}
.y1ca{bottom:899.973333pt;}
.ye3{bottom:904.133333pt;}
.y64{bottom:904.453333pt;}
.y1aa{bottom:906.693333pt;}
.y2c{bottom:907.973333pt;}
.y1ec{bottom:910.693333pt;}
.yb9{bottom:910.853333pt;}
.y203{bottom:911.973333pt;}
.y126{bottom:912.133333pt;}
.y8e{bottom:914.693333pt;}
.y63{bottom:919.813333pt;}
.ye2{bottom:920.133333pt;}
.y1a9{bottom:922.053333pt;}
.y1c9{bottom:923.333333pt;}
.y2b{bottom:925.093333pt;}
.y17d{bottom:925.733333pt;}
.y1eb{bottom:926.053333pt;}
.yb8{bottom:926.853333pt;}
.y202{bottom:927.333333pt;}
.y125{bottom:928.133333pt;}
.y8d{bottom:930.053333pt;}
.y62{bottom:935.173333pt;}
.ye1{bottom:936.293333pt;}
.y1a8{bottom:937.253333pt;}
.y1ea{bottom:941.253333pt;}
.y17c{bottom:941.733333pt;}
.yb7{bottom:943.013333pt;}
.y2a{bottom:943.333333pt;}
.y124{bottom:944.293333pt;}
.y8c{bottom:945.253333pt;}
.y1c8{bottom:946.533333pt;}
.y61{bottom:950.373333pt;}
.yb6{bottom:959.013333pt;}
.ye0{bottom:960.453333pt;}
.y8b{bottom:960.613333pt;}
.y1c7{bottom:961.893333pt;}
.y29{bottom:962.053333pt;}
.y60{bottom:973.733333pt;}
.yb5{bottom:975.173333pt;}
.y8a{bottom:975.973333pt;}
.ydf{bottom:976.453333pt;}
.y1c6{bottom:977.253333pt;}
.y28{bottom:984.933333pt;}
.y5f{bottom:987.653333pt;}
.y89{bottom:991.333333pt;}
.yb4{bottom:992.613333pt;}
.y5e{bottom:994.693333pt;}
.y5d{bottom:1001.413333pt;}
.y26{bottom:1007.360000pt;}
.y5c{bottom:1008.640000pt;}
.y23{bottom:1023.520000pt;}
.y5a{bottom:1024.800000pt;}
.y22{bottom:1059.520000pt;}
.y59{bottom:1061.920000pt;}
.h18{height:2.512500pt;}
.h22{height:15.360000pt;}
.h2b{height:15.392000pt;}
.h1b{height:15.703125pt;}
.h1d{height:26.381250pt;}
.ha{height:28.320000pt;}
.h7{height:28.560000pt;}
.h1c{height:30.560000pt;}
.h16{height:33.574375pt;}
.h1a{height:35.342500pt;}
.hf{height:36.413125pt;}
.h12{height:36.431250pt;}
.h10{height:36.638750pt;}
.h1f{height:38.050313pt;}
.hb{height:38.672812pt;}
.h6{height:40.800000pt;}
.h19{height:42.063437pt;}
.h3{height:42.840000pt;}
.h28{height:45.920000pt;}
.h2a{height:46.080000pt;}
.h2{height:48.960000pt;}
.h17{height:49.120000pt;}
.h23{height:49.472000pt;}
.h26{height:50.560000pt;}
.h2d{height:52.108438pt;}
.h15{height:52.134375pt;}
.h14{height:53.535000pt;}
.h20{height:54.598989pt;}
.h1e{height:55.298750pt;}
.hc{height:56.732813pt;}
.h11{height:57.758750pt;}
.he{height:59.340000pt;}
.hd{height:60.437812pt;}
.h21{height:61.280000pt;}
.h29{height:61.312000pt;}
.h27{height:61.440000pt;}
.h2c{height:61.472000pt;}
.h9{height:62.812500pt;}
.h25{height:65.600000pt;}
.h5{height:69.360000pt;}
.h24{height:76.800000pt;}
.h4{height:105.826671pt;}
.h13{height:153.306667pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w11{width:61.472000pt;}
.w15{width:61.792000pt;}
.w7{width:64.672000pt;}
.wc{width:65.280000pt;}
.w10{width:72.800000pt;}
.w14{width:73.440000pt;}
.wf{width:88.352000pt;}
.w13{width:88.992000pt;}
.wa{width:102.400000pt;}
.w9{width:170.106667pt;}
.we{width:265.306667pt;}
.w12{width:265.786667pt;}
.w8{width:319.266667pt;}
.wb{width:403.453333pt;}
.wd{width:426.013333pt;}
.w6{width:426.626667pt;}
.w17{width:428.226667pt;}
.w16{width:490.013333pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w5{width:793.599988pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:3.520000pt;}
.x6{left:7.200000pt;}
.x8{left:12.960000pt;}
.x22{left:20.320000pt;}
.x21{left:25.920000pt;}
.x24{left:28.160000pt;}
.x20{left:33.626667pt;}
.x23{left:35.866667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x16{left:119.080000pt;}
.x5{left:151.226655pt;}
.xe{left:155.546655pt;}
.x9{left:162.106655pt;}
.x10{left:165.306655pt;}
.x18{left:170.106655pt;}
.xf{left:175.546655pt;}
.xc{left:176.666655pt;}
.xd{left:178.586655pt;}
.x4{left:180.874667pt;}
.x26{left:199.226655pt;}
.x15{left:216.506667pt;}
.x14{left:253.626667pt;}
.x1b{left:256.186655pt;}
.x17{left:259.586667pt;}
.xa{left:276.066655pt;}
.x1a{left:315.106655pt;}
.x11{left:328.866655pt;}
.x25{left:339.106655pt;}
.x13{left:343.266655pt;}
.xb{left:396.866655pt;}
.x3{left:404.408000pt;}
.x1d{left:417.986667pt;}
.x12{left:471.773333pt;}
.x1e{left:506.973333pt;}
.x7{left:577.853333pt;}
.x1f{left:580.413333pt;}
.x19{left:645.253322pt;}
}




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