
    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_eb3453cbe97ff2f10e43164e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_191bcc9cdfdcac089ee9bbe2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_11e1ec420b793412a6107802.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7b2f3aa5471225fee4a5b3f9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d89282481fcf1982978798ef.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_96df397fe03d9c61da3b4b1c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_14d0bdf1c5acc0cf2e3dd52c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ecf636578a81fe90d4a6101a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_9c6f6e7670e60df095e49136.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5da852b5eade3f9f2016eccd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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);}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls25{letter-spacing:-2.700000px;}
.ls51{letter-spacing:-2.106000px;}
.ls3d{letter-spacing:-1.800000px;}
.ls40{letter-spacing:-1.494000px;}
.ls2a{letter-spacing:-1.386000px;}
.ls4{letter-spacing:-1.176000px;}
.ls31{letter-spacing:-1.134000px;}
.ls26{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.774000px;}
.ls32{letter-spacing:-0.666000px;}
.ls42{letter-spacing:-0.612000px;}
.ls4b{letter-spacing:-0.566400px;}
.ls47{letter-spacing:-0.513600px;}
.ls6{letter-spacing:-0.460200px;}
.ls33{letter-spacing:-0.413400px;}
.ls12{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.357000px;}
.ls4a{letter-spacing:-0.259800px;}
.ls30{letter-spacing:-0.206400px;}
.ls49{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.ls2c{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.298800px;}
.ls39{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.460200px;}
.ls38{letter-spacing:0.466800px;}
.ls52{letter-spacing:0.513600px;}
.ls4c{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.828000px;}
.ls2f{letter-spacing:0.876000px;}
.ls3e{letter-spacing:0.900000px;}
.lsa{letter-spacing:0.924000px;}
.ls1c{letter-spacing:0.978000px;}
.ls9{letter-spacing:1.080000px;}
.ls35{letter-spacing:1.440000px;}
.ls2d{letter-spacing:1.620000px;}
.ls27{letter-spacing:2.340000px;}
.ls37{letter-spacing:2.520000px;}
.ls23{letter-spacing:3.060000px;}
.ls34{letter-spacing:3.780000px;}
.ls24{letter-spacing:4.500000px;}
.ls21{letter-spacing:5.220000px;}
.ls1d{letter-spacing:6.660000px;}
.ls46{letter-spacing:7.380000px;}
.lsc{letter-spacing:8.820000px;}
.ls4d{letter-spacing:9.540000px;}
.ls3f{letter-spacing:10.980000px;}
.ls45{letter-spacing:11.466720px;}
.ls1a{letter-spacing:11.700000px;}
.ls44{letter-spacing:12.420000px;}
.ls2b{letter-spacing:13.140000px;}
.ls41{letter-spacing:13.860000px;}
.ls29{letter-spacing:14.580000px;}
.ls4e{letter-spacing:15.300000px;}
.ls0{letter-spacing:16.506720px;}
.ls3a{letter-spacing:19.080000px;}
.ls1{letter-spacing:19.386720px;}
.ls36{letter-spacing:19.620000px;}
.ls18{letter-spacing:23.940000px;}
.lsd{letter-spacing:25.290720px;}
.ls14{letter-spacing:26.028000px;}
.ls4f{letter-spacing:38.826720px;}
.ls43{letter-spacing:41.706720px;}
.ls22{letter-spacing:43.866720px;}
.ls50{letter-spacing:46.026720px;}
.ls16{letter-spacing:52.650720px;}
.lsf{letter-spacing:52.668000px;}
.ls3c{letter-spacing:62.100000px;}
.lse{letter-spacing:79.290720px;}
.ls1b{letter-spacing:118.170720px;}
.ls1e{letter-spacing:126.810720px;}
.ls15{letter-spacing:154.188000px;}
.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;}
}
.ws17{word-spacing:-59.760000px;}
.ws2e{word-spacing:-50.364000px;}
.ws2{word-spacing:-24.300000px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.020000px;}
.ws2c{word-spacing:-15.918000px;}
.ws8{word-spacing:-15.864000px;}
.ws18{word-spacing:-15.816000px;}
.ws10{word-spacing:-15.768000px;}
.ws9{word-spacing:-15.606000px;}
.ws2a{word-spacing:-15.552000px;}
.ws2d{word-spacing:-15.453600px;}
.ws1f{word-spacing:-15.406800px;}
.ws12{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.246600px;}
.ws1c{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws26{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws27{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.ws28{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.613240px;}
.wsd{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.526600px;}
.ws1e{word-spacing:-14.479800px;}
.ws25{word-spacing:-14.426400px;}
.ws29{word-spacing:-14.373600px;}
.ws24{word-spacing:-14.328000px;}
.ws1b{word-spacing:-14.274000px;}
.ws6{word-spacing:-14.166000px;}
.ws14{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.806000px;}
.ws16{word-spacing:-13.554000px;}
.wsf{word-spacing:-13.500000px;}
.ws23{word-spacing:-13.446000px;}
.ws21{word-spacing:-13.140000px;}
.ws2b{word-spacing:-12.834000px;}
.ws13{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.711360px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._20{margin-left:-9.953280px;}
._2c{margin-left:-6.713520px;}
._28{margin-left:-5.368560px;}
._13{margin-left:-3.466080px;}
._f{margin-left:-2.427360px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._8{width:2.353920px;}
._7{width:3.475680px;}
._9{width:4.486320px;}
._a{width:5.566320px;}
._e{width:6.919440px;}
._b{width:8.344080px;}
._c{width:9.809040px;}
._d{width:10.931760px;}
._10{width:12.908160px;}
._30{width:13.912560px;}
._1d{width:15.942240px;}
._12{width:17.081520px;}
._11{width:18.212400px;}
._16{width:19.656960px;}
._1a{width:21.103920px;}
._14{width:23.108640px;}
._15{width:24.723840px;}
._17{width:26.191680px;}
._1c{width:27.334800px;}
._1e{width:28.435440px;}
._19{width:29.488800px;}
._18{width:31.134480px;}
._1b{width:32.577120px;}
._24{width:33.939840px;}
._23{width:36.919920px;}
._1f{width:38.340000px;}
._2e{width:39.442800px;}
._2b{width:40.692480px;}
._26{width:41.866800px;}
._22{width:43.300080px;}
._2f{width:53.531280px;}
._29{width:57.142560px;}
._25{width:60.426480px;}
._2d{width:75.357360px;}
._27{width:124.966560px;}
._2a{width:153.204000px;}
._21{width:167.660160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(36,36,36);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y111{bottom:3.240000px;}
.y10e{bottom:4.680000px;}
.y113{bottom:4.860000px;}
.y10c{bottom:5.400000px;}
.y121{bottom:5.760000px;}
.y127{bottom:5.940000px;}
.y1a9{bottom:6.480000px;}
.y11e{bottom:7.560000px;}
.y16f{bottom:7.740000px;}
.y165{bottom:8.820000px;}
.y120{bottom:9.360000px;}
.y171{bottom:9.720000px;}
.y17d{bottom:9.900000px;}
.y1a1{bottom:10.260000px;}
.y163{bottom:11.520000px;}
.y1c3{bottom:18.540000px;}
.y16c{bottom:20.520000px;}
.y16e{bottom:25.020000px;}
.y1a5{bottom:25.560000px;}
.y1ac{bottom:25.740000px;}
.y1a3{bottom:25.785000px;}
.y170{bottom:27.000000px;}
.y17c{bottom:27.180000px;}
.y1a7{bottom:27.714000px;}
.y1a0{bottom:30.060000px;}
.y161{bottom:34.020000px;}
.y16a{bottom:34.560000px;}
.y1bf{bottom:34.920000px;}
.y125{bottom:35.460000px;}
.y1c2{bottom:35.820000px;}
.y19f{bottom:49.860000px;}
.y169{bottom:51.840000px;}
.y1c1{bottom:53.100000px;}
.y11d{bottom:53.820000px;}
.y124{bottom:55.260000px;}
.y6{bottom:57.456000px;}
.y160{bottom:68.580000px;}
.y168{bottom:68.940000px;}
.y19e{bottom:69.840000px;}
.y1c0{bottom:70.374000px;}
.y123{bottom:75.285000px;}
.y1be{bottom:82.476000px;}
.y15f{bottom:85.680000px;}
.yfd{bottom:86.076000px;}
.y167{bottom:86.220000px;}
.y19d{bottom:89.640000px;}
.y159{bottom:91.476000px;}
.y11b{bottom:91.656000px;}
.ye8{bottom:93.276000px;}
.y199{bottom:95.436000px;}
.y34{bottom:98.136000px;}
.y14a{bottom:99.396000px;}
.ya4{bottom:99.576000px;}
.y92{bottom:99.756000px;}
.yd0{bottom:102.276000px;}
.y15e{bottom:102.960000px;}
.y166{bottom:103.500000px;}
.y177{bottom:103.680000px;}
.y6a{bottom:104.076000px;}
.yfc{bottom:105.876000px;}
.y19c{bottom:109.485000px;}
.y158{bottom:111.276000px;}
.y11a{bottom:111.456000px;}
.ye7{bottom:113.076000px;}
.y198{bottom:115.236000px;}
.y1b6{bottom:115.776000px;}
.y33{bottom:117.936000px;}
.y149{bottom:119.196000px;}
.ya3{bottom:119.376000px;}
.y91{bottom:119.736000px;}
.y15d{bottom:120.240000px;}
.y176{bottom:120.780000px;}
.ycf{bottom:122.076000px;}
.y69{bottom:123.876000px;}
.yfb{bottom:125.676000px;}
.y19b{bottom:129.285000px;}
.y1a6{bottom:130.896000px;}
.y157{bottom:131.076000px;}
.y119{bottom:131.256000px;}
.ye6{bottom:132.876000px;}
.y1b5{bottom:135.576000px;}
.y15c{bottom:137.520000px;}
.y32{bottom:137.736000px;}
.y175{bottom:138.060000px;}
.y148{bottom:138.996000px;}
.ya2{bottom:139.176000px;}
.y90{bottom:139.536000px;}
.yce{bottom:141.876000px;}
.y68{bottom:143.676000px;}
.yfa{bottom:145.656000px;}
.y156{bottom:150.870000px;}
.y118{bottom:151.050000px;}
.ye5{bottom:152.670000px;}
.y1a8{bottom:152.850000px;}
.y15b{bottom:154.800000px;}
.y174{bottom:155.340000px;}
.y1b4{bottom:155.550000px;}
.ya1{bottom:158.970000px;}
.y8f{bottom:159.330000px;}
.ycd{bottom:161.670000px;}
.y67{bottom:163.650000px;}
.yf9{bottom:165.450000px;}
.y31{bottom:166.710000px;}
.y155{bottom:170.670000px;}
.y117{bottom:170.850000px;}
.y173{bottom:172.620000px;}
.ye4{bottom:172.650000px;}
.y19a{bottom:174.270000px;}
.y1b3{bottom:175.350000px;}
.ya0{bottom:178.770000px;}
.y8e{bottom:179.130000px;}
.ycc{bottom:181.650000px;}
.y66{bottom:183.450000px;}
.y30{bottom:186.510000px;}
.y154{bottom:190.650000px;}
.y116{bottom:190.830000px;}
.ye3{bottom:192.450000px;}
.yf8{bottom:194.250000px;}
.y1b2{bottom:195.150000px;}
.y147{bottom:198.570000px;}
.y9f{bottom:198.750000px;}
.y8d{bottom:198.930000px;}
.ycb{bottom:201.450000px;}
.y65{bottom:203.250000px;}
.y2f{bottom:206.310000px;}
.y153{bottom:210.450000px;}
.y115{bottom:210.630000px;}
.ye2{bottom:212.250000px;}
.yf7{bottom:214.050000px;}
.y1b1{bottom:214.950000px;}
.y1a4{bottom:215.490000px;}
.y146{bottom:218.370000px;}
.y8c{bottom:218.910000px;}
.yca{bottom:221.250000px;}
.y64{bottom:223.050000px;}
.y2e{bottom:226.110000px;}
.y152{bottom:230.250000px;}
.y114{bottom:230.430000px;}
.ye1{bottom:232.050000px;}
.yf6{bottom:233.850000px;}
.y1b0{bottom:234.750000px;}
.y145{bottom:238.170000px;}
.y8b{bottom:238.710000px;}
.yc9{bottom:241.050000px;}
.y63{bottom:242.850000px;}
.y2d{bottom:245.910000px;}
.y151{bottom:250.050000px;}
.ye0{bottom:251.850000px;}
.yf5{bottom:253.830000px;}
.y1af{bottom:254.730000px;}
.y1a2{bottom:256.530000px;}
.y144{bottom:258.150000px;}
.y8a{bottom:258.510000px;}
.yc8{bottom:260.850000px;}
.y62{bottom:262.830000px;}
.y112{bottom:264.630000px;}
.y2c{bottom:265.890000px;}
.y150{bottom:269.850000px;}
.ydf{bottom:271.830000px;}
.yf4{bottom:273.630000px;}
.y1ae{bottom:274.530000px;}
.y143{bottom:277.950000px;}
.y89{bottom:278.310000px;}
.yc7{bottom:280.830000px;}
.y61{bottom:282.675000px;}
.y110{bottom:285.015000px;}
.y2b{bottom:285.735000px;}
.y14f{bottom:289.875000px;}
.yde{bottom:291.675000px;}
.yf3{bottom:293.475000px;}
.y1ad{bottom:294.375000px;}
.y142{bottom:297.795000px;}
.y88{bottom:298.155000px;}
.yc6{bottom:300.675000px;}
.y60{bottom:302.475000px;}
.y10f{bottom:303.735000px;}
.y2a{bottom:305.535000px;}
.y14e{bottom:309.675000px;}
.y1ab{bottom:309.855000px;}
.ydd{bottom:311.475000px;}
.yf2{bottom:313.275000px;}
.y141{bottom:317.595000px;}
.y87{bottom:317.955000px;}
.yc5{bottom:320.475000px;}
.y5f{bottom:322.275000px;}
.y10d{bottom:324.075000px;}
.y14d{bottom:329.475000px;}
.ydc{bottom:331.275000px;}
.y29{bottom:334.335000px;}
.y140{bottom:337.395000px;}
.y86{bottom:337.935000px;}
.y197{bottom:340.095000px;}
.yc4{bottom:340.275000px;}
.y5e{bottom:342.075000px;}
.y10b{bottom:344.235000px;}
.y14c{bottom:349.275000px;}
.ydb{bottom:351.075000px;}
.y28{bottom:354.135000px;}
.y13f{bottom:357.375000px;}
.y85{bottom:357.735000px;}
.y196{bottom:359.895000px;}
.yc3{bottom:360.075000px;}
.y5d{bottom:362.055000px;}
.y14b{bottom:369.075000px;}
.yda{bottom:371.055000px;}
.y15a{bottom:372.855000px;}
.y27{bottom:374.115000px;}
.y13e{bottom:377.175000px;}
.y195{bottom:379.695000px;}
.yc2{bottom:380.055000px;}
.y5c{bottom:381.855000px;}
.y10a{bottom:389.055000px;}
.yd9{bottom:390.855000px;}
.y1aa{bottom:392.295000px;}
.y26{bottom:393.915000px;}
.y13d{bottom:396.975000px;}
.yc1{bottom:399.855000px;}
.y5b{bottom:401.655000px;}
.y194{bottom:408.495000px;}
.y109{bottom:408.855000px;}
.yd8{bottom:410.655000px;}
.y25{bottom:413.715000px;}
.y16d{bottom:415.335000px;}
.y13c{bottom:416.775000px;}
.yc0{bottom:419.655000px;}
.y5a{bottom:421.455000px;}
.y193{bottom:428.475000px;}
.y108{bottom:428.655000px;}
.yd7{bottom:430.455000px;}
.y24{bottom:433.515000px;}
.y13b{bottom:436.575000px;}
.ybf{bottom:439.455000px;}
.y59{bottom:441.255000px;}
.y192{bottom:448.275000px;}
.y107{bottom:448.455000px;}
.yd6{bottom:450.255000px;}
.y23{bottom:453.315000px;}
.y16b{bottom:455.835000px;}
.y13a{bottom:456.555000px;}
.ybe{bottom:459.255000px;}
.y58{bottom:461.235000px;}
.y191{bottom:468.075000px;}
.y106{bottom:468.255000px;}
.yd5{bottom:470.235000px;}
.y22{bottom:473.295000px;}
.y139{bottom:476.355000px;}
.ybd{bottom:479.235000px;}
.y57{bottom:481.035000px;}
.y190{bottom:487.875000px;}
.y105{bottom:488.235000px;}
.y1bd{bottom:488.595000px;}
.yd4{bottom:490.035000px;}
.y164{bottom:491.835000px;}
.y21{bottom:493.095000px;}
.y138{bottom:496.155000px;}
.ybc{bottom:499.035000px;}
.y56{bottom:500.835000px;}
.yf1{bottom:506.055000px;}
.y1bc{bottom:507.135000px;}
.y18f{bottom:507.675000px;}
.y104{bottom:508.035000px;}
.yd3{bottom:509.835000px;}
.y20{bottom:512.895000px;}
.y137{bottom:515.955000px;}
.y162{bottom:516.135000px;}
.ybb{bottom:518.835000px;}
.y55{bottom:520.635000px;}
.y1bb{bottom:524.775000px;}
.yf0{bottom:525.855000px;}
.y18e{bottom:527.655000px;}
.y103{bottom:527.835000px;}
.yd2{bottom:529.635000px;}
.y1f{bottom:532.695000px;}
.y136{bottom:535.755000px;}
.y9e{bottom:537.735000px;}
.yba{bottom:538.635000px;}
.y54{bottom:540.435000px;}
.y1ba{bottom:543.675000px;}
.y18d{bottom:547.455000px;}
.y102{bottom:547.635000px;}
.yd1{bottom:549.435000px;}
.y1e{bottom:552.495000px;}
.y1b7{bottom:552.855000px;}
.y135{bottom:555.735000px;}
.y9d{bottom:557.715000px;}
.yb9{bottom:558.435000px;}
.yef{bottom:560.415000px;}
.y1b9{bottom:562.755000px;}
.y18c{bottom:567.285000px;}
.y101{bottom:567.465000px;}
.y53{bottom:569.445000px;}
.y1d{bottom:572.505000px;}
.y134{bottom:575.565000px;}
.y9c{bottom:577.545000px;}
.yb8{bottom:578.445000px;}
.yee{bottom:580.245000px;}
.y1b8{bottom:581.685000px;}
.y18b{bottom:587.085000px;}
.y100{bottom:587.445000px;}
.y52{bottom:589.245000px;}
.y1c{bottom:592.305000px;}
.y133{bottom:595.365000px;}
.y9b{bottom:597.345000px;}
.yb7{bottom:598.245000px;}
.yed{bottom:605.265000px;}
.y18a{bottom:606.885000px;}
.yff{bottom:607.245000px;}
.y51{bottom:609.045000px;}
.y1b{bottom:612.105000px;}
.y132{bottom:615.165000px;}
.y9a{bottom:617.145000px;}
.yb6{bottom:618.045000px;}
.yec{bottom:619.845000px;}
.y189{bottom:626.865000px;}
.yfe{bottom:627.045000px;}
.y50{bottom:628.845000px;}
.y1a{bottom:631.905000px;}
.y131{bottom:634.965000px;}
.y99{bottom:636.945000px;}
.yb5{bottom:637.845000px;}
.yeb{bottom:639.645000px;}
.y188{bottom:646.665000px;}
.y84{bottom:646.845000px;}
.y4f{bottom:648.645000px;}
.y19{bottom:651.705000px;}
.y130{bottom:654.945000px;}
.y98{bottom:656.925000px;}
.yb4{bottom:657.645000px;}
.yea{bottom:659.625000px;}
.y187{bottom:666.465000px;}
.y83{bottom:666.645000px;}
.y4e{bottom:668.625000px;}
.y18{bottom:673.845000px;}
.y12f{bottom:674.745000px;}
.y97{bottom:676.725000px;}
.yb3{bottom:677.625000px;}
.ye9{bottom:679.425000px;}
.y186{bottom:686.265000px;}
.y82{bottom:686.625000px;}
.y4d{bottom:688.425000px;}
.y12e{bottom:694.545000px;}
.y96{bottom:696.525000px;}
.yb2{bottom:697.425000px;}
.y17{bottom:702.645000px;}
.y185{bottom:706.065000px;}
.y81{bottom:706.425000px;}
.y4c{bottom:708.225000px;}
.y12d{bottom:714.345000px;}
.y95{bottom:716.325000px;}
.yb1{bottom:717.225000px;}
.y16{bottom:722.625000px;}
.y184{bottom:726.045000px;}
.y80{bottom:726.225000px;}
.y4b{bottom:728.025000px;}
.y12c{bottom:734.145000px;}
.y94{bottom:736.125000px;}
.yb0{bottom:737.025000px;}
.y15{bottom:742.425000px;}
.y183{bottom:745.845000px;}
.y7f{bottom:746.025000px;}
.y4a{bottom:747.825000px;}
.y12b{bottom:754.125000px;}
.y93{bottom:756.105000px;}
.yaf{bottom:756.825000px;}
.y14{bottom:762.225000px;}
.y182{bottom:765.645000px;}
.y7e{bottom:765.825000px;}
.y49{bottom:767.805000px;}
.y12a{bottom:773.925000px;}
.yae{bottom:776.805000px;}
.y13{bottom:782.025000px;}
.y181{bottom:785.445000px;}
.y7d{bottom:785.805000px;}
.y48{bottom:787.605000px;}
.y122{bottom:789.405000px;}
.yad{bottom:796.605000px;}
.y12{bottom:801.825000px;}
.y180{bottom:805.245000px;}
.y7c{bottom:805.605000px;}
.y47{bottom:807.405000px;}
.y129{bottom:810.825000px;}
.yac{bottom:816.405000px;}
.y11{bottom:821.805000px;}
.y17f{bottom:825.225000px;}
.y7b{bottom:825.405000px;}
.y46{bottom:827.205000px;}
.y128{bottom:835.665000px;}
.yab{bottom:836.205000px;}
.y10{bottom:841.605000px;}
.y17e{bottom:845.025000px;}
.y7a{bottom:845.205000px;}
.y45{bottom:847.005000px;}
.yaa{bottom:856.050000px;}
.y126{bottom:858.750000px;}
.y172{bottom:860.550000px;}
.yf{bottom:861.450000px;}
.y79{bottom:865.050000px;}
.y44{bottom:867.030000px;}
.ya9{bottom:876.030000px;}
.y11c{bottom:880.170000px;}
.ye{bottom:881.250000px;}
.y78{bottom:885.030000px;}
.y43{bottom:886.830000px;}
.ya8{bottom:895.830000px;}
.yd{bottom:901.050000px;}
.y11f{bottom:901.410000px;}
.y17b{bottom:903.210000px;}
.y77{bottom:904.830000px;}
.y42{bottom:906.630000px;}
.ya7{bottom:915.630000px;}
.yc{bottom:920.670000px;}
.y76{bottom:924.630000px;}
.y41{bottom:926.430000px;}
.ya6{bottom:935.430000px;}
.y17a{bottom:939.210000px;}
.yb{bottom:940.470000px;}
.y75{bottom:944.430000px;}
.y40{bottom:946.230000px;}
.ya5{bottom:955.230000px;}
.ya{bottom:960.810000px;}
.y74{bottom:964.230000px;}
.y3f{bottom:975.210000px;}
.y9{bottom:982.050000px;}
.y73{bottom:984.210000px;}
.y179{bottom:993.930000px;}
.y3e{bottom:995.010000px;}
.y72{bottom:1004.010000px;}
.y8{bottom:1005.630000px;}
.y3d{bottom:1014.810000px;}
.y71{bottom:1023.810000px;}
.y178{bottom:1029.930000px;}
.y3c{bottom:1034.610000px;}
.y7{bottom:1037.310000px;}
.y70{bottom:1043.610000px;}
.y3b{bottom:1054.410000px;}
.y6f{bottom:1063.410000px;}
.y5{bottom:1072.770000px;}
.y3a{bottom:1074.390000px;}
.y6e{bottom:1083.390000px;}
.y39{bottom:1094.190000px;}
.y4{bottom:1100.850000px;}
.y6d{bottom:1103.190000px;}
.y38{bottom:1113.990000px;}
.y6c{bottom:1122.990000px;}
.y3{bottom:1128.750000px;}
.y37{bottom:1133.820000px;}
.y6b{bottom:1142.820000px;}
.y2{bottom:1156.860000px;}
.y36{bottom:1162.620000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.h2b{height:2.826563px;}
.h10{height:17.280000px;}
.hf{height:18.720000px;}
.h11{height:18.936000px;}
.he{height:19.440000px;}
.h15{height:19.800000px;}
.h18{height:19.980000px;}
.h28{height:20.520000px;}
.h13{height:21.600000px;}
.h19{height:21.636000px;}
.h1c{height:22.860000px;}
.h14{height:23.400000px;}
.h1b{height:25.380000px;}
.h22{height:34.380000px;}
.h1e{height:34.560000px;}
.hc{height:38.158594px;}
.h1f{height:39.060000px;}
.hd{height:39.346875px;}
.h26{height:39.600000px;}
.h29{height:39.780000px;}
.h25{height:39.816000px;}
.h20{height:41.040000px;}
.h23{height:41.220000px;}
.ha{height:41.726953px;}
.h27{height:41.760000px;}
.h17{height:58.621992px;}
.h6{height:58.651172px;}
.hb{height:59.038594px;}
.h5{height:60.226875px;}
.h8{height:61.423863px;}
.h7{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.h12{height:67.860000px;}
.h2a{height:84.420000px;}
.h16{height:89.316000px;}
.h2{height:96.508125px;}
.h1d{height:117.540000px;}
.h24{height:143.316000px;}
.h1a{height:168.660000px;}
.h21{height:186.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:86.940000px;}
.w7{width:91.656000px;}
.w5{width:97.380000px;}
.wf{width:109.620000px;}
.w12{width:112.536000px;}
.w3{width:117.000000px;}
.wb{width:117.900000px;}
.wc{width:128.916000px;}
.w6{width:140.940000px;}
.wd{width:141.516000px;}
.w13{width:147.096000px;}
.w4{width:151.410000px;}
.w18{width:167.250000px;}
.w15{width:167.970000px;}
.w16{width:180.750000px;}
.w9{width:207.030000px;}
.w1a{width:210.810000px;}
.w10{width:212.790000px;}
.wa{width:265.035000px;}
.w17{width:272.370000px;}
.w19{width:275.250000px;}
.we{width:285.150000px;}
.w11{width:328.035000px;}
.w14{width:467.175000px;}
.w1b{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:7.740000px;}
.x12{left:22.500000px;}
.x1{left:54.179987px;}
.x25{left:74.339987px;}
.x19{left:81.720000px;}
.x9{left:99.936000px;}
.x1f{left:104.615987px;}
.x11{left:107.496000px;}
.x24{left:114.875987px;}
.x16{left:119.916000px;}
.x1c{left:121.536000px;}
.x20{left:126.395987px;}
.x21{left:141.515987px;}
.x6{left:164.549987px;}
.x26{left:191.370000px;}
.x22{left:193.169987px;}
.x1a{left:195.690000px;}
.x23{left:208.289987px;}
.xf{left:209.730000px;}
.xa{left:218.550000px;}
.x13{left:227.010000px;}
.x17{left:230.970000px;}
.x27{left:264.810000px;}
.x5{left:276.509987px;}
.x3{left:290.234987px;}
.x4{left:309.314987px;}
.x2{left:336.494987px;}
.x1b{left:344.235000px;}
.x14{left:357.555000px;}
.xb{left:371.595000px;}
.x10{left:418.395000px;}
.x18{left:445.215000px;}
.xc{left:470.625000px;}
.x1d{left:473.325000px;}
.x15{left:500.505000px;}
.xd{left:613.005000px;}
.x7{left:616.064987px;}
.x8{left:631.544987px;}
.xe{left:706.110000px;}
.x1e{left:839.129987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls25{letter-spacing:-2.400000pt;}
.ls51{letter-spacing:-1.872000pt;}
.ls3d{letter-spacing:-1.600000pt;}
.ls40{letter-spacing:-1.328000pt;}
.ls2a{letter-spacing:-1.232000pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls31{letter-spacing:-1.008000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls32{letter-spacing:-0.592000pt;}
.ls42{letter-spacing:-0.544000pt;}
.ls4b{letter-spacing:-0.503467pt;}
.ls47{letter-spacing:-0.456533pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls33{letter-spacing:-0.367467pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.317333pt;}
.ls4a{letter-spacing:-0.230933pt;}
.ls30{letter-spacing:-0.183467pt;}
.ls49{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.ls2c{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.265600pt;}
.ls39{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.409067pt;}
.ls38{letter-spacing:0.414933pt;}
.ls52{letter-spacing:0.456533pt;}
.ls4c{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls2f{letter-spacing:0.778667pt;}
.ls3e{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.821333pt;}
.ls1c{letter-spacing:0.869333pt;}
.ls9{letter-spacing:0.960000pt;}
.ls35{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:1.440000pt;}
.ls27{letter-spacing:2.080000pt;}
.ls37{letter-spacing:2.240000pt;}
.ls23{letter-spacing:2.720000pt;}
.ls34{letter-spacing:3.360000pt;}
.ls24{letter-spacing:4.000000pt;}
.ls21{letter-spacing:4.640000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls46{letter-spacing:6.560000pt;}
.lsc{letter-spacing:7.840000pt;}
.ls4d{letter-spacing:8.480000pt;}
.ls3f{letter-spacing:9.760000pt;}
.ls45{letter-spacing:10.192640pt;}
.ls1a{letter-spacing:10.400000pt;}
.ls44{letter-spacing:11.040000pt;}
.ls2b{letter-spacing:11.680000pt;}
.ls41{letter-spacing:12.320000pt;}
.ls29{letter-spacing:12.960000pt;}
.ls4e{letter-spacing:13.600000pt;}
.ls0{letter-spacing:14.672640pt;}
.ls3a{letter-spacing:16.960000pt;}
.ls1{letter-spacing:17.232640pt;}
.ls36{letter-spacing:17.440000pt;}
.ls18{letter-spacing:21.280000pt;}
.lsd{letter-spacing:22.480640pt;}
.ls14{letter-spacing:23.136000pt;}
.ls4f{letter-spacing:34.512640pt;}
.ls43{letter-spacing:37.072640pt;}
.ls22{letter-spacing:38.992640pt;}
.ls50{letter-spacing:40.912640pt;}
.ls16{letter-spacing:46.800640pt;}
.lsf{letter-spacing:46.816000pt;}
.ls3c{letter-spacing:55.200000pt;}
.lse{letter-spacing:70.480640pt;}
.ls1b{letter-spacing:105.040640pt;}
.ls1e{letter-spacing:112.720640pt;}
.ls15{letter-spacing:137.056000pt;}
.ws17{word-spacing:-53.120000pt;}
.ws2e{word-spacing:-44.768000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.240000pt;}
.ws2c{word-spacing:-14.149333pt;}
.ws8{word-spacing:-14.101333pt;}
.ws18{word-spacing:-14.058667pt;}
.ws10{word-spacing:-14.016000pt;}
.ws9{word-spacing:-13.872000pt;}
.ws2a{word-spacing:-13.824000pt;}
.ws2d{word-spacing:-13.736533pt;}
.ws1f{word-spacing:-13.694933pt;}
.ws12{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.552533pt;}
.ws1c{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws26{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws27{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.ws28{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.989547pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.912533pt;}
.ws1e{word-spacing:-12.870933pt;}
.ws25{word-spacing:-12.823467pt;}
.ws29{word-spacing:-12.776533pt;}
.ws24{word-spacing:-12.736000pt;}
.ws1b{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.592000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.272000pt;}
.ws16{word-spacing:-12.048000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws23{word-spacing:-11.952000pt;}
.ws21{word-spacing:-11.680000pt;}
.ws2b{word-spacing:-11.408000pt;}
.ws13{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.632320pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._20{margin-left:-8.847360pt;}
._2c{margin-left:-5.967573pt;}
._28{margin-left:-4.772053pt;}
._13{margin-left:-3.080960pt;}
._f{margin-left:-2.157653pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._8{width:2.092373pt;}
._7{width:3.089493pt;}
._9{width:3.987840pt;}
._a{width:4.947840pt;}
._e{width:6.150613pt;}
._b{width:7.416960pt;}
._c{width:8.719147pt;}
._d{width:9.717120pt;}
._10{width:11.473920pt;}
._30{width:12.366720pt;}
._1d{width:14.170880pt;}
._12{width:15.183573pt;}
._11{width:16.188800pt;}
._16{width:17.472853pt;}
._1a{width:18.759040pt;}
._14{width:20.541013pt;}
._15{width:21.976747pt;}
._17{width:23.281493pt;}
._1c{width:24.297600pt;}
._1e{width:25.275947pt;}
._19{width:26.212267pt;}
._18{width:27.675093pt;}
._1b{width:28.957440pt;}
._24{width:30.168747pt;}
._23{width:32.817707pt;}
._1f{width:34.080000pt;}
._2e{width:35.060267pt;}
._2b{width:36.171093pt;}
._26{width:37.214933pt;}
._22{width:38.488960pt;}
._2f{width:47.583360pt;}
._29{width:50.793387pt;}
._25{width:53.712427pt;}
._2d{width:66.984320pt;}
._27{width:111.081387pt;}
._2a{width:136.181333pt;}
._21{width:149.031253pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:2.880000pt;}
.y10e{bottom:4.160000pt;}
.y113{bottom:4.320000pt;}
.y10c{bottom:4.800000pt;}
.y121{bottom:5.120000pt;}
.y127{bottom:5.280000pt;}
.y1a9{bottom:5.760000pt;}
.y11e{bottom:6.720000pt;}
.y16f{bottom:6.880000pt;}
.y165{bottom:7.840000pt;}
.y120{bottom:8.320000pt;}
.y171{bottom:8.640000pt;}
.y17d{bottom:8.800000pt;}
.y1a1{bottom:9.120000pt;}
.y163{bottom:10.240000pt;}
.y1c3{bottom:16.480000pt;}
.y16c{bottom:18.240000pt;}
.y16e{bottom:22.240000pt;}
.y1a5{bottom:22.720000pt;}
.y1ac{bottom:22.880000pt;}
.y1a3{bottom:22.920000pt;}
.y170{bottom:24.000000pt;}
.y17c{bottom:24.160000pt;}
.y1a7{bottom:24.634667pt;}
.y1a0{bottom:26.720000pt;}
.y161{bottom:30.240000pt;}
.y16a{bottom:30.720000pt;}
.y1bf{bottom:31.040000pt;}
.y125{bottom:31.520000pt;}
.y1c2{bottom:31.840000pt;}
.y19f{bottom:44.320000pt;}
.y169{bottom:46.080000pt;}
.y1c1{bottom:47.200000pt;}
.y11d{bottom:47.840000pt;}
.y124{bottom:49.120000pt;}
.y6{bottom:51.072000pt;}
.y160{bottom:60.960000pt;}
.y168{bottom:61.280000pt;}
.y19e{bottom:62.080000pt;}
.y1c0{bottom:62.554667pt;}
.y123{bottom:66.920000pt;}
.y1be{bottom:73.312000pt;}
.y15f{bottom:76.160000pt;}
.yfd{bottom:76.512000pt;}
.y167{bottom:76.640000pt;}
.y19d{bottom:79.680000pt;}
.y159{bottom:81.312000pt;}
.y11b{bottom:81.472000pt;}
.ye8{bottom:82.912000pt;}
.y199{bottom:84.832000pt;}
.y34{bottom:87.232000pt;}
.y14a{bottom:88.352000pt;}
.ya4{bottom:88.512000pt;}
.y92{bottom:88.672000pt;}
.yd0{bottom:90.912000pt;}
.y15e{bottom:91.520000pt;}
.y166{bottom:92.000000pt;}
.y177{bottom:92.160000pt;}
.y6a{bottom:92.512000pt;}
.yfc{bottom:94.112000pt;}
.y19c{bottom:97.320000pt;}
.y158{bottom:98.912000pt;}
.y11a{bottom:99.072000pt;}
.ye7{bottom:100.512000pt;}
.y198{bottom:102.432000pt;}
.y1b6{bottom:102.912000pt;}
.y33{bottom:104.832000pt;}
.y149{bottom:105.952000pt;}
.ya3{bottom:106.112000pt;}
.y91{bottom:106.432000pt;}
.y15d{bottom:106.880000pt;}
.y176{bottom:107.360000pt;}
.ycf{bottom:108.512000pt;}
.y69{bottom:110.112000pt;}
.yfb{bottom:111.712000pt;}
.y19b{bottom:114.920000pt;}
.y1a6{bottom:116.352000pt;}
.y157{bottom:116.512000pt;}
.y119{bottom:116.672000pt;}
.ye6{bottom:118.112000pt;}
.y1b5{bottom:120.512000pt;}
.y15c{bottom:122.240000pt;}
.y32{bottom:122.432000pt;}
.y175{bottom:122.720000pt;}
.y148{bottom:123.552000pt;}
.ya2{bottom:123.712000pt;}
.y90{bottom:124.032000pt;}
.yce{bottom:126.112000pt;}
.y68{bottom:127.712000pt;}
.yfa{bottom:129.472000pt;}
.y156{bottom:134.106667pt;}
.y118{bottom:134.266667pt;}
.ye5{bottom:135.706667pt;}
.y1a8{bottom:135.866667pt;}
.y15b{bottom:137.600000pt;}
.y174{bottom:138.080000pt;}
.y1b4{bottom:138.266667pt;}
.ya1{bottom:141.306667pt;}
.y8f{bottom:141.626667pt;}
.ycd{bottom:143.706667pt;}
.y67{bottom:145.466667pt;}
.yf9{bottom:147.066667pt;}
.y31{bottom:148.186667pt;}
.y155{bottom:151.706667pt;}
.y117{bottom:151.866667pt;}
.y173{bottom:153.440000pt;}
.ye4{bottom:153.466667pt;}
.y19a{bottom:154.906667pt;}
.y1b3{bottom:155.866667pt;}
.ya0{bottom:158.906667pt;}
.y8e{bottom:159.226667pt;}
.ycc{bottom:161.466667pt;}
.y66{bottom:163.066667pt;}
.y30{bottom:165.786667pt;}
.y154{bottom:169.466667pt;}
.y116{bottom:169.626667pt;}
.ye3{bottom:171.066667pt;}
.yf8{bottom:172.666667pt;}
.y1b2{bottom:173.466667pt;}
.y147{bottom:176.506667pt;}
.y9f{bottom:176.666667pt;}
.y8d{bottom:176.826667pt;}
.ycb{bottom:179.066667pt;}
.y65{bottom:180.666667pt;}
.y2f{bottom:183.386667pt;}
.y153{bottom:187.066667pt;}
.y115{bottom:187.226667pt;}
.ye2{bottom:188.666667pt;}
.yf7{bottom:190.266667pt;}
.y1b1{bottom:191.066667pt;}
.y1a4{bottom:191.546667pt;}
.y146{bottom:194.106667pt;}
.y8c{bottom:194.586667pt;}
.yca{bottom:196.666667pt;}
.y64{bottom:198.266667pt;}
.y2e{bottom:200.986667pt;}
.y152{bottom:204.666667pt;}
.y114{bottom:204.826667pt;}
.ye1{bottom:206.266667pt;}
.yf6{bottom:207.866667pt;}
.y1b0{bottom:208.666667pt;}
.y145{bottom:211.706667pt;}
.y8b{bottom:212.186667pt;}
.yc9{bottom:214.266667pt;}
.y63{bottom:215.866667pt;}
.y2d{bottom:218.586667pt;}
.y151{bottom:222.266667pt;}
.ye0{bottom:223.866667pt;}
.yf5{bottom:225.626667pt;}
.y1af{bottom:226.426667pt;}
.y1a2{bottom:228.026667pt;}
.y144{bottom:229.466667pt;}
.y8a{bottom:229.786667pt;}
.yc8{bottom:231.866667pt;}
.y62{bottom:233.626667pt;}
.y112{bottom:235.226667pt;}
.y2c{bottom:236.346667pt;}
.y150{bottom:239.866667pt;}
.ydf{bottom:241.626667pt;}
.yf4{bottom:243.226667pt;}
.y1ae{bottom:244.026667pt;}
.y143{bottom:247.066667pt;}
.y89{bottom:247.386667pt;}
.yc7{bottom:249.626667pt;}
.y61{bottom:251.266667pt;}
.y110{bottom:253.346667pt;}
.y2b{bottom:253.986667pt;}
.y14f{bottom:257.666667pt;}
.yde{bottom:259.266667pt;}
.yf3{bottom:260.866667pt;}
.y1ad{bottom:261.666667pt;}
.y142{bottom:264.706667pt;}
.y88{bottom:265.026667pt;}
.yc6{bottom:267.266667pt;}
.y60{bottom:268.866667pt;}
.y10f{bottom:269.986667pt;}
.y2a{bottom:271.586667pt;}
.y14e{bottom:275.266667pt;}
.y1ab{bottom:275.426667pt;}
.ydd{bottom:276.866667pt;}
.yf2{bottom:278.466667pt;}
.y141{bottom:282.306667pt;}
.y87{bottom:282.626667pt;}
.yc5{bottom:284.866667pt;}
.y5f{bottom:286.466667pt;}
.y10d{bottom:288.066667pt;}
.y14d{bottom:292.866667pt;}
.ydc{bottom:294.466667pt;}
.y29{bottom:297.186667pt;}
.y140{bottom:299.906667pt;}
.y86{bottom:300.386667pt;}
.y197{bottom:302.306667pt;}
.yc4{bottom:302.466667pt;}
.y5e{bottom:304.066667pt;}
.y10b{bottom:305.986667pt;}
.y14c{bottom:310.466667pt;}
.ydb{bottom:312.066667pt;}
.y28{bottom:314.786667pt;}
.y13f{bottom:317.666667pt;}
.y85{bottom:317.986667pt;}
.y196{bottom:319.906667pt;}
.yc3{bottom:320.066667pt;}
.y5d{bottom:321.826667pt;}
.y14b{bottom:328.066667pt;}
.yda{bottom:329.826667pt;}
.y15a{bottom:331.426667pt;}
.y27{bottom:332.546667pt;}
.y13e{bottom:335.266667pt;}
.y195{bottom:337.506667pt;}
.yc2{bottom:337.826667pt;}
.y5c{bottom:339.426667pt;}
.y10a{bottom:345.826667pt;}
.yd9{bottom:347.426667pt;}
.y1aa{bottom:348.706667pt;}
.y26{bottom:350.146667pt;}
.y13d{bottom:352.866667pt;}
.yc1{bottom:355.426667pt;}
.y5b{bottom:357.026667pt;}
.y194{bottom:363.106667pt;}
.y109{bottom:363.426667pt;}
.yd8{bottom:365.026667pt;}
.y25{bottom:367.746667pt;}
.y16d{bottom:369.186667pt;}
.y13c{bottom:370.466667pt;}
.yc0{bottom:373.026667pt;}
.y5a{bottom:374.626667pt;}
.y193{bottom:380.866667pt;}
.y108{bottom:381.026667pt;}
.yd7{bottom:382.626667pt;}
.y24{bottom:385.346667pt;}
.y13b{bottom:388.066667pt;}
.ybf{bottom:390.626667pt;}
.y59{bottom:392.226667pt;}
.y192{bottom:398.466667pt;}
.y107{bottom:398.626667pt;}
.yd6{bottom:400.226667pt;}
.y23{bottom:402.946667pt;}
.y16b{bottom:405.186667pt;}
.y13a{bottom:405.826667pt;}
.ybe{bottom:408.226667pt;}
.y58{bottom:409.986667pt;}
.y191{bottom:416.066667pt;}
.y106{bottom:416.226667pt;}
.yd5{bottom:417.986667pt;}
.y22{bottom:420.706667pt;}
.y139{bottom:423.426667pt;}
.ybd{bottom:425.986667pt;}
.y57{bottom:427.586667pt;}
.y190{bottom:433.666667pt;}
.y105{bottom:433.986667pt;}
.y1bd{bottom:434.306667pt;}
.yd4{bottom:435.586667pt;}
.y164{bottom:437.186667pt;}
.y21{bottom:438.306667pt;}
.y138{bottom:441.026667pt;}
.ybc{bottom:443.586667pt;}
.y56{bottom:445.186667pt;}
.yf1{bottom:449.826667pt;}
.y1bc{bottom:450.786667pt;}
.y18f{bottom:451.266667pt;}
.y104{bottom:451.586667pt;}
.yd3{bottom:453.186667pt;}
.y20{bottom:455.906667pt;}
.y137{bottom:458.626667pt;}
.y162{bottom:458.786667pt;}
.ybb{bottom:461.186667pt;}
.y55{bottom:462.786667pt;}
.y1bb{bottom:466.466667pt;}
.yf0{bottom:467.426667pt;}
.y18e{bottom:469.026667pt;}
.y103{bottom:469.186667pt;}
.yd2{bottom:470.786667pt;}
.y1f{bottom:473.506667pt;}
.y136{bottom:476.226667pt;}
.y9e{bottom:477.986667pt;}
.yba{bottom:478.786667pt;}
.y54{bottom:480.386667pt;}
.y1ba{bottom:483.266667pt;}
.y18d{bottom:486.626667pt;}
.y102{bottom:486.786667pt;}
.yd1{bottom:488.386667pt;}
.y1e{bottom:491.106667pt;}
.y1b7{bottom:491.426667pt;}
.y135{bottom:493.986667pt;}
.y9d{bottom:495.746667pt;}
.yb9{bottom:496.386667pt;}
.yef{bottom:498.146667pt;}
.y1b9{bottom:500.226667pt;}
.y18c{bottom:504.253333pt;}
.y101{bottom:504.413333pt;}
.y53{bottom:506.173333pt;}
.y1d{bottom:508.893333pt;}
.y134{bottom:511.613333pt;}
.y9c{bottom:513.373333pt;}
.yb8{bottom:514.173333pt;}
.yee{bottom:515.773333pt;}
.y1b8{bottom:517.053333pt;}
.y18b{bottom:521.853333pt;}
.y100{bottom:522.173333pt;}
.y52{bottom:523.773333pt;}
.y1c{bottom:526.493333pt;}
.y133{bottom:529.213333pt;}
.y9b{bottom:530.973333pt;}
.yb7{bottom:531.773333pt;}
.yed{bottom:538.013333pt;}
.y18a{bottom:539.453333pt;}
.yff{bottom:539.773333pt;}
.y51{bottom:541.373333pt;}
.y1b{bottom:544.093333pt;}
.y132{bottom:546.813333pt;}
.y9a{bottom:548.573333pt;}
.yb6{bottom:549.373333pt;}
.yec{bottom:550.973333pt;}
.y189{bottom:557.213333pt;}
.yfe{bottom:557.373333pt;}
.y50{bottom:558.973333pt;}
.y1a{bottom:561.693333pt;}
.y131{bottom:564.413333pt;}
.y99{bottom:566.173333pt;}
.yb5{bottom:566.973333pt;}
.yeb{bottom:568.573333pt;}
.y188{bottom:574.813333pt;}
.y84{bottom:574.973333pt;}
.y4f{bottom:576.573333pt;}
.y19{bottom:579.293333pt;}
.y130{bottom:582.173333pt;}
.y98{bottom:583.933333pt;}
.yb4{bottom:584.573333pt;}
.yea{bottom:586.333333pt;}
.y187{bottom:592.413333pt;}
.y83{bottom:592.573333pt;}
.y4e{bottom:594.333333pt;}
.y18{bottom:598.973333pt;}
.y12f{bottom:599.773333pt;}
.y97{bottom:601.533333pt;}
.yb3{bottom:602.333333pt;}
.ye9{bottom:603.933333pt;}
.y186{bottom:610.013333pt;}
.y82{bottom:610.333333pt;}
.y4d{bottom:611.933333pt;}
.y12e{bottom:617.373333pt;}
.y96{bottom:619.133333pt;}
.yb2{bottom:619.933333pt;}
.y17{bottom:624.573333pt;}
.y185{bottom:627.613333pt;}
.y81{bottom:627.933333pt;}
.y4c{bottom:629.533333pt;}
.y12d{bottom:634.973333pt;}
.y95{bottom:636.733333pt;}
.yb1{bottom:637.533333pt;}
.y16{bottom:642.333333pt;}
.y184{bottom:645.373333pt;}
.y80{bottom:645.533333pt;}
.y4b{bottom:647.133333pt;}
.y12c{bottom:652.573333pt;}
.y94{bottom:654.333333pt;}
.yb0{bottom:655.133333pt;}
.y15{bottom:659.933333pt;}
.y183{bottom:662.973333pt;}
.y7f{bottom:663.133333pt;}
.y4a{bottom:664.733333pt;}
.y12b{bottom:670.333333pt;}
.y93{bottom:672.093333pt;}
.yaf{bottom:672.733333pt;}
.y14{bottom:677.533333pt;}
.y182{bottom:680.573333pt;}
.y7e{bottom:680.733333pt;}
.y49{bottom:682.493333pt;}
.y12a{bottom:687.933333pt;}
.yae{bottom:690.493333pt;}
.y13{bottom:695.133333pt;}
.y181{bottom:698.173333pt;}
.y7d{bottom:698.493333pt;}
.y48{bottom:700.093333pt;}
.y122{bottom:701.693333pt;}
.yad{bottom:708.093333pt;}
.y12{bottom:712.733333pt;}
.y180{bottom:715.773333pt;}
.y7c{bottom:716.093333pt;}
.y47{bottom:717.693333pt;}
.y129{bottom:720.733333pt;}
.yac{bottom:725.693333pt;}
.y11{bottom:730.493333pt;}
.y17f{bottom:733.533333pt;}
.y7b{bottom:733.693333pt;}
.y46{bottom:735.293333pt;}
.y128{bottom:742.813333pt;}
.yab{bottom:743.293333pt;}
.y10{bottom:748.093333pt;}
.y17e{bottom:751.133333pt;}
.y7a{bottom:751.293333pt;}
.y45{bottom:752.893333pt;}
.yaa{bottom:760.933333pt;}
.y126{bottom:763.333333pt;}
.y172{bottom:764.933333pt;}
.yf{bottom:765.733333pt;}
.y79{bottom:768.933333pt;}
.y44{bottom:770.693333pt;}
.ya9{bottom:778.693333pt;}
.y11c{bottom:782.373333pt;}
.ye{bottom:783.333333pt;}
.y78{bottom:786.693333pt;}
.y43{bottom:788.293333pt;}
.ya8{bottom:796.293333pt;}
.yd{bottom:800.933333pt;}
.y11f{bottom:801.253333pt;}
.y17b{bottom:802.853333pt;}
.y77{bottom:804.293333pt;}
.y42{bottom:805.893333pt;}
.ya7{bottom:813.893333pt;}
.yc{bottom:818.373333pt;}
.y76{bottom:821.893333pt;}
.y41{bottom:823.493333pt;}
.ya6{bottom:831.493333pt;}
.y17a{bottom:834.853333pt;}
.yb{bottom:835.973333pt;}
.y75{bottom:839.493333pt;}
.y40{bottom:841.093333pt;}
.ya5{bottom:849.093333pt;}
.ya{bottom:854.053333pt;}
.y74{bottom:857.093333pt;}
.y3f{bottom:866.853333pt;}
.y9{bottom:872.933333pt;}
.y73{bottom:874.853333pt;}
.y179{bottom:883.493333pt;}
.y3e{bottom:884.453333pt;}
.y72{bottom:892.453333pt;}
.y8{bottom:893.893333pt;}
.y3d{bottom:902.053333pt;}
.y71{bottom:910.053333pt;}
.y178{bottom:915.493333pt;}
.y3c{bottom:919.653333pt;}
.y7{bottom:922.053333pt;}
.y70{bottom:927.653333pt;}
.y3b{bottom:937.253333pt;}
.y6f{bottom:945.253333pt;}
.y5{bottom:953.573333pt;}
.y3a{bottom:955.013333pt;}
.y6e{bottom:963.013333pt;}
.y39{bottom:972.613333pt;}
.y4{bottom:978.533333pt;}
.y6d{bottom:980.613333pt;}
.y38{bottom:990.213333pt;}
.y6c{bottom:998.213333pt;}
.y3{bottom:1003.333333pt;}
.y37{bottom:1007.840000pt;}
.y6b{bottom:1015.840000pt;}
.y2{bottom:1028.320000pt;}
.y36{bottom:1033.440000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.h2b{height:2.512500pt;}
.h10{height:15.360000pt;}
.hf{height:16.640000pt;}
.h11{height:16.832000pt;}
.he{height:17.280000pt;}
.h15{height:17.600000pt;}
.h18{height:17.760000pt;}
.h28{height:18.240000pt;}
.h13{height:19.200000pt;}
.h19{height:19.232000pt;}
.h1c{height:20.320000pt;}
.h14{height:20.800000pt;}
.h1b{height:22.560000pt;}
.h22{height:30.560000pt;}
.h1e{height:30.720000pt;}
.hc{height:33.918750pt;}
.h1f{height:34.720000pt;}
.hd{height:34.975000pt;}
.h26{height:35.200000pt;}
.h29{height:35.360000pt;}
.h25{height:35.392000pt;}
.h20{height:36.480000pt;}
.h23{height:36.640000pt;}
.ha{height:37.090625pt;}
.h27{height:37.120000pt;}
.h17{height:52.108438pt;}
.h6{height:52.134375pt;}
.hb{height:52.478750pt;}
.h5{height:53.535000pt;}
.h8{height:54.598989pt;}
.h7{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.h12{height:60.320000pt;}
.h2a{height:75.040000pt;}
.h16{height:79.392000pt;}
.h2{height:85.785000pt;}
.h1d{height:104.480000pt;}
.h24{height:127.392000pt;}
.h1a{height:149.920000pt;}
.h21{height:165.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:77.280000pt;}
.w7{width:81.472000pt;}
.w5{width:86.560000pt;}
.wf{width:97.440000pt;}
.w12{width:100.032000pt;}
.w3{width:104.000000pt;}
.wb{width:104.800000pt;}
.wc{width:114.592000pt;}
.w6{width:125.280000pt;}
.wd{width:125.792000pt;}
.w13{width:130.752000pt;}
.w4{width:134.586667pt;}
.w18{width:148.666667pt;}
.w15{width:149.306667pt;}
.w16{width:160.666667pt;}
.w9{width:184.026667pt;}
.w1a{width:187.386667pt;}
.w10{width:189.146667pt;}
.wa{width:235.586667pt;}
.w17{width:242.106667pt;}
.w19{width:244.666667pt;}
.we{width:253.466667pt;}
.w11{width:291.586667pt;}
.w14{width:415.266667pt;}
.w1b{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.880000pt;}
.x12{left:20.000000pt;}
.x1{left:48.159988pt;}
.x25{left:66.079988pt;}
.x19{left:72.640000pt;}
.x9{left:88.832000pt;}
.x1f{left:92.991988pt;}
.x11{left:95.552000pt;}
.x24{left:102.111988pt;}
.x16{left:106.592000pt;}
.x1c{left:108.032000pt;}
.x20{left:112.351988pt;}
.x21{left:125.791988pt;}
.x6{left:146.266655pt;}
.x26{left:170.106667pt;}
.x22{left:171.706655pt;}
.x1a{left:173.946667pt;}
.x23{left:185.146655pt;}
.xf{left:186.426667pt;}
.xa{left:194.266667pt;}
.x13{left:201.786667pt;}
.x17{left:205.306667pt;}
.x27{left:235.386667pt;}
.x5{left:245.786655pt;}
.x3{left:257.986655pt;}
.x4{left:274.946655pt;}
.x2{left:299.106655pt;}
.x1b{left:305.986667pt;}
.x14{left:317.826667pt;}
.xb{left:330.306667pt;}
.x10{left:371.906667pt;}
.x18{left:395.746667pt;}
.xc{left:418.333333pt;}
.x1d{left:420.733333pt;}
.x15{left:444.893333pt;}
.xd{left:544.893333pt;}
.x7{left:547.613322pt;}
.x8{left:561.373322pt;}
.xe{left:627.653333pt;}
.x1e{left:745.893322pt;}
}




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