
    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_e4d4650d80efe087c7754031.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_0aed43aae467f816385883b3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2be10febc137190b050c8f91.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7682ba8b9f1c23aafb524a3a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_daab4bd4e916001df509b44a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e43c6c02a15b4672eacf27cf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7f5c996c518276d4f7595537.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_188fca2e3d2c4ea4e8a04be6.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_a13aea0615b3900a69c09f93.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_08dc7260bade74811fca2b53.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0753c6a61dfe60a6189ca3c8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0473ccb5733f70e9349c4504.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914551;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_c23571591ef8a9d27553c42f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7ef48f9d1b7b3a2927b261c1.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a7401bbdab0d5adb1364e084.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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a02723ec93b608289be46d9d.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v1{vertical-align:-75.600000px;}
.v4{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.303600px;}
.ls21{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.018000px;}
.lse{letter-spacing:-0.008640px;}
.ls1e{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls20{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.466560px;}
.lsd{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.612000px;}
.ls7{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.924000px;}
.ls11{letter-spacing:0.978000px;}
.ls13{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.386720px;}
.lsb{letter-spacing:6.426720px;}
.ls17{letter-spacing:6.660000px;}
.ls10{letter-spacing:29.700000px;}
.ls3{letter-spacing:69.300000px;}
.ls1{letter-spacing:1412.994720px;}
.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;}
}
.ws3{word-spacing:-84.240000px;}
.ws18{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws4{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.020000px;}
.wsc{word-spacing:-15.918000px;}
.ws16{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.606000px;}
.wsd{word-spacing:-15.552000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.734480px;}
.ws10{word-spacing:-13.608000px;}
.ws11{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.482000px;}
.ws5{word-spacing:-10.440000px;}
.ws17{word-spacing:-9.715680px;}
.wsb{word-spacing:-9.711360px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:79.134000px;}
.ws1a{word-spacing:112.230000px;}
._12{margin-left:-3.466080px;}
._11{margin-left:-2.390400px;}
._2{margin-left:-1.179360px;}
._0{width:1.015920px;}
._1{width:2.027280px;}
._9{width:3.141360px;}
._8{width:4.960080px;}
._4{width:6.019920px;}
._3{width:7.171200px;}
._a{width:9.122880px;}
._15{width:10.136640px;}
._e{width:11.243520px;}
._b{width:12.430080px;}
._10{width:13.681440px;}
._f{width:16.613280px;}
._13{width:17.632560px;}
._18{width:19.038240px;}
._17{width:20.437920px;}
._1b{width:21.573360px;}
._16{width:22.828320px;}
._14{width:23.970240px;}
._1e{width:25.039440px;}
._25{width:26.354160px;}
._1a{width:28.350480px;}
._7{width:29.583360px;}
._19{width:30.988800px;}
._1f{width:35.019360px;}
._20{width:36.275520px;}
._1c{width:38.537280px;}
._1d{width:41.466960px;}
._21{width:42.490800px;}
._5{width:44.704080px;}
._6{width:45.768960px;}
._22{width:52.708320px;}
._24{width:74.102400px;}
._23{width:75.707760px;}
._c{width:849.240000px;}
._d{width:1620.355440px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.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;}
.yda{bottom:2.880000px;}
.y188{bottom:3.060000px;}
.ye4{bottom:3.225000px;}
.yf0{bottom:3.240000px;}
.y17d{bottom:3.270000px;}
.y143{bottom:3.405000px;}
.y3a{bottom:3.420000px;}
.y25{bottom:3.600000px;}
.y139{bottom:10.620000px;}
.ydb{bottom:10.800000px;}
.yd8{bottom:11.160000px;}
.y26{bottom:14.040000px;}
.y15a{bottom:16.410000px;}
.y137{bottom:18.360000px;}
.yd9{bottom:18.540000px;}
.ye3{bottom:18.705000px;}
.yef{bottom:18.720000px;}
.y17c{bottom:18.750000px;}
.y142{bottom:18.885000px;}
.yde{bottom:18.900000px;}
.y39{bottom:20.700000px;}
.y24{bottom:20.880000px;}
.y138{bottom:26.100000px;}
.y13a{bottom:33.840000px;}
.y145{bottom:34.185000px;}
.y147{bottom:34.200000px;}
.y17b{bottom:34.230000px;}
.ye2{bottom:34.365000px;}
.ydd{bottom:34.380000px;}
.yed{bottom:34.410000px;}
.y38{bottom:38.340000px;}
.y159{bottom:47.670000px;}
.y184{bottom:49.680000px;}
.ye1{bottom:49.845000px;}
.y18b{bottom:49.860000px;}
.yec{bottom:49.890000px;}
.y37{bottom:55.485000px;}
.y153{bottom:63.210000px;}
.ye0{bottom:65.325000px;}
.y183{bottom:65.340000px;}
.y17a{bottom:65.370000px;}
.yeb{bottom:65.550000px;}
.y5{bottom:66.525004px;}
.y36{bottom:72.765000px;}
.y18a{bottom:80.820000px;}
.y186{bottom:80.850000px;}
.yea{bottom:81.030000px;}
.y154{bottom:83.265000px;}
.y35{bottom:90.045000px;}
.ye9{bottom:96.510000px;}
.y4{bottom:97.125005px;}
.y155{bottom:103.290000px;}
.y34{bottom:106.965000px;}
.ye8{bottom:111.990000px;}
.y156{bottom:123.330000px;}
.y33{bottom:124.605000px;}
.ye7{bottom:127.650000px;}
.y22{bottom:139.264499px;}
.ye6{bottom:143.130000px;}
.y157{bottom:143.385000px;}
.y158{bottom:163.440000px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y28{bottom:278.310000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y176{bottom:323.130000px;}
.yad{bottom:323.310000px;}
.y83{bottom:323.670000px;}
.y10c{bottom:324.030000px;}
.y56{bottom:329.070000px;}
.y1ac{bottom:330.150000px;}
.yd3{bottom:333.750000px;}
.y55{bottom:334.290000px;}
.y185{bottom:336.105000px;}
.yac{bottom:340.410000px;}
.y10b{bottom:341.310000px;}
.y1cc{bottom:346.530000px;}
.y54{bottom:347.070000px;}
.y151{bottom:347.250000px;}
.y1ab{bottom:347.430000px;}
.y10{bottom:348.133500px;}
.yfd{bottom:348.510000px;}
.y11a{bottom:349.410000px;}
.y82{bottom:350.310000px;}
.yd2{bottom:351.030000px;}
.y134{bottom:354.450000px;}
.y10a{bottom:358.410000px;}
.y1cb{bottom:363.810000px;}
.y1e8{bottom:364.530000px;}
.y1aa{bottom:364.710000px;}
.yfc{bottom:365.610000px;}
.yab{bottom:366.330000px;}
.y53{bottom:366.510000px;}
.y119{bottom:366.690000px;}
.y81{bottom:367.410000px;}
.yd1{bottom:368.310000px;}
.y150{bottom:370.290000px;}
.y152{bottom:371.340000px;}
.y133{bottom:371.730000px;}
.y1dd{bottom:372.810000px;}
.y109{bottom:375.690000px;}
.y1e7{bottom:381.810000px;}
.yfb{bottom:382.890000px;}
.y118{bottom:383.970000px;}
.y80{bottom:384.690000px;}
.yf{bottom:386.785499px;}
.y132{bottom:389.010000px;}
.y1ca{bottom:389.910000px;}
.y1a9{bottom:390.990000px;}
.y52{bottom:392.790000px;}
.yaa{bottom:392.970000px;}
.yd0{bottom:394.410000px;}
.y1e6{bottom:398.910000px;}
.yfa{bottom:400.170000px;}
.y7f{bottom:401.970000px;}
.y131{bottom:406.290000px;}
.y1c9{bottom:407.190000px;}
.ye{bottom:408.044999px;}
.y1a8{bottom:408.270000px;}
.y117{bottom:409.890000px;}
.y108{bottom:410.250000px;}
.y175{bottom:411.375000px;}
.ycf{bottom:411.735000px;}
.y1dc{bottom:416.235000px;}
.yf9{bottom:417.495000px;}
.y51{bottom:419.115000px;}
.y7e{bottom:419.295000px;}
.y1c8{bottom:424.515000px;}
.y1e5{bottom:425.235000px;}
.y1a7{bottom:425.415000px;}
.y174{bottom:428.475000px;}
.yce{bottom:429.015000px;}
.y182{bottom:430.095000px;}
.y130{bottom:432.615000px;}
.y1db{bottom:433.515000px;}
.yf8{bottom:434.775000px;}
.y116{bottom:436.215000px;}
.ya9{bottom:436.575000px;}
.y1e4{bottom:442.515000px;}
.y1a6{bottom:442.695000px;}
.y50{bottom:445.395000px;}
.y7d{bottom:445.575000px;}
.ycd{bottom:446.295000px;}
.y12f{bottom:449.715000px;}
.y1c7{bottom:450.795000px;}
.yf7{bottom:452.055000px;}
.ya8{bottom:453.855000px;}
.y173{bottom:455.835000px;}
.y1da{bottom:459.795000px;}
.y7c{bottom:462.855000px;}
.ycc{bottom:463.575000px;}
.y12e{bottom:466.995000px;}
.y1c6{bottom:468.075000px;}
.y1a5{bottom:468.975000px;}
.yf6{bottom:469.155000px;}
.ya7{bottom:470.955000px;}
.y4f{bottom:471.675000px;}
.y172{bottom:473.115000px;}
.y1d9{bottom:477.075000px;}
.y7b{bottom:479.955000px;}
.ycb{bottom:480.855000px;}
.y12d{bottom:484.275000px;}
.yd{bottom:484.864502px;}
.y1e3{bottom:486.075000px;}
.y1a4{bottom:486.255000px;}
.yf5{bottom:486.435000px;}
.ya6{bottom:488.235000px;}
.y171{bottom:490.395000px;}
.y1c5{bottom:494.355000px;}
.y7a{bottom:497.235000px;}
.y4e{bottom:497.955000px;}
.y12c{bottom:501.555000px;}
.yc{bottom:502.864502px;}
.y1e2{bottom:503.355000px;}
.y1a3{bottom:503.535000px;}
.yf4{bottom:503.715000px;}
.ya5{bottom:505.515000px;}
.y181{bottom:508.395000px;}
.y1c4{bottom:511.455000px;}
.y79{bottom:514.515000px;}
.yca{bottom:515.235000px;}
.y170{bottom:516.675000px;}
.y1d8{bottom:520.455000px;}
.yb{bottom:520.864502px;}
.yf3{bottom:520.995000px;}
.ya4{bottom:522.795000px;}
.y4d{bottom:526.575000px;}
.y12b{bottom:527.835000px;}
.y1a2{bottom:529.815000px;}
.y78{bottom:531.795000px;}
.yc9{bottom:532.515000px;}
.y16f{bottom:533.955000px;}
.y1c3{bottom:537.735000px;}
.yf2{bottom:538.275000px;}
.ya{bottom:538.864499px;}
.y107{bottom:540.075000px;}
.y4c{bottom:544.395000px;}
.y12a{bottom:545.115000px;}
.y1e1{bottom:546.735000px;}
.y1a1{bottom:546.915000px;}
.ya3{bottom:549.075000px;}
.yc8{bottom:549.795000px;}
.y16e{bottom:551.055000px;}
.y1c2{bottom:555.015000px;}
.y180{bottom:555.735000px;}
.y9{bottom:556.864499px;}
.y106{bottom:557.355000px;}
.y77{bottom:558.075000px;}
.y4b{bottom:561.675000px;}
.y129{bottom:562.215000px;}
.y1d7{bottom:564.015000px;}
.y1a0{bottom:564.195000px;}
.ya2{bottom:566.355000px;}
.yc7{bottom:567.075000px;}
.yf1{bottom:573.555000px;}
.y1b0{bottom:574.455000px;}
.y76{bottom:575.355000px;}
.y16d{bottom:578.415000px;}
.y4a{bottom:578.775000px;}
.y128{bottom:579.495000px;}
.y1c1{bottom:581.295000px;}
.y19f{bottom:581.475000px;}
.ya1{bottom:583.455000px;}
.yc6{bottom:584.355000px;}
.y17f{bottom:587.415000px;}
.y14f{bottom:587.775000px;}
.y1f4{bottom:589.575000px;}
.y1af{bottom:591.735000px;}
.y75{bottom:592.455000px;}
.y16c{bottom:595.695000px;}
.y49{bottom:596.055000px;}
.yee{bottom:596.775000px;}
.y1c0{bottom:598.575000px;}
.y19e{bottom:598.755000px;}
.ya0{bottom:600.735000px;}
.yc5{bottom:601.455000px;}
.y17e{bottom:603.795000px;}
.y14e{bottom:605.055000px;}
.y1f3{bottom:606.675000px;}
.y1e0{bottom:607.575000px;}
.y74{bottom:609.735000px;}
.y16b{bottom:612.975000px;}
.y48{bottom:613.335000px;}
.y127{bottom:614.055000px;}
.y19d{bottom:616.035000px;}
.y9f{bottom:618.015000px;}
.yc4{bottom:618.735000px;}
.y14d{bottom:622.155000px;}
.y1f2{bottom:623.955000px;}
.y1bf{bottom:624.675000px;}
.y73{bottom:627.015000px;}
.ye5{bottom:628.455000px;}
.y47{bottom:630.615000px;}
.y126{bottom:631.335000px;}
.y9e{bottom:635.295000px;}
.yc3{bottom:636.015000px;}
.y14c{bottom:639.435000px;}
.y16a{bottom:640.335000px;}
.y1be{bottom:641.955000px;}
.y19c{bottom:642.315000px;}
.y72{bottom:644.295000px;}
.y8{bottom:645.510000px;}
.y46{bottom:647.895000px;}
.y1f1{bottom:650.235000px;}
.y179{bottom:651.135000px;}
.y9d{bottom:652.575000px;}
.y14b{bottom:656.745000px;}
.y125{bottom:657.645000px;}
.y19b{bottom:659.445000px;}
.y71{bottom:661.605000px;}
.yc2{bottom:662.325000px;}
.y45{bottom:665.205000px;}
.y7{bottom:666.771000px;}
.y1f0{bottom:667.545000px;}
.y1bd{bottom:668.265000px;}
.y9c{bottom:669.705000px;}
.y14a{bottom:674.025000px;}
.y124{bottom:674.745000px;}
.y19a{bottom:676.725000px;}
.y70{bottom:678.705000px;}
.yc1{bottom:679.605000px;}
.y44{bottom:682.305000px;}
.y1bc{bottom:685.545000px;}
.y9b{bottom:686.985000px;}
.y149{bottom:691.305000px;}
.y123{bottom:692.025000px;}
.y1ef{bottom:693.825000px;}
.y6f{bottom:695.985000px;}
.yc0{bottom:696.705000px;}
.y43{bottom:699.585000px;}
.y169{bottom:701.025000px;}
.y1df{bottom:702.825000px;}
.y199{bottom:703.005000px;}
.y9a{bottom:704.265000px;}
.y122{bottom:709.305000px;}
.y1bb{bottom:711.825000px;}
.y115{bottom:713.265000px;}
.ybf{bottom:713.985000px;}
.y42{bottom:716.865000px;}
.y148{bottom:717.405000px;}
.y168{bottom:718.305000px;}
.y1ee{bottom:720.105000px;}
.y198{bottom:720.285000px;}
.y99{bottom:721.545000px;}
.y6e{bottom:722.265000px;}
.y6{bottom:726.298500px;}
.y121{bottom:726.585000px;}
.y1ba{bottom:729.105000px;}
.y178{bottom:729.465000px;}
.y114{bottom:730.545000px;}
.ybe{bottom:731.265000px;}
.y41{bottom:734.145000px;}
.y167{bottom:735.585000px;}
.y1ed{bottom:737.205000px;}
.y197{bottom:737.565000px;}
.y98{bottom:738.825000px;}
.y6d{bottom:739.545000px;}
.y146{bottom:740.805000px;}
.y1b9{bottom:746.205000px;}
.ybd{bottom:748.545000px;}
.y40{bottom:751.425000px;}
.y3{bottom:752.599495px;}
.y120{bottom:752.865000px;}
.y196{bottom:754.845000px;}
.y97{bottom:756.105000px;}
.y6c{bottom:756.825000px;}
.y1d6{bottom:763.485000px;}
.y177{bottom:764.745000px;}
.y105{bottom:765.105000px;}
.ybc{bottom:765.825000px;}
.y3f{bottom:768.705000px;}
.y166{bottom:769.965000px;}
.y195{bottom:771.945000px;}
.y1b8{bottom:772.485000px;}
.y96{bottom:773.205000px;}
.y6b{bottom:774.105000px;}
.y11f{bottom:780.045000px;}
.y1d5{bottom:780.765000px;}
.y1ae{bottom:781.845000px;}
.y104{bottom:782.205000px;}
.ybb{bottom:783.105000px;}
.ydf{bottom:784.560000px;}
.y3e{bottom:785.805000px;}
.y165{bottom:787.245000px;}
.y144{bottom:788.160000px;}
.y1b7{bottom:789.765000px;}
.y95{bottom:790.485000px;}
.y6a{bottom:791.205000px;}
.y11e{bottom:797.325000px;}
.y1ec{bottom:798.045000px;}
.y194{bottom:798.225000px;}
.y103{bottom:799.485000px;}
.yba{bottom:800.205000px;}
.y3d{bottom:803.085000px;}
.y1d4{bottom:807.045000px;}
.y94{bottom:807.765000px;}
.y1ad{bottom:808.125000px;}
.y69{bottom:808.485000px;}
.y164{bottom:813.525000px;}
.y193{bottom:815.505000px;}
.y1b6{bottom:816.045000px;}
.y102{bottom:816.765000px;}
.yb9{bottom:817.485000px;}
.y3c{bottom:820.005000px;}
.y1d3{bottom:824.325000px;}
.y11d{bottom:824.685000px;}
.y113{bottom:825.765000px;}
.y163{bottom:830.805000px;}
.y192{bottom:832.785000px;}
.y1b5{bottom:833.325000px;}
.y93{bottom:834.045000px;}
.y68{bottom:834.765000px;}
.y141{bottom:835.320000px;}
.y3b{bottom:837.285000px;}
.y1eb{bottom:841.605000px;}
.y11c{bottom:841.965000px;}
.y112{bottom:843.045000px;}
.y162{bottom:848.085000px;}
.y191{bottom:850.065000px;}
.y1d2{bottom:850.605000px;}
.y92{bottom:851.325000px;}
.y32{bottom:851.865000px;}
.y67{bottom:852.045000px;}
.y11b{bottom:859.245000px;}
.y1b4{bottom:859.605000px;}
.ydc{bottom:862.845000px;}
.y161{bottom:865.365000px;}
.y140{bottom:867.165000px;}
.y1d1{bottom:867.705000px;}
.y91{bottom:868.605000px;}
.y111{bottom:868.965000px;}
.y66{bottom:869.325000px;}
.y1b3{bottom:876.705000px;}
.y2{bottom:879.369000px;}
.y1d0{bottom:884.985000px;}
.y90{bottom:885.705000px;}
.y65{bottom:886.605000px;}
.y160{bottom:892.545000px;}
.y190{bottom:893.445000px;}
.y1de{bottom:893.985000px;}
.y110{bottom:895.605000px;}
.y13f{bottom:899.070000px;}
.y1ea{bottom:902.310000px;}
.y1b2{bottom:902.670000px;}
.y8f{bottom:903.030000px;}
.y64{bottom:903.750000px;}
.y15f{bottom:909.870000px;}
.yd7{bottom:910.230000px;}
.y18f{bottom:910.770000px;}
.y1cf{bottom:911.310000px;}
.y101{bottom:912.030000px;}
.y10f{bottom:912.750000px;}
.y8e{bottom:920.310000px;}
.y63{bottom:921.030000px;}
.y15e{bottom:927.150000px;}
.y18e{bottom:928.050000px;}
.y1ce{bottom:928.590000px;}
.y1b1{bottom:928.950000px;}
.y100{bottom:929.310000px;}
.y10e{bottom:930.030000px;}
.y13e{bottom:930.750000px;}
.y8d{bottom:937.590000px;}
.y62{bottom:938.310000px;}
.yd6{bottom:945.510000px;}
.y1e9{bottom:945.870000px;}
.yff{bottom:946.590000px;}
.y13d{bottom:947.130000px;}
.y10d{bottom:947.310000px;}
.y18d{bottom:954.330000px;}
.y15d{bottom:954.510000px;}
.y8c{bottom:954.870000px;}
.y61{bottom:955.590000px;}
.yfe{bottom:963.870000px;}
.yb8{bottom:964.590000px;}
.y1{bottom:966.726000px;}
.y15c{bottom:971.790000px;}
.yd5{bottom:971.970000px;}
.y60{bottom:972.870000px;}
.y18c{bottom:977.550000px;}
.y13c{bottom:978.810000px;}
.y8b{bottom:980.970000px;}
.yb7{bottom:981.870000px;}
.y15b{bottom:988.890000px;}
.y1cd{bottom:989.250000px;}
.y5f{bottom:989.970000px;}
.y31{bottom:994.470000px;}
.y8a{bottom:998.250000px;}
.yb6{bottom:998.970000px;}
.y5e{bottom:1007.250000px;}
.y13b{bottom:1010.670000px;}
.y30{bottom:1011.570000px;}
.y89{bottom:1015.530000px;}
.yb5{bottom:1016.250000px;}
.y5d{bottom:1024.530000px;}
.y189{bottom:1024.890000px;}
.y88{bottom:1032.810000px;}
.yb4{bottom:1033.530000px;}
.y2f{bottom:1036.050000px;}
.y5c{bottom:1041.810000px;}
.y136{bottom:1042.530000px;}
.y2e{bottom:1047.750000px;}
.y87{bottom:1050.090000px;}
.yb3{bottom:1050.810000px;}
.y5b{bottom:1059.090000px;}
.y2d{bottom:1066.830000px;}
.y86{bottom:1067.370000px;}
.yb2{bottom:1068.090000px;}
.y2c{bottom:1072.770000px;}
.yd4{bottom:1076.010000px;}
.y5a{bottom:1076.370000px;}
.y85{bottom:1084.470000px;}
.yb1{bottom:1085.370000px;}
.y2b{bottom:1085.730000px;}
.y135{bottom:1093.110000px;}
.y59{bottom:1093.470000px;}
.yb0{bottom:1102.470000px;}
.y2a{bottom:1103.910000px;}
.y84{bottom:1110.390000px;}
.y58{bottom:1110.750000px;}
.y187{bottom:1118.670000px;}
.yaf{bottom:1119.750000px;}
.y29{bottom:1129.470000px;}
.y57{bottom:1136.670000px;}
.yae{bottom:1137.030000px;}
.y27{bottom:1155.060000px;}
.y23{bottom:1172.700000px;}
.h22{height:15.645000px;}
.h20{height:30.945000px;}
.h1a{height:31.125000px;}
.h26{height:31.140000px;}
.h23{height:31.162500px;}
.h2a{height:31.170000px;}
.h7{height:32.130000px;}
.h9{height:34.560000px;}
.h16{height:38.158594px;}
.h12{height:40.964766px;}
.h15{height:41.756133px;}
.h10{height:42.086250px;}
.ha{height:43.506914px;}
.h6{height:45.900000px;}
.h21{height:46.425000px;}
.h24{height:46.440000px;}
.h28{height:46.605000px;}
.h1d{height:46.642500px;}
.h3{height:48.195000px;}
.h1b{height:52.998047px;}
.h1c{height:54.421875px;}
.h2{height:55.080000px;}
.h2c{height:58.621992px;}
.he{height:58.651172px;}
.h19{height:59.038594px;}
.h14{height:60.226875px;}
.h17{height:61.423863px;}
.h18{height:62.211094px;}
.hb{height:63.824414px;}
.h11{height:66.757500px;}
.hd{height:67.992539px;}
.hc{height:70.664062px;}
.h1e{height:77.565000px;}
.h27{height:77.610000px;}
.h5{height:78.030000px;}
.h2b{height:93.045000px;}
.h29{height:93.081000px;}
.h4{height:119.055004px;}
.h13{height:138.082500px;}
.h1f{height:155.370000px;}
.h25{height:203.760000px;}
.hf{height:1262.684910px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w10{width:41.385000px;}
.w16{width:41.745000px;}
.w6{width:74.865000px;}
.wa{width:75.585000px;}
.wc{width:83.865000px;}
.w13{width:84.261000px;}
.w14{width:84.405000px;}
.w19{width:94.845000px;}
.w17{width:116.301000px;}
.w11{width:126.741000px;}
.wd{width:126.921000px;}
.we{width:158.790000px;}
.w9{width:177.135000px;}
.wf{width:180.015000px;}
.w12{width:211.890000px;}
.w18{width:297.075000px;}
.w8{width:373.020000px;}
.wb{width:476.910000px;}
.w5{width:494.190000px;}
.w15{width:549.000000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w7{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.085000px;}
.x19{left:9.930000px;}
.x31{left:10.965000px;}
.x27{left:12.060000px;}
.x29{left:13.140000px;}
.x25{left:14.745000px;}
.x8{left:16.740000px;}
.x1c{left:22.125000px;}
.x32{left:24.105000px;}
.x21{left:29.505000px;}
.x28{left:35.820000px;}
.x18{left:38.550000px;}
.x16{left:41.925000px;}
.x2e{left:42.990000px;}
.x2d{left:49.755000px;}
.x23{left:57.240000px;}
.x2f{left:83.805000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x34{left:128.550000px;}
.x14{left:154.830000px;}
.x5{left:170.145000px;}
.x2c{left:171.900000px;}
.x11{left:174.990000px;}
.x1e{left:191.370000px;}
.xe{left:193.170000px;}
.x9{left:201.810000px;}
.x4{left:203.484001px;}
.x2b{left:208.830000px;}
.x20{left:212.805000px;}
.x13{left:243.600000px;}
.x12{left:245.745000px;}
.x1f{left:246.990000px;}
.x17{left:255.285000px;}
.x15{left:261.795000px;}
.xa{left:279.615000px;}
.x30{left:285.195000px;}
.x1d{left:300.495000px;}
.x33{left:330.015000px;}
.x22{left:340.455000px;}
.xb{left:369.232500px;}
.xc{left:374.475000px;}
.x1a{left:382.935000px;}
.x10{left:386.175000px;}
.xd{left:387.795000px;}
.x3{left:454.959000px;}
.x1b{left:542.460000px;}
.xf{left:543.900000px;}
.x24{left:553.080000px;}
.x35{left:627.810000px;}
.x26{left:638.070000px;}
.x7{left:664.350000px;}
.x2a{left:721.050000px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v4{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.269867pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.016000pt;}
.lse{letter-spacing:-0.007680pt;}
.ls1e{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls20{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.414720pt;}
.lsd{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.544000pt;}
.ls7{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.869333pt;}
.ls13{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.232640pt;}
.lsb{letter-spacing:5.712640pt;}
.ls17{letter-spacing:5.920000pt;}
.ls10{letter-spacing:26.400000pt;}
.ls3{letter-spacing:61.600000pt;}
.ls1{letter-spacing:1255.995307pt;}
.ws3{word-spacing:-74.880000pt;}
.ws18{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws4{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.240000pt;}
.wsc{word-spacing:-14.149333pt;}
.ws16{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.872000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.096533pt;}
.ws12{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws10{word-spacing:-12.096000pt;}
.ws11{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.984000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws17{word-spacing:-8.636160pt;}
.wsb{word-spacing:-8.632320pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:70.341333pt;}
.ws1a{word-spacing:99.760000pt;}
._12{margin-left:-3.080960pt;}
._11{margin-left:-2.124800pt;}
._2{margin-left:-1.048320pt;}
._0{width:0.903040pt;}
._1{width:1.802027pt;}
._9{width:2.792320pt;}
._8{width:4.408960pt;}
._4{width:5.351040pt;}
._3{width:6.374400pt;}
._a{width:8.109227pt;}
._15{width:9.010347pt;}
._e{width:9.994240pt;}
._b{width:11.048960pt;}
._10{width:12.161280pt;}
._f{width:14.767360pt;}
._13{width:15.673387pt;}
._18{width:16.922880pt;}
._17{width:18.167040pt;}
._1b{width:19.176320pt;}
._16{width:20.291840pt;}
._14{width:21.306880pt;}
._1e{width:22.257280pt;}
._25{width:23.425920pt;}
._1a{width:25.200427pt;}
._7{width:26.296320pt;}
._19{width:27.545600pt;}
._1f{width:31.128320pt;}
._20{width:32.244907pt;}
._1c{width:34.255360pt;}
._1d{width:36.859520pt;}
._21{width:37.769600pt;}
._5{width:39.736960pt;}
._6{width:40.683520pt;}
._22{width:46.851840pt;}
._24{width:65.868800pt;}
._23{width:67.295787pt;}
._c{width:754.880000pt;}
._d{width:1440.315947pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.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;}
.yda{bottom:2.560000pt;}
.y188{bottom:2.720000pt;}
.ye4{bottom:2.866667pt;}
.yf0{bottom:2.880000pt;}
.y17d{bottom:2.906667pt;}
.y143{bottom:3.026667pt;}
.y3a{bottom:3.040000pt;}
.y25{bottom:3.200000pt;}
.y139{bottom:9.440000pt;}
.ydb{bottom:9.600000pt;}
.yd8{bottom:9.920000pt;}
.y26{bottom:12.480000pt;}
.y15a{bottom:14.586667pt;}
.y137{bottom:16.320000pt;}
.yd9{bottom:16.480000pt;}
.ye3{bottom:16.626667pt;}
.yef{bottom:16.640000pt;}
.y17c{bottom:16.666667pt;}
.y142{bottom:16.786667pt;}
.yde{bottom:16.800000pt;}
.y39{bottom:18.400000pt;}
.y24{bottom:18.560000pt;}
.y138{bottom:23.200000pt;}
.y13a{bottom:30.080000pt;}
.y145{bottom:30.386667pt;}
.y147{bottom:30.400000pt;}
.y17b{bottom:30.426667pt;}
.ye2{bottom:30.546667pt;}
.ydd{bottom:30.560000pt;}
.yed{bottom:30.586667pt;}
.y38{bottom:34.080000pt;}
.y159{bottom:42.373333pt;}
.y184{bottom:44.160000pt;}
.ye1{bottom:44.306667pt;}
.y18b{bottom:44.320000pt;}
.yec{bottom:44.346667pt;}
.y37{bottom:49.320000pt;}
.y153{bottom:56.186667pt;}
.ye0{bottom:58.066667pt;}
.y183{bottom:58.080000pt;}
.y17a{bottom:58.106667pt;}
.yeb{bottom:58.266667pt;}
.y5{bottom:59.133337pt;}
.y36{bottom:64.680000pt;}
.y18a{bottom:71.840000pt;}
.y186{bottom:71.866667pt;}
.yea{bottom:72.026667pt;}
.y154{bottom:74.013333pt;}
.y35{bottom:80.040000pt;}
.ye9{bottom:85.786667pt;}
.y4{bottom:86.333337pt;}
.y155{bottom:91.813333pt;}
.y34{bottom:95.080000pt;}
.ye8{bottom:99.546667pt;}
.y156{bottom:109.626667pt;}
.y33{bottom:110.760000pt;}
.ye7{bottom:113.466667pt;}
.y22{bottom:123.790666pt;}
.ye6{bottom:127.226667pt;}
.y157{bottom:127.453333pt;}
.y158{bottom:145.280000pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y28{bottom:247.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y176{bottom:287.226667pt;}
.yad{bottom:287.386667pt;}
.y83{bottom:287.706667pt;}
.y10c{bottom:288.026667pt;}
.y56{bottom:292.506667pt;}
.y1ac{bottom:293.466667pt;}
.yd3{bottom:296.666667pt;}
.y55{bottom:297.146667pt;}
.y185{bottom:298.760000pt;}
.yac{bottom:302.586667pt;}
.y10b{bottom:303.386667pt;}
.y1cc{bottom:308.026667pt;}
.y54{bottom:308.506667pt;}
.y151{bottom:308.666667pt;}
.y1ab{bottom:308.826667pt;}
.y10{bottom:309.452000pt;}
.yfd{bottom:309.786667pt;}
.y11a{bottom:310.586667pt;}
.y82{bottom:311.386667pt;}
.yd2{bottom:312.026667pt;}
.y134{bottom:315.066667pt;}
.y10a{bottom:318.586667pt;}
.y1cb{bottom:323.386667pt;}
.y1e8{bottom:324.026667pt;}
.y1aa{bottom:324.186667pt;}
.yfc{bottom:324.986667pt;}
.yab{bottom:325.626667pt;}
.y53{bottom:325.786667pt;}
.y119{bottom:325.946667pt;}
.y81{bottom:326.586667pt;}
.yd1{bottom:327.386667pt;}
.y150{bottom:329.146667pt;}
.y152{bottom:330.080000pt;}
.y133{bottom:330.426667pt;}
.y1dd{bottom:331.386667pt;}
.y109{bottom:333.946667pt;}
.y1e7{bottom:339.386667pt;}
.yfb{bottom:340.346667pt;}
.y118{bottom:341.306667pt;}
.y80{bottom:341.946667pt;}
.yf{bottom:343.809333pt;}
.y132{bottom:345.786667pt;}
.y1ca{bottom:346.586667pt;}
.y1a9{bottom:347.546667pt;}
.y52{bottom:349.146667pt;}
.yaa{bottom:349.306667pt;}
.yd0{bottom:350.586667pt;}
.y1e6{bottom:354.586667pt;}
.yfa{bottom:355.706667pt;}
.y7f{bottom:357.306667pt;}
.y131{bottom:361.146667pt;}
.y1c9{bottom:361.946667pt;}
.ye{bottom:362.706666pt;}
.y1a8{bottom:362.906667pt;}
.y117{bottom:364.346667pt;}
.y108{bottom:364.666667pt;}
.y175{bottom:365.666667pt;}
.ycf{bottom:365.986667pt;}
.y1dc{bottom:369.986667pt;}
.yf9{bottom:371.106667pt;}
.y51{bottom:372.546667pt;}
.y7e{bottom:372.706667pt;}
.y1c8{bottom:377.346667pt;}
.y1e5{bottom:377.986667pt;}
.y1a7{bottom:378.146667pt;}
.y174{bottom:380.866667pt;}
.yce{bottom:381.346667pt;}
.y182{bottom:382.306667pt;}
.y130{bottom:384.546667pt;}
.y1db{bottom:385.346667pt;}
.yf8{bottom:386.466667pt;}
.y116{bottom:387.746667pt;}
.ya9{bottom:388.066667pt;}
.y1e4{bottom:393.346667pt;}
.y1a6{bottom:393.506667pt;}
.y50{bottom:395.906667pt;}
.y7d{bottom:396.066667pt;}
.ycd{bottom:396.706667pt;}
.y12f{bottom:399.746667pt;}
.y1c7{bottom:400.706667pt;}
.yf7{bottom:401.826667pt;}
.ya8{bottom:403.426667pt;}
.y173{bottom:405.186667pt;}
.y1da{bottom:408.706667pt;}
.y7c{bottom:411.426667pt;}
.ycc{bottom:412.066667pt;}
.y12e{bottom:415.106667pt;}
.y1c6{bottom:416.066667pt;}
.y1a5{bottom:416.866667pt;}
.yf6{bottom:417.026667pt;}
.ya7{bottom:418.626667pt;}
.y4f{bottom:419.266667pt;}
.y172{bottom:420.546667pt;}
.y1d9{bottom:424.066667pt;}
.y7b{bottom:426.626667pt;}
.ycb{bottom:427.426667pt;}
.y12d{bottom:430.466667pt;}
.yd{bottom:430.990669pt;}
.y1e3{bottom:432.066667pt;}
.y1a4{bottom:432.226667pt;}
.yf5{bottom:432.386667pt;}
.ya6{bottom:433.986667pt;}
.y171{bottom:435.906667pt;}
.y1c5{bottom:439.426667pt;}
.y7a{bottom:441.986667pt;}
.y4e{bottom:442.626667pt;}
.y12c{bottom:445.826667pt;}
.yc{bottom:446.990669pt;}
.y1e2{bottom:447.426667pt;}
.y1a3{bottom:447.586667pt;}
.yf4{bottom:447.746667pt;}
.ya5{bottom:449.346667pt;}
.y181{bottom:451.906667pt;}
.y1c4{bottom:454.626667pt;}
.y79{bottom:457.346667pt;}
.yca{bottom:457.986667pt;}
.y170{bottom:459.266667pt;}
.y1d8{bottom:462.626667pt;}
.yb{bottom:462.990669pt;}
.yf3{bottom:463.106667pt;}
.ya4{bottom:464.706667pt;}
.y4d{bottom:468.066667pt;}
.y12b{bottom:469.186667pt;}
.y1a2{bottom:470.946667pt;}
.y78{bottom:472.706667pt;}
.yc9{bottom:473.346667pt;}
.y16f{bottom:474.626667pt;}
.y1c3{bottom:477.986667pt;}
.yf2{bottom:478.466667pt;}
.ya{bottom:478.990666pt;}
.y107{bottom:480.066667pt;}
.y4c{bottom:483.906667pt;}
.y12a{bottom:484.546667pt;}
.y1e1{bottom:485.986667pt;}
.y1a1{bottom:486.146667pt;}
.ya3{bottom:488.066667pt;}
.yc8{bottom:488.706667pt;}
.y16e{bottom:489.826667pt;}
.y1c2{bottom:493.346667pt;}
.y180{bottom:493.986667pt;}
.y9{bottom:494.990666pt;}
.y106{bottom:495.426667pt;}
.y77{bottom:496.066667pt;}
.y4b{bottom:499.266667pt;}
.y129{bottom:499.746667pt;}
.y1d7{bottom:501.346667pt;}
.y1a0{bottom:501.506667pt;}
.ya2{bottom:503.426667pt;}
.yc7{bottom:504.066667pt;}
.yf1{bottom:509.826667pt;}
.y1b0{bottom:510.626667pt;}
.y76{bottom:511.426667pt;}
.y16d{bottom:514.146667pt;}
.y4a{bottom:514.466667pt;}
.y128{bottom:515.106667pt;}
.y1c1{bottom:516.706667pt;}
.y19f{bottom:516.866667pt;}
.ya1{bottom:518.626667pt;}
.yc6{bottom:519.426667pt;}
.y17f{bottom:522.146667pt;}
.y14f{bottom:522.466667pt;}
.y1f4{bottom:524.066667pt;}
.y1af{bottom:525.986667pt;}
.y75{bottom:526.626667pt;}
.y16c{bottom:529.506667pt;}
.y49{bottom:529.826667pt;}
.yee{bottom:530.466667pt;}
.y1c0{bottom:532.066667pt;}
.y19e{bottom:532.226667pt;}
.ya0{bottom:533.986667pt;}
.yc5{bottom:534.626667pt;}
.y17e{bottom:536.706667pt;}
.y14e{bottom:537.826667pt;}
.y1f3{bottom:539.266667pt;}
.y1e0{bottom:540.066667pt;}
.y74{bottom:541.986667pt;}
.y16b{bottom:544.866667pt;}
.y48{bottom:545.186667pt;}
.y127{bottom:545.826667pt;}
.y19d{bottom:547.586667pt;}
.y9f{bottom:549.346667pt;}
.yc4{bottom:549.986667pt;}
.y14d{bottom:553.026667pt;}
.y1f2{bottom:554.626667pt;}
.y1bf{bottom:555.266667pt;}
.y73{bottom:557.346667pt;}
.ye5{bottom:558.626667pt;}
.y47{bottom:560.546667pt;}
.y126{bottom:561.186667pt;}
.y9e{bottom:564.706667pt;}
.yc3{bottom:565.346667pt;}
.y14c{bottom:568.386667pt;}
.y16a{bottom:569.186667pt;}
.y1be{bottom:570.626667pt;}
.y19c{bottom:570.946667pt;}
.y72{bottom:572.706667pt;}
.y8{bottom:573.786667pt;}
.y46{bottom:575.906667pt;}
.y1f1{bottom:577.986667pt;}
.y179{bottom:578.786667pt;}
.y9d{bottom:580.066667pt;}
.y14b{bottom:583.773333pt;}
.y125{bottom:584.573333pt;}
.y19b{bottom:586.173333pt;}
.y71{bottom:588.093333pt;}
.yc2{bottom:588.733333pt;}
.y45{bottom:591.293333pt;}
.y7{bottom:592.685334pt;}
.y1f0{bottom:593.373333pt;}
.y1bd{bottom:594.013333pt;}
.y9c{bottom:595.293333pt;}
.y14a{bottom:599.133333pt;}
.y124{bottom:599.773333pt;}
.y19a{bottom:601.533333pt;}
.y70{bottom:603.293333pt;}
.yc1{bottom:604.093333pt;}
.y44{bottom:606.493333pt;}
.y1bc{bottom:609.373333pt;}
.y9b{bottom:610.653333pt;}
.y149{bottom:614.493333pt;}
.y123{bottom:615.133333pt;}
.y1ef{bottom:616.733333pt;}
.y6f{bottom:618.653333pt;}
.yc0{bottom:619.293333pt;}
.y43{bottom:621.853333pt;}
.y169{bottom:623.133333pt;}
.y1df{bottom:624.733333pt;}
.y199{bottom:624.893333pt;}
.y9a{bottom:626.013333pt;}
.y122{bottom:630.493333pt;}
.y1bb{bottom:632.733333pt;}
.y115{bottom:634.013333pt;}
.ybf{bottom:634.653333pt;}
.y42{bottom:637.213333pt;}
.y148{bottom:637.693333pt;}
.y168{bottom:638.493333pt;}
.y1ee{bottom:640.093333pt;}
.y198{bottom:640.253333pt;}
.y99{bottom:641.373333pt;}
.y6e{bottom:642.013333pt;}
.y6{bottom:645.598667pt;}
.y121{bottom:645.853333pt;}
.y1ba{bottom:648.093333pt;}
.y178{bottom:648.413333pt;}
.y114{bottom:649.373333pt;}
.ybe{bottom:650.013333pt;}
.y41{bottom:652.573333pt;}
.y167{bottom:653.853333pt;}
.y1ed{bottom:655.293333pt;}
.y197{bottom:655.613333pt;}
.y98{bottom:656.733333pt;}
.y6d{bottom:657.373333pt;}
.y146{bottom:658.493333pt;}
.y1b9{bottom:663.293333pt;}
.ybd{bottom:665.373333pt;}
.y40{bottom:667.933333pt;}
.y3{bottom:668.977329pt;}
.y120{bottom:669.213333pt;}
.y196{bottom:670.973333pt;}
.y97{bottom:672.093333pt;}
.y6c{bottom:672.733333pt;}
.y1d6{bottom:678.653333pt;}
.y177{bottom:679.773333pt;}
.y105{bottom:680.093333pt;}
.ybc{bottom:680.733333pt;}
.y3f{bottom:683.293333pt;}
.y166{bottom:684.413333pt;}
.y195{bottom:686.173333pt;}
.y1b8{bottom:686.653333pt;}
.y96{bottom:687.293333pt;}
.y6b{bottom:688.093333pt;}
.y11f{bottom:693.373333pt;}
.y1d5{bottom:694.013333pt;}
.y1ae{bottom:694.973333pt;}
.y104{bottom:695.293333pt;}
.ybb{bottom:696.093333pt;}
.ydf{bottom:697.386667pt;}
.y3e{bottom:698.493333pt;}
.y165{bottom:699.773333pt;}
.y144{bottom:700.586667pt;}
.y1b7{bottom:702.013333pt;}
.y95{bottom:702.653333pt;}
.y6a{bottom:703.293333pt;}
.y11e{bottom:708.733333pt;}
.y1ec{bottom:709.373333pt;}
.y194{bottom:709.533333pt;}
.y103{bottom:710.653333pt;}
.yba{bottom:711.293333pt;}
.y3d{bottom:713.853333pt;}
.y1d4{bottom:717.373333pt;}
.y94{bottom:718.013333pt;}
.y1ad{bottom:718.333333pt;}
.y69{bottom:718.653333pt;}
.y164{bottom:723.133333pt;}
.y193{bottom:724.893333pt;}
.y1b6{bottom:725.373333pt;}
.y102{bottom:726.013333pt;}
.yb9{bottom:726.653333pt;}
.y3c{bottom:728.893333pt;}
.y1d3{bottom:732.733333pt;}
.y11d{bottom:733.053333pt;}
.y113{bottom:734.013333pt;}
.y163{bottom:738.493333pt;}
.y192{bottom:740.253333pt;}
.y1b5{bottom:740.733333pt;}
.y93{bottom:741.373333pt;}
.y68{bottom:742.013333pt;}
.y141{bottom:742.506667pt;}
.y3b{bottom:744.253333pt;}
.y1eb{bottom:748.093333pt;}
.y11c{bottom:748.413333pt;}
.y112{bottom:749.373333pt;}
.y162{bottom:753.853333pt;}
.y191{bottom:755.613333pt;}
.y1d2{bottom:756.093333pt;}
.y92{bottom:756.733333pt;}
.y32{bottom:757.213333pt;}
.y67{bottom:757.373333pt;}
.y11b{bottom:763.773333pt;}
.y1b4{bottom:764.093333pt;}
.ydc{bottom:766.973333pt;}
.y161{bottom:769.213333pt;}
.y140{bottom:770.813333pt;}
.y1d1{bottom:771.293333pt;}
.y91{bottom:772.093333pt;}
.y111{bottom:772.413333pt;}
.y66{bottom:772.733333pt;}
.y1b3{bottom:779.293333pt;}
.y2{bottom:781.661334pt;}
.y1d0{bottom:786.653333pt;}
.y90{bottom:787.293333pt;}
.y65{bottom:788.093333pt;}
.y160{bottom:793.373333pt;}
.y190{bottom:794.173333pt;}
.y1de{bottom:794.653333pt;}
.y110{bottom:796.093333pt;}
.y13f{bottom:799.173333pt;}
.y1ea{bottom:802.053333pt;}
.y1b2{bottom:802.373333pt;}
.y8f{bottom:802.693333pt;}
.y64{bottom:803.333333pt;}
.y15f{bottom:808.773333pt;}
.yd7{bottom:809.093333pt;}
.y18f{bottom:809.573333pt;}
.y1cf{bottom:810.053333pt;}
.y101{bottom:810.693333pt;}
.y10f{bottom:811.333333pt;}
.y8e{bottom:818.053333pt;}
.y63{bottom:818.693333pt;}
.y15e{bottom:824.133333pt;}
.y18e{bottom:824.933333pt;}
.y1ce{bottom:825.413333pt;}
.y1b1{bottom:825.733333pt;}
.y100{bottom:826.053333pt;}
.y10e{bottom:826.693333pt;}
.y13e{bottom:827.333333pt;}
.y8d{bottom:833.413333pt;}
.y62{bottom:834.053333pt;}
.yd6{bottom:840.453333pt;}
.y1e9{bottom:840.773333pt;}
.yff{bottom:841.413333pt;}
.y13d{bottom:841.893333pt;}
.y10d{bottom:842.053333pt;}
.y18d{bottom:848.293333pt;}
.y15d{bottom:848.453333pt;}
.y8c{bottom:848.773333pt;}
.y61{bottom:849.413333pt;}
.yfe{bottom:856.773333pt;}
.yb8{bottom:857.413333pt;}
.y1{bottom:859.312000pt;}
.y15c{bottom:863.813333pt;}
.yd5{bottom:863.973333pt;}
.y60{bottom:864.773333pt;}
.y18c{bottom:868.933333pt;}
.y13c{bottom:870.053333pt;}
.y8b{bottom:871.973333pt;}
.yb7{bottom:872.773333pt;}
.y15b{bottom:879.013333pt;}
.y1cd{bottom:879.333333pt;}
.y5f{bottom:879.973333pt;}
.y31{bottom:883.973333pt;}
.y8a{bottom:887.333333pt;}
.yb6{bottom:887.973333pt;}
.y5e{bottom:895.333333pt;}
.y13b{bottom:898.373333pt;}
.y30{bottom:899.173333pt;}
.y89{bottom:902.693333pt;}
.yb5{bottom:903.333333pt;}
.y5d{bottom:910.693333pt;}
.y189{bottom:911.013333pt;}
.y88{bottom:918.053333pt;}
.yb4{bottom:918.693333pt;}
.y2f{bottom:920.933333pt;}
.y5c{bottom:926.053333pt;}
.y136{bottom:926.693333pt;}
.y2e{bottom:931.333333pt;}
.y87{bottom:933.413333pt;}
.yb3{bottom:934.053333pt;}
.y5b{bottom:941.413333pt;}
.y2d{bottom:948.293333pt;}
.y86{bottom:948.773333pt;}
.yb2{bottom:949.413333pt;}
.y2c{bottom:953.573333pt;}
.yd4{bottom:956.453333pt;}
.y5a{bottom:956.773333pt;}
.y85{bottom:963.973333pt;}
.yb1{bottom:964.773333pt;}
.y2b{bottom:965.093333pt;}
.y135{bottom:971.653333pt;}
.y59{bottom:971.973333pt;}
.yb0{bottom:979.973333pt;}
.y2a{bottom:981.253333pt;}
.y84{bottom:987.013333pt;}
.y58{bottom:987.333333pt;}
.y187{bottom:994.373333pt;}
.yaf{bottom:995.333333pt;}
.y29{bottom:1003.973333pt;}
.y57{bottom:1010.373333pt;}
.yae{bottom:1010.693333pt;}
.y27{bottom:1026.720000pt;}
.y23{bottom:1042.400000pt;}
.h22{height:13.906667pt;}
.h20{height:27.506667pt;}
.h1a{height:27.666667pt;}
.h26{height:27.680000pt;}
.h23{height:27.700000pt;}
.h2a{height:27.706667pt;}
.h7{height:28.560000pt;}
.h9{height:30.720000pt;}
.h16{height:33.918750pt;}
.h12{height:36.413125pt;}
.h15{height:37.116563pt;}
.h10{height:37.410000pt;}
.ha{height:38.672812pt;}
.h6{height:40.800000pt;}
.h21{height:41.266667pt;}
.h24{height:41.280000pt;}
.h28{height:41.426667pt;}
.h1d{height:41.460000pt;}
.h3{height:42.840000pt;}
.h1b{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h2{height:48.960000pt;}
.h2c{height:52.108438pt;}
.he{height:52.134375pt;}
.h19{height:52.478750pt;}
.h14{height:53.535000pt;}
.h17{height:54.598989pt;}
.h18{height:55.298750pt;}
.hb{height:56.732813pt;}
.h11{height:59.340000pt;}
.hd{height:60.437812pt;}
.hc{height:62.812500pt;}
.h1e{height:68.946667pt;}
.h27{height:68.986667pt;}
.h5{height:69.360000pt;}
.h2b{height:82.706667pt;}
.h29{height:82.738667pt;}
.h4{height:105.826671pt;}
.h13{height:122.740000pt;}
.h1f{height:138.106667pt;}
.h25{height:181.120000pt;}
.hf{height:1122.386587pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w10{width:36.786667pt;}
.w16{width:37.106667pt;}
.w6{width:66.546667pt;}
.wa{width:67.186667pt;}
.wc{width:74.546667pt;}
.w13{width:74.898667pt;}
.w14{width:75.026667pt;}
.w19{width:84.306667pt;}
.w17{width:103.378667pt;}
.w11{width:112.658667pt;}
.wd{width:112.818667pt;}
.we{width:141.146667pt;}
.w9{width:157.453333pt;}
.wf{width:160.013333pt;}
.w12{width:188.346667pt;}
.w18{width:264.066667pt;}
.w8{width:331.573333pt;}
.wb{width:423.920000pt;}
.w5{width:439.280000pt;}
.w15{width:488.000000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w7{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.186667pt;}
.x19{left:8.826667pt;}
.x31{left:9.746667pt;}
.x27{left:10.720000pt;}
.x29{left:11.680000pt;}
.x25{left:13.106667pt;}
.x8{left:14.880000pt;}
.x1c{left:19.666667pt;}
.x32{left:21.426667pt;}
.x21{left:26.226667pt;}
.x28{left:31.840000pt;}
.x18{left:34.266667pt;}
.x16{left:37.266667pt;}
.x2e{left:38.213333pt;}
.x2d{left:44.226667pt;}
.x23{left:50.880000pt;}
.x2f{left:74.493333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x34{left:114.266667pt;}
.x14{left:137.626667pt;}
.x5{left:151.240000pt;}
.x2c{left:152.800000pt;}
.x11{left:155.546667pt;}
.x1e{left:170.106667pt;}
.xe{left:171.706667pt;}
.x9{left:179.386667pt;}
.x4{left:180.874667pt;}
.x2b{left:185.626667pt;}
.x20{left:189.160000pt;}
.x13{left:216.533333pt;}
.x12{left:218.440000pt;}
.x1f{left:219.546667pt;}
.x17{left:226.920000pt;}
.x15{left:232.706667pt;}
.xa{left:248.546667pt;}
.x30{left:253.506667pt;}
.x1d{left:267.106667pt;}
.x33{left:293.346667pt;}
.x22{left:302.626667pt;}
.xb{left:328.206667pt;}
.xc{left:332.866667pt;}
.x1a{left:340.386667pt;}
.x10{left:343.266667pt;}
.xd{left:344.706667pt;}
.x3{left:404.408000pt;}
.x1b{left:482.186667pt;}
.xf{left:483.466667pt;}
.x24{left:491.626667pt;}
.x35{left:558.053333pt;}
.x26{left:567.173333pt;}
.x7{left:590.533333pt;}
.x2a{left:640.933333pt;}
}




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