
    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_523c6b758f9341cb5b2f9c95.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_556f1b65e120fcd9e141d8ae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.182129;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_d2a7b44327dc9055c4055c03.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060547;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_7741d21aebcaafa521dfb7eb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_90def8ee5cae7cb029d2ab65.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_5b60af221e7d6b129d1fd504.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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_6ce884db3b4d3c2c78caf198.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_df33420c4d0d171c4845e087.woff')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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_5b60af221e7d6b129d1fd504.woff')format("woff");}.ff9{font-family:ff9;line-height:1.024414;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_8ac6fd56954c2958221a87de.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d283f8ec501515f52e5af6cc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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);}
.v2{vertical-align:-82.041000px;}
.v4{vertical-align:-22.807200px;}
.v3{vertical-align:-12.006000px;}
.v5{vertical-align:-6.003000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.962000px;}
.ls44{letter-spacing:-5.508000px;}
.ls6{letter-spacing:-5.184000px;}
.ls17{letter-spacing:-3.840000px;}
.ls43{letter-spacing:-3.819000px;}
.ls4d{letter-spacing:-3.528000px;}
.lse{letter-spacing:-3.276000px;}
.lsc{letter-spacing:-2.808000px;}
.lsb{letter-spacing:-2.700000px;}
.lsf{letter-spacing:-2.604000px;}
.lsa{letter-spacing:-2.268000px;}
.ls25{letter-spacing:-2.109000px;}
.ls10{letter-spacing:-1.848000px;}
.ls18{letter-spacing:-1.800000px;}
.ls4b{letter-spacing:-1.764000px;}
.ls8{letter-spacing:-1.728000px;}
.ls3d{letter-spacing:-1.656000px;}
.lsd{letter-spacing:-1.596000px;}
.ls39{letter-spacing:-1.518000px;}
.ls3b{letter-spacing:-1.458000px;}
.ls1a{letter-spacing:-1.380000px;}
.ls26{letter-spacing:-1.377000px;}
.ls1b{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.897000px;}
.ls15{letter-spacing:-0.855000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.627000px;}
.ls2a{letter-spacing:-0.603405px;}
.ls2c{letter-spacing:-0.570000px;}
.ls29{letter-spacing:-0.483000px;}
.ls1e{letter-spacing:-0.405000px;}
.ls19{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.207000px;}
.ls4{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.171000px;}
.ls1{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000300px;}
.ls3e{letter-spacing:0.005400px;}
.ls40{letter-spacing:0.007800px;}
.ls35{letter-spacing:0.008184px;}
.ls2f{letter-spacing:0.009813px;}
.ls3f{letter-spacing:0.015600px;}
.ls2e{letter-spacing:0.020700px;}
.ls4f{letter-spacing:0.588000px;}
.ls34{letter-spacing:0.828000px;}
.ls16{letter-spacing:1.200000px;}
.ls36{letter-spacing:1.607700px;}
.ls4c{letter-spacing:2.041200px;}
.ls49{letter-spacing:2.318400px;}
.ls12{letter-spacing:2.400000px;}
.ls1c{letter-spacing:3.300000px;}
.ls27{letter-spacing:3.450000px;}
.ls28{letter-spacing:3.477600px;}
.ls41{letter-spacing:3.746700px;}
.ls0{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.275000px;}
.ls46{letter-spacing:4.347000px;}
.ls2d{letter-spacing:4.616100px;}
.ls2b{letter-spacing:4.650000px;}
.ls22{letter-spacing:5.733900px;}
.ls3{letter-spacing:5.820000px;}
.ls11{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls42{letter-spacing:6.030600px;}
.ls4e{letter-spacing:6.048000px;}
.ls14{letter-spacing:6.300000px;}
.ls13{letter-spacing:6.675000px;}
.ls45{letter-spacing:7.200000px;}
.ls4a{letter-spacing:7.500000px;}
.ls1f{letter-spacing:7.652100px;}
.ls20{letter-spacing:7.659000px;}
.ls38{letter-spacing:8.175000px;}
.ls30{letter-spacing:8.714700px;}
.ls33{letter-spacing:9.528900px;}
.ls48{letter-spacing:13.589100px;}
.ls32{letter-spacing:21.134700px;}
.ls47{letter-spacing:25.678800px;}
.ls31{letter-spacing:33.120000px;}
.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;}
}
.ws34{word-spacing:-29.250000px;}
.ws42{word-spacing:-28.575000px;}
.ws3e{word-spacing:-28.275000px;}
.ws15{word-spacing:-27.750000px;}
.ws2f{word-spacing:-25.725000px;}
.ws0{word-spacing:-25.596000px;}
.ws27{word-spacing:-25.350000px;}
.ws21{word-spacing:-24.375000px;}
.ws45{word-spacing:-24.192000px;}
.ws1{word-spacing:-23.976000px;}
.ws2{word-spacing:-22.740000px;}
.ws36{word-spacing:-22.113000px;}
.ws40{word-spacing:-22.050000px;}
.ws33{word-spacing:-20.217000px;}
.ws1b{word-spacing:-19.389000px;}
.ws32{word-spacing:-18.650700px;}
.ws3b{word-spacing:-18.630000px;}
.ws28{word-spacing:-18.423000px;}
.ws16{word-spacing:-18.102000px;}
.ws22{word-spacing:-17.043000px;}
.ws37{word-spacing:-16.974000px;}
.ws4{word-spacing:-16.860000px;}
.ws2c{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.146000px;}
.ws43{word-spacing:-15.561000px;}
.ws3{word-spacing:-14.820000px;}
.ws44{word-spacing:-13.797000px;}
.ws3a{word-spacing:-13.572300px;}
.ws19{word-spacing:-13.440000px;}
.ws1a{word-spacing:-11.303787px;}
.ws30{word-spacing:-10.861290px;}
.ws2d{word-spacing:-10.257885px;}
.ws48{word-spacing:-7.500000px;}
.ws41{word-spacing:-6.300000px;}
.ws47{word-spacing:-6.048000px;}
.ws6{word-spacing:-6.000000px;}
.ws7{word-spacing:-5.820000px;}
.ws14{word-spacing:-4.200000px;}
.ws17{word-spacing:-2.400000px;}
.ws20{word-spacing:-1.200000px;}
.ws5{word-spacing:0.000000px;}
.ws29{word-spacing:0.171000px;}
.ws8{word-spacing:0.180000px;}
.ws26{word-spacing:0.207000px;}
.ws9{word-spacing:0.240000px;}
.ws1e{word-spacing:0.300000px;}
.ws25{word-spacing:0.405000px;}
.ws31{word-spacing:0.570000px;}
.ws24{word-spacing:0.627000px;}
.ws18{word-spacing:0.855000px;}
.wsb{word-spacing:0.972000px;}
.wse{word-spacing:1.080000px;}
.ws1f{word-spacing:1.200000px;}
.ws2b{word-spacing:1.377000px;}
.ws39{word-spacing:1.458000px;}
.ws38{word-spacing:1.518000px;}
.ws10{word-spacing:1.596000px;}
.wsc{word-spacing:1.728000px;}
.ws1d{word-spacing:1.800000px;}
.ws13{word-spacing:1.848000px;}
.ws2a{word-spacing:2.109000px;}
.wsd{word-spacing:2.268000px;}
.ws12{word-spacing:2.604000px;}
.wsf{word-spacing:2.808000px;}
.ws11{word-spacing:3.276000px;}
.ws46{word-spacing:3.528000px;}
.ws3c{word-spacing:3.819000px;}
.ws1c{word-spacing:3.840000px;}
.ws2e{word-spacing:3.864000px;}
.ws23{word-spacing:4.140000px;}
.wsa{word-spacing:5.184000px;}
.ws3d{word-spacing:5.508000px;}
.ws3f{word-spacing:15.801000px;}
._21{margin-left:-11.110800px;}
._34{margin-left:-8.862600px;}
._18{margin-left:-7.647900px;}
._d{margin-left:-6.603600px;}
._6{margin-left:-5.245800px;}
._9{margin-left:-3.480000px;}
._8{margin-left:-2.364600px;}
._3{margin-left:-1.057800px;}
._5{width:1.159800px;}
._1{width:2.400000px;}
._a{width:3.758400px;}
._12{width:4.832400px;}
._4{width:5.880000px;}
._7{width:7.146000px;}
._1d{width:8.222700px;}
._26{width:9.234900px;}
._e{width:10.254000px;}
._24{width:12.274500px;}
._1c{width:13.423500px;}
._15{width:14.778600px;}
._11{width:15.837000px;}
._23{width:17.134200px;}
._1e{width:18.324000px;}
._17{width:20.953500px;}
._10{width:22.000200px;}
._20{width:23.893500px;}
._c{width:25.641600px;}
._b{width:27.451200px;}
._16{width:28.782600px;}
._1f{width:30.548400px;}
._1b{width:33.147600px;}
._35{width:35.494200px;}
._27{width:36.951300px;}
._29{width:38.626800px;}
._28{width:39.688800px;}
._2c{width:42.000300px;}
._1a{width:43.794300px;}
._19{width:44.880000px;}
._30{width:46.505100px;}
._2a{width:52.095000px;}
._f{width:62.454000px;}
._37{width:71.009400px;}
._36{width:76.797000px;}
._31{width:92.184000px;}
._14{width:260.610000px;}
._32{width:492.457200px;}
._33{width:494.430000px;}
._13{width:501.390000px;}
._2f{width:503.040000px;}
._25{width:504.373800px;}
._0{width:578.400000px;}
._2d{width:616.114200px;}
._22{width:993.706200px;}
._2b{width:996.331200px;}
._2e{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:48.300000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fsb{font-size:78.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yb1{bottom:106.165350px;}
.y119{bottom:106.254750px;}
.y153{bottom:106.267200px;}
.y174{bottom:106.268850px;}
.y8a{bottom:106.275150px;}
.y1e{bottom:106.283250px;}
.yee{bottom:106.292250px;}
.y134{bottom:106.300650px;}
.y1d0{bottom:106.304100px;}
.ycd{bottom:106.304700px;}
.y10b{bottom:106.324950px;}
.y194{bottom:106.334700px;}
.y67{bottom:106.342950px;}
.y1b6{bottom:106.370850px;}
.y43{bottom:106.519050px;}
.y1d{bottom:125.978250px;}
.y152{bottom:126.553200px;}
.yb0{bottom:126.589350px;}
.y1cf{bottom:126.614100px;}
.y118{bottom:126.678750px;}
.ycc{bottom:126.814950px;}
.y89{bottom:126.906150px;}
.yed{bottom:127.095750px;}
.y173{bottom:127.227600px;}
.y193{bottom:127.360950px;}
.y42{bottom:127.564050px;}
.y1b5{bottom:127.570350px;}
.y10a{bottom:127.645950px;}
.y66{bottom:127.681200px;}
.y133{bottom:130.102800px;}
.y151{bottom:146.839200px;}
.y1ce{bottom:146.924100px;}
.yaf{bottom:147.013350px;}
.y117{bottom:147.102750px;}
.ycb{bottom:147.325200px;}
.y88{bottom:147.537150px;}
.y192{bottom:148.387200px;}
.y41{bottom:148.609050px;}
.y109{bottom:148.966950px;}
.y65{bottom:149.019450px;}
.y132{bottom:153.890550px;}
.y1c{bottom:154.178250px;}
.y1b4{bottom:157.274850px;}
.y150{bottom:167.125200px;}
.y1cd{bottom:167.234100px;}
.yae{bottom:167.437350px;}
.y116{bottom:167.526750px;}
.y87{bottom:168.168150px;}
.yec{bottom:168.646050px;}
.y172{bottom:169.145100px;}
.y191{bottom:169.413450px;}
.y40{bottom:169.654050px;}
.y108{bottom:170.287950px;}
.y64{bottom:170.357700px;}
.y131{bottom:177.678300px;}
.y1b3{bottom:178.474350px;}
.y14f{bottom:187.411200px;}
.y1cc{bottom:187.544100px;}
.yad{bottom:187.861350px;}
.yca{bottom:188.362950px;}
.y86{bottom:188.799150px;}
.yeb{bottom:189.449550px;}
.y171{bottom:190.103850px;}
.y190{bottom:190.439700px;}
.y3f{bottom:190.699050px;}
.y107{bottom:191.608950px;}
.y63{bottom:191.695950px;}
.y1b2{bottom:199.673850px;}
.y1b{bottom:203.633250px;}
.y14e{bottom:207.697200px;}
.yac{bottom:208.285350px;}
.y115{bottom:208.374750px;}
.yea{bottom:210.253050px;}
.y170{bottom:211.062600px;}
.y3e{bottom:211.744050px;}
.y106{bottom:212.929950px;}
.y62{bottom:213.034200px;}
.y18f{bottom:219.970950px;}
.y1cb{bottom:220.619100px;}
.y1a{bottom:224.828250px;}
.y130{bottom:225.253800px;}
.y14d{bottom:227.983200px;}
.yab{bottom:228.709350px;}
.y1b1{bottom:229.378350px;}
.yc9{bottom:229.400700px;}
.y85{bottom:230.665950px;}
.ye9{bottom:231.056550px;}
.y16f{bottom:232.021350px;}
.y3d{bottom:232.789050px;}
.y61{bottom:234.372450px;}
.y19{bottom:245.982300px;}
.y14c{bottom:248.269200px;}
.y12f{bottom:249.041550px;}
.yaa{bottom:249.133350px;}
.y1b0{bottom:250.577850px;}
.ye8{bottom:251.860050px;}
.y16e{bottom:252.980100px;}
.y3c{bottom:253.834050px;}
.y84{bottom:255.046950px;}
.y105{bottom:255.589200px;}
.y60{bottom:255.710700px;}
.y18{bottom:265.677300px;}
.y14b{bottom:268.555200px;}
.ya9{bottom:269.557350px;}
.y114{bottom:269.629500px;}
.yc8{bottom:271.177350px;}
.y18e{bottom:271.639800px;}
.y1af{bottom:271.777350px;}
.ye7{bottom:272.663550px;}
.y12e{bottom:272.829300px;}
.y16d{bottom:273.938850px;}
.y3b{bottom:274.879050px;}
.y5f{bottom:277.048950px;}
.y1ca{bottom:279.217200px;}
.y83{bottom:279.427950px;}
.y17{bottom:285.372300px;}
.ya8{bottom:289.981350px;}
.y113{bottom:290.053500px;}
.y18d{bottom:292.667550px;}
.ye6{bottom:293.467050px;}
.y3a{bottom:295.924050px;}
.y12d{bottom:296.617050px;}
.y104{bottom:298.183800px;}
.y5e{bottom:298.387200px;}
.y1ae{bottom:301.481850px;}
.y82{bottom:303.808950px;}
.y16{bottom:305.067300px;}
.y1c9{bottom:307.021200px;}
.y14a{bottom:310.096950px;}
.ya7{bottom:310.405350px;}
.y112{bottom:310.477500px;}
.y18c{bottom:313.695300px;}
.y16c{bottom:315.856350px;}
.y39{bottom:316.969050px;}
.y5d{bottom:319.725450px;}
.y12c{bottom:320.404800px;}
.y1ad{bottom:322.681350px;}
.y103{bottom:323.253300px;}
.y15{bottom:324.762300px;}
.ya6{bottom:330.829350px;}
.y111{bottom:330.901500px;}
.yc7{bottom:333.732000px;}
.y18b{bottom:334.723050px;}
.y1c8{bottom:334.825200px;}
.ye5{bottom:335.523300px;}
.y16b{bottom:336.815100px;}
.y38{bottom:338.014050px;}
.y5c{bottom:341.063700px;}
.y1ac{bottom:343.880850px;}
.y12b{bottom:344.192550px;}
.y14{bottom:344.457300px;}
.ya5{bottom:351.253350px;}
.y110{bottom:351.325500px;}
.yc6{bottom:354.242250px;}
.y18a{bottom:355.750800px;}
.y16a{bottom:357.773850px;}
.y37{bottom:359.059050px;}
.y5b{bottom:362.405700px;}
.y13{bottom:364.152300px;}
.y1ab{bottom:365.080350px;}
.y81{bottom:366.295350px;}
.ya4{bottom:371.677350px;}
.y10f{bottom:371.749500px;}
.y149{bottom:372.376650px;}
.y12a{bottom:373.724550px;}
.yc5{bottom:374.752500px;}
.y189{bottom:376.778550px;}
.y36{bottom:380.104050px;}
.y5a{bottom:383.743950px;}
.y12{bottom:383.847300px;}
.y80{bottom:386.926350px;}
.y102{bottom:390.903750px;}
.y129{bottom:391.783650px;}
.ya3{bottom:392.101350px;}
.y10e{bottom:392.173500px;}
.y148{bottom:392.662650px;}
.y1aa{bottom:394.784850px;}
.yc4{bottom:395.262750px;}
.y188{bottom:397.806300px;}
.ye4{bottom:398.309100px;}
.y169{bottom:399.691350px;}
.y35{bottom:401.149050px;}
.y11{bottom:403.542300px;}
.y7f{bottom:407.557350px;}
.y101{bottom:412.224750px;}
.ya2{bottom:412.525350px;}
.y10d{bottom:412.597500px;}
.y147{bottom:412.948650px;}
.y128{bottom:415.571400px;}
.y1a9{bottom:415.984350px;}
.y187{bottom:418.834050px;}
.ye3{bottom:419.112600px;}
.y168{bottom:420.650100px;}
.y34{bottom:422.194050px;}
.y59{bottom:426.349950px;}
.y7e{bottom:428.188350px;}
.ya1{bottom:432.949350px;}
.y10c{bottom:433.021500px;}
.y146{bottom:433.234650px;}
.y100{bottom:433.545750px;}
.y10{bottom:435.987300px;}
.yc3{bottom:437.046900px;}
.y1a8{bottom:437.183850px;}
.y127{bottom:439.359150px;}
.y186{bottom:439.861800px;}
.ye2{bottom:439.916100px;}
.y167{bottom:441.608850px;}
.y33{bottom:443.239050px;}
.y7d{bottom:448.819350px;}
.y58{bottom:451.439700px;}
.ya0{bottom:453.373350px;}
.y145{bottom:453.520650px;}
.yff{bottom:454.866750px;}
.y1a7{bottom:458.383350px;}
.ye1{bottom:460.719600px;}
.y185{bottom:460.889550px;}
.yc2{bottom:461.306400px;}
.y166{bottom:462.567600px;}
.y126{bottom:463.146900px;}
.y32{bottom:464.284050px;}
.y7c{bottom:469.450350px;}
.y1c7{bottom:472.668600px;}
.y144{bottom:473.774550px;}
.y9f{bottom:473.797350px;}
.y57{bottom:476.529450px;}
.ye0{bottom:481.523100px;}
.y184{bottom:481.917300px;}
.y165{bottom:483.526350px;}
.y31{bottom:485.329050px;}
.y125{bottom:486.934650px;}
.y1a6{bottom:488.087850px;}
.yf{bottom:489.684000px;}
.y7b{bottom:490.081350px;}
.y143{bottom:494.060550px;}
.y9e{bottom:494.221350px;}
.yfe{bottom:497.526000px;}
.y1c6{bottom:502.231350px;}
.ydf{bottom:502.319400px;}
.y183{bottom:502.945050px;}
.y30{bottom:506.374050px;}
.y1a5{bottom:509.287350px;}
.y7a{bottom:510.712350px;}
.y124{bottom:510.722400px;}
.y9d{bottom:514.645350px;}
.y1e2{bottom:515.442750px;}
.ye{bottom:516.879000px;}
.yfd{bottom:518.847000px;}
.yc1{bottom:523.943100px;}
.y182{bottom:523.972800px;}
.y164{bottom:525.443850px;}
.y2f{bottom:527.419050px;}
.yde{bottom:528.255600px;}
.y1a4{bottom:530.486850px;}
.y79{bottom:531.343350px;}
.y123{bottom:534.510150px;}
.y142{bottom:534.632550px;}
.y9c{bottom:535.069350px;}
.y1e1{bottom:535.692750px;}
.y56{bottom:539.951100px;}
.yfc{bottom:540.168000px;}
.yd{bottom:544.074000px;}
.yc0{bottom:544.453350px;}
.y181{bottom:545.000550px;}
.y163{bottom:546.402600px;}
.y2e{bottom:548.464050px;}
.ydd{bottom:549.059100px;}
.y1a3{bottom:551.686350px;}
.y78{bottom:551.974350px;}
.y1c5{bottom:553.812600px;}
.y141{bottom:554.918550px;}
.y9b{bottom:555.493350px;}
.y1e0{bottom:555.942750px;}
.y122{bottom:558.297900px;}
.y55{bottom:561.289350px;}
.ybf{bottom:564.963600px;}
.y180{bottom:566.028300px;}
.y162{bottom:567.361350px;}
.y2d{bottom:569.509050px;}
.y77{bottom:572.605350px;}
.y1c4{bottom:574.870350px;}
.y140{bottom:575.204550px;}
.y9a{bottom:575.917350px;}
.y1df{bottom:576.192750px;}
.y1a2{bottom:581.390850px;}
.y121{bottom:582.085650px;}
.y54{bottom:582.627600px;}
.yfb{bottom:582.827250px;}
.ybe{bottom:585.473850px;}
.y17f{bottom:587.056050px;}
.y161{bottom:588.320100px;}
.y2c{bottom:590.554050px;}
.ydc{bottom:590.648850px;}
.yc{bottom:592.493400px;}
.y76{bottom:593.236350px;}
.y99{bottom:596.341350px;}
.y1a1{bottom:602.590350px;}
.y53{bottom:603.965850px;}
.yfa{bottom:604.148250px;}
.y1c3{bottom:604.433100px;}
.y120{bottom:605.873400px;}
.ybd{bottom:605.984100px;}
.y17e{bottom:608.083800px;}
.y1de{bottom:609.192750px;}
.ydb{bottom:611.452350px;}
.y2b{bottom:611.599050px;}
.y75{bottom:613.867350px;}
.y13f{bottom:615.776550px;}
.y98{bottom:616.765350px;}
.y1a0{bottom:623.789850px;}
.yb{bottom:624.191400px;}
.y52{bottom:625.304100px;}
.yf9{bottom:625.469250px;}
.y1c2{bottom:625.490850px;}
.ybc{bottom:626.494350px;}
.y17d{bottom:629.111550px;}
.y160{bottom:630.237600px;}
.yda{bottom:632.255850px;}
.y2a{bottom:632.644050px;}
.y74{bottom:634.498350px;}
.y11f{bottom:635.405400px;}
.y97{bottom:637.189350px;}
.y13e{bottom:641.806800px;}
.y19f{bottom:644.989350px;}
.y1c1{bottom:646.548600px;}
.y51{bottom:646.642350px;}
.yf8{bottom:646.790250px;}
.ybb{bottom:647.004600px;}
.y17c{bottom:650.139300px;}
.y1dd{bottom:650.697750px;}
.y15f{bottom:651.196350px;}
.yd9{bottom:653.059350px;}
.y29{bottom:653.689050px;}
.y73{bottom:655.129350px;}
.ya{bottom:655.889400px;}
.y96{bottom:657.613350px;}
.yba{bottom:667.514850px;}
.y1c0{bottom:667.606350px;}
.y50{bottom:667.980600px;}
.yf7{bottom:668.111250px;}
.y1dc{bottom:670.197750px;}
.y17b{bottom:671.167050px;}
.y15e{bottom:672.155100px;}
.yd8{bottom:673.862850px;}
.y19e{bottom:674.693850px;}
.y11e{bottom:674.710200px;}
.y72{bottom:675.760350px;}
.y13d{bottom:676.590300px;}
.y95{bottom:678.037350px;}
.y9{bottom:687.587400px;}
.yb9{bottom:688.025100px;}
.y1bf{bottom:688.664100px;}
.y4f{bottom:689.318850px;}
.yf6{bottom:689.432250px;}
.y1db{bottom:689.697750px;}
.y17a{bottom:692.194800px;}
.y15d{bottom:693.113850px;}
.yd7{bottom:694.666350px;}
.y19d{bottom:695.893350px;}
.y28{bottom:696.002400px;}
.y71{bottom:696.391350px;}
.y13c{bottom:696.876300px;}
.y94{bottom:698.461350px;}
.yb8{bottom:708.535350px;}
.y1da{bottom:709.197750px;}
.y4e{bottom:710.657100px;}
.y179{bottom:713.222550px;}
.y15c{bottom:714.072600px;}
.yd6{bottom:715.469850px;}
.y70{bottom:717.022350px;}
.y19c{bottom:717.092850px;}
.y1be{bottom:718.226850px;}
.y93{bottom:718.885350px;}
.y8{bottom:719.285400px;}
.y1d9{bottom:728.697750px;}
.y4d{bottom:731.995350px;}
.yf5{bottom:732.091500px;}
.y15b{bottom:735.031350px;}
.yd5{bottom:736.273350px;}
.y13b{bottom:737.448300px;}
.y6f{bottom:737.653350px;}
.y1bd{bottom:739.284600px;}
.y92{bottom:739.309350px;}
.y19b{bottom:746.797350px;}
.y1d8{bottom:748.197750px;}
.yb7{bottom:749.555850px;}
.y4c{bottom:753.333600px;}
.yf4{bottom:753.412500px;}
.y178{bottom:755.515950px;}
.y15a{bottom:755.990100px;}
.yd4{bottom:757.076850px;}
.y13a{bottom:757.734300px;}
.y6e{bottom:758.284350px;}
.y27{bottom:759.067050px;}
.y91{bottom:759.733350px;}
.y11d{bottom:761.776200px;}
.y1d7{bottom:767.697750px;}
.y19a{bottom:767.996850px;}
.y1bc{bottom:768.847350px;}
.yb6{bottom:770.066100px;}
.y4b{bottom:774.671850px;}
.yf3{bottom:774.733500px;}
.y159{bottom:776.948850px;}
.yd3{bottom:777.880350px;}
.y139{bottom:778.020300px;}
.y6d{bottom:778.915350px;}
.y90{bottom:780.157350px;}
.y7{bottom:780.718650px;}
.y26{bottom:780.877050px;}
.y1d6{bottom:787.197750px;}
.y199{bottom:789.196350px;}
.y11c{bottom:789.316200px;}
.y1bb{bottom:789.905100px;}
.yb5{bottom:790.576350px;}
.y4a{bottom:796.010100px;}
.y158{bottom:797.907600px;}
.yd2{bottom:798.683850px;}
.y6c{bottom:799.546350px;}
.y8f{bottom:800.581350px;}
.y25{bottom:802.647750px;}
.y1d5{bottom:806.697750px;}
.y198{bottom:810.395850px;}
.y6{bottom:810.418650px;}
.y1ba{bottom:810.962850px;}
.yb4{bottom:811.086600px;}
.y49{bottom:817.348350px;}
.yf2{bottom:817.417350px;}
.y138{bottom:818.592300px;}
.y157{bottom:818.866350px;}
.yd1{bottom:819.487350px;}
.y6b{bottom:820.177350px;}
.y8e{bottom:821.005350px;}
.y24{bottom:822.957750px;}
.y1d4{bottom:826.197750px;}
.y5{bottom:831.613650px;}
.y1b9{bottom:832.020600px;}
.y48{bottom:838.686600px;}
.yf1{bottom:838.738350px;}
.y137{bottom:838.878300px;}
.y177{bottom:839.618100px;}
.y156{bottom:839.825100px;}
.y197{bottom:840.100350px;}
.yd0{bottom:840.290850px;}
.y6a{bottom:840.808350px;}
.y8d{bottom:841.429350px;}
.y23{bottom:843.267750px;}
.y1d3{bottom:845.697750px;}
.y4{bottom:852.808650px;}
.y11b{bottom:855.125850px;}
.y47{bottom:860.024850px;}
.yf0{bottom:860.059350px;}
.y176{bottom:860.645850px;}
.y155{bottom:860.783850px;}
.ycf{bottom:861.094350px;}
.y196{bottom:861.299850px;}
.y69{bottom:861.439350px;}
.y1b8{bottom:861.583350px;}
.yb3{bottom:861.680850px;}
.y8c{bottom:861.853350px;}
.y22{bottom:863.577750px;}
.y136{bottom:864.908700px;}
.y1d2{bottom:865.197750px;}
.y11a{bottom:878.913600px;}
.y46{bottom:881.363100px;}
.yef{bottom:881.380350px;}
.y175{bottom:881.673600px;}
.y154{bottom:881.742600px;}
.yce{bottom:881.897850px;}
.y68{bottom:882.070350px;}
.yb2{bottom:882.191100px;}
.y8b{bottom:882.277350px;}
.y195{bottom:882.499350px;}
.y3{bottom:882.508650px;}
.y1b7{bottom:882.641100px;}
.y21{bottom:883.887750px;}
.y1d1{bottom:884.697750px;}
.y135{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y44{bottom:966.189000px;}
.h14{height:33.590271px;}
.h12{height:33.590871px;}
.h11{height:40.868215px;}
.h8{height:44.414062px;}
.hb{height:49.658203px;}
.h17{height:52.141113px;}
.h19{height:55.488281px;}
.h4{height:55.517578px;}
.hd{height:56.567871px;}
.h13{height:57.106934px;}
.h18{height:58.262695px;}
.h3{height:58.293457px;}
.hc{height:63.811523px;}
.ha{height:63.845215px;}
.he{height:63.946289px;}
.h16{height:63.973615px;}
.h15{height:63.990415px;}
.h10{height:64.133815px;}
.h2{height:69.396973px;}
.hf{height:74.909180px;}
.h9{height:74.948730px;}
.h7{height:77.724609px;}
.h6{height:99.878906px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.214250px;}
.x7{left:83.675400px;}
.x1{left:85.039350px;}
.xa{left:103.746150px;}
.x5{left:105.795600px;}
.xe{left:106.984650px;}
.xd{left:200.986500px;}
.xb{left:202.344450px;}
.x8{left:212.664000px;}
.x4{left:230.000700px;}
.x9{left:231.309300px;}
.x2{left:232.601400px;}
.x3{left:233.976450px;}
.xc{left:353.434200px;}
@media print{
.v2{vertical-align:-72.925333pt;}
.v4{vertical-align:-20.273067pt;}
.v3{vertical-align:-10.672000pt;}
.v5{vertical-align:-5.336000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.077333pt;}
.ls44{letter-spacing:-4.896000pt;}
.ls6{letter-spacing:-4.608000pt;}
.ls17{letter-spacing:-3.413333pt;}
.ls43{letter-spacing:-3.394667pt;}
.ls4d{letter-spacing:-3.136000pt;}
.lse{letter-spacing:-2.912000pt;}
.lsc{letter-spacing:-2.496000pt;}
.lsb{letter-spacing:-2.400000pt;}
.lsf{letter-spacing:-2.314667pt;}
.lsa{letter-spacing:-2.016000pt;}
.ls25{letter-spacing:-1.874667pt;}
.ls10{letter-spacing:-1.642667pt;}
.ls18{letter-spacing:-1.600000pt;}
.ls4b{letter-spacing:-1.568000pt;}
.ls8{letter-spacing:-1.536000pt;}
.ls3d{letter-spacing:-1.472000pt;}
.lsd{letter-spacing:-1.418667pt;}
.ls39{letter-spacing:-1.349333pt;}
.ls3b{letter-spacing:-1.296000pt;}
.ls1a{letter-spacing:-1.226667pt;}
.ls26{letter-spacing:-1.224000pt;}
.ls1b{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.797333pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.557333pt;}
.ls2a{letter-spacing:-0.536360pt;}
.ls2c{letter-spacing:-0.506667pt;}
.ls29{letter-spacing:-0.429333pt;}
.ls1e{letter-spacing:-0.360000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.184000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.152000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000267pt;}
.ls3e{letter-spacing:0.004800pt;}
.ls40{letter-spacing:0.006933pt;}
.ls35{letter-spacing:0.007275pt;}
.ls2f{letter-spacing:0.008723pt;}
.ls3f{letter-spacing:0.013867pt;}
.ls2e{letter-spacing:0.018400pt;}
.ls4f{letter-spacing:0.522667pt;}
.ls34{letter-spacing:0.736000pt;}
.ls16{letter-spacing:1.066667pt;}
.ls36{letter-spacing:1.429067pt;}
.ls4c{letter-spacing:1.814400pt;}
.ls49{letter-spacing:2.060800pt;}
.ls12{letter-spacing:2.133333pt;}
.ls1c{letter-spacing:2.933333pt;}
.ls27{letter-spacing:3.066667pt;}
.ls28{letter-spacing:3.091200pt;}
.ls41{letter-spacing:3.330400pt;}
.ls0{letter-spacing:3.733333pt;}
.ls23{letter-spacing:3.800000pt;}
.ls46{letter-spacing:3.864000pt;}
.ls2d{letter-spacing:4.103200pt;}
.ls2b{letter-spacing:4.133333pt;}
.ls22{letter-spacing:5.096800pt;}
.ls3{letter-spacing:5.173333pt;}
.ls11{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls42{letter-spacing:5.360533pt;}
.ls4e{letter-spacing:5.376000pt;}
.ls14{letter-spacing:5.600000pt;}
.ls13{letter-spacing:5.933333pt;}
.ls45{letter-spacing:6.400000pt;}
.ls4a{letter-spacing:6.666667pt;}
.ls1f{letter-spacing:6.801867pt;}
.ls20{letter-spacing:6.808000pt;}
.ls38{letter-spacing:7.266667pt;}
.ls30{letter-spacing:7.746400pt;}
.ls33{letter-spacing:8.470133pt;}
.ls48{letter-spacing:12.079200pt;}
.ls32{letter-spacing:18.786400pt;}
.ls47{letter-spacing:22.825600pt;}
.ls31{letter-spacing:29.440000pt;}
.ws34{word-spacing:-26.000000pt;}
.ws42{word-spacing:-25.400000pt;}
.ws3e{word-spacing:-25.133333pt;}
.ws15{word-spacing:-24.666667pt;}
.ws2f{word-spacing:-22.866667pt;}
.ws0{word-spacing:-22.752000pt;}
.ws27{word-spacing:-22.533333pt;}
.ws21{word-spacing:-21.666667pt;}
.ws45{word-spacing:-21.504000pt;}
.ws1{word-spacing:-21.312000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws36{word-spacing:-19.656000pt;}
.ws40{word-spacing:-19.600000pt;}
.ws33{word-spacing:-17.970667pt;}
.ws1b{word-spacing:-17.234667pt;}
.ws32{word-spacing:-16.578400pt;}
.ws3b{word-spacing:-16.560000pt;}
.ws28{word-spacing:-16.376000pt;}
.ws16{word-spacing:-16.090667pt;}
.ws22{word-spacing:-15.149333pt;}
.ws37{word-spacing:-15.088000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws2c{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.352000pt;}
.ws43{word-spacing:-13.832000pt;}
.ws3{word-spacing:-13.173333pt;}
.ws44{word-spacing:-12.264000pt;}
.ws3a{word-spacing:-12.064267pt;}
.ws19{word-spacing:-11.946667pt;}
.ws1a{word-spacing:-10.047811pt;}
.ws30{word-spacing:-9.654480pt;}
.ws2d{word-spacing:-9.118120pt;}
.ws48{word-spacing:-6.666667pt;}
.ws41{word-spacing:-5.600000pt;}
.ws47{word-spacing:-5.376000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws7{word-spacing:-5.173333pt;}
.ws14{word-spacing:-3.733333pt;}
.ws17{word-spacing:-2.133333pt;}
.ws20{word-spacing:-1.066667pt;}
.ws5{word-spacing:0.000000pt;}
.ws29{word-spacing:0.152000pt;}
.ws8{word-spacing:0.160000pt;}
.ws26{word-spacing:0.184000pt;}
.ws9{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.266667pt;}
.ws25{word-spacing:0.360000pt;}
.ws31{word-spacing:0.506667pt;}
.ws24{word-spacing:0.557333pt;}
.ws18{word-spacing:0.760000pt;}
.wsb{word-spacing:0.864000pt;}
.wse{word-spacing:0.960000pt;}
.ws1f{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.224000pt;}
.ws39{word-spacing:1.296000pt;}
.ws38{word-spacing:1.349333pt;}
.ws10{word-spacing:1.418667pt;}
.wsc{word-spacing:1.536000pt;}
.ws1d{word-spacing:1.600000pt;}
.ws13{word-spacing:1.642667pt;}
.ws2a{word-spacing:1.874667pt;}
.wsd{word-spacing:2.016000pt;}
.ws12{word-spacing:2.314667pt;}
.wsf{word-spacing:2.496000pt;}
.ws11{word-spacing:2.912000pt;}
.ws46{word-spacing:3.136000pt;}
.ws3c{word-spacing:3.394667pt;}
.ws1c{word-spacing:3.413333pt;}
.ws2e{word-spacing:3.434667pt;}
.ws23{word-spacing:3.680000pt;}
.wsa{word-spacing:4.608000pt;}
.ws3d{word-spacing:4.896000pt;}
.ws3f{word-spacing:14.045333pt;}
._21{margin-left:-9.876267pt;}
._34{margin-left:-7.877867pt;}
._18{margin-left:-6.798133pt;}
._d{margin-left:-5.869867pt;}
._6{margin-left:-4.662933pt;}
._9{margin-left:-3.093333pt;}
._8{margin-left:-2.101867pt;}
._3{margin-left:-0.940267pt;}
._5{width:1.030933pt;}
._1{width:2.133333pt;}
._a{width:3.340800pt;}
._12{width:4.295467pt;}
._4{width:5.226667pt;}
._7{width:6.352000pt;}
._1d{width:7.309067pt;}
._26{width:8.208800pt;}
._e{width:9.114667pt;}
._24{width:10.910667pt;}
._1c{width:11.932000pt;}
._15{width:13.136533pt;}
._11{width:14.077333pt;}
._23{width:15.230400pt;}
._1e{width:16.288000pt;}
._17{width:18.625333pt;}
._10{width:19.555733pt;}
._20{width:21.238667pt;}
._c{width:22.792533pt;}
._b{width:24.401067pt;}
._16{width:25.584533pt;}
._1f{width:27.154133pt;}
._1b{width:29.464533pt;}
._35{width:31.550400pt;}
._27{width:32.845600pt;}
._29{width:34.334933pt;}
._28{width:35.278933pt;}
._2c{width:37.333600pt;}
._1a{width:38.928267pt;}
._19{width:39.893333pt;}
._30{width:41.337867pt;}
._2a{width:46.306667pt;}
._f{width:55.514667pt;}
._37{width:63.119467pt;}
._36{width:68.264000pt;}
._31{width:81.941333pt;}
._14{width:231.653333pt;}
._32{width:437.739733pt;}
._33{width:439.493333pt;}
._13{width:445.680000pt;}
._2f{width:447.146667pt;}
._25{width:448.332267pt;}
._0{width:514.133333pt;}
._2d{width:547.657067pt;}
._22{width:883.294400pt;}
._2b{width:885.627733pt;}
._2e{width:889.227733pt;}
._2{width:890.987733pt;}
.fsa{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:42.933333pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fsb{font-size:69.333333pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yb1{bottom:94.369200pt;}
.y119{bottom:94.448667pt;}
.y153{bottom:94.459733pt;}
.y174{bottom:94.461200pt;}
.y8a{bottom:94.466800pt;}
.y1e{bottom:94.474000pt;}
.yee{bottom:94.482000pt;}
.y134{bottom:94.489467pt;}
.y1d0{bottom:94.492533pt;}
.ycd{bottom:94.493067pt;}
.y10b{bottom:94.511067pt;}
.y194{bottom:94.519733pt;}
.y67{bottom:94.527067pt;}
.y1b6{bottom:94.551867pt;}
.y43{bottom:94.683600pt;}
.y1d{bottom:111.980667pt;}
.y152{bottom:112.491733pt;}
.yb0{bottom:112.523867pt;}
.y1cf{bottom:112.545867pt;}
.y118{bottom:112.603333pt;}
.ycc{bottom:112.724400pt;}
.y89{bottom:112.805467pt;}
.yed{bottom:112.974000pt;}
.y173{bottom:113.091200pt;}
.y193{bottom:113.209733pt;}
.y42{bottom:113.390267pt;}
.y1b5{bottom:113.395867pt;}
.y10a{bottom:113.463067pt;}
.y66{bottom:113.494400pt;}
.y133{bottom:115.646933pt;}
.y151{bottom:130.523733pt;}
.y1ce{bottom:130.599200pt;}
.yaf{bottom:130.678533pt;}
.y117{bottom:130.758000pt;}
.ycb{bottom:130.955733pt;}
.y88{bottom:131.144133pt;}
.y192{bottom:131.899733pt;}
.y41{bottom:132.096933pt;}
.y109{bottom:132.415067pt;}
.y65{bottom:132.461733pt;}
.y132{bottom:136.791600pt;}
.y1c{bottom:137.047333pt;}
.y1b4{bottom:139.799867pt;}
.y150{bottom:148.555733pt;}
.y1cd{bottom:148.652533pt;}
.yae{bottom:148.833200pt;}
.y116{bottom:148.912667pt;}
.y87{bottom:149.482800pt;}
.yec{bottom:149.907600pt;}
.y172{bottom:150.351200pt;}
.y191{bottom:150.589733pt;}
.y40{bottom:150.803600pt;}
.y108{bottom:151.367067pt;}
.y64{bottom:151.429067pt;}
.y131{bottom:157.936267pt;}
.y1b3{bottom:158.643867pt;}
.y14f{bottom:166.587733pt;}
.y1cc{bottom:166.705867pt;}
.yad{bottom:166.987867pt;}
.yca{bottom:167.433733pt;}
.y86{bottom:167.821467pt;}
.yeb{bottom:168.399600pt;}
.y171{bottom:168.981200pt;}
.y190{bottom:169.279733pt;}
.y3f{bottom:169.510267pt;}
.y107{bottom:170.319067pt;}
.y63{bottom:170.396400pt;}
.y1b2{bottom:177.487867pt;}
.y1b{bottom:181.007333pt;}
.y14e{bottom:184.619733pt;}
.yac{bottom:185.142533pt;}
.y115{bottom:185.222000pt;}
.yea{bottom:186.891600pt;}
.y170{bottom:187.611200pt;}
.y3e{bottom:188.216933pt;}
.y106{bottom:189.271067pt;}
.y62{bottom:189.363733pt;}
.y18f{bottom:195.529733pt;}
.y1cb{bottom:196.105867pt;}
.y1a{bottom:199.847333pt;}
.y130{bottom:200.225600pt;}
.y14d{bottom:202.651733pt;}
.yab{bottom:203.297200pt;}
.y1b1{bottom:203.891867pt;}
.yc9{bottom:203.911733pt;}
.y85{bottom:205.036400pt;}
.ye9{bottom:205.383600pt;}
.y16f{bottom:206.241200pt;}
.y3d{bottom:206.923600pt;}
.y61{bottom:208.331067pt;}
.y19{bottom:218.650933pt;}
.y14c{bottom:220.683733pt;}
.y12f{bottom:221.370267pt;}
.yaa{bottom:221.451867pt;}
.y1b0{bottom:222.735867pt;}
.ye8{bottom:223.875600pt;}
.y16e{bottom:224.871200pt;}
.y3c{bottom:225.630267pt;}
.y84{bottom:226.708400pt;}
.y105{bottom:227.190400pt;}
.y60{bottom:227.298400pt;}
.y18{bottom:236.157600pt;}
.y14b{bottom:238.715733pt;}
.ya9{bottom:239.606533pt;}
.y114{bottom:239.670667pt;}
.yc8{bottom:241.046533pt;}
.y18e{bottom:241.457600pt;}
.y1af{bottom:241.579867pt;}
.ye7{bottom:242.367600pt;}
.y12e{bottom:242.514933pt;}
.y16d{bottom:243.501200pt;}
.y3b{bottom:244.336933pt;}
.y5f{bottom:246.265733pt;}
.y1ca{bottom:248.193067pt;}
.y83{bottom:248.380400pt;}
.y17{bottom:253.664267pt;}
.ya8{bottom:257.761200pt;}
.y113{bottom:257.825333pt;}
.y18d{bottom:260.148933pt;}
.ye6{bottom:260.859600pt;}
.y3a{bottom:263.043600pt;}
.y12d{bottom:263.659600pt;}
.y104{bottom:265.052267pt;}
.y5e{bottom:265.233067pt;}
.y1ae{bottom:267.983867pt;}
.y82{bottom:270.052400pt;}
.y16{bottom:271.170933pt;}
.y1c9{bottom:272.907733pt;}
.y14a{bottom:275.641733pt;}
.ya7{bottom:275.915867pt;}
.y112{bottom:275.980000pt;}
.y18c{bottom:278.840267pt;}
.y16c{bottom:280.761200pt;}
.y39{bottom:281.750267pt;}
.y5d{bottom:284.200400pt;}
.y12c{bottom:284.804267pt;}
.y1ad{bottom:286.827867pt;}
.y103{bottom:287.336267pt;}
.y15{bottom:288.677600pt;}
.ya6{bottom:294.070533pt;}
.y111{bottom:294.134667pt;}
.yc7{bottom:296.650667pt;}
.y18b{bottom:297.531600pt;}
.y1c8{bottom:297.622400pt;}
.ye5{bottom:298.242933pt;}
.y16b{bottom:299.391200pt;}
.y38{bottom:300.456933pt;}
.y5c{bottom:303.167733pt;}
.y1ac{bottom:305.671867pt;}
.y12b{bottom:305.948933pt;}
.y14{bottom:306.184267pt;}
.ya5{bottom:312.225200pt;}
.y110{bottom:312.289333pt;}
.yc6{bottom:314.882000pt;}
.y18a{bottom:316.222933pt;}
.y16a{bottom:318.021200pt;}
.y37{bottom:319.163600pt;}
.y5b{bottom:322.138400pt;}
.y13{bottom:323.690933pt;}
.y1ab{bottom:324.515867pt;}
.y81{bottom:325.595867pt;}
.ya4{bottom:330.379867pt;}
.y10f{bottom:330.444000pt;}
.y149{bottom:331.001467pt;}
.y12a{bottom:332.199600pt;}
.yc5{bottom:333.113333pt;}
.y189{bottom:334.914267pt;}
.y36{bottom:337.870267pt;}
.y5a{bottom:341.105733pt;}
.y12{bottom:341.197600pt;}
.y80{bottom:343.934533pt;}
.y102{bottom:347.470000pt;}
.y129{bottom:348.252133pt;}
.ya3{bottom:348.534533pt;}
.y10e{bottom:348.598667pt;}
.y148{bottom:349.033467pt;}
.y1aa{bottom:350.919867pt;}
.yc4{bottom:351.344667pt;}
.y188{bottom:353.605600pt;}
.ye4{bottom:354.052533pt;}
.y169{bottom:355.281200pt;}
.y35{bottom:356.576933pt;}
.y11{bottom:358.704267pt;}
.y7f{bottom:362.273200pt;}
.y101{bottom:366.422000pt;}
.ya2{bottom:366.689200pt;}
.y10d{bottom:366.753333pt;}
.y147{bottom:367.065467pt;}
.y128{bottom:369.396800pt;}
.y1a9{bottom:369.763867pt;}
.y187{bottom:372.296933pt;}
.ye3{bottom:372.544533pt;}
.y168{bottom:373.911200pt;}
.y34{bottom:375.283600pt;}
.y59{bottom:378.977733pt;}
.y7e{bottom:380.611867pt;}
.ya1{bottom:384.843867pt;}
.y10c{bottom:384.908000pt;}
.y146{bottom:385.097467pt;}
.y100{bottom:385.374000pt;}
.y10{bottom:387.544267pt;}
.yc3{bottom:388.486133pt;}
.y1a8{bottom:388.607867pt;}
.y127{bottom:390.541467pt;}
.y186{bottom:390.988267pt;}
.ye2{bottom:391.036533pt;}
.y167{bottom:392.541200pt;}
.y33{bottom:393.990267pt;}
.y7d{bottom:398.950533pt;}
.y58{bottom:401.279733pt;}
.ya0{bottom:402.998533pt;}
.y145{bottom:403.129467pt;}
.yff{bottom:404.326000pt;}
.y1a7{bottom:407.451867pt;}
.ye1{bottom:409.528533pt;}
.y185{bottom:409.679600pt;}
.yc2{bottom:410.050133pt;}
.y166{bottom:411.171200pt;}
.y126{bottom:411.686133pt;}
.y32{bottom:412.696933pt;}
.y7c{bottom:417.289200pt;}
.y1c7{bottom:420.149867pt;}
.y144{bottom:421.132933pt;}
.y9f{bottom:421.153200pt;}
.y57{bottom:423.581733pt;}
.ye0{bottom:428.020533pt;}
.y184{bottom:428.370933pt;}
.y165{bottom:429.801200pt;}
.y31{bottom:431.403600pt;}
.y125{bottom:432.830800pt;}
.y1a6{bottom:433.855867pt;}
.yf{bottom:435.274667pt;}
.y7b{bottom:435.627867pt;}
.y143{bottom:439.164933pt;}
.y9e{bottom:439.307867pt;}
.yfe{bottom:442.245333pt;}
.y1c6{bottom:446.427867pt;}
.ydf{bottom:446.506133pt;}
.y183{bottom:447.062267pt;}
.y30{bottom:450.110267pt;}
.y1a5{bottom:452.699867pt;}
.y7a{bottom:453.966533pt;}
.y124{bottom:453.975467pt;}
.y9d{bottom:457.462533pt;}
.y1e2{bottom:458.171333pt;}
.ye{bottom:459.448000pt;}
.yfd{bottom:461.197333pt;}
.yc1{bottom:465.727200pt;}
.y182{bottom:465.753600pt;}
.y164{bottom:467.061200pt;}
.y2f{bottom:468.816933pt;}
.yde{bottom:469.560533pt;}
.y1a4{bottom:471.543867pt;}
.y79{bottom:472.305200pt;}
.y123{bottom:475.120133pt;}
.y142{bottom:475.228933pt;}
.y9c{bottom:475.617200pt;}
.y1e1{bottom:476.171333pt;}
.y56{bottom:479.956533pt;}
.yfc{bottom:480.149333pt;}
.yd{bottom:483.621333pt;}
.yc0{bottom:483.958533pt;}
.y181{bottom:484.444933pt;}
.y163{bottom:485.691200pt;}
.y2e{bottom:487.523600pt;}
.ydd{bottom:488.052533pt;}
.y1a3{bottom:490.387867pt;}
.y78{bottom:490.643867pt;}
.y1c5{bottom:492.277867pt;}
.y141{bottom:493.260933pt;}
.y9b{bottom:493.771867pt;}
.y1e0{bottom:494.171333pt;}
.y122{bottom:496.264800pt;}
.y55{bottom:498.923867pt;}
.ybf{bottom:502.189867pt;}
.y180{bottom:503.136267pt;}
.y162{bottom:504.321200pt;}
.y2d{bottom:506.230267pt;}
.y77{bottom:508.982533pt;}
.y1c4{bottom:510.995867pt;}
.y140{bottom:511.292933pt;}
.y9a{bottom:511.926533pt;}
.y1df{bottom:512.171333pt;}
.y1a2{bottom:516.791867pt;}
.y121{bottom:517.409467pt;}
.y54{bottom:517.891200pt;}
.yfb{bottom:518.068667pt;}
.ybe{bottom:520.421200pt;}
.y17f{bottom:521.827600pt;}
.y161{bottom:522.951200pt;}
.y2c{bottom:524.936933pt;}
.ydc{bottom:525.021200pt;}
.yc{bottom:526.660800pt;}
.y76{bottom:527.321200pt;}
.y99{bottom:530.081200pt;}
.y1a1{bottom:535.635867pt;}
.y53{bottom:536.858533pt;}
.yfa{bottom:537.020667pt;}
.y1c3{bottom:537.273867pt;}
.y120{bottom:538.554133pt;}
.ybd{bottom:538.652533pt;}
.y17e{bottom:540.518933pt;}
.y1de{bottom:541.504667pt;}
.ydb{bottom:543.513200pt;}
.y2b{bottom:543.643600pt;}
.y75{bottom:545.659867pt;}
.y13f{bottom:547.356933pt;}
.y98{bottom:548.235867pt;}
.y1a0{bottom:554.479867pt;}
.yb{bottom:554.836800pt;}
.y52{bottom:555.825867pt;}
.yf9{bottom:555.972667pt;}
.y1c2{bottom:555.991867pt;}
.ybc{bottom:556.883867pt;}
.y17d{bottom:559.210267pt;}
.y160{bottom:560.211200pt;}
.yda{bottom:562.005200pt;}
.y2a{bottom:562.350267pt;}
.y74{bottom:563.998533pt;}
.y11f{bottom:564.804800pt;}
.y97{bottom:566.390533pt;}
.y13e{bottom:570.494933pt;}
.y19f{bottom:573.323867pt;}
.y1c1{bottom:574.709867pt;}
.y51{bottom:574.793200pt;}
.yf8{bottom:574.924667pt;}
.ybb{bottom:575.115200pt;}
.y17c{bottom:577.901600pt;}
.y1dd{bottom:578.398000pt;}
.y15f{bottom:578.841200pt;}
.yd9{bottom:580.497200pt;}
.y29{bottom:581.056933pt;}
.y73{bottom:582.337200pt;}
.ya{bottom:583.012800pt;}
.y96{bottom:584.545200pt;}
.yba{bottom:593.346533pt;}
.y1c0{bottom:593.427867pt;}
.y50{bottom:593.760533pt;}
.yf7{bottom:593.876667pt;}
.y1dc{bottom:595.731333pt;}
.y17b{bottom:596.592933pt;}
.y15e{bottom:597.471200pt;}
.yd8{bottom:598.989200pt;}
.y19e{bottom:599.727867pt;}
.y11e{bottom:599.742400pt;}
.y72{bottom:600.675867pt;}
.y13d{bottom:601.413600pt;}
.y95{bottom:602.699867pt;}
.y9{bottom:611.188800pt;}
.yb9{bottom:611.577867pt;}
.y1bf{bottom:612.145867pt;}
.y4f{bottom:612.727867pt;}
.yf6{bottom:612.828667pt;}
.y1db{bottom:613.064667pt;}
.y17a{bottom:615.284267pt;}
.y15d{bottom:616.101200pt;}
.yd7{bottom:617.481200pt;}
.y19d{bottom:618.571867pt;}
.y28{bottom:618.668800pt;}
.y71{bottom:619.014533pt;}
.y13c{bottom:619.445600pt;}
.y94{bottom:620.854533pt;}
.yb8{bottom:629.809200pt;}
.y1da{bottom:630.398000pt;}
.y4e{bottom:631.695200pt;}
.y179{bottom:633.975600pt;}
.y15c{bottom:634.731200pt;}
.yd6{bottom:635.973200pt;}
.y70{bottom:637.353200pt;}
.y19c{bottom:637.415867pt;}
.y1be{bottom:638.423867pt;}
.y93{bottom:639.009200pt;}
.y8{bottom:639.364800pt;}
.y1d9{bottom:647.731333pt;}
.y4d{bottom:650.662533pt;}
.yf5{bottom:650.748000pt;}
.y15b{bottom:653.361200pt;}
.yd5{bottom:654.465200pt;}
.y13b{bottom:655.509600pt;}
.y6f{bottom:655.691867pt;}
.y1bd{bottom:657.141867pt;}
.y92{bottom:657.163867pt;}
.y19b{bottom:663.819867pt;}
.y1d8{bottom:665.064667pt;}
.yb7{bottom:666.271867pt;}
.y4c{bottom:669.629867pt;}
.yf4{bottom:669.700000pt;}
.y178{bottom:671.569733pt;}
.y15a{bottom:671.991200pt;}
.yd4{bottom:672.957200pt;}
.y13a{bottom:673.541600pt;}
.y6e{bottom:674.030533pt;}
.y27{bottom:674.726267pt;}
.y91{bottom:675.318533pt;}
.y11d{bottom:677.134400pt;}
.y1d7{bottom:682.398000pt;}
.y19a{bottom:682.663867pt;}
.y1bc{bottom:683.419867pt;}
.yb6{bottom:684.503200pt;}
.y4b{bottom:688.597200pt;}
.yf3{bottom:688.652000pt;}
.y159{bottom:690.621200pt;}
.yd3{bottom:691.449200pt;}
.y139{bottom:691.573600pt;}
.y6d{bottom:692.369200pt;}
.y90{bottom:693.473200pt;}
.y7{bottom:693.972133pt;}
.y26{bottom:694.112933pt;}
.y1d6{bottom:699.731333pt;}
.y199{bottom:701.507867pt;}
.y11c{bottom:701.614400pt;}
.y1bb{bottom:702.137867pt;}
.yb5{bottom:702.734533pt;}
.y4a{bottom:707.564533pt;}
.y158{bottom:709.251200pt;}
.yd2{bottom:709.941200pt;}
.y6c{bottom:710.707867pt;}
.y8f{bottom:711.627867pt;}
.y25{bottom:713.464667pt;}
.y1d5{bottom:717.064667pt;}
.y198{bottom:720.351867pt;}
.y6{bottom:720.372133pt;}
.y1ba{bottom:720.855867pt;}
.yb4{bottom:720.965867pt;}
.y49{bottom:726.531867pt;}
.yf2{bottom:726.593200pt;}
.y138{bottom:727.637600pt;}
.y157{bottom:727.881200pt;}
.yd1{bottom:728.433200pt;}
.y6b{bottom:729.046533pt;}
.y8e{bottom:729.782533pt;}
.y24{bottom:731.518000pt;}
.y1d4{bottom:734.398000pt;}
.y5{bottom:739.212133pt;}
.y1b9{bottom:739.573867pt;}
.y48{bottom:745.499200pt;}
.yf1{bottom:745.545200pt;}
.y137{bottom:745.669600pt;}
.y177{bottom:746.327200pt;}
.y156{bottom:746.511200pt;}
.y197{bottom:746.755867pt;}
.yd0{bottom:746.925200pt;}
.y6a{bottom:747.385200pt;}
.y8d{bottom:747.937200pt;}
.y23{bottom:749.571333pt;}
.y1d3{bottom:751.731333pt;}
.y4{bottom:758.052133pt;}
.y11b{bottom:760.111867pt;}
.y47{bottom:764.466533pt;}
.yf0{bottom:764.497200pt;}
.y176{bottom:765.018533pt;}
.y155{bottom:765.141200pt;}
.ycf{bottom:765.417200pt;}
.y196{bottom:765.599867pt;}
.y69{bottom:765.723867pt;}
.y1b8{bottom:765.851867pt;}
.yb3{bottom:765.938533pt;}
.y8c{bottom:766.091867pt;}
.y22{bottom:767.624667pt;}
.y136{bottom:768.807733pt;}
.y1d2{bottom:769.064667pt;}
.y11a{bottom:781.256533pt;}
.y46{bottom:783.433867pt;}
.yef{bottom:783.449200pt;}
.y175{bottom:783.709867pt;}
.y154{bottom:783.771200pt;}
.yce{bottom:783.909200pt;}
.y68{bottom:784.062533pt;}
.yb2{bottom:784.169867pt;}
.y8b{bottom:784.246533pt;}
.y195{bottom:784.443867pt;}
.y3{bottom:784.452133pt;}
.y1b7{bottom:784.569867pt;}
.y21{bottom:785.678000pt;}
.y1d1{bottom:786.398000pt;}
.y135{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y44{bottom:858.834667pt;}
.h14{height:29.858019pt;}
.h12{height:29.858552pt;}
.h11{height:36.327302pt;}
.h8{height:39.479167pt;}
.hb{height:44.140625pt;}
.h17{height:46.347656pt;}
.h19{height:49.322917pt;}
.h4{height:49.348958pt;}
.hd{height:50.282552pt;}
.h13{height:50.761719pt;}
.h18{height:51.789062pt;}
.h3{height:51.816406pt;}
.hc{height:56.721354pt;}
.ha{height:56.751302pt;}
.he{height:56.841146pt;}
.h16{height:56.865435pt;}
.h15{height:56.880369pt;}
.h10{height:57.007835pt;}
.h2{height:61.686198pt;}
.hf{height:66.585938pt;}
.h9{height:66.621094pt;}
.h7{height:69.088542pt;}
.h6{height:88.781250pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.079333pt;}
.x7{left:74.378133pt;}
.x1{left:75.590533pt;}
.xa{left:92.218800pt;}
.x5{left:94.040533pt;}
.xe{left:95.097467pt;}
.xd{left:178.654667pt;}
.xb{left:179.861733pt;}
.x8{left:189.034667pt;}
.x4{left:204.445067pt;}
.x9{left:205.608267pt;}
.x2{left:206.756800pt;}
.x3{left:207.979067pt;}
.xc{left:314.163733pt;}
}




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