
    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_dee2fe9e918d3b6fbd413798.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_39b125b2cdf1aa7e1f105bbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_431e1460ac1fe78417fa5689.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_76fbb833be7962e4c38dcdf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_010b9b0dfc44a959810ff6fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_3695a6f664f1cb82d38e113f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_ec393e551bea159d73daf6fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_97d6b10f77b79e42afe43437.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.127930;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_94b260801e0a1644f8d90461.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.148438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_04441daefe89b2533fbd6a8f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976581;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:ffc;src:url('chunks/assets/font_8cf7845994e5a850c6324d26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.148438;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:ffd;src:url('chunks/assets/font_eb4a84c60b5b16aeffc1e127.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.127930;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:ffe;src:url('chunks/assets/font_a6eeffdeb9361c056e84bfe7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960938;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:fff;src:url('chunks/assets/font_dbc0e5ad18a72edf08efe890.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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:ff10;src:url('chunks/assets/font_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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:ff11;src:url('chunks/assets/font_1fa49c0296a613697e7efe1e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.158691;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);}
.v1{vertical-align:-422.340000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.276600px;}
.lse{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.161400px;}
.ls15{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.132600px;}
.ls20{letter-spacing:-0.046800px;}
.ls22{letter-spacing:-0.038880px;}
.ls9{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.010560px;}
.ls26{letter-spacing:0.024480px;}
.ls2f{letter-spacing:0.037980px;}
.ls21{letter-spacing:0.051840px;}
.ls3a{letter-spacing:0.085800px;}
.lsf{letter-spacing:0.102000px;}
.ls1e{letter-spacing:0.128400px;}
.ls4{letter-spacing:0.132000px;}
.ls1f{letter-spacing:0.135600px;}
.ls1b{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.156000px;}
.ls2a{letter-spacing:0.182016px;}
.ls37{letter-spacing:0.193200px;}
.ls10{letter-spacing:0.201600px;}
.ls14{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.219000px;}
.ls34{letter-spacing:0.238200px;}
.ls11{letter-spacing:0.246000px;}
.ls27{letter-spacing:0.256800px;}
.ls39{letter-spacing:0.270600px;}
.ls2e{letter-spacing:0.274800px;}
.ls33{letter-spacing:0.287280px;}
.lsc{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.290880px;}
.ls35{letter-spacing:0.420480px;}
.ls38{letter-spacing:0.528768px;}
.ls25{letter-spacing:1.284480px;}
.lsd{letter-spacing:17.568000px;}
.ls1c{letter-spacing:28.080000px;}
.lsa{letter-spacing:29.736000px;}
.lsb{letter-spacing:29.856000px;}
.ls32{letter-spacing:40.665600px;}
.ls31{letter-spacing:40.716000px;}
.ls17{letter-spacing:117.018048px;}
.ls3{letter-spacing:117.030048px;}
.ls16{letter-spacing:117.084000px;}
.ls1{letter-spacing:117.096000px;}
.ls1d{letter-spacing:127.888128px;}
.ls19{letter-spacing:127.900128px;}
.ls29{letter-spacing:127.912128px;}
.ls2{letter-spacing:127.954080px;}
.ls18{letter-spacing:127.966080px;}
.ls2b{letter-spacing:127.978080px;}
.ls24{letter-spacing:128.032128px;}
.ls23{letter-spacing:128.098080px;}
.ls2d{letter-spacing:139.099968px;}
.ls2c{letter-spacing:139.165920px;}
.ls1a{letter-spacing:150.060000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(91,91,91),0 0.015em rgb(91,91,91),0.015em 0 rgb(91,91,91),0 -0.015em  rgb(91,91,91);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(91,91,91);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-112.085856px;}
.ws1f{word-spacing:-107.568000px;}
.ws2e{word-spacing:-73.224000px;}
.ws2f{word-spacing:-56.984544px;}
.ws14{word-spacing:-54.185760px;}
.ws1b{word-spacing:-53.784000px;}
.ws4{word-spacing:-53.603712px;}
.ws20{word-spacing:-53.568000px;}
.ws1c{word-spacing:-48.160416px;}
.ws2c{word-spacing:-47.946120px;}
.ws1d{word-spacing:-47.903616px;}
.ws2{word-spacing:-47.894520px;}
.ws18{word-spacing:-47.867760px;}
.ws1e{word-spacing:-47.711232px;}
.ws19{word-spacing:-47.675520px;}
.ws3{word-spacing:-47.398920px;}
.ws16{word-spacing:-47.234400px;}
.ws15{word-spacing:-47.227200px;}
.ws17{word-spacing:-47.150640px;}
.ws31{word-spacing:-43.478784px;}
.ws30{word-spacing:-43.446240px;}
.ws13{word-spacing:-35.712000px;}
.ws9{word-spacing:-35.424000px;}
.ws24{word-spacing:-29.819520px;}
.ws29{word-spacing:-29.686920px;}
.ws22{word-spacing:-27.412440px;}
.ws21{word-spacing:-27.174240px;}
.ws0{word-spacing:-26.819712px;}
.ws2d{word-spacing:-23.748480px;}
.wse{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.141760px;}
.ws8{word-spacing:-2.892672px;}
.ws2a{word-spacing:-2.160000px;}
.ws23{word-spacing:-1.679760px;}
.wsa{word-spacing:-1.627200px;}
.ws27{word-spacing:-0.931680px;}
.ws7{word-spacing:-0.803088px;}
.ws25{word-spacing:-0.586080px;}
.ws26{word-spacing:-0.440640px;}
.wsd{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.411840px;}
.ws2b{word-spacing:-0.277920px;}
.ws12{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.144000px;}
.ws5{word-spacing:0.588000px;}
.ws11{word-spacing:0.720000px;}
.ws6{word-spacing:36.720000px;}
._5{margin-left:-22.572000px;}
._c{margin-left:-10.669680px;}
._b{margin-left:-9.210240px;}
._2{margin-left:-7.489872px;}
._3{margin-left:-5.610096px;}
._4{margin-left:-4.356000px;}
._1{margin-left:-3.032064px;}
._0{margin-left:-1.705536px;}
._6{width:1.965600px;}
._9{width:4.205472px;}
._8{width:29.736000px;}
._7{width:37.576800px;}
._a{width:3736.661280px;}
.fc7{color:rgb(40,100,45);}
.fc5{color:rgb(116,178,48);}
.fc4{color:transparent;}
.fc8{color:rgb(9,43,73);}
.fc1{color:rgb(115,190,70);}
.fc6{color:rgb(91,91,91);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(137,137,137);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:7.200000px;}
.fs10{font-size:69.120000px;}
.fs11{font-size:69.264000px;}
.fsf{font-size:72.000000px;}
.fs21{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fse{font-size:120.240000px;}
.fs20{font-size:120.384000px;}
.fs18{font-size:131.760000px;}
.fsd{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs1c{font-size:167.760000px;}
.fs1d{font-size:167.904000px;}
.fs0{font-size:189.504000px;}
.fs5{font-size:192.240000px;}
.fs15{font-size:192.384000px;}
.fs13{font-size:198.000000px;}
.fs14{font-size:198.144000px;}
.fs1{font-size:216.000000px;}
.fsa{font-size:216.144000px;}
.fs17{font-size:239.760000px;}
.fs16{font-size:239.904000px;}
.fs24{font-size:252.144000px;}
.fs9{font-size:288.000000px;}
.fs22{font-size:324.000000px;}
.fs19{font-size:336.240000px;}
.fs23{font-size:378.000000px;}
.fs1e{font-size:383.760000px;}
.fs3{font-size:396.000000px;}
.fs12{font-size:401.760000px;}
.fs1b{font-size:432.000000px;}
.fs1a{font-size:450.144000px;}
.fsc{font-size:480.240000px;}
.fsb{font-size:486.144000px;}
.fs1f{font-size:527.760000px;}
.fs2{font-size:576.144000px;}
.yf1{bottom:-474.915000px;}
.yf0{bottom:-400.530000px;}
.yef{bottom:-348.690000px;}
.yee{bottom:-274.350000px;}
.yed{bottom:-200.010000px;}
.yec{bottom:-125.640000px;}
.yeb{bottom:-49.680000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:18.000000px;}
.y104{bottom:18.396000px;}
.y9{bottom:19.476000px;}
.y2f{bottom:21.240000px;}
.y2{bottom:28.152000px;}
.y81{bottom:28.836000px;}
.y5{bottom:35.820000px;}
.y14f{bottom:39.060000px;}
.y85{bottom:39.204000px;}
.y14c{bottom:41.040000px;}
.y14e{bottom:41.220000px;}
.y2a{bottom:43.560000px;}
.y45{bottom:43.605000px;}
.yd{bottom:49.392000px;}
.y80{bottom:50.436000px;}
.y8{bottom:51.876000px;}
.y109{bottom:61.560000px;}
.y114{bottom:61.590000px;}
.y106{bottom:61.605000px;}
.y131{bottom:62.532000px;}
.y149{bottom:71.784000px;}
.y7f{bottom:72.036000px;}
.yea{bottom:83.340000px;}
.ya1{bottom:84.888000px;}
.y10c{bottom:93.960000px;}
.y91{bottom:100.548000px;}
.y142{bottom:106.416000px;}
.yc5{bottom:113.040000px;}
.yc{bottom:122.970000px;}
.yc4{bottom:123.984000px;}
.y146{bottom:124.560000px;}
.yb{bottom:127.290000px;}
.ya0{bottom:136.728000px;}
.y140{bottom:138.564000px;}
.yab{bottom:139.968000px;}
.yb2{bottom:140.148000px;}
.y18{bottom:144.216000px;}
.y148{bottom:148.284000px;}
.y28{bottom:149.724000px;}
.ye5{bottom:153.180000px;}
.ybb{bottom:156.600000px;}
.y128{bottom:157.470000px;}
.y1{bottom:165.450000px;}
.y90{bottom:165.885000px;}
.y143{bottom:168.654000px;}
.y144{bottom:176.505000px;}
.y9f{bottom:188.565000px;}
.y13f{bottom:190.410000px;}
.yc3{bottom:193.830000px;}
.y50{bottom:196.950000px;}
.y5e{bottom:198.330000px;}
.y4a{bottom:200.550000px;}
.y5c{bottom:201.570000px;}
.ye9{bottom:205.020000px;}
.y56{bottom:205.170000px;}
.y103{bottom:206.385000px;}
.yaa{bottom:209.805000px;}
.yb1{bottom:210.030000px;}
.y27{bottom:211.110000px;}
.y4f{bottom:216.390000px;}
.y5d{bottom:217.770000px;}
.y49{bottom:219.990000px;}
.y5b{bottom:221.010000px;}
.y99{bottom:222.405000px;}
.ye4{bottom:223.050000px;}
.y17{bottom:223.590000px;}
.y55{bottom:224.610000px;}
.yba{bottom:226.440000px;}
.y127{bottom:227.310000px;}
.y74{bottom:231.510000px;}
.y119{bottom:232.095000px;}
.y130{bottom:232.410000px;}
.y4e{bottom:235.830000px;}
.y48{bottom:239.430000px;}
.y5a{bottom:240.450000px;}
.ydc{bottom:241.950000px;}
.yfa{bottom:243.615000px;}
.y54{bottom:244.050000px;}
.y8f{bottom:245.310000px;}
.yd4{bottom:247.035000px;}
.y26{bottom:250.020000px;}
.yce{bottom:252.975000px;}
.y4d{bottom:255.270000px;}
.y105{bottom:257.070000px;}
.y102{bottom:258.270000px;}
.y9e{bottom:258.450000px;}
.y47{bottom:258.870000px;}
.y59{bottom:259.890000px;}
.y14d{bottom:259.950000px;}
.ya9{bottom:261.645000px;}
.yb0{bottom:261.870000px;}
.y53{bottom:263.490000px;}
.yc2{bottom:263.670000px;}
.y138{bottom:264.780000px;}
.y66{bottom:265.350000px;}
.y118{bottom:268.095000px;}
.y7e{bottom:270.390000px;}
.y4c{bottom:274.710000px;}
.ye8{bottom:274.890000px;}
.y46{bottom:278.310000px;}
.y58{bottom:279.330000px;}
.y107{bottom:282.780000px;}
.y52{bottom:282.930000px;}
.y16{bottom:287.310000px;}
.y25{bottom:288.900000px;}
.y98{bottom:292.290000px;}
.ye3{bottom:292.890000px;}
.y4b{bottom:294.150000px;}
.yb9{bottom:296.280000px;}
.y126{bottom:297.180000px;}
.y44{bottom:297.750000px;}
.yd3{bottom:298.875000px;}
.y12f{bottom:302.250000px;}
.ycd{bottom:304.815000px;}
.y73{bottom:305.850000px;}
.ydb{bottom:311.790000px;}
.y57{bottom:314.430000px;}
.y8e{bottom:315.150000px;}
.y51{bottom:318.030000px;}
.y14b{bottom:320.070000px;}
.y151{bottom:321.225000px;}
.y24{bottom:327.780000px;}
.y101{bottom:328.110000px;}
.y9d{bottom:328.290000px;}
.y93{bottom:329.400000px;}
.y10f{bottom:329.835000px;}
.ya8{bottom:331.485000px;}
.yaf{bottom:331.710000px;}
.y7d{bottom:331.770000px;}
.yc1{bottom:333.540000px;}
.y137{bottom:334.620000px;}
.y7{bottom:338.220000px;}
.y13e{bottom:339.120000px;}
.y6c{bottom:344.190000px;}
.ye7{bottom:344.730000px;}
.y65{bottom:346.170000px;}
.y125{bottom:349.020000px;}
.y15{bottom:352.650000px;}
.y110{bottom:355.470000px;}
.y97{bottom:362.130000px;}
.ye2{bottom:362.730000px;}
.yb8{bottom:366.150000px;}
.y23{bottom:366.660000px;}
.y7c{bottom:370.650000px;}
.y12e{bottom:372.090000px;}
.yd2{bottom:373.215000px;}
.ycc{bottom:379.155000px;}
.y100{bottom:379.950000px;}
.y9c{bottom:380.130000px;}
.y72{bottom:380.190000px;}
.yda{bottom:381.675000px;}
.y120{bottom:383.400000px;}
.y8d{bottom:384.990000px;}
.y14a{bottom:386.670000px;}
.y150{bottom:387.825000px;}
.y6{bottom:390.060000px;}
.ye6{bottom:396.570000px;}
.y6b{bottom:397.650000px;}
.ya7{bottom:401.370000px;}
.yae{bottom:401.550000px;}
.y136{bottom:404.460000px;}
.yc0{bottom:404.820000px;}
.y22{bottom:405.540000px;}
.yf9{bottom:411.810000px;}
.y13d{bottom:413.460000px;}
.ye1{bottom:414.570000px;}
.y124{bottom:420.300000px;}
.yd1{bottom:425.085000px;}
.y64{bottom:426.990000px;}
.y96{bottom:431.970000px;}
.y71{bottom:432.030000px;}
.y14{bottom:432.075000px;}
.y11f{bottom:435.240000px;}
.y112{bottom:437.010000px;}
.y12d{bottom:441.930000px;}
.y21{bottom:444.420000px;}
.yff{bottom:449.790000px;}
.y9b{bottom:449.970000px;}
.y6a{bottom:451.110000px;}
.yd9{bottom:451.515000px;}
.ycb{bottom:451.905000px;}
.y8c{bottom:456.270000px;}
.y13c{bottom:465.330000px;}
.ye0{bottom:466.410000px;}
.y7b{bottom:470.910000px;}
.ya6{bottom:471.210000px;}
.yad{bottom:471.420000px;}
.y111{bottom:473.010000px;}
.y135{bottom:474.330000px;}
.y95{bottom:483.810000px;}
.y63{bottom:485.355000px;}
.y13{bottom:495.975000px;}
.yf5{bottom:498.855000px;}
.yd0{bottom:499.425000px;}
.y9a{bottom:501.840000px;}
.y69{bottom:504.570000px;}
.y70{bottom:507.855000px;}
.yca{bottom:509.325000px;}
.y11e{bottom:509.610000px;}
.y12c{bottom:511.815000px;}
.yb7{bottom:514.830000px;}
.yfe{bottom:519.660000px;}
.yd8{bottom:521.355000px;}
.y134{bottom:526.170000px;}
.y113{bottom:531.075000px;}
.y7a{bottom:532.335000px;}
.y8b{bottom:535.680000px;}
.ydf{bottom:537.735000px;}
.y13b{bottom:539.670000px;}
.ya5{bottom:542.490000px;}
.yac{bottom:542.700000px;}
.y87{bottom:547.350000px;}
.y84{bottom:551.235000px;}
.y123{bottom:551.370000px;}
.y94{bottom:553.680000px;}
.ybf{bottom:556.050000px;}
.y115{bottom:556.740000px;}
.y117{bottom:557.070000px;}
.y12{bottom:559.695000px;}
.y62{bottom:566.175000px;}
.yc9{bottom:566.745000px;}
.y1a{bottom:567.075000px;}
.y92{bottom:567.645000px;}
.y79{bottom:571.215000px;}
.yf7{bottom:571.755000px;}
.ycf{bottom:573.765000px;}
.yf4{bottom:575.175000px;}
.y10b{bottom:579.345000px;}
.y20{bottom:579.420000px;}
.y12b{bottom:581.655000px;}
.y11d{bottom:583.950000px;}
.yb6{bottom:584.670000px;}
.y141{bottom:587.265000px;}
.y6f{bottom:588.675000px;}
.yfd{bottom:589.500000px;}
.yd7{bottom:591.195000px;}
.y116{bottom:593.070000px;}
.y133{bottom:596.010000px;}
.y10e{bottom:605.010000px;}
.y8a{bottom:605.520000px;}
.y13a{bottom:614.010000px;}
.y83{bottom:623.265000px;}
.y61{bottom:624.495000px;}
.y11{bottom:625.065000px;}
.yc8{bottom:625.605000px;}
.y122{bottom:625.710000px;}
.ybe{bottom:625.890000px;}
.y86{bottom:627.990000px;}
.yf3{bottom:633.495000px;}
.y78{bottom:635.655000px;}
.y11c{bottom:635.790000px;}
.yb5{bottom:636.555000px;}
.y10d{bottom:637.410000px;}
.y4{bottom:640.110000px;}
.y1f{bottom:640.800000px;}
.y6e{bottom:646.995000px;}
.ya4{bottom:648.930000px;}
.y12a{bottom:651.495000px;}
.yfc{bottom:659.340000px;}
.yde{bottom:659.415000px;}
.yd6{bottom:661.065000px;}
.y108{bottom:662.325000px;}
.y132{bottom:665.850000px;}
.y89{bottom:676.800000px;}
.y1e{bottom:679.680000px;}
.y77{bottom:687.495000px;}
.y10a{bottom:687.960000px;}
.ybd{bottom:695.730000px;}
.yc7{bottom:699.990000px;}
.y121{bottom:700.050000px;}
.y10{bottom:704.445000px;}
.y60{bottom:705.315000px;}
.yb4{bottom:706.395000px;}
.ya3{bottom:707.250000px;}
.yf2{bottom:709.815000px;}
.y11b{bottom:710.175000px;}
.yfb{bottom:711.180000px;}
.ydd{bottom:711.255000px;}
.y1d{bottom:718.590000px;}
.y129{bottom:721.335000px;}
.y6d{bottom:727.815000px;}
.yd5{bottom:730.905000px;}
.y76{bottom:739.365000px;}
.yf8{bottom:739.980000px;}
.y1c{bottom:757.470000px;}
.yb3{bottom:758.235000px;}
.ybc{bottom:767.010000px;}
.yf{bottom:769.785000px;}
.y3{bottom:770.835000px;}
.y42{bottom:771.810000px;}
.yc6{bottom:774.330000px;}
.y11a{bottom:784.515000px;}
.y5f{bottom:786.165000px;}
.y139{bottom:789.090000px;}
.y41{bottom:790.380000px;}
.y75{bottom:791.205000px;}
.y43{bottom:806.040000px;}
.y3b{bottom:809.100000px;}
.y40{bottom:825.480000px;}
.y3a{bottom:827.640000px;}
.y3f{bottom:844.920000px;}
.y39{bottom:846.360000px;}
.y33{bottom:859.830000px;}
.y32{bottom:863.070000px;}
.y3e{bottom:864.360000px;}
.y38{bottom:864.900000px;}
.y3d{bottom:867.600000px;}
.y31{bottom:879.270000px;}
.y30{bottom:882.510000px;}
.y37{bottom:883.800000px;}
.y3c{bottom:887.040000px;}
.y2e{bottom:898.710000px;}
.y2d{bottom:901.950000px;}
.y36{bottom:906.480000px;}
.y68{bottom:908.130000px;}
.y2b{bottom:921.390000px;}
.y35{bottom:925.920000px;}
.y145{bottom:928.950000px;}
.y29{bottom:940.830000px;}
.yf6{bottom:941.655000px;}
.y19{bottom:944.820000px;}
.y1b{bottom:946.440000px;}
.y88{bottom:947.340000px;}
.ya2{bottom:948.675000px;}
.ye{bottom:956.340000px;}
.y34{bottom:961.020000px;}
.y147{bottom:978.630000px;}
.y67{bottom:1004.610000px;}
.y82{bottom:1049.655000px;}
.ya{bottom:1075.110000px;}
.ha{height:7.161328px;}
.h19{height:19.620000px;}
.h1a{height:22.860000px;}
.h44{height:42.660000px;}
.h45{height:42.840000px;}
.h18{height:45.180000px;}
.h21{height:45.216000px;}
.h1d{height:62.606250px;}
.h3a{height:63.180000px;}
.h38{height:63.216000px;}
.h1e{height:63.416250px;}
.h20{height:63.548367px;}
.h1f{height:65.214844px;}
.h1c{height:66.058594px;}
.h3d{height:87.857930px;}
.h3b{height:95.580000px;}
.h7{height:99.087891px;}
.h8{height:99.220008px;}
.h5{height:107.419922px;}
.h1b{height:108.908789px;}
.h16{height:109.690191px;}
.h14{height:109.799882px;}
.h39{height:110.317852px;}
.h3c{height:110.449969px;}
.h28{height:119.594180px;}
.h40{height:126.180000px;}
.h9{height:128.916000px;}
.h15{height:132.117188px;}
.h27{height:132.249305px;}
.h13{height:132.257812px;}
.h17{height:132.390070px;}
.hb{height:147.592758px;}
.h33{height:153.916523px;}
.h34{height:154.048641px;}
.h3e{height:170.280000px;}
.h2f{height:174.123633px;}
.h32{height:174.254063px;}
.he{height:176.376445px;}
.h26{height:176.508563px;}
.h2e{height:176.564180px;}
.h30{height:176.696438px;}
.h23{height:181.661133px;}
.h24{height:181.793250px;}
.h36{height:191.207461px;}
.h46{height:191.350688px;}
.h1{height:194.038031px;}
.h25{height:195.644531px;}
.h2d{height:195.774961px;}
.h6{height:196.839492px;}
.hd{height:198.175781px;}
.hf{height:198.307898px;}
.h2{height:214.839844px;}
.h35{height:221.167969px;}
.h41{height:221.497031px;}
.h2a{height:245.496445px;}
.h29{height:245.643891px;}
.h43{height:258.176742px;}
.hc{height:294.890625px;}
.h2b{height:304.553320px;}
.h3f{height:331.751953px;}
.h22{height:363.898828px;}
.h42{height:387.043945px;}
.h31{height:391.289062px;}
.h4{height:405.474609px;}
.h2c{height:407.723203px;}
.h10{height:440.330625px;}
.h37{height:478.024805px;}
.h11{height:491.730117px;}
.h12{height:497.775375px;}
.h3{height:589.928695px;}
.h0{height:1215.000000px;}
.w17{width:4.680000px;}
.w20{width:21.420000px;}
.w18{width:26.640000px;}
.w5{width:28.260000px;}
.w7{width:28.980000px;}
.w2a{width:30.960000px;}
.w8{width:35.820000px;}
.w32{width:37.620000px;}
.w1b{width:40.860000px;}
.w38{width:42.660000px;}
.w16{width:48.240000px;}
.w21{width:54.000000px;}
.w30{width:68.220000px;}
.w1e{width:69.660000px;}
.w13{width:70.020000px;}
.w9{width:76.500000px;}
.w6{width:78.300000px;}
.w1a{width:80.280000px;}
.w22{width:80.820000px;}
.w12{width:82.080000px;}
.w3{width:83.880000px;}
.w1d{width:88.020000px;}
.wf{width:89.100000px;}
.we{width:89.460000px;}
.w1c{width:97.560000px;}
.wc{width:99.900000px;}
.w2d{width:101.160000px;}
.w33{width:102.060000px;}
.wb{width:104.940000px;}
.w15{width:105.120000px;}
.w4{width:109.080000px;}
.wd{width:112.860000px;}
.w25{width:116.100000px;}
.w1f{width:116.460000px;}
.wa{width:119.340000px;}
.w19{width:121.320000px;}
.w10{width:129.240000px;}
.w14{width:132.300000px;}
.w11{width:135.900000px;}
.w34{width:143.280000px;}
.w23{width:145.440000px;}
.w2f{width:154.830000px;}
.w2c{width:157.680000px;}
.w26{width:158.580000px;}
.w28{width:172.620000px;}
.w2e{width:177.150000px;}
.w29{width:198.000000px;}
.w24{width:208.650000px;}
.w2b{width:209.700000px;}
.w31{width:214.380000px;}
.w27{width:214.560000px;}
.w2{width:248.430000px;}
.w36{width:681.150000px;}
.w35{width:683.715000px;}
.w37{width:1918.980000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.xa{left:-9.360065px;}
.x0{left:0.000000px;}
.x3c{left:26.027968px;}
.x28{left:34.740000px;}
.x11{left:37.080000px;}
.x33{left:39.275968px;}
.x24{left:44.531968px;}
.x29{left:48.240000px;}
.x12{left:50.580000px;}
.x52{left:111.779968px;}
.x4f{left:119.771968px;}
.x50{left:125.387968px;}
.x2{left:127.583968px;}
.xc{left:138.383968px;}
.x51{left:159.554968px;}
.x5e{left:164.954968px;}
.x45{left:181.079968px;}
.x3a{left:192.314968px;}
.x3f{left:195.269968px;}
.xd{left:219.389968px;}
.x13{left:253.290000px;}
.x25{left:260.669968px;}
.x14{left:266.790000px;}
.x41{left:273.314968px;}
.x4{left:282.854968px;}
.x62{left:313.229968px;}
.x35{left:344.084968px;}
.x34{left:348.584968px;}
.x2a{left:357.510000px;}
.x63{left:369.750000px;}
.x10{left:396.644968px;}
.xe{left:445.289968px;}
.x48{left:449.384968px;}
.x15{left:468.210000px;}
.x64{left:478.650000px;}
.x16{left:481.710000px;}
.x57{left:581.579968px;}
.x39{left:583.199968px;}
.x5f{left:618.194968px;}
.x3{left:641.804968px;}
.x2b{left:656.895000px;}
.x53{left:668.309968px;}
.x2c{left:670.395000px;}
.x26{left:683.354968px;}
.x8{left:694.769968px;}
.x27{left:696.884968px;}
.x3e{left:702.074968px;}
.x9{left:703.229968px;}
.x40{left:715.319968px;}
.x5c{left:739.515000px;}
.x60{left:772.664968px;}
.xf{left:776.984968px;}
.x6{left:788.219968px;}
.x7{left:820.259968px;}
.x5d{left:831.269968px;}
.x61{left:876.089968px;}
.x17{left:898.275000px;}
.x18{left:911.775000px;}
.x58{left:936.974968px;}
.x36{left:966.344968px;}
.x2e{left:979.815000px;}
.x59{left:1027.724968px;}
.x42{left:1053.329968px;}
.x2d{left:1074.165000px;}
.x5a{left:1081.724968px;}
.x49{left:1090.904968px;}
.x19{left:1113.405000px;}
.x4b{left:1119.389968px;}
.x1a{left:1126.905000px;}
.x43{left:1134.329968px;}
.x5b{left:1135.829968px;}
.x4a{left:1144.904968px;}
.x3d{left:1147.829968px;}
.x46{left:1161.539968px;}
.x4c{left:1173.389968px;}
.x44{left:1188.329968px;}
.x47{left:1215.539968px;}
.x2f{left:1275.585000px;}
.x30{left:1289.085000px;}
.x1b{left:1328.325000px;}
.x1c{left:1341.825000px;}
.x55{left:1357.305000px;}
.x56{left:1375.409968px;}
.x65{left:1426.064968px;}
.x1d{left:1469.445000px;}
.x1e{left:1543.470000px;}
.x1f{left:1556.970000px;}
.x31{left:1584.870000px;}
.x32{left:1598.370000px;}
.x1{left:1608.734968px;}
.x54{left:1723.889968px;}
.x20{left:1758.570000px;}
.x21{left:1772.070000px;}
.x37{left:1894.319968px;}
.x5{left:1902.269968px;}
.x38{left:1907.819968px;}
.x22{left:1973.520000px;}
.x23{left:1987.020000px;}
.x3b{left:2028.134968px;}
.xb{left:2064.674968px;}
.x4d{left:3573.719968px;}
.x4e{left:3627.719968px;}
@media print{
.v1{vertical-align:-375.413333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.245867pt;}
.lse{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.143467pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.117867pt;}
.ls20{letter-spacing:-0.041600pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.009387pt;}
.ls26{letter-spacing:0.021760pt;}
.ls2f{letter-spacing:0.033760pt;}
.ls21{letter-spacing:0.046080pt;}
.ls3a{letter-spacing:0.076267pt;}
.lsf{letter-spacing:0.090667pt;}
.ls1e{letter-spacing:0.114133pt;}
.ls4{letter-spacing:0.117333pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.138667pt;}
.ls2a{letter-spacing:0.161792pt;}
.ls37{letter-spacing:0.171733pt;}
.ls10{letter-spacing:0.179200pt;}
.ls14{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.194667pt;}
.ls34{letter-spacing:0.211733pt;}
.ls11{letter-spacing:0.218667pt;}
.ls27{letter-spacing:0.228267pt;}
.ls39{letter-spacing:0.240533pt;}
.ls2e{letter-spacing:0.244267pt;}
.ls33{letter-spacing:0.255360pt;}
.lsc{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.258560pt;}
.ls35{letter-spacing:0.373760pt;}
.ls38{letter-spacing:0.470016pt;}
.ls25{letter-spacing:1.141760pt;}
.lsd{letter-spacing:15.616000pt;}
.ls1c{letter-spacing:24.960000pt;}
.lsa{letter-spacing:26.432000pt;}
.lsb{letter-spacing:26.538667pt;}
.ls32{letter-spacing:36.147200pt;}
.ls31{letter-spacing:36.192000pt;}
.ls17{letter-spacing:104.016043pt;}
.ls3{letter-spacing:104.026709pt;}
.ls16{letter-spacing:104.074667pt;}
.ls1{letter-spacing:104.085333pt;}
.ls1d{letter-spacing:113.678336pt;}
.ls19{letter-spacing:113.689003pt;}
.ls29{letter-spacing:113.699669pt;}
.ls2{letter-spacing:113.736960pt;}
.ls18{letter-spacing:113.747627pt;}
.ls2b{letter-spacing:113.758293pt;}
.ls24{letter-spacing:113.806336pt;}
.ls23{letter-spacing:113.864960pt;}
.ls2d{letter-spacing:123.644416pt;}
.ls2c{letter-spacing:123.703040pt;}
.ls1a{letter-spacing:133.386667pt;}
.ws1a{word-spacing:-99.631872pt;}
.ws1f{word-spacing:-95.616000pt;}
.ws2e{word-spacing:-65.088000pt;}
.ws2f{word-spacing:-50.652928pt;}
.ws14{word-spacing:-48.165120pt;}
.ws1b{word-spacing:-47.808000pt;}
.ws4{word-spacing:-47.647744pt;}
.ws20{word-spacing:-47.616000pt;}
.ws1c{word-spacing:-42.809259pt;}
.ws2c{word-spacing:-42.618773pt;}
.ws1d{word-spacing:-42.580992pt;}
.ws2{word-spacing:-42.572907pt;}
.ws18{word-spacing:-42.549120pt;}
.ws1e{word-spacing:-42.409984pt;}
.ws19{word-spacing:-42.378240pt;}
.ws3{word-spacing:-42.132373pt;}
.ws16{word-spacing:-41.986133pt;}
.ws15{word-spacing:-41.979733pt;}
.ws17{word-spacing:-41.911680pt;}
.ws31{word-spacing:-38.647808pt;}
.ws30{word-spacing:-38.618880pt;}
.ws13{word-spacing:-31.744000pt;}
.ws9{word-spacing:-31.488000pt;}
.ws24{word-spacing:-26.506240pt;}
.ws29{word-spacing:-26.388373pt;}
.ws22{word-spacing:-24.366613pt;}
.ws21{word-spacing:-24.154880pt;}
.ws0{word-spacing:-23.839744pt;}
.ws2d{word-spacing:-21.109760pt;}
.wse{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.237120pt;}
.ws8{word-spacing:-2.571264pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws23{word-spacing:-1.493120pt;}
.wsa{word-spacing:-1.446400pt;}
.ws27{word-spacing:-0.828160pt;}
.ws7{word-spacing:-0.713856pt;}
.ws25{word-spacing:-0.520960pt;}
.ws26{word-spacing:-0.391680pt;}
.wsd{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.366080pt;}
.ws2b{word-spacing:-0.247040pt;}
.ws12{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.128000pt;}
.ws5{word-spacing:0.522667pt;}
.ws11{word-spacing:0.640000pt;}
.ws6{word-spacing:32.640000pt;}
._5{margin-left:-20.064000pt;}
._c{margin-left:-9.484160pt;}
._b{margin-left:-8.186880pt;}
._2{margin-left:-6.657664pt;}
._3{margin-left:-4.986752pt;}
._4{margin-left:-3.872000pt;}
._1{margin-left:-2.695168pt;}
._0{margin-left:-1.516032pt;}
._6{width:1.747200pt;}
._9{width:3.738197pt;}
._8{width:26.432000pt;}
._7{width:33.401600pt;}
._a{width:3321.476693pt;}
.fs7{font-size:6.400000pt;}
.fs10{font-size:61.440000pt;}
.fs11{font-size:61.568000pt;}
.fsf{font-size:64.000000pt;}
.fs21{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fse{font-size:106.880000pt;}
.fs20{font-size:107.008000pt;}
.fs18{font-size:117.120000pt;}
.fsd{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs1c{font-size:149.120000pt;}
.fs1d{font-size:149.248000pt;}
.fs0{font-size:168.448000pt;}
.fs5{font-size:170.880000pt;}
.fs15{font-size:171.008000pt;}
.fs13{font-size:176.000000pt;}
.fs14{font-size:176.128000pt;}
.fs1{font-size:192.000000pt;}
.fsa{font-size:192.128000pt;}
.fs17{font-size:213.120000pt;}
.fs16{font-size:213.248000pt;}
.fs24{font-size:224.128000pt;}
.fs9{font-size:256.000000pt;}
.fs22{font-size:288.000000pt;}
.fs19{font-size:298.880000pt;}
.fs23{font-size:336.000000pt;}
.fs1e{font-size:341.120000pt;}
.fs3{font-size:352.000000pt;}
.fs12{font-size:357.120000pt;}
.fs1b{font-size:384.000000pt;}
.fs1a{font-size:400.128000pt;}
.fsc{font-size:426.880000pt;}
.fsb{font-size:432.128000pt;}
.fs1f{font-size:469.120000pt;}
.fs2{font-size:512.128000pt;}
.yf1{bottom:-422.146667pt;}
.yf0{bottom:-356.026667pt;}
.yef{bottom:-309.946667pt;}
.yee{bottom:-243.866667pt;}
.yed{bottom:-177.786667pt;}
.yec{bottom:-111.680000pt;}
.yeb{bottom:-44.160000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:16.000000pt;}
.y104{bottom:16.352000pt;}
.y9{bottom:17.312000pt;}
.y2f{bottom:18.880000pt;}
.y2{bottom:25.024000pt;}
.y81{bottom:25.632000pt;}
.y5{bottom:31.840000pt;}
.y14f{bottom:34.720000pt;}
.y85{bottom:34.848000pt;}
.y14c{bottom:36.480000pt;}
.y14e{bottom:36.640000pt;}
.y2a{bottom:38.720000pt;}
.y45{bottom:38.760000pt;}
.yd{bottom:43.904000pt;}
.y80{bottom:44.832000pt;}
.y8{bottom:46.112000pt;}
.y109{bottom:54.720000pt;}
.y114{bottom:54.746667pt;}
.y106{bottom:54.760000pt;}
.y131{bottom:55.584000pt;}
.y149{bottom:63.808000pt;}
.y7f{bottom:64.032000pt;}
.yea{bottom:74.080000pt;}
.ya1{bottom:75.456000pt;}
.y10c{bottom:83.520000pt;}
.y91{bottom:89.376000pt;}
.y142{bottom:94.592000pt;}
.yc5{bottom:100.480000pt;}
.yc{bottom:109.306667pt;}
.yc4{bottom:110.208000pt;}
.y146{bottom:110.720000pt;}
.yb{bottom:113.146667pt;}
.ya0{bottom:121.536000pt;}
.y140{bottom:123.168000pt;}
.yab{bottom:124.416000pt;}
.yb2{bottom:124.576000pt;}
.y18{bottom:128.192000pt;}
.y148{bottom:131.808000pt;}
.y28{bottom:133.088000pt;}
.ye5{bottom:136.160000pt;}
.ybb{bottom:139.200000pt;}
.y128{bottom:139.973333pt;}
.y1{bottom:147.066667pt;}
.y90{bottom:147.453333pt;}
.y143{bottom:149.914667pt;}
.y144{bottom:156.893333pt;}
.y9f{bottom:167.613333pt;}
.y13f{bottom:169.253333pt;}
.yc3{bottom:172.293333pt;}
.y50{bottom:175.066667pt;}
.y5e{bottom:176.293333pt;}
.y4a{bottom:178.266667pt;}
.y5c{bottom:179.173333pt;}
.ye9{bottom:182.240000pt;}
.y56{bottom:182.373333pt;}
.y103{bottom:183.453333pt;}
.yaa{bottom:186.493333pt;}
.yb1{bottom:186.693333pt;}
.y27{bottom:187.653333pt;}
.y4f{bottom:192.346667pt;}
.y5d{bottom:193.573333pt;}
.y49{bottom:195.546667pt;}
.y5b{bottom:196.453333pt;}
.y99{bottom:197.693333pt;}
.ye4{bottom:198.266667pt;}
.y17{bottom:198.746667pt;}
.y55{bottom:199.653333pt;}
.yba{bottom:201.280000pt;}
.y127{bottom:202.053333pt;}
.y74{bottom:205.786667pt;}
.y119{bottom:206.306667pt;}
.y130{bottom:206.586667pt;}
.y4e{bottom:209.626667pt;}
.y48{bottom:212.826667pt;}
.y5a{bottom:213.733333pt;}
.ydc{bottom:215.066667pt;}
.yfa{bottom:216.546667pt;}
.y54{bottom:216.933333pt;}
.y8f{bottom:218.053333pt;}
.yd4{bottom:219.586667pt;}
.y26{bottom:222.240000pt;}
.yce{bottom:224.866667pt;}
.y4d{bottom:226.906667pt;}
.y105{bottom:228.506667pt;}
.y102{bottom:229.573333pt;}
.y9e{bottom:229.733333pt;}
.y47{bottom:230.106667pt;}
.y59{bottom:231.013333pt;}
.y14d{bottom:231.066667pt;}
.ya9{bottom:232.573333pt;}
.yb0{bottom:232.773333pt;}
.y53{bottom:234.213333pt;}
.yc2{bottom:234.373333pt;}
.y138{bottom:235.360000pt;}
.y66{bottom:235.866667pt;}
.y118{bottom:238.306667pt;}
.y7e{bottom:240.346667pt;}
.y4c{bottom:244.186667pt;}
.ye8{bottom:244.346667pt;}
.y46{bottom:247.386667pt;}
.y58{bottom:248.293333pt;}
.y107{bottom:251.360000pt;}
.y52{bottom:251.493333pt;}
.y16{bottom:255.386667pt;}
.y25{bottom:256.800000pt;}
.y98{bottom:259.813333pt;}
.ye3{bottom:260.346667pt;}
.y4b{bottom:261.466667pt;}
.yb9{bottom:263.360000pt;}
.y126{bottom:264.160000pt;}
.y44{bottom:264.666667pt;}
.yd3{bottom:265.666667pt;}
.y12f{bottom:268.666667pt;}
.ycd{bottom:270.946667pt;}
.y73{bottom:271.866667pt;}
.ydb{bottom:277.146667pt;}
.y57{bottom:279.493333pt;}
.y8e{bottom:280.133333pt;}
.y51{bottom:282.693333pt;}
.y14b{bottom:284.506667pt;}
.y151{bottom:285.533333pt;}
.y24{bottom:291.360000pt;}
.y101{bottom:291.653333pt;}
.y9d{bottom:291.813333pt;}
.y93{bottom:292.800000pt;}
.y10f{bottom:293.186667pt;}
.ya8{bottom:294.653333pt;}
.yaf{bottom:294.853333pt;}
.y7d{bottom:294.906667pt;}
.yc1{bottom:296.480000pt;}
.y137{bottom:297.440000pt;}
.y7{bottom:300.640000pt;}
.y13e{bottom:301.440000pt;}
.y6c{bottom:305.946667pt;}
.ye7{bottom:306.426667pt;}
.y65{bottom:307.706667pt;}
.y125{bottom:310.240000pt;}
.y15{bottom:313.466667pt;}
.y110{bottom:315.973333pt;}
.y97{bottom:321.893333pt;}
.ye2{bottom:322.426667pt;}
.yb8{bottom:325.466667pt;}
.y23{bottom:325.920000pt;}
.y7c{bottom:329.466667pt;}
.y12e{bottom:330.746667pt;}
.yd2{bottom:331.746667pt;}
.ycc{bottom:337.026667pt;}
.y100{bottom:337.733333pt;}
.y9c{bottom:337.893333pt;}
.y72{bottom:337.946667pt;}
.yda{bottom:339.266667pt;}
.y120{bottom:340.800000pt;}
.y8d{bottom:342.213333pt;}
.y14a{bottom:343.706667pt;}
.y150{bottom:344.733333pt;}
.y6{bottom:346.720000pt;}
.ye6{bottom:352.506667pt;}
.y6b{bottom:353.466667pt;}
.ya7{bottom:356.773333pt;}
.yae{bottom:356.933333pt;}
.y136{bottom:359.520000pt;}
.yc0{bottom:359.840000pt;}
.y22{bottom:360.480000pt;}
.yf9{bottom:366.053333pt;}
.y13d{bottom:367.520000pt;}
.ye1{bottom:368.506667pt;}
.y124{bottom:373.600000pt;}
.yd1{bottom:377.853333pt;}
.y64{bottom:379.546667pt;}
.y96{bottom:383.973333pt;}
.y71{bottom:384.026667pt;}
.y14{bottom:384.066667pt;}
.y11f{bottom:386.880000pt;}
.y112{bottom:388.453333pt;}
.y12d{bottom:392.826667pt;}
.y21{bottom:395.040000pt;}
.yff{bottom:399.813333pt;}
.y9b{bottom:399.973333pt;}
.y6a{bottom:400.986667pt;}
.yd9{bottom:401.346667pt;}
.ycb{bottom:401.693333pt;}
.y8c{bottom:405.573333pt;}
.y13c{bottom:413.626667pt;}
.ye0{bottom:414.586667pt;}
.y7b{bottom:418.586667pt;}
.ya6{bottom:418.853333pt;}
.yad{bottom:419.040000pt;}
.y111{bottom:420.453333pt;}
.y135{bottom:421.626667pt;}
.y95{bottom:430.053333pt;}
.y63{bottom:431.426667pt;}
.y13{bottom:440.866667pt;}
.yf5{bottom:443.426667pt;}
.yd0{bottom:443.933333pt;}
.y9a{bottom:446.080000pt;}
.y69{bottom:448.506667pt;}
.y70{bottom:451.426667pt;}
.yca{bottom:452.733333pt;}
.y11e{bottom:452.986667pt;}
.y12c{bottom:454.946667pt;}
.yb7{bottom:457.626667pt;}
.yfe{bottom:461.920000pt;}
.yd8{bottom:463.426667pt;}
.y134{bottom:467.706667pt;}
.y113{bottom:472.066667pt;}
.y7a{bottom:473.186667pt;}
.y8b{bottom:476.160000pt;}
.ydf{bottom:477.986667pt;}
.y13b{bottom:479.706667pt;}
.ya5{bottom:482.213333pt;}
.yac{bottom:482.400000pt;}
.y87{bottom:486.533333pt;}
.y84{bottom:489.986667pt;}
.y123{bottom:490.106667pt;}
.y94{bottom:492.160000pt;}
.ybf{bottom:494.266667pt;}
.y115{bottom:494.880000pt;}
.y117{bottom:495.173333pt;}
.y12{bottom:497.506667pt;}
.y62{bottom:503.266667pt;}
.yc9{bottom:503.773333pt;}
.y1a{bottom:504.066667pt;}
.y92{bottom:504.573333pt;}
.y79{bottom:507.746667pt;}
.yf7{bottom:508.226667pt;}
.ycf{bottom:510.013333pt;}
.yf4{bottom:511.266667pt;}
.y10b{bottom:514.973333pt;}
.y20{bottom:515.040000pt;}
.y12b{bottom:517.026667pt;}
.y11d{bottom:519.066667pt;}
.yb6{bottom:519.706667pt;}
.y141{bottom:522.013333pt;}
.y6f{bottom:523.266667pt;}
.yfd{bottom:524.000000pt;}
.yd7{bottom:525.506667pt;}
.y116{bottom:527.173333pt;}
.y133{bottom:529.786667pt;}
.y10e{bottom:537.786667pt;}
.y8a{bottom:538.240000pt;}
.y13a{bottom:545.786667pt;}
.y83{bottom:554.013333pt;}
.y61{bottom:555.106667pt;}
.y11{bottom:555.613333pt;}
.yc8{bottom:556.093333pt;}
.y122{bottom:556.186667pt;}
.ybe{bottom:556.346667pt;}
.y86{bottom:558.213333pt;}
.yf3{bottom:563.106667pt;}
.y78{bottom:565.026667pt;}
.y11c{bottom:565.146667pt;}
.yb5{bottom:565.826667pt;}
.y10d{bottom:566.586667pt;}
.y4{bottom:568.986667pt;}
.y1f{bottom:569.600000pt;}
.y6e{bottom:575.106667pt;}
.ya4{bottom:576.826667pt;}
.y12a{bottom:579.106667pt;}
.yfc{bottom:586.080000pt;}
.yde{bottom:586.146667pt;}
.yd6{bottom:587.613333pt;}
.y108{bottom:588.733333pt;}
.y132{bottom:591.866667pt;}
.y89{bottom:601.600000pt;}
.y1e{bottom:604.160000pt;}
.y77{bottom:611.106667pt;}
.y10a{bottom:611.520000pt;}
.ybd{bottom:618.426667pt;}
.yc7{bottom:622.213333pt;}
.y121{bottom:622.266667pt;}
.y10{bottom:626.173333pt;}
.y60{bottom:626.946667pt;}
.yb4{bottom:627.906667pt;}
.ya3{bottom:628.666667pt;}
.yf2{bottom:630.946667pt;}
.y11b{bottom:631.266667pt;}
.yfb{bottom:632.160000pt;}
.ydd{bottom:632.226667pt;}
.y1d{bottom:638.746667pt;}
.y129{bottom:641.186667pt;}
.y6d{bottom:646.946667pt;}
.yd5{bottom:649.693333pt;}
.y76{bottom:657.213333pt;}
.yf8{bottom:657.760000pt;}
.y1c{bottom:673.306667pt;}
.yb3{bottom:673.986667pt;}
.ybc{bottom:681.786667pt;}
.yf{bottom:684.253333pt;}
.y3{bottom:685.186667pt;}
.y42{bottom:686.053333pt;}
.yc6{bottom:688.293333pt;}
.y11a{bottom:697.346667pt;}
.y5f{bottom:698.813333pt;}
.y139{bottom:701.413333pt;}
.y41{bottom:702.560000pt;}
.y75{bottom:703.293333pt;}
.y43{bottom:716.480000pt;}
.y3b{bottom:719.200000pt;}
.y40{bottom:733.760000pt;}
.y3a{bottom:735.680000pt;}
.y3f{bottom:751.040000pt;}
.y39{bottom:752.320000pt;}
.y33{bottom:764.293333pt;}
.y32{bottom:767.173333pt;}
.y3e{bottom:768.320000pt;}
.y38{bottom:768.800000pt;}
.y3d{bottom:771.200000pt;}
.y31{bottom:781.573333pt;}
.y30{bottom:784.453333pt;}
.y37{bottom:785.600000pt;}
.y3c{bottom:788.480000pt;}
.y2e{bottom:798.853333pt;}
.y2d{bottom:801.733333pt;}
.y36{bottom:805.760000pt;}
.y68{bottom:807.226667pt;}
.y2b{bottom:819.013333pt;}
.y35{bottom:823.040000pt;}
.y145{bottom:825.733333pt;}
.y29{bottom:836.293333pt;}
.yf6{bottom:837.026667pt;}
.y19{bottom:839.840000pt;}
.y1b{bottom:841.280000pt;}
.y88{bottom:842.080000pt;}
.ya2{bottom:843.266667pt;}
.ye{bottom:850.080000pt;}
.y34{bottom:854.240000pt;}
.y147{bottom:869.893333pt;}
.y67{bottom:892.986667pt;}
.y82{bottom:933.026667pt;}
.ya{bottom:955.653333pt;}
.ha{height:6.365625pt;}
.h19{height:17.440000pt;}
.h1a{height:20.320000pt;}
.h44{height:37.920000pt;}
.h45{height:38.080000pt;}
.h18{height:40.160000pt;}
.h21{height:40.192000pt;}
.h1d{height:55.650000pt;}
.h3a{height:56.160000pt;}
.h38{height:56.192000pt;}
.h1e{height:56.370000pt;}
.h20{height:56.487437pt;}
.h1f{height:57.968750pt;}
.h1c{height:58.718750pt;}
.h3d{height:78.095938pt;}
.h3b{height:84.960000pt;}
.h7{height:88.078125pt;}
.h8{height:88.195562pt;}
.h5{height:95.484375pt;}
.h1b{height:96.807812pt;}
.h16{height:97.502392pt;}
.h14{height:97.599895pt;}
.h39{height:98.060312pt;}
.h3c{height:98.177750pt;}
.h28{height:106.305937pt;}
.h40{height:112.160000pt;}
.h9{height:114.592000pt;}
.h15{height:117.437500pt;}
.h27{height:117.554937pt;}
.h13{height:117.562500pt;}
.h17{height:117.680062pt;}
.hb{height:131.193562pt;}
.h33{height:136.814687pt;}
.h34{height:136.932125pt;}
.h3e{height:151.360000pt;}
.h2f{height:154.776562pt;}
.h32{height:154.892500pt;}
.he{height:156.779063pt;}
.h26{height:156.896500pt;}
.h2e{height:156.945937pt;}
.h30{height:157.063500pt;}
.h23{height:161.476562pt;}
.h24{height:161.594000pt;}
.h36{height:169.962187pt;}
.h46{height:170.089500pt;}
.h1{height:172.478250pt;}
.h25{height:173.906250pt;}
.h2d{height:174.022188pt;}
.h6{height:174.968437pt;}
.hd{height:176.156250pt;}
.hf{height:176.273687pt;}
.h2{height:190.968750pt;}
.h35{height:196.593750pt;}
.h41{height:196.886250pt;}
.h2a{height:218.219062pt;}
.h29{height:218.350125pt;}
.h43{height:229.490437pt;}
.hc{height:262.125000pt;}
.h2b{height:270.714063pt;}
.h3f{height:294.890625pt;}
.h22{height:323.465625pt;}
.h42{height:344.039062pt;}
.h31{height:347.812500pt;}
.h4{height:360.421875pt;}
.h2c{height:362.420625pt;}
.h10{height:391.405000pt;}
.h37{height:424.910937pt;}
.h11{height:437.093437pt;}
.h12{height:442.467000pt;}
.h3{height:524.381062pt;}
.h0{height:1080.000000pt;}
.w17{width:4.160000pt;}
.w20{width:19.040000pt;}
.w18{width:23.680000pt;}
.w5{width:25.120000pt;}
.w7{width:25.760000pt;}
.w2a{width:27.520000pt;}
.w8{width:31.840000pt;}
.w32{width:33.440000pt;}
.w1b{width:36.320000pt;}
.w38{width:37.920000pt;}
.w16{width:42.880000pt;}
.w21{width:48.000000pt;}
.w30{width:60.640000pt;}
.w1e{width:61.920000pt;}
.w13{width:62.240000pt;}
.w9{width:68.000000pt;}
.w6{width:69.600000pt;}
.w1a{width:71.360000pt;}
.w22{width:71.840000pt;}
.w12{width:72.960000pt;}
.w3{width:74.560000pt;}
.w1d{width:78.240000pt;}
.wf{width:79.200000pt;}
.we{width:79.520000pt;}
.w1c{width:86.720000pt;}
.wc{width:88.800000pt;}
.w2d{width:89.920000pt;}
.w33{width:90.720000pt;}
.wb{width:93.280000pt;}
.w15{width:93.440000pt;}
.w4{width:96.960000pt;}
.wd{width:100.320000pt;}
.w25{width:103.200000pt;}
.w1f{width:103.520000pt;}
.wa{width:106.080000pt;}
.w19{width:107.840000pt;}
.w10{width:114.880000pt;}
.w14{width:117.600000pt;}
.w11{width:120.800000pt;}
.w34{width:127.360000pt;}
.w23{width:129.280000pt;}
.w2f{width:137.626667pt;}
.w2c{width:140.160000pt;}
.w26{width:140.960000pt;}
.w28{width:153.440000pt;}
.w2e{width:157.466667pt;}
.w29{width:176.000000pt;}
.w24{width:185.466667pt;}
.w2b{width:186.400000pt;}
.w31{width:190.560000pt;}
.w27{width:190.720000pt;}
.w2{width:220.826667pt;}
.w36{width:605.466667pt;}
.w35{width:607.746667pt;}
.w37{width:1705.760000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.xa{left:-8.320057pt;}
.x0{left:0.000000pt;}
.x3c{left:23.135971pt;}
.x28{left:30.880000pt;}
.x11{left:32.960000pt;}
.x33{left:34.911971pt;}
.x24{left:39.583971pt;}
.x29{left:42.880000pt;}
.x12{left:44.960000pt;}
.x52{left:99.359971pt;}
.x4f{left:106.463971pt;}
.x50{left:111.455971pt;}
.x2{left:113.407971pt;}
.xc{left:123.007971pt;}
.x51{left:141.826638pt;}
.x5e{left:146.626638pt;}
.x45{left:160.959971pt;}
.x3a{left:170.946638pt;}
.x3f{left:173.573305pt;}
.xd{left:195.013305pt;}
.x13{left:225.146667pt;}
.x25{left:231.706638pt;}
.x14{left:237.146667pt;}
.x41{left:242.946638pt;}
.x4{left:251.426638pt;}
.x62{left:278.426638pt;}
.x35{left:305.853305pt;}
.x34{left:309.853305pt;}
.x2a{left:317.786667pt;}
.x63{left:328.666667pt;}
.x10{left:352.573305pt;}
.xe{left:395.813305pt;}
.x48{left:399.453305pt;}
.x15{left:416.186667pt;}
.x64{left:425.466667pt;}
.x16{left:428.186667pt;}
.x57{left:516.959971pt;}
.x39{left:518.399971pt;}
.x5f{left:549.506638pt;}
.x3{left:570.493305pt;}
.x2b{left:583.906667pt;}
.x53{left:594.053305pt;}
.x2c{left:595.906667pt;}
.x26{left:607.426638pt;}
.x8{left:617.573305pt;}
.x27{left:619.453305pt;}
.x3e{left:624.066638pt;}
.x9{left:625.093305pt;}
.x40{left:635.839971pt;}
.x5c{left:657.346667pt;}
.x60{left:686.813305pt;}
.xf{left:690.653305pt;}
.x6{left:700.639971pt;}
.x7{left:729.119971pt;}
.x5d{left:738.906638pt;}
.x61{left:778.746638pt;}
.x17{left:798.466667pt;}
.x18{left:810.466667pt;}
.x58{left:832.866638pt;}
.x36{left:858.973305pt;}
.x2e{left:870.946667pt;}
.x59{left:913.533305pt;}
.x42{left:936.293305pt;}
.x2d{left:954.813333pt;}
.x5a{left:961.533305pt;}
.x49{left:969.693305pt;}
.x19{left:989.693333pt;}
.x4b{left:995.013305pt;}
.x1a{left:1001.693333pt;}
.x43{left:1008.293305pt;}
.x5b{left:1009.626638pt;}
.x4a{left:1017.693305pt;}
.x3d{left:1020.293305pt;}
.x46{left:1032.479971pt;}
.x4c{left:1043.013305pt;}
.x44{left:1056.293305pt;}
.x47{left:1080.479971pt;}
.x2f{left:1133.853333pt;}
.x30{left:1145.853333pt;}
.x1b{left:1180.733333pt;}
.x1c{left:1192.733333pt;}
.x55{left:1206.493333pt;}
.x56{left:1222.586638pt;}
.x65{left:1267.613305pt;}
.x1d{left:1306.173333pt;}
.x1e{left:1371.973333pt;}
.x1f{left:1383.973333pt;}
.x31{left:1408.773333pt;}
.x32{left:1420.773333pt;}
.x1{left:1429.986638pt;}
.x54{left:1532.346638pt;}
.x20{left:1563.173333pt;}
.x21{left:1575.173333pt;}
.x37{left:1683.839971pt;}
.x5{left:1690.906638pt;}
.x38{left:1695.839971pt;}
.x22{left:1754.240000pt;}
.x23{left:1766.240000pt;}
.x3b{left:1802.786638pt;}
.xb{left:1835.266638pt;}
.x4d{left:3176.639971pt;}
.x4e{left:3224.639971pt;}
}




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