
    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_81efa64bfc10e64849d62a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_6430124a6434d865e5b43e29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_60e61bdcf6a6ae17b3cff2a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061083;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_c0dfeeb25ae22d075de44f85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_96b464be9145b5c9542df056.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_19ee9417a345e7056aa112b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_55ab1a8db9ab2a1e5a29d9d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_be9e41ab87dcee2fa49622d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061083;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls45{letter-spacing:-6.420000px;}
.ls44{letter-spacing:-1.542000px;}
.ls25{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.648000px;}
.ls46{letter-spacing:-0.582000px;}
.ls37{letter-spacing:-0.490800px;}
.ls15{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.351600px;}
.ls42{letter-spacing:-0.348600px;}
.ls31{letter-spacing:-0.313800px;}
.ls14{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.238800px;}
.ls43{letter-spacing:-0.234600px;}
.ls26{letter-spacing:-0.230400px;}
.ls18{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.100800px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.ls13{letter-spacing:0.010080px;}
.ls1b{letter-spacing:0.040320px;}
.ls8{letter-spacing:0.046800px;}
.ls21{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.066960px;}
.lsf{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.129600px;}
.ls1c{letter-spacing:0.138240px;}
.ls10{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.155400px;}
.ls36{letter-spacing:0.177600px;}
.ls1e{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls2f{letter-spacing:0.229200px;}
.ls1d{letter-spacing:0.259200px;}
.ls11{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.ls4a{letter-spacing:0.356400px;}
.ls12{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.371520px;}
.ls32{letter-spacing:0.406200px;}
.ls48{letter-spacing:0.410400px;}
.ls17{letter-spacing:0.485280px;}
.ls27{letter-spacing:0.489600px;}
.ls16{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.786000px;}
.ls30{letter-spacing:0.876000px;}
.ls20{letter-spacing:0.897600px;}
.ls34{letter-spacing:0.948000px;}
.ls47{letter-spacing:1.130400px;}
.ls1f{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.850400px;}
.ls40{letter-spacing:2.388000px;}
.ls22{letter-spacing:2.880000px;}
.ls19{letter-spacing:4.320000px;}
.ls3f{letter-spacing:6.170400px;}
.ls28{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.920000px;}
.ls2a{letter-spacing:8.640000px;}
.ls33{letter-spacing:14.400000px;}
.ls2c{letter-spacing:18.720000px;}
.ls3d{letter-spacing:24.170400px;}
.ls3a{letter-spacing:25.610400px;}
.ls39{letter-spacing:26.330400px;}
.ls3b{letter-spacing:27.050400px;}
.ls2d{letter-spacing:28.080000px;}
.ls38{letter-spacing:28.490400px;}
.ls3c{letter-spacing:33.530400px;}
.ls23{letter-spacing:56.880000px;}
.lsc{letter-spacing:64.800000px;}
.ls0{letter-spacing:520.020000px;}
.ls2e{letter-spacing:844.284000px;}
.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;}
}
.ws2{word-spacing:-15.785280px;}
.ws12{word-spacing:-15.480000px;}
.ws10{word-spacing:-15.408000px;}
.wsc{word-spacing:-15.336000px;}
.wsf{word-spacing:-15.264000px;}
.wsb{word-spacing:-15.192000px;}
.wse{word-spacing:-15.120003px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.976000px;}
.ws22{word-spacing:-14.937600px;}
.ws13{word-spacing:-14.904000px;}
.ws11{word-spacing:-14.832000px;}
.ws1e{word-spacing:-14.760000px;}
.ws1f{word-spacing:-14.688000px;}
.ws9{word-spacing:-14.616003px;}
.ws0{word-spacing:-14.616000px;}
.wsa{word-spacing:-14.544000px;}
.ws1d{word-spacing:-13.497600px;}
.ws4{word-spacing:-13.335600px;}
.ws2b{word-spacing:-12.906000px;}
.ws19{word-spacing:-12.778800px;}
.ws21{word-spacing:-12.679200px;}
.ws6{word-spacing:-12.596400px;}
.ws25{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.ws23{word-spacing:-12.448800px;}
.ws26{word-spacing:-12.315000px;}
.ws24{word-spacing:-12.201000px;}
.ws2a{word-spacing:-12.198000px;}
.ws7{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws20{word-spacing:-12.058800px;}
.ws29{word-spacing:-11.967600px;}
.ws27{word-spacing:-11.007600px;}
.ws1a{word-spacing:-9.645600px;}
.ws17{word-spacing:-9.259200px;}
.ws1c{word-spacing:-9.175800px;}
.ws18{word-spacing:-8.925000px;}
.ws14{word-spacing:-8.769600px;}
.ws16{word-spacing:-8.539200px;}
.ws15{word-spacing:-8.530800px;}
.ws1b{word-spacing:-8.455800px;}
.ws28{word-spacing:-6.129600px;}
.ws8{word-spacing:0.000000px;}
._26{margin-left:-64.515840px;}
._45{margin-left:-8.002080px;}
._5{margin-left:-6.660000px;}
._8{margin-left:-5.566080px;}
._9{margin-left:-3.732480px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._4{width:1.704000px;}
._b{width:2.715840px;}
._10{width:3.804480px;}
._1c{width:5.616000px;}
._13{width:6.840000px;}
._14{width:7.872000px;}
._1b{width:9.408000px;}
._e{width:11.232000px;}
._2d{width:12.384000px;}
._d{width:13.440000px;}
._42{width:14.529120px;}
._11{width:16.344000px;}
._12{width:17.496000px;}
._29{width:18.768000px;}
._28{width:20.088000px;}
._27{width:21.672000px;}
._16{width:23.472000px;}
._15{width:24.696000px;}
._19{width:26.640000px;}
._1a{width:28.272000px;}
._25{width:29.496000px;}
._37{width:31.296000px;}
._36{width:32.400000px;}
._20{width:33.912000px;}
._1d{width:34.992000px;}
._c{width:36.288000px;}
._f{width:37.584000px;}
._3f{width:38.736000px;}
._3e{width:39.744000px;}
._2b{width:41.352000px;}
._2a{width:42.600000px;}
._2c{width:43.920000px;}
._17{width:45.576000px;}
._18{width:46.728000px;}
._38{width:47.988000px;}
._33{width:49.608000px;}
._39{width:51.048000px;}
._32{width:52.992000px;}
._31{width:54.552000px;}
._2f{width:55.800000px;}
._21{width:57.528000px;}
._1f{width:58.704000px;}
._1e{width:59.832000px;}
._23{width:62.712000px;}
._24{width:63.720000px;}
._22{width:64.824000px;}
._30{width:71.496000px;}
._3c{width:83.160000px;}
._34{width:88.200000px;}
._35{width:89.208000px;}
._43{width:99.201600px;}
._2{width:475.164000px;}
._6{width:552.120480px;}
._3{width:1299.180000px;}
._41{width:1451.510400px;}
._44{width:1453.670400px;}
._3a{width:1456.550400px;}
._3d{width:1457.990400px;}
._40{width:1460.150400px;}
._3b{width:1463.750400px;}
._2e{width:1484.630400px;}
._a{width:1486.070400px;}
._7{width:1491.110400px;}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:4.500000px;}
.y9b{bottom:5.394000px;}
.y95{bottom:5.400000px;}
.y158{bottom:5.445000px;}
.y17{bottom:5.760000px;}
.ybb{bottom:6.480000px;}
.ybd{bottom:7.200000px;}
.y9e{bottom:7.920000px;}
.yaf{bottom:8.460000px;}
.yb0{bottom:9.180000px;}
.y11d{bottom:9.360000px;}
.y39{bottom:22.500000px;}
.y97{bottom:27.000000px;}
.y16{bottom:27.900000px;}
.ye{bottom:34.740000px;}
.y38{bottom:40.494000px;}
.y15{bottom:46.800000px;}
.yd{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y37{bottom:58.494000px;}
.y14{bottom:68.400000px;}
.yc{bottom:74.340000px;}
.y36{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.y13{bottom:90.405000px;}
.y35{bottom:95.394000px;}
.yb{bottom:95.940000px;}
.y162{bottom:108.036000px;}
.yc6{bottom:113.256000px;}
.y12{bottom:113.805000px;}
.ye4{bottom:114.156000px;}
.y34{bottom:116.994000px;}
.ya{bottom:117.900000px;}
.y9c{bottom:124.236000px;}
.y18{bottom:124.956000px;}
.y172{bottom:127.116000px;}
.y161{bottom:130.356000px;}
.y115{bottom:132.336000px;}
.y1a7{bottom:135.036000px;}
.yc5{bottom:135.576000px;}
.ye3{bottom:136.476000px;}
.y11{bottom:137.205000px;}
.y33{bottom:138.594000px;}
.y10{bottom:138.645000px;}
.y9{bottom:141.300000px;}
.y141{bottom:142.956000px;}
.y112{bottom:145.656000px;}
.y9a{bottom:146.556000px;}
.y171{bottom:148.716000px;}
.y160{bottom:152.670000px;}
.y1a6{bottom:153.030000px;}
.y114{bottom:153.930000px;}
.yc4{bottom:157.890000px;}
.ye2{bottom:158.790000px;}
.y32{bottom:160.194000px;}
.y8{bottom:164.700000px;}
.y140{bottom:165.270000px;}
.y111{bottom:167.250000px;}
.y99{bottom:168.870000px;}
.y170{bottom:170.310000px;}
.y1a5{bottom:171.030000px;}
.y67{bottom:171.930000px;}
.y15f{bottom:174.990000px;}
.y113{bottom:175.530000px;}
.yc3{bottom:180.210000px;}
.ye1{bottom:181.290000px;}
.y31{bottom:181.794000px;}
.y13f{bottom:187.590000px;}
.y110{bottom:188.850000px;}
.y1a4{bottom:189.030000px;}
.y98{bottom:191.190000px;}
.y16f{bottom:191.910000px;}
.y66{bottom:193.530000px;}
.y93{bottom:197.130000px;}
.y15e{bottom:197.310000px;}
.yc2{bottom:202.530000px;}
.y30{bottom:203.394000px;}
.ye0{bottom:203.610000px;}
.y1a3{bottom:207.030000px;}
.y13e{bottom:209.910000px;}
.y10f{bottom:210.450000px;}
.y11b{bottom:210.630000px;}
.y16e{bottom:213.510000px;}
.y96{bottom:213.690000px;}
.y65{bottom:215.130000px;}
.y92{bottom:218.730000px;}
.y15d{bottom:219.630000px;}
.yc1{bottom:225.030000px;}
.y2f{bottom:225.039000px;}
.ydf{bottom:225.930000px;}
.y10e{bottom:227.370000px;}
.y1d9{bottom:228.630000px;}
.y13d{bottom:232.230000px;}
.y11a{bottom:232.950000px;}
.y16d{bottom:235.110000px;}
.y64{bottom:236.730000px;}
.y91{bottom:240.330000px;}
.y15c{bottom:242.130000px;}
.y1a2{bottom:243.030000px;}
.y1d8{bottom:246.630000px;}
.y2e{bottom:246.639000px;}
.yc0{bottom:247.350000px;}
.yde{bottom:248.250000px;}
.y10d{bottom:249.690000px;}
.y13c{bottom:254.730000px;}
.y119{bottom:255.270000px;}
.y16c{bottom:256.710000px;}
.y94{bottom:257.610000px;}
.y63{bottom:258.330000px;}
.y1a1{bottom:261.030000px;}
.y90{bottom:261.930000px;}
.y15b{bottom:264.450000px;}
.y1d7{bottom:264.630000px;}
.y173{bottom:267.870000px;}
.y2d{bottom:268.239000px;}
.ybf{bottom:269.670000px;}
.ydd{bottom:270.570000px;}
.y10c{bottom:272.190000px;}
.y13b{bottom:277.050000px;}
.y118{bottom:277.590000px;}
.y16b{bottom:278.310000px;}
.y1a0{bottom:279.030000px;}
.y62{bottom:279.930000px;}
.y1d6{bottom:282.630000px;}
.y8f{bottom:283.530000px;}
.y15a{bottom:286.770000px;}
.y2c{bottom:289.839000px;}
.ybe{bottom:291.990000px;}
.y10b{bottom:294.510000px;}
.y19f{bottom:297.030000px;}
.ydc{bottom:298.290000px;}
.y13a{bottom:299.370000px;}
.y16a{bottom:299.910000px;}
.y117{bottom:300.090000px;}
.y1d5{bottom:300.630000px;}
.y61{bottom:301.530000px;}
.y8e{bottom:305.130000px;}
.y159{bottom:309.090000px;}
.y2b{bottom:311.439000px;}
.ybc{bottom:314.310000px;}
.y19e{bottom:315.030000px;}
.y10a{bottom:316.830000px;}
.y1d4{bottom:318.630000px;}
.ydb{bottom:319.890000px;}
.y169{bottom:321.510000px;}
.y139{bottom:321.690000px;}
.y60{bottom:323.130000px;}
.y8d{bottom:326.730000px;}
.y157{bottom:331.410000px;}
.y19d{bottom:333.030000px;}
.y2a{bottom:333.039000px;}
.y1d3{bottom:336.675000px;}
.yba{bottom:338.475000px;}
.y109{bottom:339.195000px;}
.yda{bottom:341.535000px;}
.y168{bottom:343.155000px;}
.y116{bottom:344.055000px;}
.y5f{bottom:344.775000px;}
.y8c{bottom:348.375000px;}
.y19c{bottom:351.075000px;}
.y29{bottom:354.639000px;}
.y1d2{bottom:354.675000px;}
.y156{bottom:359.175000px;}
.y167{bottom:360.075000px;}
.yd9{bottom:363.135000px;}
.y5e{bottom:366.375000px;}
.y108{bottom:366.915000px;}
.yb9{bottom:367.275000px;}
.y19b{bottom:369.075000px;}
.y8b{bottom:369.975000px;}
.y1d1{bottom:372.675000px;}
.y28{bottom:376.239000px;}
.y155{bottom:380.775000px;}
.y166{bottom:382.395000px;}
.yd8{bottom:384.735000px;}
.y19a{bottom:387.075000px;}
.y5d{bottom:387.975000px;}
.y107{bottom:388.515000px;}
.yb8{bottom:388.875000px;}
.y1d0{bottom:390.675000px;}
.y8a{bottom:391.575000px;}
.y138{bottom:394.275000px;}
.y27{bottom:397.839000px;}
.y154{bottom:402.375000px;}
.y165{bottom:404.715000px;}
.y199{bottom:405.075000px;}
.yd7{bottom:406.335000px;}
.y1cf{bottom:408.675000px;}
.y5c{bottom:409.575000px;}
.y106{bottom:410.115000px;}
.yb7{bottom:410.475000px;}
.y89{bottom:413.175000px;}
.y137{bottom:415.875000px;}
.y26{bottom:419.439000px;}
.y198{bottom:423.075000px;}
.y153{bottom:423.975000px;}
.y1ce{bottom:426.675000px;}
.y164{bottom:427.035000px;}
.yd6{bottom:427.935000px;}
.y5b{bottom:431.175000px;}
.y105{bottom:431.715000px;}
.yb6{bottom:432.075000px;}
.y88{bottom:434.775000px;}
.y136{bottom:437.475000px;}
.y25{bottom:440.139000px;}
.y197{bottom:441.075000px;}
.y1cd{bottom:444.675000px;}
.y152{bottom:445.575000px;}
.yb5{bottom:449.175000px;}
.yd5{bottom:449.535000px;}
.y5a{bottom:452.775000px;}
.y104{bottom:453.315000px;}
.y87{bottom:456.375000px;}
.y24{bottom:458.139000px;}
.y135{bottom:459.075000px;}
.y1cc{bottom:462.675000px;}
.y151{bottom:467.175000px;}
.yd4{bottom:471.135000px;}
.yb4{bottom:471.495000px;}
.y163{bottom:471.855000px;}
.y59{bottom:474.375000px;}
.y103{bottom:474.915000px;}
.y134{bottom:475.995000px;}
.y23{bottom:476.139000px;}
.y196{bottom:477.075000px;}
.y86{bottom:477.975000px;}
.y1cb{bottom:480.675000px;}
.y150{bottom:488.775000px;}
.yd3{bottom:492.735000px;}
.yb3{bottom:493.815000px;}
.y22{bottom:494.169000px;}
.y195{bottom:495.075000px;}
.y58{bottom:495.975000px;}
.y102{bottom:496.515000px;}
.y133{bottom:498.315000px;}
.y1ca{bottom:498.675000px;}
.y85{bottom:499.575000px;}
.y14f{bottom:510.375000px;}
.y21{bottom:512.169000px;}
.y194{bottom:513.075000px;}
.yd2{bottom:514.335000px;}
.yb2{bottom:516.135000px;}
.y1c9{bottom:516.675000px;}
.y57{bottom:517.575000px;}
.y101{bottom:518.115000px;}
.y132{bottom:520.635000px;}
.y84{bottom:521.175000px;}
.y20{bottom:530.169000px;}
.y193{bottom:531.075000px;}
.y14e{bottom:531.975000px;}
.y1c8{bottom:534.675000px;}
.yd1{bottom:535.935000px;}
.yb1{bottom:538.455000px;}
.y56{bottom:539.175000px;}
.y100{bottom:539.715000px;}
.y83{bottom:542.775000px;}
.y131{bottom:542.955000px;}
.y1f{bottom:548.169000px;}
.y192{bottom:549.075000px;}
.y1c7{bottom:552.675000px;}
.y14d{bottom:553.575000px;}
.yd0{bottom:557.535000px;}
.y55{bottom:560.775000px;}
.yff{bottom:561.315000px;}
.y82{bottom:564.375000px;}
.y130{bottom:565.275000px;}
.y1e{bottom:566.169000px;}
.y191{bottom:567.075000px;}
.y1c6{bottom:570.675000px;}
.y14c{bottom:575.175000px;}
.ycf{bottom:579.135000px;}
.y54{bottom:582.375000px;}
.yfe{bottom:582.915000px;}
.y1d{bottom:585.069000px;}
.y190{bottom:585.075000px;}
.y81{bottom:585.975000px;}
.yae{bottom:586.875000px;}
.y12f{bottom:587.775000px;}
.y1c5{bottom:588.675000px;}
.yce{bottom:596.235000px;}
.y14b{bottom:596.775000px;}
.y18f{bottom:603.075000px;}
.y53{bottom:604.005000px;}
.yfd{bottom:604.545000px;}
.y1c{bottom:605.769000px;}
.y1c4{bottom:606.705000px;}
.y80{bottom:607.605000px;}
.y12e{bottom:610.125000px;}
.yad{bottom:617.685000px;}
.y14a{bottom:618.405000px;}
.ycd{bottom:618.585000px;}
.y18e{bottom:621.105000px;}
.y1b{bottom:623.769000px;}
.y1c3{bottom:624.705000px;}
.y52{bottom:625.605000px;}
.yfc{bottom:626.145000px;}
.y7f{bottom:629.205000px;}
.y149{bottom:635.505000px;}
.y12d{bottom:637.845000px;}
.y18d{bottom:639.105000px;}
.yac{bottom:639.285000px;}
.ycc{bottom:640.905000px;}
.y1c2{bottom:642.705000px;}
.y1a{bottom:643.029000px;}
.y19{bottom:644.469000px;}
.y51{bottom:647.205000px;}
.yfb{bottom:647.745000px;}
.y7e{bottom:650.805000px;}
.y18c{bottom:657.105000px;}
.y148{bottom:657.825000px;}
.y12c{bottom:659.445000px;}
.y1c1{bottom:660.705000px;}
.yab{bottom:660.885000px;}
.ycb{bottom:663.225000px;}
.y50{bottom:668.805000px;}
.yfa{bottom:669.345000px;}
.y7d{bottom:672.405000px;}
.y18b{bottom:675.105000px;}
.y1c0{bottom:678.705000px;}
.y147{bottom:680.145000px;}
.y12b{bottom:681.045000px;}
.yaa{bottom:682.485000px;}
.yca{bottom:685.545000px;}
.y4f{bottom:690.405000px;}
.yf9{bottom:690.945000px;}
.y18a{bottom:693.105000px;}
.y7c{bottom:694.005000px;}
.y1bf{bottom:696.705000px;}
.y146{bottom:702.465000px;}
.y12a{bottom:702.645000px;}
.ya9{bottom:704.085000px;}
.yc9{bottom:707.865000px;}
.y189{bottom:711.105000px;}
.y4e{bottom:712.005000px;}
.yf8{bottom:712.545000px;}
.y1be{bottom:714.705000px;}
.y7b{bottom:715.605000px;}
.ya8{bottom:721.005000px;}
.y129{bottom:724.245000px;}
.y145{bottom:724.785000px;}
.y188{bottom:729.105000px;}
.yc8{bottom:730.365000px;}
.y1bd{bottom:732.705000px;}
.y4d{bottom:733.605000px;}
.yf7{bottom:734.145000px;}
.y7a{bottom:737.205000px;}
.ya7{bottom:743.505000px;}
.y128{bottom:745.845000px;}
.y144{bottom:747.105000px;}
.y1bc{bottom:750.705000px;}
.yc7{bottom:752.685000px;}
.y4c{bottom:755.205000px;}
.yf6{bottom:755.745000px;}
.y79{bottom:758.805000px;}
.y127{bottom:762.765000px;}
.y187{bottom:765.105000px;}
.ya6{bottom:765.825000px;}
.y1bb{bottom:768.705000px;}
.y143{bottom:769.605000px;}
.y4b{bottom:776.805000px;}
.yf5{bottom:777.345000px;}
.y78{bottom:780.405000px;}
.y186{bottom:783.105000px;}
.y126{bottom:785.085000px;}
.yf{bottom:786.345000px;}
.y1ba{bottom:786.705000px;}
.ya5{bottom:788.145000px;}
.y142{bottom:795.885000px;}
.y4a{bottom:798.405000px;}
.yf4{bottom:798.945000px;}
.y185{bottom:801.105000px;}
.y77{bottom:802.005000px;}
.y1b9{bottom:804.705000px;}
.y125{bottom:807.405000px;}
.y174{bottom:807.945000px;}
.ya4{bottom:810.465000px;}
.y184{bottom:819.105000px;}
.y49{bottom:820.005000px;}
.yf3{bottom:820.545000px;}
.y1b8{bottom:822.705000px;}
.y76{bottom:823.605000px;}
.y124{bottom:829.905000px;}
.ya3{bottom:832.785000px;}
.y183{bottom:837.105000px;}
.y1b7{bottom:840.705000px;}
.y48{bottom:841.605000px;}
.yf2{bottom:842.145000px;}
.y75{bottom:845.205000px;}
.y123{bottom:852.225000px;}
.ya2{bottom:855.105000px;}
.y1b6{bottom:858.705000px;}
.y47{bottom:863.205000px;}
.yf1{bottom:863.745000px;}
.y74{bottom:866.805000px;}
.y182{bottom:873.150000px;}
.y122{bottom:874.590000px;}
.y1b5{bottom:876.750000px;}
.ya1{bottom:877.650000px;}
.y46{bottom:884.850000px;}
.yf0{bottom:885.390000px;}
.y73{bottom:888.450000px;}
.y181{bottom:891.150000px;}
.y1b4{bottom:894.750000px;}
.y121{bottom:896.910000px;}
.ya0{bottom:899.970000px;}
.y45{bottom:906.450000px;}
.yef{bottom:906.990000px;}
.y180{bottom:909.150000px;}
.y72{bottom:910.050000px;}
.y1b3{bottom:912.750000px;}
.y120{bottom:919.230000px;}
.y9f{bottom:922.290000px;}
.y17f{bottom:927.150000px;}
.y44{bottom:928.050000px;}
.yee{bottom:928.590000px;}
.y1b2{bottom:930.750000px;}
.y71{bottom:931.650000px;}
.y11f{bottom:941.550000px;}
.y7{bottom:941.910000px;}
.y9d{bottom:944.610000px;}
.y17e{bottom:945.150000px;}
.y1b1{bottom:948.750000px;}
.y43{bottom:949.650000px;}
.yed{bottom:950.190000px;}
.y70{bottom:953.250000px;}
.y17d{bottom:963.150000px;}
.y11e{bottom:964.050000px;}
.y1b0{bottom:966.750000px;}
.y42{bottom:971.250000px;}
.yec{bottom:971.790000px;}
.y6f{bottom:974.850000px;}
.y17c{bottom:981.150000px;}
.y1af{bottom:984.750000px;}
.y11c{bottom:986.370000px;}
.y41{bottom:992.850000px;}
.yeb{bottom:993.390000px;}
.y6e{bottom:996.450000px;}
.y17b{bottom:999.150000px;}
.y1ae{bottom:1002.750000px;}
.y40{bottom:1014.450000px;}
.yea{bottom:1014.990000px;}
.y17a{bottom:1017.150000px;}
.y6d{bottom:1018.050000px;}
.y1ad{bottom:1020.750000px;}
.y179{bottom:1035.150000px;}
.y3f{bottom:1036.050000px;}
.ye9{bottom:1036.590000px;}
.y1ac{bottom:1038.750000px;}
.y6c{bottom:1039.650000px;}
.y178{bottom:1053.150000px;}
.y1ab{bottom:1056.750000px;}
.y3e{bottom:1057.650000px;}
.ye8{bottom:1058.190000px;}
.y6b{bottom:1061.250000px;}
.y177{bottom:1071.150000px;}
.y1aa{bottom:1074.750000px;}
.ye7{bottom:1075.110000px;}
.y3d{bottom:1079.250000px;}
.y6a{bottom:1082.850000px;}
.y176{bottom:1089.150000px;}
.y1a9{bottom:1092.750000px;}
.ye6{bottom:1097.610000px;}
.y3c{bottom:1101.210000px;}
.y69{bottom:1104.450000px;}
.y175{bottom:1107.150000px;}
.y1a8{bottom:1110.750000px;}
.ye5{bottom:1119.930000px;}
.y3b{bottom:1124.610000px;}
.y68{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hc{height:21.600000px;}
.hf{height:21.636000px;}
.h12{height:22.680000px;}
.h13{height:23.436000px;}
.he{height:24.120000px;}
.h10{height:24.696000px;}
.h11{height:25.380000px;}
.h15{height:25.560000px;}
.h16{height:37.080000px;}
.hd{height:43.200000px;}
.h14{height:43.236000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h8{height:154.830000px;}
.h6{height:182.340000px;}
.h9{height:660.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:61.920000px;}
.w9{width:63.216000px;}
.w7{width:63.900000px;}
.w14{width:64.080000px;}
.w15{width:75.600000px;}
.w18{width:84.240000px;}
.wc{width:94.140000px;}
.we{width:158.220000px;}
.w11{width:158.760000px;}
.w12{width:169.410000px;}
.wf{width:172.470000px;}
.w17{width:187.590000px;}
.w3{width:202.215000px;}
.wd{width:236.550000px;}
.w19{width:243.930000px;}
.w6{width:303.915000px;}
.w16{width:360.435000px;}
.wb{width:389.805000px;}
.w10{width:392.325000px;}
.w5{width:495.285000px;}
.w13{width:508.965000px;}
.w4{width:531.615000px;}
.wa{width:721.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x13{left:106.235987px;}
.x2{left:190.290000px;}
.xe{left:192.090000px;}
.x5{left:198.930000px;}
.x3{left:287.175000px;}
.x11{left:447.015000px;}
.x9{left:476.385000px;}
.xc{left:478.905000px;}
.xf{left:496.725000px;}
.x6{left:503.565000px;}
.x10{left:561.525000px;}
.x12{left:563.865000px;}
.x7{left:568.365000px;}
.xa{left:571.245000px;}
.x8{left:631.005000px;}
.xb{left:635.325000px;}
.xd{left:638.385000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls45{letter-spacing:-5.706667pt;}
.ls44{letter-spacing:-1.370667pt;}
.ls25{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls46{letter-spacing:-0.517333pt;}
.ls37{letter-spacing:-0.436267pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.312533pt;}
.ls42{letter-spacing:-0.309867pt;}
.ls31{letter-spacing:-0.278933pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.212267pt;}
.ls43{letter-spacing:-0.208533pt;}
.ls26{letter-spacing:-0.204800pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.089600pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.ls13{letter-spacing:0.008960pt;}
.ls1b{letter-spacing:0.035840pt;}
.ls8{letter-spacing:0.041600pt;}
.ls21{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.059520pt;}
.lsf{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.115200pt;}
.ls1c{letter-spacing:0.122880pt;}
.ls10{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.138133pt;}
.ls36{letter-spacing:0.157867pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls2f{letter-spacing:0.203733pt;}
.ls1d{letter-spacing:0.230400pt;}
.ls11{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.ls4a{letter-spacing:0.316800pt;}
.ls12{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.330240pt;}
.ls32{letter-spacing:0.361067pt;}
.ls48{letter-spacing:0.364800pt;}
.ls17{letter-spacing:0.431360pt;}
.ls27{letter-spacing:0.435200pt;}
.ls16{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.698667pt;}
.ls30{letter-spacing:0.778667pt;}
.ls20{letter-spacing:0.797867pt;}
.ls34{letter-spacing:0.842667pt;}
.ls47{letter-spacing:1.004800pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.644800pt;}
.ls40{letter-spacing:2.122667pt;}
.ls22{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls3f{letter-spacing:5.484800pt;}
.ls28{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls2a{letter-spacing:7.680000pt;}
.ls33{letter-spacing:12.800000pt;}
.ls2c{letter-spacing:16.640000pt;}
.ls3d{letter-spacing:21.484800pt;}
.ls3a{letter-spacing:22.764800pt;}
.ls39{letter-spacing:23.404800pt;}
.ls3b{letter-spacing:24.044800pt;}
.ls2d{letter-spacing:24.960000pt;}
.ls38{letter-spacing:25.324800pt;}
.ls3c{letter-spacing:29.804800pt;}
.ls23{letter-spacing:50.560000pt;}
.lsc{letter-spacing:57.600000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls2e{letter-spacing:750.474667pt;}
.ws2{word-spacing:-14.031360pt;}
.ws12{word-spacing:-13.760000pt;}
.ws10{word-spacing:-13.696000pt;}
.wsc{word-spacing:-13.632000pt;}
.wsf{word-spacing:-13.568000pt;}
.wsb{word-spacing:-13.504000pt;}
.wse{word-spacing:-13.440003pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.312000pt;}
.ws22{word-spacing:-13.277867pt;}
.ws13{word-spacing:-13.248000pt;}
.ws11{word-spacing:-13.184000pt;}
.ws1e{word-spacing:-13.120000pt;}
.ws1f{word-spacing:-13.056000pt;}
.ws9{word-spacing:-12.992003pt;}
.ws0{word-spacing:-12.992000pt;}
.wsa{word-spacing:-12.928000pt;}
.ws1d{word-spacing:-11.997867pt;}
.ws4{word-spacing:-11.853867pt;}
.ws2b{word-spacing:-11.472000pt;}
.ws19{word-spacing:-11.358933pt;}
.ws21{word-spacing:-11.270400pt;}
.ws6{word-spacing:-11.196800pt;}
.ws25{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.ws23{word-spacing:-11.065600pt;}
.ws26{word-spacing:-10.946667pt;}
.ws24{word-spacing:-10.845333pt;}
.ws2a{word-spacing:-10.842667pt;}
.ws7{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws20{word-spacing:-10.718933pt;}
.ws29{word-spacing:-10.637867pt;}
.ws27{word-spacing:-9.784533pt;}
.ws1a{word-spacing:-8.573867pt;}
.ws17{word-spacing:-8.230400pt;}
.ws1c{word-spacing:-8.156267pt;}
.ws18{word-spacing:-7.933333pt;}
.ws14{word-spacing:-7.795200pt;}
.ws16{word-spacing:-7.590400pt;}
.ws15{word-spacing:-7.582933pt;}
.ws1b{word-spacing:-7.516267pt;}
.ws28{word-spacing:-5.448533pt;}
.ws8{word-spacing:0.000000pt;}
._26{margin-left:-57.347413pt;}
._45{margin-left:-7.112960pt;}
._5{margin-left:-5.920000pt;}
._8{margin-left:-4.947627pt;}
._9{margin-left:-3.317760pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._4{width:1.514667pt;}
._b{width:2.414080pt;}
._10{width:3.381760pt;}
._1c{width:4.992000pt;}
._13{width:6.080000pt;}
._14{width:6.997333pt;}
._1b{width:8.362667pt;}
._e{width:9.984000pt;}
._2d{width:11.008000pt;}
._d{width:11.946667pt;}
._42{width:12.914773pt;}
._11{width:14.528000pt;}
._12{width:15.552000pt;}
._29{width:16.682667pt;}
._28{width:17.856000pt;}
._27{width:19.264000pt;}
._16{width:20.864000pt;}
._15{width:21.952000pt;}
._19{width:23.680000pt;}
._1a{width:25.130667pt;}
._25{width:26.218667pt;}
._37{width:27.818667pt;}
._36{width:28.800000pt;}
._20{width:30.144000pt;}
._1d{width:31.104000pt;}
._c{width:32.256000pt;}
._f{width:33.408000pt;}
._3f{width:34.432000pt;}
._3e{width:35.328000pt;}
._2b{width:36.757333pt;}
._2a{width:37.866667pt;}
._2c{width:39.040000pt;}
._17{width:40.512000pt;}
._18{width:41.536000pt;}
._38{width:42.656000pt;}
._33{width:44.096000pt;}
._39{width:45.376000pt;}
._32{width:47.104000pt;}
._31{width:48.490667pt;}
._2f{width:49.600000pt;}
._21{width:51.136000pt;}
._1f{width:52.181333pt;}
._1e{width:53.184000pt;}
._23{width:55.744000pt;}
._24{width:56.640000pt;}
._22{width:57.621333pt;}
._30{width:63.552000pt;}
._3c{width:73.920000pt;}
._34{width:78.400000pt;}
._35{width:79.296000pt;}
._43{width:88.179200pt;}
._2{width:422.368000pt;}
._6{width:490.773760pt;}
._3{width:1154.826667pt;}
._41{width:1290.231467pt;}
._44{width:1292.151467pt;}
._3a{width:1294.711467pt;}
._3d{width:1295.991467pt;}
._40{width:1297.911467pt;}
._3b{width:1301.111467pt;}
._2e{width:1319.671467pt;}
._a{width:1320.951467pt;}
._7{width:1325.431467pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:4.000000pt;}
.y9b{bottom:4.794667pt;}
.y95{bottom:4.800000pt;}
.y158{bottom:4.840000pt;}
.y17{bottom:5.120000pt;}
.ybb{bottom:5.760000pt;}
.ybd{bottom:6.400000pt;}
.y9e{bottom:7.040000pt;}
.yaf{bottom:7.520000pt;}
.yb0{bottom:8.160000pt;}
.y11d{bottom:8.320000pt;}
.y39{bottom:20.000000pt;}
.y97{bottom:24.000000pt;}
.y16{bottom:24.800000pt;}
.ye{bottom:30.880000pt;}
.y38{bottom:35.994667pt;}
.y15{bottom:41.600000pt;}
.yd{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y37{bottom:51.994667pt;}
.y14{bottom:60.800000pt;}
.yc{bottom:66.080000pt;}
.y36{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.y13{bottom:80.360000pt;}
.y35{bottom:84.794667pt;}
.yb{bottom:85.280000pt;}
.y162{bottom:96.032000pt;}
.yc6{bottom:100.672000pt;}
.y12{bottom:101.160000pt;}
.ye4{bottom:101.472000pt;}
.y34{bottom:103.994667pt;}
.ya{bottom:104.800000pt;}
.y9c{bottom:110.432000pt;}
.y18{bottom:111.072000pt;}
.y172{bottom:112.992000pt;}
.y161{bottom:115.872000pt;}
.y115{bottom:117.632000pt;}
.y1a7{bottom:120.032000pt;}
.yc5{bottom:120.512000pt;}
.ye3{bottom:121.312000pt;}
.y11{bottom:121.960000pt;}
.y33{bottom:123.194667pt;}
.y10{bottom:123.240000pt;}
.y9{bottom:125.600000pt;}
.y141{bottom:127.072000pt;}
.y112{bottom:129.472000pt;}
.y9a{bottom:130.272000pt;}
.y171{bottom:132.192000pt;}
.y160{bottom:135.706667pt;}
.y1a6{bottom:136.026667pt;}
.y114{bottom:136.826667pt;}
.yc4{bottom:140.346667pt;}
.ye2{bottom:141.146667pt;}
.y32{bottom:142.394667pt;}
.y8{bottom:146.400000pt;}
.y140{bottom:146.906667pt;}
.y111{bottom:148.666667pt;}
.y99{bottom:150.106667pt;}
.y170{bottom:151.386667pt;}
.y1a5{bottom:152.026667pt;}
.y67{bottom:152.826667pt;}
.y15f{bottom:155.546667pt;}
.y113{bottom:156.026667pt;}
.yc3{bottom:160.186667pt;}
.ye1{bottom:161.146667pt;}
.y31{bottom:161.594667pt;}
.y13f{bottom:166.746667pt;}
.y110{bottom:167.866667pt;}
.y1a4{bottom:168.026667pt;}
.y98{bottom:169.946667pt;}
.y16f{bottom:170.586667pt;}
.y66{bottom:172.026667pt;}
.y93{bottom:175.226667pt;}
.y15e{bottom:175.386667pt;}
.yc2{bottom:180.026667pt;}
.y30{bottom:180.794667pt;}
.ye0{bottom:180.986667pt;}
.y1a3{bottom:184.026667pt;}
.y13e{bottom:186.586667pt;}
.y10f{bottom:187.066667pt;}
.y11b{bottom:187.226667pt;}
.y16e{bottom:189.786667pt;}
.y96{bottom:189.946667pt;}
.y65{bottom:191.226667pt;}
.y92{bottom:194.426667pt;}
.y15d{bottom:195.226667pt;}
.yc1{bottom:200.026667pt;}
.y2f{bottom:200.034667pt;}
.ydf{bottom:200.826667pt;}
.y10e{bottom:202.106667pt;}
.y1d9{bottom:203.226667pt;}
.y13d{bottom:206.426667pt;}
.y11a{bottom:207.066667pt;}
.y16d{bottom:208.986667pt;}
.y64{bottom:210.426667pt;}
.y91{bottom:213.626667pt;}
.y15c{bottom:215.226667pt;}
.y1a2{bottom:216.026667pt;}
.y1d8{bottom:219.226667pt;}
.y2e{bottom:219.234667pt;}
.yc0{bottom:219.866667pt;}
.yde{bottom:220.666667pt;}
.y10d{bottom:221.946667pt;}
.y13c{bottom:226.426667pt;}
.y119{bottom:226.906667pt;}
.y16c{bottom:228.186667pt;}
.y94{bottom:228.986667pt;}
.y63{bottom:229.626667pt;}
.y1a1{bottom:232.026667pt;}
.y90{bottom:232.826667pt;}
.y15b{bottom:235.066667pt;}
.y1d7{bottom:235.226667pt;}
.y173{bottom:238.106667pt;}
.y2d{bottom:238.434667pt;}
.ybf{bottom:239.706667pt;}
.ydd{bottom:240.506667pt;}
.y10c{bottom:241.946667pt;}
.y13b{bottom:246.266667pt;}
.y118{bottom:246.746667pt;}
.y16b{bottom:247.386667pt;}
.y1a0{bottom:248.026667pt;}
.y62{bottom:248.826667pt;}
.y1d6{bottom:251.226667pt;}
.y8f{bottom:252.026667pt;}
.y15a{bottom:254.906667pt;}
.y2c{bottom:257.634667pt;}
.ybe{bottom:259.546667pt;}
.y10b{bottom:261.786667pt;}
.y19f{bottom:264.026667pt;}
.ydc{bottom:265.146667pt;}
.y13a{bottom:266.106667pt;}
.y16a{bottom:266.586667pt;}
.y117{bottom:266.746667pt;}
.y1d5{bottom:267.226667pt;}
.y61{bottom:268.026667pt;}
.y8e{bottom:271.226667pt;}
.y159{bottom:274.746667pt;}
.y2b{bottom:276.834667pt;}
.ybc{bottom:279.386667pt;}
.y19e{bottom:280.026667pt;}
.y10a{bottom:281.626667pt;}
.y1d4{bottom:283.226667pt;}
.ydb{bottom:284.346667pt;}
.y169{bottom:285.786667pt;}
.y139{bottom:285.946667pt;}
.y60{bottom:287.226667pt;}
.y8d{bottom:290.426667pt;}
.y157{bottom:294.586667pt;}
.y19d{bottom:296.026667pt;}
.y2a{bottom:296.034667pt;}
.y1d3{bottom:299.266667pt;}
.yba{bottom:300.866667pt;}
.y109{bottom:301.506667pt;}
.yda{bottom:303.586667pt;}
.y168{bottom:305.026667pt;}
.y116{bottom:305.826667pt;}
.y5f{bottom:306.466667pt;}
.y8c{bottom:309.666667pt;}
.y19c{bottom:312.066667pt;}
.y29{bottom:315.234667pt;}
.y1d2{bottom:315.266667pt;}
.y156{bottom:319.266667pt;}
.y167{bottom:320.066667pt;}
.yd9{bottom:322.786667pt;}
.y5e{bottom:325.666667pt;}
.y108{bottom:326.146667pt;}
.yb9{bottom:326.466667pt;}
.y19b{bottom:328.066667pt;}
.y8b{bottom:328.866667pt;}
.y1d1{bottom:331.266667pt;}
.y28{bottom:334.434667pt;}
.y155{bottom:338.466667pt;}
.y166{bottom:339.906667pt;}
.yd8{bottom:341.986667pt;}
.y19a{bottom:344.066667pt;}
.y5d{bottom:344.866667pt;}
.y107{bottom:345.346667pt;}
.yb8{bottom:345.666667pt;}
.y1d0{bottom:347.266667pt;}
.y8a{bottom:348.066667pt;}
.y138{bottom:350.466667pt;}
.y27{bottom:353.634667pt;}
.y154{bottom:357.666667pt;}
.y165{bottom:359.746667pt;}
.y199{bottom:360.066667pt;}
.yd7{bottom:361.186667pt;}
.y1cf{bottom:363.266667pt;}
.y5c{bottom:364.066667pt;}
.y106{bottom:364.546667pt;}
.yb7{bottom:364.866667pt;}
.y89{bottom:367.266667pt;}
.y137{bottom:369.666667pt;}
.y26{bottom:372.834667pt;}
.y198{bottom:376.066667pt;}
.y153{bottom:376.866667pt;}
.y1ce{bottom:379.266667pt;}
.y164{bottom:379.586667pt;}
.yd6{bottom:380.386667pt;}
.y5b{bottom:383.266667pt;}
.y105{bottom:383.746667pt;}
.yb6{bottom:384.066667pt;}
.y88{bottom:386.466667pt;}
.y136{bottom:388.866667pt;}
.y25{bottom:391.234667pt;}
.y197{bottom:392.066667pt;}
.y1cd{bottom:395.266667pt;}
.y152{bottom:396.066667pt;}
.yb5{bottom:399.266667pt;}
.yd5{bottom:399.586667pt;}
.y5a{bottom:402.466667pt;}
.y104{bottom:402.946667pt;}
.y87{bottom:405.666667pt;}
.y24{bottom:407.234667pt;}
.y135{bottom:408.066667pt;}
.y1cc{bottom:411.266667pt;}
.y151{bottom:415.266667pt;}
.yd4{bottom:418.786667pt;}
.yb4{bottom:419.106667pt;}
.y163{bottom:419.426667pt;}
.y59{bottom:421.666667pt;}
.y103{bottom:422.146667pt;}
.y134{bottom:423.106667pt;}
.y23{bottom:423.234667pt;}
.y196{bottom:424.066667pt;}
.y86{bottom:424.866667pt;}
.y1cb{bottom:427.266667pt;}
.y150{bottom:434.466667pt;}
.yd3{bottom:437.986667pt;}
.yb3{bottom:438.946667pt;}
.y22{bottom:439.261333pt;}
.y195{bottom:440.066667pt;}
.y58{bottom:440.866667pt;}
.y102{bottom:441.346667pt;}
.y133{bottom:442.946667pt;}
.y1ca{bottom:443.266667pt;}
.y85{bottom:444.066667pt;}
.y14f{bottom:453.666667pt;}
.y21{bottom:455.261333pt;}
.y194{bottom:456.066667pt;}
.yd2{bottom:457.186667pt;}
.yb2{bottom:458.786667pt;}
.y1c9{bottom:459.266667pt;}
.y57{bottom:460.066667pt;}
.y101{bottom:460.546667pt;}
.y132{bottom:462.786667pt;}
.y84{bottom:463.266667pt;}
.y20{bottom:471.261333pt;}
.y193{bottom:472.066667pt;}
.y14e{bottom:472.866667pt;}
.y1c8{bottom:475.266667pt;}
.yd1{bottom:476.386667pt;}
.yb1{bottom:478.626667pt;}
.y56{bottom:479.266667pt;}
.y100{bottom:479.746667pt;}
.y83{bottom:482.466667pt;}
.y131{bottom:482.626667pt;}
.y1f{bottom:487.261333pt;}
.y192{bottom:488.066667pt;}
.y1c7{bottom:491.266667pt;}
.y14d{bottom:492.066667pt;}
.yd0{bottom:495.586667pt;}
.y55{bottom:498.466667pt;}
.yff{bottom:498.946667pt;}
.y82{bottom:501.666667pt;}
.y130{bottom:502.466667pt;}
.y1e{bottom:503.261333pt;}
.y191{bottom:504.066667pt;}
.y1c6{bottom:507.266667pt;}
.y14c{bottom:511.266667pt;}
.ycf{bottom:514.786667pt;}
.y54{bottom:517.666667pt;}
.yfe{bottom:518.146667pt;}
.y1d{bottom:520.061333pt;}
.y190{bottom:520.066667pt;}
.y81{bottom:520.866667pt;}
.yae{bottom:521.666667pt;}
.y12f{bottom:522.466667pt;}
.y1c5{bottom:523.266667pt;}
.yce{bottom:529.986667pt;}
.y14b{bottom:530.466667pt;}
.y18f{bottom:536.066667pt;}
.y53{bottom:536.893333pt;}
.yfd{bottom:537.373333pt;}
.y1c{bottom:538.461333pt;}
.y1c4{bottom:539.293333pt;}
.y80{bottom:540.093333pt;}
.y12e{bottom:542.333333pt;}
.yad{bottom:549.053333pt;}
.y14a{bottom:549.693333pt;}
.ycd{bottom:549.853333pt;}
.y18e{bottom:552.093333pt;}
.y1b{bottom:554.461333pt;}
.y1c3{bottom:555.293333pt;}
.y52{bottom:556.093333pt;}
.yfc{bottom:556.573333pt;}
.y7f{bottom:559.293333pt;}
.y149{bottom:564.893333pt;}
.y12d{bottom:566.973333pt;}
.y18d{bottom:568.093333pt;}
.yac{bottom:568.253333pt;}
.ycc{bottom:569.693333pt;}
.y1c2{bottom:571.293333pt;}
.y1a{bottom:571.581333pt;}
.y19{bottom:572.861333pt;}
.y51{bottom:575.293333pt;}
.yfb{bottom:575.773333pt;}
.y7e{bottom:578.493333pt;}
.y18c{bottom:584.093333pt;}
.y148{bottom:584.733333pt;}
.y12c{bottom:586.173333pt;}
.y1c1{bottom:587.293333pt;}
.yab{bottom:587.453333pt;}
.ycb{bottom:589.533333pt;}
.y50{bottom:594.493333pt;}
.yfa{bottom:594.973333pt;}
.y7d{bottom:597.693333pt;}
.y18b{bottom:600.093333pt;}
.y1c0{bottom:603.293333pt;}
.y147{bottom:604.573333pt;}
.y12b{bottom:605.373333pt;}
.yaa{bottom:606.653333pt;}
.yca{bottom:609.373333pt;}
.y4f{bottom:613.693333pt;}
.yf9{bottom:614.173333pt;}
.y18a{bottom:616.093333pt;}
.y7c{bottom:616.893333pt;}
.y1bf{bottom:619.293333pt;}
.y146{bottom:624.413333pt;}
.y12a{bottom:624.573333pt;}
.ya9{bottom:625.853333pt;}
.yc9{bottom:629.213333pt;}
.y189{bottom:632.093333pt;}
.y4e{bottom:632.893333pt;}
.yf8{bottom:633.373333pt;}
.y1be{bottom:635.293333pt;}
.y7b{bottom:636.093333pt;}
.ya8{bottom:640.893333pt;}
.y129{bottom:643.773333pt;}
.y145{bottom:644.253333pt;}
.y188{bottom:648.093333pt;}
.yc8{bottom:649.213333pt;}
.y1bd{bottom:651.293333pt;}
.y4d{bottom:652.093333pt;}
.yf7{bottom:652.573333pt;}
.y7a{bottom:655.293333pt;}
.ya7{bottom:660.893333pt;}
.y128{bottom:662.973333pt;}
.y144{bottom:664.093333pt;}
.y1bc{bottom:667.293333pt;}
.yc7{bottom:669.053333pt;}
.y4c{bottom:671.293333pt;}
.yf6{bottom:671.773333pt;}
.y79{bottom:674.493333pt;}
.y127{bottom:678.013333pt;}
.y187{bottom:680.093333pt;}
.ya6{bottom:680.733333pt;}
.y1bb{bottom:683.293333pt;}
.y143{bottom:684.093333pt;}
.y4b{bottom:690.493333pt;}
.yf5{bottom:690.973333pt;}
.y78{bottom:693.693333pt;}
.y186{bottom:696.093333pt;}
.y126{bottom:697.853333pt;}
.yf{bottom:698.973333pt;}
.y1ba{bottom:699.293333pt;}
.ya5{bottom:700.573333pt;}
.y142{bottom:707.453333pt;}
.y4a{bottom:709.693333pt;}
.yf4{bottom:710.173333pt;}
.y185{bottom:712.093333pt;}
.y77{bottom:712.893333pt;}
.y1b9{bottom:715.293333pt;}
.y125{bottom:717.693333pt;}
.y174{bottom:718.173333pt;}
.ya4{bottom:720.413333pt;}
.y184{bottom:728.093333pt;}
.y49{bottom:728.893333pt;}
.yf3{bottom:729.373333pt;}
.y1b8{bottom:731.293333pt;}
.y76{bottom:732.093333pt;}
.y124{bottom:737.693333pt;}
.ya3{bottom:740.253333pt;}
.y183{bottom:744.093333pt;}
.y1b7{bottom:747.293333pt;}
.y48{bottom:748.093333pt;}
.yf2{bottom:748.573333pt;}
.y75{bottom:751.293333pt;}
.y123{bottom:757.533333pt;}
.ya2{bottom:760.093333pt;}
.y1b6{bottom:763.293333pt;}
.y47{bottom:767.293333pt;}
.yf1{bottom:767.773333pt;}
.y74{bottom:770.493333pt;}
.y182{bottom:776.133333pt;}
.y122{bottom:777.413333pt;}
.y1b5{bottom:779.333333pt;}
.ya1{bottom:780.133333pt;}
.y46{bottom:786.533333pt;}
.yf0{bottom:787.013333pt;}
.y73{bottom:789.733333pt;}
.y181{bottom:792.133333pt;}
.y1b4{bottom:795.333333pt;}
.y121{bottom:797.253333pt;}
.ya0{bottom:799.973333pt;}
.y45{bottom:805.733333pt;}
.yef{bottom:806.213333pt;}
.y180{bottom:808.133333pt;}
.y72{bottom:808.933333pt;}
.y1b3{bottom:811.333333pt;}
.y120{bottom:817.093333pt;}
.y9f{bottom:819.813333pt;}
.y17f{bottom:824.133333pt;}
.y44{bottom:824.933333pt;}
.yee{bottom:825.413333pt;}
.y1b2{bottom:827.333333pt;}
.y71{bottom:828.133333pt;}
.y11f{bottom:836.933333pt;}
.y7{bottom:837.253333pt;}
.y9d{bottom:839.653333pt;}
.y17e{bottom:840.133333pt;}
.y1b1{bottom:843.333333pt;}
.y43{bottom:844.133333pt;}
.yed{bottom:844.613333pt;}
.y70{bottom:847.333333pt;}
.y17d{bottom:856.133333pt;}
.y11e{bottom:856.933333pt;}
.y1b0{bottom:859.333333pt;}
.y42{bottom:863.333333pt;}
.yec{bottom:863.813333pt;}
.y6f{bottom:866.533333pt;}
.y17c{bottom:872.133333pt;}
.y1af{bottom:875.333333pt;}
.y11c{bottom:876.773333pt;}
.y41{bottom:882.533333pt;}
.yeb{bottom:883.013333pt;}
.y6e{bottom:885.733333pt;}
.y17b{bottom:888.133333pt;}
.y1ae{bottom:891.333333pt;}
.y40{bottom:901.733333pt;}
.yea{bottom:902.213333pt;}
.y17a{bottom:904.133333pt;}
.y6d{bottom:904.933333pt;}
.y1ad{bottom:907.333333pt;}
.y179{bottom:920.133333pt;}
.y3f{bottom:920.933333pt;}
.ye9{bottom:921.413333pt;}
.y1ac{bottom:923.333333pt;}
.y6c{bottom:924.133333pt;}
.y178{bottom:936.133333pt;}
.y1ab{bottom:939.333333pt;}
.y3e{bottom:940.133333pt;}
.ye8{bottom:940.613333pt;}
.y6b{bottom:943.333333pt;}
.y177{bottom:952.133333pt;}
.y1aa{bottom:955.333333pt;}
.ye7{bottom:955.653333pt;}
.y3d{bottom:959.333333pt;}
.y6a{bottom:962.533333pt;}
.y176{bottom:968.133333pt;}
.y1a9{bottom:971.333333pt;}
.ye6{bottom:975.653333pt;}
.y3c{bottom:978.853333pt;}
.y69{bottom:981.733333pt;}
.y175{bottom:984.133333pt;}
.y1a8{bottom:987.333333pt;}
.ye5{bottom:995.493333pt;}
.y3b{bottom:999.653333pt;}
.y68{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hc{height:19.200000pt;}
.hf{height:19.232000pt;}
.h12{height:20.160000pt;}
.h13{height:20.832000pt;}
.he{height:21.440000pt;}
.h10{height:21.952000pt;}
.h11{height:22.560000pt;}
.h15{height:22.720000pt;}
.h16{height:32.960000pt;}
.hd{height:38.400000pt;}
.h14{height:38.432000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h8{height:137.626667pt;}
.h6{height:162.080000pt;}
.h9{height:587.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:55.040000pt;}
.w9{width:56.192000pt;}
.w7{width:56.800000pt;}
.w14{width:56.960000pt;}
.w15{width:67.200000pt;}
.w18{width:74.880000pt;}
.wc{width:83.680000pt;}
.we{width:140.640000pt;}
.w11{width:141.120000pt;}
.w12{width:150.586667pt;}
.wf{width:153.306667pt;}
.w17{width:166.746667pt;}
.w3{width:179.746667pt;}
.wd{width:210.266667pt;}
.w19{width:216.826667pt;}
.w6{width:270.146667pt;}
.w16{width:320.386667pt;}
.wb{width:346.493333pt;}
.w10{width:348.733333pt;}
.w5{width:440.253333pt;}
.w13{width:452.413333pt;}
.w4{width:472.546667pt;}
.wa{width:641.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x13{left:94.431988pt;}
.x2{left:169.146667pt;}
.xe{left:170.746667pt;}
.x5{left:176.826667pt;}
.x3{left:255.266667pt;}
.x11{left:397.346667pt;}
.x9{left:423.453333pt;}
.xc{left:425.693333pt;}
.xf{left:441.533333pt;}
.x6{left:447.613333pt;}
.x10{left:499.133333pt;}
.x12{left:501.213333pt;}
.x7{left:505.213333pt;}
.xa{left:507.773333pt;}
.x8{left:560.893333pt;}
.xb{left:564.733333pt;}
.xd{left:567.453333pt;}
}




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