
    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_3456c65832293fe49ad9f8ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_704256f4222a32aac53c74fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e54cfccb68d760baebcc132.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_6e8b3a1e4252fc00235830c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d22f99ba7bb6d2f35d3b8d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_bb535a6e8a94c5fdf062ee01.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_7508be2692845b7340e0ff5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_2cd02f8595b886abd17a0ad8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.160000px;}
.ls23{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.262200px;}
.ls25{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.206400px;}
.ls0{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.440000px;}
.ls20{letter-spacing:2.340000px;}
.ls16{letter-spacing:5.040000px;}
.ls11{letter-spacing:7.200000px;}
.ls1e{letter-spacing:9.540000px;}
.ls26{letter-spacing:10.800000px;}
.ls1f{letter-spacing:12.420000px;}
.ls13{letter-spacing:32.544000px;}
.ls4{letter-spacing:846.156000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws3{word-spacing:-19.457280px;}
.ws9{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.297800px;}
.ws12{word-spacing:-15.238800px;}
.wse{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.680200px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-17.376000px;}
._3{margin-left:-16.368000px;}
._6{margin-left:-14.496000px;}
._4{margin-left:-11.024160px;}
._a{margin-left:-8.448000px;}
._5{margin-left:-7.256160px;}
._9{margin-left:-5.352000px;}
._7{margin-left:-3.408000px;}
._b{margin-left:-2.400000px;}
._1{margin-left:-1.135680px;}
._0{width:1.347840px;}
._10{width:3.029760px;}
._f{width:4.315200px;}
._16{width:5.738880px;}
._12{width:6.888960px;}
._13{width:8.030880px;}
._c{width:9.099840px;}
._15{width:10.322880px;}
._19{width:11.997120px;}
._1a{width:13.511040px;}
._18{width:15.244800px;}
._23{width:16.488000px;}
._e{width:17.619840px;}
._d{width:18.739200px;}
._22{width:19.797600px;}
._17{width:21.196800px;}
._1e{width:23.016000px;}
._1f{width:24.612000px;}
._27{width:25.680000px;}
._14{width:26.694720px;}
._11{width:28.218240px;}
._20{width:29.808000px;}
._21{width:31.608000px;}
._31{width:32.863680px;}
._24{width:34.320000px;}
._25{width:35.544000px;}
._26{width:36.816000px;}
._2c{width:38.096160px;}
._2a{width:39.600000px;}
._2b{width:40.692000px;}
._2d{width:42.108000px;}
._1d{width:43.183680px;}
._2e{width:44.508480px;}
._2f{width:46.368000px;}
._30{width:47.748000px;}
._28{width:50.184000px;}
._29{width:51.192000px;}
._32{width:52.488000px;}
._33{width:53.496000px;}
._1b{width:55.920000px;}
._1c{width:57.444000px;}
._38{width:64.872000px;}
._4b{width:66.096000px;}
._4c{width:67.764000px;}
._55{width:71.424000px;}
._56{width:72.504000px;}
._50{width:73.872000px;}
._51{width:75.308160px;}
._43{width:79.920000px;}
._5b{width:84.328320px;}
._5a{width:85.375680px;}
._44{width:94.680000px;}
._45{width:95.736000px;}
._61{width:96.984000px;}
._4e{width:98.352000px;}
._4f{width:99.396000px;}
._5d{width:101.880000px;}
._5e{width:103.208160px;}
._3c{width:158.400000px;}
._3d{width:159.408000px;}
._42{width:164.664000px;}
._5f{width:169.848000px;}
._60{width:170.904000px;}
._53{width:175.176000px;}
._49{width:179.856000px;}
._4a{width:181.296000px;}
._4d{width:184.608000px;}
._54{width:185.996160px;}
._47{width:233.712000px;}
._48{width:235.692000px;}
._40{width:244.872000px;}
._41{width:246.240000px;}
._3e{width:258.120000px;}
._3b{width:301.464000px;}
._39{width:302.940000px;}
._35{width:336.024000px;}
._34{width:337.032000px;}
._52{width:367.992000px;}
._46{width:371.592000px;}
._59{width:397.512000px;}
._36{width:419.400000px;}
._37{width:420.552000px;}
._58{width:448.920000px;}
._57{width:450.199680px;}
._3f{width:772.848000px;}
._5c{width:776.880000px;}
._2{width:846.180000px;}
._3a{width:1743.048000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y192{bottom:3.600000px;}
.y1a4{bottom:3.645000px;}
.y195{bottom:3.780000px;}
.y1a9{bottom:5.760000px;}
.y1a6{bottom:7.920000px;}
.y1d9{bottom:23.400000px;}
.y1b7{bottom:23.445000px;}
.yf7{bottom:111.636000px;}
.y1e4{bottom:112.536000px;}
.y18f{bottom:113.076000px;}
.y1d6{bottom:113.256000px;}
.y285{bottom:115.596000px;}
.yde{bottom:116.136000px;}
.yb1{bottom:117.756000px;}
.y2a0{bottom:121.536000px;}
.y259{bottom:121.896000px;}
.y62{bottom:123.876000px;}
.y10e{bottom:124.776000px;}
.y138{bottom:125.136000px;}
.ycf{bottom:126.216000px;}
.y1e3{bottom:132.336000px;}
.y209{bottom:132.876000px;}
.ya1{bottom:135.576000px;}
.y284{bottom:136.296000px;}
.y82{bottom:140.076000px;}
.y237{bottom:140.796000px;}
.y29f{bottom:142.236000px;}
.y258{bottom:142.596000px;}
.yea{bottom:142.776000px;}
.y18e{bottom:144.216000px;}
.y1d5{bottom:144.396000px;}
.y61{bottom:144.576000px;}
.ydd{bottom:147.276000px;}
.y17c{bottom:147.636000px;}
.yb0{bottom:148.716000px;}
.y1ad{bottom:151.410000px;}
.y1e2{bottom:151.950000px;}
.y137{bottom:156.270000px;}
.y2a5{bottom:156.990000px;}
.yce{bottom:157.350000px;}
.y219{bottom:159.330000px;}
.y10d{bottom:161.850000px;}
.y154{bottom:162.210000px;}
.y283{bottom:162.930000px;}
.y17{bottom:163.650000px;}
.y208{bottom:164.010000px;}
.ya0{bottom:166.710000px;}
.y1b5{bottom:167.790000px;}
.y2bd{bottom:169.050000px;}
.y257{bottom:169.230000px;}
.y81{bottom:171.210000px;}
.y1e1{bottom:171.750000px;}
.ye9{bottom:173.730000px;}
.y225{bottom:174.270000px;}
.y1d4{bottom:175.350000px;}
.y60{bottom:176.790000px;}
.y2a4{bottom:177.690000px;}
.ydc{bottom:178.230000px;}
.y17b{bottom:178.770000px;}
.yaf{bottom:179.850000px;}
.y18d{bottom:181.290000px;}
.y1ac{bottom:182.370000px;}
.y282{bottom:183.630000px;}
.y127{bottom:185.790000px;}
.y2bc{bottom:189.750000px;}
.y256{bottom:189.930000px;}
.y218{bottom:190.290000px;}
.y1e0{bottom:191.370000px;}
.y136{bottom:191.730000px;}
.y10c{bottom:192.810000px;}
.ycd{bottom:194.430000px;}
.y207{bottom:194.970000px;}
.y5f{bottom:196.050000px;}
.y2a3{bottom:198.390000px;}
.y1b4{bottom:198.930000px;}
.y153{bottom:199.290000px;}
.y80{bottom:202.170000px;}
.y236{bottom:202.890000px;}
.y9f{bottom:203.790000px;}
.y281{bottom:204.330000px;}
.ye8{bottom:204.870000px;}
.y224{bottom:205.230000px;}
.y16{bottom:205.950000px;}
.y1d3{bottom:206.490000px;}
.ydb{bottom:209.370000px;}
.y17a{bottom:209.730000px;}
.y29e{bottom:210.450000px;}
.y255{bottom:210.630000px;}
.yae{bottom:210.810000px;}
.y1df{bottom:211.170000px;}
.y18c{bottom:212.250000px;}
.y1ab{bottom:213.510000px;}
.y5e{bottom:214.950000px;}
.y126{bottom:216.930000px;}
.y217{bottom:221.430000px;}
.y135{bottom:222.870000px;}
.y10b{bottom:223.950000px;}
.y280{bottom:225.030000px;}
.ycc{bottom:225.390000px;}
.y206{bottom:226.110000px;}
.y1b3{bottom:229.890000px;}
.y152{bottom:230.250000px;}
.y1de{bottom:230.970000px;}
.y29d{bottom:231.150000px;}
.y254{bottom:231.330000px;}
.y5d{bottom:233.850000px;}
.y9e{bottom:234.750000px;}
.ye7{bottom:235.830000px;}
.y223{bottom:236.370000px;}
.y1d2{bottom:237.450000px;}
.y7f{bottom:239.250000px;}
.yda{bottom:240.330000px;}
.y179{bottom:240.870000px;}
.yf6{bottom:241.950000px;}
.y18b{bottom:243.390000px;}
.y1aa{bottom:245.010000px;}
.y27f{bottom:245.730000px;}
.yad{bottom:246.450000px;}
.y125{bottom:247.890000px;}
.y1dd{bottom:250.590000px;}
.y15{bottom:251.130000px;}
.y29c{bottom:251.850000px;}
.y216{bottom:252.390000px;}
.y5c{bottom:252.930000px;}
.y10a{bottom:254.910000px;}
.ycb{bottom:256.350000px;}
.y205{bottom:257.070000px;}
.y2bb{bottom:257.790000px;}
.y253{bottom:257.970000px;}
.y134{bottom:258.330000px;}
.y1a8{bottom:259.770000px;}
.y1b2{bottom:260.850000px;}
.y151{bottom:261.390000px;}
.y9d{bottom:265.890000px;}
.y2a2{bottom:266.430000px;}
.y222{bottom:267.330000px;}
.y7e{bottom:270.390000px;}
.y235{bottom:270.930000px;}
.yd9{bottom:271.470000px;}
.y5b{bottom:271.830000px;}
.y27e{bottom:272.550000px;}
.ye6{bottom:272.910000px;}
.y1d1{bottom:274.530000px;}
.y178{bottom:276.330000px;}
.y2ba{bottom:278.490000px;}
.y252{bottom:278.670000px;}
.y124{bottom:278.850000px;}
.y1a7{bottom:281.550000px;}
.yac{bottom:283.350000px;}
.y2a1{bottom:287.130000px;}
.yca{bottom:287.490000px;}
.y133{bottom:289.470000px;}
.y1dc{bottom:290.010000px;}
.y5a{bottom:290.910000px;}
.y109{bottom:291.990000px;}
.y150{bottom:292.350000px;}
.y27d{bottom:293.250000px;}
.y204{bottom:294.150000px;}
.y14{bottom:296.490000px;}
.y9c{bottom:296.850000px;}
.y221{bottom:298.470000px;}
.y2b9{bottom:299.190000px;}
.y251{bottom:299.370000px;}
.y1a5{bottom:301.170000px;}
.y7d{bottom:301.350000px;}
.y234{bottom:302.070000px;}
.ye5{bottom:304.050000px;}
.y1d0{bottom:305.490000px;}
.yd8{bottom:308.550000px;}
.y59{bottom:309.810000px;}
.y123{bottom:309.990000px;}
.y177{bottom:313.410000px;}
.y27c{bottom:313.950000px;}
.yab{bottom:314.490000px;}
.y18a{bottom:315.930000px;}
.y29b{bottom:319.890000px;}
.yc9{bottom:322.950000px;}
.y14f{bottom:323.490000px;}
.y132{bottom:324.930000px;}
.y1a3{bottom:325.110000px;}
.y203{bottom:325.290000px;}
.y250{bottom:326.190000px;}
.y9b{bottom:328.035000px;}
.y58{bottom:328.755000px;}
.y1db{bottom:329.475000px;}
.y7c{bottom:332.535000px;}
.y233{bottom:333.075000px;}
.y1cf{bottom:333.975000px;}
.y27b{bottom:334.695000px;}
.ye4{bottom:335.055000px;}
.yd7{bottom:339.555000px;}
.y34{bottom:339.915000px;}
.y29a{bottom:340.635000px;}
.y122{bottom:340.995000px;}
.y13{bottom:341.715000px;}
.y176{bottom:344.595000px;}
.y1a2{bottom:344.775000px;}
.yaa{bottom:345.495000px;}
.y2b8{bottom:346.575000px;}
.y24f{bottom:346.935000px;}
.y189{bottom:347.115000px;}
.y57{bottom:347.835000px;}
.y1d8{bottom:349.275000px;}
.y108{bottom:354.135000px;}
.y14e{bottom:354.495000px;}
.y27a{bottom:355.395000px;}
.y202{bottom:356.295000px;}
.y1ce{bottom:357.735000px;}
.yc8{bottom:360.075000px;}
.y131{bottom:360.615000px;}
.y299{bottom:361.335000px;}
.y7b{bottom:363.495000px;}
.y232{bottom:364.215000px;}
.y1a1{bottom:364.575000px;}
.y9a{bottom:365.115000px;}
.ye3{bottom:366.195000px;}
.y220{bottom:366.555000px;}
.y56{bottom:366.735000px;}
.y2b7{bottom:367.275000px;}
.y1da{bottom:369.075000px;}
.yd6{bottom:370.695000px;}
.y24e{bottom:373.575000px;}
.y33{bottom:374.115000px;}
.y175{bottom:375.555000px;}
.ya9{bottom:376.635000px;}
.y121{bottom:378.075000px;}
.y279{bottom:382.035000px;}
.y1a0{bottom:384.375000px;}
.y107{bottom:385.095000px;}
.y14d{bottom:385.635000px;}
.y12{bottom:386.895000px;}
.y201{bottom:387.435000px;}
.y298{bottom:387.975000px;}
.yc7{bottom:391.215000px;}
.y130{bottom:391.575000px;}
.y24d{bottom:394.275000px;}
.y7a{bottom:394.635000px;}
.y231{bottom:395.175000px;}
.y1cd{bottom:395.715000px;}
.y99{bottom:396.075000px;}
.ye2{bottom:397.155000px;}
.y21f{bottom:397.515000px;}
.y55{bottom:398.055000px;}
.yd5{bottom:401.655000px;}
.y278{bottom:402.735000px;}
.y19f{bottom:403.995000px;}
.y174{bottom:406.695000px;}
.ya8{bottom:407.595000px;}
.y297{bottom:408.675000px;}
.y120{bottom:409.215000px;}
.y32{bottom:409.395000px;}
.y1cc{bottom:412.995000px;}
.y215{bottom:413.715000px;}
.y2b6{bottom:414.795000px;}
.y24c{bottom:414.975000px;}
.y188{bottom:415.155000px;}
.y14c{bottom:416.595000px;}
.y200{bottom:418.395000px;}
.y54{bottom:420.375000px;}
.yc6{bottom:422.175000px;}
.y277{bottom:423.435000px;}
.y19e{bottom:423.795000px;}
.y230{bottom:426.315000px;}
.y98{bottom:427.215000px;}
.ye1{bottom:428.295000px;}
.y12f{bottom:428.655000px;}
.y296{bottom:429.375000px;}
.y1cb{bottom:430.275000px;}
.y79{bottom:431.715000px;}
.y11{bottom:432.075000px;}
.yd4{bottom:432.795000px;}
.yf5{bottom:434.235000px;}
.y2b5{bottom:435.495000px;}
.y173{bottom:437.655000px;}
.ya7{bottom:438.735000px;}
.y11f{bottom:440.175000px;}
.y24b{bottom:441.615000px;}
.y19d{bottom:443.415000px;}
.y276{bottom:444.135000px;}
.y214{bottom:444.675000px;}
.y187{bottom:446.115000px;}
.y31{bottom:446.655000px;}
.y1ca{bottom:447.375000px;}
.y1ff{bottom:449.535000px;}
.y295{bottom:450.075000px;}
.y14b{bottom:452.235000px;}
.y53{bottom:452.595000px;}
.y106{bottom:453.315000px;}
.y2b4{bottom:456.195000px;}
.y22f{bottom:457.275000px;}
.y97{bottom:458.175000px;}
.yc5{bottom:459.255000px;}
.y12e{bottom:459.615000px;}
.y1c9{bottom:462.135000px;}
.y24a{bottom:462.315000px;}
.y78{bottom:462.675000px;}
.y19c{bottom:463.215000px;}
.yd3{bottom:463.755000px;}
.yf4{bottom:465.195000px;}
.y172{bottom:468.795000px;}
.ya6{bottom:469.695000px;}
.y275{bottom:470.775000px;}
.y11e{bottom:471.315000px;}
.y52{bottom:471.855000px;}
.y213{bottom:475.815000px;}
.y294{bottom:476.895000px;}
.y10{bottom:477.255000px;}
.y30{bottom:477.615000px;}
.y1c8{bottom:481.935000px;}
.y19b{bottom:482.835000px;}
.y105{bottom:484.275000px;}
.y1fe{bottom:486.615000px;}
.y22e{bottom:488.415000px;}
.y249{bottom:489.135000px;}
.y96{bottom:489.315000px;}
.yc4{bottom:490.395000px;}
.y51{bottom:490.755000px;}
.y274{bottom:491.475000px;}
.y77{bottom:493.815000px;}
.yf3{bottom:496.335000px;}
.y293{bottom:497.595000px;}
.y171{bottom:499.755000px;}
.ya5{bottom:500.835000px;}
.y1c7{bottom:501.735000px;}
.y11d{bottom:502.275000px;}
.y19a{bottom:502.635000px;}
.y212{bottom:506.775000px;}
.y186{bottom:508.215000px;}
.y2f{bottom:508.755000px;}
.y50{bottom:509.655000px;}
.y248{bottom:509.835000px;}
.y273{bottom:512.175000px;}
.y104{bottom:515.415000px;}
.y1fd{bottom:517.575000px;}
.y292{bottom:518.295000px;}
.y22d{bottom:519.375000px;}
.y14a{bottom:520.275000px;}
.yc3{bottom:521.355000px;}
.y12d{bottom:521.715000px;}
.y199{bottom:522.435000px;}
.yf{bottom:522.615000px;}
.y95{bottom:523.335000px;}
.y2b3{bottom:524.235000px;}
.y76{bottom:524.775000px;}
.ye0{bottom:527.295000px;}
.y4f{bottom:528.735000px;}
.y247{bottom:530.535000px;}
.y170{bottom:530.895000px;}
.ya4{bottom:531.795000px;}
.y272{bottom:532.875000px;}
.y11c{bottom:533.415000px;}
.y211{bottom:537.915000px;}
.y2e{bottom:538.455000px;}
.y291{bottom:538.995000px;}
.y185{bottom:539.355000px;}
.y1c6{bottom:541.155000px;}
.y198{bottom:542.055000px;}
.y2b2{bottom:544.935000px;}
.y4e{bottom:547.635000px;}
.y1fc{bottom:548.535000px;}
.y22c{bottom:550.515000px;}
.y149{bottom:551.235000px;}
.y103{bottom:552.495000px;}
.y12c{bottom:552.855000px;}
.y75{bottom:555.735000px;}
.y246{bottom:557.175000px;}
.y94{bottom:558.435000px;}
.ye{bottom:558.795000px;}
.y271{bottom:559.695000px;}
.y1c5{bottom:560.775000px;}
.y16f{bottom:561.855000px;}
.yd2{bottom:562.935000px;}
.y11b{bottom:564.375000px;}
.y290{bottom:565.635000px;}
.y4d{bottom:566.715000px;}
.y2d{bottom:568.335000px;}
.ya3{bottom:568.875000px;}
.y184{bottom:570.315000px;}
.y245{bottom:577.875000px;}
.y1fb{bottom:579.675000px;}
.y270{bottom:580.395000px;}
.y1c4{bottom:580.575000px;}
.y197{bottom:581.475000px;}
.y148{bottom:582.375000px;}
.y102{bottom:583.455000px;}
.y12b{bottom:583.815000px;}
.y4c{bottom:585.615000px;}
.y28f{bottom:586.335000px;}
.y74{bottom:586.875000px;}
.yc2{bottom:589.395000px;}
.y21e{bottom:589.935000px;}
.yd1{bottom:593.895000px;}
.y16e{bottom:597.345000px;}
.y2c{bottom:598.245000px;}
.y244{bottom:598.605000px;}
.y93{bottom:600.045000px;}
.y1c3{bottom:600.225000px;}
.y26f{bottom:600.945000px;}
.y196{bottom:601.305000px;}
.y11a{bottom:601.485000px;}
.yd{bottom:604.005000px;}
.y4b{bottom:604.545000px;}
.y210{bottom:605.985000px;}
.y28e{bottom:607.065000px;}
.y1fa{bottom:610.665000px;}
.y2b1{bottom:613.005000px;}
.y147{bottom:613.365000px;}
.y101{bottom:614.445000px;}
.y12a{bottom:614.985000px;}
.y22b{bottom:618.585000px;}
.y1b1{bottom:618.945000px;}
.y1c2{bottom:620.025000px;}
.yc1{bottom:620.565000px;}
.y194{bottom:620.925000px;}
.y4a{bottom:623.625000px;}
.y73{bottom:623.985000px;}
.y243{bottom:625.245000px;}
.yf2{bottom:626.505000px;}
.y26e{bottom:627.765000px;}
.y2b{bottom:628.125000px;}
.y92{bottom:631.005000px;}
.y119{bottom:632.445000px;}
.y2b0{bottom:633.705000px;}
.y16d{bottom:635.685000px;}
.y183{bottom:636.945000px;}
.y1c1{bottom:639.825000px;}
.y193{bottom:640.725000px;}
.y1f9{bottom:641.805000px;}
.y49{bottom:642.525000px;}
.y146{bottom:644.505000px;}
.y100{bottom:645.585000px;}
.y242{bottom:645.945000px;}
.y26d{bottom:648.465000px;}
.yc{bottom:649.185000px;}
.y22a{bottom:649.545000px;}
.y129{bottom:651.345000px;}
.yc0{bottom:651.525000px;}
.y21d{bottom:652.065000px;}
.y28d{bottom:654.405000px;}
.y16c{bottom:654.765000px;}
.y72{bottom:654.945000px;}
.ydf{bottom:656.025000px;}
.yf1{bottom:657.645000px;}
.y2a{bottom:657.825000px;}
.y1c0{bottom:659.445000px;}
.y191{bottom:660.525000px;}
.y48{bottom:661.605000px;}
.y91{bottom:662.145000px;}
.y118{bottom:663.585000px;}
.y241{bottom:666.645000px;}
.y20f{bottom:668.085000px;}
.y26c{bottom:669.165000px;}
.y1f8{bottom:672.765000px;}
.y16b{bottom:673.845000px;}
.y182{bottom:674.025000px;}
.y28c{bottom:675.105000px;}
.y1bf{bottom:679.245000px;}
.y229{bottom:680.685000px;}
.y2af{bottom:681.045000px;}
.y145{bottom:681.585000px;}
.ybf{bottom:682.665000px;}
.y21c{bottom:683.025000px;}
.y71{bottom:686.085000px;}
.y1b0{bottom:687.165000px;}
.y240{bottom:687.345000px;}
.y29{bottom:687.705000px;}
.yf0{bottom:688.605000px;}
.y26b{bottom:689.865000px;}
.y47{bottom:692.745000px;}
.y90{bottom:693.105000px;}
.yb{bottom:694.545000px;}
.y28b{bottom:695.805000px;}
.y1be{bottom:698.865000px;}
.y20e{bottom:699.045000px;}
.y2ae{bottom:701.745000px;}
.y1f7{bottom:703.905000px;}
.y181{bottom:705.165000px;}
.y23f{bottom:708.045000px;}
.y16a{bottom:711.825000px;}
.y228{bottom:712.365000px;}
.y144{bottom:712.545000px;}
.y46{bottom:713.445000px;}
.ybe{bottom:713.625000px;}
.y21b{bottom:714.165000px;}
.y26a{bottom:716.505000px;}
.y70{bottom:717.045000px;}
.y28{bottom:717.585000px;}
.y1af{bottom:718.125000px;}
.y1bd{bottom:718.665000px;}
.yef{bottom:719.745000px;}
.y28a{bottom:722.445000px;}
.y8f{bottom:724.245000px;}
.y117{bottom:725.685000px;}
.y23e{bottom:728.745000px;}
.y20d{bottom:730.185000px;}
.y169{bottom:730.725000px;}
.y1f6{bottom:734.865000px;}
.y180{bottom:736.125000px;}
.y269{bottom:737.205000px;}
.y1bc{bottom:738.285000px;}
.ya{bottom:739.725000px;}
.y289{bottom:743.145000px;}
.y143{bottom:743.685000px;}
.yff{bottom:744.765000px;}
.y45{bottom:745.665000px;}
.y27{bottom:747.465000px;}
.y6f{bottom:748.185000px;}
.y1ae{bottom:749.265000px;}
.y23d{bottom:749.445000px;}
.y168{bottom:749.625000px;}
.y21a{bottom:750.525000px;}
.ybd{bottom:750.705000px;}
.y8e{bottom:755.205000px;}
.y116{bottom:756.645000px;}
.y268{bottom:757.905000px;}
.y1bb{bottom:758.085000px;}
.y190{bottom:761.145000px;}
.y288{bottom:763.845000px;}
.y44{bottom:764.925000px;}
.y17f{bottom:767.265000px;}
.y167{bottom:768.705000px;}
.y2ad{bottom:769.965000px;}
.y1f5{bottom:771.945000px;}
.y142{bottom:774.645000px;}
.yfe{bottom:775.725000px;}
.y23c{bottom:776.265000px;}
.y26{bottom:777.165000px;}
.y1ba{bottom:777.885000px;}
.ybc{bottom:781.845000px;}
.y43{bottom:783.825000px;}
.y267{bottom:784.545000px;}
.y9{bottom:784.905000px;}
.y6e{bottom:785.265000px;}
.y8d{bottom:786.345000px;}
.y166{bottom:787.605000px;}
.y115{bottom:787.785000px;}
.y2ac{bottom:790.665000px;}
.yd0{bottom:792.285000px;}
.y23b{bottom:796.965000px;}
.y1b9{bottom:797.505000px;}
.y17e{bottom:802.725000px;}
.y42{bottom:802.905000px;}
.y1f4{bottom:803.085000px;}
.y266{bottom:805.245000px;}
.y165{bottom:806.685000px;}
.y25{bottom:807.045000px;}
.yfd{bottom:811.365000px;}
.y141{bottom:811.725000px;}
.ybb{bottom:812.805000px;}
.y6d{bottom:816.225000px;}
.y128{bottom:817.305000px;}
.y23a{bottom:817.665000px;}
.y41{bottom:821.805000px;}
.y8c{bottom:823.245000px;}
.y114{bottom:824.865000px;}
.y164{bottom:825.585000px;}
.y265{bottom:825.945000px;}
.y20c{bottom:829.365000px;}
.y8{bottom:830.085000px;}
.y287{bottom:832.065000px;}
.y1f3{bottom:834.045000px;}
.y24{bottom:836.925000px;}
.y239{bottom:838.365000px;}
.y17d{bottom:839.265000px;}
.y40{bottom:840.705000px;}
.y140{bottom:842.865000px;}
.yba{bottom:843.945000px;}
.y163{bottom:844.485000px;}
.y6c{bottom:847.365000px;}
.yfc{bottom:848.445000px;}
.y264{bottom:852.765000px;}
.y8b{bottom:854.385000px;}
.y113{bottom:855.825000px;}
.y1b6{bottom:856.725000px;}
.y2ab{bottom:858.705000px;}
.y3f{bottom:859.785000px;}
.y20b{bottom:860.325000px;}
.y162{bottom:863.610000px;}
.y1f2{bottom:865.230000px;}
.y23{bottom:866.850000px;}
.y263{bottom:873.510000px;}
.y13f{bottom:873.870000px;}
.y238{bottom:874.770000px;}
.y7{bottom:875.490000px;}
.y1b8{bottom:876.390000px;}
.y6b{bottom:878.370000px;}
.y3e{bottom:878.730000px;}
.yfb{bottom:879.450000px;}
.yb9{bottom:880.890000px;}
.y161{bottom:882.510000px;}
.y8a{bottom:885.390000px;}
.y112{bottom:887.010000px;}
.y20a{bottom:891.510000px;}
.y262{bottom:894.210000px;}
.y22{bottom:896.550000px;}
.y3d{bottom:897.810000px;}
.y2aa{bottom:900.150000px;}
.y160{bottom:901.590000px;}
.y1f1{bottom:901.770000px;}
.y6a{bottom:909.330000px;}
.yfa{bottom:910.590000px;}
.y13e{bottom:910.950000px;}
.yb8{bottom:912.030000px;}
.y261{bottom:914.910000px;}
.y227{bottom:915.450000px;}
.y89{bottom:916.530000px;}
.y3c{bottom:916.710000px;}
.y111{bottom:917.970000px;}
.y15f{bottom:920.490000px;}
.y6{bottom:920.670000px;}
.y2a9{bottom:920.850000px;}
.y1d7{bottom:922.470000px;}
.y21{bottom:926.430000px;}
.y1f0{bottom:932.190000px;}
.y3b{bottom:935.610000px;}
.y15e{bottom:939.390000px;}
.yf9{bottom:941.550000px;}
.y13d{bottom:941.910000px;}
.yb7{bottom:942.990000px;}
.y69{bottom:946.410000px;}
.y88{bottom:947.490000px;}
.y110{bottom:949.110000px;}
.y1ef{bottom:949.470000px;}
.ya2{bottom:953.610000px;}
.y3a{bottom:954.690000px;}
.y20{bottom:956.310000px;}
.y15d{bottom:958.470000px;}
.y260{bottom:962.250000px;}
.y5{bottom:965.850000px;}
.y1ee{bottom:966.750000px;}
.y2a8{bottom:968.190000px;}
.y13c{bottom:973.050000px;}
.y39{bottom:973.590000px;}
.yb6{bottom:974.130000px;}
.y15c{bottom:977.370000px;}
.y68{bottom:977.550000px;}
.yee{bottom:978.630000px;}
.y10f{bottom:980.070000px;}
.y25f{bottom:982.950000px;}
.y1ed{bottom:984.030000px;}
.y87{bottom:984.570000px;}
.y1f{bottom:986.190000px;}
.y2a7{bottom:988.890000px;}
.y15b{bottom:996.450000px;}
.y1ec{bottom:998.790000px;}
.y4{bottom:1003.110000px;}
.y25e{bottom:1003.650000px;}
.y13b{bottom:1004.010000px;}
.y67{bottom:1008.510000px;}
.y38{bottom:1008.690000px;}
.yed{bottom:1009.590000px;}
.yb5{bottom:1011.210000px;}
.y15a{bottom:1015.350000px;}
.y86{bottom:1015.710000px;}
.y1e{bottom:1016.070000px;}
.y1eb{bottom:1018.590000px;}
.y3{bottom:1023.810000px;}
.y25d{bottom:1024.350000px;}
.y286{bottom:1030.290000px;}
.y159{bottom:1034.250000px;}
.y13a{bottom:1035.150000px;}
.y1ea{bottom:1038.210000px;}
.y66{bottom:1039.650000px;}
.yec{bottom:1040.730000px;}
.yb4{bottom:1042.170000px;}
.y37{bottom:1043.070000px;}
.y2{bottom:1044.510000px;}
.y1d{bottom:1045.770000px;}
.y85{bottom:1046.670000px;}
.y25c{bottom:1050.990000px;}
.y158{bottom:1053.330000px;}
.y1e9{bottom:1058.010000px;}
.y139{bottom:1066.110000px;}
.y65{bottom:1070.610000px;}
.yeb{bottom:1071.690000px;}
.y157{bottom:1072.230000px;}
.yb3{bottom:1073.310000px;}
.y1c{bottom:1075.650000px;}
.y1e8{bottom:1077.630000px;}
.y84{bottom:1077.810000px;}
.y1{bottom:1086.810000px;}
.y156{bottom:1091.310000px;}
.y25b{bottom:1092.390000px;}
.y1e7{bottom:1097.430000px;}
.y2a6{bottom:1098.510000px;}
.y64{bottom:1101.750000px;}
.yf8{bottom:1102.830000px;}
.yb2{bottom:1104.270000px;}
.y1b{bottom:1105.530000px;}
.y83{bottom:1108.770000px;}
.y155{bottom:1110.210000px;}
.y36{bottom:1110.930000px;}
.y1e6{bottom:1117.050000px;}
.y25a{bottom:1119.210000px;}
.y1e5{bottom:1136.880000px;}
.y35{bottom:1137.060000px;}
.y226{bottom:1138.140000px;}
.y63{bottom:1138.320000px;}
.y1a{bottom:1139.940000px;}
.y19{bottom:1172.340000px;}
.y18{bottom:1193.040000px;}
.hc{height:18.900000px;}
.hf{height:18.936000px;}
.hd{height:19.080000px;}
.he{height:19.116000px;}
.h11{height:21.060000px;}
.h10{height:23.220000px;}
.h15{height:38.700000px;}
.h13{height:38.736000px;}
.h14{height:46.380937px;}
.h12{height:53.573906px;}
.hb{height:58.833281px;}
.h9{height:59.343750px;}
.h8{height:59.383125px;}
.h6{height:63.949219px;}
.h3{height:64.546875px;}
.ha{height:69.065156px;}
.h7{height:69.710625px;}
.h5{height:71.613281px;}
.h2{height:74.820586px;}
.h4{height:75.519844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:37.260000px;}
.w1a{width:37.296000px;}
.wf{width:38.520000px;}
.w10{width:38.736000px;}
.w1b{width:43.380000px;}
.w17{width:43.596000px;}
.w11{width:44.280000px;}
.wb{width:44.316000px;}
.w4{width:45.000000px;}
.w5{width:45.180000px;}
.wd{width:45.900000px;}
.we{width:46.080000px;}
.w15{width:50.220000px;}
.w9{width:50.400000px;}
.w13{width:74.520000px;}
.w14{width:74.556000px;}
.w8{width:77.256000px;}
.wa{width:78.840000px;}
.w16{width:81.180000px;}
.wc{width:82.800000px;}
.w18{width:86.760000px;}
.w7{width:91.980000px;}
.w6{width:212.250000px;}
.w3{width:213.690000px;}
.w12{width:227.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:1.980000px;}
.x1c{left:4.320000px;}
.x1e{left:5.580000px;}
.x17{left:8.100000px;}
.x2a{left:10.080000px;}
.x1b{left:11.880000px;}
.x20{left:13.320000px;}
.x19{left:14.580000px;}
.x34{left:16.020000px;}
.x27{left:17.100000px;}
.x24{left:19.800000px;}
.x2d{left:22.680000px;}
.x29{left:24.840000px;}
.x2f{left:26.280000px;}
.x2{left:127.655987px;}
.x16{left:138.275987px;}
.xd{left:148.895987px;}
.x15{left:154.469987px;}
.x6{left:174.269987px;}
.x10{left:178.049987px;}
.xc{left:181.649987px;}
.x13{left:209.369987px;}
.x14{left:253.469987px;}
.x12{left:259.229987px;}
.x4{left:274.889987px;}
.x11{left:280.109987px;}
.x1d{left:339.915000px;}
.x18{left:341.355000px;}
.x5{left:353.414987px;}
.x2c{left:354.675000px;}
.x7{left:378.794987px;}
.x1a{left:386.355000px;}
.x35{left:391.935000px;}
.x2e{left:429.195000px;}
.x1f{left:431.895000px;}
.x1{left:434.774987px;}
.x3{left:446.474987px;}
.xa{left:454.574987px;}
.x36{left:466.455000px;}
.x26{left:470.415000px;}
.xb{left:486.644987px;}
.x30{left:503.745000px;}
.x21{left:509.145000px;}
.x9{left:518.684987px;}
.x31{left:553.965000px;}
.x22{left:559.545000px;}
.xe{left:595.544987px;}
.x32{left:635.145000px;}
.x23{left:638.385000px;}
.x33{left:678.750000px;}
.xf{left:681.089987px;}
.x25{left:682.710000px;}
.x37{left:722.130000px;}
.x28{left:726.990000px;}
.x8{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.920000pt;}
.ls23{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.233067pt;}
.ls25{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls0{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls11{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:8.480000pt;}
.ls26{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:11.040000pt;}
.ls13{letter-spacing:28.928000pt;}
.ls4{letter-spacing:752.138667pt;}
.ws0{word-spacing:-19.040000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws9{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.486933pt;}
.ws12{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.049067pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-15.445333pt;}
._3{margin-left:-14.549333pt;}
._6{margin-left:-12.885333pt;}
._4{margin-left:-9.799253pt;}
._a{margin-left:-7.509333pt;}
._5{margin-left:-6.449920pt;}
._9{margin-left:-4.757333pt;}
._7{margin-left:-3.029333pt;}
._b{margin-left:-2.133333pt;}
._1{margin-left:-1.009493pt;}
._0{width:1.198080pt;}
._10{width:2.693120pt;}
._f{width:3.835733pt;}
._16{width:5.101227pt;}
._12{width:6.123520pt;}
._13{width:7.138560pt;}
._c{width:8.088747pt;}
._15{width:9.175893pt;}
._19{width:10.664107pt;}
._1a{width:12.009813pt;}
._18{width:13.550933pt;}
._23{width:14.656000pt;}
._e{width:15.662080pt;}
._d{width:16.657067pt;}
._22{width:17.597867pt;}
._17{width:18.841600pt;}
._1e{width:20.458667pt;}
._1f{width:21.877333pt;}
._27{width:22.826667pt;}
._14{width:23.728640pt;}
._11{width:25.082880pt;}
._20{width:26.496000pt;}
._21{width:28.096000pt;}
._31{width:29.212160pt;}
._24{width:30.506667pt;}
._25{width:31.594667pt;}
._26{width:32.725333pt;}
._2c{width:33.863253pt;}
._2a{width:35.200000pt;}
._2b{width:36.170667pt;}
._2d{width:37.429333pt;}
._1d{width:38.385493pt;}
._2e{width:39.563093pt;}
._2f{width:41.216000pt;}
._30{width:42.442667pt;}
._28{width:44.608000pt;}
._29{width:45.504000pt;}
._32{width:46.656000pt;}
._33{width:47.552000pt;}
._1b{width:49.706667pt;}
._1c{width:51.061333pt;}
._38{width:57.664000pt;}
._4b{width:58.752000pt;}
._4c{width:60.234667pt;}
._55{width:63.488000pt;}
._56{width:64.448000pt;}
._50{width:65.664000pt;}
._51{width:66.940587pt;}
._43{width:71.040000pt;}
._5b{width:74.958507pt;}
._5a{width:75.889493pt;}
._44{width:84.160000pt;}
._45{width:85.098667pt;}
._61{width:86.208000pt;}
._4e{width:87.424000pt;}
._4f{width:88.352000pt;}
._5d{width:90.560000pt;}
._5e{width:91.740587pt;}
._3c{width:140.800000pt;}
._3d{width:141.696000pt;}
._42{width:146.368000pt;}
._5f{width:150.976000pt;}
._60{width:151.914667pt;}
._53{width:155.712000pt;}
._49{width:159.872000pt;}
._4a{width:161.152000pt;}
._4d{width:164.096000pt;}
._54{width:165.329920pt;}
._47{width:207.744000pt;}
._48{width:209.504000pt;}
._40{width:217.664000pt;}
._41{width:218.880000pt;}
._3e{width:229.440000pt;}
._3b{width:267.968000pt;}
._39{width:269.280000pt;}
._35{width:298.688000pt;}
._34{width:299.584000pt;}
._52{width:327.104000pt;}
._46{width:330.304000pt;}
._59{width:353.344000pt;}
._36{width:372.800000pt;}
._37{width:373.824000pt;}
._58{width:399.040000pt;}
._57{width:400.177493pt;}
._3f{width:686.976000pt;}
._5c{width:690.560000pt;}
._2{width:752.160000pt;}
._3a{width:1549.376000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:3.200000pt;}
.y1a4{bottom:3.240000pt;}
.y195{bottom:3.360000pt;}
.y1a9{bottom:5.120000pt;}
.y1a6{bottom:7.040000pt;}
.y1d9{bottom:20.800000pt;}
.y1b7{bottom:20.840000pt;}
.yf7{bottom:99.232000pt;}
.y1e4{bottom:100.032000pt;}
.y18f{bottom:100.512000pt;}
.y1d6{bottom:100.672000pt;}
.y285{bottom:102.752000pt;}
.yde{bottom:103.232000pt;}
.yb1{bottom:104.672000pt;}
.y2a0{bottom:108.032000pt;}
.y259{bottom:108.352000pt;}
.y62{bottom:110.112000pt;}
.y10e{bottom:110.912000pt;}
.y138{bottom:111.232000pt;}
.ycf{bottom:112.192000pt;}
.y1e3{bottom:117.632000pt;}
.y209{bottom:118.112000pt;}
.ya1{bottom:120.512000pt;}
.y284{bottom:121.152000pt;}
.y82{bottom:124.512000pt;}
.y237{bottom:125.152000pt;}
.y29f{bottom:126.432000pt;}
.y258{bottom:126.752000pt;}
.yea{bottom:126.912000pt;}
.y18e{bottom:128.192000pt;}
.y1d5{bottom:128.352000pt;}
.y61{bottom:128.512000pt;}
.ydd{bottom:130.912000pt;}
.y17c{bottom:131.232000pt;}
.yb0{bottom:132.192000pt;}
.y1ad{bottom:134.586667pt;}
.y1e2{bottom:135.066667pt;}
.y137{bottom:138.906667pt;}
.y2a5{bottom:139.546667pt;}
.yce{bottom:139.866667pt;}
.y219{bottom:141.626667pt;}
.y10d{bottom:143.866667pt;}
.y154{bottom:144.186667pt;}
.y283{bottom:144.826667pt;}
.y17{bottom:145.466667pt;}
.y208{bottom:145.786667pt;}
.ya0{bottom:148.186667pt;}
.y1b5{bottom:149.146667pt;}
.y2bd{bottom:150.266667pt;}
.y257{bottom:150.426667pt;}
.y81{bottom:152.186667pt;}
.y1e1{bottom:152.666667pt;}
.ye9{bottom:154.426667pt;}
.y225{bottom:154.906667pt;}
.y1d4{bottom:155.866667pt;}
.y60{bottom:157.146667pt;}
.y2a4{bottom:157.946667pt;}
.ydc{bottom:158.426667pt;}
.y17b{bottom:158.906667pt;}
.yaf{bottom:159.866667pt;}
.y18d{bottom:161.146667pt;}
.y1ac{bottom:162.106667pt;}
.y282{bottom:163.226667pt;}
.y127{bottom:165.146667pt;}
.y2bc{bottom:168.666667pt;}
.y256{bottom:168.826667pt;}
.y218{bottom:169.146667pt;}
.y1e0{bottom:170.106667pt;}
.y136{bottom:170.426667pt;}
.y10c{bottom:171.386667pt;}
.ycd{bottom:172.826667pt;}
.y207{bottom:173.306667pt;}
.y5f{bottom:174.266667pt;}
.y2a3{bottom:176.346667pt;}
.y1b4{bottom:176.826667pt;}
.y153{bottom:177.146667pt;}
.y80{bottom:179.706667pt;}
.y236{bottom:180.346667pt;}
.y9f{bottom:181.146667pt;}
.y281{bottom:181.626667pt;}
.ye8{bottom:182.106667pt;}
.y224{bottom:182.426667pt;}
.y16{bottom:183.066667pt;}
.y1d3{bottom:183.546667pt;}
.ydb{bottom:186.106667pt;}
.y17a{bottom:186.426667pt;}
.y29e{bottom:187.066667pt;}
.y255{bottom:187.226667pt;}
.yae{bottom:187.386667pt;}
.y1df{bottom:187.706667pt;}
.y18c{bottom:188.666667pt;}
.y1ab{bottom:189.786667pt;}
.y5e{bottom:191.066667pt;}
.y126{bottom:192.826667pt;}
.y217{bottom:196.826667pt;}
.y135{bottom:198.106667pt;}
.y10b{bottom:199.066667pt;}
.y280{bottom:200.026667pt;}
.ycc{bottom:200.346667pt;}
.y206{bottom:200.986667pt;}
.y1b3{bottom:204.346667pt;}
.y152{bottom:204.666667pt;}
.y1de{bottom:205.306667pt;}
.y29d{bottom:205.466667pt;}
.y254{bottom:205.626667pt;}
.y5d{bottom:207.866667pt;}
.y9e{bottom:208.666667pt;}
.ye7{bottom:209.626667pt;}
.y223{bottom:210.106667pt;}
.y1d2{bottom:211.066667pt;}
.y7f{bottom:212.666667pt;}
.yda{bottom:213.626667pt;}
.y179{bottom:214.106667pt;}
.yf6{bottom:215.066667pt;}
.y18b{bottom:216.346667pt;}
.y1aa{bottom:217.786667pt;}
.y27f{bottom:218.426667pt;}
.yad{bottom:219.066667pt;}
.y125{bottom:220.346667pt;}
.y1dd{bottom:222.746667pt;}
.y15{bottom:223.226667pt;}
.y29c{bottom:223.866667pt;}
.y216{bottom:224.346667pt;}
.y5c{bottom:224.826667pt;}
.y10a{bottom:226.586667pt;}
.ycb{bottom:227.866667pt;}
.y205{bottom:228.506667pt;}
.y2bb{bottom:229.146667pt;}
.y253{bottom:229.306667pt;}
.y134{bottom:229.626667pt;}
.y1a8{bottom:230.906667pt;}
.y1b2{bottom:231.866667pt;}
.y151{bottom:232.346667pt;}
.y9d{bottom:236.346667pt;}
.y2a2{bottom:236.826667pt;}
.y222{bottom:237.626667pt;}
.y7e{bottom:240.346667pt;}
.y235{bottom:240.826667pt;}
.yd9{bottom:241.306667pt;}
.y5b{bottom:241.626667pt;}
.y27e{bottom:242.266667pt;}
.ye6{bottom:242.586667pt;}
.y1d1{bottom:244.026667pt;}
.y178{bottom:245.626667pt;}
.y2ba{bottom:247.546667pt;}
.y252{bottom:247.706667pt;}
.y124{bottom:247.866667pt;}
.y1a7{bottom:250.266667pt;}
.yac{bottom:251.866667pt;}
.y2a1{bottom:255.226667pt;}
.yca{bottom:255.546667pt;}
.y133{bottom:257.306667pt;}
.y1dc{bottom:257.786667pt;}
.y5a{bottom:258.586667pt;}
.y109{bottom:259.546667pt;}
.y150{bottom:259.866667pt;}
.y27d{bottom:260.666667pt;}
.y204{bottom:261.466667pt;}
.y14{bottom:263.546667pt;}
.y9c{bottom:263.866667pt;}
.y221{bottom:265.306667pt;}
.y2b9{bottom:265.946667pt;}
.y251{bottom:266.106667pt;}
.y1a5{bottom:267.706667pt;}
.y7d{bottom:267.866667pt;}
.y234{bottom:268.506667pt;}
.ye5{bottom:270.266667pt;}
.y1d0{bottom:271.546667pt;}
.yd8{bottom:274.266667pt;}
.y59{bottom:275.386667pt;}
.y123{bottom:275.546667pt;}
.y177{bottom:278.586667pt;}
.y27c{bottom:279.066667pt;}
.yab{bottom:279.546667pt;}
.y18a{bottom:280.826667pt;}
.y29b{bottom:284.346667pt;}
.yc9{bottom:287.066667pt;}
.y14f{bottom:287.546667pt;}
.y132{bottom:288.826667pt;}
.y1a3{bottom:288.986667pt;}
.y203{bottom:289.146667pt;}
.y250{bottom:289.946667pt;}
.y9b{bottom:291.586667pt;}
.y58{bottom:292.226667pt;}
.y1db{bottom:292.866667pt;}
.y7c{bottom:295.586667pt;}
.y233{bottom:296.066667pt;}
.y1cf{bottom:296.866667pt;}
.y27b{bottom:297.506667pt;}
.ye4{bottom:297.826667pt;}
.yd7{bottom:301.826667pt;}
.y34{bottom:302.146667pt;}
.y29a{bottom:302.786667pt;}
.y122{bottom:303.106667pt;}
.y13{bottom:303.746667pt;}
.y176{bottom:306.306667pt;}
.y1a2{bottom:306.466667pt;}
.yaa{bottom:307.106667pt;}
.y2b8{bottom:308.066667pt;}
.y24f{bottom:308.386667pt;}
.y189{bottom:308.546667pt;}
.y57{bottom:309.186667pt;}
.y1d8{bottom:310.466667pt;}
.y108{bottom:314.786667pt;}
.y14e{bottom:315.106667pt;}
.y27a{bottom:315.906667pt;}
.y202{bottom:316.706667pt;}
.y1ce{bottom:317.986667pt;}
.yc8{bottom:320.066667pt;}
.y131{bottom:320.546667pt;}
.y299{bottom:321.186667pt;}
.y7b{bottom:323.106667pt;}
.y232{bottom:323.746667pt;}
.y1a1{bottom:324.066667pt;}
.y9a{bottom:324.546667pt;}
.ye3{bottom:325.506667pt;}
.y220{bottom:325.826667pt;}
.y56{bottom:325.986667pt;}
.y2b7{bottom:326.466667pt;}
.y1da{bottom:328.066667pt;}
.yd6{bottom:329.506667pt;}
.y24e{bottom:332.066667pt;}
.y33{bottom:332.546667pt;}
.y175{bottom:333.826667pt;}
.ya9{bottom:334.786667pt;}
.y121{bottom:336.066667pt;}
.y279{bottom:339.586667pt;}
.y1a0{bottom:341.666667pt;}
.y107{bottom:342.306667pt;}
.y14d{bottom:342.786667pt;}
.y12{bottom:343.906667pt;}
.y201{bottom:344.386667pt;}
.y298{bottom:344.866667pt;}
.yc7{bottom:347.746667pt;}
.y130{bottom:348.066667pt;}
.y24d{bottom:350.466667pt;}
.y7a{bottom:350.786667pt;}
.y231{bottom:351.266667pt;}
.y1cd{bottom:351.746667pt;}
.y99{bottom:352.066667pt;}
.ye2{bottom:353.026667pt;}
.y21f{bottom:353.346667pt;}
.y55{bottom:353.826667pt;}
.yd5{bottom:357.026667pt;}
.y278{bottom:357.986667pt;}
.y19f{bottom:359.106667pt;}
.y174{bottom:361.506667pt;}
.ya8{bottom:362.306667pt;}
.y297{bottom:363.266667pt;}
.y120{bottom:363.746667pt;}
.y32{bottom:363.906667pt;}
.y1cc{bottom:367.106667pt;}
.y215{bottom:367.746667pt;}
.y2b6{bottom:368.706667pt;}
.y24c{bottom:368.866667pt;}
.y188{bottom:369.026667pt;}
.y14c{bottom:370.306667pt;}
.y200{bottom:371.906667pt;}
.y54{bottom:373.666667pt;}
.yc6{bottom:375.266667pt;}
.y277{bottom:376.386667pt;}
.y19e{bottom:376.706667pt;}
.y230{bottom:378.946667pt;}
.y98{bottom:379.746667pt;}
.ye1{bottom:380.706667pt;}
.y12f{bottom:381.026667pt;}
.y296{bottom:381.666667pt;}
.y1cb{bottom:382.466667pt;}
.y79{bottom:383.746667pt;}
.y11{bottom:384.066667pt;}
.yd4{bottom:384.706667pt;}
.yf5{bottom:385.986667pt;}
.y2b5{bottom:387.106667pt;}
.y173{bottom:389.026667pt;}
.ya7{bottom:389.986667pt;}
.y11f{bottom:391.266667pt;}
.y24b{bottom:392.546667pt;}
.y19d{bottom:394.146667pt;}
.y276{bottom:394.786667pt;}
.y214{bottom:395.266667pt;}
.y187{bottom:396.546667pt;}
.y31{bottom:397.026667pt;}
.y1ca{bottom:397.666667pt;}
.y1ff{bottom:399.586667pt;}
.y295{bottom:400.066667pt;}
.y14b{bottom:401.986667pt;}
.y53{bottom:402.306667pt;}
.y106{bottom:402.946667pt;}
.y2b4{bottom:405.506667pt;}
.y22f{bottom:406.466667pt;}
.y97{bottom:407.266667pt;}
.yc5{bottom:408.226667pt;}
.y12e{bottom:408.546667pt;}
.y1c9{bottom:410.786667pt;}
.y24a{bottom:410.946667pt;}
.y78{bottom:411.266667pt;}
.y19c{bottom:411.746667pt;}
.yd3{bottom:412.226667pt;}
.yf4{bottom:413.506667pt;}
.y172{bottom:416.706667pt;}
.ya6{bottom:417.506667pt;}
.y275{bottom:418.466667pt;}
.y11e{bottom:418.946667pt;}
.y52{bottom:419.426667pt;}
.y213{bottom:422.946667pt;}
.y294{bottom:423.906667pt;}
.y10{bottom:424.226667pt;}
.y30{bottom:424.546667pt;}
.y1c8{bottom:428.386667pt;}
.y19b{bottom:429.186667pt;}
.y105{bottom:430.466667pt;}
.y1fe{bottom:432.546667pt;}
.y22e{bottom:434.146667pt;}
.y249{bottom:434.786667pt;}
.y96{bottom:434.946667pt;}
.yc4{bottom:435.906667pt;}
.y51{bottom:436.226667pt;}
.y274{bottom:436.866667pt;}
.y77{bottom:438.946667pt;}
.yf3{bottom:441.186667pt;}
.y293{bottom:442.306667pt;}
.y171{bottom:444.226667pt;}
.ya5{bottom:445.186667pt;}
.y1c7{bottom:445.986667pt;}
.y11d{bottom:446.466667pt;}
.y19a{bottom:446.786667pt;}
.y212{bottom:450.466667pt;}
.y186{bottom:451.746667pt;}
.y2f{bottom:452.226667pt;}
.y50{bottom:453.026667pt;}
.y248{bottom:453.186667pt;}
.y273{bottom:455.266667pt;}
.y104{bottom:458.146667pt;}
.y1fd{bottom:460.066667pt;}
.y292{bottom:460.706667pt;}
.y22d{bottom:461.666667pt;}
.y14a{bottom:462.466667pt;}
.yc3{bottom:463.426667pt;}
.y12d{bottom:463.746667pt;}
.y199{bottom:464.386667pt;}
.yf{bottom:464.546667pt;}
.y95{bottom:465.186667pt;}
.y2b3{bottom:465.986667pt;}
.y76{bottom:466.466667pt;}
.ye0{bottom:468.706667pt;}
.y4f{bottom:469.986667pt;}
.y247{bottom:471.586667pt;}
.y170{bottom:471.906667pt;}
.ya4{bottom:472.706667pt;}
.y272{bottom:473.666667pt;}
.y11c{bottom:474.146667pt;}
.y211{bottom:478.146667pt;}
.y2e{bottom:478.626667pt;}
.y291{bottom:479.106667pt;}
.y185{bottom:479.426667pt;}
.y1c6{bottom:481.026667pt;}
.y198{bottom:481.826667pt;}
.y2b2{bottom:484.386667pt;}
.y4e{bottom:486.786667pt;}
.y1fc{bottom:487.586667pt;}
.y22c{bottom:489.346667pt;}
.y149{bottom:489.986667pt;}
.y103{bottom:491.106667pt;}
.y12c{bottom:491.426667pt;}
.y75{bottom:493.986667pt;}
.y246{bottom:495.266667pt;}
.y94{bottom:496.386667pt;}
.ye{bottom:496.706667pt;}
.y271{bottom:497.506667pt;}
.y1c5{bottom:498.466667pt;}
.y16f{bottom:499.426667pt;}
.yd2{bottom:500.386667pt;}
.y11b{bottom:501.666667pt;}
.y290{bottom:502.786667pt;}
.y4d{bottom:503.746667pt;}
.y2d{bottom:505.186667pt;}
.ya3{bottom:505.666667pt;}
.y184{bottom:506.946667pt;}
.y245{bottom:513.666667pt;}
.y1fb{bottom:515.266667pt;}
.y270{bottom:515.906667pt;}
.y1c4{bottom:516.066667pt;}
.y197{bottom:516.866667pt;}
.y148{bottom:517.666667pt;}
.y102{bottom:518.626667pt;}
.y12b{bottom:518.946667pt;}
.y4c{bottom:520.546667pt;}
.y28f{bottom:521.186667pt;}
.y74{bottom:521.666667pt;}
.yc2{bottom:523.906667pt;}
.y21e{bottom:524.386667pt;}
.yd1{bottom:527.906667pt;}
.y16e{bottom:530.973333pt;}
.y2c{bottom:531.773333pt;}
.y244{bottom:532.093333pt;}
.y93{bottom:533.373333pt;}
.y1c3{bottom:533.533333pt;}
.y26f{bottom:534.173333pt;}
.y196{bottom:534.493333pt;}
.y11a{bottom:534.653333pt;}
.yd{bottom:536.893333pt;}
.y4b{bottom:537.373333pt;}
.y210{bottom:538.653333pt;}
.y28e{bottom:539.613333pt;}
.y1fa{bottom:542.813333pt;}
.y2b1{bottom:544.893333pt;}
.y147{bottom:545.213333pt;}
.y101{bottom:546.173333pt;}
.y12a{bottom:546.653333pt;}
.y22b{bottom:549.853333pt;}
.y1b1{bottom:550.173333pt;}
.y1c2{bottom:551.133333pt;}
.yc1{bottom:551.613333pt;}
.y194{bottom:551.933333pt;}
.y4a{bottom:554.333333pt;}
.y73{bottom:554.653333pt;}
.y243{bottom:555.773333pt;}
.yf2{bottom:556.893333pt;}
.y26e{bottom:558.013333pt;}
.y2b{bottom:558.333333pt;}
.y92{bottom:560.893333pt;}
.y119{bottom:562.173333pt;}
.y2b0{bottom:563.293333pt;}
.y16d{bottom:565.053333pt;}
.y183{bottom:566.173333pt;}
.y1c1{bottom:568.733333pt;}
.y193{bottom:569.533333pt;}
.y1f9{bottom:570.493333pt;}
.y49{bottom:571.133333pt;}
.y146{bottom:572.893333pt;}
.y100{bottom:573.853333pt;}
.y242{bottom:574.173333pt;}
.y26d{bottom:576.413333pt;}
.yc{bottom:577.053333pt;}
.y22a{bottom:577.373333pt;}
.y129{bottom:578.973333pt;}
.yc0{bottom:579.133333pt;}
.y21d{bottom:579.613333pt;}
.y28d{bottom:581.693333pt;}
.y16c{bottom:582.013333pt;}
.y72{bottom:582.173333pt;}
.ydf{bottom:583.133333pt;}
.yf1{bottom:584.573333pt;}
.y2a{bottom:584.733333pt;}
.y1c0{bottom:586.173333pt;}
.y191{bottom:587.133333pt;}
.y48{bottom:588.093333pt;}
.y91{bottom:588.573333pt;}
.y118{bottom:589.853333pt;}
.y241{bottom:592.573333pt;}
.y20f{bottom:593.853333pt;}
.y26c{bottom:594.813333pt;}
.y1f8{bottom:598.013333pt;}
.y16b{bottom:598.973333pt;}
.y182{bottom:599.133333pt;}
.y28c{bottom:600.093333pt;}
.y1bf{bottom:603.773333pt;}
.y229{bottom:605.053333pt;}
.y2af{bottom:605.373333pt;}
.y145{bottom:605.853333pt;}
.ybf{bottom:606.813333pt;}
.y21c{bottom:607.133333pt;}
.y71{bottom:609.853333pt;}
.y1b0{bottom:610.813333pt;}
.y240{bottom:610.973333pt;}
.y29{bottom:611.293333pt;}
.yf0{bottom:612.093333pt;}
.y26b{bottom:613.213333pt;}
.y47{bottom:615.773333pt;}
.y90{bottom:616.093333pt;}
.yb{bottom:617.373333pt;}
.y28b{bottom:618.493333pt;}
.y1be{bottom:621.213333pt;}
.y20e{bottom:621.373333pt;}
.y2ae{bottom:623.773333pt;}
.y1f7{bottom:625.693333pt;}
.y181{bottom:626.813333pt;}
.y23f{bottom:629.373333pt;}
.y16a{bottom:632.733333pt;}
.y228{bottom:633.213333pt;}
.y144{bottom:633.373333pt;}
.y46{bottom:634.173333pt;}
.ybe{bottom:634.333333pt;}
.y21b{bottom:634.813333pt;}
.y26a{bottom:636.893333pt;}
.y70{bottom:637.373333pt;}
.y28{bottom:637.853333pt;}
.y1af{bottom:638.333333pt;}
.y1bd{bottom:638.813333pt;}
.yef{bottom:639.773333pt;}
.y28a{bottom:642.173333pt;}
.y8f{bottom:643.773333pt;}
.y117{bottom:645.053333pt;}
.y23e{bottom:647.773333pt;}
.y20d{bottom:649.053333pt;}
.y169{bottom:649.533333pt;}
.y1f6{bottom:653.213333pt;}
.y180{bottom:654.333333pt;}
.y269{bottom:655.293333pt;}
.y1bc{bottom:656.253333pt;}
.ya{bottom:657.533333pt;}
.y289{bottom:660.573333pt;}
.y143{bottom:661.053333pt;}
.yff{bottom:662.013333pt;}
.y45{bottom:662.813333pt;}
.y27{bottom:664.413333pt;}
.y6f{bottom:665.053333pt;}
.y1ae{bottom:666.013333pt;}
.y23d{bottom:666.173333pt;}
.y168{bottom:666.333333pt;}
.y21a{bottom:667.133333pt;}
.ybd{bottom:667.293333pt;}
.y8e{bottom:671.293333pt;}
.y116{bottom:672.573333pt;}
.y268{bottom:673.693333pt;}
.y1bb{bottom:673.853333pt;}
.y190{bottom:676.573333pt;}
.y288{bottom:678.973333pt;}
.y44{bottom:679.933333pt;}
.y17f{bottom:682.013333pt;}
.y167{bottom:683.293333pt;}
.y2ad{bottom:684.413333pt;}
.y1f5{bottom:686.173333pt;}
.y142{bottom:688.573333pt;}
.yfe{bottom:689.533333pt;}
.y23c{bottom:690.013333pt;}
.y26{bottom:690.813333pt;}
.y1ba{bottom:691.453333pt;}
.ybc{bottom:694.973333pt;}
.y43{bottom:696.733333pt;}
.y267{bottom:697.373333pt;}
.y9{bottom:697.693333pt;}
.y6e{bottom:698.013333pt;}
.y8d{bottom:698.973333pt;}
.y166{bottom:700.093333pt;}
.y115{bottom:700.253333pt;}
.y2ac{bottom:702.813333pt;}
.yd0{bottom:704.253333pt;}
.y23b{bottom:708.413333pt;}
.y1b9{bottom:708.893333pt;}
.y17e{bottom:713.533333pt;}
.y42{bottom:713.693333pt;}
.y1f4{bottom:713.853333pt;}
.y266{bottom:715.773333pt;}
.y165{bottom:717.053333pt;}
.y25{bottom:717.373333pt;}
.yfd{bottom:721.213333pt;}
.y141{bottom:721.533333pt;}
.ybb{bottom:722.493333pt;}
.y6d{bottom:725.533333pt;}
.y128{bottom:726.493333pt;}
.y23a{bottom:726.813333pt;}
.y41{bottom:730.493333pt;}
.y8c{bottom:731.773333pt;}
.y114{bottom:733.213333pt;}
.y164{bottom:733.853333pt;}
.y265{bottom:734.173333pt;}
.y20c{bottom:737.213333pt;}
.y8{bottom:737.853333pt;}
.y287{bottom:739.613333pt;}
.y1f3{bottom:741.373333pt;}
.y24{bottom:743.933333pt;}
.y239{bottom:745.213333pt;}
.y17d{bottom:746.013333pt;}
.y40{bottom:747.293333pt;}
.y140{bottom:749.213333pt;}
.yba{bottom:750.173333pt;}
.y163{bottom:750.653333pt;}
.y6c{bottom:753.213333pt;}
.yfc{bottom:754.173333pt;}
.y264{bottom:758.013333pt;}
.y8b{bottom:759.453333pt;}
.y113{bottom:760.733333pt;}
.y1b6{bottom:761.533333pt;}
.y2ab{bottom:763.293333pt;}
.y3f{bottom:764.253333pt;}
.y20b{bottom:764.733333pt;}
.y162{bottom:767.653333pt;}
.y1f2{bottom:769.093333pt;}
.y23{bottom:770.533333pt;}
.y263{bottom:776.453333pt;}
.y13f{bottom:776.773333pt;}
.y238{bottom:777.573333pt;}
.y7{bottom:778.213333pt;}
.y1b8{bottom:779.013333pt;}
.y6b{bottom:780.773333pt;}
.y3e{bottom:781.093333pt;}
.yfb{bottom:781.733333pt;}
.yb9{bottom:783.013333pt;}
.y161{bottom:784.453333pt;}
.y8a{bottom:787.013333pt;}
.y112{bottom:788.453333pt;}
.y20a{bottom:792.453333pt;}
.y262{bottom:794.853333pt;}
.y22{bottom:796.933333pt;}
.y3d{bottom:798.053333pt;}
.y2aa{bottom:800.133333pt;}
.y160{bottom:801.413333pt;}
.y1f1{bottom:801.573333pt;}
.y6a{bottom:808.293333pt;}
.yfa{bottom:809.413333pt;}
.y13e{bottom:809.733333pt;}
.yb8{bottom:810.693333pt;}
.y261{bottom:813.253333pt;}
.y227{bottom:813.733333pt;}
.y89{bottom:814.693333pt;}
.y3c{bottom:814.853333pt;}
.y111{bottom:815.973333pt;}
.y15f{bottom:818.213333pt;}
.y6{bottom:818.373333pt;}
.y2a9{bottom:818.533333pt;}
.y1d7{bottom:819.973333pt;}
.y21{bottom:823.493333pt;}
.y1f0{bottom:828.613333pt;}
.y3b{bottom:831.653333pt;}
.y15e{bottom:835.013333pt;}
.yf9{bottom:836.933333pt;}
.y13d{bottom:837.253333pt;}
.yb7{bottom:838.213333pt;}
.y69{bottom:841.253333pt;}
.y88{bottom:842.213333pt;}
.y110{bottom:843.653333pt;}
.y1ef{bottom:843.973333pt;}
.ya2{bottom:847.653333pt;}
.y3a{bottom:848.613333pt;}
.y20{bottom:850.053333pt;}
.y15d{bottom:851.973333pt;}
.y260{bottom:855.333333pt;}
.y5{bottom:858.533333pt;}
.y1ee{bottom:859.333333pt;}
.y2a8{bottom:860.613333pt;}
.y13c{bottom:864.933333pt;}
.y39{bottom:865.413333pt;}
.yb6{bottom:865.893333pt;}
.y15c{bottom:868.773333pt;}
.y68{bottom:868.933333pt;}
.yee{bottom:869.893333pt;}
.y10f{bottom:871.173333pt;}
.y25f{bottom:873.733333pt;}
.y1ed{bottom:874.693333pt;}
.y87{bottom:875.173333pt;}
.y1f{bottom:876.613333pt;}
.y2a7{bottom:879.013333pt;}
.y15b{bottom:885.733333pt;}
.y1ec{bottom:887.813333pt;}
.y4{bottom:891.653333pt;}
.y25e{bottom:892.133333pt;}
.y13b{bottom:892.453333pt;}
.y67{bottom:896.453333pt;}
.y38{bottom:896.613333pt;}
.yed{bottom:897.413333pt;}
.yb5{bottom:898.853333pt;}
.y15a{bottom:902.533333pt;}
.y86{bottom:902.853333pt;}
.y1e{bottom:903.173333pt;}
.y1eb{bottom:905.413333pt;}
.y3{bottom:910.053333pt;}
.y25d{bottom:910.533333pt;}
.y286{bottom:915.813333pt;}
.y159{bottom:919.333333pt;}
.y13a{bottom:920.133333pt;}
.y1ea{bottom:922.853333pt;}
.y66{bottom:924.133333pt;}
.yec{bottom:925.093333pt;}
.yb4{bottom:926.373333pt;}
.y37{bottom:927.173333pt;}
.y2{bottom:928.453333pt;}
.y1d{bottom:929.573333pt;}
.y85{bottom:930.373333pt;}
.y25c{bottom:934.213333pt;}
.y158{bottom:936.293333pt;}
.y1e9{bottom:940.453333pt;}
.y139{bottom:947.653333pt;}
.y65{bottom:951.653333pt;}
.yeb{bottom:952.613333pt;}
.y157{bottom:953.093333pt;}
.yb3{bottom:954.053333pt;}
.y1c{bottom:956.133333pt;}
.y1e8{bottom:957.893333pt;}
.y84{bottom:958.053333pt;}
.y1{bottom:966.053333pt;}
.y156{bottom:970.053333pt;}
.y25b{bottom:971.013333pt;}
.y1e7{bottom:975.493333pt;}
.y2a6{bottom:976.453333pt;}
.y64{bottom:979.333333pt;}
.yf8{bottom:980.293333pt;}
.yb2{bottom:981.573333pt;}
.y1b{bottom:982.693333pt;}
.y83{bottom:985.573333pt;}
.y155{bottom:986.853333pt;}
.y36{bottom:987.493333pt;}
.y1e6{bottom:992.933333pt;}
.y25a{bottom:994.853333pt;}
.y1e5{bottom:1010.560000pt;}
.y35{bottom:1010.720000pt;}
.y226{bottom:1011.680000pt;}
.y63{bottom:1011.840000pt;}
.y1a{bottom:1013.280000pt;}
.y19{bottom:1042.080000pt;}
.y18{bottom:1060.480000pt;}
.hc{height:16.800000pt;}
.hf{height:16.832000pt;}
.hd{height:16.960000pt;}
.he{height:16.992000pt;}
.h11{height:18.720000pt;}
.h10{height:20.640000pt;}
.h15{height:34.400000pt;}
.h13{height:34.432000pt;}
.h14{height:41.227500pt;}
.h12{height:47.621250pt;}
.hb{height:52.296250pt;}
.h9{height:52.750000pt;}
.h8{height:52.785000pt;}
.h6{height:56.843750pt;}
.h3{height:57.375000pt;}
.ha{height:61.391250pt;}
.h7{height:61.965000pt;}
.h5{height:63.656250pt;}
.h2{height:66.507188pt;}
.h4{height:67.128750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:33.120000pt;}
.w1a{width:33.152000pt;}
.wf{width:34.240000pt;}
.w10{width:34.432000pt;}
.w1b{width:38.560000pt;}
.w17{width:38.752000pt;}
.w11{width:39.360000pt;}
.wb{width:39.392000pt;}
.w4{width:40.000000pt;}
.w5{width:40.160000pt;}
.wd{width:40.800000pt;}
.we{width:40.960000pt;}
.w15{width:44.640000pt;}
.w9{width:44.800000pt;}
.w13{width:66.240000pt;}
.w14{width:66.272000pt;}
.w8{width:68.672000pt;}
.wa{width:70.080000pt;}
.w16{width:72.160000pt;}
.wc{width:73.600000pt;}
.w18{width:77.120000pt;}
.w7{width:81.760000pt;}
.w6{width:188.666667pt;}
.w3{width:189.946667pt;}
.w12{width:201.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.760000pt;}
.x1c{left:3.840000pt;}
.x1e{left:4.960000pt;}
.x17{left:7.200000pt;}
.x2a{left:8.960000pt;}
.x1b{left:10.560000pt;}
.x20{left:11.840000pt;}
.x19{left:12.960000pt;}
.x34{left:14.240000pt;}
.x27{left:15.200000pt;}
.x24{left:17.600000pt;}
.x2d{left:20.160000pt;}
.x29{left:22.080000pt;}
.x2f{left:23.360000pt;}
.x2{left:113.471988pt;}
.x16{left:122.911988pt;}
.xd{left:132.351988pt;}
.x15{left:137.306655pt;}
.x6{left:154.906655pt;}
.x10{left:158.266655pt;}
.xc{left:161.466655pt;}
.x13{left:186.106655pt;}
.x14{left:225.306655pt;}
.x12{left:230.426655pt;}
.x4{left:244.346655pt;}
.x11{left:248.986655pt;}
.x1d{left:302.146667pt;}
.x18{left:303.426667pt;}
.x5{left:314.146655pt;}
.x2c{left:315.266667pt;}
.x7{left:336.706655pt;}
.x1a{left:343.426667pt;}
.x35{left:348.386667pt;}
.x2e{left:381.506667pt;}
.x1f{left:383.906667pt;}
.x1{left:386.466655pt;}
.x3{left:396.866655pt;}
.xa{left:404.066655pt;}
.x36{left:414.626667pt;}
.x26{left:418.146667pt;}
.xb{left:432.573322pt;}
.x30{left:447.773333pt;}
.x21{left:452.573333pt;}
.x9{left:461.053322pt;}
.x31{left:492.413333pt;}
.x22{left:497.373333pt;}
.xe{left:529.373322pt;}
.x32{left:564.573333pt;}
.x23{left:567.453333pt;}
.x33{left:603.333333pt;}
.xf{left:605.413322pt;}
.x25{left:606.853333pt;}
.x37{left:641.893333pt;}
.x28{left:646.213333pt;}
.x8{left:680.453322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  