
    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_1d6b5b72701e4b38368d6ed2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.771250;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_05036ec43dd58d942564dbc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_14bdc791fb9958fef339fb61.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766250;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_378472ca8a89f900e981e3c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_df5b586cdcd6a97281cb5ba8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e01f940c21d1eceb8944e790.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bddd62e456d565fa591c412d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_20feb78319fe6d6eb933ad0f.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_cd42bce974c53f3a5bb612ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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_80fc94b1154c11f4f61f7a68.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_2d9a3efb49a29d547f287c3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_acf86b7bf84a9f4b34bc900d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854492;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_ee331a74c9586bea4d4ebd0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dacabe32c3233f0185c9fa97.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.088379;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:fff;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.fff{font-family:fff;line-height:0.758789;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:ff10;src:url('chunks/assets/font_371806be9ad4578494ca3a35.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.776855;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:ff11;src:url('chunks/assets/font_7e0abc51e165d156f9a5a589.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ee542863e4cd1f0f5618973b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.759766;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:ff13;src:url('chunks/assets/font_6fecef5253478067408d9fda.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.088379;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:ff14;src:url('chunks/assets/font_11bf0767aacea0c28602afaf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_94270eec1eaf9aabe4bcd38a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.096680;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;}
.ls1e{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.762000px;}
.ls23{letter-spacing:-0.696000px;}
.ls29{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.172800px;}
.ls11{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.103800px;}
.ls1d{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.046800px;}
.ls6{letter-spacing:-0.046080px;}
.ls22{letter-spacing:-0.043200px;}
.ls1c{letter-spacing:-0.000003px;}
.ls4{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010800px;}
.ls25{letter-spacing:0.012960px;}
.ls1b{letter-spacing:0.023040px;}
.ls31{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.075000px;}
.ls15{letter-spacing:0.097800px;}
.ls27{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.130800px;}
.lsf{letter-spacing:0.131040px;}
.ls2{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.205800px;}
.ls32{letter-spacing:0.211680px;}
.ls2b{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.532800px;}
.ls2a{letter-spacing:0.648000px;}
.ls30{letter-spacing:25.200000px;}
.ls2f{letter-spacing:33.240000px;}
.ls19{letter-spacing:33.264000px;}
.ls1a{letter-spacing:39.185280px;}
.ls2e{letter-spacing:49.507200px;}
.ls2c{letter-spacing:50.227200px;}
.ls26{letter-spacing:51.984000px;}
.ls7{letter-spacing:52.685760px;}
.ls17{letter-spacing:53.298720px;}
.ls1f{letter-spacing:54.840000px;}
.ls9{letter-spacing:88.709760px;}
.lsb{letter-spacing:100.229760px;}
.ls18{letter-spacing:112.661280px;}
.ls3{letter-spacing:848.316000px;}
.ls1{letter-spacing:873.516000px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws0{word-spacing:-65.774507px;}
.wse{word-spacing:-26.550600px;}
.ws12{word-spacing:-21.067200px;}
.ws3{word-spacing:-19.038240px;}
.ws10{word-spacing:-18.738600px;}
.ws6{word-spacing:-18.663600px;}
.ws7{word-spacing:-18.543600px;}
.wsf{word-spacing:-18.532800px;}
.ws5{word-spacing:-18.429000px;}
.ws9{word-spacing:-16.200000px;}
.ws1e{word-spacing:-16.128000px;}
.wsb{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.839997px;}
.ws15{word-spacing:-15.768000px;}
.ws16{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.624000px;}
.wsa{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.048000px;}
.ws4{word-spacing:-14.924160px;}
.ws13{word-spacing:-14.595840px;}
.ws11{word-spacing:-14.572800px;}
.ws18{word-spacing:-14.529600px;}
.ws1d{word-spacing:-13.924800px;}
.ws19{word-spacing:-13.876800px;}
.ws17{word-spacing:-13.810800px;}
.ws1c{word-spacing:-13.160160px;}
.ws1b{word-spacing:-13.147200px;}
.ws1a{word-spacing:-13.100400px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-24.724080px;}
._15{margin-left:-15.324000px;}
._b{margin-left:-13.848000px;}
._3{margin-left:-12.109440px;}
._5{margin-left:-10.404000px;}
._7{margin-left:-9.348000px;}
._6{margin-left:-7.836000px;}
._8{margin-left:-6.396000px;}
._a{margin-left:-4.644000px;}
._4{margin-left:-3.232800px;}
._1{margin-left:-1.347840px;}
._0{width:1.296000px;}
._11{width:2.448000px;}
._e{width:3.528000px;}
._f{width:4.536000px;}
._12{width:5.544000px;}
._16{width:6.840000px;}
._13{width:7.992000px;}
._14{width:9.504000px;}
._19{width:10.512000px;}
._1d{width:11.964000px;}
._1c{width:13.032000px;}
._26{width:14.688000px;}
._9{width:17.280000px;}
._d{width:18.504000px;}
._c{width:19.656000px;}
._17{width:21.528000px;}
._28{width:22.539840px;}
._18{width:23.568000px;}
._1a{width:25.248000px;}
._1b{width:26.376000px;}
._25{width:27.408000px;}
._2b{width:28.692000px;}
._29{width:29.952000px;}
._2a{width:31.080000px;}
._31{width:32.904000px;}
._1e{width:35.280000px;}
._2f{width:36.403680px;}
._2e{width:37.584000px;}
._10{width:39.744000px;}
._22{width:40.783680px;}
._21{width:41.976000px;}
._30{width:43.488000px;}
._23{width:45.783120px;}
._24{width:47.685360px;}
._34{width:50.109120px;}
._32{width:59.008800px;}
._33{width:60.315840px;}
._2d{width:168.891840px;}
._2c{width:170.208000px;}
._27{width:185.328000px;}
._2{width:473.188800px;}
._35{width:845.623200px;}
._1f{width:848.112000px;}
.fc13{color:rgb(53,51,50);}
.fc12{color:rgb(116,91,163);}
.fc11{color:rgb(36,36,36);}
.fc10{color:rgb(170,172,244);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(73,73,73);}
.fcd{color:rgb(68,83,106);}
.fc5{color:rgb(127,127,127);}
.fc1{color:rgb(245,245,239);}
.fce{color:rgb(0,0,255);}
.fc9{color:rgb(153,153,153);}
.fc4{color:transparent;}
.fc7{color:rgb(87,142,231);}
.fcf{color:rgb(74,104,220);}
.fc6{color:rgb(90,94,234);}
.fca{color:rgb(17,85,204);}
.fcb{color:rgb(142,124,195);}
.fc8{color:rgb(70,120,134);}
.fcc{color:rgb(81,143,235);}
.fsb{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsd{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs0{font-size:96.021179px;}
.fs2{font-size:108.040707px;}
.fs9{font-size:120.240000px;}
.fs1{font-size:240.075464px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yad{bottom:2.160000px;}
.yeb{bottom:3.600000px;}
.yb2{bottom:3.780000px;}
.ydc{bottom:3.960000px;}
.yb8{bottom:4.140000px;}
.yae{bottom:4.500000px;}
.ye9{bottom:4.680000px;}
.ye7{bottom:5.220000px;}
.y2cb{bottom:5.400000px;}
.y82{bottom:5.580000px;}
.y32c{bottom:6.120000px;}
.y310{bottom:6.840000px;}
.y303{bottom:7.020000px;}
.yba{bottom:7.200000px;}
.y7{bottom:7.380000px;}
.y2e4{bottom:8.460000px;}
.y307{bottom:9.000000px;}
.y2d4{bottom:9.180000px;}
.y2c4{bottom:9.540000px;}
.y2bf{bottom:9.720000px;}
.y36f{bottom:11.340000px;}
.y2ca{bottom:13.320000px;}
.y33{bottom:14.940000px;}
.y2b{bottom:15.120000px;}
.y46{bottom:15.150000px;}
.y30{bottom:15.480000px;}
.y26{bottom:15.660000px;}
.y36{bottom:15.690000px;}
.y2da{bottom:16.020000px;}
.y377{bottom:16.920000px;}
.yb{bottom:17.100000px;}
.y12{bottom:17.130000px;}
.y1c{bottom:17.280000px;}
.y188{bottom:17.640000px;}
.y185{bottom:17.685000px;}
.ye{bottom:18.360000px;}
.y2c9{bottom:18.540000px;}
.y13d{bottom:18.720000px;}
.y23{bottom:19.440000px;}
.yb4{bottom:19.800000px;}
.y1a{bottom:20.160000px;}
.y2c0{bottom:20.340000px;}
.y18a{bottom:20.700000px;}
.y18e{bottom:20.880000px;}
.yd{bottom:21.420000px;}
.y312{bottom:21.465000px;}
.y13b{bottom:21.600000px;}
.y311{bottom:21.645000px;}
.y1ad{bottom:21.780000px;}
.y137{bottom:22.545000px;}
.y340{bottom:22.680000px;}
.y36a{bottom:22.860000px;}
.yb1{bottom:23.040000px;}
.y1a0{bottom:23.085000px;}
.y140{bottom:23.220000px;}
.y33b{bottom:23.265000px;}
.y345{bottom:23.760000px;}
.yb7{bottom:25.200000px;}
.y165{bottom:26.100000px;}
.y305{bottom:26.280000px;}
.y2d2{bottom:26.325000px;}
.yb9{bottom:26.640000px;}
.y306{bottom:27.720000px;}
.y2d3{bottom:27.765000px;}
.y161{bottom:28.080000px;}
.y152{bottom:28.260000px;}
.y30e{bottom:28.305000px;}
.y32b{bottom:29.025000px;}
.y35a{bottom:30.240000px;}
.y15a{bottom:30.420000px;}
.y2fd{bottom:31.140000px;}
.y2f1{bottom:31.320000px;}
.y324{bottom:31.350000px;}
.y2f0{bottom:31.500000px;}
.y300{bottom:31.530000px;}
.y329{bottom:31.545000px;}
.y2bd{bottom:32.040000px;}
.y158{bottom:32.400000px;}
.y330{bottom:32.760000px;}
.y81{bottom:33.480000px;}
.y2f4{bottom:36.180000px;}
.y18{bottom:36.540000px;}
.y2a{bottom:36.720000px;}
.y38{bottom:36.900000px;}
.y315{bottom:38.160000px;}
.y2d9{bottom:38.880000px;}
.y2f{bottom:39.240000px;}
.y35{bottom:39.270000px;}
.y30a{bottom:39.600000px;}
.y187{bottom:40.140000px;}
.y18c{bottom:40.320000px;}
.y33f{bottom:40.680000px;}
.y1a6{bottom:40.860000px;}
.yb3{bottom:41.040000px;}
.y189{bottom:41.760000px;}
.y364{bottom:41.790000px;}
.y18d{bottom:41.940000px;}
.y1a7{bottom:42.120000px;}
.y1a4{bottom:42.300000px;}
.yb0{bottom:42.480000px;}
.y19f{bottom:42.525000px;}
.y349{bottom:42.660000px;}
.y139{bottom:43.740000px;}
.y15c{bottom:43.920000px;}
.y366{bottom:44.100000px;}
.y33a{bottom:44.145000px;}
.y36e{bottom:44.820000px;}
.y13f{bottom:45.360000px;}
.y19{bottom:45.540000px;}
.y164{bottom:46.800000px;}
.y16a{bottom:46.980000px;}
.y35f{bottom:47.010000px;}
.y155{bottom:48.810000px;}
.y160{bottom:49.005000px;}
.y151{bottom:49.140000px;}
.y2fb{bottom:49.350000px;}
.y2e1{bottom:50.940000px;}
.y30d{bottom:50.985000px;}
.y333{bottom:51.120000px;}
.y159{bottom:51.660000px;}
.y351{bottom:52.965000px;}
.y157{bottom:53.280000px;}
.y320{bottom:54.360000px;}
.y32f{bottom:55.440000px;}
.y32e{bottom:55.620000px;}
.y301{bottom:55.650000px;}
.y2ff{bottom:55.830000px;}
.y328{bottom:55.845000px;}
.y1f{bottom:57.600000px;}
.y29{bottom:58.500000px;}
.y33e{bottom:59.580000px;}
.y34a{bottom:59.760000px;}
.y348{bottom:60.120000px;}
.y369{bottom:60.300000px;}
.y342{bottom:60.660000px;}
.y314{bottom:61.020000px;}
.y344{bottom:61.200000px;}
.y2d8{bottom:61.560000px;}
.y362{bottom:61.590000px;}
.y19e{bottom:61.605000px;}
.y1a3{bottom:61.740000px;}
.y309{bottom:62.280000px;}
.y2e{bottom:63.000000px;}
.y35e{bottom:63.750000px;}
.y359{bottom:63.900000px;}
.y2ee{bottom:65.340000px;}
.y163{bottom:67.680000px;}
.y169{bottom:67.860000px;}
.y167{bottom:69.660000px;}
.y154{bottom:69.690000px;}
.y15f{bottom:69.885000px;}
.y150{bottom:70.020000px;}
.y17{bottom:70.740000px;}
.y2fa{bottom:72.030000px;}
.y332{bottom:73.800000px;}
.y2e0{bottom:73.830000px;}
.y355{bottom:76.365000px;}
.y368{bottom:77.760000px;}
.y347{bottom:77.790000px;}
.y36c{bottom:77.985000px;}
.y367{bottom:78.480000px;}
.y33d{bottom:78.660000px;}
.y363{bottom:78.690000px;}
.y343{bottom:78.840000px;}
.y361{bottom:79.230000px;}
.y19d{bottom:79.785000px;}
.y327{bottom:80.145000px;}
.y32{bottom:80.280000px;}
.y358{bottom:80.640000px;}
.y35d{bottom:80.670000px;}
.y1a2{bottom:81.000000px;}
.y31f{bottom:81.540000px;}
.y2d7{bottom:84.420000px;}
.y308{bottom:85.140000px;}
.y2e5{bottom:86.070000px;}
.y350{bottom:86.625000px;}
.y2d{bottom:86.760000px;}
.y2ed{bottom:88.065000px;}
.y168{bottom:88.920000px;}
.y83{bottom:90.540000px;}
.y15e{bottom:90.765000px;}
.y14f{bottom:90.900000px;}
.y2f9{bottom:94.890000px;}
.y2df{bottom:96.510000px;}
.y360{bottom:96.690000px;}
.y357{bottom:97.380000px;}
.y35c{bottom:97.410000px;}
.y19c{bottom:98.865000px;}
.y1aa{bottom:100.440000px;}
.y31e{bottom:104.400000px;}
.y2d6{bottom:107.100000px;}
.y2ec{bottom:110.925000px;}
.y1b9{bottom:111.240000px;}
.y14e{bottom:111.780000px;}
.y21b{bottom:113.220000px;}
.y354{bottom:113.265000px;}
.y1b8{bottom:115.020000px;}
.y2b4{bottom:115.380000px;}
.y16f{bottom:116.280000px;}
.y2f8{bottom:117.570000px;}
.y282{bottom:117.720000px;}
.y196{bottom:117.900000px;}
.y2de{bottom:119.370000px;}
.y34f{bottom:120.105000px;}
.y121{bottom:120.780000px;}
.y239{bottom:120.960000px;}
.yb6{bottom:122.040000px;}
.y302{bottom:123.120000px;}
.y38a{bottom:126.900000px;}
.y31d{bottom:127.080000px;}
.y1d7{bottom:128.520000px;}
.y1b7{bottom:129.420000px;}
.y13e{bottom:130.860000px;}
.y353{bottom:132.165000px;}
.y16e{bottom:132.300000px;}
.y1f9{bottom:133.380000px;}
.y2eb{bottom:133.605000px;}
.y21a{bottom:136.080000px;}
.y48{bottom:137.880000px;}
.y2b3{bottom:138.240000px;}
.y2f7{bottom:140.430000px;}
.y195{bottom:140.760000px;}
.y2dd{bottom:142.050000px;}
.y120{bottom:143.460000px;}
.y238{bottom:143.640000px;}
.y389{bottom:144.720000px;}
.y100{bottom:144.900000px;}
.y29c{bottom:145.260000px;}
.y25a{bottom:147.960000px;}
.y336{bottom:148.140000px;}
.y16d{bottom:149.940000px;}
.y34d{bottom:152.145000px;}
.yda{bottom:153.540000px;}
.y34e{bottom:153.585000px;}
.y16c{bottom:153.720000px;}
.y2ea{bottom:156.465000px;}
.y1f8{bottom:157.680000px;}
.y47{bottom:158.580000px;}
.y219{bottom:158.760000px;}
.y69{bottom:159.300000px;}
.y2ce{bottom:160.380000px;}
.y2b2{bottom:160.920000px;}
.ya3{bottom:162.180000px;}
.y2f6{bottom:163.110000px;}
.y1d6{bottom:163.260000px;}
.yb5{bottom:164.340000px;}
.y274{bottom:164.700000px;}
.y237{bottom:166.500000px;}
.yff{bottom:167.580000px;}
.y16b{bottom:168.120000px;}
.y352{bottom:169.245000px;}
.y34c{bottom:169.605000px;}
.y35b{bottom:171.900000px;}
.y194{bottom:172.440000px;}
.y31c{bottom:172.650000px;}
.y281{bottom:172.980000px;}
.yd9{bottom:174.600000px;}
.y259{bottom:175.140000px;}
.y2f5{bottom:176.760000px;}
.y11f{bottom:178.380000px;}
.y2e9{bottom:179.145000px;}
.y218{bottom:181.620000px;}
.y1f7{bottom:181.800000px;}
.y388{bottom:184.140000px;}
.ya2{bottom:186.480000px;}
.y34b{bottom:187.245000px;}
.y273{bottom:187.560000px;}
.y68{bottom:189.540000px;}
.yfe{bottom:190.260000px;}
.y1b6{bottom:190.800000px;}
.y45{bottom:192.060000px;}
.y335{bottom:194.400000px;}
.y193{bottom:195.300000px;}
.y31b{bottom:195.510000px;}
.yd8{bottom:195.660000px;}
.y1d5{bottom:198.000000px;}
.y11e{bottom:200.880000px;}
.y2b1{bottom:201.240000px;}
.y236{bottom:201.420000px;}
.y2e8{bottom:202.005000px;}
.y258{bottom:202.140000px;}
.y217{bottom:204.300000px;}
.y1f6{bottom:206.130000px;}
.y13c{bottom:207.210000px;}
.y280{bottom:208.830000px;}
.y272{bottom:210.270000px;}
.ya1{bottom:210.810000px;}
.y67{bottom:212.070000px;}
.yfd{bottom:213.150000px;}
.y2cd{bottom:213.330000px;}
.y1b5{bottom:213.690000px;}
.y166{bottom:213.870000px;}
.yd7{bottom:216.750000px;}
.y192{bottom:218.010000px;}
.y31a{bottom:218.190000px;}
.y44{bottom:223.590000px;}
.y11d{bottom:223.770000px;}
.y235{bottom:223.950000px;}
.y2e7{bottom:224.685000px;}
.y29b{bottom:225.930000px;}
.y216{bottom:227.190000px;}
.y334{bottom:229.170000px;}
.y1f5{bottom:230.430000px;}
.y2{bottom:231.394181px;}
.y1d4{bottom:232.770000px;}
.y271{bottom:233.130000px;}
.yfc{bottom:235.830000px;}
.y257{bottom:236.910000px;}
.yd6{bottom:237.810000px;}
.y191{bottom:240.870000px;}
.y319{bottom:241.050000px;}
.y66{bottom:242.670000px;}
.y27f{bottom:244.650000px;}
.y234{bottom:246.810000px;}
.y331{bottom:247.170000px;}
.y2b0{bottom:247.710000px;}
.y29a{bottom:248.430000px;}
.y215{bottom:249.870000px;}
.y2cc{bottom:250.770000px;}
.ya0{bottom:253.110000px;}
.y1b4{bottom:253.830000px;}
.y1f4{bottom:254.730000px;}
.y2fe{bottom:254.910000px;}
.y270{bottom:255.810000px;}
.y43{bottom:257.070000px;}
.yfb{bottom:258.690000px;}
.yd5{bottom:259.050000px;}
.y256{bottom:259.590000px;}
.y20{bottom:261.930000px;}
.y387{bottom:263.190000px;}
.y318{bottom:263.730000px;}
.y65{bottom:265.170000px;}
.y1d3{bottom:267.690000px;}
.y299{bottom:271.290000px;}
.y190{bottom:274.170000px;}
.y9f{bottom:277.410000px;}
.y13a{bottom:279.030000px;}
.yd4{bottom:280.110000px;}
.yfa{bottom:281.370000px;}
.y233{bottom:281.730000px;}
.y255{bottom:282.270000px;}
.y214{bottom:284.970000px;}
.y4{bottom:287.065178px;}
.y1e{bottom:288.390000px;}
.y42{bottom:288.570000px;}
.y1b3{bottom:289.830000px;}
.y356{bottom:291.090000px;}
.y2af{bottom:293.790000px;}
.y298{bottom:293.970000px;}
.y64{bottom:295.590000px;}
.y26f{bottom:296.670000px;}
.y27e{bottom:299.910000px;}
.y9e{bottom:301.530000px;}
.y1d2{bottom:302.430000px;}
.y386{bottom:302.610000px;}
.y1f3{bottom:303.330000px;}
.y11c{bottom:304.050000px;}
.y232{bottom:304.410000px;}
.y18f{bottom:307.290000px;}
.y213{bottom:307.470000px;}
.y2fc{bottom:308.730000px;}
.y1b2{bottom:310.890000px;}
.y297{bottom:316.830000px;}
.y26e{bottom:319.350000px;}
.y162{bottom:321.330000px;}
.yf9{bottom:321.690000px;}
.y41{bottom:322.050000px;}
.y254{bottom:322.590000px;}
.yd3{bottom:323.130000px;}
.y18b{bottom:325.110000px;}
.y63{bottom:326.010000px;}
.y231{bottom:327.090000px;}
.y1f2{bottom:327.450000px;}
.y2ae{bottom:331.410000px;}
.y1d1{bottom:337.170000px;}
.y11b{bottom:338.970000px;}
.y296{bottom:339.510000px;}
.y26d{bottom:342.210000px;}
.y32d{bottom:343.650000px;}
.y9d{bottom:343.830000px;}
.y1b1{bottom:345.810000px;}
.y212{bottom:347.790000px;}
.y230{bottom:349.950000px;}
.y1f1{bottom:351.750000px;}
.y3{bottom:351.794682px;}
.y40{bottom:353.550000px;}
.y138{bottom:353.730000px;}
.y2ad{bottom:354.090000px;}
.y27d{bottom:354.990000px;}
.y62{bottom:356.250000px;}
.yf8{bottom:358.590000px;}
.y253{bottom:359.490000px;}
.y1d0{bottom:359.670000px;}
.yd2{bottom:360.750000px;}
.y295{bottom:362.370000px;}
.y2e6{bottom:362.550000px;}
.y2c8{bottom:363.630000px;}
.y9c{bottom:368.130000px;}
.y1b0{bottom:368.310000px;}
.y1d{bottom:368.670000px;}
.y22f{bottom:372.630000px;}
.y11a{bottom:373.710000px;}
.y26c{bottom:373.890000px;}
.y2ac{bottom:376.770000px;}
.y385{bottom:381.630000px;}
.y186{bottom:383.430000px;}
.y211{bottom:384.690000px;}
.y61{bottom:386.490000px;}
.y3f{bottom:387.030000px;}
.y2f3{bottom:390.450000px;}
.y27c{bottom:390.810000px;}
.y1f0{bottom:391.890000px;}
.y9b{bottom:392.430000px;}
.y1cf{bottom:394.770000px;}
.yd1{bottom:395.490000px;}
.yf7{bottom:396.210000px;}
.y119{bottom:396.390000px;}
.y26b{bottom:396.750000px;}
.y252{bottom:397.110000px;}
.y2ab{bottom:399.630000px;}
.y1af{bottom:400.170000px;}
.y294{bottom:402.690000px;}
.y15d{bottom:405.930000px;}
.y1b{bottom:408.630000px;}
.y60{bottom:416.730000px;}
.y22e{bottom:418.170000px;}
.yf6{bottom:418.710000px;}
.y118{bottom:419.070000px;}
.y26a{bottom:419.430000px;}
.y251{bottom:419.790000px;}
.y3e{bottom:420.330000px;}
.y384{bottom:421.230000px;}
.y326{bottom:421.770000px;}
.y2aa{bottom:422.310000px;}
.y27b{bottom:426.810000px;}
.y136{bottom:428.250000px;}
.y2c7{bottom:428.970000px;}
.y1ce{bottom:429.510000px;}
.yd0{bottom:430.410000px;}
.y1ae{bottom:431.850000px;}
.y210{bottom:435.990000px;}
.y9a{bottom:440.850000px;}
.yf5{bottom:441.570000px;}
.y184{bottom:441.750000px;}
.y117{bottom:441.930000px;}
.y250{bottom:442.515000px;}
.y2a9{bottom:445.215000px;}
.y5f{bottom:447.015000px;}
.y16{bottom:448.635000px;}
.y2f2{bottom:449.175000px;}
.y1cd{bottom:452.055000px;}
.ycf{bottom:452.955000px;}
.y3d{bottom:453.855000px;}
.y2c6{bottom:456.015000px;}
.y22d{bottom:458.535000px;}
.y1ac{bottom:459.255000px;}
.y383{bottom:460.695000px;}
.y27a{bottom:462.675000px;}
.yf4{bottom:464.475000px;}
.y99{bottom:465.195000px;}
.y2a8{bottom:467.895000px;}
.yaf{bottom:472.575000px;}
.y32a{bottom:473.475000px;}
.y1ef{bottom:474.915000px;}
.y20f{bottom:476.535000px;}
.y116{bottom:476.895000px;}
.y5e{bottom:477.255000px;}
.y24f{bottom:477.615000px;}
.y269{bottom:485.535000px;}
.yf3{bottom:487.155000px;}
.y3c{bottom:487.335000px;}
.yce{bottom:487.875000px;}
.y98{bottom:489.495000px;}
.y2a7{bottom:490.755000px;}
.y135{bottom:492.555000px;}
.y2c5{bottom:494.175000px;}
.y293{bottom:494.535000px;}
.y22c{bottom:495.435000px;}
.y183{bottom:495.795000px;}
.y1ee{bottom:497.595000px;}
.y279{bottom:498.495000px;}
.y5d{bottom:499.935000px;}
.y24e{bottom:500.115000px;}
.y382{bottom:500.295000px;}
.y1cc{bottom:509.655000px;}
.yf2{bottom:510.015000px;}
.ycd{bottom:510.555000px;}
.y20e{bottom:511.275000px;}
.y115{bottom:511.635000px;}
.y15b{bottom:513.435000px;}
.y97{bottom:513.795000px;}
.y1ab{bottom:517.035000px;}
.y1ed{bottom:520.455000px;}
.y3b{bottom:520.815000px;}
.y24d{bottom:522.975000px;}
.y317{bottom:524.415000px;}
.y134{bottom:526.035000px;}
.y182{bottom:529.275000px;}
.y5c{bottom:530.355000px;}
.yac{bottom:530.715000px;}
.y22b{bottom:533.055000px;}
.y20d{bottom:533.955000px;}
.y114{bottom:534.315000px;}
.y2a6{bottom:536.295000px;}
.y268{bottom:536.835000px;}
.y96{bottom:538.095000px;}
.y381{bottom:539.715000px;}
.y15{bottom:542.235000px;}
.y1ec{bottom:543.135000px;}
.y1cb{bottom:544.575000px;}
.y278{bottom:545.295000px;}
.ycc{bottom:545.475000px;}
.y24c{bottom:545.655000px;}
.y7c{bottom:546.735000px;}
.y2c3{bottom:547.995000px;}
.yf1{bottom:550.155000px;}
.y181{bottom:551.775000px;}
.y5b{bottom:553.035000px;}
.y2ef{bottom:553.755000px;}
.y22a{bottom:555.735000px;}
.y20c{bottom:556.635000px;}
.y2a5{bottom:558.975000px;}
.y133{bottom:560.955000px;}
.y24b{bottom:568.515000px;}
.y113{bottom:569.235000px;}
.y3a{bottom:571.575000px;}
.y156{bottom:574.095000px;}
.y180{bottom:574.635000px;}
.y1a9{bottom:576.255000px;}
.y1eb{bottom:578.235000px;}
.y229{bottom:578.415000px;}
.y277{bottom:578.955000px;}
.y380{bottom:579.135000px;}
.y1ca{bottom:579.315000px;}
.y20b{bottom:579.495000px;}
.ycb{bottom:580.215000px;}
.y95{bottom:580.395000px;}
.y2a4{bottom:581.835000px;}
.y14{bottom:582.195000px;}
.y267{bottom:583.275000px;}
.y5a{bottom:583.455000px;}
.y7b{bottom:584.355000px;}
.yf0{bottom:587.235000px;}
.y24a{bottom:591.195000px;}
.y292{bottom:597.315000px;}
.y17f{bottom:597.495000px;}
.y325{bottom:598.035000px;}
.y1ea{bottom:600.735000px;}
.y228{bottom:601.275000px;}
.y2c2{bottom:601.815000px;}
.y1c9{bottom:601.995000px;}
.y20a{bottom:602.175000px;}
.yca{bottom:602.895000px;}
.y112{bottom:603.975000px;}
.y94{bottom:604.515000px;}
.y346{bottom:604.875000px;}
.y59{bottom:605.955000px;}
.y132{bottom:606.315000px;}
.y39{bottom:608.835000px;}
.y276{bottom:609.735000px;}
.y2dc{bottom:609.915000px;}
.y249{bottom:614.055000px;}
.y37f{bottom:618.735000px;}
.y7a{bottom:619.095000px;}
.y37{bottom:619.455000px;}
.y17e{bottom:620.175000px;}
.y13{bottom:622.155000px;}
.y1e9{bottom:623.595000px;}
.y266{bottom:623.955000px;}
.y1c8{bottom:624.675000px;}
.y209{bottom:625.035000px;}
.y2a3{bottom:627.375000px;}
.y93{bottom:628.815000px;}
.y131{bottom:628.995000px;}
.y58{bottom:636.555000px;}
.y248{bottom:636.735000px;}
.yef{bottom:638.355000px;}
.y111{bottom:638.715000px;}
.y227{bottom:641.415000px;}
.y291{bottom:642.855000px;}
.yc9{bottom:643.035000px;}
.y153{bottom:644.115000px;}
.y372{bottom:645.915000px;}
.y1e8{bottom:646.275000px;}
.y265{bottom:646.815000px;}
.y1c7{bottom:647.535000px;}
.y208{bottom:647.715000px;}
.y323{bottom:648.975000px;}
.y2a2{bottom:650.235000px;}
.y79{bottom:650.415000px;}
.y130{bottom:651.855000px;}
.y92{bottom:653.115000px;}
.y17d{bottom:655.095000px;}
.y2c1{bottom:655.635000px;}
.y37e{bottom:658.155000px;}
.y247{bottom:659.595000px;}
.y110{bottom:661.395000px;}
.y11{bottom:662.115000px;}
.y290{bottom:665.715000px;}
.y57{bottom:666.795000px;}
.y264{bottom:669.495000px;}
.y1c6{bottom:670.395000px;}
.y34{bottom:672.735000px;}
.y2a1{bottom:672.915000px;}
.y12f{bottom:674.535000px;}
.y17c{bottom:677.775000px;}
.y226{bottom:678.315000px;}
.yee{bottom:680.505000px;}
.yc8{bottom:680.685000px;}
.y1e7{bottom:681.225000px;}
.y371{bottom:683.565000px;}
.y10f{bottom:684.105000px;}
.y78{bottom:684.465000px;}
.y207{bottom:687.885000px;}
.y28f{bottom:688.425000px;}
.y263{bottom:692.385000px;}
.y1a8{bottom:693.465000px;}
.y246{bottom:694.545000px;}
.y91{bottom:695.445000px;}
.y56{bottom:697.065000px;}
.y12e{bottom:697.425000px;}
.y341{bottom:697.605000px;}
.y37d{bottom:697.785000px;}
.yed{bottom:699.045000px;}
.y17b{bottom:700.485000px;}
.y10{bottom:702.105000px;}
.y322{bottom:703.005000px;}
.yc7{bottom:703.365000px;}
.y1e6{bottom:703.905000px;}
.y1c5{bottom:705.345000px;}
.y10e{bottom:706.965000px;}
.y2a0{bottom:707.865000px;}
.y2be{bottom:709.485000px;}
.y28e{bottom:711.285000px;}
.y225{bottom:716.145000px;}
.y245{bottom:717.045000px;}
.y77{bottom:717.585000px;}
.y370{bottom:718.305000px;}
.y2e3{bottom:718.485000px;}
.y55{bottom:719.565000px;}
.y90{bottom:719.745000px;}
.y17a{bottom:723.345000px;}
.y206{bottom:724.065000px;}
.yec{bottom:724.425000px;}
.yc6{bottom:726.045000px;}
.y1e5{bottom:726.585000px;}
.y1c4{bottom:727.845000px;}
.y10d{bottom:729.645000px;}
.y31{bottom:730.005000px;}
.y14d{bottom:730.545000px;}
.y262{bottom:733.245000px;}
.y28d{bottom:733.965000px;}
.y37c{bottom:737.205000px;}
.y12d{bottom:737.565000px;}
.y224{bottom:738.645000px;}
.y244{bottom:739.905000px;}
.yf{bottom:742.065000px;}
.y36d{bottom:743.685000px;}
.y8f{bottom:743.865000px;}
.y205{bottom:745.125000px;}
.y179{bottom:746.025000px;}
.y2e2{bottom:746.565000px;}
.y76{bottom:747.825000px;}
.yc5{bottom:748.905000px;}
.y1e4{bottom:749.445000px;}
.yea{bottom:749.805000px;}
.y54{bottom:750.165000px;}
.y1c3{bottom:750.705000px;}
.y1a5{bottom:752.685000px;}
.y28c{bottom:756.825000px;}
.y321{bottom:757.005000px;}
.y223{bottom:761.505000px;}
.y243{bottom:762.585000px;}
.y2bc{bottom:763.305000px;}
.y204{bottom:766.185000px;}
.y8e{bottom:768.165000px;}
.y10c{bottom:769.965000px;}
.y29f{bottom:770.685000px;}
.y1e3{bottom:772.125000px;}
.y1c2{bottom:773.385000px;}
.y261{bottom:773.925000px;}
.y2d5{bottom:774.465000px;}
.y12c{bottom:774.645000px;}
.ye8{bottom:775.185000px;}
.y37b{bottom:776.805000px;}
.y75{bottom:778.065000px;}
.y28b{bottom:779.505000px;}
.y53{bottom:780.405000px;}
.yc{bottom:782.025000px;}
.y242{bottom:785.445000px;}
.y178{bottom:786.165000px;}
.y203{bottom:787.245000px;}
.yc4{bottom:789.045000px;}
.y33c{bottom:791.385000px;}
.y8d{bottom:792.465000px;}
.y1c1{bottom:796.245000px;}
.y222{bottom:796.425000px;}
.y260{bottom:796.605000px;}
.y10b{bottom:806.865000px;}
.y1e2{bottom:807.225000px;}
.y29e{bottom:808.305000px;}
.y74{bottom:808.485000px;}
.ye6{bottom:809.025000px;}
.y1a1{bottom:810.465000px;}
.y52{bottom:810.645000px;}
.y313{bottom:810.825000px;}
.y37a{bottom:816.225000px;}
.y8c{bottom:816.765000px;}
.y1c0{bottom:818.925000px;}
.y25f{bottom:819.465000px;}
.y28a{bottom:819.825000px;}
.y241{bottom:820.365000px;}
.y177{bottom:825.405000px;}
.y12b{bottom:825.945000px;}
.ya{bottom:826.305000px;}
.y2c{bottom:826.665000px;}
.yc3{bottom:826.845000px;}
.y1e1{bottom:829.725000px;}
.y202{bottom:830.445000px;}
.y29d{bottom:830.985000px;}
.y221{bottom:831.165000px;}
.y73{bottom:838.725000px;}
.y316{bottom:840.525000px;}
.y51{bottom:840.885000px;}
.y8b{bottom:841.065000px;}
.y25e{bottom:842.145000px;}
.y240{bottom:843.045000px;}
.y36b{bottom:843.765000px;}
.y10a{bottom:844.485000px;}
.yc2{bottom:849.345000px;}
.y176{bottom:849.705000px;}
.y1e0{bottom:852.585000px;}
.y2db{bottom:853.305000px;}
.y220{bottom:853.665000px;}
.y1bf{bottom:853.845000px;}
.y2bb{bottom:855.285000px;}
.y379{bottom:855.645000px;}
.y289{bottom:857.445000px;}
.ye5{bottom:860.505000px;}
.y25d{bottom:865.185000px;}
.y8a{bottom:865.365000px;}
.y23f{bottom:865.725000px;}
.y12a{bottom:866.445000px;}
.y72{bottom:868.965000px;}
.y50{bottom:871.125000px;}
.yc1{bottom:872.205000px;}
.y14c{bottom:873.465000px;}
.y175{bottom:874.005000px;}
.y1df{bottom:875.265000px;}
.y201{bottom:875.445000px;}
.y1be{bottom:876.525000px;}
.y9{bottom:878.325000px;}
.y288{bottom:880.125000px;}
.yab{bottom:883.725000px;}
.y109{bottom:884.625000px;}
.y23e{bottom:888.585000px;}
.y129{bottom:888.945000px;}
.y89{bottom:889.485000px;}
.ye4{bottom:890.745000px;}
.y30c{bottom:894.525000px;}
.y378{bottom:895.245000px;}
.y2ba{bottom:895.425000px;}
.y14b{bottom:896.325000px;}
.y1de{bottom:898.125000px;}
.y71{bottom:899.205000px;}
.y200{bottom:899.745000px;}
.y4f{bottom:901.545000px;}
.y287{bottom:902.805000px;}
.y339{bottom:902.985000px;}
.y2d1{bottom:904.065000px;}
.y8{bottom:904.245000px;}
.yc0{bottom:907.125000px;}
.y19b{bottom:908.205000px;}
.y174{bottom:910.185000px;}
.y23d{bottom:911.265000px;}
.y128{bottom:911.805000px;}
.ye3{bottom:913.605000px;}
.y88{bottom:913.785000px;}
.y25c{bottom:917.250000px;}
.y149{bottom:919.050000px;}
.y1dd{bottom:920.850000px;}
.yaa{bottom:921.390000px;}
.y1bd{bottom:922.110000px;}
.y108{bottom:922.290000px;}
.y14a{bottom:923.550000px;}
.y1ff{bottom:924.090000px;}
.y70{bottom:929.490000px;}
.ybf{bottom:929.670000px;}
.y28{bottom:931.290000px;}
.y4e{bottom:931.830000px;}
.y2b9{bottom:933.090000px;}
.y376{bottom:933.450000px;}
.y23c{bottom:934.170000px;}
.y21f{bottom:934.350000px;}
.y127{bottom:934.530000px;}
.ye2{bottom:936.330000px;}
.y30f{bottom:938.670000px;}
.y286{bottom:942.990000px;}
.ya9{bottom:944.070000px;}
.y107{bottom:944.970000px;}
.y148{bottom:950.910000px;}
.ybe{bottom:952.530000px;}
.y25b{bottom:954.150000px;}
.y1dc{bottom:955.770000px;}
.y87{bottom:956.130000px;}
.y21e{bottom:956.850000px;}
.y126{bottom:957.390000px;}
.y173{bottom:958.830000px;}
.ye1{bottom:959.190000px;}
.y6f{bottom:959.730000px;}
.y4d{bottom:962.070000px;}
.y1fe{bottom:966.390000px;}
.y1bc{bottom:967.650000px;}
.y2d0{bottom:968.190000px;}
.y375{bottom:971.430000px;}
.y2b8{bottom:973.590000px;}
.ybd{bottom:975.210000px;}
.y1db{bottom:978.450000px;}
.ya8{bottom:978.990000px;}
.y23b{bottom:979.710000px;}
.y106{bottom:979.890000px;}
.y125{bottom:980.070000px;}
.y86{bottom:980.430000px;}
.ye0{bottom:982.050000px;}
.y147{bottom:982.590000px;}
.y285{bottom:984.030000px;}
.y6e{bottom:990.150000px;}
.y1fd{bottom:990.690000px;}
.y21d{bottom:991.770000px;}
.y4c{bottom:993.210000px;}
.y172{bottom:993.570000px;}
.y2b7{bottom:996.450000px;}
.y338{bottom:998.610000px;}
.y1da{bottom:1001.130000px;}
.ya7{bottom:1001.490000px;}
.y2cf{bottom:1001.670000px;}
.y105{bottom:1002.390000px;}
.y1bb{bottom:1002.570000px;}
.y124{bottom:1002.930000px;}
.y85{bottom:1004.730000px;}
.y146{bottom:1005.450000px;}
.y27{bottom:1006.170000px;}
.y374{bottom:1009.590000px;}
.y21c{bottom:1014.450000px;}
.ybc{bottom:1015.530000px;}
.y171{bottom:1016.250000px;}
.y2b6{bottom:1019.130000px;}
.y6d{bottom:1020.390000px;}
.y30b{bottom:1022.010000px;}
.ya6{bottom:1024.350000px;}
.ydf{bottom:1025.070000px;}
.y104{bottom:1025.250000px;}
.y123{bottom:1025.610000px;}
.y144{bottom:1028.130000px;}
.y4b{bottom:1029.030000px;}
.y145{bottom:1032.630000px;}
.y1fc{bottom:1032.990000px;}
.y337{bottom:1035.690000px;}
.y1d9{bottom:1036.230000px;}
.y19a{bottom:1037.130000px;}
.y23a{bottom:1037.310000px;}
.y284{bottom:1039.290000px;}
.y25{bottom:1039.650000px;}
.y2b5{bottom:1041.990000px;}
.y6c{bottom:1042.890000px;}
.y365{bottom:1044.330000px;}
.ya5{bottom:1047.030000px;}
.y373{bottom:1047.750000px;}
.y103{bottom:1047.930000px;}
.y143{bottom:1050.990000px;}
.y170{bottom:1051.170000px;}
.y1fb{bottom:1057.110000px;}
.y199{bottom:1059.990000px;}
.y4a{bottom:1061.250000px;}
.yde{bottom:1062.690000px;}
.y122{bottom:1065.930000px;}
.ybb{bottom:1066.830000px;}
.y102{bottom:1070.790000px;}
.y1d8{bottom:1070.970000px;}
.y6b{bottom:1073.490000px;}
.y142{bottom:1073.670000px;}
.y304{bottom:1075.830000px;}
.y1fa{bottom:1081.410000px;}
.y198{bottom:1082.670000px;}
.y1ba{bottom:1082.850000px;}
.y84{bottom:1088.430000px;}
.y24{bottom:1090.410000px;}
.y49{bottom:1093.290000px;}
.ya4{bottom:1094.190000px;}
.y283{bottom:1094.550000px;}
.y6a{bottom:1095.990000px;}
.ydb{bottom:1101.750000px;}
.ydd{bottom:1102.830000px;}
.y141{bottom:1105.530000px;}
.y101{bottom:1105.710000px;}
.y275{bottom:1106.970000px;}
.y197{bottom:1110.030000px;}
.y22{bottom:1117.230000px;}
.y80{bottom:1126.770000px;}
.y21{bottom:1138.470000px;}
.y7f{bottom:1147.830000px;}
.y6{bottom:1159.560000px;}
.y7e{bottom:1169.100000px;}
.y5{bottom:1180.620000px;}
.y7d{bottom:1190.160000px;}
.h4f{height:19.260000px;}
.h50{height:19.296000px;}
.h51{height:19.440000px;}
.h30{height:21.060000px;}
.h57{height:21.240000px;}
.h34{height:23.760000px;}
.h35{height:23.940000px;}
.h33{height:24.840000px;}
.h31{height:25.380000px;}
.h5d{height:27.180000px;}
.h61{height:27.360000px;}
.h6a{height:28.620000px;}
.h6d{height:28.800000px;}
.h1f{height:30.600000px;}
.h20{height:30.780000px;}
.h21{height:30.816000px;}
.h1e{height:32.580000px;}
.h16{height:32.760000px;}
.h1d{height:32.796000px;}
.h42{height:33.830156px;}
.hb{height:34.200000px;}
.h10{height:34.236000px;}
.h13{height:34.380000px;}
.h12{height:34.416000px;}
.h44{height:34.776000px;}
.h1c{height:36.336094px;}
.h56{height:37.260000px;}
.h7e{height:37.296000px;}
.h54{height:37.440000px;}
.h55{height:37.476000px;}
.h36{height:38.376000px;}
.he{height:38.520000px;}
.h52{height:38.700000px;}
.h81{height:38.736000px;}
.h7f{height:38.880000px;}
.h80{height:38.916000px;}
.h48{height:41.317383px;}
.h3b{height:41.974453px;}
.h2b{height:42.300000px;}
.h6b{height:43.236000px;}
.h67{height:46.260000px;}
.h58{height:46.296000px;}
.h5c{height:50.040000px;}
.h72{height:50.796000px;}
.h43{height:51.998203px;}
.h78{height:52.465078px;}
.h1b{height:52.560000px;}
.h65{height:52.920000px;}
.h62{height:53.100000px;}
.h6f{height:53.136000px;}
.h1a{height:56.376000px;}
.h4a{height:56.520000px;}
.h4d{height:56.700000px;}
.h38{height:56.880000px;}
.h45{height:57.420000px;}
.h46{height:57.600000px;}
.h29{height:57.636562px;}
.h4b{height:57.960000px;}
.h63{height:57.996000px;}
.h28{height:58.140000px;}
.h32{height:58.154062px;}
.h5a{height:58.651172px;}
.h37{height:59.580000px;}
.h39{height:61.200000px;}
.h8{height:62.648438px;}
.h3a{height:63.210938px;}
.h4e{height:65.010937px;}
.h53{height:65.340000px;}
.h9{height:65.884219px;}
.h59{height:66.757500px;}
.h2f{height:68.084282px;}
.h3e{height:68.940000px;}
.hd{height:71.613281px;}
.h70{height:72.720000px;}
.h69{height:72.756000px;}
.h3{height:73.096122px;}
.h23{height:73.298672px;}
.hc{height:73.722656px;}
.h22{height:73.956797px;}
.h2e{height:74.004654px;}
.h17{height:74.160000px;}
.h14{height:74.700000px;}
.h73{height:77.220000px;}
.h66{height:77.436000px;}
.h7c{height:77.760000px;}
.h75{height:77.796000px;}
.h5{height:81.705785px;}
.h6c{height:82.800000px;}
.ha{height:83.322422px;}
.h40{height:83.340000px;}
.h15{height:83.787539px;}
.h3d{height:85.356000px;}
.hf{height:86.255508px;}
.h2d{height:87.695156px;}
.h11{height:87.840000px;}
.h7d{height:91.980000px;}
.h79{height:92.016000px;}
.h77{height:92.880000px;}
.h74{height:95.580000px;}
.h19{height:95.940000px;}
.h49{height:96.660000px;}
.h2c{height:99.687656px;}
.h71{height:101.736000px;}
.h18{height:103.896000px;}
.h25{height:105.562266px;}
.h41{height:106.200000px;}
.h3f{height:106.416000px;}
.h68{height:106.920000px;}
.h5f{height:107.856000px;}
.h24{height:110.520000px;}
.h76{height:110.880000px;}
.h7b{height:110.916000px;}
.h47{height:113.436000px;}
.h4c{height:116.136000px;}
.h26{height:125.171719px;}
.h3c{height:127.440000px;}
.h5b{height:128.880000px;}
.h5e{height:163.830000px;}
.h64{height:184.890000px;}
.h4{height:188.939390px;}
.h7a{height:201.450000px;}
.h60{height:246.450000px;}
.h6e{height:285.510000px;}
.h27{height:308.190000px;}
.h2a{height:308.235000px;}
.h7{height:1262.250000px;}
.h6{height:1262.520000px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2f{width:60.696000px;}
.w2b{width:60.840000px;}
.w2c{width:60.876000px;}
.w23{width:73.980000px;}
.w7{width:83.160000px;}
.w8{width:84.420000px;}
.w31{width:105.120000px;}
.w9{width:106.776000px;}
.w13{width:109.800000px;}
.w29{width:122.256000px;}
.wf{width:125.496000px;}
.w25{width:127.836000px;}
.w27{width:128.016000px;}
.w2d{width:138.600000px;}
.w33{width:139.896000px;}
.wc{width:153.360000px;}
.wb{width:176.430000px;}
.w1a{width:187.950000px;}
.w17{width:201.270000px;}
.w1f{width:207.030000px;}
.w11{width:213.690000px;}
.wa{width:222.150000px;}
.wd{width:230.115000px;}
.w20{width:230.790000px;}
.w12{width:231.690000px;}
.w10{width:231.870000px;}
.w4{width:232.410000px;}
.w30{width:234.750000px;}
.w14{width:255.090000px;}
.w21{width:260.130000px;}
.w1d{width:261.570000px;}
.we{width:290.910000px;}
.w15{width:309.135000px;}
.w2e{width:325.335000px;}
.w1c{width:413.535000px;}
.w5{width:442.335000px;}
.w32{width:444.855000px;}
.w2a{width:464.655000px;}
.w24{width:468.795000px;}
.w22{width:492.015000px;}
.w16{width:497.595000px;}
.w1b{width:510.735000px;}
.w26{width:515.055000px;}
.w28{width:517.215000px;}
.w6{width:675.285000px;}
.w19{width:699.945000px;}
.w1e{width:700.125000px;}
.w18{width:893.159973px;}
.w3{width:893.159987px;}
.w2{width:893.160000px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.620000px;}
.x8{left:7.380000px;}
.x41{left:9.900000px;}
.x43{left:11.880000px;}
.x4b{left:12.960000px;}
.x22{left:15.840000px;}
.x45{left:19.080000px;}
.x42{left:20.340000px;}
.x44{left:22.320000px;}
.x3f{left:25.200000px;}
.x40{left:27.360000px;}
.x34{left:51.120000px;}
.x15{left:56.880000px;}
.x46{left:76.494000px;}
.x2{left:89.324989px;}
.x1{left:92.565327px;}
.x48{left:98.460000px;}
.x4{left:108.035987px;}
.x7{left:109.116000px;}
.x1e{left:110.736000px;}
.x2c{left:113.435987px;}
.x2d{left:114.695987px;}
.x4a{left:117.354000px;}
.x1a{left:120.815987px;}
.x11{left:124.595987px;}
.x1b{left:129.275987px;}
.x32{left:130.854000px;}
.x16{left:135.035987px;}
.x12{left:140.975987px;}
.x13{left:157.529987px;}
.x1c{left:162.029987px;}
.x4c{left:171.029987px;}
.xa{left:179.129987px;}
.x36{left:184.890000px;}
.x1d{left:189.029987px;}
.xb{left:192.630000px;}
.x2a{left:202.179000px;}
.x21{left:210.269987px;}
.x4d{left:214.590000px;}
.x2e{left:216.029987px;}
.x1f{left:221.970000px;}
.x17{left:233.139000px;}
.x3e{left:248.070000px;}
.x27{left:258.879000px;}
.xf{left:262.830000px;}
.xc{left:277.770000px;}
.x2b{left:298.335000px;}
.x25{left:317.234973px;}
.x26{left:323.894987px;}
.x18{left:339.915000px;}
.x9{left:342.615000px;}
.x47{left:344.415000px;}
.x28{left:349.959000px;}
.xd{left:385.275000px;}
.x23{left:392.474973px;}
.x24{left:399.134987px;}
.x30{left:422.354973px;}
.x31{left:429.014987px;}
.x6{left:446.654987px;}
.x20{left:478.515000px;}
.x10{left:493.665000px;}
.x2f{left:523.005000px;}
.x33{left:549.105000px;}
.x19{left:553.605000px;}
.x3a{left:574.305000px;}
.x49{left:579.885000px;}
.x5{left:603.104987px;}
.xe{left:608.145000px;}
.x38{left:625.965000px;}
.x39{left:628.305000px;}
.x3b{left:635.865000px;}
.x37{left:655.305000px;}
.x4e{left:660.165000px;}
.x3c{left:697.470000px;}
.x3d{left:759.030000px;}
.x14{left:766.950000px;}
.x3{left:785.309987px;}
.x35{left:788.009987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.677333pt;}
.ls23{letter-spacing:-0.618667pt;}
.ls29{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.153600pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.092267pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.041600pt;}
.ls6{letter-spacing:-0.040960pt;}
.ls22{letter-spacing:-0.038400pt;}
.ls1c{letter-spacing:-0.000003pt;}
.ls4{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009600pt;}
.ls25{letter-spacing:0.011520pt;}
.ls1b{letter-spacing:0.020480pt;}
.ls31{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.066667pt;}
.ls15{letter-spacing:0.086933pt;}
.ls27{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.116267pt;}
.lsf{letter-spacing:0.116480pt;}
.ls2{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.182933pt;}
.ls32{letter-spacing:0.188160pt;}
.ls2b{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.473600pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls30{letter-spacing:22.400000pt;}
.ls2f{letter-spacing:29.546667pt;}
.ls19{letter-spacing:29.568000pt;}
.ls1a{letter-spacing:34.831360pt;}
.ls2e{letter-spacing:44.006400pt;}
.ls2c{letter-spacing:44.646400pt;}
.ls26{letter-spacing:46.208000pt;}
.ls7{letter-spacing:46.831787pt;}
.ls17{letter-spacing:47.376640pt;}
.ls1f{letter-spacing:48.746667pt;}
.ls9{letter-spacing:78.853120pt;}
.lsb{letter-spacing:89.093120pt;}
.ls18{letter-spacing:100.143360pt;}
.ls3{letter-spacing:754.058667pt;}
.ls1{letter-spacing:776.458667pt;}
.ws2{word-spacing:-74.880000pt;}
.ws0{word-spacing:-58.466229pt;}
.wse{word-spacing:-23.600533pt;}
.ws12{word-spacing:-18.726400pt;}
.ws3{word-spacing:-16.922880pt;}
.ws10{word-spacing:-16.656533pt;}
.ws6{word-spacing:-16.589867pt;}
.ws7{word-spacing:-16.483200pt;}
.wsf{word-spacing:-16.473600pt;}
.ws5{word-spacing:-16.381333pt;}
.ws9{word-spacing:-14.400000pt;}
.ws1e{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws14{word-spacing:-14.079997pt;}
.ws15{word-spacing:-14.016000pt;}
.ws16{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.888000pt;}
.wsa{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.376000pt;}
.ws4{word-spacing:-13.265920pt;}
.ws13{word-spacing:-12.974080pt;}
.ws11{word-spacing:-12.953600pt;}
.ws18{word-spacing:-12.915200pt;}
.ws1d{word-spacing:-12.377600pt;}
.ws19{word-spacing:-12.334933pt;}
.ws17{word-spacing:-12.276267pt;}
.ws1c{word-spacing:-11.697920pt;}
.ws1b{word-spacing:-11.686400pt;}
.ws1a{word-spacing:-11.644800pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-21.976960pt;}
._15{margin-left:-13.621333pt;}
._b{margin-left:-12.309333pt;}
._3{margin-left:-10.763947pt;}
._5{margin-left:-9.248000pt;}
._7{margin-left:-8.309333pt;}
._6{margin-left:-6.965333pt;}
._8{margin-left:-5.685333pt;}
._a{margin-left:-4.128000pt;}
._4{margin-left:-2.873600pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.152000pt;}
._11{width:2.176000pt;}
._e{width:3.136000pt;}
._f{width:4.032000pt;}
._12{width:4.928000pt;}
._16{width:6.080000pt;}
._13{width:7.104000pt;}
._14{width:8.448000pt;}
._19{width:9.344000pt;}
._1d{width:10.634667pt;}
._1c{width:11.584000pt;}
._26{width:13.056000pt;}
._9{width:15.360000pt;}
._d{width:16.448000pt;}
._c{width:17.472000pt;}
._17{width:19.136000pt;}
._28{width:20.035413pt;}
._18{width:20.949333pt;}
._1a{width:22.442667pt;}
._1b{width:23.445333pt;}
._25{width:24.362667pt;}
._2b{width:25.504000pt;}
._29{width:26.624000pt;}
._2a{width:27.626667pt;}
._31{width:29.248000pt;}
._1e{width:31.360000pt;}
._2f{width:32.358827pt;}
._2e{width:33.408000pt;}
._10{width:35.328000pt;}
._22{width:36.252160pt;}
._21{width:37.312000pt;}
._30{width:38.656000pt;}
._23{width:40.696107pt;}
._24{width:42.386987pt;}
._34{width:44.541440pt;}
._32{width:52.452267pt;}
._33{width:53.614080pt;}
._2d{width:150.126080pt;}
._2c{width:151.296000pt;}
._27{width:164.736000pt;}
._2{width:420.612267pt;}
._35{width:751.665067pt;}
._1f{width:753.877333pt;}
.fsb{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsd{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:85.352159pt;}
.fs2{font-size:96.036184pt;}
.fs9{font-size:106.880000pt;}
.fs1{font-size:213.400412pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yad{bottom:1.920000pt;}
.yeb{bottom:3.200000pt;}
.yb2{bottom:3.360000pt;}
.ydc{bottom:3.520000pt;}
.yb8{bottom:3.680000pt;}
.yae{bottom:4.000000pt;}
.ye9{bottom:4.160000pt;}
.ye7{bottom:4.640000pt;}
.y2cb{bottom:4.800000pt;}
.y82{bottom:4.960000pt;}
.y32c{bottom:5.440000pt;}
.y310{bottom:6.080000pt;}
.y303{bottom:6.240000pt;}
.yba{bottom:6.400000pt;}
.y7{bottom:6.560000pt;}
.y2e4{bottom:7.520000pt;}
.y307{bottom:8.000000pt;}
.y2d4{bottom:8.160000pt;}
.y2c4{bottom:8.480000pt;}
.y2bf{bottom:8.640000pt;}
.y36f{bottom:10.080000pt;}
.y2ca{bottom:11.840000pt;}
.y33{bottom:13.280000pt;}
.y2b{bottom:13.440000pt;}
.y46{bottom:13.466667pt;}
.y30{bottom:13.760000pt;}
.y26{bottom:13.920000pt;}
.y36{bottom:13.946667pt;}
.y2da{bottom:14.240000pt;}
.y377{bottom:15.040000pt;}
.yb{bottom:15.200000pt;}
.y12{bottom:15.226667pt;}
.y1c{bottom:15.360000pt;}
.y188{bottom:15.680000pt;}
.y185{bottom:15.720000pt;}
.ye{bottom:16.320000pt;}
.y2c9{bottom:16.480000pt;}
.y13d{bottom:16.640000pt;}
.y23{bottom:17.280000pt;}
.yb4{bottom:17.600000pt;}
.y1a{bottom:17.920000pt;}
.y2c0{bottom:18.080000pt;}
.y18a{bottom:18.400000pt;}
.y18e{bottom:18.560000pt;}
.yd{bottom:19.040000pt;}
.y312{bottom:19.080000pt;}
.y13b{bottom:19.200000pt;}
.y311{bottom:19.240000pt;}
.y1ad{bottom:19.360000pt;}
.y137{bottom:20.040000pt;}
.y340{bottom:20.160000pt;}
.y36a{bottom:20.320000pt;}
.yb1{bottom:20.480000pt;}
.y1a0{bottom:20.520000pt;}
.y140{bottom:20.640000pt;}
.y33b{bottom:20.680000pt;}
.y345{bottom:21.120000pt;}
.yb7{bottom:22.400000pt;}
.y165{bottom:23.200000pt;}
.y305{bottom:23.360000pt;}
.y2d2{bottom:23.400000pt;}
.yb9{bottom:23.680000pt;}
.y306{bottom:24.640000pt;}
.y2d3{bottom:24.680000pt;}
.y161{bottom:24.960000pt;}
.y152{bottom:25.120000pt;}
.y30e{bottom:25.160000pt;}
.y32b{bottom:25.800000pt;}
.y35a{bottom:26.880000pt;}
.y15a{bottom:27.040000pt;}
.y2fd{bottom:27.680000pt;}
.y2f1{bottom:27.840000pt;}
.y324{bottom:27.866667pt;}
.y2f0{bottom:28.000000pt;}
.y300{bottom:28.026667pt;}
.y329{bottom:28.040000pt;}
.y2bd{bottom:28.480000pt;}
.y158{bottom:28.800000pt;}
.y330{bottom:29.120000pt;}
.y81{bottom:29.760000pt;}
.y2f4{bottom:32.160000pt;}
.y18{bottom:32.480000pt;}
.y2a{bottom:32.640000pt;}
.y38{bottom:32.800000pt;}
.y315{bottom:33.920000pt;}
.y2d9{bottom:34.560000pt;}
.y2f{bottom:34.880000pt;}
.y35{bottom:34.906667pt;}
.y30a{bottom:35.200000pt;}
.y187{bottom:35.680000pt;}
.y18c{bottom:35.840000pt;}
.y33f{bottom:36.160000pt;}
.y1a6{bottom:36.320000pt;}
.yb3{bottom:36.480000pt;}
.y189{bottom:37.120000pt;}
.y364{bottom:37.146667pt;}
.y18d{bottom:37.280000pt;}
.y1a7{bottom:37.440000pt;}
.y1a4{bottom:37.600000pt;}
.yb0{bottom:37.760000pt;}
.y19f{bottom:37.800000pt;}
.y349{bottom:37.920000pt;}
.y139{bottom:38.880000pt;}
.y15c{bottom:39.040000pt;}
.y366{bottom:39.200000pt;}
.y33a{bottom:39.240000pt;}
.y36e{bottom:39.840000pt;}
.y13f{bottom:40.320000pt;}
.y19{bottom:40.480000pt;}
.y164{bottom:41.600000pt;}
.y16a{bottom:41.760000pt;}
.y35f{bottom:41.786667pt;}
.y155{bottom:43.386667pt;}
.y160{bottom:43.560000pt;}
.y151{bottom:43.680000pt;}
.y2fb{bottom:43.866667pt;}
.y2e1{bottom:45.280000pt;}
.y30d{bottom:45.320000pt;}
.y333{bottom:45.440000pt;}
.y159{bottom:45.920000pt;}
.y351{bottom:47.080000pt;}
.y157{bottom:47.360000pt;}
.y320{bottom:48.320000pt;}
.y32f{bottom:49.280000pt;}
.y32e{bottom:49.440000pt;}
.y301{bottom:49.466667pt;}
.y2ff{bottom:49.626667pt;}
.y328{bottom:49.640000pt;}
.y1f{bottom:51.200000pt;}
.y29{bottom:52.000000pt;}
.y33e{bottom:52.960000pt;}
.y34a{bottom:53.120000pt;}
.y348{bottom:53.440000pt;}
.y369{bottom:53.600000pt;}
.y342{bottom:53.920000pt;}
.y314{bottom:54.240000pt;}
.y344{bottom:54.400000pt;}
.y2d8{bottom:54.720000pt;}
.y362{bottom:54.746667pt;}
.y19e{bottom:54.760000pt;}
.y1a3{bottom:54.880000pt;}
.y309{bottom:55.360000pt;}
.y2e{bottom:56.000000pt;}
.y35e{bottom:56.666667pt;}
.y359{bottom:56.800000pt;}
.y2ee{bottom:58.080000pt;}
.y163{bottom:60.160000pt;}
.y169{bottom:60.320000pt;}
.y167{bottom:61.920000pt;}
.y154{bottom:61.946667pt;}
.y15f{bottom:62.120000pt;}
.y150{bottom:62.240000pt;}
.y17{bottom:62.880000pt;}
.y2fa{bottom:64.026667pt;}
.y332{bottom:65.600000pt;}
.y2e0{bottom:65.626667pt;}
.y355{bottom:67.880000pt;}
.y368{bottom:69.120000pt;}
.y347{bottom:69.146667pt;}
.y36c{bottom:69.320000pt;}
.y367{bottom:69.760000pt;}
.y33d{bottom:69.920000pt;}
.y363{bottom:69.946667pt;}
.y343{bottom:70.080000pt;}
.y361{bottom:70.426667pt;}
.y19d{bottom:70.920000pt;}
.y327{bottom:71.240000pt;}
.y32{bottom:71.360000pt;}
.y358{bottom:71.680000pt;}
.y35d{bottom:71.706667pt;}
.y1a2{bottom:72.000000pt;}
.y31f{bottom:72.480000pt;}
.y2d7{bottom:75.040000pt;}
.y308{bottom:75.680000pt;}
.y2e5{bottom:76.506667pt;}
.y350{bottom:77.000000pt;}
.y2d{bottom:77.120000pt;}
.y2ed{bottom:78.280000pt;}
.y168{bottom:79.040000pt;}
.y83{bottom:80.480000pt;}
.y15e{bottom:80.680000pt;}
.y14f{bottom:80.800000pt;}
.y2f9{bottom:84.346667pt;}
.y2df{bottom:85.786667pt;}
.y360{bottom:85.946667pt;}
.y357{bottom:86.560000pt;}
.y35c{bottom:86.586667pt;}
.y19c{bottom:87.880000pt;}
.y1aa{bottom:89.280000pt;}
.y31e{bottom:92.800000pt;}
.y2d6{bottom:95.200000pt;}
.y2ec{bottom:98.600000pt;}
.y1b9{bottom:98.880000pt;}
.y14e{bottom:99.360000pt;}
.y21b{bottom:100.640000pt;}
.y354{bottom:100.680000pt;}
.y1b8{bottom:102.240000pt;}
.y2b4{bottom:102.560000pt;}
.y16f{bottom:103.360000pt;}
.y2f8{bottom:104.506667pt;}
.y282{bottom:104.640000pt;}
.y196{bottom:104.800000pt;}
.y2de{bottom:106.106667pt;}
.y34f{bottom:106.760000pt;}
.y121{bottom:107.360000pt;}
.y239{bottom:107.520000pt;}
.yb6{bottom:108.480000pt;}
.y302{bottom:109.440000pt;}
.y38a{bottom:112.800000pt;}
.y31d{bottom:112.960000pt;}
.y1d7{bottom:114.240000pt;}
.y1b7{bottom:115.040000pt;}
.y13e{bottom:116.320000pt;}
.y353{bottom:117.480000pt;}
.y16e{bottom:117.600000pt;}
.y1f9{bottom:118.560000pt;}
.y2eb{bottom:118.760000pt;}
.y21a{bottom:120.960000pt;}
.y48{bottom:122.560000pt;}
.y2b3{bottom:122.880000pt;}
.y2f7{bottom:124.826667pt;}
.y195{bottom:125.120000pt;}
.y2dd{bottom:126.266667pt;}
.y120{bottom:127.520000pt;}
.y238{bottom:127.680000pt;}
.y389{bottom:128.640000pt;}
.y100{bottom:128.800000pt;}
.y29c{bottom:129.120000pt;}
.y25a{bottom:131.520000pt;}
.y336{bottom:131.680000pt;}
.y16d{bottom:133.280000pt;}
.y34d{bottom:135.240000pt;}
.yda{bottom:136.480000pt;}
.y34e{bottom:136.520000pt;}
.y16c{bottom:136.640000pt;}
.y2ea{bottom:139.080000pt;}
.y1f8{bottom:140.160000pt;}
.y47{bottom:140.960000pt;}
.y219{bottom:141.120000pt;}
.y69{bottom:141.600000pt;}
.y2ce{bottom:142.560000pt;}
.y2b2{bottom:143.040000pt;}
.ya3{bottom:144.160000pt;}
.y2f6{bottom:144.986667pt;}
.y1d6{bottom:145.120000pt;}
.yb5{bottom:146.080000pt;}
.y274{bottom:146.400000pt;}
.y237{bottom:148.000000pt;}
.yff{bottom:148.960000pt;}
.y16b{bottom:149.440000pt;}
.y352{bottom:150.440000pt;}
.y34c{bottom:150.760000pt;}
.y35b{bottom:152.800000pt;}
.y194{bottom:153.280000pt;}
.y31c{bottom:153.466667pt;}
.y281{bottom:153.760000pt;}
.yd9{bottom:155.200000pt;}
.y259{bottom:155.680000pt;}
.y2f5{bottom:157.120000pt;}
.y11f{bottom:158.560000pt;}
.y2e9{bottom:159.240000pt;}
.y218{bottom:161.440000pt;}
.y1f7{bottom:161.600000pt;}
.y388{bottom:163.680000pt;}
.ya2{bottom:165.760000pt;}
.y34b{bottom:166.440000pt;}
.y273{bottom:166.720000pt;}
.y68{bottom:168.480000pt;}
.yfe{bottom:169.120000pt;}
.y1b6{bottom:169.600000pt;}
.y45{bottom:170.720000pt;}
.y335{bottom:172.800000pt;}
.y193{bottom:173.600000pt;}
.y31b{bottom:173.786667pt;}
.yd8{bottom:173.920000pt;}
.y1d5{bottom:176.000000pt;}
.y11e{bottom:178.560000pt;}
.y2b1{bottom:178.880000pt;}
.y236{bottom:179.040000pt;}
.y2e8{bottom:179.560000pt;}
.y258{bottom:179.680000pt;}
.y217{bottom:181.600000pt;}
.y1f6{bottom:183.226667pt;}
.y13c{bottom:184.186667pt;}
.y280{bottom:185.626667pt;}
.y272{bottom:186.906667pt;}
.ya1{bottom:187.386667pt;}
.y67{bottom:188.506667pt;}
.yfd{bottom:189.466667pt;}
.y2cd{bottom:189.626667pt;}
.y1b5{bottom:189.946667pt;}
.y166{bottom:190.106667pt;}
.yd7{bottom:192.666667pt;}
.y192{bottom:193.786667pt;}
.y31a{bottom:193.946667pt;}
.y44{bottom:198.746667pt;}
.y11d{bottom:198.906667pt;}
.y235{bottom:199.066667pt;}
.y2e7{bottom:199.720000pt;}
.y29b{bottom:200.826667pt;}
.y216{bottom:201.946667pt;}
.y334{bottom:203.706667pt;}
.y1f5{bottom:204.826667pt;}
.y2{bottom:205.683716pt;}
.y1d4{bottom:206.906667pt;}
.y271{bottom:207.226667pt;}
.yfc{bottom:209.626667pt;}
.y257{bottom:210.586667pt;}
.yd6{bottom:211.386667pt;}
.y191{bottom:214.106667pt;}
.y319{bottom:214.266667pt;}
.y66{bottom:215.706667pt;}
.y27f{bottom:217.466667pt;}
.y234{bottom:219.386667pt;}
.y331{bottom:219.706667pt;}
.y2b0{bottom:220.186667pt;}
.y29a{bottom:220.826667pt;}
.y215{bottom:222.106667pt;}
.y2cc{bottom:222.906667pt;}
.ya0{bottom:224.986667pt;}
.y1b4{bottom:225.626667pt;}
.y1f4{bottom:226.426667pt;}
.y2fe{bottom:226.586667pt;}
.y270{bottom:227.386667pt;}
.y43{bottom:228.506667pt;}
.yfb{bottom:229.946667pt;}
.yd5{bottom:230.266667pt;}
.y256{bottom:230.746667pt;}
.y20{bottom:232.826667pt;}
.y387{bottom:233.946667pt;}
.y318{bottom:234.426667pt;}
.y65{bottom:235.706667pt;}
.y1d3{bottom:237.946667pt;}
.y299{bottom:241.146667pt;}
.y190{bottom:243.706667pt;}
.y9f{bottom:246.586667pt;}
.y13a{bottom:248.026667pt;}
.yd4{bottom:248.986667pt;}
.yfa{bottom:250.106667pt;}
.y233{bottom:250.426667pt;}
.y255{bottom:250.906667pt;}
.y214{bottom:253.306667pt;}
.y4{bottom:255.169047pt;}
.y1e{bottom:256.346667pt;}
.y42{bottom:256.506667pt;}
.y1b3{bottom:257.626667pt;}
.y356{bottom:258.746667pt;}
.y2af{bottom:261.146667pt;}
.y298{bottom:261.306667pt;}
.y64{bottom:262.746667pt;}
.y26f{bottom:263.706667pt;}
.y27e{bottom:266.586667pt;}
.y9e{bottom:268.026667pt;}
.y1d2{bottom:268.826667pt;}
.y386{bottom:268.986667pt;}
.y1f3{bottom:269.626667pt;}
.y11c{bottom:270.266667pt;}
.y232{bottom:270.586667pt;}
.y18f{bottom:273.146667pt;}
.y213{bottom:273.306667pt;}
.y2fc{bottom:274.426667pt;}
.y1b2{bottom:276.346667pt;}
.y297{bottom:281.626667pt;}
.y26e{bottom:283.866667pt;}
.y162{bottom:285.626667pt;}
.yf9{bottom:285.946667pt;}
.y41{bottom:286.266667pt;}
.y254{bottom:286.746667pt;}
.yd3{bottom:287.226667pt;}
.y18b{bottom:288.986667pt;}
.y63{bottom:289.786667pt;}
.y231{bottom:290.746667pt;}
.y1f2{bottom:291.066667pt;}
.y2ae{bottom:294.586667pt;}
.y1d1{bottom:299.706667pt;}
.y11b{bottom:301.306667pt;}
.y296{bottom:301.786667pt;}
.y26d{bottom:304.186667pt;}
.y32d{bottom:305.466667pt;}
.y9d{bottom:305.626667pt;}
.y1b1{bottom:307.386667pt;}
.y212{bottom:309.146667pt;}
.y230{bottom:311.066667pt;}
.y1f1{bottom:312.666667pt;}
.y3{bottom:312.706384pt;}
.y40{bottom:314.266667pt;}
.y138{bottom:314.426667pt;}
.y2ad{bottom:314.746667pt;}
.y27d{bottom:315.546667pt;}
.y62{bottom:316.666667pt;}
.yf8{bottom:318.746667pt;}
.y253{bottom:319.546667pt;}
.y1d0{bottom:319.706667pt;}
.yd2{bottom:320.666667pt;}
.y295{bottom:322.106667pt;}
.y2e6{bottom:322.266667pt;}
.y2c8{bottom:323.226667pt;}
.y9c{bottom:327.226667pt;}
.y1b0{bottom:327.386667pt;}
.y1d{bottom:327.706667pt;}
.y22f{bottom:331.226667pt;}
.y11a{bottom:332.186667pt;}
.y26c{bottom:332.346667pt;}
.y2ac{bottom:334.906667pt;}
.y385{bottom:339.226667pt;}
.y186{bottom:340.826667pt;}
.y211{bottom:341.946667pt;}
.y61{bottom:343.546667pt;}
.y3f{bottom:344.026667pt;}
.y2f3{bottom:347.066667pt;}
.y27c{bottom:347.386667pt;}
.y1f0{bottom:348.346667pt;}
.y9b{bottom:348.826667pt;}
.y1cf{bottom:350.906667pt;}
.yd1{bottom:351.546667pt;}
.yf7{bottom:352.186667pt;}
.y119{bottom:352.346667pt;}
.y26b{bottom:352.666667pt;}
.y252{bottom:352.986667pt;}
.y2ab{bottom:355.226667pt;}
.y1af{bottom:355.706667pt;}
.y294{bottom:357.946667pt;}
.y15d{bottom:360.826667pt;}
.y1b{bottom:363.226667pt;}
.y60{bottom:370.426667pt;}
.y22e{bottom:371.706667pt;}
.yf6{bottom:372.186667pt;}
.y118{bottom:372.506667pt;}
.y26a{bottom:372.826667pt;}
.y251{bottom:373.146667pt;}
.y3e{bottom:373.626667pt;}
.y384{bottom:374.426667pt;}
.y326{bottom:374.906667pt;}
.y2aa{bottom:375.386667pt;}
.y27b{bottom:379.386667pt;}
.y136{bottom:380.666667pt;}
.y2c7{bottom:381.306667pt;}
.y1ce{bottom:381.786667pt;}
.yd0{bottom:382.586667pt;}
.y1ae{bottom:383.866667pt;}
.y210{bottom:387.546667pt;}
.y9a{bottom:391.866667pt;}
.yf5{bottom:392.506667pt;}
.y184{bottom:392.666667pt;}
.y117{bottom:392.826667pt;}
.y250{bottom:393.346667pt;}
.y2a9{bottom:395.746667pt;}
.y5f{bottom:397.346667pt;}
.y16{bottom:398.786667pt;}
.y2f2{bottom:399.266667pt;}
.y1cd{bottom:401.826667pt;}
.ycf{bottom:402.626667pt;}
.y3d{bottom:403.426667pt;}
.y2c6{bottom:405.346667pt;}
.y22d{bottom:407.586667pt;}
.y1ac{bottom:408.226667pt;}
.y383{bottom:409.506667pt;}
.y27a{bottom:411.266667pt;}
.yf4{bottom:412.866667pt;}
.y99{bottom:413.506667pt;}
.y2a8{bottom:415.906667pt;}
.yaf{bottom:420.066667pt;}
.y32a{bottom:420.866667pt;}
.y1ef{bottom:422.146667pt;}
.y20f{bottom:423.586667pt;}
.y116{bottom:423.906667pt;}
.y5e{bottom:424.226667pt;}
.y24f{bottom:424.546667pt;}
.y269{bottom:431.586667pt;}
.yf3{bottom:433.026667pt;}
.y3c{bottom:433.186667pt;}
.yce{bottom:433.666667pt;}
.y98{bottom:435.106667pt;}
.y2a7{bottom:436.226667pt;}
.y135{bottom:437.826667pt;}
.y2c5{bottom:439.266667pt;}
.y293{bottom:439.586667pt;}
.y22c{bottom:440.386667pt;}
.y183{bottom:440.706667pt;}
.y1ee{bottom:442.306667pt;}
.y279{bottom:443.106667pt;}
.y5d{bottom:444.386667pt;}
.y24e{bottom:444.546667pt;}
.y382{bottom:444.706667pt;}
.y1cc{bottom:453.026667pt;}
.yf2{bottom:453.346667pt;}
.ycd{bottom:453.826667pt;}
.y20e{bottom:454.466667pt;}
.y115{bottom:454.786667pt;}
.y15b{bottom:456.386667pt;}
.y97{bottom:456.706667pt;}
.y1ab{bottom:459.586667pt;}
.y1ed{bottom:462.626667pt;}
.y3b{bottom:462.946667pt;}
.y24d{bottom:464.866667pt;}
.y317{bottom:466.146667pt;}
.y134{bottom:467.586667pt;}
.y182{bottom:470.466667pt;}
.y5c{bottom:471.426667pt;}
.yac{bottom:471.746667pt;}
.y22b{bottom:473.826667pt;}
.y20d{bottom:474.626667pt;}
.y114{bottom:474.946667pt;}
.y2a6{bottom:476.706667pt;}
.y268{bottom:477.186667pt;}
.y96{bottom:478.306667pt;}
.y381{bottom:479.746667pt;}
.y15{bottom:481.986667pt;}
.y1ec{bottom:482.786667pt;}
.y1cb{bottom:484.066667pt;}
.y278{bottom:484.706667pt;}
.ycc{bottom:484.866667pt;}
.y24c{bottom:485.026667pt;}
.y7c{bottom:485.986667pt;}
.y2c3{bottom:487.106667pt;}
.yf1{bottom:489.026667pt;}
.y181{bottom:490.466667pt;}
.y5b{bottom:491.586667pt;}
.y2ef{bottom:492.226667pt;}
.y22a{bottom:493.986667pt;}
.y20c{bottom:494.786667pt;}
.y2a5{bottom:496.866667pt;}
.y133{bottom:498.626667pt;}
.y24b{bottom:505.346667pt;}
.y113{bottom:505.986667pt;}
.y3a{bottom:508.066667pt;}
.y156{bottom:510.306667pt;}
.y180{bottom:510.786667pt;}
.y1a9{bottom:512.226667pt;}
.y1eb{bottom:513.986667pt;}
.y229{bottom:514.146667pt;}
.y277{bottom:514.626667pt;}
.y380{bottom:514.786667pt;}
.y1ca{bottom:514.946667pt;}
.y20b{bottom:515.106667pt;}
.ycb{bottom:515.746667pt;}
.y95{bottom:515.906667pt;}
.y2a4{bottom:517.186667pt;}
.y14{bottom:517.506667pt;}
.y267{bottom:518.466667pt;}
.y5a{bottom:518.626667pt;}
.y7b{bottom:519.426667pt;}
.yf0{bottom:521.986667pt;}
.y24a{bottom:525.506667pt;}
.y292{bottom:530.946667pt;}
.y17f{bottom:531.106667pt;}
.y325{bottom:531.586667pt;}
.y1ea{bottom:533.986667pt;}
.y228{bottom:534.466667pt;}
.y2c2{bottom:534.946667pt;}
.y1c9{bottom:535.106667pt;}
.y20a{bottom:535.266667pt;}
.yca{bottom:535.906667pt;}
.y112{bottom:536.866667pt;}
.y94{bottom:537.346667pt;}
.y346{bottom:537.666667pt;}
.y59{bottom:538.626667pt;}
.y132{bottom:538.946667pt;}
.y39{bottom:541.186667pt;}
.y276{bottom:541.986667pt;}
.y2dc{bottom:542.146667pt;}
.y249{bottom:545.826667pt;}
.y37f{bottom:549.986667pt;}
.y7a{bottom:550.306667pt;}
.y37{bottom:550.626667pt;}
.y17e{bottom:551.266667pt;}
.y13{bottom:553.026667pt;}
.y1e9{bottom:554.306667pt;}
.y266{bottom:554.626667pt;}
.y1c8{bottom:555.266667pt;}
.y209{bottom:555.586667pt;}
.y2a3{bottom:557.666667pt;}
.y93{bottom:558.946667pt;}
.y131{bottom:559.106667pt;}
.y58{bottom:565.826667pt;}
.y248{bottom:565.986667pt;}
.yef{bottom:567.426667pt;}
.y111{bottom:567.746667pt;}
.y227{bottom:570.146667pt;}
.y291{bottom:571.426667pt;}
.yc9{bottom:571.586667pt;}
.y153{bottom:572.546667pt;}
.y372{bottom:574.146667pt;}
.y1e8{bottom:574.466667pt;}
.y265{bottom:574.946667pt;}
.y1c7{bottom:575.586667pt;}
.y208{bottom:575.746667pt;}
.y323{bottom:576.866667pt;}
.y2a2{bottom:577.986667pt;}
.y79{bottom:578.146667pt;}
.y130{bottom:579.426667pt;}
.y92{bottom:580.546667pt;}
.y17d{bottom:582.306667pt;}
.y2c1{bottom:582.786667pt;}
.y37e{bottom:585.026667pt;}
.y247{bottom:586.306667pt;}
.y110{bottom:587.906667pt;}
.y11{bottom:588.546667pt;}
.y290{bottom:591.746667pt;}
.y57{bottom:592.706667pt;}
.y264{bottom:595.106667pt;}
.y1c6{bottom:595.906667pt;}
.y34{bottom:597.986667pt;}
.y2a1{bottom:598.146667pt;}
.y12f{bottom:599.586667pt;}
.y17c{bottom:602.466667pt;}
.y226{bottom:602.946667pt;}
.yee{bottom:604.893333pt;}
.yc8{bottom:605.053333pt;}
.y1e7{bottom:605.533333pt;}
.y371{bottom:607.613333pt;}
.y10f{bottom:608.093333pt;}
.y78{bottom:608.413333pt;}
.y207{bottom:611.453333pt;}
.y28f{bottom:611.933333pt;}
.y263{bottom:615.453333pt;}
.y1a8{bottom:616.413333pt;}
.y246{bottom:617.373333pt;}
.y91{bottom:618.173333pt;}
.y56{bottom:619.613333pt;}
.y12e{bottom:619.933333pt;}
.y341{bottom:620.093333pt;}
.y37d{bottom:620.253333pt;}
.yed{bottom:621.373333pt;}
.y17b{bottom:622.653333pt;}
.y10{bottom:624.093333pt;}
.y322{bottom:624.893333pt;}
.yc7{bottom:625.213333pt;}
.y1e6{bottom:625.693333pt;}
.y1c5{bottom:626.973333pt;}
.y10e{bottom:628.413333pt;}
.y2a0{bottom:629.213333pt;}
.y2be{bottom:630.653333pt;}
.y28e{bottom:632.253333pt;}
.y225{bottom:636.573333pt;}
.y245{bottom:637.373333pt;}
.y77{bottom:637.853333pt;}
.y370{bottom:638.493333pt;}
.y2e3{bottom:638.653333pt;}
.y55{bottom:639.613333pt;}
.y90{bottom:639.773333pt;}
.y17a{bottom:642.973333pt;}
.y206{bottom:643.613333pt;}
.yec{bottom:643.933333pt;}
.yc6{bottom:645.373333pt;}
.y1e5{bottom:645.853333pt;}
.y1c4{bottom:646.973333pt;}
.y10d{bottom:648.573333pt;}
.y31{bottom:648.893333pt;}
.y14d{bottom:649.373333pt;}
.y262{bottom:651.773333pt;}
.y28d{bottom:652.413333pt;}
.y37c{bottom:655.293333pt;}
.y12d{bottom:655.613333pt;}
.y224{bottom:656.573333pt;}
.y244{bottom:657.693333pt;}
.yf{bottom:659.613333pt;}
.y36d{bottom:661.053333pt;}
.y8f{bottom:661.213333pt;}
.y205{bottom:662.333333pt;}
.y179{bottom:663.133333pt;}
.y2e2{bottom:663.613333pt;}
.y76{bottom:664.733333pt;}
.yc5{bottom:665.693333pt;}
.y1e4{bottom:666.173333pt;}
.yea{bottom:666.493333pt;}
.y54{bottom:666.813333pt;}
.y1c3{bottom:667.293333pt;}
.y1a5{bottom:669.053333pt;}
.y28c{bottom:672.733333pt;}
.y321{bottom:672.893333pt;}
.y223{bottom:676.893333pt;}
.y243{bottom:677.853333pt;}
.y2bc{bottom:678.493333pt;}
.y204{bottom:681.053333pt;}
.y8e{bottom:682.813333pt;}
.y10c{bottom:684.413333pt;}
.y29f{bottom:685.053333pt;}
.y1e3{bottom:686.333333pt;}
.y1c2{bottom:687.453333pt;}
.y261{bottom:687.933333pt;}
.y2d5{bottom:688.413333pt;}
.y12c{bottom:688.573333pt;}
.ye8{bottom:689.053333pt;}
.y37b{bottom:690.493333pt;}
.y75{bottom:691.613333pt;}
.y28b{bottom:692.893333pt;}
.y53{bottom:693.693333pt;}
.yc{bottom:695.133333pt;}
.y242{bottom:698.173333pt;}
.y178{bottom:698.813333pt;}
.y203{bottom:699.773333pt;}
.yc4{bottom:701.373333pt;}
.y33c{bottom:703.453333pt;}
.y8d{bottom:704.413333pt;}
.y1c1{bottom:707.773333pt;}
.y222{bottom:707.933333pt;}
.y260{bottom:708.093333pt;}
.y10b{bottom:717.213333pt;}
.y1e2{bottom:717.533333pt;}
.y29e{bottom:718.493333pt;}
.y74{bottom:718.653333pt;}
.ye6{bottom:719.133333pt;}
.y1a1{bottom:720.413333pt;}
.y52{bottom:720.573333pt;}
.y313{bottom:720.733333pt;}
.y37a{bottom:725.533333pt;}
.y8c{bottom:726.013333pt;}
.y1c0{bottom:727.933333pt;}
.y25f{bottom:728.413333pt;}
.y28a{bottom:728.733333pt;}
.y241{bottom:729.213333pt;}
.y177{bottom:733.693333pt;}
.y12b{bottom:734.173333pt;}
.ya{bottom:734.493333pt;}
.y2c{bottom:734.813333pt;}
.yc3{bottom:734.973333pt;}
.y1e1{bottom:737.533333pt;}
.y202{bottom:738.173333pt;}
.y29d{bottom:738.653333pt;}
.y221{bottom:738.813333pt;}
.y73{bottom:745.533333pt;}
.y316{bottom:747.133333pt;}
.y51{bottom:747.453333pt;}
.y8b{bottom:747.613333pt;}
.y25e{bottom:748.573333pt;}
.y240{bottom:749.373333pt;}
.y36b{bottom:750.013333pt;}
.y10a{bottom:750.653333pt;}
.yc2{bottom:754.973333pt;}
.y176{bottom:755.293333pt;}
.y1e0{bottom:757.853333pt;}
.y2db{bottom:758.493333pt;}
.y220{bottom:758.813333pt;}
.y1bf{bottom:758.973333pt;}
.y2bb{bottom:760.253333pt;}
.y379{bottom:760.573333pt;}
.y289{bottom:762.173333pt;}
.ye5{bottom:764.893333pt;}
.y25d{bottom:769.053333pt;}
.y8a{bottom:769.213333pt;}
.y23f{bottom:769.533333pt;}
.y12a{bottom:770.173333pt;}
.y72{bottom:772.413333pt;}
.y50{bottom:774.333333pt;}
.yc1{bottom:775.293333pt;}
.y14c{bottom:776.413333pt;}
.y175{bottom:776.893333pt;}
.y1df{bottom:778.013333pt;}
.y201{bottom:778.173333pt;}
.y1be{bottom:779.133333pt;}
.y9{bottom:780.733333pt;}
.y288{bottom:782.333333pt;}
.yab{bottom:785.533333pt;}
.y109{bottom:786.333333pt;}
.y23e{bottom:789.853333pt;}
.y129{bottom:790.173333pt;}
.y89{bottom:790.653333pt;}
.ye4{bottom:791.773333pt;}
.y30c{bottom:795.133333pt;}
.y378{bottom:795.773333pt;}
.y2ba{bottom:795.933333pt;}
.y14b{bottom:796.733333pt;}
.y1de{bottom:798.333333pt;}
.y71{bottom:799.293333pt;}
.y200{bottom:799.773333pt;}
.y4f{bottom:801.373333pt;}
.y287{bottom:802.493333pt;}
.y339{bottom:802.653333pt;}
.y2d1{bottom:803.613333pt;}
.y8{bottom:803.773333pt;}
.yc0{bottom:806.333333pt;}
.y19b{bottom:807.293333pt;}
.y174{bottom:809.053333pt;}
.y23d{bottom:810.013333pt;}
.y128{bottom:810.493333pt;}
.ye3{bottom:812.093333pt;}
.y88{bottom:812.253333pt;}
.y25c{bottom:815.333333pt;}
.y149{bottom:816.933333pt;}
.y1dd{bottom:818.533333pt;}
.yaa{bottom:819.013333pt;}
.y1bd{bottom:819.653333pt;}
.y108{bottom:819.813333pt;}
.y14a{bottom:820.933333pt;}
.y1ff{bottom:821.413333pt;}
.y70{bottom:826.213333pt;}
.ybf{bottom:826.373333pt;}
.y28{bottom:827.813333pt;}
.y4e{bottom:828.293333pt;}
.y2b9{bottom:829.413333pt;}
.y376{bottom:829.733333pt;}
.y23c{bottom:830.373333pt;}
.y21f{bottom:830.533333pt;}
.y127{bottom:830.693333pt;}
.ye2{bottom:832.293333pt;}
.y30f{bottom:834.373333pt;}
.y286{bottom:838.213333pt;}
.ya9{bottom:839.173333pt;}
.y107{bottom:839.973333pt;}
.y148{bottom:845.253333pt;}
.ybe{bottom:846.693333pt;}
.y25b{bottom:848.133333pt;}
.y1dc{bottom:849.573333pt;}
.y87{bottom:849.893333pt;}
.y21e{bottom:850.533333pt;}
.y126{bottom:851.013333pt;}
.y173{bottom:852.293333pt;}
.ye1{bottom:852.613333pt;}
.y6f{bottom:853.093333pt;}
.y4d{bottom:855.173333pt;}
.y1fe{bottom:859.013333pt;}
.y1bc{bottom:860.133333pt;}
.y2d0{bottom:860.613333pt;}
.y375{bottom:863.493333pt;}
.y2b8{bottom:865.413333pt;}
.ybd{bottom:866.853333pt;}
.y1db{bottom:869.733333pt;}
.ya8{bottom:870.213333pt;}
.y23b{bottom:870.853333pt;}
.y106{bottom:871.013333pt;}
.y125{bottom:871.173333pt;}
.y86{bottom:871.493333pt;}
.ye0{bottom:872.933333pt;}
.y147{bottom:873.413333pt;}
.y285{bottom:874.693333pt;}
.y6e{bottom:880.133333pt;}
.y1fd{bottom:880.613333pt;}
.y21d{bottom:881.573333pt;}
.y4c{bottom:882.853333pt;}
.y172{bottom:883.173333pt;}
.y2b7{bottom:885.733333pt;}
.y338{bottom:887.653333pt;}
.y1da{bottom:889.893333pt;}
.ya7{bottom:890.213333pt;}
.y2cf{bottom:890.373333pt;}
.y105{bottom:891.013333pt;}
.y1bb{bottom:891.173333pt;}
.y124{bottom:891.493333pt;}
.y85{bottom:893.093333pt;}
.y146{bottom:893.733333pt;}
.y27{bottom:894.373333pt;}
.y374{bottom:897.413333pt;}
.y21c{bottom:901.733333pt;}
.ybc{bottom:902.693333pt;}
.y171{bottom:903.333333pt;}
.y2b6{bottom:905.893333pt;}
.y6d{bottom:907.013333pt;}
.y30b{bottom:908.453333pt;}
.ya6{bottom:910.533333pt;}
.ydf{bottom:911.173333pt;}
.y104{bottom:911.333333pt;}
.y123{bottom:911.653333pt;}
.y144{bottom:913.893333pt;}
.y4b{bottom:914.693333pt;}
.y145{bottom:917.893333pt;}
.y1fc{bottom:918.213333pt;}
.y337{bottom:920.613333pt;}
.y1d9{bottom:921.093333pt;}
.y19a{bottom:921.893333pt;}
.y23a{bottom:922.053333pt;}
.y284{bottom:923.813333pt;}
.y25{bottom:924.133333pt;}
.y2b5{bottom:926.213333pt;}
.y6c{bottom:927.013333pt;}
.y365{bottom:928.293333pt;}
.ya5{bottom:930.693333pt;}
.y373{bottom:931.333333pt;}
.y103{bottom:931.493333pt;}
.y143{bottom:934.213333pt;}
.y170{bottom:934.373333pt;}
.y1fb{bottom:939.653333pt;}
.y199{bottom:942.213333pt;}
.y4a{bottom:943.333333pt;}
.yde{bottom:944.613333pt;}
.y122{bottom:947.493333pt;}
.ybb{bottom:948.293333pt;}
.y102{bottom:951.813333pt;}
.y1d8{bottom:951.973333pt;}
.y6b{bottom:954.213333pt;}
.y142{bottom:954.373333pt;}
.y304{bottom:956.293333pt;}
.y1fa{bottom:961.253333pt;}
.y198{bottom:962.373333pt;}
.y1ba{bottom:962.533333pt;}
.y84{bottom:967.493333pt;}
.y24{bottom:969.253333pt;}
.y49{bottom:971.813333pt;}
.ya4{bottom:972.613333pt;}
.y283{bottom:972.933333pt;}
.y6a{bottom:974.213333pt;}
.ydb{bottom:979.333333pt;}
.ydd{bottom:980.293333pt;}
.y141{bottom:982.693333pt;}
.y101{bottom:982.853333pt;}
.y275{bottom:983.973333pt;}
.y197{bottom:986.693333pt;}
.y22{bottom:993.093333pt;}
.y80{bottom:1001.573333pt;}
.y21{bottom:1011.973333pt;}
.y7f{bottom:1020.293333pt;}
.y6{bottom:1030.720000pt;}
.y7e{bottom:1039.200000pt;}
.y5{bottom:1049.440000pt;}
.y7d{bottom:1057.920000pt;}
.h4f{height:17.120000pt;}
.h50{height:17.152000pt;}
.h51{height:17.280000pt;}
.h30{height:18.720000pt;}
.h57{height:18.880000pt;}
.h34{height:21.120000pt;}
.h35{height:21.280000pt;}
.h33{height:22.080000pt;}
.h31{height:22.560000pt;}
.h5d{height:24.160000pt;}
.h61{height:24.320000pt;}
.h6a{height:25.440000pt;}
.h6d{height:25.600000pt;}
.h1f{height:27.200000pt;}
.h20{height:27.360000pt;}
.h21{height:27.392000pt;}
.h1e{height:28.960000pt;}
.h16{height:29.120000pt;}
.h1d{height:29.152000pt;}
.h42{height:30.071250pt;}
.hb{height:30.400000pt;}
.h10{height:30.432000pt;}
.h13{height:30.560000pt;}
.h12{height:30.592000pt;}
.h44{height:30.912000pt;}
.h1c{height:32.298750pt;}
.h56{height:33.120000pt;}
.h7e{height:33.152000pt;}
.h54{height:33.280000pt;}
.h55{height:33.312000pt;}
.h36{height:34.112000pt;}
.he{height:34.240000pt;}
.h52{height:34.400000pt;}
.h81{height:34.432000pt;}
.h7f{height:34.560000pt;}
.h80{height:34.592000pt;}
.h48{height:36.726562pt;}
.h3b{height:37.310625pt;}
.h2b{height:37.600000pt;}
.h6b{height:38.432000pt;}
.h67{height:41.120000pt;}
.h58{height:41.152000pt;}
.h5c{height:44.480000pt;}
.h72{height:45.152000pt;}
.h43{height:46.220625pt;}
.h78{height:46.635625pt;}
.h1b{height:46.720000pt;}
.h65{height:47.040000pt;}
.h62{height:47.200000pt;}
.h6f{height:47.232000pt;}
.h1a{height:50.112000pt;}
.h4a{height:50.240000pt;}
.h4d{height:50.400000pt;}
.h38{height:50.560000pt;}
.h45{height:51.040000pt;}
.h46{height:51.200000pt;}
.h29{height:51.232500pt;}
.h4b{height:51.520000pt;}
.h63{height:51.552000pt;}
.h28{height:51.680000pt;}
.h32{height:51.692500pt;}
.h5a{height:52.134375pt;}
.h37{height:52.960000pt;}
.h39{height:54.400000pt;}
.h8{height:55.687500pt;}
.h3a{height:56.187500pt;}
.h4e{height:57.787500pt;}
.h53{height:58.080000pt;}
.h9{height:58.563750pt;}
.h59{height:59.340000pt;}
.h2f{height:60.519362pt;}
.h3e{height:61.280000pt;}
.hd{height:63.656250pt;}
.h70{height:64.640000pt;}
.h69{height:64.672000pt;}
.h3{height:64.974331pt;}
.h23{height:65.154375pt;}
.hc{height:65.531250pt;}
.h22{height:65.739375pt;}
.h2e{height:65.781915pt;}
.h17{height:65.920000pt;}
.h14{height:66.400000pt;}
.h73{height:68.640000pt;}
.h66{height:68.832000pt;}
.h7c{height:69.120000pt;}
.h75{height:69.152000pt;}
.h5{height:72.627364pt;}
.h6c{height:73.600000pt;}
.ha{height:74.064375pt;}
.h40{height:74.080000pt;}
.h15{height:74.477812pt;}
.h3d{height:75.872000pt;}
.hf{height:76.671562pt;}
.h2d{height:77.951250pt;}
.h11{height:78.080000pt;}
.h7d{height:81.760000pt;}
.h79{height:81.792000pt;}
.h77{height:82.560000pt;}
.h74{height:84.960000pt;}
.h19{height:85.280000pt;}
.h49{height:85.920000pt;}
.h2c{height:88.611250pt;}
.h71{height:90.432000pt;}
.h18{height:92.352000pt;}
.h25{height:93.833125pt;}
.h41{height:94.400000pt;}
.h3f{height:94.592000pt;}
.h68{height:95.040000pt;}
.h5f{height:95.872000pt;}
.h24{height:98.240000pt;}
.h76{height:98.560000pt;}
.h7b{height:98.592000pt;}
.h47{height:100.832000pt;}
.h4c{height:103.232000pt;}
.h26{height:111.263750pt;}
.h3c{height:113.280000pt;}
.h5b{height:114.560000pt;}
.h5e{height:145.626667pt;}
.h64{height:164.346667pt;}
.h4{height:167.946124pt;}
.h7a{height:179.066667pt;}
.h60{height:219.066667pt;}
.h6e{height:253.786667pt;}
.h27{height:273.946667pt;}
.h2a{height:273.986667pt;}
.h7{height:1122.000000pt;}
.h6{height:1122.240000pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2f{width:53.952000pt;}
.w2b{width:54.080000pt;}
.w2c{width:54.112000pt;}
.w23{width:65.760000pt;}
.w7{width:73.920000pt;}
.w8{width:75.040000pt;}
.w31{width:93.440000pt;}
.w9{width:94.912000pt;}
.w13{width:97.600000pt;}
.w29{width:108.672000pt;}
.wf{width:111.552000pt;}
.w25{width:113.632000pt;}
.w27{width:113.792000pt;}
.w2d{width:123.200000pt;}
.w33{width:124.352000pt;}
.wc{width:136.320000pt;}
.wb{width:156.826667pt;}
.w1a{width:167.066667pt;}
.w17{width:178.906667pt;}
.w1f{width:184.026667pt;}
.w11{width:189.946667pt;}
.wa{width:197.466667pt;}
.wd{width:204.546667pt;}
.w20{width:205.146667pt;}
.w12{width:205.946667pt;}
.w10{width:206.106667pt;}
.w4{width:206.586667pt;}
.w30{width:208.666667pt;}
.w14{width:226.746667pt;}
.w21{width:231.226667pt;}
.w1d{width:232.506667pt;}
.we{width:258.586667pt;}
.w15{width:274.786667pt;}
.w2e{width:289.186667pt;}
.w1c{width:367.586667pt;}
.w5{width:393.186667pt;}
.w32{width:395.426667pt;}
.w2a{width:413.026667pt;}
.w24{width:416.706667pt;}
.w22{width:437.346667pt;}
.w16{width:442.306667pt;}
.w1b{width:453.986667pt;}
.w26{width:457.826667pt;}
.w28{width:459.746667pt;}
.w6{width:600.253333pt;}
.w19{width:622.173333pt;}
.w1e{width:622.333333pt;}
.w18{width:793.919976pt;}
.w3{width:793.919988pt;}
.w2{width:793.920000pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.440000pt;}
.x8{left:6.560000pt;}
.x41{left:8.800000pt;}
.x43{left:10.560000pt;}
.x4b{left:11.520000pt;}
.x22{left:14.080000pt;}
.x45{left:16.960000pt;}
.x42{left:18.080000pt;}
.x44{left:19.840000pt;}
.x3f{left:22.400000pt;}
.x40{left:24.320000pt;}
.x34{left:45.440000pt;}
.x15{left:50.560000pt;}
.x46{left:67.994667pt;}
.x2{left:79.399990pt;}
.x1{left:82.280291pt;}
.x48{left:87.520000pt;}
.x4{left:96.031988pt;}
.x7{left:96.992000pt;}
.x1e{left:98.432000pt;}
.x2c{left:100.831988pt;}
.x2d{left:101.951988pt;}
.x4a{left:104.314667pt;}
.x1a{left:107.391988pt;}
.x11{left:110.751988pt;}
.x1b{left:114.911988pt;}
.x32{left:116.314667pt;}
.x16{left:120.031988pt;}
.x12{left:125.311988pt;}
.x13{left:140.026655pt;}
.x1c{left:144.026655pt;}
.x4c{left:152.026655pt;}
.xa{left:159.226655pt;}
.x36{left:164.346667pt;}
.x1d{left:168.026655pt;}
.xb{left:171.226667pt;}
.x2a{left:179.714667pt;}
.x21{left:186.906655pt;}
.x4d{left:190.746667pt;}
.x2e{left:192.026655pt;}
.x1f{left:197.306667pt;}
.x17{left:207.234667pt;}
.x3e{left:220.506667pt;}
.x27{left:230.114667pt;}
.xf{left:233.626667pt;}
.xc{left:246.906667pt;}
.x2b{left:265.186667pt;}
.x25{left:281.986643pt;}
.x26{left:287.906655pt;}
.x18{left:302.146667pt;}
.x9{left:304.546667pt;}
.x47{left:306.146667pt;}
.x28{left:311.074667pt;}
.xd{left:342.466667pt;}
.x23{left:348.866643pt;}
.x24{left:354.786655pt;}
.x30{left:375.426643pt;}
.x31{left:381.346655pt;}
.x6{left:397.026655pt;}
.x20{left:425.346667pt;}
.x10{left:438.813333pt;}
.x2f{left:464.893333pt;}
.x33{left:488.093333pt;}
.x19{left:492.093333pt;}
.x3a{left:510.493333pt;}
.x49{left:515.453333pt;}
.x5{left:536.093322pt;}
.xe{left:540.573333pt;}
.x38{left:556.413333pt;}
.x39{left:558.493333pt;}
.x3b{left:565.213333pt;}
.x37{left:582.493333pt;}
.x4e{left:586.813333pt;}
.x3c{left:619.973333pt;}
.x3d{left:674.693333pt;}
.x14{left:681.733333pt;}
.x3{left:698.053322pt;}
.x35{left:700.453322pt;}
}




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