
    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_da99768a41e8bcd7b4bbb6b9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2432cab00f71eb5c84ec91bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.194336;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_0297b10dee455658411e31de.woff')format("woff");}.ff3{font-family:ff3;line-height:1.194336;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_aaf9f60c904d06a5c0fc4881.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_12484f9bba1f81fd434d2086.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_4ce4eadfe912c49e88794e08.woff')format("woff");}.ff6{font-family:ff6;line-height:1.196777;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_99c248b980937f0cb9bbbb51.woff')format("woff");}.ff7{font-family:ff7;line-height:1.196777;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_162e307739dbcfb032beef69.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c3a7bc9c25644e754779a64d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_44390f2cf1840f6c4e34297e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_339a71c96cfe140ae04af6a4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.008000px;}
.ls56{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.576000px;}
.ls36{letter-spacing:-0.504000px;}
.ls2e{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.340800px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000001px;}
.ls28{letter-spacing:0.015840px;}
.ls60{letter-spacing:0.048000px;}
.ls2a{letter-spacing:0.063600px;}
.ls1c{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.288000px;}
.ls3f{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.408000px;}
.ls59{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.450720px;}
.ls31{letter-spacing:0.468000px;}
.ls50{letter-spacing:0.487440px;}
.ls3d{letter-spacing:0.504000px;}
.ls51{letter-spacing:0.565800px;}
.ls11{letter-spacing:0.648000px;}
.ls45{letter-spacing:0.720000px;}
.ls4f{letter-spacing:0.735840px;}
.ls8{letter-spacing:0.786000px;}
.ls54{letter-spacing:0.792000px;}
.ls2d{letter-spacing:0.828000px;}
.ls0{letter-spacing:1.368000px;}
.ls1a{letter-spacing:2.088000px;}
.ls3e{letter-spacing:2.376000px;}
.ls14{letter-spacing:2.647440px;}
.ls17{letter-spacing:2.808000px;}
.ls25{letter-spacing:3.528000px;}
.ls41{letter-spacing:3.816000px;}
.ls26{letter-spacing:4.248000px;}
.ls1d{letter-spacing:4.536000px;}
.lsf{letter-spacing:4.968000px;}
.ls1b{letter-spacing:5.688000px;}
.ls1e{letter-spacing:5.976000px;}
.ls4c{letter-spacing:6.408000px;}
.ls19{letter-spacing:7.128000px;}
.ls1f{letter-spacing:7.687440px;}
.ls3a{letter-spacing:7.848000px;}
.ls21{letter-spacing:8.568000px;}
.ls2f{letter-spacing:9.288000px;}
.ls37{letter-spacing:10.008000px;}
.ls12{letter-spacing:10.224000px;}
.ls55{letter-spacing:10.728000px;}
.ls4b{letter-spacing:11.016000px;}
.ls5b{letter-spacing:11.160000px;}
.ls34{letter-spacing:11.448000px;}
.ls5d{letter-spacing:11.940000px;}
.ls46{letter-spacing:12.168000px;}
.ls5c{letter-spacing:12.240000px;}
.ls3c{letter-spacing:12.456000px;}
.lse{letter-spacing:12.888000px;}
.ls5a{letter-spacing:13.608000px;}
.ls38{letter-spacing:14.328000px;}
.ls40{letter-spacing:14.616000px;}
.ls22{letter-spacing:15.048000px;}
.ls47{letter-spacing:16.488000px;}
.ls39{letter-spacing:17.208000px;}
.ls2c{letter-spacing:17.928000px;}
.lsc{letter-spacing:18.648000px;}
.ls42{letter-spacing:18.768000px;}
.ls49{letter-spacing:18.936000px;}
.ls53{letter-spacing:19.368000px;}
.ls27{letter-spacing:20.647440px;}
.ls30{letter-spacing:21.528000px;}
.ls52{letter-spacing:22.248000px;}
.ls3b{letter-spacing:23.688000px;}
.ls1{letter-spacing:24.408000px;}
.lsd{letter-spacing:26.568000px;}
.ls57{letter-spacing:33.048000px;}
.ls4e{letter-spacing:34.488000px;}
.ls4d{letter-spacing:37.656000px;}
.lsb{letter-spacing:40.428000px;}
.ls2b{letter-spacing:40.968000px;}
.ls32{letter-spacing:43.128000px;}
.ls33{letter-spacing:43.248000px;}
.ls58{letter-spacing:44.568000px;}
.ls5e{letter-spacing:46.224000px;}
.ls4a{letter-spacing:56.088000px;}
.ls5f{letter-spacing:129.528000px;}
.lsa{letter-spacing:387.847440px;}
.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;}
}
.ws21{word-spacing:-32.172000px;}
.ws18{word-spacing:-21.024000px;}
.wse{word-spacing:-20.592000px;}
.ws8{word-spacing:-20.448000px;}
.ws13{word-spacing:-20.376000px;}
.ws9{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.232001px;}
.ws1{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.231997px;}
.ws12{word-spacing:-20.160000px;}
.ws14{word-spacing:-20.088000px;}
.ws3{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.944000px;}
.ws17{word-spacing:-19.656000px;}
.ws11{word-spacing:-18.072000px;}
.ws10{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.352000px;}
.ws5{word-spacing:-17.052360px;}
.ws4{word-spacing:-16.792560px;}
.ws0{word-spacing:-16.451760px;}
.wsd{word-spacing:-14.760720px;}
.ws1d{word-spacing:-7.296000px;}
.ws1e{word-spacing:-7.224000px;}
.ws19{word-spacing:-7.188000px;}
.ws22{word-spacing:-7.152000px;}
.ws1a{word-spacing:-7.080000px;}
.ws1f{word-spacing:-7.056000px;}
.ws1b{word-spacing:-7.020000px;}
.ws20{word-spacing:-6.948000px;}
.ws1c{word-spacing:-6.936000px;}
.ws6{word-spacing:0.000000px;}
._2e{margin-left:-6.029520px;}
._13{margin-left:-4.968000px;}
._14{margin-left:-3.960000px;}
._4{margin-left:-2.448000px;}
._3{margin-left:-1.432080px;}
._0{width:1.337520px;}
._d{width:2.463840px;}
._b{width:3.730560px;}
._a{width:4.800000px;}
._7{width:5.832000px;}
._8{width:7.542480px;}
._c{width:8.640000px;}
._5{width:9.984000px;}
._6{width:11.436000px;}
._19{width:13.440000px;}
._15{width:14.904000px;}
._9{width:16.272000px;}
._1b{width:17.434560px;}
._10{width:19.152000px;}
._27{width:20.282880px;}
._1a{width:21.307680px;}
._11{width:22.336080px;}
._2c{width:23.412000px;}
._12{width:24.552000px;}
._18{width:26.286480px;}
._20{width:27.288000px;}
._25{width:28.728000px;}
._1c{width:30.288000px;}
._1d{width:31.399920px;}
._f{width:32.464080px;}
._e{width:34.128000px;}
._21{width:35.280000px;}
._22{width:36.324000px;}
._34{width:38.704080px;}
._16{width:39.744000px;}
._17{width:41.118480px;}
._2a{width:42.696000px;}
._2b{width:43.752000px;}
._2d{width:44.766480px;}
._23{width:47.664000px;}
._24{width:48.688080px;}
._35{width:49.824000px;}
._36{width:51.076080px;}
._30{width:52.812000px;}
._29{width:56.160000px;}
._1e{width:58.536000px;}
._1f{width:59.916000px;}
._31{width:77.826480px;}
._2f{width:88.380000px;}
._28{width:92.160000px;}
._32{width:98.964000px;}
._26{width:143.994480px;}
._33{width:192.888000px;}
._1{width:388.373280px;}
._2{width:601.282080px;}
.fc4{color:rgb(38,38,35);}
.fc5{color:rgb(0,25,229);}
.fc3{color:rgb(25,24,33);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y61{bottom:5.040000px;}
.y65{bottom:5.220000px;}
.y5f{bottom:5.580000px;}
.y63{bottom:15.300000px;}
.y5c{bottom:15.660000px;}
.y6d{bottom:25.200000px;}
.y62{bottom:25.380000px;}
.y5e{bottom:25.740000px;}
.y6a{bottom:35.280000px;}
.y5b{bottom:35.820000px;}
.y6c{bottom:45.360000px;}
.y68{bottom:45.540000px;}
.y5d{bottom:45.900000px;}
.y36{bottom:56.700000px;}
.y6{bottom:57.420000px;}
.y6b{bottom:65.520000px;}
.y35{bottom:74.376000px;}
.y5{bottom:77.976000px;}
.y34{bottom:92.196000px;}
.y4{bottom:94.716000px;}
.y3{bottom:111.456000px;}
.y33{bottom:114.876000px;}
.y2{bottom:130.896000px;}
.y59{bottom:134.136000px;}
.yce{bottom:140.076000px;}
.y2f{bottom:147.636000px;}
.y19c{bottom:148.896000px;}
.y146{bottom:150.150000px;}
.y179{bottom:150.330000px;}
.y18b{bottom:150.510000px;}
.y133{bottom:150.690000px;}
.y58{bottom:150.870000px;}
.yec{bottom:151.050000px;}
.y117{bottom:151.590000px;}
.y7e{bottom:155.910000px;}
.yb9{bottom:156.810000px;}
.yff{bottom:156.990000px;}
.y2e{bottom:164.370000px;}
.y57{bottom:167.790000px;}
.ycd{bottom:167.970000px;}
.yfe{bottom:168.330000px;}
.y2d{bottom:170.310000px;}
.yb8{bottom:173.730000px;}
.ycc{bottom:173.910000px;}
.y1a0{bottom:179.130000px;}
.y19b{bottom:179.310000px;}
.y145{bottom:180.390000px;}
.y178{bottom:180.570000px;}
.y18a{bottom:180.930000px;}
.y16c{bottom:181.110000px;}
.y2c{bottom:181.290000px;}
.y116{bottom:181.650000px;}
.y17d{bottom:183.090000px;}
.y56{bottom:184.530000px;}
.yeb{bottom:184.710000px;}
.yb7{bottom:184.890000px;}
.ycb{bottom:185.250000px;}
.y7d{bottom:186.150000px;}
.y2b{bottom:187.230000px;}
.y55{bottom:190.470000px;}
.y163{bottom:190.650000px;}
.y2a{bottom:198.030000px;}
.y9a{bottom:201.270000px;}
.yea{bottom:201.450000px;}
.y54{bottom:201.630000px;}
.y162{bottom:201.810000px;}
.ye9{bottom:207.390000px;}
.yfd{bottom:209.550000px;}
.y19f{bottom:209.730000px;}
.y19a{bottom:209.910000px;}
.y144{bottom:210.630000px;}
.y157{bottom:211.350000px;}
.y132{bottom:211.530000px;}
.y115{bottom:212.070000px;}
.y17c{bottom:213.510000px;}
.y29{bottom:214.770000px;}
.y7c{bottom:216.210000px;}
.y99{bottom:218.010000px;}
.ye8{bottom:218.550000px;}
.y28{bottom:220.710000px;}
.y98{bottom:223.950000px;}
.y27{bottom:231.870000px;}
.y97{bottom:235.110000px;}
.y19e{bottom:239.790000px;}
.yfc{bottom:239.970000px;}
.y199{bottom:240.150000px;}
.y143{bottom:240.870000px;}
.y177{bottom:241.230000px;}
.y189{bottom:241.590000px;}
.y131{bottom:241.770000px;}
.y16b{bottom:242.130000px;}
.yca{bottom:242.490000px;}
.y17b{bottom:243.750000px;}
.y53{bottom:244.110000px;}
.yb6{bottom:245.550000px;}
.y7b{bottom:246.450000px;}
.y26{bottom:265.710000px;}
.y198{bottom:270.210000px;}
.y161{bottom:270.390000px;}
.ye7{bottom:270.570000px;}
.y142{bottom:271.110000px;}
.y176{bottom:271.650000px;}
.y130{bottom:272.010000px;}
.y16a{bottom:272.190000px;}
.y156{bottom:272.370000px;}
.yc9{bottom:272.910000px;}
.y17a{bottom:273.810000px;}
.y52{bottom:274.170000px;}
.yb5{bottom:275.790000px;}
.y7a{bottom:276.690000px;}
.y25{bottom:295.950000px;}
.ye6{bottom:300.810000px;}
.y141{bottom:301.350000px;}
.y175{bottom:301.890000px;}
.y12f{bottom:302.250000px;}
.y169{bottom:302.430000px;}
.y155{bottom:302.610000px;}
.yc8{bottom:303.330000px;}
.y51{bottom:304.410000px;}
.yb4{bottom:305.850000px;}
.y79{bottom:306.930000px;}
.y24{bottom:326.190000px;}
.ye4{bottom:330.915000px;}
.y197{bottom:331.095000px;}
.y140{bottom:331.455000px;}
.y96{bottom:332.355000px;}
.y188{bottom:332.535000px;}
.y154{bottom:332.895000px;}
.yc7{bottom:333.795000px;}
.y50{bottom:334.695000px;}
.yb3{bottom:336.135000px;}
.y78{bottom:337.215000px;}
.ye5{bottom:338.475000px;}
.y23{bottom:356.475000px;}
.y196{bottom:361.155000px;}
.ye3{bottom:361.335000px;}
.y13f{bottom:361.695000px;}
.y95{bottom:362.055000px;}
.y12e{bottom:362.595000px;}
.y174{bottom:362.955000px;}
.y153{bottom:363.135000px;}
.yc6{bottom:364.215000px;}
.y114{bottom:364.395000px;}
.y4f{bottom:364.935000px;}
.yb2{bottom:366.375000px;}
.y77{bottom:367.455000px;}
.y21{bottom:386.535000px;}
.ye2{bottom:391.755000px;}
.yfb{bottom:391.935000px;}
.y94{bottom:392.295000px;}
.y12d{bottom:393.195000px;}
.y152{bottom:393.375000px;}
.y22{bottom:394.095000px;}
.y113{bottom:394.635000px;}
.yc5{bottom:394.815000px;}
.y4e{bottom:395.175000px;}
.yb1{bottom:396.615000px;}
.y76{bottom:397.695000px;}
.y20{bottom:416.955000px;}
.y160{bottom:421.995000px;}
.yfa{bottom:422.175000px;}
.ye1{bottom:422.355000px;}
.y93{bottom:422.715000px;}
.y12c{bottom:423.255000px;}
.y151{bottom:423.435000px;}
.y168{bottom:423.615000px;}
.y187{bottom:423.795000px;}
.y112{bottom:424.695000px;}
.yc4{bottom:425.055000px;}
.y4d{bottom:425.415000px;}
.yb0{bottom:426.855000px;}
.y75{bottom:427.935000px;}
.y1e{bottom:447.375000px;}
.y195{bottom:452.055000px;}
.yf9{bottom:452.235000px;}
.y19d{bottom:452.595000px;}
.ye0{bottom:452.775000px;}
.y91{bottom:452.955000px;}
.y173{bottom:453.495000px;}
.y12b{bottom:453.675000px;}
.y167{bottom:453.855000px;}
.y1f{bottom:454.935000px;}
.yc3{bottom:455.115000px;}
.y111{bottom:455.295000px;}
.y4c{bottom:455.655000px;}
.yaf{bottom:457.095000px;}
.y74{bottom:457.995000px;}
.y92{bottom:460.515000px;}
.y1d{bottom:477.975000px;}
.y15e{bottom:482.295000px;}
.yf8{bottom:482.655000px;}
.y90{bottom:483.195000px;}
.y13e{bottom:483.375000px;}
.y172{bottom:483.555000px;}
.y150{bottom:483.915000px;}
.y12a{bottom:484.275000px;}
.y186{bottom:484.455000px;}
.y110{bottom:485.535000px;}
.yc2{bottom:485.715000px;}
.y4b{bottom:485.895000px;}
.yae{bottom:487.335000px;}
.y73{bottom:488.235000px;}
.y15f{bottom:489.855000px;}
.y1b{bottom:508.035000px;}
.y15d{bottom:512.895000px;}
.yf6{bottom:513.075000px;}
.y8f{bottom:513.435000px;}
.ydf{bottom:513.795000px;}
.y14f{bottom:514.155000px;}
.y129{bottom:514.335000px;}
.y185{bottom:514.695000px;}
.y1c{bottom:515.595000px;}
.y10f{bottom:515.775000px;}
.y49{bottom:515.955000px;}
.yad{bottom:517.575000px;}
.y72{bottom:518.475000px;}
.yf7{bottom:520.635000px;}
.y4a{bottom:523.515000px;}
.y1a{bottom:538.635000px;}
.y194{bottom:542.955000px;}
.y15c{bottom:543.135000px;}
.y8e{bottom:543.675000px;}
.yde{bottom:544.035000px;}
.y14e{bottom:544.395000px;}
.y128{bottom:544.755000px;}
.y10e{bottom:546.015000px;}
.y48{bottom:546.195000px;}
.yac{bottom:547.635000px;}
.y71{bottom:548.715000px;}
.y70{bottom:564.375000px;}
.y19{bottom:568.875000px;}
.y15b{bottom:573.195000px;}
.y193{bottom:573.375000px;}
.y13d{bottom:573.735000px;}
.y8d{bottom:573.915000px;}
.ydd{bottom:574.095000px;}
.y171{bottom:574.455000px;}
.y14d{bottom:574.635000px;}
.y184{bottom:575.175000px;}
.y127{bottom:575.355000px;}
.y10d{bottom:576.255000px;}
.y47{bottom:576.435000px;}
.yab{bottom:577.875000px;}
.y1ab{bottom:585.075000px;}
.y6f{bottom:585.255000px;}
.y18{bottom:599.145000px;}
.y15a{bottom:603.825000px;}
.y8c{bottom:604.185000px;}
.ydc{bottom:604.365000px;}
.y14c{bottom:604.905000px;}
.y170{bottom:605.085000px;}
.y126{bottom:605.625000px;}
.y6e{bottom:606.165000px;}
.y10c{bottom:606.525000px;}
.y46{bottom:606.705000px;}
.yaa{bottom:608.145000px;}
.y1aa{bottom:615.345000px;}
.y69{bottom:627.225000px;}
.y17{bottom:629.385000px;}
.yf5{bottom:634.245000px;}
.y8b{bottom:634.425000px;}
.y13c{bottom:634.785000px;}
.y14b{bottom:635.145000px;}
.y125{bottom:635.865000px;}
.y183{bottom:636.225000px;}
.y10b{bottom:636.585000px;}
.yc1{bottom:636.765000px;}
.y45{bottom:636.945000px;}
.ya9{bottom:638.385000px;}
.y1a9{bottom:645.585000px;}
.y16{bottom:659.625000px;}
.y8a{bottom:664.485000px;}
.yf4{bottom:664.665000px;}
.ydb{bottom:665.025000px;}
.y14a{bottom:665.205000px;}
.y13b{bottom:665.385000px;}
.y16f{bottom:665.565000px;}
.y124{bottom:665.925000px;}
.y182{bottom:666.465000px;}
.y10a{bottom:666.825000px;}
.ybf{bottom:667.005000px;}
.y44{bottom:667.185000px;}
.ya8{bottom:668.625000px;}
.yc0{bottom:674.565000px;}
.y1a8{bottom:675.825000px;}
.y15{bottom:689.685000px;}
.y89{bottom:694.725000px;}
.yf3{bottom:695.085000px;}
.yda{bottom:695.445000px;}
.y123{bottom:696.165000px;}
.y181{bottom:696.705000px;}
.y109{bottom:697.065000px;}
.ybe{bottom:697.245000px;}
.y43{bottom:697.425000px;}
.ya6{bottom:698.685000px;}
.y1a7{bottom:706.065000px;}
.ya7{bottom:706.245000px;}
.y67{bottom:708.405000px;}
.y88{bottom:714.885000px;}
.y14{bottom:719.925000px;}
.y192{bottom:725.325000px;}
.y149{bottom:725.505000px;}
.yf2{bottom:725.685000px;}
.yd9{bottom:726.045000px;}
.y122{bottom:726.405000px;}
.y180{bottom:726.765000px;}
.y108{bottom:727.305000px;}
.ybd{bottom:727.485000px;}
.y42{bottom:727.665000px;}
.ya5{bottom:729.285000px;}
.y1a6{bottom:736.305000px;}
.y87{bottom:739.905000px;}
.y13{bottom:750.165000px;}
.y191{bottom:755.385000px;}
.y13a{bottom:755.925000px;}
.yd8{bottom:756.105000px;}
.y16e{bottom:756.465000px;}
.y121{bottom:756.645000px;}
.y17f{bottom:757.185000px;}
.y107{bottom:757.545000px;}
.y41{bottom:757.725000px;}
.ya4{bottom:759.525000px;}
.ybc{bottom:765.285000px;}
.y1a5{bottom:766.545000px;}
.y66{bottom:769.605000px;}
.y12{bottom:780.405000px;}
.y139{bottom:785.985000px;}
.yf1{bottom:786.345000px;}
.yd7{bottom:786.525000px;}
.y120{bottom:786.885000px;}
.y17e{bottom:787.605000px;}
.y106{bottom:787.785000px;}
.y40{bottom:787.965000px;}
.ya3{bottom:789.765000px;}
.y64{bottom:790.485000px;}
.y1a4{bottom:796.785000px;}
.y11{bottom:810.645000px;}
.y5a{bottom:811.365000px;}
.y190{bottom:816.045000px;}
.y138{bottom:816.585000px;}
.yef{bottom:816.765000px;}
.yd6{bottom:816.945000px;}
.y11f{bottom:817.125000px;}
.y16d{bottom:817.485000px;}
.ybb{bottom:818.025000px;}
.y3f{bottom:818.205000px;}
.ya2{bottom:819.825000px;}
.yf0{bottom:823.605000px;}
.y10{bottom:840.885000px;}
.y18f{bottom:846.465000px;}
.y137{bottom:847.005000px;}
.yee{bottom:847.185000px;}
.y11e{bottom:847.365000px;}
.yd5{bottom:847.545000px;}
.yba{bottom:848.265000px;}
.y3e{bottom:848.445000px;}
.ya1{bottom:849.885000px;}
.y60{bottom:852.585000px;}
.yf{bottom:871.170000px;}
.y18e{bottom:876.930000px;}
.y1a3{bottom:877.290000px;}
.y158{bottom:877.470000px;}
.yd4{bottom:877.650000px;}
.y148{bottom:877.830000px;}
.y86{bottom:878.190000px;}
.y105{bottom:878.550000px;}
.y3d{bottom:878.730000px;}
.ya0{bottom:879.990000px;}
.y159{bottom:885.030000px;}
.ye{bottom:901.410000px;}
.y18d{bottom:907.350000px;}
.y11d{bottom:907.710000px;}
.yd3{bottom:908.070000px;}
.y147{bottom:908.250000px;}
.y85{bottom:908.430000px;}
.y104{bottom:908.610000px;}
.y3c{bottom:908.970000px;}
.y9f{bottom:910.230000px;}
.yd{bottom:930.030000px;}
.y11c{bottom:937.950000px;}
.y136{bottom:938.130000px;}
.yed{bottom:938.490000px;}
.y84{bottom:938.670000px;}
.y103{bottom:938.850000px;}
.y3b{bottom:939.210000px;}
.y9e{bottom:939.930000px;}
.yc{bottom:959.190000px;}
.y11b{bottom:968.370000px;}
.y135{bottom:968.550000px;}
.y83{bottom:968.730000px;}
.yd1{bottom:968.910000px;}
.y102{bottom:969.090000px;}
.y3a{bottom:969.270000px;}
.y9d{bottom:969.810000px;}
.yd2{bottom:976.470000px;}
.yb{bottom:991.770000px;}
.y18c{bottom:998.610000px;}
.y11a{bottom:998.790000px;}
.y134{bottom:998.970000px;}
.yd0{bottom:999.150000px;}
.y82{bottom:999.330000px;}
.y39{bottom:999.510000px;}
.ya{bottom:1027.050000px;}
.y1a2{bottom:1028.670000px;}
.y166{bottom:1029.030000px;}
.ycf{bottom:1029.210000px;}
.y119{bottom:1029.390000px;}
.y81{bottom:1029.570000px;}
.y38{bottom:1029.750000px;}
.y1a1{bottom:1059.270000px;}
.y118{bottom:1059.450000px;}
.y165{bottom:1059.630000px;}
.y80{bottom:1059.810000px;}
.y9{bottom:1059.990000px;}
.y9c{bottom:1060.170000px;}
.y164{bottom:1089.690000px;}
.y7f{bottom:1089.870000px;}
.y101{bottom:1090.050000px;}
.y8{bottom:1090.230000px;}
.y9b{bottom:1097.790000px;}
.y100{bottom:1120.110000px;}
.y7{bottom:1120.290000px;}
.y37{bottom:1120.470000px;}
.y32{bottom:1155.420000px;}
.y31{bottom:1177.740000px;}
.y1{bottom:1193.760000px;}
.y30{bottom:1196.100000px;}
.h15{height:20.145000px;}
.h11{height:20.160000px;}
.hf{height:20.182500px;}
.h14{height:20.190000px;}
.hd{height:34.611328px;}
.h17{height:35.398125px;}
.h18{height:35.459297px;}
.ha{height:40.128750px;}
.hc{height:40.149141px;}
.h10{height:40.500000px;}
.h3{height:57.454805px;}
.h12{height:60.480000px;}
.h5{height:61.136719px;}
.he{height:61.402500px;}
.h4{height:61.423863px;}
.h8{height:63.684844px;}
.hb{height:69.187500px;}
.h6{height:69.222656px;}
.h2{height:74.004654px;}
.h16{height:74.953125px;}
.h13{height:80.460000px;}
.h7{height:80.990508px;}
.h1{height:1263.000000px;}
.h9{height:1263.044910px;}
.h0{height:1263.060000px;}
.w5{width:84.240000px;}
.w8{width:84.276000px;}
.w9{width:84.405000px;}
.w4{width:84.621000px;}
.w3{width:105.291000px;}
.wa{width:105.501000px;}
.wb{width:150.330000px;}
.w6{width:169.410000px;}
.wc{width:190.635000px;}
.w7{width:256.560000px;}
.w2{width:892.417500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x13{left:8.265000px;}
.x15{left:10.440000px;}
.x12{left:11.865000px;}
.x1d{left:14.925000px;}
.xf{left:16.731000px;}
.x20{left:19.251000px;}
.x1f{left:20.880000px;}
.x10{left:28.251000px;}
.x1c{left:30.585000px;}
.x1a{left:31.680000px;}
.x21{left:32.940000px;}
.x25{left:34.380000px;}
.x23{left:37.605000px;}
.x22{left:38.880000px;}
.x24{left:44.985000px;}
.x17{left:64.650000px;}
.x27{left:71.820000px;}
.x19{left:73.470000px;}
.x1{left:108.036000px;}
.xa{left:112.536000px;}
.x3e{left:113.796000px;}
.xe{left:116.865000px;}
.x26{left:126.885000px;}
.xd{left:129.276000px;}
.x2f{left:140.076000px;}
.x2{left:150.510000px;}
.x28{left:171.930000px;}
.x3b{left:177.510000px;}
.x11{left:222.885000px;}
.x5{left:227.527500px;}
.x6{left:232.950000px;}
.x32{left:242.647500px;}
.x33{left:248.070000px;}
.x7{left:249.307500px;}
.x8{left:254.730000px;}
.x2a{left:259.050000px;}
.xc{left:260.850000px;}
.x14{left:308.415000px;}
.x39{left:318.652500px;}
.x9{left:324.075000px;}
.x3a{left:329.295000px;}
.x46{left:385.815000px;}
.x16{left:393.375000px;}
.x47{left:422.535000px;}
.x37{left:424.492500px;}
.x38{left:434.955000px;}
.x2b{left:440.152500px;}
.x2c{left:445.605000px;}
.x1b{left:478.380000px;}
.x3f{left:480.862500px;}
.x40{left:491.325000px;}
.x34{left:551.782500px;}
.x35{left:562.245000px;}
.x18{left:563.520000px;}
.x45{left:574.305000px;}
.x2d{left:600.922500px;}
.x2e{left:606.165000px;}
.x48{left:639.330000px;}
.x3{left:644.527500px;}
.x4{left:649.770000px;}
.x44{left:653.730000px;}
.x3c{left:654.787500px;}
.x43{left:656.430000px;}
.x42{left:663.990000px;}
.x3d{left:665.430000px;}
.x1e{left:669.750000px;}
.x30{left:718.687500px;}
.x31{left:723.930000px;}
.x41{left:743.550000px;}
.x36{left:787.087500px;}
.xb{left:797.550000px;}
.x29{left:801.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls56{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls36{letter-spacing:-0.448000pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.302933pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000001pt;}
.ls28{letter-spacing:0.014080pt;}
.ls60{letter-spacing:0.042667pt;}
.ls2a{letter-spacing:0.056533pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.256000pt;}
.ls3f{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.362667pt;}
.ls59{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.400640pt;}
.ls31{letter-spacing:0.416000pt;}
.ls50{letter-spacing:0.433280pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls51{letter-spacing:0.502933pt;}
.ls11{letter-spacing:0.576000pt;}
.ls45{letter-spacing:0.640000pt;}
.ls4f{letter-spacing:0.654080pt;}
.ls8{letter-spacing:0.698667pt;}
.ls54{letter-spacing:0.704000pt;}
.ls2d{letter-spacing:0.736000pt;}
.ls0{letter-spacing:1.216000pt;}
.ls1a{letter-spacing:1.856000pt;}
.ls3e{letter-spacing:2.112000pt;}
.ls14{letter-spacing:2.353280pt;}
.ls17{letter-spacing:2.496000pt;}
.ls25{letter-spacing:3.136000pt;}
.ls41{letter-spacing:3.392000pt;}
.ls26{letter-spacing:3.776000pt;}
.ls1d{letter-spacing:4.032000pt;}
.lsf{letter-spacing:4.416000pt;}
.ls1b{letter-spacing:5.056000pt;}
.ls1e{letter-spacing:5.312000pt;}
.ls4c{letter-spacing:5.696000pt;}
.ls19{letter-spacing:6.336000pt;}
.ls1f{letter-spacing:6.833280pt;}
.ls3a{letter-spacing:6.976000pt;}
.ls21{letter-spacing:7.616000pt;}
.ls2f{letter-spacing:8.256000pt;}
.ls37{letter-spacing:8.896000pt;}
.ls12{letter-spacing:9.088000pt;}
.ls55{letter-spacing:9.536000pt;}
.ls4b{letter-spacing:9.792000pt;}
.ls5b{letter-spacing:9.920000pt;}
.ls34{letter-spacing:10.176000pt;}
.ls5d{letter-spacing:10.613333pt;}
.ls46{letter-spacing:10.816000pt;}
.ls5c{letter-spacing:10.880000pt;}
.ls3c{letter-spacing:11.072000pt;}
.lse{letter-spacing:11.456000pt;}
.ls5a{letter-spacing:12.096000pt;}
.ls38{letter-spacing:12.736000pt;}
.ls40{letter-spacing:12.992000pt;}
.ls22{letter-spacing:13.376000pt;}
.ls47{letter-spacing:14.656000pt;}
.ls39{letter-spacing:15.296000pt;}
.ls2c{letter-spacing:15.936000pt;}
.lsc{letter-spacing:16.576000pt;}
.ls42{letter-spacing:16.682667pt;}
.ls49{letter-spacing:16.832000pt;}
.ls53{letter-spacing:17.216000pt;}
.ls27{letter-spacing:18.353280pt;}
.ls30{letter-spacing:19.136000pt;}
.ls52{letter-spacing:19.776000pt;}
.ls3b{letter-spacing:21.056000pt;}
.ls1{letter-spacing:21.696000pt;}
.lsd{letter-spacing:23.616000pt;}
.ls57{letter-spacing:29.376000pt;}
.ls4e{letter-spacing:30.656000pt;}
.ls4d{letter-spacing:33.472000pt;}
.lsb{letter-spacing:35.936000pt;}
.ls2b{letter-spacing:36.416000pt;}
.ls32{letter-spacing:38.336000pt;}
.ls33{letter-spacing:38.442667pt;}
.ls58{letter-spacing:39.616000pt;}
.ls5e{letter-spacing:41.088000pt;}
.ls4a{letter-spacing:49.856000pt;}
.ls5f{letter-spacing:115.136000pt;}
.lsa{letter-spacing:344.753280pt;}
.ws21{word-spacing:-28.597333pt;}
.ws18{word-spacing:-18.688000pt;}
.wse{word-spacing:-18.304000pt;}
.ws8{word-spacing:-18.176000pt;}
.ws13{word-spacing:-18.112000pt;}
.ws9{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984001pt;}
.ws1{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.983997pt;}
.ws12{word-spacing:-17.920000pt;}
.ws14{word-spacing:-17.856000pt;}
.ws3{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.728000pt;}
.ws17{word-spacing:-17.472000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.424000pt;}
.ws5{word-spacing:-15.157653pt;}
.ws4{word-spacing:-14.926720pt;}
.ws0{word-spacing:-14.623787pt;}
.wsd{word-spacing:-13.120640pt;}
.ws1d{word-spacing:-6.485333pt;}
.ws1e{word-spacing:-6.421333pt;}
.ws19{word-spacing:-6.389333pt;}
.ws22{word-spacing:-6.357333pt;}
.ws1a{word-spacing:-6.293333pt;}
.ws1f{word-spacing:-6.272000pt;}
.ws1b{word-spacing:-6.240000pt;}
.ws20{word-spacing:-6.176000pt;}
.ws1c{word-spacing:-6.165333pt;}
.ws6{word-spacing:0.000000pt;}
._2e{margin-left:-5.359573pt;}
._13{margin-left:-4.416000pt;}
._14{margin-left:-3.520000pt;}
._4{margin-left:-2.176000pt;}
._3{margin-left:-1.272960pt;}
._0{width:1.188907pt;}
._d{width:2.190080pt;}
._b{width:3.316053pt;}
._a{width:4.266667pt;}
._7{width:5.184000pt;}
._8{width:6.704427pt;}
._c{width:7.680000pt;}
._5{width:8.874667pt;}
._6{width:10.165333pt;}
._19{width:11.946667pt;}
._15{width:13.248000pt;}
._9{width:14.464000pt;}
._1b{width:15.497387pt;}
._10{width:17.024000pt;}
._27{width:18.029227pt;}
._1a{width:18.940160pt;}
._11{width:19.854293pt;}
._2c{width:20.810667pt;}
._12{width:21.824000pt;}
._18{width:23.365760pt;}
._20{width:24.256000pt;}
._25{width:25.536000pt;}
._1c{width:26.922667pt;}
._1d{width:27.911040pt;}
._f{width:28.856960pt;}
._e{width:30.336000pt;}
._21{width:31.360000pt;}
._22{width:32.288000pt;}
._34{width:34.403627pt;}
._16{width:35.328000pt;}
._17{width:36.549760pt;}
._2a{width:37.952000pt;}
._2b{width:38.890667pt;}
._2d{width:39.792427pt;}
._23{width:42.368000pt;}
._24{width:43.278293pt;}
._35{width:44.288000pt;}
._36{width:45.400960pt;}
._30{width:46.944000pt;}
._29{width:49.920000pt;}
._1e{width:52.032000pt;}
._1f{width:53.258667pt;}
._31{width:69.179093pt;}
._2f{width:78.560000pt;}
._28{width:81.920000pt;}
._32{width:87.968000pt;}
._26{width:127.995093pt;}
._33{width:171.456000pt;}
._1{width:345.220693pt;}
._2{width:534.472960pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:4.480000pt;}
.y65{bottom:4.640000pt;}
.y5f{bottom:4.960000pt;}
.y63{bottom:13.600000pt;}
.y5c{bottom:13.920000pt;}
.y6d{bottom:22.400000pt;}
.y62{bottom:22.560000pt;}
.y5e{bottom:22.880000pt;}
.y6a{bottom:31.360000pt;}
.y5b{bottom:31.840000pt;}
.y6c{bottom:40.320000pt;}
.y68{bottom:40.480000pt;}
.y5d{bottom:40.800000pt;}
.y36{bottom:50.400000pt;}
.y6{bottom:51.040000pt;}
.y6b{bottom:58.240000pt;}
.y35{bottom:66.112000pt;}
.y5{bottom:69.312000pt;}
.y34{bottom:81.952000pt;}
.y4{bottom:84.192000pt;}
.y3{bottom:99.072000pt;}
.y33{bottom:102.112000pt;}
.y2{bottom:116.352000pt;}
.y59{bottom:119.232000pt;}
.yce{bottom:124.512000pt;}
.y2f{bottom:131.232000pt;}
.y19c{bottom:132.352000pt;}
.y146{bottom:133.466667pt;}
.y179{bottom:133.626667pt;}
.y18b{bottom:133.786667pt;}
.y133{bottom:133.946667pt;}
.y58{bottom:134.106667pt;}
.yec{bottom:134.266667pt;}
.y117{bottom:134.746667pt;}
.y7e{bottom:138.586667pt;}
.yb9{bottom:139.386667pt;}
.yff{bottom:139.546667pt;}
.y2e{bottom:146.106667pt;}
.y57{bottom:149.146667pt;}
.ycd{bottom:149.306667pt;}
.yfe{bottom:149.626667pt;}
.y2d{bottom:151.386667pt;}
.yb8{bottom:154.426667pt;}
.ycc{bottom:154.586667pt;}
.y1a0{bottom:159.226667pt;}
.y19b{bottom:159.386667pt;}
.y145{bottom:160.346667pt;}
.y178{bottom:160.506667pt;}
.y18a{bottom:160.826667pt;}
.y16c{bottom:160.986667pt;}
.y2c{bottom:161.146667pt;}
.y116{bottom:161.466667pt;}
.y17d{bottom:162.746667pt;}
.y56{bottom:164.026667pt;}
.yeb{bottom:164.186667pt;}
.yb7{bottom:164.346667pt;}
.ycb{bottom:164.666667pt;}
.y7d{bottom:165.466667pt;}
.y2b{bottom:166.426667pt;}
.y55{bottom:169.306667pt;}
.y163{bottom:169.466667pt;}
.y2a{bottom:176.026667pt;}
.y9a{bottom:178.906667pt;}
.yea{bottom:179.066667pt;}
.y54{bottom:179.226667pt;}
.y162{bottom:179.386667pt;}
.ye9{bottom:184.346667pt;}
.yfd{bottom:186.266667pt;}
.y19f{bottom:186.426667pt;}
.y19a{bottom:186.586667pt;}
.y144{bottom:187.226667pt;}
.y157{bottom:187.866667pt;}
.y132{bottom:188.026667pt;}
.y115{bottom:188.506667pt;}
.y17c{bottom:189.786667pt;}
.y29{bottom:190.906667pt;}
.y7c{bottom:192.186667pt;}
.y99{bottom:193.786667pt;}
.ye8{bottom:194.266667pt;}
.y28{bottom:196.186667pt;}
.y98{bottom:199.066667pt;}
.y27{bottom:206.106667pt;}
.y97{bottom:208.986667pt;}
.y19e{bottom:213.146667pt;}
.yfc{bottom:213.306667pt;}
.y199{bottom:213.466667pt;}
.y143{bottom:214.106667pt;}
.y177{bottom:214.426667pt;}
.y189{bottom:214.746667pt;}
.y131{bottom:214.906667pt;}
.y16b{bottom:215.226667pt;}
.yca{bottom:215.546667pt;}
.y17b{bottom:216.666667pt;}
.y53{bottom:216.986667pt;}
.yb6{bottom:218.266667pt;}
.y7b{bottom:219.066667pt;}
.y26{bottom:236.186667pt;}
.y198{bottom:240.186667pt;}
.y161{bottom:240.346667pt;}
.ye7{bottom:240.506667pt;}
.y142{bottom:240.986667pt;}
.y176{bottom:241.466667pt;}
.y130{bottom:241.786667pt;}
.y16a{bottom:241.946667pt;}
.y156{bottom:242.106667pt;}
.yc9{bottom:242.586667pt;}
.y17a{bottom:243.386667pt;}
.y52{bottom:243.706667pt;}
.yb5{bottom:245.146667pt;}
.y7a{bottom:245.946667pt;}
.y25{bottom:263.066667pt;}
.ye6{bottom:267.386667pt;}
.y141{bottom:267.866667pt;}
.y175{bottom:268.346667pt;}
.y12f{bottom:268.666667pt;}
.y169{bottom:268.826667pt;}
.y155{bottom:268.986667pt;}
.yc8{bottom:269.626667pt;}
.y51{bottom:270.586667pt;}
.yb4{bottom:271.866667pt;}
.y79{bottom:272.826667pt;}
.y24{bottom:289.946667pt;}
.ye4{bottom:294.146667pt;}
.y197{bottom:294.306667pt;}
.y140{bottom:294.626667pt;}
.y96{bottom:295.426667pt;}
.y188{bottom:295.586667pt;}
.y154{bottom:295.906667pt;}
.yc7{bottom:296.706667pt;}
.y50{bottom:297.506667pt;}
.yb3{bottom:298.786667pt;}
.y78{bottom:299.746667pt;}
.ye5{bottom:300.866667pt;}
.y23{bottom:316.866667pt;}
.y196{bottom:321.026667pt;}
.ye3{bottom:321.186667pt;}
.y13f{bottom:321.506667pt;}
.y95{bottom:321.826667pt;}
.y12e{bottom:322.306667pt;}
.y174{bottom:322.626667pt;}
.y153{bottom:322.786667pt;}
.yc6{bottom:323.746667pt;}
.y114{bottom:323.906667pt;}
.y4f{bottom:324.386667pt;}
.yb2{bottom:325.666667pt;}
.y77{bottom:326.626667pt;}
.y21{bottom:343.586667pt;}
.ye2{bottom:348.226667pt;}
.yfb{bottom:348.386667pt;}
.y94{bottom:348.706667pt;}
.y12d{bottom:349.506667pt;}
.y152{bottom:349.666667pt;}
.y22{bottom:350.306667pt;}
.y113{bottom:350.786667pt;}
.yc5{bottom:350.946667pt;}
.y4e{bottom:351.266667pt;}
.yb1{bottom:352.546667pt;}
.y76{bottom:353.506667pt;}
.y20{bottom:370.626667pt;}
.y160{bottom:375.106667pt;}
.yfa{bottom:375.266667pt;}
.ye1{bottom:375.426667pt;}
.y93{bottom:375.746667pt;}
.y12c{bottom:376.226667pt;}
.y151{bottom:376.386667pt;}
.y168{bottom:376.546667pt;}
.y187{bottom:376.706667pt;}
.y112{bottom:377.506667pt;}
.yc4{bottom:377.826667pt;}
.y4d{bottom:378.146667pt;}
.yb0{bottom:379.426667pt;}
.y75{bottom:380.386667pt;}
.y1e{bottom:397.666667pt;}
.y195{bottom:401.826667pt;}
.yf9{bottom:401.986667pt;}
.y19d{bottom:402.306667pt;}
.ye0{bottom:402.466667pt;}
.y91{bottom:402.626667pt;}
.y173{bottom:403.106667pt;}
.y12b{bottom:403.266667pt;}
.y167{bottom:403.426667pt;}
.y1f{bottom:404.386667pt;}
.yc3{bottom:404.546667pt;}
.y111{bottom:404.706667pt;}
.y4c{bottom:405.026667pt;}
.yaf{bottom:406.306667pt;}
.y74{bottom:407.106667pt;}
.y92{bottom:409.346667pt;}
.y1d{bottom:424.866667pt;}
.y15e{bottom:428.706667pt;}
.yf8{bottom:429.026667pt;}
.y90{bottom:429.506667pt;}
.y13e{bottom:429.666667pt;}
.y172{bottom:429.826667pt;}
.y150{bottom:430.146667pt;}
.y12a{bottom:430.466667pt;}
.y186{bottom:430.626667pt;}
.y110{bottom:431.586667pt;}
.yc2{bottom:431.746667pt;}
.y4b{bottom:431.906667pt;}
.yae{bottom:433.186667pt;}
.y73{bottom:433.986667pt;}
.y15f{bottom:435.426667pt;}
.y1b{bottom:451.586667pt;}
.y15d{bottom:455.906667pt;}
.yf6{bottom:456.066667pt;}
.y8f{bottom:456.386667pt;}
.ydf{bottom:456.706667pt;}
.y14f{bottom:457.026667pt;}
.y129{bottom:457.186667pt;}
.y185{bottom:457.506667pt;}
.y1c{bottom:458.306667pt;}
.y10f{bottom:458.466667pt;}
.y49{bottom:458.626667pt;}
.yad{bottom:460.066667pt;}
.y72{bottom:460.866667pt;}
.yf7{bottom:462.786667pt;}
.y4a{bottom:465.346667pt;}
.y1a{bottom:478.786667pt;}
.y194{bottom:482.626667pt;}
.y15c{bottom:482.786667pt;}
.y8e{bottom:483.266667pt;}
.yde{bottom:483.586667pt;}
.y14e{bottom:483.906667pt;}
.y128{bottom:484.226667pt;}
.y10e{bottom:485.346667pt;}
.y48{bottom:485.506667pt;}
.yac{bottom:486.786667pt;}
.y71{bottom:487.746667pt;}
.y70{bottom:501.666667pt;}
.y19{bottom:505.666667pt;}
.y15b{bottom:509.506667pt;}
.y193{bottom:509.666667pt;}
.y13d{bottom:509.986667pt;}
.y8d{bottom:510.146667pt;}
.ydd{bottom:510.306667pt;}
.y171{bottom:510.626667pt;}
.y14d{bottom:510.786667pt;}
.y184{bottom:511.266667pt;}
.y127{bottom:511.426667pt;}
.y10d{bottom:512.226667pt;}
.y47{bottom:512.386667pt;}
.yab{bottom:513.666667pt;}
.y1ab{bottom:520.066667pt;}
.y6f{bottom:520.226667pt;}
.y18{bottom:532.573333pt;}
.y15a{bottom:536.733333pt;}
.y8c{bottom:537.053333pt;}
.ydc{bottom:537.213333pt;}
.y14c{bottom:537.693333pt;}
.y170{bottom:537.853333pt;}
.y126{bottom:538.333333pt;}
.y6e{bottom:538.813333pt;}
.y10c{bottom:539.133333pt;}
.y46{bottom:539.293333pt;}
.yaa{bottom:540.573333pt;}
.y1aa{bottom:546.973333pt;}
.y69{bottom:557.533333pt;}
.y17{bottom:559.453333pt;}
.yf5{bottom:563.773333pt;}
.y8b{bottom:563.933333pt;}
.y13c{bottom:564.253333pt;}
.y14b{bottom:564.573333pt;}
.y125{bottom:565.213333pt;}
.y183{bottom:565.533333pt;}
.y10b{bottom:565.853333pt;}
.yc1{bottom:566.013333pt;}
.y45{bottom:566.173333pt;}
.ya9{bottom:567.453333pt;}
.y1a9{bottom:573.853333pt;}
.y16{bottom:586.333333pt;}
.y8a{bottom:590.653333pt;}
.yf4{bottom:590.813333pt;}
.ydb{bottom:591.133333pt;}
.y14a{bottom:591.293333pt;}
.y13b{bottom:591.453333pt;}
.y16f{bottom:591.613333pt;}
.y124{bottom:591.933333pt;}
.y182{bottom:592.413333pt;}
.y10a{bottom:592.733333pt;}
.ybf{bottom:592.893333pt;}
.y44{bottom:593.053333pt;}
.ya8{bottom:594.333333pt;}
.yc0{bottom:599.613333pt;}
.y1a8{bottom:600.733333pt;}
.y15{bottom:613.053333pt;}
.y89{bottom:617.533333pt;}
.yf3{bottom:617.853333pt;}
.yda{bottom:618.173333pt;}
.y123{bottom:618.813333pt;}
.y181{bottom:619.293333pt;}
.y109{bottom:619.613333pt;}
.ybe{bottom:619.773333pt;}
.y43{bottom:619.933333pt;}
.ya6{bottom:621.053333pt;}
.y1a7{bottom:627.613333pt;}
.ya7{bottom:627.773333pt;}
.y67{bottom:629.693333pt;}
.y88{bottom:635.453333pt;}
.y14{bottom:639.933333pt;}
.y192{bottom:644.733333pt;}
.y149{bottom:644.893333pt;}
.yf2{bottom:645.053333pt;}
.yd9{bottom:645.373333pt;}
.y122{bottom:645.693333pt;}
.y180{bottom:646.013333pt;}
.y108{bottom:646.493333pt;}
.ybd{bottom:646.653333pt;}
.y42{bottom:646.813333pt;}
.ya5{bottom:648.253333pt;}
.y1a6{bottom:654.493333pt;}
.y87{bottom:657.693333pt;}
.y13{bottom:666.813333pt;}
.y191{bottom:671.453333pt;}
.y13a{bottom:671.933333pt;}
.yd8{bottom:672.093333pt;}
.y16e{bottom:672.413333pt;}
.y121{bottom:672.573333pt;}
.y17f{bottom:673.053333pt;}
.y107{bottom:673.373333pt;}
.y41{bottom:673.533333pt;}
.ya4{bottom:675.133333pt;}
.ybc{bottom:680.253333pt;}
.y1a5{bottom:681.373333pt;}
.y66{bottom:684.093333pt;}
.y12{bottom:693.693333pt;}
.y139{bottom:698.653333pt;}
.yf1{bottom:698.973333pt;}
.yd7{bottom:699.133333pt;}
.y120{bottom:699.453333pt;}
.y17e{bottom:700.093333pt;}
.y106{bottom:700.253333pt;}
.y40{bottom:700.413333pt;}
.ya3{bottom:702.013333pt;}
.y64{bottom:702.653333pt;}
.y1a4{bottom:708.253333pt;}
.y11{bottom:720.573333pt;}
.y5a{bottom:721.213333pt;}
.y190{bottom:725.373333pt;}
.y138{bottom:725.853333pt;}
.yef{bottom:726.013333pt;}
.yd6{bottom:726.173333pt;}
.y11f{bottom:726.333333pt;}
.y16d{bottom:726.653333pt;}
.ybb{bottom:727.133333pt;}
.y3f{bottom:727.293333pt;}
.ya2{bottom:728.733333pt;}
.yf0{bottom:732.093333pt;}
.y10{bottom:747.453333pt;}
.y18f{bottom:752.413333pt;}
.y137{bottom:752.893333pt;}
.yee{bottom:753.053333pt;}
.y11e{bottom:753.213333pt;}
.yd5{bottom:753.373333pt;}
.yba{bottom:754.013333pt;}
.y3e{bottom:754.173333pt;}
.ya1{bottom:755.453333pt;}
.y60{bottom:757.853333pt;}
.yf{bottom:774.373333pt;}
.y18e{bottom:779.493333pt;}
.y1a3{bottom:779.813333pt;}
.y158{bottom:779.973333pt;}
.yd4{bottom:780.133333pt;}
.y148{bottom:780.293333pt;}
.y86{bottom:780.613333pt;}
.y105{bottom:780.933333pt;}
.y3d{bottom:781.093333pt;}
.ya0{bottom:782.213333pt;}
.y159{bottom:786.693333pt;}
.ye{bottom:801.253333pt;}
.y18d{bottom:806.533333pt;}
.y11d{bottom:806.853333pt;}
.yd3{bottom:807.173333pt;}
.y147{bottom:807.333333pt;}
.y85{bottom:807.493333pt;}
.y104{bottom:807.653333pt;}
.y3c{bottom:807.973333pt;}
.y9f{bottom:809.093333pt;}
.yd{bottom:826.693333pt;}
.y11c{bottom:833.733333pt;}
.y136{bottom:833.893333pt;}
.yed{bottom:834.213333pt;}
.y84{bottom:834.373333pt;}
.y103{bottom:834.533333pt;}
.y3b{bottom:834.853333pt;}
.y9e{bottom:835.493333pt;}
.yc{bottom:852.613333pt;}
.y11b{bottom:860.773333pt;}
.y135{bottom:860.933333pt;}
.y83{bottom:861.093333pt;}
.yd1{bottom:861.253333pt;}
.y102{bottom:861.413333pt;}
.y3a{bottom:861.573333pt;}
.y9d{bottom:862.053333pt;}
.yd2{bottom:867.973333pt;}
.yb{bottom:881.573333pt;}
.y18c{bottom:887.653333pt;}
.y11a{bottom:887.813333pt;}
.y134{bottom:887.973333pt;}
.yd0{bottom:888.133333pt;}
.y82{bottom:888.293333pt;}
.y39{bottom:888.453333pt;}
.ya{bottom:912.933333pt;}
.y1a2{bottom:914.373333pt;}
.y166{bottom:914.693333pt;}
.ycf{bottom:914.853333pt;}
.y119{bottom:915.013333pt;}
.y81{bottom:915.173333pt;}
.y38{bottom:915.333333pt;}
.y1a1{bottom:941.573333pt;}
.y118{bottom:941.733333pt;}
.y165{bottom:941.893333pt;}
.y80{bottom:942.053333pt;}
.y9{bottom:942.213333pt;}
.y9c{bottom:942.373333pt;}
.y164{bottom:968.613333pt;}
.y7f{bottom:968.773333pt;}
.y101{bottom:968.933333pt;}
.y8{bottom:969.093333pt;}
.y9b{bottom:975.813333pt;}
.y100{bottom:995.653333pt;}
.y7{bottom:995.813333pt;}
.y37{bottom:995.973333pt;}
.y32{bottom:1027.040000pt;}
.y31{bottom:1046.880000pt;}
.y1{bottom:1061.120000pt;}
.y30{bottom:1063.200000pt;}
.h15{height:17.906667pt;}
.h11{height:17.920000pt;}
.hf{height:17.940000pt;}
.h14{height:17.946667pt;}
.hd{height:30.765625pt;}
.h17{height:31.465000pt;}
.h18{height:31.519375pt;}
.ha{height:35.670000pt;}
.hc{height:35.688125pt;}
.h10{height:36.000000pt;}
.h3{height:51.070938pt;}
.h12{height:53.760000pt;}
.h5{height:54.343750pt;}
.he{height:54.580000pt;}
.h4{height:54.598989pt;}
.h8{height:56.608750pt;}
.hb{height:61.500000pt;}
.h6{height:61.531250pt;}
.h2{height:65.781915pt;}
.h16{height:66.625000pt;}
.h13{height:71.520000pt;}
.h7{height:71.991563pt;}
.h1{height:1122.666667pt;}
.h9{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w5{width:74.880000pt;}
.w8{width:74.912000pt;}
.w9{width:75.026667pt;}
.w4{width:75.218667pt;}
.w3{width:93.592000pt;}
.wa{width:93.778667pt;}
.wb{width:133.626667pt;}
.w6{width:150.586667pt;}
.wc{width:169.453333pt;}
.w7{width:228.053333pt;}
.w2{width:793.260000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x13{left:7.346667pt;}
.x15{left:9.280000pt;}
.x12{left:10.546667pt;}
.x1d{left:13.266667pt;}
.xf{left:14.872000pt;}
.x20{left:17.112000pt;}
.x1f{left:18.560000pt;}
.x10{left:25.112000pt;}
.x1c{left:27.186667pt;}
.x1a{left:28.160000pt;}
.x21{left:29.280000pt;}
.x25{left:30.560000pt;}
.x23{left:33.426667pt;}
.x22{left:34.560000pt;}
.x24{left:39.986667pt;}
.x17{left:57.466667pt;}
.x27{left:63.840000pt;}
.x19{left:65.306667pt;}
.x1{left:96.032000pt;}
.xa{left:100.032000pt;}
.x3e{left:101.152000pt;}
.xe{left:103.880000pt;}
.x26{left:112.786667pt;}
.xd{left:114.912000pt;}
.x2f{left:124.512000pt;}
.x2{left:133.786667pt;}
.x28{left:152.826667pt;}
.x3b{left:157.786667pt;}
.x11{left:198.120000pt;}
.x5{left:202.246667pt;}
.x6{left:207.066667pt;}
.x32{left:215.686667pt;}
.x33{left:220.506667pt;}
.x7{left:221.606667pt;}
.x8{left:226.426667pt;}
.x2a{left:230.266667pt;}
.xc{left:231.866667pt;}
.x14{left:274.146667pt;}
.x39{left:283.246667pt;}
.x9{left:288.066667pt;}
.x3a{left:292.706667pt;}
.x46{left:342.946667pt;}
.x16{left:349.666667pt;}
.x47{left:375.586667pt;}
.x37{left:377.326667pt;}
.x38{left:386.626667pt;}
.x2b{left:391.246667pt;}
.x2c{left:396.093333pt;}
.x1b{left:425.226667pt;}
.x3f{left:427.433333pt;}
.x40{left:436.733333pt;}
.x34{left:490.473333pt;}
.x35{left:499.773333pt;}
.x18{left:500.906667pt;}
.x45{left:510.493333pt;}
.x2d{left:534.153333pt;}
.x2e{left:538.813333pt;}
.x48{left:568.293333pt;}
.x3{left:572.913333pt;}
.x4{left:577.573333pt;}
.x44{left:581.093333pt;}
.x3c{left:582.033333pt;}
.x43{left:583.493333pt;}
.x42{left:590.213333pt;}
.x3d{left:591.493333pt;}
.x1e{left:595.333333pt;}
.x30{left:638.833333pt;}
.x31{left:643.493333pt;}
.x41{left:660.933333pt;}
.x36{left:699.633333pt;}
.xb{left:708.933333pt;}
.x29{left:712.133333pt;}
}




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