
    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_b50a843cb8704e977d74ce96.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.313477;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_c6e9ffeb98007a60d84c87a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_221e5e6ce4c61e376b7c5577.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690918;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_86a7c7dcc05d705f7b439f31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfa2f88e3f21df9f78c6a45e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_cab583783ff2941df0c7492a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cc61581e5b9ef7e92512001a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e70de8f07d5ab449a6fcb8db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_6b7a6b808327877deda0c8d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aa0d277860567bfe0860f49b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c632f519139dabc921f212b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_9e102bd6ffc9b728dad99a62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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_459c053dbe167cbe62603cae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_3e9bb9c85d111f76de80c74b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_b8000850fdcee32bccefb2ff.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259086,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261844,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.267467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267467,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-71.280000px;}
.v6{vertical-align:-68.400000px;}
.v5{vertical-align:-46.800000px;}
.v4{vertical-align:-24.000000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.540000px;}
.ls1b{letter-spacing:-2.854651px;}
.ls25{letter-spacing:-1.609517px;}
.ls1a{letter-spacing:-1.061368px;}
.ls6{letter-spacing:-0.972000px;}
.ls1c{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.269400px;}
.ls1d{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053400px;}
.ls5{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.045600px;}
.ls26{letter-spacing:0.053400px;}
.ls14{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.738000px;}
.ls19{letter-spacing:0.775936px;}
.ls11{letter-spacing:0.926640px;}
.ls16{letter-spacing:1.620000px;}
.ls15{letter-spacing:1.932234px;}
.ls23{letter-spacing:8.100000px;}
.ls1{letter-spacing:9.306720px;}
.ls13{letter-spacing:10.356480px;}
.ls18{letter-spacing:27.306720px;}
.ls10{letter-spacing:30.186720px;}
.ls24{letter-spacing:36.389280px;}
.ls20{letter-spacing:37.109280px;}
.ls0{letter-spacing:45.684000px;}
.ls1f{letter-spacing:206.100000px;}
.ls17{letter-spacing:305.436000px;}
.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;}
}
.ws1f{word-spacing:-28.288570px;}
.ws18{word-spacing:-28.237786px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.120000px;}
.ws26{word-spacing:-14.993400px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886600px;}
.wsb{word-spacing:-14.833200px;}
.ws1c{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.238000px;}
.ws3{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.608000px;}
.ws11{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.528000px;}
.ws27{word-spacing:-12.420000px;}
.ws28{word-spacing:-12.241200px;}
.ws29{word-spacing:-12.105600px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.790600px;}
.wsd{word-spacing:-9.720000px;}
.wse{word-spacing:-8.280000px;}
.ws16{word-spacing:-1.983669px;}
.ws15{word-spacing:-0.827371px;}
.ws24{word-spacing:-0.063836px;}
.ws19{word-spacing:-0.060248px;}
.ws13{word-spacing:-0.060244px;}
.ws22{word-spacing:-0.060046px;}
.ws0{word-spacing:-0.059760px;}
.ws20{word-spacing:-0.059632px;}
.ws1d{word-spacing:-0.051527px;}
.ws17{word-spacing:-0.051435px;}
.ws21{word-spacing:-0.042087px;}
.ws1a{word-spacing:-0.041968px;}
.ws1b{word-spacing:-0.041964px;}
.ws1e{word-spacing:-0.035993px;}
.ws14{word-spacing:-0.035979px;}
.ws10{word-spacing:0.000000px;}
.ws23{word-spacing:1.545681px;}
.ws25{word-spacing:80.596715px;}
._34{margin-left:-431.082585px;}
._2f{margin-left:-371.372888px;}
._26{margin-left:-369.071862px;}
._27{margin-left:-368.057566px;}
._29{margin-left:-317.616416px;}
._32{margin-left:-315.974691px;}
._35{margin-left:-310.931189px;}
._37{margin-left:-294.230229px;}
._39{margin-left:-293.123036px;}
._2e{margin-left:-252.687740px;}
._28{margin-left:-244.934353px;}
._31{margin-left:-222.241928px;}
._30{margin-left:-194.562755px;}
._38{margin-left:-146.389160px;}
._33{margin-left:-139.530231px;}
._36{margin-left:-136.270225px;}
._40{margin-left:-115.053196px;}
._3e{margin-left:-75.711659px;}
._3f{margin-left:-46.267411px;}
._22{margin-left:-19.008000px;}
._42{margin-left:-13.606800px;}
._19{margin-left:-10.932840px;}
._3a{margin-left:-9.920160px;}
._21{margin-left:-7.600320px;}
._20{margin-left:-5.192640px;}
._1f{margin-left:-3.463200px;}
._1c{margin-left:-2.047680px;}
._1{margin-left:-1.000800px;}
._3{width:1.648800px;}
._5{width:2.995200px;}
._b{width:3.996000px;}
._9{width:5.022000px;}
._a{width:6.181200px;}
._0{width:7.960800px;}
._d{width:9.126000px;}
._13{width:10.756800px;}
._8{width:12.396000px;}
._12{width:13.467360px;}
._4{width:14.634000px;}
._2{width:16.200000px;}
._6{width:18.198000px;}
._7{width:19.278000px;}
._c{width:20.516400px;}
._23{width:22.365360px;}
._24{width:23.873760px;}
._1b{width:24.964560px;}
._1a{width:26.055360px;}
._2d{width:27.146880px;}
._17{width:28.176480px;}
._18{width:29.342160px;}
._15{width:30.417840px;}
._14{width:31.493520px;}
._16{width:32.808240px;}
._11{width:33.958800px;}
._10{width:35.123760px;}
._25{width:36.812160px;}
._3b{width:38.067120px;}
._1d{width:39.680640px;}
._1e{width:41.271120px;}
._3d{width:42.744240px;}
._41{width:44.016480px;}
._2b{width:45.349920px;}
._2a{width:46.706400px;}
._3c{width:48.047040px;}
._f{width:58.294560px;}
._e{width:60.254160px;}
._2c{width:62.195040px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(93,99,104);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.760000px;}
.fs6{font-size:33.120000px;}
.fse{font-size:35.979105px;}
.fs18{font-size:35.993379px;}
.fs5{font-size:38.880000px;}
.fsf{font-size:41.825847px;}
.fs15{font-size:41.963934px;}
.fs13{font-size:41.967741px;}
.fs19{font-size:42.086765px;}
.fsa{font-size:42.098583px;}
.fs11{font-size:42.101303px;}
.fs3{font-size:48.240000px;}
.fsd{font-size:51.434947px;}
.fs17{font-size:51.527449px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:59.631780px;}
.fs0{font-size:59.760000px;}
.fs10{font-size:59.833913px;}
.fs14{font-size:59.975807px;}
.fs1a{font-size:60.046129px;}
.fs16{font-size:60.112248px;}
.fsb{font-size:60.243781px;}
.fs12{font-size:60.247673px;}
.fs8{font-size:60.480000px;}
.fs1b{font-size:63.835903px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y144{bottom:3.937125px;}
.y126{bottom:4.429609px;}
.yd4{bottom:5.186753px;}
.yb0{bottom:5.365245px;}
.ycd{bottom:6.644050px;}
.yc3{bottom:6.679524px;}
.ya5{bottom:6.713235px;}
.yc9{bottom:6.713669px;}
.ya8{bottom:7.401791px;}
.yb9{bottom:8.571561px;}
.yd5{bottom:8.952565px;}
.y116{bottom:9.589227px;}
.yce{bottom:10.410062px;}
.yc4{bottom:10.445678px;}
.ya6{bottom:10.478401px;}
.yca{bottom:10.479078px;}
.y125{bottom:11.214564px;}
.yaf{bottom:14.381449px;}
.y11a{bottom:15.507022px;}
.yd3{bottom:15.701998px;}
.yd0{bottom:17.160675px;}
.yc2{bottom:17.196149px;}
.ycc{bottom:17.302569px;}
.yae{bottom:20.032345px;}
.yb2{bottom:27.048737px;}
.yba{bottom:30.698934px;}
.y11c{bottom:30.983710px;}
.y117{bottom:34.211759px;}
.yb1{bottom:36.635101px;}
.y11b{bottom:40.034634px;}
.y54{bottom:41.847000px;}
.y120{bottom:42.439872px;}
.y119{bottom:45.667921px;}
.yb4{bottom:52.096775px;}
.y11e{bottom:54.022425px;}
.y2{bottom:54.540000px;}
.ybb{bottom:55.334915px;}
.y118{bottom:57.250474px;}
.yb3{bottom:61.144295px;}
.y53{bottom:61.258500px;}
.y11d{bottom:63.041751px;}
.y11f{bottom:63.169407px;}
.yb8{bottom:63.557051px;}
.ybd{bottom:66.763494px;}
.yb6{bottom:73.779886px;}
.yb7{bottom:74.223641px;}
.ybc{bottom:77.461781px;}
.yb5{bottom:83.366251px;}
.y9e{bottom:89.640000px;}
.y45{bottom:96.300000px;}
.y10b{bottom:98.640000px;}
.y7f{bottom:102.780000px;}
.y2a{bottom:103.140000px;}
.y145{bottom:104.220000px;}
.yf1{bottom:106.380000px;}
.y9d{bottom:108.180000px;}
.y44{bottom:113.940000px;}
.y10a{bottom:117.180000px;}
.y143{bottom:119.219994px;}
.y7e{bottom:121.320000px;}
.y29{bottom:121.680000px;}
.y142{bottom:123.660000px;}
.yf0{bottom:124.920000px;}
.y9c{bottom:126.720000px;}
.y174{bottom:130.500000px;}
.y43{bottom:131.580000px;}
.y109{bottom:135.720000px;}
.y7d{bottom:139.860000px;}
.y28{bottom:140.220000px;}
.y141{bottom:142.200000px;}
.yef{bottom:143.460000px;}
.y173{bottom:144.720000px;}
.y9b{bottom:145.260000px;}
.y42{bottom:149.220000px;}
.y108{bottom:154.260000px;}
.y7c{bottom:158.400000px;}
.y27{bottom:158.760000px;}
.y172{bottom:158.940000px;}
.y140{bottom:160.740000px;}
.yee{bottom:162.000000px;}
.y9a{bottom:163.800000px;}
.y41{bottom:166.860000px;}
.y107{bottom:172.800000px;}
.y171{bottom:173.160000px;}
.y7b{bottom:176.940000px;}
.y26{bottom:177.300000px;}
.y13f{bottom:179.280000px;}
.yed{bottom:180.540000px;}
.y99{bottom:182.340000px;}
.y40{bottom:184.500000px;}
.y170{bottom:187.380000px;}
.y106{bottom:191.340000px;}
.y7a{bottom:195.480000px;}
.y25{bottom:195.840000px;}
.y13e{bottom:197.820000px;}
.yec{bottom:199.080000px;}
.y98{bottom:200.880000px;}
.y16f{bottom:201.600000px;}
.y3f{bottom:202.140000px;}
.y105{bottom:209.880000px;}
.y79{bottom:214.020000px;}
.y24{bottom:214.380000px;}
.y16e{bottom:215.820000px;}
.y13d{bottom:216.360000px;}
.yeb{bottom:217.620000px;}
.y97{bottom:219.420000px;}
.y3e{bottom:219.780000px;}
.y104{bottom:228.420000px;}
.y16d{bottom:230.070000px;}
.y78{bottom:232.590000px;}
.y23{bottom:232.950000px;}
.y13c{bottom:234.930000px;}
.yea{bottom:236.190000px;}
.y3d{bottom:237.450000px;}
.y96{bottom:237.990000px;}
.y16c{bottom:244.290000px;}
.y103{bottom:246.990000px;}
.y77{bottom:251.130000px;}
.y22{bottom:251.490000px;}
.y13b{bottom:253.470000px;}
.ye9{bottom:254.730000px;}
.y3c{bottom:255.090000px;}
.y95{bottom:256.530000px;}
.y16b{bottom:258.510000px;}
.y102{bottom:265.530000px;}
.y76{bottom:269.670000px;}
.y21{bottom:270.030000px;}
.y13a{bottom:272.010000px;}
.y3b{bottom:272.370000px;}
.y16a{bottom:272.730000px;}
.ye8{bottom:273.270000px;}
.y94{bottom:275.070000px;}
.y101{bottom:283.170000px;}
.y169{bottom:286.950000px;}
.y3a{bottom:288.210000px;}
.y20{bottom:288.570000px;}
.y139{bottom:290.550000px;}
.ye7{bottom:291.810000px;}
.y93{bottom:293.610000px;}
.y100{bottom:300.450000px;}
.y168{bottom:301.170000px;}
.y39{bottom:304.050000px;}
.y75{bottom:306.750000px;}
.y1f{bottom:307.110000px;}
.y138{bottom:309.090000px;}
.ye6{bottom:310.350000px;}
.y92{bottom:312.150000px;}
.y167{bottom:315.390000px;}
.yff{bottom:316.290000px;}
.y38{bottom:316.650000px;}
.y74{bottom:325.290000px;}
.y1e{bottom:325.650000px;}
.y137{bottom:327.630000px;}
.y166{bottom:329.610000px;}
.yfe{bottom:329.790000px;}
.y91{bottom:330.690000px;}
.y73{bottom:343.830000px;}
.y1d{bottom:344.190000px;}
.ye5{bottom:345.630000px;}
.y136{bottom:346.170000px;}
.y90{bottom:349.230000px;}
.y165{bottom:358.050000px;}
.y72{bottom:362.370000px;}
.y1c{bottom:362.730000px;}
.y135{bottom:364.710000px;}
.y8f{bottom:367.770000px;}
.y164{bottom:372.270000px;}
.y71{bottom:380.910000px;}
.y1b{bottom:381.270000px;}
.y134{bottom:383.250000px;}
.y8e{bottom:386.310000px;}
.y163{bottom:386.490000px;}
.ye4{bottom:387.210000px;}
.y70{bottom:399.450000px;}
.y1a{bottom:399.810000px;}
.y162{bottom:400.710000px;}
.y133{bottom:401.790000px;}
.ye3{bottom:404.850000px;}
.y8d{bottom:409.890000px;}
.y161{bottom:414.930000px;}
.y6f{bottom:417.990000px;}
.y19{bottom:418.350000px;}
.y132{bottom:420.330000px;}
.ye2{bottom:422.490000px;}
.y160{bottom:429.150000px;}
.y6e{bottom:436.530000px;}
.y18{bottom:436.890000px;}
.y131{bottom:438.870000px;}
.ye1{bottom:440.130000px;}
.y15f{bottom:443.370000px;}
.y8c{bottom:445.170000px;}
.y6d{bottom:455.070000px;}
.y17{bottom:455.430000px;}
.y130{bottom:457.410000px;}
.y15e{bottom:457.590000px;}
.ye0{bottom:457.770000px;}
.y8b{bottom:461.055000px;}
.y15d{bottom:471.855000px;}
.y6c{bottom:473.655000px;}
.y16{bottom:474.015000px;}
.y4e{bottom:475.455000px;}
.y12f{bottom:475.995000px;}
.y8a{bottom:476.895000px;}
.y15c{bottom:486.075000px;}
.y6b{bottom:492.195000px;}
.y15{bottom:492.555000px;}
.y89{bottom:492.735000px;}
.ydf{bottom:493.095000px;}
.y12e{bottom:494.535000px;}
.y15b{bottom:500.295000px;}
.y88{bottom:508.575000px;}
.y6a{bottom:510.735000px;}
.y12d{bottom:513.075000px;}
.y15a{bottom:514.515000px;}
.y14{bottom:516.135000px;}
.y87{bottom:524.415000px;}
.y159{bottom:528.735000px;}
.y69{bottom:529.275000px;}
.yde{bottom:529.815000px;}
.y12c{bottom:531.615000px;}
.y86{bottom:540.255000px;}
.y158{bottom:542.955000px;}
.y68{bottom:547.815000px;}
.y12b{bottom:550.155000px;}
.ydd{bottom:551.055000px;}
.y13{bottom:551.415000px;}
.y85{bottom:553.755000px;}
.y157{bottom:563.835000px;}
.y67{bottom:566.355000px;}
.y37{bottom:568.155000px;}
.y12a{bottom:568.695000px;}
.ydc{bottom:569.595000px;}
.yfd{bottom:582.015000px;}
.y66{bottom:584.895000px;}
.y12{bottom:585.075000px;}
.y36{bottom:586.695000px;}
.y129{bottom:587.235000px;}
.ydb{bottom:588.135000px;}
.yfc{bottom:599.295000px;}
.y156{bottom:600.375000px;}
.y11{bottom:602.355000px;}
.y65{bottom:603.435000px;}
.y35{bottom:605.235000px;}
.y128{bottom:605.775000px;}
.yda{bottom:606.675000px;}
.yfb{bottom:615.135000px;}
.y10{bottom:618.195000px;}
.y155{bottom:618.915000px;}
.y127{bottom:620.745003px;}
.y64{bottom:621.975000px;}
.y34{bottom:623.775000px;}
.yd9{bottom:625.215000px;}
.yfa{bottom:628.635000px;}
.yf{bottom:634.035000px;}
.y154{bottom:637.455000px;}
.y63{bottom:640.515000px;}
.y33{bottom:642.315000px;}
.yd8{bottom:643.755000px;}
.y123{bottom:644.144989px;}
.y124{bottom:647.219994px;}
.ye{bottom:649.875000px;}
.y122{bottom:651.675000px;}
.y153{bottom:655.995000px;}
.y62{bottom:659.055000px;}
.y32{bottom:660.855000px;}
.yd7{bottom:662.295000px;}
.yd{bottom:665.715000px;}
.y115{bottom:670.620003px;}
.y152{bottom:674.535000px;}
.y61{bottom:677.595000px;}
.y31{bottom:679.395000px;}
.yd6{bottom:680.835000px;}
.yc{bottom:681.555000px;}
.y151{bottom:693.105000px;}
.yd2{bottom:695.820007px;}
.y60{bottom:696.165000px;}
.yb{bottom:697.425000px;}
.y30{bottom:697.965000px;}
.yd1{bottom:704.805000px;}
.y121{bottom:709.665000px;}
.y150{bottom:711.645000px;}
.ya{bottom:713.265000px;}
.y5f{bottom:714.705000px;}
.y2f{bottom:716.505000px;}
.ycb{bottom:723.719994px;}
.y9{bottom:729.105000px;}
.y14f{bottom:730.185000px;}
.y5e{bottom:733.245000px;}
.ycf{bottom:734.145000px;}
.y2e{bottom:740.085000px;}
.y8{bottom:744.945000px;}
.y114{bottom:748.545000px;}
.y14e{bottom:748.725000px;}
.y5d{bottom:751.785000px;}
.yc8{bottom:753.044998px;}
.y7{bottom:760.785000px;}
.yc7{bottom:763.485000px;}
.y113{bottom:767.085000px;}
.y14d{bottom:767.265000px;}
.y5c{bottom:770.325000px;}
.y6{bottom:776.625000px;}
.yc6{bottom:779.519989px;}
.y112{bottom:785.625000px;}
.y14c{bottom:785.805000px;}
.yc5{bottom:787.065000px;}
.y5b{bottom:788.865000px;}
.y5{bottom:792.465000px;}
.y2d{bottom:795.165000px;}
.yc1{bottom:802.019989px;}
.y111{bottom:804.165000px;}
.y14b{bottom:804.345000px;}
.yc0{bottom:804.870003px;}
.y84{bottom:805.065000px;}
.y5a{bottom:806.145000px;}
.y4{bottom:808.305000px;}
.ybf{bottom:812.445000px;}
.y2c{bottom:813.705000px;}
.y59{bottom:821.985000px;}
.y83{bottom:822.345000px;}
.y110{bottom:822.705000px;}
.y14a{bottom:822.885000px;}
.y3{bottom:829.365000px;}
.yad{bottom:830.445007px;}
.y2b{bottom:832.245000px;}
.y58{bottom:835.485000px;}
.y82{bottom:838.185000px;}
.y10f{bottom:841.245000px;}
.y149{bottom:841.425000px;}
.y81{bottom:851.685000px;}
.y10e{bottom:858.525000px;}
.y148{bottom:859.965000px;}
.y4d{bottom:864.285000px;}
.y10d{bottom:874.365000px;}
.y147{bottom:878.505000px;}
.yf9{bottom:880.305000px;}
.ybe{bottom:881.385000px;}
.y4c{bottom:884.265000px;}
.y10c{bottom:887.865000px;}
.yf8{bottom:898.845000px;}
.y146{bottom:902.085000px;}
.y4b{bottom:906.585000px;}
.y4a{bottom:915.945000px;}
.yf7{bottom:917.385000px;}
.yac{bottom:928.050000px;}
.y49{bottom:934.170000px;}
.yf6{bottom:935.970000px;}
.yab{bottom:946.590000px;}
.yf5{bottom:954.510000px;}
.yaa{bottom:965.130000px;}
.yf4{bottom:973.050000px;}
.ya9{bottom:983.670000px;}
.yf3{bottom:991.590000px;}
.y48{bottom:995.370000px;}
.ya4{bottom:998.519989px;}
.ya7{bottom:1001.445007px;}
.ya3{bottom:1009.050000px;}
.yf2{bottom:1010.130000px;}
.ya2{bottom:1028.670000px;}
.y47{bottom:1037.310000px;}
.ya1{bottom:1047.210000px;}
.ya0{bottom:1065.750000px;}
.y46{bottom:1079.250000px;}
.y9f{bottom:1084.290000px;}
.y57{bottom:1086.090000px;}
.y80{bottom:1102.830000px;}
.y56{bottom:1103.730000px;}
.y55{bottom:1121.370000px;}
.y52{bottom:1137.300000px;}
.y51{bottom:1162.675500px;}
.y50{bottom:1179.423000px;}
.y4f{bottom:1197.423000px;}
.y1{bottom:1198.080000px;}
.h2c{height:18.601059px;}
.h12{height:20.850583px;}
.h29{height:22.499046px;}
.h16{height:24.384277px;}
.hf{height:25.573959px;}
.h1c{height:25.575611px;}
.h21{height:27.000002px;}
.h19{height:28.422812px;}
.ha{height:33.346406px;}
.h18{height:34.834117px;}
.h17{height:34.859232px;}
.h28{height:34.896764px;}
.h27{height:36.274578px;}
.h1a{height:41.029358px;}
.h22{height:41.164816px;}
.h1f{height:41.168550px;}
.h2a{height:41.285308px;}
.h10{height:41.296901px;}
.h1d{height:41.299570px;}
.h30{height:47.321367px;}
.h2f{height:48.569766px;}
.h2e{height:49.583118px;}
.h15{height:51.836782px;}
.h26{height:51.930008px;}
.he{height:52.435898px;}
.h5{height:54.369141px;}
.h13{height:58.496214px;}
.h4{height:58.621992px;}
.h1b{height:58.694498px;}
.h20{height:58.833690px;}
.h2b{height:58.902672px;}
.h23{height:58.967532px;}
.h11{height:59.096561px;}
.h1e{height:59.100379px;}
.h24{height:59.614102px;}
.h2{height:60.168516px;}
.hb{height:60.226875px;}
.hd{height:60.893438px;}
.h6{height:61.423863px;}
.h2d{height:62.651448px;}
.h9{height:66.723750px;}
.h3{height:72.492188px;}
.h25{height:73.422318px;}
.h8{height:74.004654px;}
.h14{height:93.970715px;}
.h7{height:144.984375px;}
.hc{height:168.906797px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:13.500014px;}
.wa{width:23.925292px;}
.w5{width:27.000230px;}
.w6{width:32.924513px;}
.w2{width:34.575894px;}
.wb{width:67.501298px;}
.w8{width:67.502443px;}
.w7{width:71.997705px;}
.w4{width:224.090589px;}
.w9{width:304.727434px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:2.164578px;}
.x24{left:3.241463px;}
.x27{left:5.568835px;}
.x3d{left:16.342357px;}
.x48{left:24.689998px;}
.x23{left:27.408688px;}
.x43{left:29.607275px;}
.x38{left:33.677301px;}
.x5f{left:48.739752px;}
.x30{left:57.454911px;}
.x2f{left:65.954195px;}
.x35{left:67.195320px;}
.x2b{left:71.047395px;}
.x31{left:76.204307px;}
.x5a{left:80.293848px;}
.x1{left:85.140000px;}
.x15{left:87.934500px;}
.x52{left:92.790001px;}
.x2c{left:95.812553px;}
.x3{left:100.476000px;}
.x50{left:104.256000px;}
.xd{left:105.516000px;}
.x19{left:107.856000px;}
.x5{left:110.736000px;}
.xe{left:112.176000px;}
.x32{left:116.884917px;}
.xf{left:119.016000px;}
.x29{left:123.389992px;}
.x3a{left:126.240006px;}
.x2d{left:130.471031px;}
.x55{left:132.566195px;}
.x2a{left:136.179696px;}
.x3b{left:139.716000px;}
.x37{left:144.997544px;}
.x5d{left:150.690000px;}
.x33{left:154.032016px;}
.x44{left:157.170000px;}
.x56{left:169.290183px;}
.x53{left:170.527927px;}
.x2e{left:173.642810px;}
.x59{left:179.868427px;}
.x51{left:180.930000px;}
.x45{left:187.139992px;}
.x1a{left:194.430000px;}
.x4{left:205.230000px;}
.x36{left:214.610128px;}
.x41{left:219.165001px;}
.x58{left:223.546749px;}
.x42{left:252.030000px;}
.x46{left:259.050000px;}
.x5c{left:262.937628px;}
.x47{left:265.065010px;}
.x14{left:266.563500px;}
.x54{left:268.041727px;}
.x13{left:277.363500px;}
.x57{left:281.618628px;}
.x3c{left:282.839996px;}
.x3f{left:288.839996px;}
.x5b{left:294.748921px;}
.x40{left:302.295000px;}
.x3e{left:309.855000px;}
.x12{left:311.203500px;}
.x49{left:332.535000px;}
.x11{left:333.975000px;}
.x22{left:336.315010px;}
.x39{left:347.475000px;}
.x60{left:361.515000px;}
.x4a{left:364.214996px;}
.x25{left:370.875000px;}
.x10{left:397.875000px;}
.x26{left:401.865006px;}
.x5e{left:404.895000px;}
.x28{left:415.335000px;}
.x18{left:425.235000px;}
.x4b{left:431.715000px;}
.x4f{left:434.235000px;}
.x16{left:441.058500px;}
.x17{left:445.018500px;}
.x2{left:446.655000px;}
.x6{left:461.595000px;}
.x1f{left:462.855000px;}
.x1e{left:463.935000px;}
.xa{left:466.635000px;}
.x8{left:476.895000px;}
.x1b{left:479.415000px;}
.x4d{left:480.675000px;}
.x63{left:488.445000px;}
.x20{left:490.065000px;}
.x21{left:518.145000px;}
.x1c{left:519.765000px;}
.x7{left:535.065000px;}
.xb{left:538.845000px;}
.x4e{left:557.385000px;}
.x61{left:595.545000px;}
.x62{left:603.825000px;}
.xc{left:642.525000px;}
.x9{left:801.870000px;}
.x1d{left:804.930000px;}
.x4c{left:810.690000px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v6{vertical-align:-60.800000pt;}
.v5{vertical-align:-41.600000pt;}
.v4{vertical-align:-21.333333pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.480000pt;}
.ls1b{letter-spacing:-2.537467pt;}
.ls25{letter-spacing:-1.430681pt;}
.ls1a{letter-spacing:-0.943438pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls1c{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls1d{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.040533pt;}
.ls26{letter-spacing:0.047467pt;}
.ls14{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.656000pt;}
.ls19{letter-spacing:0.689721pt;}
.ls11{letter-spacing:0.823680pt;}
.ls16{letter-spacing:1.440000pt;}
.ls15{letter-spacing:1.717541pt;}
.ls23{letter-spacing:7.200000pt;}
.ls1{letter-spacing:8.272640pt;}
.ls13{letter-spacing:9.205760pt;}
.ls18{letter-spacing:24.272640pt;}
.ls10{letter-spacing:26.832640pt;}
.ls24{letter-spacing:32.346027pt;}
.ls20{letter-spacing:32.986027pt;}
.ls0{letter-spacing:40.608000pt;}
.ls1f{letter-spacing:183.200000pt;}
.ls17{letter-spacing:271.498667pt;}
.ws1f{word-spacing:-25.145395pt;}
.ws18{word-spacing:-25.100254pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.440000pt;}
.ws26{word-spacing:-13.327467pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232533pt;}
.wsb{word-spacing:-13.185067pt;}
.ws1c{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.656000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.096000pt;}
.ws11{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws1{word-spacing:-11.136000pt;}
.ws27{word-spacing:-11.040000pt;}
.ws28{word-spacing:-10.881067pt;}
.ws29{word-spacing:-10.760533pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.480533pt;}
.wsd{word-spacing:-8.640000pt;}
.wse{word-spacing:-7.360000pt;}
.ws16{word-spacing:-1.763261pt;}
.ws15{word-spacing:-0.735441pt;}
.ws24{word-spacing:-0.056743pt;}
.ws19{word-spacing:-0.053553pt;}
.ws13{word-spacing:-0.053550pt;}
.ws22{word-spacing:-0.053374pt;}
.ws0{word-spacing:-0.053120pt;}
.ws20{word-spacing:-0.053006pt;}
.ws1d{word-spacing:-0.045802pt;}
.ws17{word-spacing:-0.045720pt;}
.ws21{word-spacing:-0.037410pt;}
.ws1a{word-spacing:-0.037305pt;}
.ws1b{word-spacing:-0.037301pt;}
.ws1e{word-spacing:-0.031994pt;}
.ws14{word-spacing:-0.031981pt;}
.ws10{word-spacing:0.000000pt;}
.ws23{word-spacing:1.373938pt;}
.ws25{word-spacing:71.641524pt;}
._34{margin-left:-383.184520pt;}
._2f{margin-left:-330.109233pt;}
._26{margin-left:-328.063878pt;}
._27{margin-left:-327.162281pt;}
._29{margin-left:-282.325703pt;}
._32{margin-left:-280.866392pt;}
._35{margin-left:-276.383280pt;}
._37{margin-left:-261.537981pt;}
._39{margin-left:-260.553810pt;}
._2e{margin-left:-224.611324pt;}
._28{margin-left:-217.719425pt;}
._31{margin-left:-197.548380pt;}
._30{margin-left:-172.944671pt;}
._38{margin-left:-130.123698pt;}
._33{margin-left:-124.026872pt;}
._36{margin-left:-121.129088pt;}
._40{margin-left:-102.269507pt;}
._3e{margin-left:-67.299252pt;}
._3f{margin-left:-41.126587pt;}
._22{margin-left:-16.896000pt;}
._42{margin-left:-12.094933pt;}
._19{margin-left:-9.718080pt;}
._3a{margin-left:-8.817920pt;}
._21{margin-left:-6.755840pt;}
._20{margin-left:-4.615680pt;}
._1f{margin-left:-3.078400pt;}
._1c{margin-left:-1.820160pt;}
._1{margin-left:-0.889600pt;}
._3{width:1.465600pt;}
._5{width:2.662400pt;}
._b{width:3.552000pt;}
._9{width:4.464000pt;}
._a{width:5.494400pt;}
._0{width:7.076267pt;}
._d{width:8.112000pt;}
._13{width:9.561600pt;}
._8{width:11.018667pt;}
._12{width:11.970987pt;}
._4{width:13.008000pt;}
._2{width:14.400000pt;}
._6{width:16.176000pt;}
._7{width:17.136000pt;}
._c{width:18.236800pt;}
._23{width:19.880320pt;}
._24{width:21.221120pt;}
._1b{width:22.190720pt;}
._1a{width:23.160320pt;}
._2d{width:24.130560pt;}
._17{width:25.045760pt;}
._18{width:26.081920pt;}
._15{width:27.038080pt;}
._14{width:27.994240pt;}
._16{width:29.162880pt;}
._11{width:30.185600pt;}
._10{width:31.221120pt;}
._25{width:32.721920pt;}
._3b{width:33.837440pt;}
._1d{width:35.271680pt;}
._1e{width:36.685440pt;}
._3d{width:37.994880pt;}
._41{width:39.125760pt;}
._2b{width:40.311040pt;}
._2a{width:41.516800pt;}
._3c{width:42.708480pt;}
._f{width:51.817387pt;}
._e{width:53.559253pt;}
._2c{width:55.284480pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:29.440000pt;}
.fse{font-size:31.981427pt;}
.fs18{font-size:31.994115pt;}
.fs5{font-size:34.560000pt;}
.fsf{font-size:37.178530pt;}
.fs15{font-size:37.301274pt;}
.fs13{font-size:37.304658pt;}
.fs19{font-size:37.410458pt;}
.fsa{font-size:37.420963pt;}
.fs11{font-size:37.423381pt;}
.fs3{font-size:42.880000pt;}
.fsd{font-size:45.719953pt;}
.fs17{font-size:45.802177pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:53.006027pt;}
.fs0{font-size:53.120000pt;}
.fs10{font-size:53.185701pt;}
.fs14{font-size:53.311829pt;}
.fs1a{font-size:53.374337pt;}
.fs16{font-size:53.433109pt;}
.fsb{font-size:53.550028pt;}
.fs12{font-size:53.553488pt;}
.fs8{font-size:53.760000pt;}
.fs1b{font-size:56.743025pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:3.499667pt;}
.y126{bottom:3.937431pt;}
.yd4{bottom:4.610447pt;}
.yb0{bottom:4.769107pt;}
.ycd{bottom:5.905823pt;}
.yc3{bottom:5.937355pt;}
.ya5{bottom:5.967320pt;}
.yc9{bottom:5.967706pt;}
.ya8{bottom:6.579369pt;}
.yb9{bottom:7.619166pt;}
.yd5{bottom:7.957836pt;}
.y116{bottom:8.523757pt;}
.yce{bottom:9.253389pt;}
.yc4{bottom:9.285047pt;}
.ya6{bottom:9.314134pt;}
.yca{bottom:9.314736pt;}
.y125{bottom:9.968501pt;}
.yaf{bottom:12.783510pt;}
.y11a{bottom:13.784020pt;}
.yd3{bottom:13.957331pt;}
.yd0{bottom:15.253933pt;}
.yc2{bottom:15.285465pt;}
.ycc{bottom:15.380062pt;}
.yae{bottom:17.806529pt;}
.yb2{bottom:24.043322pt;}
.yba{bottom:27.287942pt;}
.y11c{bottom:27.541076pt;}
.y117{bottom:30.410453pt;}
.yb1{bottom:32.564535pt;}
.y11b{bottom:35.586341pt;}
.y54{bottom:37.197333pt;}
.y120{bottom:37.724330pt;}
.y119{bottom:40.593707pt;}
.yb4{bottom:46.308244pt;}
.y11e{bottom:48.019934pt;}
.y2{bottom:48.480000pt;}
.ybb{bottom:49.186591pt;}
.y118{bottom:50.889311pt;}
.yb3{bottom:54.350484pt;}
.y53{bottom:54.452000pt;}
.y11d{bottom:56.037112pt;}
.y11f{bottom:56.150584pt;}
.yb8{bottom:56.495157pt;}
.ybd{bottom:59.345328pt;}
.yb6{bottom:65.582121pt;}
.yb7{bottom:65.976570pt;}
.ybc{bottom:68.854916pt;}
.yb5{bottom:74.103334pt;}
.y9e{bottom:79.680000pt;}
.y45{bottom:85.600000pt;}
.y10b{bottom:87.680000pt;}
.y7f{bottom:91.360000pt;}
.y2a{bottom:91.680000pt;}
.y145{bottom:92.640000pt;}
.yf1{bottom:94.560000pt;}
.y9d{bottom:96.160000pt;}
.y44{bottom:101.280000pt;}
.y10a{bottom:104.160000pt;}
.y143{bottom:105.973328pt;}
.y7e{bottom:107.840000pt;}
.y29{bottom:108.160000pt;}
.y142{bottom:109.920000pt;}
.yf0{bottom:111.040000pt;}
.y9c{bottom:112.640000pt;}
.y174{bottom:116.000000pt;}
.y43{bottom:116.960000pt;}
.y109{bottom:120.640000pt;}
.y7d{bottom:124.320000pt;}
.y28{bottom:124.640000pt;}
.y141{bottom:126.400000pt;}
.yef{bottom:127.520000pt;}
.y173{bottom:128.640000pt;}
.y9b{bottom:129.120000pt;}
.y42{bottom:132.640000pt;}
.y108{bottom:137.120000pt;}
.y7c{bottom:140.800000pt;}
.y27{bottom:141.120000pt;}
.y172{bottom:141.280000pt;}
.y140{bottom:142.880000pt;}
.yee{bottom:144.000000pt;}
.y9a{bottom:145.600000pt;}
.y41{bottom:148.320000pt;}
.y107{bottom:153.600000pt;}
.y171{bottom:153.920000pt;}
.y7b{bottom:157.280000pt;}
.y26{bottom:157.600000pt;}
.y13f{bottom:159.360000pt;}
.yed{bottom:160.480000pt;}
.y99{bottom:162.080000pt;}
.y40{bottom:164.000000pt;}
.y170{bottom:166.560000pt;}
.y106{bottom:170.080000pt;}
.y7a{bottom:173.760000pt;}
.y25{bottom:174.080000pt;}
.y13e{bottom:175.840000pt;}
.yec{bottom:176.960000pt;}
.y98{bottom:178.560000pt;}
.y16f{bottom:179.200000pt;}
.y3f{bottom:179.680000pt;}
.y105{bottom:186.560000pt;}
.y79{bottom:190.240000pt;}
.y24{bottom:190.560000pt;}
.y16e{bottom:191.840000pt;}
.y13d{bottom:192.320000pt;}
.yeb{bottom:193.440000pt;}
.y97{bottom:195.040000pt;}
.y3e{bottom:195.360000pt;}
.y104{bottom:203.040000pt;}
.y16d{bottom:204.506667pt;}
.y78{bottom:206.746667pt;}
.y23{bottom:207.066667pt;}
.y13c{bottom:208.826667pt;}
.yea{bottom:209.946667pt;}
.y3d{bottom:211.066667pt;}
.y96{bottom:211.546667pt;}
.y16c{bottom:217.146667pt;}
.y103{bottom:219.546667pt;}
.y77{bottom:223.226667pt;}
.y22{bottom:223.546667pt;}
.y13b{bottom:225.306667pt;}
.ye9{bottom:226.426667pt;}
.y3c{bottom:226.746667pt;}
.y95{bottom:228.026667pt;}
.y16b{bottom:229.786667pt;}
.y102{bottom:236.026667pt;}
.y76{bottom:239.706667pt;}
.y21{bottom:240.026667pt;}
.y13a{bottom:241.786667pt;}
.y3b{bottom:242.106667pt;}
.y16a{bottom:242.426667pt;}
.ye8{bottom:242.906667pt;}
.y94{bottom:244.506667pt;}
.y101{bottom:251.706667pt;}
.y169{bottom:255.066667pt;}
.y3a{bottom:256.186667pt;}
.y20{bottom:256.506667pt;}
.y139{bottom:258.266667pt;}
.ye7{bottom:259.386667pt;}
.y93{bottom:260.986667pt;}
.y100{bottom:267.066667pt;}
.y168{bottom:267.706667pt;}
.y39{bottom:270.266667pt;}
.y75{bottom:272.666667pt;}
.y1f{bottom:272.986667pt;}
.y138{bottom:274.746667pt;}
.ye6{bottom:275.866667pt;}
.y92{bottom:277.466667pt;}
.y167{bottom:280.346667pt;}
.yff{bottom:281.146667pt;}
.y38{bottom:281.466667pt;}
.y74{bottom:289.146667pt;}
.y1e{bottom:289.466667pt;}
.y137{bottom:291.226667pt;}
.y166{bottom:292.986667pt;}
.yfe{bottom:293.146667pt;}
.y91{bottom:293.946667pt;}
.y73{bottom:305.626667pt;}
.y1d{bottom:305.946667pt;}
.ye5{bottom:307.226667pt;}
.y136{bottom:307.706667pt;}
.y90{bottom:310.426667pt;}
.y165{bottom:318.266667pt;}
.y72{bottom:322.106667pt;}
.y1c{bottom:322.426667pt;}
.y135{bottom:324.186667pt;}
.y8f{bottom:326.906667pt;}
.y164{bottom:330.906667pt;}
.y71{bottom:338.586667pt;}
.y1b{bottom:338.906667pt;}
.y134{bottom:340.666667pt;}
.y8e{bottom:343.386667pt;}
.y163{bottom:343.546667pt;}
.ye4{bottom:344.186667pt;}
.y70{bottom:355.066667pt;}
.y1a{bottom:355.386667pt;}
.y162{bottom:356.186667pt;}
.y133{bottom:357.146667pt;}
.ye3{bottom:359.866667pt;}
.y8d{bottom:364.346667pt;}
.y161{bottom:368.826667pt;}
.y6f{bottom:371.546667pt;}
.y19{bottom:371.866667pt;}
.y132{bottom:373.626667pt;}
.ye2{bottom:375.546667pt;}
.y160{bottom:381.466667pt;}
.y6e{bottom:388.026667pt;}
.y18{bottom:388.346667pt;}
.y131{bottom:390.106667pt;}
.ye1{bottom:391.226667pt;}
.y15f{bottom:394.106667pt;}
.y8c{bottom:395.706667pt;}
.y6d{bottom:404.506667pt;}
.y17{bottom:404.826667pt;}
.y130{bottom:406.586667pt;}
.y15e{bottom:406.746667pt;}
.ye0{bottom:406.906667pt;}
.y8b{bottom:409.826667pt;}
.y15d{bottom:419.426667pt;}
.y6c{bottom:421.026667pt;}
.y16{bottom:421.346667pt;}
.y4e{bottom:422.626667pt;}
.y12f{bottom:423.106667pt;}
.y8a{bottom:423.906667pt;}
.y15c{bottom:432.066667pt;}
.y6b{bottom:437.506667pt;}
.y15{bottom:437.826667pt;}
.y89{bottom:437.986667pt;}
.ydf{bottom:438.306667pt;}
.y12e{bottom:439.586667pt;}
.y15b{bottom:444.706667pt;}
.y88{bottom:452.066667pt;}
.y6a{bottom:453.986667pt;}
.y12d{bottom:456.066667pt;}
.y15a{bottom:457.346667pt;}
.y14{bottom:458.786667pt;}
.y87{bottom:466.146667pt;}
.y159{bottom:469.986667pt;}
.y69{bottom:470.466667pt;}
.yde{bottom:470.946667pt;}
.y12c{bottom:472.546667pt;}
.y86{bottom:480.226667pt;}
.y158{bottom:482.626667pt;}
.y68{bottom:486.946667pt;}
.y12b{bottom:489.026667pt;}
.ydd{bottom:489.826667pt;}
.y13{bottom:490.146667pt;}
.y85{bottom:492.226667pt;}
.y157{bottom:501.186667pt;}
.y67{bottom:503.426667pt;}
.y37{bottom:505.026667pt;}
.y12a{bottom:505.506667pt;}
.ydc{bottom:506.306667pt;}
.yfd{bottom:517.346667pt;}
.y66{bottom:519.906667pt;}
.y12{bottom:520.066667pt;}
.y36{bottom:521.506667pt;}
.y129{bottom:521.986667pt;}
.ydb{bottom:522.786667pt;}
.yfc{bottom:532.706667pt;}
.y156{bottom:533.666667pt;}
.y11{bottom:535.426667pt;}
.y65{bottom:536.386667pt;}
.y35{bottom:537.986667pt;}
.y128{bottom:538.466667pt;}
.yda{bottom:539.266667pt;}
.yfb{bottom:546.786667pt;}
.y10{bottom:549.506667pt;}
.y155{bottom:550.146667pt;}
.y127{bottom:551.773336pt;}
.y64{bottom:552.866667pt;}
.y34{bottom:554.466667pt;}
.yd9{bottom:555.746667pt;}
.yfa{bottom:558.786667pt;}
.yf{bottom:563.586667pt;}
.y154{bottom:566.626667pt;}
.y63{bottom:569.346667pt;}
.y33{bottom:570.946667pt;}
.yd8{bottom:572.226667pt;}
.y123{bottom:572.573324pt;}
.y124{bottom:575.306661pt;}
.ye{bottom:577.666667pt;}
.y122{bottom:579.266667pt;}
.y153{bottom:583.106667pt;}
.y62{bottom:585.826667pt;}
.y32{bottom:587.426667pt;}
.yd7{bottom:588.706667pt;}
.yd{bottom:591.746667pt;}
.y115{bottom:596.106669pt;}
.y152{bottom:599.586667pt;}
.y61{bottom:602.306667pt;}
.y31{bottom:603.906667pt;}
.yd6{bottom:605.186667pt;}
.yc{bottom:605.826667pt;}
.y151{bottom:616.093333pt;}
.yd2{bottom:618.506673pt;}
.y60{bottom:618.813333pt;}
.yb{bottom:619.933333pt;}
.y30{bottom:620.413333pt;}
.yd1{bottom:626.493333pt;}
.y121{bottom:630.813333pt;}
.y150{bottom:632.573333pt;}
.ya{bottom:634.013333pt;}
.y5f{bottom:635.293333pt;}
.y2f{bottom:636.893333pt;}
.ycb{bottom:643.306661pt;}
.y9{bottom:648.093333pt;}
.y14f{bottom:649.053333pt;}
.y5e{bottom:651.773333pt;}
.ycf{bottom:652.573333pt;}
.y2e{bottom:657.853333pt;}
.y8{bottom:662.173333pt;}
.y114{bottom:665.373333pt;}
.y14e{bottom:665.533333pt;}
.y5d{bottom:668.253333pt;}
.yc8{bottom:669.373332pt;}
.y7{bottom:676.253333pt;}
.yc7{bottom:678.653333pt;}
.y113{bottom:681.853333pt;}
.y14d{bottom:682.013333pt;}
.y5c{bottom:684.733333pt;}
.y6{bottom:690.333333pt;}
.yc6{bottom:692.906657pt;}
.y112{bottom:698.333333pt;}
.y14c{bottom:698.493333pt;}
.yc5{bottom:699.613333pt;}
.y5b{bottom:701.213333pt;}
.y5{bottom:704.413333pt;}
.y2d{bottom:706.813333pt;}
.yc1{bottom:712.906657pt;}
.y111{bottom:714.813333pt;}
.y14b{bottom:714.973333pt;}
.yc0{bottom:715.440002pt;}
.y84{bottom:715.613333pt;}
.y5a{bottom:716.573333pt;}
.y4{bottom:718.493333pt;}
.ybf{bottom:722.173333pt;}
.y2c{bottom:723.293333pt;}
.y59{bottom:730.653333pt;}
.y83{bottom:730.973333pt;}
.y110{bottom:731.293333pt;}
.y14a{bottom:731.453333pt;}
.y3{bottom:737.213333pt;}
.yad{bottom:738.173340pt;}
.y2b{bottom:739.773333pt;}
.y58{bottom:742.653333pt;}
.y82{bottom:745.053333pt;}
.y10f{bottom:747.773333pt;}
.y149{bottom:747.933333pt;}
.y81{bottom:757.053333pt;}
.y10e{bottom:763.133333pt;}
.y148{bottom:764.413333pt;}
.y4d{bottom:768.253333pt;}
.y10d{bottom:777.213333pt;}
.y147{bottom:780.893333pt;}
.yf9{bottom:782.493333pt;}
.ybe{bottom:783.453333pt;}
.y4c{bottom:786.013333pt;}
.y10c{bottom:789.213333pt;}
.yf8{bottom:798.973333pt;}
.y146{bottom:801.853333pt;}
.y4b{bottom:805.853333pt;}
.y4a{bottom:814.173333pt;}
.yf7{bottom:815.453333pt;}
.yac{bottom:824.933333pt;}
.y49{bottom:830.373333pt;}
.yf6{bottom:831.973333pt;}
.yab{bottom:841.413333pt;}
.yf5{bottom:848.453333pt;}
.yaa{bottom:857.893333pt;}
.yf4{bottom:864.933333pt;}
.ya9{bottom:874.373333pt;}
.yf3{bottom:881.413333pt;}
.y48{bottom:884.773333pt;}
.ya4{bottom:887.573324pt;}
.ya7{bottom:890.173340pt;}
.ya3{bottom:896.933333pt;}
.yf2{bottom:897.893333pt;}
.ya2{bottom:914.373333pt;}
.y47{bottom:922.053333pt;}
.ya1{bottom:930.853333pt;}
.ya0{bottom:947.333333pt;}
.y46{bottom:959.333333pt;}
.y9f{bottom:963.813333pt;}
.y57{bottom:965.413333pt;}
.y80{bottom:980.293333pt;}
.y56{bottom:981.093333pt;}
.y55{bottom:996.773333pt;}
.y52{bottom:1010.933333pt;}
.y51{bottom:1033.489333pt;}
.y50{bottom:1048.376000pt;}
.y4f{bottom:1064.376000pt;}
.y1{bottom:1064.960000pt;}
.h2c{height:16.534275pt;}
.h12{height:18.533852pt;}
.h29{height:19.999152pt;}
.h16{height:21.674912pt;}
.hf{height:22.732408pt;}
.h1c{height:22.733877pt;}
.h21{height:24.000002pt;}
.h19{height:25.264721pt;}
.ha{height:29.641250pt;}
.h18{height:30.963659pt;}
.h17{height:30.985984pt;}
.h28{height:31.019346pt;}
.h27{height:32.244069pt;}
.h1a{height:36.470541pt;}
.h22{height:36.590947pt;}
.h1f{height:36.594267pt;}
.h2a{height:36.698052pt;}
.h10{height:36.708357pt;}
.h1d{height:36.710729pt;}
.h30{height:42.063437pt;}
.h2f{height:43.173125pt;}
.h2e{height:44.073883pt;}
.h15{height:46.077140pt;}
.h26{height:46.160007pt;}
.he{height:46.609688pt;}
.h5{height:48.328125pt;}
.h13{height:51.996635pt;}
.h4{height:52.108438pt;}
.h1b{height:52.172887pt;}
.h20{height:52.296613pt;}
.h2b{height:52.357931pt;}
.h23{height:52.415584pt;}
.h11{height:52.530276pt;}
.h1e{height:52.533670pt;}
.h24{height:52.990313pt;}
.h2{height:53.483125pt;}
.hb{height:53.535000pt;}
.hd{height:54.127500pt;}
.h6{height:54.598989pt;}
.h2d{height:55.690176pt;}
.h9{height:59.310000pt;}
.h3{height:64.437500pt;}
.h25{height:65.264283pt;}
.h8{height:65.781915pt;}
.h14{height:83.529524pt;}
.h7{height:128.875000pt;}
.hc{height:150.139375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:12.000012pt;}
.wa{width:21.266926pt;}
.w5{width:24.000204pt;}
.w6{width:29.266234pt;}
.w2{width:30.734128pt;}
.wb{width:60.001153pt;}
.w8{width:60.002172pt;}
.w7{width:63.997960pt;}
.w4{width:199.191635pt;}
.w9{width:270.868830pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:1.924069pt;}
.x24{left:2.881300pt;}
.x27{left:4.950076pt;}
.x3d{left:14.526539pt;}
.x48{left:21.946665pt;}
.x23{left:24.363278pt;}
.x43{left:26.317578pt;}
.x38{left:29.935379pt;}
.x5f{left:43.324224pt;}
.x30{left:51.071032pt;}
.x2f{left:58.625951pt;}
.x35{left:59.729174pt;}
.x2b{left:63.153240pt;}
.x31{left:67.737162pt;}
.x5a{left:71.372309pt;}
.x1{left:75.680000pt;}
.x15{left:78.164000pt;}
.x52{left:82.480001pt;}
.x2c{left:85.166713pt;}
.x3{left:89.312000pt;}
.x50{left:92.672000pt;}
.xd{left:93.792000pt;}
.x19{left:95.872000pt;}
.x5{left:98.432000pt;}
.xe{left:99.712000pt;}
.x32{left:103.897704pt;}
.xf{left:105.792000pt;}
.x29{left:109.679993pt;}
.x3a{left:112.213338pt;}
.x2d{left:115.974249pt;}
.x55{left:117.836618pt;}
.x2a{left:121.048618pt;}
.x3b{left:124.192000pt;}
.x37{left:128.886706pt;}
.x5d{left:133.946667pt;}
.x33{left:136.917348pt;}
.x44{left:139.706667pt;}
.x56{left:150.480163pt;}
.x53{left:151.580380pt;}
.x2e{left:154.349165pt;}
.x59{left:159.883046pt;}
.x51{left:160.826667pt;}
.x45{left:166.346659pt;}
.x1a{left:172.826667pt;}
.x4{left:182.426667pt;}
.x36{left:190.764558pt;}
.x41{left:194.813334pt;}
.x58{left:198.708221pt;}
.x42{left:224.026667pt;}
.x46{left:230.266667pt;}
.x5c{left:233.722336pt;}
.x47{left:235.613342pt;}
.x14{left:236.945333pt;}
.x54{left:238.259313pt;}
.x13{left:246.545333pt;}
.x57{left:250.327670pt;}
.x3c{left:251.413330pt;}
.x3f{left:256.746663pt;}
.x5b{left:261.999041pt;}
.x40{left:268.706667pt;}
.x3e{left:275.426667pt;}
.x12{left:276.625333pt;}
.x49{left:295.586667pt;}
.x11{left:296.866667pt;}
.x22{left:298.946676pt;}
.x39{left:308.866667pt;}
.x60{left:321.346667pt;}
.x4a{left:323.746663pt;}
.x25{left:329.666667pt;}
.x10{left:353.666667pt;}
.x26{left:357.213338pt;}
.x5e{left:359.906667pt;}
.x28{left:369.186667pt;}
.x18{left:377.986667pt;}
.x4b{left:383.746667pt;}
.x4f{left:385.986667pt;}
.x16{left:392.052000pt;}
.x17{left:395.572000pt;}
.x2{left:397.026667pt;}
.x6{left:410.306667pt;}
.x1f{left:411.426667pt;}
.x1e{left:412.386667pt;}
.xa{left:414.786667pt;}
.x8{left:423.906667pt;}
.x1b{left:426.146667pt;}
.x4d{left:427.266667pt;}
.x63{left:434.173333pt;}
.x20{left:435.613333pt;}
.x21{left:460.573333pt;}
.x1c{left:462.013333pt;}
.x7{left:475.613333pt;}
.xb{left:478.973333pt;}
.x4e{left:495.453333pt;}
.x61{left:529.373333pt;}
.x62{left:536.733333pt;}
.xc{left:571.133333pt;}
.x9{left:712.773333pt;}
.x1d{left:715.493333pt;}
.x4c{left:720.613333pt;}
}




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