
    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_1f434e96bc8c84613f7fcf4f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_368214ebd824f454e6093b1b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090820;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_72f9db987a2fc89262d08f37.woff')format("woff");}.ff3{font-family:ff3;line-height:1.019531;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_1fda8af476a4bf0194410846.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_8b829557f552f6a47eb02a58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_43b2de62ae83d3f9837839b5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_8587724e54e00e273a48479e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_9667fbd5e8cd9b81d01e73f7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_26a821c77c9ed62026bfc531.woff')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_f5bc3f4db434a97ada3f965d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_d49808613c110ca2041c33c3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_d4bf252c6622f673fa6f7359.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922363;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.500000px;}
.v1{vertical-align:22.000020px;}
.v3{vertical-align:27.132960px;}
.v7{vertical-align:28.199940px;}
.v4{vertical-align:30.466800px;}
.v6{vertical-align:46.199940px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000060px;}
.ls0{letter-spacing:0.049500px;}
.ls7{letter-spacing:161.819220px;}
.ls4{letter-spacing:231.262560px;}
.ls6{letter-spacing:232.104015px;}
.ls5{letter-spacing:232.104075px;}
.ls3{letter-spacing:1752.182940px;}
.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;}
}
.ws3{word-spacing:-23.232000px;}
.wsc{word-spacing:-21.696000px;}
.ws4e{word-spacing:-18.984000px;}
.ws6{word-spacing:-17.628000px;}
.wse{word-spacing:-15.840000px;}
.ws0{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.890000px;}
.wsb{word-spacing:-10.560000px;}
.ws4{word-spacing:-8.910000px;}
.ws10{word-spacing:-0.096000px;}
.wsd{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.066000px;}
.ws8{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws16{word-spacing:-0.049500px;}
.wsa{word-spacing:0.000000px;}
.ws4b{word-spacing:13.083780px;}
.ws38{word-spacing:13.161600px;}
.ws43{word-spacing:13.161660px;}
.ws49{word-spacing:13.163820px;}
.ws2e{word-spacing:13.211100px;}
.ws4a{word-spacing:16.853760px;}
.ws2d{word-spacing:25.409220px;}
.ws37{word-spacing:25.458720px;}
.ws4c{word-spacing:57.940380px;}
.ws36{word-spacing:67.463100px;}
.ws2c{word-spacing:67.512540px;}
.ws22{word-spacing:82.215000px;}
.ws1e{word-spacing:82.264500px;}
.ws2b{word-spacing:82.956660px;}
.ws1d{word-spacing:93.228000px;}
.ws1{word-spacing:108.533700px;}
.ws2{word-spacing:108.553620px;}
.ws28{word-spacing:118.754160px;}
.ws2a{word-spacing:118.754220px;}
.ws3b{word-spacing:119.784660px;}
.ws3d{word-spacing:128.001660px;}
.ws26{word-spacing:132.465720px;}
.ws3a{word-spacing:133.496160px;}
.ws18{word-spacing:134.630940px;}
.ws42{word-spacing:138.990600px;}
.ws2f{word-spacing:138.990660px;}
.ws31{word-spacing:141.713160px;}
.ws1a{word-spacing:142.138500px;}
.ws11{word-spacing:145.512000px;}
.ws30{word-spacing:147.207660px;}
.ws24{word-spacing:148.831260px;}
.ws3e{word-spacing:152.702160px;}
.ws47{word-spacing:160.919160px;}
.ws3f{word-spacing:160.919220px;}
.ws23{word-spacing:162.542760px;}
.ws21{word-spacing:168.511500px;}
.ws19{word-spacing:168.561000px;}
.ws32{word-spacing:201.657600px;}
.ws3c{word-spacing:215.319600px;}
.ws33{word-spacing:215.369100px;}
.ws20{word-spacing:224.749500px;}
.ws1f{word-spacing:258.756000px;}
.ws1c{word-spacing:269.491440px;}
.ws1b{word-spacing:269.491500px;}
.ws13{word-spacing:278.087040px;}
.ws14{word-spacing:305.509980px;}
.ws15{word-spacing:305.559540px;}
.ws25{word-spacing:326.607780px;}
.ws27{word-spacing:377.097780px;}
.ws17{word-spacing:453.978000px;}
.ws29{word-spacing:702.000120px;}
.ws45{word-spacing:837.018960px;}
.ws44{word-spacing:924.336960px;}
.ws46{word-spacing:1010.466960px;}
.ws41{word-spacing:1010.862960px;}
.ws40{word-spacing:1029.623460px;}
.ws34{word-spacing:1080.360900px;}
.ws39{word-spacing:1109.070960px;}
.ws35{word-spacing:1180.647960px;}
.ws48{word-spacing:1710.399000px;}
.ws4d{word-spacing:2025.339180px;}
.ws50{word-spacing:2025.343920px;}
.ws4f{word-spacing:2025.352380px;}
.wsf{word-spacing:2055.205920px;}
.ws12{word-spacing:2055.208440px;}
._8a{margin-left:-9.904200px;}
._89{margin-left:-8.892360px;}
._1e{margin-left:-7.794120px;}
._1{margin-left:-6.696000px;}
._f{margin-left:-5.278320px;}
._d{margin-left:-3.293880px;}
._0{margin-left:-1.512000px;}
._4{width:1.440000px;}
._c{width:3.111840px;}
._8{width:4.187940px;}
._5{width:5.482080px;}
._6{width:7.053960px;}
._7{width:8.224860px;}
._9{width:9.430260px;}
._e{width:10.820640px;}
._a{width:12.789780px;}
._19{width:14.452680px;}
._17{width:17.168940px;}
._b{width:18.862620px;}
._16{width:20.340120px;}
._3{width:21.462720px;}
._10{width:23.045580px;}
._2{width:24.337500px;}
._12{width:26.108040px;}
._13{width:27.169920px;}
._18{width:28.349340px;}
._14{width:29.487240px;}
._15{width:30.496080px;}
._11{width:32.437320px;}
._1b{width:34.053360px;}
._88{width:35.331120px;}
._8b{width:37.008000px;}
._1d{width:39.888120px;}
._1c{width:40.967940px;}
._8c{width:42.120000px;}
._33{width:49.727340px;}
._8d{width:50.786640px;}
._32{width:57.770220px;}
._4e{width:65.532660px;}
._39{width:66.671160px;}
._82{width:83.377200px;}
._4d{width:93.797100px;}
._81{width:106.871520px;}
._7f{width:110.282760px;}
._38{width:111.518100px;}
._80{width:116.942820px;}
._83{width:120.583020px;}
._86{width:128.764800px;}
._31{width:139.317000px;}
._2f{width:153.028500px;}
._2a{width:154.939620px;}
._29{width:159.601500px;}
._1a{width:161.352000px;}
._37{width:172.492260px;}
._2d{width:174.418500px;}
._85{width:182.670720px;}
._24{width:184.164000px;}
._6b{width:186.708600px;}
._23{width:187.718880px;}
._27{width:189.175620px;}
._75{width:194.925600px;}
._26{width:198.535500px;}
._3e{width:200.441160px;}
._7e{width:205.741140px;}
._43{width:208.658220px;}
._64{width:212.547600px;}
._41{width:214.152660px;}
._36{width:219.377820px;}
._46{width:222.369720px;}
._3c{width:226.259100px;}
._3d{width:236.109600px;}
._28{width:240.566880px;}
._3b{width:245.019660px;}
._25{width:246.378360px;}
._2c{width:248.128860px;}
._30{width:256.531500px;}
._4a{width:262.295160px;}
._49{width:263.532540px;}
._2e{width:270.892200px;}
._21{width:288.607980px;}
._2b{width:290.177940px;}
._7d{width:307.917960px;}
._1f{width:315.756480px;}
._22{width:317.357520px;}
._35{width:327.334620px;}
._7c{width:329.472900px;}
._20{width:344.137020px;}
._76{width:351.405900px;}
._78{width:368.006340px;}
._6f{width:373.406400px;}
._84{width:393.890640px;}
._70{width:410.531400px;}
._7b{width:477.648900px;}
._87{width:494.771640px;}
._79{width:508.586460px;}
._59{width:525.128040px;}
._51{width:526.554900px;}
._58{width:549.032280px;}
._7a{width:560.709960px;}
._50{width:575.955900px;}
._34{width:580.081620px;}
._55{width:587.687460px;}
._6a{width:599.319960px;}
._4f{width:607.734960px;}
._6e{width:612.140460px;}
._74{width:640.112400px;}
._67{width:650.106960px;}
._47{width:655.560960px;}
._5b{width:663.624720px;}
._54{width:671.567460px;}
._57{width:681.273780px;}
._5a{width:683.919780px;}
._72{width:699.561960px;}
._69{width:723.443400px;}
._5c{width:732.776340px;}
._53{width:736.016400px;}
._52{width:737.253960px;}
._6d{width:738.491460px;}
._5e{width:741.560460px;}
._63{width:742.820400px;}
._68{width:760.991460px;}
._40{width:792.077520px;}
._61{width:793.684020px;}
._5f{width:803.111520px;}
._42{width:821.403960px;}
._5d{width:823.186020px;}
._48{width:831.799020px;}
._3a{width:835.191960px;}
._62{width:839.471520px;}
._65{width:852.759900px;}
._71{width:853.903020px;}
._60{width:858.006960px;}
._3f{width:865.017960px;}
._56{width:874.589460px;}
._66{width:890.082960px;}
._4b{width:919.760340px;}
._45{width:941.414460px;}
._77{width:946.071960px;}
._6c{width:961.659960px;}
._44{width:987.053460px;}
._4c{width:991.859340px;}
._73{width:995.913960px;}
.fc1{color:rgb(1,101,172);}
.fc2{color:rgb(172,172,172);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:37.125000px;}
.fs6{font-size:40.500000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:38.845560px;}
.y60{bottom:38.845575px;}
.y20{bottom:40.110840px;}
.y131{bottom:45.628815px;}
.y8d{bottom:45.628860px;}
.y2f{bottom:53.245560px;}
.y5f{bottom:53.245590px;}
.y1f{bottom:56.310840px;}
.y1e{bottom:102.135090px;}
.y1c4{bottom:136.763805px;}
.y5e{bottom:140.963670px;}
.y1b2{bottom:143.514285px;}
.y8c{bottom:145.763820px;}
.ye0{bottom:146.363730px;}
.y1e1{bottom:153.563685px;}
.y1c3{bottom:158.363835px;}
.y5d{bottom:162.563700px;}
.y20f{bottom:164.963820px;}
.y1b1{bottom:165.114315px;}
.y17b{bottom:167.352225px;}
.y8b{bottom:167.363850px;}
.ydf{bottom:167.963760px;}
.y15f{bottom:170.801595px;}
.y100{bottom:171.476715px;}
.y19c{bottom:172.002105px;}
.y130{bottom:174.852300px;}
.y1e0{bottom:175.163715px;}
.y1c2{bottom:179.963865px;}
.y235{bottom:183.263835px;}
.y5c{bottom:184.163730px;}
.y20e{bottom:186.563850px;}
.y1b0{bottom:186.714345px;}
.y8a{bottom:188.963880px;}
.yde{bottom:189.563790px;}
.y12f{bottom:189.702300px;}
.yff{bottom:193.076715px;}
.y1df{bottom:196.763745px;}
.y17a{bottom:197.202225px;}
.y15e{bottom:200.651595px;}
.y1e8{bottom:201.563895px;}
.y19b{bottom:201.852135px;}
.y234{bottom:204.863865px;}
.y5b{bottom:205.763760px;}
.y1af{bottom:208.314375px;}
.yb1{bottom:208.763880px;}
.y89{bottom:210.563910px;}
.ydd{bottom:211.163820px;}
.yfe{bottom:214.676715px;}
.y20d{bottom:215.663880px;}
.y1de{bottom:218.363775px;}
.y12e{bottom:219.552270px;}
.y233{bottom:226.463895px;}
.y179{bottom:227.052210px;}
.y5a{bottom:227.363790px;}
.y1ae{bottom:229.914405px;}
.yb0{bottom:230.363910px;}
.y15c{bottom:230.501595px;}
.y19a{bottom:231.702180px;}
.y88{bottom:232.163940px;}
.ydc{bottom:232.763850px;}
.y1e7{bottom:233.114895px;}
.y12d{bottom:234.402270px;}
.yfd{bottom:236.276715px;}
.y20c{bottom:237.263910px;}
.y1dd{bottom:239.963805px;}
.y232{bottom:248.063925px;}
.y59{bottom:248.963820px;}
.y1c1{bottom:250.001685px;}
.y1ad{bottom:251.514435px;}
.yaf{bottom:251.963940px;}
.y87{bottom:253.763970px;}
.ydb{bottom:254.363880px;}
.y178{bottom:256.902210px;}
.yfc{bottom:257.876715px;}
.y20b{bottom:258.863940px;}
.y15d{bottom:260.351595px;}
.y199{bottom:261.552210px;}
.y1dc{bottom:261.563835px;}
.y12c{bottom:264.252255px;}
.y58{bottom:270.563850px;}
.yae{bottom:273.563970px;}
.y86{bottom:275.364000px;}
.yda{bottom:275.963910px;}
.y231{bottom:277.163955px;}
.y12b{bottom:279.102255px;}
.yfb{bottom:279.476715px;}
.y1c0{bottom:279.851700px;}
.y1db{bottom:283.163865px;}
.y177{bottom:286.752195px;}
.y20a{bottom:287.963970px;}
.y15b{bottom:290.201610px;}
.y198{bottom:291.402240px;}
.y57{bottom:292.163880px;}
.y1e6{bottom:292.163940px;}
.yad{bottom:295.164000px;}
.y85{bottom:296.964030px;}
.yd9{bottom:297.563940px;}
.y230{bottom:298.763985px;}
.yfa{bottom:301.076730px;}
.y1da{bottom:304.763895px;}
.y12a{bottom:308.952225px;}
.y209{bottom:309.564000px;}
.y1bf{bottom:309.701700px;}
.y56{bottom:313.763910px;}
.y1e5{bottom:313.763970px;}
.y176{bottom:316.602180px;}
.yac{bottom:316.764030px;}
.y15a{bottom:317.426610px;}
.y84{bottom:318.564060px;}
.yd8{bottom:319.163970px;}
.y22f{bottom:320.364015px;}
.y197{bottom:321.252285px;}
.y1ac{bottom:321.552300px;}
.yf9{bottom:322.676730px;}
.y129{bottom:323.802225px;}
.y1d9{bottom:326.363925px;}
.y208{bottom:331.164030px;}
.y55{bottom:335.363940px;}
.y1e4{bottom:335.364000px;}
.yab{bottom:338.364060px;}
.y1be{bottom:339.551700px;}
.y83{bottom:340.164090px;}
.y159{bottom:340.526580px;}
.yd7{bottom:340.764000px;}
.yf8{bottom:344.276730px;}
.y175{bottom:346.452180px;}
.y1d8{bottom:347.963955px;}
.y22e{bottom:349.464045px;}
.y196{bottom:351.102315px;}
.y1ab{bottom:351.402345px;}
.y207{bottom:352.764060px;}
.y127{bottom:353.652255px;}
.y54{bottom:356.963970px;}
.yaa{bottom:359.964090px;}
.y1d{bottom:361.715670px;}
.y82{bottom:361.764120px;}
.yd6{bottom:362.364030px;}
.y1bd{bottom:366.776670px;}
.y1e3{bottom:366.915000px;}
.yf7{bottom:367.376700px;}
.y128{bottom:368.502240px;}
.y126{bottom:368.502255px;}
.y1d7{bottom:369.563985px;}
.y158{bottom:369.764910px;}
.y22d{bottom:371.064075px;}
.y174{bottom:376.302165px;}
.y53{bottom:378.564000px;}
.y195{bottom:380.952360px;}
.y1aa{bottom:381.252375px;}
.y1c{bottom:381.515685px;}
.y206{bottom:381.864090px;}
.y125{bottom:383.352255px;}
.y81{bottom:383.364150px;}
.yd5{bottom:383.964060px;}
.y1d6{bottom:391.164015px;}
.y22c{bottom:392.664105px;}
.y1bc{bottom:396.015030px;}
.yf6{bottom:396.615030px;}
.ya9{bottom:399.564120px;}
.y52{bottom:400.164075px;}
.y1b{bottom:401.315700px;}
.y205{bottom:403.464075px;}
.y80{bottom:404.964180px;}
.yd4{bottom:405.564090px;}
.y173{bottom:406.152180px;}
.y194{bottom:410.802345px;}
.y1a9{bottom:411.102360px;}
.y157{bottom:412.313955px;}
.y1d5{bottom:412.764045px;}
.y124{bottom:413.202240px;}
.y1e2{bottom:416.964045px;}
.y1a{bottom:421.115715px;}
.ya8{bottom:421.164150px;}
.y51{bottom:421.764105px;}
.y22b{bottom:421.764135px;}
.y204{bottom:425.064105px;}
.y7f{bottom:426.564210px;}
.yd3{bottom:427.164120px;}
.y123{bottom:428.052240px;}
.y156{bottom:433.913985px;}
.y1d4{bottom:434.364075px;}
.y24c{bottom:435.864120px;}
.y172{bottom:436.002180px;}
.y1bb{bottom:438.564075px;}
.yf5{bottom:439.164120px;}
.y193{bottom:440.652345px;}
.y19{bottom:440.915730px;}
.y1a8{bottom:440.952360px;}
.ya7{bottom:442.764180px;}
.y50{bottom:443.364135px;}
.y22a{bottom:443.364165px;}
.y7e{bottom:448.164240px;}
.yd2{bottom:448.764150px;}
.y203{bottom:454.164135px;}
.y155{bottom:455.514015px;}
.y1d3{bottom:455.964105px;}
.y24b{bottom:457.464150px;}
.y122{bottom:457.902225px;}
.y1ba{bottom:460.164105px;}
.y18{bottom:460.715730px;}
.yf4{bottom:460.764150px;}
.y4f{bottom:464.964165px;}
.y229{bottom:464.964195px;}
.y171{bottom:465.852180px;}
.ya6{bottom:467.364210px;}
.y7d{bottom:469.764270px;}
.yd1{bottom:470.364180px;}
.y192{bottom:470.502330px;}
.y1a7{bottom:470.802345px;}
.y121{bottom:472.752225px;}
.y202{bottom:475.764165px;}
.y154{bottom:477.114045px;}
.y1d2{bottom:477.564135px;}
.y24a{bottom:479.064180px;}
.y17{bottom:480.515730px;}
.y1b9{bottom:481.764135px;}
.yf3{bottom:482.364180px;}
.y4e{bottom:486.564195px;}
.ya5{bottom:488.964240px;}
.y7c{bottom:491.364300px;}
.yd0{bottom:491.964210px;}
.y228{bottom:494.064225px;}
.y170{bottom:495.702195px;}
.y201{bottom:497.364195px;}
.y153{bottom:498.714075px;}
.y1d1{bottom:499.164165px;}
.y16{bottom:500.315730px;}
.y191{bottom:500.352315px;}
.y1a6{bottom:500.652345px;}
.y120{bottom:502.602195px;}
.y1b8{bottom:503.364165px;}
.yf2{bottom:503.964210px;}
.y249{bottom:508.164210px;}
.y4d{bottom:508.164225px;}
.ycf{bottom:513.564240px;}
.ya4{bottom:513.564270px;}
.y227{bottom:515.664255px;}
.y11f{bottom:517.452195px;}
.y15{bottom:520.115730px;}
.y152{bottom:520.314105px;}
.y1d0{bottom:520.764195px;}
.y7b{bottom:522.165300px;}
.y1b7{bottom:524.964195px;}
.y16f{bottom:525.552195px;}
.yf1{bottom:525.564240px;}
.y200{bottom:526.464225px;}
.y248{bottom:529.764240px;}
.y4c{bottom:529.764255px;}
.y190{bottom:530.202315px;}
.y1a5{bottom:530.502315px;}
.yce{bottom:535.164270px;}
.ya3{bottom:535.164300px;}
.y226{bottom:537.264285px;}
.y14{bottom:539.915730px;}
.y151{bottom:541.914135px;}
.y1cf{bottom:542.364225px;}
.y1a4{bottom:545.352315px;}
.y1b6{bottom:546.564225px;}
.yf0{bottom:547.164270px;}
.y11d{bottom:547.302195px;}
.y1ff{bottom:548.064255px;}
.y247{bottom:551.364270px;}
.y4b{bottom:551.364285px;}
.y16e{bottom:552.777195px;}
.ycd{bottom:556.764300px;}
.y225{bottom:558.864315px;}
.y13{bottom:559.715730px;}
.ya2{bottom:559.764330px;}
.y18f{bottom:560.052300px;}
.y11e{bottom:562.152180px;}
.y11c{bottom:562.152195px;}
.y150{bottom:563.514165px;}
.y1ce{bottom:563.964255px;}
.y1b5{bottom:568.164255px;}
.yef{bottom:568.764300px;}
.y1fe{bottom:569.664285px;}
.y246{bottom:572.964300px;}
.y4a{bottom:572.964315px;}
.y7a{bottom:573.165300px;}
.y16d{bottom:574.377165px;}
.y1a3{bottom:575.202300px;}
.y11b{bottom:577.002195px;}
.ycc{bottom:578.364330px;}
.y12{bottom:579.515730px;}
.ya1{bottom:581.364360px;}
.y14f{bottom:585.114195px;}
.y1cd{bottom:585.564285px;}
.y224{bottom:587.964345px;}
.y1b4{bottom:589.764285px;}
.y18e{bottom:589.902285px;}
.y1a2{bottom:590.052300px;}
.yee{bottom:590.364330px;}
.y1fd{bottom:591.264315px;}
.y49{bottom:594.564345px;}
.y11{bottom:599.315730px;}
.ycb{bottom:599.964360px;}
.y245{bottom:602.064330px;}
.y16c{bottom:603.615405px;}
.y14e{bottom:606.714225px;}
.y11a{bottom:606.852210px;}
.y1cc{bottom:607.164315px;}
.y223{bottom:609.564375px;}
.y1b3{bottom:611.364315px;}
.yed{bottom:611.964360px;}
.y48{bottom:616.164375px;}
.y18d{bottom:619.752285px;}
.y1a1{bottom:619.902285px;}
.y1fc{bottom:620.364345px;}
.y10{bottom:620.924955px;}
.ya0{bottom:620.964390px;}
.yca{bottom:621.564390px;}
.y119{bottom:621.702210px;}
.y244{bottom:623.664360px;}
.y14d{bottom:628.314255px;}
.y1cb{bottom:628.764345px;}
.y222{bottom:631.164405px;}
.y79{bottom:632.964345px;}
.yec{bottom:633.564390px;}
.y47{bottom:637.764405px;}
.y1fb{bottom:641.964375px;}
.y9f{bottom:642.564420px;}
.yc9{bottom:643.164420px;}
.y243{bottom:645.264390px;}
.y16b{bottom:646.164450px;}
.y18c{bottom:649.602270px;}
.y1a0{bottom:649.752285px;}
.y14c{bottom:649.914285px;}
.y1ca{bottom:650.364375px;}
.y118{bottom:651.552210px;}
.y221{bottom:652.764435px;}
.y78{bottom:654.564375px;}
.yeb{bottom:655.164420px;}
.y46{bottom:659.364435px;}
.yf{bottom:660.632490px;}
.y1fa{bottom:663.564405px;}
.y9e{bottom:664.164450px;}
.yc8{bottom:664.764450px;}
.y16a{bottom:667.764480px;}
.y14b{bottom:671.514315px;}
.y1c9{bottom:671.964405px;}
.y242{bottom:674.364420px;}
.y77{bottom:676.164405px;}
.yea{bottom:676.764450px;}
.y18b{bottom:679.452270px;}
.y19f{bottom:679.602270px;}
.y45{bottom:680.964465px;}
.y117{bottom:681.402225px;}
.y220{bottom:681.864465px;}
.y1f9{bottom:685.164435px;}
.y9d{bottom:685.764480px;}
.yc7{bottom:686.364480px;}
.y14a{bottom:693.114345px;}
.y1c8{bottom:693.564435px;}
.y19e{bottom:694.452270px;}
.y241{bottom:695.964450px;}
.y116{bottom:696.252225px;}
.ye{bottom:697.115745px;}
.y76{bottom:697.764435px;}
.ye9{bottom:698.364480px;}
.y169{bottom:698.565480px;}
.y44{bottom:702.564495px;}
.y21f{bottom:703.464495px;}
.y114{bottom:703.752210px;}
.y1f8{bottom:706.764465px;}
.yc6{bottom:707.964510px;}
.y18a{bottom:709.302255px;}
.y149{bottom:714.714375px;}
.y1c7{bottom:715.164465px;}
.y9c{bottom:716.565480px;}
.y240{bottom:717.564480px;}
.y75{bottom:719.364465px;}
.ye8{bottom:719.964510px;}
.yd{bottom:721.415760px;}
.y43{bottom:724.164525px;}
.y19d{bottom:724.302240px;}
.y21e{bottom:725.064525px;}
.y115{bottom:726.102210px;}
.y1f7{bottom:728.364495px;}
.yc5{bottom:729.564540px;}
.y148{bottom:736.314405px;}
.y1c6{bottom:736.764495px;}
.y189{bottom:739.152240px;}
.y74{bottom:740.964495px;}
.yc{bottom:745.715775px;}
.y42{bottom:745.764555px;}
.y23f{bottom:746.664510px;}
.ye7{bottom:750.765510px;}
.yc4{bottom:751.164570px;}
.y21d{bottom:754.164555px;}
.y113{bottom:755.952225px;}
.y1f6{bottom:757.464525px;}
.y147{bottom:757.914435px;}
.y168{bottom:758.364525px;}
.y73{bottom:762.564525px;}
.y41{bottom:767.364585px;}
.y23e{bottom:768.264540px;}
.y188{bottom:769.002240px;}
.y112{bottom:770.802225px;}
.yc3{bottom:772.764600px;}
.y21c{bottom:775.764585px;}
.y9b{bottom:776.364525px;}
.y110{bottom:778.302210px;}
.y1f5{bottom:779.064555px;}
.y146{bottom:779.514465px;}
.y167{bottom:779.964555px;}
.yb{bottom:782.549265px;}
.y72{bottom:784.164585px;}
.y40{bottom:788.964570px;}
.y23d{bottom:789.864555px;}
.yc2{bottom:794.364585px;}
.y21b{bottom:797.364555px;}
.y9a{bottom:797.964540px;}
.y187{bottom:798.852225px;}
.y111{bottom:800.652210px;}
.y1f4{bottom:800.664540px;}
.y145{bottom:801.114450px;}
.ye6{bottom:801.564525px;}
.ya{bottom:803.249250px;}
.y71{bottom:805.764570px;}
.y3f{bottom:810.564555px;}
.y9{bottom:815.714340px;}
.yc1{bottom:815.964570px;}
.y23c{bottom:818.964540px;}
.y99{bottom:819.564525px;}
.y144{bottom:822.714435px;}
.ye5{bottom:823.164510px;}
.y21a{bottom:826.464540px;}
.y70{bottom:827.364555px;}
.y10f{bottom:827.877225px;}
.y10d{bottom:827.877240px;}
.y186{bottom:828.702225px;}
.y1f3{bottom:829.764525px;}
.y3e{bottom:832.164540px;}
.y1c5{bottom:832.365495px;}
.y8{bottom:835.514370px;}
.yc0{bottom:837.564555px;}
.y23b{bottom:840.564525px;}
.y98{bottom:841.164510px;}
.y10e{bottom:842.727225px;}
.y10c{bottom:842.727240px;}
.y143{bottom:844.314420px;}
.ye4{bottom:844.764495px;}
.y109{bottom:846.102225px;}
.y219{bottom:848.064525px;}
.y6f{bottom:848.964540px;}
.y1f2{bottom:851.364510px;}
.y3d{bottom:853.764525px;}
.y185{bottom:858.552210px;}
.ybf{bottom:859.164540px;}
.y108{bottom:860.952225px;}
.y23a{bottom:862.164510px;}
.y97{bottom:862.764495px;}
.y10b{bottom:864.327225px;}
.y142{bottom:865.914405px;}
.ye3{bottom:866.364480px;}
.y218{bottom:869.664510px;}
.y6e{bottom:870.564525px;}
.y1f1{bottom:872.964495px;}
.y3c{bottom:875.364510px;}
.y10a{bottom:879.177225px;}
.ybe{bottom:880.764525px;}
.y141{bottom:887.514390px;}
.ye2{bottom:887.964465px;}
.y184{bottom:888.402195px;}
.y217{bottom:891.264495px;}
.y6d{bottom:892.164510px;}
.y2e{bottom:892.881105px;}
.y1f0{bottom:894.564480px;}
.y3b{bottom:896.964495px;}
.y96{bottom:902.364480px;}
.ybd{bottom:902.364510px;}
.y7{bottom:904.079310px;}
.y107{bottom:908.415420px;}
.y140{bottom:909.114375px;}
.y166{bottom:909.564450px;}
.y2d{bottom:912.681120px;}
.y239{bottom:912.864480px;}
.y6c{bottom:913.764495px;}
.y183{bottom:918.252195px;}
.y3a{bottom:918.564480px;}
.ye1{bottom:918.765435px;}
.y216{bottom:920.364480px;}
.y1ef{bottom:923.664465px;}
.ybc{bottom:923.964495px;}
.y6{bottom:925.079325px;}
.y95{bottom:926.964465px;}
.y165{bottom:931.164435px;}
.y2c{bottom:932.481135px;}
.y238{bottom:934.464465px;}
.y6b{bottom:935.364480px;}
.y39{bottom:940.164465px;}
.y215{bottom:941.964465px;}
.y1ee{bottom:945.264450px;}
.ybb{bottom:945.564480px;}
.y182{bottom:948.102180px;}
.y106{bottom:950.964435px;}
.y94{bottom:951.564450px;}
.y5{bottom:951.959205px;}
.y2b{bottom:952.281150px;}
.y164{bottom:952.764420px;}
.y6a{bottom:956.964465px;}
.y38{bottom:961.764450px;}
.y214{bottom:963.564450px;}
.y1ed{bottom:966.864435px;}
.yba{bottom:967.164465px;}
.y2a{bottom:972.081150px;}
.y105{bottom:972.564420px;}
.y93{bottom:973.164435px;}
.y163{bottom:974.364405px;}
.y4{bottom:977.459205px;}
.y181{bottom:977.952195px;}
.y69{bottom:978.564450px;}
.y13f{bottom:979.152195px;}
.y37{bottom:983.364435px;}
.y213{bottom:985.164435px;}
.yb9{bottom:988.764450px;}
.y29{bottom:991.881150px;}
.y13e{bottom:994.002195px;}
.y104{bottom:994.164405px;}
.y162{bottom:995.964390px;}
.y1ec{bottom:995.964420px;}
.y92{bottom:997.764420px;}
.y68{bottom:1000.164435px;}
.y36{bottom:1004.964420px;}
.y237{bottom:1006.764420px;}
.y180{bottom:1007.802195px;}
.y13d{bottom:1008.852195px;}
.yb8{bottom:1010.364435px;}
.y28{bottom:1011.681150px;}
.y212{bottom:1014.264420px;}
.y1eb{bottom:1017.564405px;}
.y67{bottom:1021.764420px;}
.y91{bottom:1022.364405px;}
.y13c{bottom:1023.702195px;}
.y103{bottom:1024.965375px;}
.y35{bottom:1026.564405px;}
.y27{bottom:1031.481150px;}
.yb7{bottom:1031.964420px;}
.y211{bottom:1035.864405px;}
.y3{bottom:1036.252020px;}
.y17f{bottom:1037.652195px;}
.y1ea{bottom:1039.164390px;}
.y66{bottom:1043.364405px;}
.y90{bottom:1043.964390px;}
.y34{bottom:1048.164390px;}
.y26{bottom:1051.281150px;}
.y2{bottom:1051.949280px;}
.y13b{bottom:1053.552195px;}
.yb6{bottom:1053.564405px;}
.y210{bottom:1057.464390px;}
.y65{bottom:1064.964390px;}
.y8f{bottom:1065.564375px;}
.y161{bottom:1066.002210px;}
.y17e{bottom:1067.502210px;}
.y1{bottom:1068.149280px;}
.y13a{bottom:1068.402195px;}
.y33{bottom:1069.764375px;}
.y1e9{bottom:1070.715360px;}
.y25{bottom:1071.081150px;}
.yb5{bottom:1075.164390px;}
.y236{bottom:1079.064390px;}
.y64{bottom:1086.564390px;}
.y8e{bottom:1090.164390px;}
.y24{bottom:1090.881150px;}
.y32{bottom:1091.364390px;}
.y139{bottom:1094.877195px;}
.y137{bottom:1094.877210px;}
.y160{bottom:1095.852210px;}
.yb4{bottom:1096.764390px;}
.y17d{bottom:1097.352210px;}
.y63{bottom:1108.164390px;}
.y138{bottom:1109.727195px;}
.y136{bottom:1109.727210px;}
.y23{bottom:1110.681150px;}
.y133{bottom:1113.102195px;}
.yb3{bottom:1118.364390px;}
.y31{bottom:1122.165375px;}
.y102{bottom:1123.077210px;}
.y17c{bottom:1124.577210px;}
.y132{bottom:1127.952195px;}
.y62{bottom:1129.764390px;}
.y135{bottom:1131.327195px;}
.y22{bottom:1132.290375px;}
.y134{bottom:1146.177195px;}
.y101{bottom:1146.177210px;}
.yb2{bottom:1149.165375px;}
.y61{bottom:1151.364390px;}
.y21{bottom:1220.410905px;}
.h7{height:35.239746px;}
.h1a{height:35.650635px;}
.h17{height:35.650755px;}
.hf{height:37.415039px;}
.he{height:38.891602px;}
.h3{height:41.736328px;}
.h13{height:41.765565px;}
.h10{height:41.765625px;}
.h18{height:43.070801px;}
.h22{height:43.070921px;}
.h1b{height:43.237976px;}
.h2{height:46.986328px;}
.h1f{height:48.803041px;}
.h1d{height:48.803101px;}
.h16{height:49.482422px;}
.ha{height:52.207031px;}
.hc{height:57.427734px;}
.h5{height:58.921875px;}
.hd{height:59.378906px;}
.h6{height:62.508809px;}
.h12{height:62.648438px;}
.hb{height:64.327148px;}
.h9{height:65.070761px;}
.h8{height:65.070821px;}
.h1c{height:65.350635px;}
.h4{height:68.742188px;}
.h24{height:69.275391px;}
.h15{height:72.232425px;}
.h21{height:72.232605px;}
.h23{height:72.770741px;}
.h14{height:74.119288px;}
.h19{height:74.119348px;}
.h1e{height:78.503041px;}
.h20{height:78.503101px;}
.h11{height:79.171875px;}
.h0{height:1262.834655px;}
.h1{height:1263.000000px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039365px;}
.x1e{left:90.018030px;}
.x28{left:92.543445px;}
.x3{left:115.036365px;}
.x4{left:116.936115px;}
.x9{left:127.564830px;}
.x23{left:139.538805px;}
.x5{left:182.078745px;}
.x2b{left:183.283590px;}
.x1f{left:198.168030px;}
.x24{left:220.764390px;}
.x11{left:252.243120px;}
.x8{left:255.031365px;}
.x29{left:257.081970px;}
.x13{left:272.822745px;}
.x16{left:290.954040px;}
.x17{left:300.215670px;}
.x18{left:302.480280px;}
.x12{left:303.636495px;}
.x15{left:315.210690px;}
.x22{left:317.810835px;}
.x20{left:329.790510px;}
.xe{left:331.282245px;}
.x14{left:345.006120px;}
.xa{left:347.654175px;}
.xc{left:352.715745px;}
.x21{left:356.019135px;}
.x25{left:358.007130px;}
.x2a{left:371.982375px;}
.xf{left:374.780370px;}
.x27{left:381.035355px;}
.x19{left:388.820295px;}
.x26{left:390.192870px;}
.x1b{left:394.488060px;}
.x10{left:397.735995px;}
.xd{left:405.556980px;}
.x1a{left:445.237935px;}
.xb{left:451.566225px;}
.x1d{left:476.886435px;}
.x1c{left:483.321435px;}
.x6{left:530.561715px;}
.x7{left:609.017745px;}
.x2{left:744.214290px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.666667pt;}
.v1{vertical-align:19.555573pt;}
.v3{vertical-align:24.118187pt;}
.v7{vertical-align:25.066613pt;}
.v4{vertical-align:27.081600pt;}
.v6{vertical-align:41.066613pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000053pt;}
.ls0{letter-spacing:0.044000pt;}
.ls7{letter-spacing:143.839307pt;}
.ls4{letter-spacing:205.566720pt;}
.ls6{letter-spacing:206.314680pt;}
.ls5{letter-spacing:206.314733pt;}
.ls3{letter-spacing:1557.495947pt;}
.ws3{word-spacing:-20.650667pt;}
.wsc{word-spacing:-19.285333pt;}
.ws4e{word-spacing:-16.874667pt;}
.ws6{word-spacing:-15.669333pt;}
.wse{word-spacing:-14.080000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws5{word-spacing:-9.680000pt;}
.wsb{word-spacing:-9.386667pt;}
.ws4{word-spacing:-7.920000pt;}
.ws10{word-spacing:-0.085333pt;}
.wsd{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.058667pt;}
.ws8{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws16{word-spacing:-0.044000pt;}
.wsa{word-spacing:0.000000pt;}
.ws4b{word-spacing:11.630027pt;}
.ws38{word-spacing:11.699200pt;}
.ws43{word-spacing:11.699253pt;}
.ws49{word-spacing:11.701173pt;}
.ws2e{word-spacing:11.743200pt;}
.ws4a{word-spacing:14.981120pt;}
.ws2d{word-spacing:22.585973pt;}
.ws37{word-spacing:22.629973pt;}
.ws4c{word-spacing:51.502560pt;}
.ws36{word-spacing:59.967200pt;}
.ws2c{word-spacing:60.011147pt;}
.ws22{word-spacing:73.080000pt;}
.ws1e{word-spacing:73.124000pt;}
.ws2b{word-spacing:73.739253pt;}
.ws1d{word-spacing:82.869333pt;}
.ws1{word-spacing:96.474400pt;}
.ws2{word-spacing:96.492107pt;}
.ws28{word-spacing:105.559253pt;}
.ws2a{word-spacing:105.559307pt;}
.ws3b{word-spacing:106.475253pt;}
.ws3d{word-spacing:113.779253pt;}
.ws26{word-spacing:117.747307pt;}
.ws3a{word-spacing:118.663253pt;}
.ws18{word-spacing:119.671947pt;}
.ws42{word-spacing:123.547200pt;}
.ws2f{word-spacing:123.547253pt;}
.ws31{word-spacing:125.967253pt;}
.ws1a{word-spacing:126.345333pt;}
.ws11{word-spacing:129.344000pt;}
.ws30{word-spacing:130.851253pt;}
.ws24{word-spacing:132.294453pt;}
.ws3e{word-spacing:135.735253pt;}
.ws47{word-spacing:143.039253pt;}
.ws3f{word-spacing:143.039307pt;}
.ws23{word-spacing:144.482453pt;}
.ws21{word-spacing:149.788000pt;}
.ws19{word-spacing:149.832000pt;}
.ws32{word-spacing:179.251200pt;}
.ws3c{word-spacing:191.395200pt;}
.ws33{word-spacing:191.439200pt;}
.ws20{word-spacing:199.777333pt;}
.ws1f{word-spacing:230.005333pt;}
.ws1c{word-spacing:239.547947pt;}
.ws1b{word-spacing:239.548000pt;}
.ws13{word-spacing:247.188480pt;}
.ws14{word-spacing:271.564427pt;}
.ws15{word-spacing:271.608480pt;}
.ws25{word-spacing:290.318027pt;}
.ws27{word-spacing:335.198027pt;}
.ws17{word-spacing:403.536000pt;}
.ws29{word-spacing:624.000107pt;}
.ws45{word-spacing:744.016853pt;}
.ws44{word-spacing:821.632853pt;}
.ws46{word-spacing:898.192853pt;}
.ws41{word-spacing:898.544853pt;}
.ws40{word-spacing:915.220853pt;}
.ws34{word-spacing:960.320800pt;}
.ws39{word-spacing:985.840853pt;}
.ws35{word-spacing:1049.464853pt;}
.ws48{word-spacing:1520.354667pt;}
.ws4d{word-spacing:1800.301493pt;}
.ws50{word-spacing:1800.305707pt;}
.ws4f{word-spacing:1800.313227pt;}
.wsf{word-spacing:1826.849707pt;}
.ws12{word-spacing:1826.851947pt;}
._8a{margin-left:-8.803733pt;}
._89{margin-left:-7.904320pt;}
._1e{margin-left:-6.928107pt;}
._1{margin-left:-5.952000pt;}
._f{margin-left:-4.691840pt;}
._d{margin-left:-2.927893pt;}
._0{margin-left:-1.344000pt;}
._4{width:1.280000pt;}
._c{width:2.766080pt;}
._8{width:3.722613pt;}
._5{width:4.872960pt;}
._6{width:6.270187pt;}
._7{width:7.310987pt;}
._9{width:8.382453pt;}
._e{width:9.618347pt;}
._a{width:11.368693pt;}
._19{width:12.846827pt;}
._17{width:15.261280pt;}
._b{width:16.766773pt;}
._16{width:18.080107pt;}
._3{width:19.077973pt;}
._10{width:20.484960pt;}
._2{width:21.633333pt;}
._12{width:23.207147pt;}
._13{width:24.151040pt;}
._18{width:25.199413pt;}
._14{width:26.210880pt;}
._15{width:27.107627pt;}
._11{width:28.833173pt;}
._1b{width:30.269653pt;}
._88{width:31.405440pt;}
._8b{width:32.896000pt;}
._1d{width:35.456107pt;}
._1c{width:36.415947pt;}
._8c{width:37.440000pt;}
._33{width:44.202080pt;}
._8d{width:45.143680pt;}
._32{width:51.351307pt;}
._4e{width:58.251253pt;}
._39{width:59.263253pt;}
._82{width:74.113067pt;}
._4d{width:83.375200pt;}
._81{width:94.996907pt;}
._7f{width:98.029120pt;}
._38{width:99.127200pt;}
._80{width:103.949173pt;}
._83{width:107.184907pt;}
._86{width:114.457600pt;}
._31{width:123.837333pt;}
._2f{width:136.025333pt;}
._2a{width:137.724107pt;}
._29{width:141.868000pt;}
._1a{width:143.424000pt;}
._37{width:153.326453pt;}
._2d{width:155.038667pt;}
._85{width:162.373973pt;}
._24{width:163.701333pt;}
._6b{width:165.963200pt;}
._23{width:166.861227pt;}
._27{width:168.156107pt;}
._75{width:173.267200pt;}
._26{width:176.476000pt;}
._3e{width:178.169920pt;}
._7e{width:182.881013pt;}
._43{width:185.473973pt;}
._64{width:188.931200pt;}
._41{width:190.357920pt;}
._36{width:195.002507pt;}
._46{width:197.661973pt;}
._3c{width:201.119200pt;}
._3d{width:209.875200pt;}
._28{width:213.837227pt;}
._3b{width:217.795253pt;}
._25{width:219.002987pt;}
._2c{width:220.558987pt;}
._30{width:228.028000pt;}
._4a{width:233.151253pt;}
._49{width:234.251147pt;}
._2e{width:240.793067pt;}
._21{width:256.540427pt;}
._2b{width:257.935947pt;}
._7d{width:273.704853pt;}
._1f{width:280.672427pt;}
._22{width:282.095573pt;}
._35{width:290.964107pt;}
._7c{width:292.864800pt;}
._20{width:305.899573pt;}
._76{width:312.360800pt;}
._78{width:327.116747pt;}
._6f{width:331.916800pt;}
._84{width:350.125013pt;}
._70{width:364.916800pt;}
._7b{width:424.576800pt;}
._87{width:439.797013pt;}
._79{width:452.076853pt;}
._59{width:466.780480pt;}
._51{width:468.048800pt;}
._58{width:488.028693pt;}
._7a{width:498.408853pt;}
._50{width:511.960800pt;}
._34{width:515.628107pt;}
._55{width:522.388853pt;}
._6a{width:532.728853pt;}
._4f{width:540.208853pt;}
._6e{width:544.124853pt;}
._74{width:568.988800pt;}
._67{width:577.872853pt;}
._47{width:582.720853pt;}
._5b{width:589.888640pt;}
._54{width:596.948853pt;}
._57{width:605.576693pt;}
._5a{width:607.928693pt;}
._72{width:621.832853pt;}
._69{width:643.060800pt;}
._5c{width:651.356747pt;}
._53{width:654.236800pt;}
._52{width:655.336853pt;}
._6d{width:656.436853pt;}
._5e{width:659.164853pt;}
._63{width:660.284800pt;}
._68{width:676.436853pt;}
._40{width:704.068907pt;}
._61{width:705.496907pt;}
._5f{width:713.876907pt;}
._42{width:730.136853pt;}
._5d{width:731.720907pt;}
._48{width:739.376907pt;}
._3a{width:742.392853pt;}
._62{width:746.196907pt;}
._65{width:758.008800pt;}
._71{width:759.024907pt;}
._60{width:762.672853pt;}
._3f{width:768.904853pt;}
._56{width:777.412853pt;}
._66{width:791.184853pt;}
._4b{width:817.564747pt;}
._45{width:836.812853pt;}
._77{width:840.952853pt;}
._6c{width:854.808853pt;}
._44{width:877.380853pt;}
._4c{width:881.652747pt;}
._73{width:885.256853pt;}
.fsb{font-size:33.000000pt;}
.fs6{font-size:36.000000pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:34.529387pt;}
.y60{bottom:34.529400pt;}
.y20{bottom:35.654080pt;}
.y131{bottom:40.558947pt;}
.y8d{bottom:40.558987pt;}
.y2f{bottom:47.329387pt;}
.y5f{bottom:47.329413pt;}
.y1f{bottom:50.054080pt;}
.y1e{bottom:90.786747pt;}
.y1c4{bottom:121.567827pt;}
.y5e{bottom:125.301040pt;}
.y1b2{bottom:127.568253pt;}
.y8c{bottom:129.567840pt;}
.ye0{bottom:130.101093pt;}
.y1e1{bottom:136.501053pt;}
.y1c3{bottom:140.767853pt;}
.y5d{bottom:144.501067pt;}
.y20f{bottom:146.634507pt;}
.y1b1{bottom:146.768280pt;}
.y17b{bottom:148.757533pt;}
.y8b{bottom:148.767867pt;}
.ydf{bottom:149.301120pt;}
.y15f{bottom:151.823640pt;}
.y100{bottom:152.423747pt;}
.y19c{bottom:152.890760pt;}
.y130{bottom:155.424267pt;}
.y1e0{bottom:155.701080pt;}
.y1c2{bottom:159.967880pt;}
.y235{bottom:162.901187pt;}
.y5c{bottom:163.701093pt;}
.y20e{bottom:165.834533pt;}
.y1b0{bottom:165.968307pt;}
.y8a{bottom:167.967893pt;}
.yde{bottom:168.501147pt;}
.y12f{bottom:168.624267pt;}
.yff{bottom:171.623747pt;}
.y1df{bottom:174.901107pt;}
.y17a{bottom:175.290867pt;}
.y15e{bottom:178.356973pt;}
.y1e8{bottom:179.167907pt;}
.y19b{bottom:179.424120pt;}
.y234{bottom:182.101213pt;}
.y5b{bottom:182.901120pt;}
.y1af{bottom:185.168333pt;}
.yb1{bottom:185.567893pt;}
.y89{bottom:187.167920pt;}
.ydd{bottom:187.701173pt;}
.yfe{bottom:190.823747pt;}
.y20d{bottom:191.701227pt;}
.y1de{bottom:194.101133pt;}
.y12e{bottom:195.157573pt;}
.y233{bottom:201.301240pt;}
.y179{bottom:201.824187pt;}
.y5a{bottom:202.101147pt;}
.y1ae{bottom:204.368360pt;}
.yb0{bottom:204.767920pt;}
.y15c{bottom:204.890307pt;}
.y19a{bottom:205.957493pt;}
.y88{bottom:206.367947pt;}
.ydc{bottom:206.901200pt;}
.y1e7{bottom:207.213240pt;}
.y12d{bottom:208.357573pt;}
.yfd{bottom:210.023747pt;}
.y20c{bottom:210.901253pt;}
.y1dd{bottom:213.301160pt;}
.y232{bottom:220.501267pt;}
.y59{bottom:221.301173pt;}
.y1c1{bottom:222.223720pt;}
.y1ad{bottom:223.568387pt;}
.yaf{bottom:223.967947pt;}
.y87{bottom:225.567973pt;}
.ydb{bottom:226.101227pt;}
.y178{bottom:228.357520pt;}
.yfc{bottom:229.223747pt;}
.y20b{bottom:230.101280pt;}
.y15d{bottom:231.423640pt;}
.y199{bottom:232.490853pt;}
.y1dc{bottom:232.501187pt;}
.y12c{bottom:234.890893pt;}
.y58{bottom:240.501200pt;}
.yae{bottom:243.167973pt;}
.y86{bottom:244.768000pt;}
.yda{bottom:245.301253pt;}
.y231{bottom:246.367960pt;}
.y12b{bottom:248.090893pt;}
.yfb{bottom:248.423747pt;}
.y1c0{bottom:248.757067pt;}
.y1db{bottom:251.701213pt;}
.y177{bottom:254.890840pt;}
.y20a{bottom:255.967973pt;}
.y15b{bottom:257.956987pt;}
.y198{bottom:259.024213pt;}
.y57{bottom:259.701227pt;}
.y1e6{bottom:259.701280pt;}
.yad{bottom:262.368000pt;}
.y85{bottom:263.968027pt;}
.yd9{bottom:264.501280pt;}
.y230{bottom:265.567987pt;}
.yfa{bottom:267.623760pt;}
.y1da{bottom:270.901240pt;}
.y12a{bottom:274.624200pt;}
.y209{bottom:275.168000pt;}
.y1bf{bottom:275.290400pt;}
.y56{bottom:278.901253pt;}
.y1e5{bottom:278.901307pt;}
.y176{bottom:281.424160pt;}
.yac{bottom:281.568027pt;}
.y15a{bottom:282.156987pt;}
.y84{bottom:283.168053pt;}
.yd8{bottom:283.701307pt;}
.y22f{bottom:284.768013pt;}
.y197{bottom:285.557587pt;}
.y1ac{bottom:285.824267pt;}
.yf9{bottom:286.823760pt;}
.y129{bottom:287.824200pt;}
.y1d9{bottom:290.101267pt;}
.y208{bottom:294.368027pt;}
.y55{bottom:298.101280pt;}
.y1e4{bottom:298.101333pt;}
.yab{bottom:300.768053pt;}
.y1be{bottom:301.823733pt;}
.y83{bottom:302.368080pt;}
.y159{bottom:302.690293pt;}
.yd7{bottom:302.901333pt;}
.yf8{bottom:306.023760pt;}
.y175{bottom:307.957493pt;}
.y1d8{bottom:309.301293pt;}
.y22e{bottom:310.634707pt;}
.y196{bottom:312.090947pt;}
.y1ab{bottom:312.357640pt;}
.y207{bottom:313.568053pt;}
.y127{bottom:314.357560pt;}
.y54{bottom:317.301307pt;}
.yaa{bottom:319.968080pt;}
.y1d{bottom:321.525040pt;}
.y82{bottom:321.568107pt;}
.yd6{bottom:322.101360pt;}
.y1bd{bottom:326.023707pt;}
.y1e3{bottom:326.146667pt;}
.yf7{bottom:326.557067pt;}
.y128{bottom:327.557547pt;}
.y126{bottom:327.557560pt;}
.y1d7{bottom:328.501320pt;}
.y158{bottom:328.679920pt;}
.y22d{bottom:329.834733pt;}
.y174{bottom:334.490813pt;}
.y53{bottom:336.501333pt;}
.y195{bottom:338.624320pt;}
.y1aa{bottom:338.891000pt;}
.y1c{bottom:339.125053pt;}
.y206{bottom:339.434747pt;}
.y125{bottom:340.757560pt;}
.y81{bottom:340.768133pt;}
.yd5{bottom:341.301387pt;}
.y1d6{bottom:347.701347pt;}
.y22c{bottom:349.034760pt;}
.y1bc{bottom:352.013360pt;}
.yf6{bottom:352.546693pt;}
.ya9{bottom:355.168107pt;}
.y52{bottom:355.701400pt;}
.y1b{bottom:356.725067pt;}
.y205{bottom:358.634733pt;}
.y80{bottom:359.968160pt;}
.yd4{bottom:360.501413pt;}
.y173{bottom:361.024160pt;}
.y194{bottom:365.157640pt;}
.y1a9{bottom:365.424320pt;}
.y157{bottom:366.501293pt;}
.y1d5{bottom:366.901373pt;}
.y124{bottom:367.290880pt;}
.y1e2{bottom:370.634707pt;}
.y1a{bottom:374.325080pt;}
.ya8{bottom:374.368133pt;}
.y51{bottom:374.901427pt;}
.y22b{bottom:374.901453pt;}
.y204{bottom:377.834760pt;}
.y7f{bottom:379.168187pt;}
.yd3{bottom:379.701440pt;}
.y123{bottom:380.490880pt;}
.y156{bottom:385.701320pt;}
.y1d4{bottom:386.101400pt;}
.y24c{bottom:387.434773pt;}
.y172{bottom:387.557493pt;}
.y1bb{bottom:389.834733pt;}
.yf5{bottom:390.368107pt;}
.y193{bottom:391.690973pt;}
.y19{bottom:391.925093pt;}
.y1a8{bottom:391.957653pt;}
.ya7{bottom:393.568160pt;}
.y50{bottom:394.101453pt;}
.y22a{bottom:394.101480pt;}
.y7e{bottom:398.368213pt;}
.yd2{bottom:398.901467pt;}
.y203{bottom:403.701453pt;}
.y155{bottom:404.901347pt;}
.y1d3{bottom:405.301427pt;}
.y24b{bottom:406.634800pt;}
.y122{bottom:407.024200pt;}
.y1ba{bottom:409.034760pt;}
.y18{bottom:409.525093pt;}
.yf4{bottom:409.568133pt;}
.y4f{bottom:413.301480pt;}
.y229{bottom:413.301507pt;}
.y171{bottom:414.090827pt;}
.ya6{bottom:415.434853pt;}
.y7d{bottom:417.568240pt;}
.yd1{bottom:418.101493pt;}
.y192{bottom:418.224293pt;}
.y1a7{bottom:418.490973pt;}
.y121{bottom:420.224200pt;}
.y202{bottom:422.901480pt;}
.y154{bottom:424.101373pt;}
.y1d2{bottom:424.501453pt;}
.y24a{bottom:425.834827pt;}
.y17{bottom:427.125093pt;}
.y1b9{bottom:428.234787pt;}
.yf3{bottom:428.768160pt;}
.y4e{bottom:432.501507pt;}
.ya5{bottom:434.634880pt;}
.y7c{bottom:436.768267pt;}
.yd0{bottom:437.301520pt;}
.y228{bottom:439.168200pt;}
.y170{bottom:440.624173pt;}
.y201{bottom:442.101507pt;}
.y153{bottom:443.301400pt;}
.y1d1{bottom:443.701480pt;}
.y16{bottom:444.725093pt;}
.y191{bottom:444.757613pt;}
.y1a6{bottom:445.024307pt;}
.y120{bottom:446.757507pt;}
.y1b8{bottom:447.434813pt;}
.yf2{bottom:447.968187pt;}
.y249{bottom:451.701520pt;}
.y4d{bottom:451.701533pt;}
.ycf{bottom:456.501547pt;}
.ya4{bottom:456.501573pt;}
.y227{bottom:458.368227pt;}
.y11f{bottom:459.957507pt;}
.y15{bottom:462.325093pt;}
.y152{bottom:462.501427pt;}
.y1d0{bottom:462.901507pt;}
.y7b{bottom:464.146933pt;}
.y1b7{bottom:466.634840pt;}
.y16f{bottom:467.157507pt;}
.yf1{bottom:467.168213pt;}
.y200{bottom:467.968200pt;}
.y248{bottom:470.901547pt;}
.y4c{bottom:470.901560pt;}
.y190{bottom:471.290947pt;}
.y1a5{bottom:471.557613pt;}
.yce{bottom:475.701573pt;}
.ya3{bottom:475.701600pt;}
.y226{bottom:477.568253pt;}
.y14{bottom:479.925093pt;}
.y151{bottom:481.701453pt;}
.y1cf{bottom:482.101533pt;}
.y1a4{bottom:484.757613pt;}
.y1b6{bottom:485.834867pt;}
.yf0{bottom:486.368240pt;}
.y11d{bottom:486.490840pt;}
.y1ff{bottom:487.168227pt;}
.y247{bottom:490.101573pt;}
.y4b{bottom:490.101587pt;}
.y16e{bottom:491.357507pt;}
.ycd{bottom:494.901600pt;}
.y225{bottom:496.768280pt;}
.y13{bottom:497.525093pt;}
.ya2{bottom:497.568293pt;}
.y18f{bottom:497.824267pt;}
.y11e{bottom:499.690827pt;}
.y11c{bottom:499.690840pt;}
.y150{bottom:500.901480pt;}
.y1ce{bottom:501.301560pt;}
.y1b5{bottom:505.034893pt;}
.yef{bottom:505.568267pt;}
.y1fe{bottom:506.368253pt;}
.y246{bottom:509.301600pt;}
.y4a{bottom:509.301613pt;}
.y7a{bottom:509.480267pt;}
.y16d{bottom:510.557480pt;}
.y1a3{bottom:511.290933pt;}
.y11b{bottom:512.890840pt;}
.ycc{bottom:514.101627pt;}
.y12{bottom:515.125093pt;}
.ya1{bottom:516.768320pt;}
.y14f{bottom:520.101507pt;}
.y1cd{bottom:520.501587pt;}
.y224{bottom:522.634973pt;}
.y1b4{bottom:524.234920pt;}
.y18e{bottom:524.357587pt;}
.y1a2{bottom:524.490933pt;}
.yee{bottom:524.768293pt;}
.y1fd{bottom:525.568280pt;}
.y49{bottom:528.501640pt;}
.y11{bottom:532.725093pt;}
.ycb{bottom:533.301653pt;}
.y245{bottom:535.168293pt;}
.y16c{bottom:536.547027pt;}
.y14e{bottom:539.301533pt;}
.y11a{bottom:539.424187pt;}
.y1cc{bottom:539.701613pt;}
.y223{bottom:541.835000pt;}
.y1b3{bottom:543.434947pt;}
.yed{bottom:543.968320pt;}
.y48{bottom:547.701667pt;}
.y18d{bottom:550.890920pt;}
.y1a1{bottom:551.024253pt;}
.y1fc{bottom:551.434973pt;}
.y10{bottom:551.933293pt;}
.ya0{bottom:551.968347pt;}
.yca{bottom:552.501680pt;}
.y119{bottom:552.624187pt;}
.y244{bottom:554.368320pt;}
.y14d{bottom:558.501560pt;}
.y1cb{bottom:558.901640pt;}
.y222{bottom:561.035027pt;}
.y79{bottom:562.634973pt;}
.yec{bottom:563.168347pt;}
.y47{bottom:566.901693pt;}
.y1fb{bottom:570.635000pt;}
.y9f{bottom:571.168373pt;}
.yc9{bottom:571.701707pt;}
.y243{bottom:573.568347pt;}
.y16b{bottom:574.368400pt;}
.y18c{bottom:577.424240pt;}
.y1a0{bottom:577.557587pt;}
.y14c{bottom:577.701587pt;}
.y1ca{bottom:578.101667pt;}
.y118{bottom:579.157520pt;}
.y221{bottom:580.235053pt;}
.y78{bottom:581.835000pt;}
.yeb{bottom:582.368373pt;}
.y46{bottom:586.101720pt;}
.yf{bottom:587.228880pt;}
.y1fa{bottom:589.835027pt;}
.y9e{bottom:590.368400pt;}
.yc8{bottom:590.901733pt;}
.y16a{bottom:593.568427pt;}
.y14b{bottom:596.901613pt;}
.y1c9{bottom:597.301693pt;}
.y242{bottom:599.435040pt;}
.y77{bottom:601.035027pt;}
.yea{bottom:601.568400pt;}
.y18b{bottom:603.957573pt;}
.y19f{bottom:604.090907pt;}
.y45{bottom:605.301747pt;}
.y117{bottom:605.690867pt;}
.y220{bottom:606.101747pt;}
.y1f9{bottom:609.035053pt;}
.y9d{bottom:609.568427pt;}
.yc7{bottom:610.101760pt;}
.y14a{bottom:616.101640pt;}
.y1c8{bottom:616.501720pt;}
.y19e{bottom:617.290907pt;}
.y241{bottom:618.635067pt;}
.y116{bottom:618.890867pt;}
.ye{bottom:619.658440pt;}
.y76{bottom:620.235053pt;}
.ye9{bottom:620.768427pt;}
.y169{bottom:620.947093pt;}
.y44{bottom:624.501773pt;}
.y21f{bottom:625.301773pt;}
.y114{bottom:625.557520pt;}
.y1f8{bottom:628.235080pt;}
.yc6{bottom:629.301787pt;}
.y18a{bottom:630.490893pt;}
.y149{bottom:635.301667pt;}
.y1c7{bottom:635.701747pt;}
.y9c{bottom:636.947093pt;}
.y240{bottom:637.835093pt;}
.y75{bottom:639.435080pt;}
.ye8{bottom:639.968453pt;}
.yd{bottom:641.258453pt;}
.y43{bottom:643.701800pt;}
.y19d{bottom:643.824213pt;}
.y21e{bottom:644.501800pt;}
.y115{bottom:645.424187pt;}
.y1f7{bottom:647.435107pt;}
.yc5{bottom:648.501813pt;}
.y148{bottom:654.501693pt;}
.y1c6{bottom:654.901773pt;}
.y189{bottom:657.024213pt;}
.y74{bottom:658.635107pt;}
.yc{bottom:662.858467pt;}
.y42{bottom:662.901827pt;}
.y23f{bottom:663.701787pt;}
.ye7{bottom:667.347120pt;}
.yc4{bottom:667.701840pt;}
.y21d{bottom:670.368493pt;}
.y113{bottom:671.957533pt;}
.y1f6{bottom:673.301800pt;}
.y147{bottom:673.701720pt;}
.y168{bottom:674.101800pt;}
.y73{bottom:677.835133pt;}
.y41{bottom:682.101853pt;}
.y23e{bottom:682.901813pt;}
.y188{bottom:683.557547pt;}
.y112{bottom:685.157533pt;}
.yc3{bottom:686.901867pt;}
.y21c{bottom:689.568520pt;}
.y9b{bottom:690.101800pt;}
.y110{bottom:691.824187pt;}
.y1f5{bottom:692.501827pt;}
.y146{bottom:692.901747pt;}
.y167{bottom:693.301827pt;}
.yb{bottom:695.599347pt;}
.y72{bottom:697.035187pt;}
.y40{bottom:701.301840pt;}
.y23d{bottom:702.101827pt;}
.yc2{bottom:706.101853pt;}
.y21b{bottom:708.768493pt;}
.y9a{bottom:709.301813pt;}
.y187{bottom:710.090867pt;}
.y111{bottom:711.690853pt;}
.y1f4{bottom:711.701813pt;}
.y145{bottom:712.101733pt;}
.ye6{bottom:712.501800pt;}
.ya{bottom:713.999333pt;}
.y71{bottom:716.235173pt;}
.y3f{bottom:720.501827pt;}
.y9{bottom:725.079413pt;}
.yc1{bottom:725.301840pt;}
.y23c{bottom:727.968480pt;}
.y99{bottom:728.501800pt;}
.y144{bottom:731.301720pt;}
.ye5{bottom:731.701787pt;}
.y21a{bottom:734.635147pt;}
.y70{bottom:735.435160pt;}
.y10f{bottom:735.890867pt;}
.y10d{bottom:735.890880pt;}
.y186{bottom:736.624200pt;}
.y1f3{bottom:737.568467pt;}
.y3e{bottom:739.701813pt;}
.y1c5{bottom:739.880440pt;}
.y8{bottom:742.679440pt;}
.yc0{bottom:744.501827pt;}
.y23b{bottom:747.168467pt;}
.y98{bottom:747.701787pt;}
.y10e{bottom:749.090867pt;}
.y10c{bottom:749.090880pt;}
.y143{bottom:750.501707pt;}
.ye4{bottom:750.901773pt;}
.y109{bottom:752.090867pt;}
.y219{bottom:753.835133pt;}
.y6f{bottom:754.635147pt;}
.y1f2{bottom:756.768453pt;}
.y3d{bottom:758.901800pt;}
.y185{bottom:763.157520pt;}
.ybf{bottom:763.701813pt;}
.y108{bottom:765.290867pt;}
.y23a{bottom:766.368453pt;}
.y97{bottom:766.901773pt;}
.y10b{bottom:768.290867pt;}
.y142{bottom:769.701693pt;}
.ye3{bottom:770.101760pt;}
.y218{bottom:773.035120pt;}
.y6e{bottom:773.835133pt;}
.y1f1{bottom:775.968440pt;}
.y3c{bottom:778.101787pt;}
.y10a{bottom:781.490867pt;}
.ybe{bottom:782.901800pt;}
.y141{bottom:788.901680pt;}
.ye2{bottom:789.301747pt;}
.y184{bottom:789.690840pt;}
.y217{bottom:792.235107pt;}
.y6d{bottom:793.035120pt;}
.y2e{bottom:793.672093pt;}
.y1f0{bottom:795.168427pt;}
.y3b{bottom:797.301773pt;}
.y96{bottom:802.101760pt;}
.ybd{bottom:802.101787pt;}
.y7{bottom:803.626053pt;}
.y107{bottom:807.480373pt;}
.y140{bottom:808.101667pt;}
.y166{bottom:808.501733pt;}
.y2d{bottom:811.272107pt;}
.y239{bottom:811.435093pt;}
.y6c{bottom:812.235107pt;}
.y183{bottom:816.224173pt;}
.y3a{bottom:816.501760pt;}
.ye1{bottom:816.680387pt;}
.y216{bottom:818.101760pt;}
.y1ef{bottom:821.035080pt;}
.ybc{bottom:821.301773pt;}
.y6{bottom:822.292733pt;}
.y95{bottom:823.968413pt;}
.y165{bottom:827.701720pt;}
.y2c{bottom:828.872120pt;}
.y238{bottom:830.635080pt;}
.y6b{bottom:831.435093pt;}
.y39{bottom:835.701747pt;}
.y215{bottom:837.301747pt;}
.y1ee{bottom:840.235067pt;}
.ybb{bottom:840.501760pt;}
.y182{bottom:842.757493pt;}
.y106{bottom:845.301720pt;}
.y94{bottom:845.835067pt;}
.y5{bottom:846.185960pt;}
.y2b{bottom:846.472133pt;}
.y164{bottom:846.901707pt;}
.y6a{bottom:850.635080pt;}
.y38{bottom:854.901733pt;}
.y214{bottom:856.501733pt;}
.y1ed{bottom:859.435053pt;}
.yba{bottom:859.701747pt;}
.y2a{bottom:864.072133pt;}
.y105{bottom:864.501707pt;}
.y93{bottom:865.035053pt;}
.y163{bottom:866.101693pt;}
.y4{bottom:868.852627pt;}
.y181{bottom:869.290840pt;}
.y69{bottom:869.835067pt;}
.y13f{bottom:870.357507pt;}
.y37{bottom:874.101720pt;}
.y213{bottom:875.701720pt;}
.yb9{bottom:878.901733pt;}
.y29{bottom:881.672133pt;}
.y13e{bottom:883.557507pt;}
.y104{bottom:883.701693pt;}
.y162{bottom:885.301680pt;}
.y1ec{bottom:885.301707pt;}
.y92{bottom:886.901707pt;}
.y68{bottom:889.035053pt;}
.y36{bottom:893.301707pt;}
.y237{bottom:894.901707pt;}
.y180{bottom:895.824173pt;}
.y13d{bottom:896.757507pt;}
.yb8{bottom:898.101720pt;}
.y28{bottom:899.272133pt;}
.y212{bottom:901.568373pt;}
.y1eb{bottom:904.501693pt;}
.y67{bottom:908.235040pt;}
.y91{bottom:908.768360pt;}
.y13c{bottom:909.957507pt;}
.y103{bottom:911.080333pt;}
.y35{bottom:912.501693pt;}
.y27{bottom:916.872133pt;}
.yb7{bottom:917.301707pt;}
.y211{bottom:920.768360pt;}
.y3{bottom:921.112907pt;}
.y17f{bottom:922.357507pt;}
.y1ea{bottom:923.701680pt;}
.y66{bottom:927.435027pt;}
.y90{bottom:927.968347pt;}
.y34{bottom:931.701680pt;}
.y26{bottom:934.472133pt;}
.y2{bottom:935.066027pt;}
.y13b{bottom:936.490840pt;}
.yb6{bottom:936.501693pt;}
.y210{bottom:939.968347pt;}
.y65{bottom:946.635013pt;}
.y8f{bottom:947.168333pt;}
.y161{bottom:947.557520pt;}
.y17e{bottom:948.890853pt;}
.y1{bottom:949.466027pt;}
.y13a{bottom:949.690840pt;}
.y33{bottom:950.901667pt;}
.y1e9{bottom:951.746987pt;}
.y25{bottom:952.072133pt;}
.yb5{bottom:955.701680pt;}
.y236{bottom:959.168347pt;}
.y64{bottom:965.835013pt;}
.y8e{bottom:969.035013pt;}
.y24{bottom:969.672133pt;}
.y32{bottom:970.101680pt;}
.y139{bottom:973.224173pt;}
.y137{bottom:973.224187pt;}
.y160{bottom:974.090853pt;}
.yb4{bottom:974.901680pt;}
.y17d{bottom:975.424187pt;}
.y63{bottom:985.035013pt;}
.y138{bottom:986.424173pt;}
.y136{bottom:986.424187pt;}
.y23{bottom:987.272133pt;}
.y133{bottom:989.424173pt;}
.yb3{bottom:994.101680pt;}
.y31{bottom:997.480333pt;}
.y102{bottom:998.290853pt;}
.y17c{bottom:999.624187pt;}
.y132{bottom:1002.624173pt;}
.y62{bottom:1004.235013pt;}
.y135{bottom:1005.624173pt;}
.y22{bottom:1006.480333pt;}
.y134{bottom:1018.824173pt;}
.y101{bottom:1018.824187pt;}
.yb2{bottom:1021.480333pt;}
.y61{bottom:1023.435013pt;}
.y21{bottom:1084.809693pt;}
.h7{height:31.324219pt;}
.h1a{height:31.689453pt;}
.h17{height:31.689560pt;}
.hf{height:33.257812pt;}
.he{height:34.570312pt;}
.h3{height:37.098958pt;}
.h13{height:37.124947pt;}
.h10{height:37.125000pt;}
.h18{height:38.285156pt;}
.h22{height:38.285263pt;}
.h1b{height:38.433757pt;}
.h2{height:41.765625pt;}
.h1f{height:43.380481pt;}
.h1d{height:43.380534pt;}
.h16{height:43.984375pt;}
.ha{height:46.406250pt;}
.hc{height:51.046875pt;}
.h5{height:52.375000pt;}
.hd{height:52.781250pt;}
.h6{height:55.563386pt;}
.h12{height:55.687500pt;}
.hb{height:57.179688pt;}
.h9{height:57.840676pt;}
.h8{height:57.840730pt;}
.h1c{height:58.089453pt;}
.h4{height:61.104167pt;}
.h24{height:61.578125pt;}
.h15{height:64.206600pt;}
.h21{height:64.206760pt;}
.h23{height:64.685103pt;}
.h14{height:65.883812pt;}
.h19{height:65.883865pt;}
.h1e{height:69.780481pt;}
.h20{height:69.780534pt;}
.h11{height:70.375000pt;}
.h0{height:1122.519693pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590547pt;}
.x1e{left:80.016027pt;}
.x28{left:82.260840pt;}
.x3{left:102.254547pt;}
.x4{left:103.943213pt;}
.x9{left:113.390960pt;}
.x23{left:124.034493pt;}
.x5{left:161.847773pt;}
.x2b{left:162.918747pt;}
.x1f{left:176.149360pt;}
.x24{left:196.235013pt;}
.x11{left:224.216107pt;}
.x8{left:226.694547pt;}
.x29{left:228.517307pt;}
.x13{left:242.509107pt;}
.x16{left:258.625813pt;}
.x17{left:266.858373pt;}
.x18{left:268.871360pt;}
.x12{left:269.899107pt;}
.x15{left:280.187280pt;}
.x22{left:282.498520pt;}
.x20{left:293.147120pt;}
.xe{left:294.473107pt;}
.x14{left:306.672107pt;}
.xa{left:309.025933pt;}
.xc{left:313.525107pt;}
.x21{left:316.461453pt;}
.x25{left:318.228560pt;}
.x2a{left:330.651000pt;}
.xf{left:333.138107pt;}
.x27{left:338.698093pt;}
.x19{left:345.618040pt;}
.x26{left:346.838107pt;}
.x1b{left:350.656053pt;}
.x10{left:353.543107pt;}
.xd{left:360.495093pt;}
.x1a{left:395.767053pt;}
.xb{left:401.392200pt;}
.x1d{left:423.899053pt;}
.x1c{left:429.619053pt;}
.x6{left:471.610413pt;}
.x7{left:541.349107pt;}
.x2{left:661.523813pt;}
}




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