
    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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_595b9c475bdd9f9281760e11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.196000;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_0d3ef5d46280a09ec51a25c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_9c01a0882fa45a4da242ccb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_ddbe83aab9de6721369b55ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_9ba13b83bb72dd7a32fa2ee4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196000;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1db94acf3c5279c57dacc288.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.080000;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_5f1aa13ca0ad8ca4b5d7a06f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.080000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5b7769e14771552916f423b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.327148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-1.314000px;}
.ls10{letter-spacing:-0.696000px;}
.ls2d{letter-spacing:-0.429000px;}
.ls45{letter-spacing:-0.420000px;}
.ls61{letter-spacing:-0.367800px;}
.ls4{letter-spacing:-0.256200px;}
.ls28{letter-spacing:-0.235200px;}
.ls27{letter-spacing:-0.197400px;}
.ls46{letter-spacing:-0.190800px;}
.ls2a{letter-spacing:-0.190200px;}
.ls49{letter-spacing:-0.114600px;}
.lse{letter-spacing:-0.103800px;}
.ls44{letter-spacing:-0.032400px;}
.ls21{letter-spacing:-0.030960px;}
.ls47{letter-spacing:-0.028080px;}
.ls1a{letter-spacing:-0.021600px;}
.ls4a{letter-spacing:-0.009360px;}
.ls5c{letter-spacing:-0.006480px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.021600px;}
.lsc{letter-spacing:0.026640px;}
.ls1d{letter-spacing:0.044640px;}
.ls53{letter-spacing:0.047520px;}
.ls1f{letter-spacing:0.081600px;}
.ls15{letter-spacing:0.097800px;}
.ls11{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.101400px;}
.ls25{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.135600px;}
.ls31{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.182880px;}
.lsa{letter-spacing:0.183000px;}
.ls2b{letter-spacing:0.195120px;}
.ls9{letter-spacing:0.215280px;}
.ls54{letter-spacing:0.232560px;}
.ls43{letter-spacing:0.232800px;}
.lsb{letter-spacing:0.290880px;}
.ls7{letter-spacing:0.291000px;}
.ls3d{letter-spacing:0.292320px;}
.ls18{letter-spacing:0.294480px;}
.ls5e{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.300960px;}
.ls38{letter-spacing:0.318240px;}
.ls36{letter-spacing:0.321120px;}
.ls5d{letter-spacing:0.331800px;}
.ls33{letter-spacing:0.331920px;}
.lsd{letter-spacing:0.334200px;}
.ls60{letter-spacing:0.340800px;}
.ls5b{letter-spacing:0.352080px;}
.ls42{letter-spacing:0.352200px;}
.ls1{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.375000px;}
.ls39{letter-spacing:0.375120px;}
.ls40{letter-spacing:0.451920px;}
.ls2e{letter-spacing:0.484800px;}
.ls56{letter-spacing:0.555120px;}
.ls22{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.902880px;}
.ls41{letter-spacing:0.918000px;}
.ls17{letter-spacing:1.008000px;}
.ls52{letter-spacing:1.041120px;}
.ls4e{letter-spacing:1.761120px;}
.ls26{letter-spacing:2.342880px;}
.ls57{letter-spacing:2.481120px;}
.ls5f{letter-spacing:3.060000px;}
.ls24{letter-spacing:4.502880px;}
.ls1b{letter-spacing:5.222880px;}
.ls37{letter-spacing:5.361120px;}
.ls5a{letter-spacing:8.217120px;}
.ls32{letter-spacing:8.961120px;}
.ls34{letter-spacing:9.681120px;}
.ls3a{letter-spacing:10.401120px;}
.ls3f{letter-spacing:11.121120px;}
.ls3e{letter-spacing:11.841120px;}
.ls59{letter-spacing:12.186720px;}
.ls51{letter-spacing:12.561120px;}
.ls29{letter-spacing:12.581280px;}
.ls19{letter-spacing:13.301280px;}
.ls4f{letter-spacing:13.862880px;}
.ls4c{letter-spacing:14.001120px;}
.ls50{letter-spacing:14.582880px;}
.ls14{letter-spacing:15.302880px;}
.ls23{letter-spacing:16.742880px;}
.ls4d{letter-spacing:17.601120px;}
.ls30{letter-spacing:17.946720px;}
.ls2{letter-spacing:20.412000px;}
.ls55{letter-spacing:22.641120px;}
.ls2c{letter-spacing:26.822880px;}
.ls3b{letter-spacing:29.121120px;}
.ls3c{letter-spacing:29.241120px;}
.ls13{letter-spacing:29.837280px;}
.ls2f{letter-spacing:30.186720px;}
.ls58{letter-spacing:42.777120px;}
.ls1c{letter-spacing:64.002720px;}
.ls8{letter-spacing:74.448000px;}
.ls6{letter-spacing:86.688000px;}
.ls5{letter-spacing:200.342880px;}
.ls12{letter-spacing:849.216000px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws10{word-spacing:-23.937720px;}
.ws3{word-spacing:-23.839920px;}
.ws12{word-spacing:-23.818320px;}
.ws16{word-spacing:-23.649720px;}
.ws6{word-spacing:-17.246280px;}
.ws14{word-spacing:-16.933680px;}
.ws8{word-spacing:-16.912080px;}
.ws19{word-spacing:-16.575120px;}
.ws18{word-spacing:-16.141920px;}
.ws24{word-spacing:-16.032120px;}
.ws1c{word-spacing:-16.009320px;}
.ws2a{word-spacing:-15.997920px;}
.ws27{word-spacing:-15.988920px;}
.ws28{word-spacing:-15.957120px;}
.ws5{word-spacing:-15.948120px;}
.ws1d{word-spacing:-15.889920px;}
.wsa{word-spacing:-15.872400px;}
.ws1b{word-spacing:-15.797520px;}
.ws9{word-spacing:-15.792720px;}
.ws11{word-spacing:-15.758520px;}
.wsc{word-spacing:-15.755520px;}
.ws25{word-spacing:-15.738720px;}
.ws29{word-spacing:-15.704640px;}
.ws4{word-spacing:-15.683760px;}
.wsd{word-spacing:-15.657120px;}
.ws26{word-spacing:-15.650640px;}
.ws23{word-spacing:-15.647760px;}
.ws1e{word-spacing:-15.624720px;}
.ws7{word-spacing:-15.553320px;}
.ws22{word-spacing:-15.542520px;}
.ws20{word-spacing:-15.466320px;}
.ws15{word-spacing:-15.459720px;}
.ws17{word-spacing:-15.421920px;}
.ws2b{word-spacing:-15.289320px;}
.ws1f{word-spacing:-15.237120px;}
.wsb{word-spacing:-14.961120px;}
.ws1{word-spacing:-14.148000px;}
.wse{word-spacing:-13.651920px;}
.ws0{word-spacing:-12.836880px;}
.ws1a{word-spacing:-12.638880px;}
.ws21{word-spacing:-12.610800px;}
.wsf{word-spacing:-11.884320px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-199.862880px;}
._6{margin-left:-181.743360px;}
._d{margin-left:-13.755600px;}
._b{margin-left:-11.966160px;}
._8{margin-left:-9.897120px;}
._a{margin-left:-7.053120px;}
._c{margin-left:-4.021680px;}
._e{margin-left:-2.309760px;}
._1{margin-left:-1.041120px;}
._0{width:1.344720px;}
._f{width:2.585520px;}
._2{width:4.078080px;}
._23{width:5.079840px;}
._14{width:6.094080px;}
._17{width:7.693200px;}
._16{width:8.845200px;}
._15{width:10.639680px;}
._1e{width:12.310560px;}
._10{width:13.789440px;}
._11{width:15.604080px;}
._1d{width:17.210880px;}
._18{width:18.416160px;}
._3{width:20.196000px;}
._24{width:21.616080px;}
._13{width:22.632480px;}
._12{width:23.991840px;}
._19{width:25.039440px;}
._1a{width:26.325360px;}
._25{width:27.422880px;}
._20{width:28.530480px;}
._1f{width:29.640960px;}
._4{width:31.374000px;}
._5{width:32.898000px;}
._21{width:34.003440px;}
._28{width:35.616960px;}
._27{width:37.230480px;}
._1c{width:39.202560px;}
._1b{width:40.278240px;}
._22{width:41.293680px;}
._26{width:42.525120px;}
._29{width:44.521200px;}
._2a{width:48.729600px;}
._2c{width:77.030640px;}
._2b{width:81.139920px;}
._9{width:200.318880px;}
.fc5{color:transparent;}
.fc4{color:rgb(3,72,96);}
.fc3{color:rgb(48,111,182);}
.fc1{color:rgb(129,180,226);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(68,113,196);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.360000px;}
.fs3{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yed{bottom:0.180000px;}
.y205{bottom:4.035000px;}
.y139{bottom:5.580000px;}
.y166{bottom:5.940000px;}
.y184{bottom:6.120000px;}
.y17{bottom:9.540000px;}
.y39{bottom:9.720000px;}
.y13b{bottom:10.980000px;}
.y31{bottom:12.780000px;}
.y204{bottom:13.875000px;}
.y32{bottom:15.660000px;}
.y104{bottom:16.020000px;}
.y7{bottom:17.100000px;}
.y3{bottom:17.280000px;}
.y165{bottom:21.780000px;}
.y203{bottom:23.715000px;}
.y37{bottom:30.060000px;}
.y45{bottom:30.090000px;}
.y3d{bottom:30.240000px;}
.y103{bottom:31.860000px;}
.y202{bottom:33.570000px;}
.y201{bottom:43.410000px;}
.y2{bottom:48.240000px;}
.y48{bottom:50.580000px;}
.y44{bottom:50.610000px;}
.y4c{bottom:50.625000px;}
.y36{bottom:50.760000px;}
.y3c{bottom:50.805000px;}
.y6{bottom:70.956000px;}
.y47{bottom:71.100000px;}
.y35{bottom:71.280000px;}
.y3b{bottom:71.325000px;}
.y5{bottom:85.536000px;}
.y34{bottom:91.800000px;}
.y41{bottom:91.980000px;}
.y40{bottom:112.500000px;}
.y1ff{bottom:122.436000px;}
.y163{bottom:122.976000px;}
.y164{bottom:128.016000px;}
.yeb{bottom:128.556000px;}
.y1bc{bottom:132.336000px;}
.y3f{bottom:133.020000px;}
.yc9{bottom:134.316000px;}
.y101{bottom:135.216000px;}
.y4f{bottom:136.296000px;}
.y182{bottom:137.016000px;}
.y1fe{bottom:142.056000px;}
.yea{bottom:148.356000px;}
.y1dd{bottom:149.616000px;}
.y194{bottom:149.796000px;}
.y100{bottom:154.830000px;}
.y181{bottom:156.810000px;}
.y4e{bottom:161.310000px;}
.y1fd{bottom:161.850000px;}
.y1bb{bottom:164.190000px;}
.yc8{bottom:166.170000px;}
.ye9{bottom:167.970000px;}
.y7b{bottom:169.410000px;}
.ya1{bottom:169.590000px;}
.y137{bottom:172.290000px;}
.yff{bottom:174.630000px;}
.y180{bottom:176.430000px;}
.y1fc{bottom:181.650000px;}
.y1ba{bottom:183.810000px;}
.yc7{bottom:185.790000px;}
.y4d{bottom:186.330000px;}
.y162{bottom:186.510000px;}
.y7a{bottom:189.210000px;}
.ya0{bottom:189.390000px;}
.y1dc{bottom:189.750000px;}
.y136{bottom:192.090000px;}
.yfe{bottom:194.430000px;}
.y20{bottom:198.750000px;}
.ye8{bottom:199.830000px;}
.y193{bottom:201.270000px;}
.y1b9{bottom:204.150000px;}
.yc6{bottom:205.590000px;}
.y17f{bottom:208.290000px;}
.y79{bottom:208.830000px;}
.y9f{bottom:209.010000px;}
.y1db{bottom:209.910000px;}
.y135{bottom:212.430000px;}
.yfd{bottom:214.050000px;}
.y161{bottom:218.190000px;}
.ye7{bottom:219.450000px;}
.y192{bottom:221.070000px;}
.y1b8{bottom:223.950000px;}
.y17e{bottom:227.910000px;}
.y9e{bottom:228.810000px;}
.y1da{bottom:230.250000px;}
.y4b{bottom:232.050000px;}
.y1f{bottom:235.110000px;}
.yc5{bottom:237.270000px;}
.ye6{bottom:239.250000px;}
.y78{bottom:240.690000px;}
.y1b7{bottom:243.570000px;}
.yfc{bottom:245.910000px;}
.y17d{bottom:247.710000px;}
.y160{bottom:250.050000px;}
.y134{bottom:251.850000px;}
.yc4{bottom:257.070000px;}
.y77{bottom:260.310000px;}
.y9d{bottom:260.490000px;}
.y1b6{bottom:263.370000px;}
.yfb{bottom:265.530000px;}
.y1d9{bottom:269.670000px;}
.ye5{bottom:270.930000px;}
.y133{bottom:272.190000px;}
.y191{bottom:272.550000px;}
.y1e{bottom:274.530000px;}
.yc3{bottom:276.690000px;}
.y17c{bottom:279.390000px;}
.y76{bottom:280.110000px;}
.y9c{bottom:280.290000px;}
.y15f{bottom:281.775000px;}
.y1b5{bottom:283.755000px;}
.yfa{bottom:285.375000px;}
.y1d8{bottom:290.055000px;}
.ye4{bottom:290.775000px;}
.y190{bottom:292.215000px;}
.y132{bottom:292.395000px;}
.y4a{bottom:298.335000px;}
.y17b{bottom:299.235000px;}
.y9b{bottom:299.955000px;}
.y1b4{bottom:303.375000px;}
.y11b{bottom:304.275000px;}
.yf9{bottom:304.995000px;}
.yc2{bottom:308.595000px;}
.y1d7{bottom:309.855000px;}
.ye3{bottom:310.575000px;}
.y75{bottom:311.835000px;}
.y18f{bottom:312.015000px;}
.y1d{bottom:312.735000px;}
.y15e{bottom:313.455000px;}
.y17a{bottom:319.035000px;}
.y1fb{bottom:319.755000px;}
.y1b3{bottom:323.175000px;}
.y11a{bottom:324.075000px;}
.yf8{bottom:324.795000px;}
.yc1{bottom:328.215000px;}
.ye2{bottom:330.195000px;}
.y74{bottom:331.635000px;}
.y9a{bottom:331.815000px;}
.y131{bottom:333.075000px;}
.y1c{bottom:337.395000px;}
.y1fa{bottom:339.555000px;}
.y1b2{bottom:342.795000px;}
.y119{bottom:343.695000px;}
.y221{bottom:344.595000px;}
.y15d{bottom:345.135000px;}
.yc0{bottom:348.015000px;}
.y179{bottom:350.715000px;}
.y73{bottom:351.255000px;}
.y99{bottom:351.435000px;}
.y130{bottom:352.875000px;}
.yf7{bottom:356.475000px;}
.y1f9{bottom:359.175000px;}
.ye1{bottom:361.875000px;}
.y1b{bottom:362.055000px;}
.y1d6{bottom:362.415000px;}
.y1b1{bottom:362.595000px;}
.y118{bottom:363.495000px;}
.y220{bottom:364.215000px;}
.y178{bottom:370.335000px;}
.yd9{bottom:371.055000px;}
.y98{bottom:371.235000px;}
.yf6{bottom:376.275000px;}
.y15c{bottom:376.995000px;}
.y1f8{bottom:378.975000px;}
.ybf{bottom:379.695000px;}
.ye0{bottom:381.675000px;}
.y1b0{bottom:382.395000px;}
.y72{bottom:383.115000px;}
.y18e{bottom:383.295000px;}
.y21f{bottom:384.015000px;}
.y49{bottom:385.095000px;}
.y1a{bottom:386.715000px;}
.y177{bottom:390.135000px;}
.y97{bottom:391.035000px;}
.y1d5{bottom:394.095000px;}
.y117{bottom:395.175000px;}
.yf5{bottom:396.075000px;}
.y1f7{bottom:398.595000px;}
.ybe{bottom:399.495000px;}
.ydf{bottom:401.475000px;}
.yd8{bottom:402.735000px;}
.y18d{bottom:402.915000px;}
.y21e{bottom:403.815000px;}
.y12f{bottom:404.895000px;}
.y15b{bottom:408.675000px;}
.y1d4{bottom:413.895000px;}
.y1af{bottom:414.615000px;}
.y71{bottom:414.795000px;}
.y116{bottom:414.975000px;}
.yf4{bottom:415.695000px;}
.y1f6{bottom:418.395000px;}
.ybd{bottom:419.295000px;}
.yde{bottom:421.095000px;}
.y176{bottom:421.815000px;}
.yd7{bottom:422.535000px;}
.y96{bottom:422.715000px;}
.y21d{bottom:423.435000px;}
.y19{bottom:424.875000px;}
.y15a{bottom:428.475000px;}
.y13a{bottom:431.715000px;}
.y1d3{bottom:433.515000px;}
.y115{bottom:434.595000px;}
.y12e{bottom:436.575000px;}
.y1f5{bottom:438.195000px;}
.y18{bottom:440.895000px;}
.y175{bottom:441.615000px;}
.y95{bottom:442.335000px;}
.y1ae{bottom:446.295000px;}
.y70{bottom:446.475000px;}
.yf3{bottom:447.375000px;}
.y159{bottom:448.095000px;}
.ybc{bottom:450.975000px;}
.y46{bottom:451.335000px;}
.ydd{bottom:452.955000px;}
.y1d2{bottom:453.315000px;}
.y18c{bottom:454.395000px;}
.y21c{bottom:455.295000px;}
.yec{bottom:456.915000px;}
.y174{bottom:461.415000px;}
.y94{bottom:462.135000px;}
.y16{bottom:465.915000px;}
.y6f{bottom:466.275000px;}
.y114{bottom:466.455000px;}
.yf2{bottom:467.175000px;}
.y158{bottom:467.895000px;}
.y12d{bottom:468.255000px;}
.y1f4{bottom:469.875000px;}
.ybb{bottom:470.595000px;}
.y1d1{bottom:473.115000px;}
.yd6{bottom:474.015000px;}
.y18b{bottom:474.195000px;}
.y1ad{bottom:478.155000px;}
.ydc{bottom:480.855000px;}
.y93{bottom:481.935000px;}
.y6e{bottom:485.895000px;}
.y113{bottom:486.075000px;}
.y21b{bottom:486.975000px;}
.y157{bottom:487.695000px;}
.y1f3{bottom:489.675000px;}
.yba{bottom:490.395000px;}
.y173{bottom:493.095000px;}
.yd5{bottom:493.635000px;}
.y1ac{bottom:497.775000px;}
.yf1{bottom:498.855000px;}
.y12c{bottom:499.935000px;}
.y1d0{bottom:504.795000px;}
.y112{bottom:505.875000px;}
.y21a{bottom:506.595000px;}
.y15{bottom:506.775000px;}
.y1f2{bottom:509.295000px;}
.yb9{bottom:510.195000px;}
.y172{bottom:512.895000px;}
.y92{bottom:513.615000px;}
.y1ab{bottom:517.575000px;}
.y6d{bottom:517.755000px;}
.y102{bottom:519.375000px;}
.y1cf{bottom:524.595000px;}
.yd4{bottom:525.495000px;}
.y18a{bottom:525.675000px;}
.y219{bottom:526.395000px;}
.y1f1{bottom:529.095000px;}
.yb8{bottom:529.815000px;}
.y12b{bottom:531.795000px;}
.y171{bottom:532.515000px;}
.y91{bottom:533.415000px;}
.y14{bottom:537.195000px;}
.y6c{bottom:537.375000px;}
.y111{bottom:537.555000px;}
.y43{bottom:538.095000px;}
.y156{bottom:538.995000px;}
.y1ce{bottom:544.215000px;}
.yd3{bottom:545.115000px;}
.y189{bottom:545.295000px;}
.y218{bottom:546.195000px;}
.y1f0{bottom:548.895000px;}
.y1aa{bottom:549.255000px;}
.yb7{bottom:549.615000px;}
.y170{bottom:552.315000px;}
.y90{bottom:553.035000px;}
.y6b{bottom:557.175000px;}
.y110{bottom:557.355000px;}
.y155{bottom:558.795000px;}
.y12a{bottom:563.475000px;}
.y1cd{bottom:564.585000px;}
.yd2{bottom:564.945000px;}
.y217{bottom:565.845000px;}
.y13{bottom:567.825000px;}
.y1ef{bottom:568.545000px;}
.y1a9{bottom:569.085000px;}
.yf0{bottom:575.925000px;}
.y6a{bottom:577.005000px;}
.y10f{bottom:577.185000px;}
.y154{bottom:578.625000px;}
.yb6{bottom:581.325000px;}
.y16f{bottom:584.025000px;}
.y1cc{bottom:584.385000px;}
.y8f{bottom:584.925000px;}
.y216{bottom:585.645000px;}
.y1ee{bottom:588.345000px;}
.y1a8{bottom:588.705000px;}
.y129{bottom:595.185000px;}
.y69{bottom:596.625000px;}
.y188{bottom:596.805000px;}
.y12{bottom:598.245000px;}
.yb5{bottom:601.125000px;}
.y16e{bottom:603.825000px;}
.y1cb{bottom:604.005000px;}
.y42{bottom:604.365000px;}
.y8e{bottom:604.545000px;}
.y215{bottom:605.445000px;}
.y1ed{bottom:607.965000px;}
.y1a7{bottom:608.505000px;}
.y10e{bottom:608.865000px;}
.y153{bottom:610.305000px;}
.y68{bottom:616.425000px;}
.y187{bottom:616.605000px;}
.y16d{bottom:623.445000px;}
.y8d{bottom:624.345000px;}
.y214{bottom:625.065000px;}
.y128{bottom:627.045000px;}
.y1ec{bottom:627.765000px;}
.y10d{bottom:628.485000px;}
.y11{bottom:628.665000px;}
.y152{bottom:630.105000px;}
.yb4{bottom:632.805000px;}
.yd1{bottom:636.225000px;}
.y1a6{bottom:640.185000px;}
.y16c{bottom:643.245000px;}
.y8c{bottom:643.965000px;}
.y1ca{bottom:644.145000px;}
.y213{bottom:644.865000px;}
.y1eb{bottom:647.565000px;}
.y67{bottom:648.105000px;}
.y10c{bottom:648.285000px;}
.y151{bottom:649.725000px;}
.y3e{bottom:649.905000px;}
.yb3{bottom:652.605000px;}
.yd0{bottom:655.845000px;}
.y127{bottom:658.725000px;}
.y1a5{bottom:659.985000px;}
.y1c9{bottom:663.765000px;}
.y212{bottom:664.485000px;}
.y10{bottom:665.025000px;}
.y1ea{bottom:667.185000px;}
.y66{bottom:667.905000px;}
.y186{bottom:668.085000px;}
.yb2{bottom:672.225000px;}
.y2f{bottom:674.745000px;}
.y16b{bottom:674.925000px;}
.y8b{bottom:675.825000px;}
.y10b{bottom:679.965000px;}
.y150{bottom:681.585000px;}
.y1c8{bottom:683.565000px;}
.y211{bottom:684.285000px;}
.y1e9{bottom:686.985000px;}
.ycf{bottom:687.525000px;}
.y185{bottom:687.705000px;}
.y126{bottom:690.405000px;}
.y1a4{bottom:691.665000px;}
.yb1{bottom:692.025000px;}
.y16a{bottom:694.725000px;}
.y8a{bottom:695.445000px;}
.y65{bottom:699.585000px;}
.y10a{bottom:699.765000px;}
.y14f{bottom:701.205000px;}
.yf{bottom:701.385000px;}
.y1c7{bottom:703.905000px;}
.y1e8{bottom:706.785000px;}
.yce{bottom:707.325000px;}
.y1a3{bottom:711.465000px;}
.yb0{bottom:711.825000px;}
.y169{bottom:714.345000px;}
.y210{bottom:715.965000px;}
.y2e{bottom:718.305000px;}
.y64{bottom:719.385000px;}
.y109{bottom:719.565000px;}
.y14e{bottom:721.005000px;}
.y125{bottom:722.085000px;}
.y1c6{bottom:723.525000px;}
.y1e7{bottom:726.405000px;}
.y89{bottom:727.305000px;}
.y1a2{bottom:731.265000px;}
.yaf{bottom:731.445000px;}
.y168{bottom:734.145000px;}
.ye{bottom:737.925000px;}
.y63{bottom:739.005000px;}
.y108{bottom:739.185000px;}
.y14d{bottom:740.625000px;}
.y1c5{bottom:743.865000px;}
.y1e6{bottom:746.205000px;}
.y88{bottom:746.925000px;}
.y20f{bottom:747.825000px;}
.yae{bottom:751.245000px;}
.y124{bottom:753.945000px;}
.y2d{bottom:754.845000px;}
.y62{bottom:758.805000px;}
.y14c{bottom:760.425000px;}
.y1a1{bottom:762.945000px;}
.y1c4{bottom:763.485000px;}
.y167{bottom:765.825000px;}
.y20e{bottom:767.445000px;}
.yad{bottom:771.045000px;}
.ycd{bottom:778.605000px;}
.y87{bottom:778.785000px;}
.y14b{bottom:780.225000px;}
.y1a0{bottom:782.565000px;}
.y1c3{bottom:783.285000px;}
.y123{bottom:785.625000px;}
.y2c{bottom:786.525000px;}
.y20d{bottom:787.245000px;}
.y61{bottom:790.485000px;}
.yac{bottom:790.665000px;}
.yd{bottom:797.505000px;}
.y1e5{bottom:797.685000px;}
.ycc{bottom:798.225000px;}
.y3a{bottom:798.405000px;}
.y14a{bottom:799.845000px;}
.y19f{bottom:802.365000px;}
.y1c2{bottom:803.625000px;}
.y2b{bottom:806.325000px;}
.y20c{bottom:807.045000px;}
.y60{bottom:810.285000px;}
.yab{bottom:810.465000px;}
.y122{bottom:817.305000px;}
.y86{bottom:818.205000px;}
.y1c1{bottom:823.425000px;}
.y20b{bottom:826.665000px;}
.y1e4{bottom:829.365000px;}
.y5f{bottom:830.085000px;}
.y149{bottom:831.705000px;}
.y19e{bottom:834.045000px;}
.y85{bottom:837.825000px;}
.y2a{bottom:838.005000px;}
.yaa{bottom:842.145000px;}
.y1c0{bottom:843.585000px;}
.y20a{bottom:846.465000px;}
.y121{bottom:849.210000px;}
.y5e{bottom:849.750000px;}
.y107{bottom:849.930000px;}
.y148{bottom:851.370000px;}
.y19d{bottom:853.890000px;}
.y29{bottom:857.850000px;}
.y1e3{bottom:861.090000px;}
.ya9{bottom:861.990000px;}
.yc{bottom:863.070000px;}
.y1bf{bottom:863.430000px;}
.y209{bottom:866.130000px;}
.y5d{bottom:869.550000px;}
.y84{bottom:869.730000px;}
.y19c{bottom:873.690000px;}
.y183{bottom:874.050000px;}
.y28{bottom:877.470000px;}
.y120{bottom:880.890000px;}
.ya8{bottom:881.610000px;}
.y138{bottom:882.510000px;}
.y147{bottom:883.230000px;}
.y38{bottom:885.210000px;}
.y208{bottom:885.930000px;}
.y83{bottom:889.350000px;}
.y1e2{bottom:892.950000px;}
.y19b{bottom:893.310000px;}
.y5c{bottom:901.230000px;}
.y106{bottom:901.410000px;}
.yb{bottom:902.490000px;}
.y146{bottom:903.390000px;}
.y207{bottom:905.730000px;}
.y82{bottom:909.150000px;}
.y27{bottom:909.330000px;}
.y11f{bottom:912.570000px;}
.ya7{bottom:913.470000px;}
.y5b{bottom:921.030000px;}
.ydb{bottom:921.210000px;}
.y145{bottom:923.190000px;}
.y1e1{bottom:924.630000px;}
.y19a{bottom:925.170000px;}
.y54{bottom:925.350000px;}
.y33{bottom:930.930000px;}
.y200{bottom:931.725000px;}
.ya6{bottom:933.090000px;}
.ya{bottom:938.310000px;}
.y5a{bottom:940.650000px;}
.y81{bottom:940.830000px;}
.y26{bottom:941.010000px;}
.y144{bottom:942.990000px;}
.y1be{bottom:943.530000px;}
.y11e{bottom:944.250000px;}
.y199{bottom:944.790000px;}
.y206{bottom:945.150000px;}
.ycb{bottom:952.710000px;}
.ya5{bottom:952.890000px;}
.y1e0{bottom:956.310000px;}
.y80{bottom:960.630000px;}
.y143{bottom:963.150000px;}
.y198{bottom:964.590000px;}
.y53{bottom:964.950000px;}
.y59{bottom:972.510000px;}
.y25{bottom:972.690000px;}
.y11d{bottom:976.110000px;}
.y7f{bottom:980.250000px;}
.y142{bottom:982.950000px;}
.y197{bottom:984.210000px;}
.ya4{bottom:984.570000px;}
.y1df{bottom:987.990000px;}
.y58{bottom:992.130000px;}
.yda{bottom:992.310000px;}
.y141{bottom:1003.290000px;}
.y24{bottom:1004.370000px;}
.y11c{bottom:1007.790000px;}
.y52{bottom:1010.130000px;}
.y57{bottom:1011.930000px;}
.y7e{bottom:1012.110000px;}
.y196{bottom:1018.230000px;}
.y1de{bottom:1019.850000px;}
.y140{bottom:1022.910000px;}
.ya3{bottom:1023.990000px;}
.y51{bottom:1026.330000px;}
.y56{bottom:1031.550000px;}
.y7d{bottom:1031.730000px;}
.y23{bottom:1036.230000px;}
.y30{bottom:1038.210000px;}
.yef{bottom:1039.470000px;}
.y13f{bottom:1042.710000px;}
.yca{bottom:1043.610000px;}
.ya2{bottom:1043.790000px;}
.y195{bottom:1045.770000px;}
.y105{bottom:1051.530000px;}
.y1bd{bottom:1062.510000px;}
.y13e{bottom:1063.050000px;}
.y55{bottom:1063.410000px;}
.y9{bottom:1063.590000px;}
.y22{bottom:1069.890000px;}
.yee{bottom:1071.330000px;}
.y50{bottom:1071.870000px;}
.y13d{bottom:1082.670000px;}
.y7c{bottom:1083.210000px;}
.y21{bottom:1097.250000px;}
.y13c{bottom:1102.470000px;}
.y8{bottom:1103.010000px;}
.y4{bottom:1134.720000px;}
.y1{bottom:1149.300000px;}
.h19{height:11.880000px;}
.h1b{height:17.280000px;}
.h1c{height:22.680000px;}
.h9{height:23.580000px;}
.hf{height:30.420000px;}
.h6{height:31.680000px;}
.h5{height:31.860000px;}
.h1d{height:33.480000px;}
.h20{height:41.570156px;}
.ha{height:42.230160px;}
.h1a{height:43.560000px;}
.h12{height:44.100000px;}
.h18{height:44.280000px;}
.hb{height:45.223920px;}
.h10{height:48.095280px;}
.h3{height:49.394180px;}
.h1e{height:52.648560px;}
.hc{height:53.838000px;}
.h7{height:55.636560px;}
.h1f{height:56.250000px;}
.h2{height:59.580000px;}
.h4{height:59.580720px;}
.h17{height:64.620000px;}
.h15{height:64.656000px;}
.he{height:71.613281px;}
.hd{height:78.427440px;}
.h16{height:85.140000px;}
.h13{height:85.356000px;}
.h11{height:105.840000px;}
.h14{height:147.060000px;}
.h8{height:156.184560px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:5.400000px;}
.wb{width:8.460000px;}
.wa{width:8.640000px;}
.w12{width:8.820000px;}
.w11{width:9.180000px;}
.w13{width:9.720000px;}
.w10{width:9.900000px;}
.w17{width:10.980000px;}
.w1b{width:13.860000px;}
.w18{width:14.040000px;}
.w1e{width:14.400000px;}
.w1d{width:14.580000px;}
.w1f{width:15.120000px;}
.w15{width:15.480000px;}
.w6{width:79.560000px;}
.w7{width:124.056000px;}
.we{width:171.720000px;}
.wc{width:172.440000px;}
.w9{width:214.410000px;}
.w4{width:225.390000px;}
.w8{width:256.890000px;}
.w20{width:337.500000px;}
.wf{width:501.585000px;}
.wd{width:502.305000px;}
.w2{width:676.230000px;}
.w19{width:677.985000px;}
.w14{width:679.785000px;}
.w16{width:681.585000px;}
.w1a{width:686.985000px;}
.w1c{width:687.885000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xa{left:-1.440000px;}
.x0{left:0.000000px;}
.x2{left:6.660000px;}
.x28{left:14.220000px;}
.x1f{left:15.300000px;}
.x2b{left:30.240000px;}
.x2c{left:60.654000px;}
.x1{left:86.760000px;}
.x26{left:88.734000px;}
.x27{left:95.796000px;}
.x2a{left:96.876000px;}
.x1d{left:102.594000px;}
.x1c{left:103.896000px;}
.x3{left:106.595987px;}
.x4{left:108.036000px;}
.x11{left:109.476000px;}
.x6{left:112.680000px;}
.x15{left:116.675987px;}
.x2d{left:133.595987px;}
.x1a{left:135.035987px;}
.x20{left:140.574000px;}
.x25{left:144.714000px;}
.x2e{left:160.589987px;}
.x24{left:162.029987px;}
.x2f{left:170.250000px;}
.x17{left:174.089987px;}
.x12{left:189.030000px;}
.x8{left:225.945000px;}
.x29{left:233.679000px;}
.xf{left:266.789987px;}
.x18{left:281.910000px;}
.x13{left:313.095000px;}
.x5{left:333.435000px;}
.xd{left:362.954987px;}
.x23{left:400.574987px;}
.xc{left:454.214987px;}
.xe{left:457.814987px;}
.x7{left:558.825000px;}
.x14{left:569.985000px;}
.x10{left:634.604987px;}
.x1b{left:744.629987px;}
.x1e{left:769.650000px;}
.x22{left:771.090000px;}
.x21{left:774.150000px;}
.x19{left:775.230000px;}
.x16{left:776.490000px;}
.x9{left:779.730000px;}
.xb{left:786.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-1.168000pt;}
.ls10{letter-spacing:-0.618667pt;}
.ls2d{letter-spacing:-0.381333pt;}
.ls45{letter-spacing:-0.373333pt;}
.ls61{letter-spacing:-0.326933pt;}
.ls4{letter-spacing:-0.227733pt;}
.ls28{letter-spacing:-0.209067pt;}
.ls27{letter-spacing:-0.175467pt;}
.ls46{letter-spacing:-0.169600pt;}
.ls2a{letter-spacing:-0.169067pt;}
.ls49{letter-spacing:-0.101867pt;}
.lse{letter-spacing:-0.092267pt;}
.ls44{letter-spacing:-0.028800pt;}
.ls21{letter-spacing:-0.027520pt;}
.ls47{letter-spacing:-0.024960pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls4a{letter-spacing:-0.008320pt;}
.ls5c{letter-spacing:-0.005760pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.019200pt;}
.lsc{letter-spacing:0.023680pt;}
.ls1d{letter-spacing:0.039680pt;}
.ls53{letter-spacing:0.042240pt;}
.ls1f{letter-spacing:0.072533pt;}
.ls15{letter-spacing:0.086933pt;}
.ls11{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.090133pt;}
.ls25{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.120533pt;}
.ls31{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.162560pt;}
.lsa{letter-spacing:0.162667pt;}
.ls2b{letter-spacing:0.173440pt;}
.ls9{letter-spacing:0.191360pt;}
.ls54{letter-spacing:0.206720pt;}
.ls43{letter-spacing:0.206933pt;}
.lsb{letter-spacing:0.258560pt;}
.ls7{letter-spacing:0.258667pt;}
.ls3d{letter-spacing:0.259840pt;}
.ls18{letter-spacing:0.261760pt;}
.ls5e{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.267520pt;}
.ls38{letter-spacing:0.282880pt;}
.ls36{letter-spacing:0.285440pt;}
.ls5d{letter-spacing:0.294933pt;}
.ls33{letter-spacing:0.295040pt;}
.lsd{letter-spacing:0.297067pt;}
.ls60{letter-spacing:0.302933pt;}
.ls5b{letter-spacing:0.312960pt;}
.ls42{letter-spacing:0.313067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.333333pt;}
.ls39{letter-spacing:0.333440pt;}
.ls40{letter-spacing:0.401707pt;}
.ls2e{letter-spacing:0.430933pt;}
.ls56{letter-spacing:0.493440pt;}
.ls22{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.802560pt;}
.ls41{letter-spacing:0.816000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls52{letter-spacing:0.925440pt;}
.ls4e{letter-spacing:1.565440pt;}
.ls26{letter-spacing:2.082560pt;}
.ls57{letter-spacing:2.205440pt;}
.ls5f{letter-spacing:2.720000pt;}
.ls24{letter-spacing:4.002560pt;}
.ls1b{letter-spacing:4.642560pt;}
.ls37{letter-spacing:4.765440pt;}
.ls5a{letter-spacing:7.304107pt;}
.ls32{letter-spacing:7.965440pt;}
.ls34{letter-spacing:8.605440pt;}
.ls3a{letter-spacing:9.245440pt;}
.ls3f{letter-spacing:9.885440pt;}
.ls3e{letter-spacing:10.525440pt;}
.ls59{letter-spacing:10.832640pt;}
.ls51{letter-spacing:11.165440pt;}
.ls29{letter-spacing:11.183360pt;}
.ls19{letter-spacing:11.823360pt;}
.ls4f{letter-spacing:12.322560pt;}
.ls4c{letter-spacing:12.445440pt;}
.ls50{letter-spacing:12.962560pt;}
.ls14{letter-spacing:13.602560pt;}
.ls23{letter-spacing:14.882560pt;}
.ls4d{letter-spacing:15.645440pt;}
.ls30{letter-spacing:15.952640pt;}
.ls2{letter-spacing:18.144000pt;}
.ls55{letter-spacing:20.125440pt;}
.ls2c{letter-spacing:23.842560pt;}
.ls3b{letter-spacing:25.885440pt;}
.ls3c{letter-spacing:25.992107pt;}
.ls13{letter-spacing:26.522027pt;}
.ls2f{letter-spacing:26.832640pt;}
.ls58{letter-spacing:38.024107pt;}
.ls1c{letter-spacing:56.891307pt;}
.ls8{letter-spacing:66.176000pt;}
.ls6{letter-spacing:77.056000pt;}
.ls5{letter-spacing:178.082560pt;}
.ls12{letter-spacing:754.858667pt;}
.ws13{word-spacing:-53.120000pt;}
.ws10{word-spacing:-21.277973pt;}
.ws3{word-spacing:-21.191040pt;}
.ws12{word-spacing:-21.171840pt;}
.ws16{word-spacing:-21.021973pt;}
.ws6{word-spacing:-15.330027pt;}
.ws14{word-spacing:-15.052160pt;}
.ws8{word-spacing:-15.032960pt;}
.ws19{word-spacing:-14.733440pt;}
.ws18{word-spacing:-14.348373pt;}
.ws24{word-spacing:-14.250773pt;}
.ws1c{word-spacing:-14.230507pt;}
.ws2a{word-spacing:-14.220373pt;}
.ws27{word-spacing:-14.212373pt;}
.ws28{word-spacing:-14.184107pt;}
.ws5{word-spacing:-14.176107pt;}
.ws1d{word-spacing:-14.124373pt;}
.wsa{word-spacing:-14.108800pt;}
.ws1b{word-spacing:-14.042240pt;}
.ws9{word-spacing:-14.037973pt;}
.ws11{word-spacing:-14.007573pt;}
.wsc{word-spacing:-14.004907pt;}
.ws25{word-spacing:-13.989973pt;}
.ws29{word-spacing:-13.959680pt;}
.ws4{word-spacing:-13.941120pt;}
.wsd{word-spacing:-13.917440pt;}
.ws26{word-spacing:-13.911680pt;}
.ws23{word-spacing:-13.909120pt;}
.ws1e{word-spacing:-13.888640pt;}
.ws7{word-spacing:-13.825173pt;}
.ws22{word-spacing:-13.815573pt;}
.ws20{word-spacing:-13.747840pt;}
.ws15{word-spacing:-13.741973pt;}
.ws17{word-spacing:-13.708373pt;}
.ws2b{word-spacing:-13.590507pt;}
.ws1f{word-spacing:-13.544107pt;}
.wsb{word-spacing:-13.298773pt;}
.ws1{word-spacing:-12.576000pt;}
.wse{word-spacing:-12.135040pt;}
.ws0{word-spacing:-11.410560pt;}
.ws1a{word-spacing:-11.234560pt;}
.ws21{word-spacing:-11.209600pt;}
.wsf{word-spacing:-10.563840pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-177.655893pt;}
._6{margin-left:-161.549653pt;}
._d{margin-left:-12.227200pt;}
._b{margin-left:-10.636587pt;}
._8{margin-left:-8.797440pt;}
._a{margin-left:-6.269440pt;}
._c{margin-left:-3.574827pt;}
._e{margin-left:-2.053120pt;}
._1{margin-left:-0.925440pt;}
._0{width:1.195307pt;}
._f{width:2.298240pt;}
._2{width:3.624960pt;}
._23{width:4.515413pt;}
._14{width:5.416960pt;}
._17{width:6.838400pt;}
._16{width:7.862400pt;}
._15{width:9.457493pt;}
._1e{width:10.942720pt;}
._10{width:12.257280pt;}
._11{width:13.870293pt;}
._1d{width:15.298560pt;}
._18{width:16.369920pt;}
._3{width:17.952000pt;}
._24{width:19.214293pt;}
._13{width:20.117760pt;}
._12{width:21.326080pt;}
._19{width:22.257280pt;}
._1a{width:23.400320pt;}
._25{width:24.375893pt;}
._20{width:25.360427pt;}
._1f{width:26.347520pt;}
._4{width:27.888000pt;}
._5{width:29.242667pt;}
._21{width:30.225280pt;}
._28{width:31.659520pt;}
._27{width:33.093760pt;}
._1c{width:34.846720pt;}
._1b{width:35.802880pt;}
._22{width:36.705493pt;}
._26{width:37.800107pt;}
._29{width:39.574400pt;}
._2a{width:43.315200pt;}
._2c{width:68.471680pt;}
._2b{width:72.124373pt;}
._9{width:178.061227pt;}
.fs7{font-size:34.986667pt;}
.fs3{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:0.160000pt;}
.y205{bottom:3.586667pt;}
.y139{bottom:4.960000pt;}
.y166{bottom:5.280000pt;}
.y184{bottom:5.440000pt;}
.y17{bottom:8.480000pt;}
.y39{bottom:8.640000pt;}
.y13b{bottom:9.760000pt;}
.y31{bottom:11.360000pt;}
.y204{bottom:12.333333pt;}
.y32{bottom:13.920000pt;}
.y104{bottom:14.240000pt;}
.y7{bottom:15.200000pt;}
.y3{bottom:15.360000pt;}
.y165{bottom:19.360000pt;}
.y203{bottom:21.080000pt;}
.y37{bottom:26.720000pt;}
.y45{bottom:26.746667pt;}
.y3d{bottom:26.880000pt;}
.y103{bottom:28.320000pt;}
.y202{bottom:29.840000pt;}
.y201{bottom:38.586667pt;}
.y2{bottom:42.880000pt;}
.y48{bottom:44.960000pt;}
.y44{bottom:44.986667pt;}
.y4c{bottom:45.000000pt;}
.y36{bottom:45.120000pt;}
.y3c{bottom:45.160000pt;}
.y6{bottom:63.072000pt;}
.y47{bottom:63.200000pt;}
.y35{bottom:63.360000pt;}
.y3b{bottom:63.400000pt;}
.y5{bottom:76.032000pt;}
.y34{bottom:81.600000pt;}
.y41{bottom:81.760000pt;}
.y40{bottom:100.000000pt;}
.y1ff{bottom:108.832000pt;}
.y163{bottom:109.312000pt;}
.y164{bottom:113.792000pt;}
.yeb{bottom:114.272000pt;}
.y1bc{bottom:117.632000pt;}
.y3f{bottom:118.240000pt;}
.yc9{bottom:119.392000pt;}
.y101{bottom:120.192000pt;}
.y4f{bottom:121.152000pt;}
.y182{bottom:121.792000pt;}
.y1fe{bottom:126.272000pt;}
.yea{bottom:131.872000pt;}
.y1dd{bottom:132.992000pt;}
.y194{bottom:133.152000pt;}
.y100{bottom:137.626667pt;}
.y181{bottom:139.386667pt;}
.y4e{bottom:143.386667pt;}
.y1fd{bottom:143.866667pt;}
.y1bb{bottom:145.946667pt;}
.yc8{bottom:147.706667pt;}
.ye9{bottom:149.306667pt;}
.y7b{bottom:150.586667pt;}
.ya1{bottom:150.746667pt;}
.y137{bottom:153.146667pt;}
.yff{bottom:155.226667pt;}
.y180{bottom:156.826667pt;}
.y1fc{bottom:161.466667pt;}
.y1ba{bottom:163.386667pt;}
.yc7{bottom:165.146667pt;}
.y4d{bottom:165.626667pt;}
.y162{bottom:165.786667pt;}
.y7a{bottom:168.186667pt;}
.ya0{bottom:168.346667pt;}
.y1dc{bottom:168.666667pt;}
.y136{bottom:170.746667pt;}
.yfe{bottom:172.826667pt;}
.y20{bottom:176.666667pt;}
.ye8{bottom:177.626667pt;}
.y193{bottom:178.906667pt;}
.y1b9{bottom:181.466667pt;}
.yc6{bottom:182.746667pt;}
.y17f{bottom:185.146667pt;}
.y79{bottom:185.626667pt;}
.y9f{bottom:185.786667pt;}
.y1db{bottom:186.586667pt;}
.y135{bottom:188.826667pt;}
.yfd{bottom:190.266667pt;}
.y161{bottom:193.946667pt;}
.ye7{bottom:195.066667pt;}
.y192{bottom:196.506667pt;}
.y1b8{bottom:199.066667pt;}
.y17e{bottom:202.586667pt;}
.y9e{bottom:203.386667pt;}
.y1da{bottom:204.666667pt;}
.y4b{bottom:206.266667pt;}
.y1f{bottom:208.986667pt;}
.yc5{bottom:210.906667pt;}
.ye6{bottom:212.666667pt;}
.y78{bottom:213.946667pt;}
.y1b7{bottom:216.506667pt;}
.yfc{bottom:218.586667pt;}
.y17d{bottom:220.186667pt;}
.y160{bottom:222.266667pt;}
.y134{bottom:223.866667pt;}
.yc4{bottom:228.506667pt;}
.y77{bottom:231.386667pt;}
.y9d{bottom:231.546667pt;}
.y1b6{bottom:234.106667pt;}
.yfb{bottom:236.026667pt;}
.y1d9{bottom:239.706667pt;}
.ye5{bottom:240.826667pt;}
.y133{bottom:241.946667pt;}
.y191{bottom:242.266667pt;}
.y1e{bottom:244.026667pt;}
.yc3{bottom:245.946667pt;}
.y17c{bottom:248.346667pt;}
.y76{bottom:248.986667pt;}
.y9c{bottom:249.146667pt;}
.y15f{bottom:250.466667pt;}
.y1b5{bottom:252.226667pt;}
.yfa{bottom:253.666667pt;}
.y1d8{bottom:257.826667pt;}
.ye4{bottom:258.466667pt;}
.y190{bottom:259.746667pt;}
.y132{bottom:259.906667pt;}
.y4a{bottom:265.186667pt;}
.y17b{bottom:265.986667pt;}
.y9b{bottom:266.626667pt;}
.y1b4{bottom:269.666667pt;}
.y11b{bottom:270.466667pt;}
.yf9{bottom:271.106667pt;}
.yc2{bottom:274.306667pt;}
.y1d7{bottom:275.426667pt;}
.ye3{bottom:276.066667pt;}
.y75{bottom:277.186667pt;}
.y18f{bottom:277.346667pt;}
.y1d{bottom:277.986667pt;}
.y15e{bottom:278.626667pt;}
.y17a{bottom:283.586667pt;}
.y1fb{bottom:284.226667pt;}
.y1b3{bottom:287.266667pt;}
.y11a{bottom:288.066667pt;}
.yf8{bottom:288.706667pt;}
.yc1{bottom:291.746667pt;}
.ye2{bottom:293.506667pt;}
.y74{bottom:294.786667pt;}
.y9a{bottom:294.946667pt;}
.y131{bottom:296.066667pt;}
.y1c{bottom:299.906667pt;}
.y1fa{bottom:301.826667pt;}
.y1b2{bottom:304.706667pt;}
.y119{bottom:305.506667pt;}
.y221{bottom:306.306667pt;}
.y15d{bottom:306.786667pt;}
.yc0{bottom:309.346667pt;}
.y179{bottom:311.746667pt;}
.y73{bottom:312.226667pt;}
.y99{bottom:312.386667pt;}
.y130{bottom:313.666667pt;}
.yf7{bottom:316.866667pt;}
.y1f9{bottom:319.266667pt;}
.ye1{bottom:321.666667pt;}
.y1b{bottom:321.826667pt;}
.y1d6{bottom:322.146667pt;}
.y1b1{bottom:322.306667pt;}
.y118{bottom:323.106667pt;}
.y220{bottom:323.746667pt;}
.y178{bottom:329.186667pt;}
.yd9{bottom:329.826667pt;}
.y98{bottom:329.986667pt;}
.yf6{bottom:334.466667pt;}
.y15c{bottom:335.106667pt;}
.y1f8{bottom:336.866667pt;}
.ybf{bottom:337.506667pt;}
.ye0{bottom:339.266667pt;}
.y1b0{bottom:339.906667pt;}
.y72{bottom:340.546667pt;}
.y18e{bottom:340.706667pt;}
.y21f{bottom:341.346667pt;}
.y49{bottom:342.306667pt;}
.y1a{bottom:343.746667pt;}
.y177{bottom:346.786667pt;}
.y97{bottom:347.586667pt;}
.y1d5{bottom:350.306667pt;}
.y117{bottom:351.266667pt;}
.yf5{bottom:352.066667pt;}
.y1f7{bottom:354.306667pt;}
.ybe{bottom:355.106667pt;}
.ydf{bottom:356.866667pt;}
.yd8{bottom:357.986667pt;}
.y18d{bottom:358.146667pt;}
.y21e{bottom:358.946667pt;}
.y12f{bottom:359.906667pt;}
.y15b{bottom:363.266667pt;}
.y1d4{bottom:367.906667pt;}
.y1af{bottom:368.546667pt;}
.y71{bottom:368.706667pt;}
.y116{bottom:368.866667pt;}
.yf4{bottom:369.506667pt;}
.y1f6{bottom:371.906667pt;}
.ybd{bottom:372.706667pt;}
.yde{bottom:374.306667pt;}
.y176{bottom:374.946667pt;}
.yd7{bottom:375.586667pt;}
.y96{bottom:375.746667pt;}
.y21d{bottom:376.386667pt;}
.y19{bottom:377.666667pt;}
.y15a{bottom:380.866667pt;}
.y13a{bottom:383.746667pt;}
.y1d3{bottom:385.346667pt;}
.y115{bottom:386.306667pt;}
.y12e{bottom:388.066667pt;}
.y1f5{bottom:389.506667pt;}
.y18{bottom:391.906667pt;}
.y175{bottom:392.546667pt;}
.y95{bottom:393.186667pt;}
.y1ae{bottom:396.706667pt;}
.y70{bottom:396.866667pt;}
.yf3{bottom:397.666667pt;}
.y159{bottom:398.306667pt;}
.ybc{bottom:400.866667pt;}
.y46{bottom:401.186667pt;}
.ydd{bottom:402.626667pt;}
.y1d2{bottom:402.946667pt;}
.y18c{bottom:403.906667pt;}
.y21c{bottom:404.706667pt;}
.yec{bottom:406.146667pt;}
.y174{bottom:410.146667pt;}
.y94{bottom:410.786667pt;}
.y16{bottom:414.146667pt;}
.y6f{bottom:414.466667pt;}
.y114{bottom:414.626667pt;}
.yf2{bottom:415.266667pt;}
.y158{bottom:415.906667pt;}
.y12d{bottom:416.226667pt;}
.y1f4{bottom:417.666667pt;}
.ybb{bottom:418.306667pt;}
.y1d1{bottom:420.546667pt;}
.yd6{bottom:421.346667pt;}
.y18b{bottom:421.506667pt;}
.y1ad{bottom:425.026667pt;}
.ydc{bottom:427.426667pt;}
.y93{bottom:428.386667pt;}
.y6e{bottom:431.906667pt;}
.y113{bottom:432.066667pt;}
.y21b{bottom:432.866667pt;}
.y157{bottom:433.506667pt;}
.y1f3{bottom:435.266667pt;}
.yba{bottom:435.906667pt;}
.y173{bottom:438.306667pt;}
.yd5{bottom:438.786667pt;}
.y1ac{bottom:442.466667pt;}
.yf1{bottom:443.426667pt;}
.y12c{bottom:444.386667pt;}
.y1d0{bottom:448.706667pt;}
.y112{bottom:449.666667pt;}
.y21a{bottom:450.306667pt;}
.y15{bottom:450.466667pt;}
.y1f2{bottom:452.706667pt;}
.yb9{bottom:453.506667pt;}
.y172{bottom:455.906667pt;}
.y92{bottom:456.546667pt;}
.y1ab{bottom:460.066667pt;}
.y6d{bottom:460.226667pt;}
.y102{bottom:461.666667pt;}
.y1cf{bottom:466.306667pt;}
.yd4{bottom:467.106667pt;}
.y18a{bottom:467.266667pt;}
.y219{bottom:467.906667pt;}
.y1f1{bottom:470.306667pt;}
.yb8{bottom:470.946667pt;}
.y12b{bottom:472.706667pt;}
.y171{bottom:473.346667pt;}
.y91{bottom:474.146667pt;}
.y14{bottom:477.506667pt;}
.y6c{bottom:477.666667pt;}
.y111{bottom:477.826667pt;}
.y43{bottom:478.306667pt;}
.y156{bottom:479.106667pt;}
.y1ce{bottom:483.746667pt;}
.yd3{bottom:484.546667pt;}
.y189{bottom:484.706667pt;}
.y218{bottom:485.506667pt;}
.y1f0{bottom:487.906667pt;}
.y1aa{bottom:488.226667pt;}
.yb7{bottom:488.546667pt;}
.y170{bottom:490.946667pt;}
.y90{bottom:491.586667pt;}
.y6b{bottom:495.266667pt;}
.y110{bottom:495.426667pt;}
.y155{bottom:496.706667pt;}
.y12a{bottom:500.866667pt;}
.y1cd{bottom:501.853333pt;}
.yd2{bottom:502.173333pt;}
.y217{bottom:502.973333pt;}
.y13{bottom:504.733333pt;}
.y1ef{bottom:505.373333pt;}
.y1a9{bottom:505.853333pt;}
.yf0{bottom:511.933333pt;}
.y6a{bottom:512.893333pt;}
.y10f{bottom:513.053333pt;}
.y154{bottom:514.333333pt;}
.yb6{bottom:516.733333pt;}
.y16f{bottom:519.133333pt;}
.y1cc{bottom:519.453333pt;}
.y8f{bottom:519.933333pt;}
.y216{bottom:520.573333pt;}
.y1ee{bottom:522.973333pt;}
.y1a8{bottom:523.293333pt;}
.y129{bottom:529.053333pt;}
.y69{bottom:530.333333pt;}
.y188{bottom:530.493333pt;}
.y12{bottom:531.773333pt;}
.yb5{bottom:534.333333pt;}
.y16e{bottom:536.733333pt;}
.y1cb{bottom:536.893333pt;}
.y42{bottom:537.213333pt;}
.y8e{bottom:537.373333pt;}
.y215{bottom:538.173333pt;}
.y1ed{bottom:540.413333pt;}
.y1a7{bottom:540.893333pt;}
.y10e{bottom:541.213333pt;}
.y153{bottom:542.493333pt;}
.y68{bottom:547.933333pt;}
.y187{bottom:548.093333pt;}
.y16d{bottom:554.173333pt;}
.y8d{bottom:554.973333pt;}
.y214{bottom:555.613333pt;}
.y128{bottom:557.373333pt;}
.y1ec{bottom:558.013333pt;}
.y10d{bottom:558.653333pt;}
.y11{bottom:558.813333pt;}
.y152{bottom:560.093333pt;}
.yb4{bottom:562.493333pt;}
.yd1{bottom:565.533333pt;}
.y1a6{bottom:569.053333pt;}
.y16c{bottom:571.773333pt;}
.y8c{bottom:572.413333pt;}
.y1ca{bottom:572.573333pt;}
.y213{bottom:573.213333pt;}
.y1eb{bottom:575.613333pt;}
.y67{bottom:576.093333pt;}
.y10c{bottom:576.253333pt;}
.y151{bottom:577.533333pt;}
.y3e{bottom:577.693333pt;}
.yb3{bottom:580.093333pt;}
.yd0{bottom:582.973333pt;}
.y127{bottom:585.533333pt;}
.y1a5{bottom:586.653333pt;}
.y1c9{bottom:590.013333pt;}
.y212{bottom:590.653333pt;}
.y10{bottom:591.133333pt;}
.y1ea{bottom:593.053333pt;}
.y66{bottom:593.693333pt;}
.y186{bottom:593.853333pt;}
.yb2{bottom:597.533333pt;}
.y2f{bottom:599.773333pt;}
.y16b{bottom:599.933333pt;}
.y8b{bottom:600.733333pt;}
.y10b{bottom:604.413333pt;}
.y150{bottom:605.853333pt;}
.y1c8{bottom:607.613333pt;}
.y211{bottom:608.253333pt;}
.y1e9{bottom:610.653333pt;}
.ycf{bottom:611.133333pt;}
.y185{bottom:611.293333pt;}
.y126{bottom:613.693333pt;}
.y1a4{bottom:614.813333pt;}
.yb1{bottom:615.133333pt;}
.y16a{bottom:617.533333pt;}
.y8a{bottom:618.173333pt;}
.y65{bottom:621.853333pt;}
.y10a{bottom:622.013333pt;}
.y14f{bottom:623.293333pt;}
.yf{bottom:623.453333pt;}
.y1c7{bottom:625.693333pt;}
.y1e8{bottom:628.253333pt;}
.yce{bottom:628.733333pt;}
.y1a3{bottom:632.413333pt;}
.yb0{bottom:632.733333pt;}
.y169{bottom:634.973333pt;}
.y210{bottom:636.413333pt;}
.y2e{bottom:638.493333pt;}
.y64{bottom:639.453333pt;}
.y109{bottom:639.613333pt;}
.y14e{bottom:640.893333pt;}
.y125{bottom:641.853333pt;}
.y1c6{bottom:643.133333pt;}
.y1e7{bottom:645.693333pt;}
.y89{bottom:646.493333pt;}
.y1a2{bottom:650.013333pt;}
.yaf{bottom:650.173333pt;}
.y168{bottom:652.573333pt;}
.ye{bottom:655.933333pt;}
.y63{bottom:656.893333pt;}
.y108{bottom:657.053333pt;}
.y14d{bottom:658.333333pt;}
.y1c5{bottom:661.213333pt;}
.y1e6{bottom:663.293333pt;}
.y88{bottom:663.933333pt;}
.y20f{bottom:664.733333pt;}
.yae{bottom:667.773333pt;}
.y124{bottom:670.173333pt;}
.y2d{bottom:670.973333pt;}
.y62{bottom:674.493333pt;}
.y14c{bottom:675.933333pt;}
.y1a1{bottom:678.173333pt;}
.y1c4{bottom:678.653333pt;}
.y167{bottom:680.733333pt;}
.y20e{bottom:682.173333pt;}
.yad{bottom:685.373333pt;}
.ycd{bottom:692.093333pt;}
.y87{bottom:692.253333pt;}
.y14b{bottom:693.533333pt;}
.y1a0{bottom:695.613333pt;}
.y1c3{bottom:696.253333pt;}
.y123{bottom:698.333333pt;}
.y2c{bottom:699.133333pt;}
.y20d{bottom:699.773333pt;}
.y61{bottom:702.653333pt;}
.yac{bottom:702.813333pt;}
.yd{bottom:708.893333pt;}
.y1e5{bottom:709.053333pt;}
.ycc{bottom:709.533333pt;}
.y3a{bottom:709.693333pt;}
.y14a{bottom:710.973333pt;}
.y19f{bottom:713.213333pt;}
.y1c2{bottom:714.333333pt;}
.y2b{bottom:716.733333pt;}
.y20c{bottom:717.373333pt;}
.y60{bottom:720.253333pt;}
.yab{bottom:720.413333pt;}
.y122{bottom:726.493333pt;}
.y86{bottom:727.293333pt;}
.y1c1{bottom:731.933333pt;}
.y20b{bottom:734.813333pt;}
.y1e4{bottom:737.213333pt;}
.y5f{bottom:737.853333pt;}
.y149{bottom:739.293333pt;}
.y19e{bottom:741.373333pt;}
.y85{bottom:744.733333pt;}
.y2a{bottom:744.893333pt;}
.yaa{bottom:748.573333pt;}
.y1c0{bottom:749.853333pt;}
.y20a{bottom:752.413333pt;}
.y121{bottom:754.853333pt;}
.y5e{bottom:755.333333pt;}
.y107{bottom:755.493333pt;}
.y148{bottom:756.773333pt;}
.y19d{bottom:759.013333pt;}
.y29{bottom:762.533333pt;}
.y1e3{bottom:765.413333pt;}
.ya9{bottom:766.213333pt;}
.yc{bottom:767.173333pt;}
.y1bf{bottom:767.493333pt;}
.y209{bottom:769.893333pt;}
.y5d{bottom:772.933333pt;}
.y84{bottom:773.093333pt;}
.y19c{bottom:776.613333pt;}
.y183{bottom:776.933333pt;}
.y28{bottom:779.973333pt;}
.y120{bottom:783.013333pt;}
.ya8{bottom:783.653333pt;}
.y138{bottom:784.453333pt;}
.y147{bottom:785.093333pt;}
.y38{bottom:786.853333pt;}
.y208{bottom:787.493333pt;}
.y83{bottom:790.533333pt;}
.y1e2{bottom:793.733333pt;}
.y19b{bottom:794.053333pt;}
.y5c{bottom:801.093333pt;}
.y106{bottom:801.253333pt;}
.yb{bottom:802.213333pt;}
.y146{bottom:803.013333pt;}
.y207{bottom:805.093333pt;}
.y82{bottom:808.133333pt;}
.y27{bottom:808.293333pt;}
.y11f{bottom:811.173333pt;}
.ya7{bottom:811.973333pt;}
.y5b{bottom:818.693333pt;}
.ydb{bottom:818.853333pt;}
.y145{bottom:820.613333pt;}
.y1e1{bottom:821.893333pt;}
.y19a{bottom:822.373333pt;}
.y54{bottom:822.533333pt;}
.y33{bottom:827.493333pt;}
.y200{bottom:828.200000pt;}
.ya6{bottom:829.413333pt;}
.ya{bottom:834.053333pt;}
.y5a{bottom:836.133333pt;}
.y81{bottom:836.293333pt;}
.y26{bottom:836.453333pt;}
.y144{bottom:838.213333pt;}
.y1be{bottom:838.693333pt;}
.y11e{bottom:839.333333pt;}
.y199{bottom:839.813333pt;}
.y206{bottom:840.133333pt;}
.ycb{bottom:846.853333pt;}
.ya5{bottom:847.013333pt;}
.y1e0{bottom:850.053333pt;}
.y80{bottom:853.893333pt;}
.y143{bottom:856.133333pt;}
.y198{bottom:857.413333pt;}
.y53{bottom:857.733333pt;}
.y59{bottom:864.453333pt;}
.y25{bottom:864.613333pt;}
.y11d{bottom:867.653333pt;}
.y7f{bottom:871.333333pt;}
.y142{bottom:873.733333pt;}
.y197{bottom:874.853333pt;}
.ya4{bottom:875.173333pt;}
.y1df{bottom:878.213333pt;}
.y58{bottom:881.893333pt;}
.yda{bottom:882.053333pt;}
.y141{bottom:891.813333pt;}
.y24{bottom:892.773333pt;}
.y11c{bottom:895.813333pt;}
.y52{bottom:897.893333pt;}
.y57{bottom:899.493333pt;}
.y7e{bottom:899.653333pt;}
.y196{bottom:905.093333pt;}
.y1de{bottom:906.533333pt;}
.y140{bottom:909.253333pt;}
.ya3{bottom:910.213333pt;}
.y51{bottom:912.293333pt;}
.y56{bottom:916.933333pt;}
.y7d{bottom:917.093333pt;}
.y23{bottom:921.093333pt;}
.y30{bottom:922.853333pt;}
.yef{bottom:923.973333pt;}
.y13f{bottom:926.853333pt;}
.yca{bottom:927.653333pt;}
.ya2{bottom:927.813333pt;}
.y195{bottom:929.573333pt;}
.y105{bottom:934.693333pt;}
.y1bd{bottom:944.453333pt;}
.y13e{bottom:944.933333pt;}
.y55{bottom:945.253333pt;}
.y9{bottom:945.413333pt;}
.y22{bottom:951.013333pt;}
.yee{bottom:952.293333pt;}
.y50{bottom:952.773333pt;}
.y13d{bottom:962.373333pt;}
.y7c{bottom:962.853333pt;}
.y21{bottom:975.333333pt;}
.y13c{bottom:979.973333pt;}
.y8{bottom:980.453333pt;}
.y4{bottom:1008.640000pt;}
.y1{bottom:1021.600000pt;}
.h19{height:10.560000pt;}
.h1b{height:15.360000pt;}
.h1c{height:20.160000pt;}
.h9{height:20.960000pt;}
.hf{height:27.040000pt;}
.h6{height:28.160000pt;}
.h5{height:28.320000pt;}
.h1d{height:29.760000pt;}
.h20{height:36.951250pt;}
.ha{height:37.537920pt;}
.h1a{height:38.720000pt;}
.h12{height:39.200000pt;}
.h18{height:39.360000pt;}
.hb{height:40.199040pt;}
.h10{height:42.751360pt;}
.h3{height:43.905937pt;}
.h1e{height:46.798720pt;}
.hc{height:47.856000pt;}
.h7{height:49.454720pt;}
.h1f{height:50.000000pt;}
.h2{height:52.960000pt;}
.h4{height:52.960640pt;}
.h17{height:57.440000pt;}
.h15{height:57.472000pt;}
.he{height:63.656250pt;}
.hd{height:69.713280pt;}
.h16{height:75.680000pt;}
.h13{height:75.872000pt;}
.h11{height:94.080000pt;}
.h14{height:130.720000pt;}
.h8{height:138.830720pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:4.800000pt;}
.wb{width:7.520000pt;}
.wa{width:7.680000pt;}
.w12{width:7.840000pt;}
.w11{width:8.160000pt;}
.w13{width:8.640000pt;}
.w10{width:8.800000pt;}
.w17{width:9.760000pt;}
.w1b{width:12.320000pt;}
.w18{width:12.480000pt;}
.w1e{width:12.800000pt;}
.w1d{width:12.960000pt;}
.w1f{width:13.440000pt;}
.w15{width:13.760000pt;}
.w6{width:70.720000pt;}
.w7{width:110.272000pt;}
.we{width:152.640000pt;}
.wc{width:153.280000pt;}
.w9{width:190.586667pt;}
.w4{width:200.346667pt;}
.w8{width:228.346667pt;}
.w20{width:300.000000pt;}
.wf{width:445.853333pt;}
.wd{width:446.493333pt;}
.w2{width:601.093333pt;}
.w19{width:602.653333pt;}
.w14{width:604.253333pt;}
.w16{width:605.853333pt;}
.w1a{width:610.653333pt;}
.w1c{width:611.453333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xa{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x2{left:5.920000pt;}
.x28{left:12.640000pt;}
.x1f{left:13.600000pt;}
.x2b{left:26.880000pt;}
.x2c{left:53.914667pt;}
.x1{left:77.120000pt;}
.x26{left:78.874667pt;}
.x27{left:85.152000pt;}
.x2a{left:86.112000pt;}
.x1d{left:91.194667pt;}
.x1c{left:92.352000pt;}
.x3{left:94.751988pt;}
.x4{left:96.032000pt;}
.x11{left:97.312000pt;}
.x6{left:100.160000pt;}
.x15{left:103.711988pt;}
.x2d{left:118.751988pt;}
.x1a{left:120.031988pt;}
.x20{left:124.954667pt;}
.x25{left:128.634667pt;}
.x2e{left:142.746655pt;}
.x24{left:144.026655pt;}
.x2f{left:151.333333pt;}
.x17{left:154.746655pt;}
.x12{left:168.026667pt;}
.x8{left:200.840000pt;}
.x29{left:207.714667pt;}
.xf{left:237.146655pt;}
.x18{left:250.586667pt;}
.x13{left:278.306667pt;}
.x5{left:296.386667pt;}
.xd{left:322.626655pt;}
.x23{left:356.066655pt;}
.xc{left:403.746655pt;}
.xe{left:406.946655pt;}
.x7{left:496.733333pt;}
.x14{left:506.653333pt;}
.x10{left:564.093322pt;}
.x1b{left:661.893322pt;}
.x1e{left:684.133333pt;}
.x22{left:685.413333pt;}
.x21{left:688.133333pt;}
.x19{left:689.093333pt;}
.x16{left:690.213333pt;}
.x9{left:693.093333pt;}
.xb{left:699.173322pt;}
}




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