
    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_807a9ed46ff4607e33d0e0b5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.280273;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_1895f9383a63b78745df3149.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_6e125990cd8b81b2308c09c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.280273;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_438a9954d5c5a50d9d4ca5d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_72c756f28b1c705c892dd60b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.222656;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_db6321848097dea32ef67524.woff')format("woff");}.ff8{font-family:ff8;line-height:1.222656;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_5b100a220f086fe0ebad2a92.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_718743761f108e1c8343a1b1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls1a{letter-spacing:-16.080000px;}
.ls3f{letter-spacing:-11.040000px;}
.ls20{letter-spacing:-9.600000px;}
.ls3e{letter-spacing:-1.008000px;}
.ls47{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.654000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.325200px;}
.ls14{letter-spacing:-0.288000px;}
.ls48{letter-spacing:-0.252000px;}
.ls1c{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.207600px;}
.ls5f{letter-spacing:-0.162600px;}
.ls3d{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.015840px;}
.ls5c{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.061200px;}
.ls3{letter-spacing:0.063360px;}
.ls9{letter-spacing:0.063600px;}
.lse{letter-spacing:0.072000px;}
.ls49{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.154800px;}
.ls22{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.259800px;}
.ls2f{letter-spacing:0.259920px;}
.ls62{letter-spacing:0.265200px;}
.ls2d{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.298800px;}
.ls36{letter-spacing:0.359280px;}
.ls2{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.408000px;}
.ls19{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.487440px;}
.ls43{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.735840px;}
.ls7{letter-spacing:0.783360px;}
.ls30{letter-spacing:0.786000px;}
.ls44{letter-spacing:0.855840px;}
.ls53{letter-spacing:0.915840px;}
.ls31{letter-spacing:0.978000px;}
.ls64{letter-spacing:1.008000px;}
.ls52{letter-spacing:1.207440px;}
.ls54{letter-spacing:1.327440px;}
.ls1b{letter-spacing:1.368000px;}
.ls58{letter-spacing:1.548000px;}
.ls16{letter-spacing:2.088000px;}
.ls63{letter-spacing:2.376000px;}
.ls23{letter-spacing:2.808000px;}
.ls3c{letter-spacing:3.528000px;}
.ls4b{letter-spacing:3.708000px;}
.ls2b{letter-spacing:4.087440px;}
.ls29{letter-spacing:4.968000px;}
.ls41{letter-spacing:5.040000px;}
.ls42{letter-spacing:5.760000px;}
.ls39{letter-spacing:6.408000px;}
.ls56{letter-spacing:7.128000px;}
.ls40{letter-spacing:7.200000px;}
.ls5b{letter-spacing:7.848000px;}
.ls3b{letter-spacing:7.968000px;}
.ls4d{letter-spacing:8.136000px;}
.ls1{letter-spacing:8.407440px;}
.ls21{letter-spacing:8.568000px;}
.ls15{letter-spacing:9.288000px;}
.ls5a{letter-spacing:10.008000px;}
.ls3a{letter-spacing:10.728000px;}
.ls34{letter-spacing:11.287440px;}
.ls4a{letter-spacing:11.448000px;}
.ls10{letter-spacing:11.736000px;}
.ls50{letter-spacing:12.888000px;}
.ls33{letter-spacing:13.008000px;}
.ls27{letter-spacing:13.608000px;}
.ls2e{letter-spacing:13.680000px;}
.ls57{letter-spacing:13.896000px;}
.ls37{letter-spacing:14.167440px;}
.ls61{letter-spacing:14.328000px;}
.ls45{letter-spacing:14.887440px;}
.ls28{letter-spacing:15.048000px;}
.ls17{letter-spacing:15.768000px;}
.ls55{letter-spacing:17.208000px;}
.ls46{letter-spacing:19.207440px;}
.ls32{letter-spacing:19.368000px;}
.ls12{letter-spacing:21.096000px;}
.ls6{letter-spacing:21.367440px;}
.ls13{letter-spacing:22.248000px;}
.ls24{letter-spacing:24.480000px;}
.ls25{letter-spacing:25.200000px;}
.ls5d{letter-spacing:25.848000px;}
.ls1f{letter-spacing:26.028000px;}
.ls51{letter-spacing:28.728000px;}
.ls26{letter-spacing:33.768000px;}
.ls4c{letter-spacing:34.560000px;}
.ls4f{letter-spacing:35.928000px;}
.ls38{letter-spacing:36.720000px;}
.ls4e{letter-spacing:42.408000px;}
.ls60{letter-spacing:52.488000px;}
.ls65{letter-spacing:79.968000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.wse{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws16{word-spacing:-20.088000px;}
.wsb{word-spacing:-20.016000px;}
.ws15{word-spacing:-19.440000px;}
.ws3{word-spacing:-18.613440px;}
.ws4{word-spacing:-18.288240px;}
.wsd{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.152560px;}
.ws14{word-spacing:-17.091360px;}
.wsc{word-spacing:-17.052360px;}
.ws6{word-spacing:-16.947360px;}
.ws1{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.432560px;}
.ws9{word-spacing:-16.135200px;}
.ws7{word-spacing:-14.760720px;}
.ws11{word-spacing:-14.328000px;}
.ws19{word-spacing:-11.999760px;}
.ws17{word-spacing:-11.787840px;}
.ws18{word-spacing:-11.571960px;}
.ws13{word-spacing:-10.224000px;}
.wsf{word-spacing:-10.116000px;}
.ws12{word-spacing:-9.864000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-6.507360px;}
._10{margin-left:-4.985760px;}
._2{margin-left:-3.636240px;}
._1{margin-left:-2.450160px;}
._5{margin-left:-1.015920px;}
._0{width:1.314720px;}
._a{width:2.390400px;}
._9{width:3.756480px;}
._b{width:5.079600px;}
._4{width:6.095520px;}
._e{width:7.183920px;}
._8{width:8.270400px;}
._6{width:9.740880px;}
._7{width:11.095680px;}
._f{width:12.153840px;}
._3{width:13.983840px;}
._12{width:15.278880px;}
._11{width:16.344000px;}
._15{width:17.969520px;}
._c{width:19.780560px;}
._d{width:21.674640px;}
._1a{width:23.301360px;}
._23{width:24.379200px;}
._1b{width:25.398000px;}
._1e{width:27.072000px;}
._17{width:28.368000px;}
._19{width:30.168000px;}
._20{width:31.320000px;}
._22{width:32.760000px;}
._1c{width:34.128000px;}
._1d{width:35.549280px;}
._1f{width:37.512000px;}
._24{width:38.520000px;}
._16{width:39.687840px;}
._13{width:40.752000px;}
._14{width:42.468000px;}
._31{width:43.837200px;}
._32{width:45.504000px;}
._26{width:48.672000px;}
._25{width:49.824000px;}
._27{width:51.485280px;}
._21{width:52.848000px;}
._30{width:57.456000px;}
._2f{width:59.400000px;}
._33{width:79.632000px;}
._29{width:131.719920px;}
._28{width:132.960000px;}
._2b{width:165.253920px;}
._2a{width:167.278080px;}
._2d{width:221.612160px;}
._2e{width:222.786960px;}
._2c{width:223.877040px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.170000px;}
.y112{bottom:4.320000px;}
.ye1{bottom:7.920000px;}
.yef{bottom:8.100000px;}
.y4{bottom:25.590000px;}
.y11d{bottom:28.665000px;}
.yf1{bottom:36.180000px;}
.y3{bottom:47.190000px;}
.y119{bottom:53.100000px;}
.y2{bottom:68.610000px;}
.y35{bottom:76.176000px;}
.y114{bottom:77.580000px;}
.y11{bottom:93.456000px;}
.y34{bottom:95.256000px;}
.y10{bottom:113.616000px;}
.y97{bottom:116.136000px;}
.y1a3{bottom:118.116000px;}
.yb3{bottom:122.076000px;}
.y13d{bottom:125.316000px;}
.y66{bottom:128.196000px;}
.yf{bottom:132.696000px;}
.y96{bottom:137.736000px;}
.yb2{bottom:138.816000px;}
.y95{bottom:143.676000px;}
.y1a2{bottom:143.856000px;}
.y65{bottom:149.796000px;}
.y173{bottom:151.770000px;}
.ye{bottom:153.570000px;}
.y13c{bottom:154.110000px;}
.y13b{bottom:155.730000px;}
.y94{bottom:159.150000px;}
.yaa{bottom:160.230000px;}
.y185{bottom:160.770000px;}
.ydb{bottom:165.090000px;}
.y64{bottom:171.210000px;}
.y13a{bottom:172.290000px;}
.y1a1{bottom:172.650000px;}
.yd{bottom:175.170000px;}
.y10a{bottom:177.150000px;}
.y172{bottom:177.510000px;}
.yb1{bottom:179.850000px;}
.y15c{bottom:180.570000px;}
.y93{bottom:180.750000px;}
.y184{bottom:186.510000px;}
.ya2{bottom:186.690000px;}
.y63{bottom:192.810000px;}
.ya9{bottom:193.710000px;}
.yc{bottom:196.590000px;}
.y1a0{bottom:198.570000px;}
.y92{bottom:202.350000px;}
.y139{bottom:204.510000px;}
.yb0{bottom:205.770000px;}
.y15b{bottom:206.310000px;}
.ycb{bottom:208.290000px;}
.y10f{bottom:209.190000px;}
.y183{bottom:212.430000px;}
.y62{bottom:214.230000px;}
.yb{bottom:218.190000px;}
.ya8{bottom:219.630000px;}
.y109{bottom:220.170000px;}
.y91{bottom:223.770000px;}
.y105{bottom:224.670000px;}
.y19f{bottom:227.370000px;}
.y90{bottom:229.710000px;}
.y138{bottom:230.430000px;}
.y104{bottom:230.610000px;}
.y10e{bottom:230.790000px;}
.yaf{bottom:231.510000px;}
.y171{bottom:232.230000px;}
.y15a{bottom:235.110000px;}
.y61{bottom:235.830000px;}
.ya{bottom:239.790000px;}
.y182{bottom:241.230000px;}
.y108{bottom:241.770000px;}
.y8f{bottom:245.370000px;}
.y103{bottom:249.690000px;}
.yda{bottom:251.310000px;}
.y10d{bottom:252.210000px;}
.y19e{bottom:253.110000px;}
.y102{bottom:255.630000px;}
.y137{bottom:256.170000px;}
.y60{bottom:257.250000px;}
.yae{bottom:257.430000px;}
.y170{bottom:257.970000px;}
.y159{bottom:261.030000px;}
.y9{bottom:261.210000px;}
.y8e{bottom:266.790000px;}
.y181{bottom:266.970000px;}
.ya7{bottom:271.110000px;}
.ya1{bottom:272.730000px;}
.y10c{bottom:273.810000px;}
.y5f{bottom:278.850000px;}
.y19d{bottom:279.030000px;}
.y136{bottom:282.090000px;}
.y8{bottom:282.810000px;}
.yad{bottom:283.170000px;}
.y107{bottom:284.790000px;}
.y16f{bottom:286.770000px;}
.y8d{bottom:288.390000px;}
.ya0{bottom:289.470000px;}
.y158{bottom:289.830000px;}
.y101{bottom:292.710000px;}
.y10b{bottom:293.610000px;}
.yb9{bottom:294.330000px;}
.y180{bottom:295.770000px;}
.ya6{bottom:297.030000px;}
.y100{bottom:298.650000px;}
.y5e{bottom:300.270000px;}
.y135{bottom:307.830000px;}
.yac{bottom:309.090000px;}
.y8c{bottom:309.810000px;}
.yf7{bottom:310.890000px;}
.y16e{bottom:312.690000px;}
.yff{bottom:314.130000px;}
.y157{bottom:315.570000px;}
.y8b{bottom:315.750000px;}
.y7{bottom:321.510000px;}
.y17f{bottom:321.690000px;}
.y5d{bottom:321.870000px;}
.ya5{bottom:322.770000px;}
.y5c{bottom:327.810000px;}
.y8a{bottom:331.410000px;}
.yb8{bottom:332.490000px;}
.y19c{bottom:333.570000px;}
.y134{bottom:333.750000px;}
.y9f{bottom:334.830000px;}
.yfe{bottom:335.730000px;}
.yca{bottom:337.395000px;}
.y156{bottom:341.535000px;}
.yfd{bottom:341.715000px;}
.y5b{bottom:343.335000px;}
.y106{bottom:344.595000px;}
.ye3{bottom:345.990000px;}
.ya4{bottom:348.735000px;}
.y17e{bottom:350.535000px;}
.y32{bottom:350.715000px;}
.y89{bottom:352.875000px;}
.yfc{bottom:358.275000px;}
.y133{bottom:359.535000px;}
.y9e{bottom:360.615000px;}
.yf6{bottom:360.975000px;}
.y5a{bottom:364.935000px;}
.y16d{bottom:367.275000px;}
.y155{bottom:370.335000px;}
.y59{bottom:370.875000px;}
.y31{bottom:372.135000px;}
.y88{bottom:374.475000px;}
.y17d{bottom:376.275000px;}
.yd9{bottom:380.415000px;}
.y19b{bottom:385.275000px;}
.y132{bottom:385.455000px;}
.y58{bottom:386.535000px;}
.yf5{bottom:386.715000px;}
.y57{bottom:392.475000px;}
.y30{bottom:393.735000px;}
.yfb{bottom:394.095000px;}
.y87{bottom:395.895000px;}
.y16c{bottom:396.075000px;}
.y154{bottom:399.135000px;}
.yc9{bottom:401.835000px;}
.y17c{bottom:405.075000px;}
.y56{bottom:409.035000px;}
.yf4{bottom:410.115000px;}
.y131{bottom:411.195000px;}
.y9d{bottom:412.275000px;}
.y19a{bottom:414.075000px;}
.y2f{bottom:415.155000px;}
.y86{bottom:417.495000px;}
.yb7{bottom:419.835000px;}
.yf3{bottom:421.455000px;}
.y16b{bottom:421.995000px;}
.y153{bottom:427.935000px;}
.y17b{bottom:430.995000px;}
.y55{bottom:432.255000px;}
.y2e{bottom:436.755000px;}
.y130{bottom:436.935000px;}
.y9c{bottom:438.195000px;}
.y85{bottom:439.095000px;}
.y199{bottom:439.995000px;}
.y84{bottom:445.035000px;}
.yb6{bottom:445.755000px;}
.yf0{bottom:449.715000px;}
.y16a{bottom:450.795000px;}
.y152{bottom:456.735000px;}
.y54{bottom:457.995000px;}
.y2d{bottom:458.175000px;}
.yc8{bottom:460.515000px;}
.y83{bottom:461.595000px;}
.y12e{bottom:462.855000px;}
.y9b{bottom:463.935000px;}
.y198{bottom:468.795000px;}
.y12f{bottom:470.415000px;}
.y169{bottom:476.715000px;}
.yf2{bottom:477.795000px;}
.y2c{bottom:479.775000px;}
.yc7{bottom:482.115000px;}
.y151{bottom:482.655000px;}
.y53{bottom:483.915000px;}
.y17a{bottom:485.715000px;}
.y12d{bottom:488.595000px;}
.y9a{bottom:489.855000px;}
.y197{bottom:494.715000px;}
.y2b{bottom:501.195000px;}
.yc6{bottom:503.535000px;}
.y168{bottom:505.515000px;}
.ye2{bottom:506.055000px;}
.yc5{bottom:509.475000px;}
.y52{bottom:509.655000px;}
.y150{bottom:511.455000px;}
.y12c{bottom:514.515000px;}
.y82{bottom:515.595000px;}
.y2a{bottom:522.795000px;}
.yfa{bottom:523.155000px;}
.y196{bottom:523.515000px;}
.yc4{bottom:525.135000px;}
.yc3{bottom:531.075000px;}
.y167{bottom:531.255000px;}
.yee{bottom:534.135000px;}
.y50{bottom:535.575000px;}
.y1a8{bottom:535.755000px;}
.y14f{bottom:537.195000px;}
.y12b{bottom:540.255000px;}
.y81{bottom:541.515000px;}
.y51{bottom:543.135000px;}
.y29{bottom:544.395000px;}
.yc2{bottom:546.555000px;}
.yb5{bottom:549.075000px;}
.y195{bottom:549.255000px;}
.y1a7{bottom:556.815000px;}
.y166{bottom:560.055000px;}
.y4f{bottom:561.315000px;}
.yed{bottom:562.395000px;}
.y14e{bottom:563.115000px;}
.y28{bottom:565.815000px;}
.y12a{bottom:566.175000px;}
.y80{bottom:567.255000px;}
.yc1{bottom:568.155000px;}
.yb4{bottom:574.815000px;}
.y194{bottom:578.055000px;}
.y165{bottom:585.975000px;}
.y4e{bottom:587.235000px;}
.y27{bottom:587.415000px;}
.yc0{bottom:589.575000px;}
.yec{bottom:590.475000px;}
.y129{bottom:591.915000px;}
.y7f{bottom:593.175000px;}
.ybf{bottom:595.515000px;}
.yf9{bottom:600.735000px;}
.y193{bottom:604.005000px;}
.y26{bottom:608.865000px;}
.ybe{bottom:611.205000px;}
.y4d{bottom:613.005000px;}
.y164{bottom:614.805000px;}
.ybd{bottom:617.145000px;}
.y14d{bottom:617.685000px;}
.y128{bottom:617.865000px;}
.yeb{bottom:618.765000px;}
.y7e{bottom:618.945000px;}
.y192{bottom:629.745000px;}
.y25{bottom:630.465000px;}
.yd8{bottom:632.625000px;}
.ybc{bottom:633.885000px;}
.y4c{bottom:638.925000px;}
.y163{bottom:640.545000px;}
.y127{bottom:643.605000px;}
.y7d{bottom:644.685000px;}
.y14c{bottom:646.665000px;}
.yea{bottom:646.845000px;}
.y24{bottom:651.885000px;}
.yd7{bottom:654.225000px;}
.y191{bottom:658.545000px;}
.yd6{bottom:660.165000px;}
.y4b{bottom:664.665000px;}
.y162{bottom:669.345000px;}
.y126{bottom:669.525000px;}
.y7b{bottom:670.605000px;}
.y14b{bottom:672.405000px;}
.y23{bottom:673.485000px;}
.ye9{bottom:675.105000px;}
.yd5{bottom:675.825000px;}
.y7c{bottom:678.165000px;}
.y190{bottom:684.465000px;}
.y4a{bottom:690.585000px;}
.y22{bottom:694.905000px;}
.y125{bottom:695.265000px;}
.y7a{bottom:696.345000px;}
.yd4{bottom:697.245000px;}
.y14a{bottom:698.325000px;}
.yd3{bottom:703.185000px;}
.ybb{bottom:703.905000px;}
.y18f{bottom:710.205000px;}
.y49{bottom:716.325000px;}
.y21{bottom:716.505000px;}
.yd2{bottom:718.845000px;}
.y124{bottom:721.185000px;}
.y79{bottom:722.265000px;}
.y161{bottom:724.065000px;}
.y149{bottom:727.125000px;}
.ya3{bottom:729.825000px;}
.ye8{bottom:731.445000px;}
.y18e{bottom:736.125000px;}
.y20{bottom:738.105000px;}
.yd1{bottom:740.265000px;}
.y48{bottom:742.245000px;}
.y123{bottom:746.925000px;}
.y78{bottom:748.005000px;}
.y160{bottom:752.865000px;}
.y99{bottom:755.565000px;}
.y148{bottom:755.925000px;}
.ye7{bottom:759.525000px;}
.y1f{bottom:760.425000px;}
.y18d{bottom:761.865000px;}
.yd0{bottom:762.945000px;}
.y47{bottom:767.985000px;}
.y122{bottom:772.665000px;}
.y76{bottom:773.925000px;}
.y77{bottom:781.485000px;}
.y147{bottom:781.665000px;}
.y1e{bottom:785.805000px;}
.ye6{bottom:787.785000px;}
.y18c{bottom:790.665000px;}
.y46{bottom:793.725000px;}
.y121{bottom:796.065000px;}
.y75{bottom:799.665000px;}
.ycf{bottom:807.225000px;}
.y120{bottom:807.405000px;}
.y146{bottom:807.585000px;}
.y1d{bottom:809.385000px;}
.y15f{bottom:810.465000px;}
.ye5{bottom:815.865000px;}
.y18b{bottom:816.585000px;}
.y44{bottom:819.645000px;}
.y74{bottom:825.585000px;}
.y45{bottom:827.205000px;}
.y11f{bottom:831.885000px;}
.y1c{bottom:833.145000px;}
.y145{bottom:836.385000px;}
.y18a{bottom:842.325000px;}
.ye4{bottom:844.125000px;}
.y43{bottom:845.385000px;}
.y73{bottom:851.325000px;}
.y11c{bottom:856.365000px;}
.y1b{bottom:856.725000px;}
.yab{bottom:858.885000px;}
.y179{bottom:862.125000px;}
.y144{bottom:865.185000px;}
.y1a6{bottom:868.245000px;}
.y189{bottom:871.170000px;}
.y41{bottom:871.350000px;}
.ye0{bottom:872.250000px;}
.y72{bottom:877.290000px;}
.y42{bottom:878.910000px;}
.y1a{bottom:880.530000px;}
.y11e{bottom:880.710000px;}
.y143{bottom:890.970000px;}
.y1a5{bottom:894.030000px;}
.y40{bottom:897.090000px;}
.ydf{bottom:901.770000px;}
.y71{bottom:903.030000px;}
.y19{bottom:904.110000px;}
.y118{bottom:905.190000px;}
.yba{bottom:910.590000px;}
.yde{bottom:910.770000px;}
.y178{bottom:916.890000px;}
.y142{bottom:919.950000px;}
.y188{bottom:922.830000px;}
.y3f{bottom:923.010000px;}
.y18{bottom:927.510000px;}
.y6f{bottom:928.950000px;}
.y11b{bottom:929.670000px;}
.ydd{bottom:932.370000px;}
.y70{bottom:936.510000px;}
.y141{bottom:945.690000px;}
.y1a4{bottom:948.750000px;}
.y17{bottom:949.830000px;}
.y187{bottom:951.630000px;}
.y11a{bottom:953.970000px;}
.y6e{bottom:954.690000px;}
.y3e{bottom:963.330000px;}
.y177{bottom:971.430000px;}
.y140{bottom:974.490000px;}
.y16{bottom:975.570000px;}
.y186{bottom:977.550000px;}
.y113{bottom:978.450000px;}
.y6d{bottom:980.430000px;}
.yf8{bottom:987.990000px;}
.y3d{bottom:988.170000px;}
.y15e{bottom:1000.410000px;}
.y15{bottom:1002.030000px;}
.y117{bottom:1002.930000px;}
.y13f{bottom:1003.290000px;}
.y6c{bottom:1006.350000px;}
.y3c{bottom:1009.770000px;}
.ydc{bottom:1013.910000px;}
.y176{bottom:1026.150000px;}
.y116{bottom:1027.230000px;}
.y13e{bottom:1029.210000px;}
.y3b{bottom:1031.370000px;}
.y6b{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.yce{bottom:1039.650000px;}
.y115{bottom:1051.710000px;}
.y175{bottom:1051.890000px;}
.y3a{bottom:1052.790000px;}
.y15d{bottom:1054.950000px;}
.y6a{bottom:1058.010000px;}
.y13{bottom:1062.330000px;}
.ycd{bottom:1065.570000px;}
.y39{bottom:1074.390000px;}
.y111{bottom:1076.190000px;}
.y174{bottom:1080.870000px;}
.y69{bottom:1083.750000px;}
.y12{bottom:1091.310000px;}
.y38{bottom:1095.990000px;}
.y110{bottom:1102.830000px;}
.y68{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y98{bottom:1117.230000px;}
.y37{bottom:1117.410000px;}
.y1{bottom:1134.150000px;}
.y67{bottom:1135.410000px;}
.y36{bottom:1139.040000px;}
.ycc{bottom:1143.000000px;}
.y33{bottom:1203.480000px;}
.h10{height:18.852539px;}
.h16{height:23.580000px;}
.h1b{height:23.616000px;}
.h18{height:23.760000px;}
.h11{height:27.360000px;}
.h13{height:27.396000px;}
.h14{height:27.540000px;}
.hd{height:37.705078px;}
.h7{height:43.506914px;}
.hc{height:43.737891px;}
.h1a{height:48.096000px;}
.hf{height:50.097656px;}
.h4{height:51.618867px;}
.h15{height:55.620000px;}
.h6{height:56.557617px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:62.590430px;}
.h8{height:69.377344px;}
.he{height:71.050781px;}
.h19{height:72.540000px;}
.h9{height:72.763945px;}
.hb{height:75.410156px;}
.h2{height:86.256000px;}
.h17{height:97.020000px;}
.h12{height:365.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w7{width:139.860000px;}
.w8{width:163.830000px;}
.wb{width:187.770000px;}
.wc{width:227.730000px;}
.wa{width:252.390000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w9{width:373.755000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x73{left:28.080000px;}
.x59{left:42.480000px;}
.x5b{left:54.585000px;}
.x71{left:66.600000px;}
.x6f{left:98.634000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.x11{left:110.915987px;}
.x1f{left:115.415987px;}
.x5e{left:117.215987px;}
.x1e{left:127.655987px;}
.x5d{left:134.670000px;}
.x58{left:144.575987px;}
.x26{left:156.629973px;}
.x9{left:159.509987px;}
.x6d{left:164.189987px;}
.x27{left:167.069987px;}
.x6b{left:168.869973px;}
.x3a{left:180.029973px;}
.x2{left:185.799000px;}
.x3b{left:190.469987px;}
.x42{left:194.609973px;}
.x43{left:205.049987px;}
.x20{left:214.049973px;}
.x49{left:216.389973px;}
.x69{left:218.369973px;}
.x21{left:224.489987px;}
.x4a{left:226.829987px;}
.x6a{left:228.809987px;}
.x60{left:230.069973px;}
.x34{left:238.709973px;}
.x2b{left:240.149973px;}
.x5a{left:247.710000px;}
.x35{left:249.149987px;}
.x2c{left:250.589987px;}
.x2a{left:255.089973px;}
.x5f{left:260.309987px;}
.x1a{left:266.069973px;}
.x1b{left:271.289987px;}
.x3c{left:298.514973px;}
.x75{left:305.354987px;}
.x16{left:307.154973px;}
.x3d{left:308.954987px;}
.x17{left:312.374987px;}
.x65{left:321.374987px;}
.x10{left:322.454987px;}
.x4b{left:325.694973px;}
.x18{left:328.214973px;}
.x19{left:333.434987px;}
.x2d{left:338.114987px;}
.x28{left:361.694973px;}
.x70{left:364.935000px;}
.x50{left:371.954973px;}
.x29{left:374.654987px;}
.x51{left:382.394987px;}
.x61{left:393.014973px;}
.x12{left:403.634973px;}
.x13{left:408.854987px;}
.x5c{left:412.275000px;}
.x6e{left:422.534987px;}
.x66{left:427.034973px;}
.x67{left:433.694973px;}
.x3{left:438.375000px;}
.x68{left:444.134987px;}
.x7{left:446.474987px;}
.x52{left:466.844973px;}
.x6c{left:473.144987px;}
.x53{left:477.284987px;}
.x30{left:487.364973px;}
.x5{left:489.165000px;}
.x63{left:495.104973px;}
.x31{left:503.204987px;}
.x64{left:505.544987px;}
.x44{left:525.164973px;}
.xa{left:532.184973px;}
.x45{left:535.604987px;}
.xb{left:538.844987px;}
.x3e{left:546.944973px;}
.x72{left:553.605000px;}
.x3f{left:557.384987px;}
.x2e{left:560.444973px;}
.x22{left:563.684973px;}
.x2f{left:572.684987px;}
.x23{left:574.124987px;}
.x62{left:612.824973px;}
.x1c{left:618.764973px;}
.x14{left:619.844973px;}
.x36{left:623.264973px;}
.x15{left:625.064987px;}
.x1d{left:629.384987px;}
.x37{left:633.704987px;}
.x74{left:634.964987px;}
.x46{left:641.084973px;}
.x32{left:647.564973px;}
.x4c{left:648.644973px;}
.x47{left:651.524987px;}
.x33{left:658.049987px;}
.x4d{left:661.289987px;}
.x40{left:667.589987px;}
.x56{left:669.029973px;}
.x48{left:675.149973px;}
.xe{left:679.469973px;}
.xf{left:684.689987px;}
.x57{left:687.029987px;}
.x38{left:720.509973px;}
.x39{left:730.949987px;}
.x41{left:754.349973px;}
.x24{left:760.469973px;}
.x4e{left:763.529973px;}
.x55{left:765.689987px;}
.x54{left:767.489987px;}
.x25{left:770.909987px;}
.x4f{left:776.129987px;}
.x6{left:777.209987px;}
.xc{left:781.529973px;}
.xd{left:786.749987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-14.293333pt;}
.ls3f{letter-spacing:-9.813333pt;}
.ls20{letter-spacing:-8.533333pt;}
.ls3e{letter-spacing:-0.896000pt;}
.ls47{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.581333pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.289067pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls48{letter-spacing:-0.224000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.184533pt;}
.ls5f{letter-spacing:-0.144533pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.014080pt;}
.ls5c{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.054400pt;}
.ls3{letter-spacing:0.056320pt;}
.ls9{letter-spacing:0.056533pt;}
.lse{letter-spacing:0.064000pt;}
.ls49{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.137600pt;}
.ls22{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.230933pt;}
.ls2f{letter-spacing:0.231040pt;}
.ls62{letter-spacing:0.235733pt;}
.ls2d{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls36{letter-spacing:0.319360pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.362667pt;}
.ls19{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.433280pt;}
.ls43{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.654080pt;}
.ls7{letter-spacing:0.696320pt;}
.ls30{letter-spacing:0.698667pt;}
.ls44{letter-spacing:0.760747pt;}
.ls53{letter-spacing:0.814080pt;}
.ls31{letter-spacing:0.869333pt;}
.ls64{letter-spacing:0.896000pt;}
.ls52{letter-spacing:1.073280pt;}
.ls54{letter-spacing:1.179947pt;}
.ls1b{letter-spacing:1.216000pt;}
.ls58{letter-spacing:1.376000pt;}
.ls16{letter-spacing:1.856000pt;}
.ls63{letter-spacing:2.112000pt;}
.ls23{letter-spacing:2.496000pt;}
.ls3c{letter-spacing:3.136000pt;}
.ls4b{letter-spacing:3.296000pt;}
.ls2b{letter-spacing:3.633280pt;}
.ls29{letter-spacing:4.416000pt;}
.ls41{letter-spacing:4.480000pt;}
.ls42{letter-spacing:5.120000pt;}
.ls39{letter-spacing:5.696000pt;}
.ls56{letter-spacing:6.336000pt;}
.ls40{letter-spacing:6.400000pt;}
.ls5b{letter-spacing:6.976000pt;}
.ls3b{letter-spacing:7.082667pt;}
.ls4d{letter-spacing:7.232000pt;}
.ls1{letter-spacing:7.473280pt;}
.ls21{letter-spacing:7.616000pt;}
.ls15{letter-spacing:8.256000pt;}
.ls5a{letter-spacing:8.896000pt;}
.ls3a{letter-spacing:9.536000pt;}
.ls34{letter-spacing:10.033280pt;}
.ls4a{letter-spacing:10.176000pt;}
.ls10{letter-spacing:10.432000pt;}
.ls50{letter-spacing:11.456000pt;}
.ls33{letter-spacing:11.562667pt;}
.ls27{letter-spacing:12.096000pt;}
.ls2e{letter-spacing:12.160000pt;}
.ls57{letter-spacing:12.352000pt;}
.ls37{letter-spacing:12.593280pt;}
.ls61{letter-spacing:12.736000pt;}
.ls45{letter-spacing:13.233280pt;}
.ls28{letter-spacing:13.376000pt;}
.ls17{letter-spacing:14.016000pt;}
.ls55{letter-spacing:15.296000pt;}
.ls46{letter-spacing:17.073280pt;}
.ls32{letter-spacing:17.216000pt;}
.ls12{letter-spacing:18.752000pt;}
.ls6{letter-spacing:18.993280pt;}
.ls13{letter-spacing:19.776000pt;}
.ls24{letter-spacing:21.760000pt;}
.ls25{letter-spacing:22.400000pt;}
.ls5d{letter-spacing:22.976000pt;}
.ls1f{letter-spacing:23.136000pt;}
.ls51{letter-spacing:25.536000pt;}
.ls26{letter-spacing:30.016000pt;}
.ls4c{letter-spacing:30.720000pt;}
.ls4f{letter-spacing:31.936000pt;}
.ls38{letter-spacing:32.640000pt;}
.ls4e{letter-spacing:37.696000pt;}
.ls60{letter-spacing:46.656000pt;}
.ls65{letter-spacing:71.082667pt;}
.ws10{word-spacing:-64.000000pt;}
.wse{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.856000pt;}
.wsb{word-spacing:-17.792000pt;}
.ws15{word-spacing:-17.280000pt;}
.ws3{word-spacing:-16.545280pt;}
.ws4{word-spacing:-16.256213pt;}
.wsd{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.246720pt;}
.ws14{word-spacing:-15.192320pt;}
.wsc{word-spacing:-15.157653pt;}
.ws6{word-spacing:-15.064320pt;}
.ws1{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.606720pt;}
.ws9{word-spacing:-14.342400pt;}
.ws7{word-spacing:-13.120640pt;}
.ws11{word-spacing:-12.736000pt;}
.ws19{word-spacing:-10.666453pt;}
.ws17{word-spacing:-10.478080pt;}
.ws18{word-spacing:-10.286187pt;}
.ws13{word-spacing:-9.088000pt;}
.wsf{word-spacing:-8.992000pt;}
.ws12{word-spacing:-8.768000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-5.784320pt;}
._10{margin-left:-4.431787pt;}
._2{margin-left:-3.232213pt;}
._1{margin-left:-2.177920pt;}
._5{margin-left:-0.903040pt;}
._0{width:1.168640pt;}
._a{width:2.124800pt;}
._9{width:3.339093pt;}
._b{width:4.515200pt;}
._4{width:5.418240pt;}
._e{width:6.385707pt;}
._8{width:7.351467pt;}
._6{width:8.658560pt;}
._7{width:9.862827pt;}
._f{width:10.803413pt;}
._3{width:12.430080pt;}
._12{width:13.581227pt;}
._11{width:14.528000pt;}
._15{width:15.972907pt;}
._c{width:17.582720pt;}
._d{width:19.266347pt;}
._1a{width:20.712320pt;}
._23{width:21.670400pt;}
._1b{width:22.576000pt;}
._1e{width:24.064000pt;}
._17{width:25.216000pt;}
._19{width:26.816000pt;}
._20{width:27.840000pt;}
._22{width:29.120000pt;}
._1c{width:30.336000pt;}
._1d{width:31.599360pt;}
._1f{width:33.344000pt;}
._24{width:34.240000pt;}
._16{width:35.278080pt;}
._13{width:36.224000pt;}
._14{width:37.749333pt;}
._31{width:38.966400pt;}
._32{width:40.448000pt;}
._26{width:43.264000pt;}
._25{width:44.288000pt;}
._27{width:45.764693pt;}
._21{width:46.976000pt;}
._30{width:51.072000pt;}
._2f{width:52.800000pt;}
._33{width:70.784000pt;}
._29{width:117.084373pt;}
._28{width:118.186667pt;}
._2b{width:146.892373pt;}
._2a{width:148.691627pt;}
._2d{width:196.988587pt;}
._2e{width:198.032853pt;}
._2c{width:199.001813pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.706667pt;}
.y112{bottom:3.840000pt;}
.ye1{bottom:7.040000pt;}
.yef{bottom:7.200000pt;}
.y4{bottom:22.746667pt;}
.y11d{bottom:25.480000pt;}
.yf1{bottom:32.160000pt;}
.y3{bottom:41.946667pt;}
.y119{bottom:47.200000pt;}
.y2{bottom:60.986667pt;}
.y35{bottom:67.712000pt;}
.y114{bottom:68.960000pt;}
.y11{bottom:83.072000pt;}
.y34{bottom:84.672000pt;}
.y10{bottom:100.992000pt;}
.y97{bottom:103.232000pt;}
.y1a3{bottom:104.992000pt;}
.yb3{bottom:108.512000pt;}
.y13d{bottom:111.392000pt;}
.y66{bottom:113.952000pt;}
.yf{bottom:117.952000pt;}
.y96{bottom:122.432000pt;}
.yb2{bottom:123.392000pt;}
.y95{bottom:127.712000pt;}
.y1a2{bottom:127.872000pt;}
.y65{bottom:133.152000pt;}
.y173{bottom:134.906667pt;}
.ye{bottom:136.506667pt;}
.y13c{bottom:136.986667pt;}
.y13b{bottom:138.426667pt;}
.y94{bottom:141.466667pt;}
.yaa{bottom:142.426667pt;}
.y185{bottom:142.906667pt;}
.ydb{bottom:146.746667pt;}
.y64{bottom:152.186667pt;}
.y13a{bottom:153.146667pt;}
.y1a1{bottom:153.466667pt;}
.yd{bottom:155.706667pt;}
.y10a{bottom:157.466667pt;}
.y172{bottom:157.786667pt;}
.yb1{bottom:159.866667pt;}
.y15c{bottom:160.506667pt;}
.y93{bottom:160.666667pt;}
.y184{bottom:165.786667pt;}
.ya2{bottom:165.946667pt;}
.y63{bottom:171.386667pt;}
.ya9{bottom:172.186667pt;}
.yc{bottom:174.746667pt;}
.y1a0{bottom:176.506667pt;}
.y92{bottom:179.866667pt;}
.y139{bottom:181.786667pt;}
.yb0{bottom:182.906667pt;}
.y15b{bottom:183.386667pt;}
.ycb{bottom:185.146667pt;}
.y10f{bottom:185.946667pt;}
.y183{bottom:188.826667pt;}
.y62{bottom:190.426667pt;}
.yb{bottom:193.946667pt;}
.ya8{bottom:195.226667pt;}
.y109{bottom:195.706667pt;}
.y91{bottom:198.906667pt;}
.y105{bottom:199.706667pt;}
.y19f{bottom:202.106667pt;}
.y90{bottom:204.186667pt;}
.y138{bottom:204.826667pt;}
.y104{bottom:204.986667pt;}
.y10e{bottom:205.146667pt;}
.yaf{bottom:205.786667pt;}
.y171{bottom:206.426667pt;}
.y15a{bottom:208.986667pt;}
.y61{bottom:209.626667pt;}
.ya{bottom:213.146667pt;}
.y182{bottom:214.426667pt;}
.y108{bottom:214.906667pt;}
.y8f{bottom:218.106667pt;}
.y103{bottom:221.946667pt;}
.yda{bottom:223.386667pt;}
.y10d{bottom:224.186667pt;}
.y19e{bottom:224.986667pt;}
.y102{bottom:227.226667pt;}
.y137{bottom:227.706667pt;}
.y60{bottom:228.666667pt;}
.yae{bottom:228.826667pt;}
.y170{bottom:229.306667pt;}
.y159{bottom:232.026667pt;}
.y9{bottom:232.186667pt;}
.y8e{bottom:237.146667pt;}
.y181{bottom:237.306667pt;}
.ya7{bottom:240.986667pt;}
.ya1{bottom:242.426667pt;}
.y10c{bottom:243.386667pt;}
.y5f{bottom:247.866667pt;}
.y19d{bottom:248.026667pt;}
.y136{bottom:250.746667pt;}
.y8{bottom:251.386667pt;}
.yad{bottom:251.706667pt;}
.y107{bottom:253.146667pt;}
.y16f{bottom:254.906667pt;}
.y8d{bottom:256.346667pt;}
.ya0{bottom:257.306667pt;}
.y158{bottom:257.626667pt;}
.y101{bottom:260.186667pt;}
.y10b{bottom:260.986667pt;}
.yb9{bottom:261.626667pt;}
.y180{bottom:262.906667pt;}
.ya6{bottom:264.026667pt;}
.y100{bottom:265.466667pt;}
.y5e{bottom:266.906667pt;}
.y135{bottom:273.626667pt;}
.yac{bottom:274.746667pt;}
.y8c{bottom:275.386667pt;}
.yf7{bottom:276.346667pt;}
.y16e{bottom:277.946667pt;}
.yff{bottom:279.226667pt;}
.y157{bottom:280.506667pt;}
.y8b{bottom:280.666667pt;}
.y7{bottom:285.786667pt;}
.y17f{bottom:285.946667pt;}
.y5d{bottom:286.106667pt;}
.ya5{bottom:286.906667pt;}
.y5c{bottom:291.386667pt;}
.y8a{bottom:294.586667pt;}
.yb8{bottom:295.546667pt;}
.y19c{bottom:296.506667pt;}
.y134{bottom:296.666667pt;}
.y9f{bottom:297.626667pt;}
.yfe{bottom:298.426667pt;}
.yca{bottom:299.906667pt;}
.y156{bottom:303.586667pt;}
.yfd{bottom:303.746667pt;}
.y5b{bottom:305.186667pt;}
.y106{bottom:306.306667pt;}
.ye3{bottom:307.546667pt;}
.ya4{bottom:309.986667pt;}
.y17e{bottom:311.586667pt;}
.y32{bottom:311.746667pt;}
.y89{bottom:313.666667pt;}
.yfc{bottom:318.466667pt;}
.y133{bottom:319.586667pt;}
.y9e{bottom:320.546667pt;}
.yf6{bottom:320.866667pt;}
.y5a{bottom:324.386667pt;}
.y16d{bottom:326.466667pt;}
.y155{bottom:329.186667pt;}
.y59{bottom:329.666667pt;}
.y31{bottom:330.786667pt;}
.y88{bottom:332.866667pt;}
.y17d{bottom:334.466667pt;}
.yd9{bottom:338.146667pt;}
.y19b{bottom:342.466667pt;}
.y132{bottom:342.626667pt;}
.y58{bottom:343.586667pt;}
.yf5{bottom:343.746667pt;}
.y57{bottom:348.866667pt;}
.y30{bottom:349.986667pt;}
.yfb{bottom:350.306667pt;}
.y87{bottom:351.906667pt;}
.y16c{bottom:352.066667pt;}
.y154{bottom:354.786667pt;}
.yc9{bottom:357.186667pt;}
.y17c{bottom:360.066667pt;}
.y56{bottom:363.586667pt;}
.yf4{bottom:364.546667pt;}
.y131{bottom:365.506667pt;}
.y9d{bottom:366.466667pt;}
.y19a{bottom:368.066667pt;}
.y2f{bottom:369.026667pt;}
.y86{bottom:371.106667pt;}
.yb7{bottom:373.186667pt;}
.yf3{bottom:374.626667pt;}
.y16b{bottom:375.106667pt;}
.y153{bottom:380.386667pt;}
.y17b{bottom:383.106667pt;}
.y55{bottom:384.226667pt;}
.y2e{bottom:388.226667pt;}
.y130{bottom:388.386667pt;}
.y9c{bottom:389.506667pt;}
.y85{bottom:390.306667pt;}
.y199{bottom:391.106667pt;}
.y84{bottom:395.586667pt;}
.yb6{bottom:396.226667pt;}
.yf0{bottom:399.746667pt;}
.y16a{bottom:400.706667pt;}
.y152{bottom:405.986667pt;}
.y54{bottom:407.106667pt;}
.y2d{bottom:407.266667pt;}
.yc8{bottom:409.346667pt;}
.y83{bottom:410.306667pt;}
.y12e{bottom:411.426667pt;}
.y9b{bottom:412.386667pt;}
.y198{bottom:416.706667pt;}
.y12f{bottom:418.146667pt;}
.y169{bottom:423.746667pt;}
.yf2{bottom:424.706667pt;}
.y2c{bottom:426.466667pt;}
.yc7{bottom:428.546667pt;}
.y151{bottom:429.026667pt;}
.y53{bottom:430.146667pt;}
.y17a{bottom:431.746667pt;}
.y12d{bottom:434.306667pt;}
.y9a{bottom:435.426667pt;}
.y197{bottom:439.746667pt;}
.y2b{bottom:445.506667pt;}
.yc6{bottom:447.586667pt;}
.y168{bottom:449.346667pt;}
.ye2{bottom:449.826667pt;}
.yc5{bottom:452.866667pt;}
.y52{bottom:453.026667pt;}
.y150{bottom:454.626667pt;}
.y12c{bottom:457.346667pt;}
.y82{bottom:458.306667pt;}
.y2a{bottom:464.706667pt;}
.yfa{bottom:465.026667pt;}
.y196{bottom:465.346667pt;}
.yc4{bottom:466.786667pt;}
.yc3{bottom:472.066667pt;}
.y167{bottom:472.226667pt;}
.yee{bottom:474.786667pt;}
.y50{bottom:476.066667pt;}
.y1a8{bottom:476.226667pt;}
.y14f{bottom:477.506667pt;}
.y12b{bottom:480.226667pt;}
.y81{bottom:481.346667pt;}
.y51{bottom:482.786667pt;}
.y29{bottom:483.906667pt;}
.yc2{bottom:485.826667pt;}
.yb5{bottom:488.066667pt;}
.y195{bottom:488.226667pt;}
.y1a7{bottom:494.946667pt;}
.y166{bottom:497.826667pt;}
.y4f{bottom:498.946667pt;}
.yed{bottom:499.906667pt;}
.y14e{bottom:500.546667pt;}
.y28{bottom:502.946667pt;}
.y12a{bottom:503.266667pt;}
.y80{bottom:504.226667pt;}
.yc1{bottom:505.026667pt;}
.yb4{bottom:510.946667pt;}
.y194{bottom:513.826667pt;}
.y165{bottom:520.866667pt;}
.y4e{bottom:521.986667pt;}
.y27{bottom:522.146667pt;}
.yc0{bottom:524.066667pt;}
.yec{bottom:524.866667pt;}
.y129{bottom:526.146667pt;}
.y7f{bottom:527.266667pt;}
.ybf{bottom:529.346667pt;}
.yf9{bottom:533.986667pt;}
.y193{bottom:536.893333pt;}
.y26{bottom:541.213333pt;}
.ybe{bottom:543.293333pt;}
.y4d{bottom:544.893333pt;}
.y164{bottom:546.493333pt;}
.ybd{bottom:548.573333pt;}
.y14d{bottom:549.053333pt;}
.y128{bottom:549.213333pt;}
.yeb{bottom:550.013333pt;}
.y7e{bottom:550.173333pt;}
.y192{bottom:559.773333pt;}
.y25{bottom:560.413333pt;}
.yd8{bottom:562.333333pt;}
.ybc{bottom:563.453333pt;}
.y4c{bottom:567.933333pt;}
.y163{bottom:569.373333pt;}
.y127{bottom:572.093333pt;}
.y7d{bottom:573.053333pt;}
.y14c{bottom:574.813333pt;}
.yea{bottom:574.973333pt;}
.y24{bottom:579.453333pt;}
.yd7{bottom:581.533333pt;}
.y191{bottom:585.373333pt;}
.yd6{bottom:586.813333pt;}
.y4b{bottom:590.813333pt;}
.y162{bottom:594.973333pt;}
.y126{bottom:595.133333pt;}
.y7b{bottom:596.093333pt;}
.y14b{bottom:597.693333pt;}
.y23{bottom:598.653333pt;}
.ye9{bottom:600.093333pt;}
.yd5{bottom:600.733333pt;}
.y7c{bottom:602.813333pt;}
.y190{bottom:608.413333pt;}
.y4a{bottom:613.853333pt;}
.y22{bottom:617.693333pt;}
.y125{bottom:618.013333pt;}
.y7a{bottom:618.973333pt;}
.yd4{bottom:619.773333pt;}
.y14a{bottom:620.733333pt;}
.yd3{bottom:625.053333pt;}
.ybb{bottom:625.693333pt;}
.y18f{bottom:631.293333pt;}
.y49{bottom:636.733333pt;}
.y21{bottom:636.893333pt;}
.yd2{bottom:638.973333pt;}
.y124{bottom:641.053333pt;}
.y79{bottom:642.013333pt;}
.y161{bottom:643.613333pt;}
.y149{bottom:646.333333pt;}
.ya3{bottom:648.733333pt;}
.ye8{bottom:650.173333pt;}
.y18e{bottom:654.333333pt;}
.y20{bottom:656.093333pt;}
.yd1{bottom:658.013333pt;}
.y48{bottom:659.773333pt;}
.y123{bottom:663.933333pt;}
.y78{bottom:664.893333pt;}
.y160{bottom:669.213333pt;}
.y99{bottom:671.613333pt;}
.y148{bottom:671.933333pt;}
.ye7{bottom:675.133333pt;}
.y1f{bottom:675.933333pt;}
.y18d{bottom:677.213333pt;}
.yd0{bottom:678.173333pt;}
.y47{bottom:682.653333pt;}
.y122{bottom:686.813333pt;}
.y76{bottom:687.933333pt;}
.y77{bottom:694.653333pt;}
.y147{bottom:694.813333pt;}
.y1e{bottom:698.493333pt;}
.ye6{bottom:700.253333pt;}
.y18c{bottom:702.813333pt;}
.y46{bottom:705.533333pt;}
.y121{bottom:707.613333pt;}
.y75{bottom:710.813333pt;}
.ycf{bottom:717.533333pt;}
.y120{bottom:717.693333pt;}
.y146{bottom:717.853333pt;}
.y1d{bottom:719.453333pt;}
.y15f{bottom:720.413333pt;}
.ye5{bottom:725.213333pt;}
.y18b{bottom:725.853333pt;}
.y44{bottom:728.573333pt;}
.y74{bottom:733.853333pt;}
.y45{bottom:735.293333pt;}
.y11f{bottom:739.453333pt;}
.y1c{bottom:740.573333pt;}
.y145{bottom:743.453333pt;}
.y18a{bottom:748.733333pt;}
.ye4{bottom:750.333333pt;}
.y43{bottom:751.453333pt;}
.y73{bottom:756.733333pt;}
.y11c{bottom:761.213333pt;}
.y1b{bottom:761.533333pt;}
.yab{bottom:763.453333pt;}
.y179{bottom:766.333333pt;}
.y144{bottom:769.053333pt;}
.y1a6{bottom:771.773333pt;}
.y189{bottom:774.373333pt;}
.y41{bottom:774.533333pt;}
.ye0{bottom:775.333333pt;}
.y72{bottom:779.813333pt;}
.y42{bottom:781.253333pt;}
.y1a{bottom:782.693333pt;}
.y11e{bottom:782.853333pt;}
.y143{bottom:791.973333pt;}
.y1a5{bottom:794.693333pt;}
.y40{bottom:797.413333pt;}
.ydf{bottom:801.573333pt;}
.y71{bottom:802.693333pt;}
.y19{bottom:803.653333pt;}
.y118{bottom:804.613333pt;}
.yba{bottom:809.413333pt;}
.yde{bottom:809.573333pt;}
.y178{bottom:815.013333pt;}
.y142{bottom:817.733333pt;}
.y188{bottom:820.293333pt;}
.y3f{bottom:820.453333pt;}
.y18{bottom:824.453333pt;}
.y6f{bottom:825.733333pt;}
.y11b{bottom:826.373333pt;}
.ydd{bottom:828.773333pt;}
.y70{bottom:832.453333pt;}
.y141{bottom:840.613333pt;}
.y1a4{bottom:843.333333pt;}
.y17{bottom:844.293333pt;}
.y187{bottom:845.893333pt;}
.y11a{bottom:847.973333pt;}
.y6e{bottom:848.613333pt;}
.y3e{bottom:856.293333pt;}
.y177{bottom:863.493333pt;}
.y140{bottom:866.213333pt;}
.y16{bottom:867.173333pt;}
.y186{bottom:868.933333pt;}
.y113{bottom:869.733333pt;}
.y6d{bottom:871.493333pt;}
.yf8{bottom:878.213333pt;}
.y3d{bottom:878.373333pt;}
.y15e{bottom:889.253333pt;}
.y15{bottom:890.693333pt;}
.y117{bottom:891.493333pt;}
.y13f{bottom:891.813333pt;}
.y6c{bottom:894.533333pt;}
.y3c{bottom:897.573333pt;}
.ydc{bottom:901.253333pt;}
.y176{bottom:912.133333pt;}
.y116{bottom:913.093333pt;}
.y13e{bottom:914.853333pt;}
.y3b{bottom:916.773333pt;}
.y6b{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.yce{bottom:924.133333pt;}
.y115{bottom:934.853333pt;}
.y175{bottom:935.013333pt;}
.y3a{bottom:935.813333pt;}
.y15d{bottom:937.733333pt;}
.y6a{bottom:940.453333pt;}
.y13{bottom:944.293333pt;}
.ycd{bottom:947.173333pt;}
.y39{bottom:955.013333pt;}
.y111{bottom:956.613333pt;}
.y174{bottom:960.773333pt;}
.y69{bottom:963.333333pt;}
.y12{bottom:970.053333pt;}
.y38{bottom:974.213333pt;}
.y110{bottom:980.293333pt;}
.y68{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y98{bottom:993.093333pt;}
.y37{bottom:993.253333pt;}
.y1{bottom:1008.133333pt;}
.y67{bottom:1009.253333pt;}
.y36{bottom:1012.480000pt;}
.ycc{bottom:1016.000000pt;}
.y33{bottom:1069.760000pt;}
.h10{height:16.757812pt;}
.h16{height:20.960000pt;}
.h1b{height:20.992000pt;}
.h18{height:21.120000pt;}
.h11{height:24.320000pt;}
.h13{height:24.352000pt;}
.h14{height:24.480000pt;}
.hd{height:33.515625pt;}
.h7{height:38.672812pt;}
.hc{height:38.878125pt;}
.h1a{height:42.752000pt;}
.hf{height:44.531250pt;}
.h4{height:45.883437pt;}
.h15{height:49.440000pt;}
.h6{height:50.273438pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:55.635938pt;}
.h8{height:61.668750pt;}
.he{height:63.156250pt;}
.h19{height:64.480000pt;}
.h9{height:64.679063pt;}
.hb{height:67.031250pt;}
.h2{height:76.672000pt;}
.h17{height:86.240000pt;}
.h12{height:324.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w7{width:124.320000pt;}
.w8{width:145.626667pt;}
.wb{width:166.906667pt;}
.wc{width:202.426667pt;}
.wa{width:224.346667pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w9{width:332.226667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x73{left:24.960000pt;}
.x59{left:37.760000pt;}
.x5b{left:48.520000pt;}
.x71{left:59.200000pt;}
.x6f{left:87.674667pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.x11{left:98.591988pt;}
.x1f{left:102.591988pt;}
.x5e{left:104.191988pt;}
.x1e{left:113.471988pt;}
.x5d{left:119.706667pt;}
.x58{left:128.511988pt;}
.x26{left:139.226643pt;}
.x9{left:141.786655pt;}
.x6d{left:145.946655pt;}
.x27{left:148.506655pt;}
.x6b{left:150.106643pt;}
.x3a{left:160.026643pt;}
.x2{left:165.154667pt;}
.x3b{left:169.306655pt;}
.x42{left:172.986643pt;}
.x43{left:182.266655pt;}
.x20{left:190.266643pt;}
.x49{left:192.346643pt;}
.x69{left:194.106643pt;}
.x21{left:199.546655pt;}
.x4a{left:201.626655pt;}
.x6a{left:203.386655pt;}
.x60{left:204.506643pt;}
.x34{left:212.186643pt;}
.x2b{left:213.466643pt;}
.x5a{left:220.186667pt;}
.x35{left:221.466655pt;}
.x2c{left:222.746655pt;}
.x2a{left:226.746643pt;}
.x5f{left:231.386655pt;}
.x1a{left:236.506643pt;}
.x1b{left:241.146655pt;}
.x3c{left:265.346643pt;}
.x75{left:271.426655pt;}
.x16{left:273.026643pt;}
.x3d{left:274.626655pt;}
.x17{left:277.666655pt;}
.x65{left:285.666655pt;}
.x10{left:286.626655pt;}
.x4b{left:289.506643pt;}
.x18{left:291.746643pt;}
.x19{left:296.386655pt;}
.x2d{left:300.546655pt;}
.x28{left:321.506643pt;}
.x70{left:324.386667pt;}
.x50{left:330.626643pt;}
.x29{left:333.026655pt;}
.x51{left:339.906655pt;}
.x61{left:349.346643pt;}
.x12{left:358.786643pt;}
.x13{left:363.426655pt;}
.x5c{left:366.466667pt;}
.x6e{left:375.586655pt;}
.x66{left:379.586643pt;}
.x67{left:385.506643pt;}
.x3{left:389.666667pt;}
.x68{left:394.786655pt;}
.x7{left:396.866655pt;}
.x52{left:414.973310pt;}
.x6c{left:420.573322pt;}
.x53{left:424.253322pt;}
.x30{left:433.213310pt;}
.x5{left:434.813333pt;}
.x63{left:440.093310pt;}
.x31{left:447.293322pt;}
.x64{left:449.373322pt;}
.x44{left:466.813310pt;}
.xa{left:473.053310pt;}
.x45{left:476.093322pt;}
.xb{left:478.973322pt;}
.x3e{left:486.173310pt;}
.x72{left:492.093333pt;}
.x3f{left:495.453322pt;}
.x2e{left:498.173310pt;}
.x22{left:501.053310pt;}
.x2f{left:509.053322pt;}
.x23{left:510.333322pt;}
.x62{left:544.733310pt;}
.x1c{left:550.013310pt;}
.x14{left:550.973310pt;}
.x36{left:554.013310pt;}
.x15{left:555.613322pt;}
.x1d{left:559.453322pt;}
.x37{left:563.293322pt;}
.x74{left:564.413322pt;}
.x46{left:569.853310pt;}
.x32{left:575.613310pt;}
.x4c{left:576.573310pt;}
.x47{left:579.133322pt;}
.x33{left:584.933322pt;}
.x4d{left:587.813322pt;}
.x40{left:593.413322pt;}
.x56{left:594.693310pt;}
.x48{left:600.133310pt;}
.xe{left:603.973310pt;}
.xf{left:608.613322pt;}
.x57{left:610.693322pt;}
.x38{left:640.453310pt;}
.x39{left:649.733322pt;}
.x41{left:670.533310pt;}
.x24{left:675.973310pt;}
.x4e{left:678.693310pt;}
.x55{left:680.613322pt;}
.x54{left:682.213322pt;}
.x25{left:685.253322pt;}
.x4f{left:689.893322pt;}
.x6{left:690.853322pt;}
.xc{left:694.693310pt;}
.xd{left:699.333322pt;}
}




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