
    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_f670a3d5c7632f9fdf89846e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63ab530caf6955390bd4ce8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8d44c062684e3a4a98a31838.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_36796111338155442be622d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_425f0d6010cdf6dcf2d62dd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bbef30b38bc9c3b1c8f076af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_06e2b105637bb4183fcc6586.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_29847a9f440fadbc5a972a20.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_112479e08c74def63eb36575.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_127a386d243097dd2e668bb5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1eccb22aa944018bdd62cdeb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_f5de1dbc6245d103e2b081ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_00a2360dcfa762b78495f84b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_00a47e6fba1e7dc03c9c7172.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-91.584000px;}
.v2{vertical-align:-72.000000px;}
.v3{vertical-align:-68.400000px;}
.v8{vertical-align:-28.080000px;}
.v6{vertical-align:-23.760000px;}
.vb{vertical-align:-21.300000px;}
.va{vertical-align:-18.300000px;}
.v4{vertical-align:-5.760000px;}
.v9{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v5{vertical-align:23.760000px;}
.ls8{letter-spacing:-12.600000px;}
.ls4{letter-spacing:-9.540000px;}
.ls9{letter-spacing:-8.280000px;}
.ls7{letter-spacing:-7.560000px;}
.ls2f{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls35{letter-spacing:-0.894000px;}
.ls19{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls31{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.334200px;}
.ls24{letter-spacing:-0.315600px;}
.ls16{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.263400px;}
.ls15{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.041040px;}
.ls2a{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.017280px;}
.ls17{letter-spacing:-0.000006px;}
.ls3{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.025200px;}
.ls2d{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.132600px;}
.ls3c{letter-spacing:0.142800px;}
.lsd{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.243600px;}
.ls1a{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.468000px;}
.ls2e{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.728000px;}
.ls12{letter-spacing:1.848000px;}
.ls18{letter-spacing:2.448000px;}
.ls27{letter-spacing:3.168000px;}
.ls29{letter-spacing:3.888000px;}
.ls30{letter-spacing:4.608000px;}
.ls28{letter-spacing:5.328000px;}
.ls33{letter-spacing:6.768000px;}
.ls39{letter-spacing:7.097760px;}
.ls34{letter-spacing:8.208000px;}
.ls38{letter-spacing:13.968000px;}
.ls3d{letter-spacing:14.700000px;}
.ls37{letter-spacing:16.128000px;}
.ls1c{letter-spacing:21.168000px;}
.ls20{letter-spacing:33.264000px;}
.ls3f{letter-spacing:176.688000px;}
.ls3a{letter-spacing:290.892480px;}
.ls6{letter-spacing:856.943040px;}
.ls0{letter-spacing:4145.566080px;}
.ls5{letter-spacing:4184.940000px;}
.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;}
}
.ws6{word-spacing:-23.299200px;}
.wsb{word-spacing:-22.982280px;}
.ws1{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.208000px;}
.ws9{word-spacing:-16.632000px;}
.wse{word-spacing:-16.488000px;}
.ws8{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.344000px;}
.wsd{word-spacing:-16.272000px;}
.wsf{word-spacing:-16.271994px;}
.wsa{word-spacing:-16.128000px;}
.ws10{word-spacing:-16.056000px;}
.ws21{word-spacing:-15.984000px;}
.ws12{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.696000px;}
.ws18{word-spacing:-15.408000px;}
.ws22{word-spacing:-15.336000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws19{word-spacing:-13.749360px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.240000px;}
.ws17{word-spacing:-12.204000px;}
.ws11{word-spacing:-10.902240px;}
.ws13{word-spacing:-10.638840px;}
.ws14{word-spacing:-10.586640px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:55.184640px;}
.ws16{word-spacing:56.924640px;}
.ws1a{word-spacing:71.716320px;}
.ws1c{word-spacing:116.629920px;}
.ws15{word-spacing:118.489920px;}
.ws1f{word-spacing:275.476920px;}
.ws1b{word-spacing:298.996800px;}
.ws1e{word-spacing:603.496800px;}
._3{margin-left:-21.258720px;}
._c{margin-left:-20.161440px;}
._1{margin-left:-13.242240px;}
._2{margin-left:-12.242160px;}
._4{margin-left:-10.977120px;}
._d{margin-left:-9.971280px;}
._8{margin-left:-8.784000px;}
._9{margin-left:-7.704000px;}
._a{margin-left:-6.602640px;}
._b{margin-left:-5.297040px;}
._17{margin-left:-3.744000px;}
._f{margin-left:-2.376000px;}
._5{margin-left:-1.124640px;}
._6{width:1.086480px;}
._e{width:2.808000px;}
._15{width:3.816000px;}
._14{width:5.112000px;}
._1a{width:6.624000px;}
._1b{width:7.967040px;}
._16{width:9.099360px;}
._12{width:10.556640px;}
._13{width:11.585520px;}
._11{width:12.600000px;}
._10{width:14.184000px;}
._1e{width:15.384000px;}
._1f{width:17.388000px;}
._1c{width:18.864000px;}
._26{width:19.931040px;}
._19{width:21.185280px;}
._18{width:22.392000px;}
._1d{width:24.336000px;}
._2a{width:25.416000px;}
._21{width:26.756640px;}
._20{width:28.080000px;}
._22{width:29.520000px;}
._23{width:30.842160px;}
._3f{width:31.843680px;}
._25{width:33.032880px;}
._38{width:34.056000px;}
._3c{width:35.321520px;}
._43{width:37.025280px;}
._29{width:38.448000px;}
._28{width:39.456000px;}
._53{width:46.148640px;}
._24{width:47.352000px;}
._35{width:54.792000px;}
._34{width:61.416000px;}
._56{width:74.088000px;}
._4b{width:80.424000px;}
._2b{width:88.449600px;}
._3d{width:90.288000px;}
._3e{width:91.478160px;}
._4a{width:102.888000px;}
._2f{width:104.732160px;}
._37{width:106.875840px;}
._3b{width:107.988480px;}
._42{width:115.884000px;}
._3a{width:117.180000px;}
._49{width:118.565280px;}
._48{width:120.024000px;}
._47{width:121.680000px;}
._32{width:123.680160px;}
._2c{width:126.193680px;}
._4e{width:137.664000px;}
._30{width:143.073120px;}
._45{width:144.989280px;}
._44{width:146.556000px;}
._2e{width:150.078720px;}
._4d{width:157.076640px;}
._4c{width:158.184000px;}
._50{width:165.528000px;}
._39{width:176.544000px;}
._40{width:179.540640px;}
._51{width:187.920000px;}
._52{width:189.648000px;}
._33{width:194.677920px;}
._2d{width:196.477920px;}
._46{width:197.892000px;}
._27{width:199.704000px;}
._31{width:217.389120px;}
._54{width:228.168000px;}
._36{width:241.416000px;}
._41{width:432.720000px;}
._55{width:690.444000px;}
._4f{width:759.468000px;}
._7{width:849.346560px;}
._0{width:2274.960000px;}
.fc6{color:rgb(62,61,64);}
.fc5{color:rgb(31,73,125);}
.fc2{color:transparent;}
.fc1{color:rgb(151,153,154);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fsb{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs10{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:66.384000px;}
.fs8{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fse{font-size:75.893905px;}
.fs9{font-size:84.240000px;}
.fs11{font-size:84.384000px;}
.fs2{font-size:87.120000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs13{font-size:138.240000px;}
.fs7{font-size:167.760000px;}
.y1ec{bottom:-29.880000px;}
.y219{bottom:-27.180000px;}
.y239{bottom:-24.345000px;}
.y0{bottom:0.000000px;}
.y22{bottom:1.440000px;}
.y1eb{bottom:5.760000px;}
.y1e3{bottom:6.480000px;}
.y218{bottom:8.460000px;}
.y238{bottom:11.340000px;}
.y1bb{bottom:14.760000px;}
.y15a{bottom:15.840000px;}
.y15d{bottom:15.870000px;}
.y167{bottom:15.885000px;}
.y164{bottom:16.020000px;}
.y1a6{bottom:20.334000px;}
.y1a5{bottom:20.340000px;}
.y19f{bottom:20.385000px;}
.y1a1{bottom:20.520000px;}
.y1a7{bottom:21.054000px;}
.y1a2{bottom:21.060000px;}
.y1ea{bottom:24.660000px;}
.y217{bottom:26.820000px;}
.y1b9{bottom:27.180000px;}
.y237{bottom:29.700000px;}
.y216{bottom:45.540000px;}
.y236{bottom:48.420000px;}
.y169{bottom:48.780000px;}
.y1c3{bottom:48.825000px;}
.y16d{bottom:48.960000px;}
.yc7{bottom:56.520000px;}
.y12a{bottom:56.880000px;}
.y1{bottom:57.240000px;}
.y1c1{bottom:59.805000px;}
.yc6{bottom:76.536000px;}
.y129{bottom:77.256000px;}
.y1c0{bottom:81.765000px;}
.y22d{bottom:88.530000px;}
.y128{bottom:97.236000px;}
.y20d{bottom:103.140000px;}
.y1bf{bottom:103.725000px;}
.y223{bottom:107.130000px;}
.y1c2{bottom:114.705000px;}
.y1dd{bottom:116.070000px;}
.y144{bottom:117.756000px;}
.y15b{bottom:118.116000px;}
.y201{bottom:120.096000px;}
.y24{bottom:122.760000px;}
.y203{bottom:122.970000px;}
.y1be{bottom:125.685000px;}
.y139{bottom:129.456000px;}
.y244{bottom:132.516000px;}
.y224{bottom:134.280000px;}
.y143{bottom:135.396000px;}
.y1d5{bottom:136.005000px;}
.y126{bottom:136.836000px;}
.y234{bottom:137.520000px;}
.y1d3{bottom:140.256000px;}
.y1ef{bottom:144.396000px;}
.y20{bottom:147.096000px;}
.y13d{bottom:147.456000px;}
.y1bd{bottom:147.645000px;}
.y17b{bottom:149.076000px;}
.y1c7{bottom:149.256000px;}
.y142{bottom:149.976000px;}
.y204{bottom:150.120000px;}
.y132{bottom:150.510000px;}
.y159{bottom:151.770000px;}
.y200{bottom:153.030000px;}
.y125{bottom:157.530000px;}
.y225{bottom:161.430000px;}
.y138{bottom:162.390000px;}
.y22e{bottom:162.465000px;}
.y214{bottom:163.005000px;}
.y141{bottom:164.730000px;}
.y243{bottom:165.450000px;}
.y1ee{bottom:166.350000px;}
.y221{bottom:167.250000px;}
.y1d6{bottom:167.865000px;}
.y140{bottom:168.510000px;}
.y1e5{bottom:170.970000px;}
.y1d2{bottom:173.190000px;}
.y1ff{bottom:174.990000px;}
.y1e8{bottom:175.755000px;}
.y205{bottom:177.300000px;}
.y124{bottom:178.230000px;}
.y1e7{bottom:179.310000px;}
.y13f{bottom:180.030000px;}
.y13c{bottom:180.390000px;}
.y188{bottom:181.290000px;}
.y17a{bottom:182.010000px;}
.y1c6{bottom:182.190000px;}
.y131{bottom:183.450000px;}
.y226{bottom:188.565000px;}
.y86{bottom:188.670000px;}
.y1a4{bottom:191.190000px;}
.y248{bottom:193.350000px;}
.y1f{bottom:195.510000px;}
.y20e{bottom:195.765000px;}
.y242{bottom:198.390000px;}
.y123{bottom:198.930000px;}
.y1d7{bottom:199.725000px;}
.y220{bottom:200.370000px;}
.y1c5{bottom:204.150000px;}
.y1de{bottom:204.450000px;}
.y206{bottom:204.480000px;}
.y1d1{bottom:206.130000px;}
.y1fe{bottom:210.990000px;}
.y13b{bottom:213.510000px;}
.y187{bottom:214.230000px;}
.y179{bottom:214.950000px;}
.y227{bottom:215.715000px;}
.y130{bottom:216.390000px;}
.y215{bottom:217.470000px;}
.y122{bottom:219.630000px;}
.y85{bottom:223.050000px;}
.yc5{bottom:227.010000px;}
.y137{bottom:228.450000px;}
.y212{bottom:229.140000px;}
.y202{bottom:229.320000px;}
.y241{bottom:231.330000px;}
.y1d8{bottom:231.555000px;}
.y207{bottom:231.630000px;}
.y1e{bottom:232.050000px;}
.y1a3{bottom:233.130000px;}
.y21f{bottom:233.310000px;}
.y1d0{bottom:239.250000px;}
.y84{bottom:240.510000px;}
.y121{bottom:241.230000px;}
.y228{bottom:242.850000px;}
.y1c4{bottom:244.110000px;}
.y13a{bottom:246.270000px;}
.y147{bottom:246.450000px;}
.y186{bottom:247.170000px;}
.y178{bottom:247.890000px;}
.y12f{bottom:249.330000px;}
.y5e{bottom:253.110000px;}
.yc4{bottom:255.270000px;}
.y83{bottom:258.690000px;}
.y208{bottom:258.810000px;}
.y136{bottom:261.390000px;}
.y1d9{bottom:263.415000px;}
.y158{bottom:264.270000px;}
.y177{bottom:265.710000px;}
.y21e{bottom:266.250000px;}
.y1d{bottom:268.410000px;}
.y229{bottom:270.000000px;}
.y5d{bottom:270.390000px;}
.y1cf{bottom:272.190000px;}
.y120{bottom:273.990000px;}
.y1a0{bottom:275.250000px;}
.y82{bottom:277.050000px;}
.y146{bottom:279.390000px;}
.y12e{bottom:282.270000px;}
.y185{bottom:284.610000px;}
.y209{bottom:285.990000px;}
.yc3{bottom:286.410000px;}
.y5c{bottom:287.670000px;}
.y1bc{bottom:288.210000px;}
.y1e1{bottom:292.500000px;}
.y135{bottom:294.330000px;}
.y81{bottom:295.230000px;}
.y1da{bottom:295.275000px;}
.y233{bottom:296.790000px;}
.y22a{bottom:297.150000px;}
.y157{bottom:297.390000px;}
.y21d{bottom:299.190000px;}
.y213{bottom:303.450000px;}
.y1c{bottom:304.950000px;}
.y1ce{bottom:305.130000px;}
.y211{bottom:306.075000px;}
.y11f{bottom:306.750000px;}
.y231{bottom:311.790000px;}
.y145{bottom:312.330000px;}
.y20a{bottom:313.125000px;}
.y80{bottom:313.410000px;}
.y12d{bottom:315.390000px;}
.y19e{bottom:317.370000px;}
.y184{bottom:317.550000px;}
.yc2{bottom:318.990000px;}
.y5b{bottom:322.230000px;}
.y22b{bottom:324.285000px;}
.y1e0{bottom:324.900000px;}
.y1db{bottom:327.135000px;}
.y134{bottom:327.270000px;}
.y156{bottom:330.330000px;}
.y176{bottom:331.590000px;}
.y7f{bottom:331.770000px;}
.y21c{bottom:332.130000px;}
.y210{bottom:332.715000px;}
.y1cd{bottom:338.115000px;}
.y230{bottom:338.370000px;}
.y5a{bottom:339.330000px;}
.y11e{bottom:339.555000px;}
.y20b{bottom:340.305000px;}
.y1b{bottom:341.310000px;}
.y12c{bottom:348.375000px;}
.y7e{bottom:349.995000px;}
.y183{bottom:350.535000px;}
.y22c{bottom:351.465000px;}
.yc1{bottom:351.975000px;}
.y235{bottom:354.675000px;}
.y59{bottom:356.610000px;}
.y1dc{bottom:358.950000px;}
.y19d{bottom:360.255000px;}
.y1e6{bottom:362.340000px;}
.y133{bottom:363.315000px;}
.y175{bottom:364.575000px;}
.y21b{bottom:365.115000px;}
.y104{bottom:367.455000px;}
.y20c{bottom:367.485000px;}
.y7d{bottom:368.175000px;}
.y1cc{bottom:371.055000px;}
.y11d{bottom:372.315000px;}
.y58{bottom:373.890000px;}
.y1a{bottom:377.850000px;}
.y12b{bottom:381.315000px;}
.y232{bottom:382.320000px;}
.y222{bottom:382.500000px;}
.yc0{bottom:384.915000px;}
.y7c{bottom:386.355000px;}
.y182{bottom:387.615000px;}
.yee{bottom:389.415000px;}
.y1e4{bottom:391.140000px;}
.y57{bottom:391.170000px;}
.y1d4{bottom:391.320000px;}
.y22f{bottom:391.605000px;}
.y103{bottom:394.995000px;}
.y155{bottom:396.255000px;}
.y174{bottom:397.695000px;}
.y1df{bottom:401.550000px;}
.y19c{bottom:404.175000px;}
.y7b{bottom:404.715000px;}
.y11c{bottom:405.075000px;}
.y20f{bottom:405.870000px;}
.y56{bottom:408.495000px;}
.y19{bottom:414.255000px;}
.yed{bottom:416.955000px;}
.ybf{bottom:417.855000px;}
.y181{bottom:419.655000px;}
.y102{bottom:422.355000px;}
.y7a{bottom:422.895000px;}
.y55{bottom:425.775000px;}
.y154{bottom:429.195000px;}
.y11b{bottom:430.455000px;}
.y173{bottom:430.635000px;}
.y23{bottom:436.935000px;}
.y79{bottom:441.075000px;}
.y19b{bottom:441.255000px;}
.y54{bottom:442.875000px;}
.y1e9{bottom:444.855000px;}
.yec{bottom:447.195000px;}
.y101{bottom:449.895000px;}
.y18{bottom:450.795000px;}
.y1b8{bottom:453.855000px;}
.y11a{bottom:455.655000px;}
.y78{bottom:459.255000px;}
.y53{bottom:460.155000px;}
.y153{bottom:462.135000px;}
.y172{bottom:463.575000px;}
.y19a{bottom:474.195000px;}
.y52{bottom:477.435000px;}
.y77{bottom:477.615000px;}
.yeb{bottom:480.135000px;}
.ybe{bottom:483.735000px;}
.y17{bottom:487.335000px;}
.y1ba{bottom:487.515000px;}
.y119{bottom:488.415000px;}
.y51{bottom:494.715000px;}
.y152{bottom:495.075000px;}
.y76{bottom:495.795000px;}
.y171{bottom:496.515000px;}
.y100{bottom:504.795000px;}
.y199{bottom:507.135000px;}
.y50{bottom:511.995000px;}
.yea{bottom:513.075000px;}
.y75{bottom:513.975000px;}
.ybd{bottom:516.855000px;}
.y118{bottom:521.175000px;}
.y16{bottom:523.695000px;}
.y1b7{bottom:526.215000px;}
.y151{bottom:528.015000px;}
.y4f{bottom:529.275000px;}
.y74{bottom:533.775000px;}
.yff{bottom:535.035000px;}
.y198{bottom:540.075000px;}
.ye9{bottom:546.015000px;}
.y4e{bottom:546.375000px;}
.y117{bottom:546.555000px;}
.ybc{bottom:549.795000px;}
.y1e2{bottom:556.560000px;}
.y73{bottom:558.615000px;}
.y21{bottom:560.055000px;}
.y15{bottom:560.235000px;}
.y150{bottom:560.955000px;}
.y170{bottom:562.395000px;}
.y4d{bottom:563.655000px;}
.y1b6{bottom:566.175000px;}
.yfe{bottom:567.975000px;}
.y197{bottom:573.015000px;}
.ye8{bottom:578.955000px;}
.y116{bottom:579.315000px;}
.y4c{bottom:580.935000px;}
.y72{bottom:582.555000px;}
.ybb{bottom:582.735000px;}
.y14f{bottom:593.895000px;}
.y16f{bottom:595.335000px;}
.y14{bottom:596.595000px;}
.y1ed{bottom:596.955000px;}
.y4b{bottom:598.215000px;}
.ya8{bottom:598.935000px;}
.y1b5{bottom:599.115000px;}
.yfd{bottom:600.915000px;}
.y115{bottom:604.545000px;}
.y196{bottom:605.985000px;}
.y71{bottom:609.735000px;}
.ye7{bottom:611.925000px;}
.y4a{bottom:615.495000px;}
.yba{bottom:615.705000px;}
.ya7{bottom:616.065000px;}
.y14e{bottom:627.045000px;}
.y16e{bottom:628.305000px;}
.y1b4{bottom:632.085000px;}
.y49{bottom:632.595000px;}
.y13{bottom:633.135000px;}
.ya6{bottom:633.345000px;}
.yfc{bottom:634.065000px;}
.y70{bottom:634.605000px;}
.y114{bottom:637.305000px;}
.y195{bottom:638.925000px;}
.y180{bottom:641.625000px;}
.ye6{bottom:645.045000px;}
.yb9{bottom:648.645000px;}
.y48{bottom:649.875000px;}
.ya5{bottom:650.625000px;}
.y6f{bottom:659.445000px;}
.y14d{bottom:659.985000px;}
.y16c{bottom:661.245000px;}
.y17f{bottom:662.325000px;}
.y1b3{bottom:665.025000px;}
.yfb{bottom:667.005000px;}
.y47{bottom:667.185000px;}
.y1fd{bottom:667.365000px;}
.ya4{bottom:667.905000px;}
.y12{bottom:669.525000px;}
.y113{bottom:670.065000px;}
.y194{bottom:671.865000px;}
.ye5{bottom:677.985000px;}
.yb8{bottom:681.585000px;}
.y46{bottom:684.465000px;}
.ya3{bottom:685.185000px;}
.y1fc{bottom:686.625000px;}
.yd6{bottom:690.585000px;}
.y14c{bottom:692.925000px;}
.y1b2{bottom:697.965000px;}
.y17e{bottom:698.865000px;}
.yfa{bottom:699.945000px;}
.y45{bottom:701.745000px;}
.ya2{bottom:702.285000px;}
.y112{bottom:702.825000px;}
.y193{bottom:704.805000px;}
.y11{bottom:706.965000px;}
.y6e{bottom:707.865000px;}
.ye4{bottom:710.925000px;}
.yb7{bottom:714.525000px;}
.yd5{bottom:718.125000px;}
.y44{bottom:719.025000px;}
.ya1{bottom:719.565000px;}
.y1fb{bottom:723.525000px;}
.y14b{bottom:725.865000px;}
.y16b{bottom:727.305000px;}
.y17d{bottom:730.905000px;}
.yf9{bottom:732.885000px;}
.y111{bottom:735.585000px;}
.y43{bottom:736.125000px;}
.ya0{bottom:736.845000px;}
.y192{bottom:737.925000px;}
.y10{bottom:743.685000px;}
.ye3{bottom:743.865000px;}
.y6d{bottom:744.405000px;}
.yd4{bottom:745.485000px;}
.yb6{bottom:747.465000px;}
.y42{bottom:753.405000px;}
.y9f{bottom:754.125000px;}
.y14a{bottom:758.805000px;}
.y16a{bottom:760.965000px;}
.y1b1{bottom:764.025000px;}
.yf8{bottom:765.825000px;}
.y110{bottom:768.345000px;}
.y41{bottom:770.685000px;}
.y191{bottom:770.865000px;}
.y9e{bottom:771.405000px;}
.yf{bottom:775.545000px;}
.y6c{bottom:776.265000px;}
.ye2{bottom:776.805000px;}
.y1fa{bottom:777.525000px;}
.yd3{bottom:779.505000px;}
.yb5{bottom:780.405000px;}
.y40{bottom:787.965000px;}
.y9d{bottom:788.685000px;}
.y149{bottom:791.745000px;}
.y168{bottom:793.905000px;}
.y1b0{bottom:796.965000px;}
.yf7{bottom:798.765000px;}
.y10f{bottom:801.105000px;}
.y190{bottom:803.805000px;}
.y3f{bottom:805.245000px;}
.y9c{bottom:805.785000px;}
.ye{bottom:807.405000px;}
.y6b{bottom:808.125000px;}
.ye1{bottom:809.745000px;}
.y1f9{bottom:810.465000px;}
.yd2{bottom:812.445000px;}
.yb4{bottom:813.345000px;}
.y3e{bottom:822.525000px;}
.y9b{bottom:823.065000px;}
.y21a{bottom:823.785000px;}
.y240{bottom:824.685000px;}
.y148{bottom:824.865000px;}
.y1af{bottom:829.905000px;}
.yf6{bottom:831.705000px;}
.y10e{bottom:833.865000px;}
.y247{bottom:835.665000px;}
.y18f{bottom:836.745000px;}
.yd{bottom:838.545000px;}
.y1cb{bottom:839.085000px;}
.y6a{bottom:839.265000px;}
.y3d{bottom:839.625000px;}
.y9a{bottom:840.345000px;}
.ye0{bottom:842.685000px;}
.y1f8{bottom:843.405000px;}
.yd1{bottom:845.385000px;}
.yb3{bottom:846.465000px;}
.y3c{bottom:856.905000px;}
.y99{bottom:857.625000px;}
.y166{bottom:859.785000px;}
.y1ca{bottom:860.685000px;}
.y1ae{bottom:862.845000px;}
.yf5{bottom:864.645000px;}
.y10d{bottom:866.625000px;}
.y18e{bottom:869.685000px;}
.yc{bottom:871.485000px;}
.y69{bottom:872.205000px;}
.y3b{bottom:874.185000px;}
.y98{bottom:874.905000px;}
.ydf{bottom:875.670000px;}
.y1f7{bottom:876.390000px;}
.yd0{bottom:878.550000px;}
.yb2{bottom:879.405000px;}
.y23f{bottom:890.610000px;}
.y3a{bottom:891.465000px;}
.y97{bottom:892.230000px;}
.y165{bottom:892.770000px;}
.y1ad{bottom:895.830000px;}
.yf4{bottom:897.630000px;}
.y10c{bottom:899.610000px;}
.yb{bottom:899.925000px;}
.y18d{bottom:902.670000px;}
.yde{bottom:908.610000px;}
.y39{bottom:908.745000px;}
.y96{bottom:909.330000px;}
.ycf{bottom:911.490000px;}
.yb1{bottom:912.390000px;}
.y68{bottom:917.250000px;}
.y1c9{bottom:919.590000px;}
.y23e{bottom:923.730000px;}
.y163{bottom:925.710000px;}
.y38{bottom:926.070000px;}
.y95{bottom:926.610000px;}
.ya{bottom:928.770000px;}
.yf3{bottom:930.570000px;}
.y10b{bottom:932.370000px;}
.y67{bottom:935.610000px;}
.ydd{bottom:941.730000px;}
.y1f6{bottom:942.450000px;}
.y37{bottom:943.170000px;}
.y94{bottom:943.890000px;}
.yce{bottom:944.430000px;}
.yb0{bottom:945.330000px;}
.y66{bottom:953.790000px;}
.y23d{bottom:956.670000px;}
.y162{bottom:958.830000px;}
.y9{bottom:959.730000px;}
.y36{bottom:960.450000px;}
.y93{bottom:961.170000px;}
.y1ac{bottom:961.710000px;}
.yf2{bottom:963.690000px;}
.y10a{bottom:965.130000px;}
.y18c{bottom:968.550000px;}
.y65{bottom:971.970000px;}
.ydc{bottom:974.670000px;}
.y17c{bottom:975.030000px;}
.y1f5{bottom:975.390000px;}
.ycd{bottom:977.370000px;}
.y35{bottom:977.730000px;}
.yaf{bottom:978.270000px;}
.y92{bottom:978.450000px;}
.y13e{bottom:980.610000px;}
.y246{bottom:985.650000px;}
.y23c{bottom:989.610000px;}
.y64{bottom:990.150000px;}
.y8{bottom:990.690000px;}
.y161{bottom:991.770000px;}
.y1ab{bottom:994.650000px;}
.y34{bottom:995.010000px;}
.y91{bottom:995.730000px;}
.yf1{bottom:996.630000px;}
.y109{bottom:997.890000px;}
.y18b{bottom:1001.490000px;}
.ydb{bottom:1007.610000px;}
.y1f4{bottom:1008.150000px;}
.y63{bottom:1008.510000px;}
.ycc{bottom:1010.310000px;}
.yae{bottom:1011.210000px;}
.y33{bottom:1012.290000px;}
.y90{bottom:1012.830000px;}
.y7{bottom:1021.650000px;}
.y23b{bottom:1022.550000px;}
.y160{bottom:1024.710000px;}
.y62{bottom:1026.690000px;}
.y1aa{bottom:1027.590000px;}
.y32{bottom:1029.390000px;}
.yf0{bottom:1029.570000px;}
.y8f{bottom:1030.110000px;}
.y108{bottom:1030.650000px;}
.y18a{bottom:1034.430000px;}
.yda{bottom:1040.550000px;}
.ycb{bottom:1043.250000px;}
.yad{bottom:1044.150000px;}
.y61{bottom:1044.870000px;}
.y31{bottom:1046.670000px;}
.y8e{bottom:1047.390000px;}
.y245{bottom:1051.530000px;}
.y6{bottom:1052.790000px;}
.y23a{bottom:1055.490000px;}
.y15f{bottom:1057.650000px;}
.y1f3{bottom:1062.150000px;}
.yef{bottom:1062.510000px;}
.y60{bottom:1063.230000px;}
.y107{bottom:1063.410000px;}
.y1a9{bottom:1063.590000px;}
.y30{bottom:1063.950000px;}
.y8d{bottom:1064.670000px;}
.y189{bottom:1070.430000px;}
.yd9{bottom:1073.490000px;}
.yca{bottom:1074.930000px;}
.yac{bottom:1077.090000px;}
.y2f{bottom:1081.230000px;}
.y8c{bottom:1081.950000px;}
.y5{bottom:1083.390000px;}
.y1f2{bottom:1086.270000px;}
.y15e{bottom:1090.590000px;}
.yd8{bottom:1095.450000px;}
.y106{bottom:1096.170000px;}
.y1a8{bottom:1096.530000px;}
.y2e{bottom:1098.510000px;}
.y8b{bottom:1099.050000px;}
.yc9{bottom:1106.430000px;}
.y4{bottom:1108.590000px;}
.yab{bottom:1110.030000px;}
.y1c8{bottom:1114.350000px;}
.y2d{bottom:1115.790000px;}
.y8a{bottom:1116.330000px;}
.yd7{bottom:1117.410000px;}
.y105{bottom:1121.370000px;}
.y1f1{bottom:1121.910000px;}
.y15c{bottom:1123.530000px;}
.y2c{bottom:1132.890000px;}
.y89{bottom:1133.610000px;}
.yc8{bottom:1139.400000px;}
.y1f0{bottom:1140.840000px;}
.yaa{bottom:1143.150000px;}
.y2b{bottom:1150.170000px;}
.y3{bottom:1150.710000px;}
.y88{bottom:1150.890000px;}
.y2{bottom:1164.570000px;}
.y5f{bottom:1164.600000px;}
.ya9{bottom:1165.140000px;}
.y2a{bottom:1167.450000px;}
.y87{bottom:1168.200000px;}
.y29{bottom:1184.760000px;}
.y127{bottom:1194.120000px;}
.y28{bottom:1202.040000px;}
.y27{bottom:1219.320000px;}
.y26{bottom:1236.420000px;}
.y25{bottom:1271.700000px;}
.h39{height:27.720000px;}
.h23{height:30.077578px;}
.h25{height:32.940000px;}
.h26{height:32.976000px;}
.h27{height:33.120000px;}
.h3c{height:40.320000px;}
.h2b{height:41.027344px;}
.h30{height:41.940000px;}
.h2f{height:42.120000px;}
.h2c{height:42.156000px;}
.h18{height:43.493203px;}
.h13{height:45.403594px;}
.h17{height:45.695391px;}
.h2a{height:47.223633px;}
.h22{height:47.980898px;}
.h2{height:50.326875px;}
.h3e{height:52.260820px;}
.h32{height:52.695866px;}
.h36{height:53.709961px;}
.h24{height:54.421875px;}
.h3d{height:57.927656px;}
.h3{height:58.651172px;}
.h1f{height:59.439023px;}
.h37{height:61.189805px;}
.h43{height:61.200000px;}
.h1a{height:62.964844px;}
.h40{height:63.019687px;}
.h15{height:64.002656px;}
.h46{height:64.080000px;}
.h28{height:65.880000px;}
.h1e{height:65.884219px;}
.h3b{height:66.027445px;}
.h29{height:66.060000px;}
.h31{height:66.780000px;}
.h21{height:67.824844px;}
.h7{height:68.378906px;}
.h11{height:70.664063px;}
.h1b{height:71.613281px;}
.h2e{height:71.740898px;}
.h45{height:71.756508px;}
.h20{height:71.824219px;}
.hf{height:72.562500px;}
.h19{height:73.722656px;}
.h2d{height:74.004654px;}
.h6{height:77.678438px;}
.ha{height:78.177656px;}
.h9{height:82.054688px;}
.h14{height:82.676953px;}
.h41{height:83.930766px;}
.h16{height:84.898125px;}
.h5{height:85.503516px;}
.h4{height:87.800625px;}
.hc{height:91.354219px;}
.hb{height:91.941328px;}
.h34{height:92.153320px;}
.h12{height:99.756000px;}
.h8{height:100.342969px;}
.h38{height:107.419922px;}
.hd{height:128.277422px;}
.h47{height:141.547500px;}
.h10{height:158.400000px;}
.h33{height:164.730000px;}
.he{height:382.035000px;}
.h44{height:433.080000px;}
.h3f{height:433.260000px;}
.h42{height:433.440000px;}
.h35{height:438.660000px;}
.h3a{height:438.840000px;}
.h1c{height:1262.880000px;}
.h1d{height:1263.000000px;}
.h0{height:1288.440000px;}
.h1{height:1288.500000px;}
.w5{width:22.140000px;}
.w4{width:26.640000px;}
.w3{width:57.960000px;}
.w10{width:62.496000px;}
.w15{width:79.380000px;}
.w14{width:81.936000px;}
.w12{width:82.656000px;}
.we{width:100.080000px;}
.w1b{width:103.896000px;}
.w1a{width:104.076000px;}
.w19{width:104.940000px;}
.w13{width:112.140000px;}
.w11{width:114.300000px;}
.w1c{width:114.336000px;}
.wf{width:145.080000px;}
.w1e{width:156.780000px;}
.w18{width:208.830000px;}
.w17{width:209.010000px;}
.w16{width:219.270000px;}
.wd{width:563.505000px;}
.w1d{width:611.640000px;}
.w1f{width:611.820000px;}
.w21{width:680.220000px;}
.w22{width:680.400000px;}
.w20{width:686.625000px;}
.w23{width:822.240000px;}
.w24{width:822.420000px;}
.wc{width:892.979973px;}
.wb{width:892.979987px;}
.w9{width:892.980000px;}
.wa{width:893.250000px;}
.w8{width:918.719986px;}
.w6{width:918.720000px;}
.w7{width:918.750000px;}
.w1{width:1896.750000px;}
.w2{width:1896.839972px;}
.w0{width:1896.840000px;}
.x40{left:-21.816000px;}
.x0{left:0.000000px;}
.x30{left:5.580000px;}
.x4d{left:8.100000px;}
.x5a{left:10.800000px;}
.xc{left:15.840000px;}
.x6{left:18.720000px;}
.x41{left:20.700000px;}
.x43{left:21.960000px;}
.x52{left:25.125000px;}
.x36{left:26.865000px;}
.x31{left:29.520000px;}
.x42{left:31.365000px;}
.xd{left:33.480000px;}
.x3f{left:35.100000px;}
.x3a{left:36.720000px;}
.x7{left:40.680000px;}
.x34{left:42.300000px;}
.x5b{left:46.230000px;}
.x4a{left:47.520000px;}
.x3c{left:51.480000px;}
.x38{left:52.740000px;}
.x50{left:54.030000px;}
.x45{left:55.980000px;}
.x44{left:57.240000px;}
.x4f{left:60.870000px;}
.x8{left:63.900000px;}
.x56{left:74.130000px;}
.x46{left:79.374000px;}
.x48{left:82.800000px;}
.x9{left:87.330000px;}
.x60{left:99.756000px;}
.x57{left:101.235000px;}
.x5e{left:104.220000px;}
.x1b{left:106.415987px;}
.x2d{left:110.195987px;}
.x51{left:111.315000px;}
.x68{left:114.875987px;}
.x67{left:117.035987px;}
.x25{left:122.975987px;}
.x13{left:127.655986px;}
.x10{left:129.095986px;}
.x1f{left:133.415987px;}
.x61{left:141.585000px;}
.x29{left:148.895987px;}
.x69{left:157.349987px;}
.x22{left:159.509987px;}
.x63{left:166.470000px;}
.x5c{left:178.455000px;}
.x59{left:193.470000px;}
.x65{left:194.610000px;}
.x62{left:198.285000px;}
.x4e{left:211.350000px;}
.x53{left:222.270000px;}
.x35{left:252.030000px;}
.x2e{left:264.819000px;}
.x58{left:270.750000px;}
.x3{left:275.969972px;}
.x66{left:279.870000px;}
.x37{left:314.535000px;}
.x1a{left:321.194987px;}
.x2c{left:322.454987px;}
.x47{left:325.695000px;}
.x15{left:340.094986px;}
.x11{left:347.654986px;}
.x5f{left:383.790000px;}
.x27{left:400.574987px;}
.x26{left:403.274987px;}
.x20{left:411.554987px;}
.x23{left:414.974987px;}
.x21{left:416.414987px;}
.x64{left:424.155000px;}
.x24{left:425.774987px;}
.x39{left:428.835000px;}
.x4b{left:430.635000px;}
.x28{left:437.114987px;}
.x18{left:439.454987px;}
.x1e{left:441.614987px;}
.x19{left:446.474987px;}
.x14{left:452.774986px;}
.x12{left:454.934986px;}
.xe{left:459.434986px;}
.x54{left:501.405000px;}
.x5d{left:509.655000px;}
.x3b{left:511.485000px;}
.x49{left:534.705000px;}
.xf{left:571.604986px;}
.x1c{left:575.924987px;}
.x55{left:603.720000px;}
.x3d{left:623.625000px;}
.x4c{left:639.645000px;}
.x2f{left:669.930000px;}
.x16{left:703.769986px;}
.x3e{left:705.570000px;}
.x2a{left:713.309973px;}
.x2b{left:719.429987px;}
.x33{left:742.469987px;}
.x32{left:754.889987px;}
.x1d{left:786.749987px;}
.x17{left:791.429986px;}
.x5{left:924.195000px;}
.xa{left:932.655000px;}
.xb{left:937.155000px;}
.x2{left:975.854972px;}
.x1{left:1006.124972px;}
.x4{left:1326.704972px;}
@media print{
.v1{vertical-align:-81.408000pt;}
.v2{vertical-align:-64.000000pt;}
.v3{vertical-align:-60.800000pt;}
.v8{vertical-align:-24.960000pt;}
.v6{vertical-align:-21.120000pt;}
.vb{vertical-align:-18.933333pt;}
.va{vertical-align:-16.266667pt;}
.v4{vertical-align:-5.120000pt;}
.v9{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v5{vertical-align:21.120000pt;}
.ls8{letter-spacing:-11.200000pt;}
.ls4{letter-spacing:-8.480000pt;}
.ls9{letter-spacing:-7.360000pt;}
.ls7{letter-spacing:-6.720000pt;}
.ls2f{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls35{letter-spacing:-0.794667pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls31{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.297067pt;}
.ls24{letter-spacing:-0.280533pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.234133pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.036480pt;}
.ls2a{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls17{letter-spacing:-0.000005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.022400pt;}
.ls2d{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.117867pt;}
.ls3c{letter-spacing:0.126933pt;}
.lsd{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.216533pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.416000pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.832000pt;}
.ls25{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:1.536000pt;}
.ls12{letter-spacing:1.642667pt;}
.ls18{letter-spacing:2.176000pt;}
.ls27{letter-spacing:2.816000pt;}
.ls29{letter-spacing:3.456000pt;}
.ls30{letter-spacing:4.096000pt;}
.ls28{letter-spacing:4.736000pt;}
.ls33{letter-spacing:6.016000pt;}
.ls39{letter-spacing:6.309120pt;}
.ls34{letter-spacing:7.296000pt;}
.ls38{letter-spacing:12.416000pt;}
.ls3d{letter-spacing:13.066667pt;}
.ls37{letter-spacing:14.336000pt;}
.ls1c{letter-spacing:18.816000pt;}
.ls20{letter-spacing:29.568000pt;}
.ls3f{letter-spacing:157.056000pt;}
.ls3a{letter-spacing:258.571093pt;}
.ls6{letter-spacing:761.727147pt;}
.ls0{letter-spacing:3684.947627pt;}
.ls5{letter-spacing:3719.946667pt;}
.ws6{word-spacing:-20.710400pt;}
.wsb{word-spacing:-20.428693pt;}
.ws1{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.296000pt;}
.ws9{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.464000pt;}
.wsf{word-spacing:-14.463995pt;}
.wsa{word-spacing:-14.336000pt;}
.ws10{word-spacing:-14.272000pt;}
.ws21{word-spacing:-14.208000pt;}
.ws12{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.952000pt;}
.ws18{word-spacing:-13.696000pt;}
.ws22{word-spacing:-13.632000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws19{word-spacing:-12.221653pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.880000pt;}
.ws17{word-spacing:-10.848000pt;}
.ws11{word-spacing:-9.690880pt;}
.ws13{word-spacing:-9.456747pt;}
.ws14{word-spacing:-9.410347pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:49.053013pt;}
.ws16{word-spacing:50.599680pt;}
.ws1a{word-spacing:63.747840pt;}
.ws1c{word-spacing:103.671040pt;}
.ws15{word-spacing:105.324373pt;}
.ws1f{word-spacing:244.868373pt;}
.ws1b{word-spacing:265.774933pt;}
.ws1e{word-spacing:536.441600pt;}
._3{margin-left:-18.896640pt;}
._c{margin-left:-17.921280pt;}
._1{margin-left:-11.770880pt;}
._2{margin-left:-10.881920pt;}
._4{margin-left:-9.757440pt;}
._d{margin-left:-8.863360pt;}
._8{margin-left:-7.808000pt;}
._9{margin-left:-6.848000pt;}
._a{margin-left:-5.869013pt;}
._b{margin-left:-4.708480pt;}
._17{margin-left:-3.328000pt;}
._f{margin-left:-2.112000pt;}
._5{margin-left:-0.999680pt;}
._6{width:0.965760pt;}
._e{width:2.496000pt;}
._15{width:3.392000pt;}
._14{width:4.544000pt;}
._1a{width:5.888000pt;}
._1b{width:7.081813pt;}
._16{width:8.088320pt;}
._12{width:9.383680pt;}
._13{width:10.298240pt;}
._11{width:11.200000pt;}
._10{width:12.608000pt;}
._1e{width:13.674667pt;}
._1f{width:15.456000pt;}
._1c{width:16.768000pt;}
._26{width:17.716480pt;}
._19{width:18.831360pt;}
._18{width:19.904000pt;}
._1d{width:21.632000pt;}
._2a{width:22.592000pt;}
._21{width:23.783680pt;}
._20{width:24.960000pt;}
._22{width:26.240000pt;}
._23{width:27.415253pt;}
._3f{width:28.305493pt;}
._25{width:29.362560pt;}
._38{width:30.272000pt;}
._3c{width:31.396907pt;}
._43{width:32.911360pt;}
._29{width:34.176000pt;}
._28{width:35.072000pt;}
._53{width:41.021013pt;}
._24{width:42.090667pt;}
._35{width:48.704000pt;}
._34{width:54.592000pt;}
._56{width:65.856000pt;}
._4b{width:71.488000pt;}
._2b{width:78.621867pt;}
._3d{width:80.256000pt;}
._3e{width:81.313920pt;}
._4a{width:91.456000pt;}
._2f{width:93.095253pt;}
._37{width:95.000747pt;}
._3b{width:95.989760pt;}
._42{width:103.008000pt;}
._3a{width:104.160000pt;}
._49{width:105.391360pt;}
._48{width:106.688000pt;}
._47{width:108.160000pt;}
._32{width:109.937920pt;}
._2c{width:112.172160pt;}
._4e{width:122.368000pt;}
._30{width:127.176107pt;}
._45{width:128.879360pt;}
._44{width:130.272000pt;}
._2e{width:133.403307pt;}
._4d{width:139.623680pt;}
._4c{width:140.608000pt;}
._50{width:147.136000pt;}
._39{width:156.928000pt;}
._40{width:159.591680pt;}
._51{width:167.040000pt;}
._52{width:168.576000pt;}
._33{width:173.047040pt;}
._2d{width:174.647040pt;}
._46{width:175.904000pt;}
._27{width:177.514667pt;}
._31{width:193.234773pt;}
._54{width:202.816000pt;}
._36{width:214.592000pt;}
._41{width:384.640000pt;}
._55{width:613.728000pt;}
._4f{width:675.082667pt;}
._7{width:754.974720pt;}
._0{width:2022.186667pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs10{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:59.008000pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fse{font-size:67.461249pt;}
.fs9{font-size:74.880000pt;}
.fs11{font-size:75.008000pt;}
.fs2{font-size:77.440000pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs13{font-size:122.880000pt;}
.fs7{font-size:149.120000pt;}
.y1ec{bottom:-26.560000pt;}
.y219{bottom:-24.160000pt;}
.y239{bottom:-21.640000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:1.280000pt;}
.y1eb{bottom:5.120000pt;}
.y1e3{bottom:5.760000pt;}
.y218{bottom:7.520000pt;}
.y238{bottom:10.080000pt;}
.y1bb{bottom:13.120000pt;}
.y15a{bottom:14.080000pt;}
.y15d{bottom:14.106667pt;}
.y167{bottom:14.120000pt;}
.y164{bottom:14.240000pt;}
.y1a6{bottom:18.074667pt;}
.y1a5{bottom:18.080000pt;}
.y19f{bottom:18.120000pt;}
.y1a1{bottom:18.240000pt;}
.y1a7{bottom:18.714667pt;}
.y1a2{bottom:18.720000pt;}
.y1ea{bottom:21.920000pt;}
.y217{bottom:23.840000pt;}
.y1b9{bottom:24.160000pt;}
.y237{bottom:26.400000pt;}
.y216{bottom:40.480000pt;}
.y236{bottom:43.040000pt;}
.y169{bottom:43.360000pt;}
.y1c3{bottom:43.400000pt;}
.y16d{bottom:43.520000pt;}
.yc7{bottom:50.240000pt;}
.y12a{bottom:50.560000pt;}
.y1{bottom:50.880000pt;}
.y1c1{bottom:53.160000pt;}
.yc6{bottom:68.032000pt;}
.y129{bottom:68.672000pt;}
.y1c0{bottom:72.680000pt;}
.y22d{bottom:78.693333pt;}
.y128{bottom:86.432000pt;}
.y20d{bottom:91.680000pt;}
.y1bf{bottom:92.200000pt;}
.y223{bottom:95.226667pt;}
.y1c2{bottom:101.960000pt;}
.y1dd{bottom:103.173333pt;}
.y144{bottom:104.672000pt;}
.y15b{bottom:104.992000pt;}
.y201{bottom:106.752000pt;}
.y24{bottom:109.120000pt;}
.y203{bottom:109.306667pt;}
.y1be{bottom:111.720000pt;}
.y139{bottom:115.072000pt;}
.y244{bottom:117.792000pt;}
.y224{bottom:119.360000pt;}
.y143{bottom:120.352000pt;}
.y1d5{bottom:120.893333pt;}
.y126{bottom:121.632000pt;}
.y234{bottom:122.240000pt;}
.y1d3{bottom:124.672000pt;}
.y1ef{bottom:128.352000pt;}
.y20{bottom:130.752000pt;}
.y13d{bottom:131.072000pt;}
.y1bd{bottom:131.240000pt;}
.y17b{bottom:132.512000pt;}
.y1c7{bottom:132.672000pt;}
.y142{bottom:133.312000pt;}
.y204{bottom:133.440000pt;}
.y132{bottom:133.786667pt;}
.y159{bottom:134.906667pt;}
.y200{bottom:136.026667pt;}
.y125{bottom:140.026667pt;}
.y225{bottom:143.493333pt;}
.y138{bottom:144.346667pt;}
.y22e{bottom:144.413333pt;}
.y214{bottom:144.893333pt;}
.y141{bottom:146.426667pt;}
.y243{bottom:147.066667pt;}
.y1ee{bottom:147.866667pt;}
.y221{bottom:148.666667pt;}
.y1d6{bottom:149.213333pt;}
.y140{bottom:149.786667pt;}
.y1e5{bottom:151.973333pt;}
.y1d2{bottom:153.946667pt;}
.y1ff{bottom:155.546667pt;}
.y1e8{bottom:156.226667pt;}
.y205{bottom:157.600000pt;}
.y124{bottom:158.426667pt;}
.y1e7{bottom:159.386667pt;}
.y13f{bottom:160.026667pt;}
.y13c{bottom:160.346667pt;}
.y188{bottom:161.146667pt;}
.y17a{bottom:161.786667pt;}
.y1c6{bottom:161.946667pt;}
.y131{bottom:163.066667pt;}
.y226{bottom:167.613333pt;}
.y86{bottom:167.706667pt;}
.y1a4{bottom:169.946667pt;}
.y248{bottom:171.866667pt;}
.y1f{bottom:173.786667pt;}
.y20e{bottom:174.013333pt;}
.y242{bottom:176.346667pt;}
.y123{bottom:176.826667pt;}
.y1d7{bottom:177.533333pt;}
.y220{bottom:178.106667pt;}
.y1c5{bottom:181.466667pt;}
.y1de{bottom:181.733333pt;}
.y206{bottom:181.760000pt;}
.y1d1{bottom:183.226667pt;}
.y1fe{bottom:187.546667pt;}
.y13b{bottom:189.786667pt;}
.y187{bottom:190.426667pt;}
.y179{bottom:191.066667pt;}
.y227{bottom:191.746667pt;}
.y130{bottom:192.346667pt;}
.y215{bottom:193.306667pt;}
.y122{bottom:195.226667pt;}
.y85{bottom:198.266667pt;}
.yc5{bottom:201.786667pt;}
.y137{bottom:203.066667pt;}
.y212{bottom:203.680000pt;}
.y202{bottom:203.840000pt;}
.y241{bottom:205.626667pt;}
.y1d8{bottom:205.826667pt;}
.y207{bottom:205.893333pt;}
.y1e{bottom:206.266667pt;}
.y1a3{bottom:207.226667pt;}
.y21f{bottom:207.386667pt;}
.y1d0{bottom:212.666667pt;}
.y84{bottom:213.786667pt;}
.y121{bottom:214.426667pt;}
.y228{bottom:215.866667pt;}
.y1c4{bottom:216.986667pt;}
.y13a{bottom:218.906667pt;}
.y147{bottom:219.066667pt;}
.y186{bottom:219.706667pt;}
.y178{bottom:220.346667pt;}
.y12f{bottom:221.626667pt;}
.y5e{bottom:224.986667pt;}
.yc4{bottom:226.906667pt;}
.y83{bottom:229.946667pt;}
.y208{bottom:230.053333pt;}
.y136{bottom:232.346667pt;}
.y1d9{bottom:234.146667pt;}
.y158{bottom:234.906667pt;}
.y177{bottom:236.186667pt;}
.y21e{bottom:236.666667pt;}
.y1d{bottom:238.586667pt;}
.y229{bottom:240.000000pt;}
.y5d{bottom:240.346667pt;}
.y1cf{bottom:241.946667pt;}
.y120{bottom:243.546667pt;}
.y1a0{bottom:244.666667pt;}
.y82{bottom:246.266667pt;}
.y146{bottom:248.346667pt;}
.y12e{bottom:250.906667pt;}
.y185{bottom:252.986667pt;}
.y209{bottom:254.213333pt;}
.yc3{bottom:254.586667pt;}
.y5c{bottom:255.706667pt;}
.y1bc{bottom:256.186667pt;}
.y1e1{bottom:260.000000pt;}
.y135{bottom:261.626667pt;}
.y81{bottom:262.426667pt;}
.y1da{bottom:262.466667pt;}
.y233{bottom:263.813333pt;}
.y22a{bottom:264.133333pt;}
.y157{bottom:264.346667pt;}
.y21d{bottom:265.946667pt;}
.y213{bottom:269.733333pt;}
.y1c{bottom:271.066667pt;}
.y1ce{bottom:271.226667pt;}
.y211{bottom:272.066667pt;}
.y11f{bottom:272.666667pt;}
.y231{bottom:277.146667pt;}
.y145{bottom:277.626667pt;}
.y20a{bottom:278.333333pt;}
.y80{bottom:278.586667pt;}
.y12d{bottom:280.346667pt;}
.y19e{bottom:282.106667pt;}
.y184{bottom:282.266667pt;}
.yc2{bottom:283.546667pt;}
.y5b{bottom:286.426667pt;}
.y22b{bottom:288.253333pt;}
.y1e0{bottom:288.800000pt;}
.y1db{bottom:290.786667pt;}
.y134{bottom:290.906667pt;}
.y156{bottom:293.626667pt;}
.y176{bottom:294.746667pt;}
.y7f{bottom:294.906667pt;}
.y21c{bottom:295.226667pt;}
.y210{bottom:295.746667pt;}
.y1cd{bottom:300.546667pt;}
.y230{bottom:300.773333pt;}
.y5a{bottom:301.626667pt;}
.y11e{bottom:301.826667pt;}
.y20b{bottom:302.493333pt;}
.y1b{bottom:303.386667pt;}
.y12c{bottom:309.666667pt;}
.y7e{bottom:311.106667pt;}
.y183{bottom:311.586667pt;}
.y22c{bottom:312.413333pt;}
.yc1{bottom:312.866667pt;}
.y235{bottom:315.266667pt;}
.y59{bottom:316.986667pt;}
.y1dc{bottom:319.066667pt;}
.y19d{bottom:320.226667pt;}
.y1e6{bottom:322.080000pt;}
.y133{bottom:322.946667pt;}
.y175{bottom:324.066667pt;}
.y21b{bottom:324.546667pt;}
.y104{bottom:326.626667pt;}
.y20c{bottom:326.653333pt;}
.y7d{bottom:327.266667pt;}
.y1cc{bottom:329.826667pt;}
.y11d{bottom:330.946667pt;}
.y58{bottom:332.346667pt;}
.y1a{bottom:335.866667pt;}
.y12b{bottom:338.946667pt;}
.y232{bottom:339.840000pt;}
.y222{bottom:340.000000pt;}
.yc0{bottom:342.146667pt;}
.y7c{bottom:343.426667pt;}
.y182{bottom:344.546667pt;}
.yee{bottom:346.146667pt;}
.y1e4{bottom:347.680000pt;}
.y57{bottom:347.706667pt;}
.y1d4{bottom:347.840000pt;}
.y22f{bottom:348.093333pt;}
.y103{bottom:351.106667pt;}
.y155{bottom:352.226667pt;}
.y174{bottom:353.506667pt;}
.y1df{bottom:356.933333pt;}
.y19c{bottom:359.266667pt;}
.y7b{bottom:359.746667pt;}
.y11c{bottom:360.066667pt;}
.y20f{bottom:360.773333pt;}
.y56{bottom:363.106667pt;}
.y19{bottom:368.226667pt;}
.yed{bottom:370.626667pt;}
.ybf{bottom:371.426667pt;}
.y181{bottom:373.026667pt;}
.y102{bottom:375.426667pt;}
.y7a{bottom:375.906667pt;}
.y55{bottom:378.466667pt;}
.y154{bottom:381.506667pt;}
.y11b{bottom:382.626667pt;}
.y173{bottom:382.786667pt;}
.y23{bottom:388.386667pt;}
.y79{bottom:392.066667pt;}
.y19b{bottom:392.226667pt;}
.y54{bottom:393.666667pt;}
.y1e9{bottom:395.426667pt;}
.yec{bottom:397.506667pt;}
.y101{bottom:399.906667pt;}
.y18{bottom:400.706667pt;}
.y1b8{bottom:403.426667pt;}
.y11a{bottom:405.026667pt;}
.y78{bottom:408.226667pt;}
.y53{bottom:409.026667pt;}
.y153{bottom:410.786667pt;}
.y172{bottom:412.066667pt;}
.y19a{bottom:421.506667pt;}
.y52{bottom:424.386667pt;}
.y77{bottom:424.546667pt;}
.yeb{bottom:426.786667pt;}
.ybe{bottom:429.986667pt;}
.y17{bottom:433.186667pt;}
.y1ba{bottom:433.346667pt;}
.y119{bottom:434.146667pt;}
.y51{bottom:439.746667pt;}
.y152{bottom:440.066667pt;}
.y76{bottom:440.706667pt;}
.y171{bottom:441.346667pt;}
.y100{bottom:448.706667pt;}
.y199{bottom:450.786667pt;}
.y50{bottom:455.106667pt;}
.yea{bottom:456.066667pt;}
.y75{bottom:456.866667pt;}
.ybd{bottom:459.426667pt;}
.y118{bottom:463.266667pt;}
.y16{bottom:465.506667pt;}
.y1b7{bottom:467.746667pt;}
.y151{bottom:469.346667pt;}
.y4f{bottom:470.466667pt;}
.y74{bottom:474.466667pt;}
.yff{bottom:475.586667pt;}
.y198{bottom:480.066667pt;}
.ye9{bottom:485.346667pt;}
.y4e{bottom:485.666667pt;}
.y117{bottom:485.826667pt;}
.ybc{bottom:488.706667pt;}
.y1e2{bottom:494.720000pt;}
.y73{bottom:496.546667pt;}
.y21{bottom:497.826667pt;}
.y15{bottom:497.986667pt;}
.y150{bottom:498.626667pt;}
.y170{bottom:499.906667pt;}
.y4d{bottom:501.026667pt;}
.y1b6{bottom:503.266667pt;}
.yfe{bottom:504.866667pt;}
.y197{bottom:509.346667pt;}
.ye8{bottom:514.626667pt;}
.y116{bottom:514.946667pt;}
.y4c{bottom:516.386667pt;}
.y72{bottom:517.826667pt;}
.ybb{bottom:517.986667pt;}
.y14f{bottom:527.906667pt;}
.y16f{bottom:529.186667pt;}
.y14{bottom:530.306667pt;}
.y1ed{bottom:530.626667pt;}
.y4b{bottom:531.746667pt;}
.ya8{bottom:532.386667pt;}
.y1b5{bottom:532.546667pt;}
.yfd{bottom:534.146667pt;}
.y115{bottom:537.373333pt;}
.y196{bottom:538.653333pt;}
.y71{bottom:541.986667pt;}
.ye7{bottom:543.933333pt;}
.y4a{bottom:547.106667pt;}
.yba{bottom:547.293333pt;}
.ya7{bottom:547.613333pt;}
.y14e{bottom:557.373333pt;}
.y16e{bottom:558.493333pt;}
.y1b4{bottom:561.853333pt;}
.y49{bottom:562.306667pt;}
.y13{bottom:562.786667pt;}
.ya6{bottom:562.973333pt;}
.yfc{bottom:563.613333pt;}
.y70{bottom:564.093333pt;}
.y114{bottom:566.493333pt;}
.y195{bottom:567.933333pt;}
.y180{bottom:570.333333pt;}
.ye6{bottom:573.373333pt;}
.yb9{bottom:576.573333pt;}
.y48{bottom:577.666667pt;}
.ya5{bottom:578.333333pt;}
.y6f{bottom:586.173333pt;}
.y14d{bottom:586.653333pt;}
.y16c{bottom:587.773333pt;}
.y17f{bottom:588.733333pt;}
.y1b3{bottom:591.133333pt;}
.yfb{bottom:592.893333pt;}
.y47{bottom:593.053333pt;}
.y1fd{bottom:593.213333pt;}
.ya4{bottom:593.693333pt;}
.y12{bottom:595.133333pt;}
.y113{bottom:595.613333pt;}
.y194{bottom:597.213333pt;}
.ye5{bottom:602.653333pt;}
.yb8{bottom:605.853333pt;}
.y46{bottom:608.413333pt;}
.ya3{bottom:609.053333pt;}
.y1fc{bottom:610.333333pt;}
.yd6{bottom:613.853333pt;}
.y14c{bottom:615.933333pt;}
.y1b2{bottom:620.413333pt;}
.y17e{bottom:621.213333pt;}
.yfa{bottom:622.173333pt;}
.y45{bottom:623.773333pt;}
.ya2{bottom:624.253333pt;}
.y112{bottom:624.733333pt;}
.y193{bottom:626.493333pt;}
.y11{bottom:628.413333pt;}
.y6e{bottom:629.213333pt;}
.ye4{bottom:631.933333pt;}
.yb7{bottom:635.133333pt;}
.yd5{bottom:638.333333pt;}
.y44{bottom:639.133333pt;}
.ya1{bottom:639.613333pt;}
.y1fb{bottom:643.133333pt;}
.y14b{bottom:645.213333pt;}
.y16b{bottom:646.493333pt;}
.y17d{bottom:649.693333pt;}
.yf9{bottom:651.453333pt;}
.y111{bottom:653.853333pt;}
.y43{bottom:654.333333pt;}
.ya0{bottom:654.973333pt;}
.y192{bottom:655.933333pt;}
.y10{bottom:661.053333pt;}
.ye3{bottom:661.213333pt;}
.y6d{bottom:661.693333pt;}
.yd4{bottom:662.653333pt;}
.yb6{bottom:664.413333pt;}
.y42{bottom:669.693333pt;}
.y9f{bottom:670.333333pt;}
.y14a{bottom:674.493333pt;}
.y16a{bottom:676.413333pt;}
.y1b1{bottom:679.133333pt;}
.yf8{bottom:680.733333pt;}
.y110{bottom:682.973333pt;}
.y41{bottom:685.053333pt;}
.y191{bottom:685.213333pt;}
.y9e{bottom:685.693333pt;}
.yf{bottom:689.373333pt;}
.y6c{bottom:690.013333pt;}
.ye2{bottom:690.493333pt;}
.y1fa{bottom:691.133333pt;}
.yd3{bottom:692.893333pt;}
.yb5{bottom:693.693333pt;}
.y40{bottom:700.413333pt;}
.y9d{bottom:701.053333pt;}
.y149{bottom:703.773333pt;}
.y168{bottom:705.693333pt;}
.y1b0{bottom:708.413333pt;}
.yf7{bottom:710.013333pt;}
.y10f{bottom:712.093333pt;}
.y190{bottom:714.493333pt;}
.y3f{bottom:715.773333pt;}
.y9c{bottom:716.253333pt;}
.ye{bottom:717.693333pt;}
.y6b{bottom:718.333333pt;}
.ye1{bottom:719.773333pt;}
.y1f9{bottom:720.413333pt;}
.yd2{bottom:722.173333pt;}
.yb4{bottom:722.973333pt;}
.y3e{bottom:731.133333pt;}
.y9b{bottom:731.613333pt;}
.y21a{bottom:732.253333pt;}
.y240{bottom:733.053333pt;}
.y148{bottom:733.213333pt;}
.y1af{bottom:737.693333pt;}
.yf6{bottom:739.293333pt;}
.y10e{bottom:741.213333pt;}
.y247{bottom:742.813333pt;}
.y18f{bottom:743.773333pt;}
.yd{bottom:745.373333pt;}
.y1cb{bottom:745.853333pt;}
.y6a{bottom:746.013333pt;}
.y3d{bottom:746.333333pt;}
.y9a{bottom:746.973333pt;}
.ye0{bottom:749.053333pt;}
.y1f8{bottom:749.693333pt;}
.yd1{bottom:751.453333pt;}
.yb3{bottom:752.413333pt;}
.y3c{bottom:761.693333pt;}
.y99{bottom:762.333333pt;}
.y166{bottom:764.253333pt;}
.y1ca{bottom:765.053333pt;}
.y1ae{bottom:766.973333pt;}
.yf5{bottom:768.573333pt;}
.y10d{bottom:770.333333pt;}
.y18e{bottom:773.053333pt;}
.yc{bottom:774.653333pt;}
.y69{bottom:775.293333pt;}
.y3b{bottom:777.053333pt;}
.y98{bottom:777.693333pt;}
.ydf{bottom:778.373333pt;}
.y1f7{bottom:779.013333pt;}
.yd0{bottom:780.933333pt;}
.yb2{bottom:781.693333pt;}
.y23f{bottom:791.653333pt;}
.y3a{bottom:792.413333pt;}
.y97{bottom:793.093333pt;}
.y165{bottom:793.573333pt;}
.y1ad{bottom:796.293333pt;}
.yf4{bottom:797.893333pt;}
.y10c{bottom:799.653333pt;}
.yb{bottom:799.933333pt;}
.y18d{bottom:802.373333pt;}
.yde{bottom:807.653333pt;}
.y39{bottom:807.773333pt;}
.y96{bottom:808.293333pt;}
.ycf{bottom:810.213333pt;}
.yb1{bottom:811.013333pt;}
.y68{bottom:815.333333pt;}
.y1c9{bottom:817.413333pt;}
.y23e{bottom:821.093333pt;}
.y163{bottom:822.853333pt;}
.y38{bottom:823.173333pt;}
.y95{bottom:823.653333pt;}
.ya{bottom:825.573333pt;}
.yf3{bottom:827.173333pt;}
.y10b{bottom:828.773333pt;}
.y67{bottom:831.653333pt;}
.ydd{bottom:837.093333pt;}
.y1f6{bottom:837.733333pt;}
.y37{bottom:838.373333pt;}
.y94{bottom:839.013333pt;}
.yce{bottom:839.493333pt;}
.yb0{bottom:840.293333pt;}
.y66{bottom:847.813333pt;}
.y23d{bottom:850.373333pt;}
.y162{bottom:852.293333pt;}
.y9{bottom:853.093333pt;}
.y36{bottom:853.733333pt;}
.y93{bottom:854.373333pt;}
.y1ac{bottom:854.853333pt;}
.yf2{bottom:856.613333pt;}
.y10a{bottom:857.893333pt;}
.y18c{bottom:860.933333pt;}
.y65{bottom:863.973333pt;}
.ydc{bottom:866.373333pt;}
.y17c{bottom:866.693333pt;}
.y1f5{bottom:867.013333pt;}
.ycd{bottom:868.773333pt;}
.y35{bottom:869.093333pt;}
.yaf{bottom:869.573333pt;}
.y92{bottom:869.733333pt;}
.y13e{bottom:871.653333pt;}
.y246{bottom:876.133333pt;}
.y23c{bottom:879.653333pt;}
.y64{bottom:880.133333pt;}
.y8{bottom:880.613333pt;}
.y161{bottom:881.573333pt;}
.y1ab{bottom:884.133333pt;}
.y34{bottom:884.453333pt;}
.y91{bottom:885.093333pt;}
.yf1{bottom:885.893333pt;}
.y109{bottom:887.013333pt;}
.y18b{bottom:890.213333pt;}
.ydb{bottom:895.653333pt;}
.y1f4{bottom:896.133333pt;}
.y63{bottom:896.453333pt;}
.ycc{bottom:898.053333pt;}
.yae{bottom:898.853333pt;}
.y33{bottom:899.813333pt;}
.y90{bottom:900.293333pt;}
.y7{bottom:908.133333pt;}
.y23b{bottom:908.933333pt;}
.y160{bottom:910.853333pt;}
.y62{bottom:912.613333pt;}
.y1aa{bottom:913.413333pt;}
.y32{bottom:915.013333pt;}
.yf0{bottom:915.173333pt;}
.y8f{bottom:915.653333pt;}
.y108{bottom:916.133333pt;}
.y18a{bottom:919.493333pt;}
.yda{bottom:924.933333pt;}
.ycb{bottom:927.333333pt;}
.yad{bottom:928.133333pt;}
.y61{bottom:928.773333pt;}
.y31{bottom:930.373333pt;}
.y8e{bottom:931.013333pt;}
.y245{bottom:934.693333pt;}
.y6{bottom:935.813333pt;}
.y23a{bottom:938.213333pt;}
.y15f{bottom:940.133333pt;}
.y1f3{bottom:944.133333pt;}
.yef{bottom:944.453333pt;}
.y60{bottom:945.093333pt;}
.y107{bottom:945.253333pt;}
.y1a9{bottom:945.413333pt;}
.y30{bottom:945.733333pt;}
.y8d{bottom:946.373333pt;}
.y189{bottom:951.493333pt;}
.yd9{bottom:954.213333pt;}
.yca{bottom:955.493333pt;}
.yac{bottom:957.413333pt;}
.y2f{bottom:961.093333pt;}
.y8c{bottom:961.733333pt;}
.y5{bottom:963.013333pt;}
.y1f2{bottom:965.573333pt;}
.y15e{bottom:969.413333pt;}
.yd8{bottom:973.733333pt;}
.y106{bottom:974.373333pt;}
.y1a8{bottom:974.693333pt;}
.y2e{bottom:976.453333pt;}
.y8b{bottom:976.933333pt;}
.yc9{bottom:983.493333pt;}
.y4{bottom:985.413333pt;}
.yab{bottom:986.693333pt;}
.y1c8{bottom:990.533333pt;}
.y2d{bottom:991.813333pt;}
.y8a{bottom:992.293333pt;}
.yd7{bottom:993.253333pt;}
.y105{bottom:996.773333pt;}
.y1f1{bottom:997.253333pt;}
.y15c{bottom:998.693333pt;}
.y2c{bottom:1007.013333pt;}
.y89{bottom:1007.653333pt;}
.yc8{bottom:1012.800000pt;}
.y1f0{bottom:1014.080000pt;}
.yaa{bottom:1016.133333pt;}
.y2b{bottom:1022.373333pt;}
.y3{bottom:1022.853333pt;}
.y88{bottom:1023.013333pt;}
.y2{bottom:1035.173333pt;}
.y5f{bottom:1035.200000pt;}
.ya9{bottom:1035.680000pt;}
.y2a{bottom:1037.733333pt;}
.y87{bottom:1038.400000pt;}
.y29{bottom:1053.120000pt;}
.y127{bottom:1061.440000pt;}
.y28{bottom:1068.480000pt;}
.y27{bottom:1083.840000pt;}
.y26{bottom:1099.040000pt;}
.y25{bottom:1130.400000pt;}
.h39{height:24.640000pt;}
.h23{height:26.735625pt;}
.h25{height:29.280000pt;}
.h26{height:29.312000pt;}
.h27{height:29.440000pt;}
.h3c{height:35.840000pt;}
.h2b{height:36.468750pt;}
.h30{height:37.280000pt;}
.h2f{height:37.440000pt;}
.h2c{height:37.472000pt;}
.h18{height:38.660625pt;}
.h13{height:40.358750pt;}
.h17{height:40.618125pt;}
.h2a{height:41.976562pt;}
.h22{height:42.649687pt;}
.h2{height:44.735000pt;}
.h3e{height:46.454062pt;}
.h32{height:46.840769pt;}
.h36{height:47.742188pt;}
.h24{height:48.375000pt;}
.h3d{height:51.491250pt;}
.h3{height:52.134375pt;}
.h1f{height:52.834688pt;}
.h37{height:54.390938pt;}
.h43{height:54.400000pt;}
.h1a{height:55.968750pt;}
.h40{height:56.017500pt;}
.h15{height:56.891250pt;}
.h46{height:56.960000pt;}
.h28{height:58.560000pt;}
.h1e{height:58.563750pt;}
.h3b{height:58.691063pt;}
.h29{height:58.720000pt;}
.h31{height:59.360000pt;}
.h21{height:60.288750pt;}
.h7{height:60.781250pt;}
.h11{height:62.812500pt;}
.h1b{height:63.656250pt;}
.h2e{height:63.769687pt;}
.h45{height:63.783562pt;}
.h20{height:63.843750pt;}
.hf{height:64.500000pt;}
.h19{height:65.531250pt;}
.h2d{height:65.781915pt;}
.h6{height:69.047500pt;}
.ha{height:69.491250pt;}
.h9{height:72.937500pt;}
.h14{height:73.490625pt;}
.h41{height:74.605125pt;}
.h16{height:75.465000pt;}
.h5{height:76.003125pt;}
.h4{height:78.045000pt;}
.hc{height:81.203750pt;}
.hb{height:81.725625pt;}
.h34{height:81.914062pt;}
.h12{height:88.672000pt;}
.h8{height:89.193750pt;}
.h38{height:95.484375pt;}
.hd{height:114.024375pt;}
.h47{height:125.820000pt;}
.h10{height:140.800000pt;}
.h33{height:146.426667pt;}
.he{height:339.586667pt;}
.h44{height:384.960000pt;}
.h3f{height:385.120000pt;}
.h42{height:385.280000pt;}
.h35{height:389.920000pt;}
.h3a{height:390.080000pt;}
.h1c{height:1122.560000pt;}
.h1d{height:1122.666667pt;}
.h0{height:1145.280000pt;}
.h1{height:1145.333333pt;}
.w5{width:19.680000pt;}
.w4{width:23.680000pt;}
.w3{width:51.520000pt;}
.w10{width:55.552000pt;}
.w15{width:70.560000pt;}
.w14{width:72.832000pt;}
.w12{width:73.472000pt;}
.we{width:88.960000pt;}
.w1b{width:92.352000pt;}
.w1a{width:92.512000pt;}
.w19{width:93.280000pt;}
.w13{width:99.680000pt;}
.w11{width:101.600000pt;}
.w1c{width:101.632000pt;}
.wf{width:128.960000pt;}
.w1e{width:139.360000pt;}
.w18{width:185.626667pt;}
.w17{width:185.786667pt;}
.w16{width:194.906667pt;}
.wd{width:500.893333pt;}
.w1d{width:543.680000pt;}
.w1f{width:543.840000pt;}
.w21{width:604.640000pt;}
.w22{width:604.800000pt;}
.w20{width:610.333333pt;}
.w23{width:730.880000pt;}
.w24{width:731.040000pt;}
.wc{width:793.759976pt;}
.wb{width:793.759988pt;}
.w9{width:793.760000pt;}
.wa{width:794.000000pt;}
.w8{width:816.639988pt;}
.w6{width:816.640000pt;}
.w7{width:816.666667pt;}
.w1{width:1686.000000pt;}
.w2{width:1686.079975pt;}
.w0{width:1686.080000pt;}
.x40{left:-19.392000pt;}
.x0{left:0.000000pt;}
.x30{left:4.960000pt;}
.x4d{left:7.200000pt;}
.x5a{left:9.600000pt;}
.xc{left:14.080000pt;}
.x6{left:16.640000pt;}
.x41{left:18.400000pt;}
.x43{left:19.520000pt;}
.x52{left:22.333333pt;}
.x36{left:23.880000pt;}
.x31{left:26.240000pt;}
.x42{left:27.880000pt;}
.xd{left:29.760000pt;}
.x3f{left:31.200000pt;}
.x3a{left:32.640000pt;}
.x7{left:36.160000pt;}
.x34{left:37.600000pt;}
.x5b{left:41.093333pt;}
.x4a{left:42.240000pt;}
.x3c{left:45.760000pt;}
.x38{left:46.880000pt;}
.x50{left:48.026667pt;}
.x45{left:49.760000pt;}
.x44{left:50.880000pt;}
.x4f{left:54.106667pt;}
.x8{left:56.800000pt;}
.x56{left:65.893333pt;}
.x46{left:70.554667pt;}
.x48{left:73.600000pt;}
.x9{left:77.626667pt;}
.x60{left:88.672000pt;}
.x57{left:89.986667pt;}
.x5e{left:92.640000pt;}
.x1b{left:94.591988pt;}
.x2d{left:97.951988pt;}
.x51{left:98.946667pt;}
.x68{left:102.111988pt;}
.x67{left:104.031988pt;}
.x25{left:109.311988pt;}
.x13{left:113.471988pt;}
.x10{left:114.751988pt;}
.x1f{left:118.591988pt;}
.x61{left:125.853333pt;}
.x29{left:132.351988pt;}
.x69{left:139.866655pt;}
.x22{left:141.786655pt;}
.x63{left:147.973333pt;}
.x5c{left:158.626667pt;}
.x59{left:171.973333pt;}
.x65{left:172.986667pt;}
.x62{left:176.253333pt;}
.x4e{left:187.866667pt;}
.x53{left:197.573333pt;}
.x35{left:224.026667pt;}
.x2e{left:235.394667pt;}
.x58{left:240.666667pt;}
.x3{left:245.306642pt;}
.x66{left:248.773333pt;}
.x37{left:279.586667pt;}
.x1a{left:285.506655pt;}
.x2c{left:286.626655pt;}
.x47{left:289.506667pt;}
.x15{left:302.306654pt;}
.x11{left:309.026654pt;}
.x5f{left:341.146667pt;}
.x27{left:356.066655pt;}
.x26{left:358.466655pt;}
.x20{left:365.826655pt;}
.x23{left:368.866655pt;}
.x21{left:370.146655pt;}
.x64{left:377.026667pt;}
.x24{left:378.466655pt;}
.x39{left:381.186667pt;}
.x4b{left:382.786667pt;}
.x28{left:388.546655pt;}
.x18{left:390.626655pt;}
.x1e{left:392.546655pt;}
.x19{left:396.866655pt;}
.x14{left:402.466654pt;}
.x12{left:404.386654pt;}
.xe{left:408.386654pt;}
.x54{left:445.693333pt;}
.x5d{left:453.026667pt;}
.x3b{left:454.653333pt;}
.x49{left:475.293333pt;}
.xf{left:508.093321pt;}
.x1c{left:511.933322pt;}
.x55{left:536.640000pt;}
.x3d{left:554.333333pt;}
.x4c{left:568.573333pt;}
.x2f{left:595.493333pt;}
.x16{left:625.573321pt;}
.x3e{left:627.173333pt;}
.x2a{left:634.053310pt;}
.x2b{left:639.493322pt;}
.x33{left:659.973322pt;}
.x32{left:671.013322pt;}
.x1d{left:699.333322pt;}
.x17{left:703.493321pt;}
.x5{left:821.506667pt;}
.xa{left:829.026667pt;}
.xb{left:833.026667pt;}
.x2{left:867.426642pt;}
.x1{left:894.333308pt;}
.x4{left:1179.293308pt;}
}




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