
    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_394e8f42297085a9b1ab9d24.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_3e70b167a3a20391e8047ac4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_2b7629d88c09a01a0bd685e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.806641;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_bdefe5cee1b335e32b12cff0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_516fce3e9a1ab6aa252352a1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4ce7b47609f1738e8b950c7b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5bae84a707a8eef1c5189f7b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_30cad950b051f5b28cfb6999.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5468b656e9cd9f58d2ecad78.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743652;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_915d243646e8d5c64bcd65a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.728516;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-2.088000px;}
.ls5{letter-spacing:-1.296000px;}
.lse{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.354240px;}
.lsa{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.516000px;}
.ls15{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.869760px;}
.ls10{letter-spacing:0.900000px;}
.ls21{letter-spacing:2.160000px;}
.ls13{letter-spacing:3.600000px;}
.ls11{letter-spacing:7.344000px;}
.ls16{letter-spacing:10.224000px;}
.ls18{letter-spacing:10.800000px;}
.ls1f{letter-spacing:12.240000px;}
.ls20{letter-spacing:13.680000px;}
.ls12{letter-spacing:18.864000px;}
.ls22{letter-spacing:27.516000px;}
.ls7{letter-spacing:33.264000px;}
.lsb{letter-spacing:33.276000px;}
.ls0{letter-spacing:40.625280px;}
.lsc{letter-spacing:49.116000px;}
.ls14{letter-spacing:62.076000px;}
.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;}
}
.ws1{word-spacing:-119.520000px;}
.wsb{word-spacing:-96.480000px;}
.ws9{word-spacing:-72.000000px;}
.wsd{word-spacing:-27.947760px;}
.ws2{word-spacing:-23.425920px;}
.ws8{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.254600px;}
.ws7{word-spacing:-14.506440px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-11.946720px;}
._23{margin-left:-7.980000px;}
._16{margin-left:-5.535360px;}
._7{margin-left:-4.366560px;}
._6{margin-left:-3.230880px;}
._5{margin-left:-2.162880px;}
._0{margin-left:-1.008000px;}
._4{width:1.002720px;}
._1{width:2.004000px;}
._f{width:3.056640px;}
._c{width:4.161120px;}
._b{width:5.690880px;}
._d{width:7.202880px;}
._10{width:9.144000px;}
._e{width:10.463040px;}
._2{width:11.712960px;}
._3{width:13.414080px;}
._8{width:14.452800px;}
._14{width:16.056000px;}
._9{width:19.944000px;}
._a{width:21.029280px;}
._11{width:22.104000px;}
._12{width:23.176320px;}
._17{width:24.984000px;}
._1a{width:26.063040px;}
._1c{width:27.292800px;}
._1f{width:28.582560px;}
._1b{width:29.965920px;}
._1e{width:30.967200px;}
._15{width:32.184000px;}
._13{width:33.984000px;}
._18{width:38.880000px;}
._19{width:40.033440px;}
._21{width:52.712160px;}
._22{width:53.784000px;}
._20{width:54.792000px;}
.fc3{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc1{color:rgb(83,129,53);}
.fc5{color:rgb(1,2,5);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:83.664000px;}
.fs6{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y1f7{bottom:0.825000px;}
.y1ed{bottom:2.595000px;}
.y1f3{bottom:3.996000px;}
.y1e4{bottom:4.035000px;}
.y1e1{bottom:4.065000px;}
.y1ef{bottom:4.350000px;}
.y1f5{bottom:4.356000px;}
.y1e6{bottom:4.395000px;}
.y1f1{bottom:4.710000px;}
.y118{bottom:5.250000px;}
.y11b{bottom:5.610000px;}
.y115{bottom:5.655000px;}
.y122{bottom:6.015000px;}
.ya5{bottom:6.840000px;}
.ye{bottom:7.200000px;}
.y119{bottom:7.410000px;}
.y11c{bottom:7.770000px;}
.y116{bottom:7.815000px;}
.y123{bottom:8.175000px;}
.y10b{bottom:9.255000px;}
.y10f{bottom:9.570000px;}
.y10d{bottom:9.615000px;}
.y113{bottom:9.930000px;}
.y151{bottom:12.645000px;}
.y180{bottom:14.430000px;}
.y1bc{bottom:14.760000px;}
.y1bf{bottom:14.805000px;}
.y9e{bottom:15.120000px;}
.y17c{bottom:18.720000px;}
.y17e{bottom:20.520000px;}
.y145{bottom:21.600000px;}
.y19a{bottom:21.630000px;}
.y143{bottom:21.960000px;}
.y1a0{bottom:21.990000px;}
.y19c{bottom:22.005000px;}
.ya4{bottom:27.720000px;}
.yb0{bottom:28.080000px;}
.y147{bottom:30.600000px;}
.y149{bottom:30.960000px;}
.y14d{bottom:30.990000px;}
.y196{bottom:32.445000px;}
.yd{bottom:42.840000px;}
.y9d{bottom:46.080000px;}
.y141{bottom:47.160000px;}
.yb2{bottom:48.240000px;}
.yaf{bottom:48.600000px;}
.yb5{bottom:48.630000px;}
.yab{bottom:48.645000px;}
.ya3{bottom:48.960000px;}
.ya{bottom:56.880000px;}
.y195{bottom:58.005000px;}
.ya8{bottom:65.925000px;}
.yad{bottom:69.120000px;}
.yae{bottom:69.480000px;}
.ya2{bottom:69.510000px;}
.yaa{bottom:69.525000px;}
.yc{bottom:78.120000px;}
.y9{bottom:79.956000px;}
.ya7{bottom:89.685000px;}
.yb4{bottom:90.030000px;}
.ya9{bottom:90.045000px;}
.ya1{bottom:90.390000px;}
.y9f{bottom:110.550000px;}
.ya0{bottom:110.910000px;}
.y1df{bottom:112.716000px;}
.yd6{bottom:114.156000px;}
.y220{bottom:114.516000px;}
.y20f{bottom:118.836000px;}
.yc1{bottom:119.196000px;}
.y17a{bottom:122.076000px;}
.y194{bottom:122.436000px;}
.y1af{bottom:123.516000px;}
.y1f4{bottom:124.200000px;}
.y109{bottom:124.596000px;}
.y67{bottom:129.636000px;}
.y13e{bottom:132.516000px;}
.yf0{bottom:134.316000px;}
.y83{bottom:136.836000px;}
.y1c9{bottom:141.876000px;}
.y1f2{bottom:144.000000px;}
.yd5{bottom:144.036000px;}
.y21f{bottom:144.396000px;}
.y36{bottom:145.116000px;}
.y15d{bottom:147.636000px;}
.y20e{bottom:148.356000px;}
.yc0{bottom:149.076000px;}
.y179{bottom:153.390000px;}
.y108{bottom:154.110000px;}
.y1ae{bottom:156.630000px;}
.y66{bottom:160.590000px;}
.y9a{bottom:161.310000px;}
.y193{bottom:162.030000px;}
.y1f0{bottom:162.360000px;}
.y13d{bottom:163.470000px;}
.yef{bottom:164.190000px;}
.y82{bottom:167.790000px;}
.y227{bottom:169.950000px;}
.y1c8{bottom:173.550000px;}
.y21e{bottom:174.270000px;}
.ybf{bottom:178.590000px;}
.y15c{bottom:180.750000px;}
.y1ee{bottom:181.800000px;}
.y178{bottom:184.350000px;}
.yd4{bottom:187.950000px;}
.y1ad{bottom:189.750000px;}
.y35{bottom:191.550000px;}
.y55{bottom:193.710000px;}
.y13c{bottom:194.430000px;}
.y107{bottom:195.870000px;}
.y81{bottom:198.795000px;}
.y226{bottom:199.515000px;}
.y1eb{bottom:201.240000px;}
.y1ec{bottom:201.600000px;}
.y192{bottom:202.035000px;}
.y15b{bottom:202.755000px;}
.y20d{bottom:203.835000px;}
.y1c7{bottom:204.195000px;}
.y99{bottom:204.555000px;}
.ybe{bottom:208.515000px;}
.y177{bottom:215.355000px;}
.yd3{bottom:218.955000px;}
.y1ea{bottom:220.320000px;}
.y65{bottom:222.915000px;}
.yee{bottom:223.635000px;}
.y54{bottom:223.995000px;}
.y15a{bottom:224.715000px;}
.y13b{bottom:225.435000px;}
.y106{bottom:225.795000px;}
.y225{bottom:229.395000px;}
.y80{bottom:229.755000px;}
.y20c{bottom:233.715000px;}
.y1c6{bottom:234.075000px;}
.y98{bottom:235.875000px;}
.y34{bottom:237.675000px;}
.y1e9{bottom:239.040000px;}
.y191{bottom:241.635000px;}
.y176{bottom:246.315000px;}
.y159{bottom:247.035000px;}
.yd2{bottom:249.915000px;}
.ybd{bottom:251.355000px;}
.yed{bottom:253.515000px;}
.y64{bottom:253.875000px;}
.y53{bottom:254.235000px;}
.y105{bottom:255.675000px;}
.y1e8{bottom:258.120000px;}
.y33{bottom:258.915000px;}
.y21d{bottom:259.275000px;}
.y20b{bottom:263.235000px;}
.y13a{bottom:265.395000px;}
.y97{bottom:268.275000px;}
.y158{bottom:268.995000px;}
.y1c5{bottom:273.315000px;}
.y1e7{bottom:277.560000px;}
.y175{bottom:277.635000px;}
.y32{bottom:279.435000px;}
.ybc{bottom:280.875000px;}
.y190{bottom:281.595000px;}
.y52{bottom:284.835000px;}
.y7f{bottom:285.195000px;}
.yec{bottom:287.355000px;}
.y104{bottom:288.795000px;}
.y21c{bottom:289.155000px;}
.y157{bottom:291.315000px;}
.y20a{bottom:293.115000px;}
.y1c4{bottom:295.275000px;}
.y1e5{bottom:296.280000px;}
.y31{bottom:300.315000px;}
.ybb{bottom:310.755000px;}
.yd1{bottom:312.195000px;}
.y7e{bottom:315.075000px;}
.y1e3{bottom:315.720000px;}
.y156{bottom:316.155000px;}
.yeb{bottom:317.235000px;}
.y21b{bottom:318.675000px;}
.y30{bottom:320.835000px;}
.y18f{bottom:321.195000px;}
.y209{bottom:322.995000px;}
.y1f6{bottom:327.960000px;}
.y103{bottom:328.425000px;}
.y1ac{bottom:329.865000px;}
.y96{bottom:331.665000px;}
.y174{bottom:332.745000px;}
.y1e2{bottom:335.160000px;}
.y1c3{bottom:339.225000px;}
.y51{bottom:339.945000px;}
.y63{bottom:340.305000px;}
.y2f{bottom:341.745000px;}
.y139{bottom:342.825000px;}
.yd0{bottom:343.185000px;}
.y7d{bottom:344.625000px;}
.y155{bottom:345.345000px;}
.yea{bottom:347.145000px;}
.yba{bottom:350.385000px;}
.y208{bottom:352.545000px;}
.y102{bottom:358.305000px;}
.y18e{bottom:360.825000px;}
.y1c2{bottom:361.185000px;}
.y1ab{bottom:361.905000px;}
.y2e{bottom:362.265000px;}
.y173{bottom:362.625000px;}
.y1e0{bottom:366.120000px;}
.y154{bottom:367.305000px;}
.y50{bottom:369.825000px;}
.y62{bottom:370.185000px;}
.y138{bottom:372.705000px;}
.ycf{bottom:374.145000px;}
.y7c{bottom:374.505000px;}
.ye9{bottom:376.665000px;}
.yb9{bottom:380.265000px;}
.y207{bottom:382.425000px;}
.y2d{bottom:383.145000px;}
.y1aa{bottom:385.305000px;}
.y95{bottom:387.825000px;}
.y153{bottom:389.625000px;}
.y172{bottom:392.505000px;}
.y1c1{bottom:395.745000px;}
.y4f{bottom:399.705000px;}
.y18d{bottom:400.785000px;}
.y101{bottom:401.865000px;}
.y137{bottom:402.225000px;}
.y2c{bottom:403.665000px;}
.y21a{bottom:404.025000px;}
.y7b{bottom:404.385000px;}
.yce{bottom:405.105000px;}
.ye8{bottom:406.545000px;}
.y1a9{bottom:408.705000px;}
.yb8{bottom:410.145000px;}
.y206{bottom:412.305000px;}
.y94{bottom:417.705000px;}
.y171{bottom:422.025000px;}
.y2b{bottom:424.545000px;}
.y1de{bottom:428.145000px;}
.y152{bottom:428.865000px;}
.y4e{bottom:429.225000px;}
.y61{bottom:429.585000px;}
.y1c0{bottom:429.945000px;}
.y100{bottom:431.745000px;}
.y136{bottom:432.105000px;}
.y219{bottom:433.545000px;}
.y7a{bottom:433.905000px;}
.ycd{bottom:436.425000px;}
.y18c{bottom:440.385000px;}
.y205{bottom:441.825000px;}
.y150{bottom:446.505000px;}
.y93{bottom:447.585000px;}
.y170{bottom:451.950000px;}
.y1a8{bottom:455.550000px;}
.y1dd{bottom:458.070000px;}
.y4d{bottom:459.150000px;}
.y135{bottom:462.030000px;}
.y2a{bottom:463.110000px;}
.y218{bottom:463.470000px;}
.y79{bottom:463.830000px;}
.yb7{bottom:465.270000px;}
.ye7{bottom:467.430000px;}
.y204{bottom:471.750000px;}
.yff{bottom:476.070000px;}
.y14f{bottom:476.790000px;}
.y92{bottom:477.150000px;}
.y1a7{bottom:478.950000px;}
.ycc{bottom:480.030000px;}
.y16f{bottom:481.830000px;}
.y29{bottom:486.150000px;}
.y1dc{bottom:487.950000px;}
.y4c{bottom:489.030000px;}
.y23e{bottom:490.830000px;}
.y134{bottom:491.550000px;}
.y224{bottom:492.990000px;}
.y217{bottom:493.350000px;}
.y78{bottom:493.710000px;}
.ye6{bottom:498.390000px;}
.y203{bottom:501.630000px;}
.y1a6{bottom:502.350000px;}
.yfe{bottom:505.950000px;}
.y28{bottom:507.030000px;}
.yb6{bottom:511.350000px;}
.y1be{bottom:512.790000px;}
.y23d{bottom:514.590000px;}
.y4b{bottom:518.550000px;}
.y60{bottom:518.910000px;}
.y18b{bottom:519.990000px;}
.y216{bottom:522.870000px;}
.y77{bottom:523.230000px;}
.y14e{bottom:525.030000px;}
.y1a5{bottom:525.750000px;}
.y27{bottom:527.910000px;}
.yb3{bottom:528.990000px;}
.ye5{bottom:529.350000px;}
.y23c{bottom:538.350000px;}
.ycb{bottom:542.310000px;}
.y1db{bottom:543.030000px;}
.y1bd{bottom:545.550000px;}
.y133{bottom:546.990000px;}
.y26{bottom:548.430000px;}
.y1a4{bottom:549.150000px;}
.yfd{bottom:549.510000px;}
.y91{bottom:550.230000px;}
.y215{bottom:552.750000px;}
.y76{bottom:553.110000px;}
.y202{bottom:556.710000px;}
.ye4{bottom:560.670000px;}
.y23b{bottom:562.110000px;}
.y14c{bottom:564.630000px;}
.y16e{bottom:566.790000px;}
.y25{bottom:569.310000px;}
.y1a3{bottom:572.550000px;}
.y1da{bottom:572.910000px;}
.yca{bottom:573.270000px;}
.y132{bottom:576.900000px;}
.y1bb{bottom:577.980000px;}
.y4a{bottom:578.340000px;}
.yfc{bottom:579.420000px;}
.y90{bottom:580.500000px;}
.y75{bottom:582.660000px;}
.y23a{bottom:586.260000px;}
.y201{bottom:586.620000px;}
.y24{bottom:589.860000px;}
.ye3{bottom:591.660000px;}
.y1a2{bottom:595.620000px;}
.y16d{bottom:596.700000px;}
.y1d9{bottom:602.820000px;}
.yc9{bottom:604.260000px;}
.y131{bottom:606.420000px;}
.y49{bottom:607.860000px;}
.y5f{bottom:608.220000px;}
.y18a{bottom:609.300000px;}
.y239{bottom:610.020000px;}
.y1ba{bottom:610.380000px;}
.y23{bottom:610.740000px;}
.y8f{bottom:611.100000px;}
.y214{bottom:612.180000px;}
.y14b{bottom:613.260000px;}
.y200{bottom:616.500000px;}
.ye2{bottom:622.620000px;}
.yfb{bottom:622.980000px;}
.y16c{bottom:626.220000px;}
.y22{bottom:631.260000px;}
.y238{bottom:633.780000px;}
.yc8{bottom:635.580000px;}
.y130{bottom:636.300000px;}
.yb1{bottom:636.660000px;}
.y48{bottom:637.740000px;}
.y74{bottom:638.100000px;}
.y189{bottom:638.820000px;}
.y8e{bottom:641.340000px;}
.y213{bottom:642.060000px;}
.y1d8{bottom:642.420000px;}
.y1ff{bottom:650.340000px;}
.y21{bottom:651.780000px;}
.yfa{bottom:652.860000px;}
.ye1{bottom:653.580000px;}
.y16b{bottom:656.100000px;}
.y237{bottom:657.540000px;}
.y14a{bottom:661.500000px;}
.y47{bottom:667.620000px;}
.y73{bottom:667.980000px;}
.y188{bottom:668.700000px;}
.y212{bottom:671.940000px;}
.y20{bottom:672.660000px;}
.y1d7{bottom:673.380000px;}
.y8d{bottom:675.540000px;}
.y1a1{bottom:676.260000px;}
.yc7{bottom:679.500000px;}
.y236{bottom:681.300000px;}
.y12f{bottom:682.740000px;}
.ye0{bottom:684.900000px;}
.y1f{bottom:693.180000px;}
.y19f{bottom:693.900000px;}
.y112{bottom:695.520000px;}
.y120{bottom:696.240000px;}
.yf9{bottom:696.420000px;}
.y46{bottom:697.140000px;}
.y5e{bottom:697.500000px;}
.y187{bottom:698.580000px;}
.y148{bottom:700.770000px;}
.yc6{bottom:701.490000px;}
.yac{bottom:702.570000px;}
.y1b9{bottom:703.650000px;}
.y1d6{bottom:704.370000px;}
.y235{bottom:705.090000px;}
.y1fe{bottom:705.810000px;}
.y1e{bottom:714.090000px;}
.y5d{bottom:727.050000px;}
.y72{bottom:727.410000px;}
.y16a{bottom:728.490000px;}
.y234{bottom:728.850000px;}
.y186{bottom:730.650000px;}
.y19e{bottom:733.530000px;}
.y111{bottom:734.400000px;}
.y1d{bottom:734.610000px;}
.y1d5{bottom:735.690000px;}
.ydf{bottom:740.010000px;}
.y8c{bottom:741.450000px;}
.y1b8{bottom:744.690000px;}
.y12e{bottom:745.050000px;}
.y146{bottom:749.370000px;}
.y45{bottom:752.610000px;}
.y1c{bottom:755.490000px;}
.yc5{bottom:756.930000px;}
.y71{bottom:757.290000px;}
.y169{bottom:760.530000px;}
.y223{bottom:761.250000px;}
.y1fd{bottom:765.210000px;}
.y1d4{bottom:768.090000px;}
.yde{bottom:769.890000px;}
.y8b{bottom:772.410000px;}
.y19d{bottom:772.770000px;}
.y110{bottom:773.640000px;}
.y1b{bottom:775.650000px;}
.y12d{bottom:776.010000px;}
.y233{bottom:776.370000px;}
.y11a{bottom:782.280000px;}
.y44{bottom:782.490000px;}
.yf8{bottom:783.570000px;}
.y185{bottom:785.730000px;}
.yc4{bottom:786.450000px;}
.y70{bottom:786.810000px;}
.ya6{bottom:789.330000px;}
.y168{bottom:791.850000px;}
.y11e{bottom:792.000000px;}
.y1a{bottom:794.730000px;}
.y1fc{bottom:795.090000px;}
.y144{bottom:797.610000px;}
.y1d3{bottom:799.050000px;}
.ydd{bottom:799.770000px;}
.y11f{bottom:800.280000px;}
.y232{bottom:800.490000px;}
.y11d{bottom:801.000000px;}
.y8a{bottom:803.370000px;}
.y117{bottom:806.760000px;}
.y12c{bottom:806.970000px;}
.y43{bottom:812.010000px;}
.y10e{bottom:812.160000px;}
.y5c{bottom:812.370000px;}
.y19{bottom:813.450000px;}
.y184{bottom:815.610000px;}
.yc3{bottom:816.330000px;}
.y6f{bottom:816.690000px;}
.y167{bottom:823.890000px;}
.y231{bottom:824.250000px;}
.yf7{bottom:827.175000px;}
.ydc{bottom:829.335000px;}
.y1d2{bottom:830.055000px;}
.y18{bottom:832.575000px;}
.y89{bottom:834.735000px;}
.y142{bottom:836.895000px;}
.y1b7{bottom:837.975000px;}
.y12b{bottom:838.335000px;}
.y42{bottom:841.935000px;}
.y183{bottom:845.535000px;}
.y211{bottom:846.255000px;}
.y6e{bottom:846.615000px;}
.y230{bottom:848.055000px;}
.y1fb{bottom:850.575000px;}
.y10c{bottom:851.040000px;}
.y17{bottom:851.655000px;}
.y114{bottom:855.000000px;}
.y166{bottom:855.255000px;}
.ydb{bottom:859.215000px;}
.y1d1{bottom:861.375000px;}
.y88{bottom:865.695000px;}
.y12a{bottom:867.855000px;}
.y1b6{bottom:868.935000px;}
.y16{bottom:870.375000px;}
.y121{bottom:871.560000px;}
.y41{bottom:871.815000px;}
.y182{bottom:875.055000px;}
.y6d{bottom:876.135000px;}
.y140{bottom:876.495000px;}
.y1fa{bottom:880.095000px;}
.yf6{bottom:887.295000px;}
.yda{bottom:889.095000px;}
.y15{bottom:889.455000px;}
.y10a{bottom:889.920000px;}
.y19b{bottom:891.255000px;}
.y1d0{bottom:893.415000px;}
.y22f{bottom:895.575000px;}
.y87{bottom:896.655000px;}
.y129{bottom:897.735000px;}
.y1b5{bottom:900.255000px;}
.y40{bottom:901.335000px;}
.y5b{bottom:901.695000px;}
.y210{bottom:905.655000px;}
.y14{bottom:908.535000px;}
.y1f9{bottom:909.975000px;}
.yf5{bottom:916.815000px;}
.y165{bottom:918.255000px;}
.yd9{bottom:918.615000px;}
.y22e{bottom:919.335000px;}
.y1cf{bottom:924.735000px;}
.y128{bottom:927.255000px;}
.y13{bottom:927.615000px;}
.y181{bottom:930.495000px;}
.y199{bottom:930.855000px;}
.y3f{bottom:931.215000px;}
.y6c{bottom:931.575000px;}
.y222{bottom:935.535000px;}
.y1f8{bottom:939.495000px;}
.y1b4{bottom:940.935000px;}
.y22d{bottom:943.095000px;}
.yf4{bottom:946.695000px;}
.y12{bottom:947.055000px;}
.y17f{bottom:948.135000px;}
.yd8{bottom:948.495000px;}
.y164{bottom:949.575000px;}
.y1ce{bottom:956.805000px;}
.y127{bottom:957.165000px;}
.y3e{bottom:960.765000px;}
.y5a{bottom:961.125000px;}
.y6b{bottom:961.485000px;}
.y221{bottom:965.445000px;}
.y22c{bottom:966.885000px;}
.y11{bottom:968.325000px;}
.yf3{bottom:968.685000px;}
.y198{bottom:970.125000px;}
.y13f{bottom:971.565000px;}
.y1b3{bottom:973.005000px;}
.y163{bottom:981.645000px;}
.y86{bottom:984.525000px;}
.y126{bottom:987.045000px;}
.y1cd{bottom:988.125000px;}
.y3d{bottom:990.645000px;}
.y59{bottom:991.005000px;}
.y10{bottom:991.365000px;}
.yd7{bottom:994.965000px;}
.yf2{bottom:998.565000px;}
.y17d{bottom:1000.005000px;}
.y1b2{bottom:1006.125000px;}
.y197{bottom:1009.725000px;}
.yf{bottom:1012.245000px;}
.y162{bottom:1012.965000px;}
.y22b{bottom:1014.765000px;}
.y85{bottom:1015.485000px;}
.y125{bottom:1018.005000px;}
.y1cc{bottom:1020.165000px;}
.y3c{bottom:1020.525000px;}
.y6a{bottom:1020.885000px;}
.y9c{bottom:1024.845000px;}
.yf1{bottom:1028.445000px;}
.y8{bottom:1033.125000px;}
.y22a{bottom:1038.525000px;}
.y1b1{bottom:1039.245000px;}
.y161{bottom:1043.925000px;}
.y84{bottom:1046.445000px;}
.y124{bottom:1048.965000px;}
.y17b{bottom:1050.045000px;}
.y58{bottom:1050.405000px;}
.y1cb{bottom:1051.485000px;}
.y7{bottom:1054.005000px;}
.yc2{bottom:1054.365000px;}
.y229{bottom:1062.285000px;}
.y1b0{bottom:1072.365000px;}
.y6{bottom:1074.525000px;}
.y3b{bottom:1075.605000px;}
.y160{bottom:1076.325000px;}
.y69{bottom:1077.405000px;}
.y57{bottom:1079.970000px;}
.y228{bottom:1086.090000px;}
.yb{bottom:1095.810000px;}
.y5{bottom:1097.970000px;}
.y3a{bottom:1105.530000px;}
.y15f{bottom:1107.330000px;}
.y1ca{bottom:1108.050000px;}
.y68{bottom:1108.770000px;}
.y56{bottom:1109.850000px;}
.y9b{bottom:1118.490000px;}
.y4{bottom:1121.730000px;}
.y15e{bottom:1138.650000px;}
.y39{bottom:1139.730000px;}
.y3{bottom:1145.490000px;}
.y2{bottom:1169.250000px;}
.y38{bottom:1170.330000px;}
.y1{bottom:1193.010000px;}
.y37{bottom:1194.090000px;}
.h2b{height:19.800000px;}
.h29{height:21.240000px;}
.h2a{height:21.600000px;}
.h2c{height:21.960000px;}
.h16{height:24.840000px;}
.h15{height:25.200000px;}
.h11{height:26.280000px;}
.h12{height:26.640000px;}
.h13{height:27.000000px;}
.h1f{height:29.556000px;}
.h26{height:31.680000px;}
.h27{height:31.716000px;}
.h28{height:32.040000px;}
.h22{height:37.440000px;}
.h1d{height:38.520000px;}
.h1a{height:38.556000px;}
.h19{height:38.880000px;}
.h23{height:38.916000px;}
.h21{height:47.196000px;}
.h1b{height:47.520000px;}
.h1c{height:47.880000px;}
.h1e{height:47.916000px;}
.h7{height:52.417969px;}
.ha{height:58.121719px;}
.h9{height:58.833281px;}
.h25{height:63.000000px;}
.hb{height:63.036000px;}
.h3{height:63.175781px;}
.h14{height:63.302133px;}
.h2{height:63.949219px;}
.h17{height:65.160000px;}
.hf{height:65.196000px;}
.h4{height:65.884219px;}
.h20{height:66.989531px;}
.h18{height:69.056016px;}
.h8{height:74.181094px;}
.h24{height:74.916000px;}
.he{height:86.040000px;}
.h6{height:95.300859px;}
.hd{height:106.596000px;}
.h10{height:106.956000px;}
.h5{height:107.640000px;}
.hc{height:127.476000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w35{width:5.400000px;}
.w2f{width:5.760000px;}
.w8{width:6.120000px;}
.wa{width:6.480000px;}
.w34{width:8.640000px;}
.w3d{width:9.000000px;}
.w3a{width:15.840000px;}
.w10{width:16.200000px;}
.wc{width:17.280000px;}
.wf{width:17.640000px;}
.w11{width:18.000000px;}
.w9{width:20.160000px;}
.w12{width:20.520000px;}
.w3b{width:27.000000px;}
.w38{width:33.840000px;}
.w3c{width:34.200000px;}
.w39{width:36.360000px;}
.w28{width:40.320000px;}
.w36{width:41.760000px;}
.w1c{width:43.560000px;}
.w16{width:43.956000px;}
.w22{width:45.036000px;}
.w1b{width:45.756000px;}
.w21{width:46.440000px;}
.w26{width:46.800000px;}
.w25{width:46.836000px;}
.w23{width:47.880000px;}
.w27{width:48.636000px;}
.w24{width:49.716000px;}
.w37{width:50.040000px;}
.w1d{width:52.236000px;}
.w1a{width:54.000000px;}
.w19{width:55.116000px;}
.w2e{width:58.356000px;}
.w17{width:59.400000px;}
.wb{width:60.480000px;}
.w18{width:66.996000px;}
.w2b{width:68.400000px;}
.w14{width:68.760000px;}
.w15{width:70.236000px;}
.wd{width:77.760000px;}
.w33{width:78.480000px;}
.w31{width:84.600000px;}
.w2c{width:86.076000px;}
.w20{width:90.396000px;}
.w2d{width:93.996000px;}
.w30{width:99.000000px;}
.w32{width:99.360000px;}
.we{width:104.040000px;}
.w1f{width:114.516000px;}
.w2a{width:121.752000px;}
.w13{width:122.112000px;}
.w7{width:162.075000px;}
.w6{width:169.995000px;}
.w5{width:171.075000px;}
.w4{width:178.995000px;}
.w29{width:231.915000px;}
.w1e{width:294.945000px;}
.w3{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x31{left:1.800000px;}
.x2c{left:3.600000px;}
.x2a{left:5.040000px;}
.x37{left:6.120000px;}
.x51{left:7.200000px;}
.x39{left:8.280000px;}
.x6{left:9.720000px;}
.x26{left:11.160000px;}
.x4b{left:12.240000px;}
.x36{left:13.680000px;}
.x28{left:14.760000px;}
.x35{left:16.245000px;}
.x3a{left:17.640000px;}
.x3f{left:19.080000px;}
.x38{left:21.600000px;}
.x4d{left:24.483000px;}
.x4c{left:25.563000px;}
.x3e{left:28.116000px;}
.x4e{left:32.043000px;}
.x3c{left:33.516000px;}
.x4a{left:37.443000px;}
.x3d{left:39.636000px;}
.x43{left:40.683000px;}
.x3b{left:43.596000px;}
.x27{left:57.639000px;}
.x53{left:81.753000px;}
.x1{left:105.155987px;}
.x4{left:106.235987px;}
.x40{left:127.835987px;}
.xf{left:132.191987px;}
.xe{left:133.271987px;}
.x41{left:137.232000px;}
.x54{left:138.311987px;}
.x7{left:142.991987px;}
.x9{left:156.314987px;}
.x10{left:159.194987px;}
.xa{left:160.274987px;}
.x14{left:169.994987px;}
.x29{left:227.265000px;}
.x5{left:249.225000px;}
.x25{left:259.560000px;}
.x21{left:261.720000px;}
.x23{left:262.800000px;}
.x22{left:273.600000px;}
.x24{left:274.680000px;}
.x61{left:279.000000px;}
.x11{left:284.145000px;}
.x60{left:286.920000px;}
.x5e{left:288.360000px;}
.x5c{left:290.160000px;}
.x2b{left:296.025000px;}
.x8{left:298.904987px;}
.x5f{left:302.040000px;}
.x5b{left:306.000000px;}
.x5d{left:312.480000px;}
.x44{left:319.110000px;}
.x55{left:333.720000px;}
.x56{left:349.560000px;}
.x2d{left:366.270000px;}
.x4f{left:369.150000px;}
.x20{left:379.800000px;}
.xb{left:392.189987px;}
.xd{left:397.619987px;}
.x2e{left:410.220000px;}
.x57{left:413.280000px;}
.x45{left:416.700000px;}
.x3{left:428.579987px;}
.xc{left:430.019987px;}
.x42{left:432.180000px;}
.x62{left:435.960000px;}
.x2{left:445.859987px;}
.x12{left:455.220000px;}
.x63{left:461.520000px;}
.x46{left:463.140000px;}
.x16{left:467.280000px;}
.x2f{left:469.620000px;}
.x1b{left:479.520000px;}
.x17{left:482.040000px;}
.x1d{left:484.560000px;}
.x19{left:486.360000px;}
.x58{left:487.800000px;}
.x1c{left:488.880000px;}
.x18{left:490.680000px;}
.x59{left:500.040000px;}
.x47{left:509.970000px;}
.x1a{left:535.680000px;}
.x1f{left:544.680000px;}
.x1e{left:547.200000px;}
.x48{left:556.770000px;}
.x50{left:559.290000px;}
.x15{left:565.409987px;}
.x5a{left:568.800000px;}
.x30{left:591.735000px;}
.x49{left:605.415000px;}
.x13{left:625.215000px;}
.x32{left:645.735000px;}
.x33{left:691.485000px;}
.x34{left:735.045000px;}
.x52{left:739.365000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.856000pt;}
.ls5{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.314880pt;}
.lsa{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.458667pt;}
.ls15{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.773120pt;}
.ls10{letter-spacing:0.800000pt;}
.ls21{letter-spacing:1.920000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls11{letter-spacing:6.528000pt;}
.ls16{letter-spacing:9.088000pt;}
.ls18{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:10.880000pt;}
.ls20{letter-spacing:12.160000pt;}
.ls12{letter-spacing:16.768000pt;}
.ls22{letter-spacing:24.458667pt;}
.ls7{letter-spacing:29.568000pt;}
.lsb{letter-spacing:29.578667pt;}
.ls0{letter-spacing:36.111360pt;}
.lsc{letter-spacing:43.658667pt;}
.ls14{letter-spacing:55.178667pt;}
.ws1{word-spacing:-106.240000pt;}
.wsb{word-spacing:-85.760000pt;}
.ws9{word-spacing:-64.000000pt;}
.wsd{word-spacing:-24.842453pt;}
.ws2{word-spacing:-20.823040pt;}
.ws8{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.448533pt;}
.ws7{word-spacing:-12.894613pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-10.619307pt;}
._23{margin-left:-7.093333pt;}
._16{margin-left:-4.920320pt;}
._7{margin-left:-3.881387pt;}
._6{margin-left:-2.871893pt;}
._5{margin-left:-1.922560pt;}
._0{margin-left:-0.896000pt;}
._4{width:0.891307pt;}
._1{width:1.781333pt;}
._f{width:2.717013pt;}
._c{width:3.698773pt;}
._b{width:5.058560pt;}
._d{width:6.402560pt;}
._10{width:8.128000pt;}
._e{width:9.300480pt;}
._2{width:10.411520pt;}
._3{width:11.923627pt;}
._8{width:12.846933pt;}
._14{width:14.272000pt;}
._9{width:17.728000pt;}
._a{width:18.692693pt;}
._11{width:19.648000pt;}
._12{width:20.601173pt;}
._17{width:22.208000pt;}
._1a{width:23.167147pt;}
._1c{width:24.260267pt;}
._1f{width:25.406720pt;}
._1b{width:26.636373pt;}
._1e{width:27.526400pt;}
._15{width:28.608000pt;}
._13{width:30.208000pt;}
._18{width:34.560000pt;}
._19{width:35.585280pt;}
._21{width:46.855253pt;}
._22{width:47.808000pt;}
._20{width:48.704000pt;}
.fs5{font-size:42.240000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:74.368000pt;}
.fs6{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y1f7{bottom:0.733333pt;}
.y1ed{bottom:2.306667pt;}
.y1f3{bottom:3.552000pt;}
.y1e4{bottom:3.586667pt;}
.y1e1{bottom:3.613333pt;}
.y1ef{bottom:3.866667pt;}
.y1f5{bottom:3.872000pt;}
.y1e6{bottom:3.906667pt;}
.y1f1{bottom:4.186667pt;}
.y118{bottom:4.666667pt;}
.y11b{bottom:4.986667pt;}
.y115{bottom:5.026667pt;}
.y122{bottom:5.346667pt;}
.ya5{bottom:6.080000pt;}
.ye{bottom:6.400000pt;}
.y119{bottom:6.586667pt;}
.y11c{bottom:6.906667pt;}
.y116{bottom:6.946667pt;}
.y123{bottom:7.266667pt;}
.y10b{bottom:8.226667pt;}
.y10f{bottom:8.506667pt;}
.y10d{bottom:8.546667pt;}
.y113{bottom:8.826667pt;}
.y151{bottom:11.240000pt;}
.y180{bottom:12.826667pt;}
.y1bc{bottom:13.120000pt;}
.y1bf{bottom:13.160000pt;}
.y9e{bottom:13.440000pt;}
.y17c{bottom:16.640000pt;}
.y17e{bottom:18.240000pt;}
.y145{bottom:19.200000pt;}
.y19a{bottom:19.226667pt;}
.y143{bottom:19.520000pt;}
.y1a0{bottom:19.546667pt;}
.y19c{bottom:19.560000pt;}
.ya4{bottom:24.640000pt;}
.yb0{bottom:24.960000pt;}
.y147{bottom:27.200000pt;}
.y149{bottom:27.520000pt;}
.y14d{bottom:27.546667pt;}
.y196{bottom:28.840000pt;}
.yd{bottom:38.080000pt;}
.y9d{bottom:40.960000pt;}
.y141{bottom:41.920000pt;}
.yb2{bottom:42.880000pt;}
.yaf{bottom:43.200000pt;}
.yb5{bottom:43.226667pt;}
.yab{bottom:43.240000pt;}
.ya3{bottom:43.520000pt;}
.ya{bottom:50.560000pt;}
.y195{bottom:51.560000pt;}
.ya8{bottom:58.600000pt;}
.yad{bottom:61.440000pt;}
.yae{bottom:61.760000pt;}
.ya2{bottom:61.786667pt;}
.yaa{bottom:61.800000pt;}
.yc{bottom:69.440000pt;}
.y9{bottom:71.072000pt;}
.ya7{bottom:79.720000pt;}
.yb4{bottom:80.026667pt;}
.ya9{bottom:80.040000pt;}
.ya1{bottom:80.346667pt;}
.y9f{bottom:98.266667pt;}
.ya0{bottom:98.586667pt;}
.y1df{bottom:100.192000pt;}
.yd6{bottom:101.472000pt;}
.y220{bottom:101.792000pt;}
.y20f{bottom:105.632000pt;}
.yc1{bottom:105.952000pt;}
.y17a{bottom:108.512000pt;}
.y194{bottom:108.832000pt;}
.y1af{bottom:109.792000pt;}
.y1f4{bottom:110.400000pt;}
.y109{bottom:110.752000pt;}
.y67{bottom:115.232000pt;}
.y13e{bottom:117.792000pt;}
.yf0{bottom:119.392000pt;}
.y83{bottom:121.632000pt;}
.y1c9{bottom:126.112000pt;}
.y1f2{bottom:128.000000pt;}
.yd5{bottom:128.032000pt;}
.y21f{bottom:128.352000pt;}
.y36{bottom:128.992000pt;}
.y15d{bottom:131.232000pt;}
.y20e{bottom:131.872000pt;}
.yc0{bottom:132.512000pt;}
.y179{bottom:136.346667pt;}
.y108{bottom:136.986667pt;}
.y1ae{bottom:139.226667pt;}
.y66{bottom:142.746667pt;}
.y9a{bottom:143.386667pt;}
.y193{bottom:144.026667pt;}
.y1f0{bottom:144.320000pt;}
.y13d{bottom:145.306667pt;}
.yef{bottom:145.946667pt;}
.y82{bottom:149.146667pt;}
.y227{bottom:151.066667pt;}
.y1c8{bottom:154.266667pt;}
.y21e{bottom:154.906667pt;}
.ybf{bottom:158.746667pt;}
.y15c{bottom:160.666667pt;}
.y1ee{bottom:161.600000pt;}
.y178{bottom:163.866667pt;}
.yd4{bottom:167.066667pt;}
.y1ad{bottom:168.666667pt;}
.y35{bottom:170.266667pt;}
.y55{bottom:172.186667pt;}
.y13c{bottom:172.826667pt;}
.y107{bottom:174.106667pt;}
.y81{bottom:176.706667pt;}
.y226{bottom:177.346667pt;}
.y1eb{bottom:178.880000pt;}
.y1ec{bottom:179.200000pt;}
.y192{bottom:179.586667pt;}
.y15b{bottom:180.226667pt;}
.y20d{bottom:181.186667pt;}
.y1c7{bottom:181.506667pt;}
.y99{bottom:181.826667pt;}
.ybe{bottom:185.346667pt;}
.y177{bottom:191.426667pt;}
.yd3{bottom:194.626667pt;}
.y1ea{bottom:195.840000pt;}
.y65{bottom:198.146667pt;}
.yee{bottom:198.786667pt;}
.y54{bottom:199.106667pt;}
.y15a{bottom:199.746667pt;}
.y13b{bottom:200.386667pt;}
.y106{bottom:200.706667pt;}
.y225{bottom:203.906667pt;}
.y80{bottom:204.226667pt;}
.y20c{bottom:207.746667pt;}
.y1c6{bottom:208.066667pt;}
.y98{bottom:209.666667pt;}
.y34{bottom:211.266667pt;}
.y1e9{bottom:212.480000pt;}
.y191{bottom:214.786667pt;}
.y176{bottom:218.946667pt;}
.y159{bottom:219.586667pt;}
.yd2{bottom:222.146667pt;}
.ybd{bottom:223.426667pt;}
.yed{bottom:225.346667pt;}
.y64{bottom:225.666667pt;}
.y53{bottom:225.986667pt;}
.y105{bottom:227.266667pt;}
.y1e8{bottom:229.440000pt;}
.y33{bottom:230.146667pt;}
.y21d{bottom:230.466667pt;}
.y20b{bottom:233.986667pt;}
.y13a{bottom:235.906667pt;}
.y97{bottom:238.466667pt;}
.y158{bottom:239.106667pt;}
.y1c5{bottom:242.946667pt;}
.y1e7{bottom:246.720000pt;}
.y175{bottom:246.786667pt;}
.y32{bottom:248.386667pt;}
.ybc{bottom:249.666667pt;}
.y190{bottom:250.306667pt;}
.y52{bottom:253.186667pt;}
.y7f{bottom:253.506667pt;}
.yec{bottom:255.426667pt;}
.y104{bottom:256.706667pt;}
.y21c{bottom:257.026667pt;}
.y157{bottom:258.946667pt;}
.y20a{bottom:260.546667pt;}
.y1c4{bottom:262.466667pt;}
.y1e5{bottom:263.360000pt;}
.y31{bottom:266.946667pt;}
.ybb{bottom:276.226667pt;}
.yd1{bottom:277.506667pt;}
.y7e{bottom:280.066667pt;}
.y1e3{bottom:280.640000pt;}
.y156{bottom:281.026667pt;}
.yeb{bottom:281.986667pt;}
.y21b{bottom:283.266667pt;}
.y30{bottom:285.186667pt;}
.y18f{bottom:285.506667pt;}
.y209{bottom:287.106667pt;}
.y1f6{bottom:291.520000pt;}
.y103{bottom:291.933333pt;}
.y1ac{bottom:293.213333pt;}
.y96{bottom:294.813333pt;}
.y174{bottom:295.773333pt;}
.y1e2{bottom:297.920000pt;}
.y1c3{bottom:301.533333pt;}
.y51{bottom:302.173333pt;}
.y63{bottom:302.493333pt;}
.y2f{bottom:303.773333pt;}
.y139{bottom:304.733333pt;}
.yd0{bottom:305.053333pt;}
.y7d{bottom:306.333333pt;}
.y155{bottom:306.973333pt;}
.yea{bottom:308.573333pt;}
.yba{bottom:311.453333pt;}
.y208{bottom:313.373333pt;}
.y102{bottom:318.493333pt;}
.y18e{bottom:320.733333pt;}
.y1c2{bottom:321.053333pt;}
.y1ab{bottom:321.693333pt;}
.y2e{bottom:322.013333pt;}
.y173{bottom:322.333333pt;}
.y1e0{bottom:325.440000pt;}
.y154{bottom:326.493333pt;}
.y50{bottom:328.733333pt;}
.y62{bottom:329.053333pt;}
.y138{bottom:331.293333pt;}
.ycf{bottom:332.573333pt;}
.y7c{bottom:332.893333pt;}
.ye9{bottom:334.813333pt;}
.yb9{bottom:338.013333pt;}
.y207{bottom:339.933333pt;}
.y2d{bottom:340.573333pt;}
.y1aa{bottom:342.493333pt;}
.y95{bottom:344.733333pt;}
.y153{bottom:346.333333pt;}
.y172{bottom:348.893333pt;}
.y1c1{bottom:351.773333pt;}
.y4f{bottom:355.293333pt;}
.y18d{bottom:356.253333pt;}
.y101{bottom:357.213333pt;}
.y137{bottom:357.533333pt;}
.y2c{bottom:358.813333pt;}
.y21a{bottom:359.133333pt;}
.y7b{bottom:359.453333pt;}
.yce{bottom:360.093333pt;}
.ye8{bottom:361.373333pt;}
.y1a9{bottom:363.293333pt;}
.yb8{bottom:364.573333pt;}
.y206{bottom:366.493333pt;}
.y94{bottom:371.293333pt;}
.y171{bottom:375.133333pt;}
.y2b{bottom:377.373333pt;}
.y1de{bottom:380.573333pt;}
.y152{bottom:381.213333pt;}
.y4e{bottom:381.533333pt;}
.y61{bottom:381.853333pt;}
.y1c0{bottom:382.173333pt;}
.y100{bottom:383.773333pt;}
.y136{bottom:384.093333pt;}
.y219{bottom:385.373333pt;}
.y7a{bottom:385.693333pt;}
.ycd{bottom:387.933333pt;}
.y18c{bottom:391.453333pt;}
.y205{bottom:392.733333pt;}
.y150{bottom:396.893333pt;}
.y93{bottom:397.853333pt;}
.y170{bottom:401.733333pt;}
.y1a8{bottom:404.933333pt;}
.y1dd{bottom:407.173333pt;}
.y4d{bottom:408.133333pt;}
.y135{bottom:410.693333pt;}
.y2a{bottom:411.653333pt;}
.y218{bottom:411.973333pt;}
.y79{bottom:412.293333pt;}
.yb7{bottom:413.573333pt;}
.ye7{bottom:415.493333pt;}
.y204{bottom:419.333333pt;}
.yff{bottom:423.173333pt;}
.y14f{bottom:423.813333pt;}
.y92{bottom:424.133333pt;}
.y1a7{bottom:425.733333pt;}
.ycc{bottom:426.693333pt;}
.y16f{bottom:428.293333pt;}
.y29{bottom:432.133333pt;}
.y1dc{bottom:433.733333pt;}
.y4c{bottom:434.693333pt;}
.y23e{bottom:436.293333pt;}
.y134{bottom:436.933333pt;}
.y224{bottom:438.213333pt;}
.y217{bottom:438.533333pt;}
.y78{bottom:438.853333pt;}
.ye6{bottom:443.013333pt;}
.y203{bottom:445.893333pt;}
.y1a6{bottom:446.533333pt;}
.yfe{bottom:449.733333pt;}
.y28{bottom:450.693333pt;}
.yb6{bottom:454.533333pt;}
.y1be{bottom:455.813333pt;}
.y23d{bottom:457.413333pt;}
.y4b{bottom:460.933333pt;}
.y60{bottom:461.253333pt;}
.y18b{bottom:462.213333pt;}
.y216{bottom:464.773333pt;}
.y77{bottom:465.093333pt;}
.y14e{bottom:466.693333pt;}
.y1a5{bottom:467.333333pt;}
.y27{bottom:469.253333pt;}
.yb3{bottom:470.213333pt;}
.ye5{bottom:470.533333pt;}
.y23c{bottom:478.533333pt;}
.ycb{bottom:482.053333pt;}
.y1db{bottom:482.693333pt;}
.y1bd{bottom:484.933333pt;}
.y133{bottom:486.213333pt;}
.y26{bottom:487.493333pt;}
.y1a4{bottom:488.133333pt;}
.yfd{bottom:488.453333pt;}
.y91{bottom:489.093333pt;}
.y215{bottom:491.333333pt;}
.y76{bottom:491.653333pt;}
.y202{bottom:494.853333pt;}
.ye4{bottom:498.373333pt;}
.y23b{bottom:499.653333pt;}
.y14c{bottom:501.893333pt;}
.y16e{bottom:503.813333pt;}
.y25{bottom:506.053333pt;}
.y1a3{bottom:508.933333pt;}
.y1da{bottom:509.253333pt;}
.yca{bottom:509.573333pt;}
.y132{bottom:512.800000pt;}
.y1bb{bottom:513.760000pt;}
.y4a{bottom:514.080000pt;}
.yfc{bottom:515.040000pt;}
.y90{bottom:516.000000pt;}
.y75{bottom:517.920000pt;}
.y23a{bottom:521.120000pt;}
.y201{bottom:521.440000pt;}
.y24{bottom:524.320000pt;}
.ye3{bottom:525.920000pt;}
.y1a2{bottom:529.440000pt;}
.y16d{bottom:530.400000pt;}
.y1d9{bottom:535.840000pt;}
.yc9{bottom:537.120000pt;}
.y131{bottom:539.040000pt;}
.y49{bottom:540.320000pt;}
.y5f{bottom:540.640000pt;}
.y18a{bottom:541.600000pt;}
.y239{bottom:542.240000pt;}
.y1ba{bottom:542.560000pt;}
.y23{bottom:542.880000pt;}
.y8f{bottom:543.200000pt;}
.y214{bottom:544.160000pt;}
.y14b{bottom:545.120000pt;}
.y200{bottom:548.000000pt;}
.ye2{bottom:553.440000pt;}
.yfb{bottom:553.760000pt;}
.y16c{bottom:556.640000pt;}
.y22{bottom:561.120000pt;}
.y238{bottom:563.360000pt;}
.yc8{bottom:564.960000pt;}
.y130{bottom:565.600000pt;}
.yb1{bottom:565.920000pt;}
.y48{bottom:566.880000pt;}
.y74{bottom:567.200000pt;}
.y189{bottom:567.840000pt;}
.y8e{bottom:570.080000pt;}
.y213{bottom:570.720000pt;}
.y1d8{bottom:571.040000pt;}
.y1ff{bottom:578.080000pt;}
.y21{bottom:579.360000pt;}
.yfa{bottom:580.320000pt;}
.ye1{bottom:580.960000pt;}
.y16b{bottom:583.200000pt;}
.y237{bottom:584.480000pt;}
.y14a{bottom:588.000000pt;}
.y47{bottom:593.440000pt;}
.y73{bottom:593.760000pt;}
.y188{bottom:594.400000pt;}
.y212{bottom:597.280000pt;}
.y20{bottom:597.920000pt;}
.y1d7{bottom:598.560000pt;}
.y8d{bottom:600.480000pt;}
.y1a1{bottom:601.120000pt;}
.yc7{bottom:604.000000pt;}
.y236{bottom:605.600000pt;}
.y12f{bottom:606.880000pt;}
.ye0{bottom:608.800000pt;}
.y1f{bottom:616.160000pt;}
.y19f{bottom:616.800000pt;}
.y112{bottom:618.240000pt;}
.y120{bottom:618.880000pt;}
.yf9{bottom:619.040000pt;}
.y46{bottom:619.680000pt;}
.y5e{bottom:620.000000pt;}
.y187{bottom:620.960000pt;}
.y148{bottom:622.906667pt;}
.yc6{bottom:623.546667pt;}
.yac{bottom:624.506667pt;}
.y1b9{bottom:625.466667pt;}
.y1d6{bottom:626.106667pt;}
.y235{bottom:626.746667pt;}
.y1fe{bottom:627.386667pt;}
.y1e{bottom:634.746667pt;}
.y5d{bottom:646.266667pt;}
.y72{bottom:646.586667pt;}
.y16a{bottom:647.546667pt;}
.y234{bottom:647.866667pt;}
.y186{bottom:649.466667pt;}
.y19e{bottom:652.026667pt;}
.y111{bottom:652.800000pt;}
.y1d{bottom:652.986667pt;}
.y1d5{bottom:653.946667pt;}
.ydf{bottom:657.786667pt;}
.y8c{bottom:659.066667pt;}
.y1b8{bottom:661.946667pt;}
.y12e{bottom:662.266667pt;}
.y146{bottom:666.106667pt;}
.y45{bottom:668.986667pt;}
.y1c{bottom:671.546667pt;}
.yc5{bottom:672.826667pt;}
.y71{bottom:673.146667pt;}
.y169{bottom:676.026667pt;}
.y223{bottom:676.666667pt;}
.y1fd{bottom:680.186667pt;}
.y1d4{bottom:682.746667pt;}
.yde{bottom:684.346667pt;}
.y8b{bottom:686.586667pt;}
.y19d{bottom:686.906667pt;}
.y110{bottom:687.680000pt;}
.y1b{bottom:689.466667pt;}
.y12d{bottom:689.786667pt;}
.y233{bottom:690.106667pt;}
.y11a{bottom:695.360000pt;}
.y44{bottom:695.546667pt;}
.yf8{bottom:696.506667pt;}
.y185{bottom:698.426667pt;}
.yc4{bottom:699.066667pt;}
.y70{bottom:699.386667pt;}
.ya6{bottom:701.626667pt;}
.y168{bottom:703.866667pt;}
.y11e{bottom:704.000000pt;}
.y1a{bottom:706.426667pt;}
.y1fc{bottom:706.746667pt;}
.y144{bottom:708.986667pt;}
.y1d3{bottom:710.266667pt;}
.ydd{bottom:710.906667pt;}
.y11f{bottom:711.360000pt;}
.y232{bottom:711.546667pt;}
.y11d{bottom:712.000000pt;}
.y8a{bottom:714.106667pt;}
.y117{bottom:717.120000pt;}
.y12c{bottom:717.306667pt;}
.y43{bottom:721.786667pt;}
.y10e{bottom:721.920000pt;}
.y5c{bottom:722.106667pt;}
.y19{bottom:723.066667pt;}
.y184{bottom:724.986667pt;}
.yc3{bottom:725.626667pt;}
.y6f{bottom:725.946667pt;}
.y167{bottom:732.346667pt;}
.y231{bottom:732.666667pt;}
.yf7{bottom:735.266667pt;}
.ydc{bottom:737.186667pt;}
.y1d2{bottom:737.826667pt;}
.y18{bottom:740.066667pt;}
.y89{bottom:741.986667pt;}
.y142{bottom:743.906667pt;}
.y1b7{bottom:744.866667pt;}
.y12b{bottom:745.186667pt;}
.y42{bottom:748.386667pt;}
.y183{bottom:751.586667pt;}
.y211{bottom:752.226667pt;}
.y6e{bottom:752.546667pt;}
.y230{bottom:753.826667pt;}
.y1fb{bottom:756.066667pt;}
.y10c{bottom:756.480000pt;}
.y17{bottom:757.026667pt;}
.y114{bottom:760.000000pt;}
.y166{bottom:760.226667pt;}
.ydb{bottom:763.746667pt;}
.y1d1{bottom:765.666667pt;}
.y88{bottom:769.506667pt;}
.y12a{bottom:771.426667pt;}
.y1b6{bottom:772.386667pt;}
.y16{bottom:773.666667pt;}
.y121{bottom:774.720000pt;}
.y41{bottom:774.946667pt;}
.y182{bottom:777.826667pt;}
.y6d{bottom:778.786667pt;}
.y140{bottom:779.106667pt;}
.y1fa{bottom:782.306667pt;}
.yf6{bottom:788.706667pt;}
.yda{bottom:790.306667pt;}
.y15{bottom:790.626667pt;}
.y10a{bottom:791.040000pt;}
.y19b{bottom:792.226667pt;}
.y1d0{bottom:794.146667pt;}
.y22f{bottom:796.066667pt;}
.y87{bottom:797.026667pt;}
.y129{bottom:797.986667pt;}
.y1b5{bottom:800.226667pt;}
.y40{bottom:801.186667pt;}
.y5b{bottom:801.506667pt;}
.y210{bottom:805.026667pt;}
.y14{bottom:807.586667pt;}
.y1f9{bottom:808.866667pt;}
.yf5{bottom:814.946667pt;}
.y165{bottom:816.226667pt;}
.yd9{bottom:816.546667pt;}
.y22e{bottom:817.186667pt;}
.y1cf{bottom:821.986667pt;}
.y128{bottom:824.226667pt;}
.y13{bottom:824.546667pt;}
.y181{bottom:827.106667pt;}
.y199{bottom:827.426667pt;}
.y3f{bottom:827.746667pt;}
.y6c{bottom:828.066667pt;}
.y222{bottom:831.586667pt;}
.y1f8{bottom:835.106667pt;}
.y1b4{bottom:836.386667pt;}
.y22d{bottom:838.306667pt;}
.yf4{bottom:841.506667pt;}
.y12{bottom:841.826667pt;}
.y17f{bottom:842.786667pt;}
.yd8{bottom:843.106667pt;}
.y164{bottom:844.066667pt;}
.y1ce{bottom:850.493333pt;}
.y127{bottom:850.813333pt;}
.y3e{bottom:854.013333pt;}
.y5a{bottom:854.333333pt;}
.y6b{bottom:854.653333pt;}
.y221{bottom:858.173333pt;}
.y22c{bottom:859.453333pt;}
.y11{bottom:860.733333pt;}
.yf3{bottom:861.053333pt;}
.y198{bottom:862.333333pt;}
.y13f{bottom:863.613333pt;}
.y1b3{bottom:864.893333pt;}
.y163{bottom:872.573333pt;}
.y86{bottom:875.133333pt;}
.y126{bottom:877.373333pt;}
.y1cd{bottom:878.333333pt;}
.y3d{bottom:880.573333pt;}
.y59{bottom:880.893333pt;}
.y10{bottom:881.213333pt;}
.yd7{bottom:884.413333pt;}
.yf2{bottom:887.613333pt;}
.y17d{bottom:888.893333pt;}
.y1b2{bottom:894.333333pt;}
.y197{bottom:897.533333pt;}
.yf{bottom:899.773333pt;}
.y162{bottom:900.413333pt;}
.y22b{bottom:902.013333pt;}
.y85{bottom:902.653333pt;}
.y125{bottom:904.893333pt;}
.y1cc{bottom:906.813333pt;}
.y3c{bottom:907.133333pt;}
.y6a{bottom:907.453333pt;}
.y9c{bottom:910.973333pt;}
.yf1{bottom:914.173333pt;}
.y8{bottom:918.333333pt;}
.y22a{bottom:923.133333pt;}
.y1b1{bottom:923.773333pt;}
.y161{bottom:927.933333pt;}
.y84{bottom:930.173333pt;}
.y124{bottom:932.413333pt;}
.y17b{bottom:933.373333pt;}
.y58{bottom:933.693333pt;}
.y1cb{bottom:934.653333pt;}
.y7{bottom:936.893333pt;}
.yc2{bottom:937.213333pt;}
.y229{bottom:944.253333pt;}
.y1b0{bottom:953.213333pt;}
.y6{bottom:955.133333pt;}
.y3b{bottom:956.093333pt;}
.y160{bottom:956.733333pt;}
.y69{bottom:957.693333pt;}
.y57{bottom:959.973333pt;}
.y228{bottom:965.413333pt;}
.yb{bottom:974.053333pt;}
.y5{bottom:975.973333pt;}
.y3a{bottom:982.693333pt;}
.y15f{bottom:984.293333pt;}
.y1ca{bottom:984.933333pt;}
.y68{bottom:985.573333pt;}
.y56{bottom:986.533333pt;}
.y9b{bottom:994.213333pt;}
.y4{bottom:997.093333pt;}
.y15e{bottom:1012.133333pt;}
.y39{bottom:1013.093333pt;}
.y3{bottom:1018.213333pt;}
.y2{bottom:1039.333333pt;}
.y38{bottom:1040.293333pt;}
.y1{bottom:1060.453333pt;}
.y37{bottom:1061.413333pt;}
.h2b{height:17.600000pt;}
.h29{height:18.880000pt;}
.h2a{height:19.200000pt;}
.h2c{height:19.520000pt;}
.h16{height:22.080000pt;}
.h15{height:22.400000pt;}
.h11{height:23.360000pt;}
.h12{height:23.680000pt;}
.h13{height:24.000000pt;}
.h1f{height:26.272000pt;}
.h26{height:28.160000pt;}
.h27{height:28.192000pt;}
.h28{height:28.480000pt;}
.h22{height:33.280000pt;}
.h1d{height:34.240000pt;}
.h1a{height:34.272000pt;}
.h19{height:34.560000pt;}
.h23{height:34.592000pt;}
.h21{height:41.952000pt;}
.h1b{height:42.240000pt;}
.h1c{height:42.560000pt;}
.h1e{height:42.592000pt;}
.h7{height:46.593750pt;}
.ha{height:51.663750pt;}
.h9{height:52.296250pt;}
.h25{height:56.000000pt;}
.hb{height:56.032000pt;}
.h3{height:56.156250pt;}
.h14{height:56.268562pt;}
.h2{height:56.843750pt;}
.h17{height:57.920000pt;}
.hf{height:57.952000pt;}
.h4{height:58.563750pt;}
.h20{height:59.546250pt;}
.h18{height:61.383125pt;}
.h8{height:65.938750pt;}
.h24{height:66.592000pt;}
.he{height:76.480000pt;}
.h6{height:84.711875pt;}
.hd{height:94.752000pt;}
.h10{height:95.072000pt;}
.h5{height:95.680000pt;}
.hc{height:113.312000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w35{width:4.800000pt;}
.w2f{width:5.120000pt;}
.w8{width:5.440000pt;}
.wa{width:5.760000pt;}
.w34{width:7.680000pt;}
.w3d{width:8.000000pt;}
.w3a{width:14.080000pt;}
.w10{width:14.400000pt;}
.wc{width:15.360000pt;}
.wf{width:15.680000pt;}
.w11{width:16.000000pt;}
.w9{width:17.920000pt;}
.w12{width:18.240000pt;}
.w3b{width:24.000000pt;}
.w38{width:30.080000pt;}
.w3c{width:30.400000pt;}
.w39{width:32.320000pt;}
.w28{width:35.840000pt;}
.w36{width:37.120000pt;}
.w1c{width:38.720000pt;}
.w16{width:39.072000pt;}
.w22{width:40.032000pt;}
.w1b{width:40.672000pt;}
.w21{width:41.280000pt;}
.w26{width:41.600000pt;}
.w25{width:41.632000pt;}
.w23{width:42.560000pt;}
.w27{width:43.232000pt;}
.w24{width:44.192000pt;}
.w37{width:44.480000pt;}
.w1d{width:46.432000pt;}
.w1a{width:48.000000pt;}
.w19{width:48.992000pt;}
.w2e{width:51.872000pt;}
.w17{width:52.800000pt;}
.wb{width:53.760000pt;}
.w18{width:59.552000pt;}
.w2b{width:60.800000pt;}
.w14{width:61.120000pt;}
.w15{width:62.432000pt;}
.wd{width:69.120000pt;}
.w33{width:69.760000pt;}
.w31{width:75.200000pt;}
.w2c{width:76.512000pt;}
.w20{width:80.352000pt;}
.w2d{width:83.552000pt;}
.w30{width:88.000000pt;}
.w32{width:88.320000pt;}
.we{width:92.480000pt;}
.w1f{width:101.792000pt;}
.w2a{width:108.224000pt;}
.w13{width:108.544000pt;}
.w7{width:144.066667pt;}
.w6{width:151.106667pt;}
.w5{width:152.066667pt;}
.w4{width:159.106667pt;}
.w29{width:206.146667pt;}
.w1e{width:262.173333pt;}
.w3{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x31{left:1.600000pt;}
.x2c{left:3.200000pt;}
.x2a{left:4.480000pt;}
.x37{left:5.440000pt;}
.x51{left:6.400000pt;}
.x39{left:7.360000pt;}
.x6{left:8.640000pt;}
.x26{left:9.920000pt;}
.x4b{left:10.880000pt;}
.x36{left:12.160000pt;}
.x28{left:13.120000pt;}
.x35{left:14.440000pt;}
.x3a{left:15.680000pt;}
.x3f{left:16.960000pt;}
.x38{left:19.200000pt;}
.x4d{left:21.762667pt;}
.x4c{left:22.722667pt;}
.x3e{left:24.992000pt;}
.x4e{left:28.482667pt;}
.x3c{left:29.792000pt;}
.x4a{left:33.282667pt;}
.x3d{left:35.232000pt;}
.x43{left:36.162667pt;}
.x3b{left:38.752000pt;}
.x27{left:51.234667pt;}
.x53{left:72.669333pt;}
.x1{left:93.471988pt;}
.x4{left:94.431988pt;}
.x40{left:113.631988pt;}
.xf{left:117.503988pt;}
.xe{left:118.463988pt;}
.x41{left:121.984000pt;}
.x54{left:122.943988pt;}
.x7{left:127.103988pt;}
.x9{left:138.946655pt;}
.x10{left:141.506655pt;}
.xa{left:142.466655pt;}
.x14{left:151.106655pt;}
.x29{left:202.013333pt;}
.x5{left:221.533333pt;}
.x25{left:230.720000pt;}
.x21{left:232.640000pt;}
.x23{left:233.600000pt;}
.x22{left:243.200000pt;}
.x24{left:244.160000pt;}
.x61{left:248.000000pt;}
.x11{left:252.573333pt;}
.x60{left:255.040000pt;}
.x5e{left:256.320000pt;}
.x5c{left:257.920000pt;}
.x2b{left:263.133333pt;}
.x8{left:265.693322pt;}
.x5f{left:268.480000pt;}
.x5b{left:272.000000pt;}
.x5d{left:277.760000pt;}
.x44{left:283.653333pt;}
.x55{left:296.640000pt;}
.x56{left:310.720000pt;}
.x2d{left:325.573333pt;}
.x4f{left:328.133333pt;}
.x20{left:337.600000pt;}
.xb{left:348.613322pt;}
.xd{left:353.439988pt;}
.x2e{left:364.640000pt;}
.x57{left:367.360000pt;}
.x45{left:370.400000pt;}
.x3{left:380.959988pt;}
.xc{left:382.239988pt;}
.x42{left:384.160000pt;}
.x62{left:387.520000pt;}
.x2{left:396.319988pt;}
.x12{left:404.640000pt;}
.x63{left:410.240000pt;}
.x46{left:411.680000pt;}
.x16{left:415.360000pt;}
.x2f{left:417.440000pt;}
.x1b{left:426.240000pt;}
.x17{left:428.480000pt;}
.x1d{left:430.720000pt;}
.x19{left:432.320000pt;}
.x58{left:433.600000pt;}
.x1c{left:434.560000pt;}
.x18{left:436.160000pt;}
.x59{left:444.480000pt;}
.x47{left:453.306667pt;}
.x1a{left:476.160000pt;}
.x1f{left:484.160000pt;}
.x1e{left:486.400000pt;}
.x48{left:494.906667pt;}
.x50{left:497.146667pt;}
.x15{left:502.586655pt;}
.x5a{left:505.600000pt;}
.x30{left:525.986667pt;}
.x49{left:538.146667pt;}
.x13{left:555.746667pt;}
.x32{left:573.986667pt;}
.x33{left:614.653333pt;}
.x34{left:653.373333pt;}
.x52{left:657.213333pt;}
}




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