
    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_745d5f1a91e5b71a2a2e8ebc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_ec108f55f3af84cd78599aa1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_28ebd395d75bf130234490e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_f21328062c40875e5e0c80c7.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_879ce10291ed2bae19614b42.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_345da76ef8989c332bd2dee8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_ab46191dcd20489dbc7c7b89.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3c2a52586c9b9fef2260a45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c2ddf24b33fd75b33d76068d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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_cae6794e7f638ae422c47b7a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-77.040000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.738000px;}
.ls20{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.132600px;}
.ls25{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.018000px;}
.ls23{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.121200px;}
.ls26{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.131040px;}
.ls1a{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259800px;}
.ls28{letter-spacing:0.269400px;}
.ls1e{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.666000px;}
.lse{letter-spacing:1.080000px;}
.ls17{letter-spacing:10.980000px;}
.ls18{letter-spacing:11.700000px;}
.ls12{letter-spacing:15.066720px;}
.ls1b{letter-spacing:27.540000px;}
.ls11{letter-spacing:44.562720px;}
.ls1{letter-spacing:244.956000px;}
.lsa{letter-spacing:723.936000px;}
.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;}
}
.ws16{word-spacing:-54.468000px;}
.ws15{word-spacing:-54.270000px;}
.ws14{word-spacing:-54.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.wsd{word-spacing:-16.085040px;}
.wsc{word-spacing:-16.020000px;}
.ws0{word-spacing:-15.831240px;}
.wsb{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.wse{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws1d{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.824000px;}
.ws1c{word-spacing:-13.680000px;}
.ws20{word-spacing:-13.626000px;}
.ws18{word-spacing:-13.608000px;}
.ws1b{word-spacing:-13.536000px;}
.ws1a{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.392000px;}
.ws21{word-spacing:-13.140000px;}
.wsa{word-spacing:-13.068000px;}
.ws8{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.798000px;}
.ws1e{word-spacing:-12.762000px;}
.ws9{word-spacing:-12.726000px;}
.ws23{word-spacing:-12.420000px;}
.ws22{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.388000px;}
.ws7{word-spacing:-10.064160px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:834.480000px;}
._18{margin-left:-939.896160px;}
._c{margin-left:-4.095840px;}
._3{margin-left:-3.039120px;}
._0{margin-left:-1.080000px;}
._1{width:1.308000px;}
._2{width:3.257040px;}
._8{width:4.780800px;}
._a{width:6.215040px;}
._9{width:7.788720px;}
._d{width:8.815680px;}
._e{width:10.720800px;}
._b{width:11.751840px;}
._7{width:13.255200px;}
._4{width:16.256880px;}
._5{width:17.674560px;}
._6{width:18.700560px;}
._12{width:19.735440px;}
._f{width:20.796480px;}
._10{width:21.958800px;}
._11{width:22.980720px;}
._16{width:24.094320px;}
._15{width:25.338240px;}
._13{width:27.429840px;}
._14{width:28.470240px;}
._1d{width:29.796960px;}
._1e{width:31.654800px;}
._1b{width:36.752400px;}
._1c{width:38.206560px;}
._1a{width:48.047040px;}
._19{width:49.242240px;}
._17{width:91.071600px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(79,98,40);}
.fsc{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1f1{bottom:1.800000px;}
.y4{bottom:1.980000px;}
.y1a{bottom:2.520000px;}
.y4b{bottom:2.700000px;}
.y1e1{bottom:2.880000px;}
.y7e{bottom:2.910000px;}
.y1e8{bottom:3.060000px;}
.y4d{bottom:4.320000px;}
.y82{bottom:4.530000px;}
.y84{bottom:5.070000px;}
.y7a{bottom:5.295000px;}
.y7c{bottom:6.195000px;}
.y80{bottom:6.330000px;}
.y8{bottom:6.480000px;}
.y4e{bottom:7.020000px;}
.y3{bottom:12.240000px;}
.y19{bottom:16.200000px;}
.y1f2{bottom:16.380000px;}
.y1e6{bottom:18.360000px;}
.y2{bottom:22.500000px;}
.y1f{bottom:30.060000px;}
.y18{bottom:30.105000px;}
.y1e5{bottom:33.840000px;}
.y1eb{bottom:34.020000px;}
.y1e{bottom:43.920000px;}
.y17{bottom:43.965000px;}
.y9{bottom:47.880000px;}
.y1e4{bottom:49.500000px;}
.y1d{bottom:57.600000px;}
.y16{bottom:57.645000px;}
.y7{bottom:63.540000px;}
.y1e3{bottom:64.980000px;}
.y1c{bottom:71.460000px;}
.y15{bottom:71.505000px;}
.y6{bottom:87.840000px;}
.y1f3{bottom:96.300000px;}
.y1f0{bottom:97.740000px;}
.y142{bottom:99.720000px;}
.yc2{bottom:104.220000px;}
.y12a{bottom:108.720000px;}
.yf0{bottom:111.420000px;}
.y15f{bottom:113.940000px;}
.y76{bottom:114.300000px;}
.y141{bottom:117.000000px;}
.yc1{bottom:121.500000px;}
.y1d3{bottom:122.940000px;}
.y49{bottom:123.120000px;}
.y129{bottom:126.000000px;}
.y1d4{bottom:126.180000px;}
.yef{bottom:128.700000px;}
.y15e{bottom:131.220000px;}
.y1ef{bottom:133.920000px;}
.y140{bottom:134.280000px;}
.yc0{bottom:138.780000px;}
.y1d2{bottom:140.220000px;}
.y48{bottom:140.400000px;}
.y128{bottom:143.280000px;}
.y19b{bottom:143.460000px;}
.y1ee{bottom:144.180000px;}
.yee{bottom:145.980000px;}
.y15d{bottom:148.320000px;}
.y75{bottom:148.860000px;}
.y13f{bottom:151.560000px;}
.ybf{bottom:156.060000px;}
.y1d1{bottom:157.320000px;}
.y47{bottom:157.680000px;}
.y127{bottom:160.560000px;}
.y19a{bottom:160.740000px;}
.y1ed{bottom:161.460000px;}
.yed{bottom:163.260000px;}
.y15c{bottom:165.600000px;}
.y13e{bottom:168.840000px;}
.ybe{bottom:173.340000px;}
.y1d0{bottom:174.600000px;}
.y46{bottom:174.960000px;}
.y126{bottom:177.840000px;}
.y199{bottom:178.020000px;}
.y1ec{bottom:178.740000px;}
.yec{bottom:180.540000px;}
.y15b{bottom:182.880000px;}
.y13d{bottom:185.970000px;}
.ybd{bottom:190.470000px;}
.y1cf{bottom:191.910000px;}
.y45{bottom:192.090000px;}
.y1ea{bottom:192.810000px;}
.y125{bottom:194.970000px;}
.y198{bottom:195.150000px;}
.yeb{bottom:197.670000px;}
.y83{bottom:198.000000px;}
.y15a{bottom:200.190000px;}
.y13c{bottom:203.250000px;}
.ybc{bottom:207.750000px;}
.y1ce{bottom:209.190000px;}
.y44{bottom:209.370000px;}
.y124{bottom:212.250000px;}
.y197{bottom:212.430000px;}
.yea{bottom:214.950000px;}
.y159{bottom:217.470000px;}
.y13b{bottom:220.530000px;}
.ybb{bottom:225.030000px;}
.y1cd{bottom:226.470000px;}
.y43{bottom:226.650000px;}
.y123{bottom:229.530000px;}
.y196{bottom:229.710000px;}
.ye9{bottom:232.230000px;}
.y158{bottom:234.750000px;}
.y13a{bottom:237.810000px;}
.yba{bottom:242.310000px;}
.y1cc{bottom:243.750000px;}
.y42{bottom:243.930000px;}
.y122{bottom:246.810000px;}
.y195{bottom:246.990000px;}
.ye8{bottom:249.510000px;}
.y157{bottom:251.850000px;}
.y139{bottom:255.090000px;}
.y81{bottom:256.140000px;}
.yb9{bottom:259.590000px;}
.y1cb{bottom:260.850000px;}
.y41{bottom:261.210000px;}
.y121{bottom:264.090000px;}
.y194{bottom:264.270000px;}
.ye7{bottom:266.790000px;}
.y156{bottom:269.130000px;}
.y1e9{bottom:270.390000px;}
.y138{bottom:272.370000px;}
.yb8{bottom:276.870000px;}
.y1ca{bottom:278.130000px;}
.y40{bottom:278.490000px;}
.y120{bottom:281.370000px;}
.y193{bottom:281.550000px;}
.ye6{bottom:284.070000px;}
.y1e7{bottom:285.870000px;}
.y155{bottom:286.410000px;}
.y4a{bottom:287.490000px;}
.y137{bottom:289.470000px;}
.yb7{bottom:293.970000px;}
.y1c9{bottom:295.410000px;}
.y3f{bottom:295.590000px;}
.y11f{bottom:298.470000px;}
.y192{bottom:298.650000px;}
.ye5{bottom:301.170000px;}
.y1e2{bottom:301.530000px;}
.y154{bottom:303.690000px;}
.y136{bottom:306.750000px;}
.y7f{bottom:309.600000px;}
.yb6{bottom:311.250000px;}
.y1c8{bottom:312.690000px;}
.y3e{bottom:312.870000px;}
.y11e{bottom:315.750000px;}
.y191{bottom:315.930000px;}
.ye4{bottom:318.450000px;}
.y153{bottom:320.970000px;}
.y135{bottom:324.030000px;}
.yb5{bottom:328.530000px;}
.y1c7{bottom:329.970000px;}
.y3d{bottom:330.150000px;}
.y11d{bottom:333.030000px;}
.y190{bottom:333.210000px;}
.ye3{bottom:335.730000px;}
.y152{bottom:338.250000px;}
.y78{bottom:340.410000px;}
.y134{bottom:341.310000px;}
.yb4{bottom:345.810000px;}
.y3c{bottom:346.530000px;}
.y1c6{bottom:347.250000px;}
.y77{bottom:347.430000px;}
.y11c{bottom:350.310000px;}
.y18f{bottom:350.490000px;}
.ye2{bottom:353.010000px;}
.y151{bottom:355.350000px;}
.y133{bottom:358.590000px;}
.y3b{bottom:359.850000px;}
.yb3{bottom:363.090000px;}
.y1c5{bottom:364.350000px;}
.y11b{bottom:367.590000px;}
.y18e{bottom:367.770000px;}
.ye1{bottom:370.290000px;}
.y150{bottom:372.630000px;}
.y7d{bottom:373.140000px;}
.y3a{bottom:373.710000px;}
.y132{bottom:375.870000px;}
.y1e0{bottom:379.110000px;}
.yb2{bottom:380.370000px;}
.y1c4{bottom:381.630000px;}
.y11a{bottom:384.870000px;}
.y18d{bottom:385.050000px;}
.y39{bottom:387.390000px;}
.ye0{bottom:387.570000px;}
.y14f{bottom:389.910000px;}
.y131{bottom:392.970000px;}
.y1df{bottom:396.210000px;}
.yb1{bottom:397.470000px;}
.y1c3{bottom:398.910000px;}
.y38{bottom:401.250000px;}
.y119{bottom:401.970000px;}
.y18c{bottom:402.150000px;}
.ydf{bottom:404.670000px;}
.y1de{bottom:406.110000px;}
.y14e{bottom:407.190000px;}
.y130{bottom:410.250000px;}
.yb0{bottom:414.750000px;}
.y37{bottom:415.110000px;}
.y1c2{bottom:416.190000px;}
.y118{bottom:419.250000px;}
.y18b{bottom:419.430000px;}
.yde{bottom:421.950000px;}
.y1dd{bottom:422.130000px;}
.y7b{bottom:423.540000px;}
.y12f{bottom:427.575000px;}
.y36{bottom:428.835000px;}
.yaf{bottom:432.075000px;}
.y1c1{bottom:433.515000px;}
.y117{bottom:436.575000px;}
.y18a{bottom:436.755000px;}
.ydd{bottom:439.275000px;}
.y1dc{bottom:439.455000px;}
.y35{bottom:442.695000px;}
.y12e{bottom:444.855000px;}
.yae{bottom:449.355000px;}
.y1c0{bottom:450.615000px;}
.y116{bottom:453.855000px;}
.y189{bottom:454.035000px;}
.y34{bottom:456.555000px;}
.y1db{bottom:456.735000px;}
.y14d{bottom:461.775000px;}
.y12d{bottom:462.135000px;}
.yad{bottom:466.635000px;}
.y1bf{bottom:467.895000px;}
.y33{bottom:470.235000px;}
.y115{bottom:471.135000px;}
.y188{bottom:471.315000px;}
.ydc{bottom:473.835000px;}
.y1da{bottom:474.015000px;}
.y12c{bottom:479.235000px;}
.y79{bottom:482.760000px;}
.yac{bottom:483.735000px;}
.y32{bottom:484.095000px;}
.y114{bottom:488.235000px;}
.y187{bottom:488.415000px;}
.ydb{bottom:490.935000px;}
.y1d9{bottom:491.115000px;}
.y12b{bottom:496.515000px;}
.y31{bottom:497.955000px;}
.yab{bottom:501.015000px;}
.y113{bottom:505.515000px;}
.y186{bottom:505.695000px;}
.yda{bottom:508.215000px;}
.y1d8{bottom:508.395000px;}
.y30{bottom:511.635000px;}
.y14c{bottom:516.495000px;}
.yaa{bottom:518.295000px;}
.y1be{bottom:522.615000px;}
.y112{bottom:522.795000px;}
.y185{bottom:522.975000px;}
.y2f{bottom:525.495000px;}
.y1d7{bottom:525.675000px;}
.y74{bottom:533.775000px;}
.ya9{bottom:535.575000px;}
.y2e{bottom:539.355000px;}
.y111{bottom:540.075000px;}
.y184{bottom:540.255000px;}
.yd9{bottom:542.775000px;}
.y1d6{bottom:542.955000px;}
.y73{bottom:551.055000px;}
.ya8{bottom:552.855000px;}
.y2d{bottom:553.035000px;}
.y110{bottom:557.355000px;}
.y183{bottom:557.535000px;}
.yd8{bottom:560.055000px;}
.y1d5{bottom:560.235000px;}
.y2c{bottom:566.895000px;}
.y72{bottom:568.335000px;}
.ya7{bottom:570.135000px;}
.y10f{bottom:574.635000px;}
.y182{bottom:574.815000px;}
.yd7{bottom:577.335000px;}
.y1bd{bottom:577.515000px;}
.y2b{bottom:580.755000px;}
.y71{bottom:585.435000px;}
.ya6{bottom:587.235000px;}
.y10e{bottom:591.735000px;}
.y181{bottom:591.915000px;}
.y2a{bottom:594.435000px;}
.y1bc{bottom:594.615000px;}
.y70{bottom:602.715000px;}
.ya5{bottom:604.515000px;}
.y29{bottom:608.295000px;}
.y10d{bottom:609.015000px;}
.y180{bottom:609.195000px;}
.yd6{bottom:611.715000px;}
.y1bb{bottom:611.895000px;}
.y6f{bottom:619.995000px;}
.ya4{bottom:621.795000px;}
.y28{bottom:622.155000px;}
.y10c{bottom:626.295000px;}
.y17f{bottom:626.475000px;}
.yd5{bottom:628.995000px;}
.y1ba{bottom:629.175000px;}
.y27{bottom:635.835000px;}
.y6e{bottom:637.275000px;}
.ya3{bottom:639.075000px;}
.y10b{bottom:643.575000px;}
.y17e{bottom:643.755000px;}
.yd4{bottom:646.275000px;}
.y1b9{bottom:646.455000px;}
.y26{bottom:649.695000px;}
.y6d{bottom:654.555000px;}
.ya2{bottom:656.355000px;}
.y10a{bottom:660.855000px;}
.y17d{bottom:661.035000px;}
.y25{bottom:663.555000px;}
.y1b8{bottom:663.735000px;}
.y6c{bottom:671.865000px;}
.ya1{bottom:673.665000px;}
.y24{bottom:677.445000px;}
.y109{bottom:678.165000px;}
.y17c{bottom:678.345000px;}
.yd3{bottom:680.865000px;}
.y1b7{bottom:681.045000px;}
.y6b{bottom:688.965000px;}
.ya0{bottom:690.765000px;}
.y23{bottom:693.645000px;}
.y108{bottom:695.265000px;}
.y17b{bottom:695.445000px;}
.yd2{bottom:697.965000px;}
.y1b6{bottom:698.145000px;}
.y6a{bottom:706.245000px;}
.y22{bottom:706.605000px;}
.y9f{bottom:708.045000px;}
.y107{bottom:712.545000px;}
.y17a{bottom:712.725000px;}
.yd1{bottom:715.245000px;}
.y1b5{bottom:715.425000px;}
.y69{bottom:723.525000px;}
.y21{bottom:723.705000px;}
.y9e{bottom:725.325000px;}
.y106{bottom:729.825000px;}
.y179{bottom:730.005000px;}
.yd0{bottom:732.525000px;}
.y1b4{bottom:732.705000px;}
.y20{bottom:737.025000px;}
.y68{bottom:740.805000px;}
.y9d{bottom:742.605000px;}
.y105{bottom:747.105000px;}
.y178{bottom:747.285000px;}
.ycf{bottom:749.805000px;}
.y1b3{bottom:749.985000px;}
.y67{bottom:758.085000px;}
.y9c{bottom:759.885000px;}
.y104{bottom:764.385000px;}
.y177{bottom:764.565000px;}
.yce{bottom:767.085000px;}
.y1b2{bottom:767.265000px;}
.y66{bottom:775.365000px;}
.y9b{bottom:777.165000px;}
.y103{bottom:781.665000px;}
.y176{bottom:781.845000px;}
.ycd{bottom:784.365000px;}
.y1b1{bottom:784.545000px;}
.y65{bottom:792.465000px;}
.y9a{bottom:794.265000px;}
.y102{bottom:798.765000px;}
.y175{bottom:798.945000px;}
.ycc{bottom:801.465000px;}
.y1b0{bottom:801.645000px;}
.y1b{bottom:805.965000px;}
.y64{bottom:809.745000px;}
.y99{bottom:811.545000px;}
.y101{bottom:816.045000px;}
.y174{bottom:816.225000px;}
.ycb{bottom:818.745000px;}
.y1af{bottom:818.925000px;}
.y63{bottom:827.025000px;}
.y98{bottom:828.825000px;}
.y100{bottom:833.325000px;}
.y173{bottom:833.505000px;}
.yca{bottom:836.025000px;}
.y1ae{bottom:836.205000px;}
.y62{bottom:844.305000px;}
.y97{bottom:846.105000px;}
.yff{bottom:850.605000px;}
.y172{bottom:850.785000px;}
.yc9{bottom:853.305000px;}
.y1ad{bottom:853.485000px;}
.y61{bottom:861.585000px;}
.y96{bottom:863.385000px;}
.yfe{bottom:867.885000px;}
.y171{bottom:868.065000px;}
.yc8{bottom:870.585000px;}
.y1ac{bottom:870.765000px;}
.y60{bottom:878.685000px;}
.y95{bottom:880.485000px;}
.yfd{bottom:884.985000px;}
.y170{bottom:885.165000px;}
.yc7{bottom:887.685000px;}
.y1ab{bottom:887.865000px;}
.y14{bottom:888.765000px;}
.y5f{bottom:895.965000px;}
.y94{bottom:897.765000px;}
.yfc{bottom:902.265000px;}
.y16f{bottom:902.445000px;}
.yc6{bottom:904.965000px;}
.y1aa{bottom:905.145000px;}
.y5e{bottom:913.290000px;}
.y93{bottom:915.090000px;}
.yfb{bottom:919.590000px;}
.y16e{bottom:919.770000px;}
.yc5{bottom:922.290000px;}
.y1a9{bottom:922.470000px;}
.y5d{bottom:930.570000px;}
.y92{bottom:932.370000px;}
.yfa{bottom:936.870000px;}
.y16d{bottom:937.050000px;}
.yc4{bottom:939.570000px;}
.y1a8{bottom:939.750000px;}
.y14b{bottom:947.850000px;}
.y91{bottom:949.650000px;}
.y5c{bottom:952.350000px;}
.yf9{bottom:954.150000px;}
.y16c{bottom:954.330000px;}
.yc3{bottom:956.850000px;}
.y1a7{bottom:957.030000px;}
.y14a{bottom:965.130000px;}
.y90{bottom:966.930000px;}
.yf8{bottom:971.430000px;}
.y16b{bottom:971.610000px;}
.y5b{bottom:974.130000px;}
.y1a6{bottom:974.310000px;}
.y13{bottom:974.850000px;}
.y149{bottom:982.230000px;}
.y8f{bottom:984.030000px;}
.yf7{bottom:988.530000px;}
.y16a{bottom:988.710000px;}
.y5a{bottom:991.230000px;}
.y1a5{bottom:991.410000px;}
.y12{bottom:992.850000px;}
.y148{bottom:999.510000px;}
.y8e{bottom:1001.310000px;}
.yf6{bottom:1005.810000px;}
.y169{bottom:1005.990000px;}
.y59{bottom:1008.510000px;}
.y1a4{bottom:1008.690000px;}
.y11{bottom:1013.550000px;}
.y147{bottom:1016.790000px;}
.y8d{bottom:1018.590000px;}
.yf5{bottom:1023.090000px;}
.y168{bottom:1023.270000px;}
.y58{bottom:1025.790000px;}
.y1a3{bottom:1025.970000px;}
.y146{bottom:1034.070000px;}
.y10{bottom:1034.250000px;}
.y8c{bottom:1035.870000px;}
.yf4{bottom:1040.370000px;}
.y167{bottom:1040.550000px;}
.y57{bottom:1043.070000px;}
.y1a2{bottom:1043.250000px;}
.y145{bottom:1051.350000px;}
.y8b{bottom:1053.150000px;}
.yf{bottom:1054.950000px;}
.yf3{bottom:1057.650000px;}
.y166{bottom:1057.830000px;}
.y56{bottom:1060.350000px;}
.y1a1{bottom:1060.530000px;}
.y144{bottom:1068.630000px;}
.y8a{bottom:1070.430000px;}
.yf2{bottom:1074.930000px;}
.y165{bottom:1075.110000px;}
.y55{bottom:1077.630000px;}
.y1a0{bottom:1077.810000px;}
.y89{bottom:1087.530000px;}
.y143{bottom:1090.230000px;}
.yf1{bottom:1092.030000px;}
.y164{bottom:1092.210000px;}
.y54{bottom:1094.730000px;}
.ye{bottom:1094.910000px;}
.y88{bottom:1104.810000px;}
.yd{bottom:1109.310000px;}
.y163{bottom:1109.490000px;}
.y53{bottom:1112.010000px;}
.y19f{bottom:1112.190000px;}
.y87{bottom:1122.090000px;}
.yc{bottom:1126.590000px;}
.y162{bottom:1126.770000px;}
.y52{bottom:1129.290000px;}
.y19e{bottom:1129.470000px;}
.y86{bottom:1139.370000px;}
.yb{bottom:1143.870000px;}
.y161{bottom:1144.050000px;}
.y51{bottom:1146.570000px;}
.y19d{bottom:1146.750000px;}
.y85{bottom:1161.000000px;}
.ya{bottom:1161.180000px;}
.y160{bottom:1161.360000px;}
.y50{bottom:1163.880000px;}
.y19c{bottom:1164.060000px;}
.y5{bottom:1177.560000px;}
.y4f{bottom:1188.000000px;}
.y1{bottom:1189.620000px;}
.y4c{bottom:1200.060000px;}
.h29{height:5.653125px;}
.h23{height:15.480000px;}
.h26{height:15.660000px;}
.h1f{height:16.200000px;}
.h6{height:17.903320px;}
.h20{height:19.080000px;}
.h1c{height:20.160000px;}
.h18{height:20.340000px;}
.h7{height:21.600000px;}
.h1d{height:22.680000px;}
.h3{height:27.210938px;}
.h4{height:27.228516px;}
.h22{height:29.678906px;}
.h2{height:30.780000px;}
.h19{height:31.585078px;}
.h27{height:34.560000px;}
.h13{height:40.964766px;}
.h15{height:40.985156px;}
.h14{height:42.445547px;}
.he{height:47.321367px;}
.h5{height:47.344922px;}
.h28{height:48.616875px;}
.h8{height:50.068125px;}
.h1b{height:52.581797px;}
.h24{height:52.971680px;}
.h1a{height:52.998047px;}
.h1e{height:53.139375px;}
.h11{height:55.824609px;}
.h12{height:58.621992px;}
.ha{height:58.651172px;}
.hc{height:60.226875px;}
.h21{height:61.423863px;}
.h16{height:65.520000px;}
.h9{height:65.884219px;}
.h10{height:68.940000px;}
.hb{height:72.562500px;}
.h25{height:77.580000px;}
.hf{height:82.800000px;}
.hd{height:82.836000px;}
.h17{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.240000px;}
.w9{width:61.920000px;}
.w13{width:84.960000px;}
.wb{width:157.350000px;}
.w7{width:226.470000px;}
.w8{width:226.650000px;}
.wc{width:253.110000px;}
.w10{width:267.300000px;}
.wf{width:268.560000px;}
.w11{width:269.640000px;}
.wa{width:269.850000px;}
.we{width:271.800000px;}
.w2{width:287.130000px;}
.w4{width:376.635000px;}
.w14{width:595.545000px;}
.w6{width:680.325000px;}
.w12{width:682.485000px;}
.wd{width:691.125000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:1.980000px;}
.x27{left:4.860000px;}
.x2{left:8.100000px;}
.x4{left:9.360000px;}
.x20{left:11.880000px;}
.xf{left:29.520000px;}
.x29{left:36.180000px;}
.x15{left:40.680000px;}
.x10{left:42.840000px;}
.x32{left:43.995000px;}
.x2b{left:50.040000px;}
.x22{left:53.280000px;}
.x36{left:55.074000px;}
.x1b{left:65.334000px;}
.x11{left:66.594000px;}
.x31{left:68.475000px;}
.x38{left:74.334000px;}
.x6{left:76.890000px;}
.x1a{left:81.900000px;}
.x30{left:85.395000px;}
.x12{left:95.034000px;}
.x26{left:100.296000px;}
.x1e{left:102.414000px;}
.x1{left:104.076000px;}
.x8{left:106.415987px;}
.x16{left:108.720000px;}
.x1c{left:111.954000px;}
.x17{left:113.220000px;}
.x1d{left:114.300000px;}
.x25{left:127.655987px;}
.x19{left:134.145000px;}
.x1f{left:136.980000px;}
.x21{left:148.005000px;}
.xe{left:154.614000px;}
.xc{left:156.449987px;}
.x35{left:159.869987px;}
.x24{left:162.929987px;}
.x39{left:199.470000px;}
.x13{left:218.379000px;}
.x2f{left:309.240000px;}
.x2e{left:319.034987px;}
.xd{left:326.234987px;}
.x33{left:330.159000px;}
.x9{left:331.239000px;}
.x14{left:332.895000px;}
.x2c{left:336.999000px;}
.x2d{left:344.594987px;}
.xa{left:351.074987px;}
.x28{left:376.275000px;}
.x3{left:391.215000px;}
.x5{left:412.455000px;}
.x34{left:418.574987px;}
.xb{left:446.474987px;}
.x2a{left:533.625000px;}
.x18{left:559.365000px;}
.x23{left:661.244987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.656000pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.016000pt;}
.ls23{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.107733pt;}
.ls26{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.116480pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls28{letter-spacing:0.239467pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.960000pt;}
.ls17{letter-spacing:9.760000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls12{letter-spacing:13.392640pt;}
.ls1b{letter-spacing:24.480000pt;}
.ls11{letter-spacing:39.611307pt;}
.ls1{letter-spacing:217.738667pt;}
.lsa{letter-spacing:643.498667pt;}
.ws16{word-spacing:-48.416000pt;}
.ws15{word-spacing:-48.240000pt;}
.ws14{word-spacing:-48.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.297813pt;}
.wsc{word-spacing:-14.240000pt;}
.ws0{word-spacing:-14.072213pt;}
.wsb{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.288000pt;}
.ws1c{word-spacing:-12.160000pt;}
.ws20{word-spacing:-12.112000pt;}
.ws18{word-spacing:-12.096000pt;}
.ws1b{word-spacing:-12.032000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.904000pt;}
.ws21{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.616000pt;}
.ws8{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.376000pt;}
.ws1e{word-spacing:-11.344000pt;}
.ws9{word-spacing:-11.312000pt;}
.ws23{word-spacing:-11.040000pt;}
.ws22{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.122667pt;}
.ws7{word-spacing:-8.945920pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:741.760000pt;}
._18{margin-left:-835.463253pt;}
._c{margin-left:-3.640747pt;}
._3{margin-left:-2.701440pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.162667pt;}
._2{width:2.895147pt;}
._8{width:4.249600pt;}
._a{width:5.524480pt;}
._9{width:6.923307pt;}
._d{width:7.836160pt;}
._e{width:9.529600pt;}
._b{width:10.446080pt;}
._7{width:11.782400pt;}
._4{width:14.450560pt;}
._5{width:15.710720pt;}
._6{width:16.622720pt;}
._12{width:17.542613pt;}
._f{width:18.485760pt;}
._10{width:19.518933pt;}
._11{width:20.427307pt;}
._16{width:21.417173pt;}
._15{width:22.522880pt;}
._13{width:24.382080pt;}
._14{width:25.306880pt;}
._1d{width:26.486187pt;}
._1e{width:28.137600pt;}
._1b{width:32.668800pt;}
._1c{width:33.961387pt;}
._1a{width:42.708480pt;}
._19{width:43.770880pt;}
._17{width:80.952533pt;}
.fsc{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1f1{bottom:1.600000pt;}
.y4{bottom:1.760000pt;}
.y1a{bottom:2.240000pt;}
.y4b{bottom:2.400000pt;}
.y1e1{bottom:2.560000pt;}
.y7e{bottom:2.586667pt;}
.y1e8{bottom:2.720000pt;}
.y4d{bottom:3.840000pt;}
.y82{bottom:4.026667pt;}
.y84{bottom:4.506667pt;}
.y7a{bottom:4.706667pt;}
.y7c{bottom:5.506667pt;}
.y80{bottom:5.626667pt;}
.y8{bottom:5.760000pt;}
.y4e{bottom:6.240000pt;}
.y3{bottom:10.880000pt;}
.y19{bottom:14.400000pt;}
.y1f2{bottom:14.560000pt;}
.y1e6{bottom:16.320000pt;}
.y2{bottom:20.000000pt;}
.y1f{bottom:26.720000pt;}
.y18{bottom:26.760000pt;}
.y1e5{bottom:30.080000pt;}
.y1eb{bottom:30.240000pt;}
.y1e{bottom:39.040000pt;}
.y17{bottom:39.080000pt;}
.y9{bottom:42.560000pt;}
.y1e4{bottom:44.000000pt;}
.y1d{bottom:51.200000pt;}
.y16{bottom:51.240000pt;}
.y7{bottom:56.480000pt;}
.y1e3{bottom:57.760000pt;}
.y1c{bottom:63.520000pt;}
.y15{bottom:63.560000pt;}
.y6{bottom:78.080000pt;}
.y1f3{bottom:85.600000pt;}
.y1f0{bottom:86.880000pt;}
.y142{bottom:88.640000pt;}
.yc2{bottom:92.640000pt;}
.y12a{bottom:96.640000pt;}
.yf0{bottom:99.040000pt;}
.y15f{bottom:101.280000pt;}
.y76{bottom:101.600000pt;}
.y141{bottom:104.000000pt;}
.yc1{bottom:108.000000pt;}
.y1d3{bottom:109.280000pt;}
.y49{bottom:109.440000pt;}
.y129{bottom:112.000000pt;}
.y1d4{bottom:112.160000pt;}
.yef{bottom:114.400000pt;}
.y15e{bottom:116.640000pt;}
.y1ef{bottom:119.040000pt;}
.y140{bottom:119.360000pt;}
.yc0{bottom:123.360000pt;}
.y1d2{bottom:124.640000pt;}
.y48{bottom:124.800000pt;}
.y128{bottom:127.360000pt;}
.y19b{bottom:127.520000pt;}
.y1ee{bottom:128.160000pt;}
.yee{bottom:129.760000pt;}
.y15d{bottom:131.840000pt;}
.y75{bottom:132.320000pt;}
.y13f{bottom:134.720000pt;}
.ybf{bottom:138.720000pt;}
.y1d1{bottom:139.840000pt;}
.y47{bottom:140.160000pt;}
.y127{bottom:142.720000pt;}
.y19a{bottom:142.880000pt;}
.y1ed{bottom:143.520000pt;}
.yed{bottom:145.120000pt;}
.y15c{bottom:147.200000pt;}
.y13e{bottom:150.080000pt;}
.ybe{bottom:154.080000pt;}
.y1d0{bottom:155.200000pt;}
.y46{bottom:155.520000pt;}
.y126{bottom:158.080000pt;}
.y199{bottom:158.240000pt;}
.y1ec{bottom:158.880000pt;}
.yec{bottom:160.480000pt;}
.y15b{bottom:162.560000pt;}
.y13d{bottom:165.306667pt;}
.ybd{bottom:169.306667pt;}
.y1cf{bottom:170.586667pt;}
.y45{bottom:170.746667pt;}
.y1ea{bottom:171.386667pt;}
.y125{bottom:173.306667pt;}
.y198{bottom:173.466667pt;}
.yeb{bottom:175.706667pt;}
.y83{bottom:176.000000pt;}
.y15a{bottom:177.946667pt;}
.y13c{bottom:180.666667pt;}
.ybc{bottom:184.666667pt;}
.y1ce{bottom:185.946667pt;}
.y44{bottom:186.106667pt;}
.y124{bottom:188.666667pt;}
.y197{bottom:188.826667pt;}
.yea{bottom:191.066667pt;}
.y159{bottom:193.306667pt;}
.y13b{bottom:196.026667pt;}
.ybb{bottom:200.026667pt;}
.y1cd{bottom:201.306667pt;}
.y43{bottom:201.466667pt;}
.y123{bottom:204.026667pt;}
.y196{bottom:204.186667pt;}
.ye9{bottom:206.426667pt;}
.y158{bottom:208.666667pt;}
.y13a{bottom:211.386667pt;}
.yba{bottom:215.386667pt;}
.y1cc{bottom:216.666667pt;}
.y42{bottom:216.826667pt;}
.y122{bottom:219.386667pt;}
.y195{bottom:219.546667pt;}
.ye8{bottom:221.786667pt;}
.y157{bottom:223.866667pt;}
.y139{bottom:226.746667pt;}
.y81{bottom:227.680000pt;}
.yb9{bottom:230.746667pt;}
.y1cb{bottom:231.866667pt;}
.y41{bottom:232.186667pt;}
.y121{bottom:234.746667pt;}
.y194{bottom:234.906667pt;}
.ye7{bottom:237.146667pt;}
.y156{bottom:239.226667pt;}
.y1e9{bottom:240.346667pt;}
.y138{bottom:242.106667pt;}
.yb8{bottom:246.106667pt;}
.y1ca{bottom:247.226667pt;}
.y40{bottom:247.546667pt;}
.y120{bottom:250.106667pt;}
.y193{bottom:250.266667pt;}
.ye6{bottom:252.506667pt;}
.y1e7{bottom:254.106667pt;}
.y155{bottom:254.586667pt;}
.y4a{bottom:255.546667pt;}
.y137{bottom:257.306667pt;}
.yb7{bottom:261.306667pt;}
.y1c9{bottom:262.586667pt;}
.y3f{bottom:262.746667pt;}
.y11f{bottom:265.306667pt;}
.y192{bottom:265.466667pt;}
.ye5{bottom:267.706667pt;}
.y1e2{bottom:268.026667pt;}
.y154{bottom:269.946667pt;}
.y136{bottom:272.666667pt;}
.y7f{bottom:275.200000pt;}
.yb6{bottom:276.666667pt;}
.y1c8{bottom:277.946667pt;}
.y3e{bottom:278.106667pt;}
.y11e{bottom:280.666667pt;}
.y191{bottom:280.826667pt;}
.ye4{bottom:283.066667pt;}
.y153{bottom:285.306667pt;}
.y135{bottom:288.026667pt;}
.yb5{bottom:292.026667pt;}
.y1c7{bottom:293.306667pt;}
.y3d{bottom:293.466667pt;}
.y11d{bottom:296.026667pt;}
.y190{bottom:296.186667pt;}
.ye3{bottom:298.426667pt;}
.y152{bottom:300.666667pt;}
.y78{bottom:302.586667pt;}
.y134{bottom:303.386667pt;}
.yb4{bottom:307.386667pt;}
.y3c{bottom:308.026667pt;}
.y1c6{bottom:308.666667pt;}
.y77{bottom:308.826667pt;}
.y11c{bottom:311.386667pt;}
.y18f{bottom:311.546667pt;}
.ye2{bottom:313.786667pt;}
.y151{bottom:315.866667pt;}
.y133{bottom:318.746667pt;}
.y3b{bottom:319.866667pt;}
.yb3{bottom:322.746667pt;}
.y1c5{bottom:323.866667pt;}
.y11b{bottom:326.746667pt;}
.y18e{bottom:326.906667pt;}
.ye1{bottom:329.146667pt;}
.y150{bottom:331.226667pt;}
.y7d{bottom:331.680000pt;}
.y3a{bottom:332.186667pt;}
.y132{bottom:334.106667pt;}
.y1e0{bottom:336.986667pt;}
.yb2{bottom:338.106667pt;}
.y1c4{bottom:339.226667pt;}
.y11a{bottom:342.106667pt;}
.y18d{bottom:342.266667pt;}
.y39{bottom:344.346667pt;}
.ye0{bottom:344.506667pt;}
.y14f{bottom:346.586667pt;}
.y131{bottom:349.306667pt;}
.y1df{bottom:352.186667pt;}
.yb1{bottom:353.306667pt;}
.y1c3{bottom:354.586667pt;}
.y38{bottom:356.666667pt;}
.y119{bottom:357.306667pt;}
.y18c{bottom:357.466667pt;}
.ydf{bottom:359.706667pt;}
.y1de{bottom:360.986667pt;}
.y14e{bottom:361.946667pt;}
.y130{bottom:364.666667pt;}
.yb0{bottom:368.666667pt;}
.y37{bottom:368.986667pt;}
.y1c2{bottom:369.946667pt;}
.y118{bottom:372.666667pt;}
.y18b{bottom:372.826667pt;}
.yde{bottom:375.066667pt;}
.y1dd{bottom:375.226667pt;}
.y7b{bottom:376.480000pt;}
.y12f{bottom:380.066667pt;}
.y36{bottom:381.186667pt;}
.yaf{bottom:384.066667pt;}
.y1c1{bottom:385.346667pt;}
.y117{bottom:388.066667pt;}
.y18a{bottom:388.226667pt;}
.ydd{bottom:390.466667pt;}
.y1dc{bottom:390.626667pt;}
.y35{bottom:393.506667pt;}
.y12e{bottom:395.426667pt;}
.yae{bottom:399.426667pt;}
.y1c0{bottom:400.546667pt;}
.y116{bottom:403.426667pt;}
.y189{bottom:403.586667pt;}
.y34{bottom:405.826667pt;}
.y1db{bottom:405.986667pt;}
.y14d{bottom:410.466667pt;}
.y12d{bottom:410.786667pt;}
.yad{bottom:414.786667pt;}
.y1bf{bottom:415.906667pt;}
.y33{bottom:417.986667pt;}
.y115{bottom:418.786667pt;}
.y188{bottom:418.946667pt;}
.ydc{bottom:421.186667pt;}
.y1da{bottom:421.346667pt;}
.y12c{bottom:425.986667pt;}
.y79{bottom:429.120000pt;}
.yac{bottom:429.986667pt;}
.y32{bottom:430.306667pt;}
.y114{bottom:433.986667pt;}
.y187{bottom:434.146667pt;}
.ydb{bottom:436.386667pt;}
.y1d9{bottom:436.546667pt;}
.y12b{bottom:441.346667pt;}
.y31{bottom:442.626667pt;}
.yab{bottom:445.346667pt;}
.y113{bottom:449.346667pt;}
.y186{bottom:449.506667pt;}
.yda{bottom:451.746667pt;}
.y1d8{bottom:451.906667pt;}
.y30{bottom:454.786667pt;}
.y14c{bottom:459.106667pt;}
.yaa{bottom:460.706667pt;}
.y1be{bottom:464.546667pt;}
.y112{bottom:464.706667pt;}
.y185{bottom:464.866667pt;}
.y2f{bottom:467.106667pt;}
.y1d7{bottom:467.266667pt;}
.y74{bottom:474.466667pt;}
.ya9{bottom:476.066667pt;}
.y2e{bottom:479.426667pt;}
.y111{bottom:480.066667pt;}
.y184{bottom:480.226667pt;}
.yd9{bottom:482.466667pt;}
.y1d6{bottom:482.626667pt;}
.y73{bottom:489.826667pt;}
.ya8{bottom:491.426667pt;}
.y2d{bottom:491.586667pt;}
.y110{bottom:495.426667pt;}
.y183{bottom:495.586667pt;}
.yd8{bottom:497.826667pt;}
.y1d5{bottom:497.986667pt;}
.y2c{bottom:503.906667pt;}
.y72{bottom:505.186667pt;}
.ya7{bottom:506.786667pt;}
.y10f{bottom:510.786667pt;}
.y182{bottom:510.946667pt;}
.yd7{bottom:513.186667pt;}
.y1bd{bottom:513.346667pt;}
.y2b{bottom:516.226667pt;}
.y71{bottom:520.386667pt;}
.ya6{bottom:521.986667pt;}
.y10e{bottom:525.986667pt;}
.y181{bottom:526.146667pt;}
.y2a{bottom:528.386667pt;}
.y1bc{bottom:528.546667pt;}
.y70{bottom:535.746667pt;}
.ya5{bottom:537.346667pt;}
.y29{bottom:540.706667pt;}
.y10d{bottom:541.346667pt;}
.y180{bottom:541.506667pt;}
.yd6{bottom:543.746667pt;}
.y1bb{bottom:543.906667pt;}
.y6f{bottom:551.106667pt;}
.ya4{bottom:552.706667pt;}
.y28{bottom:553.026667pt;}
.y10c{bottom:556.706667pt;}
.y17f{bottom:556.866667pt;}
.yd5{bottom:559.106667pt;}
.y1ba{bottom:559.266667pt;}
.y27{bottom:565.186667pt;}
.y6e{bottom:566.466667pt;}
.ya3{bottom:568.066667pt;}
.y10b{bottom:572.066667pt;}
.y17e{bottom:572.226667pt;}
.yd4{bottom:574.466667pt;}
.y1b9{bottom:574.626667pt;}
.y26{bottom:577.506667pt;}
.y6d{bottom:581.826667pt;}
.ya2{bottom:583.426667pt;}
.y10a{bottom:587.426667pt;}
.y17d{bottom:587.586667pt;}
.y25{bottom:589.826667pt;}
.y1b8{bottom:589.986667pt;}
.y6c{bottom:597.213333pt;}
.ya1{bottom:598.813333pt;}
.y24{bottom:602.173333pt;}
.y109{bottom:602.813333pt;}
.y17c{bottom:602.973333pt;}
.yd3{bottom:605.213333pt;}
.y1b7{bottom:605.373333pt;}
.y6b{bottom:612.413333pt;}
.ya0{bottom:614.013333pt;}
.y23{bottom:616.573333pt;}
.y108{bottom:618.013333pt;}
.y17b{bottom:618.173333pt;}
.yd2{bottom:620.413333pt;}
.y1b6{bottom:620.573333pt;}
.y6a{bottom:627.773333pt;}
.y22{bottom:628.093333pt;}
.y9f{bottom:629.373333pt;}
.y107{bottom:633.373333pt;}
.y17a{bottom:633.533333pt;}
.yd1{bottom:635.773333pt;}
.y1b5{bottom:635.933333pt;}
.y69{bottom:643.133333pt;}
.y21{bottom:643.293333pt;}
.y9e{bottom:644.733333pt;}
.y106{bottom:648.733333pt;}
.y179{bottom:648.893333pt;}
.yd0{bottom:651.133333pt;}
.y1b4{bottom:651.293333pt;}
.y20{bottom:655.133333pt;}
.y68{bottom:658.493333pt;}
.y9d{bottom:660.093333pt;}
.y105{bottom:664.093333pt;}
.y178{bottom:664.253333pt;}
.ycf{bottom:666.493333pt;}
.y1b3{bottom:666.653333pt;}
.y67{bottom:673.853333pt;}
.y9c{bottom:675.453333pt;}
.y104{bottom:679.453333pt;}
.y177{bottom:679.613333pt;}
.yce{bottom:681.853333pt;}
.y1b2{bottom:682.013333pt;}
.y66{bottom:689.213333pt;}
.y9b{bottom:690.813333pt;}
.y103{bottom:694.813333pt;}
.y176{bottom:694.973333pt;}
.ycd{bottom:697.213333pt;}
.y1b1{bottom:697.373333pt;}
.y65{bottom:704.413333pt;}
.y9a{bottom:706.013333pt;}
.y102{bottom:710.013333pt;}
.y175{bottom:710.173333pt;}
.ycc{bottom:712.413333pt;}
.y1b0{bottom:712.573333pt;}
.y1b{bottom:716.413333pt;}
.y64{bottom:719.773333pt;}
.y99{bottom:721.373333pt;}
.y101{bottom:725.373333pt;}
.y174{bottom:725.533333pt;}
.ycb{bottom:727.773333pt;}
.y1af{bottom:727.933333pt;}
.y63{bottom:735.133333pt;}
.y98{bottom:736.733333pt;}
.y100{bottom:740.733333pt;}
.y173{bottom:740.893333pt;}
.yca{bottom:743.133333pt;}
.y1ae{bottom:743.293333pt;}
.y62{bottom:750.493333pt;}
.y97{bottom:752.093333pt;}
.yff{bottom:756.093333pt;}
.y172{bottom:756.253333pt;}
.yc9{bottom:758.493333pt;}
.y1ad{bottom:758.653333pt;}
.y61{bottom:765.853333pt;}
.y96{bottom:767.453333pt;}
.yfe{bottom:771.453333pt;}
.y171{bottom:771.613333pt;}
.yc8{bottom:773.853333pt;}
.y1ac{bottom:774.013333pt;}
.y60{bottom:781.053333pt;}
.y95{bottom:782.653333pt;}
.yfd{bottom:786.653333pt;}
.y170{bottom:786.813333pt;}
.yc7{bottom:789.053333pt;}
.y1ab{bottom:789.213333pt;}
.y14{bottom:790.013333pt;}
.y5f{bottom:796.413333pt;}
.y94{bottom:798.013333pt;}
.yfc{bottom:802.013333pt;}
.y16f{bottom:802.173333pt;}
.yc6{bottom:804.413333pt;}
.y1aa{bottom:804.573333pt;}
.y5e{bottom:811.813333pt;}
.y93{bottom:813.413333pt;}
.yfb{bottom:817.413333pt;}
.y16e{bottom:817.573333pt;}
.yc5{bottom:819.813333pt;}
.y1a9{bottom:819.973333pt;}
.y5d{bottom:827.173333pt;}
.y92{bottom:828.773333pt;}
.yfa{bottom:832.773333pt;}
.y16d{bottom:832.933333pt;}
.yc4{bottom:835.173333pt;}
.y1a8{bottom:835.333333pt;}
.y14b{bottom:842.533333pt;}
.y91{bottom:844.133333pt;}
.y5c{bottom:846.533333pt;}
.yf9{bottom:848.133333pt;}
.y16c{bottom:848.293333pt;}
.yc3{bottom:850.533333pt;}
.y1a7{bottom:850.693333pt;}
.y14a{bottom:857.893333pt;}
.y90{bottom:859.493333pt;}
.yf8{bottom:863.493333pt;}
.y16b{bottom:863.653333pt;}
.y5b{bottom:865.893333pt;}
.y1a6{bottom:866.053333pt;}
.y13{bottom:866.533333pt;}
.y149{bottom:873.093333pt;}
.y8f{bottom:874.693333pt;}
.yf7{bottom:878.693333pt;}
.y16a{bottom:878.853333pt;}
.y5a{bottom:881.093333pt;}
.y1a5{bottom:881.253333pt;}
.y12{bottom:882.533333pt;}
.y148{bottom:888.453333pt;}
.y8e{bottom:890.053333pt;}
.yf6{bottom:894.053333pt;}
.y169{bottom:894.213333pt;}
.y59{bottom:896.453333pt;}
.y1a4{bottom:896.613333pt;}
.y11{bottom:900.933333pt;}
.y147{bottom:903.813333pt;}
.y8d{bottom:905.413333pt;}
.yf5{bottom:909.413333pt;}
.y168{bottom:909.573333pt;}
.y58{bottom:911.813333pt;}
.y1a3{bottom:911.973333pt;}
.y146{bottom:919.173333pt;}
.y10{bottom:919.333333pt;}
.y8c{bottom:920.773333pt;}
.yf4{bottom:924.773333pt;}
.y167{bottom:924.933333pt;}
.y57{bottom:927.173333pt;}
.y1a2{bottom:927.333333pt;}
.y145{bottom:934.533333pt;}
.y8b{bottom:936.133333pt;}
.yf{bottom:937.733333pt;}
.yf3{bottom:940.133333pt;}
.y166{bottom:940.293333pt;}
.y56{bottom:942.533333pt;}
.y1a1{bottom:942.693333pt;}
.y144{bottom:949.893333pt;}
.y8a{bottom:951.493333pt;}
.yf2{bottom:955.493333pt;}
.y165{bottom:955.653333pt;}
.y55{bottom:957.893333pt;}
.y1a0{bottom:958.053333pt;}
.y89{bottom:966.693333pt;}
.y143{bottom:969.093333pt;}
.yf1{bottom:970.693333pt;}
.y164{bottom:970.853333pt;}
.y54{bottom:973.093333pt;}
.ye{bottom:973.253333pt;}
.y88{bottom:982.053333pt;}
.yd{bottom:986.053333pt;}
.y163{bottom:986.213333pt;}
.y53{bottom:988.453333pt;}
.y19f{bottom:988.613333pt;}
.y87{bottom:997.413333pt;}
.yc{bottom:1001.413333pt;}
.y162{bottom:1001.573333pt;}
.y52{bottom:1003.813333pt;}
.y19e{bottom:1003.973333pt;}
.y86{bottom:1012.773333pt;}
.yb{bottom:1016.773333pt;}
.y161{bottom:1016.933333pt;}
.y51{bottom:1019.173333pt;}
.y19d{bottom:1019.333333pt;}
.y85{bottom:1032.000000pt;}
.ya{bottom:1032.160000pt;}
.y160{bottom:1032.320000pt;}
.y50{bottom:1034.560000pt;}
.y19c{bottom:1034.720000pt;}
.y5{bottom:1046.720000pt;}
.y4f{bottom:1056.000000pt;}
.y1{bottom:1057.440000pt;}
.y4c{bottom:1066.720000pt;}
.h29{height:5.025000pt;}
.h23{height:13.760000pt;}
.h26{height:13.920000pt;}
.h1f{height:14.400000pt;}
.h6{height:15.914062pt;}
.h20{height:16.960000pt;}
.h1c{height:17.920000pt;}
.h18{height:18.080000pt;}
.h7{height:19.200000pt;}
.h1d{height:20.160000pt;}
.h3{height:24.187500pt;}
.h4{height:24.203125pt;}
.h22{height:26.381250pt;}
.h2{height:27.360000pt;}
.h19{height:28.075625pt;}
.h27{height:30.720000pt;}
.h13{height:36.413125pt;}
.h15{height:36.431250pt;}
.h14{height:37.729375pt;}
.he{height:42.063437pt;}
.h5{height:42.084375pt;}
.h28{height:43.215000pt;}
.h8{height:44.505000pt;}
.h1b{height:46.739375pt;}
.h24{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h1e{height:47.235000pt;}
.h11{height:49.621875pt;}
.h12{height:52.108438pt;}
.ha{height:52.134375pt;}
.hc{height:53.535000pt;}
.h21{height:54.598989pt;}
.h16{height:58.240000pt;}
.h9{height:58.563750pt;}
.h10{height:61.280000pt;}
.hb{height:64.500000pt;}
.h25{height:68.960000pt;}
.hf{height:73.600000pt;}
.hd{height:73.632000pt;}
.h17{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.880000pt;}
.w9{width:55.040000pt;}
.w13{width:75.520000pt;}
.wb{width:139.866667pt;}
.w7{width:201.306667pt;}
.w8{width:201.466667pt;}
.wc{width:224.986667pt;}
.w10{width:237.600000pt;}
.wf{width:238.720000pt;}
.w11{width:239.680000pt;}
.wa{width:239.866667pt;}
.we{width:241.600000pt;}
.w2{width:255.226667pt;}
.w4{width:334.786667pt;}
.w14{width:529.373333pt;}
.w6{width:604.733333pt;}
.w12{width:606.653333pt;}
.wd{width:614.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:1.760000pt;}
.x27{left:4.320000pt;}
.x2{left:7.200000pt;}
.x4{left:8.320000pt;}
.x20{left:10.560000pt;}
.xf{left:26.240000pt;}
.x29{left:32.160000pt;}
.x15{left:36.160000pt;}
.x10{left:38.080000pt;}
.x32{left:39.106667pt;}
.x2b{left:44.480000pt;}
.x22{left:47.360000pt;}
.x36{left:48.954667pt;}
.x1b{left:58.074667pt;}
.x11{left:59.194667pt;}
.x31{left:60.866667pt;}
.x38{left:66.074667pt;}
.x6{left:68.346667pt;}
.x1a{left:72.800000pt;}
.x30{left:75.906667pt;}
.x12{left:84.474667pt;}
.x26{left:89.152000pt;}
.x1e{left:91.034667pt;}
.x1{left:92.512000pt;}
.x8{left:94.591988pt;}
.x16{left:96.640000pt;}
.x1c{left:99.514667pt;}
.x17{left:100.640000pt;}
.x1d{left:101.600000pt;}
.x25{left:113.471988pt;}
.x19{left:119.240000pt;}
.x1f{left:121.760000pt;}
.x21{left:131.560000pt;}
.xe{left:137.434667pt;}
.xc{left:139.066655pt;}
.x35{left:142.106655pt;}
.x24{left:144.826655pt;}
.x39{left:177.306667pt;}
.x13{left:194.114667pt;}
.x2f{left:274.880000pt;}
.x2e{left:283.586655pt;}
.xd{left:289.986655pt;}
.x33{left:293.474667pt;}
.x9{left:294.434667pt;}
.x14{left:295.906667pt;}
.x2c{left:299.554667pt;}
.x2d{left:306.306655pt;}
.xa{left:312.066655pt;}
.x28{left:334.466667pt;}
.x3{left:347.746667pt;}
.x5{left:366.626667pt;}
.x34{left:372.066655pt;}
.xb{left:396.866655pt;}
.x2a{left:474.333333pt;}
.x18{left:497.213333pt;}
.x23{left:587.773322pt;}
.x7{left:699.333322pt;}
}




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