
    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_8f158ba49c47cecd104ec2fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_738afd61d5f3827a33ae3018.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_7b827e9a62c49e333f09c4db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9cbecf1bb291e9a1a9613317.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69760df0ca2c5a521458a8bb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7281f9ee3fed745149395d3f.woff')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_cebe7a332b2f8bd168270b19.woff')format("woff");}.ff7{font-family:ff7;line-height:4.457031;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_aa45a1d7a383237a68458028.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_277741054042552e6bb78bc2.woff')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;}
.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);}
.v3{vertical-align:-126.600000px;}
.vb{vertical-align:-103.260000px;}
.v13{vertical-align:-96.600000px;}
.v17{vertical-align:-64.200000px;}
.ve{vertical-align:-40.800000px;}
.vd{vertical-align:-26.400000px;}
.v1{vertical-align:-14.400000px;}
.v14{vertical-align:-9.600000px;}
.v9{vertical-align:-6.000000px;}
.v5{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.400000px;}
.vf{vertical-align:4.200000px;}
.v15{vertical-align:9.600000px;}
.v2{vertical-align:14.400000px;}
.v16{vertical-align:17.400000px;}
.v10{vertical-align:21.600000px;}
.va{vertical-align:24.000000px;}
.vc{vertical-align:26.460000px;}
.v19{vertical-align:32.400000px;}
.v18{vertical-align:36.600000px;}
.v7{vertical-align:40.200000px;}
.v8{vertical-align:48.060000px;}
.v6{vertical-align:54.600000px;}
.v12{vertical-align:74.400000px;}
.v11{vertical-align:92.400000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls1c{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.192000px;}
.ls2f{letter-spacing:-0.189000px;}
.lsf{letter-spacing:-0.168000px;}
.lsb{letter-spacing:-0.129000px;}
.ls46{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls31{letter-spacing:0.048000px;}
.ls20{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.081000px;}
.ls38{letter-spacing:0.084000px;}
.ls45{letter-spacing:0.093000px;}
.ls1e{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.099000px;}
.ls0{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls1b{letter-spacing:0.168000px;}
.ls4a{letter-spacing:0.192000px;}
.ls3b{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.264000px;}
.ls3a{letter-spacing:0.276000px;}
.ls2{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.336000px;}
.ls47{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.600000px;}
.ls1f{letter-spacing:1.500000px;}
.ls2b{letter-spacing:1.560000px;}
.ls34{letter-spacing:1.728000px;}
.ls42{letter-spacing:1.833000px;}
.ls2a{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.400000px;}
.ls1a{letter-spacing:2.871000px;}
.ls23{letter-spacing:2.931000px;}
.ls2c{letter-spacing:3.276000px;}
.ls25{letter-spacing:3.471000px;}
.ls19{letter-spacing:3.960000px;}
.ls2d{letter-spacing:4.614000px;}
.ls27{letter-spacing:4.797000px;}
.ls35{letter-spacing:5.085000px;}
.ls37{letter-spacing:5.145000px;}
.ls32{letter-spacing:7.104000px;}
.ls3f{letter-spacing:10.668000px;}
.ls3d{letter-spacing:10.728000px;}
.ls41{letter-spacing:10.788000px;}
.ls40{letter-spacing:10.944000px;}
.ls36{letter-spacing:15.720000px;}
.ls33{letter-spacing:15.756000px;}
.ls14{letter-spacing:15.792000px;}
.ls21{letter-spacing:19.071000px;}
.ls12{letter-spacing:19.920000px;}
.ls16{letter-spacing:20.100000px;}
.ls13{letter-spacing:20.196000px;}
.ls26{letter-spacing:20.397000px;}
.ls24{letter-spacing:20.421000px;}
.ls22{letter-spacing:21.099000px;}
.lse{letter-spacing:63.984000px;}
.ls18{letter-spacing:89.271000px;}
.ls29{letter-spacing:93.000000px;}
.ls49{letter-spacing:159.384000px;}
.ls4b{letter-spacing:159.534000px;}
.ls11{letter-spacing:160.800000px;}
.ls3c{letter-spacing:165.600000px;}
.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;}
}
.ws20{word-spacing:-18.216000px;}
.ws21{word-spacing:-18.192000px;}
.ws11{word-spacing:-18.168000px;}
.wse{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.832000px;}
.wsf{word-spacing:-17.784000px;}
.ws1a{word-spacing:-16.008000px;}
.ws16{word-spacing:-15.888000px;}
.wsa{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws18{word-spacing:-12.000000px;}
.wsc{word-spacing:-11.319000px;}
.ws15{word-spacing:-11.301000px;}
.ws13{word-spacing:-11.220000px;}
.wsb{word-spacing:-11.091000px;}
.ws14{word-spacing:-11.031000px;}
.ws1b{word-spacing:-10.560000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws1f{word-spacing:-10.464000px;}
.ws1d{word-spacing:-10.368000px;}
.ws1e{word-spacing:-7.353000px;}
.ws1c{word-spacing:-7.260000px;}
.wsd{word-spacing:0.000000px;}
.ws17{word-spacing:127.320000px;}
.ws19{word-spacing:766.371000px;}
._3f{margin-left:-46.674000px;}
._44{margin-left:-26.592000px;}
._4b{margin-left:-17.064000px;}
._3d{margin-left:-6.702000px;}
._17{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._b{width:2.910000px;}
._9{width:4.536000px;}
._5{width:5.826000px;}
._4{width:6.918000px;}
._6{width:8.274000px;}
._15{width:10.008000px;}
._c{width:11.832000px;}
._1d{width:13.104000px;}
._12{width:14.256000px;}
._f{width:16.128000px;}
._3e{width:17.364000px;}
._a{width:19.170000px;}
._7{width:20.304000px;}
._8{width:21.384000px;}
._10{width:23.328000px;}
._d{width:25.128000px;}
._e{width:26.628000px;}
._2a{width:27.936000px;}
._13{width:29.304000px;}
._14{width:30.528000px;}
._2c{width:31.752000px;}
._11{width:32.904000px;}
._18{width:34.416000px;}
._19{width:36.102000px;}
._30{width:37.224000px;}
._27{width:39.168000px;}
._26{width:40.176000px;}
._31{width:41.976000px;}
._38{width:43.200000px;}
._36{width:44.784000px;}
._2e{width:46.440000px;}
._23{width:47.520000px;}
._24{width:48.600000px;}
._2b{width:49.740000px;}
._1e{width:50.760000px;}
._1f{width:52.272000px;}
._29{width:53.424000px;}
._3b{width:54.432000px;}
._28{width:55.728000px;}
._2d{width:57.024000px;}
._48{width:58.248000px;}
._37{width:59.328000px;}
._3a{width:61.488000px;}
._40{width:62.496000px;}
._16{width:63.648000px;}
._33{width:66.024000px;}
._2f{width:67.968000px;}
._25{width:69.048000px;}
._1c{width:70.848000px;}
._43{width:71.886000px;}
._1a{width:74.304000px;}
._1b{width:75.744000px;}
._45{width:77.430000px;}
._32{width:80.280000px;}
._39{width:82.080000px;}
._34{width:84.024000px;}
._35{width:85.176000px;}
._22{width:89.928000px;}
._49{width:91.224000px;}
._4a{width:92.664000px;}
._46{width:97.200000px;}
._47{width:98.352000px;}
._41{width:105.696000px;}
._42{width:106.992000px;}
._3c{width:114.264000px;}
._20{width:124.560000px;}
._21{width:125.640000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y25{bottom:3.900000px;}
.y18d{bottom:4.650000px;}
.y194{bottom:4.800000px;}
.y1a4{bottom:5.100000px;}
.y7{bottom:5.400000px;}
.y191{bottom:5.550000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y129{bottom:6.900000px;}
.y12e{bottom:6.945000px;}
.y12b{bottom:7.050000px;}
.y19f{bottom:12.450000px;}
.y18c{bottom:12.600000px;}
.y1a6{bottom:12.750000px;}
.y127{bottom:18.900000px;}
.ya{bottom:19.950000px;}
.y1a1{bottom:20.400000px;}
.y6{bottom:20.550000px;}
.y1a7{bottom:20.700000px;}
.y196{bottom:20.850000px;}
.y192{bottom:21.000000px;}
.y19a{bottom:21.300000px;}
.y190{bottom:21.450000px;}
.y19b{bottom:21.600000px;}
.y28{bottom:24.600000px;}
.y24{bottom:24.750000px;}
.y19e{bottom:28.650000px;}
.y195{bottom:28.950000px;}
.y128{bottom:30.750000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y19d{bottom:36.450000px;}
.y1a5{bottom:36.750000px;}
.y1a3{bottom:36.900000px;}
.y193{bottom:37.050000px;}
.y18f{bottom:37.200000px;}
.y198{bottom:37.350000px;}
.y23{bottom:45.750000px;}
.y3{bottom:57.637500px;}
.y22{bottom:66.495000px;}
.y2{bottom:81.637500px;}
.y21{bottom:87.195000px;}
.y170{bottom:105.337500px;}
.yc4{bottom:106.237500px;}
.y20{bottom:107.895000px;}
.yf4{bottom:109.387500px;}
.y119{bottom:110.887500px;}
.y86{bottom:114.787500px;}
.y96{bottom:116.137500px;}
.y3d{bottom:116.437500px;}
.y1d2{bottom:118.387500px;}
.y167{bottom:118.687500px;}
.y125{bottom:121.837500px;}
.yae{bottom:123.787500px;}
.y18b{bottom:124.387500px;}
.yb4{bottom:124.987500px;}
.ybd{bottom:126.487500px;}
.y68{bottom:126.637500px;}
.y1f{bottom:128.595000px;}
.y16f{bottom:129.187500px;}
.yc3{bottom:130.087500px;}
.yf3{bottom:133.237500px;}
.y118{bottom:134.737500px;}
.y85{bottom:138.487500px;}
.y95{bottom:139.987500px;}
.y3c{bottom:140.287500px;}
.y1d1{bottom:142.237500px;}
.y166{bottom:142.387500px;}
.y124{bottom:145.687500px;}
.yd6{bottom:145.987500px;}
.yad{bottom:147.487500px;}
.y18a{bottom:148.237500px;}
.yb3{bottom:148.837500px;}
.y1e{bottom:149.295000px;}
.ybc{bottom:150.345000px;}
.y67{bottom:150.495000px;}
.y16e{bottom:153.045000px;}
.yc2{bottom:153.795000px;}
.yf2{bottom:156.945000px;}
.y117{bottom:158.580000px;}
.y84{bottom:162.330000px;}
.y94{bottom:163.845000px;}
.y3b{bottom:163.995000px;}
.y1d0{bottom:165.930000px;}
.y165{bottom:166.245000px;}
.y123{bottom:169.395000px;}
.yd5{bottom:169.695000px;}
.y1d{bottom:169.995000px;}
.yac{bottom:171.345000px;}
.y189{bottom:171.930000px;}
.yb2{bottom:172.680000px;}
.ybb{bottom:174.045000px;}
.y66{bottom:174.345000px;}
.y16d{bottom:176.745000px;}
.yc1{bottom:177.645000px;}
.yf1{bottom:180.795000px;}
.y116{bottom:182.295000px;}
.y83{bottom:186.180000px;}
.y93{bottom:187.545000px;}
.y3a{bottom:187.845000px;}
.y1cf{bottom:189.795000px;}
.y164{bottom:190.095000px;}
.y1c{bottom:190.695000px;}
.y122{bottom:193.245000px;}
.yd4{bottom:193.545000px;}
.y145{bottom:194.445000px;}
.yab{bottom:195.195000px;}
.y188{bottom:195.795000px;}
.yb1{bottom:196.395000px;}
.yba{bottom:197.895000px;}
.y65{bottom:198.195000px;}
.y16c{bottom:200.595000px;}
.yc0{bottom:201.495000px;}
.yf0{bottom:204.645000px;}
.y115{bottom:206.130000px;}
.y82{bottom:209.895000px;}
.y1b{bottom:211.395000px;}
.y39{bottom:211.695000px;}
.y1ce{bottom:213.645000px;}
.y163{bottom:213.795000px;}
.y121{bottom:217.095000px;}
.yd3{bottom:217.395000px;}
.y144{bottom:218.145000px;}
.yaa{bottom:218.880000px;}
.y1ae{bottom:219.630000px;}
.y187{bottom:219.795000px;}
.yb0{bottom:220.245000px;}
.yb9{bottom:221.745000px;}
.y64{bottom:221.895000px;}
.y16b{bottom:224.445000px;}
.ybf{bottom:225.345000px;}
.yef{bottom:228.645000px;}
.y114{bottom:229.995000px;}
.y1a{bottom:232.095000px;}
.y81{bottom:233.745000px;}
.y92{bottom:235.245000px;}
.y38{bottom:235.545000px;}
.y1cd{bottom:237.345000px;}
.y162{bottom:237.645000px;}
.yaf{bottom:240.195000px;}
.y120{bottom:240.795000px;}
.yd2{bottom:241.095000px;}
.y143{bottom:241.995000px;}
.ya9{bottom:242.745000px;}
.y1ad{bottom:243.495000px;}
.y186{bottom:243.795000px;}
.yb8{bottom:245.445000px;}
.y63{bottom:245.745000px;}
.y16a{bottom:248.145000px;}
.ybe{bottom:249.630000px;}
.y19{bottom:252.795000px;}
.y113{bottom:253.695000px;}
.yee{bottom:253.830000px;}
.y80{bottom:257.595000px;}
.y91{bottom:258.945000px;}
.y37{bottom:259.245000px;}
.y1cc{bottom:261.195000px;}
.y161{bottom:261.495000px;}
.y11f{bottom:264.645000px;}
.yd1{bottom:264.945000px;}
.y142{bottom:265.845000px;}
.ya8{bottom:266.580000px;}
.y185{bottom:267.645000px;}
.y1ac{bottom:267.795000px;}
.yb7{bottom:269.295000px;}
.y62{bottom:269.595000px;}
.y169{bottom:271.995000px;}
.y112{bottom:277.545000px;}
.yed{bottom:277.695000px;}
.y7f{bottom:281.295000px;}
.y90{bottom:282.795000px;}
.y36{bottom:283.095000px;}
.y1cb{bottom:285.045000px;}
.y160{bottom:285.195000px;}
.y11e{bottom:288.495000px;}
.yd0{bottom:288.795000px;}
.y141{bottom:289.545000px;}
.ya7{bottom:290.295000px;}
.y184{bottom:291.495000px;}
.y168{bottom:291.945000px;}
.yb6{bottom:293.130000px;}
.y61{bottom:293.295000px;}
.y111{bottom:301.395000px;}
.yec{bottom:301.545000px;}
.y7e{bottom:305.145000px;}
.y8f{bottom:306.630000px;}
.y35{bottom:306.945000px;}
.y1ca{bottom:308.895000px;}
.y15f{bottom:309.045000px;}
.y11d{bottom:312.195000px;}
.ycf{bottom:312.495000px;}
.yb5{bottom:312.945000px;}
.y140{bottom:313.380000px;}
.ya6{bottom:314.130000px;}
.y183{bottom:315.345000px;}
.y1ab{bottom:315.795000px;}
.y60{bottom:317.130000px;}
.y110{bottom:325.095000px;}
.yeb{bottom:325.545000px;}
.y7d{bottom:328.995000px;}
.y8e{bottom:330.345000px;}
.y34{bottom:330.630000px;}
.y1c9{bottom:332.595000px;}
.y15e{bottom:332.895000px;}
.y11c{bottom:336.045000px;}
.yce{bottom:336.345000px;}
.y13f{bottom:337.245000px;}
.ya5{bottom:337.995000px;}
.y182{bottom:339.045000px;}
.y1aa{bottom:339.495000px;}
.y5f{bottom:340.995000px;}
.y10f{bottom:348.945000px;}
.y7c{bottom:352.695000px;}
.y8d{bottom:354.195000px;}
.y33{bottom:354.495000px;}
.y1c8{bottom:356.445000px;}
.y15d{bottom:356.745000px;}
.y11b{bottom:359.895000px;}
.ycd{bottom:360.195000px;}
.y13e{bottom:360.945000px;}
.ya4{bottom:361.695000px;}
.y181{bottom:362.895000px;}
.y1a9{bottom:363.345000px;}
.y5e{bottom:364.695000px;}
.y10e{bottom:372.795000px;}
.y7b{bottom:376.545000px;}
.yea{bottom:377.145000px;}
.y8c{bottom:378.045000px;}
.y32{bottom:378.330000px;}
.y11a{bottom:379.875000px;}
.y1c7{bottom:380.325000px;}
.y15c{bottom:380.475000px;}
.ycc{bottom:384.075000px;}
.y13d{bottom:384.825000px;}
.ya3{bottom:385.575000px;}
.y180{bottom:386.775000px;}
.y1a8{bottom:387.225000px;}
.y5d{bottom:388.575000px;}
.y10d{bottom:396.525000px;}
.y7a{bottom:400.425000px;}
.ye9{bottom:401.025000px;}
.y8b{bottom:401.775000px;}
.y31{bottom:402.075000px;}
.y1c6{bottom:404.025000px;}
.y15b{bottom:404.325000px;}
.y1a2{bottom:404.775000px;}
.ycb{bottom:407.775000px;}
.y13c{bottom:408.675000px;}
.ya2{bottom:409.425000px;}
.y5c{bottom:412.425000px;}
.y17f{bottom:412.875000px;}
.y10c{bottom:420.375000px;}
.y79{bottom:424.275000px;}
.ye8{bottom:424.725000px;}
.y8a{bottom:425.625000px;}
.y30{bottom:425.925000px;}
.y1c5{bottom:427.875000px;}
.y15a{bottom:428.175000px;}
.yca{bottom:431.625000px;}
.y13b{bottom:432.375000px;}
.ya1{bottom:433.275000px;}
.y5b{bottom:436.125000px;}
.y17e{bottom:436.875000px;}
.y10b{bottom:444.225000px;}
.y78{bottom:447.975000px;}
.ye7{bottom:448.575000px;}
.y89{bottom:449.475000px;}
.y2f{bottom:449.775000px;}
.y1c4{bottom:451.725000px;}
.y159{bottom:451.875000px;}
.y1a0{bottom:453.675000px;}
.yc9{bottom:455.475000px;}
.y13a{bottom:456.225000px;}
.ya0{bottom:456.975000px;}
.y5a{bottom:459.975000px;}
.y17d{bottom:460.725000px;}
.y10a{bottom:468.075000px;}
.y77{bottom:471.825000px;}
.ye6{bottom:472.425000px;}
.y88{bottom:473.175000px;}
.y2e{bottom:473.475000px;}
.y1c3{bottom:475.425000px;}
.y158{bottom:475.725000px;}
.yc8{bottom:479.175000px;}
.y139{bottom:480.075000px;}
.y9f{bottom:480.825000px;}
.y59{bottom:483.825000px;}
.y19c{bottom:486.075000px;}
.y109{bottom:491.775000px;}
.y87{bottom:493.125000px;}
.y76{bottom:495.675000px;}
.ye5{bottom:496.125000px;}
.y2d{bottom:497.325000px;}
.y1c2{bottom:499.275000px;}
.y157{bottom:499.575000px;}
.yc7{bottom:503.025000px;}
.y138{bottom:503.775000px;}
.y9e{bottom:504.675000px;}
.y58{bottom:507.525000px;}
.y17c{bottom:510.975000px;}
.y108{bottom:515.625000px;}
.y75{bottom:519.375000px;}
.ye4{bottom:519.975000px;}
.y2c{bottom:521.175000px;}
.y1c1{bottom:523.125000px;}
.y156{bottom:523.275000px;}
.yc6{bottom:526.875000px;}
.y137{bottom:527.625000px;}
.y9d{bottom:528.375000px;}
.y57{bottom:531.375000px;}
.y199{bottom:534.525000px;}
.y17b{bottom:534.825000px;}
.y107{bottom:539.475000px;}
.y74{bottom:543.225000px;}
.ye3{bottom:543.825000px;}
.y2b{bottom:544.875000px;}
.y1c0{bottom:546.825000px;}
.y155{bottom:547.125000px;}
.y136{bottom:551.475000px;}
.y9c{bottom:552.225000px;}
.yc5{bottom:552.975000px;}
.y56{bottom:555.225000px;}
.y17a{bottom:558.525000px;}
.y106{bottom:563.175000px;}
.y73{bottom:567.075000px;}
.ye2{bottom:567.525000px;}
.y2a{bottom:568.725000px;}
.y1bf{bottom:570.675000px;}
.y154{bottom:570.975000px;}
.y135{bottom:575.325000px;}
.y9b{bottom:576.075000px;}
.y55{bottom:579.075000px;}
.y1d3{bottom:580.575000px;}
.y179{bottom:582.375000px;}
.y197{bottom:583.725000px;}
.y105{bottom:587.025000px;}
.y72{bottom:590.775000px;}
.ye1{bottom:591.375000px;}
.y1be{bottom:594.525000px;}
.y153{bottom:594.675000px;}
.y134{bottom:599.025000px;}
.y9a{bottom:599.775000px;}
.y29{bottom:601.425000px;}
.y54{bottom:602.775000px;}
.y178{bottom:606.225000px;}
.y104{bottom:610.875000px;}
.y71{bottom:614.625000px;}
.ye0{bottom:615.225000px;}
.y27{bottom:618.225000px;}
.y152{bottom:618.525000px;}
.y133{bottom:622.875000px;}
.y99{bottom:623.625000px;}
.y53{bottom:626.625000px;}
.y177{bottom:629.925000px;}
.y18e{bottom:633.075000px;}
.y103{bottom:634.575000px;}
.y70{bottom:638.475000px;}
.ydf{bottom:638.925000px;}
.y1bd{bottom:642.075000px;}
.y151{bottom:642.375000px;}
.y132{bottom:646.725000px;}
.y98{bottom:647.475000px;}
.y52{bottom:650.475000px;}
.y176{bottom:653.775000px;}
.y102{bottom:658.425000px;}
.y26{bottom:659.625000px;}
.y6f{bottom:662.175000px;}
.yde{bottom:662.775000px;}
.y1bc{bottom:665.925000px;}
.y150{bottom:666.075000px;}
.y97{bottom:667.275000px;}
.y131{bottom:670.425000px;}
.y51{bottom:674.175000px;}
.y175{bottom:677.625000px;}
.y18{bottom:680.325000px;}
.y101{bottom:682.275000px;}
.y6e{bottom:686.025000px;}
.ydd{bottom:688.875000px;}
.y1bb{bottom:689.775000px;}
.y14f{bottom:689.925000px;}
.y130{bottom:694.275000px;}
.y50{bottom:698.025000px;}
.y174{bottom:701.325000px;}
.y100{bottom:705.975000px;}
.y6d{bottom:709.875000px;}
.ydc{bottom:713.175000px;}
.y1ba{bottom:713.475000px;}
.y14e{bottom:713.775000px;}
.y12f{bottom:718.125000px;}
.y4f{bottom:721.875000px;}
.y173{bottom:725.175000px;}
.yff{bottom:729.825000px;}
.y1b9{bottom:733.425000px;}
.y6c{bottom:733.575000px;}
.y12d{bottom:735.675000px;}
.ydb{bottom:737.370000px;}
.y14d{bottom:737.520000px;}
.y172{bottom:745.320000px;}
.y4e{bottom:745.620000px;}
.yfe{bottom:753.720000px;}
.y6b{bottom:757.470000px;}
.y12c{bottom:760.170000px;}
.y14c{bottom:761.370000px;}
.yda{bottom:763.470000px;}
.y4d{bottom:769.470000px;}
.y171{bottom:770.970000px;}
.yfd{bottom:777.420000px;}
.y6a{bottom:781.320000px;}
.y12a{bottom:784.770000px;}
.y14b{bottom:785.220000px;}
.yd9{bottom:787.770000px;}
.y4c{bottom:793.320000px;}
.y69{bottom:801.270000px;}
.y14a{bottom:809.070000px;}
.y126{bottom:809.370000px;}
.yd8{bottom:814.170000px;}
.y1b8{bottom:815.820000px;}
.y4b{bottom:817.020000px;}
.yfc{bottom:825.120000px;}
.y149{bottom:832.770000px;}
.y1b7{bottom:840.120000px;}
.yd7{bottom:840.570000px;}
.y4a{bottom:840.870000px;}
.yfb{bottom:848.970000px;}
.y148{bottom:856.620000px;}
.y1b6{bottom:864.270000px;}
.y49{bottom:864.720000px;}
.yfa{bottom:872.670000px;}
.y147{bottom:880.470000px;}
.y1b5{bottom:887.970000px;}
.y48{bottom:888.420000px;}
.yf9{bottom:896.520000px;}
.y146{bottom:904.170000px;}
.y1b4{bottom:911.820000px;}
.y47{bottom:912.270000px;}
.yf8{bottom:920.370000px;}
.y1b3{bottom:935.670000px;}
.y46{bottom:936.120000px;}
.yf7{bottom:950.220000px;}
.y17{bottom:953.520000px;}
.y1b2{bottom:959.370000px;}
.y45{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.yf5{bottom:973.320000px;}
.y1b1{bottom:983.220000px;}
.y44{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.yf6{bottom:999.870000px;}
.y1b0{bottom:1007.070000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y1af{bottom:1031.070000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y3e{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h1b{height:23.737500px;}
.h1a{height:23.850000px;}
.h25{height:31.650000px;}
.h1f{height:31.800000px;}
.h11{height:41.400000px;}
.h6{height:45.300000px;}
.h24{height:47.085938px;}
.h20{height:47.109375px;}
.h19{height:47.550000px;}
.h23{height:47.700000px;}
.h26{height:48.150000px;}
.h21{height:48.450000px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.he{height:64.546875px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h1c{height:70.628906px;}
.hb{height:70.664062px;}
.h14{height:71.109375px;}
.ha{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:82.441406px;}
.h15{height:83.172656px;}
.h1e{height:87.372656px;}
.h13{height:111.972656px;}
.h22{height:122.648438px;}
.h17{height:130.313965px;}
.h27{height:159.248437px;}
.h18{height:163.064062px;}
.hf{height:183.972656px;}
.h1d{height:231.972656px;}
.h16{height:238.572656px;}
.hd{height:269.595000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:57.900000px;}
.wc{width:78.637500px;}
.we{width:82.650000px;}
.w10{width:84.787500px;}
.wf{width:84.900000px;}
.wa{width:89.700000px;}
.wb{width:142.387500px;}
.w9{width:158.280000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x32{left:8.250000px;}
.x33{left:9.450000px;}
.x9{left:12.435000px;}
.x31{left:14.850000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x34{left:52.350000px;}
.x22{left:69.599987px;}
.x27{left:78.749987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x2e{left:122.737500px;}
.xa{left:128.130000px;}
.x29{left:180.929987px;}
.x28{left:188.279987px;}
.x10{left:195.194987px;}
.x2b{left:202.395000px;}
.x2f{left:264.795000px;}
.x2c{left:292.845000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x30{left:350.445000px;}
.x12{left:439.124987px;}
.x21{left:441.824987px;}
.x1f{left:445.424987px;}
.x1d{left:457.274987px;}
.x16{left:472.274987px;}
.x23{left:484.274987px;}
.x25{left:487.424987px;}
.x1e{left:510.374987px;}
.x26{left:595.424987px;}
.x13{left:609.824987px;}
.x2d{left:611.474987px;}
.xc{left:625.425000px;}
.x2a{left:665.504987px;}
.x24{left:707.954987px;}
.xf{left:713.655000px;}
.x18{left:729.704987px;}
.x11{left:756.569987px;}
.x15{left:759.119987px;}
.x17{left:766.604987px;}
.x2{left:819.119987px;}
.x14{left:850.619987px;}
.x20{left:853.319987px;}
@media print{
.v3{vertical-align:-112.533333pt;}
.vb{vertical-align:-91.786667pt;}
.v13{vertical-align:-85.866667pt;}
.v17{vertical-align:-57.066667pt;}
.ve{vertical-align:-36.266667pt;}
.vd{vertical-align:-23.466667pt;}
.v1{vertical-align:-12.800000pt;}
.v14{vertical-align:-8.533333pt;}
.v9{vertical-align:-5.333333pt;}
.v5{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.133333pt;}
.vf{vertical-align:3.733333pt;}
.v15{vertical-align:8.533333pt;}
.v2{vertical-align:12.800000pt;}
.v16{vertical-align:15.466667pt;}
.v10{vertical-align:19.200000pt;}
.va{vertical-align:21.333333pt;}
.vc{vertical-align:23.520000pt;}
.v19{vertical-align:28.800000pt;}
.v18{vertical-align:32.533333pt;}
.v7{vertical-align:35.733333pt;}
.v8{vertical-align:42.720000pt;}
.v6{vertical-align:48.533333pt;}
.v12{vertical-align:66.133333pt;}
.v11{vertical-align:82.133333pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.170667pt;}
.ls2f{letter-spacing:-0.168000pt;}
.lsf{letter-spacing:-0.149333pt;}
.lsb{letter-spacing:-0.114667pt;}
.ls46{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls31{letter-spacing:0.042667pt;}
.ls20{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.072000pt;}
.ls38{letter-spacing:0.074667pt;}
.ls45{letter-spacing:0.082667pt;}
.ls1e{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.088000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1b{letter-spacing:0.149333pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls3a{letter-spacing:0.245333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.298667pt;}
.ls47{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:1.333333pt;}
.ls2b{letter-spacing:1.386667pt;}
.ls34{letter-spacing:1.536000pt;}
.ls42{letter-spacing:1.629333pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.133333pt;}
.ls1a{letter-spacing:2.552000pt;}
.ls23{letter-spacing:2.605333pt;}
.ls2c{letter-spacing:2.912000pt;}
.ls25{letter-spacing:3.085333pt;}
.ls19{letter-spacing:3.520000pt;}
.ls2d{letter-spacing:4.101333pt;}
.ls27{letter-spacing:4.264000pt;}
.ls35{letter-spacing:4.520000pt;}
.ls37{letter-spacing:4.573333pt;}
.ls32{letter-spacing:6.314667pt;}
.ls3f{letter-spacing:9.482667pt;}
.ls3d{letter-spacing:9.536000pt;}
.ls41{letter-spacing:9.589333pt;}
.ls40{letter-spacing:9.728000pt;}
.ls36{letter-spacing:13.973333pt;}
.ls33{letter-spacing:14.005333pt;}
.ls14{letter-spacing:14.037333pt;}
.ls21{letter-spacing:16.952000pt;}
.ls12{letter-spacing:17.706667pt;}
.ls16{letter-spacing:17.866667pt;}
.ls13{letter-spacing:17.952000pt;}
.ls26{letter-spacing:18.130667pt;}
.ls24{letter-spacing:18.152000pt;}
.ls22{letter-spacing:18.754667pt;}
.lse{letter-spacing:56.874667pt;}
.ls18{letter-spacing:79.352000pt;}
.ls29{letter-spacing:82.666667pt;}
.ls49{letter-spacing:141.674667pt;}
.ls4b{letter-spacing:141.808000pt;}
.ls11{letter-spacing:142.933333pt;}
.ls3c{letter-spacing:147.200000pt;}
.ws20{word-spacing:-16.192000pt;}
.ws21{word-spacing:-16.170667pt;}
.ws11{word-spacing:-16.149333pt;}
.wse{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.850667pt;}
.wsf{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-14.229333pt;}
.ws16{word-spacing:-14.122667pt;}
.wsa{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws18{word-spacing:-10.666667pt;}
.wsc{word-spacing:-10.061333pt;}
.ws15{word-spacing:-10.045333pt;}
.ws13{word-spacing:-9.973333pt;}
.wsb{word-spacing:-9.858667pt;}
.ws14{word-spacing:-9.805333pt;}
.ws1b{word-spacing:-9.386667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws1f{word-spacing:-9.301333pt;}
.ws1d{word-spacing:-9.216000pt;}
.ws1e{word-spacing:-6.536000pt;}
.ws1c{word-spacing:-6.453333pt;}
.wsd{word-spacing:0.000000pt;}
.ws17{word-spacing:113.173333pt;}
.ws19{word-spacing:681.218667pt;}
._3f{margin-left:-41.488000pt;}
._44{margin-left:-23.637333pt;}
._4b{margin-left:-15.168000pt;}
._3d{margin-left:-5.957333pt;}
._17{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._b{width:2.586667pt;}
._9{width:4.032000pt;}
._5{width:5.178667pt;}
._4{width:6.149333pt;}
._6{width:7.354667pt;}
._15{width:8.896000pt;}
._c{width:10.517333pt;}
._1d{width:11.648000pt;}
._12{width:12.672000pt;}
._f{width:14.336000pt;}
._3e{width:15.434667pt;}
._a{width:17.040000pt;}
._7{width:18.048000pt;}
._8{width:19.008000pt;}
._10{width:20.736000pt;}
._d{width:22.336000pt;}
._e{width:23.669333pt;}
._2a{width:24.832000pt;}
._13{width:26.048000pt;}
._14{width:27.136000pt;}
._2c{width:28.224000pt;}
._11{width:29.248000pt;}
._18{width:30.592000pt;}
._19{width:32.090667pt;}
._30{width:33.088000pt;}
._27{width:34.816000pt;}
._26{width:35.712000pt;}
._31{width:37.312000pt;}
._38{width:38.400000pt;}
._36{width:39.808000pt;}
._2e{width:41.280000pt;}
._23{width:42.240000pt;}
._24{width:43.200000pt;}
._2b{width:44.213333pt;}
._1e{width:45.120000pt;}
._1f{width:46.464000pt;}
._29{width:47.488000pt;}
._3b{width:48.384000pt;}
._28{width:49.536000pt;}
._2d{width:50.688000pt;}
._48{width:51.776000pt;}
._37{width:52.736000pt;}
._3a{width:54.656000pt;}
._40{width:55.552000pt;}
._16{width:56.576000pt;}
._33{width:58.688000pt;}
._2f{width:60.416000pt;}
._25{width:61.376000pt;}
._1c{width:62.976000pt;}
._43{width:63.898667pt;}
._1a{width:66.048000pt;}
._1b{width:67.328000pt;}
._45{width:68.826667pt;}
._32{width:71.360000pt;}
._39{width:72.960000pt;}
._34{width:74.688000pt;}
._35{width:75.712000pt;}
._22{width:79.936000pt;}
._49{width:81.088000pt;}
._4a{width:82.368000pt;}
._46{width:86.400000pt;}
._47{width:87.424000pt;}
._41{width:93.952000pt;}
._42{width:95.104000pt;}
._3c{width:101.568000pt;}
._20{width:110.720000pt;}
._21{width:111.680000pt;}
.fs8{font-size:29.333333pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y25{bottom:3.466667pt;}
.y18d{bottom:4.133333pt;}
.y194{bottom:4.266667pt;}
.y1a4{bottom:4.533333pt;}
.y7{bottom:4.800000pt;}
.y191{bottom:4.933333pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y129{bottom:6.133333pt;}
.y12e{bottom:6.173333pt;}
.y12b{bottom:6.266667pt;}
.y19f{bottom:11.066667pt;}
.y18c{bottom:11.200000pt;}
.y1a6{bottom:11.333333pt;}
.y127{bottom:16.800000pt;}
.ya{bottom:17.733333pt;}
.y1a1{bottom:18.133333pt;}
.y6{bottom:18.266667pt;}
.y1a7{bottom:18.400000pt;}
.y196{bottom:18.533333pt;}
.y192{bottom:18.666667pt;}
.y19a{bottom:18.933333pt;}
.y190{bottom:19.066667pt;}
.y19b{bottom:19.200000pt;}
.y28{bottom:21.866667pt;}
.y24{bottom:22.000000pt;}
.y19e{bottom:25.466667pt;}
.y195{bottom:25.733333pt;}
.y128{bottom:27.333333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y19d{bottom:32.400000pt;}
.y1a5{bottom:32.666667pt;}
.y1a3{bottom:32.800000pt;}
.y193{bottom:32.933333pt;}
.y18f{bottom:33.066667pt;}
.y198{bottom:33.200000pt;}
.y23{bottom:40.666667pt;}
.y3{bottom:51.233333pt;}
.y22{bottom:59.106667pt;}
.y2{bottom:72.566667pt;}
.y21{bottom:77.506667pt;}
.y170{bottom:93.633333pt;}
.yc4{bottom:94.433333pt;}
.y20{bottom:95.906667pt;}
.yf4{bottom:97.233333pt;}
.y119{bottom:98.566667pt;}
.y86{bottom:102.033333pt;}
.y96{bottom:103.233333pt;}
.y3d{bottom:103.500000pt;}
.y1d2{bottom:105.233333pt;}
.y167{bottom:105.500000pt;}
.y125{bottom:108.300000pt;}
.yae{bottom:110.033333pt;}
.y18b{bottom:110.566667pt;}
.yb4{bottom:111.100000pt;}
.ybd{bottom:112.433333pt;}
.y68{bottom:112.566667pt;}
.y1f{bottom:114.306667pt;}
.y16f{bottom:114.833333pt;}
.yc3{bottom:115.633333pt;}
.yf3{bottom:118.433333pt;}
.y118{bottom:119.766667pt;}
.y85{bottom:123.100000pt;}
.y95{bottom:124.433333pt;}
.y3c{bottom:124.700000pt;}
.y1d1{bottom:126.433333pt;}
.y166{bottom:126.566667pt;}
.y124{bottom:129.500000pt;}
.yd6{bottom:129.766667pt;}
.yad{bottom:131.100000pt;}
.y18a{bottom:131.766667pt;}
.yb3{bottom:132.300000pt;}
.y1e{bottom:132.706667pt;}
.ybc{bottom:133.640000pt;}
.y67{bottom:133.773333pt;}
.y16e{bottom:136.040000pt;}
.yc2{bottom:136.706667pt;}
.yf2{bottom:139.506667pt;}
.y117{bottom:140.960000pt;}
.y84{bottom:144.293333pt;}
.y94{bottom:145.640000pt;}
.y3b{bottom:145.773333pt;}
.y1d0{bottom:147.493333pt;}
.y165{bottom:147.773333pt;}
.y123{bottom:150.573333pt;}
.yd5{bottom:150.840000pt;}
.y1d{bottom:151.106667pt;}
.yac{bottom:152.306667pt;}
.y189{bottom:152.826667pt;}
.yb2{bottom:153.493333pt;}
.ybb{bottom:154.706667pt;}
.y66{bottom:154.973333pt;}
.y16d{bottom:157.106667pt;}
.yc1{bottom:157.906667pt;}
.yf1{bottom:160.706667pt;}
.y116{bottom:162.040000pt;}
.y83{bottom:165.493333pt;}
.y93{bottom:166.706667pt;}
.y3a{bottom:166.973333pt;}
.y1cf{bottom:168.706667pt;}
.y164{bottom:168.973333pt;}
.y1c{bottom:169.506667pt;}
.y122{bottom:171.773333pt;}
.yd4{bottom:172.040000pt;}
.y145{bottom:172.840000pt;}
.yab{bottom:173.506667pt;}
.y188{bottom:174.040000pt;}
.yb1{bottom:174.573333pt;}
.yba{bottom:175.906667pt;}
.y65{bottom:176.173333pt;}
.y16c{bottom:178.306667pt;}
.yc0{bottom:179.106667pt;}
.yf0{bottom:181.906667pt;}
.y115{bottom:183.226667pt;}
.y82{bottom:186.573333pt;}
.y1b{bottom:187.906667pt;}
.y39{bottom:188.173333pt;}
.y1ce{bottom:189.906667pt;}
.y163{bottom:190.040000pt;}
.y121{bottom:192.973333pt;}
.yd3{bottom:193.240000pt;}
.y144{bottom:193.906667pt;}
.yaa{bottom:194.560000pt;}
.y1ae{bottom:195.226667pt;}
.y187{bottom:195.373333pt;}
.yb0{bottom:195.773333pt;}
.yb9{bottom:197.106667pt;}
.y64{bottom:197.240000pt;}
.y16b{bottom:199.506667pt;}
.ybf{bottom:200.306667pt;}
.yef{bottom:203.240000pt;}
.y114{bottom:204.440000pt;}
.y1a{bottom:206.306667pt;}
.y81{bottom:207.773333pt;}
.y92{bottom:209.106667pt;}
.y38{bottom:209.373333pt;}
.y1cd{bottom:210.973333pt;}
.y162{bottom:211.240000pt;}
.yaf{bottom:213.506667pt;}
.y120{bottom:214.040000pt;}
.yd2{bottom:214.306667pt;}
.y143{bottom:215.106667pt;}
.ya9{bottom:215.773333pt;}
.y1ad{bottom:216.440000pt;}
.y186{bottom:216.706667pt;}
.yb8{bottom:218.173333pt;}
.y63{bottom:218.440000pt;}
.y16a{bottom:220.573333pt;}
.ybe{bottom:221.893333pt;}
.y19{bottom:224.706667pt;}
.y113{bottom:225.506667pt;}
.yee{bottom:225.626667pt;}
.y80{bottom:228.973333pt;}
.y91{bottom:230.173333pt;}
.y37{bottom:230.440000pt;}
.y1cc{bottom:232.173333pt;}
.y161{bottom:232.440000pt;}
.y11f{bottom:235.240000pt;}
.yd1{bottom:235.506667pt;}
.y142{bottom:236.306667pt;}
.ya8{bottom:236.960000pt;}
.y185{bottom:237.906667pt;}
.y1ac{bottom:238.040000pt;}
.yb7{bottom:239.373333pt;}
.y62{bottom:239.640000pt;}
.y169{bottom:241.773333pt;}
.y112{bottom:246.706667pt;}
.yed{bottom:246.840000pt;}
.y7f{bottom:250.040000pt;}
.y90{bottom:251.373333pt;}
.y36{bottom:251.640000pt;}
.y1cb{bottom:253.373333pt;}
.y160{bottom:253.506667pt;}
.y11e{bottom:256.440000pt;}
.yd0{bottom:256.706667pt;}
.y141{bottom:257.373333pt;}
.ya7{bottom:258.040000pt;}
.y184{bottom:259.106667pt;}
.y168{bottom:259.506667pt;}
.yb6{bottom:260.560000pt;}
.y61{bottom:260.706667pt;}
.y111{bottom:267.906667pt;}
.yec{bottom:268.040000pt;}
.y7e{bottom:271.240000pt;}
.y8f{bottom:272.560000pt;}
.y35{bottom:272.840000pt;}
.y1ca{bottom:274.573333pt;}
.y15f{bottom:274.706667pt;}
.y11d{bottom:277.506667pt;}
.ycf{bottom:277.773333pt;}
.yb5{bottom:278.173333pt;}
.y140{bottom:278.560000pt;}
.ya6{bottom:279.226667pt;}
.y183{bottom:280.306667pt;}
.y1ab{bottom:280.706667pt;}
.y60{bottom:281.893333pt;}
.y110{bottom:288.973333pt;}
.yeb{bottom:289.373333pt;}
.y7d{bottom:292.440000pt;}
.y8e{bottom:293.640000pt;}
.y34{bottom:293.893333pt;}
.y1c9{bottom:295.640000pt;}
.y15e{bottom:295.906667pt;}
.y11c{bottom:298.706667pt;}
.yce{bottom:298.973333pt;}
.y13f{bottom:299.773333pt;}
.ya5{bottom:300.440000pt;}
.y182{bottom:301.373333pt;}
.y1aa{bottom:301.773333pt;}
.y5f{bottom:303.106667pt;}
.y10f{bottom:310.173333pt;}
.y7c{bottom:313.506667pt;}
.y8d{bottom:314.840000pt;}
.y33{bottom:315.106667pt;}
.y1c8{bottom:316.840000pt;}
.y15d{bottom:317.106667pt;}
.y11b{bottom:319.906667pt;}
.ycd{bottom:320.173333pt;}
.y13e{bottom:320.840000pt;}
.ya4{bottom:321.506667pt;}
.y181{bottom:322.573333pt;}
.y1a9{bottom:322.973333pt;}
.y5e{bottom:324.173333pt;}
.y10e{bottom:331.373333pt;}
.y7b{bottom:334.706667pt;}
.yea{bottom:335.240000pt;}
.y8c{bottom:336.040000pt;}
.y32{bottom:336.293333pt;}
.y11a{bottom:337.666667pt;}
.y1c7{bottom:338.066667pt;}
.y15c{bottom:338.200000pt;}
.ycc{bottom:341.400000pt;}
.y13d{bottom:342.066667pt;}
.ya3{bottom:342.733333pt;}
.y180{bottom:343.800000pt;}
.y1a8{bottom:344.200000pt;}
.y5d{bottom:345.400000pt;}
.y10d{bottom:352.466667pt;}
.y7a{bottom:355.933333pt;}
.ye9{bottom:356.466667pt;}
.y8b{bottom:357.133333pt;}
.y31{bottom:357.400000pt;}
.y1c6{bottom:359.133333pt;}
.y15b{bottom:359.400000pt;}
.y1a2{bottom:359.800000pt;}
.ycb{bottom:362.466667pt;}
.y13c{bottom:363.266667pt;}
.ya2{bottom:363.933333pt;}
.y5c{bottom:366.600000pt;}
.y17f{bottom:367.000000pt;}
.y10c{bottom:373.666667pt;}
.y79{bottom:377.133333pt;}
.ye8{bottom:377.533333pt;}
.y8a{bottom:378.333333pt;}
.y30{bottom:378.600000pt;}
.y1c5{bottom:380.333333pt;}
.y15a{bottom:380.600000pt;}
.yca{bottom:383.666667pt;}
.y13b{bottom:384.333333pt;}
.ya1{bottom:385.133333pt;}
.y5b{bottom:387.666667pt;}
.y17e{bottom:388.333333pt;}
.y10b{bottom:394.866667pt;}
.y78{bottom:398.200000pt;}
.ye7{bottom:398.733333pt;}
.y89{bottom:399.533333pt;}
.y2f{bottom:399.800000pt;}
.y1c4{bottom:401.533333pt;}
.y159{bottom:401.666667pt;}
.y1a0{bottom:403.266667pt;}
.yc9{bottom:404.866667pt;}
.y13a{bottom:405.533333pt;}
.ya0{bottom:406.200000pt;}
.y5a{bottom:408.866667pt;}
.y17d{bottom:409.533333pt;}
.y10a{bottom:416.066667pt;}
.y77{bottom:419.400000pt;}
.ye6{bottom:419.933333pt;}
.y88{bottom:420.600000pt;}
.y2e{bottom:420.866667pt;}
.y1c3{bottom:422.600000pt;}
.y158{bottom:422.866667pt;}
.yc8{bottom:425.933333pt;}
.y139{bottom:426.733333pt;}
.y9f{bottom:427.400000pt;}
.y59{bottom:430.066667pt;}
.y19c{bottom:432.066667pt;}
.y109{bottom:437.133333pt;}
.y87{bottom:438.333333pt;}
.y76{bottom:440.600000pt;}
.ye5{bottom:441.000000pt;}
.y2d{bottom:442.066667pt;}
.y1c2{bottom:443.800000pt;}
.y157{bottom:444.066667pt;}
.yc7{bottom:447.133333pt;}
.y138{bottom:447.800000pt;}
.y9e{bottom:448.600000pt;}
.y58{bottom:451.133333pt;}
.y17c{bottom:454.200000pt;}
.y108{bottom:458.333333pt;}
.y75{bottom:461.666667pt;}
.ye4{bottom:462.200000pt;}
.y2c{bottom:463.266667pt;}
.y1c1{bottom:465.000000pt;}
.y156{bottom:465.133333pt;}
.yc6{bottom:468.333333pt;}
.y137{bottom:469.000000pt;}
.y9d{bottom:469.666667pt;}
.y57{bottom:472.333333pt;}
.y199{bottom:475.133333pt;}
.y17b{bottom:475.400000pt;}
.y107{bottom:479.533333pt;}
.y74{bottom:482.866667pt;}
.ye3{bottom:483.400000pt;}
.y2b{bottom:484.333333pt;}
.y1c0{bottom:486.066667pt;}
.y155{bottom:486.333333pt;}
.y136{bottom:490.200000pt;}
.y9c{bottom:490.866667pt;}
.yc5{bottom:491.533333pt;}
.y56{bottom:493.533333pt;}
.y17a{bottom:496.466667pt;}
.y106{bottom:500.600000pt;}
.y73{bottom:504.066667pt;}
.ye2{bottom:504.466667pt;}
.y2a{bottom:505.533333pt;}
.y1bf{bottom:507.266667pt;}
.y154{bottom:507.533333pt;}
.y135{bottom:511.400000pt;}
.y9b{bottom:512.066667pt;}
.y55{bottom:514.733333pt;}
.y1d3{bottom:516.066667pt;}
.y179{bottom:517.666667pt;}
.y197{bottom:518.866667pt;}
.y105{bottom:521.800000pt;}
.y72{bottom:525.133333pt;}
.ye1{bottom:525.666667pt;}
.y1be{bottom:528.466667pt;}
.y153{bottom:528.600000pt;}
.y134{bottom:532.466667pt;}
.y9a{bottom:533.133333pt;}
.y29{bottom:534.600000pt;}
.y54{bottom:535.800000pt;}
.y178{bottom:538.866667pt;}
.y104{bottom:543.000000pt;}
.y71{bottom:546.333333pt;}
.ye0{bottom:546.866667pt;}
.y27{bottom:549.533333pt;}
.y152{bottom:549.800000pt;}
.y133{bottom:553.666667pt;}
.y99{bottom:554.333333pt;}
.y53{bottom:557.000000pt;}
.y177{bottom:559.933333pt;}
.y18e{bottom:562.733333pt;}
.y103{bottom:564.066667pt;}
.y70{bottom:567.533333pt;}
.ydf{bottom:567.933333pt;}
.y1bd{bottom:570.733333pt;}
.y151{bottom:571.000000pt;}
.y132{bottom:574.866667pt;}
.y98{bottom:575.533333pt;}
.y52{bottom:578.200000pt;}
.y176{bottom:581.133333pt;}
.y102{bottom:585.266667pt;}
.y26{bottom:586.333333pt;}
.y6f{bottom:588.600000pt;}
.yde{bottom:589.133333pt;}
.y1bc{bottom:591.933333pt;}
.y150{bottom:592.066667pt;}
.y97{bottom:593.133333pt;}
.y131{bottom:595.933333pt;}
.y51{bottom:599.266667pt;}
.y175{bottom:602.333333pt;}
.y18{bottom:604.733333pt;}
.y101{bottom:606.466667pt;}
.y6e{bottom:609.800000pt;}
.ydd{bottom:612.333333pt;}
.y1bb{bottom:613.133333pt;}
.y14f{bottom:613.266667pt;}
.y130{bottom:617.133333pt;}
.y50{bottom:620.466667pt;}
.y174{bottom:623.400000pt;}
.y100{bottom:627.533333pt;}
.y6d{bottom:631.000000pt;}
.ydc{bottom:633.933333pt;}
.y1ba{bottom:634.200000pt;}
.y14e{bottom:634.466667pt;}
.y12f{bottom:638.333333pt;}
.y4f{bottom:641.666667pt;}
.y173{bottom:644.600000pt;}
.yff{bottom:648.733333pt;}
.y1b9{bottom:651.933333pt;}
.y6c{bottom:652.066667pt;}
.y12d{bottom:653.933333pt;}
.ydb{bottom:655.440000pt;}
.y14d{bottom:655.573333pt;}
.y172{bottom:662.506667pt;}
.y4e{bottom:662.773333pt;}
.yfe{bottom:669.973333pt;}
.y6b{bottom:673.306667pt;}
.y12c{bottom:675.706667pt;}
.y14c{bottom:676.773333pt;}
.yda{bottom:678.640000pt;}
.y4d{bottom:683.973333pt;}
.y171{bottom:685.306667pt;}
.yfd{bottom:691.040000pt;}
.y6a{bottom:694.506667pt;}
.y12a{bottom:697.573333pt;}
.y14b{bottom:697.973333pt;}
.yd9{bottom:700.240000pt;}
.y4c{bottom:705.173333pt;}
.y69{bottom:712.240000pt;}
.y14a{bottom:719.173333pt;}
.y126{bottom:719.440000pt;}
.yd8{bottom:723.706667pt;}
.y1b8{bottom:725.173333pt;}
.y4b{bottom:726.240000pt;}
.yfc{bottom:733.440000pt;}
.y149{bottom:740.240000pt;}
.y1b7{bottom:746.773333pt;}
.yd7{bottom:747.173333pt;}
.y4a{bottom:747.440000pt;}
.yfb{bottom:754.640000pt;}
.y148{bottom:761.440000pt;}
.y1b6{bottom:768.240000pt;}
.y49{bottom:768.640000pt;}
.yfa{bottom:775.706667pt;}
.y147{bottom:782.640000pt;}
.y1b5{bottom:789.306667pt;}
.y48{bottom:789.706667pt;}
.yf9{bottom:796.906667pt;}
.y146{bottom:803.706667pt;}
.y1b4{bottom:810.506667pt;}
.y47{bottom:810.906667pt;}
.yf8{bottom:818.106667pt;}
.y1b3{bottom:831.706667pt;}
.y46{bottom:832.106667pt;}
.yf7{bottom:844.640000pt;}
.y17{bottom:847.573333pt;}
.y1b2{bottom:852.773333pt;}
.y45{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.yf5{bottom:865.173333pt;}
.y1b1{bottom:873.973333pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.yf6{bottom:888.773333pt;}
.y1b0{bottom:895.173333pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y1af{bottom:916.506667pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y3e{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h1b{height:21.100000pt;}
.h1a{height:21.200000pt;}
.h25{height:28.133333pt;}
.h1f{height:28.266667pt;}
.h11{height:36.800000pt;}
.h6{height:40.266667pt;}
.h24{height:41.854167pt;}
.h20{height:41.875000pt;}
.h19{height:42.266667pt;}
.h23{height:42.400000pt;}
.h26{height:42.800000pt;}
.h21{height:43.066667pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.he{height:57.375000pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1c{height:62.781250pt;}
.hb{height:62.812500pt;}
.h14{height:63.208333pt;}
.ha{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:73.281250pt;}
.h15{height:73.931250pt;}
.h1e{height:77.664583pt;}
.h13{height:99.531250pt;}
.h22{height:109.020833pt;}
.h17{height:115.834635pt;}
.h27{height:141.554167pt;}
.h18{height:144.945833pt;}
.hf{height:163.531250pt;}
.h1d{height:206.197917pt;}
.h16{height:212.064583pt;}
.hd{height:239.640000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:51.466667pt;}
.wc{width:69.900000pt;}
.we{width:73.466667pt;}
.w10{width:75.366667pt;}
.wf{width:75.466667pt;}
.wa{width:79.733333pt;}
.wb{width:126.566667pt;}
.w9{width:140.693333pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x32{left:7.333333pt;}
.x33{left:8.400000pt;}
.x9{left:11.053333pt;}
.x31{left:13.200000pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x34{left:46.533333pt;}
.x22{left:61.866655pt;}
.x27{left:69.999988pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x2e{left:109.100000pt;}
.xa{left:113.893333pt;}
.x29{left:160.826655pt;}
.x28{left:167.359988pt;}
.x10{left:173.506655pt;}
.x2b{left:179.906667pt;}
.x2f{left:235.373333pt;}
.x2c{left:260.306667pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x30{left:311.506667pt;}
.x12{left:390.333322pt;}
.x21{left:392.733322pt;}
.x1f{left:395.933322pt;}
.x1d{left:406.466655pt;}
.x16{left:419.799988pt;}
.x23{left:430.466655pt;}
.x25{left:433.266655pt;}
.x1e{left:453.666655pt;}
.x26{left:529.266655pt;}
.x13{left:542.066655pt;}
.x2d{left:543.533322pt;}
.xc{left:555.933333pt;}
.x2a{left:591.559988pt;}
.x24{left:629.293322pt;}
.xf{left:634.360000pt;}
.x18{left:648.626655pt;}
.x11{left:672.506655pt;}
.x15{left:674.773322pt;}
.x17{left:681.426655pt;}
.x2{left:728.106655pt;}
.x14{left:756.106655pt;}
.x20{left:758.506655pt;}
}




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