
    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_8b1ed55b64d0c0de54d65f32.woff2')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_c25c4a4fd73d2485c443a75a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_10b487356cff116a1137d256.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c7f29818f1858a45e6e92a39.woff2')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_2b0e15a9dedf98416d4f506a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_324fa0436ea2162a6929a408.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_144d6f65c2a50dabd74c4d05.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_340c86e1696ac696dc57f85d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_6107d6d42ed3f922427f9886.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f655f2641985772d29564212.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_048006c07123528897b2fa0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fdf7181865eb736bbd514b3b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_252795a23138b495ca58b4b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9c3de46e61b415c6780a122b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250034,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250034,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250034,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-80.165247px;}
.v5{vertical-align:-66.971991px;}
.v7{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-13.191471px;}
.v3{vertical-align:-5.760000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.255000px;}
.lse{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.131400px;}
.ls1c{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.178800px;}
.ls19{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.289440px;}
.ls1a{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.008719px;}
.lsd{letter-spacing:1.103040px;}
.lsf{letter-spacing:1.440000px;}
.ls22{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.880000px;}
.ls1f{letter-spacing:5.040000px;}
.ls26{letter-spacing:6.480000px;}
.ls13{letter-spacing:8.640000px;}
.ls1b{letter-spacing:9.762742px;}
.ls20{letter-spacing:10.800000px;}
.ls1e{letter-spacing:24.480000px;}
.ls27{letter-spacing:28.080000px;}
.ls23{letter-spacing:39.600000px;}
.ls24{letter-spacing:50.400000px;}
.ls28{letter-spacing:58.500000px;}
.lsc{letter-spacing:588.014750px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.041280px;}
.wsd{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.424000px;}
.wsa{word-spacing:-16.616433px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws12{word-spacing:-14.833200px;}
.ws14{word-spacing:-13.538304px;}
.ws13{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.593681px;}
.ws2{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.349440px;}
.wse{word-spacing:-12.241200px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.618800px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:-10.185000px;}
.ws11{word-spacing:-9.720000px;}
.ws19{word-spacing:-0.305086px;}
.ws17{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws16{word-spacing:139.353240px;}
.ws15{word-spacing:169.330368px;}
.ws1a{word-spacing:286.695977px;}
._52{margin-left:-4.032000px;}
._51{margin-left:-2.880000px;}
._0{margin-left:-1.345920px;}
._3{width:1.135440px;}
._11{width:2.232000px;}
._8{width:4.106880px;}
._9{width:5.121600px;}
._b{width:6.219360px;}
._a{width:7.454400px;}
._e{width:8.516640px;}
._5{width:9.538560px;}
._c{width:10.929600px;}
._7{width:12.055680px;}
._6{width:13.512960px;}
._d{width:14.747520px;}
._12{width:15.996480px;}
._4{width:17.896560px;}
._24{width:19.633920px;}
._1d{width:20.664000px;}
._3e{width:21.888000px;}
._2a{width:22.944000px;}
._1c{width:24.048000px;}
._13{width:25.200000px;}
._14{width:26.352000px;}
._3a{width:27.360000px;}
._33{width:28.512000px;}
._45{width:29.520000px;}
._f{width:30.528000px;}
._10{width:31.680000px;}
._15{width:32.904000px;}
._44{width:34.272000px;}
._1f{width:35.568000px;}
._20{width:36.792000px;}
._16{width:38.088000px;}
._17{width:39.168000px;}
._1e{width:40.248000px;}
._21{width:41.328000px;}
._18{width:42.552000px;}
._19{width:44.208000px;}
._2b{width:45.360000px;}
._34{width:46.728000px;}
._2d{width:48.096000px;}
._39{width:49.608000px;}
._25{width:50.976000px;}
._43{width:52.128000px;}
._22{width:53.136000px;}
._23{width:54.216000px;}
._48{width:55.312560px;}
._41{width:56.520000px;}
._42{width:57.816000px;}
._50{width:58.944000px;}
._47{width:60.262080px;}
._46{width:61.321920px;}
._3f{width:62.928000px;}
._40{width:64.008000px;}
._54{width:65.088000px;}
._49{width:66.118080px;}
._35{width:67.729920px;}
._1a{width:69.192000px;}
._1b{width:70.936560px;}
._26{width:71.966880px;}
._4f{width:73.224000px;}
._2c{width:75.384000px;}
._53{width:76.608000px;}
._58{width:77.976000px;}
._59{width:79.200000px;}
._32{width:81.144000px;}
._4a{width:82.240560px;}
._38{width:83.952000px;}
._30{width:85.248000px;}
._31{width:86.256000px;}
._5d{width:87.408000px;}
._6a{width:88.416000px;}
._6b{width:90.252000px;}
._69{width:92.648160px;}
._68{width:93.793920px;}
._36{width:94.824000px;}
._37{width:95.832000px;}
._5f{width:97.992000px;}
._3b{width:99.648000px;}
._27{width:101.448000px;}
._3d{width:107.136000px;}
._4d{width:110.088000px;}
._5b{width:112.032000px;}
._6d{width:114.912000px;}
._67{width:117.877920px;}
._71{width:121.032000px;}
._6e{width:127.390080px;}
._57{width:128.785920px;}
._2f{width:129.888000px;}
._5a{width:136.368000px;}
._2e{width:137.808000px;}
._3c{width:147.888000px;}
._4e{width:150.264000px;}
._63{width:152.568000px;}
._62{width:153.877920px;}
._6c{width:159.480000px;}
._55{width:167.568672px;}
._65{width:168.840000px;}
._64{width:173.448000px;}
._66{width:177.408000px;}
._4b{width:180.432000px;}
._4c{width:181.944000px;}
._70{width:196.848000px;}
._6f{width:198.504000px;}
._29{width:204.984000px;}
._28{width:269.280000px;}
._56{width:312.212714px;}
._60{width:320.292000px;}
._5e{width:322.105920px;}
._5c{width:360.252000px;}
._61{width:445.824000px;}
._2{width:865.020000px;}
._1{width:872.439840px;}
.fc5{color:rgb(0,120,212);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(209,52,56);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fse{font-size:39.521185px;}
.fs6{font-size:41.760000px;}
.fsd{font-size:43.583670px;}
.fsc{font-size:43.589543px;}
.fs8{font-size:45.301012px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:59.771342px;}
.fsb{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:3.240000px;}
.y104{bottom:3.960000px;}
.y100{bottom:3.990000px;}
.y10b{bottom:4.860000px;}
.y88{bottom:5.798568px;}
.y10f{bottom:5.940000px;}
.y149{bottom:7.020000px;}
.y131{bottom:10.800000px;}
.y102{bottom:11.160000px;}
.y116{bottom:12.240000px;}
.y118{bottom:12.420000px;}
.y112{bottom:12.780000px;}
.y114{bottom:16.560000px;}
.y172{bottom:16.734751px;}
.y10d{bottom:21.060000px;}
.y12b{bottom:21.240000px;}
.y167{bottom:24.585000px;}
.yfe{bottom:24.660000px;}
.y11b{bottom:24.690000px;}
.y148{bottom:30.960000px;}
.y111{bottom:33.480000px;}
.y12a{bottom:41.985000px;}
.y165{bottom:43.770000px;}
.y169{bottom:46.375623px;}
.y86{bottom:50.666350px;}
.y147{bottom:54.720000px;}
.y3{bottom:57.420000px;}
.y15e{bottom:63.255000px;}
.y16b{bottom:65.398832px;}
.yfd{bottom:66.060000px;}
.y89{bottom:71.576538px;}
.y2{bottom:77.580000px;}
.y146{bottom:78.480000px;}
.y16c{bottom:80.655173px;}
.y108{bottom:88.380000px;}
.y16a{bottom:101.298455px;}
.y15f{bottom:101.730000px;}
.y145{bottom:102.240000px;}
.y183{bottom:114.480000px;}
.y1a1{bottom:117.720000px;}
.y85{bottom:119.160000px;}
.y87{bottom:121.844182px;}
.y3d{bottom:122.220000px;}
.yad{bottom:123.120000px;}
.y11c{bottom:124.920000px;}
.y68{bottom:126.180000px;}
.y1ad{bottom:126.540000px;}
.yc7{bottom:131.760000px;}
.y2f{bottom:133.920000px;}
.y15a{bottom:135.180000px;}
.y182{bottom:138.240000px;}
.y1a0{bottom:138.420000px;}
.y16d{bottom:138.772141px;}
.y144{bottom:139.500000px;}
.y160{bottom:140.220000px;}
.y171{bottom:140.527820px;}
.y1ea{bottom:140.940000px;}
.y84{bottom:142.920000px;}
.y3c{bottom:145.980000px;}
.yac{bottom:146.880000px;}
.y1ac{bottom:147.240000px;}
.yf1{bottom:149.760000px;}
.y67{bottom:150.120000px;}
.yc6{bottom:155.700000px;}
.y143{bottom:156.780000px;}
.y2e{bottom:157.680000px;}
.y159{bottom:158.940000px;}
.y19f{bottom:159.120000px;}
.y181{bottom:162.000000px;}
.y83{bottom:166.680000px;}
.y170{bottom:166.681545px;}
.y11a{bottom:167.040000px;}
.y1ab{bottom:167.970000px;}
.y3b{bottom:169.770000px;}
.yab{bottom:170.670000px;}
.y1e9{bottom:172.650000px;}
.yf0{bottom:173.730000px;}
.y66{bottom:173.910000px;}
.y142{bottom:174.060000px;}
.y161{bottom:178.665000px;}
.yc5{bottom:179.490000px;}
.y2d{bottom:181.650000px;}
.y128{bottom:182.730000px;}
.y166{bottom:182.805000px;}
.y158{bottom:182.910000px;}
.y180{bottom:185.790000px;}
.y82{bottom:190.650000px;}
.y141{bottom:191.340000px;}
.y19e{bottom:191.910000px;}
.y3a{bottom:193.530000px;}
.yaa{bottom:194.430000px;}
.y13d{bottom:196.770000px;}
.y16e{bottom:196.891531px;}
.yef{bottom:197.490000px;}
.y65{bottom:197.670000px;}
.y1aa{bottom:200.550000px;}
.yc4{bottom:203.250000px;}
.y2c{bottom:205.410000px;}
.y157{bottom:206.670000px;}
.y140{bottom:208.440000px;}
.y119{bottom:209.190000px;}
.y17f{bottom:209.730000px;}
.y19d{bottom:212.610000px;}
.y81{bottom:214.410000px;}
.y162{bottom:217.155000px;}
.y39{bottom:217.470000px;}
.ya9{bottom:218.190000px;}
.yee{bottom:221.250000px;}
.y64{bottom:221.430000px;}
.y13f{bottom:225.765000px;}
.yc3{bottom:227.010000px;}
.y2b{bottom:229.170000px;}
.y156{bottom:230.430000px;}
.y19c{bottom:233.310000px;}
.y17e{bottom:233.490000px;}
.y1d4{bottom:237.990000px;}
.y80{bottom:238.170000px;}
.y38{bottom:241.230000px;}
.y1a9{bottom:241.950000px;}
.ya8{bottom:242.130000px;}
.y13e{bottom:243.045000px;}
.yed{bottom:245.010000px;}
.y63{bottom:245.190000px;}
.yc2{bottom:250.950000px;}
.y117{bottom:251.310000px;}
.y2a{bottom:252.930000px;}
.y19b{bottom:254.010000px;}
.y155{bottom:254.190000px;}
.y16f{bottom:255.010921px;}
.y163{bottom:255.600000px;}
.y17d{bottom:257.250000px;}
.y1d3{bottom:258.690000px;}
.y15d{bottom:261.105000px;}
.y7f{bottom:261.930000px;}
.y1a8{bottom:262.650000px;}
.y37{bottom:264.990000px;}
.ya7{bottom:265.890000px;}
.y1e8{bottom:267.510000px;}
.yec{bottom:268.950000px;}
.y62{bottom:269.130000px;}
.yc1{bottom:274.710000px;}
.y29{bottom:276.870000px;}
.y15c{bottom:277.665000px;}
.y154{bottom:277.950000px;}
.y1d2{bottom:279.390000px;}
.y17c{bottom:281.010000px;}
.y115{bottom:281.190000px;}
.y1a7{bottom:283.350000px;}
.y7e{bottom:285.870000px;}
.y1e7{bottom:288.210000px;}
.y36{bottom:288.750000px;}
.ya6{bottom:289.650000px;}
.yeb{bottom:292.710000px;}
.y61{bottom:292.890000px;}
.y164{bottom:294.090000px;}
.y19a{bottom:295.410000px;}
.yc0{bottom:298.470000px;}
.y1d1{bottom:300.090000px;}
.y28{bottom:300.630000px;}
.y153{bottom:301.890000px;}
.y1a6{bottom:304.050000px;}
.y17b{bottom:304.950000px;}
.y1e6{bottom:308.910000px;}
.y7d{bottom:309.630000px;}
.y113{bottom:311.070000px;}
.y35{bottom:312.690000px;}
.ya5{bottom:313.410000px;}
.y199{bottom:316.110000px;}
.yea{bottom:316.470000px;}
.y60{bottom:316.650000px;}
.y1d0{bottom:320.790000px;}
.ybf{bottom:322.230000px;}
.y27{bottom:324.390000px;}
.y152{bottom:325.650000px;}
.y17a{bottom:328.710000px;}
.y1e5{bottom:329.610000px;}
.y7c{bottom:333.390000px;}
.y34{bottom:336.450000px;}
.y198{bottom:336.810000px;}
.ya4{bottom:337.350000px;}
.ye9{bottom:340.230000px;}
.y5f{bottom:340.410000px;}
.y110{bottom:345.090000px;}
.ybe{bottom:346.170000px;}
.y26{bottom:348.150000px;}
.y151{bottom:349.410000px;}
.y1e4{bottom:350.310000px;}
.y179{bottom:352.470000px;}
.y1cf{bottom:353.550000px;}
.y7b{bottom:357.150000px;}
.y197{bottom:357.510000px;}
.y33{bottom:360.210000px;}
.yca{bottom:361.110000px;}
.ye8{bottom:364.170000px;}
.y5e{bottom:364.350000px;}
.ybd{bottom:369.930000px;}
.y25{bottom:372.090000px;}
.ya3{bottom:373.170000px;}
.y1ce{bottom:374.250000px;}
.y178{bottom:376.230000px;}
.y196{bottom:378.210000px;}
.y7a{bottom:381.090000px;}
.y1e3{bottom:382.890000px;}
.y32{bottom:383.970000px;}
.yc9{bottom:384.870000px;}
.ye7{bottom:387.930000px;}
.y5d{bottom:388.110000px;}
.ybc{bottom:393.690000px;}
.y1cd{bottom:394.950000px;}
.y24{bottom:395.850000px;}
.y10e{bottom:396.030000px;}
.ya2{bottom:396.930000px;}
.y150{bottom:397.110000px;}
.y1a5{bottom:398.910000px;}
.y177{bottom:400.170000px;}
.y1e2{bottom:403.590000px;}
.y79{bottom:404.850000px;}
.y31{bottom:407.730000px;}
.y195{bottom:410.970000px;}
.ye6{bottom:411.690000px;}
.y5c{bottom:411.870000px;}
.y1cc{bottom:415.695000px;}
.ybb{bottom:417.495000px;}
.y10c{bottom:419.475000px;}
.y23{bottom:419.655000px;}
.ya1{bottom:420.735000px;}
.y14f{bottom:420.915000px;}
.y176{bottom:423.975000px;}
.y1e1{bottom:424.335000px;}
.y78{bottom:428.655000px;}
.y30{bottom:431.715000px;}
.ye5{bottom:435.495000px;}
.y5b{bottom:435.675000px;}
.y1cb{bottom:436.395000px;}
.y1a4{bottom:440.355000px;}
.ya0{bottom:444.495000px;}
.y14e{bottom:444.675000px;}
.y1e0{bottom:445.035000px;}
.y175{bottom:447.735000px;}
.y77{bottom:452.415000px;}
.y22{bottom:455.475000px;}
.yba{bottom:456.375000px;}
.y1ca{bottom:457.095000px;}
.y10a{bottom:457.995000px;}
.ye4{bottom:459.435000px;}
.y5a{bottom:459.615000px;}
.y1df{bottom:465.735000px;}
.y9f{bottom:468.435000px;}
.y174{bottom:471.495000px;}
.y14d{bottom:471.855000px;}
.y168{bottom:471.900000px;}
.y194{bottom:473.115000px;}
.y76{bottom:476.175000px;}
.y1c9{bottom:477.795000px;}
.yb9{bottom:480.135000px;}
.y107{bottom:480.315000px;}
.ye3{bottom:483.195000px;}
.y59{bottom:483.375000px;}
.y13c{bottom:489.315000px;}
.y9e{bottom:492.195000px;}
.y193{bottom:493.815000px;}
.y173{bottom:495.435000px;}
.y21{bottom:497.235000px;}
.y1c8{bottom:498.495000px;}
.y75{bottom:500.115000px;}
.y109{bottom:501.915000px;}
.yb8{bottom:503.895000px;}
.ye2{bottom:506.955000px;}
.y13b{bottom:510.015000px;}
.y192{bottom:514.515000px;}
.y9d{bottom:515.955000px;}
.y20{bottom:516.315000px;}
.y58{bottom:519.195000px;}
.y74{bottom:523.875000px;}
.yb7{bottom:527.835000px;}
.ye1{bottom:530.715000px;}
.y1c7{bottom:531.255000px;}
.y1a3{bottom:535.215000px;}
.y1f{bottom:535.395000px;}
.y9c{bottom:539.715000px;}
.y1de{bottom:539.895000px;}
.y57{bottom:542.955000px;}
.y106{bottom:544.035000px;}
.y191{bottom:547.095000px;}
.y73{bottom:547.635000px;}
.y13a{bottom:551.415000px;}
.yb6{bottom:551.595000px;}
.y1c6{bottom:551.955000px;}
.y1e{bottom:554.295000px;}
.ye0{bottom:554.655000px;}
.y1dd{bottom:560.595000px;}
.y9b{bottom:563.655000px;}
.y56{bottom:566.715000px;}
.y190{bottom:567.795000px;}
.y72{bottom:571.395000px;}
.y139{bottom:572.115000px;}
.y1c5{bottom:572.655000px;}
.y1d{bottom:573.195000px;}
.ydf{bottom:578.415000px;}
.y105{bottom:586.155000px;}
.y9a{bottom:587.415000px;}
.y18f{bottom:588.495000px;}
.y55{bottom:590.655000px;}
.y1c{bottom:592.275000px;}
.y138{bottom:592.815000px;}
.y1c4{bottom:593.355000px;}
.y71{bottom:595.335000px;}
.yde{bottom:602.175000px;}
.y103{bottom:607.575000px;}
.y18e{bottom:609.195000px;}
.y1b{bottom:611.175000px;}
.y137{bottom:613.515000px;}
.y1c3{bottom:614.055000px;}
.y54{bottom:614.415000px;}
.y70{bottom:619.095000px;}
.ydd{bottom:625.935000px;}
.y101{bottom:628.995000px;}
.y18d{bottom:629.895000px;}
.y1a{bottom:630.255000px;}
.y136{bottom:634.215000px;}
.y1c2{bottom:634.755000px;}
.y99{bottom:634.935000px;}
.y53{bottom:638.175000px;}
.y6f{bottom:642.855000px;}
.y19{bottom:649.155000px;}
.ydc{bottom:649.695000px;}
.y18c{bottom:650.595000px;}
.y135{bottom:654.915000px;}
.y1dc{bottom:655.455000px;}
.yff{bottom:657.615000px;}
.y98{bottom:658.725000px;}
.y52{bottom:661.965000px;}
.y6e{bottom:666.645000px;}
.y1c1{bottom:667.365000px;}
.y18{bottom:668.085000px;}
.y18b{bottom:671.325000px;}
.ydb{bottom:673.665000px;}
.y134{bottom:675.645000px;}
.yfc{bottom:679.245000px;}
.y97{bottom:682.665000px;}
.y51{bottom:685.725000px;}
.y17{bottom:687.165000px;}
.y1c0{bottom:688.065000px;}
.y6d{bottom:690.585000px;}
.y1a2{bottom:692.025000px;}
.y133{bottom:696.345000px;}
.yda{bottom:697.425000px;}
.y18a{bottom:704.085000px;}
.y16{bottom:706.065000px;}
.y96{bottom:706.425000px;}
.y1bf{bottom:708.765000px;}
.y50{bottom:709.665000px;}
.y6c{bottom:714.345000px;}
.y132{bottom:717.045000px;}
.y189{bottom:724.785000px;}
.y15{bottom:725.145000px;}
.y1be{bottom:729.465000px;}
.y95{bottom:730.185000px;}
.yd9{bottom:733.245000px;}
.y4f{bottom:733.425000px;}
.y130{bottom:737.745000px;}
.y6b{bottom:738.105000px;}
.y14{bottom:744.045000px;}
.y188{bottom:745.485000px;}
.y1bd{bottom:750.165000px;}
.yb5{bottom:753.945000px;}
.yd8{bottom:757.005000px;}
.y4e{bottom:757.185000px;}
.y6a{bottom:761.865000px;}
.y13{bottom:762.945000px;}
.y12f{bottom:765.285000px;}
.y94{bottom:766.005000px;}
.y187{bottom:766.185000px;}
.yfb{bottom:769.065000px;}
.y1bc{bottom:770.865000px;}
.y14c{bottom:777.705000px;}
.yb4{bottom:777.885000px;}
.yd7{bottom:780.765000px;}
.y4d{bottom:780.945000px;}
.y69{bottom:781.845000px;}
.y12{bottom:782.025000px;}
.y1db{bottom:782.925000px;}
.y12e{bottom:786.705000px;}
.y186{bottom:786.885000px;}
.y93{bottom:789.765000px;}
.y1bb{bottom:791.565000px;}
.yc8{bottom:792.825000px;}
.y11{bottom:800.925000px;}
.yb3{bottom:801.645000px;}
.y1da{bottom:803.625000px;}
.yd6{bottom:804.705000px;}
.y4c{bottom:804.885000px;}
.y185{bottom:807.585000px;}
.y14b{bottom:812.445000px;}
.y92{bottom:813.705000px;}
.yfa{bottom:816.585000px;}
.y10{bottom:820.005000px;}
.y1ba{bottom:824.325000px;}
.yb2{bottom:825.405000px;}
.yd5{bottom:828.465000px;}
.y4b{bottom:828.645000px;}
.y12d{bottom:828.825000px;}
.y91{bottom:837.465000px;}
.yf{bottom:838.905000px;}
.y14a{bottom:839.805000px;}
.y15b{bottom:839.880000px;}
.yf9{bottom:840.345000px;}
.y184{bottom:841.965000px;}
.y1b9{bottom:845.025000px;}
.yb1{bottom:849.165000px;}
.yd4{bottom:852.225000px;}
.y4a{bottom:852.405000px;}
.y90{bottom:861.225000px;}
.yf8{bottom:864.285000px;}
.y1b8{bottom:865.725000px;}
.y129{bottom:870.945000px;}
.ye{bottom:871.845000px;}
.yb0{bottom:873.105000px;}
.yd3{bottom:875.985000px;}
.y49{bottom:876.165000px;}
.y8f{bottom:884.985000px;}
.y1b7{bottom:886.425000px;}
.yf7{bottom:888.045000px;}
.yd{bottom:894.165000px;}
.yaf{bottom:896.865000px;}
.yd2{bottom:899.925000px;}
.y48{bottom:900.105000px;}
.y1b6{bottom:907.170000px;}
.y8e{bottom:908.970000px;}
.yf6{bottom:911.850000px;}
.y1d9{bottom:919.050000px;}
.yc{bottom:921.750000px;}
.yd1{bottom:923.730000px;}
.y47{bottom:923.910000px;}
.y1b5{bottom:927.870000px;}
.y8d{bottom:932.730000px;}
.yae{bottom:935.610000px;}
.yb{bottom:937.230000px;}
.y1d8{bottom:939.750000px;}
.yd0{bottom:947.490000px;}
.y46{bottom:947.670000px;}
.y122{bottom:950.730000px;}
.y8c{bottom:956.490000px;}
.ya{bottom:959.550000px;}
.y1b4{bottom:960.450000px;}
.y127{bottom:965.670000px;}
.ycf{bottom:971.250000px;}
.y45{bottom:971.430000px;}
.y121{bottom:974.490000px;}
.y8b{bottom:980.250000px;}
.y1b3{bottom:981.150000px;}
.y9{bottom:981.870000px;}
.yf5{bottom:983.310000px;}
.y126{bottom:989.430000px;}
.yce{bottom:995.010000px;}
.y44{bottom:995.370000px;}
.y120{bottom:998.250000px;}
.y1b2{bottom:1001.850000px;}
.y8a{bottom:1004.010000px;}
.yf4{bottom:1007.070000px;}
.y125{bottom:1013.370000px;}
.y8{bottom:1017.150000px;}
.ycd{bottom:1018.950000px;}
.y43{bottom:1019.130000px;}
.y11f{bottom:1022.190000px;}
.y1b1{bottom:1022.550000px;}
.yf3{bottom:1030.830000px;}
.y124{bottom:1037.130000px;}
.yf2{bottom:1042.710000px;}
.y42{bottom:1042.890000px;}
.y7{bottom:1043.070000px;}
.y1b0{bottom:1043.250000px;}
.y11e{bottom:1045.950000px;}
.ycc{bottom:1054.770000px;}
.y1d7{bottom:1055.310000px;}
.y123{bottom:1060.890000px;}
.y1af{bottom:1063.950000px;}
.y41{bottom:1066.650000px;}
.y1d6{bottom:1076.010000px;}
.ycb{bottom:1078.530000px;}
.y6{bottom:1080.870000px;}
.y11d{bottom:1084.650000px;}
.y40{bottom:1090.590000px;}
.y1d5{bottom:1096.710000px;}
.y5{bottom:1113.450000px;}
.y3f{bottom:1114.350000px;}
.y1ae{bottom:1117.410000px;}
.y4{bottom:1133.790000px;}
.y3e{bottom:1138.110000px;}
.y1{bottom:1194.480000px;}
.h15{height:20.700000px;}
.h13{height:20.736000px;}
.h18{height:21.600000px;}
.h1a{height:22.716000px;}
.h22{height:27.540000px;}
.h14{height:27.900000px;}
.h1d{height:28.980000px;}
.h1e{height:29.160000px;}
.h1c{height:33.300000px;}
.h19{height:37.800000px;}
.h2e{height:41.219361px;}
.h16{height:41.400000px;}
.h1f{height:41.436000px;}
.h2f{height:42.780752px;}
.h29{height:43.400391px;}
.h2d{height:45.456406px;}
.h2c{height:45.462531px;}
.h9{height:47.344922px;}
.h1b{height:50.220000px;}
.hf{height:50.273438px;}
.h27{height:53.709961px;}
.h2a{height:54.421875px;}
.h20{height:58.651172px;}
.h21{height:58.710000px;}
.h31{height:59.343750px;}
.h25{height:59.439023px;}
.h28{height:59.582250px;}
.h24{height:60.226875px;}
.h11{height:62.339642px;}
.hb{height:64.978594px;}
.h2{height:65.010937px;}
.h3{height:65.884219px;}
.h5{height:66.757500px;}
.hc{height:68.324766px;}
.hd{height:70.628906px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.h7{height:74.704922px;}
.h30{height:74.884922px;}
.he{height:75.093750px;}
.h12{height:82.800000px;}
.h6{height:84.898125px;}
.h4{height:90.703125px;}
.h17{height:105.120000px;}
.h10{height:135.000000px;}
.h2b{height:283.500000px;}
.h23{height:291.810000px;}
.h26{height:315.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:158.430000px;}
.wc{width:181.290000px;}
.w3{width:208.125000px;}
.w6{width:211.530000px;}
.wd{width:212.610000px;}
.w5{width:213.870000px;}
.wa{width:233.490000px;}
.wb{width:393.915000px;}
.we{width:424.080000px;}
.w8{width:585.285000px;}
.w4{width:586.005000px;}
.w9{width:627.405000px;}
.wf{width:702.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.490502px;}
.x1a{left:6.840000px;}
.x13{left:7.920000px;}
.x2a{left:12.203427px;}
.x23{left:26.676000px;}
.x20{left:39.744000px;}
.x21{left:47.370000px;}
.x19{left:53.100000px;}
.x1f{left:58.755000px;}
.x22{left:76.470000px;}
.x10{left:81.797534px;}
.xf{left:97.102650px;}
.x3{left:108.035987px;}
.xa{left:115.775987px;}
.xc{left:118.835987px;}
.x1{left:122.435987px;}
.x7{left:127.115987px;}
.x16{left:132.876000px;}
.x12{left:153.570000px;}
.x4{left:162.569987px;}
.x24{left:168.045000px;}
.x27{left:182.119205px;}
.x26{left:192.458220px;}
.x9{left:201.269987px;}
.x1d{left:203.685000px;}
.x1e{left:228.885000px;}
.x5{left:231.869987px;}
.x8{left:289.694987px;}
.x25{left:300.727321px;}
.x17{left:366.375000px;}
.x14{left:368.535000px;}
.x29{left:373.947884px;}
.x28{left:375.691229px;}
.xb{left:380.774987px;}
.x2{left:438.194987px;}
.x6{left:446.474987px;}
.xd{left:473.144987px;}
.x2b{left:527.144987px;}
.x1b{left:532.184987px;}
.x18{left:547.665000px;}
.x15{left:580.785000px;}
.xe{left:682.349987px;}
.x1c{left:810.149987px;}
@media print{
.v6{vertical-align:-71.257998pt;}
.v5{vertical-align:-59.530659pt;}
.v7{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-11.725752pt;}
.v3{vertical-align:-5.120000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.226667pt;}
.lse{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.116800pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.158933pt;}
.ls19{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.257280pt;}
.ls1a{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.896639pt;}
.lsd{letter-spacing:0.980480pt;}
.lsf{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls25{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls26{letter-spacing:5.760000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls1b{letter-spacing:8.677993pt;}
.ls20{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:21.760000pt;}
.ls27{letter-spacing:24.960000pt;}
.ls23{letter-spacing:35.200000pt;}
.ls24{letter-spacing:44.800000pt;}
.ls28{letter-spacing:52.000000pt;}
.lsc{letter-spacing:522.679778pt;}
.ws1{word-spacing:-18.703360pt;}
.wsd{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.488000pt;}
.wsa{word-spacing:-14.770163pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.185067pt;}
.ws14{word-spacing:-12.034048pt;}
.ws13{word-spacing:-12.005120pt;}
.ws18{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.194383pt;}
.ws2{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.977280pt;}
.wse{word-spacing:-10.881067pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.438933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:-9.053333pt;}
.ws11{word-spacing:-8.640000pt;}
.ws19{word-spacing:-0.271187pt;}
.ws17{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws16{word-spacing:123.869547pt;}
.ws15{word-spacing:150.515883pt;}
.ws1a{word-spacing:254.840868pt;}
._52{margin-left:-3.584000pt;}
._51{margin-left:-2.560000pt;}
._0{margin-left:-1.196373pt;}
._3{width:1.009280pt;}
._11{width:1.984000pt;}
._8{width:3.650560pt;}
._9{width:4.552533pt;}
._b{width:5.528320pt;}
._a{width:6.626133pt;}
._e{width:7.570347pt;}
._5{width:8.478720pt;}
._c{width:9.715200pt;}
._7{width:10.716160pt;}
._6{width:12.011520pt;}
._d{width:13.108907pt;}
._12{width:14.219093pt;}
._4{width:15.908053pt;}
._24{width:17.452373pt;}
._1d{width:18.368000pt;}
._3e{width:19.456000pt;}
._2a{width:20.394667pt;}
._1c{width:21.376000pt;}
._13{width:22.400000pt;}
._14{width:23.424000pt;}
._3a{width:24.320000pt;}
._33{width:25.344000pt;}
._45{width:26.240000pt;}
._f{width:27.136000pt;}
._10{width:28.160000pt;}
._15{width:29.248000pt;}
._44{width:30.464000pt;}
._1f{width:31.616000pt;}
._20{width:32.704000pt;}
._16{width:33.856000pt;}
._17{width:34.816000pt;}
._1e{width:35.776000pt;}
._21{width:36.736000pt;}
._18{width:37.824000pt;}
._19{width:39.296000pt;}
._2b{width:40.320000pt;}
._34{width:41.536000pt;}
._2d{width:42.752000pt;}
._39{width:44.096000pt;}
._25{width:45.312000pt;}
._43{width:46.336000pt;}
._22{width:47.232000pt;}
._23{width:48.192000pt;}
._48{width:49.166720pt;}
._41{width:50.240000pt;}
._42{width:51.392000pt;}
._50{width:52.394667pt;}
._47{width:53.566293pt;}
._46{width:54.508373pt;}
._3f{width:55.936000pt;}
._40{width:56.896000pt;}
._54{width:57.856000pt;}
._49{width:58.771627pt;}
._35{width:60.204373pt;}
._1a{width:61.504000pt;}
._1b{width:63.054720pt;}
._26{width:63.970560pt;}
._4f{width:65.088000pt;}
._2c{width:67.008000pt;}
._53{width:68.096000pt;}
._58{width:69.312000pt;}
._59{width:70.400000pt;}
._32{width:72.128000pt;}
._4a{width:73.102720pt;}
._38{width:74.624000pt;}
._30{width:75.776000pt;}
._31{width:76.672000pt;}
._5d{width:77.696000pt;}
._6a{width:78.592000pt;}
._6b{width:80.224000pt;}
._69{width:82.353920pt;}
._68{width:83.372373pt;}
._36{width:84.288000pt;}
._37{width:85.184000pt;}
._5f{width:87.104000pt;}
._3b{width:88.576000pt;}
._27{width:90.176000pt;}
._3d{width:95.232000pt;}
._4d{width:97.856000pt;}
._5b{width:99.584000pt;}
._6d{width:102.144000pt;}
._67{width:104.780373pt;}
._71{width:107.584000pt;}
._6e{width:113.235627pt;}
._57{width:114.476373pt;}
._2f{width:115.456000pt;}
._5a{width:121.216000pt;}
._2e{width:122.496000pt;}
._3c{width:131.456000pt;}
._4e{width:133.568000pt;}
._63{width:135.616000pt;}
._62{width:136.780373pt;}
._6c{width:141.760000pt;}
._55{width:148.949931pt;}
._65{width:150.080000pt;}
._64{width:154.176000pt;}
._66{width:157.696000pt;}
._4b{width:160.384000pt;}
._4c{width:161.728000pt;}
._70{width:174.976000pt;}
._6f{width:176.448000pt;}
._29{width:182.208000pt;}
._28{width:239.360000pt;}
._56{width:277.522412pt;}
._60{width:284.704000pt;}
._5e{width:286.316373pt;}
._5c{width:320.224000pt;}
._61{width:396.288000pt;}
._2{width:768.906667pt;}
._1{width:775.502080pt;}
.fs9{font-size:34.560000pt;}
.fse{font-size:35.129942pt;}
.fs6{font-size:37.120000pt;}
.fsd{font-size:38.741040pt;}
.fsc{font-size:38.746260pt;}
.fs8{font-size:40.267566pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:53.130082pt;}
.fsb{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:2.880000pt;}
.y104{bottom:3.520000pt;}
.y100{bottom:3.546667pt;}
.y10b{bottom:4.320000pt;}
.y88{bottom:5.154283pt;}
.y10f{bottom:5.280000pt;}
.y149{bottom:6.240000pt;}
.y131{bottom:9.600000pt;}
.y102{bottom:9.920000pt;}
.y116{bottom:10.880000pt;}
.y118{bottom:11.040000pt;}
.y112{bottom:11.360000pt;}
.y114{bottom:14.720000pt;}
.y172{bottom:14.875334pt;}
.y10d{bottom:18.720000pt;}
.y12b{bottom:18.880000pt;}
.y167{bottom:21.853333pt;}
.yfe{bottom:21.920000pt;}
.y11b{bottom:21.946667pt;}
.y148{bottom:27.520000pt;}
.y111{bottom:29.760000pt;}
.y12a{bottom:37.320000pt;}
.y165{bottom:38.906667pt;}
.y169{bottom:41.222776pt;}
.y86{bottom:45.036756pt;}
.y147{bottom:48.640000pt;}
.y3{bottom:51.040000pt;}
.y15e{bottom:56.226667pt;}
.y16b{bottom:58.132295pt;}
.yfd{bottom:58.720000pt;}
.y89{bottom:63.623590pt;}
.y2{bottom:68.960000pt;}
.y146{bottom:69.760000pt;}
.y16c{bottom:71.693487pt;}
.y108{bottom:78.560000pt;}
.y16a{bottom:90.043071pt;}
.y15f{bottom:90.426667pt;}
.y145{bottom:90.880000pt;}
.y183{bottom:101.760000pt;}
.y1a1{bottom:104.640000pt;}
.y85{bottom:105.920000pt;}
.y87{bottom:108.305939pt;}
.y3d{bottom:108.640000pt;}
.yad{bottom:109.440000pt;}
.y11c{bottom:111.040000pt;}
.y68{bottom:112.160000pt;}
.y1ad{bottom:112.480000pt;}
.yc7{bottom:117.120000pt;}
.y2f{bottom:119.040000pt;}
.y15a{bottom:120.160000pt;}
.y182{bottom:122.880000pt;}
.y1a0{bottom:123.040000pt;}
.y16d{bottom:123.353014pt;}
.y144{bottom:124.000000pt;}
.y160{bottom:124.640000pt;}
.y171{bottom:124.913618pt;}
.y1ea{bottom:125.280000pt;}
.y84{bottom:127.040000pt;}
.y3c{bottom:129.760000pt;}
.yac{bottom:130.560000pt;}
.y1ac{bottom:130.880000pt;}
.yf1{bottom:133.120000pt;}
.y67{bottom:133.440000pt;}
.yc6{bottom:138.400000pt;}
.y143{bottom:139.360000pt;}
.y2e{bottom:140.160000pt;}
.y159{bottom:141.280000pt;}
.y19f{bottom:141.440000pt;}
.y181{bottom:144.000000pt;}
.y83{bottom:148.160000pt;}
.y170{bottom:148.161374pt;}
.y11a{bottom:148.480000pt;}
.y1ab{bottom:149.306667pt;}
.y3b{bottom:150.906667pt;}
.yab{bottom:151.706667pt;}
.y1e9{bottom:153.466667pt;}
.yf0{bottom:154.426667pt;}
.y66{bottom:154.586667pt;}
.y142{bottom:154.720000pt;}
.y161{bottom:158.813333pt;}
.yc5{bottom:159.546667pt;}
.y2d{bottom:161.466667pt;}
.y128{bottom:162.426667pt;}
.y166{bottom:162.493333pt;}
.y158{bottom:162.586667pt;}
.y180{bottom:165.146667pt;}
.y82{bottom:169.466667pt;}
.y141{bottom:170.080000pt;}
.y19e{bottom:170.586667pt;}
.y3a{bottom:172.026667pt;}
.yaa{bottom:172.826667pt;}
.y13d{bottom:174.906667pt;}
.y16e{bottom:175.014694pt;}
.yef{bottom:175.546667pt;}
.y65{bottom:175.706667pt;}
.y1aa{bottom:178.266667pt;}
.yc4{bottom:180.666667pt;}
.y2c{bottom:182.586667pt;}
.y157{bottom:183.706667pt;}
.y140{bottom:185.280000pt;}
.y119{bottom:185.946667pt;}
.y17f{bottom:186.426667pt;}
.y19d{bottom:188.986667pt;}
.y81{bottom:190.586667pt;}
.y162{bottom:193.026667pt;}
.y39{bottom:193.306667pt;}
.ya9{bottom:193.946667pt;}
.yee{bottom:196.666667pt;}
.y64{bottom:196.826667pt;}
.y13f{bottom:200.680000pt;}
.yc3{bottom:201.786667pt;}
.y2b{bottom:203.706667pt;}
.y156{bottom:204.826667pt;}
.y19c{bottom:207.386667pt;}
.y17e{bottom:207.546667pt;}
.y1d4{bottom:211.546667pt;}
.y80{bottom:211.706667pt;}
.y38{bottom:214.426667pt;}
.y1a9{bottom:215.066667pt;}
.ya8{bottom:215.226667pt;}
.y13e{bottom:216.040000pt;}
.yed{bottom:217.786667pt;}
.y63{bottom:217.946667pt;}
.yc2{bottom:223.066667pt;}
.y117{bottom:223.386667pt;}
.y2a{bottom:224.826667pt;}
.y19b{bottom:225.786667pt;}
.y155{bottom:225.946667pt;}
.y16f{bottom:226.676374pt;}
.y163{bottom:227.200000pt;}
.y17d{bottom:228.666667pt;}
.y1d3{bottom:229.946667pt;}
.y15d{bottom:232.093333pt;}
.y7f{bottom:232.826667pt;}
.y1a8{bottom:233.466667pt;}
.y37{bottom:235.546667pt;}
.ya7{bottom:236.346667pt;}
.y1e8{bottom:237.786667pt;}
.yec{bottom:239.066667pt;}
.y62{bottom:239.226667pt;}
.yc1{bottom:244.186667pt;}
.y29{bottom:246.106667pt;}
.y15c{bottom:246.813333pt;}
.y154{bottom:247.066667pt;}
.y1d2{bottom:248.346667pt;}
.y17c{bottom:249.786667pt;}
.y115{bottom:249.946667pt;}
.y1a7{bottom:251.866667pt;}
.y7e{bottom:254.106667pt;}
.y1e7{bottom:256.186667pt;}
.y36{bottom:256.666667pt;}
.ya6{bottom:257.466667pt;}
.yeb{bottom:260.186667pt;}
.y61{bottom:260.346667pt;}
.y164{bottom:261.413333pt;}
.y19a{bottom:262.586667pt;}
.yc0{bottom:265.306667pt;}
.y1d1{bottom:266.746667pt;}
.y28{bottom:267.226667pt;}
.y153{bottom:268.346667pt;}
.y1a6{bottom:270.266667pt;}
.y17b{bottom:271.066667pt;}
.y1e6{bottom:274.586667pt;}
.y7d{bottom:275.226667pt;}
.y113{bottom:276.506667pt;}
.y35{bottom:277.946667pt;}
.ya5{bottom:278.586667pt;}
.y199{bottom:280.986667pt;}
.yea{bottom:281.306667pt;}
.y60{bottom:281.466667pt;}
.y1d0{bottom:285.146667pt;}
.ybf{bottom:286.426667pt;}
.y27{bottom:288.346667pt;}
.y152{bottom:289.466667pt;}
.y17a{bottom:292.186667pt;}
.y1e5{bottom:292.986667pt;}
.y7c{bottom:296.346667pt;}
.y34{bottom:299.066667pt;}
.y198{bottom:299.386667pt;}
.ya4{bottom:299.866667pt;}
.ye9{bottom:302.426667pt;}
.y5f{bottom:302.586667pt;}
.y110{bottom:306.746667pt;}
.ybe{bottom:307.706667pt;}
.y26{bottom:309.466667pt;}
.y151{bottom:310.586667pt;}
.y1e4{bottom:311.386667pt;}
.y179{bottom:313.306667pt;}
.y1cf{bottom:314.266667pt;}
.y7b{bottom:317.466667pt;}
.y197{bottom:317.786667pt;}
.y33{bottom:320.186667pt;}
.yca{bottom:320.986667pt;}
.ye8{bottom:323.706667pt;}
.y5e{bottom:323.866667pt;}
.ybd{bottom:328.826667pt;}
.y25{bottom:330.746667pt;}
.ya3{bottom:331.706667pt;}
.y1ce{bottom:332.666667pt;}
.y178{bottom:334.426667pt;}
.y196{bottom:336.186667pt;}
.y7a{bottom:338.746667pt;}
.y1e3{bottom:340.346667pt;}
.y32{bottom:341.306667pt;}
.yc9{bottom:342.106667pt;}
.ye7{bottom:344.826667pt;}
.y5d{bottom:344.986667pt;}
.ybc{bottom:349.946667pt;}
.y1cd{bottom:351.066667pt;}
.y24{bottom:351.866667pt;}
.y10e{bottom:352.026667pt;}
.ya2{bottom:352.826667pt;}
.y150{bottom:352.986667pt;}
.y1a5{bottom:354.586667pt;}
.y177{bottom:355.706667pt;}
.y1e2{bottom:358.746667pt;}
.y79{bottom:359.866667pt;}
.y31{bottom:362.426667pt;}
.y195{bottom:365.306667pt;}
.ye6{bottom:365.946667pt;}
.y5c{bottom:366.106667pt;}
.y1cc{bottom:369.506667pt;}
.ybb{bottom:371.106667pt;}
.y10c{bottom:372.866667pt;}
.y23{bottom:373.026667pt;}
.ya1{bottom:373.986667pt;}
.y14f{bottom:374.146667pt;}
.y176{bottom:376.866667pt;}
.y1e1{bottom:377.186667pt;}
.y78{bottom:381.026667pt;}
.y30{bottom:383.746667pt;}
.ye5{bottom:387.106667pt;}
.y5b{bottom:387.266667pt;}
.y1cb{bottom:387.906667pt;}
.y1a4{bottom:391.426667pt;}
.ya0{bottom:395.106667pt;}
.y14e{bottom:395.266667pt;}
.y1e0{bottom:395.586667pt;}
.y175{bottom:397.986667pt;}
.y77{bottom:402.146667pt;}
.y22{bottom:404.866667pt;}
.yba{bottom:405.666667pt;}
.y1ca{bottom:406.306667pt;}
.y10a{bottom:407.106667pt;}
.ye4{bottom:408.386667pt;}
.y5a{bottom:408.546667pt;}
.y1df{bottom:413.986667pt;}
.y9f{bottom:416.386667pt;}
.y174{bottom:419.106667pt;}
.y14d{bottom:419.426667pt;}
.y168{bottom:419.466667pt;}
.y194{bottom:420.546667pt;}
.y76{bottom:423.266667pt;}
.y1c9{bottom:424.706667pt;}
.yb9{bottom:426.786667pt;}
.y107{bottom:426.946667pt;}
.ye3{bottom:429.506667pt;}
.y59{bottom:429.666667pt;}
.y13c{bottom:434.946667pt;}
.y9e{bottom:437.506667pt;}
.y193{bottom:438.946667pt;}
.y173{bottom:440.386667pt;}
.y21{bottom:441.986667pt;}
.y1c8{bottom:443.106667pt;}
.y75{bottom:444.546667pt;}
.y109{bottom:446.146667pt;}
.yb8{bottom:447.906667pt;}
.ye2{bottom:450.626667pt;}
.y13b{bottom:453.346667pt;}
.y192{bottom:457.346667pt;}
.y9d{bottom:458.626667pt;}
.y20{bottom:458.946667pt;}
.y58{bottom:461.506667pt;}
.y74{bottom:465.666667pt;}
.yb7{bottom:469.186667pt;}
.ye1{bottom:471.746667pt;}
.y1c7{bottom:472.226667pt;}
.y1a3{bottom:475.746667pt;}
.y1f{bottom:475.906667pt;}
.y9c{bottom:479.746667pt;}
.y1de{bottom:479.906667pt;}
.y57{bottom:482.626667pt;}
.y106{bottom:483.586667pt;}
.y191{bottom:486.306667pt;}
.y73{bottom:486.786667pt;}
.y13a{bottom:490.146667pt;}
.yb6{bottom:490.306667pt;}
.y1c6{bottom:490.626667pt;}
.y1e{bottom:492.706667pt;}
.ye0{bottom:493.026667pt;}
.y1dd{bottom:498.306667pt;}
.y9b{bottom:501.026667pt;}
.y56{bottom:503.746667pt;}
.y190{bottom:504.706667pt;}
.y72{bottom:507.906667pt;}
.y139{bottom:508.546667pt;}
.y1c5{bottom:509.026667pt;}
.y1d{bottom:509.506667pt;}
.ydf{bottom:514.146667pt;}
.y105{bottom:521.026667pt;}
.y9a{bottom:522.146667pt;}
.y18f{bottom:523.106667pt;}
.y55{bottom:525.026667pt;}
.y1c{bottom:526.466667pt;}
.y138{bottom:526.946667pt;}
.y1c4{bottom:527.426667pt;}
.y71{bottom:529.186667pt;}
.yde{bottom:535.266667pt;}
.y103{bottom:540.066667pt;}
.y18e{bottom:541.506667pt;}
.y1b{bottom:543.266667pt;}
.y137{bottom:545.346667pt;}
.y1c3{bottom:545.826667pt;}
.y54{bottom:546.146667pt;}
.y70{bottom:550.306667pt;}
.ydd{bottom:556.386667pt;}
.y101{bottom:559.106667pt;}
.y18d{bottom:559.906667pt;}
.y1a{bottom:560.226667pt;}
.y136{bottom:563.746667pt;}
.y1c2{bottom:564.226667pt;}
.y99{bottom:564.386667pt;}
.y53{bottom:567.266667pt;}
.y6f{bottom:571.426667pt;}
.y19{bottom:577.026667pt;}
.ydc{bottom:577.506667pt;}
.y18c{bottom:578.306667pt;}
.y135{bottom:582.146667pt;}
.y1dc{bottom:582.626667pt;}
.yff{bottom:584.546667pt;}
.y98{bottom:585.533333pt;}
.y52{bottom:588.413333pt;}
.y6e{bottom:592.573333pt;}
.y1c1{bottom:593.213333pt;}
.y18{bottom:593.853333pt;}
.y18b{bottom:596.733333pt;}
.ydb{bottom:598.813333pt;}
.y134{bottom:600.573333pt;}
.yfc{bottom:603.773333pt;}
.y97{bottom:606.813333pt;}
.y51{bottom:609.533333pt;}
.y17{bottom:610.813333pt;}
.y1c0{bottom:611.613333pt;}
.y6d{bottom:613.853333pt;}
.y1a2{bottom:615.133333pt;}
.y133{bottom:618.973333pt;}
.yda{bottom:619.933333pt;}
.y18a{bottom:625.853333pt;}
.y16{bottom:627.613333pt;}
.y96{bottom:627.933333pt;}
.y1bf{bottom:630.013333pt;}
.y50{bottom:630.813333pt;}
.y6c{bottom:634.973333pt;}
.y132{bottom:637.373333pt;}
.y189{bottom:644.253333pt;}
.y15{bottom:644.573333pt;}
.y1be{bottom:648.413333pt;}
.y95{bottom:649.053333pt;}
.yd9{bottom:651.773333pt;}
.y4f{bottom:651.933333pt;}
.y130{bottom:655.773333pt;}
.y6b{bottom:656.093333pt;}
.y14{bottom:661.373333pt;}
.y188{bottom:662.653333pt;}
.y1bd{bottom:666.813333pt;}
.yb5{bottom:670.173333pt;}
.yd8{bottom:672.893333pt;}
.y4e{bottom:673.053333pt;}
.y6a{bottom:677.213333pt;}
.y13{bottom:678.173333pt;}
.y12f{bottom:680.253333pt;}
.y94{bottom:680.893333pt;}
.y187{bottom:681.053333pt;}
.yfb{bottom:683.613333pt;}
.y1bc{bottom:685.213333pt;}
.y14c{bottom:691.293333pt;}
.yb4{bottom:691.453333pt;}
.yd7{bottom:694.013333pt;}
.y4d{bottom:694.173333pt;}
.y69{bottom:694.973333pt;}
.y12{bottom:695.133333pt;}
.y1db{bottom:695.933333pt;}
.y12e{bottom:699.293333pt;}
.y186{bottom:699.453333pt;}
.y93{bottom:702.013333pt;}
.y1bb{bottom:703.613333pt;}
.yc8{bottom:704.733333pt;}
.y11{bottom:711.933333pt;}
.yb3{bottom:712.573333pt;}
.y1da{bottom:714.333333pt;}
.yd6{bottom:715.293333pt;}
.y4c{bottom:715.453333pt;}
.y185{bottom:717.853333pt;}
.y14b{bottom:722.173333pt;}
.y92{bottom:723.293333pt;}
.yfa{bottom:725.853333pt;}
.y10{bottom:728.893333pt;}
.y1ba{bottom:732.733333pt;}
.yb2{bottom:733.693333pt;}
.yd5{bottom:736.413333pt;}
.y4b{bottom:736.573333pt;}
.y12d{bottom:736.733333pt;}
.y91{bottom:744.413333pt;}
.yf{bottom:745.693333pt;}
.y14a{bottom:746.493333pt;}
.y15b{bottom:746.560000pt;}
.yf9{bottom:746.973333pt;}
.y184{bottom:748.413333pt;}
.y1b9{bottom:751.133333pt;}
.yb1{bottom:754.813333pt;}
.yd4{bottom:757.533333pt;}
.y4a{bottom:757.693333pt;}
.y90{bottom:765.533333pt;}
.yf8{bottom:768.253333pt;}
.y1b8{bottom:769.533333pt;}
.y129{bottom:774.173333pt;}
.ye{bottom:774.973333pt;}
.yb0{bottom:776.093333pt;}
.yd3{bottom:778.653333pt;}
.y49{bottom:778.813333pt;}
.y8f{bottom:786.653333pt;}
.y1b7{bottom:787.933333pt;}
.yf7{bottom:789.373333pt;}
.yd{bottom:794.813333pt;}
.yaf{bottom:797.213333pt;}
.yd2{bottom:799.933333pt;}
.y48{bottom:800.093333pt;}
.y1b6{bottom:806.373333pt;}
.y8e{bottom:807.973333pt;}
.yf6{bottom:810.533333pt;}
.y1d9{bottom:816.933333pt;}
.yc{bottom:819.333333pt;}
.yd1{bottom:821.093333pt;}
.y47{bottom:821.253333pt;}
.y1b5{bottom:824.773333pt;}
.y8d{bottom:829.093333pt;}
.yae{bottom:831.653333pt;}
.yb{bottom:833.093333pt;}
.y1d8{bottom:835.333333pt;}
.yd0{bottom:842.213333pt;}
.y46{bottom:842.373333pt;}
.y122{bottom:845.093333pt;}
.y8c{bottom:850.213333pt;}
.ya{bottom:852.933333pt;}
.y1b4{bottom:853.733333pt;}
.y127{bottom:858.373333pt;}
.ycf{bottom:863.333333pt;}
.y45{bottom:863.493333pt;}
.y121{bottom:866.213333pt;}
.y8b{bottom:871.333333pt;}
.y1b3{bottom:872.133333pt;}
.y9{bottom:872.773333pt;}
.yf5{bottom:874.053333pt;}
.y126{bottom:879.493333pt;}
.yce{bottom:884.453333pt;}
.y44{bottom:884.773333pt;}
.y120{bottom:887.333333pt;}
.y1b2{bottom:890.533333pt;}
.y8a{bottom:892.453333pt;}
.yf4{bottom:895.173333pt;}
.y125{bottom:900.773333pt;}
.y8{bottom:904.133333pt;}
.ycd{bottom:905.733333pt;}
.y43{bottom:905.893333pt;}
.y11f{bottom:908.613333pt;}
.y1b1{bottom:908.933333pt;}
.yf3{bottom:916.293333pt;}
.y124{bottom:921.893333pt;}
.yf2{bottom:926.853333pt;}
.y42{bottom:927.013333pt;}
.y7{bottom:927.173333pt;}
.y1b0{bottom:927.333333pt;}
.y11e{bottom:929.733333pt;}
.ycc{bottom:937.573333pt;}
.y1d7{bottom:938.053333pt;}
.y123{bottom:943.013333pt;}
.y1af{bottom:945.733333pt;}
.y41{bottom:948.133333pt;}
.y1d6{bottom:956.453333pt;}
.ycb{bottom:958.693333pt;}
.y6{bottom:960.773333pt;}
.y11d{bottom:964.133333pt;}
.y40{bottom:969.413333pt;}
.y1d5{bottom:974.853333pt;}
.y5{bottom:989.733333pt;}
.y3f{bottom:990.533333pt;}
.y1ae{bottom:993.253333pt;}
.y4{bottom:1007.813333pt;}
.y3e{bottom:1011.653333pt;}
.y1{bottom:1061.760000pt;}
.h15{height:18.400000pt;}
.h13{height:18.432000pt;}
.h18{height:19.200000pt;}
.h1a{height:20.192000pt;}
.h22{height:24.480000pt;}
.h14{height:24.800000pt;}
.h1d{height:25.760000pt;}
.h1e{height:25.920000pt;}
.h1c{height:29.600000pt;}
.h19{height:33.600000pt;}
.h2e{height:36.639432pt;}
.h16{height:36.800000pt;}
.h1f{height:36.832000pt;}
.h2f{height:38.027335pt;}
.h29{height:38.578125pt;}
.h2d{height:40.405694pt;}
.h2c{height:40.411138pt;}
.h9{height:42.084375pt;}
.h1b{height:44.640000pt;}
.hf{height:44.687500pt;}
.h27{height:47.742188pt;}
.h2a{height:48.375000pt;}
.h20{height:52.134375pt;}
.h21{height:52.186667pt;}
.h31{height:52.750000pt;}
.h25{height:52.834688pt;}
.h28{height:52.962000pt;}
.h24{height:53.535000pt;}
.h11{height:55.413015pt;}
.hb{height:57.758750pt;}
.h2{height:57.787500pt;}
.h3{height:58.563750pt;}
.h5{height:59.340000pt;}
.hc{height:60.733125pt;}
.hd{height:62.781250pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.h7{height:66.404375pt;}
.h30{height:66.564375pt;}
.he{height:66.750000pt;}
.h12{height:73.600000pt;}
.h6{height:75.465000pt;}
.h4{height:80.625000pt;}
.h17{height:93.440000pt;}
.h10{height:120.000000pt;}
.h2b{height:252.000000pt;}
.h23{height:259.386667pt;}
.h26{height:280.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:140.826667pt;}
.wc{width:161.146667pt;}
.w3{width:185.000000pt;}
.w6{width:188.026667pt;}
.wd{width:188.986667pt;}
.w5{width:190.106667pt;}
.wa{width:207.546667pt;}
.wb{width:350.146667pt;}
.we{width:376.960000pt;}
.w8{width:520.253333pt;}
.w4{width:520.893333pt;}
.w9{width:557.693333pt;}
.wf{width:624.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.324891pt;}
.x1a{left:6.080000pt;}
.x13{left:7.040000pt;}
.x2a{left:10.847491pt;}
.x23{left:23.712000pt;}
.x20{left:35.328000pt;}
.x21{left:42.106667pt;}
.x19{left:47.200000pt;}
.x1f{left:52.226667pt;}
.x22{left:67.973333pt;}
.x10{left:72.708920pt;}
.xf{left:86.313466pt;}
.x3{left:96.031988pt;}
.xa{left:102.911988pt;}
.xc{left:105.631988pt;}
.x1{left:108.831988pt;}
.x7{left:112.991988pt;}
.x16{left:118.112000pt;}
.x12{left:136.506667pt;}
.x4{left:144.506655pt;}
.x24{left:149.373333pt;}
.x27{left:161.883738pt;}
.x26{left:171.073974pt;}
.x9{left:178.906655pt;}
.x1d{left:181.053333pt;}
.x1e{left:203.453333pt;}
.x5{left:206.106655pt;}
.x8{left:257.506655pt;}
.x25{left:267.313175pt;}
.x17{left:325.666667pt;}
.x14{left:327.586667pt;}
.x29{left:332.398119pt;}
.x28{left:333.947759pt;}
.xb{left:338.466655pt;}
.x2{left:389.506655pt;}
.x6{left:396.866655pt;}
.xd{left:420.573322pt;}
.x2b{left:468.573322pt;}
.x1b{left:473.053322pt;}
.x18{left:486.813333pt;}
.x15{left:516.253333pt;}
.xe{left:606.533322pt;}
.x1c{left:720.133322pt;}
}




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