
    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_deca077a956fe4bfe269be69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc16d6b847d06a093479d60d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d7401107cd9c11350266b82.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_a5aa8146bcce64ff912d410a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_d97d6f1d51333285e866ece0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac82efd0bf6113a305f9b035.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_97f65eb4a576519e775a8e45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_23a263a8e345a9c1511824b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7a7461a74ee57a3ff14cd35d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c76f596afb24e430461b2421.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a1d74fe820df2f2ce0b8da58.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f1fea94026052ddc88acde5b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.030273;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;}
.ls17{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.285600px;}
.ls1d{letter-spacing:-0.231600px;}
.ls19{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.103800px;}
.ls15{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.040320px;}
.ls8{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.153600px;}
.ls24{letter-spacing:0.175200px;}
.ls22{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.302400px;}
.ls4{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls1e{letter-spacing:1.008000px;}
.lse{letter-spacing:2.664000px;}
.ls18{letter-spacing:12.024000px;}
.ls1a{letter-spacing:28.920000px;}
.ls20{letter-spacing:31.800000px;}
.ls1c{letter-spacing:44.784000px;}
.ls16{letter-spacing:51.264000px;}
.ls1b{letter-spacing:51.984000px;}
.ls26{letter-spacing:54.840000px;}
.lsc{letter-spacing:91.224000px;}
.ls10{letter-spacing:101.861280px;}
.ls9{letter-spacing:844.104000px;}
.lsf{letter-spacing:844.140000px;}
.ls1f{letter-spacing:844.164000px;}
.ls27{letter-spacing:844.284000px;}
.ls0{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.ws1{word-spacing:-26.900880px;}
.ws0{word-spacing:-26.787600px;}
.ws19{word-spacing:-22.302720px;}
.ws5{word-spacing:-21.924000px;}
.ws4{word-spacing:-21.600000px;}
.wsd{word-spacing:-17.100720px;}
.wsf{word-spacing:-15.408000px;}
.ws15{word-spacing:-15.048000px;}
.wsc{word-spacing:-14.904000px;}
.ws17{word-spacing:-14.832000px;}
.ws8{word-spacing:-14.760000px;}
.wsa{word-spacing:-14.688000px;}
.wsb{word-spacing:-14.616001px;}
.ws9{word-spacing:-14.616000px;}
.ws10{word-spacing:-14.544000px;}
.wse{word-spacing:-14.472000px;}
.ws11{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.328000px;}
.ws16{word-spacing:-14.184000px;}
.ws7{word-spacing:-13.446720px;}
.ws3{word-spacing:-12.433680px;}
.ws1a{word-spacing:-12.306480px;}
.ws1b{word-spacing:-12.027480px;}
.ws12{word-spacing:-11.899680px;}
.ws18{word-spacing:-11.845680px;}
.ws14{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-13.829520px;}
._14{margin-left:-12.132000px;}
._15{margin-left:-10.920070px;}
._f{margin-left:-9.852000px;}
._16{margin-left:-8.844000px;}
._11{margin-left:-6.876000px;}
._a{margin-left:-4.032000px;}
._8{margin-left:-2.148000px;}
._2{margin-left:-1.080000px;}
._0{width:1.265520px;}
._1{width:2.569200px;}
._b{width:3.960000px;}
._6{width:5.328000px;}
._7{width:6.624000px;}
._e{width:8.196000px;}
._d{width:9.432000px;}
._1a{width:10.531440px;}
._9{width:11.592000px;}
._17{width:12.672000px;}
._18{width:15.654480px;}
._19{width:17.002800px;}
._23{width:18.360000px;}
._21{width:19.656000px;}
._22{width:20.736000px;}
._1c{width:22.584000px;}
._1d{width:23.664000px;}
._1b{width:25.909440px;}
._3{width:26.938560px;}
._c{width:28.213440px;}
._1f{width:29.520000px;}
._20{width:31.023120px;}
._25{width:32.634480px;}
._1e{width:33.840000px;}
._24{width:39.528000px;}
._4{width:106.793280px;}
._5{width:108.413280px;}
._12{width:116.832000px;}
._10{width:248.592000px;}
.fc2{color:transparent;}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:5.040000px;}
.y1db{bottom:5.085000px;}
.y1de{bottom:5.220000px;}
.y1d5{bottom:8.460000px;}
.y14d{bottom:10.440000px;}
.y1ff{bottom:10.980000px;}
.y1e7{bottom:11.700000px;}
.y1e3{bottom:11.880000px;}
.y84{bottom:18.360000px;}
.y1d8{bottom:19.665000px;}
.y1cf{bottom:21.960000px;}
.y204{bottom:22.680000px;}
.y1ca{bottom:27.000000px;}
.y1da{bottom:27.045000px;}
.y1dd{bottom:27.180000px;}
.y1f7{bottom:33.840000px;}
.y1c8{bottom:40.680000px;}
.y1e0{bottom:43.920000px;}
.y82{bottom:44.100000px;}
.y201{bottom:44.640000px;}
.y1fb{bottom:44.820000px;}
.y24a{bottom:44.865000px;}
.y1a9{bottom:48.390000px;}
.y1f9{bottom:48.960000px;}
.y1e2{bottom:49.140000px;}
.y1fe{bottom:49.170000px;}
.y7{bottom:52.560000px;}
.y1c1{bottom:57.060000px;}
.y1e5{bottom:62.454000px;}
.y1a8{bottom:65.670000px;}
.y1a5{bottom:65.700000px;}
.y1be{bottom:65.730000px;}
.y203{bottom:66.600000px;}
.y14c{bottom:70.740000px;}
.y202{bottom:70.920000px;}
.y1fc{bottom:71.130000px;}
.y5{bottom:73.800000px;}
.y1c0{bottom:74.340000px;}
.y2{bottom:76.356000px;}
.y249{bottom:77.805000px;}
.y1a7{bottom:82.950000px;}
.y1e4{bottom:88.596000px;}
.y1a4{bottom:89.640000px;}
.y1bd{bottom:89.670000px;}
.y1bf{bottom:98.280000px;}
.y16a{bottom:99.396000px;}
.yc1{bottom:102.276000px;}
.y187{bottom:102.456000px;}
.y12c{bottom:105.336000px;}
.y27{bottom:105.696000px;}
.y1a6{bottom:106.890000px;}
.y9e{bottom:108.396000px;}
.y11d{bottom:111.276000px;}
.y18e{bottom:111.456000px;}
.y15a{bottom:114.336000px;}
.y1bb{bottom:114.516000px;}
.y18a{bottom:117.396000px;}
.ydc{bottom:120.276000px;}
.y23e{bottom:120.456000px;}
.y1e6{bottom:120.636000px;}
.y236{bottom:123.336000px;}
.y10d{bottom:126.396000px;}
.y20c{bottom:127.116000px;}
.y181{bottom:127.836000px;}
.y6c{bottom:129.096000px;}
.y169{bottom:132.336000px;}
.y26{bottom:134.136000px;}
.yf0{bottom:135.216000px;}
.yc0{bottom:135.396000px;}
.y14a{bottom:135.585000px;}
.y12b{bottom:138.276000px;}
.y1a2{bottom:138.636000px;}
.y9d{bottom:141.336000px;}
.y239{bottom:142.596000px;}
.y11c{bottom:144.396000px;}
.y245{bottom:147.276000px;}
.y1ba{bottom:147.456000px;}
.y13e{bottom:150.330000px;}
.ydb{bottom:153.210000px;}
.y22e{bottom:153.390000px;}
.yfa{bottom:156.270000px;}
.y10c{bottom:159.330000px;}
.y180{bottom:160.770000px;}
.y25{bottom:162.750000px;}
.y168{bottom:165.270000px;}
.yef{bottom:168.150000px;}
.ybf{bottom:168.330000px;}
.y1df{bottom:168.690000px;}
.y20b{bottom:170.310000px;}
.y6b{bottom:171.030000px;}
.y12a{bottom:171.210000px;}
.y1a1{bottom:171.570000px;}
.y9c{bottom:174.270000px;}
.y14b{bottom:177.330000px;}
.y244{bottom:180.210000px;}
.y1b9{bottom:180.390000px;}
.y190{bottom:180.930000px;}
.y13d{bottom:183.270000px;}
.y238{bottom:185.610000px;}
.yda{bottom:186.150000px;}
.y11b{bottom:186.330000px;}
.yf9{bottom:189.210000px;}
.y159{bottom:189.390000px;}
.y24{bottom:191.190000px;}
.y10b{bottom:192.270000px;}
.y17f{bottom:193.710000px;}
.y23c{bottom:198.390000px;}
.y1e1{bottom:200.730000px;}
.yee{bottom:201.090000px;}
.y172{bottom:201.270000px;}
.y20a{bottom:203.250000px;}
.y129{bottom:204.150000px;}
.y167{bottom:204.870000px;}
.y9b{bottom:207.210000px;}
.ybe{bottom:210.270000px;}
.y1a0{bottom:210.630000px;}
.y6a{bottom:212.970000px;}
.y243{bottom:213.150000px;}
.y1b8{bottom:213.330000px;}
.y13c{bottom:216.210000px;}
.yd9{bottom:219.090000px;}
.y11a{bottom:219.270000px;}
.y23{bottom:219.630000px;}
.y57{bottom:222.150000px;}
.y235{bottom:222.330000px;}
.y1dc{bottom:222.690000px;}
.y10a{bottom:225.210000px;}
.y6{bottom:225.390000px;}
.y17e{bottom:226.650000px;}
.y23d{bottom:228.270000px;}
.y83{bottom:229.350000px;}
.y158{bottom:231.330000px;}
.y21f{bottom:231.870000px;}
.y1a3{bottom:234.000000px;}
.yed{bottom:234.210000px;}
.y186{bottom:234.390000px;}
.y209{bottom:236.190000px;}
.y149{bottom:238.710000px;}
.y9a{bottom:240.150000px;}
.ybd{bottom:243.210000px;}
.y18d{bottom:243.390000px;}
.y128{bottom:243.750000px;}
.y1b7{bottom:246.270000px;}
.y22{bottom:248.250000px;}
.y13b{bottom:249.150000px;}
.yd8{bottom:252.210000px;}
.y19f{bottom:254.010000px;}
.y56{bottom:255.090000px;}
.y234{bottom:255.270000px;}
.y109{bottom:258.150000px;}
.y119{bottom:261.210000px;}
.yf8{bottom:261.750000px;}
.y157{bottom:264.270000px;}
.y248{bottom:264.450000px;}
.y21e{bottom:264.810000px;}
.y17d{bottom:266.250000px;}
.yec{bottom:267.150000px;}
.y185{bottom:267.330000px;}
.y208{bottom:269.130000px;}
.y1d7{bottom:270.930000px;}
.y99{bottom:273.090000px;}
.ybc{bottom:276.150000px;}
.y18c{bottom:276.330000px;}
.y21{bottom:276.690000px;}
.y1d9{bottom:278.670000px;}
.y1b6{bottom:279.210000px;}
.y189{bottom:282.135000px;}
.yd7{bottom:285.195000px;}
.y192{bottom:285.375000px;}
.y55{bottom:288.255000px;}
.y13a{bottom:288.975000px;}
.y146{bottom:291.135000px;}
.y118{bottom:294.195000px;}
.y69{bottom:297.075000px;}
.y127{bottom:297.255000px;}
.y21d{bottom:297.795000px;}
.y108{bottom:297.975000px;}
.y171{bottom:300.135000px;}
.y184{bottom:300.315000px;}
.y1d6{bottom:300.675000px;}
.y207{bottom:302.115000px;}
.y20{bottom:305.175000px;}
.y98{bottom:306.255000px;}
.yeb{bottom:306.795000px;}
.ybb{bottom:309.135000px;}
.y18b{bottom:309.315000px;}
.y1b5{bottom:312.195000px;}
.yf7{bottom:315.255000px;}
.y17c{bottom:316.875000px;}
.yd6{bottom:318.135000px;}
.y191{bottom:318.315000px;}
.y4{bottom:318.675000px;}
.y80{bottom:321.015000px;}
.y54{bottom:321.195000px;}
.y227{bottom:324.075000px;}
.y145{bottom:324.255000px;}
.y1d4{bottom:326.775000px;}
.y165{bottom:327.135000px;}
.y81{bottom:329.835000px;}
.y126{bottom:330.195000px;}
.y21c{bottom:330.915000px;}
.y170{bottom:333.255000px;}
.y1f{bottom:333.795000px;}
.y206{bottom:335.055000px;}
.y117{bottom:336.135000px;}
.y68{bottom:339.015000px;}
.y156{bottom:339.195000px;}
.yba{bottom:342.075000px;}
.y139{bottom:342.255000px;}
.y1d3{bottom:345.495000px;}
.y97{bottom:348.195000px;}
.y14f{bottom:351.075000px;}
.y107{bottom:351.255000px;}
.y53{bottom:354.135000px;}
.y144{bottom:357.195000px;}
.yd5{bottom:357.735000px;}
.y164{bottom:360.075000px;}
.y1e{bottom:362.235000px;}
.y7f{bottom:362.955000px;}
.y125{bottom:363.135000px;}
.y21b{bottom:363.855000px;}
.y226{bottom:366.015000px;}
.y16f{bottom:366.195000px;}
.y205{bottom:367.995000px;}
.y116{bottom:369.075000px;}
.y1d2{bottom:371.595000px;}
.yb9{bottom:375.015000px;}
.y138{bottom:375.195000px;}
.y67{bottom:380.955000px;}
.y96{bottom:381.135000px;}
.y1d1{bottom:381.675000px;}
.y14e{bottom:384.015000px;}
.y106{bottom:384.195000px;}
.y247{bottom:387.075000px;}
.y1b4{bottom:387.255000px;}
.y143{bottom:390.135000px;}
.y1d{bottom:390.675000px;}
.y163{bottom:393.015000px;}
.y200{bottom:394.815000px;}
.y52{bottom:396.075000px;}
.y21a{bottom:396.795000px;}
.y225{bottom:398.955000px;}
.yea{bottom:399.135000px;}
.y7e{bottom:404.895000px;}
.y19e{bottom:405.075000px;}
.y1ce{bottom:407.775000px;}
.y137{bottom:408.135000px;}
.yd4{bottom:411.015000px;}
.y95{bottom:414.075000px;}
.yb8{bottom:416.955000px;}
.y105{bottom:417.135000px;}
.y1d0{bottom:417.855000px;}
.y1c{bottom:419.295000px;}
.y66{bottom:422.895000px;}
.y142{bottom:423.075000px;}
.y162{bottom:425.955000px;}
.y22d{bottom:426.135000px;}
.y51{bottom:429.015000px;}
.y1b3{bottom:429.195000px;}
.y224{bottom:431.895000px;}
.ye9{bottom:432.075000px;}
.y19d{bottom:438.015000px;}
.y219{bottom:438.735000px;}
.y1cd{bottom:439.815000px;}
.y136{bottom:441.075000px;}
.yd3{bottom:443.955000px;}
.y7d{bottom:447.015000px;}
.y1b{bottom:447.735000px;}
.y3e{bottom:449.895000px;}
.y104{bottom:450.075000px;}
.y115{bottom:452.955000px;}
.y155{bottom:456.015000px;}
.y22c{bottom:459.075000px;}
.y50{bottom:461.955000px;}
.y141{bottom:462.675000px;}
.y65{bottom:464.835000px;}
.ye8{bottom:465.015000px;}
.y1cc{bottom:465.915000px;}
.y161{bottom:467.895000px;}
.y19c{bottom:470.955000px;}
.y1b2{bottom:471.135000px;}
.y218{bottom:471.675000px;}
.y3d{bottom:471.855000px;}
.y135{bottom:474.015000px;}
.y1cb{bottom:475.995000px;}
.y1a{bottom:476.175000px;}
.yd2{bottom:476.895000px;}
.y94{bottom:479.955000px;}
.yb7{bottom:483.015000px;}
.y114{bottom:485.895000px;}
.y7c{bottom:488.955000px;}
.y22b{bottom:492.015000px;}
.y4f{bottom:494.895000px;}
.y1fa{bottom:496.875000px;}
.ye7{bottom:497.955000px;}
.y3c{bottom:498.315000px;}
.y160{bottom:501.015000px;}
.y1c7{bottom:502.095000px;}
.y19b{bottom:503.895000px;}
.y217{bottom:504.615000px;}
.y19{bottom:504.795000px;}
.y64{bottom:506.775000px;}
.y134{bottom:506.955000px;}
.yd1{bottom:510.015000px;}
.y1c9{bottom:512.355000px;}
.y93{bottom:512.895000px;}
.y1b1{bottom:513.255000px;}
.yb6{bottom:515.955000px;}
.y1fd{bottom:517.935000px;}
.y154{bottom:521.895000px;}
.y3b{bottom:522.255000px;}
.y22a{bottom:524.955000px;}
.y4e{bottom:527.835000px;}
.y113{bottom:528.015000px;}
.y7b{bottom:530.895000px;}
.y18{bottom:533.235000px;}
.y15f{bottom:533.955000px;}
.y124{bottom:536.835000px;}
.y233{bottom:537.015000px;}
.y216{bottom:537.555000px;}
.y133{bottom:539.895000px;}
.yd0{bottom:542.955000px;}
.yf6{bottom:545.835000px;}
.y3a{bottom:546.015000px;}
.y63{bottom:548.715000px;}
.yb5{bottom:548.895000px;}
.y92{bottom:554.835000px;}
.y153{bottom:555.015000px;}
.y1b0{bottom:555.195000px;}
.y229{bottom:557.895000px;}
.y1c6{bottom:560.415000px;}
.y4d{bottom:560.775000px;}
.y112{bottom:560.955000px;}
.y17{bottom:561.675000px;}
.ye6{bottom:563.835000px;}
.y123{bottom:569.805000px;}
.y232{bottom:569.985000px;}
.y1c5{bottom:570.525000px;}
.y7a{bottom:572.865000px;}
.y132{bottom:573.045000px;}
.y39{bottom:574.485000px;}
.ycf{bottom:575.925000px;}
.yf5{bottom:578.805000px;}
.y246{bottom:578.985000px;}
.yb4{bottom:581.865000px;}
.y103{bottom:582.045000px;}
.y91{bottom:587.805000px;}
.y152{bottom:587.985000px;}
.y1af{bottom:588.165000px;}
.y16{bottom:590.325000px;}
.y62{bottom:590.685000px;}
.y111{bottom:593.925000px;}
.y1c3{bottom:596.625000px;}
.ye5{bottom:596.805000px;}
.y228{bottom:596.985000px;}
.y1f6{bottom:598.965000px;}
.y38{bottom:602.925000px;}
.y215{bottom:603.465000px;}
.y16e{bottom:603.645000px;}
.y197{bottom:605.805000px;}
.y131{bottom:605.985000px;}
.yce{bottom:608.865000px;}
.y1f8{bottom:609.225000px;}
.yf4{bottom:611.925000px;}
.y79{bottom:614.805000px;}
.y102{bottom:614.985000px;}
.y15{bottom:618.765000px;}
.y90{bottom:620.925000px;}
.y1ae{bottom:621.105000px;}
.ye4{bottom:629.925000px;}
.y37{bottom:631.545000px;}
.y61{bottom:632.805000px;}
.y4c{bottom:635.865000px;}
.y214{bottom:636.405000px;}
.y130{bottom:638.925000px;}
.y1c2{bottom:641.625000px;}
.ycd{bottom:641.805000px;}
.y231{bottom:644.865000px;}
.y14{bottom:647.205000px;}
.yb3{bottom:647.745000px;}
.y101{bottom:647.925000px;}
.y15e{bottom:650.805000px;}
.y8f{bottom:653.865000px;}
.y1ad{bottom:654.045000px;}
.y78{bottom:656.745000px;}
.y16d{bottom:656.925000px;}
.y36{bottom:659.985000px;}
.y193{bottom:660.525000px;}
.ye3{bottom:662.865000px;}
.y4b{bottom:668.805000px;}
.y213{bottom:669.525000px;}
.y183{bottom:671.865000px;}
.y60{bottom:674.745000px;}
.y19a{bottom:675.465000px;}
.y13{bottom:675.825000px;}
.y110{bottom:677.805000px;}
.y1f5{bottom:679.245000px;}
.yb2{bottom:680.685000px;}
.y100{bottom:680.865000px;}
.y8e{bottom:686.805000px;}
.y1ac{bottom:686.985000px;}
.y35{bottom:688.425000px;}
.y16c{bottom:689.865000px;}
.y15d{bottom:692.745000px;}
.ye2{bottom:695.805000px;}
.y77{bottom:698.685000px;}
.y4a{bottom:701.745000px;}
.y212{bottom:702.285000px;}
.y12{bottom:704.265000px;}
.y182{bottom:704.805000px;}
.ycc{bottom:707.685000px;}
.y10f{bottom:710.745000px;}
.yb1{bottom:713.625000px;}
.yff{bottom:713.805000px;}
.y5f{bottom:716.685000px;}
.y34{bottom:717.045000px;}
.y8d{bottom:719.745000px;}
.y223{bottom:722.625000px;}
.y16b{bottom:722.805000px;}
.y15c{bottom:725.685000px;}
.y1ab{bottom:726.225000px;}
.y188{bottom:726.405000px;}
.ye1{bottom:728.745000px;}
.y49{bottom:734.685000px;}
.y151{bottom:737.745000px;}
.y76{bottom:740.625000px;}
.y122{bottom:741.345000px;}
.y242{bottom:743.685000px;}
.y33{bottom:745.485000px;}
.y1f4{bottom:746.205000px;}
.yb0{bottom:746.565000px;}
.yfe{bottom:746.745000px;}
.y1bc{bottom:749.520000px;}
.y8c{bottom:752.685000px;}
.y11{bottom:755.565000px;}
.y140{bottom:755.745000px;}
.y5e{bottom:758.625000px;}
.y166{bottom:759.345000px;}
.ye0{bottom:761.685000px;}
.y48{bottom:767.625000px;}
.y1aa{bottom:769.605000px;}
.y150{bottom:770.685000px;}
.ycb{bottom:773.565000px;}
.y32{bottom:773.925000px;}
.y241{bottom:776.625000px;}
.y211{bottom:778.605000px;}
.yaf{bottom:779.685000px;}
.y10{bottom:780.045000px;}
.y75{bottom:782.565000px;}
.y8b{bottom:785.625000px;}
.y13f{bottom:788.685000px;}
.y15b{bottom:791.565000px;}
.y1f3{bottom:794.445000px;}
.ydf{bottom:794.625000px;}
.y47{bottom:800.565000px;}
.y31{bottom:802.545000px;}
.y198{bottom:803.625000px;}
.yca{bottom:806.685000px;}
.y210{bottom:811.545000px;}
.y12f{bottom:812.625000px;}
.y237{bottom:814.860000px;}
.y17b{bottom:815.685000px;}
.y8a{bottom:818.565000px;}
.yae{bottom:821.625000px;}
.y74{bottom:824.685000px;}
.y1f2{bottom:827.385000px;}
.yde{bottom:827.565000px;}
.y30{bottom:830.985000px;}
.y10e{bottom:836.565000px;}
.yc9{bottom:839.625000px;}
.yf{bottom:839.985000px;}
.y46{bottom:842.505000px;}
.y20f{bottom:844.485000px;}
.y12e{bottom:845.565000px;}
.y17a{bottom:848.670000px;}
.y240{bottom:851.550000px;}
.y230{bottom:851.730000px;}
.yad{bottom:854.610000px;}
.y2f{bottom:859.470000px;}
.y1f1{bottom:860.370000px;}
.y89{bottom:860.550000px;}
.y121{bottom:860.730000px;}
.y73{bottom:866.670000px;}
.ya5{bottom:869.730000px;}
.yc8{bottom:872.610000px;}
.y45{bottom:875.490000px;}
.y20e{bottom:877.470000px;}
.y196{bottom:878.550000px;}
.y12d{bottom:878.730000px;}
.y179{bottom:881.610000px;}
.y5d{bottom:884.490000px;}
.yac{bottom:887.550000px;}
.yfd{bottom:887.730000px;}
.y2e{bottom:888.090000px;}
.y1f0{bottom:893.310000px;}
.y88{bottom:893.490000px;}
.y199{bottom:893.670000px;}
.ye{bottom:899.970000px;}
.y18f{bottom:900.330000px;}
.y120{bottom:902.670000px;}
.yc7{bottom:905.550000px;}
.y44{bottom:908.430000px;}
.y72{bottom:908.610000px;}
.y20d{bottom:910.410000px;}
.y195{bottom:911.490000px;}
.ya4{bottom:911.670000px;}
.y178{bottom:914.550000px;}
.y2d{bottom:916.530000px;}
.y23f{bottom:917.430000px;}
.yab{bottom:920.490000px;}
.yfc{bottom:920.670000px;}
.y1ef{bottom:926.250000px;}
.y5c{bottom:926.430000px;}
.y22f{bottom:926.610000px;}
.yf3{bottom:933.270000px;}
.y11f{bottom:935.610000px;}
.yc6{bottom:938.490000px;}
.y43{bottom:941.550000px;}
.y194{bottom:944.430000px;}
.ya3{bottom:944.610000px;}
.y2c{bottom:945.330000px;}
.y177{bottom:947.490000px;}
.y71{bottom:950.550000px;}
.yaa{bottom:953.430000px;}
.yfb{bottom:953.610000px;}
.y1ee{bottom:959.190000px;}
.y87{bottom:959.550000px;}
.yd{bottom:959.910000px;}
.y5b{bottom:968.370000px;}
.y11e{bottom:968.550000px;}
.yc5{bottom:971.430000px;}
.y2b{bottom:973.590000px;}
.y42{bottom:974.490000px;}
.ya2{bottom:977.550000px;}
.y176{bottom:980.430000px;}
.ya9{bottom:986.370000px;}
.yf2{bottom:986.550000px;}
.y1ed{bottom:992.130000px;}
.y70{bottom:992.490000px;}
.ydd{bottom:999.150000px;}
.y23b{bottom:1001.490000px;}
.y2a{bottom:1002.030000px;}
.yc4{bottom:1004.370000px;}
.y41{bottom:1007.430000px;}
.y5a{bottom:1010.310000px;}
.ya1{bottom:1010.490000px;}
.y175{bottom:1013.370000px;}
.y1eb{bottom:1018.950000px;}
.ya8{bottom:1019.310000px;}
.yf1{bottom:1019.490000px;}
.yc{bottom:1019.850000px;}
.y86{bottom:1025.430000px;}
.y1ec{bottom:1029.030000px;}
.y29{bottom:1030.470000px;}
.y222{bottom:1032.810000px;}
.y6f{bottom:1034.430000px;}
.yc3{bottom:1037.310000px;}
.y40{bottom:1040.370000px;}
.ya0{bottom:1043.430000px;}
.y174{bottom:1046.310000px;}
.y1ea{bottom:1050.990000px;}
.y59{bottom:1052.430000px;}
.yb{bottom:1052.970000px;}
.y148{bottom:1054.770000px;}
.y85{bottom:1058.370000px;}
.y28{bottom:1059.090000px;}
.y221{bottom:1075.830000px;}
.y6e{bottom:1076.370000px;}
.ya7{bottom:1076.730000px;}
.yc2{bottom:1077.090000px;}
.y173{bottom:1079.430000px;}
.y9f{bottom:1085.370000px;}
.y1e9{bottom:1087.170000px;}
.ya{bottom:1087.530000px;}
.y220{bottom:1096.350000px;}
.y147{bottom:1097.790000px;}
.y3f{bottom:1097.970000px;}
.y1e8{bottom:1109.130000px;}
.y23a{bottom:1109.310000px;}
.y58{bottom:1111.110000px;}
.y3{bottom:1111.470000px;}
.y9{bottom:1115.970000px;}
.y6d{bottom:1118.310000px;}
.ya6{bottom:1119.750000px;}
.y8{bottom:1184.760000px;}
.y1{bottom:1184.940000px;}
.h1a{height:2.496094px;}
.h1f{height:2.500313px;}
.h18{height:21.960000px;}
.h26{height:21.996000px;}
.h1d{height:35.460000px;}
.h19{height:35.496000px;}
.h2{height:41.493516px;}
.h1c{height:43.920000px;}
.h21{height:43.956000px;}
.h22{height:44.100000px;}
.h17{height:48.448125px;}
.h12{height:49.320000px;}
.h3{height:49.992188px;}
.h9{height:51.793945px;}
.hd{height:52.417969px;}
.h20{height:55.116000px;}
.h4{height:57.410156px;}
.h1e{height:57.420000px;}
.h27{height:57.456000px;}
.hb{height:57.507187px;}
.h1b{height:57.600000px;}
.h13{height:62.226562px;}
.hc{height:62.402344px;}
.hf{height:62.507812px;}
.h29{height:65.880000px;}
.h24{height:66.060000px;}
.h2c{height:66.096000px;}
.he{height:73.134141px;}
.h7{height:75.096000px;}
.h25{height:79.380000px;}
.h28{height:79.560000px;}
.h8{height:82.995117px;}
.h2d{height:87.840000px;}
.h2b{height:88.056000px;}
.ha{height:93.761719px;}
.h30{height:94.716000px;}
.h10{height:94.860000px;}
.h23{height:101.340000px;}
.h2a{height:101.376000px;}
.h15{height:101.700000px;}
.h5{height:104.760000px;}
.h6{height:114.196289px;}
.h16{height:146.160000px;}
.h14{height:186.330000px;}
.h11{height:187.523438px;}
.h2e{height:892.980000px;}
.h2f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:128.520000px;}
.wb{width:144.360000px;}
.w8{width:145.800000px;}
.w15{width:149.400000px;}
.w12{width:162.900000px;}
.w14{width:180.570000px;}
.w11{width:193.890000px;}
.w13{width:201.270000px;}
.w19{width:202.530000px;}
.we{width:215.130000px;}
.w10{width:218.370000px;}
.w17{width:222.510000px;}
.w9{width:231.870000px;}
.w6{width:238.170000px;}
.wf{width:273.450000px;}
.w18{width:285.915000px;}
.w16{width:305.895000px;}
.wc{width:350.715000px;}
.wa{width:408.495000px;}
.w7{width:428.655000px;}
.w5{width:561.525000px;}
.w4{width:647.025000px;}
.w3{width:736.305000px;}
.w1d{width:828.180000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1c{width:1262.879981px;}
.w1a{width:1262.880000px;}
.w1b{width:1263.000000px;}
.x0{left:0.000000px;}
.x24{left:1.260000px;}
.x21{left:7.740000px;}
.x2{left:10.800000px;}
.x26{left:12.060000px;}
.x2f{left:42.876000px;}
.x2e{left:64.800000px;}
.x8{left:71.100000px;}
.x2c{left:84.959981px;}
.x1{left:106.415987px;}
.x23{left:117.036000px;}
.x6{left:124.235987px;}
.x1d{left:131.615987px;}
.xa{left:133.415987px;}
.x16{left:137.555987px;}
.x7{left:142.415987px;}
.x15{left:157.349987px;}
.xd{left:160.409987px;}
.xb{left:166.889987px;}
.x13{left:181.109987px;}
.x10{left:187.409987px;}
.xc{left:193.889987px;}
.x11{left:214.409987px;}
.xe{left:217.649987px;}
.xf{left:244.649987px;}
.x27{left:257.430000px;}
.x29{left:267.330000px;}
.x22{left:346.035000px;}
.x25{left:356.115000px;}
.x18{left:368.609987px;}
.x1f{left:385.709987px;}
.x1e{left:390.569987px;}
.x17{left:395.609987px;}
.x28{left:564.045000px;}
.x2a{left:573.945000px;}
.x1c{left:605.729987px;}
.x1a{left:616.529987px;}
.x20{left:626.069987px;}
.x19{left:633.809987px;}
.x1b{left:645.329987px;}
.x12{left:677.084987px;}
.x14{left:756.689987px;}
.x9{left:770.729987px;}
.x4{left:775.049987px;}
.x3{left:779.009987px;}
.x5{left:782.789987px;}
.x2b{left:1119.389981px;}
.x2d{left:1136.309981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.253867pt;}
.ls1d{letter-spacing:-0.205867pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.092267pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.035840pt;}
.ls8{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.136533pt;}
.ls24{letter-spacing:0.155733pt;}
.ls22{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.268800pt;}
.ls4{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.896000pt;}
.lse{letter-spacing:2.368000pt;}
.ls18{letter-spacing:10.688000pt;}
.ls1a{letter-spacing:25.706667pt;}
.ls20{letter-spacing:28.266667pt;}
.ls1c{letter-spacing:39.808000pt;}
.ls16{letter-spacing:45.568000pt;}
.ls1b{letter-spacing:46.208000pt;}
.ls26{letter-spacing:48.746667pt;}
.lsc{letter-spacing:81.088000pt;}
.ls10{letter-spacing:90.543360pt;}
.ls9{letter-spacing:750.314667pt;}
.lsf{letter-spacing:750.346667pt;}
.ls1f{letter-spacing:750.368000pt;}
.ls27{letter-spacing:750.474667pt;}
.ls0{letter-spacing:751.770027pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1{word-spacing:-23.911893pt;}
.ws0{word-spacing:-23.811200pt;}
.ws19{word-spacing:-19.824640pt;}
.ws5{word-spacing:-19.488000pt;}
.ws4{word-spacing:-19.200000pt;}
.wsd{word-spacing:-15.200640pt;}
.wsf{word-spacing:-13.696000pt;}
.ws15{word-spacing:-13.376000pt;}
.wsc{word-spacing:-13.248000pt;}
.ws17{word-spacing:-13.184000pt;}
.ws8{word-spacing:-13.120000pt;}
.wsa{word-spacing:-13.056000pt;}
.wsb{word-spacing:-12.992001pt;}
.ws9{word-spacing:-12.992000pt;}
.ws10{word-spacing:-12.928000pt;}
.wse{word-spacing:-12.864000pt;}
.ws11{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.736000pt;}
.ws16{word-spacing:-12.608000pt;}
.ws7{word-spacing:-11.952640pt;}
.ws3{word-spacing:-11.052160pt;}
.ws1a{word-spacing:-10.939093pt;}
.ws1b{word-spacing:-10.691093pt;}
.ws12{word-spacing:-10.577493pt;}
.ws18{word-spacing:-10.529493pt;}
.ws14{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-12.292907pt;}
._14{margin-left:-10.784000pt;}
._15{margin-left:-9.706729pt;}
._f{margin-left:-8.757333pt;}
._16{margin-left:-7.861333pt;}
._11{margin-left:-6.112000pt;}
._a{margin-left:-3.584000pt;}
._8{margin-left:-1.909333pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.124907pt;}
._1{width:2.283733pt;}
._b{width:3.520000pt;}
._6{width:4.736000pt;}
._7{width:5.888000pt;}
._e{width:7.285333pt;}
._d{width:8.384000pt;}
._1a{width:9.361280pt;}
._9{width:10.304000pt;}
._17{width:11.264000pt;}
._18{width:13.915093pt;}
._19{width:15.113600pt;}
._23{width:16.320000pt;}
._21{width:17.472000pt;}
._22{width:18.432000pt;}
._1c{width:20.074667pt;}
._1d{width:21.034667pt;}
._1b{width:23.030613pt;}
._3{width:23.945387pt;}
._c{width:25.078613pt;}
._1f{width:26.240000pt;}
._20{width:27.576107pt;}
._25{width:29.008427pt;}
._1e{width:30.080000pt;}
._24{width:35.136000pt;}
._4{width:94.927360pt;}
._5{width:96.367360pt;}
._12{width:103.850667pt;}
._10{width:220.970667pt;}
.fs9{font-size:2.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:4.480000pt;}
.y1db{bottom:4.520000pt;}
.y1de{bottom:4.640000pt;}
.y1d5{bottom:7.520000pt;}
.y14d{bottom:9.280000pt;}
.y1ff{bottom:9.760000pt;}
.y1e7{bottom:10.400000pt;}
.y1e3{bottom:10.560000pt;}
.y84{bottom:16.320000pt;}
.y1d8{bottom:17.480000pt;}
.y1cf{bottom:19.520000pt;}
.y204{bottom:20.160000pt;}
.y1ca{bottom:24.000000pt;}
.y1da{bottom:24.040000pt;}
.y1dd{bottom:24.160000pt;}
.y1f7{bottom:30.080000pt;}
.y1c8{bottom:36.160000pt;}
.y1e0{bottom:39.040000pt;}
.y82{bottom:39.200000pt;}
.y201{bottom:39.680000pt;}
.y1fb{bottom:39.840000pt;}
.y24a{bottom:39.880000pt;}
.y1a9{bottom:43.013333pt;}
.y1f9{bottom:43.520000pt;}
.y1e2{bottom:43.680000pt;}
.y1fe{bottom:43.706667pt;}
.y7{bottom:46.720000pt;}
.y1c1{bottom:50.720000pt;}
.y1e5{bottom:55.514667pt;}
.y1a8{bottom:58.373333pt;}
.y1a5{bottom:58.400000pt;}
.y1be{bottom:58.426667pt;}
.y203{bottom:59.200000pt;}
.y14c{bottom:62.880000pt;}
.y202{bottom:63.040000pt;}
.y1fc{bottom:63.226667pt;}
.y5{bottom:65.600000pt;}
.y1c0{bottom:66.080000pt;}
.y2{bottom:67.872000pt;}
.y249{bottom:69.160000pt;}
.y1a7{bottom:73.733333pt;}
.y1e4{bottom:78.752000pt;}
.y1a4{bottom:79.680000pt;}
.y1bd{bottom:79.706667pt;}
.y1bf{bottom:87.360000pt;}
.y16a{bottom:88.352000pt;}
.yc1{bottom:90.912000pt;}
.y187{bottom:91.072000pt;}
.y12c{bottom:93.632000pt;}
.y27{bottom:93.952000pt;}
.y1a6{bottom:95.013333pt;}
.y9e{bottom:96.352000pt;}
.y11d{bottom:98.912000pt;}
.y18e{bottom:99.072000pt;}
.y15a{bottom:101.632000pt;}
.y1bb{bottom:101.792000pt;}
.y18a{bottom:104.352000pt;}
.ydc{bottom:106.912000pt;}
.y23e{bottom:107.072000pt;}
.y1e6{bottom:107.232000pt;}
.y236{bottom:109.632000pt;}
.y10d{bottom:112.352000pt;}
.y20c{bottom:112.992000pt;}
.y181{bottom:113.632000pt;}
.y6c{bottom:114.752000pt;}
.y169{bottom:117.632000pt;}
.y26{bottom:119.232000pt;}
.yf0{bottom:120.192000pt;}
.yc0{bottom:120.352000pt;}
.y14a{bottom:120.520000pt;}
.y12b{bottom:122.912000pt;}
.y1a2{bottom:123.232000pt;}
.y9d{bottom:125.632000pt;}
.y239{bottom:126.752000pt;}
.y11c{bottom:128.352000pt;}
.y245{bottom:130.912000pt;}
.y1ba{bottom:131.072000pt;}
.y13e{bottom:133.626667pt;}
.ydb{bottom:136.186667pt;}
.y22e{bottom:136.346667pt;}
.yfa{bottom:138.906667pt;}
.y10c{bottom:141.626667pt;}
.y180{bottom:142.906667pt;}
.y25{bottom:144.666667pt;}
.y168{bottom:146.906667pt;}
.yef{bottom:149.466667pt;}
.ybf{bottom:149.626667pt;}
.y1df{bottom:149.946667pt;}
.y20b{bottom:151.386667pt;}
.y6b{bottom:152.026667pt;}
.y12a{bottom:152.186667pt;}
.y1a1{bottom:152.506667pt;}
.y9c{bottom:154.906667pt;}
.y14b{bottom:157.626667pt;}
.y244{bottom:160.186667pt;}
.y1b9{bottom:160.346667pt;}
.y190{bottom:160.826667pt;}
.y13d{bottom:162.906667pt;}
.y238{bottom:164.986667pt;}
.yda{bottom:165.466667pt;}
.y11b{bottom:165.626667pt;}
.yf9{bottom:168.186667pt;}
.y159{bottom:168.346667pt;}
.y24{bottom:169.946667pt;}
.y10b{bottom:170.906667pt;}
.y17f{bottom:172.186667pt;}
.y23c{bottom:176.346667pt;}
.y1e1{bottom:178.426667pt;}
.yee{bottom:178.746667pt;}
.y172{bottom:178.906667pt;}
.y20a{bottom:180.666667pt;}
.y129{bottom:181.466667pt;}
.y167{bottom:182.106667pt;}
.y9b{bottom:184.186667pt;}
.ybe{bottom:186.906667pt;}
.y1a0{bottom:187.226667pt;}
.y6a{bottom:189.306667pt;}
.y243{bottom:189.466667pt;}
.y1b8{bottom:189.626667pt;}
.y13c{bottom:192.186667pt;}
.yd9{bottom:194.746667pt;}
.y11a{bottom:194.906667pt;}
.y23{bottom:195.226667pt;}
.y57{bottom:197.466667pt;}
.y235{bottom:197.626667pt;}
.y1dc{bottom:197.946667pt;}
.y10a{bottom:200.186667pt;}
.y6{bottom:200.346667pt;}
.y17e{bottom:201.466667pt;}
.y23d{bottom:202.906667pt;}
.y83{bottom:203.866667pt;}
.y158{bottom:205.626667pt;}
.y21f{bottom:206.106667pt;}
.y1a3{bottom:208.000000pt;}
.yed{bottom:208.186667pt;}
.y186{bottom:208.346667pt;}
.y209{bottom:209.946667pt;}
.y149{bottom:212.186667pt;}
.y9a{bottom:213.466667pt;}
.ybd{bottom:216.186667pt;}
.y18d{bottom:216.346667pt;}
.y128{bottom:216.666667pt;}
.y1b7{bottom:218.906667pt;}
.y22{bottom:220.666667pt;}
.y13b{bottom:221.466667pt;}
.yd8{bottom:224.186667pt;}
.y19f{bottom:225.786667pt;}
.y56{bottom:226.746667pt;}
.y234{bottom:226.906667pt;}
.y109{bottom:229.466667pt;}
.y119{bottom:232.186667pt;}
.yf8{bottom:232.666667pt;}
.y157{bottom:234.906667pt;}
.y248{bottom:235.066667pt;}
.y21e{bottom:235.386667pt;}
.y17d{bottom:236.666667pt;}
.yec{bottom:237.466667pt;}
.y185{bottom:237.626667pt;}
.y208{bottom:239.226667pt;}
.y1d7{bottom:240.826667pt;}
.y99{bottom:242.746667pt;}
.ybc{bottom:245.466667pt;}
.y18c{bottom:245.626667pt;}
.y21{bottom:245.946667pt;}
.y1d9{bottom:247.706667pt;}
.y1b6{bottom:248.186667pt;}
.y189{bottom:250.786667pt;}
.yd7{bottom:253.506667pt;}
.y192{bottom:253.666667pt;}
.y55{bottom:256.226667pt;}
.y13a{bottom:256.866667pt;}
.y146{bottom:258.786667pt;}
.y118{bottom:261.506667pt;}
.y69{bottom:264.066667pt;}
.y127{bottom:264.226667pt;}
.y21d{bottom:264.706667pt;}
.y108{bottom:264.866667pt;}
.y171{bottom:266.786667pt;}
.y184{bottom:266.946667pt;}
.y1d6{bottom:267.266667pt;}
.y207{bottom:268.546667pt;}
.y20{bottom:271.266667pt;}
.y98{bottom:272.226667pt;}
.yeb{bottom:272.706667pt;}
.ybb{bottom:274.786667pt;}
.y18b{bottom:274.946667pt;}
.y1b5{bottom:277.506667pt;}
.yf7{bottom:280.226667pt;}
.y17c{bottom:281.666667pt;}
.yd6{bottom:282.786667pt;}
.y191{bottom:282.946667pt;}
.y4{bottom:283.266667pt;}
.y80{bottom:285.346667pt;}
.y54{bottom:285.506667pt;}
.y227{bottom:288.066667pt;}
.y145{bottom:288.226667pt;}
.y1d4{bottom:290.466667pt;}
.y165{bottom:290.786667pt;}
.y81{bottom:293.186667pt;}
.y126{bottom:293.506667pt;}
.y21c{bottom:294.146667pt;}
.y170{bottom:296.226667pt;}
.y1f{bottom:296.706667pt;}
.y206{bottom:297.826667pt;}
.y117{bottom:298.786667pt;}
.y68{bottom:301.346667pt;}
.y156{bottom:301.506667pt;}
.yba{bottom:304.066667pt;}
.y139{bottom:304.226667pt;}
.y1d3{bottom:307.106667pt;}
.y97{bottom:309.506667pt;}
.y14f{bottom:312.066667pt;}
.y107{bottom:312.226667pt;}
.y53{bottom:314.786667pt;}
.y144{bottom:317.506667pt;}
.yd5{bottom:317.986667pt;}
.y164{bottom:320.066667pt;}
.y1e{bottom:321.986667pt;}
.y7f{bottom:322.626667pt;}
.y125{bottom:322.786667pt;}
.y21b{bottom:323.426667pt;}
.y226{bottom:325.346667pt;}
.y16f{bottom:325.506667pt;}
.y205{bottom:327.106667pt;}
.y116{bottom:328.066667pt;}
.y1d2{bottom:330.306667pt;}
.yb9{bottom:333.346667pt;}
.y138{bottom:333.506667pt;}
.y67{bottom:338.626667pt;}
.y96{bottom:338.786667pt;}
.y1d1{bottom:339.266667pt;}
.y14e{bottom:341.346667pt;}
.y106{bottom:341.506667pt;}
.y247{bottom:344.066667pt;}
.y1b4{bottom:344.226667pt;}
.y143{bottom:346.786667pt;}
.y1d{bottom:347.266667pt;}
.y163{bottom:349.346667pt;}
.y200{bottom:350.946667pt;}
.y52{bottom:352.066667pt;}
.y21a{bottom:352.706667pt;}
.y225{bottom:354.626667pt;}
.yea{bottom:354.786667pt;}
.y7e{bottom:359.906667pt;}
.y19e{bottom:360.066667pt;}
.y1ce{bottom:362.466667pt;}
.y137{bottom:362.786667pt;}
.yd4{bottom:365.346667pt;}
.y95{bottom:368.066667pt;}
.yb8{bottom:370.626667pt;}
.y105{bottom:370.786667pt;}
.y1d0{bottom:371.426667pt;}
.y1c{bottom:372.706667pt;}
.y66{bottom:375.906667pt;}
.y142{bottom:376.066667pt;}
.y162{bottom:378.626667pt;}
.y22d{bottom:378.786667pt;}
.y51{bottom:381.346667pt;}
.y1b3{bottom:381.506667pt;}
.y224{bottom:383.906667pt;}
.ye9{bottom:384.066667pt;}
.y19d{bottom:389.346667pt;}
.y219{bottom:389.986667pt;}
.y1cd{bottom:390.946667pt;}
.y136{bottom:392.066667pt;}
.yd3{bottom:394.626667pt;}
.y7d{bottom:397.346667pt;}
.y1b{bottom:397.986667pt;}
.y3e{bottom:399.906667pt;}
.y104{bottom:400.066667pt;}
.y115{bottom:402.626667pt;}
.y155{bottom:405.346667pt;}
.y22c{bottom:408.066667pt;}
.y50{bottom:410.626667pt;}
.y141{bottom:411.266667pt;}
.y65{bottom:413.186667pt;}
.ye8{bottom:413.346667pt;}
.y1cc{bottom:414.146667pt;}
.y161{bottom:415.906667pt;}
.y19c{bottom:418.626667pt;}
.y1b2{bottom:418.786667pt;}
.y218{bottom:419.266667pt;}
.y3d{bottom:419.426667pt;}
.y135{bottom:421.346667pt;}
.y1cb{bottom:423.106667pt;}
.y1a{bottom:423.266667pt;}
.yd2{bottom:423.906667pt;}
.y94{bottom:426.626667pt;}
.yb7{bottom:429.346667pt;}
.y114{bottom:431.906667pt;}
.y7c{bottom:434.626667pt;}
.y22b{bottom:437.346667pt;}
.y4f{bottom:439.906667pt;}
.y1fa{bottom:441.666667pt;}
.ye7{bottom:442.626667pt;}
.y3c{bottom:442.946667pt;}
.y160{bottom:445.346667pt;}
.y1c7{bottom:446.306667pt;}
.y19b{bottom:447.906667pt;}
.y217{bottom:448.546667pt;}
.y19{bottom:448.706667pt;}
.y64{bottom:450.466667pt;}
.y134{bottom:450.626667pt;}
.yd1{bottom:453.346667pt;}
.y1c9{bottom:455.426667pt;}
.y93{bottom:455.906667pt;}
.y1b1{bottom:456.226667pt;}
.yb6{bottom:458.626667pt;}
.y1fd{bottom:460.386667pt;}
.y154{bottom:463.906667pt;}
.y3b{bottom:464.226667pt;}
.y22a{bottom:466.626667pt;}
.y4e{bottom:469.186667pt;}
.y113{bottom:469.346667pt;}
.y7b{bottom:471.906667pt;}
.y18{bottom:473.986667pt;}
.y15f{bottom:474.626667pt;}
.y124{bottom:477.186667pt;}
.y233{bottom:477.346667pt;}
.y216{bottom:477.826667pt;}
.y133{bottom:479.906667pt;}
.yd0{bottom:482.626667pt;}
.yf6{bottom:485.186667pt;}
.y3a{bottom:485.346667pt;}
.y63{bottom:487.746667pt;}
.yb5{bottom:487.906667pt;}
.y92{bottom:493.186667pt;}
.y153{bottom:493.346667pt;}
.y1b0{bottom:493.506667pt;}
.y229{bottom:495.906667pt;}
.y1c6{bottom:498.146667pt;}
.y4d{bottom:498.466667pt;}
.y112{bottom:498.626667pt;}
.y17{bottom:499.266667pt;}
.ye6{bottom:501.186667pt;}
.y123{bottom:506.493333pt;}
.y232{bottom:506.653333pt;}
.y1c5{bottom:507.133333pt;}
.y7a{bottom:509.213333pt;}
.y132{bottom:509.373333pt;}
.y39{bottom:510.653333pt;}
.ycf{bottom:511.933333pt;}
.yf5{bottom:514.493333pt;}
.y246{bottom:514.653333pt;}
.yb4{bottom:517.213333pt;}
.y103{bottom:517.373333pt;}
.y91{bottom:522.493333pt;}
.y152{bottom:522.653333pt;}
.y1af{bottom:522.813333pt;}
.y16{bottom:524.733333pt;}
.y62{bottom:525.053333pt;}
.y111{bottom:527.933333pt;}
.y1c3{bottom:530.333333pt;}
.ye5{bottom:530.493333pt;}
.y228{bottom:530.653333pt;}
.y1f6{bottom:532.413333pt;}
.y38{bottom:535.933333pt;}
.y215{bottom:536.413333pt;}
.y16e{bottom:536.573333pt;}
.y197{bottom:538.493333pt;}
.y131{bottom:538.653333pt;}
.yce{bottom:541.213333pt;}
.y1f8{bottom:541.533333pt;}
.yf4{bottom:543.933333pt;}
.y79{bottom:546.493333pt;}
.y102{bottom:546.653333pt;}
.y15{bottom:550.013333pt;}
.y90{bottom:551.933333pt;}
.y1ae{bottom:552.093333pt;}
.ye4{bottom:559.933333pt;}
.y37{bottom:561.373333pt;}
.y61{bottom:562.493333pt;}
.y4c{bottom:565.213333pt;}
.y214{bottom:565.693333pt;}
.y130{bottom:567.933333pt;}
.y1c2{bottom:570.333333pt;}
.ycd{bottom:570.493333pt;}
.y231{bottom:573.213333pt;}
.y14{bottom:575.293333pt;}
.yb3{bottom:575.773333pt;}
.y101{bottom:575.933333pt;}
.y15e{bottom:578.493333pt;}
.y8f{bottom:581.213333pt;}
.y1ad{bottom:581.373333pt;}
.y78{bottom:583.773333pt;}
.y16d{bottom:583.933333pt;}
.y36{bottom:586.653333pt;}
.y193{bottom:587.133333pt;}
.ye3{bottom:589.213333pt;}
.y4b{bottom:594.493333pt;}
.y213{bottom:595.133333pt;}
.y183{bottom:597.213333pt;}
.y60{bottom:599.773333pt;}
.y19a{bottom:600.413333pt;}
.y13{bottom:600.733333pt;}
.y110{bottom:602.493333pt;}
.y1f5{bottom:603.773333pt;}
.yb2{bottom:605.053333pt;}
.y100{bottom:605.213333pt;}
.y8e{bottom:610.493333pt;}
.y1ac{bottom:610.653333pt;}
.y35{bottom:611.933333pt;}
.y16c{bottom:613.213333pt;}
.y15d{bottom:615.773333pt;}
.ye2{bottom:618.493333pt;}
.y77{bottom:621.053333pt;}
.y4a{bottom:623.773333pt;}
.y212{bottom:624.253333pt;}
.y12{bottom:626.013333pt;}
.y182{bottom:626.493333pt;}
.ycc{bottom:629.053333pt;}
.y10f{bottom:631.773333pt;}
.yb1{bottom:634.333333pt;}
.yff{bottom:634.493333pt;}
.y5f{bottom:637.053333pt;}
.y34{bottom:637.373333pt;}
.y8d{bottom:639.773333pt;}
.y223{bottom:642.333333pt;}
.y16b{bottom:642.493333pt;}
.y15c{bottom:645.053333pt;}
.y1ab{bottom:645.533333pt;}
.y188{bottom:645.693333pt;}
.ye1{bottom:647.773333pt;}
.y49{bottom:653.053333pt;}
.y151{bottom:655.773333pt;}
.y76{bottom:658.333333pt;}
.y122{bottom:658.973333pt;}
.y242{bottom:661.053333pt;}
.y33{bottom:662.653333pt;}
.y1f4{bottom:663.293333pt;}
.yb0{bottom:663.613333pt;}
.yfe{bottom:663.773333pt;}
.y1bc{bottom:666.240000pt;}
.y8c{bottom:669.053333pt;}
.y11{bottom:671.613333pt;}
.y140{bottom:671.773333pt;}
.y5e{bottom:674.333333pt;}
.y166{bottom:674.973333pt;}
.ye0{bottom:677.053333pt;}
.y48{bottom:682.333333pt;}
.y1aa{bottom:684.093333pt;}
.y150{bottom:685.053333pt;}
.ycb{bottom:687.613333pt;}
.y32{bottom:687.933333pt;}
.y241{bottom:690.333333pt;}
.y211{bottom:692.093333pt;}
.yaf{bottom:693.053333pt;}
.y10{bottom:693.373333pt;}
.y75{bottom:695.613333pt;}
.y8b{bottom:698.333333pt;}
.y13f{bottom:701.053333pt;}
.y15b{bottom:703.613333pt;}
.y1f3{bottom:706.173333pt;}
.ydf{bottom:706.333333pt;}
.y47{bottom:711.613333pt;}
.y31{bottom:713.373333pt;}
.y198{bottom:714.333333pt;}
.yca{bottom:717.053333pt;}
.y210{bottom:721.373333pt;}
.y12f{bottom:722.333333pt;}
.y237{bottom:724.320000pt;}
.y17b{bottom:725.053333pt;}
.y8a{bottom:727.613333pt;}
.yae{bottom:730.333333pt;}
.y74{bottom:733.053333pt;}
.y1f2{bottom:735.453333pt;}
.yde{bottom:735.613333pt;}
.y30{bottom:738.653333pt;}
.y10e{bottom:743.613333pt;}
.yc9{bottom:746.333333pt;}
.yf{bottom:746.653333pt;}
.y46{bottom:748.893333pt;}
.y20f{bottom:750.653333pt;}
.y12e{bottom:751.613333pt;}
.y17a{bottom:754.373333pt;}
.y240{bottom:756.933333pt;}
.y230{bottom:757.093333pt;}
.yad{bottom:759.653333pt;}
.y2f{bottom:763.973333pt;}
.y1f1{bottom:764.773333pt;}
.y89{bottom:764.933333pt;}
.y121{bottom:765.093333pt;}
.y73{bottom:770.373333pt;}
.ya5{bottom:773.093333pt;}
.yc8{bottom:775.653333pt;}
.y45{bottom:778.213333pt;}
.y20e{bottom:779.973333pt;}
.y196{bottom:780.933333pt;}
.y12d{bottom:781.093333pt;}
.y179{bottom:783.653333pt;}
.y5d{bottom:786.213333pt;}
.yac{bottom:788.933333pt;}
.yfd{bottom:789.093333pt;}
.y2e{bottom:789.413333pt;}
.y1f0{bottom:794.053333pt;}
.y88{bottom:794.213333pt;}
.y199{bottom:794.373333pt;}
.ye{bottom:799.973333pt;}
.y18f{bottom:800.293333pt;}
.y120{bottom:802.373333pt;}
.yc7{bottom:804.933333pt;}
.y44{bottom:807.493333pt;}
.y72{bottom:807.653333pt;}
.y20d{bottom:809.253333pt;}
.y195{bottom:810.213333pt;}
.ya4{bottom:810.373333pt;}
.y178{bottom:812.933333pt;}
.y2d{bottom:814.693333pt;}
.y23f{bottom:815.493333pt;}
.yab{bottom:818.213333pt;}
.yfc{bottom:818.373333pt;}
.y1ef{bottom:823.333333pt;}
.y5c{bottom:823.493333pt;}
.y22f{bottom:823.653333pt;}
.yf3{bottom:829.573333pt;}
.y11f{bottom:831.653333pt;}
.yc6{bottom:834.213333pt;}
.y43{bottom:836.933333pt;}
.y194{bottom:839.493333pt;}
.ya3{bottom:839.653333pt;}
.y2c{bottom:840.293333pt;}
.y177{bottom:842.213333pt;}
.y71{bottom:844.933333pt;}
.yaa{bottom:847.493333pt;}
.yfb{bottom:847.653333pt;}
.y1ee{bottom:852.613333pt;}
.y87{bottom:852.933333pt;}
.yd{bottom:853.253333pt;}
.y5b{bottom:860.773333pt;}
.y11e{bottom:860.933333pt;}
.yc5{bottom:863.493333pt;}
.y2b{bottom:865.413333pt;}
.y42{bottom:866.213333pt;}
.ya2{bottom:868.933333pt;}
.y176{bottom:871.493333pt;}
.ya9{bottom:876.773333pt;}
.yf2{bottom:876.933333pt;}
.y1ed{bottom:881.893333pt;}
.y70{bottom:882.213333pt;}
.ydd{bottom:888.133333pt;}
.y23b{bottom:890.213333pt;}
.y2a{bottom:890.693333pt;}
.yc4{bottom:892.773333pt;}
.y41{bottom:895.493333pt;}
.y5a{bottom:898.053333pt;}
.ya1{bottom:898.213333pt;}
.y175{bottom:900.773333pt;}
.y1eb{bottom:905.733333pt;}
.ya8{bottom:906.053333pt;}
.yf1{bottom:906.213333pt;}
.yc{bottom:906.533333pt;}
.y86{bottom:911.493333pt;}
.y1ec{bottom:914.693333pt;}
.y29{bottom:915.973333pt;}
.y222{bottom:918.053333pt;}
.y6f{bottom:919.493333pt;}
.yc3{bottom:922.053333pt;}
.y40{bottom:924.773333pt;}
.ya0{bottom:927.493333pt;}
.y174{bottom:930.053333pt;}
.y1ea{bottom:934.213333pt;}
.y59{bottom:935.493333pt;}
.yb{bottom:935.973333pt;}
.y148{bottom:937.573333pt;}
.y85{bottom:940.773333pt;}
.y28{bottom:941.413333pt;}
.y221{bottom:956.293333pt;}
.y6e{bottom:956.773333pt;}
.ya7{bottom:957.093333pt;}
.yc2{bottom:957.413333pt;}
.y173{bottom:959.493333pt;}
.y9f{bottom:964.773333pt;}
.y1e9{bottom:966.373333pt;}
.ya{bottom:966.693333pt;}
.y220{bottom:974.533333pt;}
.y147{bottom:975.813333pt;}
.y3f{bottom:975.973333pt;}
.y1e8{bottom:985.893333pt;}
.y23a{bottom:986.053333pt;}
.y58{bottom:987.653333pt;}
.y3{bottom:987.973333pt;}
.y9{bottom:991.973333pt;}
.y6d{bottom:994.053333pt;}
.ya6{bottom:995.333333pt;}
.y8{bottom:1053.120000pt;}
.y1{bottom:1053.280000pt;}
.h1a{height:2.218750pt;}
.h1f{height:2.222500pt;}
.h18{height:19.520000pt;}
.h26{height:19.552000pt;}
.h1d{height:31.520000pt;}
.h19{height:31.552000pt;}
.h2{height:36.883125pt;}
.h1c{height:39.040000pt;}
.h21{height:39.072000pt;}
.h22{height:39.200000pt;}
.h17{height:43.065000pt;}
.h12{height:43.840000pt;}
.h3{height:44.437500pt;}
.h9{height:46.039063pt;}
.hd{height:46.593750pt;}
.h20{height:48.992000pt;}
.h4{height:51.031250pt;}
.h1e{height:51.040000pt;}
.h27{height:51.072000pt;}
.hb{height:51.117500pt;}
.h1b{height:51.200000pt;}
.h13{height:55.312500pt;}
.hc{height:55.468750pt;}
.hf{height:55.562500pt;}
.h29{height:58.560000pt;}
.h24{height:58.720000pt;}
.h2c{height:58.752000pt;}
.he{height:65.008125pt;}
.h7{height:66.752000pt;}
.h25{height:70.560000pt;}
.h28{height:70.720000pt;}
.h8{height:73.773438pt;}
.h2d{height:78.080000pt;}
.h2b{height:78.272000pt;}
.ha{height:83.343750pt;}
.h30{height:84.192000pt;}
.h10{height:84.320000pt;}
.h23{height:90.080000pt;}
.h2a{height:90.112000pt;}
.h15{height:90.400000pt;}
.h5{height:93.120000pt;}
.h6{height:101.507812pt;}
.h16{height:129.920000pt;}
.h14{height:165.626667pt;}
.h11{height:166.687500pt;}
.h2e{height:793.760000pt;}
.h2f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:114.240000pt;}
.wb{width:128.320000pt;}
.w8{width:129.600000pt;}
.w15{width:132.800000pt;}
.w12{width:144.800000pt;}
.w14{width:160.506667pt;}
.w11{width:172.346667pt;}
.w13{width:178.906667pt;}
.w19{width:180.026667pt;}
.we{width:191.226667pt;}
.w10{width:194.106667pt;}
.w17{width:197.786667pt;}
.w9{width:206.106667pt;}
.w6{width:211.706667pt;}
.wf{width:243.066667pt;}
.w18{width:254.146667pt;}
.w16{width:271.906667pt;}
.wc{width:311.746667pt;}
.wa{width:363.106667pt;}
.w7{width:381.026667pt;}
.w5{width:499.133333pt;}
.w4{width:575.133333pt;}
.w3{width:654.493333pt;}
.w1d{width:736.160000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1c{width:1122.559983pt;}
.w1a{width:1122.560000pt;}
.w1b{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x24{left:1.120000pt;}
.x21{left:6.880000pt;}
.x2{left:9.600000pt;}
.x26{left:10.720000pt;}
.x2f{left:38.112000pt;}
.x2e{left:57.600000pt;}
.x8{left:63.200000pt;}
.x2c{left:75.519983pt;}
.x1{left:94.591988pt;}
.x23{left:104.032000pt;}
.x6{left:110.431988pt;}
.x1d{left:116.991988pt;}
.xa{left:118.591988pt;}
.x16{left:122.271988pt;}
.x7{left:126.591988pt;}
.x15{left:139.866655pt;}
.xd{left:142.586655pt;}
.xb{left:148.346655pt;}
.x13{left:160.986655pt;}
.x10{left:166.586655pt;}
.xc{left:172.346655pt;}
.x11{left:190.586655pt;}
.xe{left:193.466655pt;}
.xf{left:217.466655pt;}
.x27{left:228.826667pt;}
.x29{left:237.626667pt;}
.x22{left:307.586667pt;}
.x25{left:316.546667pt;}
.x18{left:327.653322pt;}
.x1f{left:342.853322pt;}
.x1e{left:347.173322pt;}
.x17{left:351.653322pt;}
.x28{left:501.373333pt;}
.x2a{left:510.173333pt;}
.x1c{left:538.426655pt;}
.x1a{left:548.026655pt;}
.x20{left:556.506655pt;}
.x19{left:563.386655pt;}
.x1b{left:573.626655pt;}
.x12{left:601.853322pt;}
.x14{left:672.613322pt;}
.x9{left:685.093322pt;}
.x4{left:688.933322pt;}
.x3{left:692.453322pt;}
.x5{left:695.813322pt;}
.x2b{left:995.013317pt;}
.x2d{left:1010.053317pt;}
}




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