
    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_fdb0009a716d0601bc4ae196.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.153000;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_bfb78d7651f864038a39cef6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.153000;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_7e1a7f34af83f55249058a84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.146000;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_379909dcd72817cbef97d67b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_be760399fff08e5a9723a2de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.779785;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_4a033f7397ddeff08b20eedf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8fc3ae210e33ad2033cd5e1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_ddc8575eee9f551b3c804a6c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_ced9b5b2fe24b20db38d89ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136000;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_d51b2eb61063b1f833566c0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.146000;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;}
.ls1b{letter-spacing:-0.810000px;}
.ls24{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.618000px;}
.ls6{letter-spacing:-0.449400px;}
.ls1f{letter-spacing:-0.417600px;}
.ls8{letter-spacing:-0.299400px;}
.ls15{letter-spacing:-0.273600px;}
.ls1e{letter-spacing:-0.233400px;}
.lsa{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.115200px;}
.ls5{letter-spacing:-0.109200px;}
.ls27{letter-spacing:-0.063600px;}
.ls4{letter-spacing:-0.054720px;}
.ls29{letter-spacing:-0.048960px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.025920px;}
.ls2d{letter-spacing:0.033600px;}
.lsb{letter-spacing:0.040320px;}
.ls11{letter-spacing:0.057600px;}
.ls19{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.080400px;}
.lse{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.147000px;}
.ls32{letter-spacing:0.152400px;}
.ls2e{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.188640px;}
.ls9{letter-spacing:0.198720px;}
.ls12{letter-spacing:0.222000px;}
.ls1{letter-spacing:0.237600px;}
.ls17{letter-spacing:0.244800px;}
.lsf{letter-spacing:0.247800px;}
.ls10{letter-spacing:0.270600px;}
.ls2{letter-spacing:0.270720px;}
.ls2f{letter-spacing:0.279600px;}
.ls14{letter-spacing:0.282000px;}
.ls1a{letter-spacing:0.302400px;}
.ls33{letter-spacing:0.322800px;}
.ls13{letter-spacing:0.345600px;}
.ls7{letter-spacing:0.354000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.363000px;}
.ls25{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.966000px;}
.ls22{letter-spacing:1.022400px;}
.ls2b{letter-spacing:31.265280px;}
.ls2a{letter-spacing:34.865280px;}
.ls2c{letter-spacing:39.905280px;}
.lsc{letter-spacing:59.321280px;}
.ls20{letter-spacing:59.345280px;}
.ls21{letter-spacing:68.508000px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws19{word-spacing:-54.000000px;}
.ws9{word-spacing:-31.262400px;}
.wsa{word-spacing:-26.815800px;}
.ws0{word-spacing:-24.897600px;}
.ws1{word-spacing:-24.842880px;}
.ws1a{word-spacing:-22.033200px;}
.ws1b{word-spacing:-21.859200px;}
.ws5{word-spacing:-17.576400px;}
.wsf{word-spacing:-17.568000px;}
.ws24{word-spacing:-17.545200px;}
.ws16{word-spacing:-17.524800px;}
.ws10{word-spacing:-17.504400px;}
.ws20{word-spacing:-17.502000px;}
.wse{word-spacing:-17.493000px;}
.wsd{word-spacing:-17.470200px;}
.ws14{word-spacing:-17.467200px;}
.ws12{word-spacing:-17.444400px;}
.ws1e{word-spacing:-17.403600px;}
.ws23{word-spacing:-17.374800px;}
.ws1c{word-spacing:-17.369400px;}
.wsc{word-spacing:-17.329200px;}
.ws15{word-spacing:-17.302800px;}
.ws13{word-spacing:-17.248320px;}
.ws2{word-spacing:-17.222400px;}
.ws1f{word-spacing:-17.173440px;}
.ws1d{word-spacing:-17.158800px;}
.ws3{word-spacing:-17.113200px;}
.ws22{word-spacing:-17.107200px;}
.ws8{word-spacing:-17.078400px;}
.ws11{word-spacing:-16.948800px;}
.ws6{word-spacing:-16.923000px;}
.ws4{word-spacing:-16.773000px;}
.ws21{word-spacing:-16.604400px;}
.ws17{word-spacing:-16.412400px;}
.ws18{word-spacing:-12.309000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-15.464880px;}
._10{margin-left:-14.150640px;}
._11{margin-left:-12.615240px;}
._13{margin-left:-11.298480px;}
._d{margin-left:-9.109440px;}
._f{margin-left:-7.756560px;}
._e{margin-left:-5.250960px;}
._14{margin-left:-3.600000px;}
._6{margin-left:-2.158080px;}
._0{margin-left:-1.032000px;}
._1{width:1.098000px;}
._3{width:2.318400px;}
._4{width:3.350400px;}
._5{width:4.371840px;}
._15{width:5.923440px;}
._16{width:7.948800px;}
._a{width:9.803520px;}
._9{width:11.114880px;}
._17{width:12.983040px;}
._18{width:14.039040px;}
._19{width:15.110400px;}
._2{width:16.162560px;}
._23{width:19.324800px;}
._1e{width:20.352960px;}
._21{width:21.566400px;}
._27{width:23.554080px;}
._1c{width:24.641280px;}
._1d{width:25.893120px;}
._1a{width:27.130560px;}
._1b{width:28.521600px;}
._20{width:29.787120px;}
._28{width:32.457600px;}
._29{width:33.726720px;}
._b{width:35.671680px;}
._c{width:36.700800px;}
._7{width:37.923840px;}
._8{width:39.019200px;}
._22{width:41.929920px;}
._26{width:46.301760px;}
._24{width:73.460160px;}
._25{width:75.088320px;}
._1f{width:279.532800px;}
.fc4{color:transparent;}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(58,55,54);}
.fs7{font-size:2.880000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y201{bottom:4.860000px;}
.y209{bottom:8.100000px;}
.y282{bottom:8.145000px;}
.y204{bottom:8.280000px;}
.y1c{bottom:18.180000px;}
.y184{bottom:18.210000px;}
.y10e{bottom:18.225000px;}
.y144{bottom:18.354000px;}
.y1e{bottom:18.360000px;}
.y39{bottom:18.390000px;}
.y2a{bottom:18.405000px;}
.y23{bottom:19.440000px;}
.y35{bottom:20.160000px;}
.y9d{bottom:21.240000px;}
.y14{bottom:25.020000px;}
.y17{bottom:25.245000px;}
.y245{bottom:27.354000px;}
.y1ed{bottom:27.360000px;}
.y266{bottom:34.014000px;}
.y206{bottom:34.020000px;}
.y27c{bottom:34.050000px;}
.y278{bottom:34.065000px;}
.y273{bottom:34.194000px;}
.y203{bottom:34.200000px;}
.y1eb{bottom:36.000000px;}
.y180{bottom:36.354000px;}
.y19{bottom:38.340000px;}
.yff{bottom:45.174000px;}
.y134{bottom:45.180000px;}
.y179{bottom:45.210000px;}
.y1f2{bottom:45.225000px;}
.y112{bottom:45.354000px;}
.y28{bottom:45.360000px;}
.y25{bottom:45.390000px;}
.y23c{bottom:45.405000px;}
.yf8{bottom:54.180000px;}
.y183{bottom:54.210000px;}
.y10d{bottom:54.225000px;}
.y129{bottom:54.354000px;}
.y103{bottom:54.360000px;}
.y24c{bottom:54.390000px;}
.y14b{bottom:54.405000px;}
.y285{bottom:59.760000px;}
.y27b{bottom:59.790000px;}
.y265{bottom:59.934000px;}
.y260{bottom:59.940000px;}
.y275{bottom:59.970000px;}
.y277{bottom:59.985000px;}
.y18{bottom:65.700000px;}
.yec{bottom:66.780000px;}
.y17f{bottom:72.174000px;}
.y1f7{bottom:72.180000px;}
.y1f1{bottom:72.225000px;}
.y2e{bottom:72.360000px;}
.y299{bottom:72.405000px;}
.y111{bottom:81.174000px;}
.y133{bottom:81.180000px;}
.yf7{bottom:81.210000px;}
.y12c{bottom:81.354000px;}
.y102{bottom:81.360000px;}
.y24b{bottom:81.390000px;}
.y242{bottom:81.405000px;}
.y25f{bottom:85.680000px;}
.y27a{bottom:85.710000px;}
.y263{bottom:85.725000px;}
.y269{bottom:85.860000px;}
.y271{bottom:85.905000px;}
.y1f6{bottom:89.820000px;}
.y130{bottom:90.180000px;}
.y122{bottom:90.210000px;}
.yfd{bottom:90.225000px;}
.y128{bottom:90.354000px;}
.y13b{bottom:90.360000px;}
.y18b{bottom:90.390000px;}
.y191{bottom:93.780000px;}
.y238{bottom:93.816000px;}
.yeb{bottom:94.176000px;}
.y1f5{bottom:99.180000px;}
.y1f0{bottom:99.225000px;}
.y12b{bottom:108.174000px;}
.y18f{bottom:108.210000px;}
.y106{bottom:108.225000px;}
.y13d{bottom:108.360000px;}
.y101{bottom:108.390000px;}
.y287{bottom:111.465000px;}
.y25e{bottom:111.600000px;}
.y26e{bottom:111.630000px;}
.y262{bottom:111.645000px;}
.y1e9{bottom:112.320000px;}
.y251{bottom:112.356000px;}
.y22c{bottom:112.680000px;}
.y1f8{bottom:116.460000px;}
.y110{bottom:116.856000px;}
.y3a{bottom:117.000000px;}
.y264{bottom:117.036000px;}
.y127{bottom:117.174000px;}
.y132{bottom:117.180000px;}
.yf6{bottom:117.210000px;}
.y10c{bottom:117.225000px;}
.yfe{bottom:122.976000px;}
.y18a{bottom:126.174000px;}
.y12f{bottom:126.180000px;}
.y121{bottom:126.210000px;}
.yfc{bottom:126.225000px;}
.y17e{bottom:126.576000px;}
.yb3{bottom:127.800000px;}
.y123{bottom:128.016000px;}
.y159{bottom:128.916000px;}
.y272{bottom:129.276000px;}
.yc9{bottom:134.820000px;}
.y140{bottom:135.219000px;}
.y13e{bottom:136.296000px;}
.y185{bottom:137.016000px;}
.y12{bottom:137.340000px;}
.y25d{bottom:137.370000px;}
.y26c{bottom:137.385000px;}
.y27e{bottom:137.520000px;}
.y268{bottom:137.550000px;}
.y270{bottom:137.565000px;}
.y244{bottom:137.736000px;}
.y1b1{bottom:138.240000px;}
.y1e8{bottom:139.320000px;}
.y218{bottom:140.760000px;}
.y9c{bottom:143.460000px;}
.y75{bottom:143.640000px;}
.y131{bottom:144.180000px;}
.yf5{bottom:144.210000px;}
.y12a{bottom:144.219000px;}
.y105{bottom:144.225000px;}
.y57{bottom:147.600000px;}
.y22b{bottom:148.680000px;}
.y12e{bottom:153.180000px;}
.y13a{bottom:153.210000px;}
.y126{bottom:153.219000px;}
.y153{bottom:153.225000px;}
.y38{bottom:153.720000px;}
.y27f{bottom:155.190000px;}
.y29e{bottom:158.250000px;}
.y1d4{bottom:161.490000px;}
.y120{bottom:162.210000px;}
.y13f{bottom:162.219000px;}
.yfb{bottom:162.225000px;}
.y217{bottom:162.750000px;}
.y25c{bottom:163.290000px;}
.y26b{bottom:163.305000px;}
.yb2{bottom:163.830000px;}
.y14c{bottom:164.010000px;}
.y1e7{bottom:166.350000px;}
.yc8{bottom:170.670000px;}
.y13c{bottom:171.210000px;}
.y16a{bottom:171.219000px;}
.y10b{bottom:171.225000px;}
.y143{bottom:172.290000px;}
.y1b0{bottom:174.270000px;}
.ye3{bottom:174.630000px;}
.y22a{bottom:175.710000px;}
.y250{bottom:176.070000px;}
.y9b{bottom:179.490000px;}
.y74{bottom:179.670000px;}
.yf4{bottom:180.210000px;}
.y125{bottom:180.219000px;}
.y152{bottom:180.225000px;}
.y56{bottom:183.630000px;}
.yf9{bottom:186.690000px;}
.y11{bottom:187.230000px;}
.yfa{bottom:189.045000px;}
.y139{bottom:189.210000px;}
.y37{bottom:190.470000px;}
.y1d3{bottom:192.630000px;}
.y1e6{bottom:193.350000px;}
.y29d{bottom:193.530000px;}
.y261{bottom:195.330000px;}
.yc7{bottom:197.670000px;}
.y11f{bottom:198.210000px;}
.y189{bottom:198.219000px;}
.y158{bottom:198.225000px;}
.y182{bottom:198.255000px;}
.yb1{bottom:199.650000px;}
.y229{bottom:202.710000px;}
.y216{bottom:206.130000px;}
.y8d{bottom:206.490000px;}
.y169{bottom:207.039000px;}
.y10a{bottom:207.075000px;}
.y26f{bottom:207.570000px;}
.y10{bottom:207.930000px;}
.y142{bottom:208.290000px;}
.y1af{bottom:210.270000px;}
.y243{bottom:210.450000px;}
.ye2{bottom:210.630000px;}
.y73{bottom:215.490000px;}
.yf3{bottom:216.030000px;}
.y18e{bottom:216.075000px;}
.y124{bottom:216.219000px;}
.y151{bottom:216.225000px;}
.y10f{bottom:216.570000px;}
.y16d{bottom:217.290000px;}
.y55{bottom:219.630000px;}
.y1d2{bottom:223.770000px;}
.yc6{bottom:224.670000px;}
.y138{bottom:225.210000px;}
.y188{bottom:225.219000px;}
.y36{bottom:227.190000px;}
.y1e5{bottom:229.350000px;}
.y168{bottom:234.039000px;}
.y109{bottom:234.075000px;}
.y11e{bottom:234.210000px;}
.y157{bottom:234.225000px;}
.yb0{bottom:235.650000px;}
.y1ae{bottom:237.270000px;}
.y228{bottom:238.530000px;}
.y24f{bottom:239.790000px;}
.y8c{bottom:242.490000px;}
.y150{bottom:243.225000px;}
.y141{bottom:244.290000px;}
.ye1{bottom:246.630000px;}
.y241{bottom:247.170000px;}
.y72{bottom:251.490000px;}
.yc5{bottom:251.670000px;}
.yf2{bottom:252.075000px;}
.y187{bottom:252.219000px;}
.y17d{bottom:253.110000px;}
.y107{bottom:253.290000px;}
.y54{bottom:255.630000px;}
.y1e4{bottom:256.170000px;}
.y1d1{bottom:256.530000px;}
.y215{bottom:258.510000px;}
.y156{bottom:261.045000px;}
.y137{bottom:261.210000px;}
.y34{bottom:263.910000px;}
.y1ad{bottom:264.270000px;}
.y167{bottom:270.039000px;}
.y108{bottom:270.075000px;}
.y11d{bottom:270.255000px;}
.yaf{bottom:271.650000px;}
.y29c{bottom:274.035000px;}
.y227{bottom:274.530000px;}
.y24e{bottom:276.555000px;}
.y8b{bottom:278.490000px;}
.y186{bottom:279.039000px;}
.y14f{bottom:279.045000px;}
.y18d{bottom:279.075000px;}
.ye0{bottom:282.630000px;}
.y1e3{bottom:283.170000px;}
.y214{bottom:285.150000px;}
.y27d{bottom:285.195000px;}
.y71{bottom:287.490000px;}
.y17c{bottom:289.155000px;}
.y53{bottom:291.450000px;}
.y1d0{bottom:292.530000px;}
.y166{bottom:297.039000px;}
.y155{bottom:297.075000px;}
.y136{bottom:297.210000px;}
.y1ac{bottom:300.090000px;}
.y226{bottom:301.530000px;}
.y33{bottom:302.610000px;}
.y11c{bottom:306.075000px;}
.yae{bottom:307.650000px;}
.y1e2{bottom:310.170000px;}
.y284{bottom:311.115000px;}
.y213{bottom:311.790000px;}
.y8a{bottom:314.490000px;}
.y135{bottom:316.875000px;}
.ydf{bottom:318.450000px;}
.y1cf{bottom:319.530000px;}
.y9a{bottom:323.310000px;}
.y70{bottom:323.490000px;}
.y165{bottom:324.069000px;}
.y118{bottom:324.075000px;}
.y17b{bottom:325.155000px;}
.y25b{bottom:325.335000px;}
.y1ab{bottom:327.090000px;}
.y52{bottom:327.450000px;}
.y225{bottom:328.530000px;}
.y154{bottom:333.075000px;}
.y1e1{bottom:337.170000px;}
.y212{bottom:338.250000px;}
.y32{bottom:339.330000px;}
.y24d{bottom:340.095000px;}
.y11b{bottom:342.075000px;}
.yad{bottom:343.650000px;}
.y1ce{bottom:346.530000px;}
.y240{bottom:346.935000px;}
.y89{bottom:350.310000px;}
.yc4{bottom:350.490000px;}
.y1aa{bottom:354.090000px;}
.yde{bottom:354.450000px;}
.y224{bottom:355.530000px;}
.y99{bottom:359.310000px;}
.y6f{bottom:359.490000px;}
.y164{bottom:359.889000px;}
.y117{bottom:360.075000px;}
.y113{bottom:362.595000px;}
.y51{bottom:363.450000px;}
.y26d{bottom:363.495000px;}
.y1e0{bottom:364.170000px;}
.y211{bottom:364.890000px;}
.y14e{bottom:369.075000px;}
.y1cd{bottom:373.530000px;}
.y31{bottom:376.050000px;}
.yc3{bottom:377.490000px;}
.y11a{bottom:378.075000px;}
.y181{bottom:378.105000px;}
.yac{bottom:379.650000px;}
.y1a9{bottom:381.090000px;}
.y223{bottom:382.530000px;}
.y88{bottom:386.310000px;}
.y163{bottom:386.889000px;}
.y116{bottom:387.075000px;}
.y17a{bottom:388.155000px;}
.ydd{bottom:390.450000px;}
.y16{bottom:390.990000px;}
.y1df{bottom:391.170000px;}
.y210{bottom:391.530000px;}
.y29b{bottom:391.575000px;}
.yf1{bottom:394.275000px;}
.yf{bottom:395.310000px;}
.y6e{bottom:395.490000px;}
.y14d{bottom:396.075000px;}
.y50{bottom:399.450000px;}
.y1cc{bottom:400.530000px;}
.y24a{bottom:403.815000px;}
.y190{bottom:408.135000px;}
.y23f{bottom:410.655000px;}
.y30{bottom:412.815000px;}
.yc2{bottom:413.535000px;}
.y162{bottom:413.889000px;}
.y119{bottom:414.075000px;}
.yab{bottom:415.515000px;}
.y1de{bottom:418.035000px;}
.y20f{bottom:418.215000px;}
.y222{bottom:418.395000px;}
.y87{bottom:422.355000px;}
.y115{bottom:423.075000px;}
.y178{bottom:424.155000px;}
.y18c{bottom:424.875000px;}
.ydc{bottom:426.495000px;}
.y1cb{bottom:427.395000px;}
.y6d{bottom:431.355000px;}
.y170{bottom:431.940000px;}
.y254{bottom:432.075000px;}
.yaa{bottom:434.055000px;}
.y15{bottom:434.595000px;}
.y4f{bottom:435.495000px;}
.y279{bottom:441.075000px;}
.y1a8{bottom:443.955000px;}
.y20e{bottom:444.675000px;}
.y221{bottom:445.395000px;}
.y253{bottom:448.815000px;}
.yc1{bottom:449.535000px;}
.y161{bottom:449.889000px;}
.y114{bottom:450.105000px;}
.y2f{bottom:450.975000px;}
.y1ca{bottom:454.395000px;}
.y29a{bottom:455.325000px;}
.y1dd{bottom:458.175000px;}
.y86{bottom:458.355000px;}
.y171{bottom:458.940000px;}
.ye{bottom:459.075000px;}
.ydb{bottom:462.495000px;}
.y283{bottom:466.845000px;}
.y6c{bottom:467.355000px;}
.y16f{bottom:467.940000px;}
.ya9{bottom:470.775000px;}
.y1a7{bottom:470.955000px;}
.y4e{bottom:471.315000px;}
.y23e{bottom:474.225000px;}
.y160{bottom:476.889000px;}
.y13{bottom:479.595000px;}
.y1c9{bottom:481.395000px;}
.yc0{bottom:485.355000px;}
.y177{bottom:487.005000px;}
.y2b3{bottom:492.375000px;}
.y26a{bottom:493.485000px;}
.y85{bottom:494.355000px;}
.y16e{bottom:494.940000px;}
.y1a6{bottom:497.955000px;}
.yda{bottom:498.315000px;}
.yd{bottom:501.735000px;}
.y288{bottom:502.485000px;}
.y98{bottom:503.175000px;}
.y6b{bottom:503.355000px;}
.y249{bottom:503.565000px;}
.y4d{bottom:507.315000px;}
.y220{bottom:508.395000px;}
.ybf{bottom:512.355000px;}
.y252{bottom:512.565000px;}
.y27{bottom:512.715000px;}
.y15f{bottom:512.934000px;}
.y1c8{bottom:517.395000px;}
.y286{bottom:519.405000px;}
.y1dc{bottom:520.275000px;}
.y176{bottom:523.005000px;}
.y20d{bottom:524.595000px;}
.y2b2{bottom:528.195000px;}
.y84{bottom:530.175000px;}
.y1a5{bottom:533.955000px;}
.yd9{bottom:534.315000px;}
.y25a{bottom:534.345000px;}
.y23d{bottom:537.945000px;}
.y97{bottom:539.175000px;}
.y6a{bottom:539.355000px;}
.y104{bottom:541.725000px;}
.y4c{bottom:543.315000px;}
.ya8{bottom:544.035000px;}
.yc{bottom:544.395000px;}
.y1db{bottom:547.275000px;}
.y15e{bottom:548.754000px;}
.y20c{bottom:551.055000px;}
.y1c7{bottom:553.395000px;}
.y2b1{bottom:555.195000px;}
.y175{bottom:559.005000px;}
.yd8{bottom:561.315000px;}
.y83{bottom:566.175000px;}
.ybe{bottom:566.355000px;}
.y1a4{bottom:569.955000px;}
.y21f{bottom:571.215000px;}
.y298{bottom:572.865000px;}
.y1da{bottom:574.275000px;}
.y96{bottom:575.175000px;}
.y69{bottom:575.355000px;}
.y26{bottom:576.435000px;}
.y20b{bottom:577.695000px;}
.y14a{bottom:578.445000px;}
.y4b{bottom:579.315000px;}
.y1c6{bottom:580.215000px;}
.ya7{bottom:580.755000px;}
.y2b0{bottom:582.195000px;}
.y15d{bottom:584.754000px;}
.yb{bottom:587.235000px;}
.yd7{bottom:588.315000px;}
.y174{bottom:595.005000px;}
.y276{bottom:596.805000px;}
.y1a3{bottom:596.955000px;}
.y21e{bottom:598.215000px;}
.y1d9{bottom:601.275000px;}
.y23b{bottom:601.665000px;}
.y82{bottom:602.175000px;}
.ybd{bottom:602.355000px;}
.y248{bottom:603.105000px;}
.y20a{bottom:604.335000px;}
.y259{bottom:605.085000px;}
.y1c5{bottom:607.215000px;}
.y68{bottom:611.175000px;}
.y24{bottom:614.235000px;}
.y4a{bottom:615.315000px;}
.ya6{bottom:617.475000px;}
.y2af{bottom:618.195000px;}
.y15c{bottom:620.754000px;}
.y281{bottom:622.725000px;}
.y1a2{bottom:623.775000px;}
.y21d{bottom:625.215000px;}
.ybc{bottom:629.175000px;}
.ya{bottom:629.895000px;}
.y173{bottom:630.870000px;}
.y208{bottom:630.975000px;}
.y258{bottom:632.130000px;}
.y12d{bottom:632.490000px;}
.y1d8{bottom:637.095000px;}
.y81{bottom:638.175000px;}
.y247{bottom:639.870000px;}
.y1c4{bottom:643.215000px;}
.y2ae{bottom:645.195000px;}
.y67{bottom:647.175000px;}
.y149{bottom:650.490000px;}
.y49{bottom:651.315000px;}
.y21c{bottom:652.215000px;}
.ya5{bottom:654.225000px;}
.ybb{bottom:656.205000px;}
.y15b{bottom:656.754000px;}
.y207{bottom:657.465000px;}
.y257{bottom:659.130000px;}
.y1a1{bottom:659.805000px;}
.y1d7{bottom:664.125000px;}
.yf0{bottom:664.710000px;}
.y297{bottom:665.070000px;}
.y23a{bottom:665.430000px;}
.y9{bottom:665.925000px;}
.y172{bottom:666.870000px;}
.y1c3{bottom:670.245000px;}
.y2ad{bottom:672.045000px;}
.y80{bottom:674.205000px;}
.y267{bottom:675.150000px;}
.yd6{bottom:678.165000px;}
.y22{bottom:679.425000px;}
.y66{bottom:683.205000px;}
.y15a{bottom:683.784000px;}
.y205{bottom:684.105000px;}
.y148{bottom:686.310000px;}
.y1d6{bottom:686.625000px;}
.y48{bottom:687.165000px;}
.y21b{bottom:688.245000px;}
.ya4{bottom:690.945000px;}
.y1a0{bottom:695.805000px;}
.y1c2{bottom:697.245000px;}
.y2ac{bottom:699.045000px;}
.y256{bottom:699.270000px;}
.yef{bottom:703.050000px;}
.y246{bottom:703.590000px;}
.y100{bottom:704.310000px;}
.yd5{bottom:705.165000px;}
.y8{bottom:708.585000px;}
.y1d5{bottom:708.765000px;}
.y65{bottom:710.205000px;}
.y2d{bottom:717.945000px;}
.y95{bottom:719.025000px;}
.y296{bottom:720.150000px;}
.y147{bottom:722.310000px;}
.y19f{bottom:722.805000px;}
.y47{bottom:723.165000px;}
.y1c1{bottom:724.245000px;}
.y1f4{bottom:725.505000px;}
.y2ab{bottom:726.045000px;}
.ya3{bottom:727.665000px;}
.y16c{bottom:730.590000px;}
.y202{bottom:736.485000px;}
.y64{bottom:737.205000px;}
.yd4{bottom:741.165000px;}
.y7f{bottom:746.025000px;}
.yba{bottom:746.205000px;}
.y295{bottom:747.150000px;}
.y293{bottom:747.825000px;}
.y19e{bottom:749.805000px;}
.y1c0{bottom:751.065000px;}
.y7{bottom:751.245000px;}
.y274{bottom:752.730000px;}
.y94{bottom:755.025000px;}
.y239{bottom:756.150000px;}
.yee{bottom:757.950000px;}
.y146{bottom:758.310000px;}
.y46{bottom:759.165000px;}
.y21a{bottom:760.065000px;}
.y2aa{bottom:762.045000px;}
.y63{bottom:764.205000px;}
.ya2{bottom:764.385000px;}
.y16b{bottom:767.310000px;}
.y255{bottom:768.930000px;}
.yb9{bottom:773.205000px;}
.y292{bottom:774.825000px;}
.y19d{bottom:776.625000px;}
.yd3{bottom:777.165000px;}
.y280{bottom:778.650000px;}
.y7e{bottom:782.025000px;}
.y237{bottom:783.825000px;}
.y1bf{bottom:787.065000px;}
.y294{bottom:787.290000px;}
.ye8{bottom:787.785000px;}
.y2a9{bottom:789.045000px;}
.y200{bottom:790.485000px;}
.y62{bottom:791.025000px;}
.yed{bottom:793.590000px;}
.y6{bottom:794.085000px;}
.y145{bottom:794.310000px;}
.y45{bottom:795.165000px;}
.yb8{bottom:800.025000px;}
.ya1{bottom:801.105000px;}
.y2c{bottom:808.665000px;}
.y291{bottom:810.825000px;}
.y19c{bottom:812.625000px;}
.yd2{bottom:813.165000px;}
.ye7{bottom:814.785000px;}
.y2a8{bottom:816.045000px;}
.y61{bottom:818.025000px;}
.y236{bottom:819.825000px;}
.y1be{bottom:823.065000px;}
.y93{bottom:827.025000px;}
.y44{bottom:831.165000px;}
.y1ff{bottom:832.065000px;}
.y5{bottom:834.045000px;}
.ya0{bottom:837.825000px;}
.ye6{bottom:841.785000px;}
.y2a7{bottom:842.865000px;}
.y60{bottom:845.025000px;}
.y2b{bottom:845.385000px;}
.y235{bottom:846.825000px;}
.yea{bottom:847.440000px;}
.y19b{bottom:848.625000px;}
.yd1{bottom:848.985000px;}
.y1bd{bottom:850.065000px;}
.y7d{bottom:854.025000px;}
.y1fe{bottom:859.065000px;}
.y1f3{bottom:860.325000px;}
.y92{bottom:863.025000px;}
.y290{bottom:864.645000px;}
.y43{bottom:866.985000px;}
.ye5{bottom:868.785000px;}
.y2a6{bottom:869.865000px;}
.y5f{bottom:872.025000px;}
.y9f{bottom:874.545000px;}
.y19a{bottom:875.625000px;}
.y1bc{bottom:877.065000px;}
.ye9{bottom:878.580000px;}
.yb7{bottom:881.025000px;}
.y234{bottom:882.645000px;}
.y29{bottom:883.545000px;}
.yd0{bottom:884.985000px;}
.y7c{bottom:890.025000px;}
.y1fd{bottom:895.065000px;}
.y2a5{bottom:896.865000px;}
.y1ef{bottom:897.045000px;}
.y5e{bottom:899.025000px;}
.y28f{bottom:900.690000px;}
.y199{bottom:902.670000px;}
.y42{bottom:903.030000px;}
.ye4{bottom:908.970000px;}
.y233{bottom:909.690000px;}
.y9e{bottom:911.310000px;}
.y1bb{bottom:912.930000px;}
.yb6{bottom:917.070000px;}
.ycf{bottom:921.030000px;}
.y1fc{bottom:921.930000px;}
.y7b{bottom:925.890000px;}
.y5d{bottom:926.070000px;}
.y28e{bottom:927.690000px;}
.y21{bottom:929.670000px;}
.y2a4{bottom:932.910000px;}
.y91{bottom:934.890000px;}
.y232{bottom:936.690000px;}
.y41{bottom:939.030000px;}
.y1ba{bottom:939.930000px;}
.yb5{bottom:944.070000px;}
.y20{bottom:948.030000px;}
.y1fb{bottom:948.930000px;}
.y4{bottom:951.990000px;}
.y5c{bottom:952.890000px;}
.yce{bottom:957.030000px;}
.y2a3{bottom:959.910000px;}
.y7a{bottom:961.890000px;}
.y231{bottom:963.690000px;}
.y198{bottom:965.490000px;}
.y90{bottom:970.890000px;}
.y40{bottom:975.030000px;}
.y1b9{bottom:975.930000px;}
.y1f{bottom:984.750000px;}
.y1fa{bottom:984.930000px;}
.y2a2{bottom:986.730000px;}
.y3{bottom:988.530000px;}
.y5b{bottom:988.890000px;}
.y28d{bottom:990.690000px;}
.ycd{bottom:993.030000px;}
.y79{bottom:997.890000px;}
.y230{bottom:999.690000px;}
.y197{bottom:1001.490000px;}
.y8f{bottom:1006.890000px;}
.y3f{bottom:1011.030000px;}
.y1b8{bottom:1011.930000px;}
.y2a1{bottom:1013.730000px;}
.y1ee{bottom:1014.630000px;}
.y5a{bottom:1015.890000px;}
.y28c{bottom:1017.510000px;}
.y1d{bottom:1021.470000px;}
.yb4{bottom:1024.890000px;}
.y22f{bottom:1026.510000px;}
.y196{bottom:1028.490000px;}
.ycc{bottom:1029.030000px;}
.y78{bottom:1033.890000px;}
.y1b7{bottom:1038.930000px;}
.y2a0{bottom:1040.730000px;}
.y8e{bottom:1042.890000px;}
.y3e{bottom:1047.030000px;}
.y59{bottom:1051.890000px;}
.y22e{bottom:1053.510000px;}
.y195{bottom:1055.490000px;}
.y1b{bottom:1059.810000px;}
.ycb{bottom:1064.850000px;}
.y1b6{bottom:1065.930000px;}
.y77{bottom:1071.510000px;}
.y1ec{bottom:1078.350000px;}
.y58{bottom:1078.890000px;}
.y28b{bottom:1080.510000px;}
.y194{bottom:1082.490000px;}
.y3d{bottom:1082.850000px;}
.y29f{bottom:1084.290000px;}
.y1b5{bottom:1092.750000px;}
.y22d{bottom:1093.650000px;}
.yca{bottom:1100.850000px;}
.y28a{bottom:1107.510000px;}
.y3c{bottom:1109.850000px;}
.y193{bottom:1118.310000px;}
.y1b4{bottom:1119.750000px;}
.y1a{bottom:1122.450000px;}
.y76{bottom:1126.050000px;}
.y219{bottom:1128.750000px;}
.y3b{bottom:1136.850000px;}
.y1b3{bottom:1146.750000px;}
.y289{bottom:1147.680000px;}
.y1ea{bottom:1151.100000px;}
.y192{bottom:1153.980000px;}
.y1f9{bottom:1155.780000px;}
.y1b2{bottom:1182.780000px;}
.y2{bottom:1216.800000px;}
.y1{bottom:1247.940000px;}
.h2d{height:2.629440px;}
.h3e{height:22.500000px;}
.h43{height:25.740000px;}
.h42{height:25.776000px;}
.h41{height:25.920000px;}
.h7{height:32.868000px;}
.ha{height:35.820000px;}
.h11{height:35.856000px;}
.hb{height:36.000000px;}
.hf{height:36.036000px;}
.hc{height:37.080000px;}
.h12{height:37.800000px;}
.h8{height:42.660000px;}
.h9{height:42.876000px;}
.h37{height:44.043120px;}
.h18{height:48.924000px;}
.h2{height:49.302000px;}
.h3a{height:50.408640px;}
.h40{height:51.660000px;}
.h4f{height:51.696000px;}
.h3f{height:51.840000px;}
.h46{height:53.544960px;}
.h38{height:54.560880px;}
.h13{height:59.351040px;}
.h6{height:60.013440px;}
.h3{height:60.477120px;}
.h21{height:62.820000px;}
.h31{height:62.856000px;}
.he{height:63.000000px;}
.hd{height:63.036000px;}
.h1d{height:65.232000px;}
.h1f{height:65.736000px;}
.h15{height:68.084282px;}
.h45{height:72.000000px;}
.h2b{height:72.036000px;}
.h1c{height:76.911120px;}
.h49{height:77.580000px;}
.h4c{height:77.616000px;}
.h16{height:80.703984px;}
.h39{height:81.078047px;}
.h5{height:86.758560px;}
.h19{height:87.428880px;}
.h32{height:89.820000px;}
.h10{height:90.000000px;}
.h50{height:90.036000px;}
.h17{height:92.587148px;}
.h25{height:98.820000px;}
.h44{height:99.036000px;}
.h14{height:101.804766px;}
.h35{height:108.036000px;}
.h4{height:109.779120px;}
.h51{height:116.820000px;}
.h3b{height:116.856000px;}
.h22{height:126.036000px;}
.h48{height:129.276000px;}
.h3d{height:134.100000px;}
.h4d{height:155.010000px;}
.h4e{height:155.160000px;}
.h4a{height:155.190000px;}
.h23{height:161.850000px;}
.h3c{height:170.820000px;}
.h2a{height:179.850000px;}
.h4b{height:180.930000px;}
.h28{height:197.850000px;}
.h20{height:206.670000px;}
.h47{height:206.850000px;}
.h27{height:233.850000px;}
.h2c{height:251.895000px;}
.h1e{height:269.715000px;}
.h24{height:287.715000px;}
.h34{height:296.670000px;}
.h36{height:296.715000px;}
.h29{height:314.895000px;}
.h33{height:395.745000px;}
.h2e{height:413.715000px;}
.h26{height:467.745000px;}
.h30{height:512.565000px;}
.h2f{height:701.430000px;}
.h1a{height:893.160000px;}
.h1b{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w21{width:17.640000px;}
.w37{width:43.380000px;}
.w2e{width:43.560000px;}
.w33{width:44.280000px;}
.w20{width:59.256000px;}
.w11{width:95.076000px;}
.wc{width:96.336000px;}
.w1f{width:99.900000px;}
.w14{width:103.860000px;}
.w26{width:116.676000px;}
.w1e{width:117.036000px;}
.wb{width:119.376000px;}
.w2b{width:120.096000px;}
.w25{width:120.816000px;}
.w7{width:123.876000px;}
.w22{width:135.756000px;}
.w10{width:137.160000px;}
.w2a{width:138.816000px;}
.w24{width:139.536000px;}
.w29{width:147.240000px;}
.w23{width:147.960000px;}
.w27{width:148.176000px;}
.w38{width:156.990000px;}
.w8{width:158.430000px;}
.w28{width:162.930000px;}
.w5{width:169.380000px;}
.wa{width:173.700000px;}
.w13{width:211.935000px;}
.w19{width:219.270000px;}
.w35{width:254.370000px;}
.w4{width:260.670000px;}
.w3{width:260.715000px;}
.w6{width:268.455000px;}
.w34{width:272.775000px;}
.w12{width:275.610000px;}
.w1d{width:276.690000px;}
.w1b{width:292.170000px;}
.w2c{width:313.995000px;}
.w30{width:316.830000px;}
.wd{width:330.555000px;}
.w31{width:369.795000px;}
.w2f{width:404.175000px;}
.w2d{width:470.985000px;}
.we{width:547.710000px;}
.w9{width:552.210000px;}
.w15{width:569.805000px;}
.w36{width:584.175000px;}
.w1a{width:634.065000px;}
.wf{width:721.950000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w39{width:998.790000px;}
.w32{width:1136.520000px;}
.w1c{width:1146.960000px;}
.w17{width:1262.250000px;}
.w18{width:1262.519981px;}
.w16{width:1262.520000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x42{left:9.180000px;}
.x3a{left:11.160000px;}
.x40{left:15.480000px;}
.x4b{left:17.460000px;}
.x4f{left:19.800000px;}
.x3b{left:21.054000px;}
.x41{left:23.040000px;}
.x48{left:25.194000px;}
.x12{left:28.080000px;}
.x47{left:32.040000px;}
.x5b{left:33.120000px;}
.x44{left:34.554000px;}
.x4c{left:37.260000px;}
.x45{left:39.414000px;}
.x3d{left:40.680000px;}
.x4a{left:43.200000px;}
.x3e{left:44.505000px;}
.x4e{left:47.385000px;}
.x4d{left:50.985000px;}
.x11{left:52.020000px;}
.x2c{left:53.999981px;}
.x3f{left:59.970000px;}
.x46{left:61.380000px;}
.xf{left:67.680000px;}
.x43{left:68.976000px;}
.x49{left:73.974000px;}
.x5c{left:77.400000px;}
.x32{left:80.999987px;}
.xe{left:83.205000px;}
.x1b{left:85.536000px;}
.x16{left:87.156000px;}
.x10{left:88.920000px;}
.x34{left:91.115987px;}
.x54{left:99.000000px;}
.x9{left:108.035987px;}
.x25{left:109.476000px;}
.x24{left:116.495987px;}
.x50{left:130.170000px;}
.x23{left:135.035987px;}
.xa{left:139.535987px;}
.x4{left:144.935987px;}
.x22{left:162.029987px;}
.xd{left:185.610000px;}
.x51{left:200.370000px;}
.x5{left:208.649987px;}
.x26{left:214.050000px;}
.x27{left:216.029987px;}
.x1f{left:224.850000px;}
.x5d{left:235.110000px;}
.xc{left:240.869987px;}
.x35{left:244.110000px;}
.x18{left:257.250000px;}
.x1c{left:260.130000px;}
.x28{left:270.074987px;}
.x8{left:273.134987px;}
.x2d{left:274.710000px;}
.x6{left:287.354987px;}
.x3c{left:293.475000px;}
.x36{left:303.375000px;}
.x20{left:320.655000px;}
.x13{left:326.414987px;}
.x2{left:344.954987px;}
.x52{left:350.174987px;}
.x33{left:369.434987px;}
.x58{left:373.215000px;}
.x1d{left:380.235000px;}
.x2b{left:432.074981px;}
.x31{left:439.814987px;}
.x14{left:442.724987px;}
.x7{left:446.684987px;}
.x37{left:456.765000px;}
.x5a{left:474.194981px;}
.x1e{left:477.285000px;}
.x5e{left:483.554981px;}
.x15{left:486.104987px;}
.x55{left:503.895000px;}
.x57{left:509.834981px;}
.x30{left:519.194981px;}
.x19{left:526.425000px;}
.x21{left:596.985000px;}
.x38{left:604.725000px;}
.x3{left:623.489987px;}
.x53{left:624.524981px;}
.x59{left:628.305000px;}
.x29{left:631.364981px;}
.x1a{left:651.030000px;}
.xb{left:716.009987px;}
.x39{left:744.270000px;}
.x2a{left:749.804981px;}
.x1{left:785.309987px;}
.x56{left:821.445000px;}
.x2e{left:909.510000px;}
.x2f{left:917.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.720000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.549333pt;}
.ls6{letter-spacing:-0.399467pt;}
.ls1f{letter-spacing:-0.371200pt;}
.ls8{letter-spacing:-0.266133pt;}
.ls15{letter-spacing:-0.243200pt;}
.ls1e{letter-spacing:-0.207467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.102400pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls27{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:-0.048640pt;}
.ls29{letter-spacing:-0.043520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.023040pt;}
.ls2d{letter-spacing:0.029867pt;}
.lsb{letter-spacing:0.035840pt;}
.ls11{letter-spacing:0.051200pt;}
.ls19{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.071467pt;}
.lse{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.130667pt;}
.ls32{letter-spacing:0.135467pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.167680pt;}
.ls9{letter-spacing:0.176640pt;}
.ls12{letter-spacing:0.197333pt;}
.ls1{letter-spacing:0.211200pt;}
.ls17{letter-spacing:0.217600pt;}
.lsf{letter-spacing:0.220267pt;}
.ls10{letter-spacing:0.240533pt;}
.ls2{letter-spacing:0.240640pt;}
.ls2f{letter-spacing:0.248533pt;}
.ls14{letter-spacing:0.250667pt;}
.ls1a{letter-spacing:0.268800pt;}
.ls33{letter-spacing:0.286933pt;}
.ls13{letter-spacing:0.307200pt;}
.ls7{letter-spacing:0.314667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.322667pt;}
.ls25{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.858667pt;}
.ls22{letter-spacing:0.908800pt;}
.ls2b{letter-spacing:27.791360pt;}
.ls2a{letter-spacing:30.991360pt;}
.ls2c{letter-spacing:35.471360pt;}
.lsc{letter-spacing:52.730027pt;}
.ls20{letter-spacing:52.751360pt;}
.ls21{letter-spacing:60.896000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws19{word-spacing:-48.000000pt;}
.ws9{word-spacing:-27.788800pt;}
.wsa{word-spacing:-23.836267pt;}
.ws0{word-spacing:-22.131200pt;}
.ws1{word-spacing:-22.082560pt;}
.ws1a{word-spacing:-19.585067pt;}
.ws1b{word-spacing:-19.430400pt;}
.ws5{word-spacing:-15.623467pt;}
.wsf{word-spacing:-15.616000pt;}
.ws24{word-spacing:-15.595733pt;}
.ws16{word-spacing:-15.577600pt;}
.ws10{word-spacing:-15.559467pt;}
.ws20{word-spacing:-15.557333pt;}
.wse{word-spacing:-15.549333pt;}
.wsd{word-spacing:-15.529067pt;}
.ws14{word-spacing:-15.526400pt;}
.ws12{word-spacing:-15.506133pt;}
.ws1e{word-spacing:-15.469867pt;}
.ws23{word-spacing:-15.444267pt;}
.ws1c{word-spacing:-15.439467pt;}
.wsc{word-spacing:-15.403733pt;}
.ws15{word-spacing:-15.380267pt;}
.ws13{word-spacing:-15.331840pt;}
.ws2{word-spacing:-15.308800pt;}
.ws1f{word-spacing:-15.265280pt;}
.ws1d{word-spacing:-15.252267pt;}
.ws3{word-spacing:-15.211733pt;}
.ws22{word-spacing:-15.206400pt;}
.ws8{word-spacing:-15.180800pt;}
.ws11{word-spacing:-15.065600pt;}
.ws6{word-spacing:-15.042667pt;}
.ws4{word-spacing:-14.909333pt;}
.ws21{word-spacing:-14.759467pt;}
.ws17{word-spacing:-14.588800pt;}
.ws18{word-spacing:-10.941333pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-13.746560pt;}
._10{margin-left:-12.578347pt;}
._11{margin-left:-11.213547pt;}
._13{margin-left:-10.043093pt;}
._d{margin-left:-8.097280pt;}
._f{margin-left:-6.894720pt;}
._e{margin-left:-4.667520pt;}
._14{margin-left:-3.200000pt;}
._6{margin-left:-1.918293pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.976000pt;}
._3{width:2.060800pt;}
._4{width:2.978133pt;}
._5{width:3.886080pt;}
._15{width:5.265280pt;}
._16{width:7.065600pt;}
._a{width:8.714240pt;}
._9{width:9.879893pt;}
._17{width:11.540480pt;}
._18{width:12.479147pt;}
._19{width:13.431467pt;}
._2{width:14.366720pt;}
._23{width:17.177600pt;}
._1e{width:18.091520pt;}
._21{width:19.170133pt;}
._27{width:20.936960pt;}
._1c{width:21.903360pt;}
._1d{width:23.016107pt;}
._1a{width:24.116053pt;}
._1b{width:25.352533pt;}
._20{width:26.477440pt;}
._28{width:28.851200pt;}
._29{width:29.979307pt;}
._b{width:31.708160pt;}
._c{width:32.622933pt;}
._7{width:33.710080pt;}
._8{width:34.683733pt;}
._22{width:37.271040pt;}
._26{width:41.157120pt;}
._24{width:65.297920pt;}
._25{width:66.745173pt;}
._1f{width:248.473600pt;}
.fs7{font-size:2.560000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y201{bottom:4.320000pt;}
.y209{bottom:7.200000pt;}
.y282{bottom:7.240000pt;}
.y204{bottom:7.360000pt;}
.y1c{bottom:16.160000pt;}
.y184{bottom:16.186667pt;}
.y10e{bottom:16.200000pt;}
.y144{bottom:16.314667pt;}
.y1e{bottom:16.320000pt;}
.y39{bottom:16.346667pt;}
.y2a{bottom:16.360000pt;}
.y23{bottom:17.280000pt;}
.y35{bottom:17.920000pt;}
.y9d{bottom:18.880000pt;}
.y14{bottom:22.240000pt;}
.y17{bottom:22.440000pt;}
.y245{bottom:24.314667pt;}
.y1ed{bottom:24.320000pt;}
.y266{bottom:30.234667pt;}
.y206{bottom:30.240000pt;}
.y27c{bottom:30.266667pt;}
.y278{bottom:30.280000pt;}
.y273{bottom:30.394667pt;}
.y203{bottom:30.400000pt;}
.y1eb{bottom:32.000000pt;}
.y180{bottom:32.314667pt;}
.y19{bottom:34.080000pt;}
.yff{bottom:40.154667pt;}
.y134{bottom:40.160000pt;}
.y179{bottom:40.186667pt;}
.y1f2{bottom:40.200000pt;}
.y112{bottom:40.314667pt;}
.y28{bottom:40.320000pt;}
.y25{bottom:40.346667pt;}
.y23c{bottom:40.360000pt;}
.yf8{bottom:48.160000pt;}
.y183{bottom:48.186667pt;}
.y10d{bottom:48.200000pt;}
.y129{bottom:48.314667pt;}
.y103{bottom:48.320000pt;}
.y24c{bottom:48.346667pt;}
.y14b{bottom:48.360000pt;}
.y285{bottom:53.120000pt;}
.y27b{bottom:53.146667pt;}
.y265{bottom:53.274667pt;}
.y260{bottom:53.280000pt;}
.y275{bottom:53.306667pt;}
.y277{bottom:53.320000pt;}
.y18{bottom:58.400000pt;}
.yec{bottom:59.360000pt;}
.y17f{bottom:64.154667pt;}
.y1f7{bottom:64.160000pt;}
.y1f1{bottom:64.200000pt;}
.y2e{bottom:64.320000pt;}
.y299{bottom:64.360000pt;}
.y111{bottom:72.154667pt;}
.y133{bottom:72.160000pt;}
.yf7{bottom:72.186667pt;}
.y12c{bottom:72.314667pt;}
.y102{bottom:72.320000pt;}
.y24b{bottom:72.346667pt;}
.y242{bottom:72.360000pt;}
.y25f{bottom:76.160000pt;}
.y27a{bottom:76.186667pt;}
.y263{bottom:76.200000pt;}
.y269{bottom:76.320000pt;}
.y271{bottom:76.360000pt;}
.y1f6{bottom:79.840000pt;}
.y130{bottom:80.160000pt;}
.y122{bottom:80.186667pt;}
.yfd{bottom:80.200000pt;}
.y128{bottom:80.314667pt;}
.y13b{bottom:80.320000pt;}
.y18b{bottom:80.346667pt;}
.y191{bottom:83.360000pt;}
.y238{bottom:83.392000pt;}
.yeb{bottom:83.712000pt;}
.y1f5{bottom:88.160000pt;}
.y1f0{bottom:88.200000pt;}
.y12b{bottom:96.154667pt;}
.y18f{bottom:96.186667pt;}
.y106{bottom:96.200000pt;}
.y13d{bottom:96.320000pt;}
.y101{bottom:96.346667pt;}
.y287{bottom:99.080000pt;}
.y25e{bottom:99.200000pt;}
.y26e{bottom:99.226667pt;}
.y262{bottom:99.240000pt;}
.y1e9{bottom:99.840000pt;}
.y251{bottom:99.872000pt;}
.y22c{bottom:100.160000pt;}
.y1f8{bottom:103.520000pt;}
.y110{bottom:103.872000pt;}
.y3a{bottom:104.000000pt;}
.y264{bottom:104.032000pt;}
.y127{bottom:104.154667pt;}
.y132{bottom:104.160000pt;}
.yf6{bottom:104.186667pt;}
.y10c{bottom:104.200000pt;}
.yfe{bottom:109.312000pt;}
.y18a{bottom:112.154667pt;}
.y12f{bottom:112.160000pt;}
.y121{bottom:112.186667pt;}
.yfc{bottom:112.200000pt;}
.y17e{bottom:112.512000pt;}
.yb3{bottom:113.600000pt;}
.y123{bottom:113.792000pt;}
.y159{bottom:114.592000pt;}
.y272{bottom:114.912000pt;}
.yc9{bottom:119.840000pt;}
.y140{bottom:120.194667pt;}
.y13e{bottom:121.152000pt;}
.y185{bottom:121.792000pt;}
.y12{bottom:122.080000pt;}
.y25d{bottom:122.106667pt;}
.y26c{bottom:122.120000pt;}
.y27e{bottom:122.240000pt;}
.y268{bottom:122.266667pt;}
.y270{bottom:122.280000pt;}
.y244{bottom:122.432000pt;}
.y1b1{bottom:122.880000pt;}
.y1e8{bottom:123.840000pt;}
.y218{bottom:125.120000pt;}
.y9c{bottom:127.520000pt;}
.y75{bottom:127.680000pt;}
.y131{bottom:128.160000pt;}
.yf5{bottom:128.186667pt;}
.y12a{bottom:128.194667pt;}
.y105{bottom:128.200000pt;}
.y57{bottom:131.200000pt;}
.y22b{bottom:132.160000pt;}
.y12e{bottom:136.160000pt;}
.y13a{bottom:136.186667pt;}
.y126{bottom:136.194667pt;}
.y153{bottom:136.200000pt;}
.y38{bottom:136.640000pt;}
.y27f{bottom:137.946667pt;}
.y29e{bottom:140.666667pt;}
.y1d4{bottom:143.546667pt;}
.y120{bottom:144.186667pt;}
.y13f{bottom:144.194667pt;}
.yfb{bottom:144.200000pt;}
.y217{bottom:144.666667pt;}
.y25c{bottom:145.146667pt;}
.y26b{bottom:145.160000pt;}
.yb2{bottom:145.626667pt;}
.y14c{bottom:145.786667pt;}
.y1e7{bottom:147.866667pt;}
.yc8{bottom:151.706667pt;}
.y13c{bottom:152.186667pt;}
.y16a{bottom:152.194667pt;}
.y10b{bottom:152.200000pt;}
.y143{bottom:153.146667pt;}
.y1b0{bottom:154.906667pt;}
.ye3{bottom:155.226667pt;}
.y22a{bottom:156.186667pt;}
.y250{bottom:156.506667pt;}
.y9b{bottom:159.546667pt;}
.y74{bottom:159.706667pt;}
.yf4{bottom:160.186667pt;}
.y125{bottom:160.194667pt;}
.y152{bottom:160.200000pt;}
.y56{bottom:163.226667pt;}
.yf9{bottom:165.946667pt;}
.y11{bottom:166.426667pt;}
.yfa{bottom:168.040000pt;}
.y139{bottom:168.186667pt;}
.y37{bottom:169.306667pt;}
.y1d3{bottom:171.226667pt;}
.y1e6{bottom:171.866667pt;}
.y29d{bottom:172.026667pt;}
.y261{bottom:173.626667pt;}
.yc7{bottom:175.706667pt;}
.y11f{bottom:176.186667pt;}
.y189{bottom:176.194667pt;}
.y158{bottom:176.200000pt;}
.y182{bottom:176.226667pt;}
.yb1{bottom:177.466667pt;}
.y229{bottom:180.186667pt;}
.y216{bottom:183.226667pt;}
.y8d{bottom:183.546667pt;}
.y169{bottom:184.034667pt;}
.y10a{bottom:184.066667pt;}
.y26f{bottom:184.506667pt;}
.y10{bottom:184.826667pt;}
.y142{bottom:185.146667pt;}
.y1af{bottom:186.906667pt;}
.y243{bottom:187.066667pt;}
.ye2{bottom:187.226667pt;}
.y73{bottom:191.546667pt;}
.yf3{bottom:192.026667pt;}
.y18e{bottom:192.066667pt;}
.y124{bottom:192.194667pt;}
.y151{bottom:192.200000pt;}
.y10f{bottom:192.506667pt;}
.y16d{bottom:193.146667pt;}
.y55{bottom:195.226667pt;}
.y1d2{bottom:198.906667pt;}
.yc6{bottom:199.706667pt;}
.y138{bottom:200.186667pt;}
.y188{bottom:200.194667pt;}
.y36{bottom:201.946667pt;}
.y1e5{bottom:203.866667pt;}
.y168{bottom:208.034667pt;}
.y109{bottom:208.066667pt;}
.y11e{bottom:208.186667pt;}
.y157{bottom:208.200000pt;}
.yb0{bottom:209.466667pt;}
.y1ae{bottom:210.906667pt;}
.y228{bottom:212.026667pt;}
.y24f{bottom:213.146667pt;}
.y8c{bottom:215.546667pt;}
.y150{bottom:216.200000pt;}
.y141{bottom:217.146667pt;}
.ye1{bottom:219.226667pt;}
.y241{bottom:219.706667pt;}
.y72{bottom:223.546667pt;}
.yc5{bottom:223.706667pt;}
.yf2{bottom:224.066667pt;}
.y187{bottom:224.194667pt;}
.y17d{bottom:224.986667pt;}
.y107{bottom:225.146667pt;}
.y54{bottom:227.226667pt;}
.y1e4{bottom:227.706667pt;}
.y1d1{bottom:228.026667pt;}
.y215{bottom:229.786667pt;}
.y156{bottom:232.040000pt;}
.y137{bottom:232.186667pt;}
.y34{bottom:234.586667pt;}
.y1ad{bottom:234.906667pt;}
.y167{bottom:240.034667pt;}
.y108{bottom:240.066667pt;}
.y11d{bottom:240.226667pt;}
.yaf{bottom:241.466667pt;}
.y29c{bottom:243.586667pt;}
.y227{bottom:244.026667pt;}
.y24e{bottom:245.826667pt;}
.y8b{bottom:247.546667pt;}
.y186{bottom:248.034667pt;}
.y14f{bottom:248.040000pt;}
.y18d{bottom:248.066667pt;}
.ye0{bottom:251.226667pt;}
.y1e3{bottom:251.706667pt;}
.y214{bottom:253.466667pt;}
.y27d{bottom:253.506667pt;}
.y71{bottom:255.546667pt;}
.y17c{bottom:257.026667pt;}
.y53{bottom:259.066667pt;}
.y1d0{bottom:260.026667pt;}
.y166{bottom:264.034667pt;}
.y155{bottom:264.066667pt;}
.y136{bottom:264.186667pt;}
.y1ac{bottom:266.746667pt;}
.y226{bottom:268.026667pt;}
.y33{bottom:268.986667pt;}
.y11c{bottom:272.066667pt;}
.yae{bottom:273.466667pt;}
.y1e2{bottom:275.706667pt;}
.y284{bottom:276.546667pt;}
.y213{bottom:277.146667pt;}
.y8a{bottom:279.546667pt;}
.y135{bottom:281.666667pt;}
.ydf{bottom:283.066667pt;}
.y1cf{bottom:284.026667pt;}
.y9a{bottom:287.386667pt;}
.y70{bottom:287.546667pt;}
.y165{bottom:288.061333pt;}
.y118{bottom:288.066667pt;}
.y17b{bottom:289.026667pt;}
.y25b{bottom:289.186667pt;}
.y1ab{bottom:290.746667pt;}
.y52{bottom:291.066667pt;}
.y225{bottom:292.026667pt;}
.y154{bottom:296.066667pt;}
.y1e1{bottom:299.706667pt;}
.y212{bottom:300.666667pt;}
.y32{bottom:301.626667pt;}
.y24d{bottom:302.306667pt;}
.y11b{bottom:304.066667pt;}
.yad{bottom:305.466667pt;}
.y1ce{bottom:308.026667pt;}
.y240{bottom:308.386667pt;}
.y89{bottom:311.386667pt;}
.yc4{bottom:311.546667pt;}
.y1aa{bottom:314.746667pt;}
.yde{bottom:315.066667pt;}
.y224{bottom:316.026667pt;}
.y99{bottom:319.386667pt;}
.y6f{bottom:319.546667pt;}
.y164{bottom:319.901333pt;}
.y117{bottom:320.066667pt;}
.y113{bottom:322.306667pt;}
.y51{bottom:323.066667pt;}
.y26d{bottom:323.106667pt;}
.y1e0{bottom:323.706667pt;}
.y211{bottom:324.346667pt;}
.y14e{bottom:328.066667pt;}
.y1cd{bottom:332.026667pt;}
.y31{bottom:334.266667pt;}
.yc3{bottom:335.546667pt;}
.y11a{bottom:336.066667pt;}
.y181{bottom:336.093333pt;}
.yac{bottom:337.466667pt;}
.y1a9{bottom:338.746667pt;}
.y223{bottom:340.026667pt;}
.y88{bottom:343.386667pt;}
.y163{bottom:343.901333pt;}
.y116{bottom:344.066667pt;}
.y17a{bottom:345.026667pt;}
.ydd{bottom:347.066667pt;}
.y16{bottom:347.546667pt;}
.y1df{bottom:347.706667pt;}
.y210{bottom:348.026667pt;}
.y29b{bottom:348.066667pt;}
.yf1{bottom:350.466667pt;}
.yf{bottom:351.386667pt;}
.y6e{bottom:351.546667pt;}
.y14d{bottom:352.066667pt;}
.y50{bottom:355.066667pt;}
.y1cc{bottom:356.026667pt;}
.y24a{bottom:358.946667pt;}
.y190{bottom:362.786667pt;}
.y23f{bottom:365.026667pt;}
.y30{bottom:366.946667pt;}
.yc2{bottom:367.586667pt;}
.y162{bottom:367.901333pt;}
.y119{bottom:368.066667pt;}
.yab{bottom:369.346667pt;}
.y1de{bottom:371.586667pt;}
.y20f{bottom:371.746667pt;}
.y222{bottom:371.906667pt;}
.y87{bottom:375.426667pt;}
.y115{bottom:376.066667pt;}
.y178{bottom:377.026667pt;}
.y18c{bottom:377.666667pt;}
.ydc{bottom:379.106667pt;}
.y1cb{bottom:379.906667pt;}
.y6d{bottom:383.426667pt;}
.y170{bottom:383.946667pt;}
.y254{bottom:384.066667pt;}
.yaa{bottom:385.826667pt;}
.y15{bottom:386.306667pt;}
.y4f{bottom:387.106667pt;}
.y279{bottom:392.066667pt;}
.y1a8{bottom:394.626667pt;}
.y20e{bottom:395.266667pt;}
.y221{bottom:395.906667pt;}
.y253{bottom:398.946667pt;}
.yc1{bottom:399.586667pt;}
.y161{bottom:399.901333pt;}
.y114{bottom:400.093333pt;}
.y2f{bottom:400.866667pt;}
.y1ca{bottom:403.906667pt;}
.y29a{bottom:404.733333pt;}
.y1dd{bottom:407.266667pt;}
.y86{bottom:407.426667pt;}
.y171{bottom:407.946667pt;}
.ye{bottom:408.066667pt;}
.ydb{bottom:411.106667pt;}
.y283{bottom:414.973333pt;}
.y6c{bottom:415.426667pt;}
.y16f{bottom:415.946667pt;}
.ya9{bottom:418.466667pt;}
.y1a7{bottom:418.626667pt;}
.y4e{bottom:418.946667pt;}
.y23e{bottom:421.533333pt;}
.y160{bottom:423.901333pt;}
.y13{bottom:426.306667pt;}
.y1c9{bottom:427.906667pt;}
.yc0{bottom:431.426667pt;}
.y177{bottom:432.893333pt;}
.y2b3{bottom:437.666667pt;}
.y26a{bottom:438.653333pt;}
.y85{bottom:439.426667pt;}
.y16e{bottom:439.946667pt;}
.y1a6{bottom:442.626667pt;}
.yda{bottom:442.946667pt;}
.yd{bottom:445.986667pt;}
.y288{bottom:446.653333pt;}
.y98{bottom:447.266667pt;}
.y6b{bottom:447.426667pt;}
.y249{bottom:447.613333pt;}
.y4d{bottom:450.946667pt;}
.y220{bottom:451.906667pt;}
.ybf{bottom:455.426667pt;}
.y252{bottom:455.613333pt;}
.y27{bottom:455.746667pt;}
.y15f{bottom:455.941333pt;}
.y1c8{bottom:459.906667pt;}
.y286{bottom:461.693333pt;}
.y1dc{bottom:462.466667pt;}
.y176{bottom:464.893333pt;}
.y20d{bottom:466.306667pt;}
.y2b2{bottom:469.506667pt;}
.y84{bottom:471.266667pt;}
.y1a5{bottom:474.626667pt;}
.yd9{bottom:474.946667pt;}
.y25a{bottom:474.973333pt;}
.y23d{bottom:478.173333pt;}
.y97{bottom:479.266667pt;}
.y6a{bottom:479.426667pt;}
.y104{bottom:481.533333pt;}
.y4c{bottom:482.946667pt;}
.ya8{bottom:483.586667pt;}
.yc{bottom:483.906667pt;}
.y1db{bottom:486.466667pt;}
.y15e{bottom:487.781333pt;}
.y20c{bottom:489.826667pt;}
.y1c7{bottom:491.906667pt;}
.y2b1{bottom:493.506667pt;}
.y175{bottom:496.893333pt;}
.yd8{bottom:498.946667pt;}
.y83{bottom:503.266667pt;}
.ybe{bottom:503.426667pt;}
.y1a4{bottom:506.626667pt;}
.y21f{bottom:507.746667pt;}
.y298{bottom:509.213333pt;}
.y1da{bottom:510.466667pt;}
.y96{bottom:511.266667pt;}
.y69{bottom:511.426667pt;}
.y26{bottom:512.386667pt;}
.y20b{bottom:513.506667pt;}
.y14a{bottom:514.173333pt;}
.y4b{bottom:514.946667pt;}
.y1c6{bottom:515.746667pt;}
.ya7{bottom:516.226667pt;}
.y2b0{bottom:517.506667pt;}
.y15d{bottom:519.781333pt;}
.yb{bottom:521.986667pt;}
.yd7{bottom:522.946667pt;}
.y174{bottom:528.893333pt;}
.y276{bottom:530.493333pt;}
.y1a3{bottom:530.626667pt;}
.y21e{bottom:531.746667pt;}
.y1d9{bottom:534.466667pt;}
.y23b{bottom:534.813333pt;}
.y82{bottom:535.266667pt;}
.ybd{bottom:535.426667pt;}
.y248{bottom:536.093333pt;}
.y20a{bottom:537.186667pt;}
.y259{bottom:537.853333pt;}
.y1c5{bottom:539.746667pt;}
.y68{bottom:543.266667pt;}
.y24{bottom:545.986667pt;}
.y4a{bottom:546.946667pt;}
.ya6{bottom:548.866667pt;}
.y2af{bottom:549.506667pt;}
.y15c{bottom:551.781333pt;}
.y281{bottom:553.533333pt;}
.y1a2{bottom:554.466667pt;}
.y21d{bottom:555.746667pt;}
.ybc{bottom:559.266667pt;}
.ya{bottom:559.906667pt;}
.y173{bottom:560.773333pt;}
.y208{bottom:560.866667pt;}
.y258{bottom:561.893333pt;}
.y12d{bottom:562.213333pt;}
.y1d8{bottom:566.306667pt;}
.y81{bottom:567.266667pt;}
.y247{bottom:568.773333pt;}
.y1c4{bottom:571.746667pt;}
.y2ae{bottom:573.506667pt;}
.y67{bottom:575.266667pt;}
.y149{bottom:578.213333pt;}
.y49{bottom:578.946667pt;}
.y21c{bottom:579.746667pt;}
.ya5{bottom:581.533333pt;}
.ybb{bottom:583.293333pt;}
.y15b{bottom:583.781333pt;}
.y207{bottom:584.413333pt;}
.y257{bottom:585.893333pt;}
.y1a1{bottom:586.493333pt;}
.y1d7{bottom:590.333333pt;}
.yf0{bottom:590.853333pt;}
.y297{bottom:591.173333pt;}
.y23a{bottom:591.493333pt;}
.y9{bottom:591.933333pt;}
.y172{bottom:592.773333pt;}
.y1c3{bottom:595.773333pt;}
.y2ad{bottom:597.373333pt;}
.y80{bottom:599.293333pt;}
.y267{bottom:600.133333pt;}
.yd6{bottom:602.813333pt;}
.y22{bottom:603.933333pt;}
.y66{bottom:607.293333pt;}
.y15a{bottom:607.808000pt;}
.y205{bottom:608.093333pt;}
.y148{bottom:610.053333pt;}
.y1d6{bottom:610.333333pt;}
.y48{bottom:610.813333pt;}
.y21b{bottom:611.773333pt;}
.ya4{bottom:614.173333pt;}
.y1a0{bottom:618.493333pt;}
.y1c2{bottom:619.773333pt;}
.y2ac{bottom:621.373333pt;}
.y256{bottom:621.573333pt;}
.yef{bottom:624.933333pt;}
.y246{bottom:625.413333pt;}
.y100{bottom:626.053333pt;}
.yd5{bottom:626.813333pt;}
.y8{bottom:629.853333pt;}
.y1d5{bottom:630.013333pt;}
.y65{bottom:631.293333pt;}
.y2d{bottom:638.173333pt;}
.y95{bottom:639.133333pt;}
.y296{bottom:640.133333pt;}
.y147{bottom:642.053333pt;}
.y19f{bottom:642.493333pt;}
.y47{bottom:642.813333pt;}
.y1c1{bottom:643.773333pt;}
.y1f4{bottom:644.893333pt;}
.y2ab{bottom:645.373333pt;}
.ya3{bottom:646.813333pt;}
.y16c{bottom:649.413333pt;}
.y202{bottom:654.653333pt;}
.y64{bottom:655.293333pt;}
.yd4{bottom:658.813333pt;}
.y7f{bottom:663.133333pt;}
.yba{bottom:663.293333pt;}
.y295{bottom:664.133333pt;}
.y293{bottom:664.733333pt;}
.y19e{bottom:666.493333pt;}
.y1c0{bottom:667.613333pt;}
.y7{bottom:667.773333pt;}
.y274{bottom:669.093333pt;}
.y94{bottom:671.133333pt;}
.y239{bottom:672.133333pt;}
.yee{bottom:673.733333pt;}
.y146{bottom:674.053333pt;}
.y46{bottom:674.813333pt;}
.y21a{bottom:675.613333pt;}
.y2aa{bottom:677.373333pt;}
.y63{bottom:679.293333pt;}
.ya2{bottom:679.453333pt;}
.y16b{bottom:682.053333pt;}
.y255{bottom:683.493333pt;}
.yb9{bottom:687.293333pt;}
.y292{bottom:688.733333pt;}
.y19d{bottom:690.333333pt;}
.yd3{bottom:690.813333pt;}
.y280{bottom:692.133333pt;}
.y7e{bottom:695.133333pt;}
.y237{bottom:696.733333pt;}
.y1bf{bottom:699.613333pt;}
.y294{bottom:699.813333pt;}
.ye8{bottom:700.253333pt;}
.y2a9{bottom:701.373333pt;}
.y200{bottom:702.653333pt;}
.y62{bottom:703.133333pt;}
.yed{bottom:705.413333pt;}
.y6{bottom:705.853333pt;}
.y145{bottom:706.053333pt;}
.y45{bottom:706.813333pt;}
.yb8{bottom:711.133333pt;}
.ya1{bottom:712.093333pt;}
.y2c{bottom:718.813333pt;}
.y291{bottom:720.733333pt;}
.y19c{bottom:722.333333pt;}
.yd2{bottom:722.813333pt;}
.ye7{bottom:724.253333pt;}
.y2a8{bottom:725.373333pt;}
.y61{bottom:727.133333pt;}
.y236{bottom:728.733333pt;}
.y1be{bottom:731.613333pt;}
.y93{bottom:735.133333pt;}
.y44{bottom:738.813333pt;}
.y1ff{bottom:739.613333pt;}
.y5{bottom:741.373333pt;}
.ya0{bottom:744.733333pt;}
.ye6{bottom:748.253333pt;}
.y2a7{bottom:749.213333pt;}
.y60{bottom:751.133333pt;}
.y2b{bottom:751.453333pt;}
.y235{bottom:752.733333pt;}
.yea{bottom:753.280000pt;}
.y19b{bottom:754.333333pt;}
.yd1{bottom:754.653333pt;}
.y1bd{bottom:755.613333pt;}
.y7d{bottom:759.133333pt;}
.y1fe{bottom:763.613333pt;}
.y1f3{bottom:764.733333pt;}
.y92{bottom:767.133333pt;}
.y290{bottom:768.573333pt;}
.y43{bottom:770.653333pt;}
.ye5{bottom:772.253333pt;}
.y2a6{bottom:773.213333pt;}
.y5f{bottom:775.133333pt;}
.y9f{bottom:777.373333pt;}
.y19a{bottom:778.333333pt;}
.y1bc{bottom:779.613333pt;}
.ye9{bottom:780.960000pt;}
.yb7{bottom:783.133333pt;}
.y234{bottom:784.573333pt;}
.y29{bottom:785.373333pt;}
.yd0{bottom:786.653333pt;}
.y7c{bottom:791.133333pt;}
.y1fd{bottom:795.613333pt;}
.y2a5{bottom:797.213333pt;}
.y1ef{bottom:797.373333pt;}
.y5e{bottom:799.133333pt;}
.y28f{bottom:800.613333pt;}
.y199{bottom:802.373333pt;}
.y42{bottom:802.693333pt;}
.ye4{bottom:807.973333pt;}
.y233{bottom:808.613333pt;}
.y9e{bottom:810.053333pt;}
.y1bb{bottom:811.493333pt;}
.yb6{bottom:815.173333pt;}
.ycf{bottom:818.693333pt;}
.y1fc{bottom:819.493333pt;}
.y7b{bottom:823.013333pt;}
.y5d{bottom:823.173333pt;}
.y28e{bottom:824.613333pt;}
.y21{bottom:826.373333pt;}
.y2a4{bottom:829.253333pt;}
.y91{bottom:831.013333pt;}
.y232{bottom:832.613333pt;}
.y41{bottom:834.693333pt;}
.y1ba{bottom:835.493333pt;}
.yb5{bottom:839.173333pt;}
.y20{bottom:842.693333pt;}
.y1fb{bottom:843.493333pt;}
.y4{bottom:846.213333pt;}
.y5c{bottom:847.013333pt;}
.yce{bottom:850.693333pt;}
.y2a3{bottom:853.253333pt;}
.y7a{bottom:855.013333pt;}
.y231{bottom:856.613333pt;}
.y198{bottom:858.213333pt;}
.y90{bottom:863.013333pt;}
.y40{bottom:866.693333pt;}
.y1b9{bottom:867.493333pt;}
.y1f{bottom:875.333333pt;}
.y1fa{bottom:875.493333pt;}
.y2a2{bottom:877.093333pt;}
.y3{bottom:878.693333pt;}
.y5b{bottom:879.013333pt;}
.y28d{bottom:880.613333pt;}
.ycd{bottom:882.693333pt;}
.y79{bottom:887.013333pt;}
.y230{bottom:888.613333pt;}
.y197{bottom:890.213333pt;}
.y8f{bottom:895.013333pt;}
.y3f{bottom:898.693333pt;}
.y1b8{bottom:899.493333pt;}
.y2a1{bottom:901.093333pt;}
.y1ee{bottom:901.893333pt;}
.y5a{bottom:903.013333pt;}
.y28c{bottom:904.453333pt;}
.y1d{bottom:907.973333pt;}
.yb4{bottom:911.013333pt;}
.y22f{bottom:912.453333pt;}
.y196{bottom:914.213333pt;}
.ycc{bottom:914.693333pt;}
.y78{bottom:919.013333pt;}
.y1b7{bottom:923.493333pt;}
.y2a0{bottom:925.093333pt;}
.y8e{bottom:927.013333pt;}
.y3e{bottom:930.693333pt;}
.y59{bottom:935.013333pt;}
.y22e{bottom:936.453333pt;}
.y195{bottom:938.213333pt;}
.y1b{bottom:942.053333pt;}
.ycb{bottom:946.533333pt;}
.y1b6{bottom:947.493333pt;}
.y77{bottom:952.453333pt;}
.y1ec{bottom:958.533333pt;}
.y58{bottom:959.013333pt;}
.y28b{bottom:960.453333pt;}
.y194{bottom:962.213333pt;}
.y3d{bottom:962.533333pt;}
.y29f{bottom:963.813333pt;}
.y1b5{bottom:971.333333pt;}
.y22d{bottom:972.133333pt;}
.yca{bottom:978.533333pt;}
.y28a{bottom:984.453333pt;}
.y3c{bottom:986.533333pt;}
.y193{bottom:994.053333pt;}
.y1b4{bottom:995.333333pt;}
.y1a{bottom:997.733333pt;}
.y76{bottom:1000.933333pt;}
.y219{bottom:1003.333333pt;}
.y3b{bottom:1010.533333pt;}
.y1b3{bottom:1019.333333pt;}
.y289{bottom:1020.160000pt;}
.y1ea{bottom:1023.200000pt;}
.y192{bottom:1025.760000pt;}
.y1f9{bottom:1027.360000pt;}
.y1b2{bottom:1051.360000pt;}
.y2{bottom:1081.600000pt;}
.y1{bottom:1109.280000pt;}
.h2d{height:2.337280pt;}
.h3e{height:20.000000pt;}
.h43{height:22.880000pt;}
.h42{height:22.912000pt;}
.h41{height:23.040000pt;}
.h7{height:29.216000pt;}
.ha{height:31.840000pt;}
.h11{height:31.872000pt;}
.hb{height:32.000000pt;}
.hf{height:32.032000pt;}
.hc{height:32.960000pt;}
.h12{height:33.600000pt;}
.h8{height:37.920000pt;}
.h9{height:38.112000pt;}
.h37{height:39.149440pt;}
.h18{height:43.488000pt;}
.h2{height:43.824000pt;}
.h3a{height:44.807680pt;}
.h40{height:45.920000pt;}
.h4f{height:45.952000pt;}
.h3f{height:46.080000pt;}
.h46{height:47.595520pt;}
.h38{height:48.498560pt;}
.h13{height:52.756480pt;}
.h6{height:53.345280pt;}
.h3{height:53.757440pt;}
.h21{height:55.840000pt;}
.h31{height:55.872000pt;}
.he{height:56.000000pt;}
.hd{height:56.032000pt;}
.h1d{height:57.984000pt;}
.h1f{height:58.432000pt;}
.h15{height:60.519362pt;}
.h45{height:64.000000pt;}
.h2b{height:64.032000pt;}
.h1c{height:68.365440pt;}
.h49{height:68.960000pt;}
.h4c{height:68.992000pt;}
.h16{height:71.736875pt;}
.h39{height:72.069375pt;}
.h5{height:77.118720pt;}
.h19{height:77.714560pt;}
.h32{height:79.840000pt;}
.h10{height:80.000000pt;}
.h50{height:80.032000pt;}
.h17{height:82.299687pt;}
.h25{height:87.840000pt;}
.h44{height:88.032000pt;}
.h14{height:90.493125pt;}
.h35{height:96.032000pt;}
.h4{height:97.581440pt;}
.h51{height:103.840000pt;}
.h3b{height:103.872000pt;}
.h22{height:112.032000pt;}
.h48{height:114.912000pt;}
.h3d{height:119.200000pt;}
.h4d{height:137.786667pt;}
.h4e{height:137.920000pt;}
.h4a{height:137.946667pt;}
.h23{height:143.866667pt;}
.h3c{height:151.840000pt;}
.h2a{height:159.866667pt;}
.h4b{height:160.826667pt;}
.h28{height:175.866667pt;}
.h20{height:183.706667pt;}
.h47{height:183.866667pt;}
.h27{height:207.866667pt;}
.h2c{height:223.906667pt;}
.h1e{height:239.746667pt;}
.h24{height:255.746667pt;}
.h34{height:263.706667pt;}
.h36{height:263.746667pt;}
.h29{height:279.906667pt;}
.h33{height:351.773333pt;}
.h2e{height:367.746667pt;}
.h26{height:415.773333pt;}
.h30{height:455.613333pt;}
.h2f{height:623.493333pt;}
.h1a{height:793.920000pt;}
.h1b{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w21{width:15.680000pt;}
.w37{width:38.560000pt;}
.w2e{width:38.720000pt;}
.w33{width:39.360000pt;}
.w20{width:52.672000pt;}
.w11{width:84.512000pt;}
.wc{width:85.632000pt;}
.w1f{width:88.800000pt;}
.w14{width:92.320000pt;}
.w26{width:103.712000pt;}
.w1e{width:104.032000pt;}
.wb{width:106.112000pt;}
.w2b{width:106.752000pt;}
.w25{width:107.392000pt;}
.w7{width:110.112000pt;}
.w22{width:120.672000pt;}
.w10{width:121.920000pt;}
.w2a{width:123.392000pt;}
.w24{width:124.032000pt;}
.w29{width:130.880000pt;}
.w23{width:131.520000pt;}
.w27{width:131.712000pt;}
.w38{width:139.546667pt;}
.w8{width:140.826667pt;}
.w28{width:144.826667pt;}
.w5{width:150.560000pt;}
.wa{width:154.400000pt;}
.w13{width:188.386667pt;}
.w19{width:194.906667pt;}
.w35{width:226.106667pt;}
.w4{width:231.706667pt;}
.w3{width:231.746667pt;}
.w6{width:238.626667pt;}
.w34{width:242.466667pt;}
.w12{width:244.986667pt;}
.w1d{width:245.946667pt;}
.w1b{width:259.706667pt;}
.w2c{width:279.106667pt;}
.w30{width:281.626667pt;}
.wd{width:293.826667pt;}
.w31{width:328.706667pt;}
.w2f{width:359.266667pt;}
.w2d{width:418.653333pt;}
.we{width:486.853333pt;}
.w9{width:490.853333pt;}
.w15{width:506.493333pt;}
.w36{width:519.266667pt;}
.w1a{width:563.613333pt;}
.wf{width:641.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w39{width:887.813333pt;}
.w32{width:1010.240000pt;}
.w1c{width:1019.520000pt;}
.w17{width:1122.000000pt;}
.w18{width:1122.239983pt;}
.w16{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x42{left:8.160000pt;}
.x3a{left:9.920000pt;}
.x40{left:13.760000pt;}
.x4b{left:15.520000pt;}
.x4f{left:17.600000pt;}
.x3b{left:18.714667pt;}
.x41{left:20.480000pt;}
.x48{left:22.394667pt;}
.x12{left:24.960000pt;}
.x47{left:28.480000pt;}
.x5b{left:29.440000pt;}
.x44{left:30.714667pt;}
.x4c{left:33.120000pt;}
.x45{left:35.034667pt;}
.x3d{left:36.160000pt;}
.x4a{left:38.400000pt;}
.x3e{left:39.560000pt;}
.x4e{left:42.120000pt;}
.x4d{left:45.320000pt;}
.x11{left:46.240000pt;}
.x2c{left:47.999983pt;}
.x3f{left:53.306667pt;}
.x46{left:54.560000pt;}
.xf{left:60.160000pt;}
.x43{left:61.312000pt;}
.x49{left:65.754667pt;}
.x5c{left:68.800000pt;}
.x32{left:71.999988pt;}
.xe{left:73.960000pt;}
.x1b{left:76.032000pt;}
.x16{left:77.472000pt;}
.x10{left:79.040000pt;}
.x34{left:80.991988pt;}
.x54{left:88.000000pt;}
.x9{left:96.031988pt;}
.x25{left:97.312000pt;}
.x24{left:103.551988pt;}
.x50{left:115.706667pt;}
.x23{left:120.031988pt;}
.xa{left:124.031988pt;}
.x4{left:128.831988pt;}
.x22{left:144.026655pt;}
.xd{left:164.986667pt;}
.x51{left:178.106667pt;}
.x5{left:185.466655pt;}
.x26{left:190.266667pt;}
.x27{left:192.026655pt;}
.x1f{left:199.866667pt;}
.x5d{left:208.986667pt;}
.xc{left:214.106655pt;}
.x35{left:216.986667pt;}
.x18{left:228.666667pt;}
.x1c{left:231.226667pt;}
.x28{left:240.066655pt;}
.x8{left:242.786655pt;}
.x2d{left:244.186667pt;}
.x6{left:255.426655pt;}
.x3c{left:260.866667pt;}
.x36{left:269.666667pt;}
.x20{left:285.026667pt;}
.x13{left:290.146655pt;}
.x2{left:306.626655pt;}
.x52{left:311.266655pt;}
.x33{left:328.386655pt;}
.x58{left:331.746667pt;}
.x1d{left:337.986667pt;}
.x2b{left:384.066650pt;}
.x31{left:390.946655pt;}
.x14{left:393.533322pt;}
.x7{left:397.053322pt;}
.x37{left:406.013333pt;}
.x5a{left:421.506650pt;}
.x1e{left:424.253333pt;}
.x5e{left:429.826650pt;}
.x15{left:432.093322pt;}
.x55{left:447.906667pt;}
.x57{left:453.186650pt;}
.x30{left:461.506650pt;}
.x19{left:467.933333pt;}
.x21{left:530.653333pt;}
.x38{left:537.533333pt;}
.x3{left:554.213322pt;}
.x53{left:555.133317pt;}
.x59{left:558.493333pt;}
.x29{left:561.213317pt;}
.x1a{left:578.693333pt;}
.xb{left:636.453322pt;}
.x39{left:661.573333pt;}
.x2a{left:666.493317pt;}
.x1{left:698.053322pt;}
.x56{left:730.173333pt;}
.x2e{left:808.453333pt;}
.x2f{left:815.333333pt;}
}




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