
    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_f7cb72050b9b455fe96f5dba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.092773;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_a4ce0384904d75e5edd15afe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094238;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_811a92fde353c1ab2e0ed7e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.092773;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_81010320030ce7a1447baea3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.210449;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_27b7dc14a662c864bc914f34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094238;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_68a616aaaebc5a8e5eef272c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9bfb89b0979d197843ebcd89.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145020;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_815821d43bea826b812e776e.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_33d5c7401d6a3a609c22d3ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120117;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_2bacb4a3966c007057d81cc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120117;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_8a834c8e1b9f981c1fc98309.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.210449;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-12.240000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.120000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:38.880000px;}
.ls5b{letter-spacing:-12.300000px;}
.ls67{letter-spacing:-10.500000px;}
.ls5c{letter-spacing:-8.460000px;}
.ls5f{letter-spacing:-7.800000px;}
.ls26{letter-spacing:-6.780000px;}
.ls66{letter-spacing:-1.302000px;}
.ls63{letter-spacing:-0.876000px;}
.ls25{letter-spacing:-0.786000px;}
.ls5a{letter-spacing:-0.696000px;}
.ls68{letter-spacing:-0.672000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.618000px;}
.ls21{letter-spacing:-0.612000px;}
.ls4e{letter-spacing:-0.596400px;}
.ls1d{letter-spacing:-0.576000px;}
.ls2d{letter-spacing:-0.414600px;}
.ls48{letter-spacing:-0.411600px;}
.ls64{letter-spacing:-0.319800px;}
.ls38{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.252000px;}
.ls6e{letter-spacing:-0.222000px;}
.ls45{letter-spacing:-0.210000px;}
.ls39{letter-spacing:-0.207600px;}
.ls2e{letter-spacing:-0.161400px;}
.ls65{letter-spacing:-0.158400px;}
.ls24{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.143400px;}
.ls33{letter-spacing:-0.103800px;}
.ls1a{letter-spacing:-0.094800px;}
.ls20{letter-spacing:-0.085200px;}
.ls47{letter-spacing:-0.072000px;}
.ls71{letter-spacing:-0.063600px;}
.ls22{letter-spacing:-0.054720px;}
.lsf{letter-spacing:-0.046800px;}
.lse{letter-spacing:-0.010800px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005760px;}
.ls2{letter-spacing:0.012960px;}
.ls10{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.023040px;}
.ls43{letter-spacing:0.040320px;}
.ls34{letter-spacing:0.043200px;}
.ls42{letter-spacing:0.048000px;}
.ls54{letter-spacing:0.048960px;}
.ls57{letter-spacing:0.056640px;}
.ls7{letter-spacing:0.072000px;}
.ls56{letter-spacing:0.074880px;}
.ls2c{letter-spacing:0.100800px;}
.ls35{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.123840px;}
.ls11{letter-spacing:0.126000px;}
.ls70{letter-spacing:0.138240px;}
.ls1b{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.169920px;}
.ls6b{letter-spacing:0.172800px;}
.ls19{letter-spacing:0.179400px;}
.ls15{letter-spacing:0.187200px;}
.ls58{letter-spacing:0.192960px;}
.ls61{letter-spacing:0.198600px;}
.ls1c{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.230400px;}
.ls5d{letter-spacing:0.256320px;}
.lsa{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.304320px;}
.ls6f{letter-spacing:0.305280px;}
.ls46{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.306000px;}
.ls55{letter-spacing:0.308160px;}
.ls44{letter-spacing:0.308400px;}
.ls62{letter-spacing:0.313800px;}
.ls6a{letter-spacing:0.313920px;}
.ls53{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.319680px;}
.ls16{letter-spacing:0.328320px;}
.ls4{letter-spacing:0.328800px;}
.ls5e{letter-spacing:0.354240px;}
.ls5{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.371520px;}
.ls36{letter-spacing:0.400320px;}
.ls69{letter-spacing:0.408960px;}
.ls59{letter-spacing:0.469440px;}
.ls1{letter-spacing:0.499680px;}
.lsb{letter-spacing:0.504000px;}
.ls4d{letter-spacing:0.508320px;}
.ls0{letter-spacing:0.532800px;}
.ls17{letter-spacing:0.547200px;}
.ls60{letter-spacing:0.768000px;}
.ls4f{letter-spacing:1.987200px;}
.ls23{letter-spacing:2.707200px;}
.ls6d{letter-spacing:3.426000px;}
.ls50{letter-spacing:3.547200px;}
.ls31{letter-spacing:4.867200px;}
.ls3f{letter-spacing:6.307200px;}
.ls30{letter-spacing:7.027200px;}
.ls29{letter-spacing:7.747200px;}
.ls2a{letter-spacing:8.467200px;}
.ls51{letter-spacing:9.187200px;}
.ls3c{letter-spacing:9.907200px;}
.ls40{letter-spacing:10.627200px;}
.ls41{letter-spacing:11.347200px;}
.ls4c{letter-spacing:12.067200px;}
.ls1e{letter-spacing:12.787200px;}
.ls8{letter-spacing:13.320000px;}
.ls3e{letter-spacing:14.227200px;}
.ls3b{letter-spacing:14.947200px;}
.ls2f{letter-spacing:16.387200px;}
.ls49{letter-spacing:17.107200px;}
.ls9{letter-spacing:18.360000px;}
.ls3d{letter-spacing:19.267200px;}
.ls4b{letter-spacing:21.427200px;}
.ls4a{letter-spacing:25.027200px;}
.ls6c{letter-spacing:26.467200px;}
.ls52{letter-spacing:102.521280px;}
.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;}
}
.ws7{word-spacing:-69.120000px;}
.ws25{word-spacing:-66.240000px;}
.wsb{word-spacing:-36.000000px;}
.ws6{word-spacing:-26.452800px;}
.ws5{word-spacing:-26.406000px;}
.ws2c{word-spacing:-15.340800px;}
.ws8{word-spacing:-15.212160px;}
.ws2d{word-spacing:-14.886600px;}
.ws20{word-spacing:-14.881200px;}
.ws1b{word-spacing:-14.803200px;}
.ws1e{word-spacing:-14.679600px;}
.ws2a{word-spacing:-14.621760px;}
.ws1d{word-spacing:-14.616000px;}
.ws15{word-spacing:-14.595840px;}
.ws14{word-spacing:-14.572800px;}
.ws18{word-spacing:-14.518080px;}
.ws33{word-spacing:-14.509200px;}
.ws23{word-spacing:-14.500800px;}
.ws22{word-spacing:-14.469000px;}
.ws19{word-spacing:-14.420400px;}
.ws1c{word-spacing:-14.411400px;}
.ws1f{word-spacing:-14.267400px;}
.ws2e{word-spacing:-14.253000px;}
.ws24{word-spacing:-14.161200px;}
.ws17{word-spacing:-13.960800px;}
.ws31{word-spacing:-13.900800px;}
.ws26{word-spacing:-13.876800px;}
.ws3{word-spacing:-13.476000px;}
.ws2f{word-spacing:-13.270800px;}
.ws2{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.147200px;}
.ws4{word-spacing:-13.136400px;}
.ws1{word-spacing:-13.003800px;}
.wsc{word-spacing:-12.186000px;}
.ws13{word-spacing:-12.096000px;}
.wsa{word-spacing:-12.006000px;}
.ws9{word-spacing:-11.898000px;}
.wsd{word-spacing:-11.880000px;}
.ws11{word-spacing:-10.792200px;}
.ws10{word-spacing:-10.612800px;}
.ws16{word-spacing:-10.527600px;}
.ws21{word-spacing:-9.187200px;}
.ws12{word-spacing:-9.092400px;}
.wse{word-spacing:-7.668000px;}
.wsf{word-spacing:0.000000px;}
.ws28{word-spacing:4.724640px;}
.ws1a{word-spacing:5.444640px;}
.ws2b{word-spacing:8.933760px;}
.ws29{word-spacing:10.962720px;}
.ws30{word-spacing:17.203680px;}
.ws32{word-spacing:21.552480px;}
.ws27{word-spacing:22.272480px;}
._16{margin-left:-14.472000px;}
._2a{margin-left:-4.769280px;}
._19{margin-left:-3.665520px;}
._d{margin-left:-2.534160px;}
._1{margin-left:-1.404960px;}
._6{width:1.013760px;}
._7{width:2.544960px;}
._8{width:3.611040px;}
._12{width:5.130000px;}
._a{width:6.426000px;}
._b{width:7.506000px;}
._f{width:8.586000px;}
._18{width:9.600240px;}
._c{width:10.638000px;}
._1e{width:11.790720px;}
._e{width:13.284000px;}
._14{width:14.559120px;}
._13{width:15.712080px;}
._9{width:16.848000px;}
._15{width:18.684000px;}
._21{width:19.721520px;}
._1f{width:20.726400px;}
._11{width:21.865920px;}
._10{width:23.004000px;}
._24{width:24.125280px;}
._17{width:25.164000px;}
._26{width:26.318400px;}
._29{width:27.386880px;}
._20{width:29.344320px;}
._28{width:31.000320px;}
._22{width:32.258880px;}
._23{width:33.597600px;}
._1a{width:34.901760px;}
._1b{width:35.942400px;}
._2c{width:37.638240px;}
._1d{width:41.347680px;}
._1c{width:42.407520px;}
._2{width:44.647200px;}
._2d{width:48.090240px;}
._27{width:54.382320px;}
._25{width:55.509120px;}
._0{width:58.147200px;}
._2f{width:60.424800px;}
._2e{width:61.603200px;}
._2b{width:64.252800px;}
._4{width:133.027200px;}
._5{width:717.847200px;}
._3{width:1112.347200px;}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.620000px;}
.yd{bottom:3.420000px;}
.y7{bottom:4.140000px;}
.y11{bottom:7.740000px;}
.y12d{bottom:9.180000px;}
.y133{bottom:9.225000px;}
.y130{bottom:9.360000px;}
.y12e{bottom:12.600000px;}
.y12b{bottom:12.780000px;}
.y6{bottom:15.480000px;}
.yc{bottom:21.060000px;}
.yb{bottom:38.700000px;}
.ya{bottom:56.160000px;}
.y3{bottom:64.440000px;}
.y45{bottom:71.316000px;}
.y9{bottom:73.800000px;}
.y2{bottom:85.896000px;}
.y8{bottom:91.440000px;}
.y44{bottom:98.676000px;}
.y5{bottom:107.130000px;}
.y41{bottom:109.296000px;}
.y43{bottom:119.916000px;}
.y40{bottom:125.136000px;}
.y3f{bottom:140.976000px;}
.y105{bottom:143.496000px;}
.yc3{bottom:149.076000px;}
.y7a{bottom:150.870000px;}
.yd3{bottom:152.490000px;}
.y1fb{bottom:156.090000px;}
.y153{bottom:156.270000px;}
.y1dd{bottom:157.530000px;}
.y126{bottom:158.070000px;}
.y1b6{bottom:158.430000px;}
.y18e{bottom:158.790000px;}
.y14d{bottom:159.150000px;}
.y3e{bottom:160.590000px;}
.yf1{bottom:163.470000px;}
.y11b{bottom:165.270000px;}
.ya2{bottom:167.070000px;}
.y3d{bottom:173.370000px;}
.yc2{bottom:174.270000px;}
.y1fa{bottom:175.530000px;}
.y79{bottom:176.070000px;}
.y1dc{bottom:176.790000px;}
.y104{bottom:177.690000px;}
.y1b5{bottom:177.870000px;}
.y152{bottom:181.470000px;}
.y125{bottom:183.270000px;}
.y18d{bottom:183.990000px;}
.y14c{bottom:184.350000px;}
.yd2{bottom:186.690000px;}
.yf0{bottom:188.490000px;}
.y3c{bottom:189.750000px;}
.y111{bottom:190.290000px;}
.y11a{bottom:190.470000px;}
.ya1{bottom:192.270000px;}
.y1f9{bottom:194.790000px;}
.y214{bottom:196.230000px;}
.yc1{bottom:199.470000px;}
.y78{bottom:201.270000px;}
.y103{bottom:202.890000px;}
.y1db{bottom:205.230000px;}
.y1b4{bottom:206.130000px;}
.y151{bottom:206.490000px;}
.y124{bottom:208.470000px;}
.y3b{bottom:208.650000px;}
.y14b{bottom:209.550000px;}
.y18c{bottom:210.090000px;}
.yd1{bottom:211.890000px;}
.yef{bottom:213.690000px;}
.y110{bottom:215.490000px;}
.ya0{bottom:217.470000px;}
.y3a{bottom:221.430000px;}
.y1f8{bottom:223.230000px;}
.yc0{bottom:224.490000px;}
.y1b3{bottom:225.570000px;}
.y77{bottom:226.290000px;}
.y102{bottom:228.090000px;}
.y150{bottom:231.690000px;}
.y123{bottom:233.490000px;}
.y14a{bottom:234.750000px;}
.y18b{bottom:235.290000px;}
.yd0{bottom:237.090000px;}
.y39{bottom:237.270000px;}
.yee{bottom:238.890000px;}
.y10f{bottom:240.510000px;}
.y119{bottom:240.690000px;}
.y9f{bottom:242.490000px;}
.y213{bottom:243.750000px;}
.y1b2{bottom:244.830000px;}
.ybf{bottom:249.690000px;}
.y76{bottom:251.490000px;}
.y1da{bottom:252.750000px;}
.y38{bottom:253.110000px;}
.y14f{bottom:256.890000px;}
.y122{bottom:258.690000px;}
.y149{bottom:259.770000px;}
.y18a{bottom:261.210000px;}
.y1f7{bottom:261.750000px;}
.ycf{bottom:262.110000px;}
.y212{bottom:263.190000px;}
.y118{bottom:265.890000px;}
.y9e{bottom:267.690000px;}
.y163{bottom:268.770000px;}
.y37{bottom:268.950000px;}
.y1d9{bottom:272.190000px;}
.yed{bottom:273.090000px;}
.y1b1{bottom:273.270000px;}
.y10e{bottom:274.710000px;}
.ybe{bottom:274.890000px;}
.y75{bottom:276.690000px;}
.y101{bottom:278.310000px;}
.y14e{bottom:282.090000px;}
.y121{bottom:283.890000px;}
.y36{bottom:284.790000px;}
.y148{bottom:284.970000px;}
.y189{bottom:286.410000px;}
.y1f6{bottom:290.190000px;}
.y117{bottom:291.090000px;}
.y1d8{bottom:291.450000px;}
.y1b0{bottom:292.530000px;}
.y9d{bottom:292.890000px;}
.y162{bottom:293.970000px;}
.yce{bottom:296.310000px;}
.ybd{bottom:300.090000px;}
.y209{bottom:300.450000px;}
.y35{bottom:300.630000px;}
.y74{bottom:301.890000px;}
.y10d{bottom:305.310000px;}
.yec{bottom:307.110000px;}
.y120{bottom:309.090000px;}
.y1f5{bottom:309.450000px;}
.y147{bottom:310.170000px;}
.y100{bottom:312.510000px;}
.y116{bottom:316.110000px;}
.y34{bottom:316.470000px;}
.y9c{bottom:318.090000px;}
.y1d7{bottom:319.890000px;}
.y1af{bottom:320.970000px;}
.ybc{bottom:325.110000px;}
.y73{bottom:326.910000px;}
.y161{bottom:328.170000px;}
.y1f4{bottom:328.890000px;}
.ycd{bottom:330.510000px;}
.yeb{bottom:332.310000px;}
.y11f{bottom:334.110000px;}
.y146{bottom:335.190000px;}
.y33{bottom:336.810000px;}
.y188{bottom:338.655000px;}
.y1d6{bottom:339.195000px;}
.y1ae{bottom:340.275000px;}
.y175{bottom:341.355000px;}
.y9b{bottom:343.155000px;}
.yff{bottom:346.575000px;}
.y211{bottom:348.195000px;}
.ybb{bottom:350.355000px;}
.y72{bottom:352.155000px;}
.y1f3{bottom:357.195000px;}
.yea{bottom:357.555000px;}
.y32{bottom:357.735000px;}
.y168{bottom:359.355000px;}
.y1ad{bottom:359.535000px;}
.y160{bottom:362.235000px;}
.y187{bottom:363.675000px;}
.ycc{bottom:364.575000px;}
.y1d5{bottom:367.635000px;}
.y9a{bottom:368.355000px;}
.y145{bottom:369.435000px;}
.yfe{bottom:371.775000px;}
.yba{bottom:375.555000px;}
.y1f2{bottom:376.635000px;}
.y71{bottom:377.355000px;}
.ye9{bottom:382.575000px;}
.y167{bottom:384.555000px;}
.y31{bottom:385.995000px;}
.y1d4{bottom:386.895000px;}
.y15f{bottom:387.435000px;}
.y1ac{bottom:387.975000px;}
.y186{bottom:388.875000px;}
.ycb{bottom:389.775000px;}
.y99{bottom:393.555000px;}
.y144{bottom:394.635000px;}
.y1f1{bottom:395.895000px;}
.yb9{bottom:400.575000px;}
.y30{bottom:401.835000px;}
.y11e{bottom:402.555000px;}
.yfd{bottom:405.975000px;}
.y1ab{bottom:407.235000px;}
.ye8{bottom:407.775000px;}
.y166{bottom:409.575000px;}
.y70{bottom:411.375000px;}
.y15e{bottom:412.635000px;}
.y1d3{bottom:415.335000px;}
.y2f{bottom:417.675000px;}
.y98{bottom:418.575000px;}
.yca{bottom:423.975000px;}
.y1f0{bottom:424.335000px;}
.y115{bottom:425.775000px;}
.y11d{bottom:427.575000px;}
.y143{bottom:428.835000px;}
.yfc{bottom:430.995000px;}
.ye7{bottom:432.975000px;}
.y2e{bottom:433.515000px;}
.y1d2{bottom:434.595000px;}
.yb8{bottom:434.775000px;}
.y1aa{bottom:435.675000px;}
.y15d{bottom:437.835000px;}
.y6f{bottom:440.895000px;}
.y1ef{bottom:443.595000px;}
.y97{bottom:443.775000px;}
.y2d{bottom:449.355000px;}
.y114{bottom:450.975000px;}
.y11c{bottom:452.775000px;}
.y1d1{bottom:454.035000px;}
.y1a9{bottom:454.935000px;}
.yc9{bottom:457.995000px;}
.yb7{bottom:459.975000px;}
.y142{bottom:462.855000px;}
.y210{bottom:463.035000px;}
.y2c{bottom:465.195000px;}
.y6e{bottom:465.735000px;}
.y128{bottom:468.975000px;}
.y1ee{bottom:472.035000px;}
.y1a8{bottom:474.375000px;}
.y113{bottom:475.995000px;}
.y96{bottom:477.975000px;}
.y2b{bottom:481.035000px;}
.y1d0{bottom:482.295000px;}
.ye6{bottom:483.195000px;}
.yb6{bottom:484.995000px;}
.y141{bottom:488.055000px;}
.yfb{bottom:490.395000px;}
.y6d{bottom:490.575000px;}
.y1ed{bottom:491.295000px;}
.yc8{bottom:492.195000px;}
.y127{bottom:493.995000px;}
.y2a{bottom:496.875000px;}
.y112{bottom:501.195000px;}
.y1cf{bottom:501.735000px;}
.y1a7{bottom:502.635000px;}
.y95{bottom:502.995000px;}
.y6c{bottom:506.415000px;}
.y185{bottom:508.395000px;}
.yb5{bottom:510.195000px;}
.y20f{bottom:510.735000px;}
.y29{bottom:512.535000px;}
.y140{bottom:513.255000px;}
.ye5{bottom:517.395000px;}
.y165{bottom:519.195000px;}
.y1ec{bottom:519.735000px;}
.y1ce{bottom:520.995000px;}
.y1a6{bottom:522.075000px;}
.y6b{bottom:522.255000px;}
.yfa{bottom:524.595000px;}
.yc7{bottom:526.395000px;}
.y94{bottom:528.195000px;}
.y28{bottom:528.375000px;}
.y208{bottom:529.995000px;}
.y184{bottom:533.595000px;}
.yb4{bottom:535.395000px;}
.y6a{bottom:538.095000px;}
.y13f{bottom:538.275000px;}
.y1eb{bottom:538.995000px;}
.y27{bottom:544.215000px;}
.y164{bottom:544.395000px;}
.y1cd{bottom:549.435000px;}
.yf9{bottom:549.615000px;}
.y1a5{bottom:550.335000px;}
.ye4{bottom:551.595000px;}
.y93{bottom:553.395000px;}
.y69{bottom:553.935000px;}
.y1ea{bottom:558.435000px;}
.y183{bottom:558.615000px;}
.y26{bottom:560.055000px;}
.yc6{bottom:560.595000px;}
.y174{bottom:562.395000px;}
.y13e{bottom:563.475000px;}
.y1cc{bottom:568.695000px;}
.yb3{bottom:569.595000px;}
.y68{bottom:569.775000px;}
.y25{bottom:575.895000px;}
.ye3{bottom:576.615000px;}
.y207{bottom:577.695000px;}
.y92{bottom:578.595000px;}
.yf8{bottom:583.815000px;}
.y67{bottom:585.615000px;}
.y1e9{bottom:586.695000px;}
.y173{bottom:587.595000px;}
.y13d{bottom:588.675000px;}
.y1a4{bottom:589.035000px;}
.y15c{bottom:589.755000px;}
.y24{bottom:591.735000px;}
.y182{bottom:592.815000px;}
.yb2{bottom:594.615000px;}
.y1cb{bottom:596.955000px;}
.y66{bottom:601.455000px;}
.ye2{bottom:601.815000px;}
.y91{bottom:603.615000px;}
.y1e8{bottom:605.985000px;}
.y23{bottom:607.605000px;}
.yf7{bottom:609.045000px;}
.y10c{bottom:610.845000px;}
.y172{bottom:612.645000px;}
.y13c{bottom:613.905000px;}
.y15b{bottom:614.985000px;}
.y1ca{bottom:616.425000px;}
.y65{bottom:617.145000px;}
.y1a3{bottom:617.505000px;}
.y181{bottom:618.045000px;}
.yb1{bottom:619.845000px;}
.y22{bottom:623.445000px;}
.y206{bottom:625.425000px;}
.ye1{bottom:627.045000px;}
.y90{bottom:628.845000px;}
.y64{bottom:632.985000px;}
.y1e7{bottom:634.425000px;}
.y10b{bottom:636.045000px;}
.y171{bottom:637.845000px;}
.y13b{bottom:638.925000px;}
.y21{bottom:639.285000px;}
.y15a{bottom:641.625000px;}
.yf6{bottom:643.065000px;}
.y1c9{bottom:644.685000px;}
.yb0{bottom:645.045000px;}
.y1a2{bottom:645.765000px;}
.y63{bottom:648.825000px;}
.ye0{bottom:652.065000px;}
.y1e6{bottom:653.685000px;}
.y8f{bottom:654.045000px;}
.y20{bottom:655.125000px;}
.y10a{bottom:661.065000px;}
.y170{bottom:663.045000px;}
.y13a{bottom:664.125000px;}
.y62{bottom:664.665000px;}
.y1a1{bottom:665.205000px;}
.y159{bottom:666.825000px;}
.yf5{bottom:668.265000px;}
.yaf{bottom:670.065000px;}
.y1f{bottom:670.965000px;}
.y1e5{bottom:673.125000px;}
.ydf{bottom:677.265000px;}
.y8e{bottom:679.065000px;}
.y61{bottom:680.505000px;}
.y109{bottom:686.265000px;}
.y1e{bottom:686.805000px;}
.y16f{bottom:688.065000px;}
.y139{bottom:689.325000px;}
.y158{bottom:692.025000px;}
.y1c8{bottom:692.385000px;}
.y180{bottom:693.465000px;}
.yae{bottom:695.265000px;}
.y60{bottom:696.345000px;}
.y1e4{bottom:701.385000px;}
.yde{bottom:702.465000px;}
.y1d{bottom:702.645000px;}
.y8d{bottom:704.265000px;}
.y108{bottom:711.465000px;}
.y1c7{bottom:711.825000px;}
.y5f{bottom:712.185000px;}
.y1a0{bottom:712.725000px;}
.y16e{bottom:713.265000px;}
.y138{bottom:714.345000px;}
.y157{bottom:717.045000px;}
.y1c{bottom:718.485000px;}
.y17f{bottom:718.665000px;}
.yad{bottom:720.465000px;}
.y1e3{bottom:720.825000px;}
.ydd{bottom:727.665000px;}
.y5e{bottom:728.025000px;}
.y8c{bottom:729.465000px;}
.y20e{bottom:729.825000px;}
.y1b{bottom:734.145000px;}
.yf4{bottom:736.665000px;}
.y16d{bottom:738.465000px;}
.y137{bottom:739.545000px;}
.y1c6{bottom:740.085000px;}
.y19f{bottom:741.165000px;}
.y156{bottom:742.245000px;}
.y17e{bottom:743.685000px;}
.y5d{bottom:743.865000px;}
.yac{bottom:745.665000px;}
.y20d{bottom:749.085000px;}
.y1a{bottom:749.985000px;}
.ydc{bottom:752.685000px;}
.y8b{bottom:754.665000px;}
.y1c5{bottom:759.525000px;}
.y5c{bottom:759.705000px;}
.y19e{bottom:760.425000px;}
.y107{bottom:761.685000px;}
.y16c{bottom:763.665000px;}
.y19{bottom:765.825000px;}
.y155{bottom:767.445000px;}
.y1e2{bottom:768.525000px;}
.y17d{bottom:768.885000px;}
.yab{bottom:770.685000px;}
.y5b{bottom:775.545000px;}
.ydb{bottom:777.885000px;}
.y8a{bottom:779.685000px;}
.y18{bottom:781.665000px;}
.y106{bottom:786.885000px;}
.y1c4{bottom:787.785000px;}
.y16b{bottom:788.685000px;}
.y19d{bottom:788.865000px;}
.y136{bottom:791.025000px;}
.y5a{bottom:791.385000px;}
.y154{bottom:794.085000px;}
.yaa{bottom:795.885000px;}
.y20c{bottom:796.785000px;}
.yda{bottom:803.085000px;}
.y89{bottom:804.885000px;}
.y17{bottom:806.505000px;}
.y59{bottom:807.225000px;}
.y19c{bottom:808.125000px;}
.y16a{bottom:813.885000px;}
.y1e1{bottom:816.225000px;}
.y135{bottom:817.665000px;}
.ya9{bottom:821.085000px;}
.y58{bottom:823.065000px;}
.y1c3{bottom:826.485000px;}
.y19b{bottom:827.565000px;}
.yd9{bottom:828.105000px;}
.y88{bottom:830.085000px;}
.y16{bottom:834.225000px;}
.y1e0{bottom:835.485000px;}
.y57{bottom:838.725000px;}
.y169{bottom:839.085000px;}
.y134{bottom:842.865000px;}
.y205{bottom:844.485000px;}
.ya8{bottom:846.105000px;}
.y17c{bottom:853.305000px;}
.y56{bottom:854.565000px;}
.y1c2{bottom:854.925000px;}
.y87{bottom:855.105000px;}
.y19a{bottom:855.825000px;}
.yd8{bottom:862.305000px;}
.y204{bottom:863.925000px;}
.yc5{bottom:864.105000px;}
.y132{bottom:868.065000px;}
.y55{bottom:870.405000px;}
.yf3{bottom:871.350000px;}
.y1c1{bottom:874.230000px;}
.y199{bottom:875.310000px;}
.y17b{bottom:878.550000px;}
.y86{bottom:880.350000px;}
.y1df{bottom:883.230000px;}
.y15{bottom:883.950000px;}
.y54{bottom:886.290000px;}
.yc4{bottom:889.350000px;}
.y203{bottom:892.230000px;}
.y131{bottom:893.130000px;}
.yd7{bottom:896.550000px;}
.y53{bottom:902.130000px;}
.y1c0{bottom:902.670000px;}
.y198{bottom:903.570000px;}
.ya7{bottom:905.550000px;}
.y216{bottom:911.490000px;}
.y202{bottom:911.670000px;}
.y17a{bottom:912.750000px;}
.y85{bottom:914.550000px;}
.y52{bottom:917.970000px;}
.y12f{bottom:918.330000px;}
.yf2{bottom:921.750000px;}
.y1bf{bottom:921.930000px;}
.y197{bottom:923.010000px;}
.ya6{bottom:930.750000px;}
.y20b{bottom:930.930000px;}
.y51{bottom:933.810000px;}
.y14{bottom:934.350000px;}
.y179{bottom:937.770000px;}
.y84{bottom:939.750000px;}
.y201{bottom:939.930000px;}
.y12c{bottom:943.530000px;}
.y50{bottom:949.650000px;}
.y1be{bottom:950.190000px;}
.y196{bottom:951.270000px;}
.ya5{bottom:955.770000px;}
.y200{bottom:959.190000px;}
.y178{bottom:962.970000px;}
.y83{bottom:964.770000px;}
.y4f{bottom:965.490000px;}
.y13{bottom:969.630000px;}
.y12a{bottom:970.170000px;}
.y195{bottom:970.710000px;}
.y20a{bottom:978.630000px;}
.ya4{bottom:980.970000px;}
.y1ff{bottom:987.630000px;}
.y177{bottom:988.170000px;}
.y82{bottom:989.970000px;}
.y4e{bottom:990.330000px;}
.y1bd{bottom:997.890000px;}
.y194{bottom:998.970000px;}
.y4d{bottom:1006.170000px;}
.y1fe{bottom:1006.890000px;}
.y81{bottom:1015.170000px;}
.y10{bottom:1016.070000px;}
.y1bc{bottom:1017.330000px;}
.y193{bottom:1018.410000px;}
.y129{bottom:1022.190000px;}
.y12{bottom:1024.710000px;}
.y1de{bottom:1026.330000px;}
.y4c{bottom:1031.010000px;}
.ya3{bottom:1031.190000px;}
.ye{bottom:1033.530000px;}
.y215{bottom:1035.330000px;}
.y192{bottom:1037.670000px;}
.y80{bottom:1040.190000px;}
.y4{bottom:1042.350000px;}
.y1bb{bottom:1045.590000px;}
.y176{bottom:1047.390000px;}
.y1fd{bottom:1054.590000px;}
.y4b{bottom:1055.850000px;}
.yd6{bottom:1056.390000px;}
.y7f{bottom:1065.390000px;}
.y191{bottom:1071.690000px;}
.y1ba{bottom:1074.030000px;}
.y4a{bottom:1080.510000px;}
.yd5{bottom:1081.590000px;}
.y7e{bottom:1090.590000px;}
.y1b9{bottom:1093.290000px;}
.y49{bottom:1096.350000px;}
.y1fc{bottom:1102.290000px;}
.y190{bottom:1105.710000px;}
.yd4{bottom:1106.610000px;}
.y48{bottom:1112.190000px;}
.y7d{bottom:1115.610000px;}
.y1b8{bottom:1121.730000px;}
.y47{bottom:1128.030000px;}
.y18f{bottom:1139.940000px;}
.y7c{bottom:1140.840000px;}
.y1b7{bottom:1141.020000px;}
.y46{bottom:1143.900000px;}
.y7b{bottom:1183.140000px;}
.y1{bottom:1206.360000px;}
.y42{bottom:1210.680000px;}
.he{height:8.640000px;}
.hc{height:8.820000px;}
.h1a{height:25.020000px;}
.h1c{height:25.056000px;}
.h1b{height:25.200000px;}
.h1d{height:25.236000px;}
.hd{height:26.280000px;}
.h8{height:26.356641px;}
.h5{height:26.474766px;}
.h13{height:29.065430px;}
.h19{height:32.220000px;}
.h14{height:34.825430px;}
.h3{height:36.397266px;}
.h7{height:42.045117px;}
.h11{height:47.065430px;}
.h10{height:47.276367px;}
.h16{height:47.745352px;}
.h9{height:52.085742px;}
.hb{height:52.319180px;}
.h2{height:57.733594px;}
.h15{height:57.992344px;}
.ha{height:59.147227px;}
.h18{height:59.706562px;}
.h17{height:65.560781px;}
.h12{height:65.884219px;}
.hf{height:94.130859px;}
.h6{height:105.268711px;}
.h4{height:114.336000px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w7{width:46.620000px;}
.w5{width:51.696000px;}
.w11{width:66.960000px;}
.wc{width:67.320000px;}
.w13{width:70.920000px;}
.w9{width:74.700000px;}
.wf{width:79.020000px;}
.w12{width:79.056000px;}
.wb{width:86.976000px;}
.w10{width:153.030000px;}
.wa{width:154.110000px;}
.w3{width:187.410000px;}
.we{width:231.555000px;}
.w8{width:233.175000px;}
.wd{width:307.875000px;}
.w14{width:310.575000px;}
.w6{width:426.495000px;}
.w4{width:524.805000px;}
.w2{width:892.980000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:5.400000px;}
.x4{left:8.136000px;}
.x8{left:12.060000px;}
.x12{left:38.520000px;}
.xe{left:43.425000px;}
.x6{left:45.756000px;}
.xc{left:68.085000px;}
.x3{left:84.959987px;}
.xd{left:93.630000px;}
.x13{left:97.775987px;}
.x14{left:111.275987px;}
.x1{left:127.475987px;}
.x10{left:147.060000px;}
.x5{left:179.130000px;}
.x7{left:272.370000px;}
.xb{left:295.455000px;}
.x1f{left:316.515000px;}
.x1a{left:318.135000px;}
.xf{left:324.075000px;}
.x9{left:365.295000px;}
.x1b{left:392.835000px;}
.x20{left:395.535000px;}
.x17{left:427.034987px;}
.x15{left:429.914987px;}
.x2{left:435.854987px;}
.xa{left:516.540000px;}
.x1c{left:546.945000px;}
.x21{left:548.565000px;}
.x16{left:599.144987px;}
.x22{left:615.525000px;}
.x1d{left:621.645000px;}
.x23{left:694.590000px;}
.x1e{left:708.630000px;}
.x11{left:750.570000px;}
.x18{left:764.789987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:34.560000pt;}
.ls5b{letter-spacing:-10.933333pt;}
.ls67{letter-spacing:-9.333333pt;}
.ls5c{letter-spacing:-7.520000pt;}
.ls5f{letter-spacing:-6.933333pt;}
.ls26{letter-spacing:-6.026667pt;}
.ls66{letter-spacing:-1.157333pt;}
.ls63{letter-spacing:-0.778667pt;}
.ls25{letter-spacing:-0.698667pt;}
.ls5a{letter-spacing:-0.618667pt;}
.ls68{letter-spacing:-0.597333pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.549333pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls4e{letter-spacing:-0.530133pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls2d{letter-spacing:-0.368533pt;}
.ls48{letter-spacing:-0.365867pt;}
.ls64{letter-spacing:-0.284267pt;}
.ls38{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls6e{letter-spacing:-0.197333pt;}
.ls45{letter-spacing:-0.186667pt;}
.ls39{letter-spacing:-0.184533pt;}
.ls2e{letter-spacing:-0.143467pt;}
.ls65{letter-spacing:-0.140800pt;}
.ls24{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.127467pt;}
.ls33{letter-spacing:-0.092267pt;}
.ls1a{letter-spacing:-0.084267pt;}
.ls20{letter-spacing:-0.075733pt;}
.ls47{letter-spacing:-0.064000pt;}
.ls71{letter-spacing:-0.056533pt;}
.ls22{letter-spacing:-0.048640pt;}
.lsf{letter-spacing:-0.041600pt;}
.lse{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005120pt;}
.ls2{letter-spacing:0.011520pt;}
.ls10{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.020480pt;}
.ls43{letter-spacing:0.035840pt;}
.ls34{letter-spacing:0.038400pt;}
.ls42{letter-spacing:0.042667pt;}
.ls54{letter-spacing:0.043520pt;}
.ls57{letter-spacing:0.050347pt;}
.ls7{letter-spacing:0.064000pt;}
.ls56{letter-spacing:0.066560pt;}
.ls2c{letter-spacing:0.089600pt;}
.ls35{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.110080pt;}
.ls11{letter-spacing:0.112000pt;}
.ls70{letter-spacing:0.122880pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.151040pt;}
.ls6b{letter-spacing:0.153600pt;}
.ls19{letter-spacing:0.159467pt;}
.ls15{letter-spacing:0.166400pt;}
.ls58{letter-spacing:0.171520pt;}
.ls61{letter-spacing:0.176533pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.204800pt;}
.ls5d{letter-spacing:0.227840pt;}
.lsa{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.270507pt;}
.ls6f{letter-spacing:0.271360pt;}
.ls46{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.272000pt;}
.ls55{letter-spacing:0.273920pt;}
.ls44{letter-spacing:0.274133pt;}
.ls62{letter-spacing:0.278933pt;}
.ls6a{letter-spacing:0.279040pt;}
.ls53{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.284160pt;}
.ls16{letter-spacing:0.291840pt;}
.ls4{letter-spacing:0.292267pt;}
.ls5e{letter-spacing:0.314880pt;}
.ls5{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.330240pt;}
.ls36{letter-spacing:0.355840pt;}
.ls69{letter-spacing:0.363520pt;}
.ls59{letter-spacing:0.417280pt;}
.ls1{letter-spacing:0.444160pt;}
.lsb{letter-spacing:0.448000pt;}
.ls4d{letter-spacing:0.451840pt;}
.ls0{letter-spacing:0.473600pt;}
.ls17{letter-spacing:0.486400pt;}
.ls60{letter-spacing:0.682667pt;}
.ls4f{letter-spacing:1.766400pt;}
.ls23{letter-spacing:2.406400pt;}
.ls6d{letter-spacing:3.045333pt;}
.ls50{letter-spacing:3.153067pt;}
.ls31{letter-spacing:4.326400pt;}
.ls3f{letter-spacing:5.606400pt;}
.ls30{letter-spacing:6.246400pt;}
.ls29{letter-spacing:6.886400pt;}
.ls2a{letter-spacing:7.526400pt;}
.ls51{letter-spacing:8.166400pt;}
.ls3c{letter-spacing:8.806400pt;}
.ls40{letter-spacing:9.446400pt;}
.ls41{letter-spacing:10.086400pt;}
.ls4c{letter-spacing:10.726400pt;}
.ls1e{letter-spacing:11.366400pt;}
.ls8{letter-spacing:11.840000pt;}
.ls3e{letter-spacing:12.646400pt;}
.ls3b{letter-spacing:13.286400pt;}
.ls2f{letter-spacing:14.566400pt;}
.ls49{letter-spacing:15.206400pt;}
.ls9{letter-spacing:16.320000pt;}
.ls3d{letter-spacing:17.126400pt;}
.ls4b{letter-spacing:19.046400pt;}
.ls4a{letter-spacing:22.246400pt;}
.ls6c{letter-spacing:23.526400pt;}
.ls52{letter-spacing:91.130027pt;}
.ws7{word-spacing:-61.440000pt;}
.ws25{word-spacing:-58.880000pt;}
.wsb{word-spacing:-32.000000pt;}
.ws6{word-spacing:-23.513600pt;}
.ws5{word-spacing:-23.472000pt;}
.ws2c{word-spacing:-13.636267pt;}
.ws8{word-spacing:-13.521920pt;}
.ws2d{word-spacing:-13.232533pt;}
.ws20{word-spacing:-13.227733pt;}
.ws1b{word-spacing:-13.158400pt;}
.ws1e{word-spacing:-13.048533pt;}
.ws2a{word-spacing:-12.997120pt;}
.ws1d{word-spacing:-12.992000pt;}
.ws15{word-spacing:-12.974080pt;}
.ws14{word-spacing:-12.953600pt;}
.ws18{word-spacing:-12.904960pt;}
.ws33{word-spacing:-12.897067pt;}
.ws23{word-spacing:-12.889600pt;}
.ws22{word-spacing:-12.861333pt;}
.ws19{word-spacing:-12.818133pt;}
.ws1c{word-spacing:-12.810133pt;}
.ws1f{word-spacing:-12.682133pt;}
.ws2e{word-spacing:-12.669333pt;}
.ws24{word-spacing:-12.587733pt;}
.ws17{word-spacing:-12.409600pt;}
.ws31{word-spacing:-12.356267pt;}
.ws26{word-spacing:-12.334933pt;}
.ws3{word-spacing:-11.978667pt;}
.ws2f{word-spacing:-11.796267pt;}
.ws2{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.686400pt;}
.ws4{word-spacing:-11.676800pt;}
.ws1{word-spacing:-11.558933pt;}
.wsc{word-spacing:-10.832000pt;}
.ws13{word-spacing:-10.752000pt;}
.wsa{word-spacing:-10.672000pt;}
.ws9{word-spacing:-10.576000pt;}
.wsd{word-spacing:-10.560000pt;}
.ws11{word-spacing:-9.593067pt;}
.ws10{word-spacing:-9.433600pt;}
.ws16{word-spacing:-9.357867pt;}
.ws21{word-spacing:-8.166400pt;}
.ws12{word-spacing:-8.082133pt;}
.wse{word-spacing:-6.816000pt;}
.wsf{word-spacing:0.000000pt;}
.ws28{word-spacing:4.199680pt;}
.ws1a{word-spacing:4.839680pt;}
.ws2b{word-spacing:7.941120pt;}
.ws29{word-spacing:9.744640pt;}
.ws30{word-spacing:15.292160pt;}
.ws32{word-spacing:19.157760pt;}
.ws27{word-spacing:19.797760pt;}
._16{margin-left:-12.864000pt;}
._2a{margin-left:-4.239360pt;}
._19{margin-left:-3.258240pt;}
._d{margin-left:-2.252587pt;}
._1{margin-left:-1.248853pt;}
._6{width:0.901120pt;}
._7{width:2.262187pt;}
._8{width:3.209813pt;}
._12{width:4.560000pt;}
._a{width:5.712000pt;}
._b{width:6.672000pt;}
._f{width:7.632000pt;}
._18{width:8.533547pt;}
._c{width:9.456000pt;}
._1e{width:10.480640pt;}
._e{width:11.808000pt;}
._14{width:12.941440pt;}
._13{width:13.966293pt;}
._9{width:14.976000pt;}
._15{width:16.608000pt;}
._21{width:17.530240pt;}
._1f{width:18.423467pt;}
._11{width:19.436373pt;}
._10{width:20.448000pt;}
._24{width:21.444693pt;}
._17{width:22.368000pt;}
._26{width:23.394133pt;}
._29{width:24.343893pt;}
._20{width:26.083840pt;}
._28{width:27.555840pt;}
._22{width:28.674560pt;}
._23{width:29.864533pt;}
._1a{width:31.023787pt;}
._1b{width:31.948800pt;}
._2c{width:33.456213pt;}
._1d{width:36.753493pt;}
._1c{width:37.695573pt;}
._2{width:39.686400pt;}
._2d{width:42.746880pt;}
._27{width:48.339840pt;}
._25{width:49.341440pt;}
._0{width:51.686400pt;}
._2f{width:53.710933pt;}
._2e{width:54.758400pt;}
._2b{width:57.113600pt;}
._4{width:118.246400pt;}
._5{width:638.086400pt;}
._3{width:988.753067pt;}
.fs2{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.440000pt;}
.yd{bottom:3.040000pt;}
.y7{bottom:3.680000pt;}
.y11{bottom:6.880000pt;}
.y12d{bottom:8.160000pt;}
.y133{bottom:8.200000pt;}
.y130{bottom:8.320000pt;}
.y12e{bottom:11.200000pt;}
.y12b{bottom:11.360000pt;}
.y6{bottom:13.760000pt;}
.yc{bottom:18.720000pt;}
.yb{bottom:34.400000pt;}
.ya{bottom:49.920000pt;}
.y3{bottom:57.280000pt;}
.y45{bottom:63.392000pt;}
.y9{bottom:65.600000pt;}
.y2{bottom:76.352000pt;}
.y8{bottom:81.280000pt;}
.y44{bottom:87.712000pt;}
.y5{bottom:95.226667pt;}
.y41{bottom:97.152000pt;}
.y43{bottom:106.592000pt;}
.y40{bottom:111.232000pt;}
.y3f{bottom:125.312000pt;}
.y105{bottom:127.552000pt;}
.yc3{bottom:132.512000pt;}
.y7a{bottom:134.106667pt;}
.yd3{bottom:135.546667pt;}
.y1fb{bottom:138.746667pt;}
.y153{bottom:138.906667pt;}
.y1dd{bottom:140.026667pt;}
.y126{bottom:140.506667pt;}
.y1b6{bottom:140.826667pt;}
.y18e{bottom:141.146667pt;}
.y14d{bottom:141.466667pt;}
.y3e{bottom:142.746667pt;}
.yf1{bottom:145.306667pt;}
.y11b{bottom:146.906667pt;}
.ya2{bottom:148.506667pt;}
.y3d{bottom:154.106667pt;}
.yc2{bottom:154.906667pt;}
.y1fa{bottom:156.026667pt;}
.y79{bottom:156.506667pt;}
.y1dc{bottom:157.146667pt;}
.y104{bottom:157.946667pt;}
.y1b5{bottom:158.106667pt;}
.y152{bottom:161.306667pt;}
.y125{bottom:162.906667pt;}
.y18d{bottom:163.546667pt;}
.y14c{bottom:163.866667pt;}
.yd2{bottom:165.946667pt;}
.yf0{bottom:167.546667pt;}
.y3c{bottom:168.666667pt;}
.y111{bottom:169.146667pt;}
.y11a{bottom:169.306667pt;}
.ya1{bottom:170.906667pt;}
.y1f9{bottom:173.146667pt;}
.y214{bottom:174.426667pt;}
.yc1{bottom:177.306667pt;}
.y78{bottom:178.906667pt;}
.y103{bottom:180.346667pt;}
.y1db{bottom:182.426667pt;}
.y1b4{bottom:183.226667pt;}
.y151{bottom:183.546667pt;}
.y124{bottom:185.306667pt;}
.y3b{bottom:185.466667pt;}
.y14b{bottom:186.266667pt;}
.y18c{bottom:186.746667pt;}
.yd1{bottom:188.346667pt;}
.yef{bottom:189.946667pt;}
.y110{bottom:191.546667pt;}
.ya0{bottom:193.306667pt;}
.y3a{bottom:196.826667pt;}
.y1f8{bottom:198.426667pt;}
.yc0{bottom:199.546667pt;}
.y1b3{bottom:200.506667pt;}
.y77{bottom:201.146667pt;}
.y102{bottom:202.746667pt;}
.y150{bottom:205.946667pt;}
.y123{bottom:207.546667pt;}
.y14a{bottom:208.666667pt;}
.y18b{bottom:209.146667pt;}
.yd0{bottom:210.746667pt;}
.y39{bottom:210.906667pt;}
.yee{bottom:212.346667pt;}
.y10f{bottom:213.786667pt;}
.y119{bottom:213.946667pt;}
.y9f{bottom:215.546667pt;}
.y213{bottom:216.666667pt;}
.y1b2{bottom:217.626667pt;}
.ybf{bottom:221.946667pt;}
.y76{bottom:223.546667pt;}
.y1da{bottom:224.666667pt;}
.y38{bottom:224.986667pt;}
.y14f{bottom:228.346667pt;}
.y122{bottom:229.946667pt;}
.y149{bottom:230.906667pt;}
.y18a{bottom:232.186667pt;}
.y1f7{bottom:232.666667pt;}
.ycf{bottom:232.986667pt;}
.y212{bottom:233.946667pt;}
.y118{bottom:236.346667pt;}
.y9e{bottom:237.946667pt;}
.y163{bottom:238.906667pt;}
.y37{bottom:239.066667pt;}
.y1d9{bottom:241.946667pt;}
.yed{bottom:242.746667pt;}
.y1b1{bottom:242.906667pt;}
.y10e{bottom:244.186667pt;}
.ybe{bottom:244.346667pt;}
.y75{bottom:245.946667pt;}
.y101{bottom:247.386667pt;}
.y14e{bottom:250.746667pt;}
.y121{bottom:252.346667pt;}
.y36{bottom:253.146667pt;}
.y148{bottom:253.306667pt;}
.y189{bottom:254.586667pt;}
.y1f6{bottom:257.946667pt;}
.y117{bottom:258.746667pt;}
.y1d8{bottom:259.066667pt;}
.y1b0{bottom:260.026667pt;}
.y9d{bottom:260.346667pt;}
.y162{bottom:261.306667pt;}
.yce{bottom:263.386667pt;}
.ybd{bottom:266.746667pt;}
.y209{bottom:267.066667pt;}
.y35{bottom:267.226667pt;}
.y74{bottom:268.346667pt;}
.y10d{bottom:271.386667pt;}
.yec{bottom:272.986667pt;}
.y120{bottom:274.746667pt;}
.y1f5{bottom:275.066667pt;}
.y147{bottom:275.706667pt;}
.y100{bottom:277.786667pt;}
.y116{bottom:280.986667pt;}
.y34{bottom:281.306667pt;}
.y9c{bottom:282.746667pt;}
.y1d7{bottom:284.346667pt;}
.y1af{bottom:285.306667pt;}
.ybc{bottom:288.986667pt;}
.y73{bottom:290.586667pt;}
.y161{bottom:291.706667pt;}
.y1f4{bottom:292.346667pt;}
.ycd{bottom:293.786667pt;}
.yeb{bottom:295.386667pt;}
.y11f{bottom:296.986667pt;}
.y146{bottom:297.946667pt;}
.y33{bottom:299.386667pt;}
.y188{bottom:301.026667pt;}
.y1d6{bottom:301.506667pt;}
.y1ae{bottom:302.466667pt;}
.y175{bottom:303.426667pt;}
.y9b{bottom:305.026667pt;}
.yff{bottom:308.066667pt;}
.y211{bottom:309.506667pt;}
.ybb{bottom:311.426667pt;}
.y72{bottom:313.026667pt;}
.y1f3{bottom:317.506667pt;}
.yea{bottom:317.826667pt;}
.y32{bottom:317.986667pt;}
.y168{bottom:319.426667pt;}
.y1ad{bottom:319.586667pt;}
.y160{bottom:321.986667pt;}
.y187{bottom:323.266667pt;}
.ycc{bottom:324.066667pt;}
.y1d5{bottom:326.786667pt;}
.y9a{bottom:327.426667pt;}
.y145{bottom:328.386667pt;}
.yfe{bottom:330.466667pt;}
.yba{bottom:333.826667pt;}
.y1f2{bottom:334.786667pt;}
.y71{bottom:335.426667pt;}
.ye9{bottom:340.066667pt;}
.y167{bottom:341.826667pt;}
.y31{bottom:343.106667pt;}
.y1d4{bottom:343.906667pt;}
.y15f{bottom:344.386667pt;}
.y1ac{bottom:344.866667pt;}
.y186{bottom:345.666667pt;}
.ycb{bottom:346.466667pt;}
.y99{bottom:349.826667pt;}
.y144{bottom:350.786667pt;}
.y1f1{bottom:351.906667pt;}
.yb9{bottom:356.066667pt;}
.y30{bottom:357.186667pt;}
.y11e{bottom:357.826667pt;}
.yfd{bottom:360.866667pt;}
.y1ab{bottom:361.986667pt;}
.ye8{bottom:362.466667pt;}
.y166{bottom:364.066667pt;}
.y70{bottom:365.666667pt;}
.y15e{bottom:366.786667pt;}
.y1d3{bottom:369.186667pt;}
.y2f{bottom:371.266667pt;}
.y98{bottom:372.066667pt;}
.yca{bottom:376.866667pt;}
.y1f0{bottom:377.186667pt;}
.y115{bottom:378.466667pt;}
.y11d{bottom:380.066667pt;}
.y143{bottom:381.186667pt;}
.yfc{bottom:383.106667pt;}
.ye7{bottom:384.866667pt;}
.y2e{bottom:385.346667pt;}
.y1d2{bottom:386.306667pt;}
.yb8{bottom:386.466667pt;}
.y1aa{bottom:387.266667pt;}
.y15d{bottom:389.186667pt;}
.y6f{bottom:391.906667pt;}
.y1ef{bottom:394.306667pt;}
.y97{bottom:394.466667pt;}
.y2d{bottom:399.426667pt;}
.y114{bottom:400.866667pt;}
.y11c{bottom:402.466667pt;}
.y1d1{bottom:403.586667pt;}
.y1a9{bottom:404.386667pt;}
.yc9{bottom:407.106667pt;}
.yb7{bottom:408.866667pt;}
.y142{bottom:411.426667pt;}
.y210{bottom:411.586667pt;}
.y2c{bottom:413.506667pt;}
.y6e{bottom:413.986667pt;}
.y128{bottom:416.866667pt;}
.y1ee{bottom:419.586667pt;}
.y1a8{bottom:421.666667pt;}
.y113{bottom:423.106667pt;}
.y96{bottom:424.866667pt;}
.y2b{bottom:427.586667pt;}
.y1d0{bottom:428.706667pt;}
.ye6{bottom:429.506667pt;}
.yb6{bottom:431.106667pt;}
.y141{bottom:433.826667pt;}
.yfb{bottom:435.906667pt;}
.y6d{bottom:436.066667pt;}
.y1ed{bottom:436.706667pt;}
.yc8{bottom:437.506667pt;}
.y127{bottom:439.106667pt;}
.y2a{bottom:441.666667pt;}
.y112{bottom:445.506667pt;}
.y1cf{bottom:445.986667pt;}
.y1a7{bottom:446.786667pt;}
.y95{bottom:447.106667pt;}
.y6c{bottom:450.146667pt;}
.y185{bottom:451.906667pt;}
.yb5{bottom:453.506667pt;}
.y20f{bottom:453.986667pt;}
.y29{bottom:455.586667pt;}
.y140{bottom:456.226667pt;}
.ye5{bottom:459.906667pt;}
.y165{bottom:461.506667pt;}
.y1ec{bottom:461.986667pt;}
.y1ce{bottom:463.106667pt;}
.y1a6{bottom:464.066667pt;}
.y6b{bottom:464.226667pt;}
.yfa{bottom:466.306667pt;}
.yc7{bottom:467.906667pt;}
.y94{bottom:469.506667pt;}
.y28{bottom:469.666667pt;}
.y208{bottom:471.106667pt;}
.y184{bottom:474.306667pt;}
.yb4{bottom:475.906667pt;}
.y6a{bottom:478.306667pt;}
.y13f{bottom:478.466667pt;}
.y1eb{bottom:479.106667pt;}
.y27{bottom:483.746667pt;}
.y164{bottom:483.906667pt;}
.y1cd{bottom:488.386667pt;}
.yf9{bottom:488.546667pt;}
.y1a5{bottom:489.186667pt;}
.ye4{bottom:490.306667pt;}
.y93{bottom:491.906667pt;}
.y69{bottom:492.386667pt;}
.y1ea{bottom:496.386667pt;}
.y183{bottom:496.546667pt;}
.y26{bottom:497.826667pt;}
.yc6{bottom:498.306667pt;}
.y174{bottom:499.906667pt;}
.y13e{bottom:500.866667pt;}
.y1cc{bottom:505.506667pt;}
.yb3{bottom:506.306667pt;}
.y68{bottom:506.466667pt;}
.y25{bottom:511.906667pt;}
.ye3{bottom:512.546667pt;}
.y207{bottom:513.506667pt;}
.y92{bottom:514.306667pt;}
.yf8{bottom:518.946667pt;}
.y67{bottom:520.546667pt;}
.y1e9{bottom:521.506667pt;}
.y173{bottom:522.306667pt;}
.y13d{bottom:523.266667pt;}
.y1a4{bottom:523.586667pt;}
.y15c{bottom:524.226667pt;}
.y24{bottom:525.986667pt;}
.y182{bottom:526.946667pt;}
.yb2{bottom:528.546667pt;}
.y1cb{bottom:530.626667pt;}
.y66{bottom:534.626667pt;}
.ye2{bottom:534.946667pt;}
.y91{bottom:536.546667pt;}
.y1e8{bottom:538.653333pt;}
.y23{bottom:540.093333pt;}
.yf7{bottom:541.373333pt;}
.y10c{bottom:542.973333pt;}
.y172{bottom:544.573333pt;}
.y13c{bottom:545.693333pt;}
.y15b{bottom:546.653333pt;}
.y1ca{bottom:547.933333pt;}
.y65{bottom:548.573333pt;}
.y1a3{bottom:548.893333pt;}
.y181{bottom:549.373333pt;}
.yb1{bottom:550.973333pt;}
.y22{bottom:554.173333pt;}
.y206{bottom:555.933333pt;}
.ye1{bottom:557.373333pt;}
.y90{bottom:558.973333pt;}
.y64{bottom:562.653333pt;}
.y1e7{bottom:563.933333pt;}
.y10b{bottom:565.373333pt;}
.y171{bottom:566.973333pt;}
.y13b{bottom:567.933333pt;}
.y21{bottom:568.253333pt;}
.y15a{bottom:570.333333pt;}
.yf6{bottom:571.613333pt;}
.y1c9{bottom:573.053333pt;}
.yb0{bottom:573.373333pt;}
.y1a2{bottom:574.013333pt;}
.y63{bottom:576.733333pt;}
.ye0{bottom:579.613333pt;}
.y1e6{bottom:581.053333pt;}
.y8f{bottom:581.373333pt;}
.y20{bottom:582.333333pt;}
.y10a{bottom:587.613333pt;}
.y170{bottom:589.373333pt;}
.y13a{bottom:590.333333pt;}
.y62{bottom:590.813333pt;}
.y1a1{bottom:591.293333pt;}
.y159{bottom:592.733333pt;}
.yf5{bottom:594.013333pt;}
.yaf{bottom:595.613333pt;}
.y1f{bottom:596.413333pt;}
.y1e5{bottom:598.333333pt;}
.ydf{bottom:602.013333pt;}
.y8e{bottom:603.613333pt;}
.y61{bottom:604.893333pt;}
.y109{bottom:610.013333pt;}
.y1e{bottom:610.493333pt;}
.y16f{bottom:611.613333pt;}
.y139{bottom:612.733333pt;}
.y158{bottom:615.133333pt;}
.y1c8{bottom:615.453333pt;}
.y180{bottom:616.413333pt;}
.yae{bottom:618.013333pt;}
.y60{bottom:618.973333pt;}
.y1e4{bottom:623.453333pt;}
.yde{bottom:624.413333pt;}
.y1d{bottom:624.573333pt;}
.y8d{bottom:626.013333pt;}
.y108{bottom:632.413333pt;}
.y1c7{bottom:632.733333pt;}
.y5f{bottom:633.053333pt;}
.y1a0{bottom:633.533333pt;}
.y16e{bottom:634.013333pt;}
.y138{bottom:634.973333pt;}
.y157{bottom:637.373333pt;}
.y1c{bottom:638.653333pt;}
.y17f{bottom:638.813333pt;}
.yad{bottom:640.413333pt;}
.y1e3{bottom:640.733333pt;}
.ydd{bottom:646.813333pt;}
.y5e{bottom:647.133333pt;}
.y8c{bottom:648.413333pt;}
.y20e{bottom:648.733333pt;}
.y1b{bottom:652.573333pt;}
.yf4{bottom:654.813333pt;}
.y16d{bottom:656.413333pt;}
.y137{bottom:657.373333pt;}
.y1c6{bottom:657.853333pt;}
.y19f{bottom:658.813333pt;}
.y156{bottom:659.773333pt;}
.y17e{bottom:661.053333pt;}
.y5d{bottom:661.213333pt;}
.yac{bottom:662.813333pt;}
.y20d{bottom:665.853333pt;}
.y1a{bottom:666.653333pt;}
.ydc{bottom:669.053333pt;}
.y8b{bottom:670.813333pt;}
.y1c5{bottom:675.133333pt;}
.y5c{bottom:675.293333pt;}
.y19e{bottom:675.933333pt;}
.y107{bottom:677.053333pt;}
.y16c{bottom:678.813333pt;}
.y19{bottom:680.733333pt;}
.y155{bottom:682.173333pt;}
.y1e2{bottom:683.133333pt;}
.y17d{bottom:683.453333pt;}
.yab{bottom:685.053333pt;}
.y5b{bottom:689.373333pt;}
.ydb{bottom:691.453333pt;}
.y8a{bottom:693.053333pt;}
.y18{bottom:694.813333pt;}
.y106{bottom:699.453333pt;}
.y1c4{bottom:700.253333pt;}
.y16b{bottom:701.053333pt;}
.y19d{bottom:701.213333pt;}
.y136{bottom:703.133333pt;}
.y5a{bottom:703.453333pt;}
.y154{bottom:705.853333pt;}
.yaa{bottom:707.453333pt;}
.y20c{bottom:708.253333pt;}
.yda{bottom:713.853333pt;}
.y89{bottom:715.453333pt;}
.y17{bottom:716.893333pt;}
.y59{bottom:717.533333pt;}
.y19c{bottom:718.333333pt;}
.y16a{bottom:723.453333pt;}
.y1e1{bottom:725.533333pt;}
.y135{bottom:726.813333pt;}
.ya9{bottom:729.853333pt;}
.y58{bottom:731.613333pt;}
.y1c3{bottom:734.653333pt;}
.y19b{bottom:735.613333pt;}
.yd9{bottom:736.093333pt;}
.y88{bottom:737.853333pt;}
.y16{bottom:741.533333pt;}
.y1e0{bottom:742.653333pt;}
.y57{bottom:745.533333pt;}
.y169{bottom:745.853333pt;}
.y134{bottom:749.213333pt;}
.y205{bottom:750.653333pt;}
.ya8{bottom:752.093333pt;}
.y17c{bottom:758.493333pt;}
.y56{bottom:759.613333pt;}
.y1c2{bottom:759.933333pt;}
.y87{bottom:760.093333pt;}
.y19a{bottom:760.733333pt;}
.yd8{bottom:766.493333pt;}
.y204{bottom:767.933333pt;}
.yc5{bottom:768.093333pt;}
.y132{bottom:771.613333pt;}
.y55{bottom:773.693333pt;}
.yf3{bottom:774.533333pt;}
.y1c1{bottom:777.093333pt;}
.y199{bottom:778.053333pt;}
.y17b{bottom:780.933333pt;}
.y86{bottom:782.533333pt;}
.y1df{bottom:785.093333pt;}
.y15{bottom:785.733333pt;}
.y54{bottom:787.813333pt;}
.yc4{bottom:790.533333pt;}
.y203{bottom:793.093333pt;}
.y131{bottom:793.893333pt;}
.yd7{bottom:796.933333pt;}
.y53{bottom:801.893333pt;}
.y1c0{bottom:802.373333pt;}
.y198{bottom:803.173333pt;}
.ya7{bottom:804.933333pt;}
.y216{bottom:810.213333pt;}
.y202{bottom:810.373333pt;}
.y17a{bottom:811.333333pt;}
.y85{bottom:812.933333pt;}
.y52{bottom:815.973333pt;}
.y12f{bottom:816.293333pt;}
.yf2{bottom:819.333333pt;}
.y1bf{bottom:819.493333pt;}
.y197{bottom:820.453333pt;}
.ya6{bottom:827.333333pt;}
.y20b{bottom:827.493333pt;}
.y51{bottom:830.053333pt;}
.y14{bottom:830.533333pt;}
.y179{bottom:833.573333pt;}
.y84{bottom:835.333333pt;}
.y201{bottom:835.493333pt;}
.y12c{bottom:838.693333pt;}
.y50{bottom:844.133333pt;}
.y1be{bottom:844.613333pt;}
.y196{bottom:845.573333pt;}
.ya5{bottom:849.573333pt;}
.y200{bottom:852.613333pt;}
.y178{bottom:855.973333pt;}
.y83{bottom:857.573333pt;}
.y4f{bottom:858.213333pt;}
.y13{bottom:861.893333pt;}
.y12a{bottom:862.373333pt;}
.y195{bottom:862.853333pt;}
.y20a{bottom:869.893333pt;}
.ya4{bottom:871.973333pt;}
.y1ff{bottom:877.893333pt;}
.y177{bottom:878.373333pt;}
.y82{bottom:879.973333pt;}
.y4e{bottom:880.293333pt;}
.y1bd{bottom:887.013333pt;}
.y194{bottom:887.973333pt;}
.y4d{bottom:894.373333pt;}
.y1fe{bottom:895.013333pt;}
.y81{bottom:902.373333pt;}
.y10{bottom:903.173333pt;}
.y1bc{bottom:904.293333pt;}
.y193{bottom:905.253333pt;}
.y129{bottom:908.613333pt;}
.y12{bottom:910.853333pt;}
.y1de{bottom:912.293333pt;}
.y4c{bottom:916.453333pt;}
.ya3{bottom:916.613333pt;}
.ye{bottom:918.693333pt;}
.y215{bottom:920.293333pt;}
.y192{bottom:922.373333pt;}
.y80{bottom:924.613333pt;}
.y4{bottom:926.533333pt;}
.y1bb{bottom:929.413333pt;}
.y176{bottom:931.013333pt;}
.y1fd{bottom:937.413333pt;}
.y4b{bottom:938.533333pt;}
.yd6{bottom:939.013333pt;}
.y7f{bottom:947.013333pt;}
.y191{bottom:952.613333pt;}
.y1ba{bottom:954.693333pt;}
.y4a{bottom:960.453333pt;}
.yd5{bottom:961.413333pt;}
.y7e{bottom:969.413333pt;}
.y1b9{bottom:971.813333pt;}
.y49{bottom:974.533333pt;}
.y1fc{bottom:979.813333pt;}
.y190{bottom:982.853333pt;}
.yd4{bottom:983.653333pt;}
.y48{bottom:988.613333pt;}
.y7d{bottom:991.653333pt;}
.y1b8{bottom:997.093333pt;}
.y47{bottom:1002.693333pt;}
.y18f{bottom:1013.280000pt;}
.y7c{bottom:1014.080000pt;}
.y1b7{bottom:1014.240000pt;}
.y46{bottom:1016.800000pt;}
.y7b{bottom:1051.680000pt;}
.y1{bottom:1072.320000pt;}
.y42{bottom:1076.160000pt;}
.he{height:7.680000pt;}
.hc{height:7.840000pt;}
.h1a{height:22.240000pt;}
.h1c{height:22.272000pt;}
.h1b{height:22.400000pt;}
.h1d{height:22.432000pt;}
.hd{height:23.360000pt;}
.h8{height:23.428125pt;}
.h5{height:23.533125pt;}
.h13{height:25.835938pt;}
.h19{height:28.640000pt;}
.h14{height:30.955938pt;}
.h3{height:32.353125pt;}
.h7{height:37.373437pt;}
.h11{height:41.835938pt;}
.h10{height:42.023438pt;}
.h16{height:42.440312pt;}
.h9{height:46.298437pt;}
.hb{height:46.505938pt;}
.h2{height:51.318750pt;}
.h15{height:51.548750pt;}
.ha{height:52.575312pt;}
.h18{height:53.072500pt;}
.h17{height:58.276250pt;}
.h12{height:58.563750pt;}
.hf{height:83.671875pt;}
.h6{height:93.572187pt;}
.h4{height:101.632000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w7{width:41.440000pt;}
.w5{width:45.952000pt;}
.w11{width:59.520000pt;}
.wc{width:59.840000pt;}
.w13{width:63.040000pt;}
.w9{width:66.400000pt;}
.wf{width:70.240000pt;}
.w12{width:70.272000pt;}
.wb{width:77.312000pt;}
.w10{width:136.026667pt;}
.wa{width:136.986667pt;}
.w3{width:166.586667pt;}
.we{width:205.826667pt;}
.w8{width:207.266667pt;}
.wd{width:273.666667pt;}
.w14{width:276.066667pt;}
.w6{width:379.106667pt;}
.w4{width:466.493333pt;}
.w2{width:793.760000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:4.800000pt;}
.x4{left:7.232000pt;}
.x8{left:10.720000pt;}
.x12{left:34.240000pt;}
.xe{left:38.600000pt;}
.x6{left:40.672000pt;}
.xc{left:60.520000pt;}
.x3{left:75.519988pt;}
.xd{left:83.226667pt;}
.x13{left:86.911988pt;}
.x14{left:98.911988pt;}
.x1{left:113.311988pt;}
.x10{left:130.720000pt;}
.x5{left:159.226667pt;}
.x7{left:242.106667pt;}
.xb{left:262.626667pt;}
.x1f{left:281.346667pt;}
.x1a{left:282.786667pt;}
.xf{left:288.066667pt;}
.x9{left:324.706667pt;}
.x1b{left:349.186667pt;}
.x20{left:351.586667pt;}
.x17{left:379.586655pt;}
.x15{left:382.146655pt;}
.x2{left:387.426655pt;}
.xa{left:459.146667pt;}
.x1c{left:486.173333pt;}
.x21{left:487.613333pt;}
.x16{left:532.573322pt;}
.x22{left:547.133333pt;}
.x1d{left:552.573333pt;}
.x23{left:617.413333pt;}
.x1e{left:629.893333pt;}
.x11{left:667.173333pt;}
.x18{left:679.813322pt;}
}




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