
    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_f82772b645f487b22cdf6ad3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_2cc7ac849a8d615485a9f17a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_506346659aae8be04411eb0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_f07e998c88bfea2f548ca926.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_80126b52d4e0ab22bba387d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_2a8ff50ef477d5f27efbfd91.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683105;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_2314ed479f872892696b757c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-26.640000px;}
.v8{vertical-align:-24.420000px;}
.v4{vertical-align:-22.200000px;}
.va{vertical-align:-14.352000px;}
.vb{vertical-align:-12.485400px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:24.432000px;}
.v6{vertical-align:26.328000px;}
.v3{vertical-align:40.860000px;}
.v7{vertical-align:80.388000px;}
.ls18{letter-spacing:-7.200000px;}
.ls4d{letter-spacing:-2.508000px;}
.ls53{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.660000px;}
.ls55{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.504000px;}
.ls29{letter-spacing:-0.396000px;}
.ls22{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.330000px;}
.ls1f{letter-spacing:-0.285000px;}
.lsb{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.171000px;}
.ls44{letter-spacing:-0.072000px;}
.ls4e{letter-spacing:-0.066000px;}
.ls45{letter-spacing:-0.043200px;}
.ls5{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.039600px;}
.ls49{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.315000px;}
.ls2e{letter-spacing:0.322800px;}
.ls47{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.330600px;}
.ls30{letter-spacing:0.345600px;}
.ls15{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.396000px;}
.lse{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.441000px;}
.lsd{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.538200px;}
.ls42{letter-spacing:0.567000px;}
.lsf{letter-spacing:0.576000px;}
.ls51{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.630000px;}
.ls9{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.693000px;}
.ls20{letter-spacing:0.720000px;}
.ls4f{letter-spacing:0.726000px;}
.ls36{letter-spacing:0.756000px;}
.ls8{letter-spacing:0.792000px;}
.ls16{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.152000px;}
.ls35{letter-spacing:2.457000px;}
.ls14{letter-spacing:3.600000px;}
.ls2d{letter-spacing:3.906000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.473000px;}
.ls24{letter-spacing:4.590000px;}
.ls1a{letter-spacing:4.686000px;}
.ls27{letter-spacing:5.080200px;}
.ls26{letter-spacing:5.080800px;}
.ls19{letter-spacing:5.400000px;}
.ls40{letter-spacing:5.418000px;}
.ls1c{letter-spacing:5.670000px;}
.ls41{letter-spacing:5.859000px;}
.ls32{letter-spacing:5.985000px;}
.ls46{letter-spacing:6.000000px;}
.ls33{letter-spacing:6.174000px;}
.ls3e{letter-spacing:6.552000px;}
.ls1{letter-spacing:6.600000px;}
.ls3f{letter-spacing:6.741000px;}
.ls3a{letter-spacing:7.056000px;}
.ls2c{letter-spacing:7.182000px;}
.ls4{letter-spacing:7.200000px;}
.ls43{letter-spacing:9.450000px;}
.ls17{letter-spacing:9.519000px;}
.ls2{letter-spacing:10.200000px;}
.ls39{letter-spacing:10.710000px;}
.ls38{letter-spacing:10.773000px;}
.ls4a{letter-spacing:10.956000px;}
.ls4b{letter-spacing:11.484000px;}
.ls52{letter-spacing:11.748000px;}
.ls3c{letter-spacing:12.285000px;}
.ls37{letter-spacing:12.726000px;}
.ls54{letter-spacing:19.800000px;}
.ls1b{letter-spacing:38.923200px;}
.ls21{letter-spacing:38.923800px;}
.ls25{letter-spacing:455.136000px;}
.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;}
}
.ws28{word-spacing:-30.294000px;}
.ws27{word-spacing:-30.030000px;}
.ws26{word-spacing:-29.502000px;}
.ws22{word-spacing:-22.860000px;}
.ws6{word-spacing:-20.808000px;}
.ws10{word-spacing:-20.232000px;}
.ws1e{word-spacing:-20.160000px;}
.ws13{word-spacing:-19.206000px;}
.ws23{word-spacing:-18.876000px;}
.ws24{word-spacing:-18.612000px;}
.ws8{word-spacing:-18.546000px;}
.ws5{word-spacing:-18.216000px;}
.ws0{word-spacing:-16.860000px;}
.ws25{word-spacing:-16.302000px;}
.ws1f{word-spacing:-16.065000px;}
.ws16{word-spacing:-16.017000px;}
.ws15{word-spacing:-15.732000px;}
.ws29{word-spacing:-15.708000px;}
.ws1c{word-spacing:-15.561000px;}
.ws20{word-spacing:-14.820000px;}
.wsf{word-spacing:-14.079000px;}
.ws19{word-spacing:-13.908000px;}
.ws1b{word-spacing:-12.571200px;}
.ws1d{word-spacing:-12.484800px;}
.wse{word-spacing:-12.139200px;}
.ws14{word-spacing:-11.523600px;}
.ws11{word-spacing:-11.127600px;}
.ws21{word-spacing:-10.621800px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:26.664000px;}
.wsb{word-spacing:28.578000px;}
.wsd{word-spacing:42.966000px;}
.ws3{word-spacing:46.596000px;}
.ws17{word-spacing:53.658000px;}
.ws12{word-spacing:55.638000px;}
.ws7{word-spacing:72.996000px;}
.wsc{word-spacing:76.494000px;}
.ws9{word-spacing:99.594000px;}
.ws1a{word-spacing:177.383400px;}
.ws4{word-spacing:457.116000px;}
.ws18{word-spacing:462.536400px;}
.ws2{word-spacing:506.022000px;}
._1b{margin-left:-20.304000px;}
._39{margin-left:-17.488200px;}
._a1{margin-left:-15.233400px;}
._a3{margin-left:-13.120200px;}
._6{margin-left:-10.404000px;}
._5{margin-left:-8.160000px;}
._a{margin-left:-6.282000px;}
._3{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._c{margin-left:-2.796000px;}
._1{margin-left:-1.704000px;}
._7{width:1.007400px;}
._8{width:2.490600px;}
._b{width:3.616200px;}
._2{width:4.620000px;}
._9{width:5.856000px;}
._4{width:7.140000px;}
._10{width:8.153400px;}
._f{width:9.503400px;}
._d{width:10.800600px;}
._1d{width:11.994600px;}
._1c{width:13.170000px;}
._a2{width:15.498000px;}
._11{width:22.210800px;}
._5d{width:38.923200px;}
._93{width:53.790000px;}
._e{width:56.923200px;}
._94{width:63.314400px;}
._3d{width:71.874000px;}
._31{width:74.184000px;}
._3e{width:76.290600px;}
._2e{width:79.495200px;}
._40{width:85.536000px;}
._4a{width:87.846000px;}
._9b{width:92.136000px;}
._81{width:95.172000px;}
._41{width:97.944000px;}
._3f{width:101.046000px;}
._19{width:102.168000px;}
._48{width:103.404600px;}
._1e{width:107.184000px;}
._24{width:112.728000px;}
._38{width:115.962000px;}
._26{width:118.536000px;}
._1a{width:119.790000px;}
._27{width:122.280600px;}
._43{width:124.422000px;}
._17{width:125.910600px;}
._49{width:127.326000px;}
._21{width:129.822000px;}
._34{width:132.198000px;}
._44{width:135.733800px;}
._18{width:137.856600px;}
._47{width:139.303200px;}
._45{width:142.296000px;}
._30{width:144.606000px;}
._22{width:150.744000px;}
._23{width:152.574600px;}
._2a{width:154.057800px;}
._2d{width:156.631800px;}
._2f{width:158.928000px;}
._20{width:166.716000px;}
._3a{width:167.730000px;}
._46{width:171.984000px;}
._35{width:175.362000px;}
._28{width:177.036000px;}
._25{width:178.116600px;}
._36{width:183.942000px;}
._2b{width:188.364000px;}
._29{width:190.014000px;}
._37{width:191.466000px;}
._33{width:193.974000px;}
._2c{width:197.010000px;}
._3b{width:198.198000px;}
._3c{width:211.134000px;}
._42{width:212.322000px;}
._1f{width:213.360600px;}
._32{width:222.371400px;}
._64{width:240.438000px;}
._15{width:246.378000px;}
._4f{width:247.566000px;}
._7e{width:256.158000px;}
._50{width:267.300000px;}
._8d{width:268.404600px;}
._62{width:281.754000px;}
._4e{width:293.436000px;}
._6d{width:295.218000px;}
._58{width:308.748000px;}
._61{width:312.180000px;}
._8a{width:315.288600px;}
._53{width:316.668000px;}
._16{width:322.278000px;}
._55{width:325.380000px;}
._74{width:327.492000px;}
._5b{width:329.694000px;}
._52{width:332.191800px;}
._5c{width:343.926000px;}
._92{width:346.854000px;}
._51{width:348.792600px;}
._4c{width:350.856000px;}
._6e{width:361.350000px;}
._66{width:363.912000px;}
._59{width:371.743200px;}
._69{width:373.337400px;}
._13{width:376.002000px;}
._82{width:385.506000px;}
._56{width:386.958000px;}
._7d{width:388.158000px;}
._80{width:389.184600px;}
._65{width:390.294000px;}
._5a{width:394.428000px;}
._84{width:396.594000px;}
._6b{width:397.861800px;}
._63{width:402.786000px;}
._4b{width:405.108000px;}
._77{width:414.480000px;}
._5e{width:416.760000px;}
._9a{width:418.189800px;}
._9f{width:421.027800px;}
._6c{width:424.397400px;}
._5f{width:425.766000px;}
._6f{width:426.775200px;}
._a0{width:428.100000px;}
._75{width:429.462000px;}
._54{width:430.799400px;}
._4d{width:432.696000px;}
._8c{width:434.161800px;}
._85{width:436.788000px;}
._71{width:437.976000px;}
._6a{width:439.572000px;}
._57{width:441.144000px;}
._67{width:442.926000px;}
._9c{width:444.180000px;}
._83{width:446.688000px;}
._76{width:448.157400px;}
._9d{width:450.714000px;}
._88{width:453.718800px;}
._79{width:461.262000px;}
._7f{width:465.102000px;}
._73{width:466.338600px;}
._7a{width:469.458000px;}
._87{width:474.738000px;}
._60{width:476.916000px;}
._72{width:478.847400px;}
._7b{width:484.188000px;}
._8b{width:485.992800px;}
._68{width:487.854600px;}
._89{width:490.018800px;}
._78{width:497.112000px;}
._8e{width:499.810800px;}
._86{width:501.996000px;}
._7c{width:510.972000px;}
._12{width:519.420000px;}
._9e{width:523.842000px;}
._70{width:528.726000px;}
._99{width:560.423400px;}
._96{width:575.310000px;}
._98{width:605.592000px;}
._91{width:616.770000px;}
._95{width:642.444000px;}
._90{width:646.206000px;}
._97{width:649.464000px;}
._8f{width:672.210000px;}
._14{width:698.790600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fse{font-size:37.800000px;}
.fsa{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:43.200000px;}
.fs6{font-size:43.800000px;}
.fs5{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:76.337550px;}
.y1{bottom:76.343400px;}
.y89{bottom:140.311650px;}
.y1d{bottom:140.314500px;}
.y40{bottom:140.317500px;}
.y1d3{bottom:142.389750px;}
.y23c{bottom:142.635900px;}
.y219{bottom:143.979150px;}
.y1f4{bottom:144.169050px;}
.y1ae{bottom:144.626400px;}
.y65{bottom:145.863150px;}
.yae{bottom:145.869000px;}
.y1c{bottom:156.816000px;}
.y1d2{bottom:160.691250px;}
.y23b{bottom:162.287400px;}
.y88{bottom:162.363150px;}
.y3f{bottom:162.369000px;}
.y218{bottom:164.521650px;}
.y1f3{bottom:166.363050px;}
.y1ad{bottom:166.820400px;}
.y87{bottom:173.295150px;}
.y123{bottom:173.311650px;}
.y1b{bottom:173.317500px;}
.y140{bottom:178.863150px;}
.yed{bottom:178.869000px;}
.y1d1{bottom:178.992750px;}
.y23a{bottom:181.938900px;}
.y217{bottom:185.064150px;}
.y64{bottom:185.374350px;}
.y1f2{bottom:188.557050px;}
.y1ac{bottom:189.044400px;}
.y86{bottom:189.796650px;}
.yec{bottom:189.816000px;}
.yad{bottom:190.118250px;}
.y122{bottom:195.363150px;}
.y1a{bottom:195.369000px;}
.yd3{bottom:200.736450px;}
.y3e{bottom:201.463350px;}
.y239{bottom:202.035900px;}
.y108{bottom:205.266000px;}
.y15c{bottom:205.400850px;}
.y216{bottom:205.606650px;}
.y1d0{bottom:205.796700px;}
.y63{bottom:206.218350px;}
.y85{bottom:206.298150px;}
.yeb{bottom:206.317500px;}
.y1f1{bottom:210.751050px;}
.y1ab{bottom:211.238400px;}
.y13f{bottom:211.863150px;}
.yac{bottom:212.469000px;}
.y190{bottom:212.653500px;}
.y3d{bottom:221.713350px;}
.y238{bottom:222.132900px;}
.y84{bottom:222.799650px;}
.y13e{bottom:222.811650px;}
.yab{bottom:223.716000px;}
.y1cf{bottom:224.096700px;}
.y215{bottom:226.149150px;}
.y62{bottom:227.062350px;}
.y15b{bottom:227.144850px;}
.y107{bottom:227.316000px;}
.yea{bottom:228.369000px;}
.yd2{bottom:229.561950px;}
.y18f{bottom:230.955000px;}
.y1f0{bottom:232.945050px;}
.y1aa{bottom:233.432400px;}
.y19{bottom:237.402600px;}
.y83{bottom:239.301150px;}
.yaa{bottom:240.516750px;}
.y237{bottom:242.229900px;}
.y3c{bottom:242.269350px;}
.y1ce{bottom:242.396700px;}
.y121{bottom:243.907650px;}
.y13d{bottom:244.863150px;}
.y175{bottom:245.216100px;}
.y214{bottom:246.691650px;}
.y61{bottom:247.906350px;}
.y15a{bottom:248.600850px;}
.y18e{bottom:249.256500px;}
.y106{bottom:249.366000px;}
.y1ef{bottom:255.139050px;}
.y1a9{bottom:255.626400px;}
.y82{bottom:255.802650px;}
.ya9{bottom:257.317500px;}
.yd1{bottom:258.387450px;}
.y18{bottom:259.146600px;}
.y1cd{bottom:260.690700px;}
.y236{bottom:262.326900px;}
.y3b{bottom:262.825350px;}
.y120{bottom:266.263650px;}
.y213{bottom:267.234150px;}
.ye9{bottom:267.490950px;}
.y60{bottom:268.750350px;}
.y159{bottom:270.056850px;}
.y105{bottom:271.416000px;}
.y81{bottom:272.304150px;}
.ya8{bottom:274.118250px;}
.y1ee{bottom:277.333050px;}
.y1a8{bottom:277.820400px;}
.y174{bottom:278.054100px;}
.yd0{bottom:278.187450px;}
.y1cc{bottom:278.992200px;}
.y235{bottom:282.423900px;}
.ye8{bottom:285.645300px;}
.y18d{bottom:285.850500px;}
.y212{bottom:287.776650px;}
.y13c{bottom:287.982450px;}
.y11f{bottom:288.619650px;}
.y80{bottom:288.805650px;}
.y17{bottom:289.400550px;}
.y5f{bottom:289.594350px;}
.y158{bottom:291.500850px;}
.y104{bottom:293.466000px;}
.ya7{bottom:296.469000px;}
.y1cb{bottom:297.293700px;}
.y1ed{bottom:299.527050px;}
.y173{bottom:299.654100px;}
.y1a7{bottom:300.014400px;}
.y234{bottom:302.520900px;}
.y39{bottom:303.018300px;}
.y7f{bottom:305.307150px;}
.y13b{bottom:305.568150px;}
.ycf{bottom:307.012950px;}
.y18c{bottom:307.750500px;}
.y211{bottom:308.319150px;}
.y5e{bottom:310.438350px;}
.y11e{bottom:310.975650px;}
.y157{bottom:312.956850px;}
.y38{bottom:313.066800px;}
.ye7{bottom:314.899800px;}
.y103{bottom:315.516000px;}
.y1ca{bottom:315.595200px;}
.y172{bottom:321.560100px;}
.y1ec{bottom:321.721050px;}
.y7e{bottom:321.808650px;}
.y233{bottom:322.617900px;}
.y3a{bottom:323.115300px;}
.y210{bottom:328.861650px;}
.y18b{bottom:329.644500px;}
.y1a6{bottom:330.724350px;}
.y13a{bottom:332.281650px;}
.y11d{bottom:333.331650px;}
.y1c9{bottom:333.868050px;}
.yce{bottom:335.838450px;}
.y102{bottom:337.566000px;}
.y7d{bottom:338.310150px;}
.y232{bottom:342.714900px;}
.ya6{bottom:343.175700px;}
.y171{bottom:343.466100px;}
.y1eb{bottom:343.915050px;}
.ye6{bottom:344.154300px;}
.y20f{bottom:349.404150px;}
.y5b{bottom:351.234300px;}
.y18a{bottom:351.550500px;}
.y1c8{bottom:352.169550px;}
.y1a5{bottom:352.918350px;}
.y7c{bottom:354.811650px;}
.y11c{bottom:355.675650px;}
.y139{bottom:358.970850px;}
.y101{bottom:359.616150px;}
.y5c{bottom:361.282800px;}
.y231{bottom:362.811900px;}
.ycd{bottom:364.663950px;}
.y170{bottom:365.366100px;}
.y16{bottom:365.672550px;}
.y37{bottom:365.701350px;}
.y1ea{bottom:366.109050px;}
.y20e{bottom:369.946650px;}
.ya5{bottom:371.159700px;}
.y59{bottom:371.331300px;}
.ye5{bottom:373.408800px;}
.y189{bottom:373.456500px;}
.y7b{bottom:376.863150px;}
.y11b{bottom:378.031650px;}
.y1c7{bottom:378.976050px;}
.y156{bottom:379.108200px;}
.y5d{bottom:381.379800px;}
.y100{bottom:381.666150px;}
.y138{bottom:385.684350px;}
.y36{bottom:386.257350px;}
.y15{bottom:387.416550px;}
.y1e9{bottom:388.303050px;}
.y20d{bottom:390.489150px;}
.y5a{bottom:391.428300px;}
.ycc{bottom:393.489450px;}
.y1c6{bottom:397.277550px;}
.ya4{bottom:399.143700px;}
.ye4{bottom:402.663300px;}
.y230{bottom:404.811900px;}
.y155{bottom:405.392700px;}
.y35{bottom:406.813350px;}
.y14{bottom:409.160550px;}
.y1e8{bottom:410.503050px;}
.y20c{bottom:411.031650px;}
.y137{bottom:412.397850px;}
.y188{bottom:413.656500px;}
.y1c5{bottom:415.579050px;}
.y7a{bottom:418.088550px;}
.ya3{bottom:419.240700px;}
.y57{bottom:419.412300px;}
.ycb{bottom:422.314950px;}
.y34{bottom:427.369350px;}
.y16f{bottom:428.107200px;}
.y56{bottom:429.460800px;}
.y13{bottom:430.904550px;}
.y20b{bottom:431.574150px;}
.y154{bottom:431.677200px;}
.ye3{bottom:431.917800px;}
.y1e7{bottom:432.697050px;}
.y22f{bottom:433.409850px;}
.y1c4{bottom:433.880550px;}
.y136{bottom:439.095750px;}
.y58{bottom:439.509300px;}
.y79{bottom:439.688550px;}
.y1a4{bottom:441.742350px;}
.ya2{bottom:447.224700px;}
.y33{bottom:447.925350px;}
.y11a{bottom:448.122000px;}
.y187{bottom:450.244500px;}
.yca{bottom:451.140450px;}
.yff{bottom:451.360050px;}
.y20a{bottom:452.116650px;}
.y1c3{bottom:452.182050px;}
.y12{bottom:452.648550px;}
.y16e{bottom:454.339200px;}
.y22e{bottom:455.315850px;}
.y153{bottom:457.961700px;}
.y135{bottom:459.795150px;}
.y78{bottom:460.532550px;}
.ye2{bottom:461.179500px;}
.y1e6{bottom:463.401000px;}
.y1a3{bottom:463.936350px;}
.y32{bottom:468.481350px;}
.y1c2{bottom:470.483550px;}
.y186{bottom:472.150500px;}
.y209{bottom:472.659150px;}
.y11{bottom:474.392550px;}
.ya1{bottom:475.208700px;}
.y119{bottom:476.535000px;}
.yc9{bottom:479.965950px;}
.yfe{bottom:480.614550px;}
.y16d{bottom:480.623700px;}
.ye1{bottom:481.276500px;}
.y77{bottom:481.376550px;}
.y55{bottom:482.431350px;}
.y152{bottom:484.246200px;}
.y1a2{bottom:486.130350px;}
.y134{bottom:486.485100px;}
.y1c1{bottom:488.785050px;}
.y208{bottom:493.201650px;}
.y185{bottom:494.056500px;}
.y10{bottom:496.136550px;}
.yc8{bottom:499.765950px;}
.y76{bottom:502.220550px;}
.ya0{bottom:503.192700px;}
.y54{bottom:503.353350px;}
.y118{bottom:504.948000px;}
.y16c{bottom:506.908200px;}
.y1a1{bottom:508.324350px;}
.y31{bottom:508.672800px;}
.yfd{bottom:509.900850px;}
.y151{bottom:510.530700px;}
.ye0{bottom:510.531000px;}
.y133{bottom:513.198600px;}
.y1c0{bottom:515.591550px;}
.yf{bottom:517.880550px;}
.y22d{bottom:520.709100px;}
.y207{bottom:522.255600px;}
.y75{bottom:523.064550px;}
.y53{bottom:524.197350px;}
.yc7{bottom:528.591450px;}
.y1a0{bottom:530.518350px;}
.y9f{bottom:531.176700px;}
.y16b{bottom:533.192700px;}
.y117{bottom:533.320350px;}
.y1bf{bottom:533.893050px;}
.y184{bottom:534.241350px;}
.y30{bottom:536.656800px;}
.y150{bottom:536.815200px;}
.y22c{bottom:537.965850px;}
.yfc{bottom:539.155350px;}
.ye{bottom:539.624550px;}
.ydf{bottom:539.787750px;}
.y132{bottom:539.912100px;}
.y74{bottom:543.908550px;}
.y52{bottom:545.041350px;}
.y1be{bottom:552.194550px;}
.y1e5{bottom:552.237000px;}
.y183{bottom:552.542850px;}
.y2e{bottom:556.753800px;}
.yc6{bottom:557.416950px;}
.y9e{bottom:559.160700px;}
.y16a{bottom:559.477200px;}
.yfb{bottom:559.697850px;}
.y131{bottom:560.559300px;}
.yd{bottom:561.368550px;}
.y116{bottom:561.733350px;}
.y14f{bottom:563.099700px;}
.y73{bottom:564.758550px;}
.y51{bottom:565.885350px;}
.yde{bottom:569.051550px;}
.y22b{bottom:569.939850px;}
.y1bd{bottom:570.496050px;}
.y182{bottom:570.844350px;}
.y206{bottom:571.957050px;}
.y1e4{bottom:574.431000px;}
.y19f{bottom:574.916100px;}
.y2f{bottom:576.850800px;}
.yc5{bottom:577.216950px;}
.yfa{bottom:580.240350px;}
.yc{bottom:583.112550px;}
.y169{bottom:585.761700px;}
.y50{bottom:586.729350px;}
.y9d{bottom:587.152200px;}
.y130{bottom:587.272800px;}
.y14e{bottom:589.384200px;}
.y22a{bottom:589.888350px;}
.y115{bottom:590.146350px;}
.y205{bottom:592.499550px;}
.y19e{bottom:593.516850px;}
.y1e3{bottom:596.625000px;}
.y1bc{bottom:597.302550px;}
.y181{bottom:597.650850px;}
.ydd{bottom:598.306050px;}
.yb{bottom:604.856550px;}
.yc4{bottom:606.042450px;}
.y4f{bottom:607.573350px;}
.yf9{bottom:609.494850px;}
.y229{bottom:609.836850px;}
.y168{bottom:612.046200px;}
.y19d{bottom:612.117600px;}
.y204{bottom:613.042050px;}
.y12f{bottom:613.969800px;}
.y9c{bottom:615.136200px;}
.y1bb{bottom:615.604050px;}
.y14d{bottom:615.668700px;}
.y180{bottom:615.952350px;}
.y114{bottom:618.559350px;}
.y1e2{bottom:618.819000px;}
.y2d{bottom:619.378350px;}
.ya{bottom:626.600550px;}
.y72{bottom:627.362550px;}
.ydc{bottom:627.560550px;}
.y4e{bottom:628.417350px;}
.y228{bottom:629.785350px;}
.y19c{bottom:630.718350px;}
.y203{bottom:633.584550px;}
.y1ba{bottom:633.905550px;}
.y12e{bottom:634.677300px;}
.yc3{bottom:634.867950px;}
.y167{bottom:638.330700px;}
.yf8{bottom:638.749350px;}
.y2c{bottom:639.934350px;}
.y1e1{bottom:641.013000px;}
.y14c{bottom:641.953200px;}
.y17f{bottom:642.758850px;}
.y9b{bottom:643.120200px;}
.y113{bottom:646.972350px;}
.y71{bottom:648.206550px;}
.y4d{bottom:649.261350px;}
.y227{bottom:649.733850px;}
.y1b9{bottom:652.207050px;}
.y247{bottom:653.315850px;}
.y202{bottom:654.127050px;}
.yc2{bottom:654.667950px;}
.ydb{bottom:656.815050px;}
.y9{bottom:656.854500px;}
.y2b{bottom:660.490350px;}
.y17e{bottom:661.060350px;}
.y12d{bottom:661.390800px;}
.y14b{bottom:662.050200px;}
.y1e0{bottom:663.207000px;}
.y166{bottom:664.615200px;}
.yf7{bottom:668.003850px;}
.y70{bottom:669.050550px;}
.y226{bottom:669.682350px;}
.y4c{bottom:670.105350px;}
.y1b8{bottom:670.508550px;}
.y9a{bottom:671.104200px;}
.y246{bottom:671.315850px;}
.y19b{bottom:671.530350px;}
.yc1{bottom:674.467950px;}
.y201{bottom:674.669550px;}
.y112{bottom:675.385350px;}
.yda{bottom:676.912050px;}
.y2a{bottom:681.046350px;}
.y1df{bottom:685.401000px;}
.y17d{bottom:687.866850px;}
.y12c{bottom:688.104300px;}
.y245{bottom:689.315850px;}
.y225{bottom:689.630850px;}
.y6f{bottom:689.894550px;}
.y165{bottom:690.899700px;}
.y4b{bottom:690.949350px;}
.y19a{bottom:693.724350px;}
.yc0{bottom:694.267950px;}
.y200{bottom:695.212050px;}
.y14a{bottom:695.366850px;}
.yf6{bottom:697.258350px;}
.y1b7{bottom:697.312500px;}
.y99{bottom:699.088200px;}
.y29{bottom:701.602350px;}
.y111{bottom:703.753800px;}
.y17c{bottom:706.168350px;}
.y244{bottom:707.315850px;}
.y224{bottom:709.579350px;}
.y6e{bottom:710.738550px;}
.yd9{bottom:711.719850px;}
.y4a{bottom:711.793350px;}
.ybf{bottom:714.067950px;}
.y12b{bottom:714.817800px;}
.y149{bottom:715.018350px;}
.y1b6{bottom:715.612500px;}
.y1ff{bottom:715.754550px;}
.y199{bottom:715.918350px;}
.y164{bottom:717.184200px;}
.y28{bottom:722.158350px;}
.y1de{bottom:726.191250px;}
.yf5{bottom:726.512850px;}
.y94{bottom:727.055700px;}
.y98{bottom:727.072200px;}
.y223{bottom:729.527850px;}
.y6d{bottom:731.582550px;}
.y110{bottom:732.166800px;}
.y49{bottom:732.637350px;}
.y8{bottom:733.054500px;}
.yd8{bottom:733.318350px;}
.ybe{bottom:733.867950px;}
.y1b5{bottom:733.912500px;}
.y1fe{bottom:736.297050px;}
.y92{bottom:737.104200px;}
.y12a{bottom:741.531300px;}
.y27{bottom:742.714350px;}
.y17b{bottom:742.780350px;}
.y163{bottom:743.468700px;}
.y1dd{bottom:744.792000px;}
.y243{bottom:746.915850px;}
.y8f{bottom:747.152700px;}
.y97{bottom:747.169200px;}
.y222{bottom:749.476350px;}
.y1b4{bottom:752.212500px;}
.y6c{bottom:752.426550px;}
.y7{bottom:752.854500px;}
.y48{bottom:753.481350px;}
.ybd{bottom:753.701400px;}
.yf4{bottom:755.767350px;}
.y148{bottom:756.082350px;}
.y198{bottom:756.713850px;}
.y1fd{bottom:756.839550px;}
.y91{bottom:757.201200px;}
.y10f{bottom:760.579800px;}
.y26{bottom:763.270350px;}
.y1dc{bottom:763.392750px;}
.y17a{bottom:764.524350px;}
.y242{bottom:766.715850px;}
.y8e{bottom:767.249700px;}
.y96{bottom:767.266200px;}
.y129{bottom:768.244800px;}
.y221{bottom:769.424850px;}
.y162{bottom:769.753200px;}
.y1b3{bottom:770.512500px;}
.y6b{bottom:773.270550px;}
.ybc{bottom:773.501400px;}
.y47{bottom:774.325350px;}
.y197{bottom:775.314600px;}
.yd7{bottom:776.518350px;}
.y90{bottom:777.298200px;}
.y1fc{bottom:777.382050px;}
.y147{bottom:777.538350px;}
.y1db{bottom:781.993500px;}
.y25{bottom:783.826350px;}
.yf3{bottom:785.021400px;}
.y179{bottom:786.268350px;}
.y93{bottom:787.346700px;}
.y95{bottom:787.363200px;}
.y10e{bottom:788.992800px;}
.y220{bottom:789.373350px;}
.y161{bottom:789.850200px;}
.y196{bottom:793.915350px;}
.y6a{bottom:794.114550px;}
.y6{bottom:794.254500px;}
.y128{bottom:794.958300px;}
.y1fb{bottom:797.924550px;}
.yd6{bottom:798.118350px;}
.y146{bottom:798.994350px;}
.ybb{bottom:802.326900px;}
.y24{bottom:804.382350px;}
.y1b2{bottom:807.106500px;}
.y178{bottom:808.018350px;}
.y241{bottom:808.115850px;}
.y1da{bottom:809.099250px;}
.y21f{bottom:809.321850px;}
.y195{bottom:812.516100px;}
.yf2{bottom:814.275900px;}
.y69{bottom:814.976550px;}
.y46{bottom:815.113800px;}
.y10d{bottom:817.405800px;}
.y1fa{bottom:818.467050px;}
.yd5{bottom:819.718350px;}
.y145{bottom:820.450350px;}
.y8d{bottom:821.518350px;}
.y127{bottom:821.655300px;}
.y160{bottom:823.162350px;}
.y5{bottom:824.854500px;}
.y23{bottom:824.938350px;}
.y1d9{bottom:827.700000px;}
.y240{bottom:827.915850px;}
.y1b1{bottom:829.012500px;}
.y21e{bottom:829.270350px;}
.y194{bottom:831.116850px;}
.yba{bottom:831.152400px;}
.y68{bottom:835.820550px;}
.y1f9{bottom:839.032050px;}
.yd4{bottom:841.318350px;}
.y144{bottom:841.906350px;}
.y15f{bottom:842.368350px;}
.y45{bottom:843.097800px;}
.yf1{bottom:843.530400px;}
.y22{bottom:845.494350px;}
.y10c{bottom:845.818800px;}
.y1d8{bottom:846.300750px;}
.y23f{bottom:847.717350px;}
.y126{bottom:848.368800px;}
.y21d{bottom:849.218850px;}
.y193{bottom:849.717600px;}
.y4{bottom:855.454500px;}
.y67{bottom:856.664550px;}
.y1f8{bottom:859.574550px;}
.yb5{bottom:859.730400px;}
.yb9{bottom:859.746900px;}
.y8c{bottom:862.918350px;}
.y143{bottom:863.362350px;}
.y1d7{bottom:864.901500px;}
.y21{bottom:866.050350px;}
.y192{bottom:868.318350px;}
.y21c{bottom:869.167350px;}
.y1b0{bottom:869.212500px;}
.y23e{bottom:869.315850px;}
.yb3{bottom:869.778900px;}
.yf0{bottom:871.943400px;}
.y177{bottom:873.274350px;}
.y10b{bottom:874.231800px;}
.y125{bottom:875.082300px;}
.y66{bottom:877.508550px;}
.yb0{bottom:879.827400px;}
.yb8{bottom:879.843900px;}
.y1f7{bottom:880.117050px;}
.y15e{bottom:883.618350px;}
.y8b{bottom:884.518350px;}
.y142{bottom:884.818350px;}
.y44{bottom:886.024500px;}
.y20{bottom:886.606350px;}
.y21b{bottom:889.115850px;}
.yb2{bottom:889.875900px;}
.y176{bottom:891.418350px;}
.y1d6{bottom:892.007250px;}
.y10a{bottom:894.328800px;}
.y124{bottom:895.179300px;}
.yaf{bottom:899.924400px;}
.yef{bottom:899.927400px;}
.yb7{bottom:899.940900px;}
.y1f6{bottom:900.659550px;}
.y191{bottom:905.524350px;}
.y15d{bottom:905.668350px;}
.y1af{bottom:905.806500px;}
.y8a{bottom:906.118350px;}
.y141{bottom:906.262350px;}
.y43{bottom:906.868500px;}
.y1f{bottom:907.162350px;}
.y23d{bottom:908.915850px;}
.y21a{bottom:909.064350px;}
.yb1{bottom:909.972900px;}
.y1d5{bottom:910.608000px;}
.y3{bottom:910.715850px;}
.yb4{bottom:920.021400px;}
.yee{bottom:920.024400px;}
.yb6{bottom:920.037900px;}
.y42{bottom:927.712500px;}
.y1e{bottom:927.718350px;}
.y109{bottom:928.710000px;}
.y2{bottom:928.715850px;}
.y1d4{bottom:929.208750px;}
.y1f5{bottom:929.713500px;}
.h24{height:28.792969px;}
.h8{height:30.568359px;}
.h6{height:37.191504px;}
.h3{height:38.645086px;}
.ha{height:40.757812px;}
.h9{height:48.399902px;}
.h2{height:50.947266px;}
.h27{height:53.494629px;}
.h2a{height:53.609229px;}
.h4{height:56.041992px;}
.h14{height:57.911395px;}
.h1a{height:57.926395px;}
.h16{height:58.007995px;}
.h12{height:58.015195px;}
.h18{height:58.016395px;}
.h17{height:58.036195px;}
.h15{height:58.039195px;}
.h1e{height:58.045195px;}
.h25{height:58.051195px;}
.h19{height:58.055395px;}
.hb{height:58.057195px;}
.h22{height:58.075195px;}
.h21{height:58.077595px;}
.h1d{height:58.099795px;}
.h23{height:58.109995px;}
.h13{height:58.128595px;}
.h20{height:58.139395px;}
.h1c{height:58.180795px;}
.h1b{height:58.196395px;}
.h26{height:58.238395px;}
.h1f{height:58.286395px;}
.h2b{height:61.130719px;}
.h7{height:61.136719px;}
.h29{height:61.160719px;}
.hd{height:63.010031px;}
.h10{height:63.250031px;}
.hf{height:63.298031px;}
.h11{height:63.322031px;}
.h28{height:63.370031px;}
.h5{height:86.610352px;}
.hc{height:96.235992px;}
.he{height:136.429992px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.xc{left:84.822900px;}
.x2f{left:86.268900px;}
.x36{left:88.248900px;}
.x35{left:92.241900px;}
.x1{left:97.795350px;}
.x37{left:102.047250px;}
.x16{left:103.748700px;}
.x10{left:105.035700px;}
.x2a{left:107.549550px;}
.x29{left:111.653850px;}
.x4{left:119.053350px;}
.x5{left:123.687450px;}
.x2c{left:124.961400px;}
.x39{left:127.106400px;}
.x32{left:128.624400px;}
.x3c{left:140.314950px;}
.xb{left:141.360150px;}
.x2{left:143.170350px;}
.x1f{left:145.297200px;}
.x30{left:146.650350px;}
.xd{left:153.957900px;}
.x19{left:156.284700px;}
.x3d{left:161.580150px;}
.x2b{left:164.111250px;}
.x18{left:165.310200px;}
.x17{left:169.220700px;}
.x40{left:173.006700px;}
.x27{left:191.338650px;}
.xf{left:198.743400px;}
.x3{left:215.998650px;}
.x20{left:236.344200px;}
.x1a{left:242.414700px;}
.x2d{left:282.387900px;}
.x11{left:287.938200px;}
.x33{left:291.792900px;}
.x3a{left:295.736400px;}
.xe{left:303.909900px;}
.x24{left:316.394400px;}
.x21{left:337.654200px;}
.x12{left:343.972200px;}
.x13{left:353.096700px;}
.x15{left:390.337200px;}
.x1b{left:393.571200px;}
.x14{left:395.633700px;}
.x25{left:415.097400px;}
.x2e{left:428.000400px;}
.x22{left:436.357200px;}
.x1c{left:444.028200px;}
.x28{left:449.260350px;}
.x1d{left:455.792700px;}
.x34{left:462.897900px;}
.x3b{left:464.366400px;}
.xa{left:471.310650px;}
.x8{left:477.002850px;}
.x9{left:478.059150px;}
.x31{left:484.900350px;}
.x3f{left:509.980350px;}
.x26{left:517.050900px;}
.x3e{left:518.943600px;}
.x38{left:520.322250px;}
.x23{left:538.310700px;}
.x1e{left:566.326200px;}
.x6{left:583.039350px;}
@media print{
.v9{vertical-align:-23.680000pt;}
.v8{vertical-align:-21.706667pt;}
.v4{vertical-align:-19.733333pt;}
.va{vertical-align:-12.757333pt;}
.vb{vertical-align:-11.098133pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:21.717333pt;}
.v6{vertical-align:23.402667pt;}
.v3{vertical-align:36.320000pt;}
.v7{vertical-align:71.456000pt;}
.ls18{letter-spacing:-6.400000pt;}
.ls4d{letter-spacing:-2.229333pt;}
.ls53{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls55{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls29{letter-spacing:-0.352000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.293333pt;}
.ls1f{letter-spacing:-0.253333pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.152000pt;}
.ls44{letter-spacing:-0.064000pt;}
.ls4e{letter-spacing:-0.058667pt;}
.ls45{letter-spacing:-0.038400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.035200pt;}
.ls49{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.280000pt;}
.ls2e{letter-spacing:0.286933pt;}
.ls47{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.293867pt;}
.ls30{letter-spacing:0.307200pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.352000pt;}
.lse{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.392000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.478400pt;}
.ls42{letter-spacing:0.504000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls51{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.560000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.616000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls4f{letter-spacing:0.645333pt;}
.ls36{letter-spacing:0.672000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls35{letter-spacing:2.184000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.472000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:3.976000pt;}
.ls24{letter-spacing:4.080000pt;}
.ls1a{letter-spacing:4.165333pt;}
.ls27{letter-spacing:4.515733pt;}
.ls26{letter-spacing:4.516267pt;}
.ls19{letter-spacing:4.800000pt;}
.ls40{letter-spacing:4.816000pt;}
.ls1c{letter-spacing:5.040000pt;}
.ls41{letter-spacing:5.208000pt;}
.ls32{letter-spacing:5.320000pt;}
.ls46{letter-spacing:5.333333pt;}
.ls33{letter-spacing:5.488000pt;}
.ls3e{letter-spacing:5.824000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls3f{letter-spacing:5.992000pt;}
.ls3a{letter-spacing:6.272000pt;}
.ls2c{letter-spacing:6.384000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls43{letter-spacing:8.400000pt;}
.ls17{letter-spacing:8.461333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls39{letter-spacing:9.520000pt;}
.ls38{letter-spacing:9.576000pt;}
.ls4a{letter-spacing:9.738667pt;}
.ls4b{letter-spacing:10.208000pt;}
.ls52{letter-spacing:10.442667pt;}
.ls3c{letter-spacing:10.920000pt;}
.ls37{letter-spacing:11.312000pt;}
.ls54{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:34.598400pt;}
.ls21{letter-spacing:34.598933pt;}
.ls25{letter-spacing:404.565333pt;}
.ws28{word-spacing:-26.928000pt;}
.ws27{word-spacing:-26.693333pt;}
.ws26{word-spacing:-26.224000pt;}
.ws22{word-spacing:-20.320000pt;}
.ws6{word-spacing:-18.496000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws1e{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.072000pt;}
.ws23{word-spacing:-16.778667pt;}
.ws24{word-spacing:-16.544000pt;}
.ws8{word-spacing:-16.485333pt;}
.ws5{word-spacing:-16.192000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws25{word-spacing:-14.490667pt;}
.ws1f{word-spacing:-14.280000pt;}
.ws16{word-spacing:-14.237333pt;}
.ws15{word-spacing:-13.984000pt;}
.ws29{word-spacing:-13.962667pt;}
.ws1c{word-spacing:-13.832000pt;}
.ws20{word-spacing:-13.173333pt;}
.wsf{word-spacing:-12.514667pt;}
.ws19{word-spacing:-12.362667pt;}
.ws1b{word-spacing:-11.174400pt;}
.ws1d{word-spacing:-11.097600pt;}
.wse{word-spacing:-10.790400pt;}
.ws14{word-spacing:-10.243200pt;}
.ws11{word-spacing:-9.891200pt;}
.ws21{word-spacing:-9.441600pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:23.701333pt;}
.wsb{word-spacing:25.402667pt;}
.wsd{word-spacing:38.192000pt;}
.ws3{word-spacing:41.418667pt;}
.ws17{word-spacing:47.696000pt;}
.ws12{word-spacing:49.456000pt;}
.ws7{word-spacing:64.885333pt;}
.wsc{word-spacing:67.994667pt;}
.ws9{word-spacing:88.528000pt;}
.ws1a{word-spacing:157.674133pt;}
.ws4{word-spacing:406.325333pt;}
.ws18{word-spacing:411.143467pt;}
.ws2{word-spacing:449.797333pt;}
._1b{margin-left:-18.048000pt;}
._39{margin-left:-15.545067pt;}
._a1{margin-left:-13.540800pt;}
._a3{margin-left:-11.662400pt;}
._6{margin-left:-9.248000pt;}
._5{margin-left:-7.253333pt;}
._a{margin-left:-5.584000pt;}
._3{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._c{margin-left:-2.485333pt;}
._1{margin-left:-1.514667pt;}
._7{width:0.895467pt;}
._8{width:2.213867pt;}
._b{width:3.214400pt;}
._2{width:4.106667pt;}
._9{width:5.205333pt;}
._4{width:6.346667pt;}
._10{width:7.247467pt;}
._f{width:8.447467pt;}
._d{width:9.600533pt;}
._1d{width:10.661867pt;}
._1c{width:11.706667pt;}
._a2{width:13.776000pt;}
._11{width:19.742933pt;}
._5d{width:34.598400pt;}
._93{width:47.813333pt;}
._e{width:50.598400pt;}
._94{width:56.279467pt;}
._3d{width:63.888000pt;}
._31{width:65.941333pt;}
._3e{width:67.813867pt;}
._2e{width:70.662400pt;}
._40{width:76.032000pt;}
._4a{width:78.085333pt;}
._9b{width:81.898667pt;}
._81{width:84.597333pt;}
._41{width:87.061333pt;}
._3f{width:89.818667pt;}
._19{width:90.816000pt;}
._48{width:91.915200pt;}
._1e{width:95.274667pt;}
._24{width:100.202667pt;}
._38{width:103.077333pt;}
._26{width:105.365333pt;}
._1a{width:106.480000pt;}
._27{width:108.693867pt;}
._43{width:110.597333pt;}
._17{width:111.920533pt;}
._49{width:113.178667pt;}
._21{width:115.397333pt;}
._34{width:117.509333pt;}
._44{width:120.652267pt;}
._18{width:122.539200pt;}
._47{width:123.825067pt;}
._45{width:126.485333pt;}
._30{width:128.538667pt;}
._22{width:133.994667pt;}
._23{width:135.621867pt;}
._2a{width:136.940267pt;}
._2d{width:139.228267pt;}
._2f{width:141.269333pt;}
._20{width:148.192000pt;}
._3a{width:149.093333pt;}
._46{width:152.874667pt;}
._35{width:155.877333pt;}
._28{width:157.365333pt;}
._25{width:158.325867pt;}
._36{width:163.504000pt;}
._2b{width:167.434667pt;}
._29{width:168.901333pt;}
._37{width:170.192000pt;}
._33{width:172.421333pt;}
._2c{width:175.120000pt;}
._3b{width:176.176000pt;}
._3c{width:187.674667pt;}
._42{width:188.730667pt;}
._1f{width:189.653867pt;}
._32{width:197.663467pt;}
._64{width:213.722667pt;}
._15{width:219.002667pt;}
._4f{width:220.058667pt;}
._7e{width:227.696000pt;}
._50{width:237.600000pt;}
._8d{width:238.581867pt;}
._62{width:250.448000pt;}
._4e{width:260.832000pt;}
._6d{width:262.416000pt;}
._58{width:274.442667pt;}
._61{width:277.493333pt;}
._8a{width:280.256533pt;}
._53{width:281.482667pt;}
._16{width:286.469333pt;}
._55{width:289.226667pt;}
._74{width:291.104000pt;}
._5b{width:293.061333pt;}
._52{width:295.281600pt;}
._5c{width:305.712000pt;}
._92{width:308.314667pt;}
._51{width:310.037867pt;}
._4c{width:311.872000pt;}
._6e{width:321.200000pt;}
._66{width:323.477333pt;}
._59{width:330.438400pt;}
._69{width:331.855467pt;}
._13{width:334.224000pt;}
._82{width:342.672000pt;}
._56{width:343.962667pt;}
._7d{width:345.029333pt;}
._80{width:345.941867pt;}
._65{width:346.928000pt;}
._5a{width:350.602667pt;}
._84{width:352.528000pt;}
._6b{width:353.654933pt;}
._63{width:358.032000pt;}
._4b{width:360.096000pt;}
._77{width:368.426667pt;}
._5e{width:370.453333pt;}
._9a{width:371.724267pt;}
._9f{width:374.246933pt;}
._6c{width:377.242133pt;}
._5f{width:378.458667pt;}
._6f{width:379.355733pt;}
._a0{width:380.533333pt;}
._75{width:381.744000pt;}
._54{width:382.932800pt;}
._4d{width:384.618667pt;}
._8c{width:385.921600pt;}
._85{width:388.256000pt;}
._71{width:389.312000pt;}
._6a{width:390.730667pt;}
._57{width:392.128000pt;}
._67{width:393.712000pt;}
._9c{width:394.826667pt;}
._83{width:397.056000pt;}
._76{width:398.362133pt;}
._9d{width:400.634667pt;}
._88{width:403.305600pt;}
._79{width:410.010667pt;}
._7f{width:413.424000pt;}
._73{width:414.523200pt;}
._7a{width:417.296000pt;}
._87{width:421.989333pt;}
._60{width:423.925333pt;}
._72{width:425.642133pt;}
._7b{width:430.389333pt;}
._8b{width:431.993600pt;}
._68{width:433.648533pt;}
._89{width:435.572267pt;}
._78{width:441.877333pt;}
._8e{width:444.276267pt;}
._86{width:446.218667pt;}
._7c{width:454.197333pt;}
._12{width:461.706667pt;}
._9e{width:465.637333pt;}
._70{width:469.978667pt;}
._99{width:498.154133pt;}
._96{width:511.386667pt;}
._98{width:538.304000pt;}
._91{width:548.240000pt;}
._95{width:571.061333pt;}
._90{width:574.405333pt;}
._97{width:577.301333pt;}
._8f{width:597.520000pt;}
._14{width:621.147200pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:33.600000pt;}
.fsa{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:38.400000pt;}
.fs6{font-size:38.933333pt;}
.fs5{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:67.855600pt;}
.y1{bottom:67.860800pt;}
.y89{bottom:124.721467pt;}
.y1d{bottom:124.724000pt;}
.y40{bottom:124.726667pt;}
.y1d3{bottom:126.568667pt;}
.y23c{bottom:126.787467pt;}
.y219{bottom:127.981467pt;}
.y1f4{bottom:128.150267pt;}
.y1ae{bottom:128.556800pt;}
.y65{bottom:129.656133pt;}
.yae{bottom:129.661333pt;}
.y1c{bottom:139.392000pt;}
.y1d2{bottom:142.836667pt;}
.y23b{bottom:144.255467pt;}
.y88{bottom:144.322800pt;}
.y3f{bottom:144.328000pt;}
.y218{bottom:146.241467pt;}
.y1f3{bottom:147.878267pt;}
.y1ad{bottom:148.284800pt;}
.y87{bottom:154.040133pt;}
.y123{bottom:154.054800pt;}
.y1b{bottom:154.060000pt;}
.y140{bottom:158.989467pt;}
.yed{bottom:158.994667pt;}
.y1d1{bottom:159.104667pt;}
.y23a{bottom:161.723467pt;}
.y217{bottom:164.501467pt;}
.y64{bottom:164.777200pt;}
.y1f2{bottom:167.606267pt;}
.y1ac{bottom:168.039467pt;}
.y86{bottom:168.708133pt;}
.yec{bottom:168.725333pt;}
.yad{bottom:168.994000pt;}
.y122{bottom:173.656133pt;}
.y1a{bottom:173.661333pt;}
.yd3{bottom:178.432400pt;}
.y3e{bottom:179.078533pt;}
.y239{bottom:179.587467pt;}
.y108{bottom:182.458667pt;}
.y15c{bottom:182.578533pt;}
.y216{bottom:182.761467pt;}
.y1d0{bottom:182.930400pt;}
.y63{bottom:183.305200pt;}
.y85{bottom:183.376133pt;}
.yeb{bottom:183.393333pt;}
.y1f1{bottom:187.334267pt;}
.y1ab{bottom:187.767467pt;}
.y13f{bottom:188.322800pt;}
.yac{bottom:188.861333pt;}
.y190{bottom:189.025333pt;}
.y3d{bottom:197.078533pt;}
.y238{bottom:197.451467pt;}
.y84{bottom:198.044133pt;}
.y13e{bottom:198.054800pt;}
.yab{bottom:198.858667pt;}
.y1cf{bottom:199.197067pt;}
.y215{bottom:201.021467pt;}
.y62{bottom:201.833200pt;}
.y15b{bottom:201.906533pt;}
.y107{bottom:202.058667pt;}
.yea{bottom:202.994667pt;}
.yd2{bottom:204.055067pt;}
.y18f{bottom:205.293333pt;}
.y1f0{bottom:207.062267pt;}
.y1aa{bottom:207.495467pt;}
.y19{bottom:211.024533pt;}
.y83{bottom:212.712133pt;}
.yaa{bottom:213.792667pt;}
.y237{bottom:215.315467pt;}
.y3c{bottom:215.350533pt;}
.y1ce{bottom:215.463733pt;}
.y121{bottom:216.806800pt;}
.y13d{bottom:217.656133pt;}
.y175{bottom:217.969867pt;}
.y214{bottom:219.281467pt;}
.y61{bottom:220.361200pt;}
.y15a{bottom:220.978533pt;}
.y18e{bottom:221.561333pt;}
.y106{bottom:221.658667pt;}
.y1ef{bottom:226.790267pt;}
.y1a9{bottom:227.223467pt;}
.y82{bottom:227.380133pt;}
.ya9{bottom:228.726667pt;}
.yd1{bottom:229.677733pt;}
.y18{bottom:230.352533pt;}
.y1cd{bottom:231.725067pt;}
.y236{bottom:233.179467pt;}
.y3b{bottom:233.622533pt;}
.y120{bottom:236.678800pt;}
.y213{bottom:237.541467pt;}
.ye9{bottom:237.769733pt;}
.y60{bottom:238.889200pt;}
.y159{bottom:240.050533pt;}
.y105{bottom:241.258667pt;}
.y81{bottom:242.048133pt;}
.ya8{bottom:243.660667pt;}
.y1ee{bottom:246.518267pt;}
.y1a8{bottom:246.951467pt;}
.y174{bottom:247.159200pt;}
.yd0{bottom:247.277733pt;}
.y1cc{bottom:247.993067pt;}
.y235{bottom:251.043467pt;}
.ye8{bottom:253.906933pt;}
.y18d{bottom:254.089333pt;}
.y212{bottom:255.801467pt;}
.y13c{bottom:255.984400pt;}
.y11f{bottom:256.550800pt;}
.y80{bottom:256.716133pt;}
.y17{bottom:257.244933pt;}
.y5f{bottom:257.417200pt;}
.y158{bottom:259.111867pt;}
.y104{bottom:260.858667pt;}
.ya7{bottom:263.528000pt;}
.y1cb{bottom:264.261067pt;}
.y1ed{bottom:266.246267pt;}
.y173{bottom:266.359200pt;}
.y1a7{bottom:266.679467pt;}
.y234{bottom:268.907467pt;}
.y39{bottom:269.349600pt;}
.y7f{bottom:271.384133pt;}
.y13b{bottom:271.616133pt;}
.ycf{bottom:272.900400pt;}
.y18c{bottom:273.556000pt;}
.y211{bottom:274.061467pt;}
.y5e{bottom:275.945200pt;}
.y11e{bottom:276.422800pt;}
.y157{bottom:278.183867pt;}
.y38{bottom:278.281600pt;}
.ye7{bottom:279.910933pt;}
.y103{bottom:280.458667pt;}
.y1ca{bottom:280.529067pt;}
.y172{bottom:285.831200pt;}
.y1ec{bottom:285.974267pt;}
.y7e{bottom:286.052133pt;}
.y233{bottom:286.771467pt;}
.y3a{bottom:287.213600pt;}
.y210{bottom:292.321467pt;}
.y18b{bottom:293.017333pt;}
.y1a6{bottom:293.977200pt;}
.y13a{bottom:295.361467pt;}
.y11d{bottom:296.294800pt;}
.y1c9{bottom:296.771600pt;}
.yce{bottom:298.523067pt;}
.y102{bottom:300.058667pt;}
.y7d{bottom:300.720133pt;}
.y232{bottom:304.635467pt;}
.ya6{bottom:305.045067pt;}
.y171{bottom:305.303200pt;}
.y1eb{bottom:305.702267pt;}
.ye6{bottom:305.914933pt;}
.y20f{bottom:310.581467pt;}
.y5b{bottom:312.208267pt;}
.y18a{bottom:312.489333pt;}
.y1c8{bottom:313.039600pt;}
.y1a5{bottom:313.705200pt;}
.y7c{bottom:315.388133pt;}
.y11c{bottom:316.156133pt;}
.y139{bottom:319.085200pt;}
.y101{bottom:319.658800pt;}
.y5c{bottom:321.140267pt;}
.y231{bottom:322.499467pt;}
.ycd{bottom:324.145733pt;}
.y170{bottom:324.769867pt;}
.y16{bottom:325.042267pt;}
.y37{bottom:325.067867pt;}
.y1ea{bottom:325.430267pt;}
.y20e{bottom:328.841467pt;}
.ya5{bottom:329.919733pt;}
.y59{bottom:330.072267pt;}
.ye5{bottom:331.918933pt;}
.y189{bottom:331.961333pt;}
.y7b{bottom:334.989467pt;}
.y11b{bottom:336.028133pt;}
.y1c7{bottom:336.867600pt;}
.y156{bottom:336.985067pt;}
.y5d{bottom:339.004267pt;}
.y100{bottom:339.258800pt;}
.y138{bottom:342.830533pt;}
.y36{bottom:343.339867pt;}
.y15{bottom:344.370267pt;}
.y1e9{bottom:345.158267pt;}
.y20d{bottom:347.101467pt;}
.y5a{bottom:347.936267pt;}
.ycc{bottom:349.768400pt;}
.y1c6{bottom:353.135600pt;}
.ya4{bottom:354.794400pt;}
.ye4{bottom:357.922933pt;}
.y230{bottom:359.832800pt;}
.y155{bottom:360.349067pt;}
.y35{bottom:361.611867pt;}
.y14{bottom:363.698267pt;}
.y1e8{bottom:364.891600pt;}
.y20c{bottom:365.361467pt;}
.y137{bottom:366.575867pt;}
.y188{bottom:367.694667pt;}
.y1c5{bottom:369.403600pt;}
.y7a{bottom:371.634267pt;}
.ya3{bottom:372.658400pt;}
.y57{bottom:372.810933pt;}
.ycb{bottom:375.391067pt;}
.y34{bottom:379.883867pt;}
.y16f{bottom:380.539733pt;}
.y56{bottom:381.742933pt;}
.y13{bottom:383.026267pt;}
.y20b{bottom:383.621467pt;}
.y154{bottom:383.713067pt;}
.ye3{bottom:383.926933pt;}
.y1e7{bottom:384.619600pt;}
.y22f{bottom:385.253200pt;}
.y1c4{bottom:385.671600pt;}
.y136{bottom:390.307333pt;}
.y58{bottom:390.674933pt;}
.y79{bottom:390.834267pt;}
.y1a4{bottom:392.659867pt;}
.ya2{bottom:397.533067pt;}
.y33{bottom:398.155867pt;}
.y11a{bottom:398.330667pt;}
.y187{bottom:400.217333pt;}
.yca{bottom:401.013733pt;}
.yff{bottom:401.208933pt;}
.y20a{bottom:401.881467pt;}
.y1c3{bottom:401.939600pt;}
.y12{bottom:402.354267pt;}
.y16e{bottom:403.857067pt;}
.y22e{bottom:404.725200pt;}
.y153{bottom:407.077067pt;}
.y135{bottom:408.706800pt;}
.y78{bottom:409.362267pt;}
.ye2{bottom:409.937333pt;}
.y1e6{bottom:411.912000pt;}
.y1a3{bottom:412.387867pt;}
.y32{bottom:416.427867pt;}
.y1c2{bottom:418.207600pt;}
.y186{bottom:419.689333pt;}
.y209{bottom:420.141467pt;}
.y11{bottom:421.682267pt;}
.ya1{bottom:422.407733pt;}
.y119{bottom:423.586667pt;}
.yc9{bottom:426.636400pt;}
.yfe{bottom:427.212933pt;}
.y16d{bottom:427.221067pt;}
.ye1{bottom:427.801333pt;}
.y77{bottom:427.890267pt;}
.y55{bottom:428.827867pt;}
.y152{bottom:430.441067pt;}
.y1a2{bottom:432.115867pt;}
.y134{bottom:432.431200pt;}
.y1c1{bottom:434.475600pt;}
.y208{bottom:438.401467pt;}
.y185{bottom:439.161333pt;}
.y10{bottom:441.010267pt;}
.yc8{bottom:444.236400pt;}
.y76{bottom:446.418267pt;}
.ya0{bottom:447.282400pt;}
.y54{bottom:447.425200pt;}
.y118{bottom:448.842667pt;}
.y16c{bottom:450.585067pt;}
.y1a1{bottom:451.843867pt;}
.y31{bottom:452.153600pt;}
.yfd{bottom:453.245200pt;}
.y151{bottom:453.805067pt;}
.ye0{bottom:453.805333pt;}
.y133{bottom:456.176533pt;}
.y1c0{bottom:458.303600pt;}
.yf{bottom:460.338267pt;}
.y22d{bottom:462.852533pt;}
.y207{bottom:464.227200pt;}
.y75{bottom:464.946267pt;}
.y53{bottom:465.953200pt;}
.yc7{bottom:469.859067pt;}
.y1a0{bottom:471.571867pt;}
.y9f{bottom:472.157067pt;}
.y16b{bottom:473.949067pt;}
.y117{bottom:474.062533pt;}
.y1bf{bottom:474.571600pt;}
.y184{bottom:474.881200pt;}
.y30{bottom:477.028267pt;}
.y150{bottom:477.169067pt;}
.y22c{bottom:478.191867pt;}
.yfc{bottom:479.249200pt;}
.ye{bottom:479.666267pt;}
.ydf{bottom:479.811333pt;}
.y132{bottom:479.921867pt;}
.y74{bottom:483.474267pt;}
.y52{bottom:484.481200pt;}
.y1be{bottom:490.839600pt;}
.y1e5{bottom:490.877333pt;}
.y183{bottom:491.149200pt;}
.y2e{bottom:494.892267pt;}
.yc6{bottom:495.481733pt;}
.y9e{bottom:497.031733pt;}
.y16a{bottom:497.313067pt;}
.yfb{bottom:497.509200pt;}
.y131{bottom:498.274933pt;}
.yd{bottom:498.994267pt;}
.y116{bottom:499.318533pt;}
.y14f{bottom:500.533067pt;}
.y73{bottom:502.007600pt;}
.y51{bottom:503.009200pt;}
.yde{bottom:505.823600pt;}
.y22b{bottom:506.613200pt;}
.y1bd{bottom:507.107600pt;}
.y182{bottom:507.417200pt;}
.y206{bottom:508.406267pt;}
.y1e4{bottom:510.605333pt;}
.y19f{bottom:511.036533pt;}
.y2f{bottom:512.756267pt;}
.yc5{bottom:513.081733pt;}
.yfa{bottom:515.769200pt;}
.yc{bottom:518.322267pt;}
.y169{bottom:520.677067pt;}
.y50{bottom:521.537200pt;}
.y9d{bottom:521.913067pt;}
.y130{bottom:522.020267pt;}
.y14e{bottom:523.897067pt;}
.y22a{bottom:524.345200pt;}
.y115{bottom:524.574533pt;}
.y205{bottom:526.666267pt;}
.y19e{bottom:527.570533pt;}
.y1e3{bottom:530.333333pt;}
.y1bc{bottom:530.935600pt;}
.y181{bottom:531.245200pt;}
.ydd{bottom:531.827600pt;}
.yb{bottom:537.650267pt;}
.yc4{bottom:538.704400pt;}
.y4f{bottom:540.065200pt;}
.yf9{bottom:541.773200pt;}
.y229{bottom:542.077200pt;}
.y168{bottom:544.041067pt;}
.y19d{bottom:544.104533pt;}
.y204{bottom:544.926267pt;}
.y12f{bottom:545.750933pt;}
.y9c{bottom:546.787733pt;}
.y1bb{bottom:547.203600pt;}
.y14d{bottom:547.261067pt;}
.y180{bottom:547.513200pt;}
.y114{bottom:549.830533pt;}
.y1e2{bottom:550.061333pt;}
.y2d{bottom:550.558533pt;}
.ya{bottom:556.978267pt;}
.y72{bottom:557.655600pt;}
.ydc{bottom:557.831600pt;}
.y4e{bottom:558.593200pt;}
.y228{bottom:559.809200pt;}
.y19c{bottom:560.638533pt;}
.y203{bottom:563.186267pt;}
.y1ba{bottom:563.471600pt;}
.y12e{bottom:564.157600pt;}
.yc3{bottom:564.327067pt;}
.y167{bottom:567.405067pt;}
.yf8{bottom:567.777200pt;}
.y2c{bottom:568.830533pt;}
.y1e1{bottom:569.789333pt;}
.y14c{bottom:570.625067pt;}
.y17f{bottom:571.341200pt;}
.y9b{bottom:571.662400pt;}
.y113{bottom:575.086533pt;}
.y71{bottom:576.183600pt;}
.y4d{bottom:577.121200pt;}
.y227{bottom:577.541200pt;}
.y1b9{bottom:579.739600pt;}
.y247{bottom:580.725200pt;}
.y202{bottom:581.446267pt;}
.yc2{bottom:581.927067pt;}
.ydb{bottom:583.835600pt;}
.y9{bottom:583.870667pt;}
.y2b{bottom:587.102533pt;}
.y17e{bottom:587.609200pt;}
.y12d{bottom:587.902933pt;}
.y14b{bottom:588.489067pt;}
.y1e0{bottom:589.517333pt;}
.y166{bottom:590.769067pt;}
.yf7{bottom:593.781200pt;}
.y70{bottom:594.711600pt;}
.y226{bottom:595.273200pt;}
.y4c{bottom:595.649200pt;}
.y1b8{bottom:596.007600pt;}
.y9a{bottom:596.537067pt;}
.y246{bottom:596.725200pt;}
.y19b{bottom:596.915867pt;}
.yc1{bottom:599.527067pt;}
.y201{bottom:599.706267pt;}
.y112{bottom:600.342533pt;}
.yda{bottom:601.699600pt;}
.y2a{bottom:605.374533pt;}
.y1df{bottom:609.245333pt;}
.y17d{bottom:611.437200pt;}
.y12c{bottom:611.648267pt;}
.y245{bottom:612.725200pt;}
.y225{bottom:613.005200pt;}
.y6f{bottom:613.239600pt;}
.y165{bottom:614.133067pt;}
.y4b{bottom:614.177200pt;}
.y19a{bottom:616.643867pt;}
.yc0{bottom:617.127067pt;}
.y200{bottom:617.966267pt;}
.y14a{bottom:618.103867pt;}
.yf6{bottom:619.785200pt;}
.y1b7{bottom:619.833333pt;}
.y99{bottom:621.411733pt;}
.y29{bottom:623.646533pt;}
.y111{bottom:625.558933pt;}
.y17c{bottom:627.705200pt;}
.y244{bottom:628.725200pt;}
.y224{bottom:630.737200pt;}
.y6e{bottom:631.767600pt;}
.yd9{bottom:632.639867pt;}
.y4a{bottom:632.705200pt;}
.ybf{bottom:634.727067pt;}
.y12b{bottom:635.393600pt;}
.y149{bottom:635.571867pt;}
.y1b6{bottom:636.100000pt;}
.y1ff{bottom:636.226267pt;}
.y199{bottom:636.371867pt;}
.y164{bottom:637.497067pt;}
.y28{bottom:641.918533pt;}
.y1de{bottom:645.503333pt;}
.yf5{bottom:645.789200pt;}
.y94{bottom:646.271733pt;}
.y98{bottom:646.286400pt;}
.y223{bottom:648.469200pt;}
.y6d{bottom:650.295600pt;}
.y110{bottom:650.814933pt;}
.y49{bottom:651.233200pt;}
.y8{bottom:651.604000pt;}
.yd8{bottom:651.838533pt;}
.ybe{bottom:652.327067pt;}
.y1b5{bottom:652.366667pt;}
.y1fe{bottom:654.486267pt;}
.y92{bottom:655.203733pt;}
.y12a{bottom:659.138933pt;}
.y27{bottom:660.190533pt;}
.y17b{bottom:660.249200pt;}
.y163{bottom:660.861067pt;}
.y1dd{bottom:662.037333pt;}
.y243{bottom:663.925200pt;}
.y8f{bottom:664.135733pt;}
.y97{bottom:664.150400pt;}
.y222{bottom:666.201200pt;}
.y1b4{bottom:668.633333pt;}
.y6c{bottom:668.823600pt;}
.y7{bottom:669.204000pt;}
.y48{bottom:669.761200pt;}
.ybd{bottom:669.956800pt;}
.yf4{bottom:671.793200pt;}
.y148{bottom:672.073200pt;}
.y198{bottom:672.634533pt;}
.y1fd{bottom:672.746267pt;}
.y91{bottom:673.067733pt;}
.y10f{bottom:676.070933pt;}
.y26{bottom:678.462533pt;}
.y1dc{bottom:678.571333pt;}
.y17a{bottom:679.577200pt;}
.y242{bottom:681.525200pt;}
.y8e{bottom:681.999733pt;}
.y96{bottom:682.014400pt;}
.y129{bottom:682.884267pt;}
.y221{bottom:683.933200pt;}
.y162{bottom:684.225067pt;}
.y1b3{bottom:684.900000pt;}
.y6b{bottom:687.351600pt;}
.ybc{bottom:687.556800pt;}
.y47{bottom:688.289200pt;}
.y197{bottom:689.168533pt;}
.yd7{bottom:690.238533pt;}
.y90{bottom:690.931733pt;}
.y1fc{bottom:691.006267pt;}
.y147{bottom:691.145200pt;}
.y1db{bottom:695.105333pt;}
.y25{bottom:696.734533pt;}
.yf3{bottom:697.796800pt;}
.y179{bottom:698.905200pt;}
.y93{bottom:699.863733pt;}
.y95{bottom:699.878400pt;}
.y10e{bottom:701.326933pt;}
.y220{bottom:701.665200pt;}
.y161{bottom:702.089067pt;}
.y196{bottom:705.702533pt;}
.y6a{bottom:705.879600pt;}
.y6{bottom:706.004000pt;}
.y128{bottom:706.629600pt;}
.y1fb{bottom:709.266267pt;}
.yd6{bottom:709.438533pt;}
.y146{bottom:710.217200pt;}
.ybb{bottom:713.179467pt;}
.y24{bottom:715.006533pt;}
.y1b2{bottom:717.428000pt;}
.y178{bottom:718.238533pt;}
.y241{bottom:718.325200pt;}
.y1da{bottom:719.199333pt;}
.y21f{bottom:719.397200pt;}
.y195{bottom:722.236533pt;}
.yf2{bottom:723.800800pt;}
.y69{bottom:724.423600pt;}
.y46{bottom:724.545600pt;}
.y10d{bottom:726.582933pt;}
.y1fa{bottom:727.526267pt;}
.yd5{bottom:728.638533pt;}
.y145{bottom:729.289200pt;}
.y8d{bottom:730.238533pt;}
.y127{bottom:730.360267pt;}
.y160{bottom:731.699867pt;}
.y5{bottom:733.204000pt;}
.y23{bottom:733.278533pt;}
.y1d9{bottom:735.733333pt;}
.y240{bottom:735.925200pt;}
.y1b1{bottom:736.900000pt;}
.y21e{bottom:737.129200pt;}
.y194{bottom:738.770533pt;}
.yba{bottom:738.802133pt;}
.y68{bottom:742.951600pt;}
.y1f9{bottom:745.806267pt;}
.yd4{bottom:747.838533pt;}
.y144{bottom:748.361200pt;}
.y15f{bottom:748.771867pt;}
.y45{bottom:749.420267pt;}
.yf1{bottom:749.804800pt;}
.y22{bottom:751.550533pt;}
.y10c{bottom:751.838933pt;}
.y1d8{bottom:752.267333pt;}
.y23f{bottom:753.526533pt;}
.y126{bottom:754.105600pt;}
.y21d{bottom:754.861200pt;}
.y193{bottom:755.304533pt;}
.y4{bottom:760.404000pt;}
.y67{bottom:761.479600pt;}
.y1f8{bottom:764.066267pt;}
.yb5{bottom:764.204800pt;}
.yb9{bottom:764.219467pt;}
.y8c{bottom:767.038533pt;}
.y143{bottom:767.433200pt;}
.y1d7{bottom:768.801333pt;}
.y21{bottom:769.822533pt;}
.y192{bottom:771.838533pt;}
.y21c{bottom:772.593200pt;}
.y1b0{bottom:772.633333pt;}
.y23e{bottom:772.725200pt;}
.yb3{bottom:773.136800pt;}
.yf0{bottom:775.060800pt;}
.y177{bottom:776.243867pt;}
.y10b{bottom:777.094933pt;}
.y125{bottom:777.850933pt;}
.y66{bottom:780.007600pt;}
.yb0{bottom:782.068800pt;}
.yb8{bottom:782.083467pt;}
.y1f7{bottom:782.326267pt;}
.y15e{bottom:785.438533pt;}
.y8b{bottom:786.238533pt;}
.y142{bottom:786.505200pt;}
.y44{bottom:787.577333pt;}
.y20{bottom:788.094533pt;}
.y21b{bottom:790.325200pt;}
.yb2{bottom:791.000800pt;}
.y176{bottom:792.371867pt;}
.y1d6{bottom:792.895333pt;}
.y10a{bottom:794.958933pt;}
.y124{bottom:795.714933pt;}
.yaf{bottom:799.932800pt;}
.yef{bottom:799.935467pt;}
.yb7{bottom:799.947467pt;}
.y1f6{bottom:800.586267pt;}
.y191{bottom:804.910533pt;}
.y15d{bottom:805.038533pt;}
.y1af{bottom:805.161333pt;}
.y8a{bottom:805.438533pt;}
.y141{bottom:805.566533pt;}
.y43{bottom:806.105333pt;}
.y1f{bottom:806.366533pt;}
.y23d{bottom:807.925200pt;}
.y21a{bottom:808.057200pt;}
.yb1{bottom:808.864800pt;}
.y1d5{bottom:809.429333pt;}
.y3{bottom:809.525200pt;}
.yb4{bottom:817.796800pt;}
.yee{bottom:817.799467pt;}
.yb6{bottom:817.811467pt;}
.y42{bottom:824.633333pt;}
.y1e{bottom:824.638533pt;}
.y109{bottom:825.520000pt;}
.y2{bottom:825.525200pt;}
.y1d4{bottom:825.963333pt;}
.y1f5{bottom:826.412000pt;}
.h24{height:25.593750pt;}
.h8{height:27.171875pt;}
.h6{height:33.059115pt;}
.h3{height:34.351188pt;}
.ha{height:36.229167pt;}
.h9{height:43.022135pt;}
.h2{height:45.286458pt;}
.h27{height:47.550781pt;}
.h2a{height:47.652648pt;}
.h4{height:49.815104pt;}
.h14{height:51.476796pt;}
.h1a{height:51.490129pt;}
.h16{height:51.562662pt;}
.h12{height:51.569062pt;}
.h18{height:51.570129pt;}
.h17{height:51.587729pt;}
.h15{height:51.590396pt;}
.h1e{height:51.595729pt;}
.h25{height:51.601062pt;}
.h19{height:51.604796pt;}
.hb{height:51.606396pt;}
.h22{height:51.622396pt;}
.h21{height:51.624529pt;}
.h1d{height:51.644263pt;}
.h23{height:51.653329pt;}
.h13{height:51.669862pt;}
.h20{height:51.679462pt;}
.h1c{height:51.716263pt;}
.h1b{height:51.730129pt;}
.h26{height:51.767463pt;}
.h1f{height:51.810129pt;}
.h2b{height:54.338417pt;}
.h7{height:54.343750pt;}
.h29{height:54.365083pt;}
.hd{height:56.008917pt;}
.h10{height:56.222250pt;}
.hf{height:56.264917pt;}
.h11{height:56.286250pt;}
.h28{height:56.328917pt;}
.h5{height:76.986979pt;}
.hc{height:85.543104pt;}
.he{height:121.271104pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.xc{left:75.398133pt;}
.x2f{left:76.683467pt;}
.x36{left:78.443467pt;}
.x35{left:81.992800pt;}
.x1{left:86.929200pt;}
.x37{left:90.708667pt;}
.x16{left:92.221067pt;}
.x10{left:93.365067pt;}
.x2a{left:95.599600pt;}
.x29{left:99.247867pt;}
.x4{left:105.825200pt;}
.x5{left:109.944400pt;}
.x2c{left:111.076800pt;}
.x39{left:112.983467pt;}
.x32{left:114.332800pt;}
.x3c{left:124.724400pt;}
.xb{left:125.653467pt;}
.x2{left:127.262533pt;}
.x1f{left:129.153067pt;}
.x30{left:130.355867pt;}
.xd{left:136.851467pt;}
.x19{left:138.919733pt;}
.x3d{left:143.626800pt;}
.x2b{left:145.876667pt;}
.x18{left:146.942400pt;}
.x17{left:150.418400pt;}
.x40{left:153.783733pt;}
.x27{left:170.078800pt;}
.xf{left:176.660800pt;}
.x3{left:191.998800pt;}
.x20{left:210.083733pt;}
.x1a{left:215.479733pt;}
.x2d{left:251.011467pt;}
.x11{left:255.945067pt;}
.x33{left:259.371467pt;}
.x3a{left:262.876800pt;}
.xe{left:270.142133pt;}
.x24{left:281.239467pt;}
.x21{left:300.137067pt;}
.x12{left:305.753067pt;}
.x13{left:313.863733pt;}
.x15{left:346.966400pt;}
.x1b{left:349.841067pt;}
.x14{left:351.674400pt;}
.x25{left:368.975467pt;}
.x2e{left:380.444800pt;}
.x22{left:387.873067pt;}
.x1c{left:394.691733pt;}
.x28{left:399.342533pt;}
.x1d{left:405.149067pt;}
.x34{left:411.464800pt;}
.x3b{left:412.770133pt;}
.xa{left:418.942800pt;}
.x8{left:424.002533pt;}
.x9{left:424.941467pt;}
.x31{left:431.022533pt;}
.x3f{left:453.315867pt;}
.x26{left:459.600800pt;}
.x3e{left:461.283200pt;}
.x38{left:462.508667pt;}
.x23{left:478.498400pt;}
.x1e{left:503.401067pt;}
.x6{left:518.257200pt;}
}




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