
    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_8d8c9021886d92d23fe1b2e2.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_11e0f8abdb3739cfbb9aeeb4.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_c76e3964d24e797117ce5899.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_22e04506e08c2a877db8f7a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c65febcb4255d6116936713b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66b750abaae510294f835cf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9198f0ef23b4916e7f3cbccb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_23a21f6730b8b3eda9da0441.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7d25b7b8307ddaeb9bd6bdff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bd68a0b4141b942cb46bbc44.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.891113;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_6b65a6f6ade7e41cd7f5000e.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-0.924000px;}
.ls17{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.531600px;}
.ls2{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.220800px;}
.lsd{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.056880px;}
.ls6{letter-spacing:0.070560px;}
.lsb{letter-spacing:0.087120px;}
.ls9{letter-spacing:0.090720px;}
.lse{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.362880px;}
.ls13{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.627120px;}
.ls14{letter-spacing:13.680000px;}
.ls1a{letter-spacing:31.860000px;}
.ls7{letter-spacing:43.866720px;}
.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:-48.240000px;}
.ws6{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.093600px;}
.ws13{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.626000px;}
.ws10{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.440000px;}
.ws11{word-spacing:-9.720000px;}
.wsa{word-spacing:-7.560000px;}
.ws9{word-spacing:-6.840000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-3.290880px;}
._b{margin-left:-2.087520px;}
._3{margin-left:-1.013040px;}
._0{width:1.135440px;}
._2{width:2.843040px;}
._6{width:3.909840px;}
._d{width:5.208000px;}
._7{width:6.872400px;}
._8{width:8.073360px;}
._f{width:9.143280px;}
._e{width:10.398240px;}
._5{width:12.250800px;}
._4{width:13.266720px;}
._9{width:16.194960px;}
._a{width:17.631840px;}
._14{width:19.473600px;}
._11{width:20.796480px;}
._10{width:22.051440px;}
._13{width:23.124240px;}
._12{width:24.501600px;}
._15{width:25.577280px;}
._16{width:27.011520px;}
._1b{width:28.266480px;}
._19{width:29.640960px;}
._18{width:32.031360px;}
._17{width:33.107040px;}
._1a{width:107.460000px;}
._1c{width:187.347600px;}
._1{width:482.162160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.360000px;}
.fse{font-size:30.240000px;}
.fsf{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:92.880000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y106{bottom:-8.385000px;}
.y0{bottom:0.000000px;}
.y102{bottom:2.805000px;}
.y128{bottom:2.880000px;}
.y157{bottom:3.060000px;}
.y5c{bottom:3.240000px;}
.y110{bottom:3.345000px;}
.y11b{bottom:3.450000px;}
.y113{bottom:3.525000px;}
.y12b{bottom:3.780000px;}
.y14e{bottom:4.140000px;}
.y141{bottom:4.320000px;}
.y105{bottom:4.575000px;}
.y13b{bottom:4.860000px;}
.y10c{bottom:5.370000px;}
.y139{bottom:5.400000px;}
.y147{bottom:5.580000px;}
.y10e{bottom:6.015000px;}
.y1b3{bottom:6.120000px;}
.y12f{bottom:6.300000px;}
.y167{bottom:6.330000px;}
.y175{bottom:6.480000px;}
.yfc{bottom:6.765000px;}
.yfa{bottom:6.945000px;}
.y15c{bottom:7.380000px;}
.y16c{bottom:7.560000px;}
.y12d{bottom:7.740000px;}
.y14d{bottom:9.000000px;}
.y140{bottom:9.180000px;}
.y138{bottom:10.080000px;}
.y39{bottom:10.260000px;}
.y129{bottom:10.620000px;}
.y3a{bottom:10.800000px;}
.y134{bottom:10.980000px;}
.y131{bottom:11.160000px;}
.y168{bottom:11.190000px;}
.y181{bottom:11.205000px;}
.y179{bottom:11.340000px;}
.y198{bottom:11.880000px;}
.y15d{bottom:12.240000px;}
.y16d{bottom:12.420000px;}
.y1a0{bottom:12.600000px;}
.y11a{bottom:15.870000px;}
.y36{bottom:17.460000px;}
.y10b{bottom:17.790000px;}
.y34{bottom:18.360000px;}
.y155{bottom:18.540000px;}
.y19d{bottom:20.340000px;}
.y199{bottom:20.520000px;}
.y19f{bottom:20.565000px;}
.y1a3{bottom:21.060000px;}
.y37{bottom:24.300000px;}
.y158{bottom:26.280000px;}
.y109{bottom:26.385000px;}
.y35{bottom:30.060000px;}
.y156{bottom:34.020000px;}
.y6{bottom:35.925007px;}
.y1a2{bottom:37.800000px;}
.y1a5{bottom:38.700000px;}
.yff{bottom:38.985000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.yb9{bottom:119.310000px;}
.yb8{bottom:136.410000px;}
.y22{bottom:139.264499px;}
.y5a{bottom:187.410000px;}
.y19{bottom:196.933500px;}
.ybb{bottom:206.490000px;}
.y59{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yba{bottom:218.910000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y58{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y51{bottom:241.410000px;}
.y57{bottom:249.510000px;}
.y50{bottom:259.410000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y56{bottom:270.210000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y4f{bottom:277.410000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y55{bottom:290.910000px;}
.y4e{bottom:295.410000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y83{bottom:311.115000px;}
.y54{bottom:311.655000px;}
.y4d{bottom:313.455000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ybd{bottom:325.260000px;}
.y4c{bottom:331.455000px;}
.y5b{bottom:331.815000px;}
.y1d5{bottom:331.995000px;}
.y53{bottom:332.355000px;}
.y153{bottom:333.435000px;}
.ybc{bottom:337.680000px;}
.yc3{bottom:339.555000px;}
.y1da{bottom:345.495000px;}
.y195{bottom:347.115000px;}
.y10{bottom:348.133500px;}
.y4b{bottom:349.455000px;}
.y1d4{bottom:349.995000px;}
.y152{bottom:351.435000px;}
.yc2{bottom:357.555000px;}
.ya9{bottom:363.495000px;}
.y194{bottom:365.115000px;}
.y1d3{bottom:367.995000px;}
.yf7{bottom:368.715000px;}
.y172{bottom:368.895000px;}
.yb6{bottom:369.255000px;}
.y151{bottom:369.435000px;}
.y1b1{bottom:369.975000px;}
.y4a{bottom:373.575000px;}
.yc1{bottom:375.555000px;}
.y150{bottom:376.275000px;}
.ya8{bottom:381.495000px;}
.y193{bottom:383.115000px;}
.y1d2{bottom:385.995000px;}
.yf6{bottom:386.715000px;}
.yf{bottom:386.785499px;}
.yb5{bottom:387.255000px;}
.yd1{bottom:387.435000px;}
.y171{bottom:391.935000px;}
.y82{bottom:393.555000px;}
.y1b0{bottom:393.915000px;}
.y14f{bottom:394.635000px;}
.y49{bottom:397.515000px;}
.ya7{bottom:399.495000px;}
.y192{bottom:401.115000px;}
.y1d1{bottom:403.995000px;}
.yf5{bottom:404.715000px;}
.yb4{bottom:405.255000px;}
.yd0{bottom:405.435000px;}
.ye{bottom:408.044999px;}
.y14c{bottom:410.835000px;}
.y81{bottom:411.555000px;}
.y170{bottom:414.975000px;}
.y48{bottom:415.515000px;}
.ya6{bottom:417.495000px;}
.y1af{bottom:418.035000px;}
.y1d0{bottom:421.995000px;}
.yf4{bottom:422.715000px;}
.yb3{bottom:423.255000px;}
.y1d9{bottom:423.435000px;}
.y191{bottom:425.055000px;}
.y80{bottom:429.555000px;}
.y14b{bottom:429.735000px;}
.ya5{bottom:435.495000px;}
.y16f{bottom:438.195000px;}
.y47{bottom:439.455000px;}
.y1cf{bottom:439.995000px;}
.yb2{bottom:441.255000px;}
.y1d8{bottom:441.435000px;}
.y1ae{bottom:441.975000px;}
.yf3{bottom:446.835000px;}
.y7f{bottom:447.555000px;}
.y190{bottom:449.175000px;}
.y14a{bottom:452.775000px;}
.ya4{bottom:453.495000px;}
.y46{bottom:457.455000px;}
.y1ce{bottom:457.995000px;}
.yb1{bottom:459.255000px;}
.y1d7{bottom:459.435000px;}
.y16e{bottom:461.235000px;}
.yf2{bottom:464.475000px;}
.y7e{bottom:465.555000px;}
.y1ad{bottom:465.915000px;}
.y104{bottom:468.540000px;}
.ya3{bottom:471.495000px;}
.y18f{bottom:472.395000px;}
.y45{bottom:475.455000px;}
.y149{bottom:475.815000px;}
.y1cd{bottom:475.995000px;}
.yb0{bottom:477.255000px;}
.y1d6{bottom:477.435000px;}
.yf1{bottom:481.755000px;}
.y7d{bottom:483.555000px;}
.y16b{bottom:484.275000px;}
.ya2{bottom:489.495000px;}
.y1ac{bottom:490.035000px;}
.y44{bottom:493.455000px;}
.y1cc{bottom:493.995000px;}
.yaf{bottom:495.255000px;}
.y1db{bottom:495.435000px;}
.y18e{bottom:497.775000px;}
.yf0{bottom:498.855000px;}
.y7c{bottom:501.555000px;}
.yd{bottom:502.864502px;}
.ya1{bottom:507.495000px;}
.y1ab{bottom:508.035000px;}
.y16a{bottom:509.835000px;}
.y43{bottom:511.455000px;}
.y118{bottom:511.635000px;}
.y1cb{bottom:511.995000px;}
.yae{bottom:513.255000px;}
.ycf{bottom:513.435000px;}
.yef{bottom:516.135000px;}
.y7b{bottom:519.555000px;}
.y18d{bottom:520.815000px;}
.yc{bottom:520.864502px;}
.y148{bottom:521.895000px;}
.ya0{bottom:525.495000px;}
.y117{bottom:525.675000px;}
.y1aa{bottom:526.035000px;}
.y42{bottom:529.455000px;}
.y1ca{bottom:529.995000px;}
.yce{bottom:531.435000px;}
.y169{bottom:532.875000px;}
.yee{bottom:533.415000px;}
.yad{bottom:537.375000px;}
.y7a{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y116{bottom:540.435000px;}
.y9f{bottom:543.495000px;}
.y18c{bottom:544.035000px;}
.y146{bottom:544.935000px;}
.y41{bottom:547.455000px;}
.y1c9{bottom:547.995000px;}
.ycd{bottom:549.435000px;}
.yed{bottom:550.695000px;}
.y115{bottom:555.195000px;}
.y79{bottom:555.555000px;}
.y166{bottom:555.915000px;}
.ya{bottom:556.864499px;}
.y9e{bottom:561.525000px;}
.y1a9{bottom:562.065000px;}
.yac{bottom:563.685000px;}
.y40{bottom:565.485000px;}
.y1c8{bottom:566.025000px;}
.y145{bottom:566.565000px;}
.y18b{bottom:567.105000px;}
.ycc{bottom:567.465000px;}
.yec{bottom:568.005000px;}
.y108{bottom:570.420000px;}
.y78{bottom:573.585000px;}
.y165{bottom:579.165000px;}
.y9d{bottom:579.525000px;}
.y1a8{bottom:580.065000px;}
.y3f{bottom:583.485000px;}
.y1c7{bottom:584.025000px;}
.yeb{bottom:585.285000px;}
.ycb{bottom:585.465000px;}
.yab{bottom:588.345000px;}
.y144{bottom:589.425000px;}
.y18a{bottom:590.145000px;}
.y77{bottom:591.585000px;}
.y9c{bottom:597.525000px;}
.yb7{bottom:601.020000px;}
.y107{bottom:601.125000px;}
.y3e{bottom:601.485000px;}
.y1c6{bottom:602.025000px;}
.y164{bottom:602.205000px;}
.yea{bottom:602.385000px;}
.yca{bottom:603.465000px;}
.y1a7{bottom:604.005000px;}
.y76{bottom:609.585000px;}
.yaa{bottom:610.485000px;}
.y143{bottom:612.465000px;}
.y189{bottom:613.365000px;}
.y9b{bottom:615.525000px;}
.y3d{bottom:619.485000px;}
.ye9{bottom:619.665000px;}
.y1c5{bottom:620.025000px;}
.yc9{bottom:621.465000px;}
.y163{bottom:625.245000px;}
.y75{bottom:627.585000px;}
.y1a6{bottom:627.945000px;}
.yc0{bottom:633.525000px;}
.y142{bottom:635.505000px;}
.y188{bottom:636.405000px;}
.ye8{bottom:636.945000px;}
.y1c4{bottom:638.025000px;}
.y9a{bottom:639.465000px;}
.yf9{bottom:639.900000px;}
.yfb{bottom:640.080000px;}
.y3c{bottom:643.605000px;}
.y9{bottom:645.510000px;}
.y74{bottom:645.585000px;}
.y162{bottom:648.465000px;}
.y114{bottom:650.160000px;}
.y125{bottom:651.525000px;}
.y1a4{bottom:652.245000px;}
.ye7{bottom:654.225000px;}
.y1c3{bottom:656.025000px;}
.y99{bottom:657.465000px;}
.y13f{bottom:658.545000px;}
.yf8{bottom:658.905000px;}
.y187{bottom:659.445000px;}
.y3b{bottom:661.245000px;}
.y73{bottom:663.585000px;}
.y8{bottom:666.771000px;}
.y124{bottom:669.525000px;}
.ye6{bottom:671.505000px;}
.y1c2{bottom:674.025000px;}
.y38{bottom:675.105000px;}
.y98{bottom:675.465000px;}
.y13e{bottom:677.445000px;}
.y72{bottom:681.585000px;}
.y186{bottom:682.665000px;}
.y123{bottom:687.525000px;}
.ye5{bottom:688.605000px;}
.y1c1{bottom:692.025000px;}
.y97{bottom:693.465000px;}
.y13d{bottom:693.825000px;}
.y161{bottom:694.545000px;}
.y33{bottom:697.245000px;}
.y71{bottom:699.585000px;}
.y122{bottom:705.525000px;}
.y185{bottom:705.705000px;}
.ye4{bottom:705.885000px;}
.y1c0{bottom:710.025000px;}
.y112{bottom:710.460000px;}
.y10f{bottom:710.640000px;}
.y111{bottom:711.360000px;}
.y96{bottom:711.465000px;}
.y13c{bottom:716.865000px;}
.y70{bottom:717.585000px;}
.y160{bottom:717.765000px;}
.ye3{bottom:723.165000px;}
.y121{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y1bf{bottom:728.025000px;}
.y184{bottom:728.745000px;}
.y95{bottom:729.465000px;}
.y13a{bottom:733.065000px;}
.y6f{bottom:735.585000px;}
.y32{bottom:736.125000px;}
.ye2{bottom:740.445000px;}
.y15f{bottom:740.805000px;}
.y120{bottom:741.525000px;}
.y94{bottom:747.465000px;}
.y183{bottom:751.965000px;}
.y3{bottom:752.599495px;}
.yfe{bottom:753.120000px;}
.y137{bottom:753.225000px;}
.y6e{bottom:753.585000px;}
.y31{bottom:753.765000px;}
.ye1{bottom:757.725000px;}
.y1a1{bottom:759.345000px;}
.y11f{bottom:759.525000px;}
.y15e{bottom:763.845000px;}
.y10d{bottom:763.920000px;}
.y93{bottom:765.465000px;}
.y101{bottom:767.985000px;}
.y6d{bottom:771.585000px;}
.y30{bottom:771.765000px;}
.y1be{bottom:773.745000px;}
.y136{bottom:774.285000px;}
.ye0{bottom:775.005000px;}
.y182{bottom:777.345000px;}
.y11e{bottom:777.525000px;}
.y100{bottom:780.045000px;}
.y1bd{bottom:780.765000px;}
.y92{bottom:783.465000px;}
.y15b{bottom:787.065000px;}
.y6c{bottom:789.585000px;}
.y2f{bottom:789.765000px;}
.ydf{bottom:792.105000px;}
.y19e{bottom:795.705000px;}
.y135{bottom:797.325000px;}
.y180{bottom:800.385000px;}
.y91{bottom:801.465000px;}
.y1bc{bottom:803.985000px;}
.y6b{bottom:807.585000px;}
.y2e{bottom:807.765000px;}
.yde{bottom:809.385000px;}
.y15a{bottom:812.490000px;}
.y90{bottom:819.510000px;}
.y133{bottom:820.410000px;}
.y17f{bottom:823.470000px;}
.y6a{bottom:825.630000px;}
.y2d{bottom:825.810000px;}
.ydd{bottom:826.710000px;}
.y1bb{bottom:827.250000px;}
.y1dc{bottom:831.570000px;}
.y19c{bottom:832.290000px;}
.y159{bottom:835.530000px;}
.y8f{bottom:837.510000px;}
.y119{bottom:841.140000px;}
.y132{bottom:843.270000px;}
.ybf{bottom:843.630000px;}
.y2c{bottom:843.810000px;}
.ydc{bottom:843.990000px;}
.y17e{bottom:846.690000px;}
.y69{bottom:849.570000px;}
.y1ba{bottom:850.470000px;}
.y103{bottom:852.990000px;}
.y8e{bottom:855.510000px;}
.y154{bottom:858.570000px;}
.ydb{bottom:861.270000px;}
.ybe{bottom:861.630000px;}
.y2b{bottom:861.810000px;}
.y130{bottom:866.310000px;}
.y68{bottom:867.570000px;}
.y19b{bottom:868.650000px;}
.y17d{bottom:869.730000px;}
.y8d{bottom:873.510000px;}
.y1b9{bottom:873.690000px;}
.yda{bottom:878.550000px;}
.y2{bottom:879.369000px;}
.yc8{bottom:879.630000px;}
.y2a{bottom:879.810000px;}
.y67{bottom:885.570000px;}
.y12e{bottom:889.350000px;}
.y8c{bottom:891.510000px;}
.y17c{bottom:892.770000px;}
.yd9{bottom:895.650000px;}
.y1b8{bottom:896.910000px;}
.yc7{bottom:897.630000px;}
.y29{bottom:899.430000px;}
.y66{bottom:903.570000px;}
.y19a{bottom:905.010000px;}
.y8b{bottom:909.510000px;}
.y10a{bottom:911.520000px;}
.y12c{bottom:912.390000px;}
.yd8{bottom:912.930000px;}
.yc6{bottom:915.630000px;}
.y17b{bottom:915.990000px;}
.y1b7{bottom:920.310000px;}
.y65{bottom:921.570000px;}
.y28{bottom:926.790000px;}
.y8a{bottom:927.510000px;}
.y12a{bottom:928.770000px;}
.yd7{bottom:930.210000px;}
.yc5{bottom:933.630000px;}
.yfd{bottom:934.890000px;}
.y17a{bottom:939.030000px;}
.y64{bottom:939.570000px;}
.y197{bottom:941.370000px;}
.y1b6{bottom:943.530000px;}
.y89{bottom:945.510000px;}
.y127{bottom:946.950000px;}
.yd6{bottom:947.490000px;}
.yc4{bottom:951.630000px;}
.y27{bottom:953.610000px;}
.y63{bottom:957.570000px;}
.y178{bottom:962.070000px;}
.y88{bottom:963.510000px;}
.yd5{bottom:964.770000px;}
.y1{bottom:966.726000px;}
.y1b5{bottom:966.750000px;}
.y11d{bottom:969.630000px;}
.y62{bottom:975.570000px;}
.y26{bottom:980.250000px;}
.y87{bottom:981.510000px;}
.yd4{bottom:982.050000px;}
.y177{bottom:985.290000px;}
.y11c{bottom:987.630000px;}
.y126{bottom:987.990000px;}
.y196{bottom:988.710000px;}
.y1b4{bottom:989.970000px;}
.y61{bottom:993.570000px;}
.y86{bottom:999.510000px;}
.yd3{bottom:1005.630000px;}
.y176{bottom:1010.670000px;}
.y60{bottom:1011.570000px;}
.y1b2{bottom:1013.190000px;}
.y85{bottom:1017.510000px;}
.yd2{bottom:1023.630000px;}
.y5f{bottom:1029.570000px;}
.y25{bottom:1031.550000px;}
.y174{bottom:1033.710000px;}
.y84{bottom:1041.630000px;}
.y5e{bottom:1047.570000px;}
.y24{bottom:1048.650000px;}
.y173{bottom:1056.930000px;}
.y5d{bottom:1065.600000px;}
.y23{bottom:1065.960000px;}
.y52{bottom:1119.960000px;}
.h22{height:14.580000px;}
.h28{height:15.480000px;}
.h14{height:17.280000px;}
.h26{height:17.460000px;}
.h2c{height:18.180000px;}
.h1e{height:18.900000px;}
.h21{height:19.440000px;}
.h2b{height:20.340000px;}
.h2d{height:20.736000px;}
.h11{height:22.140000px;}
.h2a{height:22.176000px;}
.h29{height:22.320000px;}
.h31{height:22.356000px;}
.h33{height:22.500000px;}
.h3b{height:22.536000px;}
.h32{height:24.660000px;}
.h30{height:24.696000px;}
.h24{height:26.820000px;}
.h20{height:30.780000px;}
.h25{height:30.960000px;}
.h7{height:32.130000px;}
.h1c{height:33.120000px;}
.h1b{height:33.300000px;}
.h35{height:34.380000px;}
.h36{height:35.460000px;}
.he{height:35.640000px;}
.h37{height:35.676000px;}
.h2f{height:38.100586px;}
.h1a{height:40.985156px;}
.h23{height:42.086250px;}
.h6{height:45.900000px;}
.h2e{height:46.620000px;}
.h10{height:47.344922px;}
.h3{height:48.195000px;}
.hf{height:48.616875px;}
.h1d{height:49.140000px;}
.h12{height:50.171484px;}
.h39{height:52.740000px;}
.h38{height:52.920000px;}
.h27{height:52.998047px;}
.h15{height:53.573906px;}
.h17{height:54.421875px;}
.h2{height:55.080000px;}
.h3a{height:55.796836px;}
.hd{height:55.824609px;}
.h34{height:57.324375px;}
.h16{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h19{height:61.423863px;}
.h13{height:70.664062px;}
.h5{height:78.030000px;}
.hb{height:93.605625px;}
.hc{height:93.983203px;}
.h4{height:119.055004px;}
.h1f{height:170.820000px;}
.h18{height:437.040000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wc{width:10.980000px;}
.w9{width:22.716000px;}
.wf{width:40.320000px;}
.w11{width:42.300000px;}
.w10{width:42.840000px;}
.w15{width:43.920000px;}
.w12{width:45.360000px;}
.w28{width:46.440000px;}
.w1f{width:46.476000px;}
.w14{width:47.700000px;}
.w13{width:47.880000px;}
.w1e{width:49.320000px;}
.w23{width:53.280000px;}
.w27{width:53.316000px;}
.w22{width:59.976000px;}
.w24{width:60.120000px;}
.w1a{width:66.816000px;}
.w1d{width:77.400000px;}
.w19{width:80.280000px;}
.w29{width:100.476000px;}
.w1c{width:106.596000px;}
.w25{width:113.976000px;}
.wa{width:115.560000px;}
.w17{width:120.816000px;}
.w16{width:127.080000px;}
.we{width:127.260000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.wd{width:156.240000px;}
.w1b{width:175.170000px;}
.w18{width:181.470000px;}
.w26{width:214.950000px;}
.w21{width:215.310000px;}
.wb{width:291.780000px;}
.w20{width:458.025000px;}
.w2a{width:532.185000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x43{left:4.860000px;}
.x55{left:6.660000px;}
.xf{left:8.100000px;}
.x31{left:9.870000px;}
.x2e{left:10.875000px;}
.x37{left:12.855000px;}
.x38{left:13.935000px;}
.x3a{left:15.045000px;}
.x3c{left:16.485000px;}
.x4b{left:20.880000px;}
.x33{left:23.250000px;}
.x4f{left:24.660000px;}
.x53{left:26.100000px;}
.x25{left:28.545000px;}
.x22{left:33.915000px;}
.x28{left:36.255000px;}
.x2a{left:37.875000px;}
.x49{left:45.360000px;}
.x41{left:48.450000px;}
.x4e{left:53.310000px;}
.x2d{left:63.975000px;}
.x34{left:66.810000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.xa{left:218.009986px;}
.x58{left:219.990000px;}
.x2f{left:227.009986px;}
.x51{left:233.310000px;}
.x3f{left:238.889986px;}
.x1e{left:243.029986px;}
.x32{left:248.580000px;}
.x47{left:257.070000px;}
.x6{left:259.949986px;}
.x1f{left:270.029986px;}
.x21{left:273.960000px;}
.x35{left:275.940000px;}
.x36{left:290.880000px;}
.x20{left:293.114986px;}
.x50{left:297.794986px;}
.x15{left:305.354986px;}
.x42{left:330.014986px;}
.x2c{left:337.860000px;}
.x13{left:345.314986px;}
.xe{left:346.755000px;}
.x18{left:354.314986px;}
.x7{left:370.334986px;}
.x9{left:380.774986px;}
.x44{left:381.855000px;}
.x17{left:387.794986px;}
.xd{left:390.134986px;}
.xb{left:396.794986px;}
.x1b{left:401.579986px;}
.x57{left:406.154986px;}
.x27{left:428.400000px;}
.x48{left:432.975000px;}
.x59{left:435.675000px;}
.x26{left:443.594986px;}
.x12{left:444.854986px;}
.x2b{left:447.914986px;}
.x52{left:449.355000px;}
.xc{left:451.334986px;}
.x3{left:454.959000px;}
.x29{left:458.534986px;}
.x3e{left:469.440000px;}
.x14{left:474.735000px;}
.x1d{left:478.469986px;}
.x10{left:479.955000px;}
.x8{left:486.104986px;}
.x5a{left:489.705000px;}
.x1c{left:503.534986px;}
.x54{left:510.045000px;}
.x5b{left:536.865000px;}
.x4a{left:540.285000px;}
.x39{left:544.500000px;}
.x1a{left:558.974986px;}
.x45{left:564.045000px;}
.x19{left:567.974986px;}
.x40{left:572.220000px;}
.x24{left:580.680000px;}
.x3b{left:590.220000px;}
.x23{left:617.144986px;}
.x4c{left:618.405000px;}
.x11{left:621.465000px;}
.x56{left:624.885000px;}
.x46{left:645.045000px;}
.x3d{left:650.700000px;}
.x5c{left:651.705000px;}
.x4d{left:668.625000px;}
.x30{left:726.300000px;}
.x16{left:778.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.472533pt;}
.ls2{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.196267pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.050560pt;}
.ls6{letter-spacing:0.062720pt;}
.lsb{letter-spacing:0.077440pt;}
.ls9{letter-spacing:0.080640pt;}
.lse{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.322560pt;}
.ls13{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.557440pt;}
.ls14{letter-spacing:12.160000pt;}
.ls1a{letter-spacing:28.320000pt;}
.ls7{letter-spacing:38.992640pt;}
.wsb{word-spacing:-42.880000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.416533pt;}
.ws13{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws15{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.112000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws11{word-spacing:-8.640000pt;}
.wsa{word-spacing:-6.720000pt;}
.ws9{word-spacing:-6.080000pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-2.925227pt;}
._b{margin-left:-1.855573pt;}
._3{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._2{width:2.527147pt;}
._6{width:3.475413pt;}
._d{width:4.629333pt;}
._7{width:6.108800pt;}
._8{width:7.176320pt;}
._f{width:8.127360pt;}
._e{width:9.242880pt;}
._5{width:10.889600pt;}
._4{width:11.792640pt;}
._9{width:14.395520pt;}
._a{width:15.672747pt;}
._14{width:17.309867pt;}
._11{width:18.485760pt;}
._10{width:19.601280pt;}
._13{width:20.554880pt;}
._12{width:21.779200pt;}
._15{width:22.735360pt;}
._16{width:24.010240pt;}
._1b{width:25.125760pt;}
._19{width:26.347520pt;}
._18{width:28.472320pt;}
._17{width:29.428480pt;}
._1a{width:95.520000pt;}
._1c{width:166.531200pt;}
._1{width:428.588587pt;}
.fsd{font-size:24.320000pt;}
.fse{font-size:26.880000pt;}
.fsf{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:82.560000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y106{bottom:-7.453333pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:2.493333pt;}
.y128{bottom:2.560000pt;}
.y157{bottom:2.720000pt;}
.y5c{bottom:2.880000pt;}
.y110{bottom:2.973333pt;}
.y11b{bottom:3.066667pt;}
.y113{bottom:3.133333pt;}
.y12b{bottom:3.360000pt;}
.y14e{bottom:3.680000pt;}
.y141{bottom:3.840000pt;}
.y105{bottom:4.066667pt;}
.y13b{bottom:4.320000pt;}
.y10c{bottom:4.773333pt;}
.y139{bottom:4.800000pt;}
.y147{bottom:4.960000pt;}
.y10e{bottom:5.346667pt;}
.y1b3{bottom:5.440000pt;}
.y12f{bottom:5.600000pt;}
.y167{bottom:5.626667pt;}
.y175{bottom:5.760000pt;}
.yfc{bottom:6.013333pt;}
.yfa{bottom:6.173333pt;}
.y15c{bottom:6.560000pt;}
.y16c{bottom:6.720000pt;}
.y12d{bottom:6.880000pt;}
.y14d{bottom:8.000000pt;}
.y140{bottom:8.160000pt;}
.y138{bottom:8.960000pt;}
.y39{bottom:9.120000pt;}
.y129{bottom:9.440000pt;}
.y3a{bottom:9.600000pt;}
.y134{bottom:9.760000pt;}
.y131{bottom:9.920000pt;}
.y168{bottom:9.946667pt;}
.y181{bottom:9.960000pt;}
.y179{bottom:10.080000pt;}
.y198{bottom:10.560000pt;}
.y15d{bottom:10.880000pt;}
.y16d{bottom:11.040000pt;}
.y1a0{bottom:11.200000pt;}
.y11a{bottom:14.106667pt;}
.y36{bottom:15.520000pt;}
.y10b{bottom:15.813333pt;}
.y34{bottom:16.320000pt;}
.y155{bottom:16.480000pt;}
.y19d{bottom:18.080000pt;}
.y199{bottom:18.240000pt;}
.y19f{bottom:18.280000pt;}
.y1a3{bottom:18.720000pt;}
.y37{bottom:21.600000pt;}
.y158{bottom:23.360000pt;}
.y109{bottom:23.453333pt;}
.y35{bottom:26.720000pt;}
.y156{bottom:30.240000pt;}
.y6{bottom:31.933340pt;}
.y1a2{bottom:33.600000pt;}
.y1a5{bottom:34.400000pt;}
.yff{bottom:34.653333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.yb9{bottom:106.053333pt;}
.yb8{bottom:121.253333pt;}
.y22{bottom:123.790666pt;}
.y5a{bottom:166.586667pt;}
.y19{bottom:175.052000pt;}
.ybb{bottom:183.546667pt;}
.y59{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yba{bottom:194.586667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y58{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y51{bottom:214.586667pt;}
.y57{bottom:221.786667pt;}
.y50{bottom:230.586667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y56{bottom:240.186667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y4f{bottom:246.586667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y55{bottom:258.586667pt;}
.y4e{bottom:262.586667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y83{bottom:276.546667pt;}
.y54{bottom:277.026667pt;}
.y4d{bottom:278.626667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ybd{bottom:289.120000pt;}
.y4c{bottom:294.626667pt;}
.y5b{bottom:294.946667pt;}
.y1d5{bottom:295.106667pt;}
.y53{bottom:295.426667pt;}
.y153{bottom:296.386667pt;}
.ybc{bottom:300.160000pt;}
.yc3{bottom:301.826667pt;}
.y1da{bottom:307.106667pt;}
.y195{bottom:308.546667pt;}
.y10{bottom:309.452000pt;}
.y4b{bottom:310.626667pt;}
.y1d4{bottom:311.106667pt;}
.y152{bottom:312.386667pt;}
.yc2{bottom:317.826667pt;}
.ya9{bottom:323.106667pt;}
.y194{bottom:324.546667pt;}
.y1d3{bottom:327.106667pt;}
.yf7{bottom:327.746667pt;}
.y172{bottom:327.906667pt;}
.yb6{bottom:328.226667pt;}
.y151{bottom:328.386667pt;}
.y1b1{bottom:328.866667pt;}
.y4a{bottom:332.066667pt;}
.yc1{bottom:333.826667pt;}
.y150{bottom:334.466667pt;}
.ya8{bottom:339.106667pt;}
.y193{bottom:340.546667pt;}
.y1d2{bottom:343.106667pt;}
.yf6{bottom:343.746667pt;}
.yf{bottom:343.809333pt;}
.yb5{bottom:344.226667pt;}
.yd1{bottom:344.386667pt;}
.y171{bottom:348.386667pt;}
.y82{bottom:349.826667pt;}
.y1b0{bottom:350.146667pt;}
.y14f{bottom:350.786667pt;}
.y49{bottom:353.346667pt;}
.ya7{bottom:355.106667pt;}
.y192{bottom:356.546667pt;}
.y1d1{bottom:359.106667pt;}
.yf5{bottom:359.746667pt;}
.yb4{bottom:360.226667pt;}
.yd0{bottom:360.386667pt;}
.ye{bottom:362.706666pt;}
.y14c{bottom:365.186667pt;}
.y81{bottom:365.826667pt;}
.y170{bottom:368.866667pt;}
.y48{bottom:369.346667pt;}
.ya6{bottom:371.106667pt;}
.y1af{bottom:371.586667pt;}
.y1d0{bottom:375.106667pt;}
.yf4{bottom:375.746667pt;}
.yb3{bottom:376.226667pt;}
.y1d9{bottom:376.386667pt;}
.y191{bottom:377.826667pt;}
.y80{bottom:381.826667pt;}
.y14b{bottom:381.986667pt;}
.ya5{bottom:387.106667pt;}
.y16f{bottom:389.506667pt;}
.y47{bottom:390.626667pt;}
.y1cf{bottom:391.106667pt;}
.yb2{bottom:392.226667pt;}
.y1d8{bottom:392.386667pt;}
.y1ae{bottom:392.866667pt;}
.yf3{bottom:397.186667pt;}
.y7f{bottom:397.826667pt;}
.y190{bottom:399.266667pt;}
.y14a{bottom:402.466667pt;}
.ya4{bottom:403.106667pt;}
.y46{bottom:406.626667pt;}
.y1ce{bottom:407.106667pt;}
.yb1{bottom:408.226667pt;}
.y1d7{bottom:408.386667pt;}
.y16e{bottom:409.986667pt;}
.yf2{bottom:412.866667pt;}
.y7e{bottom:413.826667pt;}
.y1ad{bottom:414.146667pt;}
.y104{bottom:416.480000pt;}
.ya3{bottom:419.106667pt;}
.y18f{bottom:419.906667pt;}
.y45{bottom:422.626667pt;}
.y149{bottom:422.946667pt;}
.y1cd{bottom:423.106667pt;}
.yb0{bottom:424.226667pt;}
.y1d6{bottom:424.386667pt;}
.yf1{bottom:428.226667pt;}
.y7d{bottom:429.826667pt;}
.y16b{bottom:430.466667pt;}
.ya2{bottom:435.106667pt;}
.y1ac{bottom:435.586667pt;}
.y44{bottom:438.626667pt;}
.y1cc{bottom:439.106667pt;}
.yaf{bottom:440.226667pt;}
.y1db{bottom:440.386667pt;}
.y18e{bottom:442.466667pt;}
.yf0{bottom:443.426667pt;}
.y7c{bottom:445.826667pt;}
.yd{bottom:446.990669pt;}
.ya1{bottom:451.106667pt;}
.y1ab{bottom:451.586667pt;}
.y16a{bottom:453.186667pt;}
.y43{bottom:454.626667pt;}
.y118{bottom:454.786667pt;}
.y1cb{bottom:455.106667pt;}
.yae{bottom:456.226667pt;}
.ycf{bottom:456.386667pt;}
.yef{bottom:458.786667pt;}
.y7b{bottom:461.826667pt;}
.y18d{bottom:462.946667pt;}
.yc{bottom:462.990669pt;}
.y148{bottom:463.906667pt;}
.ya0{bottom:467.106667pt;}
.y117{bottom:467.266667pt;}
.y1aa{bottom:467.586667pt;}
.y42{bottom:470.626667pt;}
.y1ca{bottom:471.106667pt;}
.yce{bottom:472.386667pt;}
.y169{bottom:473.666667pt;}
.yee{bottom:474.146667pt;}
.yad{bottom:477.666667pt;}
.y7a{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y116{bottom:480.386667pt;}
.y9f{bottom:483.106667pt;}
.y18c{bottom:483.586667pt;}
.y146{bottom:484.386667pt;}
.y41{bottom:486.626667pt;}
.y1c9{bottom:487.106667pt;}
.ycd{bottom:488.386667pt;}
.yed{bottom:489.506667pt;}
.y115{bottom:493.506667pt;}
.y79{bottom:493.826667pt;}
.y166{bottom:494.146667pt;}
.ya{bottom:494.990666pt;}
.y9e{bottom:499.133333pt;}
.y1a9{bottom:499.613333pt;}
.yac{bottom:501.053333pt;}
.y40{bottom:502.653333pt;}
.y1c8{bottom:503.133333pt;}
.y145{bottom:503.613333pt;}
.y18b{bottom:504.093333pt;}
.ycc{bottom:504.413333pt;}
.yec{bottom:504.893333pt;}
.y108{bottom:507.040000pt;}
.y78{bottom:509.853333pt;}
.y165{bottom:514.813333pt;}
.y9d{bottom:515.133333pt;}
.y1a8{bottom:515.613333pt;}
.y3f{bottom:518.653333pt;}
.y1c7{bottom:519.133333pt;}
.yeb{bottom:520.253333pt;}
.ycb{bottom:520.413333pt;}
.yab{bottom:522.973333pt;}
.y144{bottom:523.933333pt;}
.y18a{bottom:524.573333pt;}
.y77{bottom:525.853333pt;}
.y9c{bottom:531.133333pt;}
.yb7{bottom:534.240000pt;}
.y107{bottom:534.333333pt;}
.y3e{bottom:534.653333pt;}
.y1c6{bottom:535.133333pt;}
.y164{bottom:535.293333pt;}
.yea{bottom:535.453333pt;}
.yca{bottom:536.413333pt;}
.y1a7{bottom:536.893333pt;}
.y76{bottom:541.853333pt;}
.yaa{bottom:542.653333pt;}
.y143{bottom:544.413333pt;}
.y189{bottom:545.213333pt;}
.y9b{bottom:547.133333pt;}
.y3d{bottom:550.653333pt;}
.ye9{bottom:550.813333pt;}
.y1c5{bottom:551.133333pt;}
.yc9{bottom:552.413333pt;}
.y163{bottom:555.773333pt;}
.y75{bottom:557.853333pt;}
.y1a6{bottom:558.173333pt;}
.yc0{bottom:563.133333pt;}
.y142{bottom:564.893333pt;}
.y188{bottom:565.693333pt;}
.ye8{bottom:566.173333pt;}
.y1c4{bottom:567.133333pt;}
.y9a{bottom:568.413333pt;}
.yf9{bottom:568.800000pt;}
.yfb{bottom:568.960000pt;}
.y3c{bottom:572.093333pt;}
.y9{bottom:573.786667pt;}
.y74{bottom:573.853333pt;}
.y162{bottom:576.413333pt;}
.y114{bottom:577.920000pt;}
.y125{bottom:579.133333pt;}
.y1a4{bottom:579.773333pt;}
.ye7{bottom:581.533333pt;}
.y1c3{bottom:583.133333pt;}
.y99{bottom:584.413333pt;}
.y13f{bottom:585.373333pt;}
.yf8{bottom:585.693333pt;}
.y187{bottom:586.173333pt;}
.y3b{bottom:587.773333pt;}
.y73{bottom:589.853333pt;}
.y8{bottom:592.685334pt;}
.y124{bottom:595.133333pt;}
.ye6{bottom:596.893333pt;}
.y1c2{bottom:599.133333pt;}
.y38{bottom:600.093333pt;}
.y98{bottom:600.413333pt;}
.y13e{bottom:602.173333pt;}
.y72{bottom:605.853333pt;}
.y186{bottom:606.813333pt;}
.y123{bottom:611.133333pt;}
.ye5{bottom:612.093333pt;}
.y1c1{bottom:615.133333pt;}
.y97{bottom:616.413333pt;}
.y13d{bottom:616.733333pt;}
.y161{bottom:617.373333pt;}
.y33{bottom:619.773333pt;}
.y71{bottom:621.853333pt;}
.y122{bottom:627.133333pt;}
.y185{bottom:627.293333pt;}
.ye4{bottom:627.453333pt;}
.y1c0{bottom:631.133333pt;}
.y112{bottom:631.520000pt;}
.y10f{bottom:631.680000pt;}
.y111{bottom:632.320000pt;}
.y96{bottom:632.413333pt;}
.y13c{bottom:637.213333pt;}
.y70{bottom:637.853333pt;}
.y160{bottom:638.013333pt;}
.ye3{bottom:642.813333pt;}
.y121{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y1bf{bottom:647.133333pt;}
.y184{bottom:647.773333pt;}
.y95{bottom:648.413333pt;}
.y13a{bottom:651.613333pt;}
.y6f{bottom:653.853333pt;}
.y32{bottom:654.333333pt;}
.ye2{bottom:658.173333pt;}
.y15f{bottom:658.493333pt;}
.y120{bottom:659.133333pt;}
.y94{bottom:664.413333pt;}
.y183{bottom:668.413333pt;}
.y3{bottom:668.977329pt;}
.yfe{bottom:669.440000pt;}
.y137{bottom:669.533333pt;}
.y6e{bottom:669.853333pt;}
.y31{bottom:670.013333pt;}
.ye1{bottom:673.533333pt;}
.y1a1{bottom:674.973333pt;}
.y11f{bottom:675.133333pt;}
.y15e{bottom:678.973333pt;}
.y10d{bottom:679.040000pt;}
.y93{bottom:680.413333pt;}
.y101{bottom:682.653333pt;}
.y6d{bottom:685.853333pt;}
.y30{bottom:686.013333pt;}
.y1be{bottom:687.773333pt;}
.y136{bottom:688.253333pt;}
.ye0{bottom:688.893333pt;}
.y182{bottom:690.973333pt;}
.y11e{bottom:691.133333pt;}
.y100{bottom:693.373333pt;}
.y1bd{bottom:694.013333pt;}
.y92{bottom:696.413333pt;}
.y15b{bottom:699.613333pt;}
.y6c{bottom:701.853333pt;}
.y2f{bottom:702.013333pt;}
.ydf{bottom:704.093333pt;}
.y19e{bottom:707.293333pt;}
.y135{bottom:708.733333pt;}
.y180{bottom:711.453333pt;}
.y91{bottom:712.413333pt;}
.y1bc{bottom:714.653333pt;}
.y6b{bottom:717.853333pt;}
.y2e{bottom:718.013333pt;}
.yde{bottom:719.453333pt;}
.y15a{bottom:722.213333pt;}
.y90{bottom:728.453333pt;}
.y133{bottom:729.253333pt;}
.y17f{bottom:731.973333pt;}
.y6a{bottom:733.893333pt;}
.y2d{bottom:734.053333pt;}
.ydd{bottom:734.853333pt;}
.y1bb{bottom:735.333333pt;}
.y1dc{bottom:739.173333pt;}
.y19c{bottom:739.813333pt;}
.y159{bottom:742.693333pt;}
.y8f{bottom:744.453333pt;}
.y119{bottom:747.680000pt;}
.y132{bottom:749.573333pt;}
.ybf{bottom:749.893333pt;}
.y2c{bottom:750.053333pt;}
.ydc{bottom:750.213333pt;}
.y17e{bottom:752.613333pt;}
.y69{bottom:755.173333pt;}
.y1ba{bottom:755.973333pt;}
.y103{bottom:758.213333pt;}
.y8e{bottom:760.453333pt;}
.y154{bottom:763.173333pt;}
.ydb{bottom:765.573333pt;}
.ybe{bottom:765.893333pt;}
.y2b{bottom:766.053333pt;}
.y130{bottom:770.053333pt;}
.y68{bottom:771.173333pt;}
.y19b{bottom:772.133333pt;}
.y17d{bottom:773.093333pt;}
.y8d{bottom:776.453333pt;}
.y1b9{bottom:776.613333pt;}
.yda{bottom:780.933333pt;}
.y2{bottom:781.661334pt;}
.yc8{bottom:781.893333pt;}
.y2a{bottom:782.053333pt;}
.y67{bottom:787.173333pt;}
.y12e{bottom:790.533333pt;}
.y8c{bottom:792.453333pt;}
.y17c{bottom:793.573333pt;}
.yd9{bottom:796.133333pt;}
.y1b8{bottom:797.253333pt;}
.yc7{bottom:797.893333pt;}
.y29{bottom:799.493333pt;}
.y66{bottom:803.173333pt;}
.y19a{bottom:804.453333pt;}
.y8b{bottom:808.453333pt;}
.y10a{bottom:810.240000pt;}
.y12c{bottom:811.013333pt;}
.yd8{bottom:811.493333pt;}
.yc6{bottom:813.893333pt;}
.y17b{bottom:814.213333pt;}
.y1b7{bottom:818.053333pt;}
.y65{bottom:819.173333pt;}
.y28{bottom:823.813333pt;}
.y8a{bottom:824.453333pt;}
.y12a{bottom:825.573333pt;}
.yd7{bottom:826.853333pt;}
.yc5{bottom:829.893333pt;}
.yfd{bottom:831.013333pt;}
.y17a{bottom:834.693333pt;}
.y64{bottom:835.173333pt;}
.y197{bottom:836.773333pt;}
.y1b6{bottom:838.693333pt;}
.y89{bottom:840.453333pt;}
.y127{bottom:841.733333pt;}
.yd6{bottom:842.213333pt;}
.yc4{bottom:845.893333pt;}
.y27{bottom:847.653333pt;}
.y63{bottom:851.173333pt;}
.y178{bottom:855.173333pt;}
.y88{bottom:856.453333pt;}
.yd5{bottom:857.573333pt;}
.y1{bottom:859.312000pt;}
.y1b5{bottom:859.333333pt;}
.y11d{bottom:861.893333pt;}
.y62{bottom:867.173333pt;}
.y26{bottom:871.333333pt;}
.y87{bottom:872.453333pt;}
.yd4{bottom:872.933333pt;}
.y177{bottom:875.813333pt;}
.y11c{bottom:877.893333pt;}
.y126{bottom:878.213333pt;}
.y196{bottom:878.853333pt;}
.y1b4{bottom:879.973333pt;}
.y61{bottom:883.173333pt;}
.y86{bottom:888.453333pt;}
.yd3{bottom:893.893333pt;}
.y176{bottom:898.373333pt;}
.y60{bottom:899.173333pt;}
.y1b2{bottom:900.613333pt;}
.y85{bottom:904.453333pt;}
.yd2{bottom:909.893333pt;}
.y5f{bottom:915.173333pt;}
.y25{bottom:916.933333pt;}
.y174{bottom:918.853333pt;}
.y84{bottom:925.893333pt;}
.y5e{bottom:931.173333pt;}
.y24{bottom:932.133333pt;}
.y173{bottom:939.493333pt;}
.y5d{bottom:947.200000pt;}
.y23{bottom:947.520000pt;}
.y52{bottom:995.520000pt;}
.h22{height:12.960000pt;}
.h28{height:13.760000pt;}
.h14{height:15.360000pt;}
.h26{height:15.520000pt;}
.h2c{height:16.160000pt;}
.h1e{height:16.800000pt;}
.h21{height:17.280000pt;}
.h2b{height:18.080000pt;}
.h2d{height:18.432000pt;}
.h11{height:19.680000pt;}
.h2a{height:19.712000pt;}
.h29{height:19.840000pt;}
.h31{height:19.872000pt;}
.h33{height:20.000000pt;}
.h3b{height:20.032000pt;}
.h32{height:21.920000pt;}
.h30{height:21.952000pt;}
.h24{height:23.840000pt;}
.h20{height:27.360000pt;}
.h25{height:27.520000pt;}
.h7{height:28.560000pt;}
.h1c{height:29.440000pt;}
.h1b{height:29.600000pt;}
.h35{height:30.560000pt;}
.h36{height:31.520000pt;}
.he{height:31.680000pt;}
.h37{height:31.712000pt;}
.h2f{height:33.867188pt;}
.h1a{height:36.431250pt;}
.h23{height:37.410000pt;}
.h6{height:40.800000pt;}
.h2e{height:41.440000pt;}
.h10{height:42.084375pt;}
.h3{height:42.840000pt;}
.hf{height:43.215000pt;}
.h1d{height:43.680000pt;}
.h12{height:44.596875pt;}
.h39{height:46.880000pt;}
.h38{height:47.040000pt;}
.h27{height:47.109375pt;}
.h15{height:47.621250pt;}
.h17{height:48.375000pt;}
.h2{height:48.960000pt;}
.h3a{height:49.597187pt;}
.hd{height:49.621875pt;}
.h34{height:50.955000pt;}
.h16{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h19{height:54.598989pt;}
.h13{height:62.812500pt;}
.h5{height:69.360000pt;}
.hb{height:83.205000pt;}
.hc{height:83.540625pt;}
.h4{height:105.826671pt;}
.h1f{height:151.840000pt;}
.h18{height:388.480000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wc{width:9.760000pt;}
.w9{width:20.192000pt;}
.wf{width:35.840000pt;}
.w11{width:37.600000pt;}
.w10{width:38.080000pt;}
.w15{width:39.040000pt;}
.w12{width:40.320000pt;}
.w28{width:41.280000pt;}
.w1f{width:41.312000pt;}
.w14{width:42.400000pt;}
.w13{width:42.560000pt;}
.w1e{width:43.840000pt;}
.w23{width:47.360000pt;}
.w27{width:47.392000pt;}
.w22{width:53.312000pt;}
.w24{width:53.440000pt;}
.w1a{width:59.392000pt;}
.w1d{width:68.800000pt;}
.w19{width:71.360000pt;}
.w29{width:89.312000pt;}
.w1c{width:94.752000pt;}
.w25{width:101.312000pt;}
.wa{width:102.720000pt;}
.w17{width:107.392000pt;}
.w16{width:112.960000pt;}
.we{width:113.120000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.wd{width:138.880000pt;}
.w1b{width:155.706667pt;}
.w18{width:161.306667pt;}
.w26{width:191.066667pt;}
.w21{width:191.386667pt;}
.wb{width:259.360000pt;}
.w20{width:407.133333pt;}
.w2a{width:473.053333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x43{left:4.320000pt;}
.x55{left:5.920000pt;}
.xf{left:7.200000pt;}
.x31{left:8.773333pt;}
.x2e{left:9.666667pt;}
.x37{left:11.426667pt;}
.x38{left:12.386667pt;}
.x3a{left:13.373333pt;}
.x3c{left:14.653333pt;}
.x4b{left:18.560000pt;}
.x33{left:20.666667pt;}
.x4f{left:21.920000pt;}
.x53{left:23.200000pt;}
.x25{left:25.373333pt;}
.x22{left:30.146667pt;}
.x28{left:32.226667pt;}
.x2a{left:33.666667pt;}
.x49{left:40.320000pt;}
.x41{left:43.066667pt;}
.x4e{left:47.386667pt;}
.x2d{left:56.866667pt;}
.x34{left:59.386667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.xa{left:193.786655pt;}
.x58{left:195.546667pt;}
.x2f{left:201.786655pt;}
.x51{left:207.386667pt;}
.x3f{left:212.346655pt;}
.x1e{left:216.026655pt;}
.x32{left:220.960000pt;}
.x47{left:228.506667pt;}
.x6{left:231.066655pt;}
.x1f{left:240.026655pt;}
.x21{left:243.520000pt;}
.x35{left:245.280000pt;}
.x36{left:258.560000pt;}
.x20{left:260.546655pt;}
.x50{left:264.706655pt;}
.x15{left:271.426655pt;}
.x42{left:293.346655pt;}
.x2c{left:300.320000pt;}
.x13{left:306.946655pt;}
.xe{left:308.226667pt;}
.x18{left:314.946655pt;}
.x7{left:329.186655pt;}
.x9{left:338.466655pt;}
.x44{left:339.426667pt;}
.x17{left:344.706655pt;}
.xd{left:346.786655pt;}
.xb{left:352.706655pt;}
.x1b{left:356.959988pt;}
.x57{left:361.026655pt;}
.x27{left:380.800000pt;}
.x48{left:384.866667pt;}
.x59{left:387.266667pt;}
.x26{left:394.306655pt;}
.x12{left:395.426655pt;}
.x2b{left:398.146655pt;}
.x52{left:399.426667pt;}
.xc{left:401.186655pt;}
.x3{left:404.408000pt;}
.x29{left:407.586655pt;}
.x3e{left:417.280000pt;}
.x14{left:421.986667pt;}
.x1d{left:425.306655pt;}
.x10{left:426.626667pt;}
.x8{left:432.093321pt;}
.x5a{left:435.293333pt;}
.x1c{left:447.586655pt;}
.x54{left:453.373333pt;}
.x5b{left:477.213333pt;}
.x4a{left:480.253333pt;}
.x39{left:484.000000pt;}
.x1a{left:496.866655pt;}
.x45{left:501.373333pt;}
.x19{left:504.866655pt;}
.x40{left:508.640000pt;}
.x24{left:516.160000pt;}
.x3b{left:524.640000pt;}
.x23{left:548.573321pt;}
.x4c{left:549.693333pt;}
.x11{left:552.413333pt;}
.x56{left:555.453333pt;}
.x46{left:573.373333pt;}
.x3d{left:578.400000pt;}
.x5c{left:579.293333pt;}
.x4d{left:594.333333pt;}
.x30{left:645.600000pt;}
.x16{left:692.133321pt;}
}




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