
    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_d6137759135ee617173eeffe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_89214b5fd94aa9f1872e2fba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_572a143c81ea0a5fe361fc29.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_118d1fd611c37d842ee9d9fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_577e85de18b48e1a41945261.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_6267f3ddd5fdfa871110c1b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9d64118ca416a0d7ff553896.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_21afc597617151d61d892b5e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c0a1412fdd6a2e90d09cf3ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e22686756dadc96fa411af21.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251301,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v2{vertical-align:27.360000px;}
.ls28{letter-spacing:-2.804194px;}
.ls32{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.624000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls2f{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.348000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.174000px;}
.lsf{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.138000px;}
.ls2c{letter-spacing:-0.122918px;}
.ls1b{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.006000px;}
.ls10{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls8{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.181440px;}
.ls14{letter-spacing:0.186000px;}
.lsc{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.ls1{letter-spacing:0.240000px;}
.lse{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.294000px;}
.lsb{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.576000px;}
.ls26{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.726000px;}
.ls33{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.816000px;}
.ls31{letter-spacing:0.864000px;}
.ls7{letter-spacing:1.092000px;}
.ls2b{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.791949px;}
.ls30{letter-spacing:10.080000px;}
.ls25{letter-spacing:51.960000px;}
.ls24{letter-spacing:62.760000px;}
.ls1f{letter-spacing:64.421280px;}
.ls1a{letter-spacing:846.156000px;}
.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;}
}
.ws6{word-spacing:-24.308892px;}
.ws1{word-spacing:-24.032892px;}
.ws4{word-spacing:-23.942892px;}
.ws0{word-spacing:-23.042892px;}
.ws3{word-spacing:-22.868892px;}
.ws2{word-spacing:-22.592892px;}
.ws20{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.310000px;}
.ws11{word-spacing:-20.280000px;}
.ws10{word-spacing:-20.238000px;}
.wsf{word-spacing:-20.214000px;}
.wsb{word-spacing:-20.136000px;}
.ws9{word-spacing:-20.124000px;}
.ws7{word-spacing:-19.878000px;}
.wsa{word-spacing:-19.872000px;}
.ws2a{word-spacing:-19.440000px;}
.ws23{word-spacing:-18.720000px;}
.ws26{word-spacing:-18.504000px;}
.ws24{word-spacing:-18.432000px;}
.ws1f{word-spacing:-18.288000px;}
.ws21{word-spacing:-18.144000px;}
.ws36{word-spacing:-18.072000px;}
.ws1b{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.ws38{word-spacing:-17.856000px;}
.ws22{word-spacing:-17.784000px;}
.ws1e{word-spacing:-17.712000px;}
.ws37{word-spacing:-17.568000px;}
.ws28{word-spacing:-15.705680px;}
.ws27{word-spacing:-15.237978px;}
.ws2e{word-spacing:-14.811563px;}
.ws25{word-spacing:-14.120786px;}
.ws1c{word-spacing:-12.060000px;}
.wsd{word-spacing:-2.364000px;}
.wse{word-spacing:-2.088000px;}
.ws12{word-spacing:-1.446000px;}
.wsc{word-spacing:-1.296000px;}
.ws16{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.150000px;}
.ws14{word-spacing:-0.090000px;}
.ws15{word-spacing:-0.054000px;}
.ws1d{word-spacing:0.000000px;}
.ws13{word-spacing:0.072000px;}
.ws17{word-spacing:0.318000px;}
.ws18{word-spacing:0.360000px;}
.ws5{word-spacing:1.266654px;}
.ws34{word-spacing:1.709291px;}
.ws2d{word-spacing:3.847319px;}
.ws30{word-spacing:3.994820px;}
.ws2b{word-spacing:133.290550px;}
.ws33{word-spacing:291.818528px;}
.ws32{word-spacing:330.243288px;}
.ws2c{word-spacing:332.184648px;}
.ws29{word-spacing:812.490800px;}
.ws35{word-spacing:1040.756320px;}
.ws31{word-spacing:1084.958450px;}
.ws2f{word-spacing:1170.268630px;}
._1a{margin-left:-5.929156px;}
._13{margin-left:-4.776000px;}
._9{margin-left:-3.600000px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.152000px;}
._3{width:1.419738px;}
._4{width:2.672448px;}
._a{width:4.392000px;}
._8{width:6.384000px;}
._12{width:7.488000px;}
._14{width:9.072000px;}
._f{width:10.272000px;}
._e{width:11.928000px;}
._b{width:13.104000px;}
._c{width:14.492262px;}
._15{width:15.891738px;}
._18{width:16.988262px;}
._7{width:18.864000px;}
._6{width:20.160000px;}
._10{width:21.936000px;}
._11{width:23.544000px;}
._17{width:24.691638px;}
._5{width:25.722312px;}
._16{width:27.038652px;}
._d{width:28.200000px;}
._34{width:30.096000px;}
._2c{width:31.608000px;}
._1f{width:32.924262px;}
._1d{width:33.984000px;}
._1e{width:35.364000px;}
._3d{width:38.160000px;}
._40{width:39.672000px;}
._41{width:41.088000px;}
._3e{width:42.408000px;}
._37{width:43.776000px;}
._35{width:45.216000px;}
._36{width:46.512786px;}
._20{width:50.170077px;}
._3c{width:58.752000px;}
._1c{width:63.329005px;}
._3f{width:65.496000px;}
._2a{width:70.332012px;}
._3b{width:73.192524px;}
._3a{width:74.232000px;}
._24{width:78.713081px;}
._25{width:82.186246px;}
._26{width:97.122369px;}
._42{width:100.008000px;}
._38{width:103.752000px;}
._39{width:104.904000px;}
._1b{width:145.815311px;}
._22{width:154.276633px;}
._43{width:167.400000px;}
._44{width:168.696000px;}
._21{width:179.647981px;}
._2b{width:270.248742px;}
._27{width:316.692266px;}
._2e{width:317.753748px;}
._2f{width:346.372392px;}
._29{width:353.579473px;}
._33{width:565.107203px;}
._32{width:830.590089px;}
._19{width:846.156000px;}
._30{width:1067.490117px;}
._31{width:1122.340103px;}
._2d{width:1166.655917px;}
._1{width:1314.049027px;}
._23{width:1404.118554px;}
._28{width:1989.258999px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:56.483142px;}
.fs7{font-size:59.246254px;}
.fs5{font-size:60.951912px;}
.fs6{font-size:62.822719px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.514000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:2.665629px;}
.yd4{bottom:3.522845px;}
.yc4{bottom:3.522857px;}
.yc9{bottom:3.546343px;}
.y16f{bottom:3.724401px;}
.y118{bottom:3.825302px;}
.y136{bottom:3.918192px;}
.y126{bottom:3.918257px;}
.y12f{bottom:3.950909px;}
.yf{bottom:3.960000px;}
.y179{bottom:4.640088px;}
.yd{bottom:4.681500px;}
.y11e{bottom:4.769093px;}
.ya{bottom:5.041500px;}
.ybc{bottom:21.195857px;}
.yd1{bottom:22.048388px;}
.yc3{bottom:22.053086px;}
.yc8{bottom:22.076571px;}
.yd3{bottom:22.077147px;}
.y17b{bottom:23.169956px;}
.y117{bottom:23.839532px;}
.y178{bottom:24.091543px;}
.y135{bottom:24.554345px;}
.y124{bottom:24.554410px;}
.y11d{bottom:24.780541px;}
.ycd{bottom:27.357334px;}
.yc7{bottom:40.595057px;}
.yd0{bottom:40.602103px;}
.yc2{bottom:40.606800px;}
.y177{bottom:43.543243px;}
.y114{bottom:43.844911px;}
.y11c{bottom:44.792243px;}
.y12c{bottom:45.164441px;}
.y134{bottom:45.190498px;}
.y123{bottom:45.190563px;}
.ycc{bottom:45.887562px;}
.yc1{bottom:59.125285px;}
.ycf{bottom:59.126459px;}
.y176{bottom:62.994944px;}
.y113{bottom:63.862935px;}
.ycb{bottom:64.406048px;}
.y11b{bottom:64.803944px;}
.y133{bottom:65.793999px;}
.y12b{bottom:65.800595px;}
.y122{bottom:65.826716px;}
.y137{bottom:66.765792px;}
.yc0{bottom:77.655514px;}
.yc6{bottom:77.678999px;}
.y7{bottom:78.478500px;}
.y175{bottom:82.446644px;}
.y11a{bottom:84.815645px;}
.y12a{bottom:86.436748px;}
.ybf{bottom:96.173999px;}
.y174{bottom:101.898345px;}
.y6{bottom:103.680000px;}
.y119{bottom:104.827347px;}
.y180{bottom:112.536000px;}
.y9a{bottom:120.636000px;}
.y173{bottom:121.350045px;}
.y150{bottom:123.696000px;}
.y196{bottom:124.056000px;}
.yf3{bottom:125.856000px;}
.yba{bottom:126.756000px;}
.y130{bottom:128.641599px;}
.y98{bottom:129.456000px;}
.y17f{bottom:133.236000px;}
.y172{bottom:140.804204px;}
.y60{bottom:141.336000px;}
.y14f{bottom:144.396000px;}
.y195{bottom:144.756000px;}
.yf2{bottom:146.556000px;}
.yb9{bottom:147.456000px;}
.y97{bottom:150.150000px;}
.y111{bottom:150.690000px;}
.y86{bottom:152.130000px;}
.y17e{bottom:153.930000px;}
.y171{bottom:160.249759px;}
.y5f{bottom:162.030000px;}
.y14e{bottom:165.090000px;}
.y194{bottom:165.450000px;}
.yf1{bottom:167.250000px;}
.yb8{bottom:168.150000px;}
.y17d{bottom:170.310000px;}
.y96{bottom:170.850000px;}
.y110{bottom:171.390000px;}
.y85{bottom:172.830000px;}
.y5e{bottom:182.730000px;}
.y116{bottom:184.876681px;}
.y14d{bottom:185.790000px;}
.y193{bottom:186.150000px;}
.yf0{bottom:187.950000px;}
.yb7{bottom:188.850000px;}
.y95{bottom:191.550000px;}
.y10f{bottom:192.090000px;}
.y84{bottom:193.530000px;}
.y5d{bottom:203.430000px;}
.y14c{bottom:206.490000px;}
.y192{bottom:206.850000px;}
.yef{bottom:208.650000px;}
.yb6{bottom:209.550000px;}
.y94{bottom:212.250000px;}
.y10e{bottom:212.790000px;}
.y83{bottom:214.230000px;}
.y16d{bottom:218.010000px;}
.y5c{bottom:224.130000px;}
.y14b{bottom:227.190000px;}
.y191{bottom:227.550000px;}
.yee{bottom:229.350000px;}
.yb5{bottom:230.250000px;}
.y12d{bottom:231.791019px;}
.y93{bottom:232.950000px;}
.y10d{bottom:233.490000px;}
.y12{bottom:234.720000px;}
.y82{bottom:234.930000px;}
.y16c{bottom:238.890000px;}
.y5b{bottom:244.830000px;}
.y14a{bottom:247.890000px;}
.y190{bottom:248.250000px;}
.yed{bottom:250.050000px;}
.yb4{bottom:250.950000px;}
.y92{bottom:253.290000px;}
.y10c{bottom:254.190000px;}
.y81{bottom:255.630000px;}
.y11{bottom:256.318500px;}
.y16b{bottom:259.590000px;}
.y99{bottom:261.210000px;}
.y5a{bottom:265.530000px;}
.y149{bottom:268.590000px;}
.y18f{bottom:268.950000px;}
.yec{bottom:270.750000px;}
.yb3{bottom:271.650000px;}
.y128{bottom:273.024142px;}
.y91{bottom:274.395000px;}
.y10b{bottom:274.575000px;}
.y80{bottom:276.015000px;}
.y10{bottom:277.918500px;}
.y16a{bottom:280.335000px;}
.y59{bottom:286.275000px;}
.y148{bottom:289.335000px;}
.y18e{bottom:289.695000px;}
.yeb{bottom:291.495000px;}
.yb2{bottom:292.395000px;}
.y90{bottom:295.095000px;}
.y10a{bottom:295.275000px;}
.ye{bottom:295.558500px;}
.y7f{bottom:297.075000px;}
.y169{bottom:301.035000px;}
.y58{bottom:306.975000px;}
.y147{bottom:310.035000px;}
.y18d{bottom:310.395000px;}
.yea{bottom:312.195000px;}
.yb1{bottom:313.095000px;}
.y8f{bottom:315.795000px;}
.y109{bottom:316.335000px;}
.y7e{bottom:317.775000px;}
.y168{bottom:321.735000px;}
.y57{bottom:327.675000px;}
.y146{bottom:330.735000px;}
.y18c{bottom:331.095000px;}
.ye9{bottom:332.895000px;}
.yb0{bottom:333.795000px;}
.y3{bottom:334.798500px;}
.y8e{bottom:336.495000px;}
.y108{bottom:336.675000px;}
.y7d{bottom:338.475000px;}
.y167{bottom:342.435000px;}
.y56{bottom:348.375000px;}
.y145{bottom:351.435000px;}
.y18b{bottom:351.795000px;}
.ye8{bottom:353.595000px;}
.yaf{bottom:354.495000px;}
.y8d{bottom:357.195000px;}
.y107{bottom:357.735000px;}
.y7c{bottom:359.175000px;}
.y166{bottom:363.135000px;}
.y19a{bottom:368.715000px;}
.y55{bottom:369.075000px;}
.y199{bottom:369.255000px;}
.y144{bottom:372.135000px;}
.y18a{bottom:372.495000px;}
.ye7{bottom:374.295000px;}
.yae{bottom:375.195000px;}
.y8c{bottom:377.895000px;}
.y106{bottom:378.435000px;}
.y7b{bottom:379.875000px;}
.y165{bottom:383.835000px;}
.y54{bottom:389.775000px;}
.y143{bottom:392.835000px;}
.y189{bottom:393.195000px;}
.y105{bottom:394.815000px;}
.ye6{bottom:394.995000px;}
.yad{bottom:395.895000px;}
.y8b{bottom:398.595000px;}
.y7a{bottom:400.575000px;}
.y164{bottom:404.535000px;}
.y53{bottom:410.475000px;}
.y142{bottom:413.535000px;}
.y5{bottom:413.638500px;}
.y188{bottom:413.895000px;}
.y17{bottom:414.000000px;}
.ye5{bottom:415.695000px;}
.yac{bottom:416.595000px;}
.y8a{bottom:419.295000px;}
.y79{bottom:421.275000px;}
.y163{bottom:425.235000px;}
.y52{bottom:431.175000px;}
.y141{bottom:434.235000px;}
.y187{bottom:434.595000px;}
.ye4{bottom:436.395000px;}
.yab{bottom:437.295000px;}
.y89{bottom:439.995000px;}
.y78{bottom:441.975000px;}
.y162{bottom:445.935000px;}
.y51{bottom:451.875000px;}
.y140{bottom:454.935000px;}
.y186{bottom:455.295000px;}
.ye3{bottom:457.095000px;}
.yaa{bottom:457.995000px;}
.y88{bottom:460.695000px;}
.y77{bottom:462.675000px;}
.y161{bottom:466.635000px;}
.y16{bottom:468.000000px;}
.y4{bottom:468.720000px;}
.y50{bottom:472.575000px;}
.y13f{bottom:475.635000px;}
.y198{bottom:475.995000px;}
.y87{bottom:477.075000px;}
.ye2{bottom:477.795000px;}
.ya9{bottom:478.695000px;}
.y76{bottom:483.375000px;}
.y160{bottom:487.335000px;}
.y9d{bottom:492.735000px;}
.y4f{bottom:493.275000px;}
.y13e{bottom:496.335000px;}
.y197{bottom:496.695000px;}
.ye1{bottom:498.495000px;}
.ya8{bottom:499.395000px;}
.y75{bottom:504.075000px;}
.y15f{bottom:508.035000px;}
.y4e{bottom:513.975000px;}
.y13d{bottom:517.035000px;}
.y185{bottom:517.395000px;}
.ye0{bottom:519.195000px;}
.ya7{bottom:520.095000px;}
.y74{bottom:524.775000px;}
.y15e{bottom:528.735000px;}
.y4d{bottom:534.675000px;}
.y13c{bottom:537.735000px;}
.y184{bottom:538.095000px;}
.ydf{bottom:539.895000px;}
.ya6{bottom:540.795000px;}
.y15{bottom:543.958500px;}
.y73{bottom:545.475000px;}
.y2{bottom:548.638500px;}
.y15d{bottom:549.435000px;}
.y4c{bottom:555.375000px;}
.y13b{bottom:558.465000px;}
.y183{bottom:558.825000px;}
.yde{bottom:560.625000px;}
.ya5{bottom:561.525000px;}
.y72{bottom:566.205000px;}
.y15c{bottom:570.165000px;}
.y4b{bottom:576.105000px;}
.y13a{bottom:579.165000px;}
.y182{bottom:579.525000px;}
.ydd{bottom:581.325000px;}
.ya4{bottom:582.225000px;}
.y71{bottom:586.905000px;}
.y14{bottom:589.318500px;}
.y8{bottom:590.038500px;}
.y15b{bottom:590.865000px;}
.y4a{bottom:596.805000px;}
.y6a{bottom:596.985000px;}
.y139{bottom:599.865000px;}
.y181{bottom:600.225000px;}
.ydc{bottom:602.025000px;}
.ya3{bottom:602.925000px;}
.y104{bottom:606.165000px;}
.y70{bottom:607.245000px;}
.y15a{bottom:611.565000px;}
.y138{bottom:616.245000px;}
.y49{bottom:617.505000px;}
.y69{bottom:620.925000px;}
.ydb{bottom:622.725000px;}
.ya2{bottom:623.625000px;}
.y103{bottom:626.865000px;}
.y6f{bottom:628.305000px;}
.y1{bottom:629.278500px;}
.y13{bottom:630.000000px;}
.y159{bottom:632.265000px;}
.y48{bottom:638.205000px;}
.y120{bottom:641.445000px;}
.y68{bottom:641.625000px;}
.yda{bottom:643.425000px;}
.ya1{bottom:644.325000px;}
.y102{bottom:647.565000px;}
.y6e{bottom:649.005000px;}
.y158{bottom:652.965000px;}
.y47{bottom:658.905000px;}
.y67{bottom:662.325000px;}
.yd9{bottom:664.125000px;}
.ya0{bottom:665.025000px;}
.y101{bottom:668.265000px;}
.y6d{bottom:669.705000px;}
.y157{bottom:673.665000px;}
.y11f{bottom:679.065000px;}
.y127{bottom:679.170000px;}
.y46{bottom:679.605000px;}
.y9b{bottom:679.785000px;}
.y132{bottom:680.141793px;}
.y66{bottom:683.025000px;}
.yd8{bottom:684.825000px;}
.y9f{bottom:685.725000px;}
.y6c{bottom:686.085000px;}
.y100{bottom:688.965000px;}
.y156{bottom:694.365000px;}
.y45{bottom:700.305000px;}
.y9e{bottom:702.105000px;}
.yd2{bottom:703.514836px;}
.y65{bottom:703.725000px;}
.yd7{bottom:705.165000px;}
.yff{bottom:709.665000px;}
.y155{bottom:715.065000px;}
.y44{bottom:721.005000px;}
.y64{bottom:724.425000px;}
.yd6{bottom:726.225000px;}
.yfe{bottom:730.365000px;}
.y154{bottom:735.765000px;}
.yce{bottom:740.592308px;}
.y43{bottom:741.705000px;}
.y2f{bottom:741.885000px;}
.yd5{bottom:742.605000px;}
.y63{bottom:745.125000px;}
.yfd{bottom:751.065000px;}
.y153{bottom:756.105000px;}
.y42{bottom:762.405000px;}
.y131{bottom:762.653688px;}
.y2e{bottom:765.825000px;}
.yfc{bottom:771.765000px;}
.y152{bottom:777.165000px;}
.y41{bottom:783.105000px;}
.y12e{bottom:783.257189px;}
.y2d{bottom:786.525000px;}
.yfb{bottom:792.465000px;}
.y151{bottom:793.545000px;}
.y170{bottom:793.855128px;}
.y40{bottom:803.805000px;}
.yc{bottom:805.318500px;}
.y2c{bottom:806.865000px;}
.y62{bottom:807.225000px;}
.yfa{bottom:813.165000px;}
.yca{bottom:814.719093px;}
.y3f{bottom:824.505000px;}
.y129{bottom:824.524271px;}
.y2b{bottom:827.565000px;}
.y61{bottom:827.925000px;}
.yf9{bottom:833.865000px;}
.y3e{bottom:845.250000px;}
.y2a{bottom:848.670000px;}
.yf8{bottom:854.610000px;}
.y3d{bottom:865.950000px;}
.y25{bottom:869.370000px;}
.yf7{bottom:875.310000px;}
.y3c{bottom:886.650000px;}
.y24{bottom:890.070000px;}
.yc5{bottom:894.132513px;}
.yf6{bottom:896.010000px;}
.y3b{bottom:907.350000px;}
.y23{bottom:910.770000px;}
.yf5{bottom:916.710000px;}
.yb{bottom:919.798500px;}
.y125{bottom:927.639732px;}
.y3a{bottom:928.050000px;}
.y22{bottom:931.470000px;}
.yf4{bottom:933.090000px;}
.y115{bottom:933.120000px;}
.y9{bottom:939.958500px;}
.y9c{bottom:948.390000px;}
.y39{bottom:948.750000px;}
.y17a{bottom:950.392777px;}
.y21{bottom:952.170000px;}
.y121{bottom:968.885917px;}
.y38{bottom:969.450000px;}
.y16e{bottom:969.838332px;}
.y29{bottom:972.870000px;}
.y20{bottom:979.710000px;}
.ybe{bottom:986.807140px;}
.y37{bottom:990.150000px;}
.y1f{bottom:993.570000px;}
.y36{bottom:1010.850000px;}
.y1e{bottom:1014.270000px;}
.y35{bottom:1031.550000px;}
.y1d{bottom:1034.970000px;}
.y34{bottom:1052.250000px;}
.y112{bottom:1054.133747px;}
.y1c{bottom:1055.310000px;}
.y28{bottom:1055.670000px;}
.y17c{bottom:1072.590000px;}
.y33{bottom:1072.950000px;}
.y1b{bottom:1076.010000px;}
.y27{bottom:1076.370000px;}
.y6b{bottom:1093.290000px;}
.y32{bottom:1093.650000px;}
.y1a{bottom:1097.070000px;}
.ybb{bottom:1097.988511px;}
.y31{bottom:1114.350000px;}
.y19{bottom:1117.770000px;}
.y30{bottom:1135.440000px;}
.y26{bottom:1138.140000px;}
.y18{bottom:1138.500000px;}
.h7{height:18.360000px;}
.h25{height:18.529819px;}
.h23{height:19.623937px;}
.h6{height:21.598500px;}
.h5{height:21.958500px;}
.h11{height:35.316643px;}
.h18{height:36.197357px;}
.h29{height:37.981519px;}
.h14{height:39.438913px;}
.h12{height:39.852608px;}
.h1f{height:40.260090px;}
.h1c{height:42.559196px;}
.h1a{height:43.005621px;}
.h20{height:43.865473px;}
.h1e{height:44.325600px;}
.hc{height:47.344922px;}
.h28{height:58.146958px;}
.h26{height:59.709115px;}
.hd{height:60.046875px;}
.h9{height:70.664062px;}
.ha{height:72.562500px;}
.h17{height:73.246071px;}
.hb{height:74.704922px;}
.h10{height:74.953125px;}
.h3{height:75.093750px;}
.h2{height:76.533750px;}
.h16{height:78.530356px;}
.h19{height:79.098384px;}
.h24{height:81.499744px;}
.h1d{height:81.532396px;}
.he{height:84.898125px;}
.h4{height:87.102492px;}
.hf{height:87.695156px;}
.h15{height:91.799785px;}
.h22{height:102.135897px;}
.h13{height:110.294785px;}
.h27{height:194.517005px;}
.h1b{height:200.112433px;}
.h21{height:371.247071px;}
.h0{height:1262.878500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:24.840000px;}
.w6{width:30.958500px;}
.w15{width:34.920000px;}
.w13{width:36.000000px;}
.w1b{width:38.158500px;}
.w4{width:42.478500px;}
.w9{width:46.078500px;}
.wc{width:54.000000px;}
.we{width:57.960000px;}
.w1a{width:61.918500px;}
.w18{width:69.840000px;}
.w10{width:71.638500px;}
.w12{width:74.158500px;}
.w11{width:76.318500px;}
.w3{width:76.320000px;}
.w17{width:78.118500px;}
.wb{width:78.838500px;}
.wd{width:82.078500px;}
.w14{width:83.160000px;}
.w1c{width:86.038500px;}
.w1f{width:87.118500px;}
.w8{width:90.360000px;}
.w16{width:92.878500px;}
.wf{width:94.318500px;}
.w1e{width:96.118500px;}
.wa{width:99.718500px;}
.w24{width:104.168163px;}
.w5{width:106.558500px;}
.w7{width:106.560000px;}
.w19{width:115.200000px;}
.w2e{width:120.878106px;}
.w27{width:138.427474px;}
.w25{width:139.458985px;}
.w29{width:141.312969px;}
.w2{width:142.920000px;}
.w2d{width:155.257723px;}
.w2c{width:168.980789px;}
.w2f{width:203.096103px;}
.w31{width:214.183051px;}
.w2b{width:226.973499px;}
.w32{width:255.913436px;}
.w26{width:429.860431px;}
.w28{width:675.930297px;}
.w30{width:675.958153px;}
.w2a{width:676.001649px;}
.w23{width:676.138064px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w22{width:892.979987px;}
.w20{width:892.980000px;}
.w21{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:1.763072px;}
.x2{left:56.158500px;}
.x1{left:58.318500px;}
.x5{left:80.638500px;}
.x26{left:85.318500px;}
.x2a{left:108.035987px;}
.x28{left:112.318500px;}
.xe{left:117.000000px;}
.x17{left:124.198500px;}
.x3{left:140.398500px;}
.x24{left:141.478500px;}
.x3b{left:151.229987px;}
.x18{left:152.278500px;}
.x4{left:158.398500px;}
.x33{left:162.029987px;}
.x25{left:166.318500px;}
.x27{left:172.078500px;}
.xf{left:178.198500px;}
.x6{left:223.198500px;}
.x19{left:227.158500px;}
.x30{left:247.147415px;}
.x10{left:249.478500px;}
.x1a{left:254.158500px;}
.x39{left:258.716038px;}
.x38{left:265.220030px;}
.x11{left:297.000000px;}
.x7{left:299.158500px;}
.x1b{left:339.478500px;}
.x8{left:342.000000px;}
.x31{left:354.277633px;}
.x1c{left:366.478500px;}
.x12{left:378.358500px;}
.x29{left:382.318500px;}
.x35{left:387.079289px;}
.x13{left:429.840000px;}
.x1d{left:436.318500px;}
.x9{left:448.200000px;}
.x1e{left:459.360000px;}
.xa{left:474.118500px;}
.x37{left:508.015095px;}
.x1f{left:521.278500px;}
.x14{left:523.798500px;}
.x3a{left:569.775102px;}
.xb{left:580.318500px;}
.x15{left:588.958500px;}
.x2d{left:601.844987px;}
.x36{left:615.033942px;}
.x32{left:626.504987px;}
.x2b{left:631.004987px;}
.x20{left:632.520000px;}
.x34{left:642.617328px;}
.x2c{left:659.444987px;}
.x16{left:664.918500px;}
.xc{left:669.958500px;}
.x21{left:691.558500px;}
.xd{left:722.520000px;}
.x22{left:726.478500px;}
.x3c{left:738.149987px;}
.x2e{left:785.309987px;}
.x23{left:808.558500px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v2{vertical-align:24.320000pt;}
.ls28{letter-spacing:-2.492617pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.554667pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls2f{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.309333pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.154667pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.122667pt;}
.ls2c{letter-spacing:-0.109260pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.005333pt;}
.ls10{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls8{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.161280pt;}
.ls14{letter-spacing:0.165333pt;}
.lsc{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.ls1{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.261333pt;}
.lsb{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls26{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.645333pt;}
.ls33{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.725333pt;}
.ls31{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.970667pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.592844pt;}
.ls30{letter-spacing:8.960000pt;}
.ls25{letter-spacing:46.186667pt;}
.ls24{letter-spacing:55.786667pt;}
.ls1f{letter-spacing:57.263360pt;}
.ls1a{letter-spacing:752.138667pt;}
.ws6{word-spacing:-21.607904pt;}
.ws1{word-spacing:-21.362571pt;}
.ws4{word-spacing:-21.282571pt;}
.ws0{word-spacing:-20.482571pt;}
.ws3{word-spacing:-20.327904pt;}
.ws2{word-spacing:-20.082571pt;}
.ws20{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.053333pt;}
.ws11{word-spacing:-18.026667pt;}
.ws10{word-spacing:-17.989333pt;}
.wsf{word-spacing:-17.968000pt;}
.wsb{word-spacing:-17.898667pt;}
.ws9{word-spacing:-17.888000pt;}
.ws7{word-spacing:-17.669333pt;}
.wsa{word-spacing:-17.664000pt;}
.ws2a{word-spacing:-17.280000pt;}
.ws23{word-spacing:-16.640000pt;}
.ws26{word-spacing:-16.448000pt;}
.ws24{word-spacing:-16.384000pt;}
.ws1f{word-spacing:-16.256000pt;}
.ws21{word-spacing:-16.128000pt;}
.ws36{word-spacing:-16.064000pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.ws38{word-spacing:-15.872000pt;}
.ws22{word-spacing:-15.808000pt;}
.ws1e{word-spacing:-15.744000pt;}
.ws37{word-spacing:-15.616000pt;}
.ws28{word-spacing:-13.960604pt;}
.ws27{word-spacing:-13.544869pt;}
.ws2e{word-spacing:-13.165834pt;}
.ws25{word-spacing:-12.551809pt;}
.ws1c{word-spacing:-10.720000pt;}
.wsd{word-spacing:-2.101333pt;}
.wse{word-spacing:-1.856000pt;}
.ws12{word-spacing:-1.285333pt;}
.wsc{word-spacing:-1.152000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.133333pt;}
.ws14{word-spacing:-0.080000pt;}
.ws15{word-spacing:-0.048000pt;}
.ws1d{word-spacing:0.000000pt;}
.ws13{word-spacing:0.064000pt;}
.ws17{word-spacing:0.282667pt;}
.ws18{word-spacing:0.320000pt;}
.ws5{word-spacing:1.125915pt;}
.ws34{word-spacing:1.519370pt;}
.ws2d{word-spacing:3.419839pt;}
.ws30{word-spacing:3.550951pt;}
.ws2b{word-spacing:118.480489pt;}
.ws33{word-spacing:259.394247pt;}
.ws32{word-spacing:293.549590pt;}
.ws2c{word-spacing:295.275243pt;}
.ws29{word-spacing:722.214044pt;}
.ws35{word-spacing:925.116729pt;}
.ws31{word-spacing:964.407511pt;}
.ws2f{word-spacing:1040.238782pt;}
._1a{margin-left:-5.270361pt;}
._13{margin-left:-4.245333pt;}
._9{margin-left:-3.200000pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-1.024000pt;}
._3{width:1.261989pt;}
._4{width:2.375509pt;}
._a{width:3.904000pt;}
._8{width:5.674667pt;}
._12{width:6.656000pt;}
._14{width:8.064000pt;}
._f{width:9.130667pt;}
._e{width:10.602667pt;}
._b{width:11.648000pt;}
._c{width:12.882011pt;}
._15{width:14.125989pt;}
._18{width:15.100677pt;}
._7{width:16.768000pt;}
._6{width:17.920000pt;}
._10{width:19.498667pt;}
._11{width:20.928000pt;}
._17{width:21.948123pt;}
._5{width:22.864277pt;}
._16{width:24.034357pt;}
._d{width:25.066667pt;}
._34{width:26.752000pt;}
._2c{width:28.096000pt;}
._1f{width:29.266011pt;}
._1d{width:30.208000pt;}
._1e{width:31.434667pt;}
._3d{width:33.920000pt;}
._40{width:35.264000pt;}
._41{width:36.522667pt;}
._3e{width:37.696000pt;}
._37{width:38.912000pt;}
._35{width:40.192000pt;}
._36{width:41.344699pt;}
._20{width:44.595624pt;}
._3c{width:52.224000pt;}
._1c{width:56.292449pt;}
._3f{width:58.218667pt;}
._2a{width:62.517344pt;}
._3b{width:65.060021pt;}
._3a{width:65.984000pt;}
._24{width:69.967183pt;}
._25{width:73.054441pt;}
._26{width:86.330995pt;}
._42{width:88.896000pt;}
._38{width:92.224000pt;}
._39{width:93.248000pt;}
._1b{width:129.613609pt;}
._22{width:137.134785pt;}
._43{width:148.800000pt;}
._44{width:149.952000pt;}
._21{width:159.687094pt;}
._2b{width:240.221104pt;}
._27{width:281.504236pt;}
._2e{width:282.447776pt;}
._2f{width:307.886571pt;}
._29{width:314.292865pt;}
._33{width:502.317513pt;}
._32{width:738.302301pt;}
._19{width:752.138667pt;}
._30{width:948.880104pt;}
._31{width:997.635647pt;}
._2d{width:1037.027482pt;}
._1{width:1168.043580pt;}
._23{width:1248.105382pt;}
._28{width:1768.230222pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:50.207238pt;}
.fs7{font-size:52.663337pt;}
.fs5{font-size:54.179477pt;}
.fs6{font-size:55.842417pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.234667pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.369448pt;}
.yd4{bottom:3.131418pt;}
.yc4{bottom:3.131429pt;}
.yc9{bottom:3.152305pt;}
.y16f{bottom:3.310579pt;}
.y118{bottom:3.400268pt;}
.y136{bottom:3.482837pt;}
.y126{bottom:3.482895pt;}
.y12f{bottom:3.511919pt;}
.yf{bottom:3.520000pt;}
.y179{bottom:4.124523pt;}
.yd{bottom:4.161333pt;}
.y11e{bottom:4.239194pt;}
.ya{bottom:4.481333pt;}
.ybc{bottom:18.840762pt;}
.yd1{bottom:19.598567pt;}
.yc3{bottom:19.602743pt;}
.yc8{bottom:19.623619pt;}
.yd3{bottom:19.624130pt;}
.y17b{bottom:20.595516pt;}
.y117{bottom:21.190695pt;}
.y178{bottom:21.414705pt;}
.y135{bottom:21.826084pt;}
.y124{bottom:21.826142pt;}
.y11d{bottom:22.027148pt;}
.ycd{bottom:24.317630pt;}
.yc7{bottom:36.084495pt;}
.yd0{bottom:36.090758pt;}
.yc2{bottom:36.094933pt;}
.y177{bottom:38.705105pt;}
.y114{bottom:38.973254pt;}
.y11c{bottom:39.815327pt;}
.y12c{bottom:40.146170pt;}
.y134{bottom:40.169331pt;}
.y123{bottom:40.169389pt;}
.ycc{bottom:40.788944pt;}
.yc1{bottom:52.555809pt;}
.ycf{bottom:52.556853pt;}
.y176{bottom:55.995506pt;}
.y113{bottom:56.767053pt;}
.ycb{bottom:57.249820pt;}
.y11b{bottom:57.603506pt;}
.y133{bottom:58.483554pt;}
.y12b{bottom:58.489417pt;}
.y122{bottom:58.512637pt;}
.y137{bottom:59.347371pt;}
.yc0{bottom:69.027123pt;}
.yc6{bottom:69.047999pt;}
.y7{bottom:69.758667pt;}
.y175{bottom:73.285906pt;}
.y11a{bottom:75.391685pt;}
.y12a{bottom:76.832665pt;}
.ybf{bottom:85.487999pt;}
.y174{bottom:90.576307pt;}
.y6{bottom:92.160000pt;}
.y119{bottom:93.179864pt;}
.y180{bottom:100.032000pt;}
.y9a{bottom:107.232000pt;}
.y173{bottom:107.866707pt;}
.y150{bottom:109.952000pt;}
.y196{bottom:110.272000pt;}
.yf3{bottom:111.872000pt;}
.yba{bottom:112.672000pt;}
.y130{bottom:114.348088pt;}
.y98{bottom:115.072000pt;}
.y17f{bottom:118.432000pt;}
.y172{bottom:125.159293pt;}
.y60{bottom:125.632000pt;}
.y14f{bottom:128.352000pt;}
.y195{bottom:128.672000pt;}
.yf2{bottom:130.272000pt;}
.yb9{bottom:131.072000pt;}
.y97{bottom:133.466667pt;}
.y111{bottom:133.946667pt;}
.y86{bottom:135.226667pt;}
.y17e{bottom:136.826667pt;}
.y171{bottom:142.444230pt;}
.y5f{bottom:144.026667pt;}
.y14e{bottom:146.746667pt;}
.y194{bottom:147.066667pt;}
.yf1{bottom:148.666667pt;}
.yb8{bottom:149.466667pt;}
.y17d{bottom:151.386667pt;}
.y96{bottom:151.866667pt;}
.y110{bottom:152.346667pt;}
.y85{bottom:153.626667pt;}
.y5e{bottom:162.426667pt;}
.y116{bottom:164.334828pt;}
.y14d{bottom:165.146667pt;}
.y193{bottom:165.466667pt;}
.yf0{bottom:167.066667pt;}
.yb7{bottom:167.866667pt;}
.y95{bottom:170.266667pt;}
.y10f{bottom:170.746667pt;}
.y84{bottom:172.026667pt;}
.y5d{bottom:180.826667pt;}
.y14c{bottom:183.546667pt;}
.y192{bottom:183.866667pt;}
.yef{bottom:185.466667pt;}
.yb6{bottom:186.266667pt;}
.y94{bottom:188.666667pt;}
.y10e{bottom:189.146667pt;}
.y83{bottom:190.426667pt;}
.y16d{bottom:193.786667pt;}
.y5c{bottom:199.226667pt;}
.y14b{bottom:201.946667pt;}
.y191{bottom:202.266667pt;}
.yee{bottom:203.866667pt;}
.yb5{bottom:204.666667pt;}
.y12d{bottom:206.036461pt;}
.y93{bottom:207.066667pt;}
.y10d{bottom:207.546667pt;}
.y12{bottom:208.640000pt;}
.y82{bottom:208.826667pt;}
.y16c{bottom:212.346667pt;}
.y5b{bottom:217.626667pt;}
.y14a{bottom:220.346667pt;}
.y190{bottom:220.666667pt;}
.yed{bottom:222.266667pt;}
.yb4{bottom:223.066667pt;}
.y92{bottom:225.146667pt;}
.y10c{bottom:225.946667pt;}
.y81{bottom:227.226667pt;}
.y11{bottom:227.838667pt;}
.y16b{bottom:230.746667pt;}
.y99{bottom:232.186667pt;}
.y5a{bottom:236.026667pt;}
.y149{bottom:238.746667pt;}
.y18f{bottom:239.066667pt;}
.yec{bottom:240.666667pt;}
.yb3{bottom:241.466667pt;}
.y128{bottom:242.688126pt;}
.y91{bottom:243.906667pt;}
.y10b{bottom:244.066667pt;}
.y80{bottom:245.346667pt;}
.y10{bottom:247.038667pt;}
.y16a{bottom:249.186667pt;}
.y59{bottom:254.466667pt;}
.y148{bottom:257.186667pt;}
.y18e{bottom:257.506667pt;}
.yeb{bottom:259.106667pt;}
.yb2{bottom:259.906667pt;}
.y90{bottom:262.306667pt;}
.y10a{bottom:262.466667pt;}
.ye{bottom:262.718667pt;}
.y7f{bottom:264.066667pt;}
.y169{bottom:267.586667pt;}
.y58{bottom:272.866667pt;}
.y147{bottom:275.586667pt;}
.y18d{bottom:275.906667pt;}
.yea{bottom:277.506667pt;}
.yb1{bottom:278.306667pt;}
.y8f{bottom:280.706667pt;}
.y109{bottom:281.186667pt;}
.y7e{bottom:282.466667pt;}
.y168{bottom:285.986667pt;}
.y57{bottom:291.266667pt;}
.y146{bottom:293.986667pt;}
.y18c{bottom:294.306667pt;}
.ye9{bottom:295.906667pt;}
.yb0{bottom:296.706667pt;}
.y3{bottom:297.598667pt;}
.y8e{bottom:299.106667pt;}
.y108{bottom:299.266667pt;}
.y7d{bottom:300.866667pt;}
.y167{bottom:304.386667pt;}
.y56{bottom:309.666667pt;}
.y145{bottom:312.386667pt;}
.y18b{bottom:312.706667pt;}
.ye8{bottom:314.306667pt;}
.yaf{bottom:315.106667pt;}
.y8d{bottom:317.506667pt;}
.y107{bottom:317.986667pt;}
.y7c{bottom:319.266667pt;}
.y166{bottom:322.786667pt;}
.y19a{bottom:327.746667pt;}
.y55{bottom:328.066667pt;}
.y199{bottom:328.226667pt;}
.y144{bottom:330.786667pt;}
.y18a{bottom:331.106667pt;}
.ye7{bottom:332.706667pt;}
.yae{bottom:333.506667pt;}
.y8c{bottom:335.906667pt;}
.y106{bottom:336.386667pt;}
.y7b{bottom:337.666667pt;}
.y165{bottom:341.186667pt;}
.y54{bottom:346.466667pt;}
.y143{bottom:349.186667pt;}
.y189{bottom:349.506667pt;}
.y105{bottom:350.946667pt;}
.ye6{bottom:351.106667pt;}
.yad{bottom:351.906667pt;}
.y8b{bottom:354.306667pt;}
.y7a{bottom:356.066667pt;}
.y164{bottom:359.586667pt;}
.y53{bottom:364.866667pt;}
.y142{bottom:367.586667pt;}
.y5{bottom:367.678667pt;}
.y188{bottom:367.906667pt;}
.y17{bottom:368.000000pt;}
.ye5{bottom:369.506667pt;}
.yac{bottom:370.306667pt;}
.y8a{bottom:372.706667pt;}
.y79{bottom:374.466667pt;}
.y163{bottom:377.986667pt;}
.y52{bottom:383.266667pt;}
.y141{bottom:385.986667pt;}
.y187{bottom:386.306667pt;}
.ye4{bottom:387.906667pt;}
.yab{bottom:388.706667pt;}
.y89{bottom:391.106667pt;}
.y78{bottom:392.866667pt;}
.y162{bottom:396.386667pt;}
.y51{bottom:401.666667pt;}
.y140{bottom:404.386667pt;}
.y186{bottom:404.706667pt;}
.ye3{bottom:406.306667pt;}
.yaa{bottom:407.106667pt;}
.y88{bottom:409.506667pt;}
.y77{bottom:411.266667pt;}
.y161{bottom:414.786667pt;}
.y16{bottom:416.000000pt;}
.y4{bottom:416.640000pt;}
.y50{bottom:420.066667pt;}
.y13f{bottom:422.786667pt;}
.y198{bottom:423.106667pt;}
.y87{bottom:424.066667pt;}
.ye2{bottom:424.706667pt;}
.ya9{bottom:425.506667pt;}
.y76{bottom:429.666667pt;}
.y160{bottom:433.186667pt;}
.y9d{bottom:437.986667pt;}
.y4f{bottom:438.466667pt;}
.y13e{bottom:441.186667pt;}
.y197{bottom:441.506667pt;}
.ye1{bottom:443.106667pt;}
.ya8{bottom:443.906667pt;}
.y75{bottom:448.066667pt;}
.y15f{bottom:451.586667pt;}
.y4e{bottom:456.866667pt;}
.y13d{bottom:459.586667pt;}
.y185{bottom:459.906667pt;}
.ye0{bottom:461.506667pt;}
.ya7{bottom:462.306667pt;}
.y74{bottom:466.466667pt;}
.y15e{bottom:469.986667pt;}
.y4d{bottom:475.266667pt;}
.y13c{bottom:477.986667pt;}
.y184{bottom:478.306667pt;}
.ydf{bottom:479.906667pt;}
.ya6{bottom:480.706667pt;}
.y15{bottom:483.518667pt;}
.y73{bottom:484.866667pt;}
.y2{bottom:487.678667pt;}
.y15d{bottom:488.386667pt;}
.y4c{bottom:493.666667pt;}
.y13b{bottom:496.413333pt;}
.y183{bottom:496.733333pt;}
.yde{bottom:498.333333pt;}
.ya5{bottom:499.133333pt;}
.y72{bottom:503.293333pt;}
.y15c{bottom:506.813333pt;}
.y4b{bottom:512.093333pt;}
.y13a{bottom:514.813333pt;}
.y182{bottom:515.133333pt;}
.ydd{bottom:516.733333pt;}
.ya4{bottom:517.533333pt;}
.y71{bottom:521.693333pt;}
.y14{bottom:523.838667pt;}
.y8{bottom:524.478667pt;}
.y15b{bottom:525.213333pt;}
.y4a{bottom:530.493333pt;}
.y6a{bottom:530.653333pt;}
.y139{bottom:533.213333pt;}
.y181{bottom:533.533333pt;}
.ydc{bottom:535.133333pt;}
.ya3{bottom:535.933333pt;}
.y104{bottom:538.813333pt;}
.y70{bottom:539.773333pt;}
.y15a{bottom:543.613333pt;}
.y138{bottom:547.773333pt;}
.y49{bottom:548.893333pt;}
.y69{bottom:551.933333pt;}
.ydb{bottom:553.533333pt;}
.ya2{bottom:554.333333pt;}
.y103{bottom:557.213333pt;}
.y6f{bottom:558.493333pt;}
.y1{bottom:559.358667pt;}
.y13{bottom:560.000000pt;}
.y159{bottom:562.013333pt;}
.y48{bottom:567.293333pt;}
.y120{bottom:570.173333pt;}
.y68{bottom:570.333333pt;}
.yda{bottom:571.933333pt;}
.ya1{bottom:572.733333pt;}
.y102{bottom:575.613333pt;}
.y6e{bottom:576.893333pt;}
.y158{bottom:580.413333pt;}
.y47{bottom:585.693333pt;}
.y67{bottom:588.733333pt;}
.yd9{bottom:590.333333pt;}
.ya0{bottom:591.133333pt;}
.y101{bottom:594.013333pt;}
.y6d{bottom:595.293333pt;}
.y157{bottom:598.813333pt;}
.y11f{bottom:603.613333pt;}
.y127{bottom:603.706667pt;}
.y46{bottom:604.093333pt;}
.y9b{bottom:604.253333pt;}
.y132{bottom:604.570483pt;}
.y66{bottom:607.133333pt;}
.yd8{bottom:608.733333pt;}
.y9f{bottom:609.533333pt;}
.y6c{bottom:609.853333pt;}
.y100{bottom:612.413333pt;}
.y156{bottom:617.213333pt;}
.y45{bottom:622.493333pt;}
.y9e{bottom:624.093333pt;}
.yd2{bottom:625.346521pt;}
.y65{bottom:625.533333pt;}
.yd7{bottom:626.813333pt;}
.yff{bottom:630.813333pt;}
.y155{bottom:635.613333pt;}
.y44{bottom:640.893333pt;}
.y64{bottom:643.933333pt;}
.yd6{bottom:645.533333pt;}
.yfe{bottom:649.213333pt;}
.y154{bottom:654.013333pt;}
.yce{bottom:658.304274pt;}
.y43{bottom:659.293333pt;}
.y2f{bottom:659.453333pt;}
.yd5{bottom:660.093333pt;}
.y63{bottom:662.333333pt;}
.yfd{bottom:667.613333pt;}
.y153{bottom:672.093333pt;}
.y42{bottom:677.693333pt;}
.y131{bottom:677.914389pt;}
.y2e{bottom:680.733333pt;}
.yfc{bottom:686.013333pt;}
.y152{bottom:690.813333pt;}
.y41{bottom:696.093333pt;}
.y12e{bottom:696.228612pt;}
.y2d{bottom:699.133333pt;}
.yfb{bottom:704.413333pt;}
.y151{bottom:705.373333pt;}
.y170{bottom:705.649003pt;}
.y40{bottom:714.493333pt;}
.yc{bottom:715.838667pt;}
.y2c{bottom:717.213333pt;}
.y62{bottom:717.533333pt;}
.yfa{bottom:722.813333pt;}
.yca{bottom:724.194750pt;}
.y3f{bottom:732.893333pt;}
.y129{bottom:732.910463pt;}
.y2b{bottom:735.613333pt;}
.y61{bottom:735.933333pt;}
.yf9{bottom:741.213333pt;}
.y3e{bottom:751.333333pt;}
.y2a{bottom:754.373333pt;}
.yf8{bottom:759.653333pt;}
.y3d{bottom:769.733333pt;}
.y25{bottom:772.773333pt;}
.yf7{bottom:778.053333pt;}
.y3c{bottom:788.133333pt;}
.y24{bottom:791.173333pt;}
.yc5{bottom:794.784456pt;}
.yf6{bottom:796.453333pt;}
.y3b{bottom:806.533333pt;}
.y23{bottom:809.573333pt;}
.yf5{bottom:814.853333pt;}
.yb{bottom:817.598667pt;}
.y125{bottom:824.568651pt;}
.y3a{bottom:824.933333pt;}
.y22{bottom:827.973333pt;}
.yf4{bottom:829.413333pt;}
.y115{bottom:829.440000pt;}
.y9{bottom:835.518667pt;}
.y9c{bottom:843.013333pt;}
.y39{bottom:843.333333pt;}
.y17a{bottom:844.793580pt;}
.y21{bottom:846.373333pt;}
.y121{bottom:861.231926pt;}
.y38{bottom:861.733333pt;}
.y16e{bottom:862.078517pt;}
.y29{bottom:864.773333pt;}
.y20{bottom:870.853333pt;}
.ybe{bottom:877.161903pt;}
.y37{bottom:880.133333pt;}
.y1f{bottom:883.173333pt;}
.y36{bottom:898.533333pt;}
.y1e{bottom:901.573333pt;}
.y35{bottom:916.933333pt;}
.y1d{bottom:919.973333pt;}
.y34{bottom:935.333333pt;}
.y112{bottom:937.007775pt;}
.y1c{bottom:938.053333pt;}
.y28{bottom:938.373333pt;}
.y17c{bottom:953.413333pt;}
.y33{bottom:953.733333pt;}
.y1b{bottom:956.453333pt;}
.y27{bottom:956.773333pt;}
.y6b{bottom:971.813333pt;}
.y32{bottom:972.133333pt;}
.y1a{bottom:975.173333pt;}
.ybb{bottom:975.989787pt;}
.y31{bottom:990.533333pt;}
.y19{bottom:993.573333pt;}
.y30{bottom:1009.280000pt;}
.y26{bottom:1011.680000pt;}
.y18{bottom:1012.000000pt;}
.h7{height:16.320000pt;}
.h25{height:16.470950pt;}
.h23{height:17.443499pt;}
.h6{height:19.198667pt;}
.h5{height:19.518667pt;}
.h11{height:31.392571pt;}
.h18{height:32.175428pt;}
.h29{height:33.761351pt;}
.h14{height:35.056811pt;}
.h12{height:35.424540pt;}
.h1f{height:35.786747pt;}
.h1c{height:37.830397pt;}
.h1a{height:38.227219pt;}
.h20{height:38.991532pt;}
.h1e{height:39.400534pt;}
.hc{height:42.084375pt;}
.h28{height:51.686185pt;}
.h26{height:53.074769pt;}
.hd{height:53.375000pt;}
.h9{height:62.812500pt;}
.ha{height:64.500000pt;}
.h17{height:65.107618pt;}
.hb{height:66.404375pt;}
.h10{height:66.625000pt;}
.h3{height:66.750000pt;}
.h2{height:68.030000pt;}
.h16{height:69.804761pt;}
.h19{height:70.309674pt;}
.h24{height:72.444217pt;}
.h1d{height:72.473241pt;}
.he{height:75.465000pt;}
.h4{height:77.424437pt;}
.hf{height:77.951250pt;}
.h15{height:81.599809pt;}
.h22{height:90.787464pt;}
.h13{height:98.039809pt;}
.h27{height:172.904004pt;}
.h1b{height:177.877718pt;}
.h21{height:329.997396pt;}
.h0{height:1122.558667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:22.080000pt;}
.w6{width:27.518667pt;}
.w15{width:31.040000pt;}
.w13{width:32.000000pt;}
.w1b{width:33.918667pt;}
.w4{width:37.758667pt;}
.w9{width:40.958667pt;}
.wc{width:48.000000pt;}
.we{width:51.520000pt;}
.w1a{width:55.038667pt;}
.w18{width:62.080000pt;}
.w10{width:63.678667pt;}
.w12{width:65.918667pt;}
.w11{width:67.838667pt;}
.w3{width:67.840000pt;}
.w17{width:69.438667pt;}
.wb{width:70.078667pt;}
.wd{width:72.958667pt;}
.w14{width:73.920000pt;}
.w1c{width:76.478667pt;}
.w1f{width:77.438667pt;}
.w8{width:80.320000pt;}
.w16{width:82.558667pt;}
.wf{width:83.838667pt;}
.w1e{width:85.438667pt;}
.wa{width:88.638667pt;}
.w24{width:92.593923pt;}
.w5{width:94.718667pt;}
.w7{width:94.720000pt;}
.w19{width:102.400000pt;}
.w2e{width:107.447205pt;}
.w27{width:123.046644pt;}
.w25{width:123.963542pt;}
.w29{width:125.611528pt;}
.w2{width:127.040000pt;}
.w2d{width:138.006865pt;}
.w2c{width:150.205146pt;}
.w2f{width:180.529869pt;}
.w31{width:190.384934pt;}
.w2b{width:201.754222pt;}
.w32{width:227.478609pt;}
.w26{width:382.098161pt;}
.w28{width:600.826931pt;}
.w30{width:600.851692pt;}
.w2a{width:600.890355pt;}
.w23{width:601.011613pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w22{width:793.759988pt;}
.w20{width:793.760000pt;}
.w21{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.567175pt;}
.x2{left:49.918667pt;}
.x1{left:51.838667pt;}
.x5{left:71.678667pt;}
.x26{left:75.838667pt;}
.x2a{left:96.031988pt;}
.x28{left:99.838667pt;}
.xe{left:104.000000pt;}
.x17{left:110.398667pt;}
.x3{left:124.798667pt;}
.x24{left:125.758667pt;}
.x3b{left:134.426655pt;}
.x18{left:135.358667pt;}
.x4{left:140.798667pt;}
.x33{left:144.026655pt;}
.x25{left:147.838667pt;}
.x27{left:152.958667pt;}
.xf{left:158.398667pt;}
.x6{left:198.398667pt;}
.x19{left:201.918667pt;}
.x30{left:219.686591pt;}
.x10{left:221.758667pt;}
.x1a{left:225.918667pt;}
.x39{left:229.969812pt;}
.x38{left:235.751138pt;}
.x11{left:264.000000pt;}
.x7{left:265.918667pt;}
.x1b{left:301.758667pt;}
.x8{left:304.000000pt;}
.x31{left:314.913452pt;}
.x1c{left:325.758667pt;}
.x12{left:336.318667pt;}
.x29{left:339.838667pt;}
.x35{left:344.070479pt;}
.x13{left:382.080000pt;}
.x1d{left:387.838667pt;}
.x9{left:398.400000pt;}
.x1e{left:408.320000pt;}
.xa{left:421.438667pt;}
.x37{left:451.568974pt;}
.x1f{left:463.358667pt;}
.x14{left:465.598667pt;}
.x3a{left:506.466757pt;}
.xb{left:515.838667pt;}
.x15{left:523.518667pt;}
.x2d{left:534.973322pt;}
.x36{left:546.696837pt;}
.x32{left:556.893322pt;}
.x2b{left:560.893322pt;}
.x20{left:562.240000pt;}
.x34{left:571.215403pt;}
.x2c{left:586.173322pt;}
.x16{left:591.038667pt;}
.xc{left:595.518667pt;}
.x21{left:614.718667pt;}
.xd{left:642.240000pt;}
.x22{left:645.758667pt;}
.x3c{left:656.133322pt;}
.x2e{left:698.053322pt;}
.x23{left:718.718667pt;}
}




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