
    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_013de6e33d641b9fd570be2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_45f85987de46e52c5c28846f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_64353f470c6c01ecf7f84837.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_148c430749d11a40e9424284.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_d1ab7c7dbb5de10eaeedf6fa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7663cf02e55cf39dc5356635.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ef2b4a7da47e47e60cd8f36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_bb1dbffee31c03c0c5a44e39.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_c0a9b9d00be75e9aec9cef8a.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:3.463800px;}
.v2{vertical-align:43.200000px;}
.v3{vertical-align:81.843240px;}
.ls3a{letter-spacing:-7.160400px;}
.ls58{letter-spacing:-6.320160px;}
.ls25{letter-spacing:-3.484800px;}
.ls28{letter-spacing:-3.126240px;}
.ls1f{letter-spacing:-3.075840px;}
.ls44{letter-spacing:-2.284560px;}
.ls39{letter-spacing:-2.274480px;}
.ls2a{letter-spacing:-2.160000px;}
.ls1d{letter-spacing:-2.114640px;}
.ls1e{letter-spacing:-1.922400px;}
.ls29{letter-spacing:-1.620000px;}
.ls4c{letter-spacing:-1.442880px;}
.ls46{letter-spacing:-1.202400px;}
.ls41{letter-spacing:-1.185840px;}
.ls59{letter-spacing:-0.957600px;}
.ls37{letter-spacing:-0.673920px;}
.ls4d{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.384480px;}
.ls26{letter-spacing:-0.360720px;}
.ls24{letter-spacing:-0.348480px;}
.ls6{letter-spacing:-0.335520px;}
.ls7{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.287280px;}
.lsf{letter-spacing:-0.263520px;}
.ls34{letter-spacing:-0.252720px;}
.ls1{letter-spacing:-0.240480px;}
.ls45{letter-spacing:-0.239760px;}
.lsa{letter-spacing:-0.192240px;}
.ls5a{letter-spacing:-0.191520px;}
.ls36{letter-spacing:-0.168480px;}
.ls3c{letter-spacing:-0.167760px;}
.ls5{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.131760px;}
.ls2{letter-spacing:-0.120240px;}
.lsd{letter-spacing:-0.108000px;}
.ls57{letter-spacing:-0.095760px;}
.ls35{letter-spacing:-0.084240px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.084240px;}
.ls51{letter-spacing:0.095760px;}
.ls8{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.120240px;}
.ls16{letter-spacing:0.131760px;}
.lsc{letter-spacing:0.138240px;}
.ls3f{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.174240px;}
.ls52{letter-spacing:0.191520px;}
.ls19{letter-spacing:0.192240px;}
.ls13{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.240480px;}
.ls17{letter-spacing:0.263520px;}
.ls27{letter-spacing:0.287280px;}
.ls20{letter-spacing:0.288000px;}
.ls4e{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.348480px;}
.ls10{letter-spacing:0.383040px;}
.ls4{letter-spacing:0.384480px;}
.ls4f{letter-spacing:0.395280px;}
.ls1c{letter-spacing:0.527040px;}
.ls53{letter-spacing:0.670320px;}
.ls40{letter-spacing:1.185840px;}
.ls15{letter-spacing:1.512000px;}
.ls3e{letter-spacing:24.336000px;}
.ls3b{letter-spacing:68.623920px;}
.ls3d{letter-spacing:83.145600px;}
.ls3{letter-spacing:90.137520px;}
.ls50{letter-spacing:90.138120px;}
.ls14{letter-spacing:97.560000px;}
.ls56{letter-spacing:97.560600px;}
.ls18{letter-spacing:97.667280px;}
.ls54{letter-spacing:128.484000px;}
.ls43{letter-spacing:136.656000px;}
.ls42{letter-spacing:142.003440px;}
.ls32{letter-spacing:218.181600px;}
.lsb{letter-spacing:249.036288px;}
.ls4b{letter-spacing:600.912000px;}
.ls47{letter-spacing:622.512000px;}
.ls2b{letter-spacing:634.108176px;}
.ls49{letter-spacing:655.632000px;}
.ls4a{letter-spacing:659.232000px;}
.ls48{letter-spacing:713.232000px;}
.ls2e{letter-spacing:956.882160px;}
.ls2f{letter-spacing:1068.500160px;}
.ls2c{letter-spacing:1073.554560px;}
.ls2d{letter-spacing:1105.228800px;}
.ls31{letter-spacing:1154.938824px;}
.ls55{letter-spacing:1196.068560px;}
.ls30{letter-spacing:1269.412560px;}
.ls33{letter-spacing:1375.218000px;}
.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;}
}
.wsf{word-spacing:-43.830720px;}
.ws7c{word-spacing:-43.446240px;}
.ws12{word-spacing:-43.254000px;}
.ws3b{word-spacing:-41.523840px;}
.ws3a{word-spacing:-41.331600px;}
.ws44{word-spacing:-39.888000px;}
.ws43{word-spacing:-39.744000px;}
.ws4e{word-spacing:-39.378240px;}
.ws64{word-spacing:-37.746000px;}
.ws7{word-spacing:-37.578240px;}
.ws4f{word-spacing:-35.893440px;}
.ws82{word-spacing:-32.832000px;}
.ws6f{word-spacing:-32.688000px;}
.ws71{word-spacing:-32.544000px;}
.ws79{word-spacing:-32.256000px;}
.ws81{word-spacing:-32.112000px;}
.ws86{word-spacing:-30.173040px;}
.ws38{word-spacing:-30.041280px;}
.ws39{word-spacing:-29.777760px;}
.ws15{word-spacing:-29.700000px;}
.ws2b{word-spacing:-29.646000px;}
.ws4b{word-spacing:-29.514240px;}
.ws78{word-spacing:-28.591920px;}
.ws7e{word-spacing:-27.414720px;}
.ws2f{word-spacing:-27.174240px;}
.ws2e{word-spacing:-26.933760px;}
.ws50{word-spacing:-26.813520px;}
.ws7d{word-spacing:-25.971840px;}
.ws48{word-spacing:-24.516000px;}
.ws89{word-spacing:-24.408000px;}
.ws1e{word-spacing:-24.300000px;}
.ws20{word-spacing:-24.084000px;}
.ws52{word-spacing:-24.048000px;}
.ws53{word-spacing:-22.788000px;}
.ws54{word-spacing:-22.248000px;}
.ws51{word-spacing:-21.929040px;}
.ws8c{word-spacing:-21.737520px;}
.ws70{word-spacing:-21.641760px;}
.ws8b{word-spacing:-20.684160px;}
.ws5e{word-spacing:-19.122480px;}
.ws5b{word-spacing:-18.954000px;}
.ws5c{word-spacing:-18.869760px;}
.ws5a{word-spacing:-18.785520px;}
.ws5d{word-spacing:-18.364320px;}
.ws5f{word-spacing:-16.763760px;}
.ws8a{word-spacing:-15.321600px;}
.ws60{word-spacing:-11.877840px;}
.ws57{word-spacing:-2.962080px;}
.ws49{word-spacing:-2.885760px;}
.ws63{word-spacing:-2.883600px;}
.ws30{word-spacing:-2.691360px;}
.ws22{word-spacing:-2.306880px;}
.ws80{word-spacing:-2.164320px;}
.ws8{word-spacing:-2.114640px;}
.ws58{word-spacing:-2.044080px;}
.ws29{word-spacing:-1.944000px;}
.ws3{word-spacing:-1.923840px;}
.ws56{word-spacing:-1.916640px;}
.ws17{word-spacing:-1.658880px;}
.ws26{word-spacing:-1.537920px;}
.ws34{word-spacing:-1.442880px;}
.ws6d{word-spacing:-1.440000px;}
.ws84{word-spacing:-1.404000px;}
.ws21{word-spacing:-1.345680px;}
.ws8d{word-spacing:-1.340640px;}
.ws83{word-spacing:-1.322640px;}
.ws1a{word-spacing:-1.105920px;}
.ws6e{word-spacing:-1.080000px;}
.ws59{word-spacing:-1.054080px;}
.ws75{word-spacing:-1.008000px;}
.ws19{word-spacing:-0.967680px;}
.ws77{word-spacing:-0.922320px;}
.ws73{word-spacing:-0.864000px;}
.ws8f{word-spacing:-0.861840px;}
.ws3c{word-spacing:-0.790560px;}
.ws14{word-spacing:-0.768960px;}
.ws33{word-spacing:-0.721440px;}
.ws93{word-spacing:-0.670320px;}
.ws16{word-spacing:-0.576720px;}
.ws7f{word-spacing:-0.576000px;}
.ws3d{word-spacing:-0.527040px;}
.ws36{word-spacing:-0.480960px;}
.ws4d{word-spacing:-0.395280px;}
.ws27{word-spacing:-0.383040px;}
.ws5{word-spacing:-0.360720px;}
.ws85{word-spacing:-0.324000px;}
.ws74{word-spacing:-0.288000px;}
.ws95{word-spacing:-0.287280px;}
.ws18{word-spacing:-0.276480px;}
.ws9{word-spacing:-0.263520px;}
.ws32{word-spacing:-0.240480px;}
.ws2a{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.167760px;}
.ws72{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.131760px;}
.ws31{word-spacing:-0.120240px;}
.ws8e{word-spacing:-0.095760px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.108000px;}
.ws4c{word-spacing:0.131760px;}
.wsb{word-spacing:0.144000px;}
.ws6a{word-spacing:0.167760px;}
.ws13{word-spacing:0.192240px;}
.ws6{word-spacing:0.216000px;}
.ws7b{word-spacing:0.239760px;}
.ws2{word-spacing:0.240480px;}
.ws62{word-spacing:0.252720px;}
.ws2c{word-spacing:0.263520px;}
.ws76{word-spacing:0.288000px;}
.ws4a{word-spacing:0.324000px;}
.ws67{word-spacing:0.335520px;}
.ws55{word-spacing:0.348480px;}
.ws35{word-spacing:0.360720px;}
.ws91{word-spacing:0.383040px;}
.wsa{word-spacing:0.395280px;}
.ws10{word-spacing:0.432000px;}
.ws37{word-spacing:0.480960px;}
.ws69{word-spacing:0.503280px;}
.ws23{word-spacing:0.527040px;}
.ws41{word-spacing:0.540000px;}
.ws61{word-spacing:0.576720px;}
.ws11{word-spacing:0.648000px;}
.ws2d{word-spacing:0.756000px;}
.ws94{word-spacing:0.766080px;}
.ws28{word-spacing:0.957600px;}
.ws4{word-spacing:0.961920px;}
.ws0{word-spacing:1.006560px;}
.ws40{word-spacing:1.080000px;}
.wsc{word-spacing:1.152000px;}
.ws65{word-spacing:1.174320px;}
.ws1b{word-spacing:1.296000px;}
.ws87{word-spacing:1.317600px;}
.ws88{word-spacing:1.340640px;}
.ws68{word-spacing:1.342080px;}
.ws24{word-spacing:1.449360px;}
.ws1f{word-spacing:1.512000px;}
.ws92{word-spacing:1.627920px;}
.ws7a{word-spacing:1.803600px;}
.wsd{word-spacing:1.872000px;}
.ws3e{word-spacing:1.976400px;}
.ws6c{word-spacing:2.013120px;}
.ws1c{word-spacing:2.052000px;}
.wse{word-spacing:2.684160px;}
.ws42{word-spacing:2.700000px;}
.ws3f{word-spacing:3.075840px;}
.ws90{word-spacing:3.160080px;}
.ws6b{word-spacing:3.522960px;}
.ws45{word-spacing:88.184880px;}
.ws46{word-spacing:92.754000px;}
.ws47{word-spacing:94.437360px;}
._6{margin-left:-17.070912px;}
._e{margin-left:-14.984640px;}
._b{margin-left:-13.705200px;}
._13{margin-left:-11.499408px;}
._a{margin-left:-10.457856px;}
._7{margin-left:-9.193248px;}
._4{margin-left:-7.527024px;}
._0{margin-left:-5.374728px;}
._8{margin-left:-4.331664px;}
._5{margin-left:-3.304800px;}
._1{margin-left:-2.200392px;}
._3{margin-left:-1.190376px;}
._2{width:1.707408px;}
._c{width:2.717424px;}
._9{width:3.787128px;}
._d{width:5.156928px;}
._12{width:7.194096px;}
._f{width:461.139408px;}
._11{width:1040.111280px;}
._10{width:1182.476880px;}
.fcc{color:transparent;}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(255,255,0);}
.fc8{color:rgb(227,114,34);}
.fc4{color:rgb(153,102,0);}
.fcb{color:rgb(204,153,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(3,31,115);}
.fc2{color:rgb(161,119,0);}
.fc7{color:rgb(192,0,0);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(59,53,49);}
.fsa{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:105.840000px;}
.fs7{font-size:108.000000px;}
.fse{font-size:115.200000px;}
.fs1{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fsd{font-size:134.640000px;}
.fs8{font-size:138.240000px;}
.fs6{font-size:144.000000px;}
.fs0{font-size:167.760000px;}
.fsb{font-size:174.240000px;}
.fs3{font-size:192.240000px;}
.fs2{font-size:216.000000px;}
.fsf{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.yec{bottom:2.017500px;}
.y4c{bottom:26.512500px;}
.y95{bottom:34.695000px;}
.y22{bottom:35.625000px;}
.y14{bottom:44.329350px;}
.yeb{bottom:45.221280px;}
.y2f{bottom:50.476800px;}
.yf6{bottom:57.970620px;}
.y4b{bottom:58.912500px;}
.y21{bottom:68.025000px;}
.y13{bottom:76.729350px;}
.yea{bottom:88.417500px;}
.y4a{bottom:91.312500px;}
.y8a{bottom:91.653000px;}
.yf5{bottom:93.982500px;}
.y3b{bottom:102.526800px;}
.y2e{bottom:104.587500px;}
.y101{bottom:105.820620px;}
.y3e{bottom:109.642650px;}
.y5d{bottom:110.208210px;}
.y49{bottom:123.712500px;}
.y11a{bottom:124.054800px;}
.y3d{bottom:131.242650px;}
.ybe{bottom:131.445000px;}
.ye9{bottom:133.237500px;}
.y6a{bottom:135.183300px;}
.y84{bottom:141.066120px;}
.y100{bottom:141.832500px;}
.y91{bottom:144.421860px;}
.y3c{bottom:152.842650px;}
.y5c{bottom:153.404430px;}
.ya3{bottom:153.472050px;}
.y73{bottom:162.720000px;}
.y39{bottom:166.509840px;}
.y89{bottom:170.492100px;}
.y8b{bottom:171.185850px;}
.yb5{bottom:171.415620px;}
.y69{bottom:178.787700px;}
.y90{bottom:180.433740px;}
.y83{bottom:180.660000px;}
.ye8{bottom:185.077500px;}
.y122{bottom:191.117070px;}
.y12{bottom:191.398020px;}
.y119{bottom:195.055350px;}
.y5b{bottom:196.600650px;}
.yd3{bottom:196.691220px;}
.yff{bottom:201.641550px;}
.y6b{bottom:203.223300px;}
.y72{bottom:205.908120px;}
.y38{bottom:206.103720px;}
.y5{bottom:207.704490px;}
.ya2{bottom:212.489340px;}
.ydd{bottom:212.911650px;}
.y24{bottom:214.500000px;}
.y48{bottom:215.574300px;}
.y8f{bottom:216.445620px;}
.yb4{bottom:221.827500px;}
.y82{bottom:228.180000px;}
.y121{bottom:230.710950px;}
.ye7{bottom:235.297500px;}
.y1d{bottom:236.329050px;}
.y5a{bottom:239.788770px;}
.yc8{bottom:240.967500px;}
.ya1{bottom:240.983520px;}
.y11{bottom:241.809900px;}
.y71{bottom:241.920000px;}
.yd2{bottom:244.223640px;}
.y37{bottom:245.697600px;}
.y23{bottom:246.900000px;}
.y47{bottom:247.974450px;}
.y2b{bottom:248.437500px;}
.y4{bottom:250.900710px;}
.y8e{bottom:252.457500px;}
.yad{bottom:257.233740px;}
.y19{bottom:257.557950px;}
.ydc{bottom:260.444070px;}
.ybf{bottom:268.059600px;}
.ya0{bottom:269.477700px;}
.yfe{bottom:269.681550px;}
.y10d{bottom:269.685000px;}
.y67{bottom:270.298530px;}
.y81{bottom:275.706120px;}
.y59{bottom:275.800650px;}
.y120{bottom:278.230950px;}
.ye6{bottom:280.095360px;}
.y46{bottom:280.374300px;}
.y2a{bottom:280.837500px;}
.yb3{bottom:282.295620px;}
.yd1{bottom:283.817520px;}
.y70{bottom:285.120000px;}
.yc7{bottom:292.807500px;}
.y36{bottom:293.242080px;}
.y3{bottom:294.096930px;}
.y9f{bottom:297.971880px;}
.ydb{bottom:300.037950px;}
.yac{bottom:307.645620px;}
.y12f{bottom:307.668780px;}
.ybd{bottom:311.448120px;}
.y45{bottom:312.774450px;}
.y80{bottom:315.300000px;}
.y103{bottom:316.108800px;}
.y10c{bottom:317.205000px;}
.y66{bottom:317.830950px;}
.y58{bottom:319.000650px;}
.y118{bottom:320.873700px;}
.yd0{bottom:323.411400px;}
.yfd{bottom:323.681550px;}
.y11f{bottom:325.763040px;}
.y9e{bottom:326.466060px;}
.y6f{bottom:329.046120px;}
.y10{bottom:330.150000px;}
.ye5{bottom:330.325620px;}
.yb2{bottom:332.707500px;}
.y35{bottom:332.835960px;}
.y117{bottom:333.128790px;}
.y2{bottom:337.293150px;}
.y1e{bottom:339.390000px;}
.y1c{bottom:343.464450px;}
.yee{bottom:344.565000px;}
.yc6{bottom:344.647500px;}
.yda{bottom:347.564070px;}
.y102{bottom:347.779800px;}
.y12e{bottom:350.865000px;}
.yf4{bottom:353.505000px;}
.y9d{bottom:354.960240px;}
.yab{bottom:358.057500px;}
.y88{bottom:360.826800px;}
.y8c{bottom:361.520400px;}
.y57{bottom:362.196330px;}
.y7f{bottom:362.826120px;}
.y10b{bottom:364.731120px;}
.y65{bottom:365.350950px;}
.y11e{bottom:365.356920px;}
.ye4{bottom:366.337500px;}
.y6e{bottom:368.640000px;}
.ycf{bottom:370.931400px;}
.ybc{bottom:371.925600px;}
.y34{bottom:372.429840px;}
.y116{bottom:372.722670px;}
.yf{bottom:373.350000px;}
.yfc{bottom:383.225550px;}
.y9c{bottom:383.454420px;}
.y139{bottom:386.143950px;}
.yd9{bottom:387.157950px;}
.yc5{bottom:387.847500px;}
.y12d{bottom:392.416920px;}
.y1{bottom:392.733150px;}
.yb1{bottom:393.175470px;}
.yf3{bottom:396.705000px;}
.y7e{bottom:402.420000px;}
.y10a{bottom:404.325000px;}
.y11d{bottom:404.950800px;}
.y56{bottom:405.392550px;}
.ye3{bottom:411.157350px;}
.y9b{bottom:411.948600px;}
.y33{bottom:412.023720px;}
.y115{bottom:412.316550px;}
.y64{bottom:412.870800px;}
.ye{bottom:416.550000px;}
.yce{bottom:418.451400px;}
.yaa{bottom:418.513590px;}
.y138{bottom:418.543950px;}
.ybb{bottom:422.337480px;}
.y12c{bottom:426.986280px;}
.y137{bottom:430.483140px;}
.yc4{bottom:431.047500px;}
.yd8{bottom:434.684070px;}
.y44{bottom:435.306120px;}
.yf9{bottom:435.620190px;}
.y18{bottom:438.690930px;}
.y9a{bottom:440.442780px;}
.y1f{bottom:441.396000px;}
.yb0{bottom:443.587350px;}
.y29{bottom:445.725000px;}
.yf2{bottom:448.545000px;}
.y55{bottom:448.588770px;}
.y7d{bottom:449.952240px;}
.y1b{bottom:450.599850px;}
.y32{bottom:451.617600px;}
.y109{bottom:451.851120px;}
.y114{bottom:451.910430px;}
.y11c{bottom:452.476920px;}
.yd{bottom:459.750000px;}
.y63{bottom:460.409160px;}
.ye2{bottom:461.377500px;}
.y12b{bottom:461.555640px;}
.y136{bottom:465.052500px;}
.y78{bottom:465.658650px;}
.ycd{bottom:465.977370px;}
.y8{bottom:468.501450px;}
.ya9{bottom:468.925470px;}
.y99{bottom:468.936960px;}
.yfb{bottom:471.602010px;}
.yf8{bottom:471.632070px;}
.yba{bottom:472.749360px;}
.yd7{bottom:474.277950px;}
.y43{bottom:474.900000px;}
.y28{bottom:478.125000px;}
.y75{bottom:481.858800px;}
.y7a{bottom:481.858950px;}
.yc3{bottom:482.887500px;}
.y54{bottom:484.600650px;}
.y7c{bottom:489.546120px;}
.y108{bottom:491.445000px;}
.y113{bottom:491.504310px;}
.y11b{bottom:492.070800px;}
.y12a{bottom:496.125000px;}
.y98{bottom:497.431140px;}
.y77{bottom:498.058650px;}
.y31{bottom:499.143720px;}
.y135{bottom:499.612500px;}
.y62{bottom:500.003040px;}
.yf1{bottom:500.385000px;}
.yaf{bottom:504.067500px;}
.ycc{bottom:505.571250px;}
.ye1{bottom:506.197500px;}
.yfa{bottom:507.613890px;}
.yf7{bottom:507.643950px;}
.y17{bottom:507.801210px;}
.y27{bottom:510.525000px;}
.y74{bottom:514.258800px;}
.y79{bottom:514.258950px;}
.ya8{bottom:519.337350px;}
.yd6{bottom:521.804070px;}
.y42{bottom:522.432240px;}
.yb9{bottom:523.161240px;}
.y97{bottom:525.925320px;}
.yc2{bottom:526.087500px;}
.y53{bottom:527.788770px;}
.y7b{bottom:529.140000px;}
.y76{bottom:530.458650px;}
.y129{bottom:530.685180px;}
.y112{bottom:531.098190px;}
.y7{bottom:533.301450px;}
.y134{bottom:534.172500px;}
.y30{bottom:538.737600px;}
.y107{bottom:538.983360px;}
.y61{bottom:539.596920px;}
.y8d{bottom:551.854950px;}
.y20{bottom:552.015000px;}
.yf0{bottom:552.225000px;}
.y87{bottom:552.721200px;}
.ycb{bottom:553.103640px;}
.y93{bottom:553.478100px;}
.ye0{bottom:556.417500px;}
.y1a{bottom:557.735250px;}
.y128{bottom:559.485000px;}
.yd5{bottom:561.397950px;}
.y41{bottom:562.026120px;}
.y52{bottom:563.800650px;}
.yae{bottom:564.528120px;}
.y16{bottom:565.377090px;}
.y96{bottom:567.055500px;}
.y133{bottom:568.732500px;}
.yc1{bottom:569.287500px;}
.yc{bottom:569.389590px;}
.y111{bottom:570.692070px;}
.yb8{bottom:573.573120px;}
.y106{bottom:578.577240px;}
.y60{bottom:579.190800px;}
.ya7{bottom:579.817500px;}
.yca{bottom:592.697520px;}
.y127{bottom:594.045000px;}
.y6{bottom:598.101450px;}
.y92{bottom:600.997950px;}
.ydf{bottom:601.237500px;}
.y40{bottom:601.620000px;}
.y132{bottom:603.292500px;}
.yef{bottom:604.065000px;}
.y51{bottom:606.988770px;}
.yd4{bottom:608.924070px;}
.yb{bottom:608.983470px;}
.y110{bottom:610.285950px;}
.y6d{bottom:614.625000px;}
.y105{bottom:618.171120px;}
.yc0{bottom:621.127500px;}
.yb7{bottom:623.985000px;}
.y5f{bottom:626.716920px;}
.y126{bottom:628.605000px;}
.y86{bottom:630.000450px;}
.yc9{bottom:632.291400px;}
.y15{bottom:634.487370px;}
.y131{bottom:637.852500px;}
.yb6{bottom:639.581550px;}
.ya6{bottom:640.297500px;}
.y50{bottom:643.000650px;}
.y10e{bottom:647.210340px;}
.y4d{bottom:648.517950px;}
.ya{bottom:648.577350px;}
.y3f{bottom:649.140000px;}
.yde{bottom:651.457500px;}
.y104{bottom:657.765000px;}
.y10f{bottom:657.805950px;}
.y125{bottom:663.165000px;}
.y5e{bottom:666.310800px;}
.y130{bottom:672.412500px;}
.y4f{bottom:686.200650px;}
.ya5{bottom:691.395120px;}
.y26{bottom:691.430370px;}
.y124{bottom:697.725000px;}
.y2d{bottom:707.718750px;}
.y94{bottom:720.171000px;}
.y3a{bottom:728.676000px;}
.yed{bottom:732.558750px;}
.y123{bottom:735.195000px;}
.y68{bottom:736.491450px;}
.y9{bottom:736.518750px;}
.y85{bottom:738.138750px;}
.y4e{bottom:745.685700px;}
.y6c{bottom:748.650000px;}
.ya4{bottom:748.971000px;}
.y25{bottom:749.006250px;}
.y2c{bottom:765.318750px;}
.h10{height:53.542969px;}
.h15{height:61.164492px;}
.h16{height:62.645273px;}
.h14{height:69.528867px;}
.hf{height:71.212148px;}
.h11{height:78.416016px;}
.h9{height:80.314453px;}
.h2{height:82.195312px;}
.h12{height:87.303164px;}
.h3{height:89.416758px;}
.h1f{height:95.667539px;}
.h6{height:97.983633px;}
.h1b{height:98.437500px;}
.he{height:99.874688px;}
.hb{height:102.802500px;}
.h17{height:104.554688px;}
.h1e{height:105.996094px;}
.h19{height:107.085938px;}
.h1c{height:107.174497px;}
.hd{height:112.640625px;}
.h1a{height:114.412148px;}
.hc{height:116.104425px;}
.h1{height:121.806211px;}
.h8{height:124.755117px;}
.h13{height:126.511172px;}
.h5{height:139.580508px;}
.ha{height:142.959727px;}
.h7{height:150.187500px;}
.h4{height:156.832031px;}
.h20{height:162.157693px;}
.h1d{height:174.083555px;}
.h18{height:225.281250px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x35{left:11.327700px;}
.x53{left:25.303500px;}
.x1b{left:31.987500px;}
.x23{left:36.959250px;}
.x28{left:40.720800px;}
.x1d{left:49.577700px;}
.x56{left:52.390200px;}
.x40{left:56.343150px;}
.x44{left:57.487500px;}
.xa{left:64.800000px;}
.x34{left:66.021750px;}
.x52{left:67.603650px;}
.x59{left:69.862500px;}
.x26{left:71.550000px;}
.x13{left:75.655740px;}
.x9{left:78.827700px;}
.x4c{left:80.802450px;}
.x29{left:82.807050px;}
.x4b{left:91.350000px;}
.x45{left:99.804960px;}
.x4a{left:103.050000px;}
.xb{left:107.100000px;}
.x24{left:108.546150px;}
.x27{left:113.882940px;}
.x2d{left:117.540000px;}
.x47{left:121.500000px;}
.x55{left:132.048900px;}
.x6{left:138.176100px;}
.x48{left:159.660000px;}
.x2e{left:171.540000px;}
.x2f{left:177.655200px;}
.x7{left:178.676100px;}
.x3f{left:202.920750px;}
.x3{left:225.214350px;}
.x4d{left:285.003120px;}
.x51{left:299.938500px;}
.x50{left:313.582500px;}
.x2{left:322.608750px;}
.x4{left:335.203890px;}
.x2b{left:362.779050px;}
.x3c{left:365.912550px;}
.x1{left:372.828750px;}
.x5a{left:374.283600px;}
.x5{left:407.017230px;}
.x3d{left:418.182900px;}
.x15{left:426.828150px;}
.x18{left:430.071900px;}
.x8{left:431.774100px;}
.x17{left:437.628150px;}
.x3b{left:448.201650px;}
.x30{left:454.446450px;}
.x31{left:462.546450px;}
.x22{left:465.751200px;}
.x21{left:470.550000px;}
.x16{left:473.991900px;}
.x14{left:482.435580px;}
.x11{left:499.770750px;}
.x58{left:533.923020px;}
.x4e{left:538.018140px;}
.x12{left:545.826720px;}
.x41{left:559.422900px;}
.x43{left:566.347650px;}
.x49{left:567.675000px;}
.x57{left:576.225000px;}
.x2a{left:591.906900px;}
.x42{left:601.725000px;}
.x3a{left:644.626350px;}
.x36{left:661.722600px;}
.x46{left:669.862500px;}
.x32{left:687.427650px;}
.x33{left:697.147650px;}
.xd{left:722.887500px;}
.xe{left:730.447500px;}
.x54{left:731.574600px;}
.x1e{left:771.862650px;}
.xf{left:777.607500px;}
.x10{left:787.870680px;}
.x4f{left:791.063220px;}
.x1f{left:792.798750px;}
.x1a{left:794.905500px;}
.x19{left:805.975500px;}
.x20{left:820.527750px;}
.x37{left:824.779650px;}
.xc{left:833.587500px;}
.x39{left:852.237150px;}
.x2c{left:860.925000px;}
.x1c{left:890.925000px;}
.x38{left:901.736250px;}
.x25{left:942.024600px;}
.x3e{left:1034.737500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.078933pt;}
.v2{vertical-align:38.400000pt;}
.v3{vertical-align:72.749547pt;}
.ls3a{letter-spacing:-6.364800pt;}
.ls58{letter-spacing:-5.617920pt;}
.ls25{letter-spacing:-3.097600pt;}
.ls28{letter-spacing:-2.778880pt;}
.ls1f{letter-spacing:-2.734080pt;}
.ls44{letter-spacing:-2.030720pt;}
.ls39{letter-spacing:-2.021760pt;}
.ls2a{letter-spacing:-1.920000pt;}
.ls1d{letter-spacing:-1.879680pt;}
.ls1e{letter-spacing:-1.708800pt;}
.ls29{letter-spacing:-1.440000pt;}
.ls4c{letter-spacing:-1.282560pt;}
.ls46{letter-spacing:-1.068800pt;}
.ls41{letter-spacing:-1.054080pt;}
.ls59{letter-spacing:-0.851200pt;}
.ls37{letter-spacing:-0.599040pt;}
.ls4d{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.341760pt;}
.ls26{letter-spacing:-0.320640pt;}
.ls24{letter-spacing:-0.309760pt;}
.ls6{letter-spacing:-0.298240pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.255360pt;}
.lsf{letter-spacing:-0.234240pt;}
.ls34{letter-spacing:-0.224640pt;}
.ls1{letter-spacing:-0.213760pt;}
.ls45{letter-spacing:-0.213120pt;}
.lsa{letter-spacing:-0.170880pt;}
.ls5a{letter-spacing:-0.170240pt;}
.ls36{letter-spacing:-0.149760pt;}
.ls3c{letter-spacing:-0.149120pt;}
.ls5{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.117120pt;}
.ls2{letter-spacing:-0.106880pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls57{letter-spacing:-0.085120pt;}
.ls35{letter-spacing:-0.074880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.074880pt;}
.ls51{letter-spacing:0.085120pt;}
.ls8{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.106880pt;}
.ls16{letter-spacing:0.117120pt;}
.lsc{letter-spacing:0.122880pt;}
.ls3f{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.154880pt;}
.ls52{letter-spacing:0.170240pt;}
.ls19{letter-spacing:0.170880pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.213760pt;}
.ls17{letter-spacing:0.234240pt;}
.ls27{letter-spacing:0.255360pt;}
.ls20{letter-spacing:0.256000pt;}
.ls4e{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.309760pt;}
.ls10{letter-spacing:0.340480pt;}
.ls4{letter-spacing:0.341760pt;}
.ls4f{letter-spacing:0.351360pt;}
.ls1c{letter-spacing:0.468480pt;}
.ls53{letter-spacing:0.595840pt;}
.ls40{letter-spacing:1.054080pt;}
.ls15{letter-spacing:1.344000pt;}
.ls3e{letter-spacing:21.632000pt;}
.ls3b{letter-spacing:60.999040pt;}
.ls3d{letter-spacing:73.907200pt;}
.ls3{letter-spacing:80.122240pt;}
.ls50{letter-spacing:80.122773pt;}
.ls14{letter-spacing:86.720000pt;}
.ls56{letter-spacing:86.720533pt;}
.ls18{letter-spacing:86.815360pt;}
.ls54{letter-spacing:114.208000pt;}
.ls43{letter-spacing:121.472000pt;}
.ls42{letter-spacing:126.225280pt;}
.ls32{letter-spacing:193.939200pt;}
.lsb{letter-spacing:221.365589pt;}
.ls4b{letter-spacing:534.144000pt;}
.ls47{letter-spacing:553.344000pt;}
.ls2b{letter-spacing:563.651712pt;}
.ls49{letter-spacing:582.784000pt;}
.ls4a{letter-spacing:585.984000pt;}
.ls48{letter-spacing:633.984000pt;}
.ls2e{letter-spacing:850.561920pt;}
.ls2f{letter-spacing:949.777920pt;}
.ls2c{letter-spacing:954.270720pt;}
.ls2d{letter-spacing:982.425600pt;}
.ls31{letter-spacing:1026.612288pt;}
.ls55{letter-spacing:1063.172053pt;}
.ls30{letter-spacing:1128.366720pt;}
.ls33{letter-spacing:1222.416000pt;}
.wsf{word-spacing:-38.960640pt;}
.ws7c{word-spacing:-38.618880pt;}
.ws12{word-spacing:-38.448000pt;}
.ws3b{word-spacing:-36.910080pt;}
.ws3a{word-spacing:-36.739200pt;}
.ws44{word-spacing:-35.456000pt;}
.ws43{word-spacing:-35.328000pt;}
.ws4e{word-spacing:-35.002880pt;}
.ws64{word-spacing:-33.552000pt;}
.ws7{word-spacing:-33.402880pt;}
.ws4f{word-spacing:-31.905280pt;}
.ws82{word-spacing:-29.184000pt;}
.ws6f{word-spacing:-29.056000pt;}
.ws71{word-spacing:-28.928000pt;}
.ws79{word-spacing:-28.672000pt;}
.ws81{word-spacing:-28.544000pt;}
.ws86{word-spacing:-26.820480pt;}
.ws38{word-spacing:-26.703360pt;}
.ws39{word-spacing:-26.469120pt;}
.ws15{word-spacing:-26.400000pt;}
.ws2b{word-spacing:-26.352000pt;}
.ws4b{word-spacing:-26.234880pt;}
.ws78{word-spacing:-25.415040pt;}
.ws7e{word-spacing:-24.368640pt;}
.ws2f{word-spacing:-24.154880pt;}
.ws2e{word-spacing:-23.941120pt;}
.ws50{word-spacing:-23.834240pt;}
.ws7d{word-spacing:-23.086080pt;}
.ws48{word-spacing:-21.792000pt;}
.ws89{word-spacing:-21.696000pt;}
.ws1e{word-spacing:-21.600000pt;}
.ws20{word-spacing:-21.408000pt;}
.ws52{word-spacing:-21.376000pt;}
.ws53{word-spacing:-20.256000pt;}
.ws54{word-spacing:-19.776000pt;}
.ws51{word-spacing:-19.492480pt;}
.ws8c{word-spacing:-19.322240pt;}
.ws70{word-spacing:-19.237120pt;}
.ws8b{word-spacing:-18.385920pt;}
.ws5e{word-spacing:-16.997760pt;}
.ws5b{word-spacing:-16.848000pt;}
.ws5c{word-spacing:-16.773120pt;}
.ws5a{word-spacing:-16.698240pt;}
.ws5d{word-spacing:-16.323840pt;}
.ws5f{word-spacing:-14.901120pt;}
.ws8a{word-spacing:-13.619200pt;}
.ws60{word-spacing:-10.558080pt;}
.ws57{word-spacing:-2.632960pt;}
.ws49{word-spacing:-2.565120pt;}
.ws63{word-spacing:-2.563200pt;}
.ws30{word-spacing:-2.392320pt;}
.ws22{word-spacing:-2.050560pt;}
.ws80{word-spacing:-1.923840pt;}
.ws8{word-spacing:-1.879680pt;}
.ws58{word-spacing:-1.816960pt;}
.ws29{word-spacing:-1.728000pt;}
.ws3{word-spacing:-1.710080pt;}
.ws56{word-spacing:-1.703680pt;}
.ws17{word-spacing:-1.474560pt;}
.ws26{word-spacing:-1.367040pt;}
.ws34{word-spacing:-1.282560pt;}
.ws6d{word-spacing:-1.280000pt;}
.ws84{word-spacing:-1.248000pt;}
.ws21{word-spacing:-1.196160pt;}
.ws8d{word-spacing:-1.191680pt;}
.ws83{word-spacing:-1.175680pt;}
.ws1a{word-spacing:-0.983040pt;}
.ws6e{word-spacing:-0.960000pt;}
.ws59{word-spacing:-0.936960pt;}
.ws75{word-spacing:-0.896000pt;}
.ws19{word-spacing:-0.860160pt;}
.ws77{word-spacing:-0.819840pt;}
.ws73{word-spacing:-0.768000pt;}
.ws8f{word-spacing:-0.766080pt;}
.ws3c{word-spacing:-0.702720pt;}
.ws14{word-spacing:-0.683520pt;}
.ws33{word-spacing:-0.641280pt;}
.ws93{word-spacing:-0.595840pt;}
.ws16{word-spacing:-0.512640pt;}
.ws7f{word-spacing:-0.512000pt;}
.ws3d{word-spacing:-0.468480pt;}
.ws36{word-spacing:-0.427520pt;}
.ws4d{word-spacing:-0.351360pt;}
.ws27{word-spacing:-0.340480pt;}
.ws5{word-spacing:-0.320640pt;}
.ws85{word-spacing:-0.288000pt;}
.ws74{word-spacing:-0.256000pt;}
.ws95{word-spacing:-0.255360pt;}
.ws18{word-spacing:-0.245760pt;}
.ws9{word-spacing:-0.234240pt;}
.ws32{word-spacing:-0.213760pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.149120pt;}
.ws72{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.117120pt;}
.ws31{word-spacing:-0.106880pt;}
.ws8e{word-spacing:-0.085120pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.096000pt;}
.ws4c{word-spacing:0.117120pt;}
.wsb{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.149120pt;}
.ws13{word-spacing:0.170880pt;}
.ws6{word-spacing:0.192000pt;}
.ws7b{word-spacing:0.213120pt;}
.ws2{word-spacing:0.213760pt;}
.ws62{word-spacing:0.224640pt;}
.ws2c{word-spacing:0.234240pt;}
.ws76{word-spacing:0.256000pt;}
.ws4a{word-spacing:0.288000pt;}
.ws67{word-spacing:0.298240pt;}
.ws55{word-spacing:0.309760pt;}
.ws35{word-spacing:0.320640pt;}
.ws91{word-spacing:0.340480pt;}
.wsa{word-spacing:0.351360pt;}
.ws10{word-spacing:0.384000pt;}
.ws37{word-spacing:0.427520pt;}
.ws69{word-spacing:0.447360pt;}
.ws23{word-spacing:0.468480pt;}
.ws41{word-spacing:0.480000pt;}
.ws61{word-spacing:0.512640pt;}
.ws11{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.672000pt;}
.ws94{word-spacing:0.680960pt;}
.ws28{word-spacing:0.851200pt;}
.ws4{word-spacing:0.855040pt;}
.ws0{word-spacing:0.894720pt;}
.ws40{word-spacing:0.960000pt;}
.wsc{word-spacing:1.024000pt;}
.ws65{word-spacing:1.043840pt;}
.ws1b{word-spacing:1.152000pt;}
.ws87{word-spacing:1.171200pt;}
.ws88{word-spacing:1.191680pt;}
.ws68{word-spacing:1.192960pt;}
.ws24{word-spacing:1.288320pt;}
.ws1f{word-spacing:1.344000pt;}
.ws92{word-spacing:1.447040pt;}
.ws7a{word-spacing:1.603200pt;}
.wsd{word-spacing:1.664000pt;}
.ws3e{word-spacing:1.756800pt;}
.ws6c{word-spacing:1.789440pt;}
.ws1c{word-spacing:1.824000pt;}
.wse{word-spacing:2.385920pt;}
.ws42{word-spacing:2.400000pt;}
.ws3f{word-spacing:2.734080pt;}
.ws90{word-spacing:2.808960pt;}
.ws6b{word-spacing:3.131520pt;}
.ws45{word-spacing:78.386560pt;}
.ws46{word-spacing:82.448000pt;}
.ws47{word-spacing:83.944320pt;}
._6{margin-left:-15.174144pt;}
._e{margin-left:-13.319680pt;}
._b{margin-left:-12.182400pt;}
._13{margin-left:-10.221696pt;}
._a{margin-left:-9.295872pt;}
._7{margin-left:-8.171776pt;}
._4{margin-left:-6.690688pt;}
._0{margin-left:-4.777536pt;}
._8{margin-left:-3.850368pt;}
._5{margin-left:-2.937600pt;}
._1{margin-left:-1.955904pt;}
._3{margin-left:-1.058112pt;}
._2{width:1.517696pt;}
._c{width:2.415488pt;}
._9{width:3.366336pt;}
._d{width:4.583936pt;}
._12{width:6.394752pt;}
._f{width:409.901696pt;}
._11{width:924.543360pt;}
._10{width:1051.090560pt;}
.fsa{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:94.080000pt;}
.fs7{font-size:96.000000pt;}
.fse{font-size:102.400000pt;}
.fs1{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fsd{font-size:119.680000pt;}
.fs8{font-size:122.880000pt;}
.fs6{font-size:128.000000pt;}
.fs0{font-size:149.120000pt;}
.fsb{font-size:154.880000pt;}
.fs3{font-size:170.880000pt;}
.fs2{font-size:192.000000pt;}
.fsf{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:1.793333pt;}
.y4c{bottom:23.566667pt;}
.y95{bottom:30.840000pt;}
.y22{bottom:31.666667pt;}
.y14{bottom:39.403867pt;}
.yeb{bottom:40.196693pt;}
.y2f{bottom:44.868267pt;}
.yf6{bottom:51.529440pt;}
.y4b{bottom:52.366667pt;}
.y21{bottom:60.466667pt;}
.y13{bottom:68.203867pt;}
.yea{bottom:78.593333pt;}
.y4a{bottom:81.166667pt;}
.y8a{bottom:81.469333pt;}
.yf5{bottom:83.540000pt;}
.y3b{bottom:91.134933pt;}
.y2e{bottom:92.966667pt;}
.y101{bottom:94.062773pt;}
.y3e{bottom:97.460133pt;}
.y5d{bottom:97.962853pt;}
.y49{bottom:109.966667pt;}
.y11a{bottom:110.270933pt;}
.y3d{bottom:116.660133pt;}
.ybe{bottom:116.840000pt;}
.ye9{bottom:118.433333pt;}
.y6a{bottom:120.162933pt;}
.y84{bottom:125.392107pt;}
.y100{bottom:126.073333pt;}
.y91{bottom:128.374987pt;}
.y3c{bottom:135.860133pt;}
.y5c{bottom:136.359493pt;}
.ya3{bottom:136.419600pt;}
.y73{bottom:144.640000pt;}
.y39{bottom:148.008747pt;}
.y89{bottom:151.548533pt;}
.y8b{bottom:152.165200pt;}
.yb5{bottom:152.369440pt;}
.y69{bottom:158.922400pt;}
.y90{bottom:160.385547pt;}
.y83{bottom:160.586667pt;}
.ye8{bottom:164.513333pt;}
.y122{bottom:169.881840pt;}
.y12{bottom:170.131573pt;}
.y119{bottom:173.382533pt;}
.y5b{bottom:174.756133pt;}
.yd3{bottom:174.836640pt;}
.yff{bottom:179.236933pt;}
.y6b{bottom:180.642933pt;}
.y72{bottom:183.029440pt;}
.y38{bottom:183.203307pt;}
.y5{bottom:184.626213pt;}
.ya2{bottom:188.879413pt;}
.ydd{bottom:189.254800pt;}
.y24{bottom:190.666667pt;}
.y48{bottom:191.621600pt;}
.y8f{bottom:192.396107pt;}
.yb4{bottom:197.180000pt;}
.y82{bottom:202.826667pt;}
.y121{bottom:205.076400pt;}
.ye7{bottom:209.153333pt;}
.y1d{bottom:210.070267pt;}
.y5a{bottom:213.145573pt;}
.yc8{bottom:214.193333pt;}
.ya1{bottom:214.207573pt;}
.y11{bottom:214.942133pt;}
.y71{bottom:215.040000pt;}
.yd2{bottom:217.087680pt;}
.y37{bottom:218.397867pt;}
.y23{bottom:219.466667pt;}
.y47{bottom:220.421733pt;}
.y2b{bottom:220.833333pt;}
.y4{bottom:223.022853pt;}
.y8e{bottom:224.406667pt;}
.yad{bottom:228.652213pt;}
.y19{bottom:228.940400pt;}
.ydc{bottom:231.505840pt;}
.ybf{bottom:238.275200pt;}
.ya0{bottom:239.535733pt;}
.yfe{bottom:239.716933pt;}
.y10d{bottom:239.720000pt;}
.y67{bottom:240.265360pt;}
.y81{bottom:245.072107pt;}
.y59{bottom:245.156133pt;}
.y120{bottom:247.316400pt;}
.ye6{bottom:248.973653pt;}
.y46{bottom:249.221600pt;}
.y2a{bottom:249.633333pt;}
.yb3{bottom:250.929440pt;}
.yd1{bottom:252.282240pt;}
.y70{bottom:253.440000pt;}
.yc7{bottom:260.273333pt;}
.y36{bottom:260.659627pt;}
.y3{bottom:261.419493pt;}
.y9f{bottom:264.863893pt;}
.ydb{bottom:266.700400pt;}
.yac{bottom:273.462773pt;}
.y12f{bottom:273.483360pt;}
.ybd{bottom:276.842773pt;}
.y45{bottom:278.021733pt;}
.y80{bottom:280.266667pt;}
.y103{bottom:280.985600pt;}
.y10c{bottom:281.960000pt;}
.y66{bottom:282.516400pt;}
.y58{bottom:283.556133pt;}
.y118{bottom:285.221067pt;}
.yd0{bottom:287.476800pt;}
.yfd{bottom:287.716933pt;}
.y11f{bottom:289.567147pt;}
.y9e{bottom:290.192053pt;}
.y6f{bottom:292.485440pt;}
.y10{bottom:293.466667pt;}
.ye5{bottom:293.622773pt;}
.yb2{bottom:295.740000pt;}
.y35{bottom:295.854187pt;}
.y117{bottom:296.114480pt;}
.y2{bottom:299.816133pt;}
.y1e{bottom:301.680000pt;}
.y1c{bottom:305.301733pt;}
.yee{bottom:306.280000pt;}
.yc6{bottom:306.353333pt;}
.yda{bottom:308.945840pt;}
.y102{bottom:309.137600pt;}
.y12e{bottom:311.880000pt;}
.yf4{bottom:314.226667pt;}
.y9d{bottom:315.520213pt;}
.yab{bottom:318.273333pt;}
.y88{bottom:320.734933pt;}
.y8c{bottom:321.351467pt;}
.y57{bottom:321.952293pt;}
.y7f{bottom:322.512107pt;}
.y10b{bottom:324.205440pt;}
.y65{bottom:324.756400pt;}
.y11e{bottom:324.761707pt;}
.ye4{bottom:325.633333pt;}
.y6e{bottom:327.680000pt;}
.ycf{bottom:329.716800pt;}
.ybc{bottom:330.600533pt;}
.y34{bottom:331.048747pt;}
.y116{bottom:331.309040pt;}
.yf{bottom:331.866667pt;}
.yfc{bottom:340.644933pt;}
.y9c{bottom:340.848373pt;}
.y139{bottom:343.239067pt;}
.yd9{bottom:344.140400pt;}
.yc5{bottom:344.753333pt;}
.y12d{bottom:348.815040pt;}
.y1{bottom:349.096133pt;}
.yb1{bottom:349.489307pt;}
.yf3{bottom:352.626667pt;}
.y7e{bottom:357.706667pt;}
.y10a{bottom:359.400000pt;}
.y11d{bottom:359.956267pt;}
.y56{bottom:360.348933pt;}
.ye3{bottom:365.473200pt;}
.y9b{bottom:366.176533pt;}
.y33{bottom:366.243307pt;}
.y115{bottom:366.503600pt;}
.y64{bottom:366.996267pt;}
.ye{bottom:370.266667pt;}
.yce{bottom:371.956800pt;}
.yaa{bottom:372.012080pt;}
.y138{bottom:372.039067pt;}
.ybb{bottom:375.411093pt;}
.y12c{bottom:379.543360pt;}
.y137{bottom:382.651680pt;}
.yc4{bottom:383.153333pt;}
.yd8{bottom:386.385840pt;}
.y44{bottom:386.938773pt;}
.yf9{bottom:387.217947pt;}
.y18{bottom:389.947493pt;}
.y9a{bottom:391.504693pt;}
.y1f{bottom:392.352000pt;}
.yb0{bottom:394.299867pt;}
.y29{bottom:396.200000pt;}
.yf2{bottom:398.706667pt;}
.y55{bottom:398.745573pt;}
.y7d{bottom:399.957547pt;}
.y1b{bottom:400.533200pt;}
.y32{bottom:401.437867pt;}
.y109{bottom:401.645440pt;}
.y114{bottom:401.698160pt;}
.y11c{bottom:402.201707pt;}
.yd{bottom:408.666667pt;}
.y63{bottom:409.252587pt;}
.ye2{bottom:410.113333pt;}
.y12b{bottom:410.271680pt;}
.y136{bottom:413.380000pt;}
.y78{bottom:413.918800pt;}
.ycd{bottom:414.202107pt;}
.y8{bottom:416.445733pt;}
.ya9{bottom:416.822640pt;}
.y99{bottom:416.832853pt;}
.yfb{bottom:419.201787pt;}
.yf8{bottom:419.228507pt;}
.yba{bottom:420.221653pt;}
.yd7{bottom:421.580400pt;}
.y43{bottom:422.133333pt;}
.y28{bottom:425.000000pt;}
.y75{bottom:428.318933pt;}
.y7a{bottom:428.319067pt;}
.yc3{bottom:429.233333pt;}
.y54{bottom:430.756133pt;}
.y7c{bottom:435.152107pt;}
.y108{bottom:436.840000pt;}
.y113{bottom:436.892720pt;}
.y11b{bottom:437.396267pt;}
.y12a{bottom:441.000000pt;}
.y98{bottom:442.161013pt;}
.y77{bottom:442.718800pt;}
.y31{bottom:443.683307pt;}
.y135{bottom:444.100000pt;}
.y62{bottom:444.447147pt;}
.yf1{bottom:444.786667pt;}
.yaf{bottom:448.060000pt;}
.ycc{bottom:449.396667pt;}
.ye1{bottom:449.953333pt;}
.yfa{bottom:451.212347pt;}
.yf7{bottom:451.239067pt;}
.y17{bottom:451.378853pt;}
.y27{bottom:453.800000pt;}
.y74{bottom:457.118933pt;}
.y79{bottom:457.119067pt;}
.ya8{bottom:461.633200pt;}
.yd6{bottom:463.825840pt;}
.y42{bottom:464.384213pt;}
.yb9{bottom:465.032213pt;}
.y97{bottom:467.489173pt;}
.yc2{bottom:467.633333pt;}
.y53{bottom:469.145573pt;}
.y7b{bottom:470.346667pt;}
.y76{bottom:471.518800pt;}
.y129{bottom:471.720160pt;}
.y112{bottom:472.087280pt;}
.y7{bottom:474.045733pt;}
.y134{bottom:474.820000pt;}
.y30{bottom:478.877867pt;}
.y107{bottom:479.096320pt;}
.y61{bottom:479.641707pt;}
.y8d{bottom:490.537733pt;}
.y20{bottom:490.680000pt;}
.yf0{bottom:490.866667pt;}
.y87{bottom:491.307733pt;}
.ycb{bottom:491.647680pt;}
.y93{bottom:491.980533pt;}
.ye0{bottom:494.593333pt;}
.y1a{bottom:495.764667pt;}
.y128{bottom:497.320000pt;}
.yd5{bottom:499.020400pt;}
.y41{bottom:499.578773pt;}
.y52{bottom:501.156133pt;}
.yae{bottom:501.802773pt;}
.y16{bottom:502.557413pt;}
.y96{bottom:504.049333pt;}
.y133{bottom:505.540000pt;}
.yc1{bottom:506.033333pt;}
.yc{bottom:506.124080pt;}
.y111{bottom:507.281840pt;}
.yb8{bottom:509.842773pt;}
.y106{bottom:514.290880pt;}
.y60{bottom:514.836267pt;}
.ya7{bottom:515.393333pt;}
.yca{bottom:526.842240pt;}
.y127{bottom:528.040000pt;}
.y6{bottom:531.645733pt;}
.y92{bottom:534.220400pt;}
.ydf{bottom:534.433333pt;}
.y40{bottom:534.773333pt;}
.y132{bottom:536.260000pt;}
.yef{bottom:536.946667pt;}
.y51{bottom:539.545573pt;}
.yd4{bottom:541.265840pt;}
.yb{bottom:541.318640pt;}
.y110{bottom:542.476400pt;}
.y6d{bottom:546.333333pt;}
.y105{bottom:549.485440pt;}
.yc0{bottom:552.113333pt;}
.yb7{bottom:554.653333pt;}
.y5f{bottom:557.081707pt;}
.y126{bottom:558.760000pt;}
.y86{bottom:560.000400pt;}
.yc9{bottom:562.036800pt;}
.y15{bottom:563.988773pt;}
.y131{bottom:566.980000pt;}
.yb6{bottom:568.516933pt;}
.ya6{bottom:569.153333pt;}
.y50{bottom:571.556133pt;}
.y10e{bottom:575.298080pt;}
.y4d{bottom:576.460400pt;}
.ya{bottom:576.513200pt;}
.y3f{bottom:577.013333pt;}
.yde{bottom:579.073333pt;}
.y104{bottom:584.680000pt;}
.y10f{bottom:584.716400pt;}
.y125{bottom:589.480000pt;}
.y5e{bottom:592.276267pt;}
.y130{bottom:597.700000pt;}
.y4f{bottom:609.956133pt;}
.ya5{bottom:614.573440pt;}
.y26{bottom:614.604773pt;}
.y124{bottom:620.200000pt;}
.y2d{bottom:629.083333pt;}
.y94{bottom:640.152000pt;}
.y3a{bottom:647.712000pt;}
.yed{bottom:651.163333pt;}
.y123{bottom:653.506667pt;}
.y68{bottom:654.659067pt;}
.y9{bottom:654.683333pt;}
.y85{bottom:656.123333pt;}
.y4e{bottom:662.831733pt;}
.y6c{bottom:665.466667pt;}
.ya4{bottom:665.752000pt;}
.y25{bottom:665.783333pt;}
.y2c{bottom:680.283333pt;}
.h10{height:47.593750pt;}
.h15{height:54.368437pt;}
.h16{height:55.684687pt;}
.h14{height:61.803437pt;}
.hf{height:63.299688pt;}
.h11{height:69.703125pt;}
.h9{height:71.390625pt;}
.h2{height:73.062500pt;}
.h12{height:77.602812pt;}
.h3{height:79.481562pt;}
.h1f{height:85.037812pt;}
.h6{height:87.096562pt;}
.h1b{height:87.500000pt;}
.he{height:88.777500pt;}
.hb{height:91.380000pt;}
.h17{height:92.937500pt;}
.h1e{height:94.218750pt;}
.h19{height:95.187500pt;}
.h1c{height:95.266220pt;}
.hd{height:100.125000pt;}
.h1a{height:101.699688pt;}
.hc{height:103.203933pt;}
.h1{height:108.272187pt;}
.h8{height:110.893437pt;}
.h13{height:112.454375pt;}
.h5{height:124.071562pt;}
.ha{height:127.075312pt;}
.h7{height:133.500000pt;}
.h4{height:139.406250pt;}
.h20{height:144.140172pt;}
.h1d{height:154.740938pt;}
.h18{height:200.250000pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x35{left:10.069067pt;}
.x53{left:22.492000pt;}
.x1b{left:28.433333pt;}
.x23{left:32.852667pt;}
.x28{left:36.196267pt;}
.x1d{left:44.069067pt;}
.x56{left:46.569067pt;}
.x40{left:50.082800pt;}
.x44{left:51.100000pt;}
.xa{left:57.600000pt;}
.x34{left:58.686000pt;}
.x52{left:60.092133pt;}
.x59{left:62.100000pt;}
.x26{left:63.600000pt;}
.x13{left:67.249547pt;}
.x9{left:70.069067pt;}
.x4c{left:71.824400pt;}
.x29{left:73.606267pt;}
.x4b{left:81.200000pt;}
.x45{left:88.715520pt;}
.x4a{left:91.600000pt;}
.xb{left:95.200000pt;}
.x24{left:96.485467pt;}
.x27{left:101.229280pt;}
.x2d{left:104.480000pt;}
.x47{left:108.000000pt;}
.x55{left:117.376800pt;}
.x6{left:122.823200pt;}
.x48{left:141.920000pt;}
.x2e{left:152.480000pt;}
.x2f{left:157.915733pt;}
.x7{left:158.823200pt;}
.x3f{left:180.374000pt;}
.x3{left:200.190533pt;}
.x4d{left:253.336107pt;}
.x51{left:266.612000pt;}
.x50{left:278.740000pt;}
.x2{left:286.763333pt;}
.x4{left:297.959013pt;}
.x2b{left:322.470267pt;}
.x3c{left:325.255600pt;}
.x1{left:331.403333pt;}
.x5a{left:332.696533pt;}
.x5{left:361.793093pt;}
.x3d{left:371.718133pt;}
.x15{left:379.402800pt;}
.x18{left:382.286133pt;}
.x8{left:383.799200pt;}
.x17{left:389.002800pt;}
.x3b{left:398.401467pt;}
.x30{left:403.952400pt;}
.x31{left:411.152400pt;}
.x22{left:414.001067pt;}
.x21{left:418.266667pt;}
.x16{left:421.326133pt;}
.x14{left:428.831627pt;}
.x11{left:444.240667pt;}
.x58{left:474.598240pt;}
.x4e{left:478.238347pt;}
.x12{left:485.179307pt;}
.x41{left:497.264800pt;}
.x43{left:503.420133pt;}
.x49{left:504.600000pt;}
.x57{left:512.200000pt;}
.x2a{left:526.139467pt;}
.x42{left:534.866667pt;}
.x3a{left:573.001200pt;}
.x36{left:588.197867pt;}
.x46{left:595.433333pt;}
.x32{left:611.046800pt;}
.x33{left:619.686800pt;}
.xd{left:642.566667pt;}
.xe{left:649.286667pt;}
.x54{left:650.288533pt;}
.x1e{left:686.100133pt;}
.xf{left:691.206667pt;}
.x10{left:700.329493pt;}
.x4f{left:703.167307pt;}
.x1f{left:704.710000pt;}
.x1a{left:706.582667pt;}
.x19{left:716.422667pt;}
.x20{left:729.358000pt;}
.x37{left:733.137467pt;}
.xc{left:740.966667pt;}
.x39{left:757.544133pt;}
.x2c{left:765.266667pt;}
.x1c{left:791.933333pt;}
.x38{left:801.543333pt;}
.x25{left:837.355200pt;}
.x3e{left:919.766667pt;}
}




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